/*
     top menu bar
*/

/* horizontal bar */
/* essential */
.navsys,
.navsys ul
{
	list-style: none;
	margin: 0px;
	padding: 0px;
    line-height: 10px; /* needed for multi-level dropdowns */
}

.navsys li
{
    float: left;
/*    width: 120px;*/ /* Opera fix */

    /* wenn li border hat: wegen float left -> rechte linie auslöschen
       ohne border nicht existent */
 	/*margin-left: -1px; */
}

/* Levels > 1 fixe Breite */
.navsys a
{
    display: block;
    width: 180px;

    /* influences additional level margins */
    padding: 7px 0;
	margin-left: -1px;
}

.navsys a.navsys_l1
{
    display: block;
    width: auto;

    /* influences additional level margins */
    padding: 6px 7px;
	margin-left: 0px;
}

.navsys a.navsys_l1Sel
{
    display: block;
    width: auto;

    /* influences additional level margins */
    padding: 6px 7px;
	margin-left: 0px;
}

/* first level dropdown */
.navsys li ul
{
    position: absolute;
    width: 180px;
    left: -999em;
}

/* on hover show next additional level (up to 5th) */
.navsys li:hover ul,
.navsys li.navTopHover ul
{
    left: auto;
}

/* design */
.navsys
{
	font-family: Arial;
    font-size: 9pt;
	text-transform: uppercase;
}

.navsys li
{
   /* border: 1px solid #c3bdba; */
}

.navsys a
{
    font-weight: bold;
    color: #5f6973;
    text-decoration: none;
    text-align: left;
    background-color: #E1E1E1;
    padding-left: 7px;
    padding-right: 7px;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #E1E1E1;
	border-left: 1px solid #E1E1E1;
	border-right: 1px solid #E1E1E1;
}

.navsys a:hover
{
    color: #E1E1E1;
    background-color: #666666;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #666666;
	border-left: 1px solid #666666;
	border-right: 1px solid #666666;
}

.navsys a.navsys_l1
{
    text-align: center;
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: 1px solid #666666;
    color: #5f6973;
    background-color: #ffffff;
}

.navsys a.navsys_l1:hover
{
    color: #E1E1E1;
    background-color: #666666;
}

.navsys a.navsys_l1Sel
{
    text-align: center;
	border-top: none;
	border-bottom: none;
	border-left: none;
	border-right: 1px solid #666666;
    color: #D84252;
    background-color: #ffffff;
}

.navsys a.navsys_l1Sel:hover
{
    color: #E1E1E1;
    background-color: #666666;
}

