/*
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/
*/

h1 { 
padding-bottom: .3em;
}

.comments_closed { display: none; }
.homepage .headline_area,.betterpage .headline_area  { display: none;}

.homepage ul#sectionlist {
  list-style-image:none;
  list-style-position:outside;
  list-style-type:none;
  padding-top: 20px;
}

.homepage li.sectionitem {
  width: 40%;
  float: left;
  padding: 10px;
}

.homepage img.sectionpic {
  vertical-align: middle;
  padding-right: 5px;
}

/* http://www.cssplay.co.uk/boxes/four_cornered.html */
.homepage dl.curved {background:#7f7f9c url(http://howto.ccs.neu.edu/wp-content/images/c_tl.gif) top left no-repeat; margin:0px auto 30px auto; padding:0; clear: both; }
.homepage dl.curved dt {background:transparent url(http://howto.ccs.neu.edu/wp-content/images/c_tr.gif) top right no-repeat; padding:10px; text-align:center; color:#fff;}
.homepage dl.curved dd {background:#eee url(http://howto.ccs.neu.edu/wp-content/images/c_bl.gif) bottom left no-repeat; padding:0; margin:0;}
.homepage dl.curved dd p {margin:0; padding:10px; line-height:1.3em;}
.homepage dl.curved dd p.last {background:transparent url(http://howto.ccs.neu.edu/wp-content/images/c_br.gif) bottom right no-repeat; }
.homepage p#iespace { line-height: .001em; } /* thank you IE devel team! */

.homepage div#searchdiv { margin:0px auto 20px auto; padding:0 0 20px 0px; width: 48%; float: left; }
.homepage .search_form .text_input { width:70%;}
.homepage img#searchpic {
  padding-right: 5px;  text-align: center; float: left;
}
.homepage div#searchdiv br { display: none; } /* thank you wordpress editor! */

.homepage img#helppic {
  padding-right: 5px;  text-align: center; float: left;
}
.homepage div#helpdiv { margin:0px auto 20px auto; padding:0 0 20px 0px;float: left; }

.wp-table-reloaded {
	background-color:#CDCDCD;
	margin:10px 0px 15px 0px;
	width:100%;
	text-align:left;
}
.wp-table-reloaded th {
	background-color:#E6EEEE;
	border:1px solid #FFFFFF;
	padding:4px;
}
.wp-table-reloaded td {
	color:#3D3D3D;
	padding:4px;
	background-color:#FFFFFF;
	vertical-align:top;
}
.wp-table-reloaded .even td {
	background-color:#FFFFFF;
}
.wp-table-reloaded .odd td{
	background-color:#F0F0F6;
}
.wp-table-reloaded .header {
	background-image:url(http://howto.ccs.neu.edu/wp-content/plugins/wp-table-reloaded/img/bg.gif);
	background-repeat:no-repeat;
	background-position:center right;
	cursor:pointer;
}
.wp-table-reloaded .headerSortUp {
	background-color:#8DBDD8;
	background-image:url(http://howto.ccs.neu.edu/wp-content/plugins/wp-table-reloaded/img/asc.gif);
}

.wp-table-reloaded .headerSortDown {
	background-color:#8DBDD8;
	background-image:url(http://howto.ccs.neu.edu/wp-content/plugins/wp-table-reloaded/img/desc.gif);
}

