/**
 * ------------------------------------------------------------------------
 * JA Image Hotspot Module for Joomla 2.5 & 3.1
 * ------------------------------------------------------------------------
 * Copyright (C) 2004-2011 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
 * @license - GNU/GPL, http://www.gnu.org/licenses/gpl.html
 * Author: J.O.O.M Solutions Co., Ltd
 * Websites: http://www.joomlart.com - http://www.joomlancers.com
 * ------------------------------------------------------------------------
 */

.jai-map-container {
  display: inline-block;
  max-width: 100%;
  position: relative;
}

.jai-map-container img {
  max-width: 100%;
}

.jai-map-container .point {
  background: url(../images/point-bg.png) no-repeat left top;
  height: 29px;
  position: absolute;
  width: 17px;
  z-index: 2;
}

.jai-map-container .point  span.hide {
  display: none;
}

.jai-map-container .point:hover,
.jai-map-container .point:focus,
.jai-map-container .point:active {
  overflow: none;
  text-decoration: none;
}

.hidden {
  display: none;
}

.cd-dropdown,
.cd-select {
  display: block;
  min-width: 180px;
  position: relative;
}

.cd-dropdown > span {
  background: #fff;
  color: #01a3d4;
  cursor: pointer;
  display: inline-block;
  min-width: 180px;
  padding: 5px 0 5px 0;
  position: relative;
  text-indent: 10px;
}

.cd-dropdown > span:after {
  background: #06b8ed;
  color: #fff;
  content: '\25BC';
  font-size: 12px;
  margin-left: 10px;
  padding: 5px 8px 5px 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
}

.cd-dropdown.cd-active > span:after {
  content: '\25B2';
}

.cd-dropdown ul {
  background: #222;
  display: block;
  list-style-type: none;
  margin: 0;
  min-width: 180px;
  padding: 0;
}

.cd-dropdown ul li {
  display: block;
}

.cd-dropdown ul li span {
  color: #666;
  cursor: pointer;
  display: inline-block;
  font-weight: normal;
  padding: 4px 14px;
}

.cd-dropdown > span,
.cd-dropdown ul li span {
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

.cd-dropdown > span span[class^="icon-"],
.cd-dropdown > span span[class*=" icon-"]{
  padding: 0 30px 0 45px;
}

.cd-dropdown ul {
  position: absolute;
  top: 2px;
}

.cd-dropdown ul li {
  position: absolute;
  width: 100%;
}

.cd-active.cd-dropdown > span {
  color: #01a3d4;
}

.cd-active.cd-dropdown ul li span {
  -moz-transition: all 0.2s linear 0s;
  -ms-transition: all 0.2s linear 0s;
  -o-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  -webkit-transition: all 0.2s linear 0s;
}

.cd-active.cd-dropdown ul li:hover span,
.cd-active.cd-dropdown ul li span:hover {
  color: #fff;
}

/* POSITION OF DROPDOWN
--------------------------------------- */
.jai-map-wrap {
  position: relative;
}

.jai-map-wrap .top-left,
.jai-map-wrap .top-right,
.jai-map-wrap .bottom-left,
.jai-map-wrap .bottom-right {
   float: left;
   width: 100%;
}

/* Top right */
.jai-map-wrap .top-right .cd-dropdown {
  float: right;
}

/* Bottom right */
.jai-map-wrap .bottom-right .cd-dropdown {
  float: right;
}

/* Middle left */
.jai-map-wrap .middle-left {
  left: 0;
  margin-top: -15px;
  position: absolute;
  top: 50%;
}

/* Middle right */
.jai-map-wrap .middle-right {
  margin-top: -15px;
  position: absolute;
  right: 0;
  top: 50%;
}