﻿#toolbarcontainer
{
	position: fixed;
	height: 40px;
	width: 100%;
	z-index: 1000;
	left: 0;
	top: 0;
}

.start-edit
{
	width: 16px;
	height: 16px;
	display: block;
	background-image: url(../images/pencil-off.png);
}

.start-edit:hover
{
	background-image: url(../images/pencil.png);
}

.editable-wrap textarea,
.editable-wrap iframe,
.editable-wrap .edit-actions
{
	display: none;
}

.edit-actions
{
	font-size: 9pt;
	font-weight: bold;
}

.editable-wrap.editing textarea,
.editable-wrap.editing .edit-actions,
.editable-wrap.editing iframe
{
	display: block;
}

.editable-wrap.editing .editable,
.editable-wrap.editing .start-edit
{
	display: none;
}