
/* ====================== */
/* = Just a Basic Reset = */
/* ====================== */

html, body, div, span, 
h1, h2, h3, h4, h5, h6, p, 
a, em, font, img, strong, 
ol, ul, li {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}

/* ======================================== */
/* = Perishable Press New Clearfix Method = */
/* ======================================== */
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}

/* ================== */
/* = Basic Stylings = */
/* ================== */

#wrap {
	margin: 0 auto;
	width: 990px;
	font: 15px helvetica, arial, sans-serif;
}
/*	 main exists just for demonstration */	
#main {
	float:left;
	padding: 20px;
	border: 1px solid gray;
	border-top: none;
}

/* ================ */
/* = Main Nav Bar = */
/* ================ */
ul#nav {
	/* ==== Black ==== */
	background: #303030;
	background: -moz-linear-gradient(top, #303030, #000);
	background: -webkit-gradient(linear, left top, left bottom, from(#303030), to(#000));
	border-left: 2px solid #cccc99;
	border-right: 2px solid #cccc99;
	border-top: 2px solid #cccc99;
		
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
}
	ul#nav li {
		/* ==== Black ==== */
		border-left: 1px solid #303030;
		border-right: 1px solid #000;

		float: left;
		padding: 8px 10px;
		position: relative;
	}
		ul#nav li:first-child {
			border-left: none;
		}
	ul#nav li a span.dropdown {
		background: transparent url(../images/bg_down_white.png) no-repeat right center;
		padding-right: 17px;
	}
	
		ul#nav > li:hover {
			/* ==== Black ==== */
			background: #000;
			background: -moz-linear-gradient(top, #000, #303030);
			background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#303030));
		}
		ul#nav li a {
			text-decoration: none;
			/* ==== Dark Grey, Black, Blue, Brown, Pink, Orange, Green, Purple ==== */
			color: #fff;
			text-shadow: -1px -1px 0 #000;
		}
			ul#nav li a:visited {
				/* ==== Dark Grey, Black, Blue, Brown, Red, Pink, Orange, Green, Purple ==== */
				color: #fff;
			}
/* ================================== */
/* = Fist Tier of Drop Down Styling = */
/* ================================== */
ul#nav li ul {
	display: none;
	opacity: .95; /* opacity for drop down block */
	width: 200px; /* set the desired width of drop down ul */
}
	ul#nav > li:hover ul {
		/* ==== Black ==== */
		background: #303030;
		border-left: 2px solid #000;
		border-right: 2px solid #000;
		border-bottom: 2px solid #000;
				
		display: block;
		border-bottom-right-radius: 5px;
		border-bottom-left-radius: 5px;
		-moz-border-radius-bottomleft: 5px;
		-moz-border-radius-bottomright: 5px;
		-webkit-border-bottom-right-radius: 5px;
		-webkit-border-bottom-left-radius: 5px;
		position: absolute;
		top: 100%;
		left: 0px;
	}
		ul#nav li ul li {
			/* ==== Black ==== */
			border-top: 1px solid #000;

			float: none;
			padding-left: 10px;
			position: relative;
			margin: 0;
		}
			ul#nav li ul li:hover {
				/* ==== Black ==== */
				background: #000;
			}
				ul#nav li ul li a span.dropdown {
						background: transparent url(../images/bg_right_white.png) no-repeat right center;
						padding-right: 18px;
				}
/* ==================================== */
/* = Second Tier of Drop Down Styling = */
/* ==================================== */
ul#nav li ul li ul {
	display: none;
	position: absolute;
	visibility: hidden;
	width: 100%;
}
	ul#nav li ul li:hover ul {
		/* ==== Black ==== */
		background: #303030;
		border-top: 2px solid #000;
		border-right: 2px solid #000;
		border-bottom: 2px solid #000;
				
		display: block;
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
		border-bottom-left-radius: 5px;
		-moz-border-radius-topright: 5px;
		-moz-border-radius-bottomleft: 5px;
		-moz-border-radius-bottomright: 5px;
		-webkit-border-top-right: 5px;
		-webkit-border-bottom-right-radius: 5px;
		-webkit-border-bottom-left-radius: 5px;
		margin-top: -2px; /* offset the border-top */
		position: absolute;
		opacity: 1;
		left: 100%;
		top: 0px;
		visibility: visible;
	}
		ul#nav li ul li ul li {
			border-left: none;
		}

