/* TWO COLUMN LAYOUT */

body {
	text-align:center; /* IE6 needs this to center the layout in the browser window */
	}
#main_wrapper {
	max-width:1000px; /* sets max layout width */
	min-width:1000px; /* sets min layout width */
	margin-left:auto;  /* centers layout in browser */
	margin-right:auto; /* centers layout in browser */
	text-align:left; /* resets the centering hack for IE6 on the body tag */
	}
#header {
	/* background:url(../ae_1.jpg); */
	}
#nav {
	width:200px; /* this width + content width must total 100% */
	float:left; /* floats on nav and content divs make them sit side by side */	
	font: normal 1.1em Arial, Helvetica, sans-serif;
      background: #fff;
      overflow: hidden;
      border: 1px solid rgb(158,0,50);
      /* -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      border-radius: 0px 0px 2px 2px;
      box-shadow: 2px 2px 2px #79A6FF; */
      }
#content {
	/* default auto width */
	margin-left: 220px;
	min-height:350px;
	}
/* here comes a hack for IE6 */
/* floating this element gets rid of the gap between the nav and content - the hateful 3 pixel jog bug in IE */
/* if I float this element in other browsers, the layout breaks - don't remove this comment \*/
* html #content { 
	float:left; 
	}
/* end of hack - don't remove this comment */
#footer {
	border-top:5px solid rgb(158,0,50);
	clear:both; /* makes the footer sit below whichever column is longest */
	}
#header_inner, #nav_inner, #content_inner, #promo_inner {
	overflow:hidden; /* clips oversize elements that would otherwise expand divs and break the layout */
	}
#header_inner { 
	padding:1em 2em; /* creates space between the box  and the content */
	}
#nav_inner {
	padding:1em .5em; /* creates space between the box and the content */
	}
#content_inner { 
	padding:1em 1em 1em 1.5em; /* creates space between the box and the content */
	}
#footer_inner {
	padding:.5em 1em; /* creates space between the box and the content */
	text-align:center;
	}
#bottomMenu {
    display: none;
    position: fixed;
    bottom: 10px;
    width: 800px;
    border: 1px solid #000;
    z-index: 100;
	background-color: white;
	
}
* html {
