/*******************************************************************************
* 
* basic.css
*
* This file contains all the basic font and colour declarations that are common
* to all media.
*
* It's included so that all browsers will use this stylesheet so there should be
* no advanced presentation or layout in here
*
*******************************************************************************/
/*******************************************************************************
* Reset
*******************************************************************************/

* {
	margin: 0;
	padding: 0;
}

div {
	position: relative;
}

/*******************************************************************************
* Body
*******************************************************************************/

body {
	background: url(../images/bg.jpg) top center repeat-x #fff;
	color: #525252;
	font-family: Arial, Helvetica, Sans-serif;
	font-size: 0.8em;
}

/*******************************************************************************
* Links
*******************************************************************************/

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

a:hover, a:focus {
	color: #b8132c;
	text-decoration: underline;
}

/*******************************************************************************
* Headings
*******************************************************************************/

h1, h2, h3 {
	padding: 0 0 0.5em;
	line-height: 1.1em;
	margin-left: 0px;
}

h2 {
	font-size: 1.1em;	
}


/*******************************************************************************
* Text
*******************************************************************************/

p {
	padding: 1em 0 0 0;
}

/*******************************************************************************
* Lists
*******************************************************************************/

ol, ul {

}

/*******************************************************************************
* Forms
*******************************************************************************/

input, select, textarea {
	font-family: Arial, Helvetica, Sans-serif;
}

.field {
	width: 100%;
	padding: 0 0 1em 0;
	clear: both;
	overflow: hidden;
}

.field.hidden {
	display:none;
}

/*******************************************************************************
* Reusable classes
*******************************************************************************/

.clear {
	display: block;
	clear: both;	
}

.left {
	float: left;	
}

.right {
	float: right;	
}

.red {
	color: #C91C30;
}
