﻿

/*Sample CSS used for the Virtual Pagination Demos. Modify/ remove as desired*/

.paginationstyle{ /*Style for demo pagination divs*/
                  font:normal 1.1em/30px 'OpenSansBold';
                  text-transform:uppercase;text-align:center;margin:0 4px 0 0;
                  

}

.paginationstyle select{ /*Style for demo pagination divs' select menu*/
border: 1px solid navy;
margin: 0 15px;
}

.paginationstyle a{ /*Pagination links style*/
padding: 5px 10px;
text-decoration: none;
border: 1px solid #ddd;
color: #858585;
background-color: white;
margin:0 4px 0 0;
width:30px; height:30px;
background:#fff;-moz-border-radius:1px;-webkit-border-radius:1px;border-radius:1px;
webkit-box-shadow:0 0 2px rgba(0,0,0,0.1);-moz-box-shadow:0 0 2px rgba(0,0,0,0.1);box-shadow:0 0 2px rgba(0,0,0,0.1);-webkit-transition: all 0.1s ease-in 0.1s; -moz-transition: all 0.1s ease-in 0.1s; -o-transition: all 0.1s ease-in 0.1s; -ms-transition: all 0.1s ease-in 0.1s; transition: all 0.1s ease-in 0.1s;
font-family:Arial;
font-size:12px
}

.paginationstyle a:hover, .paginationstyle a.selected{
color: #fff;
background-color: #203a5b;
}

.paginationstyle a.disabled, .paginationstyle a.disabled:hover{ /*Style for "disabled" previous or next link*/
background-color: white;
cursor: default;
color: #027aaf;
border-color: transparent;
}

.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:hover, .paginationstyle .flatview a.selected{ /*Pagination div "flatview" links style*/
background:#f7a20c;color:#fff;
}

