/* Horizontal menu for the CMS CSS Menu Module */

#menu-vert {
	margin-left: 1px;
	margin-right: 1px;
	background-image: url('../../images/background_satin.gif');
}

/* The wrapper clears the floating elements of the menu */

/* Fix for Opera 8 */
.clearb {
	height: 1px;
	display: block;
	clear: both;
	font-size: 1px;
	line-height: 1px;
	background: transparent;
}
#nav-wrap {
	/* Fix for Opera 8 */ 
   background: #800000;
	width: 100%;
	height: 24px;
	font-size: 11px;
}
/* Set the width of the menu elements at second level. Leaving first level flexible. */
#nav li li { 
	width: 200px; 
}


/* Unless you know what you do, do not touch this */ 
#nav ul { 
   list-style: none; 
   margin: 0px; 
   padding: 0px; 
   height: 24px;
}
#nav { 
   list-style: none; 
   margin: 0px; 
   padding: 0px; 
}
#nav ul { 
   position: absolute; 
   top: auto; 
   display: none; 
}
#nav ul ul { 
   margin-top: 0px;
   margin-left: -1px;
   left: 100%; 
   top: -1px; 
}
	
#nav li { 
   margin-left: -1px;
   float: left; 
}
#nav li li { 
   margin-left: 0px;
   margin-top: -1px;
   float: none; 
   position: relative; 
}

/* Styling the basic apperance of the menu elements */
#nav a {
	display: block;
	margin: 0px;
	font-weight: bold;
	padding: 4px 24px;
	text-decoration: none;
	color: #FFFFFF;
}
#nav li a {
	border-right: 1px #800000 solid;
	border-left: 1px #800000 solid;
}
#nav li li a { 
   border: 1px solid #800000;
}	
#nav li {
	background: #800000 url('../../images/nav_hor_satin.gif') repeat-x 0
0;
}

/* Styling the basic apperance of the active page elements (shows what page in the menu is being displayed) */

#nav li.menuactive {
	background: #800000 url('../../images/nav_hor_over_satin.gif') repeat-x 0
0;
}

/* Styling the apperance of menu items on hover */

#nav li.menuactiveh { 
   background:#800000 url('../../images/nav_hor_over_satin.gif') repeat-x 0 0;
}


#nav li.menuparenth { 
   background:#800000 url('../../images/nav_hor_over_satin.gif') repeat-x 0 0;
}


#nav li.menuh { 
   background:#800000 url('../../images/nav_hor_over_satin.gif') repeat-x 0 0;
}


#nav li:hover { 
   background:#800000 url('../../images/nav_hor_over_satin.gif') repeat-x 0 0;
}


/* The magic - set to work for up to a 3 level menu, but can be increased unlimited */

/* 
just add 
#nav li:hover ul ul, 
#nav li.menuparenth ul ul ul,
for fourth level 
*/
#nav li.menuparenth ul ul { 
   display: none; 
}

#nav li.menuparenth ul { 
   display: none; 
}

#nav li:hover ul ul { 
   display: none; 
}

#nav li:hover ul { 
   display: none; 
}

#nav ul { 
   display: none; 
}

/* add 
#nav ul ul ul li:hover ul, 
#nav ul ul ul li.menuparenth ul,
for fourth level
*/
#nav ul ul li.menuparenth ul { 
   display: block; 
}


#nav ul li.menuparenth ul { 
   display: block; 
}


#nav li.menuparenth ul { 
   display: block; 
}


#nav ul ul li:hover ul { 
   display: block; 
}


#nav ul li:hover ul { 
   display: block; 
}


#nav li:hover ul { 
   display: block; 
}


/* IE Hacks */
#nav li li {
   float: left; 
   clear: both; 
}
#nav li li a { 
   height: 1%; 
}

