/*
Title: CSS Styles for Mewsicmaker Music Lessons
Author: Megan Coleman Design | www.megancoleman.com
*/

/* Table of Contents
==================================================
	# Reset
	# General Styles
	# Media Queries
*/

/* @group Reset
================================================== */
/* 
Modified from html5doctor.com Reset Stylesheet v1.6.1
Author: Richard Clark - http://richclarkdesign.com 
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {margin:0; padding:0; font-size: 100%; border:0; outline:0; vertical-align:baseline; background:transparent;}
html {font-size:62.5%;}
body {line-height:1;}
article,aside,details,figcaption,figure, footer,header,hgroup,menu,nav,section { display:block;}
nav 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;}
hr {display:block; height:1px; border:0; border-top:1px solid #cccccc; margin:1em 0; padding:0;}
input, select {vertical-align:middle;}
img {max-width: 100%; height: auto; display: block;}
/* @end */

/* @group General
================================================== */

body {
	border-top: 10px solid #3c3457;
	font-family: 'Cardo', serif;
	background: #7c71a3;
	color: #666;
}

a:link, a:active {
	color: #5092c0;
}

#page {
	background: #fff;
	margin: 0 auto;
	border-left: 10px solid #766b9d;
	border-right: 10px solid #766b9d;
	width: 90%;
	padding-bottom: 10px;
}

header h1, header h2 {
	text-indent: -10000px;
	margin: 0;
	height: 0;
}

nav {
	border-bottom: 1px solid #e2e0e0;
	padding-bottom: 20px;
}

nav li {
	margin-bottom: 10px;
	font-size: 1.4rem; font-size: 14px;
}

nav a:link, nav a:active, nav a:visited {
	color: #595959;
	text-decoration: none;
	text-transform: uppercase;
}

nav, section {
	margin: 30px 50px;
}

h1 {
	font-style: italic;
	font-weight: normal;
	font-size: 2.8rem; font-size: 28px;
	margin: 50px 0 20px;
}

p {
	font-size: 1.5rem; font-size: 15px;
	line-height: 1.4;
	margin-bottom: 20px;
}

blockquote {
	padding: 20px 30px;
	border-top: 1px solid #e2e0e0;
	border-bottom: 1px solid #e2e0e0;	
}

blockquote p {
	font-size: 2.2rem; font-size: 22px;
	font-style: italic;
	color: #949494;
}

cite {
	font-family: Arial, sans-serif;
	font-style: normal;
	text-transform: uppercase;
	font-size: 1.2rem; font-size: 12px;
	color: #949494;
}

footer p {
	font-size: 1.2rem; font-size: 12px;
}

/* @end */

/* ------------------- 750px up ------------------*/
@media all and (min-width: 46.88em) {
	#page {
		width: 700px;
	}
	header {
		height: 220px;
	}
	nav {
		margin: 30px 50px;
		text-align: center;
	}
	nav li {
		display: inline-block;
		margin: 0;
	}
	nav li a {
		border-left: 1px solid #e2e0e0;
		padding: 0 10px;
	}
		nav li:first-child a {
			border: none;
		}
}