/* Stylesheet.css */
/* Body text and page background */ 
body {
  margin: 0px;
  font-family:"Book Antiqua", Times, Serif;
  font-size: medium;
  color:#000000;
  background-color: #ebf5fc;
 
  }
  	
/* Style for sidebar column */
#colleft {
float: left;
text-align: center; 
display: inline;
padding: 0;
margin: 0em;
width: 10em;

/* total width is 14em */
}
/* Style for sidebar column */
#colright {
float: right;
text-align: center; 
display: inline;
padding: 0;
margin: 0em;
width: 10em;

/* total width is 14em */
}
  #main {
   margin-top: 30px;
   margin-bottom: 1em;
       /* margin-left must equal */
       /* total width of left sidebar */
       margin-left: 10em;
	   margin-right: 10em;
	   padding: 10px;
	background-color: #ffffff;  
  border: solid 1px #ff0000;
    }
	 
  h1 {
  font-family: Papyrus, "Curlz MT", "Juice ITC", Algerian, fantasy;
  font-weight: bold;
  text-align:center;
  color: #fffded;
  }
  /* header and footer - element ID for item used only once on page */
  #header {
     height: 150px;
     width: 100%;
	 background-color: #121212;
	 border-bottom: thick solid #ff0000;
	 padding-top: 5px;
	 }
	 
  #footer {
     height: 45px;
     width: 100%;
	 color: #ffffff;
	 background-color: #121212;
	 border-top: thin solid #ff0000;
	 
	 padding-bottom: 20px;
	 }
	 #wrapper{
	 width:45em;
	 margin: 20px auto 0 auto;
	 border: solid 3px #ff0000;
	 background-color: #e2e6e0;
	 }
  /* Level 2 headings */
  h2 {
  font-family: Arial, Impact, Charcoal, fantasy;  
  text-align: center;
  color: #000000;
  }
  /* Level 3 headings */
  h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-style:italic;
  text-align: center;
      color: #000000;
	  clear: left; 
	  clear: right;
  }
  h4 {
   font-family: Arial, Helvetica, sans-serif;
  font-style:italic;
  text-align: center;
      color: #fffded;
	  }
  /* Generic style class for highlighting text */
  .hilite{
  background-color:#ffff00;
  }
  /* Paragraphs styled as tips */
  p.tip {
  background-color:#ACD095;
  margin-left:100px;
  margin-right:100px;
  padding:5px;
  border:solid thin #167A58;
  }
  /* Paragraphs styled as warnings */
  p.warning {
  background-color:#FFCCFF;
  margin-left:100px;
  margin-right:100px;
  padding:5px;
  border:solid thin #ff0000;
  }
 
  /* Float image to left of paragraph */
  img.floatLeft{
    float: left;
	margin-left: 10px;
		margin-top: 20px;
	}
/* Float image to right of paragraph */
img.floatRight{
    float: Right;
	margin-top: 20px;
	margin-right: 10px;
	}
	/* Center image between margins */
div.center{
	width: 100%;
	text-align: center;
	}
	
/* Custom bullet for bulleted lists */
ul{
list-style-image: url("bulletgold.png");
}
/* Style for table cells that contain thumbnails */
table.thumbs{
text-align: center;
border-collapse: collapse;
margin: auto;
}
/* Style for table cells that contain thumbnails */
td.thumbs{
border: solid 1px #00bfff;
padding: 10px;
}

/*Style for thumbnail images */
img.thumbs {
width: 100px;
height: 80px;
border-width: 0px;
} 




