/** * 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/ * @version $Id$ * @since 1.0*/
ul.yiiPager {
	font-size: 11px;
	border: 0;
	margin: 0;
	padding: 0;
	line-height: 100%;
	display: inline;
}

ul.yiiPager li {
	display: inline-block;
	margin-bottom: 10px;
}

ul.yiiPager a:link,
ul.yiiPager a:visited {
	border: solid 1px #dedede;
	font-weight: bold;
	padding: 1px 6px;
	text-decoration: none;
}

ul.yiiPager .page a {
	font-weight: normal;
}

ul.yiiPager a:hover {
	border: solid 1px #bebebe;
}

ul.yiiPager .selected a {
	background: #a90000;
	color: #FFF;
	font-weight: bold;
}

ul.yiiPager .hidden a {
	border: solid 1px #DEDEDE;
	color: #888888;
}

/** * Hide first and last buttons by default.*/
ul.yiiPager .first,
ul.yiiPager .last {
	display: none;
}