@charset "utf-8";
/*-----Prevents iPhone from resizing in landscape mode -----*/
html {-webkit-text-size-adjust: none; }


/*-----BODY -----*/
body {
	font-size: 16px;
	font-family: 'Cardo', serif;
	font-weight: 400; /*also loaded 700 for bold*/
	background-image: url(../images/blue_fire.jpg);
}

/*-----CONTAINER -----*/
#container {
	min-width: 320px;
	max-width: 960px;
	
}

/*-----HEADER -----*/
header {
	display: block;
}	
header div#phone {
	float: right;
	font-size: 1.5em;
	margin: .6em 2% 0 0;
	color: #FFF;
}
header div#phone a{
	color: #fff;
	text-decoration: none;	
}

/*--Company logo--*/
header img {
	float: left;
	padding-right: 2%;
	max-width: 120px;	
}

header h1 {
	font-size: 2em;
	color:#fff;
	padding: 1.5em 0 0 1%;
}

header h2 {
	font-size: .85em;	
	color:#ebd5a4;
	padding: .5em 0 .7em 1%;
}

/*-----NAVigation -----*/
nav {
	padding: .2em 0;
	background-color: #333;
	margin-bottom: 0;
}
/*hides the unordered list on the phone*/
nav ul{display: none;}
/*displays the jQuery generated option/select navigation for the phone*/
nav select{
	display: block;
	width: 96%;
	margin: 2% 2%;
}

/*-----CONTENT -----*/
#content {
	background-color: #FBFBFB;
	margin-top: 0;	
}
article {
	margin: 0 2%;	
}

article h2 {
	color: #03C;
	font-size: 2em;
	border-bottom: solid 1px #000;	
	padding-top: .4em;
	font-weight: 700;
	margin-top: 0;
}
article p {
	margin: .5em 2% 2em 2%;	
}
article.column h3 {
	margin: .5em 2%;
	font-size: 1.3em;
	font-weight: 700;
}
article ul li{
	font-size: .8em;
	list-style-type: square;
	margin-left: 3%;
}

/*COLUMNS*/



/*-----IMAGES -----*/
figure img{
	
}
figure.w50 img{
	width: 50%;
	margin-right: 4%;
	float: right;	
}


/*----- SOCIAL LINKS -----*/
div.links {
	background-color: #333;
	clear: both;
}
div.links div.social a {
	width: 29.3333%;
	margin: 1em 2%;
	text-align: center;
	background-color: #000;
	color: #fff;
	height: 2em;
	border-radius: .5em;
	text-decoration: none;
	float: left;
	padding-top: .7em;
	-moz-box-shadow: inset 0 0 8px #888;
	-webkit-box-shadow: inset 0 0 8px #888;
	box-shadow: inner 0 0 8px #888;
}
div.links div.social a:hover {
	background-color: #888;
	color: #03C;
}

/*----- FOOTER -----*/
footer {
	clear: both;
	background-color: #666;
	text-align: center;
	padding: .2em 0;
}

footer p {
	color: #000;
}





/*OTHER STUFF*/
div.keepOpen {clear: both;}

