@charset "utf-8";
/* **************************************************
Author: Andres Vidal
Description: Reset + Fonts + Base Layout (not grids)
Usage:
<div id="doc" class="temp1">
	<div id="tHeader"> header stuff </div>
	<div id="tContent">
		<div id="tMain"><div class="tBlock"> main stuff </div></div> <!--end tMain -->
		<div class="tBlock"> side stuff </div>
	</div> <!--end #tContent -->
	<div id="tFooter"> footer stuff </div>
</div> <!--end #doc -->

Legend:
	#doc = 100%
	#doc1 = 960px
	.temp1 = 170px (left)
	.temp2 = 200px (left)
	.temp3 = 250px (left with 10px gap)
	.temp4 = 170px (right)

Fonts:
	Base Font-Size: 12px
	Base line-height: 16px
************************************************** */
/* Reset */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, tt, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, applet, center, font, s, strike, u {
	font-size:100%;
	border:0;/*outline:0;*/
	vertical-align:baseline;
	background:transparent;
	margin:0;
	padding:0;
}
body {
	line-height:1;
}
ol, ul {
	list-style:none;
}
blockquote, q {
	quotes:none;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
caption, th {
	text-align:center;
}
/* Fonts */
body {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px; 
	/* *font-size:75%; Temp. Removed for OS DPI Scaling in IE */
	line-height:1.5;
}
table {
	font-size:inherit;
	font:100%;
}
h1 {
	font-size:2em;
	line-height:0.75;
	margin-bottom:0.75em;
}
h2 {
	font-size:1.5em;
	line-height:1;
	margin-bottom:1em;
}
h3 {
	font-size:1.08em;
	line-height:1.384;
	margin-bottom:1.384em;
}
h4 {
	font-size:1em;
	line-height:1.5;
	margin-bottom:1.5em;
}
h5 {
	font-size:0.83em;
	line-height:1.8;
	margin-bottom:1.8em;
}
h6 {
	font-size:0.66em;
	line-height:2.25;
	margin-bottom:2.25em;
}
p {
	font-size:1em;
	line-height:1.5;
	margin-bottom:1.5em;
}
/* Layout */
body {
	text-align:center;
}
#doc, #doc1, .temp1, .temp2, .temp3, .temp4 {
	margin:auto;
	text-align:left;
}
#doc {
	width:auto;
}
#doc1 {
	width:960px;
}
#tFooter {
	clear:both;
}
.tBlock {
	position:relative;
}
#tMain .tBlock {
	position:static;
}
#tMain {
	width:100%;
}
/*temp 1*/
.temp1 #tMain {
	float:right;
	margin-left:-300px;
}
.temp1 .tBlock {
	float:left;
	width:160px;
}
.temp1 #tMain .tBlock {
	margin-left:170px;
}
/*temp 2*/
.temp2 #tMain {
	float:right;
	margin-left:-300px;
}
.temp2 .tBlock {
	float:left;
	width:180px;
}
.temp2 #tMain .tBlock {
	margin-left:200px;
}
/*temp 3*/
.temp3 #tMain {
	float:right;
	margin-left:-300px;
}
.temp3 .tBlock {
	float:left;
	width:250px;
}
.temp3 #tMain .tBlock {
	margin-left:260px;
}
/*temp 4*/
.temp4 #tMain {
	float:left;
	margin-right:-300px;
}
.temp4 .tBlock {
	float:right;
	width:180px;
}
.temp4 #tMain .tBlock {
	margin-right:200px;
}
#tMain .tBlock {
	float:none;
	width:auto;
}
#tHeader:after, #tContent:after, #tFooter:after, #doc:after, #doc1:after, .temp1:after, .temp2:after, .temp3:after, .temp4:after, #tMain:after, #tMain .tBlock:after {
	clear:both;
	content:'.';
	display:block;
	visibility:hidden;
	height:0;
}
#tHeader, #tContent, #tFooter, #doc, #doc1, .temp1, .temp2, .temp3, .temp4, #tMain, #tMain .tBlock {
*height:1%;
}
.clearfix:after {
	clear:both;
	content:'.';
	display:block;
	visibility:hidden;
	height:0;
}
.clearfix {
	display:inline-block;
}
* html .clearfix {
	height:1%;
}
.clearfix {
	display:block;
}
