
/**
 * multi-selectbox
 */
.multi-selectbox {
  float: left;
}
.multi-selectbox h4 {
  cursor: pointer;
  font-weight: normal;
  display: inline-block;
  padding: 9px 30px 0 8px;
  color: #EBEBEB;
  height: 30px;
  min-width: 130px;
  margin-top: 5px;
  /*background: white;*/
  border: 1px solid #808080;
  position: relative;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding;
          background-clip: padding-box;
}
.multi-selectbox h4:hover {
  background-color: rgba(255,255,255,0.2);

}
.multi-selectbox>div {
  position: relative;
}
.multi-selectbox ul {
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  width: 130px;
  list-style: none;
  cursor: pointer;
  box-shadow: 0 0 5px #222222;
}
.multi-selectbox ul li {
  padding: 5px 10px 5px 26px;
  line-height: 120%;
}
.multi-selectbox ul li.selected {
  color: #333;
  font-weight: bold;
}


/**
 * starrating
 */
.starrating-wrapper {
  display: inline-block;
  height: 28px;
  width: 123px;
  margin-top: 5px;
  /*background: rgba(255,255,255,0.3);*/
  /*border: 1px solid #808080;*/
  position: relative;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding;
          background-clip: padding-box;
}
.starrating-box {
  position: absolute;
  width: 85px;
  height: 16px;
  /*left: 0px;*/
  top: 7px;
}
.starrating-box:after {
  /*background-position: -164px -0px;*/
  background-position: -164px -141px;
  /*width: 103px;*/
  width: 100px;
  padding-top: 16px;
  left: 0;
  top: 0;
}
.starrating-star ,
.starrating-control {
  position: absolute;
  top: 0;
  left: 0;
  width: 103px;
  height: 16px;
}
.starrating-star {
  overflow: hidden;
  width: 0;
  height: 16px;
}
.starrating-star:after {
  /*background-position: -164px -16px;*/
  background-position: -164px -125px;
  /*width: 103px;*/
  width: 100px;
  padding-top: 16px;
  left: 0;
  top: 0;
}
.starrating-control {
}
.starrating-control span {
  width: 17px;
  height: 16px;
  float: left;
  cursor: pointer;
}

/**
 * placeholder
 */
.placeholder {
  color: #999;
  cursor: text;
}
/**
 * search sugguestions
 */
.search-suggestion-root {
  position: absolute;
  top: 43px;
  left: 0;
  background: #222;
  background: rgba( 0, 0, 0, .85 );
  width: 180px;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding;
          background-clip: padding-box;
}
.search-suggestion-list {
  list-style: none;
  padding: 6px 6px;
}
.search-suggestion-list li {
  color: #eee;
  padding: 5px 6px;
  white-space: nowrap;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  text-overflow: ellipsis;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding;
          background-clip: padding-box;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.search-suggestion-list li.active {
  background: #44aadd;
  color: white;
}

/**
 * scroller
 */
.scroller-backpane {
  position: absolute;
  top: 5px;
  right: 2px;
  width: 6px;
  bottom: 5px;
}
.scroller-frontpane {
  position: absolute;
  width: 6px;
  top: 0;
  left: 0;
  background: #444;
  background: rgba( 0, 0, 0, .5 );
  opacity: 0;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  -webkit-transition: opacity 0.3s ease-out; 
     -moz-transition: opacity 0.3s ease-out; 
       -o-transition: opacity 0.3s ease-out; 
          transition: opacity 0.3s ease-out;
}
.ipad .scroller-frontpane {
  opacity: 1;
}
.scroller-root:hover .scroller-frontpane {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-out; 
     -moz-transition: opacity 0.3s ease-out; 
       -o-transition: opacity 0.3s ease-out; 
          transition: opacity 0.3s ease-out;
}


/**
 * clusterer
 */
.clusterer-debug-div {
  position: absolute;
  background: rgba( 0, 0, 0, .1 );
  cursor: pointer;
  border: 2px solid #dee;
}
.clusterer-debug-div:hover {
  border-color: #c13;
}
.clusterer-debug-div div {
  font-size: 20px;
  color: #333;
  text-align: center;
  width: 100%;
  padding-top: 40%;
  display: block;
}
.clusterer-root {
  position: absolute;
  background: rgba( 0, 0, 0, .5 );
  cursor: pointer;
}
.clusterer-root ,
.clusterer-root div {
  -webkit-border-radius: 1000px;
          border-radius: 1000px;
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding;
          background-clip: padding-box;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;

}
.clusterer-root div {
  width: 100%;
  height: 100%;
  background: #44aadd;
  color: white;
  font-family: Helvetica, Arial, sans-serif;
  text-align: center;
  font-weight: bold;
}
.clusterer-root:hover div {
  background: #3399cc;
}


/**
 * overlay
 */
.overlay-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba( 0, 0, 0, .5 );
}
.overlay-root {
  position: fixed;
  top: 5%;
  left: 5%;
  right: 5%;
  bottom: 5%;
  background: white;
  
  -webkit-border-radius: 4px;
          border-radius: 4px;
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding;
          background-clip: padding-box;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .3);
          box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, .3);
}
.quicksearch {}
.quicksearch .header {
  margin: 0 15px;
  position: relative;
}
.quicksearch .header h2 {
  font-weight: bold;
  cursor: default;
  font-size: 15px;
  padding-top: 15px;
  height: 25px;
  border-bottom: 1px solid #ccc;
}
.quicksearch .header span.close {
  position: absolute;
  top: 15px;
  right: 0;
  cursor: pointer;
}
.quicksearch .header ul {
  position: absolute;
  left: 200px;
  top: 2px;
  height: 40px;
  list-style: none;
}
.quicksearch .header li {
  float: left;
  height: 25px;
  padding: 0 30px;
  padding-top: 18px;
  cursor: pointer;
  
  -webkit-border-top-left-radius:  2px;
  -webkit-border-top-right-radius: 2px;
     -moz-border-radius-topleft:   2px;
     -moz-border-radius-topright:  2px;
          border-top-left-radius:  2px;
          border-top-right-radius: 2px;
}
.quicksearch .header li.active {
  background: white;
  border: 1px solid #ccc;
  border-bottom: 0 none;
  font-weight: bold;
}
.quicksearch .inner {
  position: absolute;
  top: 41px;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px;
}
/** MRT **/
.quicksearch .display {
  width: 100%;
  height: 100%;
  overflow: auto;
  position: relative;
}
.quicksearch .map {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.quicksearch .map .background {
  position: absolute;
  top: 0;
  left: 0;
}
.quicksearch .map a {
  position: absolute;
  cursor: pointer;
  
  -webkit-border-radius: 20px;
          border-radius: 20px;
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding;
          background-clip: padding-box;

}
/** UNI **/
.quicksearch .uni-box {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.quicksearch .uni-box .tab {
  color: #333;
  cursor: pointer;
  width: 180px;
  float: left;
  list-style: none;
  line-height: 150%;
}
.quicksearch .uni-box .tab li{
  padding:2px;
}
.quicksearch .uni-box .tab li.active {
  background:#999;
  color: #FFF;
  font-weight: bold;
}
.quicksearch .uni-box .content {
  margin-left: 200px;
  line-height: 150%;
}
.quicksearch .uni-box .content span {
  cursor: pointer;
  color: #c23e29;
}
/** HSR **/
.quicksearch .hsr-box {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.quicksearch .hsr-box ul {
  list-style: none;
  padding-left: 35px;
}
.quicksearch .hsr-box li {
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  background: #999;
  color: white;
  border: 2px solid #ee6611;
  text-align: center;
  width: 250px;
  padding: 15px 0;
  margin-bottom: 10px;
  
  -webkit-border-radius: 5px;
          border-radius: 5px;
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding;
          background-clip: padding-box;

}

/**DIS**/
/** UNI **/
.quicksearch .dis-box {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.quicksearch .dis-box .tab {
  color: #333;
  cursor: pointer;
  width: 180px;
  float: left;
  list-style: none;
  line-height: 150%;
}
.quicksearch .dis-box .tab li{
  padding:2px;
}
.quicksearch .dis-box .tab li.active {
  background:#999;
  color: #FFF;
  font-weight: bold;
}
.quicksearch .dis-box .content {
  margin-left: 200px;
  line-height: 150%;
}
.quicksearch .dis-box .content span {
  cursor: pointer;
  color: #c23e29;
}
/**
 * Send To Friends
 */
.sendtofriends-root {
  position: relative;
  padding: 0 15px;
}
.sendtofriends-root h4 {
  font-weight: bold;
  cursor: default;
  font-size: 15px;
  padding-top: 15px;
  height: 25px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 25px;
}
.sendtofriends-root .close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.sendtofriends-root input[type=text] {
  width: 100%;
  height: 30px;
  margin: 0;
  padding: 0 6px;
  border: 1px solid #336699;
  color: #333;
  
  -webkit-border-radius: 2px;
          border-radius: 2px;
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding;
          background-clip: padding-box;
  
  font-size: 1em;
  background-color: #eee;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
  background-image: -webkit-linear-gradient(top, #f5f5f5, #e8e8e8);
  background-image:    -moz-linear-gradient(top, #f5f5f5, #e8e8e8);
  background-image:      -o-linear-gradient(top, #f5f5f5, #e8e8e8);
  background-image:         linear-gradient(to bottom, #f5f5f5, #e8e8e8);
/*  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#e8e8e8');*/
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, .3), inset 0px 1px 1px 0px rgba(255, 255, 255, .9);
          box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, .3), inset 0px 1px 1px 0px rgba(255, 255, 255, .9);

}

/**
 * search tip close
 */
.searchCloseTip {
  position: absolute;
  left: 355px;
  top: 44px;
  color: #be252c;
  background: rgba( 255, 255, 255, 1 );
  box-shadow: 2px 2px 5px rgba(0,0,0,.5);
  z-index: 999;
  padding: 20px;
  
  -webkit-border-radius: 4px;
          border-radius: 4px;

}
.searchCloseTip i {
  position: absolute;
  left: 104px;
  top: -6px;
  width: 12px;
  height: 6px;
}
.searchCloseTip i:after {
  background-position: -48px -52px;
  width: 12px;
  padding-top: 6px;
  right: 0;
  top: 0;
}
