/* HORIZONTAL FREESTYLE MENU LAYOUT */

/* All <ul> tags in the menu including the first level */
#menuSite .menulistSite, #menuSite .menulistSite  ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
#menuSite .menulistSite ul {
	display: none;
	position: absolute;
	top: 1.0em; margin-top: 10px; /* I'm using ems and px to allow people to zoom their font */
	left: 0px;
	text-align: center;
}

/* Second and third etc. level submenus - position across from parent instead */
#menuSite .menulistSite ul ul {
	top: -1px;
	margin-top: 0;
	left: 148px;
}

/*
 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.
*/
#menuSite .menulistSite li {
	float: left;
	display: block;
	position: relative;
	margin: 0;
	margin-right: -1px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
#menuSite .menulistSite ul li {
	float: none;
	margin-right: 0;
	margin-bottom: -1px;
}
#menuSite .menulistSite ul>li:last-child {
	margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
#menuSite .menulistSite a {
	display: block;
	/*width: 100px;*/
	color: #fff;
	text-decoration:  none;
	text-align: center;
	padding:10px 22px 10px 22px;
	margin-left: 0px;
	font-weight: bold;
}

#menuSite .menulistSite li ul a {
	width: 150px;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
#menuSite .menulistSite a:hover, #menuSite .menulistSite a.highlighted:hover, #menuSite .menulistSite a:focus {
	color: #eee;
	padding:15px 22px 5px 22px;
	background: url(images/bg-menu-hover.jpg) center top repeat-x;
}
#menuSite .menulistSite a.highlighted {
	color: #eee;
	padding:20px 22px 0px 22px;
	background: url(images/bg-menu-hover.jpg) center top repeat-x;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
#menuSite .menulistSite a#xyz {
	background-image: url(out.gif);
}
#menuSite .menulistSite a#xyz:hover, #menuSite .menulistSite a.highlighted#xyz, #menuSite .menulistSite a:focus {
	background-image: url(over.gif);
}
*/

/* Only style submenu indicators within submenus. */
#menuSite .menulistSite a .subind {
	display: none;
}
#menuSite .menulistSite ul a .subind {
	display: block;
	padding-right: 10px;
	float: right;
	font-weight: normal;
	background: #b2b2b2;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
#menuSite .menulistSite a {
	float: left;
}
#menuSite .menulistSite ul a {
	float: none;
}
/* \*/
#menuSite .menulistSite a {
	float: none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*+html #menuSite .menulistSite ul li {
	float: left;
	height: 1%;
}
*+html #menuSite .menulistSite ul a {
	height: 1%;
}
* html #menuSite .menulistSite ul li {
	float: left;
	height: 1%;
}

* html #menuSite .menulistSite ul a {
	height: 1%;
}
/* End Hacks */
