body {
	margin-top: 10px;				/* Change Main Menu Width Here*/
}

.dropstyle{
	width: 99%;					/* Change Main Menu Style Here*/
	color: #999999;						/* Change Main Menu Color Here*/
	font-size: 12px;					/* Change Main Menu Font Size Here*/
	font-family: Arial;					/* Change Main Menu Font Here*/
	font-weight: bold;
}

.dropstyle:after{ /*Add margin between menu and rest of content in Firefox*/
content: "."; 
display: block; 
height: 0; 
clear: both; 
visibility: hidden;
}

.dropstyle ul{
width: 100%;
padding: 1px 0;
margin: 0;
text-align: center; 				/*set value to "left", "center", or "right"*/
}

.dropstyle ul li{
display: inline;					/* Dont Change - puts all links on the same line*/
}

.dropstyle ul li a{
color: #999999;						/* Change Main Menu link color Here*/
padding: 1px 1px;					/* Change Main Menu link spacing Here*/
margin: 0;							/* Change Main Menu link margins Here*/
text-decoration: none;				/* Change Main Menu text Decoration Here   Note: Underline, strikethough, ect*/
}

.dropstyle ul li a:hover, .dropstyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
color: #FF9900;						/* Change Main Menu Hover Color Here*/
}

/* ######### Style for Drop Down Menu ######### */

.dropmenudiv{
position: absolute;					/* Dont Change - Puts Menu directly below thier rollovers*/
border: 1px solid #BBB;				/* Change Drop Down Border Info Here*/
border-bottom-width: 0;				/* Sets Bottom border of each link to invisible to be changed by links - {a} below*/
line-height: 18px;					/* Change Drop Down line height Here*/
z-index:100;						/* Dont Change - Puts Menu on top of everything else*/
visibility: hidden;					/* Dont Change - Makes menu invisible until Javascript rollover function*/
background-color: #363B3E;			/* Change Drop Down Background Color Here*/
opacity:.9;						/* Change Drop Down Background Opacity Here  1.0=opaque 0.0=transparent  Note: Change this line and the one below together*/
filter: alpha(opacity=90);			/* Change Drop Down Background Opacity Here  100=opaque 0=transparent  Note: Change this line and the one above together*/
}

.dropmenudiv a{
	width: auto;						/* Dont Change - makes links properties fill all of menu*/
	display: block;						/* Dont Change - makes text break for each link*/
	text-indent: 3px;					/* Change Drop Down text endent Here*/
	border-bottom: 1px solid #BBB;		/* Change Drop Down Bottom Border Info Here  Note: color, size, and solid*/
	padding: 2px 0;						/* Makes each links block taller w/link staying centered*/
	text-decoration: none;				/* Change Drop Down text Decoration Here   Note: Underline, strikethough, ect.*/
	font-family: Arial;	/* Change Drop Down Font Here*/
	font-weight: 500;					/* Change Drop Down Font Style Here*/
	font-size: 12px;					/* Change Drop Down Font Size Here*/
	color: #CCCCCC;						/* Change Drop Down Font Color Here  -  Note: Use a brighter color because of opacity filter*/
}

* html .dropmenudiv a{ 				/*IE only hack*/
width: 100%;						/* Dont Change*/
}

.dropmenudiv a:hover{
color: #993300;						/* Change Drop Down Hover Color Here*/
font-weight: 500;					/* Change Drop Down Hover Style Here*/
background-color: #FFFFFF;			/* Change Drop Down Hover Background Color Here*/
}


	
