/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 15.11.2015, 16:24:01
    Author     : Klaus-Peter Kels
*/

*{
    font-family: 'Droid Sans', Helvetica, sans-serif;
}

body{
    background: linear-gradient(top, #223c7a 0%, #067983 50%, #1aa986 100%);
    background: -moz-linear-gradient(top, #223c7a 0%, #067983 50%, #1aa986 100%);
    background: -webkit-linear-gradient(top, #223c7a 0%, #067983 50%, #1aa986 100%);
    background: -ms-linear-gradient(top, #223c7a 0%, #067983 50%, #1aa986 100%);
    background: -o-linear-gradient(top, #223c7a 0%, #067983 50%, #1aa986 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#223c7a, endColorstr=#1aa986,GradientType=1);

    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 10px;
}
#mainNav a{
    text-decoration: none;
    color: #067983;
}
div{
    /*border:1px solid red;*/
}

#main, #header, #footer{
     -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
#main{
    font-size: 16px;
    -webkit-box-shadow: 10px 10px 10px -4px rgba(0,0,0,0.29);
    -moz-box-shadow: 10px 10px 10px -4px rgba(0,0,0,0.29);
    box-shadow: 10px 10px 10px -4px rgba(0,0,0,0.29);
    /*background-color: #aefdea;*/
    background-color: rgba(255,255,255,0.85);
    padding: 10px;
    max-width: 960px;

}
#header{
    height: 120px;
    margin: 10px;
    border: solid #067983;
    border-width: 0 0 1px 0;
    background-image: url(../img/tastaturBgV2.png);
    background-repeat: no-repeat;
    background-position: 0 -27px;
}
#header h1,
#header img{
    float:right;
    color:#067983;
    position: relative;
    left: -8px;
    top: 8px;
}

#mainNav, #mainContent, #footer{
    float: left;
}

#mainNav{
    width: 140px;
    margin-top: 25px; 
}
#mainNav ul{
    margin: 0 0 0 10px;
    padding: 0;
}
#mainNav li{
    list-style: none;
    color: #067983;
    font-size: 0.8em;
    margin-bottom: 4px;
}

#mainContent{
    max-width: 70%;
    padding: 10px;
}
#mainContent h1{
    color: #067983;
    font-size: 1.3em;
    padding: 0;
    margin: 0 0 0.2em 0;
}
#mainContent h2{
    color: #067983;
    font-size: 1.1em;
    padding: 0;
    margin: 0.2em 0 0 0;
}
#mainContent h3{
    color: #067983;
    font-size: 1em;
    padding: 0;
    margin: 0.2em 0 0 0;
}
#midBox:after{
    content: " ";
    display: table;
    clear: both;
}

#footer{
    height: 2em;
    margin: 10px;
    border-top: 1px solid #067983;
    color: #067983;
    font-size: 0.8em;
    padding: 4px 8px;
    width: 96%;
}

#footer .subnav{
    float: right;
    margin-left: 1em; 
}



