/*
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/
*/

body {
 background: #fff url("http://www.hoopworldbasketball.com/images/bg.gif") repeat;
 color: #000; 
}

/* data table style  */
table {
	border: 1px solid #CCB;
	margin-bottom: 2em;
	width: 100%;
}
table th {
	background: #E5E5E5;
	border: 1px solid #D5D5D5;
	color: #555;
	text-align: left;
}
table tr {border-bottom: 1px solid #DDD;}
table td, table th {padding: 5px;}
table td {
	background: #F5F5F5;
	border: 1px solid #E0E0E0;
}

img.bordered, img.alignleft, img.alignright, img.aligncenter {
 background-color:#FFFFFF;
 border:1px solid #DDDDDD;
 padding:3px;
}

.custom #page {
 background: #006699 url("http://www.hoopworldbasketball.com/images/blue_spacer2.gif") repeat-y 50% 0;
}

.custom #content_box {
 background: #006699 url("http://www.hoopworldbasketball.com/images/blue_spacer2.gif") repeat-y 50% 0;
}

.custom #content {
 background-color: #eeeeee;
 min-height: 600px;
}

.custom #container {
 background-color: #eeeeee;
 margin: 0 auto;
 border: 3px solid #E0E0E0;
}

.custom #sidebars {
 background-color: #006699;
 display:block;
 font-weight:bold;
 text-decoration:none;
}

.custom h2, .custom h2 a {font-weight: 700; font-size: 20px; color: #445566;}

.custom #header {
	width: 100%;
	height: 243px; /* height of the header image */
	background: url("http://www.hoopworldbasketball.com/images/hoopschedule.jpg") repeat-x 0% 0%;
  border-bottom:3px solid #cecece;
  padding:0;
  margin:0;
}

.custom #footer {
	width: 100%;
	clear: both;
	border-top: 3px solid #cecece;
	text-align: center;
  font-size: 12px;
	padding: 5px 0;
	color: #ffffff;
	background: #666;
  line-height: 2.5em;
  text-decoration: none;
}

.custom #footer a { 
  color: #fff;
  font-size: 12px; 
}

.custom #footer a:hover { 
  color: #orange;
  font-size: 12px; 
}

/* Custom Styling for Vertical Nav Menu in Sidebar */

.custom ul#tabs {
	font-family: arial,serif;
  list-style-type:square;
  list-style-position:outside;
}

.custom ul#tabs li {
	font-family: arial,serif;
	display: block;
	float: none;
	border: none;
	background: none;
	padding:0;
  margin-left:20px;
  list-style-type:square;
  list-style-position:outside;
}

.custom ul#tabs, ul#tabs li a, ul#tabs li a:visited {
	font-family: arial,serif;
	font: normal 1.1em arial,sans-serif;
	padding: 0;
	letter-spacing: 0;
	font-style: normal;
	font-variant:  normal;
	font-weight: bold;
	line-height: 1.8em;
	font-size-adjust: none; 
	color: #fff; 
	text-decoration: none; 
	border: none; 
	text-transform: none;
}

.custom ul#tabs li a:hover {
	color: orange;
  text-decoration: none;
}

/* Hide Surplus Subscription Link */
ul#tabs li.rss {
display: none;
}

/* hide sidebar titles */
.custom .sidebar h3 {
 font-size:1.5em;
 /* line-height:1.385em; */
 margin-bottom:0.692em;
 display: none;
}
.custom .sidebar h3 {
 color:#ffffff;
 letter-spacing:2px;
}

.custom .comments_closed {
 display: none;
}

.custom .to_comments {
 display: none;
}

.custom author vcard fn {
 display: none;
}

/* Fix Fonts in Sidebar Widgets */

li.widget {
	font-size: 12px;
}

li.widget h3 {
	font-family: Georgia,"Times New Roman",Times,serif;
	padding: 0;
	letter-spacing: 0;
	font-style: normal;
	font-variant:  normal;
	font-weight: normal;
	font-size-adjust: none; 
	color: #237fa1; 
	text-decoration: none; 
	border: none; 
	text-transform: none;
}

.custom li.widget a:hover { 
	color: orange;
}

