/** The following 3 selectors do not validate on the validator
 * http://jigsaw.w3.org/css-validator/validator?uri=http%3A%2F%2Fclintonmontague.co.uk%2F_assets%2Fcss%2Fmain.css&profile=css21&usermedium=all&warning=1&lang=en
 *
 * Please note: overflow-y is a valid CSS3 selector - so valid
 * ::selection is a valid CSS3 pseudo-selector - so valid
 * ::-moz-selection is firefoxes implementation of ::selection - so valid
 */
html
{
	overflow-y: scroll;
}

::-moz-selection
{
	background-color: #989898;
	color: #4DC4FF;
}

::selection
{
	background-color: #989898;
	color: #4DC4FF;
}

/**
 * End of 'invalid' CSS
 */


body
{
	font-family: 'WC ROUGHTRAD BETA', arial, sans-serif;
	text-align: center;
}

#container
{
	text-align: left;
	width: 900px;
	margin: 0 auto;
}

#navigation
{
	list-style-type: none;
	position: relative;
	z-index: 999;
	font-size: 36px;
	margin: 0;
	padding: 0;
}

#navigation li
{
	float: left;
	margin: 0;
	padding: 0;
	margin-bottom: 50px;
	margin-top: 50px;
	width: 300px;
}

#navigation li a
{
	letter-spacing: -1px;
	display: block;
	text-decoration: none;
	color: #ccc;
	width: 300px;
}

/* IE doesn't understand the following two selectors - but you know what?
 * I can live with that. It's a little thing called Progressive Enhancement.
 * You should try it, it's fun!
 */
#navigation li a span:before
{
	color: #969696;
	content: '+';
	font-size: 20px;
	vertical-align: top;
}

#navigation li a:hover span:before
{
	color: #333;
}

#navigation li.active a
{
	color: #4DC4FF;
}

#nav-home
{
	text-align: left;
}

#nav-about
{
	text-align: center;
}

#nav-contact
{
	text-align: right;
}

#content
{
	clear: both;
}

#home
{
	width: 900px;
}

h1
{
	font-size: 100px;
	color: #C6C6C6;
	letter-spacing: -6px;
	font-weight: normal;
	position: relative;
}

h1 span#intro
{
	z-index: 2;
	position: relative;
	margin-bottom: 0px;
	padding-bottom: 0px;
	display: block;
	width: 500px;
	margin-left: 200px;
	text-align: right;
}

h1 span#myname
{
	color: #818181;
	font-size: 140px;
	position: relative;
	right: 0px;
	top: -23px;
	margin-top: 0px;
	z-index: 1;
	width: 500px;
	display: block;
	margin-left: 200px;
	padding-bottom: 0px;
	background-color: #eee;
}

h1:hover span#myname
{
	background-color: #e6e6e6;
}

h2
{
	color: #818181;
	background-color: #eee;
	font-size: 48px;
	display: inline;
	letter-spacing: -2px;
}

p
{
	font-weight: normal;
	font-size: 36px;
	color: #989898;
}

#about p, #contact p
{
	text-align: right;
}

#content a
{
	color: #4DC4FF;
	text-decoration: none;
}

#content ins
{
	text-decoration: none;
	font-style: italic;
}

#content a:active
{
	background-color: #4DC4FF;
	color: #333;
}

#content a:hover
{
	border-bottom: 2px dotted;
}
#footer p
{
	font-size: 18px;
}

