/**
 * 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: 0.3rem 0.3rem 0;
	position:relative;
	min-height:39px;
	margin:0;
	background:#fff;
}
.multiselect-wrapper:hover {
	outline: none;
	border: 1px solid #d7a561;
	-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);
	border-top: 1px solid #ccc;
	list-style-type:none;
	margin-left: 0;
}
.multiselect-wrapper li{
	margin:0;
	padding:3px 5px;
}
.multiselect-wrapper li:hover{
	background:#eee;
	cursor:pointer;
}
.multiselect-wrapper	span.choice{
	display:inline-block;
	background: #d7a560;
	border: 1px solid #d7a561;
	color:#fff;
	font-size:0.875rem;
	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;
}
.profession-admin .multiselect-wrapper {
	min-height: 31px;
	width: 300px;
}
.profession-admin .multiselect-wrapper ul{
	list-style: none !important;
	margin: 0 !important;
}
