@charset "utf-8";
/* CSS Document */

#indentmenu{
	font: bold 12px  "Arial";
	width: 100%; /*leave this value as is in most cases*/
	overflow: hidden;
	text-decoration:none;
	height: 30px;
	background: url(../images/menubackground.png);
}

/* this is the main UL element*/
.horizontalmenu{
  display:none;
	margin: 0;
	padding: 0;
	float: left;
	width: 938px; /*width of menu*/
	height:30px;
	position:absolute;
	text-align:center;
	list-style-type:none;
}

/* these are the inner menus*/
.horizontalmenu ul{
	margin:0px;
	padding:0px;
	list-style-type:none;
	background: url(../images/menubackitem2.png);
	text-decoration:none;
	line-height: 30px;
}

/* these are all the LIs in the menu*/
.horizontalmenu li{
	font: bold 12px  "Arial";
	font-weight:bold;
	float:left;
	cursor:pointer;
	width:155px;
	height:30px;
	padding-top: 0px;
	background: url(../images/menubackitem.png);
	background-repeat:no-repeat;
	line-height: 30px;
	margin-top: 0px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.horizontalmenu a{
	text-decoration:none;
	color:#7A7777;
	width:100%;
}

.horizontalmenu a:hover{
	color:#FE7218;
}

/* these are the LIs that only belong to submenu*/
.horizontalmenu ul li{
	font: bold 11px  "Arial";
	font-weight:bold;
	float:left;
	cursor:pointer;
	background: url(../images/menubackitem3.png) center right no-repeat;
	width:180px;
	display:inline-block;
	text-align:left;
	padding-left:10px;
	height:30px;
	line-height: 30px;
}

/* these are the LIs that contains a submenu*/
/*.dropdown li.submenu-down{
	background:#000 url('../expand_down.gif') center left no-repeat;
	padding-left:20px;
	width:105px;
}*/

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.horizontalmenu li.submenu-left{
	background: url(../images/expand_right.png) center right no-repeat; 
	width:180px;
}
