/* CSS Document */

body div#listmenu ul li ul
{
	display:none; /*--- Hides all drop down menus ---*/
}

div#listmenu /*--- Menu List Container ---*/
{
	float:left; /*--- Makes the div enclose the list ---*/
	height:39px;
	width:700px;
	margin:0px;
	padding:0px;
	font-family:"Myriad Pro", Myriad, Arial, sans-serif
}

div#listmenu ul
{
	margin:0px;
	padding:0px;
	list-style-type: none;
}

div#listmenu li
{
	float:left; /*--- Causes the list to align horizontally instead of stack ---*/
	position:relative; /*--- Positioning context for the absolutely positioned drop-down ---*/
	list-style-type: none; /*--- Removes the bullet off list items ---*/	
	display:block;
	padding:0px;
	margin:0px;
}

div#listmenu ul li 
{
	float:left; /*--- Causes the list to align horizontally instead of stack ---*/
	position:relative; /*--- Positioning context for the absolutely positioned drop-down ---*/
	list-style-type: none; /*--- Removes the bullet off list items ---*/	
	display:block;
	margin:0px;
	padding:6px 0px 0px 0px;
	background-image:url(images/navTab.jpg);
	background-position:left;
	width:140px;
	height:33px;
	background-repeat:no-repeat;
	text-align:center;
}

div#listmenu ul li:hover  {
	background-image:url(images/navTabRoll.jpg);
	background-position:left;
	background-repeat:no-repeat;
	text-decoration:none;
	display:block;
}

div#listmenu ul li a  {
	text-decoration:none;
	display:block;
	font-size:13px;
	color:#6b3b03;
	font-weight:bold;
}
div#listmenu ul li a:hover {
	display:block;
	color:#6b3b03;
	text-decoration:none;
	font-weight:bold;
	font-size:13px;
}


/* DROPDOWNS */
div#listmenu ul li:hover ul  {
	display:block; /*--- Displays appropriate drop down menu ---*/
}
div#listmenu ul li ul li a.dropDown {
	color:black;
	text-decoration:none;
	display:block;
	margin:0px;
	padding:3px;
	font-size:12px;
	font-weight:normal;
	font-family: "Trebuchet MS", "Tahoma", "Helvetica", "Arial", sans-serif;
}
div#listmenu ul li ul li a.dropDown:hover {
	color:white;
}

div#listmenu ul li ul
{
	margin:0px; /*--- Prevents the temp margin on the ul from inheriting here ---*/
	position:absolute; /*--- Positions the drop-down ul in relation to its relatively positioned li parent ---*/
	left:0px; /*--- Aligns the drop-down exactly under the menu ---*/
	top:38px;
	padding:0px;
	border-left:1px solid #cbcbcb;
	border-right:1px solid #cbcbcb;
	border-bottom:1px solid #cbcbcb;
	background-color:#edeced;
	z-index:99;
}


div#listmenu ul li ul.company
{
	/*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	width:175px;
	padding:0px;
	margin-top:0px;
}


div#listmenu ul li ul li
{
	width:100%; /*--- Makes the list items fill the list containers (ul) ---*/
	border:0px; /*--- Three sides of each drop-down item ---*/
	padding:0px;
	margin:0px;
	background:none;
	background-image:none;
	background-color:#edeced;
	border-top:1px solid #cbcbcb;
}


div#listmenu ul li ul li:hover {
	background-color:#bbbbbb;
}






/*Left menu*/

body div#leftMenu ul li ul
{
	display:none; /*--- Hides all drop down menus ---*/
}
div#leftMenu /*--- Menu List Container ---*/
{
	width:248px;
	float:left; /*--- Makes the div enclose the list ---*/
	padding:0px;
	margin:0px 0px 0px 0px;
}

div#leftMenu ul
{
	margin:0px;
	padding:0px 0px;
	font-size:12px;
}

div#leftMenu li
{
	float:left; /*--- Causes the list to align horizontally instead of stack ---*/
	position:relative; /*--- Positioning context for the absolutely positioned drop-down ---*/
	list-style-type: none; /*--- Removes the bullet off list items ---*/
	padding:0px 0px 0px 0px ;
	margin:0px;
	width:248px;
	display:block;
}




/*---------------  FLY OUTS  -----------------*/

div#leftMenu ul li ul
{
	margin:0px; /*--- Prevents the temp margin on the ul from inheriting here ---*/
	position:absolute; /*--- Positions the drop-down ul in relation to its relatively positioned li parent ---*/
	left:248px; /*--- Aligns the drop-down exactly under the menu ---*/
	top:0px;
	z-index:99;
	/*margin-top:10px;*/
	background-color:#edeced;
	border:1px solid #cbcbcb;
	font-size:12px;
}


div#leftMenu ul li ul li
{
	width:100%; /*--- Makes the list items fill the list containers (ul) ---*/
	/*border-top:1px solid #ffffff; --- Three sides of each drop-down item ---*/
	/*border-bottom:1px solid #d0e4f2;*/
	margin:0px;
	background-color:#edeced;
	border-top:1px solid #cbcbcb;
	text-align:left;
	width:220px;	
	padding:3px;
	display:block;
	color:#000000;
}


div#leftMenu ul li ul li:hover {
	background-color:#bbbbbb;
}

div#leftMenu ul li ul li a, div#leftMenu ul li ul li a:visited 
{
	display: block;
	margin:0px;
	text-decoration:none;
	color:#000000;
	font-weight:normal;
}

div#leftMenu ul li ul li a:hover, div#leftMenu ul li ul li a:active	{
	
	color:#ffffff;
	text-decoration:none;
	font-weight:normal;
}



