/*
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 #header {
  margin-left: auto;
  margin-right: auto;
  height: 0px;
  margin: 0;
  padding: 20px 0px 0px 0px;
  border: 0;
}

body.custom {
  background-color: white;
}

.custom #container {
  background: url(/images/background.jpg) center top no-repeat;  
  margin-top: 0px;
  padding-top: 0px;
  margin-bottom: 20px;
  width: 950px;
  border: solid 1px white;
  min-height: 600px;
}

.custom #page {
  margin-left: 83px;
  margin-top: 91px;
  padding-top: 0px;
  width: 763px;
  border: solid 1px black;
  background: white;
  opacity: 0.90;
  filter: alpha(opacity=90);
  font-size: 10px;
}

.custom #content_box {
}

.custom #content_box .no_sidebars {
}

.custom .comments_closed p {display: none ;}

.custom #posthtml {
  margin-top: -20px;
  margin-bottom: 15px;
  width: 100%;
  text-align: center;
  font-size: 11px;
  border-bottom: 10px;
}

.custom #pagebottom {
  margin-left: auto;
  margin-right: auto;
  height: 30px;
  width: 785px;
}

.custom #footnote {
  margin-left: auto;
  margin-right: auto;
  height: 125px;
  padding-top: 35px;
}

.custom #footnote img {
  margin-left: 10px;
}

.custom .menu a, .menu .current ul a, .menu .current-cat ul a { background: none; }

.custom li.tab {
  border-left: solid thin black;
}

.custom li.tab-home {
  border-left: none;
}

/* Navigation Links */
#navi a {
	font-family: "Times New Roman", Times, serif;
	font-size: 11px;
	color: #000000;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 1px;
}
#navi a:hover {
	text-decoration: underline;
}
#navi {
	padding-top: 0px;
}
.whole_divider {
	width: 720px;
	height: 1px;
	background: #000000;
	overflow: hidden;
	margin: 15px 0px 10px 0px;
}
table.schedule th, table.schedule td {
	border: solid thin grey;
}
table.borderless th, table.borderless td {
	border: none;
}
table.books tr
{
	text-align: center;
	width: 33%;
}
img.amazon
{
	margin-bottom: -10px;
}
.menubox {
	float: left;
	width: 160px;
	height: 100%;
}
.tcl_columns      {width:165px; float:left; position:relative; z-index:100; overflow:auto;}
.tcl_float        {float:left; display:inline;}
.tcl_content      {margin: 0px 15px 15px 15px; padding: 0 0 0 0; border: 0 0 0 0;}

#tcl_float  {background-color:#CCC;}
#tcl_center {margin-left:165px; margin-right:165px; width:400px!important; position:relative;}
#tcl_left   {margin-left:-155px; width: 150px; }
#tcl_right  {margin-right:-184px; float:right; margin-left: 10px;}

/* Inside Page Links */
#inside_navi {
	font-size: 13px;
	padding: 5px 0px 10px 0px;
}
#inside_navi a {
	font-family: "Times New Roman", Times, serif;
	font-size: 13px;
	color: #356c22;
	text-decoration: none;
	text-decoration: none;
}
#inside_navi a:hover {
	text-decoration: underline;
}

#tcl_content.headline_area {margin: 0 0 0 0; padding: 0 0 0 0; border: 0 0 0 0;}
#tcl_content.headline_area h1, #tcl_content .headline_area h2 { font-size: 1.5em; margin-bottom: 0; margin-top: 10px; padding-top: 0; padding-bottom: 0; border-top: 0; border-bottom: 0;}

.center_text {
	width: 100%;
	text-align: center;
}
