/*
* 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
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Forms
	#Misc */


/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	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, 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, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline; }
	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block; }
	body {
		line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; }
	table {
		border-collapse: collapse;
		border-spacing: 0; 
		margin-bottom: 40px; }


/* #Basic Styles
================================================== */
	body {
		background: #fff;
 	}

 	hr.sixteen.columns {
 		border: 0;
        height : 1px;
        background-color: #e0e0e0;
        margin-bottom: 40px;
        margin-top: 0;
 	}

/* #Typography
================================================== */
	h1, h2, h3, h4, h5, h6 { color: #6d7880; }
	h1 { font-size: 35px; line-height: 45px; margin-bottom: 15px; }
	h2 { font-size: 31px; line-height: 40px; margin-bottom: 15px; }
	h3 { font-size: 25px; line-height: 35px; margin-bottom: 15px; }
	h4 { font-size: 17px; line-height: 25px; margin-bottom: 15px; }
	h5 { font-size: 15px; line-height: 23px; margin-bottom: 10px; }
	h6 { font-size: 13px; line-height: 21px; margin-bottom: 5px; }
	.subheader { color: #777; }

	h3 span, h4 span {
		font-family: 'OxygenBold', sans-serif;
		color: #6d7880;
	}
	p { 
		font-size: 15px;
		line-height: 1.6em;
		color: #6d7880;
		margin-bottom: 20px;
		/*
		color: #6d7880;
		*/ 
	}
	p img { margin: 0; }
	p.lead { font-size: 21px; line-height: 27px; color: #777;  }

	em { font-style: italic; }
	strong { font-weight: bold; color: #333; }
	small { font-size: 80%; }

/*	Blockquotes  */
	blockquote, blockquote p { font-size: 17px; line-height: 24px; color: #6d7880; font-family: 'OxygenItalic'; }
	blockquote { margin: 0 0 20px; padding: 5px 20px 3px 19px; border-left: 1px solid #e0e0e0; }
	blockquote cite { display: block; font-size: 12px; color: #555; margin-top: 10px; }
	blockquote cite:before { content: "\2014 \0020"; }
	blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #555; }

	hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 10px 0 30px; height: 0; }

/* #Links
================================================== */
	a, a:visited { color: #ef5148; text-decoration: none; outline: 0;  }
	a:hover, a:focus { color: #000; }
	p a, p a:visited { line-height: inherit; }

/* #Lists
================================================== */
	ul.l_custom { margin-bottom: 35px; margin-top: 5px; list-style-position: inside; }
		ul.l_circle { list-style-type: circle; }
		ul.l_square { list-style-type: square; }
		ul.l_disc { list-style-type: disc; }
		ul.l_bolt { list-style-image: url('../images/list_bolt.png'); }
		ul.l_plus { list-style-image: url('../images/list_plus.png'); }
		ul.l_check { list-style-image: url('../images/list_check.png'); }
		ul.l_file { list-style-image: url('../images/list_file.png'); }
		ul.l_pen { list-style-image: url('../images/list_pen.png'); }
	ul.l_custom li { 
		margin-bottom: 10px; 
		font-size: 15px;
		color: #6d7880;
	}
/* #Images
================================================== */

	img.scale-with-grid {
		max-width: 100%;
		height: auto; }

/* #Buttons
================================================== */

	.button,
	a.button,
	button,
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {
		font-family: 'OxygenBold';
	    font-size: 13px;
		display: inline-table;
		margin-bottom: 10px;
	    padding: 14px 24px 12px 24px;
	  	-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px;
	    text-decoration: none;
	    cursor: pointer;
	    color: #fff;
	    background: #6d7880;
	    border: 0;
		}
	.button.medium { padding: 10px 16px 8px 16px; }
	.button.small { padding: 7px 12px 5px 12px; }
	input[type="submit"] {
		float: right;
		margin-bottom: 30px;
	}

	.button:hover,
	button:hover,
	input[type="submit"]:hover,
	input[type="reset"]:hover,
	input[type="button"]:hover {
		background: #ef5148;
	}

	.button:active,
	button:active,
	input[type="submit"]:active,
	input[type="reset"]:active,
	input[type="button"]:active {
	}


/* #Forms
================================================== */

	form {
		margin-bottom: 20px; }
	fieldset {
		margin-bottom: 20px; }
	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
		border: 1px solid #d0d0d0;
		height: 35px;
		outline: none;
		-moz-border-radius: 4px;
		-webkit-border-radius: 4px;
		border-radius: 4px;
		font-family: 'OxygenRegular', Arial, sans-serif;
		font-size: 15px;
		line-height: 37px;
		padding: 0 10px;
		color: #777;
		margin: 0;
		display: inline-block;
		width: 100%;
		margin-bottom: 20px;
		background: #fff; 
	}
	select {
		padding: 0; }
	input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="email"]:focus,
	textarea:focus {
		outline: 0;
	}
	textarea {
		min-height: 60px; }
	label,
	legend {
		display: block;
		font-size: 15px;
		color: #6d7880;
		margin-bottom: 10px;
	}
	select {
		width: 220px; }
	input[type="checkbox"] {
		display: inline; }
	label span,
	legend span {
		font-weight: normal;
		font-size: 13px;
		color: #444; }

/* #Code block - Minneapolis template
================================================== */
	.jScroll {
		outline: none;
		width: 100%;
		overflow: auto;
	}
	div.code {
		width: 100%;
		overflow: hidden;
	    margin:20px 0 40px 0;
	    border:1px solid #d0d0d0;
	    border-radius:2px;
	    position:relative;
	    -webkit-box-shadow:0 1px 1px rgba(0,0,0,.08);
		box-shadow:0 1px 1px rgba(0,0,0,.08);
	}
	div.code label {
	    font-family: "OxygenBold", sans-serif;
	    font-size: 11px;
	    color: #4b555c;
	    position: absolute;
	    right: 10px;
	    top: 10px;
	    text-align: center;
	}
	div.code pre code {
	    font-family:"Inconsolata", "Monaco", "Consolas", "Andale Mono", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
	    display:block;
	    padding:25px;
	    padding-bottom: 10px;
	    font-size:14px;
	    line-height:19px;
	    color:#333;  
	    width: 100%;  
	}
	div.code pre.code-css code {
	    color: #6d7880;
	}
	div.code pre.code-html code {
	    color: #6d7880;
	}â€‹

/* #Tables
================================================== */

	/* tables */
	table {
		font-family:arial;
		background-color: #CDCDCD;
		width: 100%;
		text-align: left;
	    -webkit-box-shadow:0 1px 1px rgba(0,0,0,.08);
		box-shadow:0 1px 1px rgba(0,0,0,.08);
		margin-bottom: 40px;
	}
	table, thead, tbody { width: 100%; }

	table thead tr th, table tfoot tr th {
		background-color: #f0f0f0;
		border: 1px solid #d0d0d0;
		text-align: left;
		padding: 14px 15px 11px 15px;
		color: #6d7880;
		font-size: 13px;
		font-family: "OxygenBold", sans-serif;
	}
	table thead tr .header {
		background-image: url('../images/bg.gif');
		background-repeat: no-repeat;
		background-position: center right;
		background-color: #f0f0f0;
		cursor: pointer;
		height: 38px;
	}
	table tbody td {
		color: #6d7880;
		padding: 14px 15px 11px 15px;
		background-color: #FFF;
		vertical-align: bottom;
		border: 1px solid #d0d0d0;
		font-size: 13px;
	}
	table tbody tr.even td {
		background-color: green;
	}
	table.tablesorter thead tr .headerSortUp {
		background-image: url('../images/asc.gif');
		background-repeat: no-repeat;
		background-position: center right;
	}
	table.tablesorter thead tr .headerSortDown {
		background-image: url('../images/desc.gif');
		background-repeat: no-repeat;
		background-position: center right;
	}
	table thead tr .headerSortDown, table thead tr .headerSortUp {
		background: #e0e0e0;
	}