﻿@charset "utf-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-ms-box-sizing: border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	-moz-font-smoothing:antialiased;
	-o-font-smoothing:antialiased;
	text-rendering:optimizeLegibility;

}

img {
	
	width: 100%;
	height: auto;
}

body {

	/*font-family: 'Raleway', 'Anton', 'Roboto', 'Roboto Condensed';*/
    font-family: 'Roboto Condensed', sans-serif;
}

.wrap {
	
	width: 100%;
	background-color: #FFF;
  
}

.header_area {
	
	width: 100%;
	height: 40px;
	
	border-bottom: #F00 solid 3px;

}

.logo {

	width: 177px;
	height: 30px;
	
	margin-left: 15px;
	margin-top: 15px;
}

.contact_us, .contact_us2 {

	margin: 0;
	padding: 0;
	
	width: 200px; 
	height: 45px;
	 
	background-color: #F9F9F9;
	border: #CCC solid 1px;
	
	display: none;

}

.contact_us:hover {
	
	background-color: #FFF4F0;
}

.contact_us2:hover {
	
	background-color: #F0F7FF;
}

.contact_logo {

	float: left;
	
	margin: 5px;
	
	width: 30px;
	height: 30px;
}

.contact_desc {
	
	margin: 0px 0px 0px 45px;
	
	width: 160px; 
	height: 45px; 
}

.contact_title {
	
	width: 150px;
	height: 18px;
	
	margin-top: 5px;
	margin-bottom: 5px;
	
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.2em;
	border-bottom: #CCC solid 1px;
	color: #39F;
}

.contact_description {

	height: 15px;
	width: 150px;
	
	padding: 1px;
	 
	text-align: right;
	font-size: 10px;
	letter-spacing: 0.1em;
	color: #333;
}

.toggle_menu {
	
	position: absolute;
	top: 10px;
	right: 20px;
	
	height: 30px;
	display: block;
	
	padding-right: 10px;
	cursor: pointer;
}

.hamburger, 
.hamburger::before, 
.hamburger::after {

	content: '';
	display: block;
	
	background-color: #F00;
	
	transform: translateY(15px);
	
	width: 25px;
	height: 4px;
	border-radius: 4px;	
}

.hamburger::before {
	
	transform: translateY(-9px);

}

.hamburger::after {
	transform: translateY(5px);

}

.active .hamburger {
	
	transition-timing-function: ease-in;
	transform: rotate(45deg) translateX(9px) translateY(9px);
}

.active .hamburger::after {
	
	transition: ease 0.5s;
	transform: rotate(90deg) translateX(-4px) ;
}

.active .hamburger::before {
	
	opacity: 0;
}


.nav_menu {
	
	width: 100%;
	font-family: 'Roboto';
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.2em;
	height: 0;
	overflow: hidden;
	
}

.nav_open {
	
	height: auto;
}

.nav_menu ul {
	
	list-style-type: none;
}

.nav_menu ul li {
	
	line-height: 45px;
	color: #333;
	text-align: center;
	width: 100%;
	height: auto;
	background-color: #FDFDFD;
	border-bottom: #CCC solid 1px;	
}

.nav_menu ul li a {
	
	width: 100%;	
	height: 45px;

	display: block;
	color: #666;
	
	text-decoration: none;
	
	opacity: 0.8;
}

.nav_menu ul li a:hover {
	
	transition: ease 1s;
	font-size: 16px;
	background-color: #F4F4F4;
	opacity: 0.8;
	color: #009;
	transition: .5s ease;
}

.nav_menu ul li ul{
	
	display: none;
}

.nav_menu ul li:hover ul{
	
	transition: ease 1s;
	display: block;
}


.nav_menu ul li ul li {

	font-size: 12px;
	color: #F33;
	
    position: relative;
    left: 30%;
    width: 70%;
	line-height: 35px;
	height: 35px;
	
	text-align: center;
	
	border-top: #CCC solid 1px;
	border-bottom: none;
	/*background-color: #333333;*/
}

.nav_menu ul li ul li a{
	
	width: 100%;
	height: 35px;
	color: #F33;
}

.nav_menu ul li ul li a:hover{
	
	font-size: 14px;
	background-color: #666;
	color: #FFF;
	
}

#h {
	color: #F33;
	font-size: 16px;
	font-weight: 800;
}

#k {
	color: #09F;
	font-size: 16px;
	font-weight: 800;
}

.footer {

	width: 100%;
	height: 110px;
	background-color: #333;
}

.foot_address {
	
	width: 100%;	
	padding-top: 10px;
	font-family: 'Raleway';
	color: #FFF;
	letter-spacing: 0.1em;
	
}

.foot_address ul {
	list-style-type: none;
}

.foot_address ul li {
	
	padding-bottom: 5px;
	font-size: 12px;
	text-align: center;
}

#copyright {
	
	width: 100%;
	bottom: 5px;
	margin-top: 20px;
	text-align: center;
	color: #F93;
	font-size: 10px;
}