@charset "utf-8";

/* NOTES *****************************************
This style sheet styles the .menu-dropdown elements
*************************************************/

.menu-dropdown {
	/* parent menu */
	margin: 0;
	padding: 0px;
	list-style: none;
	background: #CF3800;
	text-align: left;
	/*height: 32px; /* set this so the menu has substance, otherwise, it will float */
}
.menu-dropdown a {
	/* change color, font, etc here */
	color: white;
	font-family: arial;
	font-size: 11px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 7px 5px;
}
.menu-dropdown li {
	position: relative;
	z-index: 998;
	float: left;
	border: 1px solid transparent;
	padding: 6px 0px; /* adjust vertical and horizontal spacing here */
}
.menu-dropdown a:hover {
	text-decoration: none;
}
.menu-dropdown li:hover {
	background: #CF3800;
	background: #FF3300;
}
.menu-dropdown li ul {
	/* child menu */
	top: 100%;
	left: 1px;
	position: absolute;
	z-index: 999;
	display: none;
	list-style: none;
	margin: -2px;
	padding: 0;
	background: #CF3800;
	border-left: 1px solid #CF3800;
}
.menu-dropdown li:hover > ul{
	display: block;
}
.menu-dropdown li ul li {
	width: 190px; /* set this to keep all child menu items the same width */
}
.menu-active-li {
	
}
.menu-active-a {
	color: white;
}
