/*
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: #0000ff; }		<--- 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/
*/


/* This line removes thin border beneath the navigation tabs by making them 0px */
/* .custom ul#tabs { list-style: none; border: 0px solid #ddd; border-width: 0 0 0px 0px; } */
.custom #feature_box { background: #eee; border-bottom: 0px solid #ddd; }


/* This changes the navigation tabs color */

.custom ul#tabs li {color: #fff; background-color: #caca0e; } /*b5b52c*/

.custom ul#tabs li a:hover {color: #fff; text-decoration: none; background-color: #00b0f0; line-height: 2em;}
.custom ul#tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: 0.1em; background: #00b0f0; border-bottom: 0; }
.custom ul#tabs {border-bottom:0;}

/* This section deals with font, color and hover characteristics of header, post titles, bylines */
/* h1 is post title on the Home page. h2 is post title on the post viewing page.

.custom h1 {font-size: 17px; font-weight: bold; color: #b27d00; } /*b27d00*/
.custom h1:hover {font-size: 17px; color: #563d00; font-weight: bold; }
.custom .headline_area h1 {font-size: 17px; font-weight: bold; color: #b27d00; }
.custom h2 a { font-size: 16px; font-weight: bold; #color: #b27d00; } /*b27d00*/
.custom h2 a:hover { font-size: 16px; color: #563d00; font-weight: bold; }
.custom h10 {font-size: 11px; font-style: italic; text-align: right; }




/* Custom blockquote with yellow background */
.custom blockquote {
    /* margin: 1em 3em; */
    padding: .5em 1em;
    font-color: #ffffff;
    border-left: 3px solid #B28F00;
    background-color: #caca0e; } /*#fee680*/

.custom blockquote p {
    font-weight: bold;
    margin: 0; }

.custom img.photo {
    border: 1px solid #999;
    background-color: #fef2bf;
    padding: 4px;
}


/* This set the font style of titles of all widgets in the sidebar */
.custom .sidebar h3 {color: #7c5700; font-weight: bold; }   /* originally #7c5700 */
.custom .sidebar h3 a {color: #7c5700; font-weight: bold; } /* This is font-style for UPCOMING EVENT */

/*---:[ #header styles ]:---*/
#header #logo { font-weight: bold; } 
#header #logo a { color: #00b0f0; }  /*cc6633*/
#header #logo a:hover { color: #caca0e; } /* Understanding American Government Title*/
#header #tagline { font-weight: normal; color: #00b0f0; float: right} /*Mr. Tran's Classroom Website */



/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content. Also remove double gray line */
.custom #header { padding: 0; border-bottom: 0px;}



/* This changes the background color of the page */
body.custom {background: #ffffff} /* used to be #fef6df and #eae7da*/

.custom a, .custom a:visited { color: #b27d00; }		<--- This makes hyperlink brown color
.custom a:hover { color: #cc6633; }				<---  on mouseover


/* Pullquote-------------------------------------------
.pullquote {
	width: 20%;
	float:right;
	font-size:125%;
	line-height:140%;
	margin:10px;
	background: url(http://www.americangovt.net/wp-content/uploads/images/closequote.gif) no-repeat bottom right !important;
	background /**/:url(); /* removing quote graphic in IE5+ */
	padding:0px 25px 5px 0px;
}
.pullquote:first-letter {
	background: url(http://www.americangovt.net/wp-content/uploads/images/openquote.gif) no-repeat left top !important;
	padding:5px 2px 10px 35px!important;
	padding /**/:0px; 	/* resetting padding in IE5+ */
	background /**/: url(); /* removing quote graphic in IE5+ */
}
----------------------------------- */
/*#header { border-bottom: 3px double #ddd; clear: both; }*/


