@charset "UTF-8";

/********************************************************************************
Default Stylesheet for Liam Botham
Created by Pixel Vector, www.pixelvector.co.uk
********************************************************************************/

@import url("reset.css");

/********************************************************************************
Globally Used Elements
********************************************************************************/
body { 
	background: #000; 
	padding: 0; 
	margin: 0; 
	font: 12px Arial, Helvetica, sans-serif; 
	color: #ccc;
	}
	
p { 
	padding: 0; 
	margin: 0 0 15px 0; 
	line-height: 1.5em; 
	}
	
h1, h2, h3, h4, h5, h6 { 
	color: #fff; 
	font: normal 21px "Georgia", Helvetica, sans-serif; 
	margin: 0 0 25px 0; 
	padding: 0; 
	}
	
abbr { 
	cursor: help; 
	}
	
a { 
	color: #ccc;
	text-decoration: none;
	}
	
a:hover { 
	color: #fff; 
	text-decoration: underline;
	}
	
ul, ol { 
	line-height: 1.7em; 
	}

#container { 
	width: 330px;
	margin: 100px auto; 
	}

.blue {
	color: #b5d5ff;
	}

.hide { 
	display: none; 
	}
	
.show {
	display: block; 
	}


/********************************************************************************
Header
********************************************************************************/
#header { 
	}
	
/********************************************************************************
Main Navigation Menu
********************************************************************************/
#navigation { 
	}
#navigation ul {
	list-style: none;
	}
#navigation li {
	}
#navigation li a {
	color: #000;
	}
#navigation li a:hover {
	color: #900;
	}
	

/********************************************************************************
Page Content Container
********************************************************************************/
#page-content-container { 
	}
	

/********************************************************************************
Footer
********************************************************************************/
#footer {
	clear: both;
	font-size: 10px;
	}
#footer ul {
	}
#footer li {
	display: inline;
	}
#footer li a {
	color: #000;
	}
#footer li a:hover {
	color: #900;
	}


/********************************************************************************
Hacks & Fixes
********************************************************************************/

/* Remove Safari Focus Outline */
input:focus { 
	outline: none;
	}  
	
textarea:focus { 
	outline: none; 
	}  

/* Remove Firefox Link Outlines */
a, a:visited, a:active, a:focus { 
	outline: 0; 
	}
	
/* Clearfix for Div Content */
.clearfix:after { 
	content: "."; 
	display: block; 
	clear: both; 
	visibility: hidden; 
	line-height: 0; 
	height: 0; 
	}
.clearfix { 
	display: inline-block; 
	}
html[xmlns] .clearfix { 
	display: block; 
	}
* html .clearfix { 
	height: 1%; 
	}


