div.nInlineEditorSpacer {
	position: relative;
	height: 0; /* on dynamic create it will be changed to minHeight value */
	width: 1px;
	float: right;
	}

*.nInlineEditor {
	position: relative;
	display: block;
	}

	
	*.nInlineEditor div.layer {
		position: absolute;
		width: 100%;
		height: 100%;
		left: -1px;
		top: -1px;
		border: solid 1px #fff;
		background: url(images/layerBg.jpg) transparent;
		overflow: hidden;
		z-index: 1;
		display: none; /* on dynamic create it will be changed to block */
		}
	
		*.nInlineEditor div.scrollable {
			overflow: auto;
			}
	
		*.nInlineEditor div.errorMessage {
			overflow: auto;
			background-image: none;
			background-color: darkred;
			}
	
		*.nInlineEditor div.infoMessage {
			overflow: auto;
			background-image: none;
			background-color: #80e22a;
			}
		
	
	*.nInlineEditor div.label {
		position: absolute;
		background-color: red;
		display: none; /* on dynamic create it will be changed to block */
		}
	
	*.nInlineEditor div.activatorLabel {
		background: url(images/smallEdit.png) no-repeat left center;
		width: 0;
		height: 16px;
		left: 0; /* on dynamic create it will be used by JS */
		top: 0;
		border: 0;
		cursor: pointer;
		}
	
		*.nInlineEditor div.activatorLabel:hover {
			background-image: url(images/smallEdit1.png);
			}
	
		*.nInlineEditor div.activatorLabel *.ajaxLoaderClock {
			position: absolute;
			margin: auto;
			padding: 0;
			}
		
	*.nInlineEditor div.optionsLabel {
		background: url(images/optionsLabelBg.png) no-repeat right bottom;
		width: 111px;
		height: 28px; /* on dynamic create it will be used by JS */
		right: -1px;
		bottom: 0; /* on dynamic create it will be used by JS */
		}
			
		*.nInlineEditor div.optionsLabel *.commit, *.nInlineEditor div.optionsLabel *.cancel {
			display: block;
			width: 22px;
			height: 30px;
			cursor: pointer;
			float: right;
			margin: 2px 0 2px 0;
			}
		
		*.nInlineEditor div.optionsLabel *.commit {
			background: url(images/commitIcon.png) no-repeat center;
			}
		
		*.nInlineEditor div.optionsLabel *.cancel {
			background: url(images/cancelIcon.png) no-repeat center;
			margin-right: 6px;
			}
		
	*.nInlineEditor div.closeLabel {
		background-color: #008;
		width: 10px;
		height: 10px;
		right: 0; /* on dynamic create it will be used by JS */
		top: 0;
		}
	
div.nInlineEditorClearer {
	clear: both;
	position: relative;
	height: 0;
	width: 0;
	}


*.nInlineEditor textarea.full {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: transparent;
	border: 0;
	margin: 0;
	padding: 0;
	overflow: auto;
	font-family: verdana, tahoma, helvetica, sans-serif;
	font-size: 1em;
	color: #fff;
	}