/*=================================================================
	Owner:	Karen Smart | Smart e-Solutions, Inc.
	Title:		Navigation DropDown Style Sheet
	Author:	Steve Kiernan
	Date: 		06/03/09
=================================================================== */
/* ---------------------------------------------
	Menu Colors:
	light green 		#A3BD0C
	dark green		#244722
	light gray 		#CCC
	burnt orange	#835F07
	purple 				#540054
	
opacity:0.8; -moz-opacity:0.8; filter: alpha(opacity=80);
-----------------------------------------------*/
#pageWrapper.home #mainNavWrapper { position:absolute; top:228px; left:23px; width:387px; height:40px; }
#mainNavWrapper { position:absolute; bottom:0; right:5px; width:387px; height:40px; }

.navMenu { width:385px; height:40px; position:relative; z-index:100;font-family:arial, sans-serif; }
/* hack to correct IE5.5 faulty box model */
* html .navMenu {width:386px; w\idth:385px;}
/* remove all the bullets, borders and padding from the default list styling */
.navMenu ul {padding:0;margin:0;list-style-type:none;text-align:center;}
.navMenu ul ul {width:153px;text-align:left;}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.navMenu li {float:left;width:77px;position:relative;}
/* style the links for the top level */
.navMenu a, .navMenu a:visited {display:block;font-size:11px;text-decoration:none; width:77px; height:40px; padding:0; font-weight:bold;}
/* a hack so that IE5.5 faulty box model is corrected */
* html .navMenu a, * html .navMenu a:visited {width:77px; w\idth:77px;}

.navMenu ul li a div{ padding-top:20px; }
.navMenu ul li a.on div{ padding-top:12px; }
.navMenu ul li a { position:relative; width:77px; color:#FFF; background:url('../images/bkg_btn_nav.gif') no-repeat; }
.navMenu ul li a:hover { color:#FFFF99; background-position: 0 -40px; }
.navMenu ul li a.on  { color:#244722; background-position: 0 -80px; }

/*.navMenu ul li#products a.on:hover { background-position: 0 -80px; }*/

/* style the second level background */
.navMenu ul#outer ul a.first { border-top:1px solid #FFF; }
.navMenu ul#outer ul a.last { border-bottom:1px solid #FFF; }
.navMenu ul#outer ul a.drop, .navMenu ul#outer ul a.drop:visited { width:250px; background:#333 url('../images/bkg_bullet_smArrow_white.gif') no-repeat 260px center; border-left:1px solid #FFF; border-right:1px solid #FFF; }
/* style the second level hover */
.navMenu ul#outer ul a.drop:hover{background:#A3BD0C url('../images/bkg_bullet_smArrow_white.gif') no-repeat 260px center; }
.navMenu ul#outer ul :hover > a.drop {background:#A3BD0C url('../images/bkg_bullet_smArrow_white.gif') no-repeat 260px center;}
/* style the third level background */
.navMenu ul#outer ul ul a, .navMenu ul#outer ul ul a:visited { width:130px; color:#FFF; background:#A3BD0C; }
/* style the third level hover */
.navMenu ul#outer ul ul a:hover {background:#835F07;}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.navMenu ul ul { visibility:hidden;position:absolute;top:40px;left:0; }
/* another hack for IE5.5 */
* html .navMenu ul ul {top:40px;t\op:40px;}

/* position the third level flyout menu */
.navMenu ul ul ul{left:271px; top:0; width:150px; border:1px solid #FFF;}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.navMenu table {position:absolute; top:0; left:0; border-collapse:collapse;}

/* style the second level links */
.navMenu ul ul a, .navMenu ul ul a:visited { color:#FFF; height:auto; line-height:1em; padding:5px 10px; opacity:0.9; -moz-opacity:0.9; filter: alpha(opacity=90); }
/* yet another hack for IE5.5 */
* html .navMenu ul ul a, * html .navMenu ul ul a:visited {width:130px;w\idth:128px;}

/* style the top level hover */
.navMenu a:hover, .navMenu ul ul a:hover{color:#FFF;}
.navMenu :hover > a, .navMenu ul ul :hover > a {color:#FFF; }

/* make the second level visible when hover on first level list OR link */
.navMenu ul li:hover ul,
.navMenu ul a:hover ul{visibility:visible; }
/* keep the third level hidden when you hover on first level list OR link */
.navMenu ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.navMenu ul :hover ul :hover ul{ visibility:visible;}
