/* ----------------------------------------------------------------
 * Base frame
 * ---------------------------------------------------------------- */

body {
	margin: 0px;
	padding: 0px;
	overflow: hidden;
	position: fixed;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
}

#base_sitelogo {
	background-image: url("sitelogo_b.png");
	background-repeat: repeat-x;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 92px;
	z-index: 0;
}
#base_sitelogo div{
	background-image: url("sitelogo.png");
	background-repeat: no-repeat;
	width: 311px;
	height: 92px;
}

#base_outboundlinks {
	position: absolute;
	top: 20px;
	right: 8px;
	width: auto;
	height: auto;
	font-size: 12px;
	z-index: 1;
}
#base_outboundlinks a {
	color: #555;
}

#base_msg {
	display: none;
	position: absolute;
	color: red;
	font-size: 12px;
	font-weight: bold;
	left: 0px;
	top: 70px;
	width: 100%;
	height: 12px;
	text-align: center;
	overflow: hidden;
	z-index: 1;
}

#base_app_frame {
	position: absolute;
	top: 90px;
	left: 4px;
	right: 4px;
	bottom: 20px;
	overflow: auto;
	z-index: 1;
}

#base_footer {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 14px;
	padding-top: 2px;
	overflow: hidden;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	color: white;
	background-color: #444444;
}

/* ----------------------------------------------------------------
 * Page view
 * ---------------------------------------------------------------- */

.page_frame {
	width: 100%;
	height: 100%;
	overflow: auto;
	font-size: 12px;
}

.page_append {
	padding: 1em 16px;
	border-bottom: dotted 2px #99aa88;
	color: gray;
	font-size: 16px;
	font-weight: bold;
}

.page_frame .drag_on {
	border-top: double 6px blue;
}

/* ----------------------------------------------------------------
 * Fragment view
 * ---------------------------------------------------------------- */

.fragment_frame {
	border-bottom: dotted 2px #99aa88;
	overflow: hidden;
}

.fragment_layout {
	width: 100%;
}

.fragment_layout td {
	vertical-align: top;
}

.fragment_handle {
	width: 20px;
	text-align: center;
	background-color: #99aa88;
	padding: 2px 0px 16px 0px;
}

.fragment_content {
	padding: 4px 8px;
}

/* ----------------------------------------------------------------
 * Fragment edit form
 * ---------------------------------------------------------------- */

.fragment_edit {
	margin: 0px;
	padding: 0px;
}

.fragment_edit table {
	margin: 0px;
	padding: 0px;
	width: 100%;
	border-spacing: 4px; /* IE6: using cellSpacing attribute instead. */
}

.fragment_edit tr,
.fragment_edit td {
	margin: 0px;
	padding: 0px;
	font-size: 12px;
}

.fragment_edit .label {
	width: 1px;
	white-space: pre;
	padding-right: 4px;
	vertical-align: middle;
}

.fragment_edit .edit_area {
	background-color: #F8F8F0;
	border: inset 1px #CCB;
	padding: 1px 2px 1px 4px;
}

.fragment_edit .edit_area textarea,
.fragment_edit .edit_area input {
	margin: 0px;
	padding: 0px;
	border: none;
	width: 100%;
	background-color: #F8F8F0;
	font-size: 12px;
}

.fragment_edit .edit_area textarea {
	height: 20em;
}

.fragment_edit .buttons {
	text-align: right;
}

.fragment_edit .buttons input {
	margin: 0px 0px 0px 1em;
	width: 80px;
	font-size: 12px;
}

/* ----------------------------------------------------------------
 * Page Contents
 * ---------------------------------------------------------------- */

.fragment_content {
	font-size: 12px;
	line-height: 1.5;
}

.fragment_content h1 {
	margin: 0.6em 0px 1em 0px;
	padding: 0px;
	color: #444444;
	font-size:  1.5em;
	font-weight: bold;
	line-height: 1.2;
	border-bottom: double 5px #444444;
}

.fragment_content h2 {
	margin: 0.6em 0px 1em 0px;
	padding: 0px;
	color: #444444;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 1.2;
	border-bottom: solid 1px #444444;
}

.fragment_content h3 {
	margin: 0.6em 0px 1em 0px;
	padding: 0px;
	color: #444444;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.2;
}

.fragment_content ul {
	list-style-type: disc;
	margin: 1em 0px 1em 3em;
}

.fragment_content ol {
	list-style-type: decimal;
	margin: 1em 0px 1em 3em;
}

.fragment_content p {
	margin: 1em 0px;
}

.fragment_content em {
	font-style: italic;
}

.fragment_content strong {
	font-weight: bold;
}

.fragment_content blockquote {
	margin: 1em;
	padding: 0px 1em;
	border: dashed 1px #444444;
}

.fragment_content pre {
	margin: 1em;
	padding: 0.5em;
	overflow: auto;
	border: solid 1px gray;
	background-color: #eee;
}

.fragment_content a:link {
	color: #004488;
	text-decoration: none;
}

.fragment_content a:visited {
	color: #444488;
	text-decoration: none;
}

/* ----------------------------------------------------------------
 * Import / Export dialog
 * ---------------------------------------------------------------- */

.export_frame {
	width:   100%;
	height:  100%;
	border:  none;
	margin:  0px;
	padding: 0px;
}

.import_frame {
	padding: 4px;
}

.import_text {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font-size: 12px;
}

.import_btn {
	margin: 4px auto 0px auto;
}

/* ----------------------------------------------------------------
 * Debug
 * ---------------------------------------------------------------- */

.page_log {
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: none;
	font-size: 12px;
}
