/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0px;
 padding: 0px;
 list-style: none;
 text-align: left;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 1.2em; margin-top: 22px; /* I'm using ems and px to allow people to zoom their font */
 left: 0px;
 width: 150px;
}

.menulist ul#drop1 {
	width: 158px;
}

.menulist ul#drop2 {
	width: 193px;
}

.menulist ul#drop3 {
	width: 172px;
}

.menulist ul#drop4 {
	width: 234px;
}

.menulist ul#drop5 {
	width: 168px;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul
{
 top: -1px; 
 margin-top: 0;
 margin-right: 0;
 position: absolute;
}

.menulist ul#drop1 ul
{
 left: 158px;
}

.menulist ul#drop3 ul
{
 left: 172px;
}

.menulist ul li ul li a {
	font-size: 10px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
 float: left;
 display: block;
 position: relative;
 background: #277CBC;
 margin-right: 0;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 /*border-top: 1px #;*/
 border-top: 1px;
 float: none;
 margin: 0;
 margin-bottom: 0px;
 border-top: 1px solid #2C8FC6;
 border-bottom: 1px solid #216AAE;
}

.menulist ul li a {
 font-size: 13px;
 padding: 10px 3px 10px 15px;	
}

.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a {
 font-size: 15px;
 display: block;
 color: #FFF;
 text-decoration: none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #FFF;
 background-color: #308AC6;
}

.menulist a.highlighted {
 color: #FFF;
 background-color: #308AC6;
}

.menulist li a#menu1,
.menulist li a#menu2,
.menulist li a#menu3,
.menulist li a#menu4,
.menulist li a#menu5,
.menulist li a#menu6 {
	text-align: center;
	/*height: 34px;*/
	height: 0px;
	padding-top: 34px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: 0 0;
}

.menulist li a#menu1 {
	width: 158px;
	background-image: url(../images/topmenutxt_what.gif);
}

.menulist li a#menu2 {
	width: 193px;
	background-image: url(../images/topmenutxt_doctor.gif);
}

.menulist li a#menu3 {
	width: 172px;
	background-image: url(../images/topmenutxt_treatment.gif);
}

.menulist li a#menu4 {
	width: 234px;
	background-image: url(../images/topmenutxt_just.gif);
}

.menulist li a#menu5 {
	width: 168px;
	background-image: url(../images/topmenutxt_living.gif);
}

.menulist li a#menu6 {
	width: 75px;
	background-image: url(../images/topmenutxt_faq.gif);
}

.menulist li a#menu1:hover, .menulist li a#menu1.highlighted, .menulist li a#menu1:focus,
.menulist li a#menu2:hover, .menulist li a#menu2.highlighted, .menulist li a#menu2:focus,
.menulist li a#menu3:hover, .menulist li a#menu3.highlighted, .menulist li a#menu3:focus,
.menulist li a#menu4:hover, .menulist li a#menu4.highlighted, .menulist li a#menu4:focus,
.menulist li a#menu5:hover, .menulist li a#menu5.highlighted, .menulist li a#menu5:focus,
.menulist li a#menu6:hover, .menulist li a#menu6.highlighted, .menulist li a#menu6:focus {
	background-position: 0 -34px;
}

/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display: none;
}
.menulist ul a .subind {
 display: block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}

.menulist a {
 float: none;
}

/* IE Hacks */
*:first-child+html .menulist ul li {
 float: left;
 width: 100%;
}

* html .menulist ul li {
 float: left;
 height: 1%;
}
* html .menulist ul a {
 height: 1%;
}
/* End Hacks */

.menulist li:hover>ul {
 display: block;
}
