/* HORIZONTAL FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 font: 11px "Trebuchet MS";
 font-weight: normal;
 margin: 0;
 padding: 0;
 list-style: none;
}

/* SUBMENUS (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 font: 11px "Trebuchet MS";
 font-weight: normal;
 top: 29px;
 left: 0px;
 width: 140px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
 float: left;
 position: relative;
 background: #6688F1;
 color: #6688F1;
 border: 0px solid #fff;
 margin-right: 0px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin-right: 0;
 margin-bottom: 0px;
 padding: 2px 1px 2px 1px;
border-bottom: 1px dotted #eeeeee;
}
.menulist ul>li:last-child {
 margin-bottom: 1px;
}

/* LINKS INSIDE THE TOP MENU (OFF STATE) */
.menulist a {
 display: block;
 padding: 0px 0px 0px 0px;
 color: #FEF297;
 text-decoration:  none;
}

/* LINKS INSIDE THE TOP MENU (OVER STATE) */
/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #ff0000;
 background-color: #6688F1;
}

/* LINKS INSIDE THE TOP MENU (LEAVE STATE?) */
.menulist  a.highlighted {
 color: #0000ff;
 background-color: #6688F1;
}





/****************TOP MENU IMAGES ROLLOVER CODE.**************/

.navigation {height: 28px; width: 734px; background: url("navi.gif");}

/* SPACER */
.menulist a.spacer {	width: 60px;
	height: 28px;	background: url("navi.gif");
	background-position: 0px 0px;
}
.menulist a. spacer:hover {
	background-position: 0 -28px;
}

/* HOME */
.menulist a.home {	width: 160px;
	height: 28px;	background: url("navi.gif");
	background-position: -60px 0px;
}
.menulist a.home:hover {
	background-position: -60px -28px;
}

/* HOLIDAYS AND CAMPS */
.menulist a.holidays {	width: 122px;
	height: 28px;	background: url("navi.gif");
	background-position: -220px 0px;
}

.menulist a.holidays:hover {
	background-position: -220px -28px;
}

/* WHAT WE DO */
.menulist a.what {	width: 90px;
	height: 28px;	background: url("navi.gif");
	background-position: -342px 0px;
}

.menulist a.what:hover {
	background-position: -342px -28px;
}

/* NEWS */
.menulist a.news {	width: 58px;
	height: 28px;	background: url("navi.gif");
	background-position: -432px 0px;
}

.menulist a.news:hover {
	background-position: -432px -28px;
}

/* LINKS */
.menulist a.links {	width: 60px;
	height: 28px;	background: url("navi.gif");
	background-position: -490px 0px;
}

.menulist a.links:hover {
	background-position: -490px -28px;
}


/*END***************TOP MENU IMAGES ROLLOVER CODE.**************/



/* CLASS FOR NAVI SUB LINKS..*/

a:link.sublinks, a:visited.sublinks {color: #FFFFFF; font-size: 10px; font-weight: bold;text-decoration: none;}
a:active.sublinks, a:hover.sublinks {color: #CCCCFF; font-size: 10px;font-weight: bold;text-decoration: none;}
span {color:#ffffff; padding: 0px 0px 0px 5px;}

/* END CLASS FOR NAVI SUB LINKS..*/



/* BACKGROUND IMAGES FOR TOP LEVEL LINKS...*/
/*
    .menulist a#home {
      background-image: url(navi.gif);
    }
    .menulist a#home:hover, .menulist a.highlighted#top_bg, .menulist a:focus {
     background-image: url(home.gif);
    }
*/
/* END BACKGROUND IMAGES FOR TOP LEVEL LINKS...*/



/* Only style submenu indicators within submenus. */
.menulist a .subind {
 display:  none;
}
.menulist ul a .subind {
 display:  block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
 float: none;
}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%;
}
* html .menulist  ul a {
 height: 1%;
}
/* End Hack */