/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */
@import url(button-styles.css);
@import url(font-awesome.min.css);

.fasc-button
{
	/* cursor:help !important; */
}

.fascview-wrap  div, .fascview-wrap  p
{
	display:inline-block !important;
}


/**
 * WP Views
 */

.fascview-wrap {
	width: 99.99%; /* All IE need hasLayout, incl. 11 (ugh, not again!!) */
	position: relative;
	clear: both;
}

/* delegate the handling of the selection to the fascview tinymce plugin */
.fascview-wrap,
.fascview-wrap * {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* hide the shortcode content, but allow the content to still be selected */
.fascview-wrap .fascview-clipboard,
.fascview-wrap > p {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	clip: rect(1px 1px 1px 1px); /* IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
	outline: 0;
	padding: 0;
	border: 0;
	width: 1px;
	height: 1px;
}

/* An ugly box will appear when this is focussed in IE, so we'll move it outside the window. */
.fascview-wrap.fascview-selection-before > p,
.fascview-wrap.fascview-selection-after > p {
	left: -10000px;
}

.fascview-wrap .fascview-clipboard,
.fascview-wrap .fascview-clipboard *,
.fascview-wrap > p {
	-moz-user-select: text;
	-webkit-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

.has-focus .fascview-wrap.fascview-selection-before:before,
.has-focus .fascview-wrap.fascview-selection-after:before {
	content: '';
	margin: 0;
	padding: 0;
	position: absolute;
	top: -2px;
	left: -3px;
	bottom: -2px;
	width: 1px;
	background-color: black;
	background-color: currentcolor;
	opacity: 1;
}

.has-focus .fascview-wrap.fascview-selection-after:before {
	left: auto;
	right: -3px;
}

.has-focus .fascview-wrap.fascview-cursor-hide:before {
	opacity: 0;
}