

/*Sample CSS used for the Virtual Pagination Demos. Modify/ remove as desired*/

.paginationstyle{ /*Style for demo pagination divs*/
width: 460px;
text-align: right;
padding: 2px 0;
margin: 0 0 10px 0;
}

.paginationstyle select{ /*Style for demo pagination divs' select menu*/
border: 1px solid navy;
margin: 0 15px;
}

.paginationstyle a{ /*Pagination links style*/
padding: 0 5px;
text-decoration: none;
font-size:12px;
color: #666;
font-weight:bold;
background-color: white;
}

.paginationstyle .flatview a:hover, .paginationstyle a:hover { color: #3f6653; }

.paginationstyle a.selected{ color: #3f6653; font-weight:bold; }

.paginationstyle a.imglinks{ /*Pagination Image links style (class="imglinks") */
border: 0;
padding: 0;
}

.paginationstyle a.imglinks img{
vertical-align: bottom;
border: 0;
}

.paginationstyle a.imglinks a:hover{
background: none;
}

.paginationstyle .flatview a.selected{ /*Pagination div "flatview" links style*/
color: #3f6653;
font-weight:bold;
}

/* demo */

div.demolayout {
	width: 460px;
	margin: 0 0 20px 0;
}

ul.demolayout {
	list-style-type: none;
	width: 100%;
	float: left;
	margin:0 0 10px 0;
	padding:0;
	border-bottom:1px solid #047cc4;
	/*background: url(pixel.gif) bottom left repeat-x;*/
}

ul.demolayout li {
	margin: 0;
	float: left;
}

ul.demolayout a {
	float: left;
	display: block;
	padding: 4px 24px;
	border: 1px solid #047cc4;
	border-bottom: 0;
	border-right: 0;
	color: #666;
	background: #eee;
	text-decoration: none;
	font-weight: bold;
}

ul.demolayout a.last { border-right:1px solid #047cc4 }

ul.demolayout a:hover {
	background: #fff;
}

ul.demolayout a.active {
	background: #6aa442;
	padding-bottom: 5px;
	cursor: default;
	color: #fff;
}

.tabs-container {
	clear: left;
	border: 1px solid #ccc;
	border-top: 0;
	padding: 20px 8px 0 8px;
}


