/*
CSS Top Frame Layout
This is a two rows liquid layout with the top row being static, always in view. Tested and works in IE5+, Opera7+, and Firefox.

http://www.dynamicdrive.com/style/layouts/item/css-top-frame-layout/
*/
body {
	margin: 0;
	padding: 0;
	border: 0;
	overflow: hidden;
	height: 100%;
	max-height: 100%;
    font: normal 12px Arial,Helvetica,sans-serif;
}

#framecontent {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 108px; /* Height of frame div */
	overflow: visible; /* Disable scrollbars. Set to "scroll" to enable */
	background-color: #DEDEDE;
	color: white;
	border-bottom: 4px solid #999999;
}

#maincontent {
	position: fixed;
	top: 112px; /* Set top value to HeightOfFrameDiv */
	left: 0;
	right: 0;
	bottom: 0;
	overflow: auto;
	background: #fff;
}

.pbacklink { float:right; padding:2px; font: bold 18px Arial,Helvetica,sans-serif; }

#pdfembed {
	width: 100%;
    height: 560px;
    border: 4px solid #CCCCCC;
    background-color: #FFFFFF;
    text-align:center;
}

#footer{
	font: normal 12px Arial,Helvetica,sans-serif;
    color: #666666;
    padding: 12px;
	margin: 0px;
}

.innertube {
	margin: 15px; /* Margins for inner DIV inside each DIV (to provide padding) */
}

* html body {
	/* IE6 hack */
	padding: 110px 0 0 0; /* Set value to (HeightOfFrameDiv 0 0 0) */
}

* html #maincontent {
	/* IE6 hack */
	height: 100%;
	width: 100%;
}

