/*
	Styles for the entire site.
*/
@font-face {
  font-family: 'Cabin';
  font-style: normal;
  font-weight: 400;
  src: local('Cabin Regular'), local('Cabin-Regular'), url(http://themes.googleusercontent.com/static/fonts/cabin/v5/kJXt72Gt1LyFMZcEKAAvlKCWcynf_cDxXwCLxiixG1c.woff) format('woff');
}
@font-face {
  font-family: 'Cabin';
  font-style: normal;
  font-weight: 700;
  src: local('Cabin Bold'), local('Cabin-Bold'), url(http://themes.googleusercontent.com/static/fonts/cabin/v5/haOjnueK8Or1ztuuRtr8dnYhjbSpvc47ee6xR_80Hnw.woff) format('woff');
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: local('PT Sans'), local('PTSans-Regular'), url(http://themes.googleusercontent.com/static/fonts/ptsans/v6/7YGmE4Ls5b94ct65u07hVQLUuEpTyoUstqEm5AMlJo4.woff) format('woff');
}
@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 700;
  src: local('PT Sans Bold'), local('PTSans-Bold'), url(http://themes.googleusercontent.com/static/fonts/ptsans/v6/0XxGQsSc1g4rdRdjJKZrNL3hpw3pgy2gAi-Ip7WPMi0.woff) format('woff');
}
/*
	General Styles
*/
body {
	font-family: 'Cabin', sans-serif;
}

/*
	Header
*/
header {
	background: #ffffff;
	background: -moz-linear-gradient(top,  #ffffff 0%, #cccccc 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#cccccc));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#cccccc 100%);
	background: -o-linear-gradient(top,  #ffffff 0%,#cccccc 100%);
	background: -ms-linear-gradient(top,  #ffffff 0%,#cccccc 100%);
	background: linear-gradient(to bottom,  #ffffff 0%,#cccccc 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#cccccc',GradientType=0 );
	
	height: 115px;
	border-bottom: 5px solid white;
}
header .wrapper {
	background-image: url(../img/bg-graphic-1.png);
	background-position: bottom right;
	background-repeat: no-repeat;
	height: 100%;
}
header #logo {
	margin: 20px 20px 10px 20px;
}
/*
	Banner
*/
#banner {
	margin-bottom: -4px;
	box-sizing: content-box;
	-moz-box-sizing: content-box;
	border-bottom: 5px solid white;
}
/*
	Navigation
*/
nav {
	text-align: center;
	background-color: #B3B3B3;
	
}
nav a {
	display: inline-block;
	padding: 16px;
	text-decoration: none;
	text-transform: uppercase;
	padding-bottom: 5px;
}
nav ul {
	width: 100%;
	margin-bottom: -1px;
}
nav li {
	vertical-align: top;
	color: white;
	font-weight: 400;
	letter-spacing: 1px;
	word-spacing: 1px;
	font-size: 17px;
	margin-bottom: -10px;
}
nav li:hover {
	color: #00718f;
}
nav hr {
	width: 100%;
	border: 0;
	height: 1px;
	display: block;
	border-top: 1px solid #DDD;
}
.divider {
	display: inline-block;
	margin-top: 0px;
	height: 50px;
	width: 2px;
	background: #b3b3b3;
	background: -moz-linear-gradient(top,  #b3b3b3 1%, #00728f 50%, #b3b3b3 97%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#b3b3b3), color-stop(50%,#00728f), color-stop(97%,#b3b3b3));
	background: -webkit-linear-gradient(top,  #b3b3b3 1%,#00728f 50%,#b3b3b3 97%);
	background: -o-linear-gradient(top,  #b3b3b3 1%,#00728f 50%,#b3b3b3 97%);
	background: -ms-linear-gradient(top,  #b3b3b3 1%,#00728f 50%,#b3b3b3 97%);
	background: linear-gradient(to bottom,  #b3b3b3 1%,#00728f 50%,#b3b3b3 97%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3b3b3', endColorstr='#b3b3b3',GradientType=0 );
}
nav #mobile-dropMenu li {
	display: block;
}
nav #mobile-dropMenu li a {
	padding: 8px;
}
nav .active a {
	color: #777;
}

/*
	Content
*/
#content {
	background-color: #00718f;
	background-image: url(../img/bg-graphic-2.png);
	background-position: bottom left;
	background-repeat: no-repeat;
	color: white;
	border-bottom: 5px solid white;
	padding-bottom: 16px;
}
#content .wrapper > .cell {
	padding: 25px;
}
#content h1, #content h2, #content h3 {
	display: block;
	margin: 0;
	color: #F7931E;
	font-weight: 400;
	letter-spacing: 1px;
}
#content h1 {
	font-size: 32px;
	margin-top: 16px;
}
#content h2 {
	font-size: 24px;
	margin-top: 8px;
}
#content h3 {
	margin-top: 4px;
	font-size: 18px;
}
#content p, #content ul, #content ol {
	font-family: 'PT Sans', sans-serif;
	letter-spacing: 1px;
	font-size: 14px;
	display: block;
}
#content ul, #content ol {
	padding: 0 2em;
}
#content li {
	margin-top: 5px;
}
#content .tab {
	display: inline-block;
	height: 1px;
	width: 16px;
}
#content table {
	border-spacing: 0px;
	border: 1px solid rgba(255,255,255,0.6);
}
#content td {
	border: 1px solid rgba(255,255,255,0.6);
	margin: 0;
	padding: 5px;
	vertical-align: top;
}
#content thead td {
	background-color: rgba(0,0,0,0.5);
}
#content .bbg-accordion-title {
	font-size: 1.2em;
	margin-top: 0;
}
.arrow {
	font-family: Consolas, "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", Monaco, "Courier New", monospace;
	color: white;
}

/*
	Footer
*/
footer {
	background: #cccccc;
	background: -moz-linear-gradient(top,  #cccccc 0%, #ffffff 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cccccc), color-stop(100%,#ffffff));
	background: -webkit-linear-gradient(top,  #cccccc 0%,#ffffff 100%);
	background: -o-linear-gradient(top,  #cccccc 0%,#ffffff 100%);
	background: -ms-linear-gradient(top,  #cccccc 0%,#ffffff 100%);
	background: linear-gradient(to bottom,  #cccccc 0%,#ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#ffffff',GradientType=0 );
}
footer #footer-text {
	text-align: left;
	padding: 25px;
}
footer #footer-text h3 {
	color: #00718F;
	font-size: 22px;
	font-weight: 400;
}
footer #footer-text p {
	font-family: 'PT Sans', sans-serif;
	color: #666666;
	font-size: 18px;
}
footer #footer-image {
	padding: 25px;
	max-height: 74px;
	max-width: 225px;
}



/*
	Tablet
*/
@media (max-width: 1070px){
	nav li {
		font-size: 14px;
	}
	nav li a {
		padding: 8px;
	}
	.divider {
		height: 34px;
	}
}

@media (max-width: 950px){
	#content .half .half {
		width: 100% !important;
	}
}
@media (max-width: 870px){
	nav li {
		font-size: 12px;
	}
	.divider {
		height: 31px;
	}
}

/*
	Mobile
*/
@media (max-width: 731px){
	nav li {
		font-size: 20px;
	}
}