/* zeroing padding/margin for all elements */
#dropDownMenu,
#dropDownMenu * { margin:0;padding:0;}
/* "Master" UL (the whole Menu) */
#dropDownMenu 
{
	position:relative;
	background:#6940B4 no-repeat 100% 50%;
	width:50em;
	max-width:100%;
	float:left;
	border-bottom:none;
}
/* sub-menu ULs */
#dropDownMenu li ul {
	width:11em !important;/* leaves room for padding */
	cursor:default;
	position:absolute;
	height:auto;
	display:none;
	left:-10px;
	background:url('/img/clear.gif');/* trick to keep'em open */ padding-left:10px; padding-right:10px; padding-top:1px; padding-bottom:10px;
}
/* All LIs */
#dropDownMenu li {
	position:relative;
	width:8.30em;
	max-width:16.5%;
	cursor:pointer;
	float:left;
	list-style-type:none;
	font-weight:bold;
	text-align:center;
	border-left: dotted 5px #BDABE1;
	
}
/* sub-menu LIs */
#dropDownMenu li ul li {
	width:10em/*FF*/;
	padding:0;
	border:none;
	max-width:120%;
	border:1px solid #333;
	border-top:none;
}
/* All anchors */
#dropDownMenu li a {
	cursor:default;
	color:#666;
	text-decoration:none;
	display:block;
	float:left;
	padding:0 .4em;
/*  uncomment the declaration below if you want to go "full width" */
	width:7.47em; 
	height:2em;
	line-height:2em;
}
/* sub-menu Anchors */
#dropDownMenu li ul li a {
	width:9.1em/*FF*/;
	position:relative !important; /* ie Mac */
	cursor:pointer !important;
	white-space:nowrap;
	line-height:1.7em;
	height:1.7em;
	font-weight:normal;
	border:1px solid #fff;
	color:#461AD0;
	background-position:0 50% !important;
}
/* :hover and stuff */
#dropDownMenu li a:hover,
#dropDownMenu li a:focus,
#dropDownMenu li a:active {color:#000}

/* move the declarations from the rule below the one above if you want a background swap on *all* anchors, including the top level ones */
#dropDownMenu ul a:hover,
#dropDownMenu ul a:focus,
#dropDownMenu ul a:active {color:#fff !important;background:#6940B4}

/* display and z-index for the sub-menus */
#dropDownMenu li:hover ul,
#dropDownMenu li.msieFix ul {display:block;z-index:10;top:2em !important;}

/* safari: users can keep sub-menus up by from sub-menus to next top level  */
/* didn't find a solution for users going back from the last one. I prefer  */
/* to leave it like that vs. taking the last sub-menu *out of* the wrapper  */
#dropDownMenu li#About {z-index:6;}
#dropDownMenu li#Services {z-index:5;}
#dropDownMenu li#Reservation {z-index:4;}
#dropDownMenu li#Classes {z-index:3;}
#dropDownMenu li#ST {z-index:2;}
#dropDownMenu li#UZ {z-index:1;}

/* Current location - class on Body must match LI's id */
.About #dropDownMenu li#About a,
.Services #dropDownMenu li#Services a,
.Reservation #dropDownMenu li#Reservation a,
.Classes #dropDownMenu li#Classes a,
.ST #dropDownMenu li#ST a,
.UZ #dropDownMenu li#UZ a {color:#000;}

/* Keeping current menu accessible to JAWS */
.About #dropDownMenu li#About ul,
.Services #dropDownMenu li#Services ul,
.Reservation #dropDownMenu li#Reservation ul,
.Classes #dropDownMenu li#Classes ul,
.ST #dropDownMenu li#ST ul,
.UZ #dropDownMenu li#UZ ul {display:block;top:-1000px}

/* background colors */
#About, #About li a {background-color:#BEABE2;}
#Services, #Services li a {background-color:#BEABE2;}
#Reservation, #Reservation li a {background-color:#BEABE2;}
#Classes, #Classes li a {background-color:#BEABE2;}
#ST, #ST li a {background-color:#BEABE2;}
#UZ, #UZ li a {background-color:#BEABE2;}
/* "trigger" and "msieFix" classes */
#dropDownMenu li.msieFix a {}
/* last nested UL. keeping it in */
#dropDownMenu li#UZ ul {left:-2.3em !important;}

/* If JS is OFF we need to style the links in the sub-menu of the current page     */
/* so they are accessible to keyboard users. Using a class on each link would let  */
/* us stick each link in the same place, but we would have to plug a lot of        */
/* attributes in the markup and many rules here, so...                             */
.About #dropDownMenu li#About ul li a:focus,
.About #dropDownMenu li#About ul li a:active,
.Services #dropDownMenu li#Services ul li a:focus,
.Services #dropDownMenu li#Services ul li a:active,
.Reservation #dropDownMenu li#Reservation ul li a:focus,
.Reservation #dropDownMenu li#Reservation ul li a:active,
.Classes #dropDownMenu li#Classes ul li a:focus,
.Classes #dropDownMenu li#Classes ul li a:active,
.ST #dropDownMenu li#ST ul li a:focus,
.ST #dropDownMenu li#ST ul li a:active,
.UZ #dropDownMenu li#UZ ul li a:focus,
.UZ #dropDownMenu li#UZ ul li a:active {position:absolute !important;top:1028px !important;}