/*
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 mm box size*/
.custom #custom_box {  width: 10em; height: 10em; }


/* DoubleMule Clickable Header v. 1.0 */

.custom #header 
{
background: #ffffff;
padding-top: 0em;
padding-right: 0em;
padding-bottom: 0em;
padding-left: 0em;
border-top: 0em;
border-right: 0em;
border-bottom: 0em;
border-left: 0em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
}

.custom #header #logo a
{
display:block;
width:946px;
height:172px;
background:url(http://hirschacademy.org/school/wp-content/uploads/2009/12/Hirsch-Header-946.jpg) center no-repeat;
color:#000000;
text-indent: -9999px;
padding-top: 0em;
padding-right: 0em;
padding-bottom: 0em;
padding-left: 0em;
border-top: 0em;
border-right: 0em;
border-bottom: 0em;
border-left: 0em;
margin-top: 0em;
margin-right: 0em;
margin-bottom: 0em;
margin-left: 0em;
}

.custom #header #tagline 
{
color:#000000;
text-indent: -9999px;
}

.custom #multimedia_box img {
border:medium none;
padding:0;
}

/*border and color around mm box*/
.custom #multimedia_box {border: none; }
.custom #multimedia_box {background-color:#ffffff; }

/*
.custom #header {border-bottom:0;}
.custom #feature_box {border:0;}

.custom ul#tabs { border-bottom:0;}
*/

/* make dropdowns work */
/*
.custom ul#tabs li ul {display:none; position:absolute; list-style:none;}
	.custom ul#tabs li ul li {float:none;}

.custom ul#tabs li:hover ul {display:block;}
*/

.custom .menu {border-bottom:none;}


.menu .tab {width:106px; text-align:center;}
.menu .cat-item {width:120px;}





/*make "comments are closed" disappear */
.custom .comments_closed { display: none; }

/* css for staff listing table */
table.staff 
{
font: 12px "Trebuchet MS", Verdana, Arial, Helvetica,
	sans-serif;
}

table.staff  tr.even td {
      padding: 4px;
vertical-align: top;
background-color: #E1D09C;
    }

table.staff  tr.odd  td {
padding: 4px;
vertical-align: top;
      background-color: #fff;
    }