body{
    margin:0px;
    padding: 0px;
    background-image: radial-gradient(circle, #0099cc, #0091c2, #0089b7, #0082ad, #007aa3);
    font-family: Helvetica, Arial, sans-serif;
}

#header{
    height: 50px;
    background-color: #007aa3;
    border-bottom: 5px solid #004c66;
}
#header_content{
    width: 360px;
    line-height: 50px;
    height: 50px;
    font-size: 25px;
    font-weight: bold;
    margin: 0px auto;
    color: #eee;
}
.nav_logo{
    height: 50px;
    float: left;
    margin-right: 10px;
    cursor: pointer;
}
#body{
    width: 360px;
    margin: 0px auto;
    padding: 10px;
    box-sizing: border-box;
}
#footer{
    border-top: 5px solid #004c66;
}
#footer_content{
    width: 360px;
    text-align: center;
    margin: 0px auto;
    padding: 10px;
    color: #eee;
    font-size: 12px;
    box-sizing: border-box;
}

a:link {color: #eee;}
a:visited {color: #eee;}
a:hover {color: #eee;}
a:active {color: #eee;}

#menu{
    z-index: 10;
    position: fixed;
    top: 0px;
    left: -100%;
    width: 100%;
    height: 100%;
}
#menu_content{
    background-color: #002d3d;
    width: 320px;
    height: 100%;
}
#menu_title{
    width: 360px;
    line-height: 50px;
    height: 50px;
    font-size: 25px;
    font-weight: bold;
    margin: 0px auto;
    color: #eee;
}
#menu_shadow{
    background: rgba(0,45,61,0.7);
    z-index: 9;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 100%;
    width: 100%;
    display: none;
    
}
input{
    border: 0px;
    font-family: 'Raleway', "Roboto", "Helvetica", "Arial", sans-serif;
    background-color: transparent;
    border-bottom-width: 3px;
    border-bottom-style: solid;
}
input:focus{
    outline : none;
}
.input_green{
    border-bottom-color: #5cb85c;
}
.input_green:focus{
    border-bottom-color: #52a552;
}
.input_blue{
    border-bottom-color: #428bca;
}
.input_blue:focus{
    border-bottom-color: #3b7db5;
}
.input_blue2{
    border-bottom-color: #5bc0de;
}
.input_blue2:focus{
    border-bottom-color: #51acc7;
}
.input_red{
    border-bottom-color: #d9534f;
}
.input_red:focus{
    border-bottom-color: #c34a47;
}
.img_button{
    display: inline-block;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 4px 5px 4px 5px;
    cursor: pointer;
    text-decoration: none;
}
.img_button img{
    height: 35px;
    vertical-align: middle;
    margin-right: 10px;
}
.button_green{
    background-color: #5cb85c;
}
.button_green:hover{
    background-color: #52a552;
}
.button_blue{
    background-color: #428bca;
}
.button_blue:hover{
    background-color: #3b7db5;
}
.button_blue2{
    background-color: #5bc0de;
}
.button_blue2:hover{
    background-color: #51acc7;
}
.button_red{
    background-color: #d9534f;
}
.button_red:hover{
    background-color: #c34a47;
}
.button_white{
    background-color: #ecf0f1;
    color: #404040 !important;
}
.button_white:hover{
    background-color: #bdc3c7;
}
.only_img img{
    margin-right: 0px !important;
}
.error_text{
    color: #ff7874;
    font-weight: bold;
    
}