/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

#menu{
margin: 0;
padding: 0;
height: 30px;
color: #f5cf7c;
}

#treemenu1{
	margin: 0px;
	padding: 0px;
	padding-top: 7px;
	font-size: 14px;
	font-family: arial, sans-serif;
	list-style: none;
}

#treemenu2{
	background-color: #382c11;
	background-image: url(../images/drop-down-bg.png);
	color: #f5cf7c;
	margin: 0px;
	padding: 0px;
	padding-top: 7px;
	font-size: 12px;
	font-family: arial, sans-serif;
	list-style: none;
	border: 1px solid #5d491a;
}

.signup{
	margin-top: 0px;
	font-size: 12px;
	font-weight: bold;
}

.main_menus{
	padding-left: 3px;
	padding-right: 3px;
	border-left: 1px solid #f5cc73;
	top: 3px;
}

.main_menus:hover{
	background-image: url(../images/menu-hover.png);
	background-repeat: repeat-x;
	
}

.sub_menus{
	color: #ffffff;
	border-bottom: 1px solid #4b3c17;
}

.men_a{
	border-left: none;
}

.main_menu_links{
	color: #f5cf7c;
	text-decoration: none;
	cursor: pointer;
}

.sub_menu_links{
	padding-top: 3px;
	padding-bottom: 3px;
	color: #ffffff;
	text-decoration: none;
	cursor: pointer;
}

#treemenu1{
	margin-left: 18px;
}

/*Top level list items*/
#menu ul li{
position: relative;
display: inline;
float: left; 
/*overall menu background color*/
}

/*Top level menu link items style*/
#menu ul li a{
display: block;
width: ; /*Width of top level menu link items*/
padding: 1px 5px;
border-left-width: 0;
}
	
/*1st sub level menu*/
#menu ul li ul{
left: 0;
position: absolute;
top: 1em; /* no need to change, as true value set by script */
display: block;
padding: 2px 2px 2px 2px;
visibility: hidden;
}

#sub_list{
	margin-left: 0px;
}

/*Sub level menu list items (undo style from Top level List Items)*/
#menu ul li ul li{
display: list-item;
padding-top: 5px;
float: none;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
#menu ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
top: 0;
}

/* Sub level menu links style */
#menu ul li ul li a{
display: block;
width: 120px; /*width of sub menu levels*/
}

/*Background image for top level menu list links */


/*Background image for subsequent level menu list links */

* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}
	
/* Holly Hack for IE \*/
* html .suckertreemenu ul li { float: left; height: 1%; }
* html .suckertreemenu ul li a { height: 1%; }
/* End */