/* Admin Style Sheet */

/* Controls how forms appear on the admin section */
.required
{
        margin-bottom: 5px;
}

.required label
{
	font-weight: bold;
        color: darkblue;
}

/* Sets enabled / disabled colors on product list */
span.product_enabled
{
        color: green;
}

span.product_disabled
{
        color: red;
}

#product_table
{
	width: 800px;
}

/* Container used for displaying selectable media from WYSIWYG */
#scroll_container
{
	width: 650px;
	height: 260px;
	overflow-x: hidden;
	overflow-y: scroll;
}

/* Administrative Options appearing on the bottom of admin page */
#admin_bar
{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 18px;
	padding-left: 10px;
	padding-bottom: 4px;
	padding-top: 4px;
	font-weight: bold;
	border-bottom: solid 1px darkblue;
        background-color: orange;
	color: darkblue;
}

#admin_options
{
	border-top: 4px solid #828B3F;	
	padding-top: 10px;
	height: 30px;
}

#admin_options a
{
	text-decoration: none;
	border: solid 1px silver;
	padding: 5px;
}

#admin_options a:hover
{
	background-color: lightyellow;
}
