/**
* Stylesheet title
*
* Your stylesheet description would go here.
*
* @project 		Theatrefront Newsletter, August 2009
* @version 		1.0
* @author 		Mike Badgley, iStudio
* @copyright	2009
* @license 		Type
*
* @colordef 	#000000 Content
* @colordef 	#984806 Headers, Hyperlinks
*/

/**
* Reset
*
* Global reset of all X/HTML elements. This section MUST appear at the top!
*
* @author 	Eric Meyer, meyerweb.com
* @version	1.0 | 20080212
* @see 		http://meyerweb.com/eric/tools/css/reset/
* @section 	reset
* @media 	all
*/
@media all {  

	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 {
		margin: 0;
		padding: 0;
		border: 0;
		outline: 0;
		font-size: 100%;
		vertical-align: baseline;
		background: transparent;
	}
	body {
		line-height: 1;
	}
	ol, ul {
		list-style: none;
	}
	blockquote, q {
		quotes: none;
	}
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none;
	}

	/* remember to define focus styles! */
	:focus {
		outline: 0;
	}

	/* remember to highlight inserts somehow! */
	ins {
		text-decoration: none;
	}
	del {
		text-decoration: line-through;
	}

	/* tables still need 'cellspacing="0"' in the markup */
	table {
		border-collapse: collapse;
		border-spacing: 0;
	}

}


/**
* Core Layout
*
* Basic styling for most X/HTML elements to give a general layout that is 
* usable and shared across all devices and browsing platforms.
*
* @section	core
*/
html {
	font-size: 100.01%;
}

body {
	background-color: #333;
	color: #000;
	font: normal 13px/18px Georgia, "Times New Roman", Times, serif;
}

a:link,
a:visited,
a:hover,
a:active {
	color: #984806;
	text-decoration: underline;
}
a:hover,
a:active {
	text-decoration: none;
}

address, p, hr {
	margin: 18px 0;
}
h1, h2, h3, h4, h5, h6 {
	color: #984806;
	margin: 0 0 18px 0;
}
blockquote, dl, ol, ul {
	margin: 18px 0 18px 30px;
}



/**
* Page Layout
*
* Define major sections of the template - header, column(s) and footer.
*
* @section	layout
* @media	screen, projection
*/
@media screen, projection {

	/**
	* @subsection Page layout
	*/   
	#page {
		background-color: #fff;
		left: 50%;
		margin-left: -291px;
		padding: 1px 0;
		position: relative;
		width: 582px;
	}


	/**
	* @subsection Header
	*/   
	#header {
		height: auto !important;
		height: 74px;
		min-height: 74px;
		margin: 18px;		
		text-align: right;
		width: auto;
	}
		#header .logo {
			left: 18px;
			position: absolute;
			top: 18px;
		}
		


	/**
	* @subsection Content
	*/

	#content {
		margin: 18px;
		padding: 1px 0;
		width: auto;
	}
		#content .alignleft {
			display: inline;
			float: left;
			margin: 0 10px 10px 0;
		}
		
		#content .aligncenter {
			display: block;
			margin: 0 auto;
		}


	/**
	* @subsection Footer
	*/

	#footer {
		clear: both;
		position: relative;
		width: 100%;
	}

	/**
	* @section Miscellaneous
	*/

	/**
	* @subsection Float "clearfix"
	*/
	.clearfix:after {
		content: ".";
		display: block;
		height: 0;
		clear: both;
		line-height: 0;
		visibility: hidden;
	}
	.clearfix {
		display: inline-block;
	}
	/* Hide from IE Mac \*/
	.clearfix {
		display: block;
	}
	/* End hide from IE Mac */

}



/**
* Printer
*
* The follow styles create a printer-friendly layout.
*
* @section	printer
* @media 	print
*/
@media print {



}



/**
* Mobile
*
* The follow styles are applied to mobile devices.
*
* Absolute positioning is an absolute no-no on mobile devices.
* There’s no room to float anything on such a small screen either.
* We need to keep everything in the document flow so that the
* mobile UA sees a one column layout.
*
* Ref: http://nidahas.com/2005/04/04/mobile-css-first-steps/
*
* @section	mobile
* @media	handheld
*/
@media handheld {

	* {
	   background-image: none !important;
	   float: none !important;
	   position: static !important;
	}

}