@charset "UTF-8";
/* CSS Document */

/* *************************************************************************** */
/* RESET STYLES */
/* http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 20080212 */

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;
	vertical-align: baseline;*/	
}
/*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;
}
*/

/* *************************************************************************** */
/* GUIDES */
.showgrid {background: url("../images/bg_grid.gif") top center repeat-y; z-index: 1000;}

/* *************************************************************************** */
/* BASE */
body {width: 100%;}

img {display: block;}

/* *************************************************************************** */
/* GRID */

/* 	
	--	Working prototype for a 12 column grid system based on a 960 pixel page width.
	
 	--	If you wish to increase pixel margins, remove the same amount of pixels from each column width.
		>>	Remember that each number will be doubled due to right and left margins. 
				*	Example: Add 5px to margin > remove 10px from width.
				*	Note: The same rules apply to increasing padding. 
*/

.grid_1col, .grid_2col, .grid_3col, .grid_4col, .grid_5col, .grid_6col, .grid_7col, .grid_8col, .grid_9col, .grid_10col, .grid_11col, .grid_12col {
	position: relative; padding: 5px; margin: 0 0 10px;
}


/* 12 column grid */
/* 
	-- 	Each style represents a different span of columns.
	
	-- 	Certain column widths work better asthetically and functionally.
		>>	These widths are noted with their proportions respective to the page width.
		
	--	When combining columns side by side with one of the float classes, make sure the total number of columns add up to 12.
			*	Example 1: .grid_3col could be used 4 times ( 3 x 4 = 12 )
			*	Example 2: .grid_3col could be used along with .grid_9col ( 3 + 9 = 12 )
*/

.grid_1col 		{width:  70px;}
.grid_2col 		{width: 150px;} /* 1/6 			of the page width */
.grid_3col 		{width: 230px;} /* 1/4 			of the page width */
.grid_4col 		{width: 310px;} /* 1/3  or 2/6 	of the page width */
.grid_5col 		{width: 390px;}
.grid_6col 		{width: 470px;} /* 1/2 or 3/6 	of the page width */
.grid_7col 		{width: 550px;}
.grid_8col 		{width: 630px;} /* 2/3  or 4/6 	of the page width */
.grid_9col 		{width: 710px;} /* 3/4 			of the page width */
.grid_10col 	{width: 790px;} /* 5/6 			of the page width */
.grid_11col 	{width: 870px;}
.grid_12col 	{width: 950px;} /* Full page with gutters */


/* *************************************************************************** */
/* FLOAT CLASSES */

.float_left 	{float: left;}
.float_right 	{float: right;}

/* http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
	clear: both;
	content: '.';
	display: block;
	visibility: hidden;
	height: 0;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}