/**
 * CSS styles for CLinkPager.
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @link http://www.yiiframework.com/
 * @copyright 2008-2010 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 * @since 1.0
 */
.ds-paginator{text-align: center;line-height: 35px;height: 35px;}

.ds-paginator div.ds-border {
    border-top: 1px dotted #ddd;
    margin-bottom: 15px
}
ul.yiiPager
{
    font-size:11px;
    border:0;
    margin:0;
    padding:0;
    line-height:100%;
    display:inline;
}

ul.yiiPager li
{
    display:inline;
    margin-left: 8px;
}


ul.yiiPager a:link,
ul.yiiPager a:visited
{
    border-radius: 3px;
    font-weight:bold;
    padding:1px 6px;
    text-decoration:none;
}

ul.yiiPager .page a
{
    font-weight:normal;
}

ul.yiiPager a:hover
{
    background-color: rgba(0,0,0,0.03);
}


ul.yiiPager .selected a
{
    color: #d32;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: rgba(0,0,0,0.03);
}

ul.yiiPager .hidden a
{
    display:none;
}

/**
 * Hide first and last buttons by default.
 */
ul.yiiPager .first,
ul.yiiPager .last,
ul.yiiPager .previous,
ul.yiiPager .next
{
    display:none;
}