@charset "ISO-8859-1";
/* ------------------------------------------------------------------------------- */
/*                                                                                 */
/*  PRODABEL - Fabrica de Softwares                                                */
/*                                                                                 */
/*  PICWEB Estilo Menu                                                             */
/*                                                                                 */
/*  Este arquivo nao deve ser mofificado                                           */
/*  Para definicoes especificas utilize o arquivo PIWEB_estilo-aplicacao.css       */
/*                                                                                 */
/*  Atualizacao : 12/05/2016                                                       */
/*                                                                                 */
/*  Fonte: http://staff.washington.edu/tft/tests/menus/simplyaccessible/index.html */
/* ------------------------------------------------------------------------------- */
.menu-container {
	background-color: #c6ddeb;
	background-image: url(../images/bkg-shadow-innertop.jpg);
	background-repeat: repeat-x;
	background-position: center bottom;
	border: 0 none !important;
}

.menu-acessivel {
	
}

.menu-acessivel, .menu-acessivel ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Nivel 1 */
/* Atencao:                                                                */
/* So alterar o valor de font-size para menus com muitos itens no nivel 1  */
/* Os itens de menu do nivel 1 devem estar todos em 1 linha apenas         */
.menu-acessivel {
	background-color: #c6ddeb;
	float: left;
	font-size: 1em;
	margin: 1px 2% 10px 2%;
}

ul.menu-acessivel li a, ul.menu-acessivel li li a {
	background-color: #79adcb;
}

/* Medida item 1o nivel */
ul.menu-acessivel li a {
	min-width: 7em;
}

/* Medida item 2o nivel */
ul.menu-acessivel li li a {
	min-width: 13.50em;
}

/* Nivel 2 */
.menu-acessivel ul {
	position: absolute;
	top: 2.0em;
	left: -9999px;
	opacity: 0;
	-webkit-transition: 0.1s linear opacity;
	-webkit-box-shadow: 0 3px 3px rgba(100, 100, 100, 0.4);
	-moz-box-shadow: 0 3px 3px rgba(100, 100, 100, 0.4);
	box-shadow: 0 3px 3px rgba(100, 100, 100, 0.4);
	margin-bottom: 0;
	z-index: 1000 !important;
}

.menu-acessivel ul li {
	margin: 0;
}

.menu-acessivel li {
	float: left;
	position: relative;
}

/* Nivel 1 items */
.menu-acessivel li>a {
	float: left;
	padding: 0.35em 1em 0.35em 0.50em;
	border: 1px solid #fff;
	color: #fff;
	text-decoration: none;
}

/* Imagem indicando nivel 2 */
a.seta {
	background-image: url("../images/tridown-white.gif");
	background-position: right center;
	background-repeat: no-repeat;
}

a.seta:hover, a.seta:focus {
	background-image: url("../images/tridown-black.gif");
	background-position: right center;
	background-repeat: no-repeat;
}

/* Nivel 1 hover state - "preserve hover state when hovering dropdown"  */
.menu-acessivel li>a:hover, .menu-acessivel li>a:focus, .menu-acessivel li:focus>a,
	.menu-acessivel li:hover>a {
	background: #fff4d4;
	color: #000;
	background-image: url("../images/tridown-black.gif");
	background-position: right center;
	background-repeat: no-repeat;
}

.menu-acessivel li:hover ul, .menu-acessivel li:focus ul, ul.show-menu {
	left: 0;
	opacity: 0.99;
}

.menu-acessivel ul li {
	float: none;
	position: static;
}

.menu-acessivel ul a {
	float: none;
	display: block;
	color: #fff;
	text-shadow: none;
	border: 1px solid #fff4d4;
	-webkit-transition: 0.1s linear all;
}

.menu-acessivel ul a:hover, .menu-acessivel ul a:focus {
	background: #fff4d4;
	color: #333;
	text-shadow: none;
}