a img
{
	border: 0;
}

a.goto
{
	color: #666;
	text-decoration: none;
	padding-left: 10px;
	background: url(img/arrow_grey.png) no-repeat center left;
}

select, input[type=text], textarea
{
	border:1px gray solid;
	padding:2px;
}

p.clear
{
	clear: both;
}

#image_wrap
{
	clear: both;

	width: 600px;
	height: 375px;
	text-align: center;
	
	background-color: #EFEFEF;
	border:	2px solid #FFFFFF;
	margin: 15px 15px 15px 40px;
	outline-color: #ddd;
	outline-style: solid;
	outline-width: 1px;
	padding: 15px 0;
}

#image_wrap img
{
	margin: auto;
}

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

	background:	transparent url(./gradient.png) repeat-x scroll 0 0;
	border:	1px solid #CCCCCC;

	/* required settings */
	position:relative;
	overflow:hidden;
	width: 604px;
	height:120px;

	/* custom decorations */
	border:1px 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 {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable img 
{
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;
	width:100px;
	height:75px;
}

/* active item */
.scrollable .active 
{
	border:1px solid #000;
	z-index:9999;
	position:relative;
}



a.browse 
{
	background:	transparent url(./arrow.png) no-repeat scroll 0 0;
	cursor:pointer;
	display:block;
	float:left;
	font-size:1px;
	height:30px;
	margin:40px 10px;
	width:30px;
}

a.left 
{
	margin-left:0;
}

a.right 
{
	background-position:0 -30px;
	clear:right;
	margin-right:0;
}

a.disabled 
{
	visibility:hidden !important;
}


/*
	Forms
*/

ul.form
{
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

ul.form li
{
	clear: left;
	padding: 0px;
	margin-bottom: 4px;
}


ul.form li label
{
	width: 100px;
	display: block;
	float: left;
	font-size: 12px;
	padding-right: 8px;
	padding-top: 4px;
}

ul.form li label em
{
	color: red;
	padding-left: 3px;
}

ul.form li label.error, ul.form span.error
{
	color: red;
	padding-left: 6px;
	float: none;
	display: inline;
	font-size: 80%;
}

ul.form li label.checkbox
{
	width: auto;
	display: inline;
	padding: none;
	float: left;
	font-size: 14px;
	color: black;
}

ul.form li input
{
	width: 250px;
}

ul.form li.button
{
	padding-left: 108px;
	padding-bottom: 30px;
}

ul.form li.button input
{
	width: 256px;
}

/*
	Paging
*/

ul.paging
{
	list-style-type: none;
	padding: 0;
	margin: 0;
	margin-top: 8px;
	height: 30px;
}

ul.paging li
{
	float: left;
}

ul.paging li a
{
	display: block;
	padding: 3px;
	width: 15px;
	text-align: center;
}