#topmenu {
	margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    width: auto;
	line-height: 100%;
    height: 20px;
    position: relative;
    top: 0;
    z-index: 100
}
#topmenu li {
  width: 129px;
	margin: 0 3px;
	padding: 0 0 5px;
	float: left;
	position: relative;
	list-style: none;
}
/* main level link */
#topmenu a {
  background-color: #001834;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
  font-size: 12pt;
  font-weight: bold;
  font-family: arial;
  color: #F6F6F6;
  text-align: center;
  border-radius: 4px;
  border: 1px ridge #001834;
	display: block;
	margin: 0;
/*	text-shadow: #0F0F0F; */
}
/* main level link hover */
#topmenu .current a, #topmenu li:hover > a {
  background-color: #233B53;
  border:  1px  outset  #001834
	/* box-shadow: 0 1px 1px rgba(0, 0, 0, .2); */
	/* text-shadow: 0 1px 0 rgba(255, 255, 255, .8); */
}
/* sub levels link hover */
#topmenu ul li:hover a, #topmenu li:hover li a {
	border: none;
	box-shadow: none;
}
#topmenu ul a {
  background: none;
  color: #0F0F0F;
  padding: 5px 10px 5px 10px;
  font-size: 10pt;
  font-weight: normal;
  text-align: left;

}
#topmenu ul a:hover {
	background-color: #233B53; /* for non-css3 browsers */

	color: #F7F7F7;
	border-radius: 0;
	/* text-shadow: 0 1px 1px rgba(0, 0, 0, .1); */
}
/* level 2 list */
#topmenu ul {
	background: #ddd; /* for non-css3 browsers */
	display: none;
    width: 200px;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 35px;
	left: 0;
	border: solid 1px #b4b4b4;
	border-radius: 5px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}
/* dropdown */
#topmenu li:hover > ul {
	display: block;
}
#topmenu ul li {
	float: none;
    width: 200px;
	margin: 0;
	padding: 0;
}
#topmenu ul a {
	font-weight: normal;

}
/* level 3+ list */
#topmenu ul ul {
	left: 181px;
	top: -3px;
}
/* rounded corners for first and last child */
#topmenu ul li:first-child > a {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
#topmenu ul li:last-child > a {
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
/* clearfix */
#topmenu:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#topmenu {
	display: inline-block;
}
html[xmlns] #topmenu {
	display: block;
}
* html #topmenu {
	height: 1%;
}
