/* All <ul> tags in the menu including the first level */


.listMenu{
	margin: 0;
	padding: 1px 1px 1px 1px;
	border: 0px solid #CC0000;
	font-size: 12px;
}

.listMenu, .listMenu ul {
	width: 230px;
	list-style: none;
	border: 0px solid #654;
	font-family: "Times New Roman", Times, serif;
	font-size: 14px;
	font-weight: bold;
	font-variant: small-caps;
	color: #4a3607;
	text-align: center;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.listMenu ul {
	margin: 0;
	padding: 24px 0px 12px;
	display: none;
	position: absolute;
	top: -24px;
	left: 223px;
	background-image: url(/themes/sweet1/images/nav_subbottom.png);
	background-repeat: no-repeat;
	width: 249px;
	background-position: bottom;
}
.listMenu ul li.first {
	background-image: url(/themes/sweet1/images/nav_subtop.png);
	padding-top: 8px;
	background-repeat: no-repeat;
}
.listMenu ul li{
	background-image: url(/themes/sweet1/images/nav_subli.png);
	background-position: left top;
}

.listMenu ul li a {
	background-image: url(/themes/sweet1/images/nav_sublink.jpg);
	font-size: 14px;
	line-height: 16px;
	font-variant: normal;
	text-align: left;
	background-position: 16px top;
	padding-left: 40px;
	background-repeat: no-repeat;
}
.listMenu ul li a:hover {
	background-image: url(/themes/sweet1/images/nav_sublink.jpg);
	background-position: 16px top;
}

/* Second level Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */

.listMenu ul ul {
	margin: 0;
	padding: 24px 0px 12px;
	display: none;
	position: absolute;
	top: -25px;
	left: 249px;
	background-image: url(/themes/sweet1/images/nav_subbottom.png);
	background-repeat: no-repeat;
	width: 249px;
	background-position: bottom;
	float: right;
	clear: none;
}
/* If its under the fist li */
.listMenu ul li.first ul {
	top: -17px;
}
.listMenu ul ul li.first {
	background-image: url(/themes/sweet1/images/nav_subtop.png);
	padding-top: 8px;
	background-repeat: no-repeat;
}
.listMenu ul ul li{
	background-image: url(/themes/sweet1/images/nav_subli.png);
	background-position: left top;
}

.listMenu ul ul li a , .listMenu ul ul li a.highlighted  , .listMenu ul ul li a.highlighted:hover {
	background-image: url(/themes/sweet1/images/nav_sublink.jpg);
	font-size: 14px;
	line-height: 16px;
	font-variant: normal;
	text-align: left;
	background-position: 16px top;
	padding-left: 40px;
	background-repeat: no-repeat;
}
.listMenu ul ul li a:hover {
	background-image: url(/themes/sweet1/images/nav_sublink.jpg);
	background-position: 16px top;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.listMenu li {
	position: relative;
}

/* Links inside the menu */
.listMenu a {
	display: block;
	padding: 4px 4px 3px;
	color: #4a3607;
	text-decoration: none;
	border-bottom: 1px;
	font-weight: bold;
	background-image: url(/themes/sweet1/images/navl1BG.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	font-family: "Times New Roman", Times, serif;
	font-size: 15px;
	font-variant: small-caps;
}

.listMenu a.parent {
}
/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/
.listMenu a:hover, .listMenu a.highlighted:hover, .listMenu a:focus {
	color: #000000;
	background-image: url(/themes/sweet1/images/nav_hover.jpg);
	background-position: center center;
}
.listMenu a.highlighted, .listMenu a.highlighted:hover, .listMenu li a.parent:hover{
	color: #000000;
	margin: 0;
	background-image: url(/themes/sweet1/images/nav_popen.jpg);
	background-repeat: no-repeat;
	background-position: right center;
}
.listMenu a.highlighted{

}
/*
 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);
    }
*/


/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.listMenu a .subind {
 float: right;
}

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