﻿body {
     height:100%;
     margin:0;
     padding:0;
}

.editor { background-color: #cfc; border: solid 1px #0f0; }

#editor-overlay {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background-image: url('../images/editor-background.png');
}

#editor-overlay #editor-outer {
	margin: 100px auto;
	background-color: #fff;
	border: 1px solid #000;
	padding: 10px;
}

.editable { position: relative; }
.editable .edit-header { position: absolute; right: 0; top: 0; }
.editable .edit-header a { display: block; background-color: #fff; color: #000; border: solid 1px #f00; padding: 2px 5px; font-size: 10px; }
.editable .edit-header a:hover { background-color: #ccf; color: #000; border-color: #00f; }

