﻿/*
    This code mainly is to style paging
    Created by: Jason Phoon
    Date: 08 July 2010
*/
.bulletedPaging {
    display: block;
    /*margin: 5px 0 0 0;*/
}
    .bulletedPaging ul {
        /*display: inline-block;*/
        float: right;
        width: auto;
        margin: 10px 0 10px -20px;
    }
        .bulletedPaging ul li {
            float: left;
            width: auto;
            margin: 0 6px 0 0;
            /*display: block;
            text-align:center;*/
        }
            .bulletedPaging ul li a {
                color: #4462E4;
                text-decoration: none;
                border: 1px solid #ddd;
                display: block;
                padding: 5px 7px;
            }
            .bulletedPaging ul li a:hover 
            {
                text-decoration: none; 
                background-color: #4462E4; 
                color: #FFFFFF; 
                border-color: #000;
            }
            .bulletedPaging ul li.active a
            {
                font-weight:bold; 
                color:#000000;
                border: solid 1px #fff;
            }
            .bulletedPaging ul li.active a:hover
            {
                font-weight: bold; 
                color: #000000;
                background-color: #fff; 
                border: solid 1px #fff;
            }
