/* LeftMenu.css */
/* Universal selector */
/* Remove all default margins and padding */
* {
  /* Block all browser default margins and padding */
    margin:0;
    padding:0;
  /* Temporary borders */
     /*border:dashed 1px #f00;*/
}

body
{
  font-family: Geneva, Tahoma, sans-serif;
  text-align:center;
  background-color:#fff;
  margin: 20px auto 0 auto;
}

.BorderGray
{	
	color:#8a8983;
	height: 10px;
}

/* Applies to id="wrapper" */
#wrapper{
  width:62em;
  background-color: #fff;
  /* Center the wrapper */
  margin: 0 auto;
}

/* Applies to id="branding" */
#branding{
 position:relative;
} 

/* Fixes the mysterious image gap, if it occurrs */
#branding img{
  display:block;
}

#content{
  /* Left margin must match leftcolumn width */  
  margin: auto;
  background-color:#fff;
  border-top: solid 5px #8a8983;
  color:#000;
  padding:10px 20px;
}

/* Styles h1, h2, and h3 style rules in the content division */
#content h1, #content h2, #content h3{
	font-family: "Apple Chancery" "Brush Script MT", "Monotype Corsiva", cursive;
	color:#000;
}

/* Styles p, ul, and ol style rules in the content division */
#content p, #content ul, #content ol
{
  text-align:left;
  font-size:0.8em;
  line-height:1.25em;
} 

/* Styles for ul, and ol - adding padding - in the content division */
#content ul, #content ol
{
  padding: 5px 0px 5px 30px; 
} 

/* Applies to id="footer" */
#footer
{    
  margin: 0;
  padding: 0;
  border-top: solid 5px #8a8983;
  font-size:12px;
  font-weight:800;
  color:#000;
}