/* ============================================
 * Baseline Element Styling and Helper Classes;
 * Author: Kris Young;
 * Last Modified: 10/03/2010;
 * ============================================ */

/*=======================================================================================
 * Block Level Elements 
 *=======================================================================================*/
 
html {
}
body {
	font-size:62.5%;
	font-family:Arial, Helvetica, sans-serif;
}
h1 {
	font-size:2.0em;
}
h2 {
	font-size:1.8em;
}
h3 {
	font-size:1.6em;
}
h4 {
	font-size:1.4em;
}
h5 {
	font-size:1.2em;
}
h6 {
	font-size:1.0em;
}
h1, h2, h3 {
	margin:0.5em 0em;
}
h1, h2, h3, h4, h5, h6 {
	font-weight:bold;
}
p, fieldset {
	margin-bottom:0.5em;
}
blockquote {
	margin:1em;
}
blockquote:before, q:before {
	content:'"'
}
blockquote:after, q:after {
	content:'"'
}
/*=======================================================================================
 * Inline Elements 
 *=======================================================================================*/
 
strong, dt {
	font-weight:bold;
}
abbr, acronym {
	border-bottom:1px dotted #000;
	cursor:help;
}
em {
	font-style:italic;
}
/* List Elements */ 
ol, dl {
	margin:1em;
}
ul, ol, dl {
	margin-left:2em;
}
ol li {
	list-style: decimal outside;
}
dl dt {
	font-weight:bold;
}
dl dd {
	margin-left:1em;
}

/*=======================================================================================
 * Table Elements  
 *=======================================================================================*/
 
table {
	margin-bottom:0.5em;
}
th, td {
	border:1px solid #000;
	padding:0.5em;
}
th {
	font-weight:bold;
	text-align:center;
}
caption {
	margin-bottom:0.5em;
	text-align:center;
}


/*=======================================================================================
 * Helper Classes
 *=======================================================================================*/

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.hidden {
	display:none!important;
}
.fl {
	float:left!important;
}
.fr {
	float:right!important;
}
.fn {
	float:none!important;
}
input::-moz-focus-inner {
	border: 0;
	padding: 0;
} /*Remove button padding in FF*/

