/* Colors */

@darkGreen: #003b1f;
@darkGray: #777777;
@facebookBlue: #3b579d;
@fadedWhite: #ebebeb;
@gold: #966909;
@lightGold: #bda064;
@lightGray: #f0f0f0;
@lightGreen: #789688;
@mediumLightGray: #cccccc;
@mediumGray: #999999;
@mediumGreen: #547c69; /* Was 265840 */
@navBG: #292929;
@semiBlack: #444444;
@twitterBlue: #00acee;
@warningRed: #d21b0e;

/* Mixins */

.copy { 
	font-family: sans-serif;
	text-transform: none;
}
.heading {
	font-family: sans-serif;
	text-transform: uppercase;
}
.accent { font-family: serif; }

.italic { font-style: italic; }

.copyBold {
	.copy;
	font-weight: 600;
}
.copyRegular {
	.copy;
	font-weight: 400;
}
.headingLight {
	.heading;
	font-weight: 300;
}
.headingBold {
	.heading;
	font-style: normal;
	font-weight: 700;
}
.accentRegular {
	.accent;
	.italic;
	font-weight: 400;
}
.accentBold {
	.accent;
	.italic;
	font-weight: 600;
}

.fill-link {
	display: inline-block;
	height: 100%;
	position: relative;
	width: 100%;
}

.menuList {
	list-style: none;

	li {
		display: inline-block;
		float: left
	}

}

/* Global */

* {
	border: 0;
	margin: 0;
	padding: 0;
}

html {
	background-color: @lightGray;
	height: 100%;
	width: 100%;

	&[xmlns] {

		.clearfix {	display: block; }

	}

	.center { text-align: center; }

	.clearfix {
		display: inline-block;
		height: 1%;

		&:after {
			clear: both;
			content: '.';
			display: block;
			height: 0;
			line-height: 0;
			visibility: hidden;
		}

	}

	.container {
		margin: 0 auto;
		position: relative;
		width: 960px;
	}

	a {
		.copyBold();
		color: @darkGreen;
		cursor: pointer;
		text-decoration: none;

		&.button {
			background: @gold;
			display: inline-block;
			color: @fadedWhite;
			border-radius: 10px;
			text-transform: uppercase;

			&:hover {

				span {
					background: #a37519;
				}

			}

			span {
				display: inline-block;
				border: 1px solid @lightGold;
				border-radius: 6px;
				margin: 3px;
				padding: 9px 26px;
			}

		}

	}

	body {
		background: fixed url( '/assets/images/bg.jpg' ) top left no-repeat;
		background-size: 100% auto;
		font-size: 62.5%;
		min-height: 908px;
		min-width: 1024px;

		> header { display: none; }

	}

	div {

		&.notice {
			border-radius: 5px;
			padding: 15px 15px 15px 45px;
		}

		&.scroller {
			height: 300px;
			overflow-y: scroll;
			border: 1px solid @mediumLightGray;
			padding: 15px;
		}

		&.success {
			border: 1px solid #89b15f;
			background: url( '/assets/images/notice-success.png' ) no-repeat 15px 15px #dff2bf;
			color: #89b15f;
		}

		&.error {
			border: 1px solid @warningRed;
			background: url( '/assets/images/notice-error.png' ) no-repeat 15px 15px #ffc496;
			color: @warningRed;
		}

		&.warning {
			border: 1px solid #aa8142;
			background: url( '/assets/images/notice-warning.png' ) no-repeat 15px 15px #feefb3;
			color: #aa8142;
		}

		&.info {
            border: 1px solid #777;
            background: url( '/assets/images/info.png' ) no-repeat 15px 15px #f1f5f8;
            color: #47484b;
        }

		p { margin: 0; }

	}

	h1,h2,h3,h4,h5,h6 {
		.headingBold;
		text-transform: uppercase;
		color: @darkGreen;
	}

	img { max-width: 100%; }

	label {
		.headingBold;
		color: @darkGreen;
	}

	li,option,p,td {

		font-family: sans-serif;
		font-size: 1.6em;
		line-height: 1.3em;
		vertical-align: middle;

		li { font-size: 1em; }

	}

	p {
		.copyRegular;
		margin: 1.2em 0;

		&.notice {
			border-radius: 5px;
			border: 1px solid #ccc;
			background: url( '/assets/images/pdf-icon.png' ) no-repeat 15px 15px #dedede;
			padding: 15px 15px 15px 45px;
		}
		&.info {
          border-radius: 5px;
          border: 1px solid #ccc;
          background: url('/assets/images/info-icon.png') no-repeat 15px 15px #dedede;
          padding: 15px 15px 15px 45px;
        }

	}

	section {

		&.panel {

			article {
				margin: 30px 0 0 30px;
				padding: 0;
				position: relative;
			}

		}

	}

	select {
		border: 1px solid @mediumLightGray;
		padding: 10px;
		width: 75%;
		border-radius: 7px;
		font-size: 1.3em;
	}

	#accreditation {

		> header { display: none; }

		> p {
			.accent;
			.italic;
			color: @mediumGray;
			font-size: 1.8em;
			letter-spacing: -0.025em;
			text-align: center;

			&:nth-of-type(1) { margin: 16px 0 0 0; }
			&:nth-of-type(2) { margin: 0; }

		}

		a {
			background: url( '/assets/images/sprite-map.png' ) no-repeat;
			display: inline-block;
			margin: 10px 5px 0 5px;

			&:nth-of-type(1) {
				background-position: -282px -210px;
				height: 36px;
				width: 31px;
			}

			&:nth-of-type(2) {
				background-position: -319px -210px;
				height: 36px;
				width: 30px;
			}

			&:nth-of-type(3) {
				background-position: -356px -211px;
				height: 35px;
				width: 28px;
			}

			&:nth-of-type(4) {
				background-position: -391px -214px;
				height: 30px;
				width: 29px;
			}

			&:nth-of-type(5) {
                background-position: -450px -213px;
                height: 32px;
                width: 32px;
            }

		}

	}

	#address {
		color: @darkGray;
		cursor: pointer;
		float: left;
		height: 72px;
		padding: 18px 0 0 55px;
		position: relative;
		width: 152px;

		h3 { font-size: 1.5em; }

		p {
			font-size: 1.4em;
			line-height: 1;
			margin: 3px 0;
		}

		span {
			background: url( '/assets/images/sprite-map.png' ) no-repeat -272px -41px;
			height: 35px;
			margin: -17px 0 0 0;
			position: absolute;
			top: 50%;
			left: 20px;
			width: 20px;
		}

	}

	#banner {
		background: url( '/assets/images/sprite-map.png' ) no-repeat 0 -2px;
		height: 230px;
		left: 30px;
		position: absolute;
		top: 0;
		width: 166px;
		z-index: 30;

		a {
			.fill-link;

			span {
				background: url( '/assets/images/sprite-map.png' ) no-repeat -483px -4px;
				height: 113px;
				left: 50%;
				margin: 0 0 0 -60px;
				position: absolute;
				top: 30px;
				width: 120px;
			}

		}

	}

	#contacts {
		height: 90px;
		left: 194px;
		position: absolute;
		top: 135px;
		width: 417px;

		> header { display: none; }
	}

	#content {
		float: left;
		min-height: 550px;
		padding: 50px 30px 30px 0;
		position: relative;
		width: 573px;
		z-index: 20;

		> div {

			&:nth-of-type(1) {
				background: url( '/assets/images/content-fade-bg.png' ) top left repeat-x;
				height: 550px;
				position: absolute;
				right: 0;
				top: 0;
				width: 2000px;
				z-index: -10;
				display: none;
			}

			&:nth-of-type(2) {
				background: url( '/assets/images/gold-rim-bg.png' ) top left repeat-x @gold;
				height: 20px;
				margin: 0 0 0 0px;
				position: absolute;
				top: 0;
				width: 100%;
				z-index: 10;
			}

			&:nth-of-type(3) {
				background: url( '/assets/images/edge.png' ) top left no-repeat;
				height: 550px;
				position: absolute;
				right: 0;
				top: 0;
				width: 1px;
				display: none;
			}

			&.scroller {
				> ul > li {
					border-bottom: 1px solid #ddd;
					padding: 7px 0;
					margin: 0 0 0 3em;

					&:last-of-type {
						border-bottom: none;
					}
				}
			}

		}

		> article {

			> header {
				margin: 0 0 2.2em 0;

				> h1 {
					font-size: 4em;
					line-height: 1;
				}

				> p {
					.headingBold;
					color: @darkGray;
					font-size: 2em;
					line-height: 1.5em;
					margin: 0;
					padding: 0 0 0 40px;
					position: relative;

					> span {
						background: url( '/assets/images/sprite-map.png' ) no-repeat -245px -180px;
						height: 27px;
						left: 0;
						position: absolute;
						top: 0;
						width: 27px;
					}

				}

			}

			nav {

				&:last-of-type {
					margin: 30px 0 0 0;
				}

				h3 {
					color: @semiBlack;
					font-size: 1.8em;
				}

				ul {
					list-style: none;

					li {
						margin: 0 0 0 30px;

						a {
							display: inline-block;
							padding: 10px 0;

							&:nth-child(1) { padding-top: 0; }

							&:nth-child(3) { padding-bottom: 0; }

							span {
								color: @mediumGray;
								font-size: 0.875em;
								line-height: 1;
								white-space: nowrap;
							}

						}

					}

				}

			}

			p {
				color: @darkGray;

				&.posted {
					color: @mediumGray;
					font-size: 1.3em;
					margin: 0 0 30px 0;
					text-transform: uppercase;
				}

			}

		}

		hr {
			background: url( '/assets/images/content-hr.png' ) no-repeat 0 0;
			clear: both;
			width: 573px;
			height: 1px;
			margin: 30px 0;
		}

		img {

			&.bordered {
				border: 5px solid @gold;
				max-width: 80%;
			}

		}

		input {

			&[type='text'] {
				border: 1px solid #ccc;
				width: 50%;
				padding: 7px;
				border-radius: 7px;
			}
		}

		label {
			color: @darkGreen;
		}

		p {

			input, textarea {

				&.error {
					/*background:;*/
					border:2px solid @warningRed;
					padding: 6px;
				}

				&.success {
					border: 2px solid @lightGreen;
					padding: 6px;
				}

			}

		}

		select {

			&.error {
				/*background:;*/
				border:2px solid @warningRed;
				padding: 6px;
			}

			&.success {
				border: 2px solid @lightGreen;
				padding: 6px;
			}

		}

		textarea {
			border: 1px solid #ccc;
			width: 75%;
			padding: 7px;
			border-radius: 7px;
			height: 100px;
		}

		ul {
			margin: 30px 0;

			&.nav {
				.menuList;

				li {
					margin: 0;

					&:first-of-type {

						a {
							-webkit-border-bottom-left-radius: 10px;
							-webkit-border-top-left-radius: 10px;
						}

					}

					&:last-of-type {

						a {
							-webkit-border-bottom-right-radius: 10px;
							-webkit-border-top-right-radius: 10px;
						}

					}

					a {
						color: @fadedWhite;
						display: inline-block;
						font-size: 1.8em;
						background: @facebookBlue;
						padding: 10px 15px;

						&.disabled {
							background: @mediumLightGray;
							color: @mediumGray;
							cursor: default;
						}

					}

				}

			}

			li {
				margin: 0 0 0 3em;
			}

		}

		table.data-view {
			border: 3px solid #0B3800;
			width: 100%;

			> thead tr th {
				background: none repeat scroll 0 0 #6C8663;
				border: 1px solid #596E51;
				color: #FFFFFF;
				font: 600 1.3em/1em Verdana,Arial,Helvetica,sans-serif;
				padding: 8px;
				text-transform: uppercase;
			}

			> tbody tr td {
				border-bottom: 1px solid #DBD9D3;
				color: #777777;
				font: 1.3em/1em Verdana,Arial,Helvetica,sans-serif;
				padding: 8px;
				text-align: left;
				vertical-align: top;				
				
				hr {
					background-image: none;
					border-bottom: 1px solid #ccc;
					margin: 5px 0;
					width: 80%;
				}
			}
		
		}
		
	}
	
	#counters {
		height: 56px;
		line-height: 2.25em;
		margin: 0 15px 0 0;
		position: absolute;
		right: 0;
		top: 78px;
		
		p {
			.accentRegular;
			color: @darkGray;
			font-size: 1.5em;
			line-height: 3.4em;
			margin: 0;
			position: relative;
			
			span {
				.headingBold;
				cursor: help;
				color: @fadedWhite;
				display: inline-block;
				width: 77px;
				box-sizing: border-box;
				font-size: 1.8em;
				height: 57px;
				margin: 0 20px 0 10px;
				padding: 0 0 0 8px;
				position: relative;
				top: 10px;
				text-align: center;
				background: url( '/assets/images/sprite-map.png' ) no-repeat -169px -42px;
				
				&:last-of-type {
					margin-right: 0;
				}
				
			}
		}
		
	}
	
	#current_article {
	
		p {
			margin: 1.2em 0;
		}
	
	}
	
	#faq {
		position: absolute;
		right: 15px;
		top: 26px;
		z-index: 100;
		
		> header { display: none; }
		
		/*
		a {
			position: absolute;
			width: 73px;
			right: 200px;
			top: 0;
			height: 37px;
			background: url( '/assets/images/sprite-map.png' ) no-repeat -169px -180px;
		}
		*/
		
		input {
			background: url( '/assets/images/sprite-map.png' ) no-repeat -176px -2px;
			color: @fadedWhite;
			display: none;
			font-size: 1.4em;
			height: 37px;
			padding: 0 15px;
			width: 178px;
		}
		
	}
	
	#file-report {
		height: 74px;
		position: relative;
		
		a {
			.fill-link;
			position: relative;
			
			span {
				background: url( '/assets/images/sprite-map.png' ) no-repeat -169px -103px;
				width: 114px;
				height: 74px;
				position: absolute;
				top: 15px;
				right: 0;
				z-index: 0;
			}
			
		}
		
		h2 { 
			.headingBold;
			color: #2F4F4F; /* added by afalls */
			letter-spacing: -0.025em;
			position: absolute;
			top: 21px;
			left: 45px;
			font-size: 1.6em;
		}
		
	}
	
	#footer {
		background: url( '/assets/images/footer-bg.png' ) repeat-x top left @darkGreen;
		clear: both;
		height: 250px;
		margin-top: -250px;
		position: relative;
		z-index: 100;
		
		> header { display: none; }

		.container {

			> div {
			
				&:nth-child(1) {
					background: url( '/assets/images/sprite-map.png' ) no-repeat -509px -120px;
					width: 74px;
					height: 69px;
					position: absolute;
					top: 25px;
					left: 50%;
					margin: 0 0 0 -37px;
				}
			
			}		
		
		}

	}
				
	#header {
		background: url( '/assets/images/header-bg.png' ) top left repeat-x;
		height: 387px;
		
		.container {
			min-height: 387px;

			nav {
				bottom: 0;
				height: 67px;
				left: 194px;
				position: absolute;
				right: 0;
				top: 11px;
				width: 766px;
				
				> header { display: none; }
				
				ul {
					list-style: none;
					position: relative;
					display: inline-table;
					margin: 0 0 0 8px;
					
					&:after {
						content: '';
						clear: both;
						display: block;
					}
					
					li {
						font-size: 1.5em;
						float: left;
						margin: 6px 0 0 0;

						a {
							.headingBold;
							font-size: 1em;
							text-transform: uppercase;
							display: block;
							color: @mediumGray;
							opacity: 0.6;
							padding: 18px 15px;
						}
						
					}
									
				}
				
			}
		
		}
		
	}
	
	#legal {
		clear: both;
		height: 67px;
		margin: 0 auto;
		position: relative;
		top: 2px;
		width: 960px;

		> footer {
			color: @mediumGray;
			display: inline-block;
			float: left;
			margin: 18px 0 0 0;
			width: 49%;
			
			strong {
				text-transform: uppercase;
			}
			
		}
		
		> header { display: none; }
		
		p { 
			font-size: 1.3em;
			margin: 0; 
		}
		
		ul {
			.menuList;
			float: right;
			margin: 3px 0 0 0;
			width: 49%;
			
			li {
				float: right;
				font-size: 1.3em;
			
				a {
					color: @mediumGray;
					display: inline-block;
					padding: 23px 7.5px;
				}
			
			}
		
		}
	
	}
	
	#map {
		background: @gold;
		border-radius: 10px;
		height: 156px;
		position: absolute;
		right: 30px;
		text-align: center;
		top: 188px;
		width: 297px;
		z-index: 50;
		
		> div {
			border: 1px solid @lightGold;
			border-radius: 7px;
			height: 148px;
			margin: 3px;
			position: relative;
		}

		a {
			display: inline-block;
			line-height: 0;
			margin: 15px 0 0 0;
			padding: 0 7px;
			
			&:hover {
			
				img {
					-webkit-transform: scale(1.0) translateZ(0);
					-webkit-transition: all 0.5s ease-in-out;
					-moz-transform: scale(1.0);
					-moz-transition: all 0.5s ease-in-out;
					-ms-transform: scale(1.0);
					-ms-transition: all 0.5s ease-in-out;
					-o-transform: scale(1.0);
					-o-transition: all 0.5s ease-in-out;
					transform: scale(1.0) translateZ(0);
					transition: all 0.5s ease-in-out;
				}

			}
		
			img {
				-webkit-transform: scale(0.92) translateZ(0);
				-webkit-transition: all 0.5s ease-in-out;
				-moz-transform: scale(0.92);
				-moz-transition: all 0.5s ease-in-out;
				-ms-transform: scale(0.92);
				-ms-transition: all 0.5s ease-in-out;
				-o-transform: scale(0.92);
				-o-transition: all 0.5s ease-in-out;
				transform: scale(0.92) translateZ(0);
				transition: all 0.5s ease-in-out;
			}
		
		}
		
	}
	
	#menu {
		background: @gold;
		border-radius: 10px;
		display: none;
		height: 57px;
		position: absolute;
		opacity: 0;
		left: 201px;
		top: 16px;
		width: 744px;
		z-index: 150;
		
		> div {
			border: 1px solid @lightGold;
			border-radius: 7px;
			height: 49px;
			margin: 3px;
			position: relative;
			
			ul {
				list-style: none;
				text-align: center;
					
				div { 
					display: none; 
				}
			
				li { 
					display: inline;
					font-size: 1.3em;
	
					a {
						color: @fadedWhite;
						display: inline-block;
						opacity: 0.6;
						padding: 18px 10px;
						text-transform: uppercase;
					}
					
				}
			
			}
			
		}
		
	}

	#phone {
		color: @darkGray;
		cursor: pointer;
		float: right;
		height: 62px;
		padding: 18px 0 0 55px;
		position: relative;
		width: 152px;

		h3 { font-size: 1.5em; }
		
		p { 
			font-size: 1.4em;
			line-height: 1;
			margin: 3px 0;
			
			strong { 
				.copy;
				font-weight: 700;
			}
			
		}

		span {
			background: url( '/assets/images/sprite-map.png' ) no-repeat -249px -42px;
			height: 34px;
			margin: -14px 0 0 0;
			position: absolute;
			top: 50%;
			left: 20px;
			width: 20px;
		}
		
		strong { color: #bd3928; }

	}
	
	#respect {
		padding: 0 0 30px 30px;
		position: relative;
		
		> h2 { display: none; }
		
		p {
			color: @semiBlack;
			font-size: 1.3em;
			line-height: 1.4em;
			margin: 0;
			
			&:nth-of-type(2) {
				.accent;
				.italic;
				font-size: 1.4em;
				color: @mediumGray;
			}
			
			&:nth-of-type(3) {
				.headingBold;
				color: @darkGreen;
				font-size: 1.4em;
			}
			
		}
		
		span {
			background: url( '/assets/images/sprite-map.png' ) no-repeat -494px -193px;
			width: 49px;
			height: 49px;
			margin: 0 30px 0 0;
			position: absolute;
			right: 0;
			top: 3px;
		}
		
	}
	
	#services {
		text-align: center;
		
		h2 {
			.accent;
			.italic;
			color: @fadedWhite;
			font-size: 2.2em;
			font-weight: normal;
			margin: 25px 0 0 0;
			text-transform: none;
		}
		
		p {
			color: @lightGreen;
			font-size: 1.3em;
			margin: 0;
			
			&:nth-of-type(2) { margin-top: 20px; }
			
			a {
				.headingBold;
				color: @lightGreen;
				display: inline-block;
				padding: 10px;
			}
			
		}
		
	}
	
	#sheriff {
		background: url( '/assets/images/sprite-map.png' ) no-repeat -296px -41px;
		height: 90px;
		left: 0;
		position: absolute;
		top: 196px;
		width: 182px;
		z-index: 40;
		
		a { .fill-link; }
		
	}
	
	#sidebar {
		float: right;
		width: 357px;
		
		> header { display: none; }
		
		> section[id^='panel-'] {
			padding: 0 0 30px 0;
		}
		
		.banner {
			background: @darkGreen;
			border-radius: 10px;
			display: inline-block;
			height: 82px;
			margin: 0 0 0 30px;
			position: relative;
			width: 100%;

			> div {
				border: 1px solid @mediumGreen;
				border-radius: 7px;
				height: 74px;
				margin: 3px;
				position: relative;
				
				> div {
					background: url( '/assets/images/sprite-map.png' ) no-repeat -551px -192px;
					height: 47px;
					left: -24px;
					position: absolute;
					top: 12px;
					width: 48px;
				}
				
				h2 {
					color: @fadedWhite;
					font-size: 2.4em;
					line-height: 1;
					margin: 0 0 0 35px;
				}
				
				p {
					color: @lightGreen;
					font-size: 1.4em;
					line-height: 1;
					margin: 20px 0 0 35px;
					text-transform: uppercase;
				}
				
			}			
			
		}
		
		article {
		
			p {	font-size: 1.4em;	}

		}
		
		hr {
			background: url( '/assets/images/sidebar-hr.png' ) no-repeat 0 0;
			clear: both;
			height: 1px;
			margin: 0 0 30px 0;
			width: 357px;
		}
		
		p { color: @darkGray; }
		
		ul {
			display: block;
			margin: 0;
			padding: 0 0 0 5em;
			
			&.rotator {
				margin: 30px 0 0 0;
				text-align: center;
			
				li {
					display: inline;
				
					a {
						background: url( '/assets/images/sprite-map.png' ) no-repeat -427px -220px;
						display: inline-block;
						opacity: 0.35;
						margin: 7.5px;
						width: 16px;
						height: 16px;
						
						&.active { opacity: 1; }
						
					}
				
				}
			
			}
			
			li {
				font-size: 1.4em;
				margin: 0 0 7px 0;
				
				&.selected {
					background: #feefb3;
					border: 1px solid #aa8142;
					border-radius: 5px;
					padding: 7px;
				}
				
			}
		
		}
		
		#panel-calendar {
					
			article {
				cursor: pointer;
				margin: 30px 0 0 30px;
				padding: 0 0 0 70px;
				position: relative;
							
				&.today { 
					
					h3 { color: @warningRed; }
					
					span {
						background-position: -389px -3px; 
					}
					
				}
				
				h3 {
					font-size: 1.6em;
					line-height: 1;
					margin: 0 0 7px 0;
				}
				
				span {
					.headingBold;
					background: url( '/assets/images/sprite-map.png' ) no-repeat -434px -3px;
					color: @darkGray;
					display: inline-block;
					font-size: 1.1em;
					height: 0;
					left: 0;
					padding: 40px 0 0 0;
					position: absolute;
					text-align: center;
					text-transform: uppercase;
					top: 0;
					width: 38px;				 
				}
				
			}
		
		}
		
		#panel-accident-reports {
		
			> p { text-align: center; }
					
			article {
							
				h3 {
					font-size: 1.6em;
					line-height: 1;
					margin: 0 0 7px 0;
				}
				
				p {	font-size: 1.4em;	}
			}
			
		}
		
		#panel-employees-quarter {
		
			p {
				font-size: 1.3em;
			}
			
			ul { 
				list-style-type: none;
				padding: 0;
			
				li { 
					text-align: center;
				}
			
			}
		
		}
		
		#panel-hire-deputy {
		
			> p {
				margin: 0;
				
				&:first-of-type {
					font-size: 1.4em;
					padding: 30px 0 30px 170px;
					
					img { 
						border: 5px solid @gold;
						float: left; 
						margin: 0 0 0 -140px;
					}
					
				}
			
				&:last-of-type {
					text-align: center;
				}
				
			}
			
		}
		
		#panel-memoriam {
		
			article {

				p {
					font-style: italic;
					
					strong {
						font-style: normal;
					}
				
				}

			}
		
		}
		
	}

	#social {
		bottom: 0;
		height: 56px;
		left: 194px;
		position: absolute;
		right: 0;
		top: 78px;
		width: 766px;
		z-index: 10;
		
		> header { display: none; }
		
		p {
			.accentRegular;
			color: @darkGray;
			font-size: 1.5em;
			height: 56px;
			margin: 0;
			letter-spacing: -0.0125em;
			line-height: 4em;
			padding: 0 0 0 20px;
		}
		
		ul {
			.menuList;
			padding: 0 0 0 139px;
			position: absolute;
			top: 0;
			left: 0;
		
			li {
				cursor: pointer;
				line-height: 0;

				&.facebook { 
					
					a {
						background-position: -284px -181px; 
						span { background-position: -284px -156px; }
					}
					
				}

				&.foursquare { 
					
					a {
						background-position: -434px -181px;
						span { background-position: -434px -156px; }
					}
					
				}

				&.instagram { 
					
					a {
						background-position: -459px -181px; 
						span { background-position: -459px -156px; }
					}

				}

				&.google { 
					
					a {
						background-position: -359px -181px; 
						span { background-position: -359px -156px; }
					}
				
				}
				
				&.pinterest { 
					
					a {
						background-position: -384px -181px; 
						span { background-position: -384px -156px; }
					}
				
				} 
				
				&.tumblr { 
					
					a {
						background-position: -409px -181px; 
						span { background-position: -409px -156px; }
					}

				}
				
				&.twitter { 
					
					a {
						background-position: -309px -181px; 
						span { background-position: -309px -156px; }
					}
				
				}
				
				&.youtube { 
					
					a {
						background-position: -334px -181px; 
						span { background-position: -334px -156px; }
					}
				
				}
									
				a {
					background-image: url( '/assets/images/sprite-map.png' );
					background-repeat: no-repeat;
					display: inline-block;
					height: 24px;
					margin: 16px 6px;
					position: relative;
					width: 24px;

				
					span { 
						opacity: 0;
						background-image: url( '/assets/images/sprite-map.png' );
						position: absolute;
						top: 0;
						left: 0;
						right: 0;
						bottom: 0;
						width: 24px;
						height: 24px;
					}
					
				}
			
			}
			
		}
		
	}
	
	#title {
		bottom: 0;
		height: 85px;
		left: 0;
		margin: 0 0 0 30px;
		padding: 35px 0 0 0;
		position: absolute;
		width: 573px;
		
		p {
			.headingBold;
			color: @darkGreen;
			font-size: 4.6em;
			letter-spacing: -0.05em;
			margin: 0;
			
			&:first-of-type {
				.headingLight;
				color: @darkGray;
				font-size: 1.8em;
				letter-spacing: normal;
				margin: 0 0 -10px 0;
			}
			
		}
		
	}
	
	#twitter {
	
		> header { display: none; }
		
		a {
		}
		
		article {
			float: left;
			/*width: 270px;*/
			
			&:first-of-type { margin: 0 30px 0 0; }
			
			> p {
				.accent;
				.italic;
				color: @darkGray;
				font-size: 2.4em;
				letter-spacing: -0.025em;
				line-height: 1.2em;
				
				&:last-of-type { 
					.copyRegular;
					color: @mediumGray;
					font-size: 1.3em;
					font-style: normal;
					letter-spacing: 0;
					line-height: 1.3em;
					margin: 15px 0 0 0;
					text-transform: uppercase;
				} 
				
			}
			
			> header {
				margin: 0 0 15px 0;
				position: relative;
				
				> h3 {
					color: @semiBlack;
					font-size: 2em;
					padding: 0 0 0 40px;
				}
				
				> p {
					color: @mediumGray;
					font-size: 1.3em;
					margin: 0;
					padding: 0 0 0 40px;
					text-transform: uppercase;					
				}
				
				span {
					background: url( '/assets/images/sprite-map.png' ) no-repeat -245px -210px;
					height: 27px;
					width: 27px;
					position: absolute;
					left: 0;
					top: 50%;
					margin: -13px 0 0 0;
				}
			
			}
			
			a { .accentBold; }
			
			ul {
				.menuList;
				margin: 15px 0 0 0;
				
				li {
					margin: 0;
					
					&:first-of-type {
					
						a {
							-webkit-border-bottom-left-radius: 10px;
							-webkit-border-top-left-radius: 10px;
						}
					
					}

					&:last-of-type {
					
						a {
							-webkit-border-bottom-right-radius: 10px;
							-webkit-border-top-right-radius: 10px;
						}
					
					}
				
					a {
						color: @fadedWhite;
						display: inline-block;
						font-size: 1.8em;
						background: @twitterBlue;
						padding: 10px 15px;
						
						&.disabled { 
							background: @mediumLightGray;
							color: @mediumGray;
							cursor: default; 
						}
						
					}
				
				}
				
			}
			
		}
		
	}
			
	#wrapper {
		min-height: 100%;
	}
	
	li p{
		font-size: medium;
	}
	
}	
