/*Top menu, left, width, padding, zindex, and top can all be changed*/
div#menu  {
	position:absolute;
	top:138px;
	left:15px;
	z-index:100;
	text-align:left;
	font-size:13px;
	padding:0;
	width:735px;
	height:28px;
	color:#0D095E;
	font-weight:bold;
	vertical-align:middle;
}

/*main headings*/
UL {
	PADDING: 0px; 
	MARGIN: 0px; 
	LIST-STYLE-TYPE: none;
}


/*This floats the menu so they appear side by side and not on top of eachother.*/
UL LI {
	POSITION: relative;
	float:left;
	line-height:150%;
}

/*This changes the position and appearance of the submenus*/
LI UL {
	DISPLAY: none; 
	POSITION: absolute;
	background-color:#0D095E;
	line-height:120%;
}

LI UL LI {
white-space:nowrap;
}

/*This changes the top level menu's links*/
UL LI A {
	PADDING:3px;
	DISPLAY: block;
	COLOR:#0D095E;
	TEXT-DECORATION: none;
}


/*Don't change anything in the IE5-mac hack. Do not put comment tags in side the hack*/
/* Hides from IE5-mac \*/
*HTML UL LI {
	FLOAT: left; 
	HEIGHT: 1%;
}

*HTML UL LI A {
	HEIGHT: 1%;
}
/* End hide from IE5-mac */


/*This changes the hover for all links in the menu div*/
UL LI A:hover {
	BACKGROUND:transparent;
	color:#CC0000;
}


/*This changes the submenu links*/
LI UL LI A {
	PADDING:2px 3px;
	color:#FFFFFF;
	display: block;
	width: 100%;
}

LI UL LI A:HOVER  {
	background-color:#A3DCEA;
	color:#0D095E;
}

/*This makes the submenu list display in the hover. Do not change either of the commands listed below.*/
LI:hover UL {
	DISPLAY: block;
}

LI.over UL {
	DISPLAY: block;
}


/*Please note that each of the main menus can have a class added to them and then each given a different width. The 
same can be done for the submenus. Each sub UL can be given a class and then each given a different width */

li.home  {
	width:65px;
}

li.about  {
	width:84px;
}

li.therapy  {
	width:137px;
}

li.fitness  {
	width:117px;
}

li.member  {
	width:111px;
}

li.event  {
	width:125px;
}

li.contact  {
	width:85px;
}

ul.sub-therapy  {
	width:205px;
}

ul.sub-fitness  {
	width:180px;
}

ul.sub-about  {
	width:110px;
}


