/*
* Hotspot
* 
*/
.HotspotPlugin_Hotspot {
	height: 10px;
	width: 10px;
	position: absolute;
	
	cursor: pointer;
	z-index: 200;
	margin-left: -5px;
	margin-top: -5px;
}
.HotspotPlugin_Hotspot.dot {

	background-color: #ff9901;
	
	border-radius: 50%;

}

.HotspotPlugin_Hotspot.crossdot {

	background: #ff9901;
	background-image:url(./images/cross.gif);
	background-repeat: no-repeat;
	background-position: center center;
	border-radius: 50%;

}

.HotspotPlugin_Hotspot.gps {
	width:14px;height:14px;
	margin-left:-7px;margin-right:-7px;
	background-color:none;
	background-image:url(./images/gps.png);
	background-repeat:no-repeat;
	background-position:top left;
}

/*
* Hotspot content
* 
*/
.HotspotPlugin_Hotspot > div {
	background: #FEFEFE;
	border:1px solid #e0e0e0;
	width: 200px;
	height: 120px;
	margin: -120px -100px;
	border-radius: 4px;
	overflow: hidden;
	font-size: 10px;
	display:none; /* Required */
}
.HotspotPlugin_Hotspot:hover
{
	z-index:240;
}
.HotspotPlugin_Hotspot:hover > div {
	display: block; /* Required */
	
}
.HotspotPlugin_Hotspot > div > .Hotspot_Title {
	background: #EEE;
	height: 30px;
	font-weight: bold;
	padding: 5px;
}
.HotspotPlugin_Hotspot > div > .Hotspot_Title > .remove {
	float:right;font-size:12px;cursor:pointer;
}

.HotspotPlugin_Hotspot > div > .Hotspot_Message {
 	margin-top: 2px;
	padding: 4px 10px;
	height:auto;
	overflow-y: auto;
}
.HotspotPlugin_Hotspot_Hidden {
	display: none!important;
	visibility: hidden!important;
	z-index:180;
}

/*
* Hotspots immediately after creation - admin-mode
* 
*/
.HotspotPlugin_Hotspot_Unsaved {
	background: #4E6FF3;
}

/*
* Overlay used in the admin-mode
* 
*/
span.HotspotPlugin_Overlay {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.1);
	top: 0px;
	left: 0px;
	cursor:crosshair;
}
span.HotspotPlugin_Overlay > p {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.4);
	margin-top: 0px;
	padding: 20px;
	text-align: center;
}

/*
* Action buttons - `admin` mode
* 
*/
button.HotspotPlugin_Save,button.HotspotPlugin_Output ,
button.HotspotPlugin_Remove,
button.HotspotPlugin_Send {
	position: absolute;
	bottom: -35px;
	color: #fff;
	display: inline-block;
	padding: 4px 6px;
	font-size: 14px;
	text-align: center;
	border-radius: 4px;
}

button.HotspotPlugin_Save {
	left: 0px;
	background-color: #5cb85c;
	display:none;
}

button.HotspotPlugin_Output {
	left:80px;
	background-color: #5cb85c;
}

button.HotspotPlugin_Remove {
	left: 180px;
	background-color: #d9534f;
}
button.HotspotPlugin_Send {
	left: 280px;
	background-color: #5bc0de;
}

#codebox {
	margin-top:50px;
	width:100%;
	height:200px;
}