/**
 * 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: pager.css 1678 2010-01-07 21:02:00Z qiang.xue $
 * @since 1.0
 */

ul.yiiPager
{
  font-size:12px;
  border:0;
  margin:0;
  padding:0;
  line-height:100%;
  display:inline;

}

ul.yiiPager li 
{
  display:inline;
}



ul.yiiPager .page a
{
  font-weight:normal;
  font-size:12px;
  font-style:normal;
  background: #2f2f2f;
  color:#fff;
  border:none;
  border-radius: 2px;
  width:25px; 
  height: 25px;
  line-height: 25px;
  display: inline-block;
  text-align: center;
  text-decoration:none;


}
.next { }
.next a,.previous  a{ 
  border-radius: 2px;
  width:30px; 
  height: 25px;
  line-height: 25px;
  display: inline-block;
  text-align: center;
  background: #8e8e8e;
  display: inline-block;
  background:#2f2f2f;
  color:#fff;
  text-decoration: none;
}
ul.yiiPager a:hover
{
}

ul.yiiPager .selected a {
  background:#d30101;
  color: #FFFFFF;
  font-weight: bold;
}

ul.yiiPager .hidden a
{
  color:#e2e2e2;
}

/**
 * Hide first and last buttons by default.
 */
ul.yiiPager .first,
ul.yiiPager .last
{
  display:none;
}