/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/


.custom ul#tabs li ul {display:none; position:absolute; list-style:none;}
	.custom ul#tabs li ul li {float:none;}
	
body {
	margin: 0px;
	padding: 0px;
	color: black;
	background-color: #d3c38b;
}

a, h1, h2, h3, #sidebars h1, #sidebars h2, #sidebars h3, #footer a, .entry-title {
  color: #550000;
  border: none;
}
	
#header {
	background-color: black;
        border: none;
	height: 130px;
        padding: 0px;
}

#header_area {
  background-color: black;
}

#header_area .menu {
  position: absolute;
  display: block;
  top: 102px;
  border: none;
  font-size: 10px;
}

#header img {
  float: left;
}

#headerSWF {
   float: left;
}



#content {

}

.headline_area h1 {
  font-weight: bold;
  color: #550000;
}

/* Navigation Menu */

.tab {
 padding-right: 1px;
} 




/* Sidebar CSS */


#sidebars {

}

#wpng-calendar h2 {
  font-size: 130%;
  font-variant: small-caps; 
  letter-spacing: 2px;
}


/* */

#footer {
  color: black;
}

.teaser {
  padding-top: 2.2em;
}

.teaser .entry-title {
  font-weight: bold;
  color: #550000;
}

.teaser_right {
  padding-top: 2.2em;
  padding-bottom: 0px;
}

 .teasers_box {
  border: 0px;
  padding: 0px;
}

/* podcast */

#podcastLinkSidebar {
  line-height: 24px;
}

#podcastLinkSidebar img {
  float: left;
  padding-right: 5px;
}

/*     */

#container .wufoo {
  font-size: inherit;
  margin-left: 0px;
}

#saveForm {
  font-size: 10px;
}

/* align left and align right fixes */

img.centered, .aligncenter, div.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}

img.alignright {
padding: 4px;
margin: 0 0 2px 7px;
display: inline;
}

img.alignleft {
padding: 4px;
margin: 0 7px 2px 0;
display: inline;
}

.alignright {
float: right;
}

.alignleft {
float: left;
}

/* Staff Page boxes */

.staff1, .staff2, .staff3, .staff4, .elder1, .elder2, .elder3, .elder4 {
display: block;
width: 140px;
height: 140px;
margin-top: 5px;
margin-bottom: 30px;
float: left;
/* background-color: #eeeeee;
border: 1px solid #dddddd;
-moz-border-radius: 5px; 
-webkit-border-radius: 5px; */
text-align: center;
}

.staff1 img, .staff2 img, .staff3 img, .staff4 img, .elder1 img, .elder2 img, .elder3 img, .elder4 img {
padding-top: 5px;
}

.staff1, .staff2, .staff3, .elder1, .elder2, .elder3 {
  margin-right: 10px;
}

.staff1, .elder1 {
  margin-left: 10px;
}


.staff4, .elder4 {
clear: right;
}

/* Pages :  menu navigation buttons  */

.buttons {
  width: 270px;
  height: 60px;
  margin: 10px;
  padding: 10px;
  border: 1px solid #efefef;
  display: inline-block;
  background-color: #E3E0D8;
  border: 1px solid #dddddd;
  -moz-border-radius: 5px; 
  -webkit-border-radius: 5px;

}

.buttons h3, .buttons a {
  padding-top: 0px;
  margin-top: 0px;
  text-transform: uppercase;
  color: #4A443D;
  text-decoration: none;
}

.buttons p {
  color: #999999;
  font-size: 90%;
  text-decoration: none;
}

.buttons h3:hover {
   cursor: pointer;
   text-decoration: underline;
}