/* --------------------------------------------------
* Base Style Sheet
* Provides a "factory reset" for browser styles, as well as setting up some basics
-------------------------------------------------- */

/* Reset
* Based on work by Eric Meyer
* @see http://meyerweb.com/eric/tools/css/reset/
-------------------------------------------------- */
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,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
hr {
	background: transparent;
	border: 0;
	font-size: 100%;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
img {
	border: 0;
}

/**
* Remove dotted borders from links and buttons
*/
:focus,
:active {
	outline: 0;
}
/**
* @bugfix Remove dotted inner borders from buttons in FF
* @valid no
*/
::-moz-focus-inner {
	border: 0;
}

th {
	text-align: left;
}

/* Block HTML5 elements */
header,
nav,
aside,
footer {
	display: block;
}

/* Basic Elements
-------------------------------------------------- */
body,
input,
select,
textarea {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5;
}
body {
	background: #fff;
	color: #000;
}

a {
	text-decoration: none;
}

p,
ul,
ol,
dl,
blockquote,
pre,
table,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin-bottom: 8px;
}

ul {
	margin-left: 1.5em;
}
ol {
	margin-left: 2em;
}

address {
	font-style: normal;
}

/** @section Utility
 * Really basic utility classes
 -------------------------------------------------- */
/**
 * Clear floats without markup
 * This is the updated clearfix hack that fixes rare bugs caused by the original.
 * @see http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack/
 */
.clearfix,
.nav {
	display: block;
	zoom: 1;
}
.clearfix:after,
.nav:after {
	content: " ";
	display: block;
	font-size: 0;
	height: 0;
	clear: both;
	visibility: hidden;
}

/* Generic horizontal navigation menus */
.nav,
.nav li,
.nav ul {
	list-style: none;
	margin: 0;
}
.nav li {
	display: inline;
	float: left;
}
.nav li a {
	display: block;
}

/* Image Replacement */
.imr {
	background-position: 0 0;
	background-repeat: no-repeat;
	color: rgba(0, 0, 0, 0); /* Transparent text for non-IE browsers */
	display: block;
	font-size: 0;
	/* Line-height Workaround for IE not being able to use text-indent with inline-block. */
	line-height: 0;
	overflow: hidden;
	vertical-align: middle;
	text-align: left !important;
	text-indent: -32000px;
}

/**
 * Hide elements off left without hiding them from screen readers.
 */
.accessibility {
    left: -32000px;
    position: absolute;
}

/**
 * Hide elements completely
 */
.hidden {
	display: none;
}

/* -- Ad Styling -- */
.ads-top {
    text-align: center;
    margin: 0 auto;
}
