/*
Copyright (c) 2006, Erick Wilder de Oliveira
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice,
    this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright notice,
    this list of conditions and the following disclaimer in the documentation
    and/or other materials provided with the distribution.
    * Neither the name of the ERICK WILDER DE OLIVEIRA nor the names
    of its contributors may be used to endorse or promote products derived from
    this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/**
  Estilos do objeto de pagina��o de resultados
  @author 		Erick Wilder de Oliveira <erickwilder[a]gmail-com>
  @package 		PHPills
  @subpackage 	PagingPills

  Cont�m as defini��es para o funcionamento do objeto de pagina��o para
  a apresenta��o da lista de links.

  Testado com �xito nos browsers:
  - Mozilla Firefox 1.5.0.6
  - Mozilla Firefox 2.01
  - Internet Explorer 6 (com e sem prologo XML - Quirks Mode)
  - Internet Explorer 7
  - Opera 8.53
  - Opera 9.02;
**/

/* Objeto de pagina��o principal */
.paging {
	padding:1em 0;
	clear:both;
	text-align:center;
}
.paging span.resume {
	font:1em Arial, Helvetica, Sans-serif;
}
.paging_object
{
	display:block;
	clear:both;
	font:11px Arial,Helvetica,Sans-serif;
	text-align:center;
	width:450px;
	margin:0 auto;
}
.paging_object:after
{
	content:".";
	display:block;
	clear:both;
	height:0;
	visibility:hidden;
}
.paging_object li
{
	margin:1px;
	padding:2px 3px;
	/**border:1px solid #ddd;*/
	text-align:center;
	display:inline;
	line-height:18px;
	height:18px;
	list-style:none;
}
.paging_object li a
{

	/*width:100%;
	height:100%;*/
	line-height:18px;
	color:#006666;
}
.paging_object li a:hover
{
	color:#333;
	/*background:#eaeae6;*/
}
li.first_page,
li.previous_page,
li.last_page,
li.next_page
{
	/*width:85px;*/
	display:inline;
	/*background:#ccc;*/
	text-transform:lowercase;
	font-weight:bold;
	color:#ccc;
}

li.first_page, li.previous_page { border-right:1px solid #ccc; }
li.last_page, li.next_page { border-left:1px solid #ccc; }

li.first_page a,
li.previous_page a,
li.last_page a,
li.next_page a
{
	/*background:#def;*/
}
li.first_page a:hover,
li.previous_page a:hover,
li.last_page a:hover,
li.next_page a:hover
{
	color:#f60;
}
li.current_page
{
	font-weight:bold;
	/*background:#eeffdd;*/
	color:#333;
}

