/************************* CSS pre-parsed by easydb ************************/

/*******************************************************************************
* easydb core CSS
*******************************************************************************/

/* ZIP presentation includes: */
/* EASYDB_ZIP_FILE: img/ico-asset-error.png */
/* EASYDB_ZIP_FILE: img/ico-asset-error-small.png */
/* EASYDB_ZIP_FILE: img/ico-asset-missing.png */
/* EASYDB_ZIP_FILE: img/ico-asset-missing-small.png */
/* EASYDB_ZIP_FILE: tree.css */
/* EASYDB_ZIP_FILE: zoomer.css */
/* EASYDB_ZIP_FILE: flowplayer.css */
/* EASYDB_ZIP_FILE: tools.css */
/* EASYDB_ZIP_FILE: uploader.css */
/* EASYDB_ZIP_FILE: filemanager.css */
/* EASYDB_ZIP_FILE: debugger.css */
/* EASYDB_ZIP_FILE: filebrowser.css */

/* import core elements */
@import url("tree.css?1583331772");
@import url("zoomer.css?1583331772");
@import url("flowplayer.css?1583331772");
@import url("uploader.css?1583331772");
@import url("filemanager.css?1583331772");
@import url("tools.css?1583331772");
@import url("debugger.css?1583331772");

/* FIXME: this really doesn't belong here, but we need it for customrender */
@import url("filebrowser.css?1583331772");



/*******************************************************************************
* GENERAL
*******************************************************************************/

body.requesting,
body.requesting div,
body.requesting a,
body.requesting input,
body.requesting button,
body.requesting span,
body.requesting td {
    cursor: wait;
}

/* this box kicks in, if the page is not loaded after 1 second */
#delayBox {
	bottom: 10px;
	right: 10px;
	position: fixed;
	color: #999;
	font-size: 12px;
    padding: 2px 2px 2px 25px;
    height: 16px;
    background: url(img/processing_16.gif) #ffffff 2px center no-repeat;
	z-index: 1000;
}

/* The magic M$ fix for a dozen of layout bugs in IE6/7 */
div {
    zoom: 1;
}

/* clearance div */
.clearance {
    clear: both;
    height: 0px;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

/* feedback, error status */
.feedback,
.errorStatus {
    padding: 10px;
    font-weight: bold;
    color: #333333;
    background-color: #CCCCCC;
    text-align: left;
}
.feedback.hint {
    color: #000000;
    background-color: #ffe2af;
    padding: 5px;
    margin: 5px;
    font-weight: normal;
}
.feedback.error,
.feedback.warning,
.errorStatus { /* FIXME: legacy class */
    color: #FF3838;
    background-color: #FCD6D6;
}
.feedback.warning {
    background-color: #FFDC7F;
}
.feedback.status {
    background-color: #AFDFA7;
}

/* li in error output */
.feedback.error ul,
.feedback.warning ul {
    padding: 0px 0px 0px 20px;
    margin: 0px;
}

/* progress messages (e.g. for mini/standard/extended uploader) */
.processing {
    padding: 2px 2px 2px 25px;
    height: 16px;
    background: url(img/processing_16.gif) 2px center no-repeat;
}

/* focused elements */
body.browser-gecko *.focused {
    outline:dotted 1px #000000;
}




/*******************************************************************************
* LOGOS/IMAGES
*******************************************************************************/

/* PF logo */
#pfLogo {
	display: inline-block;
    width: 140px;
    height: 30px;
    background: url(img/pf_logo.png) no-repeat;
}



/*******************************************************************************
* ZOOMER DESIGN
*******************************************************************************/

/* legacy zoomer styling (FIXME: does this belong here??) */
.zoomButton {
}
.zoomButton table {
    border-spacing: 0px;
}
.zoomButton table td {
    padding: 0px;
}
.zoomButton .button {
    margin-left: 5px;
}

/* new simple zoomer info popup */
#simple-zoomer-info {
    position:absolute;
    bottom:20px;
    left:20px;
    z-index:10;
}



/*******************************************************************************
* PROGRESSBAR
*******************************************************************************/

/* progressbar design */
.Progressbar {
    color: #333333;
    padding: 5px;
}
.Progressbar .container {
    background: transparent;
    border: solid 1px #333333;
    height:20px;
    margin-bottom:5px;
}
.Progressbar .bar {
    background:#cccccc;
    width:0%;
    height:100%;
    line-height:20px;
}
.Progressbar .status {
    overflow:hidden;
    /*white-space:nowrap;*/
}
.Progressbar.process .status {  /* cant use '.Progressbar.processing' here due to fixed height in processing class */
    padding: 2px 2px 2px 25px;
    background: url(img/processing_16.gif) 2px 2px no-repeat;
}

/* progressbar in customrender */
body#customrender .Progressbar {
    width:400px;
}

/* progressbar in CSV import */
#csvProgress.Progressbar {
    width:400px;
    padding: 5px 0px;
}
#csvProgress.Progressbar div.container {
    border: solid 1px #aaaaaa;
}



/*******************************************************************************
* METADATA
*******************************************************************************/

/* expand/collapse "menu" */
.metadata .actions {
    margin-bottom: 5px;
}

/* groups */
.metadata .group {
}
.metadata .group .title {
    font-weight: bold;
    padding: 2px 0px 3px 4px;
    margin-bottom: 1px;
    border-bottom: solid 1px #cccccc;
}
.metadata .group .content {
    padding: 5px 0px 5px 20px;
}

/* hide/show content */
.metadata .group.expanded .content {
    display: block;
}
.metadata .group.collapsed .content {
    display: none;
}

/* key/value pairs */
.metadata span.key {
    float:left;
    width:250px;
    /*font-weight:bold;*/
    color: #666666;
    text-transform: none;
}
.metadata span.value {
    float:left;
    /*width:300px;*/
}
.metadata br {
    clear:both;
}



/*******************************************************************************
* OVERLAY DIALOG
*******************************************************************************/

/* outer dialog container */
.overlayDialog {
    font-size: 12px;
}

/* overlay (dialog background) */
.overlayDialog .overlay,
#uploadOverlay {
    background-color: #000000;
	opacity: 0.35;
	-moz-opacity: 0.35;
	-webkit-opacity: 0.35;
	filter:alpha(opacity=35);
}

/* dialog body (use to set width/height, border, background etc.) */
.overlayDialog .body {
    background: #eeeeee;
    border: 2px solid #666666;
    padding: 10px;
}

/* title row */
.overlayDialog .title {
    height: 20px;
    margin-bottom:5px;
    text-transform: uppercase;
    color: #333333;
    font-weight: bold;
    font-size: 11px;
}

/* text within title */
.overlayDialog .title .text {
    padding: 2px 0px;
}

/* dialog content area */
.overlayDialog .content {
}

/* buttons in dialog title */
.overlayDialog .title .buttons {
    position: absolute;
    right: 10px;
    top: 7px;
}
.overlayDialog .title .buttons button.close {
    width: 20px;
    height: 20px;
    padding: 0px;
    margin: 0px;
    border: none;
    outline: none;
    color: #000000;
}

/* buttons area */
#dialogContentButtons {
	padding-top: 5px;
    height: 30px;
/*
    position:absolute;
    bottom: 0px;
    right: 5px;
	*/
}



/*******************************************************************************
* ASSETS
*******************************************************************************/

/* outer div containing the whole asset */
div.asset {
}

/* output div, contains the img and short info */
div.asset div.output {
	position: relative;
	margin: 0px auto;
}
div.asset div.output a {
	display: block;
}
div.asset div.output img.basicimg {
	position: absolute;
	background: white url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAGElEQVQYV2N4DwX/oYBhgARgDJjEAAkAAEC99wFuu0VFAAAAAElFTkSuQmCC) repeat;
}

div.asset div.output .shortinfo {
	position: absolute;
	bottom: 10px;
	right: 10px;
	padding: 3px;
	color: #333333;
	background: #ffffff;
	cursor: default;
	border: solid 1px #cccccc;
}
div.asset div.output .shortinfo.hoverenabled {
	cursor: normal;
}
/*div.asset div.output:hover {
	outline: dotted 1px #000000;
}*/

/* nopreview div - used for state indicator icons (if no image is available) */
div.asset div.nopreview {
	background-repeat: no-repeat;
    background-position: center center;
}

div.div100{
	width: 100px;
	height: 100px;
}

div.asset div.stop-after-seconds-warning {
	position: absolute;
	top: 10px;
	left: 0px;
	right: 0px;
	text-align: left;
	padding: 3px;
	background-color: #fed4b7;
	display: inline-block;
	border: solid 1px #cccccc;
	font-weight: bold;
	-moz-box-shadow: 3px 3px 10px #333333;
	-webkit-box-shadow: 3px 3px 10px #333333;
    box-shadow: 3px 3px 10px #333333;
}


/* hover info div */
div.easHoverInfo {
	position: absolute;
	padding: 3px;
	color: #000000;
	background-color: #ffffff;
	border: solid 1px #cccccc;
	-moz-box-shadow: 3px 3px 10px #333333;
	-webkit-box-shadow: 3px 3px 10px #333333;
    box-shadow: 3px 3px 10px #333333;
	opacity: 0.9;
	text-align: right;
	z-index: 1002;
}
div.easHoverInfo span {
	display: block;
}

div.eas_pending {
	background-color: green;
}

div.eas_pending img {
	display:none;
}

span.eas-rotated {
	cursor: default;
}


/* fullscreen links */
div.fullscreen.zoomer a {
	position: absolute;
	left: 10px;
	bottom: 10px;
	z-index: 1000;
	width: 20px;
	height: 20px;
	background-image: url(img/ico-fullscreen-16.png);
	background-repeat: no-repeat;
	background-position: center center;
}

/* quality buttons */
/*
div.easoutput.buttonbox {
    position: absolute;
    right: 40px;
    top: 10px;
    height: 20px;
    text-align: right;
    z-index: 1000;
}
div.easoutput.buttonbox a.button {
    height: 20px;
    float: right;
}
*/
div.asset div.output a.quality {
    position: absolute;
    right: 0px;
    top: 10px;
    z-index: 1000;
    background: #999999;
    color: #ffffff;
    padding: 5px;
}
div.asset div.output a.quality:hover {
    background-color: #999999;
    text-decoration: none;
}

/* quality/resolution selection popup for video player */
#qualitySelectionPopup {
    position: absolute;
    background: #999999;
    color: #ffffff;
    padding: 5px;
    z-index: 1001;
}
#qualitySelectionPopup ul {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    list-style-type: none;
}
#qualitySelectionPopup ul li {
    color: #ffffff;
    cursor:pointer;
    padding: 2px 10px 2px 14px;
}
#qualitySelectionPopup ul li:hover {
    background: #ffffff;
    color: #000000;
}
#qualitySelectionPopup ul li.selected {
    color: #dddddd;
    cursor:default;
    background: url(img/ico-checkmark-10.png) no-repeat left;
}
#qualitySelectionPopup ul li.selected:hover {
    background-color: none;
}

/* extended info div */
div.asset div.extinfo {
	margin: 0px auto;
}

/* error/warning/state indicators */
div.asset.error {
	background: none;
}
div.asset.notice.empty div.nopreview {
	background-image: url('img/ico-asset-missing.png');
}
div.asset.warning.waiting div.nopreview {
	background-image: url('img/ico-asset-processing.png');
}
div.asset.warning.norights div.nopreview {
	background-image: url('img/ico-asset-norights.png');
}
div.asset.fileclass_unknown div.nopreview {
	background-image: url('img/ico-asset-unknown.png');
}
div.asset.fileclass_archive div.nopreview {
	background-image: url('img/ico-asset-archive.png');
}
div.asset.error div.nopreview {
	background-image: url('img/ico-asset-error.png');
}
div.asset.warning.waiting div.output .errortype {
    position: absolute;
    left: 0px;
	width: 100%;
	height: 100%;
    z-index:2;
    background: url('img/ico-asset-processing-thumbnail.png') no-repeat center center;
}
div.asset.small.warning.waiting div.output .errortype {
    background-image: url('img/ico-asset-processing-thumbnail-small.png');
}
div.asset.error.versionfailed div.output .errortype {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index:2;
    background: url('img/ico-asset-failed-thumbnail.png') no-repeat center center;
}
div.asset.small.error.versionfailed div.output .errortype {
    background-image: url('img/ico-asset-failed-thumbnail-small.png');
}


/* small versions of error/warning/state indicators */
div.asset.small.notice.empty div.nopreview {
    background-image: url('img/ico-asset-missing-small.png');
}
div.asset.small.warning.waiting div.nopreview {
	background-image: url('img/ico-asset-processing-small.png');
}
div.asset.small.warning.norights div.nopreview {
	background-image: url('img/ico-asset-norights-small.png');
}
div.asset.small.fileclass_unknown div.nopreview {
	background-image: url('img/ico-asset-unknown-small.png');
}
div.asset.small.fileclass_archive div.nopreview {
	background-image: url('img/ico-asset-archive-small.png');
}
div.asset.small.error div.nopreview {
	background-image: url('img/ico-asset-error-small.png');
}

/* div with fileclass info */
div.asset div.fileclass {
	position: absolute;
	bottom: 10px;
	right: 10px;
	z-index: 1001;
	border: solid 1px #cccccc;
}
div.asset div.fileclass.small {
	width: 24px;
	height: 24px;
}
/*
div.asset div.fileclass.big {
	width: 48px;
	height: 48px;
}
*/
div.asset.fileclass_image div.fileclass.small {
	background-image: url('img/ico-fileclass-image-24.png');
}
div.asset.fileclass_audio div.fileclass.small {
	background-image: url('img/ico-fileclass-audio-24.png');
}
div.asset.fileclass_video div.fileclass.small {
	background-image: url('img/ico-fileclass-video-24.png');
}
div.asset.fileclass_office div.fileclass.small {
	background-image: url('img/ico-fileclass-office-24.png');
}
div.asset.fileclass_vector2d div.fileclass.small {
	background-image: url('img/ico-fileclass-vector2d-24.png');
}
div.asset.fileclass_vector3d div.fileclass.small {
	background-image: url('img/ico-fileclass-vector3d-24.png');
}
div.asset.fileclass_unknown div.fileclass.small {
	background-image: url('img/ico-fileclass-unknown-24.png');
}
div.asset.fileclass_archive div.fileclass.small {
	background-image: url('img/ico-fileclass-archive-24.png');
}

/* move type icon up when in detail */
div.asset.fileclass_video.videoplayer div.fileclass.small {
    bottom: 35px;
}

/* messages */
div.asset div.message {
	position: absolute;
    left: 0px;
    top: 0px;
	z-index: 100;
	padding: 0px;
    min-width:100px;
    text-align: left;
}
div.asset div.message div.content {
	display: block;
	padding: 5px;
	background: #eeeeee;
	padding: 5px;
	cursor: default;
	border: solid 1px #999999;
    color: #333333;
	min-height: 20px;
}
div.asset div.message div.icon {
	float:left;
	width:20px;
    height:20px;
    margin-right:5px;
    background-color: #999999;
}
div.asset.notice div.message div.icon {
	background: #ffffff;
}
div.asset.warning div.message div.icon {
	background: #ffffaa;
}
div.asset.error div.message div.icon {
	background: #ff0000;
}

/* hide fileclass icon on error */
div.asset.notice div.fileclass,
div.asset.error div.fileclass,
div.asset.warning div.fileclass {
	display: none;
}



/*******************************************************************************
* MISC
*******************************************************************************/

#edit_useme_iframe {
    display:none;
}

/* padding for the naviation */
#navigation td.nav_prev {
	padding-left: 5px;
}
#navigation td{
	white-space: nowrap;
}

/* IE fix for option.disabled bug */
option.disabled {
    color: #999999;
	background-color: #ffffff;
}

/* clearance divs */
.clearance {
    clear: both;
    font-size: 0px; /* needed for IE!!! */
    line-height: 0px;
}

/* external editing button for TEXTAREA */
div.edittextarea-wrapper {
    position: relative;
}
div.edittextarea {
    position: absolute;
    right: 20px;
    top: 0px;
	width: 20px;
	height: 20px;
	background: url(img/ico_edit_16.png) no-repeat center center;
	border: solid 1px #aaaaaa;
	cursor: pointer;
}

/* external editing popup for edittextarea */
body.popup.edittextarea {
	background: #CCCCCC;
}
body.popup.edittextarea div.button {
	width: 100px;
	background-repeat: no-repeat;
	background-image: url(img/ico_save_16.png);
	background-position: 2px 2px;
	padding-left: 20px;
	margin: 3px;
}
body.popup.edittextarea button:hover {
	background-color: #999999;
	color: #ffffff;
}
body.popup.edittextarea textarea {
}

/* parms/adminattrs general */
table.parms td.label {
    width: 180px;
    vertical-align: top;
}
table.parms td.value input,
table.parms td.value textarea,
table.parms td.value select {
    width: 370px;
}

/* adminattrs editor */
div.attrseditor div.language {
    background: #cccccc;
    color: #333333;
    font-weight: bold;
    padding: 3px;
    margin-bottom: 3px;
}
div.attrseditor div.language span {
    font-weight: normal;
}
div.attrseditor table.adminattrs {
    margin-bottom: 15px;
}
div.attrseditor table.adminattrs td.label {
    width: 100px;
}
div.attrseditor table.adminattrs td.value {
    width: 400px;
}
div.attrseditor table.adminattrs td.value textarea {
    height: 150px;
}

/* "form blocker" div */
div.formBlocker {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10100;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    
}
div.formBlockerOpacity{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	
	background: #ffffff;
	opacity: 0.3;
	-moz-opacity: 0.3;
	-webkit-opacity: 0.3;
	filter:alpha(opacity=30);
}
div.formBlockerIconActive .formBlockerIcon{
	background: url("img/processing_16.gif") 3px center;
	background-repeat: no-repeat;
	min-width: 260px;
	
	position: fixed;
	z-index: 10;
	line-height: 16x;
	font-size: 14px;
	top: 50%;
	left: 50%;
	padding-left: 24px;

	-webkit-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	-moz-transform: translateY(-50%) translateX(-50%);
	-o-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);

	text-align: left;
	outline: none;
	background-color: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.3);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	outline: none;
	-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
}
/* detail: no read rights div */
div.detailNoReadRights {
    padding: 10px;
}

/* XML highlighting */
span.xmlcode span.node {
    color: #0000FF;
}
span.xmlcode span.tag,
span.xmlcode span.tagSingle,
span.xmlcode span.tagClose {
    color: #808000;
}
span.xmlcode span.attribute {
    color: #800080;
}
span.xmlcode span.attribute {
    color: #ff00ff;
}

/* loading div styling */
.loading_div {
    position:absolute;
    left:5%;
    top:10px;
    z-index:100;
    background-color:#999999;
    color: #FFFFFF;
    font-weight: bold;
    height: 16px;
    padding: 2px;
    width: 95%;
}

/* our javascript prompt work-around for IEs inability to show a prompt */
#easydb_prompt {
	width:210px;
}
#easydb_prompt div.prompt_err_msg {
	color: #dd0000;
	margin: 5px 0px 5px 0px;
}

#easydb_prompt_input {
    width:205px;
}

/* fullscreen image in omage_overlay.js */
div.fullscreen-image-overlay {
    background-color: #000000;
    opacity: 0.5;
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=50);
}
img.fullscreen-image {
    border: 3px solid #222222;
}

/* RTL (right-to-left) support for textareas and inputs */
textarea.rtl,
input.rtl {
    direction: rtl;
    unicode-bidi: bidi-override;
}

/* LIST grid */
ul.list,
ol.list,
ul.list li,
ol.list li {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}
ul.list.horizontal li {
    display: inline;
}

/* horizontal box table (used to align buttons and inputs) */
table.hbox {
    border-spacing: 0px;
}
table.hbox td {
    padding: 0px 2px 0px 0px;
}
table.hbox td:last-child,
table.hbox td.last {
    padding-right: 0px;
}
table.hbox-right td {
    padding: 0px 2px 0px 0px;
}
table.hbox td:first-child,
table.hbox-right td.first {
    padding-left: 0px;
}

/* ul version of hbox */
ul.list.hbox li {
    padding: 0px 2px 0px 0px;
}
ul.list.hbox li.last {
    padding:  0px 2px 0px 0px;
}
ul.list.hbox li .button {
    display: inline-block;
}
table.resultTable td, table.resultTableExtra td, table.editorTable td{
	vertical-align: top;
}


/*******************************************************************************
* POPUP MENU (e.g. print)
*******************************************************************************/

div.popup-menu {
    width: 150px;
    z-index:100;
    background: #ffffff;
    border: solid 1px #787878;
    padding: 5px 10px;
    -webkit-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}
div.popup-menu a {
    display: block;
    /*border-bottom: solid 1px #cccccc;*/
    padding: 5px 0px;
}
div.popup-menu a.last  {
    /*border-bottom: none;*/
}



/*******************************************************************************
* SEARCH (anything search-related)
*******************************************************************************/

/* status message above search result */
#search_title {
	padding: 5px 10px 5px 10px;
 	background-color: #e5e5e5;
}
#search_title table {
	width: 100%;
	border-spacing: 0;
}
div.search_result_deleted {
 	background-color: #ffffff;
}

/* search warning */
div.search-warning {
    padding: 10px;
    font-weight: bold;
    font-size: 12px;
}

div.search-message {
	color: #344b01;
    font-weight: bold;
    font-size: 12px;
}

/* search term highlighting */
span.search-term-highlight {
    color: #000000;
	background-color: #fee9b7;
}

/* searchfield info tooltip */
span.searchfield-tooltip {
    width: 16px;
    height: 12px;
	display:none;
    background: url(img/ico-hint-12.png) 0px 50% no-repeat;
}
span.searchfield-tooltip.focus {
	display:inline-block;
    cursor:pointer;
}
#searchfield-tooltip {
    width: 380px;
    max-height: 500px;
    z-index: 1010;
	-moz-box-shadow: 3px 3px 10px #333333;
	-webkit-box-shadow: 3px 3px 10px #333333;
    box-shadow: 3px 3px 10px #333333;
    overflow:auto;
}
#searchfield-tooltip span.headline {
    font-weight: bold;
}
#searchfield-tooltip ul {
    padding-left: 20px;
    list-style: none;
    padding-left: 5px;
}
#searchfield-tooltip table {
    border-collapse: collapse;
    margin: 15px 0px;
    border-top: solid 1px #eeeeee;
}
#searchfield-tooltip table td {
    border-bottom: solid 1px #eeeeee;
    vertical-align: top;
    padding: 3px 5px;
}
#searchfield-tooltip table td:first-child {
    white-space: nowrap;
    font-weight: bold;
}
#searchfield-tooltip a {
    display: inline;
}
#searchfield-tooltip div.extra-hint {
	margin-top: 20px;
	padding: 5px;
	background-color: #FFDC7F;
}

#searchfield-tooltip > div.x > a.x {
	position: absolute;
	right: 5px;
	padding: 0px;
}


/* hide searchfield tooltip in amdin area */
body.adminSearchBg span.searchfield-tooltip,
body.leftViewBg span.searchfield-tooltip {
    display: none;
}

/* styles for view/orderby/chunksize selectors in searchbar */
select.select-menu {
    width: 120px;
}
select.view-select {
    width: 100px;
}
select.orderby-select {
    width: 120px;
}
select.chunksize-select {
    width: 60px;
}



/*******************************************************************************
* MARK COLORS
*******************************************************************************/

/* mark color for singlelinks */
.popup .marked {
    background-color: orange;
    color: white;
}

/* changed input elements */
input.changed,
textarea.changed,
a.changed,
select.changed,
.editorTable div.changed {
    background-color: #aaaaaa;
    /*color: white;*/
}

div.elk-control {
	min-height: 15px;
}

/* input elements with errors */
input.error,
input.changed.error,
textarea.error,
textarea.changed.error,
a.error,
a.changed.error,
div.popuplink-report.error,
div.popuplink-report.changed.error,
div.elk-control.error,
select.error,
select.changed.error{
    background-color: #FCD6D6;
}


/*body.confirmwindowload {
	background-color: red;
}*/

body.haschanges {
	background-color: orange;
}

.moving {
	background-color: #ff8800;
}

.notmoving {
	background-color: #ff0000;
}

/* the one element that currently has the input focus get this class */
/*
.focused {
    outline: solid 2px #0033ff;
}
*/



/*******************************************************************************
* OFFICE-DOCUMENT PAGER
*******************************************************************************/

/* pager navi and buttons */
div.pages {
    position: relative;
}
div.pages div.pager {
    position: absolute;
    right: 5px;
    top: 0px;
    z-index: 500;
}
div.pager div.navigation {
    line-height: 20px;
    padding: 3px;
    color: #333333;
    background: #eeeeee;
}
div.pager div.navigation span {
    float:left;
    margin-right: 4px;
	background-repeat: repeat-x;
}
div.pager div.navigation span.button.next {
    margin-right: 0px;
	background-repeat: repeat-x;
}

/* pager in zoomer needs special treatment */
div.zoomer div.pages {
    position: static;  /* FIXME: this does not work, it's still relative ... */
}
div.zoomer div.pager {
    position: absolute;
    right: 5px;
    top: 0px;
}
div.zoomer div.pager div.navigation {
    color: #333333;
    background: #eeeeee;
}



/*******************************************************************************
* MODULE-SPECIFIC
*
* FIXME: this should go into module-specific CSS files which get only loaded if
*        the given module is actually included
*******************************************************************************/

body#customrender {
    padding: 10px;
}

/*****************************************
* EDITOR
******************************************/

#edit-right-check {
	border-spacing: 0;
}

#edit-right-check td {
	vertical-align: top;
	padding-right: 5px;
}

#edit-right-check tr.last td {
	border-bottom: 0;
}

#edit-right-check td {
	border-bottom: #787878 dotted 1px;
}

/*******************************************************************************
* QUICK LIST EDIT
*******************************************************************************/

#ql_auto_complete {
	background-color: #fff;
	color: #000;
	border: 1px solid black;
	padding: 3px;
}

#ql_auto_complete > div {
	cursor: pointer;
}

#ql_auto_complete > div > span {
	font-weight:bold;
}


#ql_auto_complete > div > span.words > span {
}

#ql_auto_complete span.new {
	background-color: #FFDCBF;
	font-weight:bold;
}

#ql_auto_complete span.old {
	font-weight:bold;
}


#ql_auto_complete span.sep {
	padding-right: 5px;
	padding-left: 2px;
	color: #aaa;
}

#ql_auto_complete > div:hover {
	background-color: #E8ECF9;
}

#ql_auto_complete > div.selected {
	background-color: #D5DDF3;
}

input.auto_completed {
	border-right: 3px solid green;
}

input.incomplete {
	border-right: 3px solid red;
}

/* quick list edit */
div.quicklistedit {
    position: relative;
    overflow: hidden;
    height: 20px;
    border: solid 1px #aaaaaa;
    border-top: none;
    padding: 2px;
}
div.quicklistedit a.button  {
    position: absolute;
    right: 5px;
    top: 5px;
}
div.quicklistedit input {
    width: 180px;
    border: none;
    padding-left: 15px;
    background: no-repeat 2px 3px;
}
div.quicklistedit input.auto_completed {
    background: url("img/ico-quicklistedit-saved-12.png") no-repeat 2px 3px;
}
div.quicklistedit input.incomplete:focus {
    background: url("img/ico-quicklistedit-pending-12.png") no-repeat 2px 3px;
}
div.quicklistedit input.incomplete {
    background: url("img/ico-quicklistedit-pending-12.png") no-repeat 2px 3px #FFBFBF;
}
div.quicklistedit input.focused {
    background-color: #ffffff;
}
div.quicklistedit input.error {
    background-color: #FCD6D6;
}
/* quick list edit autocompletion popup */
#ql_auto_complete {
    background: #ffffff;
    border: solid 1px #aaaaaa;
    -moz-box-shadow: 3px 3px 10px #333333;
    -webkit-box-shadow: 3px 3px 10px #333333;
    box-shadow: 3px 3px 10px #333333;
}
#ql_auto_complete div.selected {
    background: #e5e5e5;
}

div.searchfield-autocomplete {
	position: absolute;
    background: #ffffff;
    border: solid 1px #aaaaaa;
	color: #333333;
    -moz-box-shadow: 3px 3px 10px #333333;
    -webkit-box-shadow: 3px 3px 10px #333333;
    box-shadow: 3px 3px 10px #333333;
	z-index: 1009;
	line-height: 15px !important;
	vertical-align: top !important;
	overflow: hidden;
}

div.searchfield-autocomplete.blocked {
}

input.not-found {
    background: #FCD6D6;
}


div.searchfield-autocomplete > div {
	padding: 3px 5px 3px 5px;
	white-space: nowrap;
	cursor: pointer;
}

div.searchfield-autocomplete > div.selected {
    background: #e5e5e5;
}

div.searchfield-autocomplete > div.direction {
	padding: 0px;
	text-align: center;
    opacity: 0.8;
	-moz-opacity: 0.8;
	-webkit-opacity: 0.8;
}

div.searchfield-autocomplete > div.direction.up {
	background: #f5f5f5;
}

div.searchfield-autocomplete > div.direction.up.selected {
    background: #e5e5e5;
}


div.searchfield-autocomplete > div.direction.down {
	background: #f5f5f5;
}

div.searchfield-autocomplete > div.direction.down.selected {
    background: #e5e5e5;
}



div.searchfield-autocomplete > div.direction:hover {
    background: #e5e5e5;
}


i.bootstrap-icon {
	display: inline-block;
	width: 14px;
	height: 14px;
	line-height: 14px;
	vertical-align: text-top;
	background-image: url("img/glyphicons-halflings.png");
	background-position: 14px 14px;
	background-repeat: no-repeat;
}

i.chevron-down {
	background-position: -313px -119px;
}

i.chevron-up {
	background-position: -288px -120px;
}


/*******************************************************************************
* RENDER DEBUG OUTPUT
*******************************************************************************/

#renderdebug {
	position:absolute;
	top: 10px;
	left: 10px;
	background-color: #FFF6CF;
	border: 2px solid #FFE87F;
	text-decoration: none;
	color: #000;
	z-index: 1000;
}

#renderdebug table.head {
	width: 100%;
	background-color: #FFE87F;
	font-weight: bold;
}

#renderdebug table.head:hover {
	cursor: pointer;
}

#renderdebug table.head span.x {
	cursor: pointer;
	padding: 2px;
}

#renderdebug table.head span.x:hover {
	background-color: #000000;
	color: #FFE87F;
}

#renderdebug table.head span.m {
	padding: 2px;
	background-color: #FFE87F;
	color: #000000;
}

#renderdebug table.head span.m:hover {
	background-color: #000000;
	color: #FFE87F;
}

body.debugMarkInputs #renderdebug table.head span.m {
	background-color: #000000;
	color: #FFE87F;
}

body.debugMarkInputs #renderdebug table.head span.m:hover {
	background-color: #dedede;
	color: #000000;
}

#renderdebug div.translatorhead {
	background-color: #FFE87F;
	font-weight: bold;
}

#renderedmasks {
	padding: 4px;
	margin-bottom: 10px;
}

#renderedmasks a.creatorjump {
	display: block;
	background-color: #dedede;
	text-decoration: none;
	color: #000;
	margin-bottom: 3px;
	font-weight: bold;
}

#renderedmasks a.creatorjump span.type {
	font-weight: normal;
}

#renderedmasks a.creatorjump:hover {
	text-decoration: underline;
	color: #000;
}

span.debug__inputMarker__ {
	background-color: #FFE87F;
}



/*******************************************************************************
* TRANSLATOR
*******************************************************************************/

#translatorDiv {
	height: 400px;
	overflow-y: auto;
	overflow-x: hidden;
}

#translatorDiv table {
	border-collapse: collapse;
}

#translatorDiv table th {
	font-weight: bold;
	border: 1px solid #999999;
}

#translatorDiv table td {
	border: 1px solid #999999;
	vertical-align: top;
}

#translatorDiv textarea {
	border:0px;
	margin:0px;
	padding: 2px;
	background-color: #FFF6CF;
}

#translatorDiv textarea:focus {
	background-color: #dedede;
	height: 100px;
}



/*******************************************************************************
* CONNECTOR
*******************************************************************************/

/* status popup basics */
#connector_requests {
	position: absolute;
    top: 25%;
    border: 1px solid black;
}
#connector_requests div.error span.info,
#connector_requests div.cancelled span.info {
    color: #ff6666;
    font-weight: bold;
}
#connector_requests div.done span.info {
    color: #000000;
}
#connector_requests div.requesting span.info {
    width:16px;
    height:16px;
	background: url(img/processing_16.gif) no-repeat;
}

/* selection popup basics */
#connector_list {
    position: absolute;
    width: 350px;
    padding: 0px;
    z-index: 1010;
}
#connector_list div.header,
#connector_list div.footer {
    color: #333333;
    /*background: #cccccc;*/
}
#connector_list div.header {
    display: none; /* TEMP */
    font-weight: bold;
    padding: 10px 10px 0px 10px;
}
#connector_list div.content {
    border: solid 1px #d0d0d0;
    border-bottom: none;
    margin: 10px;
}
#connector_list div.footer {
    background: none;
    padding: 0px 10px 10px 10px;
}
#connector_list table {
    width: 100%;
    border-spacing: 0px;
}
#connector_list table tr.active {
    background: #f2f2f2;
}
#connector_list table tr.active td {
    color: #111111;
}
#connector_list table th,
#connector_list table td {
    border-bottom: solid 1px #d0d0d0;
    padding: 5px 0px 5px 3px;
}
#connector_list table th {
    padding: 2px 0px 2px 3px;
    background: #cccccc;
    color: #333333;
    text-align: left;
}
#connector_list table th.selection,
#connector_list table td.selection {
    width: 20px;
}
#connector_list table th.status,
#connector_list table td.status {
    width: 60px;
    text-align: left;
}
#connector_list input,
#connector_list span {
    margin: 0px 0px 0px 0px;
}
#connector_list span {
    line-height: 12px;
}
#connector_list span.name {
    padding-right: 20px;
}
#connector_list span.status {
    color: #111111;
    font-weight: bold;
}

/* error div returned by connector */
div.connector-error {
    float: left;
    margin: 8px 0px 0px 8px;
    background: #eeeeee;
}
div.connector-error.mini {
    width: 110px;
    height: 140px;
    font-size: 11px;
}
div.connector-error.standard {
    width: 180px;
    height: 200px;
}
div.connector-error.text {
    float: none;
    background: #dddddd;
    margin: 8px 8px 0;
}
div.connector-error.slide {
    height: auto;
    margin: 8px auto;
}
div.connector-error div.feedback.error {
    margin: 10px;
}

/* fixes for error output in presentation sidebar */
#magicSidebar div.feedback.error,
#magicSidebar div.connector-error {
    font-size: 10px;
}



/*******************************************************************************
* EXPORTERS
*******************************************************************************/

/* content div in exporter popup */
body.popup.exporter div.content {
    padding: 10px;
}

body.popup.exporter #toolDialog div.content {
    padding: 0px;
}

/* close button in exporter */
body.popup.exporter div.titlebar div.button {
    float: right;
    margin: 5px 5px 0px 0px;
}

/* warning div in exporter popup */
body.popup.exporter div.warnings {
    margin: 10px;
    border: solid 1px #cccccc;
}
body.popup.exporter div.warnings div.title {
    font-weight: bold;
    padding: 3px;
    background: #cccccc;
}
body.popup.exporter #exporterWarningsBody {
    height: 120px;
    overflow: auto;
    padding: 10px 10px 0px 10px;
}
body.popup.exporter div.warnings div.feedback {
    margin-bottom: 10px;
}

/* download ready template */
body.popup.exporter div.offerDownload .button {
    float: left;
    margin-right: 5px;
}

/* hide "loading" div in lower right corner */
body.popup.exporter #delayBox {
    display: none;
}

/* PPT exporter form */
#ToolDialog.Powerpoint {
    width: 362px;
}
#ToolDialog.Powerpoint .toolDialogForm.editorTable span.label {
    width: 140px;
}
/*
#overlayDialog div.content {
	display: inline-block;
 	border: 1px solid red;
}
#overlayDialog #dialogContentText {
	display: inline-block;
 	border: 1px solid green;
}
#overlayDialog #dialogContentButtons {
	display: inline-block;
 	border: 1px solid blue;
}
#overlayDialog div.body {
 	border: 1px solid orange;
	display: inline;
}
#ToolDialog {
 	border: 1px solid yellow;
}
*/



/*******************************************************************************
* DIVDRAGGER
*******************************************************************************/

/* stop selection of childs */
.divDraggerParent div.dragChild {
    user-select:none;
    -moz-user-select:-moz-none;
}

/* hovered dragdiv child element */
.divDraggerParent div.hovered {
    background: #ff0000;
}
.divDraggerParent.vertical div.hovered {
    border-top: solid 2px #ff0000;
}
.divDraggerParent.horizontal div.hovered {
    border-right: solid 2px #ff0000;
}

/* marker */
.divDraggerParent div.dragMarker {
    /*float: left;*/
    background: #999999;
}



/*******************************************************************************
* PANELS
*******************************************************************************/

div.panel {
    background: #ffffff;
}
div.panel div.panel-header {
    background: #aaaaaa url(img/arrow-down-12.png) no-repeat 3px center;
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    height: 16px;
    line-height: 16px;
    text-align: left;
    cursor: pointer;
    padding: 3px 3px 3px 18px;
    -moz-user-select: none;
    -webkit-user-select: none;
}
div.panel div.panel-header:hover {
    background-color: #bbbbbb;
}
div.panel.collapsed div.panel-header {
    background-image: url(img/arrow-right-12.png);
}
div.panel div.panel-content {
    border: solid 1px #aaaaaa;
    border-top: none;
    padding: 10px;
}



/*******************************************************************************
* CUSTOM CHECKBOXES (FIXME: why do we put these in core?)
*******************************************************************************/

span.checkbox {
	border: 1px solid #999999;
	width: 14px;
	height: 14px;
	line-height: 10px;
	display: inline-block;
    cursor: pointer;
}
span.checkbox.checked {
	line-height: 10px;
	width: 14px;
	height: 14px;
	display: inline-block;
	background: url("img/ico-checkbox-marked.png") no-repeat center center;
}
span.checkbox:hover {
    background-color: #e6e6e6;
    cursor: pointer;
}

span.checkbox.focused {
	width: 14px;
	height: 14px;
	display: inline-block;
	line-height: 10px;
	border-color: #000000;
}

span.checkbox.changed {
	width: 14px;
	height: 14px;
	line-height: 10px;
	display: inline-block;
	background-color: var(inputChanged);
}

span.checkbox.disabled {
	width: 14px;
	height: 14px;
	display: inline-block;
	line-height: 10px;
	background-color: #cccccc;
    cursor: default;
}
span.checkbox.disabled:hover {
	background-color: #cccccc;
}
span.checkbox.disabled.focused {
	width: 14px;
	height: 14px;
	display: inline-block;
	line-height: 10px;
	background-color: #cccccc;
}

span.checkbox.error {
	background-color: #FCD6D6;
}



/*******************************************************************************
*  LANGUAGE SELECTOR
*******************************************************************************/

/* button */
#language-selector {
	/*background: url(img/ico-language-select.png) no-repeat #ffffff;*/
}
a#language-selector,
#language-selector-popup a {
	display: block;
	height: 20px;
	line-height: 20px;
	padding-left: 18px;
	background-image: url(img/language-selector-languages.gif);
	background-repeat: no-repeat;
    text-decoration: none;
}

/* languages in button */
a#language-selector.lang-fr {
	background-position: 0px -20px;
}
a#language-selector.lang-it {
	background-position: 0px -40px;
}
a#language-selector.lang-en {
	background-position: 0px -60px;
}
a#language-selector.lang-pt {
	background-position: 0px -80px;
}
a#language-selector.lang-es {
	background-position: 0px -100px;
}
a#language-selector.lang-pl{
	background-position: 0px -120px;
}
a#language-selector.lang-ru{
	background-position: 0px -140px;
}
a#language-selector.lang-cs{
	background-position: 0px -160px;
}
a#language-selector.lang-uk{
	background-position: 0px -180px;
}

/* popup */
#language-selector-popup {
	position: absolute;
	min-width: 100px;
	border: solid 1px #aaaaaa;
	background: #ffffff;
	padding: 5px 0px 5px 0px;
	-moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}
#language-selector-popup a {
    background-position: 5px 0px;
    padding: 0px 10px 0px 28px;
}
#language-selector-popup a:hover {
	text-decoration: none;
    background-color: #eeeeee;
}
#language-selector-popup a.selected {
	color: #aaaaaa;
}

/* languages in popup (we need to duplicate this due to the suboptimal HTML
 * structure of the button [*sigh*]) */
#language-selector-popup a.lang-fr {
	background-position: 5px -20px;
}
#language-selector-popup a.lang-it {
	background-position: 5px -40px;
}
#language-selector-popup a.lang-en {
	background-position: 5px -60px;
}
#language-selector-popup a.lang-pt {
	background-position: 5px -80px;
}
#language-selector-popup a.lang-es {
	background-position: 5px -100px;
}
#language-selector-popup a.lang-pl {
	background-position: 5px -120px;
}
#language-selector-popup a.lang-ru {
	background-position: 5px -140px;
}
#language-selector-popup a.lang-cs {
	background-position: 5px -160px;
}
#language-selector-popup a.lang-uk {
	background-position: 5px -180px;
}

div.l10n-tooltip {
	position: absolute;
	background-color: #ffffff;
	border: 2px solid #cccccc;
	padding: 5px;
	cursor: default;
	white-space: pre-wrap;
}

/* eas search */
div.eas-search {
	border: 1px solid #AAA;
	background-color: #ffffff;
	height: 20px;
	padding: 2px 4px 2px 4px;
	overflow: hidden;
	line-height: 20px;
	min-width: 180px;
	white-space: nowrap;
}

div.eas-search-popup {
	position: absolute;
	border: 1px solid #AAA;
	background-color: #ffffff;
	z-index: 1003;
	-moz-box-shadow: 3px 3px 10px #333333;
	-webkit-box-shadow: 3px 3px 10px #333333;
    box-shadow: 3px 3px 10px #333333;
}

div.eas-search-popup div.eas-float-box > table {
	width: 335px;
}

div.eas-search-popup table.eas-float-table > tbody > tr > td {
	padding:0;
}

div.eas-search-popup div.eas-information > table > tbody > tr > td:first-child,
div.eas-search-popup div.eas-upload > table > tbody > tr > td:first-child {
	width: 80%;
}


div.eas-search-popup table td {
	vertical-align: top;
}

div.eas-search-popup div.eas-filesize {
	padding: 5px 10px 5px 10px;
}

div.eas-search-popup td.eas-float-grid {
	border-left: 1px solid #AAA;
}

div.eas-search-popup div.eas-float-box {
	padding: 5px 10px 5px 10px;
	border-bottom: 1px solid #AAA;
}

div.eas-search-popup div.eas-float-box:last-child {
	border-bottom: 0px;
}

span.eas-hint {
	font-size: 10px;
}

div.eas-search-popup div.eas-extension div.fileclass-unknown {
	display: none;
}


div.eas-search-popup span.title {
	font-size: 14px;
	font-weight: bold;
	display: block;
	padding-bottom: 5px;
}


div.eas-search-popup table.checkbox-table td {
	vertical-align: middle;
}


div.eas-search-popup tr.printsize select {
	font-size: 10px;
}

div.eas-search-popup tr.printsize td {
	vertical-align:bottom;
}


div.eas-filesize td.td-middle {
	vertical-align: bottom;
	text-align: center;
}

div.eas-search-popup div.eas-filesize input {
	width: 40px;
}

div.eas-search-popup input:disabled {
	background-color: #d0d0d0;
}

div.eas-search-popup div.eas-information input,
div.eas-search-popup div.eas-upload input {
 	width: 200px;
}

div.eas-search-popup div.eas-information input[type="checkbox"],
div.eas-search-popup div.eas-upload input[type="checkbox"] {
	width: 14px;
}


div.eas-search-popup div.eas-upload select,
div.eas-search-popup div.eas-information select {
 	width: 206px;
}

div.eas-search-popup div.eas-information input.date-input,
div.eas-search-popup div.eas-upload input.date-input {
 	width: 96px;
}

div.eas-search-popup div.eas-information td,
div.eas-search-popup div.eas-upload td {
	padding-bottom: 5px;
}

div.eas-search-popup input.calc-input {
	color: #666666;
}

div.eas-search-popup input:manual-input {
	font-weight:bold;
}

div.eas-search a.eas-x {
	display: inline-block;
	margin-right: 4px;
}

div.eas-search:hover {
	cursor:pointer;
	background-color: #f8f8f8;
}

.jsCalendar {
	z-index:1006;
}

td.logentry table {
	border-collapse: collapse;
}

td.logentry  table td {
	padding: 0;
	margin: 0;
	border: 0;
	padding-right: 2px;
	vertical-align: top;
	border-bottom: 1px solid #c0c0c0;
	border-right: 1px dotted #c0c0c0;
	word-wrap: break-word;
}

td.logentry span {
	font-weight: bold;
}


td.logentry  table tr:last-child > td {
	border-bottom: 0;
}

td.logentry  table td:last-child {
	border-right: 0;
}

.file-upload-input {
	position: absolute;
	top: -4px;
	right: -2px;
	height: 30px;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	font-size: 100px;
}

.uploadButton {
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.uploadButton * {
	cursor: pointer;
}

table.gnd {
	width: 100%;
	border-collapse: collapse;
	border: 5px solid #ffffff;
	background: #ffffff !important;
}

table.gnd table {
	background: #ffffff !important;
}

table.gnd > tbody > tr:nth-child(odd)  {
	background: #FFFDED;
}

table.gnd td {
	padding: 1px 3px 1px 3px;
	vertical-align: top;
}


table.gnd > tbody > tr > td {
	border-bottom: 1px solid #C1C3AD;
	border-top: 1px solid #C1C3AD;
}

table.gnd > tbody > tr > td:nth-child(1) {
	color: #576072;
	font-weight: bold;
	min-width: 200px;
	width: 200px;
	max-width: 200px;
}

table.gnd > tbody > tr > td:nth-child(2) {
	width: 100%;
}


#gnd-view {
	width: 500px;
}

#gnd_class_selector {
	width: 180px;
}

#gnd_class_selector_content {
	width: 600px;
	padding: 5px;
}

#gnd_class_selector_content > div > table > tbody > tr > td:nth-child(1) {
	padding-top: 2px;
}

#gnd_class_selector_content > div > table > tbody > tr > td {
	line-height: 16px;
}


#gnd_class_selector_content .float {
	float: left;
	width: 200px;
}

#gnd_class_selector_content td {
	vertical-align: top;
}

div.thumbnail img, div#filemanagerShowPreviewDialog img {
	background: white url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAGElEQVQYV2N4DwX/oYBhgARgDJjEAAkAAEC99wFuu0VFAAAAAElFTkSuQmCC) repeat;
}

.snippet-viewer {
	width: 100%;
	text-align: center;
}

.snippet-viewer h1 {
	position: absolute;
	top: 0px;
	right: 15px;
}

.snippet-viewer .snippet-body {
	margin-top: 100px;
}

.snippet-viewer .snippet-body .easydb-image-outer,
.snippet-viewer .snippet-body .easydb-image-div,
.snippet-viewer .snippet-body > iframe {
	border: 2px solid #eee;
}


.snippet-viewer #logo {
	left: 15px !important;
}

::-webkit-input-placeholder { /* WebKit browsers */
    color:    #aaa;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #aaa;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #aaa;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
   color:    #aaa;
}

.debugoutput{
	font-size: 11px;
	color: red;
}
.debugoutput span{
	color: green;
}
