


/* style the outer div to give it width */
.menu1 {
position:absolute;
/*
top:64px;
left:534px;
*/

top:48px;
left:636px;
width:200px;
font-size:11px;
text-align:left;
z-index:5000;
}



/* style the links */
.menu1 a, .menu1 a:visited {
display:block;
text-decoration:none;
margin: 0;
width:auto;
font-size:12px;

}

.menu1 a:hover {
background-color:#DADFE4;
color:#336699;
}


.menu1 ul {
padding:0;
margin:0;
list-style-type:none !important;
width:150px;
}

/* hack for IE5.5 */
* html .menu1 ul {margin-left:-16px; ma\rgin-left:0;}
/* position relative so that you can position the sub levels */


.menu1 li {
position:relative;
margin: 0;
list-style-type:none !important;
padding:0 0 0 5px;
}

.menu1 li li {
background:#fff;
}

.menu1 li ul {

background: #fffffd;
}



/* get rid of the table */
.menu1 table {
position:absolute;
border-collapse:collapse;
top:0;
left:0;
z-index:100;
font-size: 1em;
}


.menu1 ul li li a, .menu1 ul li li a:visited {
color:#000;
background:white;
}

/* hack for IE5.5 */
* html .menu1 a, * html .menu1 a:visited
{
/*
background:transparent;
*/
width:150px; w\idth:150px;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu1 ul ul {
visibility:hidden;
position:absolute;
top:14px;
left:-2px;
width:170px;
}



.menu1 ul ul ul{
visibility:hidden;
position:absolute;
top:0px;
left:170px;
width:200px;
}


/*  */




.menu1 ul ul a:hover {
background:none;
width:200px;
}
.menu1 ul ul ul a:hover {
background:none;
width:200px;
}

/* make the second level visible when hover on first level list OR link */
.menu1 ul :hover ul{
visibility:visible;
}

/* keep the third level hidden when you hover on first level list OR link */
.menu1 ul :hover ul ul{
visibility:hidden;
}

/* keep the fourth level hidden when you hover on second level list OR link */
.menu1 ul :hover ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu1 ul :hover ul :hover ul{
visibility:visible;
}

/* make the fourth level visible when you hover over third level list OR link */
.menu1 ul :hover ul :hover ul :hover ul {
visibility:visible;
}


* + html .menu1 li.sub {margin-bottom:-2px;}