#header {
	background-color: #1C469C;
	width: 100%;
}
body {
	margin: 0px;
	background-color: #000033;
}
#control_bar table {
	width: 750px;
	background-color: #000000;
	text-align: center;
}
.control_bar {
	background-color: #000000;
	width: 100%;
	vertical-align: middle;
}
.mainContentBG {
	background-color: #000033;
	width: 100%;
}
.mainContentBGWhite {
	background-color: #FFFFFF;
}
.bgBlack {
	background-color: #000000;
}



#menu_global table {
	background-color: #000000;
}
#menu_global table {
	background-color: #000000;
	width: 100%;
}
.contentCellTopLeft {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
}
.contentCellTopRight {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
}
.contentCellBottomLeft {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
}

var fontSize = 1;
function zoomIn() {
	fontSize += 0.1;
	document.body.style.fontSize = fontSize + "em";
}
function zoomOut() {
	fontSize -= 0.1;
	document.body.style.fontSize = fontSize + "em";
}