.sidemenu {
	width:150px;
	position:relative;
	left: 10px;
	top: -60px;
	z-index:100;
	font-family:arial, sans-serif;
}
/* hack to correct IE5.5 faulty box model */
* html .sidemenu {
	width:150px;
	w\idth:150px;
}
/* remove all the bullets, borders and padding from the default list styling */
.sidemenu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}

.sidemenu ul ul {
	width:150px;
	left: 150px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.sidemenu li {
	float:left;
	width:150px;
	position:relative;
        padding: 1px 0 0 0;       
}
/* style the links for the top level */
.sidemenu a, .sidemenu a:visited {
	display:block;
	font-size:12px;
	text-decoration:none;
	color:#203a31;
	width:140px;
	height:25px;
	border:0;
	background:#b4b6d6;
        background-image: url(/fileadmin/images/static/bg2.gif);
	background-repeat: repeat-y;
	background-position: left;
	padding: 0 0 0 10px;
	line-height:25px; 
	font-weight:bold;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .sidemenu a, * html .sidemenu a:visited {
	width:149px;
	w\idth:138px;
}
/* style the second level background */
.sidemenu ul ul a.drop, .sidemenu ul ul a.drop:visited {
	background:#194938 url(grey-arrow.gif) no-repeat 130px center;
}
/* style the second level hover */
.sidemenu ul ul a.drop:hover {
	background:#c9ba65 url(blue-arrow.gif) no-repeat 130px center;
}
.sidemenu ul ul :hover > a.drop {
	background:#c9ba65 url(blue-arrow.gif) no-repeat 130px center;
}
/* style the third level background */
.sidemenu ul ul ul a, .sidemenu ul ul ul a:visited {
	background:#e2dfa8;
}
/* style the third level hover */
.sidemenu ul ul ul a:hover {
	background:#b2ab9b;
}
/* 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:0px;
	left:149;
	width:149px;
}
/* another hack for IE5.5 */
* html .sidemenu ul ul {
	top:0px;
	t\op:0px;
}
/* position the third level flyout menu */
.sidemenu ul ul ul {
	left:149px;
	top:-1px;
	width:149px;
}
/* position the third level flyout menu for a left flyout */
.sidemenu ul ul ul.left {
	left:-149px;
}
/* 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;
	border-collapse:collapse;
	;
}
/* style the second level links */
.sidemenu ul ul a, .sidemenu ul ul a:visited {
	background:#194938;
        background-image: url(/fileadmin/images/static/bg2.gif);
	background-repeat: repeat-y;
	background-position: left;
	color:#000;
	height:auto;
	line-height:1em;
	padding:5px 10px;
	width:128px;
	border-left:1px solid gray;
	border-top:1px solid gray;
	border-right:1px solid #000;
	border-bottom:1px solid #000;
	border-width:0 0 0 0;

}
/* yet another hack for IE5.5 */
* html .sidemenu ul ul a, * html .sidemenu ul ul a:visited {
	width:auto;
	w\idth:128px;
}
/* style the top level hover */
.sidemenu a:hover, .sidemenu ul ul a:hover {
	color:#000;
	background:#0203a31;
        background-image: url(/fileadmin/images/static/bg3.gif);
	background-repeat: repeat-y;
	background-position: left;

}
.sidemenu ul li a.dropact,
.sidemenu :hover > a, .sidemenu ul ul :hover > a {
	color:#fff;
	background:#203a31;
        background-image: url(/fileadmin/images/static/bg3.gif);
	background-repeat: repeat-y;
	background-position: left;
}
/* 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;
}