
/*****************************************************************************/
/* CSS enclose float hack to make floats enclose within the container div */
/*****************************************************************************/
.floatFix:after{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
/* Which float to clear, left or right, both is automatic */
.floatFix-left:after{ clear: left; }
.floatFix-right:after{ clear: right; }
.floatFix{ display: inline-table; } /* Mark Hadley's fix for IE Mac */
/* Back Mac Hack, Hides this css from Mac IE (this back slash-->) \*/
.floatFix{ display: block; }
/* End of Back Mac Hack */
/* End of CSS enclose float hack */

.hbox{
	float: left;
}
.hbox-right{
	float: right;
}


body{
	width: 850px;
	margin: 0 auto;
	font-family: Arial, Helvetica;
	font-size: 12px;
	padding-top: 10px;
	position: relative;
}

h1{
	padding: 35px 0 0 0;
	margin: 0;
	line-height: 20px;
	font-size: 35px;
	font-weight: bold;
	color: #003366;
}

h2{
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
	color: #999999;
	border-bottom: 1px solid #999999;
	padding: 0;
	margin: 0;
}

h3{
	font-weight: bold;
	font-size: 12px;
	color: #003366;	
	padding: 0 3px;
	margin: 0;
	display: inline;
}


h3 a{
	font-weight: bold;
	font-size: 11px;
	color: #003366;	
	padding: 0 2px;
	margin: 0;
	display: inline;
}
p{
	width: 410px;
	padding: 0;
	margin: 0;
}

.leftParagraph{
	margin-right: 30px;
}

.text{
	margin: 15px 0;
}

.doubts, .doubts a{
	margin-top: 10px;
	color: #666666;
}

span{
	font-size: 30px;
	position: relative;
	top: 7px;
}

.footer{
	border-top: 1px solid #999999;
	padding: 10px 0;
	font-size: 10px;
	color: #999999;
}

.footer a{
	color: #999999;
}

.titleArea{
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #999999;
}