/* 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;
	
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #fff;
  color: #3d2402;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: 13px;
  line-height: 15px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
.interpretation #outerWrapper #header ul#navigation #interpretation a,
.news #outerWrapper #header ul#navigation #news a,
.events #outerWrapper #header ul#navigation #events a,
.history #outerWrapper #header ul#navigation #history a,
.friends #outerWrapper #header ul#navigation #friends a,
.gallery #outerWrapper #contentWrapper #rightColumn1 ul#secondarynav li#gallery a,
.map #outerWrapper #contentWrapper #rightColumn1 ul#secondarynav li#map a,
.video #outerWrapper #contentWrapper #rightColumn1 ul#secondarynav li#video a,
.feedback #outerWrapper #contentWrapper #rightColumn1 ul#secondarynav li#feedback a
 {
background-position:right top;}
.interpretation #outerWrapper #header {
background-image: url(images/swheader_interpretation.jpg);}
.history #outerWrapper #header {
background-image: url(images/swheader_history.jpg);}
.events #outerWrapper #header {
background-image: url(images/swheader_events.jpg);}
.news #outerWrapper #header {
background-image: url(images/swheader_news.jpg);}
.friends #outerWrapper #header {
background-image: url(images/swheader_friends.jpg);}

/* Commonly used to style page titles. */
h1 {
  color: #3D2402;
  font-size: 20px;
  font-weight: bold;
  line-height: 15px;
  padding-bottom: 10px;
  padding-top: 15px;
}
/* Commonly used to style section titles. */
h2 {
  color: #3D2402;
  font-size: 16px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #3D2402;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #3D2402;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #3D2402;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #3D2402;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #3D2402;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 1000px;
	background-image: url(images/bgwraprepeating.gif);
	background-repeat: repeat-y;
	background-position: left top;
}
#outerWrapper #header {
	background-color: #ddd;
	background-image:  url(images/swheader.jpg);
	background-position: top left;
	background-repeat: no-repeat;
	font-size: 18px;
	font-weight: bold;
	line-height: 15px;
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 218px;
}
#outerWrapper #header h1 a {
position: relative;
text-indent:-5000em;
display:block;
top: 112px;
left: 200px;
width: 600px;
height: 35px;
}
#outerWrapper #header h1 {
padding: 0;}
#outerWrapper #header ul#navigation {
position: relative;
top: 155px;
left:63px;
list-style:none;
height: 28px;
width: 758px;
margin: 0;
padding: 0;
}
#outerWrapper #header ul#navigation li {
float: left;
text-indent:-5000em;
}
#outerWrapper #header ul#navigation li a {
background-repeat:no-repeat;
background-position:left top;
display: block;
height:28px;
}
#outerWrapper #header ul#navigation li#homelink a {
background-image:url(images/home_link.jpg);
width:148px;
}
#outerWrapper #header ul#navigation li#interpretation a {
background-image:url(images/interpretation.jpg);
width:141px;
}
#outerWrapper #header ul#navigation li#history a {
background-image:url(images/history.jpg);
width:113px;
}
#outerWrapper #header ul#navigation li#news a {
background-image:url(images/news.jpg);
width:92px;
}
#outerWrapper #header ul#navigation li#events a {
background-image:url(images/events.jpg);
width:107px;
}
#outerWrapper #header ul#navigation li#friends a {
background-image: url(images/ourfriends.jpg);
width:157px;
}
#outerWrapper #header ul#navigation li a:hover  {
background-position:right top;}


#outerWrapper #contentWrapper #rightColumn1 {
	float: right;
	padding: 25px 20px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 213px;
	background-image: none;
}
#outerWrapper #contentWrapper #rightColumn1 h2{
text-indent: -5000px;
}
#outerWrapper #contentWrapper #rightColumn1 ul#secondarynav {
width: 154px;
margn-left: 7px;
list-style:none;
margin: 0;
padding: 0;
}
#outerWrapper #contentWrapper #rightColumn1 ul#secondarynav li a{
text-indent: -5000px;
display:block;
background-position: left top;
background-repeat: no-repeat;
height: 75px;
width: 154px
}
#outerWrapper #contentWrapper #rightColumn1 ul#secondarynav li a:hover {
background-position: right top;}
#outerWrapper #contentWrapper #rightColumn1 ul#secondarynav li#gallery a {
background-image:url(images/gallery.gif);}
#outerWrapper #contentWrapper #rightColumn1 ul#secondarynav li#map a {
background-image:url(images/map.gif);}
#outerWrapper #contentWrapper #rightColumn1 ul#secondarynav li#video a {
background-image:url(images/video.gif);}
#outerWrapper #contentWrapper #rightColumn1 ul#secondarynav li#feedback a {
background-image:url(images/feedback.gif);}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  margin-bottom: 0;
  margin-right: 240px;
  margin-top: 0;
  padding: 25px 10px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  background-image:none;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */

#outerWrapper #contentWrapper .clearFloat {
  clear: right;
  display: block;
}
#outerWrapper #footer {
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(images/footerbg.gif);
	background-repeat: no-repeat;
	background-position: left top;
}
#outerWrapper #footer h2 {
text-align:center;
font-size:15px;
font-weight:bold;
margin-left: 0;
padding: 0;
padding-top: 20px;
}
#outerWrapper #footer ul {
text-align:center;
list-style-type:none;
}
#outerWrapper #footer ul li {
display:inline;
font-size: 0.9em;
text-align:center;
padding: 0 20px;
margin: 0 10px;
border-left: #330033 thin dotted;
border-right: #330033 thin dotted;
}
#outerWrapper #contentWrapper {
background-image:url(images/bgwraptop.gif);
background-position:left top;
background-repeat:no-repeat;}
#outerWrapper #contentWrapper #content .image {
float:right;
margin:5px 3px;
padding:0pt;
text-align:center;
}

#outerWrapper #contentWrapper #content .image h2 {
	background-color:#E1B500;
	border-bottom:3px solid #cc9966;
	font-size:.9em;
	font-style:italic;
	font-weight: bold;
	margin:0pt;
	padding:0pt 0pt 2px;
}

#outerWrapper #contentWrapper #content .image img {
display:block;
float:none;
margin:0pt;
padding:0pt;
}
#outerWrapper #contentWrapper #content ul {
list-style: none;
line-height:1.6;
}
#outerWrapper #contentWrapper #content ul li {
padding-left: 35px;
background-image:url(images/listid.gif);
background-position:0 4px;
background-repeat:no-repeat;
}
/************* Form styles in main area - content ******************/
#form1 {
margin: 2px;}
#form1 input, #form1 textarea {
margin: 2px 1px 4px 2px;
display:block;
}
#form1 label {
margin-left:5px;
display:inline;
clear:none;}
div#content fieldset{
margin-left: 2px;
padding-left: 0px;}
td.mgMainTxt a {
font-weight:bold;}
h2 small {
font-size:70%;
font-weight: normal;
}
.entry a{
font-weight:bold;
}
.entry img {
float:right;
border: 0;
margin: 3px;}
.entry blockquote {
background-color:#e2e2e2;
padding: 5px 10px;
margin: 0 15px;
border-left: #c9c9c9 7px solid;
}
#outerWrapper #contentWrapper #content #author
 {
position:relative;
float:left;
top: 10px;
left: 70px;
width: 275px;
height: 90px;
padding: 3px;
border: #FFCC33 thick dashed;}
#outerWrapper #contentWrapper #content td img.image {
display: block;
float:none;
}
.thumb_title {
float: none;}