/*分页*/
/**
 * 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
 */

ul.yiiPager
{
margin: 25px 0 10px;
    overflow: hidden;
    text-align: center;
    width: 100%;

}
ul.yiiPager li
{
display: inline-block;
    margin: 0 3px;
    text-align: center;
}
ul.yiiPager a:link,
ul.yiiPager a:visited
{

}
ul.yiiPager .page a
{
border: 1px solid #ca2c2d;
    color: #ca2c2d;
    display: block;
    font-size: 13px;
    padding: 3px 15px;
}
ul.yiiPager a:hover
{
text-decoration: none;
	color: #fff;
	background: #ca2c2d;
}
ul.yiiPager .selected a
{
text-decoration: none;
	color: #fff;
	background: #ca2c2d;
}

ul.yiiPager .hidden a
{

}

/**
 * Hide first and last buttons by default.
 */
ul.yiiPager .first a,
ul.yiiPager .last a,
ul.yiiPager .previous a,
ul.yiiPager .next a
{
border: 1px solid #ca2c2d;
    color: #ca2c2d;
    display: block;
    font-size: 13px;
    padding: 3px 15px;
}
ul.yiiPager .first a:hover,
ul.yiiPager .last a:hover,
ul.yiiPager .previous a:hover,
ul.yiiPager .next a:hover
{
text-decoration: none;
	color: #fff;
	background: #ca2c2d;
}
ul.yiiPager li.hidden2 a{
    border: 1px solid #999;
    color: #999;
    display: block;
    font-size: 13px;
    padding: 3px 15px;
}
ul.yiiPager .hidden2 a:hover{
    border: 1px solid #999;
    color: #999;
    display: block;
    font-size: 13px;
    padding: 3px 15px;
    background: none;
    cursor: default;
}