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


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

/*This changes the position and appearance of the submenus*/
LI UL {
	DISPLAY: none; 
}

#menu LI UL {
	POSITION: absolute;
	line-height:140%;
	width:160px;
	padding:0;
	margin:0 0 0 14px;
	background-color:#E9F0F5;
	border:1px solid #717475;
}

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


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


/*This changes the submenu links*/
#menu LI UL LI A {
	PADDING:2px 5px;
	color:#000000;
}


/*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;
}

.short {
	padding-right:30px;
}
/*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 */

/*RIGHT LINK SYTLES*/

#right_container a {
	text-decoration:none;
	color:#000000;
}