/* style sheet for formatting using div */

  .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    }

  #wrapper {
    width: 1000px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 0.5cm;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
  }

  #header {
    overflow: hidden;
    border: none;
    -moz-border-radius-topright: 10px;
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-right-radius: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out; 
    z-index: 1;
  }

  #databox {
    width: 100%;
    float: left;
    overflow: hidden;
  }

  #navcolumn {
    float: left;
	height: auto;
	width: 15%;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0;
	text-align: center;
	padding-bottom: 0;
	overflow: hidden;
    z-index: 3;
  }

  #contents {
    float: right;
    min-height:600px;
	height: auto;
	width: 83.5%;
	bottom: auto;
	text-align: left;
	padding: 0 2.5px 2.5px 2.5px;
	overflow: hidden;
	background-color: white;
	z-index: 3;
  }

  #box1 {
    float: left;
    width: 80%;
    height: 100%;
    left: 0cm;
    right: auto;
    top: 0px;
    bottom: 0px;
    text-align: left;
/*    margin-left: 0cm;*/
    overflow: visible;
    z-index: 4;
  }

  #box2 {
    position: relative;
    width: 20%;
    height: 100%;
    left: 610px;
    right: 0;
    top: 0cm;
    bottom: auto;
    text-align: left;
    text-indent: 0cm;
    font-family: helv;
    font-size: 9pt;
    overflow: hidden;
    border: thin solid;
    background-color: #888;
    z-index: 4;
  }

  #footer {
    position: relative;
    clear: both;
    height: 40px;
    width:100%;
    margin-top: 2px;
    margin-bottom: 2px;
  }

  #rightcol {
    float: left;
    width: 47%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0cm;
    bottom: auto;
    text-align: left;
    text-indent: 0cm;
    font-family: helv;
    font-size: 10pt;
    overflow: visible;
    background-color: white; 
    z-index: 3;
  }

  #navbar1 {
    position: relative;
    height: auto;
    left: 0;
    right: auto;
    top: 0;
    margin-bottom: 0;
    text-align: left;
    padding-left: 0.6cm;
    text-indent: -0.3cm;
    overflow: visible;
    width: 80%; 
    border: none;
    z-index: 3;
  }

  #navbar2 {
    padding-left: 0.6cm;
    text-indent: -0.3cm;
    overflow: visible;
    width: 80%; 
    border: none;
    z-index: 4;
  }
/* code to make two images fade into each other rather than abruptly switching on mouse over */
div.fader img { -webkit-transition: all 1s ease-in-out; -moz-transition: all 1s ease-in-out; }
img.swap1, div.fader:hover img.swap2 { opacity: 1.0; }
div.fader:hover img.swap1, img.swap2 { opacity: 0; } 

