/**
 * controls.css
 *
 * This CSS file styles a control element for scroller.
 *
 * $Id: controls.css,v 1.2 2009/12/05 04:42:35 jmuller Exp $
 */
#controls
{
	display:      none;

	background:   white;
	border:       1px solid #305535;

	font-family:  Arial;
	font-size:    10px;

	margin-right: 15px;
	padding:      0 3px;

	position:     absolute;
	bottom:       0;
	right:        0;

	cursor: default;
}

#controls *:hover
{
	color: #f871a8;
}

#controls *
{
	cursor: pointer;
	color: #305535;
}

#controls *.disabled
{
	color: gray;
}

#controls *#stop::before
{
	content: "Pause";
}

#controls *#play::before
{
	content: "Play";
}

#controls *#prev::before
{
	content: "Prev";
}

#controls *#next::before
{
	content: "Next";
}

#controls *.separator
{
	cursor: default;
}

#controls *.separator:hover
{
	color: #305535;
}

#controls *.separator::before
{
	content: '|';
}
/*
 * $Log: controls.css,v $
 * Revision 1.2  2009/12/05 04:42:35  jmuller
 * Add separator.
 *
 * Revision 1.1  2009/12/05 03:54:49  jmuller
 * initial commit.
 *
 */

