/* FIRST LEVEL MENU STYLES */

/* first level */
.menulist{
 margin: 0;
 padding: 0;
 list-style: none;
}

.menulist li {
 float: left;
 display: block;
 position: relative;
 background: #005A9C;
 color:#fff;
 border:0;
 margin-right: -1px;
}

/* Links inside the menu */
.menulist a:link, .menulist a:visited {
 display: block;
 padding:0 10px;
 color: #fff;
 background-color:#005A9C;
 text-decoration: none;
 border-left:1px solid #4083b5;
}

/* Link  hover state*/
.menulist a:hover, .menulist a:focus {
 color: #FEBE10;
  background-color:#005A9C;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a:link, .menulist a:visited, .menulist a:hover {
 float: left;
}
.menulist ul a:link, .menulist ul a:visited, .menulist ul a:hover {
 float: none;
}
/* \*/
.menulist a:link, .menulist a:visited, .menulist a:hover {
 float: none;
}
/* */

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist ul li {
 float: left;
 width: 100%;
}

* html .menulist ul li {
 float: left;
 height: 1%;
}
* html .menulist ul a:link, * html .menulist ul a:visited, * html .menulist ul a:hover {
 height: 1%;
}
/* End Hacks */


/**************SUBMENU STYLES*************/
/*submenu uses suckerfish*/
#listMenuSide, #listMenuSide ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#listMenuSide a:link,  #listMenuSide a:visited{
	display: block;
	width:100%;
	padding:0 10px;
	height:20px;
	color:#fff;
	background-color:#212121;
	text-decoration:none;
}

#listMenuSide ul a:link, #listMenuSide ul a:visited{height:auto; padding:3px; background-color:#005A9C; color:#fff;}
#listMenuSide a:hover{
	color:#FEBE10;
	background-color:#212121;
} 
#listMenuSide ul a:hover{
	color:#FEBE10;
	background-color:#005A9C;
}
#listMenuSide li {
	float: left;
	width: auto;
	list-style:none;
}
#listMenuSide li ul {
	position: absolute;
	width: 150px;
	left: -999em;
	color:#fff;
	background-color:#005A9C;
}
#listMenuSide ul li{float:none; display:block;}

#listMenuSide li:hover ul {
	left: auto;
}
#listMenuSide li:hover ul, #listMenuSide li.sfhover ul {
	left: auto;
}