/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position:relative;
	overflow:hidden;
	width: 940px;
	height: 350px;
	background-color: #FFFFFF;
	margin-right: auto;
	margin-left: auto;
}
.scrollable h1{
	position:absolute;
}

/*
	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 the width and height for the root element and
	not for this element.
*/
.scrollable .items {
	width:20000em;
	position:absolute;
	background-color:#FFF;
/*	clear:both; */
}
.items {
	width: 940px;
	height: 350px;
	background-repeat: no-repeat;
	background-position:top left ;
	position:relative;
}

.Slide {
	float:left;
	width: 940px;
	height: 350px;
	
}

/* active item */
.scrollable .active {
	/*border:2px solid #000;*/
	/*position:relative;*/
	cursor:default;
}

/* ============================================================== */


/* ============================================================== */


/* position and dimensions of the navigator */
.navi {
	z-index:99;
	height:11px;
	margin: auto;
	position: absolute;
	top: 20px;
	left: 20px;
}	

/* items inside navigator */
.navi a {
	width:10px;
	height:10px;
	float:left;
	display:block;
	font-size:1px;
	margin-right: 10px;
	border:solid 1px #FFF;
	background-image:url(../images/navi.png);
	background-repeat:no-repeat;
	background-position: 16px;
}

/* mouseover state */
.navi a:hover {
	background-position: top;
}

/* active state (current page state) */
.navi a.active {
	background-color:#FFF;
}
.MainContainer {
	position:absolute;
	background-image:url(../images/MainContainerBG.png);
	width: 900px;
	padding: 10px 20px 10px 20px;
	bottom:0px;
}
.MainContainer a, .MainContainer span  {
	font-family: 'Arbutus Slab', serif;
	font-size: 28px;
	color: #FFF;
	letter-spacing: -1px;
	display:block;
	text-decoration:none;
	line-height:28px;
	text-shadow: #000 0px -1px 0px;
}
.MainContainer a:hover {
	color:#887738;
}
.MainContainer p {
	font-size:15px;
	color: #FFFFFF;
	margin: 0px;
	padding: 5px 0px 10px 0px;
}
