/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/

/* Main editor only settings. */
.cke_chrome
{
	display: block;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #D3D3D3;
	padding: 5px;
}

.cke_hc.cke_chrome
{
	padding: 2px;
}

.cke_inner
{
	display: block;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-webkit-touch-callout: none;
	border-radius: 5px;

	background: #d3d3d3 url(images/sprites.png) repeat-x 0 -1950px;
	background: -webkit-gradient(linear, 0 -15, 0 40, from(#fff), to(#d3d3d3)); /* Chrome,Safari4+ */
	background: -moz-linear-gradient(top, #fff -15px, #d3d3d3 40px); /* FF3.6+ */
	background: -webkit-linear-gradient(top, #fff -15px, #d3d3d3 40px); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #fff -15px, #d3d3d3 40px); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #fff -15px, #d3d3d3 40px); /* IE10+ */
	background: linear-gradient(top, #fff -15px, #d3d3d3 40px); /* W3C */

	padding: 5px;
}

.cke_float
{
	background: #fff;
}

.cke_float .cke_inner
{
	padding-bottom: 0;
}

.cke_hc .cke_contents
{
	border: 1px solid black;
}

/* Stretch the space to contain potentially floated content. */
.cke_top,
.cke_contents,
.cke_bottom
{
	display: block;
	/* Ideally this should be "auto", but it shows scrollbars in IE7 */
	overflow: hidden;
}

.cke_wysiwyg_div
{
	display: block;
	height: 100%;
	overflow: auto;
	padding: 0 8px;
	outline-style: none;
}

.cke_resizer
{
	/* Arrow in CSS */
	width: 0;
	height: 0;
	overflow: hidden;
	border-width: 12px;
	border-color: transparent transparent #efefef transparent;
	border-style: dashed dashed solid dashed;
	margin: -4px -12px 0 0;

	float: right;
	cursor: se-resize;
	font-size: 0;
	vertical-align: bottom;
	opacity: 0.8;
}

.cke_resizer_rtl
{
	float: left;
	cursor: sw-resize;
	margin-left: -12px;
	margin-right: 0px;
}

.cke_hc .cke_resizer
{
	font-size: 18px;
	margin-right: -1px;
	width: auto;
	border: 0;
}

.cke_hc .cke_resizer_rtl
{
	margin-right: 0;
	margin-left: -1px;
}

/* All voice labels are not displayed. */
.cke_voice_label
{
	display: none;
}

legend.cke_voice_label
{
	display: none;
}
