﻿#ScreenNotesDialog {
    z-index: 5000;
}

.screenNotesDialog {
    position:absolute;
	overflow: hidden;
    top:0px;
	left:0px;
	right:0px;
	bottom:0px;
	overflow-y:hidden;
    overflow-x:hidden;
}

.screenNotesDialog #screenNotesTextArea
{
	position:absolute;
	top:0px;
	left:0px;
	right:0px;
	bottom:0px;
	resize:none;
	/*http://efreedom.com/Question/1-2906075/Firefox-IE-Textarea-Sizing-Quirk-Workarounds*/
	height:100%;
	width:100%;
	/*IE scroll bar issue*/
	#height:99%;
	#width:99%;
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}