@charset "utf-8";
/* CSS Document */

#ribbon {
	height: 532px;
	background-image:url(../images/background.jpg);
	background-position:center;
	background-repeat: no-repeat;
	position:relative;
}

#stage {
	width: 1015px;
	height: 532px;
	margin-left: auto;
	margin-right: auto;
	background-image:url(../images/stage.jpg);
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

#slideshow {
	margin-top: 20px;
	margin-left: 50px;
}

#contentBottom {
	width: 1015px;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	position: relative;
}
#contentBottom table {
	float: left;
	margin-left: 40px;
	border-collapse:collapse;
	border: 2px solid #DFDFDF;
	background-color: #FEFEFE;
	text-align: left;
	font-size: 15px;
}

#contentBottom table th {
	text-align: left;
	font-size: 18px;
	font-weight: bold;
	color: #0064D8;
	border-bottom: 2px solid #DFDFDF;
	background-image: url(../images/gradient-light-short.png);
}

#contentBottom a {
	color: #333;
	text-decoration: none;
	font-weight: bold;
}

#contentBottom a:hover {
	color: #0064D8;
	text-decoration: underline;
}

#bottomBar {
	background: #EEE;
	background-image: url(../images/bottom_bg.jpg);
	background-repeat: repeat-x;
	background-position: top;
	position:relative;
}

.slide {
	width: 900px;
	height: 400px;
	font-size: 16px;
}
.slide table td {
	text-align: left;
}
.slide h1 {
	color: #0064D8;
}
.slide a {
	color: #0064D8;
}
.slide a:hover {
	color:#666666;
}

/* Scrollable */
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 900px;
	height:415px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accommodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
}

/*
	a single item. must be floated in horizontal scrolling.
	typically, this element is the one that *you* will style
	the most.
*/
.items div {
	float:left;
}

.navi {
	
	width:200px;
	height:20px;
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../arrow/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;     
}
