#container {
	width: 800px;
	margin: 0 auto 0 auto;
}

/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

:focus {
  -moz-outline-style:none;
}

img {
	float: left;
}

#splash, #scrollNav, #header {
	width: 800px;
}

#splash {
	height: 520px;
	display: block;
}

.scrollNavImg {
	cursor: pointer;
}

#scrollSet {
	float:right;
	width: 520px;	
}

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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 480px;
	height:25px;

	/* custom decorations */
	border:0px solid #ccc;
}

.scrollableSplash {

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 800px;

	/* custom decorations */
	border:0px solid #ccc;
}

/*
	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, .scrollableSplash .splashItems {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

.scrollable .items div {
	float:left;
	width:516px;
}


.nonscrollable .item {
	/* this cannot be too large */
	width:540px;
	position:absolute;
	overflow: hidden;
}

.nonscrollable #itemList {
	width:20000px;
	overflow: hidden;
}

.scrollableSplash .splashItems div {
	float:left;
	width:800px;
}

/* single scrollable item */
.scrollable img, .nonscrollable img {
	float:left;
	margin:0px;
	background-color:#fff;
	padding:0px;
	border:0px solid #ccc;
	width:160px;
	height:25px;
}

.scrollableSplash img {
	float:left;
	margin:0px;
	background-color:#fff;
	padding:0px;
	border:0px solid #ccc;
}

/* active item */
.scrollable .active, .scrollableSplash .active {
	border:0px solid #000;
	position:relative;
	cursor:default;
}



/* buttons */


/* this makes it possible to add next button beside scrollable */
.scrollable, .nonscrollable {
	float:left;	
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(../img/hori_buttons.jpg) no-repeat;
	display:block;
	width:18px;
	height:25px;
	float:left;
	margin:0px;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.scrollRight 				{ background-position: 0 -25px; clear:right; margin-right: 0px;}
a.scrollRight:hover 		{ background-position:-18px -25px; }
a.scrollRight:active 	{ background-position:-36px -25px; } 


/* left */
a.scrollLeft				{ margin-left: 0px; visibility: hidden; } 
a.scrollLeft:hover  		{ background-position:-18px 0; }
a.scrollLeft:active  	{ background-position:-36px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(../img/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	



/* image map stuff */

    .clearboth {
    	clear: both;
    }
    
    #map-view-container {
    	position: relative;
    }

    #map-container {
    	float: left;
    	position: relative;
    	width: 260px;
    	height: 260px;
    }

    #map-view-container img.map {
    	position: relative;
    	left: 0px;
    	position: absolute;
    	z-index: 100;
    }
    
    #map-view-container img.region {
    	display: none;
    	left: 0px;
    	position: absolute;
    	top: 0px;
    	z-index: 20;
    }		
    
    #map-view-container img.regionBg {
    	left: 0px;
    	position: absolute;
    	top: 0px;
    	z-index: 19;
    	width: 260px;
    	height: 260px;
    }

    #practice-container {
    	float: left;
    }
    
    #practice-container ul {
    	display: none;
    }
    
    #practice-container ul.selected {
    	display: inline;
    }
    
    #practice-container ul li {
    	list-style-type: none;
    }

    #practice-container .selected-list ul li {
    	list-style-type: none;
    }
