/* $Id: nice_menus_default.css,v 1.6 2007/10/29 16:38:28 add1sun Exp $ */
/*
  This is the default layout template for nice menus, and will provide
  a starting point for the look of your menus. To customize, it's
  recommended to create a custom CSS file using this file as a template,
  then configure the module to use your custom CSS file
  (this is done in the global settings tab of the theme administration.)

  To help understand the CSS, the HTML looks like this, where
    x is a number;
    TYPE is down/left/right;
    PATH is the menu path such as node/343;
    MID is the menu id such as 33):
  <ul id='nice-menu-x' class='nice-menu nice-menu-TYPE'>
    <li id='menu-MID' class='menu-path-PATH'><a href='#'>This is a menu item</a></li>
    <li class='menuparent menu-path-PATH'><a href='#'>A submenu</a>
      <ul...><li...>...</li>
      </ul>
    </li>
    ...
  </ul>

  If you have more than one nice-menu and want to target a particular one,
  use its id (e.g. ul#nice-menu-2).

  See README.txt and the handbook page (http://drupal.org/node/185543)
  for some CSS customization examples.
*/

.limpadora {/*INSERE O MENU SECUNDARIO COM CASCATA*/
	top:128px;/*ESTE AJUSTE DEVERÁ ESTAR NO CSS DO NICE-MENU*/
	left:-10px;
	float:right;
}

/******************************
 Global CSS for ALL menu types
******************************/

ul.nice-menu,
ul.nice-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #ccc;
}

ul.nice-menu li {/*APENAS OS QUE NÃO TEM SUBMENU*/
  /*border: 1px solid #ccc;*//*CONTROLA AS BORDAS DOS MENUS*/
  border-top: 0;
  float: left;
  background-color: #eee;
  /* Additional overrides to deal with Garland theme. */
  margin: 0;
  padding-left: 0;
  /*padding: 0 37px 0 39px;*//*AJUSTA A EXTENSÃO DO NICE-MENU À PÁGINA - necessita ajustes*/
  background-image: none; 
  background: #eee; filter:Alpha(opacity=88); opacity: 0.94;
  font-size:11px;
  font-family:Verdana, Arial, Helvetica, sans-serif;
  text-transform:uppercase;
}
ul.nice-menu a {/*CONTROLA A COR DO TEXTO DE TODOS OS MENUS*/
  color:#FFFFFF;
}
ul.nice-menu li a:hover {/*CONTROLA TODOS OS HOVERS DOS MENUS*/
  text-decoration:none;
  background:#BFD73E;
  color:white;
}

ul.nice-menu li a:hover {/*CONTROLA TODOS OS HOVERS DOS MENUS*/
  color:#FFFFFF;
}
ul.nice-menu li a:active {/*CONTROLA TODOS OS ACTIVE DOS MENUS*/
  color:green;
}

/* Overrides for Garland header. */
#header-region ul.nice-menu li {
  margin: 0;
  /* Padding rules are needed to deal with Garland's header line-height. */
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  background: #eee;
}

ul.nice-menu a {/*CONTROLA O TAMANHO DE TODAS AS CELULAS DOS MENUS, SUA EXTENSAO HORIZONTAL*/
	padding: 1em 73px .8em 73px;
  /*padding: 1em 74px .8em 74px;*//*FUNCIONA NO SAFARI, MAS NAO NO FIREFOX*/
  /*padding: 1em 41px 1em 42px;*/
}

/*PARA IE7*/
*+html ul.nice-menu a {/*CONTROLA O TAMANHO DE TODAS AS CELULAS DOS MENUS, SUA EXTENSAO HORIZONTAL*/
	padding: 1em 73px .8em 73px;
}
/*PARA IE8*/
ul.nice-menu a {/*CONTROLA O TAMANHO DE TODAS AS CELULAS DOS MENUS, SUA EXTENSAO HORIZONTAL*/
	padding: 1em 73px .8em 73px\0/;
}

ul.nice-menu li  ul li {/*CONTROLA O TAMANHO DE TODAS AS CELULAS DOS MENUS, SUA EXTENSAO HORIZONTAL*/
  padding: 0em 0px 0em 0px;
  /*padding: 1em 41px 1em 42px;*/
}

ul.nice-menu ul,
/* Repeat for Garland header. */
#header-region ul.nice-menu ul {
  top: 3.4em;/*CONTROLA A DISTANCIA DOS SUBMENUS CASCATA DO PRINCIPAL*/
  left: -1px;
  border: 0;
  /*border-top: 1px solid #ccc;*/
  border: 1px solid #ccc;
  border-top:0px;
  margin-right: 0;
}

/* Override for Garland header. */
#header-region ul.nice-menu ul {
  top: 1.7em;
}

ul.nice-menu ul li {/*DETERMINA A LARGURA DOS SUBMENUS*/
  /*width: 31.1em;*//*DETERMINA A LARGURA DOS SUBMENUS*/
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size:10px;	
  text-align:center;
  border:none;
  
}
ul.nice-menu li ul li {
border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
/******************************
 VERTICAL (left/right) menus
******************************/

/* This is the default width of all vertical menus. */
ul.nice-menu-right, ul.nice-menu-left,
ul.nice-menu-right li, ul.nice-menu-left li {
  width: 12.5em;
}

/* VERTICAL menus where submenus pop RIGHT (default). */
ul.nice-menu-right ul {
  width: 12.5em;
  left: 12.5em;
  top: -1px;
}

ul.nice-menu-right ul ul {
  width: 12.5em;
  left: 12.5em;
  top: -1px;
}

ul.nice-menu-right li.menuparent,
ul.nice-menu-right li li.menuparent {
  background: #eee url(arrow-right.png) right center no-repeat;
}

ul.nice-menu-right li.menuparent:hover,
ul.nice-menu-right li.over,
ul.nice-menu-right li li.menuparent:hover,
ul.nice-menu-right li li.over {
  background: #ccc url(arrow-right.png) right center no-repeat;
}

/* VERTICAL menus where submenus pop LEFT. */
ul.nice-menu-left li ul {
  width: 12.5em;
  left: -12.65em;
  top: -1px;
}

ul.nice-menu-left li ul li ul {
  width: 12.5em;
  left: -12.65em;
  top: -1px;
}

ul.nice-menu-left li.menuparent,
ul.nice-menu-left li li.menuparent {
  background: #eee url(arrow-left.png) left center no-repeat;
}

ul.nice-menu-left li.menuparent:hover,
ul.nice-menu-left li.over,
ul.nice-menu-left li li.menuparent:hover,
ul.nice-menu-left li li.over {
  background: #ccc url(arrow-left.png) left center no-repeat;
}

ul.nice-menu-left a, ul.nice-menu-left ul a {
  padding-left: 14px;
}

/******************************
 HORIZONTAL (down) menus
******************************/

ul.nice-menu-down {
  float: left;
  border: 0;
  
}

ul.nice-menu-down li {/*PRIMEIRO NIVEL DO MENU*/
  border-right: 1px solid #CCCCCC;
   border-bottom: 1px solid #CCCCCC;
  
}
#menu-224 {
	border-right:0px;
}

ul.nice-menu-down li li {/*SEGUNDO NIVEL DO MENU*/
  border-top: 0;
}

ul.nice-menu-down ul {
  left: 0;
  
}

ul.nice-menu-down ul li {
  clear: both;
}
ul.nice-menu-down li ul li a {/*CONTROLA O TAMANHO DOS SUBMENUS*/
  padding:.6em 5px .6em 5px;
}

ul.nice-menu-down li ul li ul,
/* Repeat for Garland header. */
#header-region ul.nice-menu-down li ul li ul {
  left: 12.5em;
  top: -1px;
}

ul.nice-menu-down .menuparent a {
 /* padding-right: 15px;*//*PARA SER USADO APENAS COM AS SETAS DOWN*/
  text-decoration:none;
}

ul.nice-menu-down li.menuparent,
/* Repeat for Garland header. */
#header-region ul.nice-menu-down li.menuparent {
  background: #eee /*url(arrow-down.png) right center no-repeat*/;
}

ul.nice-menu-down li.menuparent:hover,
ul.nice-menu-down li.over,
/* Repeat for Garland header. */
#header-region ul.nice-menu-down li.menuparent:hover,
#header-region ul.nice-menu-down li.over {
  background: #ccc /*url(arrow-down.png) right center no-repeat*/;
}

ul.nice-menu-down li li.menuparent,
/* Repeat for Garland header. */
#header-region ul.nice-menu-down li li.menuparent {
  background: #eee url(arrow-right.png) right center no-repeat;
}

ul.nice-menu-down li li.menuparent:hover,
ul.nice-menu-down li li.over,
/* Repeat for Garland header. */
#header-region ul.nice-menu-down li li.menuparent:hover,
#header-region ul.nice-menu-down li li.over {
  background: #ccc url(arrow-right.png) right center no-repeat;
}

#megatopregion #links-secundarios .defaultblock .blockcontent a:hover {
color:#FFFFFF;
}

#megatopregion #links-secundarios .defaultblock .blockcontent ul#nice-menu li {
color:#FFFFFF;
font-size:20px;
}
ul#nice-menu-1 li#menu-172 ul li{
	width:22em;
}
/*PARA IE7*/
*+html ul#nice-menu-1 li#menu-172 ul li{
	width:21.9em;
}
/*PARA IE8*/
ul#nice-menu-1 li#menu-172 ul li{
	width:21.9em\0/;
}
ul#nice-menu-1 li#menu-160 ul li{
	width:22.6em;
}
/*PARA IE7*/
*+html ul#nice-menu-1 li#menu-160 ul li{
	width:22.6em;
}
/*PARA IE8*/
ul#nice-menu-1 li#menu-160 ul li{
	width:22.5em\0/;
}
ul#nice-menu-1 li#menu-171 ul li{
	width:31em;
}
/*PARA IE7*/
*+html ul#nice-menu-1 li#menu-171 ul li{
	width:31em;
}
/*PARA IE8*/
ul#nice-menu-1 li#menu-171 ul li{
	width:31em\0/;
}