/* this is the main UL element*/
/* CORNERSTONE MENU */
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
}
/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
}
/* these are all the LIs in the menu*/
.dropdown li{
	float:left;
	margin:0;
	padding:0 3px 0 0;
	text-align:center;
	list-style-type:none;
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown li a {
	display:block;
	height:30px;
	padding:5px 0 0 0;
	margin:0;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size:13px;
	color:#ffffff;
	text-transform:uppercase;
	text-decoration:none;
	background-position:top;
}

li#navHome:hover, li#navTimbercraft:hover, li#navQuality:hover, li#navServices:hover, li#navFaqs:hover, li#navAbout:hover {
	background-position:bottom;
	text-decoration:none;
	}
/* these are the LIs that contains a submenu*/

.dropdown li ul {
	display: none;
	list-style-type:none;
	list-style:none;
	width:184px;
}
.dropdown li:hover ul, .dropdown li.over ul {
	display: block;
	position: absolute;
	background-color:#8b1919; /*dark red*/
	background-image:none;
}
.dropdown li li {
	font-family:Arial, Helvetica, sans-serif;
	float: none;
	display: block;
	background-image:none;
	text-align:left;
	color: #FFFFFF;
	font-weight: bold;
	padding: 0px 8px 20px 8px;
	height:11px;
	margin:0;
}
.dropdown li li a {
	text-decoration: none;
	font-size: 11px; !important
}
.dropdown li li:hover{
	display: block;
	background-color: #b63c3b; /*light red*/
	background-image:none;
	color: #ffffff;
}
/*------------ THIS STYLING KEEPS THE MAIN NAV BUTTON "ON" FOR THE ACTIVE PAGE ---------------- */
body#pageHome li#navHome {background-position:bottom;text-decoration:none;}
body#pageTimbercraft li#navTimbercraft {background-position:bottom;text-decoration:none;}
body#pageQuality li#navQuality {background-position:bottom;text-decoration:none;}
body#pageServices li#navServices {background-position:bottom;text-decoration:none;}
body#pageFaqs li#navFaqs {background-position:bottom;text-decoration:none;}
body#pageAbout li#navAbout {background-position:bottom;text-decoration:none;}

/*--------------------------------------------------------------------------------------------- */
#navHome {
	background:url(../images/bg_home.png) no-repeat;
	width: 62px;
	height: 35px;
}
#navTimbercraft {
	background:url(../images/bg_timbercraft.png) no-repeat;
	width: 184px;
	height: 35px;
}
#navQuality {
	background:url(../images/bg_quality.png) no-repeat;
	width: 77px;
	height: 35px;
}
#navServices {
	background:url(../images/bg_services.png) no-repeat;
	width: 85px;
	height: 35px;
}
#navFaqs {
	background:url(../images/bg_faqs.png) no-repeat;
	width: 63px;
	height: 35px;
}
#navAbout {
	background:url(../images/bg_about.png) no-repeat;
	width: 169px;
	height: 35px;
}