﻿body
{
	height: 100%;
}

div#slogan
{
	position: absolute;
	top: 50%;
	left: 220px;
	width: 200px;
	height: 40px;
	margin-top: -20px;
}

div#container
{
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 98%;
	height: 98%;
	border-color: blue;
}

div#header
{
	position: relative;
	height: 40px;
	background: #D0D0D0;
	border-color: green;
}

/* size of slideshow div (main container) must be the same size as all slide images */
div#banner
{
	position: relative;
	height: 500px; /* size of images */
	width: 1000px; /* size of images */ 
	border-color: green;
	overflow: hidden;
	margin:30px 0px 30px 0px;
	
	
	/*overflow: visible;*/
}

div#news
{
	position: relative;
	height: 100px; 
	width: 267px;  
	border-style:none;
	overflow: hidden;
	/*overflow: visible;*/
}

div#customers
{
	position: relative;
	height: 85px; 
	width: 650px;  
	border-color: #000000;
	border-style:solid;
	border-width:1px;
	overflow: hidden;
	/*overflow: visible;*/
}

.rounded-corners
{
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	border-radius: 5px;
}

.center
{
	margin-left: auto;
	margin-right: auto;
	
}
​