/*====STRUCTURE====*/
#container {
	width:						930px;
	margin:						0 auto;
	padding:					0 0 150px;
	}



/*====TOP====*/
#T {
	padding: 10px 0;
	}



/*====NAV====*/
#N {
	border-top:					4px solid #DFE0E1;
	border-bottom:				4px solid #DFE0E1;
	overflow:					hidden;
	background-color:			#464749;
	padding-left:				50px;
	}

#N ul,
#N li {
	padding:					0px;
	margin:						0px;
	list-style-type:			none;
	}

#N li {
	float:						left;
	}

#N li a {
	display:					block;
	height:						27px;
	padding:					0 10px;
	line-height:				27px;
	color:						#FFF;
	}

#N li a:hover,
#N li a.active {
	color:						#464749;
	background-color:			#DFE0E1;
	}



/*====ROTATION====*/
#R {
	width:						930px;
	height:						347px;
	overflow:					hidden;
	}



/*====CONTENT====*/
#box1 {
	padding:					36px 140px 36px 36px;
	background-color:			#464749;
	}

#box2 {
	padding:					36px 140px 36px 36px;
	margin-top:					36px;
	border-top:					1px solid #464749;
	}

#box3 {
	padding:					36px;
	background-color:			#464749;
	}


#boxL {
	width:						238px;
	}

#boxR {
	width:						485px;
	}




/*====GALLERY====*/
#box3 {
	overflow:					hidden;
	position:					relative;
	}

#box3i {
	overflow:					hidden;
	}

#box3i2 {
	width:						9999px;
	}

#box3 img {
	margin:						10px;
	cursor:						pointer;
	margin-left:				0;
	}

a.prevPage,
a.nextPage {
	display:					block;
	cursor:						pointer;
	position:					absolute;
	top:						75px;
	height:						12px;
	width:						13px;
	background:					#000;
	}

a.prevPage {
	left:						12px;
	background:					transparent url(../images/structure/prev.gif);
	}

a.nextPage {
	right:						12px;
	background:					transparent url(../images/structure/next.gif);
	}

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

    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 660px; 
    height:90px; 
	} 

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

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



