/*hauptmenü einstellungen*/
#cssonclickswitch {
/*border-width: 1px;
border-style: solid;
border-color: #000000;*/
position:relative;
min-width: 150px;
margin:0px auto 0px;
}
#cssonclickswitch li {
list-style: none;
min-width:100px;
}
#cssonclickswitch ul {
padding: 0px;
margin: 0px;
padding-left: 20px;
}

/*weitere Einstellungen der Schrift des Menüs allgemein (Linksbündig z.b.)*/
#cssonclickswitch a {
display: block;
min-width:50px;
color: #000;
text-decoration:none;
text-align:left;
}
#cssonclickswitch a img {
border:0;
}
/*Wenn maus über dem Menüpunkt ist*/
#cssonclickswitch a:hover,
#cssonclickswitch a:focus:hover {
font-weight: bold;
}
/*Wenn Menüpunkt ausgewählt*/
#cssonclickswitch a:active,
#cssonclickswitch a:focus {
color:#fff;
background-color:black;
}
#cssonclickswitch a span {display: none;}

/*Einstellugnen des Untermenüs*/
#cssonclickswitch a:active span,
#cssonclickswitch a:focus span {
display: block;
position: relative;
border-width: 1px;
border-style: solid;
border-color: #000000;
top: 0;
min-width: 100px;
color:black;
background:#EFCFA5;
font: 10px arial, helvetica, sans-serif;
}

/*Einstellung des untermenüs mit aufzählungszeichen*/
#cssonclickswitch a:active span,
#cssonclickswitch a:focus span li{
list-style: disc;
list-style-position: outside;
}

