﻿/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}

body {
  text-align: center; /* Centers the page content container in IE 5 browsers. */
  margin:  0 auto; 
  padding: 0 0 0 0; 
  background-color: #808080;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #2e2d2c;
  line-height: 16px;
}

h1 {
  color: #510102;
  line-height: 26px;
  font-size: 20px;
  font-weight: bold;
  padding-top: 5px;
  margin-top: 5px;
}

h2 {
  color: #510102;
  line-height: 18px;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 0PX;
}  

/* Removes spacing after heading and before paragraph */
h2 + p {
  margin-top: 0;
}

/* Removes spacing after heading and before list */
h2 + ul {
  margin-top: 0;
}

h3 {
  line-height: 16px;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  padding-top: 10px;
}  

h3 + p {
  margin-top: 0;
}

h4 {
  line-height: 16px;
  color: #000;
  font-size: 13px;
  font-weight: bold;
  padding-top: 10px;
}  

h4 + p {
  margin-top: 0;
  margin-bottom: 70px;
}

h5 {
  line-height: 16px;
  color: #000;
  font-size: 12px;
  font-weight: bold;
  padding-top: 10px;
  text-indent: 25px;
}  

#wrapper { 
 margin: 0 auto;
 width: 800px;
}

#header {
 color: white;
 width: 780px;
 height: 150px;
 margin: 0;
 padding: 0;
 background: url('../images/Header.jpg') no-repeat;
 float:left;
}

#collage {
  width: 780px;
  padding: 0;
  margin: 0;
  /*border-bottom: 2px solid #000000;*/
  background: url('../images/collagebar.jpg') 0 0 no-repeat;
  float: left;
}
  
/* Used to style the nav bar */
div#navbar {
   height: 26px;
   width: 780px;
   border-bottom: solid #404040 3px;
   background-color: #510102;
   float: left;
}
div#navbar ul {
   margin: 0px;
   padding: 0px 13px 0px 13px;
   font-family: Arial, Helvetica, sans-serif;
   font-size: small;
   /*font-weight: bold;*/
   color: #FFF;
   line-height: 26px;
   white-space: nowrap;
}
div#navbar li {
   list-style-type: none;
   display: inline;
}
div#navbar li a {
   text-decoration: none;
   color: #FFF;
   padding: 7px 15px;
}
div#navbar li a:link {
   color: #FFF:
}
div#navbar li a:visited {
   color: #fff;
}
div#navbar li a:hover {
   color: #000;
   background-color: #C0C0C0;
}

#contentWrapper {
 margin-bottom: 0px;
 overflow: auto; /* Fix for IE */
 clear: both;
 text-align: left;
 background-color: #E7E7E7;
 width: 780px;
 float: left;
}

#content {
 overflow: auto; /* Fix for IE */
 clear: both;
 text-align: left;
 width: 730px;
 margin: 20px;
 float: left;
}

div#content ul li {
   margin: 0px;
   color: #000;
   list-style: disc;
}

img {
  vertical-align: bottom;
} 

blockquote {
	font: 12px/18px Arial, Verdana, Helvetica, sans-serif;
  	background-color: #C0C0C0;
	/*background-image: url('../images/blockquote/OpenQuote.gif');
	background-repeat: no-repeat;
	background-position: 2% 2%;*/
	margin-left: 20px;
  	border-top: 3px solid #000;
  	border-bottom: 3px solid #000;
	font-style: italic;
  	width: 250px;
  	color: #000;
  	clear: both;
  	float: right;
}

blockquote p {
	/*background-image: url('../images/blockquote/CloseQuote.gif');
	background-repeat: no-repeat;
	background-position: 95% 95%;*/
	display: block;
	text-indent: 15px;
	padding-left: 20px;
	padding-right: 25px;
	padding-top: 8px;
}

blockquote .source {
	font-family: Arial, Verdana, Helvetica, sans-serif; 
	font-size: 90%;
	font-style: normal;
	font-weight: bolder; /* Styles the source of the quote */
	color: #404040;
	padding: 0px 20px 10px 0px;
	text-align: right;
	background: none;
}

.hr {
  background: url('../images/hr.jpg') no-repeat;
  width: 521px;
  margin: 20px 0px 20px 50px;
}

.testimonial {
  line-height: 16px;
  color: #000;
  font-size: 12px;
  font-weight: bold;
}  

.reference {
  line-height: 16px;
  color: #404040;
  font-size: 12px;
  font-weight: normal;
  padding: 20px 0px 30px 20px;
}  

.credits {
  font-style: italic;
}  

#footer { 
  background-color: #404040;
  border-top: solid 1px #808080; /* Sets the top border properties for an element using shorthand notation */
  padding: 10px 0px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  line-height: 14px;
  color: white;
  font-size: 11px;
  text-align: center;
  width: 780px;
  float: left;
  margin-bottom: 0px;
}

.clear { clear: both; background: none; }

