/*
 *
    * jQuery MultiComplete
    * =====================
    * Written by Tom Hallam
    * http://tomhallam.github.com/jQuery-Multicomplete/
    * Licenced with the Creative Commons Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) licence
    * See: http://creativecommons.org/licenses/by-sa/3.0/
 *
 */

.panel-multicomplete-results {
  background: none repeat scroll 0 0 #fff;
  border: 1px #ccc;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 2px 20px 10px #ccc;
  font-family: sans-serif;
  font-size: 13px;
  top: 67px;
  width: 40%;
  position: fixed;
  max-height: 600px;
  overflow: auto;
}

.panel-multicomplete-results .result {
    padding: 15px 5px 30px 0;
    border-bottom: 1px none #e7e7e7;
    display: block;
}

.panel-multicomplete-results .result:hover {
    background-color: #efefef;
    border-bottom: 1px solid #e7e7e7;
    border-radius: 2px;
    color: #000;
    padding: 15px 5px 30px 0;
}

.panel-multicomplete-results .result:last-child {
    border: none;
}

.panel-multicomplete-results .group {
    border-bottom: 1px solid #808080;
}

.panel-multicomplete-results .group:last-child {
    border: none;
}

.panel-multicomplete-results .group-title {
   color: #fff;
   float: left;
   font-size: 20px;
   padding: 15px;
   width: 100%;
   background: none repeat scroll 0 0 #041e42;
}

.panel-multicomplete-results .group-items {
    float: left;
    width: 100%;
}

.highlight {
    font-weight: bold;
}

/* UTILITIES */
.clearfix {
    clear: both;
}
.panel-no-results {
    font-size: 12px;
    min-height: 50px;
    padding: 15px;
}
.result .image {
	float: left;
	margin-right: 10px;
}
.result .image img {
	width: 40px;
	height: 40px;
	padding: 1px;
}
.result .meta {
	font-size: 11px;
	color: #666;
}
.result a {
	text-decoration: underline;
}
.result:hover {
	background-color: #f7f7f7;
}
.pointer{
	cursor: pointer;
}
.blue{
	color:#041e42;
	 font-size: 17px;
}
