/*---[ Details ]---------------------------------------
Base Style Sheet
Site: www.innocentdrinks.co.uk
Author: Lee Powell
Contact: lee.powell@soup.co.uk
Date Created: 15.05.2007
Date Modified: 18.05.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,
form, fieldset, input, p, blockquote, pre {
	margin: 	0;
	padding: 	0;
}
	
/* [02] Core
-------------------------------------------------------*/
html, body {
	height: 100%;
}
body {
	font: normal small Arial, Helvetica, sans-serif;
	color: black;
	text-align: left;
	background: #FFF;
	word-spacing: 0.1em;
	margin: 2em;
	padding: 0;
}

/* [03] Links
-------------------------------------------------------*/
a {
	color: #a4272f;
}
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.2em 0;
	color: #ff3300;
}
h1 {
	font-size: 2.2em;
	color: #000;
}
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 #DDD;
}
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 #DDD;
}
th {
	border-right: 1px solid #DDD;
}
thead {
	border-bottom: 2px solid #AAA;
	color: #a4272f;
}
thead th, th {
	font-weight: bold;
}
thead td {
	border-right: 1px solid #DDD;
}
tfoot {
	font-style: italic;
	font-size: 0.8em;
}
tfoot td {
	text-align: right;
	border: none;
}
tbody {
	background-color: #FFF;
	border: 1px solid #DDD;
}
tbody td {
	border-bottom: 1px solid #DDD;
}

/* [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: #EEE;
}
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;
}