/*---[ Details ]---------------------------------------
Base Style Sheet
Site: www.bowstringmedia.co.uk
Author: Phil Sumner
Contact: phil@philsumneronline.com
Date Created: 20 Aug 2009
Ignore this stylesheet for content, this sets the 
default values for all elements.
Use the content.css to modify the main site.
-------------------------------------------------------*/

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


/* [01] Yahoo CSS Reset 
   [http://developer.yahoo.com/yui/reset/#code]
-------------------------------------------------------*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, 
pre,form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
} 
table {
	border-collapse: collapse;
	border-spacing: 0;
}
fieldset,img {
	border: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
	font-weight: normal;
}
ol, ul {
	list-style: none;
}
caption,th {
	text-align: left;
} 
h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}
q:before, q:after {
	content: '';
}
abbr,acronym {
	border: 0;
}
    
/* [02] Core
-------------------------------------------------------*/
html, body {
	height: 100%;
	background: #fff;
}
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	font-weight: normal;
	color: black;
	text-align: left;
	word-spacing: 0.1em;
	line-height: 1.4em;
	padding: 0;
}

/* [03] Anchors
-------------------------------------------------------*/
a {
	color: #c00;
	text-decoration: none;
	/* Removes dotted outline from Firefox anchors */
	outline: none;
}
a:hover {
    text-decoration: underline;
}

/* [04] Images
-------------------------------------------------------*/
img {
    border: none;
}

/* [05] Headings
-------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin: 0 0 10px;
    line-height: 1em;
}

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

/* [07] Forms
-------------------------------------------------------*/
form {
	padding: 0;
	margin: 0 0 10px;
}
fieldset {
	padding: 0;
	margin: 0;
	border: 0;
}
legend {
	font-weight: bold;
	margin: 0;
	/* Padding is used instead of margin for Safari */
	padding: 0 0 10px;
	/* IE/Win sets color to blue */
    color: #1a68de;
}
label {
    margin: 0 10px 0 0;
}
input, select {
    margin: 0 10px 0 0;
    font-size: 1em;
}
optgroup {
	/* Not all browsers can support styling of this element */
    font-style: normal;
    font-weight: bold;
    margin: 10px 0 0;
    color: #ccc;    
}
option {
	/* Padding for Firefox */
    padding: 0 10px;
    color: #000;
}
textarea {
    display: block;
    margin: 10px 0 0;
    width: 30em;
    height: 6em;
}
button {
    font-size: 1em;
}

/* [08] Tables
-------------------------------------------------------*/
table {
    margin: 0 0 10px 0;
    padding: 0;
    border-collapse: collapse;
    border: 1px solid #666;
}
caption {
    text-align: left;
    margin: 0 0 10px;
    padding: 0 0 0 10px;
}
thead th, thead td {
    border-bottom: 2px solid #666;
    border-right: 1px solid #666;
    background: #999;
    color: #FFF;
    font-weight: bold;
}
td, th {
    padding: 5px 10px;
    text-align: left;
    vertical-align: top;
}
tbody {
    background-color: #FFF;
    border: 1px solid #666;
}
tbody td {
    border-bottom: 1px solid #666;
}
td {
    border-right: 1px dotted #666;
}
tfoot {
    font-style: italic;
    font-size: 0.8em;
}
tfoot td {
    text-align: right;
    border: none;
}

/* [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 10px;
}
address {
    font-style: normal;
    margin: 0 0 10px;
    padding: 0;
}
blockquote, pre {
    margin: 0 0 10px;
    padding: 1em;
    border: 1px dotted #666;
    background-color: #DDD;
}
pre {
	/* set specific font for IE/Win */
    font-family: inherit;
    overflow: scroll;
    margin: 0 0 10px;
}
hr {
    padding: 0;
    margin: 10px 0;
	/* For IE/Win, as it displays hr as inline */
    display: block;
}
