/*! SCEditor | (C) 2011-2013, Sam Clarke | sceditor.com/license */

html, body, p, code:before, table {
	margin: 0;
	padding: 0;
font-family: var(--main-font-family) !important;
	font-size: var(--main-font-size) !important;
	color: var(--main-color) !important;
}

html {
	/* Needed so the cursor will be placed at the end of the content
	   when the there isn't enought content to fill the full viewport */
	height: 100%;
	/* Needed for iOS scrolling bug fix */
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

body {
	/* Needed for iOS scrolling bug fix */
	position: relative;
	overflow: auto;
        font-family: var(--main-font-family) !important;
	font-size: var(--main-font-size) !important;
	color: var(--main-color) !important;
	/* Needed so the cursor will be placed at the end of the content
	   when the there isn't enought content to fill the full viewport */
	min-height: 100%;
	word-wrap: break-word;
}

body .placeholder{
	 font-family: var(--main-font-family) !important;
	font-size: var(--main-font-size) !important;
	color: var(--main-color) !important;
}