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

	  a,   a:visited { color: #090; }	<--- This makes links green
	  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   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/
*/

/* Reset */
	body{font:helvetica,arial,clean,sans-serif;*font-size:small;*font:x-small;}table{font-size:inherit;font:100%;}select,input,textarea{font:99% arial,helvetica,clean,sans-serif;}pre,code{font:115% monospace;*font-size:100%;}body *{line-height:1.22em;}
	body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
	table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}
	address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
	caption,th {text-align:left;}
	h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;}
	em{font-style: italic;}
	strong{font-weight: bold;}
	.clear:after{content:'.';display:block;height:0;font-size:0;clear:both;visibility:hidden;}
	.clear{display:inline-block;}
	.clear{display:block;}
	.image{display:block;font-size:0;text-indent:-9999px;outline:none;}
/* Reset */




/* undo thesis spacing */
	  ul#tabs { border: none; border-width: 0 0 0 0; }
	  #header { border-bottom: 0; clear: both; }
	 	#header { padding-top: 15px; padding-bottom: 15px; }
	  #header_area .page { padding-top: 0; }
	  #header { padding-right: 0; padding-left: 0; }
/* undo thesis spacing */

body  {
	text-align: center;
	color: #333;
	background: #28313a url('./images/background.gif') repeat-x top;
	font-family: Helvetica, Arial, sans-serif;
}

  a {
	color: #0078C8;
	text-decoration: underline;
}
  a:hover {
	color: #0095f8;
	text-decoration: underline;
}


/* header */
	#header_area{
		background: #3776bd url('./images/header_background.gif') repeat-x bottom;
		width: 100%;
		border-bottom: 1px solid #3776bd;
	}
	
	#header #logo {
		font-size: 23px;
		font-weight: bold;
		width: 840px;
		text-shadow: 1px 0px #2B4462;
		letter-spacing: -1px;
		text-align: left;
		margin: 0 0 0!important;
	}
	
	#header #logo a { 
		color: #fff;
		text-decoration: none;
	}
	
	#header #logo a:hover {
		color: #fff;
		text-decoration: underline;
	}	
/* header */


/* columns */
	  #sidebars {
		display: block;
		width: 200px;
		float: left;
		padding: 0 0 0 0;
		font-size: 13px;
	}
	  #content{
		width: 600px;
		float: right;
		padding: 0 20px;
	}
	  #content_area .page { 
		text-align: left;
		width: 840px;
		/* padding: 20px; */
		margin: auto;
		background: #fff url('./images/wrapper.gif') repeat-y left;
		background-position: -60px 0px;
		border-right: 2px solid #242c34;
		border-left: 2px solid #242c34;
	}
/* columns */

/* content area */
	  .full_width .page { width: 840px; margin: 0 auto; padding-right: 0; padding-left: 0; }
	
	  #content_box { 
		background: none;
	}
/* content area */

/* sidebar */
	  .sidebar h3 { font-variant: normal; letter-spacing: -1px; color: #555; margin-bottom: 8px;}
	  li.widget { list-style: none; }	
/* sidebar */


/* footer */
	  #footer { background: #000; border-top: 0; text-align: left; clear: both; }

	  div#footer a {
		color: #ccc;
		text-decoration: none;
		border-bottom: 1px solid #222;
		font-weight: bold;
	}
	  div#footer a:hover {
		color: #fff;
		border-bottom: 1px solid #444;
	}	
/* footer */

abbr, acronym { 
	line-height: 1em; 
	text-transform: none; 
	border-bottom: none; 
	cursor: auto;
}
.headline_meta abbr {
	font-style: normal;
	text-transform: none;
}


h2, h3, h4, h5, h6 {
	color: #000;
}
  h2 {
	font-size: 28px;
	margin: 0 0 8px!important;
	letter-spacing: -1px;
}
  h2 a {
	color: #000;
	text-decoration: none;
}
  h2 a:hover {
	color: #000;
	text-decoration: underline;
}

.post_box { padding-top: 15px; margin: 0 1em 0 1em;  }
.title h1, .title h2, h1.entry-title, h2.title, .headline_area h2 { font-size: 28px; line-height: 1.364em; letter-spacing: -1px; }
.sidebar h3 { font-size: 1.4em;}

p {
	margin: 0 0 20px;
	font-size: 13px;
	line-height: 20px;
}

/* */
	li.widget {
		margin: 0 0 20px;
		padding: 0 0 10px;
		border-bottom: 1px dotted #ccc;
	}
	.entry-content {
		/* border-bottom: 1px dotted #ccc;*/
	}
	  div.top {
	/*
		padding: 0 0 10px;
	*/
		margin-top: 0;
	}

/* */

div#search {
	background: #000;
	width: 100%;
	height: 44px;
}

.top_ten p {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 13px;
	line-height: 20px;
	margin: 3px;
}

.top_ten { 
	font-family: Georgia, "Times New Roman", Times, serif; 
	font-size: 11.2px; 
	line-height: 16.8px;
}

.school_details {
	margin-top: 25px;
}



/*  dfw  */
	.dfw_searchbutton  {
	    color:#fff;
	    font-weight:bold;
	    font-size:14px;
	    cursor:pointer;
	    width:138px;
	    height:33px;
	    background:url('./images/find_now.gif') no-repeat;
	    border:0px;
	    font-style:oblique;
	    font-family: Arial, Helvetica, sans-serif!important;
	    margin-left:0;
	    margin-top:0;
	}
	
	.dfw_searchbutton:hover {
	    background:url('./images/find_now.gif') no-repeat bottom;
	}
/*  dfw  */


.headline_area { margin-bottom: 0; }
ul.sidebar_list { padding-top: 1.7em; }
.content_dfw { font-size: 13px; }
.post_box, .post_box li { font-size: 13px; font-weight: normal; margin-top: 3px;}
.post_box ol {margin-top: 15px;}
.format_text h2, .format_text h3 { margin: 1.0em 0 0.611em 0; }

.custom .full_width #content_box .page { margin: 0 2.2em 0 2.2em; }


/*---:[ top 5 table ]:---*/



.custom .format_text table#top5 {

	font-family: Helvetica, Arial, sans-serif;

	font-size: 13px;

	line-height: 20px;

}



.custom .format_text table#top5 tr td {

	padding-bottom: 30px;

}



.custom .format_text table#top5 tr td.toptendfw_details {

	padding-left: 20px;

}



.custom .format_text table#top5 tr {

	vertical-align: top;

}

.custom ol.bk_clear li { clear: right; }
.custom .post_box li { margin-bottom: 20px; }
.custom .teasers_box { width: 98%; margin: 0px 1em; }
.custom .teaser { width: 48%; }