/*Top menu, left, width, padding, zindex, and top can all be changed*/
div#menu  {
	position:absolute;
	top:123px;
	left:138px;
	z-index:10;
	text-align:left;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	padding:5px 0 1px 5px;
	font-weight:bold;
	width:600px;
}

/*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;
	/*width:100px;*/
	line-height:140%;
}

/*This changes the position and appearance of the submenus*/
LI UL {
	DISPLAY: none; 
	POSITION: absolute;
	background-color:#FFFFFF;
	border:1px solid #72787A;
	line-height:140%;
	width:140px;
}

/*This changes the top level menu's links*/
UL LI A {
	PADDING:1px;
	DISPLAY: block;
	COLOR: #FFFFFF;
	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:#FFFFFF;*/
	color:#FFFFFF;
}


/*This changes the submenu links*/
LI UL LI A {
	PADDING:2px 3px;
	color:#72787A;
}

li ul li a:hover  {
	background-color:#CCCCCC;
	color:#006A94;
}


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

.aboutus {
	width:66px;
	background-color:#006A94;
}
.position {
	width:141px;
	background-color:#006A94;
	padding-left: 10px;
}
/*.position a {
	color:#FFFFFF;
}
.position a:hover {
	color:#FFFFFF;
}*/
.direct{
	width:129px;
	background-color:#006A94;
}
/*.direct a {
	color:#FFFFFF;
}
.direct a:hover {
	color:#FFFFFF;
}*/
.submit {
	width:106px;
	background-color:#006A94;
}
.employee {
	width:98px;
	background-color:#006A94;
}
.joborder {
	width:80px;
	background-color:#006A94;
}