/*
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/
*/
table.quotes { margin: 20px auto; font-size: 0.86em; line-height: normal; }
.quotes td { border-top: 1px solid; padding: 2px 10px; }
.format_text acronym, .format_text abbr { font-size:1em; border-bottom:thin dashed; }
.format_text p { margin-left:0.6em; margin-bottom:1em; }
.format_text { font-size:1.25em; line-height:1.45em;}
.format_text h4 { margin-left:0.3em; font-variant:small-caps; font-size:1.3em; margin-bottom:1em;}
.format_text blockquote { margin-left:1.5em; }
.format_text ul, .format_text ol { margin-left:2.2em; }
.format_text strong { font-size:1em; }
.comments_intro span { font-size:1.2em; }
dl#comment_list dt .comment_author { font-size:1.3em;}
#commentform input.form_submit { font-size:1em; }
li.widget ul li { margin-bottom:0.3em;}

table.pugitable1 {margin:10px auto; }
.pugitable1 table, .pugitable1 td, .pugitable1 th {border:1px solid black;}
.pugitable1 th, .pugitable1 td {padding:1px 5px; vertical-align:top}
.pugitable1 th {text-align:left;}  
.pugitable1 thead {background-color:#EEEEEE;}
.pugitable1 td.eval {padding:0; width:15px;}
.pugitable1 td.green {background-color:#00FF00; color:#00FF00;}
.pugitable1 td.white {background-color:#FFFFFF; color:#FFFFFF;}
.pugitable1 td.yellow {background-color:#FFFF00; color:#FFFF00;}
.pugitable1 td.orange {background-color:#FFA500; color:#FFA500;}
.pugitable1 td.red {background-color:#FF0000; color:#FF0000;}
.format_text p {color:#333333;}
.format_text strong {color:#000000; font-weight:normal;}


