body,
html {
	font: 400 9pt "Open Sans", sans-serif;	
	height: 100%;
	margin: 0;
	overflow: hidden;
	padding: 0;
}


/* HEADER LAYOUT
================================================================================================================================ */

header {
	background: #fff;
	box-shadow: 0 1px 0 rgba(0,0,0,0.3);
	height: 100px;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 20;
}

.wrapper {
	padding: 0 15px;
}

/* NAVIGATION
================================================================================================================================ */

nav {
	background: #333;
	height: 30px;
	overflow: hidden;
	padding: 0 10px;
	text-align: center;
}
nav a {
	border-right: solid 1px rgba(255,255,255,0.15);
	color: #ccc;
	display: inline-block;
	font-weight: 700;
	height: 30px;
	line-height: 30px;
	padding: 0 10px;
	text-decoration: none;
}
nav a:first-child {
	border-left: solid 1px rgba(255,255,255,0.15);
}
nav a:hover {
	color: #fff;
}


/* LOGO
================================================================================================================================ */

#logo {
	float: left;
	margin-right: 10px;
	padding-top: 4px;
}

#logo img {
	border-radius: 2px;
	border: solid 1px rgba(0,0,0,0.1);
	height: 60px;
	width: auto;
}


/* TITLE
================================================================================================================================ */

#title {
	display: table;
	float: left;
	height: 70px;
}
#title div {
	color: #222;
	display: table-cell;
	font: 700 16pt "Open Sans Condensed", sans-serif;
	line-height: 80%;	
	vertical-align: middle;
}
#title div span {
	color: #666;
	display: block;
	font: 400 italic 10pt/110% "Open Sans", sans-serif;	
	padding-top: 3px;
}


/* CONTACT
================================================================================================================================ */

#contact {
	display: table;	
	float: right;
	height: 70px;
}
#contact > div {
	display: table-cell;
	vertical-align: middle;
}
#contact > div > span {
	color: #888;
	display: block;
	font-size: 8.5pt;
	text-align: right;
}

#contact > div > span.phone {
	color: #222;
	font: 700 14pt "Open Sans Condensed", sans-serif;	
}
#contact > div > span.phone > span {
	color: #666;
	font-size: 10pt;
	padding-left: 6px;
	text-transform: uppercase;
}

#contact > div > span.address > span {
	display: block;
	line-height: 110%;
}

@media screen and (max-width: 760px) {
  #contact {
	  display: none;	
  }
}


/* CONTENT IFRAME
================================================================================================================================ */

#content {
	bottom: 0;
	left: 0;
	position: absolute;
	right: 0;
	top: 100px;
	z-index: 10;
}