.menutext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-transform: uppercase;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;

}
.textmainblack {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #101010;
	text-decoration: none;


}

.textmainblack A:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FF0000;
	text-decoration: none;


}

.textred12 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #D23A73;
	text-decoration: none;
}
.textwhite {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;

}

.textmainred{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #990000;
	text-decoration: none;


}

.textmainblue {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #0000FF;
	text-decoration: none;


}
.text11 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FF0000;
	text-decoration: none;


}

.text11 A:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FF0000;
	text-decoration: underline;


}

.textgreen {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #99CC33;
	text-decoration: none;


}
.textwhitehead {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #FFFFFF;
	text-decoration: none;
}
/*------------------------------------*\
	NAV
\*------------------------------------*/
#nav, #footernav{
	list-style:none;
	font-weight:bold;
	/* Clear floats */
	float:left;
	width:100%;
	/* Bring the nav above everything else--uncomment if needed.
	position:relative;
	z-index:5;
	*/
	margin:-1px 0 0 0;
	padding:0;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-weight: normal;
	text-transform:uppercase;
	font-size: 11px;
	text-align:center;
}
#nav {background:url(images/new1.gif);}
#nav li, #footernav li{
	float:left;
	position:relative;
	height:36px;
}
#nav a, #footernav a{
	display:block;
	color:#fff;
	background:#070a0b;
	text-decoration:none;
}
#nav a:hover, #footernav a:hover{
	color:#fff;
	background:#6b0c36;
	text-decoration:underline;
}

/*--- DROPDOWN ---*/
#footernav ul{
	background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	padding:0;
	margin:-111px 0 0 -1px;
}

#nav ul{
	background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	padding:0;
	margin:1px 0 0 -1px;
}
#nav ul li{
	xxpadding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
	border-bottom:1px solid #fff;
	border-right:1px solid #fff;
	border-left:1px solid #fff;
	float:none;
	width:129px;
}
#footernav ul li{
	xxpadding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
	border-top:1px solid #fff;
	border-right:1px solid #fff;
	border-left:1px solid #fff;
	float:none;
	width:129px;
}
#nav ul a, #footernav ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
	height:26px;
	padding-top:10px;
}
#nav li:hover ul, #footernav li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
}
#nav li:hover a, #footernav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background:#860A0C;
	text-decoration:underline;
}
#nav li:hover ul a, #footernav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
}
#nav li:hover ul li a:hover, #footernav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background:#d02027;
}
