@charset "utf-8";
/* CSS Document */

*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

body{
	background:#f5f5f5;
	font-family:Arial, Helvetica, sans-serif;
}

#wrapper{
	width:1000px;
	margin:auto;
	background:#ffffff;
}

#header{
	width:1000px;
	height:90px;
	background:#0B7AD1;
}

#logo{
	width:300px;
	height:90px;
	float:left;
}

#logo h1{
	color:#FFD400;
	font-size:42px;
	margin-top:18px;
	margin-left:25px;
	float:left;
}

#logo h4{
	color:white;
	margin-top:34px;
	margin-left:10px;
	font-size:16px;
	float:left;
}

#navigation{
	width:700px;
	height:90px;
	float:right;
}

#navigation ul{
	list-style:none;
	margin-top:35px;
	float:right;
	margin-right:20px;
}

#navigation ul li{
	float:left;
	margin-left:25px;
}

#navigation ul li a{
	text-decoration:none;
	color:white;
	font-size:14px;
	font-weight:bold;
}

#navigation ul li a:hover{
	color:#FFD400;
}

#contact_title{

    width:1000px;
    height:170px;
    background:#0B7AD1;
    text-align:center;
    padding-top:45px;

}

#contact_title h1{

    color:#ffffff;
    font-size:42px;

}

#contact_title p{

    color:#ffffff;
    margin-top:15px;
    font-size:18px;

}

#contact_section{

    width:1000px;
    overflow:hidden;
    background:#ffffff;
    padding:50px;

}

#contact_form{

    width:450px;
    float:left;

}

#contact_info{

    width:400px;
    float:right;

}

#contact_form h2,
#contact_info h2{

    color:#0B7AD1;
    margin-bottom:25px;

}

#contact_form input[type="text"],
#contact_form input[type="email"]{

    width:100%;
    padding:12px;
    margin-bottom:20px;
    border:1px solid #cccccc;
    border-radius:5px;

}

#contact_form textarea{

    width:100%;
    height:150px;
    padding:12px;
    border:1px solid #cccccc;
    border-radius:5px;
    resize:none;
    margin-bottom:20px;

}

#contact_form input[type="submit"]{

    background:#9ACD32;
    color:#ffffff;
    border:none;
    padding:14px 35px;
    border-radius:5px;
    cursor:pointer;
    font-weight:bold;

}

#contact_form input[type="submit"]:hover{

    background:#0B7AD1;

}

#contact_info p{

    margin-bottom:25px;
    line-height:28px;
    color:#555555;

}

#footer{

    width:1000px;

    height:250px;

    background:#222;

    clear:both;

}

.footer_box{

    width:300px;

    float:left;

    margin-left:25px;

    margin-top:40px;

}

.footer_box h3{

    color:#FFD400;

    margin-bottom:20px;

}

.footer_box p{

    color:white;

    line-height:28px;

}

.footer_box a{

    color:white;

    text-decoration:none;

}

.footer_box a:hover{

    color:#9ACD32;

}

#copyright{

    width:1000px;

    height:50px;

    background:#111;

    color:white;

    text-align:center;

    line-height:50px;

}