/* Editable Blocks */

.editable-block {
	position: relative;
}
.editable-block > .border {
	border: 0px dashed transparent;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	-o-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.editable-block:hover > .border {
	border: 1px dashed #666;
	top: -4px;
	right: -6px;
	bottom: -4px;
	left: -6px;
	
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.editable-block .text {
	min-height: 18px;
	position: relative;
	z-index: 2;
}
.editable-block > .buttons {
	height: 16px;
	background-color: #ffffff;
	position: absolute;
	z-index:3;
	top: -3px;
	right: 5px;
	opacity: 0;
	filter: alpha(opacity=0);
	padding: 2px 8px;
	border: 1px solid #e0e0e0;
	border-top: none;
	
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
	box-shadow: 0 1px 2px rgba(0,0,0,0.1);
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
	-o-transition: opacity 0.2s ease-in-out;
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}
.editable-block > .buttons .icon {
	width: 16px;
	height: 16px;
	background-position: 0 0;
	display: block;
	float: left;
	margin-left: 6px;
	cursor: pointer;
}
.editable-block > .buttons .icon:hover {
	opacity: 0.6;
}
.editable-block > .buttons .icon:first-child {
	margin: 0;
}
.editable-block:hover > .buttons {
	opacity: 1;
	filter: alpha(opacity=100);
}

.super-line .editable-block .text {
	line-height: normal;
}
.super-line.type1 .editable-block .text {
	color: #024C85;
    font-size: 25px;
}
.super-line.type1 .editable-block .text .link {
	font-size: 13px;
	margin-left: 14px;
	font-weight: normal;
}
.super-line.type2 .editable-block .text {
	font-weight: bold;
	font-size: 18px;
	color: #024d87;
	overflow: hidden;
}
.super-line.type2 .editable-block .text .link {
	font-size: 14px;
	margin-left: 14px;
	font-weight: normal;
}
.super-line.type3 .editable-block .text {
	color: #024C85;
    font-size: 20px;
    font-weight: normal;
}
.super-line.type3 .editable-block .text .link {
	font-size: 13px;
	margin-left: 14px;
	font-weight: normal;
}
.super-line.type4 .editable-block .text {
	color: #024C85;
    font-size: 18px;
}
.super-line.type4 .editable-block .text .link {
	font-size: 13px;
	margin-left: 14px;
	font-weight: normal;
}


.edit-ico { background: url(../images/icons/edit.png) 0 0; }
.del-ico { background: url(../images/icons/remove.gif) 0 1px; }