/*---[ Details ]---------------------------------------
Reset Style Sheet
Author: Lee Powell
Contact: lee.powell@soup.co.uk
-------------------------------------------------------*/

/*-----------------------------------------------------
[01] Reset 
[02] HTML / Body
[03] Anchors
[04] Images
[05] Headings
[06] Lists
[07] Forms
[08] Tables
[09] Phrase Elements
[10] Misc Inline
[11] Misc Block
-------------------------------------------------------*/

	
/* [01] Reset 
-------------------------------------------------------*/

/* Modifed version of CSS reset from Eric Meyer - http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0px;
	margin-bottom:20px;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
body {
	line-height: 1;
	color: black;
	background: white;
}

#header {
	width: 535px;
	height: 1440px;
	float: left;
	background: url("bg-rich2.jpg") 0 0 no-repeat;
	position: fixed;
}

ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
input, select { 
	vertical-align: middle; 
}
	
	
/* [02] HTML / Body
-------------------------------------------------------*/
html {
	height: 100%;
}
body {
	font: normal 0.75em Arial, Helvetica, sans-serif; /* 12px */
	color: #888;
}


/* [03] Anchors
-------------------------------------------------------*/
a, a:link, a:visited, a:active, a:hover {
	outline: none; /* Removes dotted outline from Firefox anchors */
	text-decoration: none;
	color: blue;
}
a:hover {
	color: #000;
	text-decoration: underline;
}
a:visited {
	color: red;
}


/* [04] Images
-------------------------------------------------------*/


/* [05] Headings
-------------------------------------------------------*/
h1, h3, h4, h5, h6 {
	font-weight: bold;
	line-height: 1.2;
	color: #362E1F;
}
h1 {
	font-size: 2.167em; /* 26px */
	margin: 0 0 0.769em; /* 20px */
}

h3 {
	font-size: 1.333em; /* 16px */
	margin: 0 0 1.25em; /* 20px */
}
h4, h5, h6 {
	font-size: 1.167em; /* 14px */
	margin: 0 0 1.429em; /* 20px */
}


/* [06] Lists 
-------------------------------------------------------*/
dl, ol, ul {
	padding: 0;
	margin:  0 0 0.909em; /* 10px */
}
ol, ul {
	list-style-position: outside;
	padding: 0 0 0 15px;
}
ol {
	list-style: decimal;
}
ul {
	list-style: square;
}
li {
	margin: 0 0 0.454em; /* 5px */
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 0 0.909em; /* 10px */
}


/* [07] Forms
-------------------------------------------------------*/
input, select, textarea, button {
	font: normal 1em Verdana, Helvetica, Arial, sans-serif;
}
form {
	margin: 0 0 0.909em; /* 10px */
}
fieldset {
	display: block;
}
legend {
	font-weight: bold;
	color: #000; /* IE/Win sets color to blue */
}
input, select, button {
	vertical-align: middle;
}
label {
	cursor: pointer;
}
optgroup {
	font-style: normal;
	font-weight: bold;
	margin: 0.909em 0 0; /* 10px */
	color: #CCC;	
}
option {
	padding: 1px 0.909em; /* 10px - For Firefox */
	color: #000;
}
textarea {
	display: inline;
}

/* NOTE: If changing any of the rules below for type selectors, please update the ie6.css stylesheet also */

input[type="image"] {
	outline: none; /* Removes dotted outline from Firefox anchors */
}
input[type="text"],
input[type="password"],
textarea {
	padding: 3px;
	border: 1px solid #CCC;
	background: #FFF;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
	border-color: #333;
}
input[type="radio"],
input[type="checkbox"] {
	vertical-align: text-top;
}
input[type="submit"] {
	cursor: pointer;
}



