/**
 * jQuery NiceMultiSelect is a jquery plugin in javascript to render multi select 
 * a better way and more user friendly
 * Copyright (C) 2012 Julien LA VINH
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy 
 * of this software and associated documentation files (the "Software"), to deal 
 * in the Software without restriction, including without limitation the rights 
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 
 * of the Software, and to permit persons to whom the Software is furnished to do 
 * so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 
 * SOFTWARE.
 */
.multiselect-wrapper{
	border:1px solid #ccc;
	padding:4px 4px 3px;
	position:relative;
	min-height:20px;
	line-height:20px;
	/*width:500px;*/
	margin:0;
	font-size:14px;
	background:#fff;
	/*font-family:Arial;*/
}
.multiselect-wrapper:hover {
	outline: none;
	border: 1px solid #4d90fe;
	-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
	-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
	box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
	margin:0;
}
.multiselect-wrapper	ul{
	display:none;
	position:absolute;
	z-index:100;
	top:0;
	left:0;
	background:#fff;
	-webkit-box-shadow:  0px 10px 10px 0px rgba(0, 0, 0, .6);
	box-shadow:  0px 10px 10px 0px rgba(0, 0, 0, .6);
	list-style-type:none;
}
.multiselect-wrapper li{
	margin:0;
	padding:3px 5px;
}
.multiselect-wrapper li:hover{
	background:#eee;
	cursor:pointer;
}
.multiselect-wrapper	span.choice{
	display:inline-block;
	background:#36f;
	border:1px solid #0290d5;
	color:#fff;
	font-size:.95em;
	margin:0 3px 2px 0;
	padding:3px .5em;
	cursor:pointer;
	-webkit-border-radius: 3px;
  border-radius: 3px;
}
.multiselect-wrapper li	span.textadd{
	color:#666;
	white-space:nowrap;
	display:inline-block;
}
