@charset "utf-8";

@font-face {
	font-family: 'opensans';
	src: url('OpenSans-Regular.ttf')}

@font-face {
	font-family: 'opensans'; font-weight: bold;
	src: url('OpenSans-Semibold.ttf')}


body {
	font: 100%/1.4;
	font-family: 'Open Sans Condensed', 'opensans', sans-serif;
	background: #FFFFFF;
	margin: 30px 0 0;
	padding: 0;
	color: #1E1E1E;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	margin-bottom: 0px;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #3B5998;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds all other elements ~~ */
.container {
	width: 900px;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	-moz-box-shadow: 0px 21px 52px #999999;
	-webkit-box-shadow: 0px 21px 52px #999999;
	box-shadow: 0px 21px 52px #999999;
	padding-right: 30px;
	padding-left: 30px;
	margin-bottom: 15px;
	padding-bottom: 15px;


}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.content {
	-moz-column-count: 2;
	-moz-column-gap: 40px;
	-webkit-column-count: 2;
	-webkit-column-gap: 40px;
	column-count: 2;
	column-gap: 40px;
	padding-bottom: 15px;
}
.content-nocols {
	padding-bottom: 15px;
	text-align:center;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.iconmrgn {
	margin-right: 40px;
}
h2 {
	font-size: 110%;
	color: #999;
}
h1 {
	font: bold 150%
}
p {
	margin-bottom: 15px;
	line-height: 1.5em;
}
#intro {
	margin-bottom: 15px;
}
.small {
	font-size: 80%;
	font-style: italic;
	line-height: 1em;
	color: #666;
}
h4 {
	color: #666;
	font-size: 100%;
	margin-bottom: 10px;
}
input[type="text"], select, textarea {
	color: #333;
	border: 1px solid #CCC;
	padding: 10px;
	font: 16px; /* Opera 10.5, IE 9 */
	-moz-transition: all 0.2s ease-out;  /* FF3.7+ */
	-o-transition: all 0.2s ease-out;  /* Opera 10.5 */
	-webkit-transition: all 0.2s ease-out;  /* Saf3.2+, Chrome */
	transition: all 0.2s ease-out;
	width: 250px;



}
input[type="text"]:hover, input[type="text"]:focus, textarea:hover, select:hover, select:active {
	-moz-box-shadow: 0px 0px 5px #003366; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 5px #003366; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 5px #003366; /* Opera 10.5, IE 9 */
}

input[type="submit"] {
	padding: 6px 30px;
	border: 1px solid #CCC;
	font-size: 16px;
	-moz-transition: all 0.2s ease-out;  /* FF3.7+ */
	-o-transition: all 0.2s ease-out;  /* Opera 10.5 */
	-webkit-transition: all 0.2s ease-out;  /* Saf3.2+, Chrome */
	transition: all 0.2s ease-out;
	background: #E8E8E8;

}
input[type="submit"]:hover {
background: #b8e1fc; /* Old browsers */
background: -moz-linear-gradient(top, #b8e1fc 0%, #a9d2f3 10%, #90bae4 25%, #90bcea 37%, #90bff0 50%, #6ba8e5 51%, #a2daf5 83%, #bdf3fd 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b8e1fc), color-stop(10%,#a9d2f3), color-stop(25%,#90bae4), color-stop(37%,#90bcea), color-stop(50%,#90bff0), color-stop(51%,#6ba8e5), color-stop(83%,#a2daf5), color-stop(100%,#bdf3fd)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #b8e1fc 0%,#a9d2f3 10%,#90bae4 25%,#90bcea 37%,#90bff0 50%,#6ba8e5 51%,#a2daf5 83%,#bdf3fd 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #b8e1fc 0%,#a9d2f3 10%,#90bae4 25%,#90bcea 37%,#90bff0 50%,#6ba8e5 51%,#a2daf5 83%,#bdf3fd 100%); /* Opera11.10+ */
background: -ms-linear-gradient(top, #b8e1fc 0%,#a9d2f3 10%,#90bae4 25%,#90bcea 37%,#90bff0 50%,#6ba8e5 51%,#a2daf5 83%,#bdf3fd 100%); /* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b8e1fc', endColorstr='#bdf3fd',GradientType=0 ); /* IE6-9 */
background: linear-gradient(top, #b8e1fc 0%,#a9d2f3 10%,#90bae4 25%,#90bcea 37%,#90bff0 50%,#6ba8e5 51%,#a2daf5 83%,#bdf3fd 100%); /* W3C */

	-moz-box-shadow: 0px 0px 5px #003366; /* FF3.5+ */
	-webkit-box-shadow: 0px 0px 5px #003366; /* Saf3.0+, Chrome */
	box-shadow: 0px 0px 5px #003366; /* Opera 10.5, IE 9 */

}
