
/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0;
 padding: 1px;
 width: 210px;
 list-style:none;
 background-color:#EBEBEB;
 background-image:graphics/images/arrow.gif; 	
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 0;
 left: 180px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
 position: relative;

}

/* Links inside the menu */
.menulist li a {
 display: block;
 padding: 4px 2px 4px 2px;
 text-decoration: none;
 border: 0px solid transparent;
 margin: 1;

}
* html .menulist li a {
 border-width: 0;
 margin: 1px;
}


.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 padding: 4px 2px 4px 2px;
 border: 0px solid #ADF;
 margin: 1;
 text-decoration:underline;
}
.menulist a.highlighted {
 border: 0px solid  #FFFBF0;
 margin: 1;
}


.menulist a .subind {
 float: right;
}


*:first-child+html .menulist li {
 float: left;
 width: 100%;
}

* html .menulist li {
 float: left;
 height: 1%;
}
* html .menulist a {
 height: 1%;
}/* CSS Document */

