/*
Theme Name: FT Framework
Theme URI: http://fasturtle.com
Description: A modified version of H5 used in Fasturtle themes. 
Version: 1.0
Author: Fasturtle
Author URI: http://fasturtle.com
License: GNU General Public License, v2 (or newer)
License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*/

/**
 * @section reset
 * @see Eric Meyer's CSS Reset, 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: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

body {
	line-height: 1;
	color: black;
	background: white;
}

ol, ul {
	list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}

caption, th, td {
	text-align: left;
	font-weight: normal;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}

/**
 * @section fonts
 * @see http://fontsquirrel.com
 * @see http://nicewebtype.com/notes/2009/10/30/how-to-use-css-font-face/ 
 */
/*
@font-face {
	font-family: 'AurulentSansRegular';
	src: url('AurulentSans-Regular.eot');
	src: local('--'), url('fonts/Aurulent/AurulentSans-Regular.ttf') format('truetype'), url('fonts/Aurulent/AurulentSans-Regular.svg#webfont') format('svg');
}
*/

/**
 * @section html5 
 */
header, footer, section, article, aside, nav {
	display: block;
}

/**
 * @section typography
 * @see Blueprint CSS, http://blueprintcss.org
 */
html {
	font-size:100.01%;
}

body {
	background:#fff;
	color:#000;
	font-family:"Lucida Grande","Lucida Sans Unicode","Lucida Sans",Helvetica,Arial,'Liberation Sans',FreeSans,sans-serif;
	font-size:75%;
	line-height:1.5;
}

a:focus, a:hover {
	color:#EE0000;
}

a {
	color:#0000EE;
	text-decoration:underline;
}

h1, h2, h3, h4, h5, h6 {
	color:#000;
	font-family:"Lucida Grande","Lucida Sans Unicode","Lucida Sans",Helvetica,Arial,'Liberation Sans',FreeSans,sans-serif;
	font-weight:normal;
}

h1 {
	font-size:2em;
	margin-bottom:0.75em;
}

h2 {
	font-size:2em;
	margin-bottom:0.75em;
}

h3 {
	font-size:1.5em;
	line-height:1;
	margin-bottom:1em;
}

h4 {
	font-size:1.2em;
	line-height:1.25;
	margin-bottom:1.25em;
}

blockquote, cite {
	color:#666666;
	font-style:italic;
	margin:1.5em;
}

em, dfn {
	font-style:italic;
}

sup, sub {
	line-height:0;
}

abbr, acronym {
	border-bottom:1px dotted #666666;
}

address {
	font-style:italic;
	margin:0 0 1.5em;
}

del {
	color:#666666;
}

pre {
	font-family:Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace;
	font-size:1em;
	line-height:1.5;
	margin:1.5em 0;
	white-space:pre;
}

li ul, li ol {
	margin:0;
}

ul, ol {
	margin:0 1.5em 1.5em 0;
	padding-left:2.333em;
}

ul {
	list-style-type:disc;
	margin-left:1.5em;
}

ol {
	list-style-type:decimal;
	margin-left:1.5em;
}

dd {
	margin-left:1.5em;
}

p, dl {
	margin:0 0 1.5em;
}

strong, dfn, dl dt {
	font-weight:700;
}

/**
 * @section Image Styles
 */
img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

img.alignright {
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
}

img.alignleft {
	padding: 4px;
	margin: 0 28px 2px 0;
	display: inline;
}

.alignright {
	float: right;
}

.alignleft {
	float: left;
}