/*
	table of contents:
		defaults
		container - main
		overlay - slide out
		supersized
*/

/* defaults
----------------------------------------------------------------------------------------------------------------*/

@import 'reset.css';

html, body {
	width: 100%;
	height: 100%;
}

html {
	font-size: 16px;
	/*background: url(../imgs/bg.jpg) no-repeat center center fixed;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;*/
}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 67.5%;
	line-height: 13pt;
	margin: 0; padding: 0;
}

/* container - main
----------------------------------------------------------------------------------------------------------------*/

#container {
	background: #109bd7;
	border-left: 1px solid #109bd7;
	border-right: 1px solid #109bd7;
	width: 355px;
	height: 100%;
	margin: 0 0 0 168px;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.logo {
	text-indent: -9999em;
	background: url(../imgs/logo.png) no-repeat;
	width: 260px;
	height: 123px;
	margin: 50px 0 50px 45px;
}

.blurb {
	text-indent: -9999em;
	background: url(../imgs/blurb.png) no-repeat;
	width: 260px;
	height: 115px;
	margin: 0 0 10px 45px;
}



.contact {
	color: #fff;
	font-size: 1.3em;
	background: #109bd7;
	/*border-top: 2px solid #0084b2;
	border-bottom: 1px solid #0084b2;*/
	height: 33px;
	padding: 19px 0 0 45px;
	cursor: pointer;
	-moz-transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
	transition: all .3s ease-in;
}

.contact-active {
	background: #0084b2;
}

/* overlay - slide out
----------------------------------------------------------------------------------------------------------------*/

.overlay {
	background: rgb(0, 132, 178);
	background: rgba(0, 132, 178, .95);
	width: 355px;
	height: 100%;
	position: absolute;
	left: 168px;
	/*left: 543px;*/
	top: 0;
	z-index: 1;
	opacity: 0;
}

	.overlay .content {
		padding: 220px 0 0 40px;
	}

	.content section {
		color: #fff;
		font-size: 1.3em;
		font-weight: normal;
		line-height: 20px;
		padding: 0 0 30px 0;
	}

		.content section p {
			color: #fff;
		}

			.content section p span {
				padding: 0 15px 0 0;
				display: inline-block;
			}

		.content section a {
			color: #fff;
		}

		.content section a:hover {
			text-decoration: underline;
		}
		
		.map {
			margin-top:20px;
			width: 67px;
			height: 83px;
		}
