/*---------------------------------------
Basic Style Sheet

Author: 	Matt Berridge
Email:		m.berridge@mixd.co.uk
Website:	http://www.mixd.co.uk
---------------------------------------*/

/* Import styles
---------------------------------------*/
@import url("reset.css"); 
@import url("layout.css");
@import url("global.css");
@import url("navigation.css"); 

/* Global
---------------------------------------*/

html > body {
	font-size: 10px; /* 1em = 10px for everything else */	
}
html {
	height: 100%;
}
body {
	font-family: Arial, Verdana, sans-serif;
	font-size: 62.5%; /* 1em = 10px for IE/Win */
	height: 100%;
	color: #666;
	background: #fff url('../images/background/body-background.jpg') center top repeat-x;
}
a:link img, a:visited img, a:hover img, a:active img {
	border: none;
	text-decoration: none;
}
a:link, a:visited {
	text-decoration: underline;
	color: #EC008C;
}
a:hover, a:active, a:focus {
	text-decoration: none;
	color: #EC008C;
}