/**
 * Stylesheet for <Sticky Footer tutorial>
 *
 * @media	screen, projection
 * @copyright	Netlash <http://www.netlash.com>
 * @author	name <johan@netlash.com>
 */

/**
 * = Global reset (Eric Meyers 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;
}

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;
}


/**
 * = Styles to make the tutorial look prettier ;)
 * ----------------------------------------------------------
 */

body {
	background: #EEE;
	font: 300 12px Arial;
}

h1 {
	font: 700 32px "Clarendon", "American Typewriter", "Courier New";
	color: #161414;
}

#header {
	background: #FFC;
	padding: 20px;
}

#content {
	width: 710px;
	padding: 15px;
	line-height: 1.3;
	background: white;
	float: right;
	min-height: 300px;
	height: auto !important;
	height: 300px;
}

#sidebar {
	width: 190px;
	padding: 15px;
	float: left;
	line-height: 1.3;
}

#sidebar ul {
	padding: 0 0 0 5px;
	margin: 20px 0;
}

#footer {
	background: #CFC;
}

/**
 * = Sticky footer
 * ----------------------------------------------------------
 */

html, body {
	height: 100%;
}

#container {
	width: 960px;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -50px auto;
	position: relative;
}

#footer {
	height: 50px;
	margin: 0 auto;
	width: 960px;
	line-height: 50px;
	position: relative;
}

#push {
	height: 50px;
}

/**
 * = Clearfix
 * ----------------------------------------------------------
 * @see http://www.positioniseverything.net/easyclearing.html
 * @see http://www.456bereastreet.com/archive/200603/new_clearing_method_needed_for_ie7/
 * @see http://www.stuffandnonsense.co.uk/archives/clearing_floats_without_structural_markup_in_ie7.html
 */

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
