@charset "UTF-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #87240a;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: small;
	background-color: #fbddc3;
}
#container {
	width: 955px; /* the auto margins (in conjunction with a width) center the page */
	border: 0px none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: small;
	color: #87240A;
	background-color: #fbddc3;
} 
#header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-color: #FBDDC3;
	background-image: url(assets/images/elements/banner_sculpted_wall.jpg);
	height: 195px;
	width: 955px;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	background-image: url(/assets/images/elements/banner_sculpted_wall.jpg);
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	background-image: url(assets/images/elements/nav_bar_pale.jpg1);
	background-repeat: no-repeat;
	margin: 0px;
	background-color: #FBDDC3;
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 170px; /* padding keeps the content of the div away from the edges */
	background-color: #fad2af;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
}
#mainContent {
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#main3column {
	margin-right: 200px;
	margin-left: 200px;
	padding-right: 20px;
	padding-left: 20px;
}
#footer {
	padding-bottom: 10px;
	clear: both;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 200px;
	width: 555px;
	text-align: center;
}
a:link {
	color: #0F9489;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: None;
	text-decoration: none;
	font-weight: bold;
}
a:hover {
	color: #19D0C1;
	font-family: "Trebuchet MS", Arial, sans-serif;
	text-decoration: none;
	font-weight: bold;
}
a:visited {
	color: #601806;
	font-family: "Trebuchet MS", Arial, sans-serif;
	text-decoration: none;
	font-weight: bold;
}

/* My Comment */
#footNav {
	color: #87240a;
	
}
#footNav li {
	list-style: none;
	display: inline;
	padding-right: 0px;
	text-decoration: none;
}
#footNav ul {
	padding: 0px;
	margin-left: 10px;
}
.p2 {
	font-size: 12px;
	text-align: left;
}
#location {
	text-align: right;
	width: 600px;
	float: right;
	margin-right: 10px;
	}
	
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
blockquote {
	background-color: #fad2af;
	margin: 10px;
	padding: 10px;
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 14px;
	font-style: italic;
}
h1 {
	font-size: 26px;
	font-style: normal;
	color: #601806;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
h2 {
	font-size: 18px;
	color: #601806;
}
h3 {
	font-size: 16px;
	color: #601806;
}
h4 {
	font-size: 12px;
}
h5 {
	font-size: 10px;
}
h6 {
	font-size: 8px;
}
p {
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 14px;
	color: #87240A;
}
.captions {
	font-size: 12px;
	font-style: italic;
	color: #601806;
}
.emphasis {
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: 16px;
	font-weight: bolder;
	text-transform: uppercase;
	color: #601806;
}
.description {
	font-size: 12px;
	font-weight: lighter;
}

