/* Fonts */
@import url(http://fonts.googleapis.com/css?family=Oranienbaum);
@import url(http://fonts.googleapis.com/css?family=PT+Sans:400,700);

/* Reset CSS */

* {
	box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a img {
	border: 0px;
}

img {
	max-width: 100%;
}

::-webkit-input-placeholder {
   color: #a1a1a1;
}

:-moz-placeholder { /* Firefox 18- */
   color: #a1a1a1;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #a1a1a1;  
}

:-ms-input-placeholder {  
   color: #a1a1a1;  
}

h1, h2, h3, h4, h5,
h1 a, h2 a, h3 a, h4 a, h5 a {
	font-family: 'Oranienbaum', serif;
	font-weight: bold;
	color: #0e76bc;
	margin: 15px 0px;
	text-decoration: none;
}
h1 {
	font-size: 22px;
}
h2 {
	font-size: 20px;
}
h3 {
	font-size: 18px;
}
h4 {
	font-size: 16px;
}
h5 {
	font-size: 14px;
}

a {
	color: #0e76bc;
	text-decoration: none;
}

/* Utility Classes */
.clear {
	clear: both;
}
.toppad20 {
	padding-top: 20px;
}
.toppad15 {
	padding-top: 15px;
}
.toppad10 {
	padding-top: 10px;
}
.req-field {
	border: solid 1px red;
}


/* Main Layout */
.wrapper {
	max-width: 1004px;
	width: 100%;
	min-width: 320px;
	margin: 0px auto;
	font-family: 'PT Sans', sans-serif;
	font-weight: 400;
}



/* Header */
.site-header {
	width: 100%;
	min-height: 128px;
	background: transparent url('../images/site-header-bg.jpg') no-repeat top center;
	background-size: 100% 100%;
	font-family: 'Oranienbaum', serif;
	position: relative;
}
.site-header .logo {
	max-width: 200px;
	position: absolute;
	top: 10px;
	left: 35px;
}
.site-header .tagline {
	margin: 0px auto;
	color: #fff;
	font-family: 'PT Sans', sans-serif;
	font-weight: 700;
	text-align: center;
	font-size: 30px;
	text-shadow: 0px 5px 7px #000;
	padding: 30px 0px;
}
.site-header .tagline span {
	color: #f30606;
}
.site-header .contact-info {
	max-width: 200px;
	position: absolute;
	top: 30px;
	right: 35px;
	text-align: right;
	color: #fff;
	line-height: 20px;
	font-size: 16px;
}
.site-header .contact-info span {
	color: #0e76bc;
	font-size: 24px;
	line-height: 32px;
}


/* Navigation */
.site-navigation {
	width: 100%;
	margin-top: 10px;
	min-height: 28px;
	font-size: 15px;
	font-weight:bold;
	font-family: 'Oranienbaum', serif;
}
.site-navigation .main-nav {
	width: 100%;
	text-align: center;
	background-color: #d1d1d1;
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
    padding: 5px 0px;
}
.site-navigation .main-nav li {
	display: inline;
}
.site-navigation .main-nav li a {
	display: inline-block;
	text-decoration: none;
	color: #000;
	border-right: solid 1px #000;
	padding: 0px 1%;
}
.site-navigation .main-nav li:last-child a {
	border-right: 0px;
}

/* Content Area */
.site-content {
	width: 100%;
	padding: 30px 35px;
	font-size: 14px;
	color: #9e9e9e;
	line-height: 20px;
	position: relative;
}
.site-content .half-width {
	width: 49.5%;
	float: left;
	border-right: solid 1px #ccc;
	padding: 0px 20px 0px 0px;
}
.site-content .half-width.no-bord {
	border-right: 0px;
	padding: 0px 0px 0px 20px;
}
.site-content .half-width.no-bord-left {
	border-right: 0px;
	padding: 0px 20px 0px 0px;
}
.site-content .left-sidebar, .site-content .left-sidebar-alt {
	float: left;
	max-width: 350px;
	width: 37%;
}
.site-content .left-sidebar .sidebar-img, .site-content .left-sidebar-alt .sidebar-img {
	margin-bottom: 10px;
}
.site-content .left-sidebar .epd-info {
	display: none;
}
.site-content .main-content {
	width: 60%;
	float: right;
	max-width: 534px;
}
.site-content .page-heading {
	margin: 15px 0px 15px 0px;
}
.site-content p {
	margin-bottom: 24px;
}


/* Contact Us */
.half-width .success {
	text-align: center;
	padding: 20px;
	background-color: #aad6b3;
	color: #005011;
	border: solid 1px #005011;
	margin-bottom: 20px;
}
#ContactForm {
	width: 100%;
}
#ContactForm .contact-row {
	width: 100%;
	margin-bottom: 20px;
}
#ContactForm .contact-row label {
	display: block;
	color: #000;
	font-size: 12px;
}
#ContactForm .contact-row input[type=text],
#ContactForm .contact-row input[type=email],
#ContactForm .contact-row textarea {
	line-height: 22px;
	border: solid 1px #dbdbdb;
	width: 100%;
	-moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    padding: 0px 5px;
}
#ContactForm .contact-row button {
	float: right;
	line-height: 22px;
	border: solid 1px #0e76bc;
	background-color: #fff;
	color: #0e76bc;
	-moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
}
#ContactForm .contact-row button:hover {
	background-color: #0e76bc;
	cursor: pointer;
	color: #fff;
}
#ContactForm .req-field {
	border: solid 1px #ff6600!important;
}
.loc-block {
	width: 100%;
	margin-bottom: 22px;
	font-family: 'Oranienbaum', serif;
	font-weight: bold;
}
.loc-block .head {
	color: #000;
	text-transform: uppercase;
	font-size: 16px;
}
.loc-block .phone {
	color: #0e76bc;
	font-size: 18px;
	line-height: 24px;
}


/* Locations */
.map-area {
	max-height: 300px;
	overflow: hidden;
}
.map-area .half-width.no-bord {
	border-right: 0px;
	padding: 0px 0px 0px 0px;
	position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden!important;
}
.map-area .half-width.no-bord-left {
	border-right: 0px;
	padding: 0px 0px 0px 0px;
	max-width: 450px;
	overflow: hidden;
	text-align: center;
}
.map-area .half-width.no-bord-left img {
	max-height: 270px;
	max-width: 1000%;
}
.map-area .gmap {
	max-width:450px;
   	position: absolute;
    top: 0;
    left: 0;
    width: 100%!important;
    height: 270px!important;
}


/* Jobs Page */
.site-content .job-select {
	width: 35%;
	max-width: 327px;
	float: left;
	box-sizing: border-box;
	padding: 25px;
	background-color: #f0f0f0;
	font-size: 15px;
}
.site-content .job-select h1 {
	letter-spacing: 1px;
	line-height: 26px;
}
.site-content .job-select ul {
	list-style: none;
	color: #000;
	margin-bottom: 25px;
}
.site-content .job-select ul.pen-jobs:first-of-type {
	margin-bottom: 50px;
}
.site-content .job-select ul.pen-jobs li.list-header {
	font-weight: bold;
	text-transform: uppercase;
}
.site-content .job-select ul.other-jobs li.list-header {
	font-weight: bold;
	color: #ff0000;
}
.site-content .job-select ul li span {
	color: #2e80c0;
	cursor: pointer;
}
.site-content .job-descriptions {
	width: 65%;
	float: left;
	box-sizing: border-box;
	padding: 25px;
}
.site-content .job-descriptions .job-listing {
	display: none;
	color: #000;
}
.site-content .job-descriptions .job-listing h3 {
	color: #000;	
	font-family: 'PT Sans', sans-serif;
	margin: 20px 0px;
	padding: 0px;
}
.site-content .job-descriptions .job-listing p {
	padding: 0px;
	margin: 0px 0px 18px 0px;
}
.site-content .job-descriptions .job-listing ul {
	margin: 0px 0px 18px 15px;
	list-style: disc;
}
.site-content .epd-info {
	float: left;
	width: 49%;	
}
.site-content .epd-info h2 {
	font-family: 'Oranienbaum', serif;
	font-weight: bold;
	color: #0e76bc;
	margin: 15px 0px;
	text-decoration: none;
	font-size: 14px;	
}
.site-content .left-sidebar-alt .epd-info {
	width: 100%;	
}
.site-content .left-sidebar-alt .epd-info h2 {
	font-family: 'Oranienbaum', serif;
	font-weight: bold;
	color: #0e76bc;
	margin: 15px 0px;
	text-decoration: none;
	font-size: 14px;	
}
/* BRANDS */
.sub-head {
	line-height: 0px;
	font-weight: bold;	
}
.brand-row {
	width: 100%;
	clear: both;	
}
.brand-col {
	width: 20%;
	float: left;	
}
.brand-col img {
	display: block;
	width: 92%;
	margin: 0 4% 4% 4%;	
}

/* EVENTS */
.blue {
	color: #0e76bc;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.6em;
	margin-top: 20px;
}
.date {
	color: #969696;
	font-weight: bold;
	line-height: 1.6em;
}
.download {
	margin: 0;
	padding: 0;	
}
.download img {
	margin: 0;
	padding: 0;	
}
.download a {
	color: #969696;
	text-decoration: none;	
}
.download a:hover {
	font-weight: bold;
	text-decoration: underline;	
}

/* TEAM SLIDER */
	.team-slider {
		width: 100%;
		margin: 0px;
		padding: 0px;
		overflow:hidden;
		height:228px;	
	}
	.team-slider ul {
		width: 100%;
		padding: 0;
		margin: 0;
		position: relative;
	}
	.team-slider li {
		width:100%;
		list-style:none;
		padding: 0px;
		margin: 0px;
		position: absolute;
	}
	.team-slider li img {
		display: block;
		width: 100%;
		
	}
	.team-slider li.firstanimation {
		-moz-animation:slidercycle 20s linear infinite;	
		-webkit-animation:slidercycle 20s linear infinite;		
	}
	.team-slider li.secondanimation {
		-moz-animation:slidercycletwo 20s linear infinite;
		-webkit-animation:slidercycletwo 20s linear infinite;		
	}
	.team-slider li.thirdanimation {
		-moz-animation:slidercyclethree 20s linear infinite;
		-webkit-animation:slidercyclethree 20s linear infinite;		
	}
	.team-slider li.fourthanimation {
		-moz-animation:slidercyclefour 20s linear infinite;
		-webkit-animation:slidercyclefour 20s linear infinite;		
	}
	
	.team-slider:hover li {
		-moz-animation-play-state:paused;
		-webkit-animation-play-state:paused;
	}
	/* ANIMATION */
	@-moz-keyframes slidercycle {
		0%  { top: 0px; }
		48%  { top:0px; opacity:1; z-index:0; }
		51% { top:235px; opacity:0; z-index:-1; }
		97% { top:-235px; opacity:0; z-index:0; }
		100% { top:0px; opacity:1; z-index:0; }
		
	}
	@-moz-keyframes slidercycletwo {
		0%  { top:-235px; opacity:0; z-index:-1; }
		48%  { top:-235px; opacity:0; }
		51%  { top:0px; opacity:1; }
		97% { top:0px; opacity:1; z-index:0; }
		100% { top:235px; opacity:0; z-index:-1; }
	}
	@-moz-keyframes slidercyclethree {
		0%  { top:-235px; opacity:0; z-index:-1; }
		48%  { top:-235px; opacity:0; }
		51%  { top:0px; opacity:1; }
		97% { top:0px; opacity:1; z-index:0; }
		100% { top:235px; opacity:0; z-index:-1; }
	}
	@-moz-keyframes slidercyclefour {
		0%  { top:-235px; opacity:0; z-index:-1; }
		48%  { top:-235px; opacity:0; }
		51%  { top:0px; opacity:1; }
		97% { top:0px; opacity:1; z-index:0; }
		100% { top:235px; opacity:0; z-index:-1; }
	}
	
	@-webkit-keyframes slidercycle {
		0%  { opacity: 1; }
		23%  { opacity:1; }
		25% { opacity:0; }
		98% { opacity:0; }
		100% { opacity:1; }
	}
	@-webkit-keyframes slidercycletwo {
		0%  { top: 0px; opacity:0; }
		23%  { top: 0px; opacity:0; }
		25%  { top: 0px; opacity:1; }
		48% { top: 0px; opacity:1; }
		50% { top: 0px; opacity:0; }	
	}
	@-webkit-keyframes slidercyclethree {
		0%  { top: 0px; opacity:0;}
		48%  { top: 0px; opacity:0; }
		50% { top: 0px; opacity:1; }
		73% { top: 0px; opacity:1; }
		75% { top: 0px; opacity:0; }
	}
	@-webkit-keyframes slidercyclefour {
		0%  { top: 0px; opacity:0; }
		73%  { top: 0px; opacity:0; }
		75%  { top: 0px; opacity:1; }
		98% { top: 0px; opacity:1; }
		100% { top: 0px; opacity:0; }
		
	}




/* Footer */
.site-footer {
	width: 100%;
	min-height: 105px;
	font-family: 'Oranienbaum', serif;
}
.site-footer .row {
	width: 100%;
	margin: 7px auto;
}

/* Newsletter */
.site-footer .newsletter {
	width: 73%;
	float: left;    
	line-height: 26px;
	padding-left: 25px;
}
.site-footer .newsletter .desc {
	float: left;
	font-size: 12px;
	font-weight: bold;margin-right: 5px;
}
.site-footer .newsletter .desc span {
	color: #ff6600;
}
.site-footer .newsletter form {
	float: left;
}
.site-footer .newsletter input {
	float: left;
	display: block;
	margin-right: 5px;
	line-height: 24px;
	padding: 0px 5px;
	border: solid 1px #cccccc;
	-moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
}
.site-footer .newsletter input[type=submit] {
	background: none;
	border: none;
	line-height: 26px;
	padding: 0px;
}

/* Social Menu */
.site-footer .social {
	width: 27%;
	float: left;
	padding-right: 25px;
}
.site-footer .social .social-nav {   
    float: right;
    width: auto;
}
.site-footer .social .social-nav li {
	float: left;
	padding-right: 1px;
}


/* Footer Site Menu */
.site-footer .footer-nav {
	width: 100%;
	background-color: #0e76bc;
	text-align: center;
	-moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: bold;
    padding: 20px;
}
.site-footer .footer-nav li {
	display: inline;
}
.site-footer .footer-nav li a {
	display: inline-block;
	text-decoration: none;
	color: #fff;
	border-right: solid 1px #fff;
	padding: 0px 1%;
}
.site-footer .footer-nav li:last-child a {
	border-right: 0px;
}

/* Designed By */
.site-footer .designed-by {
	text-align: center;
	margin: 25px auto 15px auto;
}

.caption {
	background-color: #858383;
	width: 100%;
	display: block;
	color: #fff;
	font-size: 1.3em;
	text-align: center;
	padding: 6px 0;	
}

/* Resources */
.logo-row {
	width: 80%;
	display: block;
	clear: both;
}
.logo-col {
	float: left;
	width: 25%;
	margin: 0 0 20px 0;
	padding: 0;	
}
.logo-col img {
	display: block;
	width: 100%;	
}

@media screen and (max-width: 999px){
	.site-footer .newsletter {
		width: 50%;
	}
	.site-footer .social {
		width: 50%;
	}
}

@media screen and (max-width:799px) {
	.site-header {
		background-size: 100% 145px;
		height: auto;
	}
	.site-header .tagline {
		height: 145px;
		font-size: 34px;
	}
	.site-header .logo {
		margin: 0px auto;
		position:static;
		padding: 15px 0px 0px 0px;
	}
	.site-header .contact-info {
		position: static;
		padding: 15px 0px;
		text-align: center;
		color: #000;
		margin: 0px auto;
	}
	.site-navigation {
	}
	.site-navigation .main-nav {
		background-color: transparent;
	}
	.site-navigation .main-nav li {
		width: 50%;
		float: left;
		display: block;		
	}
	.site-navigation .main-nav li.left {
		padding: 0px 5px 5px 20px;
	}
	.site-navigation .main-nav li.right {
		padding: 0px 20px 5px 5px;
	}
	.site-navigation .main-nav li a {
		border: 0px;
		background-color: #d1d1d1;	-moz-border-radius: 10px;
	    -webkit-border-radius: 10px;
	    -khtml-border-radius: 10px;
	    border-radius: 10px;
		display: block;
		line-height: 35px;
	}
	.site-content .page-heading {
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		text-align: center;
	}
	.site-content .left-sidebar {
		max-width: 100%;
		width: 100%;
		padding: 40px 0px 20px 0px;
	}
	.site-content .left-sidebar .sidebar-img img {
		margin: 0px auto;
		display: block;
	}
	.site-content .left-sidebar-alt {
		max-width: 100%;
		width: 100%;
		padding: 40px 0px 20px 0px;
	}
	.site-content .left-sidebar-alt img {
		margin: 0px auto;
		display: block;
	}
	.site-content .main-content {
		max-width: 100%;
		width: 100%;
	}
	.site-content .main-content .epd-info {
		display: none;
	}
	.site-content .left-sidebar .epd-info {
		display: block;
		width: 100%;
		text-align: center;
	}
	.site-footer {
		border: 0px;
	}
	.site-footer .newsletter {
		width: 90%;
		padding: 0px;
		margin: 0px 5%;
	}
	.site-footer .newsletter .desc {
		width: 100%;
		margin: 0px;
		text-align: center;
	}
	.site-footer .newsletter form {
		width: 100%;
	}
	.site-footer .newsletter form input {
		width: 100%;
		margin: 5px 0px;
	}
	.site-footer .social {
		width: 100%;
		padding: 0px;
	}
	.site-footer .social .social-nav {
		float: none;
		text-align: center;
	}
	.site-footer .social .social-nav li {
		display: inline;
		float: none;
	}
	.site-footer .social .social-nav li a {
		display: inline-block;
	}
	.site-footer .footer-nav li a {
		margin-bottom: 10px;
	}
}
@media screen and (max-width:499px) {
	.map-area {
		max-height: 600px;
	}
	.map-area .half-width.no-bord {
		width: 100%;
		margin-bottom: 30px;
	}
	.map-area .half-width.no-bord-left {
		width: 100%;
	}
	.map-area .half-width.no-bord-left img {
		max-height: 270px;
		max-width: 1000%;
	}
	.map-area .gmap {
		max-width:450px;
	   	position: absolute;
	    top: 0;
	    left: 0;
	    width: 100%!important;
	    height: 270px!important;
	}
	.logo-row {
	width: 100%;
	display: block;
	clear: both;
	}
	.logo-col {
		float: left;
		width: 50%;
		margin: 0 0 20px 0;
		padding: 0;	
	}
	.logo-col img {
		display: block;
		width: 100%;	
	}

}

