/* On-Screen Frames */
div.fullscreencontainer {
	display: none;
	position: fixed;
	left: 0; top: 0;
	right: 0; bottom: 0;
	text-align: center;
	vertical-align: center;
}
div.onscreenfrm {
	border: 1px solid black;
	text-align: left;
	overflow: hidden;
	background-color: #ffffff;
	width: 430px;
}
div.onscreenfrm div.head {
	text-align: center;
	font-weight: bold;
	float: none;
	height: 20px;
	border-bottom: 1px dashed gray;
}
div.onscreenfrm div.body {
	overflow: hidden;
}
div.onscreenfrm div.body div.row {
	overflow: hidden;
	clear: both;
	margin: 5px;
}
div.onscreenfrm div.body div.row div.left {
	float: left;
	clear: both;
}
div.onscreenfrm div.body div.row div.right {
	float: right;
}
div.onscreenfrm div.foot {
	text-align: center;
	overflow: hidden;
	padding: 5px;
}

