/* Unessential CSS - Just here to make this sample page prettier */
.rm-nav ul,
.rm-menu {
        background: #0066cc;
    }
    
@media screen and ( min-width: 1000px ) {
.rm-nav ul,
.rm-menu {
        list-style: none;  
        -moz-border-radius: 10px;
        border-radius: 10px;
        -moz-box-shadow: 0 2px 1px #9c9c9c;
        -webkit-box-shadow: 0 2px 1px #9c9c9c;
        box-shadow: 0 2px 1px #9c9c9c;
    }
}
@media screen and ( max-width: 1000px ) {
    .rm-nav  li a {
        border-bottom: #fff 1px solid;
        padding-left: 50px !Important;
    }
}
.rm-nav li a {
    text-transform: uppercase;
    font: bold 12px/20px Tahoma, sans-serif,  arial;
    text-decoration: none;
    text-shadow: 0 1px 0 #000 !Important;
    outline: none;
}

.menu-default ul{
        background: #0066cc;
}

.menu-bilet ul{
        background: #dd4d06;
}
.menu-freizeit ul{
        background: #dd4d06;
}

@media screen and ( min-width: 1000px ) {
    .menu-default ul{
            background: #0066cc;
            background: -moz-linear-gradient(#0066cc, #86b6e6); 
            background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #86b6e6),color-stop(1, #0066cc));	
            background: -webkit-linear-gradient(#0066cc, #86b6e6);	
            background: -o-linear-gradient(#0066cc, #86b6e6);
            background: -ms-linear-gradient(#0066cc, #86b6e6);
            background: linear-gradient(#0066cc, #86b6e6);    
    }

    .menu-bilet ul{
            background: #dd4d06;
            background: -moz-linear-gradient(#dd4d06, #e6a886); 
            background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #e6a886),color-stop(1, #dd4d06));	
            background: -webkit-linear-gradient(#dd4d06, #e6a886);	
            background: -o-linear-gradient(#dd4d06, #e6a886);
            background: -ms-linear-gradient(#dd4d06, #e6a886);
            background: linear-gradient(#dd4d06, #e6a886);    
    }
    
    .menu-freizeit ul{
            background: green;
            background: -moz-linear-gradient(green, #4cde13); 
            background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #4cde13),color-stop(1, green));	
            background: -webkit-linear-gradient(green, #4cde13);	
            background: -o-linear-gradient(green, #4cde13);
            background: -ms-linear-gradient(green, #4cde13);
            background: linear-gradient(green, #4cde13);    
    }    
}