/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/

/* Table of Content
==================================================
	#Site Styles
	#Page Styles
	#Media Queries
	#Font-Face */

/* #Site Styles
================================================== */

body {
	font-size: 1em;
	line-height: 1.6em;
}

body, h1, h2, h3, h4, h5, h6 {
	font-family: 'Arial', sans-serif;
	color: #555;
}

.container {
	background: white;
	margin-top: 20px;
}

.optin {
	width: 100%;
	background-color: #ddd;
	margin: auto;
}

.button-frontpage {
	font-size: 1.3em;
	padding: 15px 25px;
	letter-spacing: 0.1em;
	text-shadow: 0 1px #000;
	color: #fef4e9;
	border: solid 1px #da7c0c;
	background: #f78d1d;
	background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
	background: -moz-linear-gradient(top,  #faa51a,  #f47a20);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
}

.button-frontpage:hover {
	color: #fef4e9;
	border: solid 1px #da7c0c;
	background: #f47c20;
	background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
	background: -moz-linear-gradient(top,  #f88e11,  #f06015);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f88e11', endColorstr='#f06015');
}

footer {
	font-size: 0.8em;
}

img.headerimg {
	margin-bottom: 10px;
	max-width: 100%;
	height: auto;
}

img.grayscale {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
}

img.grayscale:hover {
	filter: none;
	-webkit-filter: none;
	cursor: pointer;
}

input {
	width: 100%;
	padding: 15px 0px;
	font-size: 18px;
	font-weight: normal;
	color: #7e8795;
	border-radius: 3px;
	border: #e4e4e4 1px solid;
}

input[placeholder] {
	padding-left: 20px;
	width: 91%;
	margin-bottom: 0px;
}

button.button-submit {
	font-size: 1em;
	padding: 10px 20px;
	letter-spacing: 0.1em;
	text-shadow: 0 1px #000;
	color: #d9eef7;
	border: solid 1px #0076a3;
	background: #0095cd;
	background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
	background: -moz-linear-gradient(top,  #00adee,  #0078a5);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
}

button.button-submit:hover {
	color: #d9eef7;
	background: #007ead;
	background: -webkit-gradient(linear, left top, left bottom, from(#0095cc), to(#00678e));
	background: -moz-linear-gradient(top,  #0095cc,  #00678e);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#0095cc', endColorstr='#00678e');
}

.redtext {
	color: #bf3535;
}

ol.boxes-list {
    list-style-type: none;
    list-style-type: decimal !ie; /*IE 7- hack*/
     
    margin: 0;
    margin-left: 3em;
    padding: 0;
     
    counter-reset: li-counter;
}
ol.boxes-list > li{
    position: relative;
    margin-bottom: 15px;
    padding: 0.66em;
     
    background-color: #ddd;
}
ol.boxes-list > li:before {
    position: absolute;
    top: 0;
    left: -1.8em;
    width: 0.94em;
    height: 0.94em;
     
    font-size: 1.5em;
    padding: 0.34em;
    line-height: 0.94;
    text-align: center;
    color: #f5f5f5;
 
    background-color: #464646;
    content: counter(li-counter);
    counter-increment: li-counter;
}

/* #Page Styles
================================================== */

/* #Media Queries
================================================== */

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {}


/* #Font-Face
================================================== */
/* 	This is the proper syntax for an @font-face file
		Just create a "fonts" folder at the root,
		copy your FontName into code below and remove
		comment brackets */

/* @font-face {
	    font-family: 'Open Sans';
	    src: url('../fonts/OpenSans-Regular-webfont.eot');
	    src: url('../fonts/OpenSans-Regular-webfont.eot?iefix') format('eot'),
	         url('../fonts/OpenSans-Regular-webfont.woff') format('woff'),
	         url('../fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
	         url('../fonts/OpenSans-Regular-webfont.svg#webfontZam02nTh') format('svg');
	    font-weight: normal;
	    font-style: normal; } 
*/