*{
	margin:0;
	padding:0;
	border:0px solid #eee;
}
html,body,#bg,#bg table,#bg td,#content {
	width:100%;
	height:100%;
	overflow:hidden;
}
body {
	font-family:Arial;
	font-size:13px;
	color:#004685;
}
#bg div {
	position:absolute;
	width:200%;
	height:200%;
	top:-50%;
	left:-50%;
}
#bg img {
	min-height:50%;
	min-width:50%;
	margin:0 auto;
	display:block;
}
#content {
	position:absolute;
	top:0;
	left:0;
	z-index:70;
	overflow:auto;
}
a
{
  color:#004685;
}



h3
{
  font-size:20px;
  margin-bottom:15px;
  margin-top:5px;
}

h4
{
  font-size:16px;
  margin-bottom:15px;
  margin-top:5px;
  color:#009051;
}


li
{
  margin-left:25px;
}





/*This is where the magic happens!*/
div.box {
     /*Any properties you'd want the box to have.*/
     /*Would probably be position, dimension type stuff.*/
     /*Though personally I would have a div outside this
       to control the dimensions.*/
     
     position: relative;
     padding: 10px; 10px;
}
div.box_withoutpadding {
     /*Any properties you'd want the box to have.*/
     /*Would probably be position, dimension type stuff.*/
     /*Though personally I would have a div outside this
       to control the dimensions.*/
     
     position: relative;
     padding: 0px; 0px;
}
div.box_contents_scroll {
     background-color:transparent;
     height: 245px;
     position: relative;
     width: 100%;
     z-index: 101;
     overflow: scroll;
     
     scrollbar-face-color: #6aacda;
     scrollbar-highlight-color: #FFFF00;
     scrollbar-3dlight-color: #FF8000;
     scrollbar-darkshadow-color: #000080;
     scrollbar-shadow-color: #00FFFF;
     scrollbar-arrow-color: #ffffff;
     scrollbar-track-color: #EEEEEE;   
     
     
     
}
div.box_contents {
     background-color:transparent;
     height: 100%;
     position: relative;
     width: 100%;
     z-index: 101;
}
div.box_background {
     background-color: #6aacda;
     height: 100%;
     filter:alpha(opacity=20); /* IE's opacity*/
     left: 0px;
     opacity: 0.20;
     position: absolute;
     top: 0px;
     width: 100%;
     z-index: 99;
}
div.box_background_right {
     background-color: #ffffff;
     height: 100%;
     filter:alpha(opacity=50); /* IE's opacity*/
     left: 0px;
     opacity: 0.50;
     position: absolute;
     top: 0px;
     width: 100%;
     z-index: 99;
}
div.box_background_white {
     background-color: #ffffff;
     height: 100%;
     filter:alpha(opacity=80); /* IE's opacity*/
     left: 0px;
     opacity: 0.80;
     position: absolute;
     top: 0px;
     width: 100%;
     z-index: 99;
}
