/*
	For the Chrome font rendering, it is important which is loaded first, the SVG or the TrueType. (See www.adtrak.co.uk/blog/font-face-chrome-rendering/ for fix)
	The new IE seemingly also uses SVG or WOFF (don't know which).
	Currently: Apply fix only to "Light". Others look weird with fix.
*/

@font-face {
	font-family: HelveticaNeueLight;
	src: url('../fonts/HelveticaNeueLTCom-Lt.eot');
	src: url('../fonts/HelveticaNeueLTCom-Lt.eot?#iefix') format('eot'),
	url('../fonts/HelveticaNeueLTCom-Lt.svg') format('svg'),
	url('../fonts/HelveticaNeueLTCom-Lt.woff') format('woff'),
	url('../fonts/HelveticaNeueLTCom-Lt.ttf') format('truetype');
	}

@font-face {
	font-family: HelveticaNeueBoldCondensed;
	src: url('../fonts/HelveticaNeueLTCom-BdCn.eot');
	src: url('../fonts/HelveticaNeueLTCom-BdCn.eot?#iefix') format('eot'),
	url('../fonts/HelveticaNeueLTCom-BdCn.ttf') format('truetype'),
	url('../fonts/HelveticaNeueLTCom-BdCn.svg') format('svg'),
	url('../fonts/HelveticaNeueLTCom-BdCn.woff') format('woff');
	}

@font-face {
	font-family: HelveticaNeueRoman;
	src: url('../fonts/HelveticaNeueLTCom-Roman.eot');
	src: url('../fonts/HelveticaNeueLTCom-Roman.eot?#iefix') format('eot'),
	url('../fonts/HelveticaNeueLTCom-Roman.ttf') format('truetype'),
	url('../fonts/HelveticaNeueLTCom-Roman.svg') format('svg'),
	url('../fonts/HelveticaNeueLTCom-Roman.woff') format('woff');
	}
	
/*try to set margins and paddings in multiples of 8*/

.hide_if_no_js {
	display: none;
}

body {
	margin: 0;
	background-color: #104E8B;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: left top;
	font-family: HelveticaNeueRoman, Helvetica, Arial, sans-serif;
	font-size: 16px;
	text-align: right;
	color: #333333;
	}

h1 {
	font-family: HelveticaNeueLight, Helvetica, Arial, sans-serif;
	text-transform: lowercase;
	font-size: 92px;
	color: white;
	margin: 48px 32px 24px 32px;
	}
	
h3 {
	font-weight: bold;
	text-transform: lowercase;
	font-size: 32px;
	margin: 0;
	}

p {
	line-height: 1.2em;
	margin: 1em 0;
}

p:last-child {
	margin-bottom: 0;
}

div#triangle img {
	display: block;
}
	
img#headshot {
	float: left;
	margin-right: 24px;
	border: 1px solid black;
	}
	
img.socBtn {
	border: none;
	margin-right: 16px;
	vertical-align: middle;
	}

/* NAVIGATION */
div#nav {
	font-size: 24px;
	text-transform: lowercase;
	color: white;
	margin-right: 32px;
	}
	
div#nav li {
	list-style: none;
	float: right;
	margin: 0 24px;
	padding: 8px 16px;
	font-family: HelveticaNeueBoldCondensed, Helvetica, Arial, sans-serif;
	}

div#nav li:hover {
	color: white;
	background-color: #1874CD;
	}

div#nav a, div#nav a:visited, div#nav a:hover {
	text-decoration: none;
	color: white;
	}

div#triangle {
	float: right;
	clear: right;
	text-align: right;
	margin-top: 8px;
	margin-right: 78.5px;
	transition: All 0.3s ease;
	-webkit-transition: All 0.3s ease;
	-moz-transition: All 0.3s ease;
	-ms-transition: All 0.3s ease;
	-o-transition: All 0.3s ease;
	}
	
.content_bubble {
	float: right;
	clear: right;
	width: 700px;
	margin: 0 32px 24px 32px;
	padding: 40px 24px 24px 24px;
	background: white;
	text-align: left;
	box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
	}
	
.content_bubble a {
	color: #D64C0A;
	text-decoration: none;
	}
	
.content_bubble a:hover {
	color: #D6220A;
	}
	
/*** FOOTER ***/
#footer {
	width: auto;
	padding: 24px 24px;
	display: inline;
	}