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

	/* required settings */
	
	position:absolute;
	top: 20px;
	left:55px;
	
	/*position:relative; old version - not compatible with google chrome */
	overflow:hidden;
	width: 645px;
	height:120px;
	margin-top: -5px;
}

/*
	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 {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	margin-top: -18px;
	vertical-align:bottom;
	font-size: 10px;
}

/* single scrollable item */
.scrollable img {
	position:relativ;
	background-color:#fff;
	padding:2px;
	cursor:pointer;
	vertical-align: middle;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	align:center;
	height:auto;
	border:1px solid #FFF;
	margin-left:-2px;
}
.scrollable img.hover {
	border:1px solid #BC9A00;
}
.scrollable img.normal {
	border:1px solid #FFF;
}

/* fixed size img */
.scrollable .img_margin {
	float:left;
	width:100px;
	height:55px;
	margin:25px 5px 0px 25px;
	text-align: center;
	vertical-align: middle;
}

/* fixed size img */
.scrollable .img_frame1 {
	display: table;
	#position: relative; 
	float:left;
	width:100px;
	height:55px;
	margin:25px 0px 0px 25px;
	text-align: center;
	vertical-align: middle;
}
.scrollable .img_frame2 {
 #position: absolute; 
 #top: 50%;
 display: table-cell; 
 vertical-align: middle;
}
.scrollable .img_frame3 {
 #position: relative; 
 #top: -50%;
}

div#head_icon img {
	float: none;
	margin:0;
	background-color:transparent;
	padding:3px 3px 0 1px;;
	border:none;
	width:23px;
	height:15px;
}

div#head_icon {
	float: left;	
}
div#head_info {
	float: left;	
	padding-top: 3px;
	width: 62%;
}
div#head_navi {
	padding-top: 3px;
	position:absolute;
	right: 23px;
	width: 10%;
}

/* active item */
.scrollable .active {
	/*
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border:1px solid #BC9A00;
	*/
	z-index:9999;
	position:relative;
}