@charset "utf-8";
/* CSS Document */
/*-------------------------------------------------------------------------------------------*/
/* RESET */
/*-------------------------------------------------------------------------------------------*/


/* http://meyerweb.com/eric/tools/css/reset/ | v1.0 | 20080212 */

body, html  { height: 100%; }
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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	/* [disabled]background: transparent; */

}

body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
:focus { outline: 0; }/* remember to define focus styles! */
del { text-decoration: line-through; }
table { border-collapse: collapse; border-spacing: 0; }/* tables still need 'cellspacing="0"' in the markup */

/*-------------------------------------------------------------------------------------------*/
/* GENERAL STYLES */
/*-------------------------------------------------------------------------------------------*/

/* Floating & Alignment */

.fl{float: left;}
.fr{float: right;}
.ac{text-align: center;}
.ar{text-align: right;}

/* Clear Floats */

.col-full:after{content: "."; display: block;height: 0;clear: both; visibility: hidden;}
.fix{clear: both;height: 1px;margin: -1px 0 0;overflow: hidden;}


html body * span.clear,
html body * div.clear,
html body * li.clear,
html body * dd.clear

{

	background: none;
	border: 0;
	clear: both;
	display: block;
	float: none;
	font-size: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;

}/* http://sonspring.com/journal/clearing-floats */

/* END OF RESET */

a {
	font-weight:bold;
	color:#FFF;
	text-decoration:none;
}

a:hover {
	color:#009;
}

p {
	line-height: 1.2;
	font-size: 112%;
	margin-bottom:16px;
}

h1 {
	font-size:160%;
	line-height: 1.5;
	margin-bottom:20px;
}

h2 {
	font-size: 124%;
	margin:20px 0;

}

h3 {
	font-size:124%;
	color:#F00;
	margin:20px 0;
}

#header {
	height:108px;
	width:750px;
	margin:50px auto;
}

body {
	background: #0a0809; /* Old browsers */
	background: -moz-linear-gradient(top,  #0a0809 34%, #595959 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(34%,#0a0809), color-stop(100%,#595959)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #0a0809 34%,#595959 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #0a0809 34%,#595959 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #0a0809 34%,#595959 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #0a0809 34%,#595959 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0a0809', endColorstr='#595959',GradientType=0 ); /* IE6-9 */
	background-attachment: fixed !important;
	/* [disabled]background: #0a0809; */ /* Old browsers */
	color: #FFF;
}

#container {
	width:750px;
	margin:0 auto;
}

#nav {
	display: inline-block;
	width: 125px;
	/* [disabled]margin-left: -200px; */
	float: left;
}

#nav ul {
	list-style:none;
	padding:0px;
	margin:0px;
}

#nav ul li {
	text-align: center;
	font-size: 120%;
}

#main {
	display: inline-block;
	width: 575px;
	float: left;
	
}

.btn {
	color: #FFF;
	display: inline-block;
	/* [disabled]box-shadow: inset 0 1px 0 rgba(255,255,255,0.2); */
	font-family: Arial, sans-serif;
	line-height: 2.5em;
	padding: 0 3em;
	text-decoration: none;
}
.enlarge {
	display:block;
	margin:0 auto;
}

.enlarge li{
	display:inline-block;
	width:200px;
	height:150px;
	float:left;
	padding:15px;
	margin:10px 25px;
	border:2px #666;
	border-radius:10px;
	background-color:#666;
}

.lightbox {
	/** Default lightbox to hidden */
	display: none;

	/** Position and style */
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
}

.lightbox img {
	/** Pad the lightbox image */
	max-width: 90%;
	max-height: 80%;
	margin-top: 8%;
}

.lightbox:target {
	/** Unhide lightbox **/
	display: block;
}

label {
    display:block;
    margin-top:20px;
    letter-spacing:2px;
}

form {
    margin:0 auto;
    width:459px;
}

/* Style the text boxes */
input, textarea {
	width:439px;
	height:27px;
	background:#efefef;
	border:1px solid #dedede;
	padding:10px;
	margin-top:3px;
	font-size:0.9em;
	color:#3a3a3a;
}

textarea {
	height:213px;
	background:url(images/textarea-bg.jpg) right no-repeat #efefef;
}

input, textarea {
    width:439px;
    height:27px;
    background:#efefef;
    border:1px solid #dedede;
    padding:10px;
    margin-top:3px;
    font-size:0.9em;
    color:#3a3a3a;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-radius:5px;
}

input:focus, textarea:focus {
    border:1px solid #97d6eb;
}

#submit {
	width: 101px;
	height: 39px;
	background: url(../assets/submit.png);
	text-indent: -9999px;
	border: none;
	margin-top: 20px;
	cursor: pointer;
}

	#submit:hover {
	    opacity:.9;
	}
