/* ==========================================
 * CSS for Menu webpage with drop down menus
 =============================================*/


/* This is used for the top Div */ 
.TopBlk1 {
	padding-left: 15%; 
	padding-right: 15%;
	background-color: #FF8C00;
	height: 50px; 
	text-align: center;
	font-size: 2.5em;
}


/*  Div for all menus */
.MenuDiv {
	padding-left: 15%; 
	padding-right: 15%; 
	background-color: #996633;
}
.MenuTbl {
	height: 14px; 
	width: 100%; 
	color: yellow; 
	text-align: center; 
	border: 0px;
}


/* Base things for the Menu */
.MenuA {
	width: 11.66%;
}
#mnuText {
	color: yellow;
}
#mnuTxtSel {
	color: #D17519;
	font-weight: bold;
}

/* Controls for DIV's, may need more than 1
 * if you are going to have different size drop down menus.
 */
#div1 {
	position:absolute;
	top:83px;
	z-index:9000001;
	display:none;
	min-width:200px;
	border:1px;
	background-color: #FFFFFF;
	text-align: left;
	padding-left: 4px;
	}

#div2 {
	position:absolute;
	top:83px;
	z-index:9000001;
	display:none;
	min-width:400px;
	border:1px;
	background-color: #FFFFFF;
	text-align: left;
	padding-left: 4px;	
}

/* Controls for active items in your drop down menu */
.subLbl1 {
	padding: 10px;
}
.subLbl2 {
	text-decoration: underline;
	font-size: 1em; 
	font-family: Arial, Helvetica, sans-serif;
	padding-top: 10px;
	color: blue;
}
.subMnuPics {
	position: relative; 
	left: 40px; 
	width: 53px; 
	height: 40px;
}


/* Controls for the Body Div */
.BodyDiv {
	margin-left: 15%;
	margin-right: 15%;
	margin-top: 4px;
	padding:6px;
	background-color: #F5EBCC;
	border-radius: 0.8em 0.8em 0.8em 0.8em;
	border: 0;
	position: relative;
	
}
