/**
 * CSS para elementos da estrutura do web site.
 *
 * @author bruno
 */
body
{
	/* Box */
	margin: 0;
	padding: 0;
	
	/* Color & Background */
	background-color: #333;
}

#divTopBox
{
	/* Box */
	width: 100%;
	border-top: 5px solid #333;
	
	/* Color & Background */
	background-color: #FFF;
}

#divTop
{
	/* Box */
	width: 850px;
	margin: 0 auto; /* Centralizando */
	
	/* Color & Background */
	background-image: url('../images/top-background.jpg');
	background-position: top;
	background-position: left;
	background-repeat: no-repeat;
	
	/* Misc. */
	overflow: hidden;
}

#divLogo
{
	/* Box */
	margin: 20px 0;
}

#divMiddleBox
{
	/* Box */
	width: 100%;
	border-top: 2px solid #CCC;
	
	/* Color & Background */
	background-color: #F5F5F5;
}

#divMiddle
{
	/* Box */
	width: 850px;
	padding: 20px 0;
	margin: 0 auto; /* Centralizando */
	min-height: 400px;
}

.divLeft
{
	/* Box */
	width: 400px;
	margin-right: 50px;
}

.divRight
{
	/* Box */
	width: 400px;
}

.divSidebar
{
	/* Box */
	width: 230px;
	margin-right: 20px;
}

#divBanner
{
	/* Box */
	width: 600px;
	
	/* Color & Background */
	background-image: url('../images/banner-background.jpg');
	background-position: left top;
	background-repeat: no-repeat;
}

#divSolutions
{
	/* Box */
	width: 600px;
	height: 175px;
}

#divBottomBox
{
	/* Box */
	width: 100%;
	padding-bottom: 50px;
	
	/* Color & Background */
	background-color: #333;
}

#divBottom
{
	/* Box */
	width: 850px;
	margin: 0 auto; /* Centralizando */
}

.divColumns
{
	/* Box */
	width: 100%;
	
	/* Misc. */
	overflow: hidden;
}

.divColumn
{
	/* Positioning */
	float: left;
}

hr
{
	/* Box */
	margin: 10px 0;
	border: none;
	height: 2px;
	
	/* Color & Background */
	background-image: url('../images/ruler-background.png');
	background-repeat: repeat-x;
}