﻿/*horizontal menu setup*/
.horizontalcssmenu ul{
	display: list-item;
	margin: 0px;
	padding: 0px; /*distance from top menu under neath*/
	
}

/*Top level list items*/
.horizontalcssmenu ul li{
	position: relative;
	display: inline;
	float: left;
}

/*Top level menu link items style*/
.horizontalcssmenu ul li a{
	border-left: 1px solid #202020;
	border-right: 1px solid #202020;
	border-top: 1px solid #202020;
	border-bottom: 0px solid #202020;
	display: block;
	width: 187px; /*Width of top level menu link items*/;
	text-decoration: none;
	background: url('images/menubg.gif') repeat-x center;
	color: black;
	font-style: normal;
	font-variant: normal;
	font-weight: bold;
	font-size: 18px;
	font-family: Tahoma;
	padding-left: 1px;
	padding-right: 1px;
	padding-top: 1px;
	padding-bottom: 1px;
}
	
/*Sub level menu*/
.horizontalcssmenu ul li ul{
	left: 10px; /*set location of drop down menu*/;
	top: 0px; /*set location vertical from top bar of drop down menu*/;
	border-top: 1px solid #202020;
	position: absolute;
	display: inline;
	visibility: hidden;
	z-index: 100;
}

/*Sub level menu list items*/
.horizontalcssmenu ul li ul li{
	display: inline;
	float: left;
	left: 5px;
	
}


/* Sub level menu links style */
.horizontalcssmenu ul li ul li a{
	width: 245px; /*width of sub menu levels*/;
	font-weight: bold; /*font type for sub menu*/;
	padding: 0px 0px 0px 0px;
	position: relative; /*padding to add to font position*/;
	background: #ccddff;
	border-width: 1px 1px 1px 1px;
}

.horizontalcssmenu ul li a:hover{
background: url('images/menubgover.gif') repeat-x center;
}

.horizontalcssmenu ul li ul li a:hover{
background: #eeeeff;
}

/* arrow division style */
.horizontalcssmenu .arrowdiv{
	position: absolute;
	right: auto;
	background: url('images/menuarrow.gif') no-repeat center left;
}

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