@charset "UTF-8";
/* CSS Document */

.menu {
	z-index:1000;
	font-size:11px;
	margin:0px 0px 0px 18px; /* this page only */
	padding: 5px 0px 5px 0px;
	font-family:Arial, Helvetica, sans-serif;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	width:170px;

}
/* hack for IE5.5 */
* html .menu ul {margin-left:-16px; ma\rgin-left:0;}
/* position relative so that you can position the sub levels */
.menu li {
	position:relative;
	height:26px;
	padding:0px 0px 0px 0px;
}


/* get rid of the table */
.menu table {position:absolute; border-collapse:collapse; top:0; left:0; z-index:100; font-size:1em;}

/* style the links */
.menu a, .menu a:visited {
	background: #f7f5f8 url("../images/pictomenu.png") 3px center no-repeat;
	display:block; 
	text-decoration:none;
	height:25px;
	line-height:25px;
	width:149px;
	padding:0px 0px 0px 20px;
	color:#000;
	text-indent:5px;
	border:1px dotted #e0d1db;
	border-width:0px 0px 1px 0px;
	font-weight:bold;
	letter-spacing:1px;
	
}
.sub2 a, .sub2 a:visited {
	background: #5b308b;
	display:block; 
	text-decoration:none;
	height:25px;
	line-height:25px;
	width:164px;
	padding:0px 0px 0px 5px;
	color:#fff;
	text-indent:5px;
	border:1px solid #e0d1db;
	border-width:0 0px 1px 0;
	font-weight:bold;
	letter-spacing:0px;
}
/* hack for IE5.5 */
* html .menu a, * html .menu a:visited {
	background: #f7f5f8 url("../images/pictomenu.png") left center no-repeat; width:169px; w\idth:149px;
}
* html .menu .sub2 a, * html .menu .sub2  a:visited {
	background: #5b308b; width:180px; w\idth:179px;
}
/* style the link hover */
* html .menu a:hover {background: #5b308b url("../images/pictomenu.png") left center no-repeat; color:#fff;}
* html .menu  .sub2 a:hover {background: #f7f5f8; color:#5b308b; font-weight:bold;}


.menu :hover > a {
	color:#fff; 
	background: #5b308b url("../images/pictomenu.png") 3px center no-repeat;
}
.sub2 :hover > a {
	font-weight:bold;
	color:#5b308b; 
	background: #f7f5f8;
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	top:0;
	left:169px; 
}
/* 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;
}
