@charset "UTF-8";

.editMode {
	background-color: black;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1110;
	opacity: 0.8;
	display: -webkit-box;
   -webkit-box-orient:vertical;
}

.editMode_describe {
    padding: 15px;
    color: white;
}
.editMode_data{
    -webkit-box-flex: 1;
    padding: 15px;
}
.editMode_data ul{
    border-top: 1px solid white;
	list-style-type: none;
	width: 100%;
	margin: 0px;
    padding: 0px;
    margin-bottom: 6px;
}
.editMode_data li{
	height:30px;
	line-height:30px;
	width: auto;
	margin: 0px 5px 0px 0px;
	padding: 0px;
}

.editMode_data li span{
    color: white;
    margin-right: 15px;
}

.editModeBtn {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	margin: 0px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: 14px/100% Arial, Helvetica, sans-serif;
    font-size: 12px;
    padding: 5px 16px;
}

.editModeBtn:hover {
	text-decoration: none;
}

.editModeBtn:active {
	position: relative;
	/* top: 1px; */
}
.editModeBtn_green {
    color: #FFFFFF;
    border: solid 1px #1D7B97;
    background: #1D7B97;
}
.editModeBtn_green:hover {
	background: #054052;
	background: -webkit-gradient(linear, left top, left bottom, from(#1d7b97),
		to(#054052));
	background: -moz-linear-gradient(top, #1d7b97, #054052);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1d7b97',
		endColorstr='#054052');
}
.editModeBtn_green:active {
	background: -webkit-gradient(linear, left top, left bottom, from(#054052),
		to(#1d7b97));
	background: -moz-linear-gradient(top, #054052, #1d7b97);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#054052',
		endColorstr='#1d7b97');
}
.editModeBtn_red {
    color: #FFFFFF;
    border: solid 1px #F55757;
    background: #F55757;
}
.editModeBtn_red:hover {
	background: #c72a2a;
	background: -webkit-gradient(linear, left top, left bottom, from(#F55757),
		to(#c72a2a));
	background: -moz-linear-gradient(top, #c72a2a, #F55757);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F55757',
		endColorstr='#c72a2a');
}

.editModeBtn_red:active {
	background: -webkit-gradient(linear, left top, left bottom, from(#c72a2a),
		to(#F55757));
	background: -moz-linear-gradient(top, #c72a2a, #F55757);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c72a2a',
		endColorstr='#F55757');
}