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

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

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 620px;
	height:100px;

	/* custom decorations */
	border:1px solid #ccc;
	background:url(/img/global/gradient/h300.png) repeat-x;
}

/*
	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;
}

.items div {
	float:left;
	width:620px;
}

/* single scrollable item */
.scrollable img {
	float:left;
	margin:10px 5px 10px 10px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	width:100px;
	height:75px;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

/* active item */
.scrollable .active {
	border:2px solid;
	position:relative;
	cursor:default;
	border-color: #003399;
}



	

	/* styling for the large image wrapper  */
	#image_wrap {
		/* dimensions */
		width:620px;
		margin:15px 0 15px 40px;
		padding:15px 0;

		/* centered */
		text-align:center;

		/* some "skinning" */
		background-color:#efefef;
		border:2px solid #fff;
		outline:1px solid #ddd;
		-moz-ouline-radius:4px;
	}




/* styling for the heading bar  */

.headerBar {
	font:14px arial;
	color: #000000;
	text-decoration:none;
	letter-spacing:0.1em;
	font-weight: bold;
	text-align: center;
	}

.headerBar a {
	font:14px arial;
	color: #999999;
	text-decoration:none;
	letter-spacing:0.1em;
	font-weight: bold;
	text-align: center;
	}
	
.headerBar a:hover {
	color: #333333;
	text-decoration:none;
	}
	
	
	
	/* styling for the block menus  */
	
	
p {
	font:12px arial;
	color:#000000
	
	}
	
	
h4 a {
	font:12px arial;
	color: #666666;
	text-decoration:none;
	letter-spacing:normal;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	font-family: Arial, Helvetica, sans-serif;
	}
	
h4 a:hover {
	color: #003399;
	text-decoration:none;
	}
	
	

#galleries table {
	display:block;
	position:relative;
}
#galleries td.folder {
	vertical-align:top;
	width:220px;
	min-height:100px;
	padding:10px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	background-image:url(k10.png);
	overflow:hidden;
}
#galleries td.folder:hover {
	background-image:url(k20.png);
}
#galleries td.folder .thumb {
	position:relative;

	float:left;
	display:inline;
	text-align:center;
	width:100px;
	overflow:hidden;
}
#galleries td.folder .thumb a img {
	max-width:100px;
	max-height:100px;
	border:none;
}
#galleries .data {

	float:right;
	display:inline;
	width:170px;
	min-width:60px;
	margin-left:10px;
}
#galleries h4 {
	margin-bottom:10px;
}
#galleries p {
	margin-top:10px;
}

td.folder .thumb a span,
ul.thmb li span {
	position:absolute;
	z-index:99;
	width:15px;
	height:15px;
	background-image:url(new.png);
	background-repeat:no-repeat;
}
td.folder .thumb a span {
	top:0;
	right:0;
}

.clear {
	clear:both;