@charset "UTF-8";
/* CSS Document */

/*********************************************************
I TRIED TO MAKE THIS EASY TO STYLE! SEE NOTES BELOW
**********************************************************/
@font-face {
	font-family: 'QuicksandBold';
	src: url('Quicksand_Bold-webfont.eot');
	src: local('☺'), url('Quicksand_Bold-webfont.woff') format('woff'), url('Quicksand_Bold-webfont.ttf') format('truetype'), url('Quicksand_Bold-webfont.svg#webfont') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'QuicksandBook';
	src: url('Quicksand_Book-webfont.eot');
	src: local('☺'), url('Quicksand_Book-webfont.woff') format('woff'), url('Quicksand_Book-webfont.ttf') format('truetype'), url('Quicksand_Book-webfont.svg#webfont') format('svg');
	font-weight: normal;
	font-style: normal;
}

.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/
	line-height:25px;
}
.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	min-width: 40px;
	font-family: "Century Gothic";
	text-transform: uppercase;
	font-size: 14px;
	font-weight:normal;
	display:block;
	padding:35px 10px 0px;
	color:#FFF;
	text-decoration:none;
	text-align:center;
	height: 60px;
}
.dropdown a:hover{
	color: #FFF;
	background-color: #33ccff;
}
.dropdown ul {
	top:12px;
}
.dropdown li ul a{
	/* The width of the dropdown and popout menu */
	width:250px;
	background-color:#003366;
	text-align:left;
	color:#FFF;
	/*
		Optional thought i'd make the drop down and popout transparent
		This line is also what is killing the CSS validation
	*/
	filter:alpha(opacity=90);
	-moz-opacity:.90;
	opacity:.90;
	font-size: 12px;
	padding: 6px 6px 6px 10px;
}
.dropdown li ul {
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:147px;
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:147px;
}
.dropdown li ul li a{
	height: 25px;
	margin-bottom: 1px;
}

.dropdown li ul li a:hover{
	background:#33ccff;
}
/*.dropdown a.popout {         /* totally optional popout indicator *//*
	
	background-image: url(images/popout.png);
	background-position:center right;
	background-repeat:no-repeat;
}*/

/************************************************************
ONLY EDIT BELOW IF YOU REALLY KNOW WHAT YOUR DOING!
************************************************************/
.dropdown {
	margin:0;
	padding:0;
	list-style-type:none;
}
.dropdown ul{
	margin:0;
	padding:0;
	list-style-type:none;
}
.dropdown a {
	display:block;
}
.dropdown li{
	float:left;
	position:relative;
	display: block;
}
.dropdown ul {
	position:absolute;
	display:none;
}
.dropdown li ul a{
	float:left;
}
.dropdown li ul {
	float:left;
}
.dropdown li ul li{
	float:left;
	position:relative;
}
.dropdown ul ul{
	top:0;
	left:100%;
}
.dropdown li ul ul {
	width:auto;
	margin: -1px 0px 0px 0px;
	float:left;
	border-top:1px solid #333333;
}
.dropdown li:hover ul ul, .dropdown li:hover ul ul ul, .dropdown li:hover ul ul ul ul{
	display:none;
}
.dropdown li:hover ul, .dropdown li li:hover ul, .dropdown li li li:hover ul, .dropdown li li li li:hover ul{
	display:block;
}
