/* fonts
-------------------------------------------------------------- */

@import url(http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,800|Open+Sans+Condensed:300);


html .mceContentBody {
	/* max-width: 42em; */
}

#tinymce.wp-editor { 
	/* this should match the body element */
	font-family: "Open Sans", Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #555;
	background: #fff;
}

#tinymce.wp-editor a {
	color: #000;
}

h1, h2, h3, h4, h5, h6 {
	color: #aaa;
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 0.5em 0;
}

h1 { font-size: 4.0em; }
h2 { font-size: 3.0em; }
h3 { font-size: 2.0em; }
h4 { font-size: 1.5em; }
h5 { font-size: 1.0em; margin-bottom: 1em; }
h6 { font-size: 0.8em; text-transform: uppercase; letter-spacing: 1px; }

@media (max-width: 44em) {

	body { font-size: 15px; }
	h1 { font-size: 2.6em; }
	h2 { font-size: 2.2em; }
	h3 { font-size: 1.8em; }
	h4 { font-size: 1.4em; }
	h5 { font-size: 1.0em; }

}

h1 a, h2 a, h3 a, h4 a {
	color: #333;
}

p {
	margin-bottom: 1.5em;
	max-width: 42em;
}

blockquote {
	margin: 2em 0;
	padding: 2em;
	border: 1px solid #eee;
	background: #fafafa;
	font-style: italic;
}

blockquote :first-child {
	margin-top: 0;
}

blockquote :last-child {
	margin-bottom: 0;
}

hr {
	border: none;
	background: #ddd;
	height: 1px;
	margin: 2em 0;
}

mark {
	background-color: #adf;
	padding: 0 0.25em;
}

.intro {
	font-size: 1.4em;
}

.entry-title, .widget-title {
	font-family: "Open Sans Condensed", sans-serif;
	font-weight: 300;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 0 1.5em 0;
}

table {
	border-collapse: collapse;
	width: 100%;
}

td, th {
	border: 1px solid #ddd;
	padding: 0.5em 0.75em;
	text-align: left;
}

th {
	border-bottom: 3px solid #bbb;
}

tr:nth-child(even) th, tr:nth-child(even) td {
	background: #eee;
}

caption {
	background: #bbb;
	padding: 0.5em 0.75em;
	color: #fff;
	font-weight: bold;
}

ul, ol {
	margin-bottom: 1.5em;
}

li {
	margin-bottom: 0.375em;
}

code {
	background-color: #f5f5f5;
	border-bottom: 1px solid #ddd;
	color: #333;
	font-family: Courier, Monaco, monospace;
	padding: 0 0.2em;
	-moz-hyphens: none;
	-webkit-hyphens: none;
	hyphens: none;
}

pre {
	background: #f5f5f5 url(images/code.png);
	border: 1px solid #ddd;
	border-left: 1em solid #bbb;
	line-height: 25px;
	margin-bottom: 2em;
	overflow: auto;
	overflow-y: hidden;
	padding: 0 2em 2em 2em;
	white-space: pre;
}

pre code {
	background-color: transparent;
	border-bottom: none;
	font-size: 14px;
	line-height: 24px;
	padding: 0;
}




/* Basic Form Styles 
-------------------------------------------------------------- */
input, textarea, button {
	background: #eee;
	margin: 0;
	padding: 0.5em;
	color: #aaa;
	outline: none;
	border: none;
	border-bottom: 1px solid #ddd;
}

textarea {
	overflow: auto;
	resize: vertical;
}

input:focus, textarea:focus {
	background: #dadada;
	color: #555;
}

input[type="submit"] { 
	padding: 0.5em 1em;
}

input[type="submit"]::-moz-focus-inner { 
	border:0; 
}

fieldset {
	border: 1px solid #ddd;
	margin: 2em 0;
	padding: 1em;
}

legend {
	padding: 0.5em 0.75em;
	border: 1px solid #ddd;
}

fieldset :first-child {
	margin-top: 0;
}

fieldset :last-child {
	margin-bottom: 0;
}

label input, label textarea {
	display: block;
}

label textarea {
	width: 100%;
}

