form.inplaceeditor-form { /* The form */
	
}

form.inplaceeditor-form input[type="text"] { /* Input box */
	border: 1px solid #F38407; 
	background-color: #FACEA3;
	font-size:10pt;
	padding:3px;
	font-family:"Lucida Sans Unicode","Lucida Sans","Lucida Grande",Arial,helvetica,sans-serif;
}

form.inplaceeditor-form textarea { /* Textarea, if multiple columns */
	border: 1px solid #F38407; 
	background-color: #FACEA3;
	font-size:10pt;
	padding:3px;
	font-family:"Lucida Sans Unicode","Lucida Sans","Lucida Grande",Arial,helvetica,sans-serif;
	margin-bottom: 24px;
}

form.inplaceeditor-form a.editor_ok_link { /* The submit link */
  background: transparent url(../img/icon_check.png) no-repeat scroll 0 0;
  position: absolute;
  width:24px;
  height:24px;
  margin-left:0;
}

form.inplaceeditor-form textarea + br + a.editor_ok_link {
	margin-top: -24px;
}
form.inplaceeditor-form textarea + br + a + a.editor_cancel_link {
	margin-top: -24px;
}

form.inplaceeditor-form a.editor_cancel_link { /* The cancel link */
  background: transparent url(../img/icon_del.png) no-repeat scroll 0 0;
  position: absolute;
  width:24px;
  height:24px;
  margin-left: 23px;
}
form.inplaceeditor-form select + a.editor_cancel_link { /* collection cancel link */
  margin-left:0px;
 // margin-bottom: 48px;
}

.inplaceeditor-saving {
	background: url(../img/spinner.gif) top left no-repeat;
	color: #FFFFFF;
	color: transparent;
	display: block;
	overflow: hidden;
	min-width: 16px;
	min-height: 16px;
}

.inline-editable {
	cursor: pointer;
	cursor: hand;
}


