/*
 * RESET PATTERN
 * Autor: Khan Leo Maxfower
 * Email: leomaxfower@hotmail.com
 */

/***** GENERAL ************************************************************************************/

html, body {
	height: 100%;
	background-color: #fcfcfc;
}

#container {
	width: 100%;
	min-height: 100%; /**/
	margin: 0px auto;
	position: relative; /* Contexto de posicionamento */
	left: 0px;
	top: 0px;
}

.containerBGI {
	background: url(../img/bgBody.jpg) no-repeat center top;
}

*html #container {
	height: 100%;
}

.clearBlock {
	clear: both;
}

/***** HEADER *************************************************************************************/

#header {
	display: block;
	width: 100%;
	height: auto;
	min-height: 120px;
	background: url(../img/bgHeader.png) repeat-x left top;
}

#mainHeader{
	display: block;
	width: 960px;
	height: 100%;
	margin: 0px auto;
}

/***** MAIN CONTENT *******************************************************************************/

#content {
	display: block;
	width: 100%;
	height: auto;
	padding-bottom: 175px;
}

#mainContent {
	display: block;
	width: 960px;
	height: auto;
	margin: 0px auto;
	position: relative;
	left: 0px;
	top: 0px;
}

/***** FOOTER *************************************************************************************/

#footer {
	display: block;
	width: 100%;
	height: 175px;
	position: absolute;
	left: 0px;
	bottom: 0px;
}

#mainFooter {
	display: block;
	width: 960px;
	height: 100%;
	margin: 0px auto;
	position: relative;
	left: 0px;
	top: 0px;
}