/* CSS Document */
#csstopmenu {
	width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 22px;
    margin-bottom: 60px;
    list-style: none;
    font-size: 12px;
}

#csstopmenu ul{
	padding: 0;
	margin: 0;
	list-style: none;
}

#csstopmenu li{
	float: left;
	position: relative;
}

#csstopmenu a{
	text-decoration: none;
}

.mainitems{
	border: 1px solid black;
	border-left-width: 0;
	background-color: #D8FE89;
	width: 6em;
    padding: 2px;   
    text-align: center;
}

.headerlinks a{
    font-size:14px;
	font-weight: bold;
	color: black;
}

.submenus{
	display: none;
	width: 5em;
	position: absolute;
	top: 1.2em;
	left: 0;
	background-color: #EEFFCC;
	border: 1px solid black;
}

.submenus li{
	width: 100%;
	text-align: center;
}

.submenus li a{
	display: block;
	width: 100%;
	text-indent: 3px;
	font-weight: bold;
}

.submenus li .italic{
	display: block;
	width: 100%;
	text-indent: 3px;
	font-style: italic;
	font-weight: normal;
}

html>body .submenus li a{ /* non IE browsers */
	width: auto;
}

.submenus li a:hover{
	background-color: yellow;
	color: black;
}

#csstopmenu li>ul {/* non IE browsers */
	top: auto;
	left: auto;
}

#csstopmenu li:hover ul, li.over ul {
	display: block;
}

html>body #clearmenu{ /* non IE browsers */
height: 3px;
}

