/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.1
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3
	
	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

@font-face {
		font-family: 'DINPro-Medium';
		src: url('fonts/donpromedium.eot');
		src: url('fonts/donpromedium.eot?#iefix') format('embedded-opentype'),
				 url('fonts/donpromedium.woff') format('woff'),
				 url('fonts/donpromedium.ttf') format('truetype'),
				 url('fonts/donpromedium.svg#dinpromedium') format('svg');
		font-weight: normal;
		font-style: normal;
}
@font-face {
		font-family: 'DINPro-Light';
		src: url('fonts/donprolight.eot');
		src: url('fonts/donprolight.eot?#iefix') format('embedded-opentype'),
				 url('fonts/donprolight.woff') format('woff'),
				 url('fonts/donprolight.ttf') format('truetype'),
				 url('fonts/donprolight.svg#dinprolight') format('svg');
		font-weight: normal;
		font-style: normal;
}
@font-face {
		font-family: 'HelveticaNeueLTStd-UltLt';
		src: url('fonts/helveticaneueltstdultlt.eot');
		src: url('fonts/helveticaneueltstdultlt.eot?#iefix') format('embedded-opentype'),
				 url('fonts/helveticaneueltstdultlt.woff') format('woff'),
				 url('fonts/helveticaneueltstdultlt.ttf') format('truetype'),
				 url('fonts/helveticaneueltstdultlt.svg#helveticaneueltstdultlt') format('svg');
		font-weight: normal;
		font-style: normal;
}

/* global box-sizing */
*,
*:after,
*:before {
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
html, body {
      width: 100%;
      height: 100%;
}
body {
	font:400 14px/1.0 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color:#bbb;
	background-color: black;
	min-width:950px;
	
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#bbb;
	text-decoration:none;
}
a:hover {
	color:#fff;
	text-decoration:underline;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width:900px;
	width:95%;
	margin:0 auto;
	position:relative;
	border-top: #fff solid 3px;
}
/* header */
header {
	z-index: 100;
	width:100%;
	height: 90px;
	background: url(img/black-bg-40.png) ;
	position: relative;
}
#header-wrapper{
	width: 900px;
	margin: auto;
	position: relative;
}
nav {
	position: absolute;
	top: 60px;
	right: 0;
}
nav ul, nav ul li{
	margin: 0;
	padding: 0;
}
nav ul li{
	text-transform: uppercase;
	list-style-type: none;
	display: block;
	float: left;
	margin-left: 20px;
}
nav a {
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	
}
nav a:hover {
	color:#bbb;
}
#logo {
	position: absolute;
	left: 0;
	top: 18px;
}
#logo img {
	width: 305px;
	height: 57px;
}
#sociallinks{
	position: absolute;
	top: 18px;
	right: 0;
}
a.socialicon {
	background-image: url(img/social-media.png);
	height: 16px;
	width: 16px;
	display: block;
	float: left;
	margin-left: 20px;
}
.fb { background-position: -0px -1px;}
.instagram { background-position: -55px -1px;}
.tumblr { background-position: -15px -1px;}
.tw { background-position: -35px -1px;}
.pin { background-position: -71px -1px;}
.em { background-position: -96px -1px;}
/* sidebar */
.sidebar {
	
}
/* footer */
.footer {
	border-top: #fff solid 3px;
	padding: 0 0 10px 0;
	margin-top: 40px;
	color: #bbb;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

#background-stage {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	z-index: 0;
	overflow: hidden;
}

#press-wrapper {
	width: 900px;
	overflow-x: hidden;
}
#press-container {
	width: 950px;
}
.press-article {
	width: 275px;
	height: 410px;
	float: left;
	margin-right: 37px;
	margin-bottom: 20px;
}
.press-article img{
	width: auto;
	height: 350px;
	
}
.article-title {
	margin-top: 10px;
	color: #fff;
}
.article-title span{
	color: #999;
}
.col1 {
	width: 320px;
	float: left;
	margin-right: 80px;
}
.col2 {
	width: 500px;
	float: left;
}
.col2 img{
	width: 500px;
	height: auto;
}
.columns {
	font-size: 15px;
	line-height: 20px;
	color: #d9dee3;
}
.columns a{
	color: #d9dee3;
}

#newswrapper {
	width: 976px;
}


#newscontainer {
	width:100%;
}

#newscontainer .item {
	width:50%;
}

#newscontainer .item img {
	display:block;
}
.post {
	margin-bottom: 50px;
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/

.post img {
	margin: 10px 0;
}

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/
body {
	
}
h1 {
	font-size: 58px;
	font-weight: normal;
	font-family: 'HelveticaNeueLTStd-UltLt', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	margin: 36px 0 30px 0;
	color: white;
}
.contactheader {
	margin-left: -0px;
}
.pressheader {
	margin-left: -0px;
}
.current-menu-item a {
	color:#666;
}
.post h2 {
	font-size: 32px;
	font-style: normal;
	width: 415px;
	font-family: 'HelveticaNeueLTStd-UltLt', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color:#fff;
	margin-top: 12px;
	margin-bottom: 10px;
}
.post p{
	width: 415px;
	line-height: 22px;
	color: #ccc;
	margin: 0 0 7px;
}
.spacer {
	margin-bottom: 10px;
	display: block;
}
.col1 a{
	color: #999;
	text-decoration: none;
}
.col1 a:hover{
	color: #999;
	text-decoration: underline;
}
.col1 p{
	margin:0 0 20px;
}
#newswrapper h1 {
	margin-left: -3px;
}
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {

}
@media only screen and (min-width:768px) {

}
@media only screen and (min-width:1024px) {

}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
   
/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
   
.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {
	
}
.bypostauthor {
	
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}