/* 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: #5678c4;
  margin: 20px auto 0 auto;
}

/* Applies to id="wrapper" */
#wrapper{
  width:60em;
  background-color: #5678c4;

  /* Center the wrapper */
  margin: 0 auto;
}

/* Applies to id="leftcolumn" */
#leftcolumn
{
  width: 11em;
  float:left; 
  font-weight:bold;
  color:#dbccbe;  
}

/* Applies to images in id="leftcolumn" */
#leftcolumn img
{
	border:solid 2px #000;
}

#content{
  /* Left margin must match leftcolumn width */  
  margin: auto auto auto 11em;
  background-color:#5678c4;
  background-image: url(../images/SedonaRock.jpg);
  background-repeat:no-repeat;
  color:#000;
  font-weight:bold;
  padding:10px 20px; 
  border:solid 4px #000;
}

/* Styles h1, h2, and h3 style rules in the content division */
#content h1 {
	font-family: "Apple Chancery" "Brush Script MT", "Monotype Corsiva", cursive;
	color:#dbccbe;
}

#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
{  
  /* Left margin must match leftcolumn width */  
  margin: auto auto auto 11em;
  font-size:12px;
  font-weight:800;
  color:#000;
}
