/* 
some divs for debugging - to get a quick look onto innards of script
*/

div.devwin { /* 021112 display window for development - var output, testing, etc.. - can be used for everything
				DRAWBACK: can only be used after closing the main frame.. so just after the script executed all from interest*/
position:fixed;
z-index:100;
top:0%;
right:0%;
width:20%;
padding: 2% 1% 0% 2%;
height:100%;
border-left: 5px double white;
border-bottom: 5px double white;
background-color:black;
color:white;
font: 12pt;
overflow: visible;


}
#preview {
color:white;
background-color:black;
border-color:white;

}
div.alert { /*used for custom error messages considered to be fatal
				PLUS: can be used anywhere in the script*/
		
	position:fixed;
	z-index:100;
	top: 10%;
	left:20%;
	width:40%;
	height:18%;
	padding:2%;
	border: 4px solid #41428F;
	color:#31327F;
	background-color:pink;
	border-radius:15px;
	font-size:14pt;
/*	box-shadow: -.5px 4px 5px 2px green;*/
}
