﻿
.sidemenu #eiquicklinks-root {
}


/* remove all the bullets, borders and padding from the default list styling */
.sidemenu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}


/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.sidemenu li {
	position:relative;
	display:block;
}


/* style the links for the top level */
.sidemenu a, .sidemenu a:visited {
	color: #000000;
	font: bold 9pt/1.0em helvetica, arial, sans-serif;
	padding: 5px 6px 5px 0px;
	text-align: left;
	text-decoration: none;
	display:block;
}


.sidemenu li#menulevel02_2 {
	width: 128px;
}
.sidemenu ul#menudrop02_2 {
	border:1px solid #333434;
	width:128px;
	height:132px; /*h = 22 * (NumberOfMenuItems = 6) */
}


.sidemenu li#menulevel02_3 {
	width: 130px;
}
.sidemenu ul#menudrop02_3 {
	border:1px solid #333434;
	width:130px;
	height:264px; /*h = 22 * (NumberOfMenuItems = 12) */
}


.sidemenu li#menulevel02_4 {
	width: 244px;
}
.sidemenu ul#menudrop02_4 {
	border:1px solid #333434;
	width:244px;
	height:198px; /*h = 22 * (NumberOfMenuItems = 9) */
}


.sidemenu li#menulevel02_5 {
	width: 128px;
}
.sidemenu ul#menudrop02_5 {
	border:1px solid #333434;
	width:128px;
	height:66px; /*h = 22 * (NumberOfMenuItems = 3) */
}


.sidemenu li#menulevel02_6 {
	width: 248px;
}
.sidemenu ul#menudrop02_6 {
	border:1px solid #333434;
	width:248px;
	height:154px; /*h = 22 * (NumberOfMenuItems = 7) */
	left:-100px;
}


/* a hack so that IE5.5 faulty box model is corrected */
* html .sidemenu a, * html .sidemenu a:visited {
	/*width:200px;
	width:188px;*/
}


/* style the second level background */
.sidemenu ul ul a.drop, .sidemenu ul ul a.drop:visited {
	background:#C0C0C0;
	color: #000000;
	font: small/1.2em helvetica, arial, sans-serif;
	text-align: left;
	text-decoration: none;
	text-indent: 8px;
}
/* style the second level hover */
.sidemenu ul ul a.drop:hover{
	background:url(../images/menu/menu_drop.gif) bottom right no-repeat;
	color: #336699;
}
.sidemenu ul ul :hover > a.drop {
	background:url(../images/menu/menu_drop.gif) bottom right no-repeat;
	color: #336699;
}


/* style the third level background */
.sidemenu ul ul ul a, .sidemenu ul ul ul a:visited {
	background:#C0C0C0;
	color: #000000;
	font: small/1.2em helvetica, arial, sans-serif;
	text-align: left;
	text-decoration: none;
	text-indent: 8px;
}
/* style the third level hover */
.sidemenu ul ul ul a:hover {
	color: #336699;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.sidemenu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:27px;
	left:0; 
	/*width:200px;*/
}
/* another hack for IE5.5 */
* html .sidemenu ul ul {
	top:26px;
	top:27px;
}


/* position the third level flyout menu */
.sidemenu ul ul ul{
	left:150px; 
	top:0;
}
/* position the third level flyout menu for a left flyout */
.sidemenu ul ul ul.left {
	left:-150px;
}


/* style the table so that it takes no ppart in the layout - required for IE to work */
.sidemenu table {position:absolute; top:0; left:0;}


/* style the second level links */
.sidemenu ul ul a, .sidemenu ul ul a:visited 
{
	background: #C0C0C0;
	color: #000000;
	font: small/1.2em helvetica, arial, sans-serif;
	text-align: left;
	text-decoration: none;
	border-bottom: 1px solid #C0C0C0;
	height:17px;
	padding-top:4px;
	padding-bottom:0px;
	text-indent: 5px;
	/* yet another hack for IE5.5 */
} 

* html .sidemenu ul ul a{
	/*width:150px;
	width:129px;*/
}


/* style the top level hover */
.sidemenu a:hover {
	color: #003669;
	text-decoration: underline;
}
.sidemenu :hover > a {
	color: #003669;
	text-decoration: underline;
}


/* style the second level link hover */
.sidemenu ul ul a:hover{
	text-decoration: none;
	color: #336699;
}
.sidemenu ul ul :hover > a {
	text-decoration: none;
	color: #336699;
}


/* make the second level visible when hover on first level list OR link */
.sidemenu ul li:hover ul,
.sidemenu ul a:hover ul{
	visibility:visible; 
}


/* keep the third level hidden when you hover on first level list OR link */
.sidemenu ul :hover ul ul{
	visibility:hidden;
}


/* make the third level visible when you hover over second level list OR link */
.sidemenu ul :hover ul :hover ul{ 
	visibility:visible;
}
