@charset "utf-8";
/*  ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''  */
/*		PROJETO:                		                        */
/*		DESENVOLVIMENTO: 		SANDBOX MÍDIAS INTERATIVAS      */
/*                       		www.sandbox.com.br              */
/*		DESENVOLVEDORES:                                 		*/
/*                       		Cristiano Kurt Ritzke           */
/*		DATA INICIO:     		28/04/2009                      */
/*		ÚLTIMA ATUALIZAÇÃO:		28/04/2009                      */
/*  ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''  */


/* estrutura __________________________________________________________ */
* {
	margin: 0px;
	border: 0px;
	padding: 0px;
}

html, body, #container {
	height: 100%; 
}

body > #container { 
	height: auto; 
	min-height: 100%; 
}

body {
	font-size: 76%;
	/*overflow-x: hidden;
	overflow-y: auto;*/
}

#header {
	height: 66px;
	padding: 0px;
}

#content { 
	padding-bottom: 80px; 
	width: 950px;
	margin: 0px auto;
}

#footer { 
	clear: both; 
	position: relative;
	z-index: 10; 
	height: 40px; 
	margin-top: -40px; 
}

#footer-wrapper { 
	width: 970px;
	height: 47px;
	margin: 0px auto;
}


/* UMA COLUNA ________________________________________________________________ */
.umaColuna {
	overflow: hidden;
	padding: 22px 0px 0px 50px;
	background: none;
	height: auto;
	display: block;
}


/* DUAS COLUNAS ______________________________________________________________ */
.duasColunas {
	width: 100%;
	overflow: hidden;
	padding: 0px;
}
.duasColunasLeft {
	float: left;
	width: 430px;
	height: 200px;
	padding: 0px;
	border: #666 1px solid;
	background:  #999;
}
.duasColunasRight {
	float: right;
	width: 430px;
	height: 200px;
	padding: 0px;
	border: #666 1px solid;
	background:  #999;
}




/* tres colunas _______________________________________________________ */
.threeColumns {
	overflow: hidden;
	width: 100%;
	padding: 0px;
	margin: 0px;
}
.threeColumns .threeColumnsLeft {
	float: left;
	height: 165px;
	width: 275px;
	padding: 0px;
	margin: 0px;
	border: #666 1px solid;
	background:  #999;
}
.threeColumns .threeColumnsMiddle {
	height: 165px;
	margin: 0px;
	padding: 0px;
	border: #666 1px solid;
	background:  #999;
}
.threeColumns .threeColumnsRight {
	height: 165px;
	float: right;
	width: 300px;
	padding: 0px;
	margin: 0px;
	border: #666 1px solid;
	background:  #999;
}