/* 
Title: screen.css
Author: Daniel Matthew
Updated: 11/07/2010
Site name: Contact
Site URI: http://danmatthew.co.uk

----- Contents ------
	1. HTML
	2. Headings
	3. Links
	4. Layout
	5. Branding
	6. Navigation
	7. Footer
	
	Colours: 
	
-----------------------*/
	
@import url(../css/reset.css);
	
/*----- 1. HTML ------ */

body {
	font-size: 100%;
	background:#031b27;
	color: #333;
	font-family: "chaparral-pro-1","chaparral-pro-2"
}

ol {
	list-style-type: none;
}
 
ul {
	list-style-type: none;
}
 
li {
	margin: ;
}
 
 
/*----- 2. HEADINGS -----*/
h1 {
	color: #cc3433;
	font-size: 3em;
}
 
h2 {
	color: #fff;
	font-size: 1.5em;
	background: #cc3433;
}
 
h3 {
	color: #;
	font-size: ;
}
 
h4 {
	color: #;
	font-size: ;
}

h5 {
	color: ;
	font-size: ;
}
/*----- 3. LINKS -----*/

a:link {
	color: #;
}
 
a:visited {
	color: #;
}
 
a:hover, a:active {
	color: #;
	text-decoration: none;
}

/*----- 4. LAYOUT -----*/

.wrapper {
	margin: 150px auto;
	width: 960px;
}

.clearfix:after {
content: ".";
display: block;
height:0;
clear:both;
visibility:hidden;
}
