/* CSS Reset - Inti Castro (inticastro@gmail.com) */

/* global white space reset */html,body,div,applet,object,embed,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,address,dl,dt,dd,ol,ul,li,fieldset,form,legend{display:block;margin:0;padding:0;border:none;}span,a,abbr,acronym,b,cite,code,del,dfn,em,i,img,ins,kbd,q,samp,strong,sub,sup,tt,var,label{display:inline;margin:0;padding:0;border:none;}table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:none;}

/* default font based on http://www.clagnut.com/blog/348/ */
body {
line-height: 1;
vertical-align: baseline;
}
body, input, textarea, select, th, td { font-size: 12px; font-family: Georgia, "Times New Roman", Times, serif; }

	h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .4em;
	font-weight: bold;
	line-height: 1;
	}
		h1 { font-size: 22px; }
		h2 { font-size: 20px; }
		h3 { font-size: 18px; }
		h4 { font-size: 16px; }
		h5 { font-size: 14px; }
		h6 { font-size: 12px; }
	
	p {
	margin: 0 0 .6em;
	line-height: 1.6;
	}
	
	blockquote {
	margin: .75em 0 1em;
	padding: .5em 1.5em;
	}
	
	ul, ol {
	margin: 0 0 1em;
	}
	ul {
	padding-left: 2em;
	list-style: disc outside;
	}
		ul ul { list-style-type: circle; }
		ul ul ul { list-style-type: square; }
	ol {
	padding-left: 2.7em;
	list-style: decimal-leading-zero outside;
	}
		ol ol { list-style-type: upper-alpha; }
		ol ol ol { list-style-type: upper-roman; }
		
		li {
		display: list-item;
		margin-bottom: .5em; 
		line-height: 1.6;
		}
	
	dl {
	margin: 0; 
	}
		dl dt {
		margin: 0;
		font-weight: bold;
		line-height: 1.6;
		}
		dl dd {
		margin: 0 0 .5em;
		line-height: 1.6;
		}

/* default colors */
body {
background: #fff;
color: #333;
}

a {
text-decoration: underline;
outline: 0 none;
}
	a:link { color: #2e66b3; }
	a:visited { color: #223a84; }
	a:focus { color: #ef4f00; }
	a:hover { color: #ef4f00; }

/* data tables */
/* tables still need cellspacing="0" in the markup */
table {
width: 100%;
margin: .5em 0 1.5em;
border-collapse: collapse; border-spacing: 0;
}
	caption {
	text-align: left;
	font-weight: normal;
	font-size: 13px;
	}
	th,
	td {
	text-align: left;
	vertical-align: top;
	font-weight: normal;
	}

/* images and multimedia */
img {}
object, embed {}

/* forms */
form {}
	fieldset {	}
		fieldset legend {}
		label {	}
		input {
		vertical-align: middle;
		}
		select {
		vertical-align: middle;
		}
			select option {
			padding: 0 .25em;
			}
			select optgroup {
			padding: .5em .25em 0;
			font-style: normal;
			font-weight: bold;
			}
			select optgroup option {
			padding-left: 1em;
			}		
		textarea {
		vertical-align: top;
		}

/* others */
em { font-style: italic; }
strong { font-weight: bold; }
address, cite, dfn { font-style: normal; font-weight: normal; }
abbr, acronym {}
hr { display: none; }

/*
Based on: 
developer.yahoo.com/yui/reset/
meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
www.ejeliot.com/blog/85
*/