/*************************************************************************************
 CSS DROPDOWN SETTINGS
-----------------------

MAIN SETTINGS (NO NEED TO EDIT IN MOST CASES) 
**************************************************************************************/
#cssdd {
	padding-left: 15px;
}

#cssdd ul, #cssdd ul ul { /* all lists */
	margin: 0;padding: 0;
	list-style: none;
	line-height: 1px;
	}

#cssdd a {
	display: block;
	/*width: 100px;*/
}

#cssdd ul li { /* all list items */
	position: relative;
	float: left;
	width: 100px; /* width needed or else Opera goes nuts */
	margin:0; padding:0;
}

#cssdd ul li ul { /* second-level lists */
	position: absolute;
	width: 100%;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#cssdd ul li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 100%;
}

/*HIDING AND SHOWING NAVIGATION LISTS ---> */
/*hide*/
#cssdd ul li:hover ul ul, #cssdd ul li:hover ul ul ul, #cssdd ul li:hover ul ul ul ul, #cssdd ul li:hover ul ul ul ul ul,
#cssdd ul li.sfhover ul ul, #cssdd ul li.sfhover ul ul ul, #cssdd ul li.sfhover ul ul ul ul, #cssdd ul li.sfhover ul ul ul ul ul {
	left: -999em;
	}
	
/*show*/
#cssdd ul li:hover ul, #cssdd ul li li:hover ul, #cssdd ul li li li:hover ul, #cssdd ul li li li li:hover ul,
#cssdd ul li.sfhover ul, #cssdd ul li li.sfhover ul, #cssdd ul li li li.sfhover ul, #cssdd ul li li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	}

/*************************************************************************************
DESIGN SETTINGS (EDIT THIS PART) 
**************************************************************************************/
/*  TEXTS - level 1 --->	*/
#cssdd ul li h2 {margin:0; padding:0px;}
#cssdd ul li a  {
	font-family:Tahoma;     /* font-family or font */
	font-size:1px;     /* font size */
	color:#FFF;     /* font color */
	text-align:center;	/* aligning text (left, right, justify) */
	text-decoration:none;     /* decoration (underline, none, ...) */
	text-indent:0px;   /* indents text from navigation's left border.  DO NOT USE MARGIN OR PADDING INSTEAD, BECAUSE THOSE DOESN'T WORK IN MOZILLA! */
	/*line-height:40px;   height of each button */
	height: 40px;
	}
#cssdd ul li a:hover {
	color:#FFF;     /* font color */
	text-decoration:none;     /* decoration (underline, none, ...) */
	}
/*  TEXTS - level 2 and deeper--->	*/
#cssdd ul li ul li a {  /* mouse is NOT OVER */ 
	font-family:Verdana;     /* font-family or font */
	font-size:9px;     /* font size */
	color:#a00000;     /* font color */
	text-align:left;	/* aligning text (left, right, justify) */
	text-decoration:none;     /* decoration (underline, none, ...) */
	text-indent:10px;   /* indents text from navigation's left border.  DO NOT USE MARGIN OR PADDING INSTEAD, BECAUSE THOSE DOESN'T WORK IN MOZILLA! */
	line-height:20px;  /* height of each button */
	height: 20px;
	}
#cssdd ul li ul li a:hover {/* mouse is OVER */ 
	color:#d58a13;     /* font color */
	text-decoration:none;     /* decoration (underline, none, ...) */
	}
/* If you need to change settings to levels 3 and/or deeper, simply copy and paste the 2 previous sets for level2 and put them in here.
For each level ad extra "ul li" into the ID selector. Example: "#cssdd ul li ul li ul li a" is for level3  */

/*  BACKGROUNDS AND BORDERS - level 1 --->	*/	
#cssdd ul li { /* mouse is NOT OVER */ 
	background-color:#ffffff;
	border-right:30px solid #FFF;     /* border (size style color) */
	/* or use different border for each side if needed
	border-top:1px solid #aaaaaa;
	border-right:1px solid #aaaaaa;
	border-bottom:1px solid #888888;
	border-left:1px solid #888888;
	*/
	}
#cssdd ul li a:hover { /* mouse is OVER */ 
	background-color:#cccccc;
	}
	
/*  BACKGROUNDS AND BORDERS - level 2 and deeper --->	*/	
#cssdd ul li ul li { /* mouse is NOT OVER */   
	background-color:#eee;
	border:1px solid #fff;     /* border (size style color) */
	/* or use different border for each side if needed
	border-top:1px solid #aaaaaa;
	border-right:1px solid #aaaaaa;
	border-bottom:1px solid #888888;
	border-left:1px solid #888888;
	*/
	margin-top:-1px;    /* overflowing 2 borders to make just one  (can try 'margin-top:0;' to see the difference) */
	} 
#cssdd ul li ul li a:hover { /* mouse is OVER */ 
	background-color:#fff;
	} 

/* POSITION ADJUSTMENT level 3 and deeper  ---> */
/* sometimes level3 navigation and deeper is not aligned verticaly with its parent level. Use this for an adjustment. */ 
/* negative values should work as well if needed */
#cssdd ul ul ul {
	position: absolute;
	top: 16px;	  /* horizontal position adjustment */
	left:0px;     /* vertical position adjustment */
	}
	
/*	SPECIFIC LENGTH OF EACH MENU GROUP - level 1 ---> */
#cssdd #cssdd-group-1 li, #cssdd #cssdd-group-1 li a, #cssdd #cssdd-group-1 li ul li { width:47px;}
#cssdd #cssdd-group-2 li, #cssdd #cssdd-group-2 li a, #cssdd #cssdd-group-2 li ul li { width:68px;}
#cssdd #cssdd-group-3 li, #cssdd #cssdd-group-3 li a, #cssdd #cssdd-group-3 li ul li { width:128px;}

#cssdd #cssdd-group-1 li a { background-image:url(../images/home_out.gif); }
#cssdd #cssdd-group-2 li a { background-image:url(../images/menu_out.gif); }
#cssdd #cssdd-group-3 li a { background-image:url(../images/location_bookings_out.gif); }

#cssdd #cssdd-group-1 li a:hover { background-image:url(../images/home_ovr.gif); }
#cssdd #cssdd-group-2 li a:hover { background-image:url(../images/menu_ovr.gif); }
#cssdd #cssdd-group-3 li a:hover { background-image:url(../images/location_bookings_ovr.gif); }


/* SPECIFIC LENGTH OF EACH MENU GROUP - level 2 and deeper ---> */
#cssdd #cssdd-group-1 li ul li, #cssdd #cssdd-group-1 li ul li a, #cssdd #cssdd-group-1 li ul li a:hover { width:150px; background-image: none; }
#cssdd #cssdd-group-2 li ul li, #cssdd #cssdd-group-2 li ul li a, #cssdd #cssdd-group-2 li ul li a:hover { width:150px; background-image: none; }
#cssdd #cssdd-group-3 li ul li, #cssdd #cssdd-group-3 li ul li a, #cssdd #cssdd-group-3 li ul li a:hover { width:150px; background-image: none; }
