body {
	font-family:Verdana, Arial;
	margin:0px;
	padding:0px;
	text-align:center;
	font-size:80%;
	color:#666666;
}
table, td {
	font-size:100%;
}
a {
	text-decoration:none;
}
a:hover {
	text-decoration:underline;
}
h1 {
	font-size:130%;
	text-transform:uppercase;
}
h2 {
	font-size:100%;
}
textarea {
	font-family:Verdana, Arial;
	font-size:100%;
}
.main {
}
.image_left {
	float:left;
	margin-right:10px;
}
.image_right {
	float:right;
	margin-left:10px;
}
.image_left, .image_right {
	border:1px solid #999999;
	background-color:#ffffff;
	padding:5px;
}
.galleryImageThumb {
	float:left;
	margin-left:0px;
	margin-right:15px;
	margin-bottom:15px;
}
.galleryImageThumb {
	background-color:#ffffff;
	padding:5px;
	border:1px solid #999999;
}
.galleryImage {
	text-align:center;
}
.galleryImageCaption {
	text-align:center;
	padding:10px;
	font-size:90%;
}
.button {
	background-image:url('/images/button_background_grey.gif');
	height:20px;
	border:1px solid #999999;
	width:120px;
	text-align:center;
	color:#ffffff;
}
.button a {
	color:#ffffff;
}

/* 
    root element for the scrollable. 
    when scrolling occurs this element stays still. 
*/ 
div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
    width: 440px; 
    height:106px; 
} 
 
/* 
    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 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 in horizontal scrolling. 
    typically, this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div { 
	float:left;
	margin:0px;
	margin-right:5px;
	background-color:#fff;
	padding:2px;
	border:1px solid #efefef;
	cursor:pointer;
	width:100px;
	height:100px;
	
	-moz-border-radius:4px;
	-webkit-border-radius:4px;

} 
 
/* you may want to setup some decorations to active the item */ 
div.scrollable div.items div.active { 
    border:1px solid #000;
}
/* styling for the image wrapper  */ 
#image_wrap { 
    /* dimensions */ 
    width:510px; 
    height:510px;
    margin-bottom:10px;
 
    /* centered */ 
    text-align:center; 
 
    /* some "skinning" */ 
    border:1px solid #efefef; 
}

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

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(/images/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	margin:40px 5px;
	cursor:pointer;
	font-size:1px;
}

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


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

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	
#caption {
	width:510px;
	text-align:center;
	font-size:10px;
	margin-bottom:10px;
	height:30px;
}
* html #caption {
	min-height:30px;
}