/**
 * Project: Classic Homes
 * Author: Joel Pittet, Matt :-) and Mike Giroux 
 * Company: Applied Communications
 * Department: New Media
 * Last Modified: March 13, 2006
 *
 * Structure layout
 */

/* ------------------------------------

	COLORS
	
	Dark: #492F1D

--------------------------------------- */

/* MENU SYSTEM
-------------------------------------------------------------------------*/
#menu {
	padding: 0px;
	height: 20px;
	width: 375px;
	float: right;
	margin: 46px 0px 0px;
}

#menu ul {
	border: 0px;
	margin: 0px;
	padding: 0px;
	list-style: none;
}

#menu ul li {
	margin: 0px;
	float: left;
	display: block;
	text-align: right; 
	padding: 0px 0px 2px;
}
	
#menu ul li a {
	white-space: nowrap;
	margin: 0px; 
	padding: 0px 9px;
	color: #FFF;
	text-align: left;
	font: 10px/2.2em Georgia, Times, 'Times New Roman', serif;
	text-decoration: none;
	text-transform:uppercase;
	display: block;
	float: left;
	background: url(../../img/global/divider.gif) no-repeat right;
	height: 23px;
	letter-spacing: 0.1em;
	/* IE 5 Hack \*/
	/*overflow: hidden;
	end hack */
} 

#menu ul li.current a{ color: #AAAA7F; }
#menu ul li a:hover{ color: #D1C62A; }

#menu img { border: 0px;}

#menu ul li#m-5 a {
	background: none;
} 

/* ------------------------------------
   MAIN MENU
--------------------------------------- 
	
#menu ul li a {
	letter-spacing: 0;
	margin: 0px;
	border: 0px; 
	text-decoration: none;
	padding: 0px 10px 0px 10px; 
	display: block;
	float:left;
	color: #000;
	height: 20px;
	font:11px/1.8em Arial, Helvetica, sans-serif;
	background-repeat: no-repeat;
	} 

*//* ------------------------------------
   SUB MENU
--------------------------------------- */


/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.listMenu ul {
	display: none;
	position: absolute;
	top: 2.7em; /* I'm using ems rather than px to allow people to zoom their font */
	left: 0px;
	background: #42421E;
	width: 120px;
}

#menu ul li ul li a {
	background-image: none;
}
/* Second and third etc. level submenus - position across from parent instead */
.listMenu ul ul {
	top: 20px;
	left: 205px;
}

/*
 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.
*/
.listMenu li {
	float: left;
	position: relative;
	margin-right: -1px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
#menu ul li ul li,
.listMenu ul li {
	float: none;
	margin: 0;
	display:block;
}

#menu ul li ul li a{ 
	float:none; 
	width: auto;
	text-transform: none;
	color: #FFF;
}


.listMenu ul>li:last-child {
	margin-bottom: 1px;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.listMenu a:hover, .listMenu a.highlighted:hover, .listMenu a:focus {
 	background: #FFC;
}

.listMenu  a.highlighted {
 	background: #FAF4C8;
}

li.current a{ background: #FAF4C8; }

/*
 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:
    .listMenu a#xyz {
      background-image: url(out.gif);
    }
    .listMenu a#xyz:hover, .listMenu a.highlighted#xyz, .listMenu a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.listMenu a .subind {
	display: none;
}
.listMenu ul a .subind {
	display: block;
	float: right;
}

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


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .listMenu  ul li {
	float: left;
	height: 1%;
	display:block;
}
* html .listMenu  ul a {
	height: 1%;
	display:block;
}
/* End Hack */
