/*!
 * This file is part of jQuery Select List (drop-down list) Plugin.
 * 
 * jQuery Select List (drop-down list) Plugin is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *  
 * jQuery Select List (drop-down list) Plugin is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *  
 * You should have received a copy of the GNU General Public License
 * along with jQuery Select List (drop-down list) Plugin.  If not, see <http://www.gnu.org/licenses/>.
 *
 */


/*
 * clase para el texto
 */
.selectListText {
	background : 'none';
	border : 0;
	color:#868686;
	font:normal normal normal 11px Tahoma, Geneva, sans-serif;
	line-height : 25px;
	margin-left:10px;
	width: 170px;
}

/*
 * Clase para el contenedor de las opciones
 */
.selectListOptions {
	background-color:#FFF;
	width:200px;
	z-index:50;
}

/*
 * Clase para la lista o ul que contiene las opciones
 */
.selectList_ul {
	list-style:none;
	list-style-position:inside;
	padding:0;
	margin:0;
}

/*
 * Estilo de cada opción
 */
.selectList_option {
	display:block;
	color:#868686;
	font:normal normal normal 11px Tahoma, Geneva, sans-serif;
	margin:5px 10px;
	outline:none;
	text-decoration:none;
}
.selectList_option:hover {
	color:#1a2239;
}