/*/////////////////////////////////////////////////////////////////////////////
// DL.Components, components.css
// @author ok
// $Id$
/////////////////////////////////////////////////////////////////////////////*/

/*/////////////////////////////////////////////////////////////////////////////
// COMPONENT.TOOLBAR
/////////////////////////////////////////////////////////////////////////////*/

.Component.Toolbar
{
}

.Component.Toolbar .Buttons
{
	list-style: none;
	margin: 0;
	padding: 0;
}

.Component.Toolbar .Buttons li
{
	float: left;
}

.Component.Toolbar.disabled .Buttons li
{
	opacity: 0.5;
	filter: alpha(opacity=50);
}


.Component.Toolbar .Buttons .Button a
{
	display: block;
}


/*/////////////////////////////////////////////////////////////////////////////
// COMPONENT.MODAL
/////////////////////////////////////////////////////////////////////////////*/

.Component.Modal
{
	position: absolute;
	z-index: 9000;
	left: 0;
	top: 0;
	background-color: #000;
	display: none;
	
	/* ohne diese Zuweisung flackert das Modal kurz im IE */
	filter: alpha(opacity=0);
	opacity: 0.0;
}


/*/////////////////////////////////////////////////////////////////////////////
// COMPONENT.*INPUT
/////////////////////////////////////////////////////////////////////////////*/

.Component.TextInput,
.Component.MaskInput,
.Component.SelectInput
{
}

.Component label.Label
{
	display: block;
	line-height: 18px;
}

.Component input.Input
{
	font-size: 14px;
	height: 18px;
	border-width: 1px;
	border-style: solid;
	margin: 0;
	background-color: #FFF;
	margin-right: 8px;
}

.Component label.invalid input
{
	border-color: red;
}

.Component.TextInput .ErrorMessage
{
	display: none;
}

.Component.TextInput .invalid .ErrorMessage
{
	color: white;
	border: 1px solid darkred;
	background: red;
	display: inline;
	padding: 2px 8px 2px 24px;
	line-height: 18px;
	background: red url(/se_data/global/gfx/gui/components/common/bg_error.png) no-repeat 4px center;
	font-weight: bolder;
	white-space: nowrap;
}


/*/////////////////////////////////////////////////////////////////////////////
// COMPONENT.SLIDER
/////////////////////////////////////////////////////////////////////////////*/

.Component.Slider div
{
	height: 24px;
}

.Component.Slider .Rail
{
	cursor: pointer;
	background: url('/se_data/global/gfx/gui/components/slider/rail_middle.png') repeat-x center;
	height: 24px;
	
	/* ie fix */
	position: relative;
	margin: 0 6px;
}

.Component.Slider .RailLeft
{
	width: 12px;
	height: 24px;
	left: -6px;
	top: 0;
	position: absolute;
	background: url('/se_data/global/gfx/gui/components/slider/rail_left.png') no-repeat left center;
}

.Component.Slider .RailRight
{
	width: 12px;
	height: 24px;
	right: -6px;
	top: 0;
	position: absolute;
	background: url('/se_data/global/gfx/gui/components/slider/rail_right.png') no-repeat right center;
}

.Component.Slider .Dragger
{
	width: 24px;
	height: 24px;
	background: url('/se_data/global/gfx/gui/components/slider/dragger.png') no-repeat center;
	cursor: move;
	position: absolute;
	top: 0px;
	left: 0px;
}
.Component.Slider .Indicator
{
	display: none;
	width: 32px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	background-color: silver;
	color: white;
}

* html .Component.Slider .RailLeft
{
	background: url('/se_data/global/gfx/gui/components/slider/rail_left.gif') no-repeat left center;
}

* html .Component.Slider .RailRight
{
	background: url('/se_data/global/gfx/gui/components/slider/rail_right.gif') no-repeat right center;
}

* html .Component.Slider .Dragger
{
	background: url('/se_data/global/gfx/gui/components/slider/dragger.gif') no-repeat right center;
}
