/*******************************************************************************
* 
* 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 {
	padding: 10px;
	background: #fff;
	color: #5e5e5e;
	font-family: Arial, Helvetica, Sans-serif;
	font-size: 100%;
	line-height: 1.125em;
}

/*******************************************************************************
* Links
*******************************************************************************/

a:link, a:visited {
	color: #a58554;
	text-decoration: underline;
}

a:hover, a:focus {
	color: #b9121b;
	text-decoration: underline;
}

/*******************************************************************************
* Headings
*******************************************************************************/

h1, h2, h3 {
	font-family: "Times New Roman", Times, Serif;
	font-weight: normal;
	line-height: 1.2em;
}

h1, h2 {
	font-size: 2em;
}

h3 {
	padding-bottom: 0.2em;
	font-size: 1.7em;
}

/*******************************************************************************
* Text
*******************************************************************************/

p {
	padding-bottom: 18px;
}
.text-small{
	font-size:0.8em;
}
/*******************************************************************************
* Lists
*******************************************************************************/

ol, ul {
	margin-left: 2em;
	padding-bottom: 18px;
}

/*******************************************************************************
* Forms
*******************************************************************************/

input, select, textarea {
	font-family: Arial, Helvetica, Sans-serif;
}

/*******************************************************************************
* Container
*******************************************************************************/

#container {
	font-size: 0.75em;
}