@import url(https://fonts.googleapis.com/css?family=Roboto);

/* BASIC */

*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

body{
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #333;
    background: #08009E;
    margin: 0;
    padding: 0;
    position: relative;
}

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

a:hover{
    color: #333;
}

h1{
    font-size: 42px;
    font-weight: normal;
    margin-top: 0;
    text-transform: uppercase;
}

h2{
    font-size: 22px;
    font-weight: normal;
}

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;
}

img{
    max-width: 100%;
}

/* 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;
    cursor: pointer;
}

/* 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%;
    background: #fff;
    overflow: hidden;
}

#header{
    width: 100%;
    position: fixed;
    background: #08009E;
    box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.30);
    z-index: 999;
}

#header_content{
    max-width: 850px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden;
}

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

#sidebar{
    clear: both;
    background: #f7f7f7;
}

#sidebar_content{
    max-width: 850px;
    margin: 0 auto;
    padding: 6px 15px;
    overflow: hidden;
}

#content{
}

#footer{
    clear: both;
    font-size: 14px;
    text-align: center;
    color: #1551DC;
    background: #08009E;
    padding: 6px 15px;
    color: #fff;
}

#footer_content{
    max-width: 850px;
    margin: 0 auto;
}

#footer_content a{
    color: #ffffff;
}

/* MENU */

#navigation{
    display: block;
    list-style: none;
    margin: 0;
    width: 65%;
    font-size: 14px;
    text-transform: uppercase; 
    overflow: hidden;
}

#navigation li{
    float: left;
}

#navigation a{
    display: block;
    color: #4986b7;
    padding: 15px;
    transition: all 0.5s ease;
}

#navigation a:hover{
    background: #4986b7;
    color: #fff;
}

#navigation li ul{
    display: none;
    position: absolute;
    list-style: none;
    background: #fff;
    box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.30);
}

#navigation li:hover ul{
    display: block;
}

#navigation li ul li{
    clear: both;
    width: 100%;
}

#siteName{
    display: block;
    margin: 0;
    width: 25%;
    float: left;
    padding: 15px 0;
    text-transform: uppercase;
    font-size: 14px;
}

/* SITE NAME */

#siteName a{
    color: #4986b7;
}

/* TOP BANNER */

#banner{
    height: 80px;
     no-repeat center;
    background-size: cover;
    background-attachment: fixed; 
}

/* MOBILE */

@media only screen and (max-width: 1024px){
    
    #navigation{
        font-size: 12px;
    }
    
    #siteName{
        font-size: 12px;
    }

}

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

}