/*---[ Details ]---------------------------------------
Site: Destiny Quest
Author: Brad Koehler
Contact: brad.koehler@gmail.com
-------------------------------------------------------*/

/*-----------------------------------------------------
Core Elements:
[01] Yahoo CSS 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
-------------------------------------------------------*/


/*-----------------------------------------------------
Core Elements
-------------------------------------------------------*/

/* [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] HTML / Body
-------------------------------------------------------*/
html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	}
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 62.5%; /* 10px */
	font-weight: normal;
	line-height: normal;
	color: black;
	text-align: left;
	background: #FFF;
	word-spacing: 0.1em;
	margin: 2em;
	padding: 0;
	}

/* [03] Anchors
-------------------------------------------------------*/
a {
	color: blue;
/* Removes dotted outline from Firefox anchors */
	outline: none;
	}
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 10px;
	}
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 10px;
	}
ol, ul {
	list-style-position: outside;
	padding: 0 0 0 2.5em;
	}
ol {
	list-style: decimal;
	}
ul {
	list-style: square;
	}
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: #000;
	}
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;
	color: #FFF;
	font-weight: bold;
	}
td, th {
	padding: 5px 10px;
	text-align: left;
	vertical-align: top;
	}
tbody {
	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;
	}