@media screen {

	body {
		overflow: hidden;
	}
	
	#editor {
		margin: 0;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}

	#printable {
		display: none;
	}

	.font-smaller-70 {
		font-size: 70% !important;
	}
	
	.ace_marker-layer .misspelled {
		position: absolute;
		z-index: -2;
		border-bottom: 1px solid red;
		margin-bottom: -1px;
	}

	.misspelled {
		border-bottom: 1px solid red;
		margin-bottom: -1px;
	}

	
}


@media (display-mode: fullscreen) {

  #editor {
		top: 10px !important;
  }

}


@media print {

	#editor {
		display: none;
	}

	#model {
		display: none;
	}

	#printable {
		display: block;
	}

}