html {
	overflow-y: scroll;
}

html, body {
	height: 100%;
}

body {
	background: #909090 url(../../../images/bg.jpg) repeat-x top center;
	_background: #737373;
	margin: 0;
	padding: 0;
}

div {
	margin: 0;
	padding: 0;
}

.breaker { clear: both; }

#wrapper {
	position: relative;
	margin: -162px auto 0 auto;
	width: 878px;
	min-height: 100%;
	_height: 100%;
	padding: 0 9px;
	background: url(../../../images/bg-wrapper.png) repeat-y top center;
	_background: #737373 url(../../../images/bg-wrapper-ie6.jpg) repeat-y top center;
}

#wrapper .box {
	display: none;
}

#header {
	position: relative;
	float: left;
	clear: both;
	width: 878px;
	height: 163px;
	margin: 162px 0 0 0;
	background: url(../../../images/bg-header.jpg) no-repeat;
}

#header .logo {
	position: absolute;
	top: 61px;
	left: 53px;
}

#subheader {
	position: relative;
	float: left;
	clear: both;
	width: 878px;
	height: 173px;
	background: url(../../../images/bg-subheader.jpg) repeat-x;
}

#subheader .image {
	position: absolute;
	top: 0;
	right: 37px;
	width: 573px;
	height: 173px;
	background: url(../../../images/header/standard.jpg) no-repeat;
}

#content {
	float: left;
	clear: both;
	width: 878px;
	min-height: 310px;
	_height: 310px;
}

#content .left {
	float: left;
	width: 366px;
	margin: 33px 0 0 36px;
	_margin: 33px 0 0 18px;
}

#content .right{
	float: left;
	width: 366px;
	margin: 33px 0 0 60px;
	_margin: 33px 0 0 30px;
}

#footer {
	margin: 0 auto;
	width: 878px;
	height: 162px;
	padding: 0 9px;
	background: url(../../../images/bg-wrapper.png) repeat-y top center;
	_background: #737373 url(../../../images/bg-wrapper-ie6.jpg) repeat-y top center;
}

#footer .box {
	position: relative;
	width: 878px;
	height: 103px;
	padding: 59px 0 0 0;
	background: url(../../../images/bg-footer.jpg) no-repeat top left;
}

#footer .syveon {
	float: left;
	margin: 22px 0 0 24px;
	margin: 22px 0 0 12px;
	padding: 0 18px 0 0;
	border-right: 1px solid #bfbfbf;
}

#footer .sponsors {
	float: left;
	margin: 22px 0 0 13px;
	margin: 22px 0 0 6px;
	width: 655px;
}

/* 
root element for the scrollable. 
when scrolling occurs this element stays still. 
*/ 
#footer .sponsors { 
	/* required settings */ 
	position: relative; 
	overflow: hidden; 
	width: 660px; 
	height: 90px; 
} 

/* 
root element for scrollable items. Must be absolutely positioned 
and it should have a extremely large width to accomodate scrollable items. 
it's enough that you set width and height for the root element and 
not for this element. 
*/ 
#footer .sponsors ul { 
/* this cannot be too large */ 
	width: 20000em; 
	position: absolute;
	list-style: none;
	padding: 0;
	margin: 0;
} 

/* 
a single item. must be floated in horizontal scrolling. 
typically, this element is the one that *you* will style 
the most. 
*/ 
#footer .sponsors ul li { 
	float: left;
	height: 65px;
	width: 163px;
	line-height: 65px;
	vertical-align: absmiddle;
	text-align: center;
	padding: 0;
	margin: 0;
} 

/* you may want to setup some decorations to active the item */ 
#footer .sponsors ul li.active { 
}