/* 
    Document   : paging
    Created on : Feb 8, 2010, 5:16:07 PM
    Author     : starburst
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/


.pagination, .pagination_desc
{
    float:right;
    padding: 2px;


}


.pagination ul{
    margin: 0;
    padding: 0;
    text-align: left; /*Set to "right" to right align pagination interface*/

}

.pagination li{
    list-style-type: none;
    display: inline;
    padding-bottom: 1px;
    padding:2px;
}

.pagination a, .pagination a:visited{
    padding: 0 5px;
    border: 1px solid #333;
    text-decoration: none;
    color: #333;
}

.pagination a:hover, .pagination a:active{
    border: 1px solid #333;
    color: #FFF;
    background-color: #000;
}

.pagination a.currentpage{
    background-color: #2e6ab1;
    color: #FFF !important;
    border-color: #2b66a5;
    font-weight: bold;
    cursor: default;
}

.pagination a.disablelink, .pagination a.disablelink:hover{
    background-color: white;
    cursor: default;
    color: #929292;
    border-color: #929292;
    font-weight: normal !important;
}

.pagination a.prevnext{
    font-weight: bold;
}
