/**
 * 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;
}

/* 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;
   outline: none;
   background: #eee;
   cursor: text;
}

/* Avoid pre-formatted overflows inline editable. */
.cke_editable_inline pre
{
   white-space: pre-wrap;
   word-wrap: break-word;
}

/**
 * Samples index styles.
 */

.twoColumns,
.twoColumnsLeft,
.twoColumnsRight
{
   overflow: hidden;
}

.twoColumnsLeft,
.twoColumnsRight
{
   width: 45%;
}

.twoColumnsLeft
{
   float: left;
}

.twoColumnsRight
{
   float: right;
}

