body {
  margin: 0px;
  padding: 0px;
  font-family: Arial, Verdana, Helvetica, sans-serif;
  font-size: 11px;
  text-align: center; /* IE hack to get the page centered */
  color: #FFFFFF;
  background: #B72C33 url('images/body-bg.jpg') repeat-x;
  overflow: auto; /* Hide IE scrollbar if not needed */
  /*
  scrollbar-face-color: #cccccc;
  scrollbar-highlight-color: #cccccc;
  scrollbar-3dlight-color: #999999;
  scrollbar-darkshadow-color: #999999;
  scrollbar-shadow-color: #cccccc;
  scrollbar-arrow-color: #ffffff;
  scrollbar-track-color: #ffffff;
  */
}
 
#container{ 
  margin: 0px auto; /* Right and left margin widths set to "auto" */
  padding: 0px;
  width: 760px;
  text-align: left; /* Counteract to IE5/Win hack*/
} 
 
#header {
  width: 760px;
  height: 196px;
  background-color: #A61016;
}

#header-image img {
  border: none;
}

#header-title {
  visibility: hidden;
}

#main {
  width: 760px;
  background: #A61016 url('images/main-bg-shadow.jpg') repeat-y top;
}

#content {
  overflow: hidden; /* This hides the excess padding in non-IE browsers */
  padding-top: 10px;
  padding-bottom: 40px;
  background: transparent url('images/main-bg.jpg') no-repeat scroll bottom center;
}

/* we need this for IE 5.01 - otherwise the wrapper does not expand to the
necessary height (unless fixed, this problem becomes even more acute 
weirdness as the method is enhanced */
#content {
  /* Normally a Holly-style hack height: 1% would suffice but that causes 
  IE 5.01 to completely collapse the wrapper - instead we float it */
	float: left;
  /* NB. possibly only IE 5.01 needs to get this float value - otherwise 5.5 sometimes 
  (I saw it happen many moons ago) makes the width of wrapper too small 
  the float: none with the comment is ignored by 5.01,
  5.5 and above see it and carry on about their business
  It's probably fine to just remove it, but it's left here 
  just in case that many moons ago problem rears its head again */
	float/**/: none;
}

* html #content {
  overflow: visible; /* For IE we have to change it becouse same wird things happen with background image */
}

#menu ul {
  margin: 0px;
  padding: 0px;
}

#menu ul#submenu {
  padding-left: 12px;
}

#menu {
  padding: 8px;
}

#menu li {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  list-style-image: none;
}
/*
How To Clear Floats Without Structural Markup
http://www.positioniseverything.net/easyclearing.html
*/
.clear:after {
    content: "."; 
    display: block; 
    height: 0px; 
    clear: both; 
    visibility: hidden;
}

.clear {
    display: inline-table; /* Fix for IE Mac */
    /* display: inline-block; */
} 

/* Hides from IE-mac \*/
* html .clear { height: 1%; }
.clear { display: block; }
/* End hide from IE-mac */



