/*
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
form { margin: 0; padding: 0; }

/**
 *	CKEditor editables are automatically set with the "cke_editable" class
 *	plus cke_editable_(inline|themed) depending on the editor type.
 */

/* Style a bit the inline editables. */
.cke_editable.cke_editable_inline { cursor: pointer; border-bottom: 1px solid #dedede; padding-bottom: 6px; }

/* Once an editable element gets focused, the "cke_focus" class is
   added to it, so we can style it differently. */
.cke_editable.cke_editable_inline.cke_focus {
	box-shadow: inset 0px 0px 20px 3px #ddd, inset 0 0 1px #000;
	padding: 16px;
	outline: none;
	/*background: #eee;*/
	cursor: text;
}

/* Avoid pre-formatted overflows inline editable. */
.cke_editable_inline pre {
	white-space: pre-wrap; 
	word-wrap: break-word;
}

/* Used on inline samples */
blockquote {
	font-style: italic;
	font-family: Georgia, Times, "Times New Roman", serif;
	padding: 2px 0;
	border-style: solid;
	border-color: #ccc;
	border-width: 0;
}
.cke_contents_ltr blockquote {
	padding-left: 20px;
	padding-right: 8px;
	border-left-width: 5px;
}
.cke_contents_rtl blockquote {
	padding-left: 8px;
	padding-right: 20px;
	border-right-width: 5px;
}

#ckContents, #ckOther { min-height: 100px !important; }
#ckContents.line-3, #ckOther.line-3 { min-height: 200px !important; }
#ckContents.line-5, #ckOther.line-5 { min-height: 400px !important; }


/* Gabby 20151231 */
table.cke_dialog { width: 70%; }
table.cke_dialog_contents { width: 100%;}
textarea.cke_source {}
textarea.cke_dialog_ui_input_textarea { width: 100% !important; }
/* Gabby 20151231 */























