/*

Here's a demo stylesheet used to format a menu and its content.
Feel free to alter the menu layout however you want!
All you have to do is ensure the script has the correct CSS property name
(like 'visibility' or 'display') that changes to show/hide menus.

If you want to extend this layout, one good resource for UL/LI formatting is:
    http://www.alistapart.com/articles/taminglists/
Alternatively, you can use any other CSS dropdown layout instead. More here:
    http://www.alvit.de/css-showcase/
Consult your favourite CSS reference for customising fonts/borders/etc.

Otherwise, you can just change the #RGB border/background colours where
suitable to customise for your site -- easy :).

*/



/* HORIZONTAL FREESTYLE MENU LAYOUT */

.menulist {
	position:absolute;
	z-index:5;
	top:138px;
	top:128px;
	/*left:46px;*/
	/*background:url(/themes/destin/images/bg-mainnav.gif) no-repeat left 10px; */
	width:918px;
	height:57px;
}

.menulist li {
	list-style:none;
	display:inline;
	float:left;
	padding-top:10px;
}

.menulist li.active {
	background:url(/themes/destin/images/mainnav-arrow-active.gif) no-repeat center 1px;
}

.menulist li a {
	color:#FFFFFF;
	padding:0 16px;
	text-align:center;
	text-transform:uppercase;
	font-weight:bold;
	font-size:12px;
	line-height:35px;
	text-decoration:none;
	/*background: url(/themes/destin/images/menu/home.gif) no-repeat center center;*/
	display:block;
	/*width:100px;*/
	outline-style: none;
	background: #64a300 url(/themes/destin/images/bg-mainnav-right-off.gif) no-repeat right top;
}

.menulist li#navhome a {
	width:44px;
	background: url(/themes/destin/images/mainnav-home-off-on.gif) no-repeat left top;
}
.menulist li#navhome a:hover{background-position:bottom;}

.menulist li a:hover {
background: #80ba00 url(/themes/destin/images/bg-mainnav-right-on.gif) no-repeat right top;
}

.menulist li:hover{

}


/* second navigational level */
.menulist li {
	position:relative;
}


.menulist li ul {
	position:absolute;
	width:200px;
	width:191px;
	padding-bottom:3px;
	background:url(/themes/destin/images/bg-subnav-bottom.gif) no-repeat bottom left;
	left:-1000px;
}

.menulist li:hover ul {
left:0;
}


.menulist li ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;

}

.menulist li ul li a {
padding:0 14px;
text-transform:none;
font-size:11px;
font-weight:normal;
line-height:25px;
text-align:left;
background:#8cc019;

border-bottom:1px solid #80ba00;
/*border-top:1px solid #80ba00;*/


display:block;
float:none;
}

.menulist li ul li a:hover {
background:#73ac19;
}
