
/****************************************************************************
* WRITTEN BY:	JOHN LANG IV, CORPORATE WEB SOLUTIONS
* DATE:			JULY 24, 2008
* PURPOSE:		CONTROL STYLING SIDE MENU MODULE
****************************************************************************/


/***************************************
	YOU CAN MODIFY THIS
	USED TO CONTROL STYLING OF SUBMENU
***************************************/

/*--------------------styles for drop down menus in the top banner area---------------------------*/
DIV#dropdown {
	position: relative;
	z-index: 100;
	width: 1000px;
	text-align: center;
	font-size: 11px;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	margin: 0;
	padding: 0;
}

#dropdown ul li a:link, #dropdown ul li a:visited{
    text-decoration: none;
	font-size: 10px;
	font-weight: bold;
	color: #ffffff;
  }

#dropdown ul li a:hover{
    text-decoration: none;
	font-size: 10px;
	font-weight: bold;
	color: #cccccc;
  }
  
#dropdown li  {
  width:  130px;
  font-size: 10px;
/*  text-indent: 0px;*/
}


#dropdown li ul li, #dropdown li ul li a:link, #dropdown li ul li a:visited {
	/* styling of text in flyout when not hovering over */
	color: #fff;
	font-size: 10px;
	font-weight: bold;
	display: block;
}
#dropdown li ul li {
	/* styling of flyout when not hovering over */
	background-image: none;
	background-color: #673668;
	border: 1px solid #798196;
	font-size: 10px;
	width: 130px;
	padding: 3px;
	margin: 0px;
}



#dropdown li:hover ul, #dropdown li.sfhover ul {
 /* position for flyout nav */
 top: 10px;
 left: 0px;
}
#dropdown li ul li:hover, #dropdown li ul li.sfhover, #dropdown li ul li:hover a:link, #dropdown li ul li.sfhover a:link, #dropdown li ul li:hover a:visited, #dropdown li ul li.sfhover a:visited {
	/* if you want anything to change when user hovers over item in flyout, enter them here */
	background-color: #000000;
	color: #fff;
}

/***************************************
	DO NOT MODIFY THE FOLLOWING
	USED TO CONTROL POSITION OF SUBMENU
***************************************/
#dropdown ul{
	list-style-type: none;
	margin:0;
	padding:0;
}
#dropdown li {
	display: block;
	float:left;
	position:relative;
}
#dropdown li ul {
	position: absolute;
	top: 0;
	left: 200px;
	left: -999em;
	margin: 0px;
	padding-top: 6px;
	padding-bottom: 0px;
	padding-right: 0px;
	padding-left: 0px;
}
#dropdown li:hover ul, #dropdown li.sfhover ul {
	z-index:99;
}

