
/* style the outer div to give it width */
.menuss {
	width:800px;
	height:19px;
	border-width:0 0 1px 0;
	border-color:#483280;
	border-style: solid;
	padding:10px 0 0 10px;
	margin: 0 ;	
}
/* remove all the bullets, borders and padding from the default list styling */
.menuss ul {
padding:0;
margin:0;
list-style-type:none;
}
.menuss ul ul {
width:200px;
background : #28115F;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menuss positon */
.menuss li {
float:left;
width:160px;
position:relative;
}
/* style the links for the top level */
.menuss a, .menuss a:visited {
display:block;
font-size:11px;
text-decoration:none; 
color:#fff; 
width:180px; 
height:19px; 
border:1px solid #D0D0E2; 
border-width:1px 1px 0 0; 
background:#28115F; 
padding-left:10px; 
line-height:19px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menuss a, * html .menuss a:visited {
width:150px;
w\idth:150px;
}

/* style the second level background */
.menuss ul ul a.drop, .menuss ul ul a.drop:visited {
background:#AE99DF;
}
/* style the second level hover */
.menuss ul ul a.drop:hover{
background:#c9ba65;
}
.menuss ul ul :hover > a.drop {
background:#342C77;
}
/* style the third level background */
.menuss ul ul ul a, .menuss ul ul ul a:visited {
background:#BAB8E9;
}
/* style the third level hover */
.menuss ul ul ul a:hover {
background:#39337D;
}
.menuss ul ul ul :hover > a {
background:#39337D;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menuss ul ul {
visibility:hidden;
position:absolute;
height:0;
top:20px;
left:0; 
width:150px;
}
/* another hack for IE5.5 */
* html .menuss ul ul {
top:0px;
t\op:20px;
}

/* position the third level flyout menuss */
.menuss ul ul ul{
left:150px; 
top:0;
width:150px;
}
/* position the third level flyout menuss for a left flyout */
.menuss ul ul ul.left {
left:-150px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.menuss table {position:absolute; top:0; left:0;}

/* style the second level links */
.menuss ul ul a, .menuss ul ul a:visited {
background:#A6A2D6;
color:#FFF; 
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:129px
/* yet another hack for IE5.5 */
}
* html .menuss ul ul a{
width:150px;
w\idth:129px;
}


/* style the top level hover */
.menuss a:hover, .menuss ul ul a:hover{
color:#fff; 
background:#39337D;
}
.menuss :hover > a, .menuss ul ul :hover > a {
color:#fff;
background:#39337D;
}

/* make the second level visible when hover on first level list OR link */
.menuss ul li:hover ul,
.menuss ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menuss ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menuss ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menuss ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.menuss ul :hover ul :hover ul :hover ul { 
visibility:visible;
}
