/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	cursor:pointer;
	height: 24px;
	line-height: 22px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	width:100%;
}

.dropdown a:hover{
	text-decoration:none;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul {
	margin-top: 1px;
}

.dropdown ul li {
	background-image: url(../images/bg-menu.jpg);
	border:1px solid #cdcdcd;
	border-top:0;
	width: 180px;
	height: 27px;
	line-height: 20px;
	margin-left: -1px;
	padding-right: 10px;
}
.dropdown ul li:hover{
	background-image: url(../images/bg-menu-hover.jpg);
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down {
	padding-left: 0px;
	margin-left: 0px;
	width: 180px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	width: 180px;
	background: url(../images/bg-menu-arrow.jpg) top right;
}
.dropdown li.submenu-left:hover{
	background: url(../images/bg-menu-hover-arrow.jpg) top right;
}
.menuDepth1 a {
	color:#727272;
	font-family:times new roman;
	font-size:13px;
	font-variant:small-caps;
	position:relative;
	width: 160px;
	margin:0px 10px;
	white-space: nowrap;
	text-align: center;
	
}
.menuDepth1 a:hover {
	color: #B5985A;
}

/*
.menuDepth2 {
	margin-top: 3px !important;
}
*/
.menuDepth2 a {
	margin-left:0px;
	margin-right:0px;
	padding-left: 12px;
	padding-top: 6px;
	text-align: left;
	line-height: 14px;
	vertical-align:middle;
	color: #384c3e;
}

.menuDepth2 a:hover {
	color: red;
}

.menuDepth2 > li {
	margin-left: 3px !important;
}

