
.menu {
	width: 180px;/* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */	
}

.menu, .menu ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0px 10px 0px 0px;
	padding: 0;
	border: 0;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
}

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 100%;	/* and move them to the right of the item */
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* sticky submenu: it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(../images/empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}

/* - - - ADxMenu: DESIGN styles - - - */

.menu li.parent > a {background:url(../images/grey.png) no-repeat 157px center;}
.menu li.parent > a:hover {background:url(../images/blue.png) no-repeat 157px center; color:#CE8B10;}

.menu, .menu ul li {
	color: #000;
	background: #eee;
}

.menu {
	width: 180px;
}

.menu ul {
	width: 180px;
}

.menu a {
	text-decoration: none;
	color: #006699;
	padding: .4em .5em;
	display: block;
}

.menu a:hover, .menu li:hover>a {
	color: #CE8B10;
}

.menu li {	/* create borders around each item */
	border-bottom: 1px solid #9D9D9D;
	border-right: 1px solid #9D9D9D;
	background: #eee;
}

.menu li:hover {	/* create borders around each item */
	border-bottom: 1px solid #b6973d;
	border-right: 1px solid #b6973d;
	background: #ddd;
}

.menu>li:first-child>a, .menu li + li + li li:first-child>a {
	border-top: 1px solid #9D9D9D;
}

.menu>li + li, .menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 1px solid #eee;
}

.menu li:hover>ul {	/* inset submenus, to show off overlapping */
	top: 5px;
	left: 99%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
/*.menu>li:first-child>a, .menu li + li + li li:first-child>a {
	color: #777;
}*/

/*Pipe Menu Help*/
.moduletablePipeMenuHelpMenu li {list-style:none;}

.moduletablePipeMenuHelpMenu{
width:auto;
margin:0 auto;
position:absolute;
top:21px;
/*right:530px;*/
left:245px;
}

.moduletablePipeMenuHelpMenu ul{
float:left;
overflow:hidden;
} /* wrap the LIs tightly and gives us somewhere to hide the first pipe in ie6 */
.moduletablePipeMenuHelpMenu li {
width:auto;
margin:0 0 0 -2px;
display:inline;
padding:0 .5em ;
border-left: 1px solid black;
}
/*remove the first faux pipe in all but ie6*/
html .moduletablePipeMenuHelpMenu li:first-child{
border-left: 0;
}
/*fim Pipe Menu*/

/*Pipe Menu Logout*/
.moduletablePipeMenuLogoutMenu{

width:auto;
margin:0 auto;
position:absolute;
top:21px;
right:10px;
}

.moduletablePipeMenuLogoutMenu a{
color: #cc0000;
}

.moduletablePipeMenuLogoutMenu a:hover{
color: #000;
}

.moduletablePipeMenuLogoutMenu ul{
float:left;
overflow:hidden;
} /* wrap the LIs tightly and gives us somewhere to hide the first pipe in ie6 */
.moduletablePipeMenuLogoutMenu li {
width:auto;
margin:0 0 0 -2px;
display:inline;
padding:0 .5em;
border-left: 1px solid black;
}
/*remove the first faux pipe in all but ie6*/
html .moduletablePipeMenuLogoutMenu li:first-child{
border-left: 0;
}
/*fim Pipe Menu*/

/*Menu lado esquerdo*/
.moduletableLeftMenu {
color:#000;
margin-bottom:1em;
padding:0;
}

.moduletableLeftMenu h3 {
background:#045c97;
color:#fff;
text-align:center;
font-size:1.1em;
border-bottom:1px solid #fff;
margin:0;
padding:0.25em 0;
}

.moduletableLeftMenu ul {
list-style:none;
margin:0;
padding:0;
}

.moduletableLeftMenu li {
border-bottom:1px solid #ccc;
margin:0;
}

.moduletableLeftMenu li a {
display:block;
border-left:10px solid #333;
border-right:10px solid #9D9D9D;
background-color:#045c97;
color:#fff;
text-decoration:none;
padding:3px 5px 3px 0.5em;
}

html>body .moduletableLeftMenu li a {
width:auto;
}

.moduletableLeftMenu li a:hover,a#active:link,a#active:visited {
border-left:10px solid #1c64d1;
border-right:10px solid #5ba3e0;
background-color:#2586d7;
color:#fff;
}
/*fim Menu lado esquerdo*/

/*Top Menu*/
/*Credits: By Santosh Setty (http://webdesigninfo.wordpress.com) */
/*Posted to: Dynamic Drive CSS Library (http://www.dynamicdrive.com/style/) */
.menuTopMenu{
	top:-12px;
	right:0px;
	position: relative;
	padding: 0 0 0 20px;
	margin: 0 auto 0 auto;
	background: url(../images/menub_bg.gif) repeat-x; /*tab background image path*/
	height: 46px;
	list-style: none;
}

.menuTopMenu li{
	float:left;
}

.menuTopMenu li a{
	float: left;
	display: block;
	color:#000;
	text-decoration: none;
	font-family: sans-serif;
	font-size: 13px;
	font-weight: bold;
	padding:0 0 0 16px; /*Padding to accomodate left tab image. Do not change*/
	height: 46px;
	line-height: 46px;
	text-align: center;
	cursor: pointer;
}

.menuTopMenu li a span{
	float: left;
	display: block;
	padding: 0 20px 0 12px; /*Padding of menu items*/
}

.menuTopMenu li.active a, .menuTopMenu li a:hover{
	color: #fff;
	background: url(../images/menub_hover_left.gif) no-repeat; /*left tab image path*/
	background-position: left;
}

.menuTopMenu li.active a span, .menuTopMenu li a:hover span{
	color: #fff;
	background: url(../images/menub_hover_right.gif) no-repeat right top; /*right tab image path*/
}
/*fim Top Menu*/


/*Menu servicos online*/
.moduletableServicosMenu {
background: url(../images/servicos.jpg) no-repeat;
padding-top: 15px;
padding-bottom: 20px;
}

.moduletableServicosMenu h3 {
padding-left: 5px;
border-bottom: 1px solid #ccc;
}

.moduletableServicosMenu ul {
list-style:none;
margin:0;
padding:0;
}

.moduletableServicosMenu li {
margin:0;
}

.moduletableServicosMenu .separator span{
	padding-left: 3px;
	background-color: #ddd;
	display:block;
	margin-top:0.7em;
}

.moduletableServicosMenu li a {
display:block;
border-bottom: 1px solid #9D9D9D;
border-right: 1px solid #9D9D9D;
border-left: 3px solid #9D9D9D;
background-color:#fff;
color:#006699;
text-decoration:none;
padding:3px 5px 3px 3px;
}

html>body .moduletableServicosMenu li a {
width:auto;
}

.moduletableServicosMenu li a:hover,a#active:link,a#active:visited {
color:#CE8B10;
text-decoration: underline;
}

/*fim Menu servicos online*/


