* {
    box-sizing: border-box;
}
.row::after {
    content: "";
    clear: both;
    display: table;
}
[class*="col-"] {
    float: left;
    padding: 15px;
}

.header {
    background-color: #0099cc;
    color: #ffffff;
    padding: 15px;
}
.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.menu li {
    padding: 8px;
    margin-bottom: 7px;
    background-color: #23b5e0;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.menu li.red {
    padding: 8px;
    margin-bottom: 7px;
    background-color: #8A0808;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.menu li.gruen {
    padding: 8px;
    margin-bottom: 7px;
    background-color: #0B6121;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.menu li.orange {
    padding: 8px;
    margin-bottom: 7px;
    background-color: #FF8000;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.menu li.grey {
    padding: 8px;
    margin-bottom: 7px;
    background-color: #cccccc;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.menu li.hellblau {
    padding: 8px;
  	margin-left: 30px;
  	margin-right: 30px;
    color: #202020;
	background-color: #81DAF5;
    box-shadow: inset 10px 10px 10px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.menu li.darkgrey {
    padding: 8px;
    margin-bottom: 7px;
    background-color: #aaaaaa;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.menu li:hover {
    background-color:#0099cc;
}
.menu li.hellblau:hover {
    background-color:#81DAF5;
}
.menu li.gruen:hover {
    background-color:#0B3B24;
}

.menu li.red:hover {
    background-color:#610B0B;
}
.menu li.orange:hover {
    background-color:#FE9A2E;
}
.menu li a {
	 display: block;
    color:#ffffff;
	text-align:center;
}
.menu li a.red {
	 display: block;
    color:#8A0829;
	text-align:center;
}
.menu li a.orange {
	 display: block;
    color:#8A0829;
	text-align:center;
}
.aside {
    background-color: #33b5e5;
    padding: 15px;
    color: #ffffff;
    text-align: left;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.footer {
    background-color: #045FB4;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    padding: 10px;
	position:fixed;
	width:100%;
	bottom:00px;
}
.footer1 {
    background-color: #1199cc;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    padding: 15px;
}
/* For mobile phones: */
[class*="col-"] {
    width: 100%;
}
@media only screen and (min-width: 900px) {
    /* For desktop: */
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
}
</style>