/*
	This file contains all style for the jqTransfrom.js plugin. This style is necessary 
	to create custom dark-gray skinned drop selects on custom widgets throughout the site
	(e.g. find a traffic school, find your clerk, etc.). Include this file into another 
	stylesheet using - @import url(jqtransform.css);

	Note: @import directives must be placed at the very top of a stylesheet.
*/
/*------------------------------------------------------------------------------------------------------------------
                                            WIDE DARK GRAY DROP SELECTS
------------------------------------------------------------------------------------------------------------------*/
.jqTransformSelectWrapper {
	width: 288px !important; /*cjs added*/
	position:relative;
	height: 38px !important; /*cjs added*/
	background: url(../images/contact/select_bg.png) no-repeat top left; /*cjs added*/
	float:left;
}
.jqTransformSelectWrapper div span {
	font-size: 12px;
	float: none;
	position: absolute;
	white-space: nowrap;
	height: 31px;
	line-height: 15px;
	padding: 12px 0 0 13px;
	overflow: hidden;
	cursor: pointer;
	color: white;
	width: 100% !important;
}
.jqTransformSelectWrapper  a.jqTransformSelectOpen {
	display: block;
	position: absolute;
	right: 0px;
	width: 31px;
	height: 31px;
	background: url(../images/forms/select_right.gif) no-repeat center center;
	display: none; /*cjs added*/
}
.jqTransformSelectWrapper ul {
	position: absolute;
	top: 30px;
	left: 0px;
	list-style: none;
	background-color: #FFF;
	border: solid 1px #CCC;
	display: none;
	margin: 0px;
	padding: 0px;
	height: 150px;
	overflow: auto;
	overflow-y: auto;
	z-index:10;
	width: 286px !important; /*cjs added*/
}
.jqTransformSelectWrapper ul a {
	display: block;
	padding: 5px;
	text-decoration: none;
	color: #333131; /*cjs added*/
	background-color: #FFF;
	font-size: 12px;
}
.jqTransformSelectWrapper ul a.selected {
	background: #EDEDED;
	color: #333131; /*cjs added*/ 
}
.jqTransformSelectWrapper ul a:hover, .jqTransformSelectWrapper ul a.selected:hover {
	background:#3582c4;
	color: #fff;
}

/*------------------------------------------------------------------------------------------------------------------
                                           NARROW DARK GRAY DROP SELECTS
------------------------------------------------------------------------------------------------------------------*/
/* for find your clerk selects */
form.find_clerk_number .jqTransformSelectWrapper {
	width: 187px !important; /*cjs added*/
	position:relative;
	height: 38px !important; /*cjs added*/
	background: url(../images/forms/clerk_select_bg.png) no-repeat top left; /*cjs added*/
	float:left;
}

/* for find your clerk selects */
form.find_state_info .jqTransformSelectWrapper {
	width: 187px !important; /*cjs added*/
	position:relative;
	height: 38px !important; /*cjs added*/
	background: url(../images/forms/clerk_select_bg.png) no-repeat top left; /*cjs added*/
	float:left;
}

/* for find your clerk selects */
form.contact_state_info .jqTransformSelectWrapper {
	width: 187px !important; /*cjs added*/
	position:relative;
	height: 38px !important; /*cjs added*/
	background: url(../images/forms/clerk_select_bg.png) no-repeat top left; /*cjs added*/
	float:left;
}


form.narrow .jqTransformSelectWrapper ul {
	position: absolute;
	top: 30px;
	left: 0px;
	list-style: none;
	background-color: #FFF;
	border: solid 1px #CCC;
	display: none;
	margin: 0px;
	padding: 0px;
	height: 150px;
	overflow: auto;
	overflow-y: auto;
	z-index:10;
	width: 185px !important; /*cjs added*/
}
/*------------------------------------------------------------------------------------------------------------------
                                   HIDE BROWSER RENDERED DEFAULT DROP SELECTS
------------------------------------------------------------------------------------------------------------------*/
.jqTransformHidden {display: none;}

/*------------------------------------------------------------------------------------------------------------------
                                                      CONDITIONS                    
------------------------------------------------------------------------------------------------------------------*/
