/* CSS Document */



/* HORIZONTAL MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	display: none;
	position: absolute;
	top: 1em; margin-top: 8px; /* I'm using ems and px to allow people to zoom their font */
	left: -1px;
	width: 160px;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
	top: -1px; margin-top: 0;
	left: 159px;
}

/*
 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;
	display: block;
	position: relative;
	list-style: none;
	border: 1px solid #024A6E;
	background: #0973A4 url(/images/bg6b.gif) repeat-x;
	z-index: 10; /* added to keep nav menu on top of active tabs */
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	float: none;
	margin: 0;
	margin-bottom: -1px;
	z-index: 9; /* added to keep nav menu on top of active tabs */
}
.menulist ul>li:last-child {
	margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a {
	display: block;
	padding: 6px 10px 3px 10px;
	color: #FFFFFF;
	text-decoration: none;
	background-repeat: no-repeat;
	background-position: left top;
	letter-spacing: -0.1px;
	font-size: 1em;
}
.menulist a:link , .menulist a:visited {
	color: white;
	text-decoration: none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	color: #FFF;
	background-color: #024A6E;
}
.menulist a.highlighted {
	color: #FFF;
	background-color: #024A6E;
}

/*
 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:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/

/* 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;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist ul li {
	float: left;
	width: 100%;
}

* html .menulist ul li {
	float: left;
	height: 1%;
}
* html .menulist ul a {
	height: 1%;
}
/* End Hacks */

/* Classifieds Funnel - SW 8.31.07 */

.funnelMenu, .funnelMenu  ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	font-size: 100%;
}

.funnelMenu ul {
	display: block;
	position:absolute;
	top: 1.3em;
	margin-top: 8px; /* I'm using ems and px to allow people to zoom their font */
	left:-1px;

 #left:0px;
	_left:0px;
	width: 160px;
}

.funnelMenu ul ul {
 top:-1px;
 margin-top:0px;
 left: 165px;
}

.funnelMenu li {
	float: right;
	display: block;
	position: relative;
	list-style: none;
	/* border-right: 1px solid #FFFFFF;
	border-top: 1px solid #FFFFFF */
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.funnelMenu ul li {
 float: right;
 margin: 0;
 margin-bottom: -1px;
}

.funnelMenu ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

.funnelMenu a {
	font-family:Arial, Helvetica, sans-serif;
	display: block;
	padding: 6px 9px 3px 9px;
	color: #FFFFFF;
	text-decoration: none;
	background-repeat: no-repeat;
	background-position: left top;
	letter-spacing: -0.1px;
	font-size: .9em;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.funnelMenu a .subind {
 display: none;
}

.funnelMenu ul a .subind {
 display: block;
 float:right;
}

.funnelMenu a#classified {
	width:141px;
    background-image: url(/images/classDown.jpg);
	text-align:center;
}
	
.funnelMenu a#classified:hover, .menulist a.highlighted#classified {
	width:141px;
    background-image: url(/images/classUp.jpg);
}

.funnelMenu a#realestate {
	width:141px;
    background-image: url(/images/realDown.jpg);
	text-align:center;
}
	
.funnelMenu a#realestate:hover, .menulist a.highlighted#realestate {
	width:141px;
    background-image: url(/images/realUp.jpg);
}

.funnelMenu a#cars {
	width:141px;
    background-image: url(/images/carsDown.jpg);
	text-align:center;
}
	
.funnelMenu a#cars:hover, .menulist a.highlighted#cars {
	width:141px;
    background-image: url(/images/carsUp.jpg);
}

.funnelMenu a#jobs {
	width:141px;
	height:19px;
    background-image: url(/images/jobsDown.jpg);
	text-align:center;
}
	
.funnelMenu a#jobs:hover, .menulist a.highlighted#jobs {
	width:141px;
	height:19px;
    background-image: url(/images/jobsUp.jpg);
}

.funnelMenu a#advertiseWith {
	width:141px;
    background-image: url(/images/placeDown.jpg);
	text-align:center;
}
	
.funnelMenu a#advertiseWith:hover, .menulist a.highlighted#advertiseWith {
	width:141px;
    background-image: url(/images/placeUp2.jpg);
} 

.funnelMenu a {
 float: left;
}
.funnelMenu ul a {
 float: none;
}
/* \*/
.funnelMenu a {
 float: none;
}

*:first-child+html .funnelMenu ul li {
 float: left;
 width: 100%;
}

* html .funnelMenu ul li {
 float: left;
 height: 1%;
}
* html .funnelMenu ul a {
 height: 1%;
}

/* End Funnel Links */

