/*---[ Details ]---------------------------------------
Base Style Sheet
Site: http://trees.innocentdrinks.co.uk
Author: Lee Powell
Contact: lee.powell@soup.co.uk
Date Created: 12.09.2007
Date Modified: 12.09.2007
-------------------------------------------------------*/

/*-----------------------------------------------------
Contents:
[01] Global White Space Reset
[02] Core Elements
[03] Links
[04] Images
[05] Headings
[06] Lists
[07] Forms
[08] Tables
[09] Phrase Elements
[10] Misc Inline
[11] Misc Block
-------------------------------------------------------*/

/*-----------------------------------------------------
Note: The Global White Space Reset causes some issues 
with Forms in certain browsers.
-------------------------------------------------------*/


/* [01] Global White Space Reset
-------------------------------------------------------*/
/* This technique preserves Form elements, and should be 
used instead of the '*' universal selector */
html, body, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6,
table, thead, tbody, tfoot, th, td, form, fieldset, legend, 
p, blockquote, pre {
	margin: 	0;
	padding: 	0;
}
	
/* [02] Core
-------------------------------------------------------*/
html, body {
	height: 100%;
	}
body {
	font: normal small Arial, Helvetica, sans-serif;	
	line-height: 1.4em;
	color: #444444;
	text-align: left;
	background: #FFF;
	word-spacing: 0.1em;
	margin: 2em;
	padding: 0;
	}

/* [03] Links
-------------------------------------------------------*/
a {
	color: #007F41;
	font-weight: bold;
	}
a:link, a:visited {
	text-decoration: none;
	}
a:hover, a:active {
	text-decoration: underline;
	}

/* [04] Images
-------------------------------------------------------*/
img {
	border: none;
	}

/* [05] Headings
-------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	margin: 0 0 0.5em 0;
	}
h1 {
	font-size: 2.2em;
	}
h2 {
	font-size: 1.8em;
	}
h3 {
	font-size: 1.4em;
	}
h4, h5, h6 {
	font-size: 1.2em;
	}

/* [06] Lists 
-------------------------------------------------------*/
dl, ol, ul {
	padding: 0;
	margin: 0 0 1em 0;
	}
ol, ul {
	list-style-position: outside;
	padding: 0 0 0 2.5em;
	}
dt {
	font-weight: bold;
	}
dd, li {
	margin: 0 0 0.2em 0;
	}

/* [07] Forms
-------------------------------------------------------*/
form {
	padding: 0;
	margin: 0 0 1em 0;
	}
fieldset {
	padding: 0;
	margin: 0;
	border: 0;
	}
legend {
	font-weight: bold;
	margin: 0;
	/* Padding is used instead of margin for Safari */
	padding: 0 0 1em 0;
	/* IE/Win sets color to blue */
	color: #000;
	}
label {
	margin: 0 0.5em 0 0;
	}
input, select {
	margin: 0 0.5em 0 0;
	font-size: 1em;
	}
optgroup {
	/* Not all browsers can support styling of this element */
	font-style: normal;
	font-weight: bold;
	margin: 0.5em 0 0 0;
	color: #CCC;	
	}
option {
	/* Padding for Firefox */
	padding: 0 0.5em 0 0.5em;
	color: #000;
	}
textarea {
	display: block;
	margin: 0.5em 0 0 0;
	width: 30em;
	height: 6em;
	}
button {
	font-size: 1em;
	}

/* [08] Tables
-------------------------------------------------------*/
table {
	margin: 0 0 1em 2em;
	padding: 0;
	border-collapse: collapse;
	border: 1px solid #666;
	}
caption {
	text-align: left;
	margin-bottom: 0.5em;
	padding-left: 2em;
	}
td, th {
	padding: 0.5em 1em;
	text-align: left;
	}
td {
	border-right: 1px dotted #666;
	}
th {
	border-right: 1px solid #666;
	}
thead {
	border-bottom: 2px solid #666;
	background: #999;
	color: #FFF;
	}
thead th, th {
	font-weight: bold;
	}
thead td {
	border-right: 1px solid #666;
	}
tfoot {
	font-style: italic;
	font-size: 0.8em;
	}
tfoot td {
	text-align: right;
	border: none;
	}
tbody {
	background-color: #FFF;
	border: 1px solid #666;
	}
tbody td {
	border-bottom: 1px solid #666;
	}

/* [09] Phrase Elements
-------------------------------------------------------*/
abbr, acronym {
	border: none;
	}
cite {
	font-style: italic;
	}
em {
	font-style: italic;
	}
strong {
	font-weight: bold;
	}
dfn {
	font-style: normal;
	}
code, kbd, samp {
	font-family: monospace;
	}
var {
	font-style: italic;
	}

/* [10] Misc Inline
-------------------------------------------------------*/
q {
	font-style: italic;
	}
del {
	text-decoration: line-through;
	}
ins {
	text-decoration: none;
	}
sub {
	vertical-align: sub;
	}
sup {
	vertical-align: super;
	}

/* [11] Misc Block 
-------------------------------------------------------*/
p {
	margin: 0 0 1em 0;
	}
address {
	font-style: normal;
	margin: 0 0 1em 0;
	padding: 0;
	}
blockquote, pre {
	margin: 0 0 1em;
	padding: 1em;
	border: 1px dotted #666;
	background-color: #DDD;
	}
pre {
/* set specific font for IE/Win */
	font-family: inherit;
	overflow: scroll;
	margin: 0 0 1em 0;
	}
hr {
	padding: 0;
	margin: 2em 0;
/* For IE/Win, as it displays hr as inline */
	display: block;
	}
