/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*
* With useless stuff removed.
*/

.container {
	position: relative;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.column, .columns {
	width: 100%;
	float: left;
	box-sizing: border-box; 
}

@media (min-width: 400px) {
	.container {
		width: 85%;
		padding: 0; 
	}
}

@media (min-width: 550px) {
	.container { width: 80%; }
	.column, .columns { margin-left: 4%; }
	.column:first-child, .columns:first-child { margin-left: 0; }
}

/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html { font-size: 62.5%; }
body {
	background-color: white;
    	color: #101010;


	font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
	line-height: 1.6;
	font-weight: 400;
	font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
       /* color: #1d1f21;*/
}


h1, h2, h3, h4, h5, h6 {
 margin-top: 0;
 margin-bottom: 2rem;
 font-weight: 300; 
}
h1 { font-size: 4.0rem; line-height: 1.2; letter-spacing: -.1rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3; letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5; letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6; letter-spacing: 0; }

@media (min-width: 550px) {
	h1 { font-size: 5.0rem; }
	h2 { font-size: 4.2rem; }
	h3 { font-size: 3.6rem; }
	h4 { font-size: 3.0rem; }
	h5 { font-size: 2.4rem; }
	h6 { font-size: 1.5rem; }
}

p { margin-top: 0; }

ul { list-style: circle inside; }
ol { list-style: decimal inside; }
ol, ul { padding-left: 0; margin-top: 0; }
ul ul, ul ol, ol ol, ol ul {
	margin: 1.5rem 0 1.5rem 3rem;
	font-size: 90%; 
}
li { margin-bottom: .75rem; }

code {
	padding: .2rem .5rem;
	margin: 0 .2rem;
	font-size: 90%;
	white-space: nowrap;
	background: #F1F1F1;
	border: 1px solid #E1E1E1;
	border-radius: 4px; 
}
pre > code {
	display: block;
	padding: 1rem 1.5rem;
	white-space: pre; 
}

th, td {
 padding: 12px 15px;
 text-align: left;
 border-bottom: 1px solid #E1E1E1; }
th:first-child, td:first-child { padding-left: 0; }
th:last-child, td:last-child { padding-right: 0; }

input, textarea, select, fieldset { margin-bottom: 1.5rem; }
blockquote, dl, figure, table, p, ul, ol, form { margin-bottom: 2rem; }

hr {
 margin-top: 2rem;
 margin-bottom: 3.5rem;
 border-width: 0;
 border-top: 1px solid #E1E1E1; }

.container:after,
.row:after {
 content: "";
 display: table;
 clear: both; }
