@charset "UTF-8";
/* CSS Document */

.menu {
	width:895px; 
	height:53px; 
	position:relative; 
	z-index:10000;
	font-family: Arial, Helvetica, sans-serif;
}

/* hack to correct IE5.5 faulty box model */
* html .menu {
	width:896px; 
	w\idth:895px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
.menu ul ul {
	width:auto;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float:left;
	width: auto;
	position:relative;
}

/* style the links for the top level */
.menu a, .menu a:visited {
	display:block;
	width:auto;
	height:53px;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 12px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width:auto; 
	w\idth:auto;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:52px;
	left:0; 
	width:149px;
	padding-top: 1px;
}

/* another hack for IE5.5 */
* html .menu ul ul {
	top:51px;
	t\op:52px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {
	position:absolute; top:0; left:0; border-collapse:collapse;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background:#103D75; 
	color:#FFFFFF; 
	height:auto; 
	line-height:1em; 
	padding:8px 12px; 
	width:140px;
	filter:alpha(opacity=90);
	-moz-opacity:0.9;
	-khtml-opacity: 0.9;
	opacity: 0.9;	
}

/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {
	width:150px; 
	w\idth:128px;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover {
	color:#FFFFFF; 
	background:#446EA4;
}
.menu :hover > a, .menu ul ul :hover > a {
	color:#FFFFFF; 
	background:#446EA4;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul {
	visibility:visible; 
}

/**************************************************************/
/*  Custom code here */
.submenuitem {
	border-left: solid 1px #FFFFFF;
	border-right: solid 1px #FFFFFF;
}

#voicecenter li a, #voicecenter a {
	background:#58AD7D;
	color:#333333; 
}
#voicecenter li a:hover, #voicecenter a:hover {
	background:#0B723B;
	color: #FFFFFF;
}
#voicecenter li :hover > a, #voicecenter :hover > a {
	background:#0B723B;
	color: #FFFFFF;
}

#sinuscenter li a, #sinuscenter a {
	background:#ECA865; 
	color:#333333; 
}
#sinuscenter li a:hover, #sinuscenter a:hover {
	background:#CB751F;
	color: #FFFFFF;
}
#sinuscenter li :hover > a, #sinuscenter :hover > a {
	background:#CB751F;
	color: #FFFFFF;
}

#facialcenter li a, #facialcenter a {
	background:#fdd867;
	color:#333333; 
}
#facialcenter li a:hover, #facialcenter a:hover {
	background:#bb9031;
}
#facialcenter li :hover > a, #facialcenter :hover > a {
	background:#bb9031;
}
