/**
 * CSS styles for CLinkPager.
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @link http://www.yiiframework.com/
 * @copyright Copyright &copy; 2008-2010 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 * @since 1.0
 */

#paginator {
    font-size: 11px;
    border: 0;
    margin: 0;
    padding: 0;
    line-height: 100%;
    display: inline;
    text-align: right;
}

#paginator .page-head {
    float: left;
    font-size: 14px;
    text-align: right;
    vertical-align: bottom;
    line-height: 32px;
    /* display: block; */
    display: inline-block;
}

#paginator li {
    display: inline;
    margin:0;
    width: auto;
    font-size: 120%;
    display: inline-block;
    line-height: 200%;
}

#paginator a:link,
#paginator a:visited {
    border: solid 1px #9aafe5;
    font-weight: bold;
    color: #0e509e;
    padding: 1px 6px;
    text-decoration: none;
}

#paginator .page a {
    font-weight: normal;
    width: auto;
    display: inline-block;
}
#paginator li.previous > a, #paginator li.next > a{
    width: auto;
    display: inline-block;
}


#paginator a:hover {
    border: solid 1px #0e509e;
}

#paginator .selected a {
    background: #2e6ab1;
    color: #ffffff;
    font-weight: bold;
}

#paginator .hidden a {
    border: solid 1px #dedede;
    color: #888888;
}

/**
 * Hide first and last buttons by default.
 */
#paginator .first,
#paginator .last {
    display: none;
    width: auto;
}