body {
	margin: 0;
	padding: 0;
	border: 0;
	overflow: hidden;
	height: 100%;
	max-height: 100%;
}

#frameLeft {
	position: absolute;
	top: 0;
	left: 0;
	width: 2px; /*Width of left frame div*/
	height: 100%;
	overflow: hidden;
}

#frameLeftContent {
	margin: 5px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}

#frameRight {
	position: absolute;
	top: 0;
	left: auto;
	right: 0;
	width: 2px; /*Width of right frame div*/
	height: 100%;
	overflow: hidden;
}

#frameRightContent {
	margin: 5px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}

#frameTop {
	position: absolute;
	top: 0;
	left: 2px; /*Set left value to WidthOfLeftFrameDiv*/
	right: 2px; /*Set right value to WidthOfRightFrameDiv*/
	width: auto;
	height: 50px; /*Height of top frame div*/
	overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
	border-bottom: 5px solid #A7A37E;
}

#frameTopContent {
	margin: 5px 5px 0 0;
	text-align: right;
}

#frameNav {
	position: absolute;
	padding: 0px;
	top: 55px;
	left: 2px; /*Set left value to WidthOfLeftFrameDiv*/
	right: 2px; /*Set right value to WidthOfRightFrameDiv*/
	width: auto;
	height: 25px;
	overflow: hidden;
	border-bottom: 5px solid #A7A37E;
}

#frameNavContent {
	margin:0;
	text-align: left;
	padding: 2px;;
	padding-left: 30px;
}

#frameBottom {
	position: absolute;
	top: auto;
	bottom: 0;
	left: 2px; /*Set left value to WidthOfLeftFrameDiv*/
	right: 2px; /*Set right value to WidthOfRightFrameDiv*/
	width: auto;
	height: 30px; /*Height of bottom frame div*/
	overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
	border-top: 5px solid #A7A37E;
}

#frameBottomContent {
	margin: 5px 0px 0 5px;
	text-align: left;
}

#frameBody {
	position: fixed;
	top: 85px; /*Set top value to HeightOfTopFrameDiv*/
	bottom: 35px; /*Set bottom value to HeightOfBottomFrameDiv*/
	left: 2px; /*Set left value to WidthOfLeftFrameDiv*/
	right: 2px; /*Set right value to WidthOfRightFrameDiv*/
	overflow: auto;
}

#frameBodyContent {
	margin: 5px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}

#frameBodyContentHome {
	margin: 0px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}

#myGallery {
	margin: 0 auto;
}

/*IE6 hacks*/
* html body { 
	/*Set value to (HeightOfTopFrameDiv WidthOfRightFrameDiv HeightOfBottomFrameDiv WidthOfLeftFrameDiv)*/
	padding: 80px 2px 30px 2px; 
}
* html #frameBody {
	height: 100%;
	width: 100%;
}
* html #frameTop, * html #frameBottom, * html #frameNav {
	width: 100%;
}
* html #frameNav {
	top: 50px;
	height: 30px;
}