/*
 * Common PHP Road classes
 */

.dashSeparator
{
	background: transparent url('../images/border_dashed_hor.gif') repeat-x bottom left;
	margin-bottom: 1.2em;
}


.clear
{
	clear: both;
}

.hidden
{
	display: none!important;
}

.invisible
{
	visibility: hidden!important;
}

/*
 * Size selectors
 */

.medium
{
	width: 300px;
}

.large
{
	width: 500px;
}

/*
 * Popup forms
 */

.overlay
{
	background-color: #000;
}

.popupForm
{
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background-color: #fff;
}

.popupLoading
{
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	width: 100px;
	height: 100px;
	background: #ddd url('../images/form_load_70x70.gif') no-repeat center center;
}

.popupForm h2
{
	-moz-border-radius-topright: 5px;
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-top-left-radius: 5px;
	padding: 0.5em 0.66em;
	color: #333;
	font-size: 1.5em;
	font-weight: normal;
	background: #ccc;
	border-bottom: 1px solid #aaa;
}

.popupForm .content
{
	padding: 1em;
}

.popupForm form
{
	position: relative;
}

/*
 * Simple list - list
 */

ul.simpleList
{
	font-size: 1.2em;
	line-height: 150%;
	padding-bottom: 0.9em;
}

ul.simpleList li
{
	display: block;
	color: #333;
	padding-bottom: 0.3em;
}

ul.checkboxes li label
{
	display: inline!important;
	font-size: 1em!important;
	font-weight: normal!important;
}

ul.checkboxes li input
{
	width: auto!important;
	margin-right: 0.5em;
	margin-top: 3px;
	margin-left: 0;
	float: left;
}

/*
 * Sortables
 */

ul.sortable li, ul.sortable li label
{
	cursor: pointer;
}

ul.sortable li.drag
{
	color: #F60;
}

/*
 * Search control
 */

div.searchControl
{
	position: relative;
	width: 250px;
	height: 20px;
}

div.searchControl .left
{
	display: block;
	position: absolute;
	background: transparent url(../images/search_left.png) no-repeat left top;
	width: 22px;
	left: 0;
	top: 0;
	height: 20px;
	text-indent: -10000em;
}

div.searchControl .right
{
	display: block;
	position: absolute;
	background: transparent url(../images/search_right_cancel.png) no-repeat left top;
	width: 17px;
	right: 0;
	top: 0;
	height: 20px;
	text-indent: -10000em;
	cursor: pointer;
}

div.searchControl.inactive .right
{
	background: transparent url(../images/search_right.png) no-repeat left top;
	cursor: default;
}

div.searchControl input
{
	border: none;
	outline: none;
	background: transparent url(../images/search_field_bg.gif) repeat-x left top;
	position: absolute;
	left: 22px;
	padding-top: 1px;
	font-size: 11px;
	width: 211px;
	height: 20px;
	color: #333!important;
}

div.searchControl.inactive input
{
	color: #999!important;
}