
@import url(//fonts.googleapis.com/css?family=PT+Sans+Narrow);
@import url(http://fonts.googleapis.com/css?family=Roboto);

/* BASIC */

*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    max-width: 100%;
}

body{
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #333;
    background: #082C87;
    margin: 0;
    padding: 0;
}

a, a:hover, a:active, a:visited{
    color: #0000FF;
    text-decoration: none;
}

a:hover{
    color: #333;
}

h1{
    font-size: 42px;
    font-weight: normal;
    font-family: 'PT Sans Narrow';
    margin-top: 0;
    text-transform: uppercase;
}

h2{
    font-size: 22px;
    font-weight: normal;
    background: url(flower-xxx.png) no-repeat;
    background-size: 12px;
    background-position: left center;
    padding-left: 22px;
}

h3{
    font-size: 18px;
    font-weight: normal;
    font-style: italic;
}

ul, ol{
    padding-left: 0;
    margin-left: 0;
    list-style-position: inside;
}

hr{
    background: #ccc;
    height: 1px;
    border: 0;
    margin: 30px 0;
}

/* TABLES */

table{
    width: 100%;
}

tr{
    border-bottom: 1px solid #e9e9e9;
}

tr:last-child{
    border-bottom: 0;
}

tr:nth-child(even){
    background: #fefae2;
}

th, td{
    text-align: left;
    padding: 5px;
}

/* FORM */

input{
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}

input[type=text], input[type=email], input[type=password], textarea{
    background: #fff;
    background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF));  
    background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px);  
    box-shadow: inset rgba(0,0,0, 0.1) 0px 0px 8px;  
    -moz-box-shadow: inset rgba(0,0,0, 0.1) 0px 0px 8px;  
    -webkit-box-shadow: inset rgba(0,0,0, 0.1) 0px 0px 8px; 
    -webkit-box-shadow: inset rgba(0, 0, 0, 0.15) 0px 0px 8px;
    border: 1px solid #e9e9e9;
    padding: 5px;
    width: 100%;
}

textarea{
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    width: 100%;
    min-height: 250px;
}

input[type=submit], input[type=button]{
    text-decoration: none;
    color: #fff;
    margin: 0;
    padding: 15px;
    background: #4986b7;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    border: 0;
}

/* CODE */

pre{
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -o-pre-wrap;
}

code{
    font-size: 12px;
    font-family: Verdana, "Lucida Grande", Lucida, Tahoma, "Trebuchet MS", Arial, Geneva, Helvetica, sans-serif;
}

/* ALERT */

#msg p{
    padding: 5px;
    font-size: 12px;
}

#msg.success{
    background: #ccffcc;
    color: green;
}

#msg.error{
    background: #ffcccc;
    color: #cc3333;
}

/* STRUCTURE */

#container{
    width: 100%;
}

#header{
    width: 100%;
}

#header_content{
    max-width: 960px;
    margin: 0 auto;
    padding: 15px;
}

#body{
    overflow: hidden;
    max-width: 960px;
    margin: 60px auto;
    padding: 15px;
}

#sidebar{
    width: 20%;
    float: left;
}
#content{
    width: 80%;
    float: right;
 background: #FFF;
padding: 1em;
}

#footer{
    clear: both;
    max-width: 960px;
    margin: 0 auto;
    font-size: 10px;
    text-align: center;
    color: #FFF;
}
#footer a:link {color:#ffffff;}
#footer a:hover  a:active, a:visited{color:#ffffff;} 

/* MENU */

#navigation{
    font-family: 'PT Sans Narrow';
    text-transform: uppercase;
    list-style: none;
}

#navigation li{
    padding: 5px;
    border-bottom: 1px solid #ccc;
}

#navigation a{
    display: block;
    color: #FFF;
}
#navigation a:hover{
}

#siteName{
    margin: 0;
}

/* SITE NAME */

#siteName a{
    color: #FFF;
}

/* TOP BANNER */

#banner{
    height: 1px;
    background: url(none.jpg) no-repeat center;
    background-size: cover;
}

/* MOBILE */

@media only screen and (max-width: 768px){
    
    #sidebar{
        width: 100%;
    }
    
    #content{
        width: 100%;
    }

}