/*---------------------------------------
Basic Style Sheet

Author: 	Matt Berridge
Email:		m.berridge@mixd.co.uk
Website:	http://www.mixd.co.uk
---------------------------------------*/

/*------------------------------------------------------------------
[Color codes]

Background:	#fff (white)
Content:	#333 (grey)
Header h1:	#293f55 (dark blue)
Header h2:	#293f55 (dark blue)
Footer:		#333 (grey)

a (standard p text):	#333 (grey) UNDERLINE
a (hover p text):	#333 (grey) NONE
-------------------------------------------------------------------*/

/* Import Styles
---------------------------------------*/
@import url("reset.css"); 
@import url("layout.css");
@import url("global.css");
@import url("navigation.css");
@import url("forms.css");
@import url("wordpress.css");
@import url("icons.css");


/* Global
---------------------------------------*/

html > body {
	font-size: 10px; /* 1em = 10px for everything else */	
}

html {
	background: url(../images/global/grey_bg.gif) top left repeat-y;
	height: 100%;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 62.5%; /* 1em = 10px for IE/Win */
	color: #333;
	min-width: 951px;
	text-align: center;
	background: url(../images/global/blue_bg.gif) top left repeat-x;
	height: 100%;
}

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: #333;
}

a:hover, a:active, a:focus {
	text-decoration: none;
	color: #333;
}