body {
	margin: 0;
	
	font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
   	font-weight: 300;
   	font-size: 16px;
   	line-height: 1.5em;
   	color: #333;
   	min-width: 1040px;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

h3 {
	font-family: "proxima-nova", Arial, "Lucida Grande", sans-serif; 
	font-size: 40px;
	line-height: 45px;
	font-weight: 300;
}

#intro h3 {
	margin: 20px 0;
}


a {
	text-decoration: none;
	color: black;
}

a:hover {

}

.button {
    background-color: black; /* Green */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
	font-size: 16px;




}

.clear {
	clear: both;
}

#header {
	position: relative
}

#header .header-image {
	width: 100%;
	height: 400px;
	background-position: left center;
	background-size: 100%;
	background-repeat: no-repeat;
}



#header .title h1 {
	font-family: "proxima-nova", Arial, "Lucida Grande", sans-serif; 
	font-size: 100px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	line-height: 200px;
	text-align: center;
	color: #FFF;
	width: 100%;
	height: 200px;
	margin-top: 44px;
}

#header.header-image .title h1 {
	line-height: 400px;
	height: 400px;
	position: absolute;
	top: 0;
	margin-top: 0;
}

#header #nav {
	position: absolute;
	top: 0;
	right: 0;
	font-family: "proxima-nova", Arial, "Lucida Grande", sans-serif; 
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 16px;
}

#header #nav ul {
	list-style-type: none;
	margin: 20px 0 0;
}

#header #nav a {
	color: black;
}

#header #nav ul li {
	display: inline;
	color: black;
	margin-right: 18px;
	padding: 3px 7px 2px;
}

.page-about #header #nav li.about,
.page-projects #header #nav li.projects,
.page-read #header #nav li.read,
.page-watch #header #nav li.watch,
.page-listen #header #nav li.listen,
.page-contact #header #nav li.contact {border: 1px solid black;}



#content {
	width: 100%;
}

#content-main {
	width: 853px;
	margin: 0 auto;
}

body.full-width #content-main {
	width: 100%;
}




#intro {
	padding-top: 20px;
}

#footer {
	font-family: "proxima-nova", Arial, "Lucida Grande", sans-serif; 
	background-color: #2F3133;
	color: #CCCCDD;
	text-align: center;
}

#footer a {
	color: #CCCCDD;
}

#footer a:hover {
	color: #FFF;
}

#footer-inner {
	width: 700px;
	margin: 0 auto;
	padding: 30px 0;
}

#footer .email-twitter {
	font-size: 30px;
	font-weight: 100;
	border-top: 1px solid #4F5153;
	padding-top: 10px;
	border-bottom: 1px solid #4F5153;
	padding-bottom: 10px;

}

#footer .email-twitter .label {
	font-weight: 300;
	color: #EEE;
}

#footer .email-twitter .spacing {
	width: 20px;
	display: inline-block;
}

#footer ul {
	list-style-type: none;
	padding: 0;
}

#footer ul li {
	display: inline;
	margin-left: 20px;
}

#footer ul li:first-child {
	margin-left: 0;
}



.buttonDownload {

	width: 96.8%;
	
	display: inline-block;
	position: relative;
	padding: 10px 20px;
  
	background-color: #20DCDC;
	color: white;
  
	font-family: sans-serif;
	text-decoration: none;
	font-size: 2.9em;
	text-align: center;
	text-indent: 15px;
	text-decoration-color: white;
}

.buttonDownload:hover {
	background-color: #05FFFF;
	color: white;
}

.buttonDownload:before, .buttonDownload:after {
	content: ' ';
	display: block;
	position: absolute;
	left: 15px;
	top: 52%;
}

/* Download box shape  */
.buttonDownload:before {
	width: 10px;
	height: 2px;
	border-style: solid;
	border-width: 0 2px 2px;
}

/* Download arrow shape */
.buttonDownload:after {
	width: 0;
	height: 0;
	margin-left: 3px;
	margin-top: -7px;
  
	border-style: solid;
	border-width: 4px 4px 0 4px;
	border-color: transparent;
	border-top-color: inherit;
	
	animation: downloadArrow 2s linear infinite;
	animation-play-state: paused;
}

.buttonDownload:hover:before {
	border-color: white;
}

.buttonDownload:hover:after {
	border-top-color: #FFFF;
	animation-play-state: running;
}

/* keyframes for the download icon anim */
@keyframes downloadArrow {
	/* 0% and 0.001% keyframes used as a hackish way of having the button frozen on a nice looking frame by default */
	0% {
		margin-top: -7px;
		opacity: 1;
	}
	
	0.001% {
		margin-top: -15px;
		opacity: 0;
	}
	
	50% {
		opacity: 1;
	}
	
	100% {
		margin-top: 0;
		opacity: 0;
	}
}

#wrap { 
	width: 900px; 
	margin: 0 auto; 
}