/*
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/
*/
/*set background image and color and header logo*/
body.custom {background: url('images/bg-img.png') repeat-x scroll 0 0 #DFEBFF;}
.custom #header #logo a { display: block; height: 105px; width: 932px; 
     background: url('images/fypcp-logo1.png') no-repeat; outline: none; }
/* This line gets rid of the site title & tagline by casting them out to far left field revise if needed to put text on top */
      .custom #header #logo, .custom #header #tagline { text-indent: -9999px;}

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */
/* This is a bit of a kludge, but it seems to work. */

     .custom #header #tagline { height: 0; }

/* 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  border: 1px solid #261F26;*/

.custom #header { padding: 0;}

/*make menu and rss link same as menu background with image*/
.custom .menu {background: url('images/menu-bg-img.png') repeat-x scroll transparent;}
.custom .menu a, .menu .current ul a, .menu .current a:hover, .menu .current-cat a, .menu .current-cat a:hover {
background: url('images/menu-bg-img.png') repeat-x scroll transparent;}

/*---:[ style headline area]:---*/
.custom .headline_area h1, .custom .headline_area h2 { text-align: center;}
.custom .headline_area h1 {color: #111;}

/*customize sidebar background color*/
.custom .sidebar{background:#ECF3FF;}

/*---:[customize the the heading for widgets .custom li.unique_widget_class h3 { ... } 
for individual use .custom sidebar h3 {} for all]:---*/
.custom .sidebar h3 { font-weight: bold; line-height: 2.0em; text-align: center; background: #E5E5E5; }

/*---:[ change widget items to bold]:---.custom li.widget ul {font-weight:bold;}*/
/*---:[ customize widgets as block display menu links (.custom .widget_pages li.page_item a).custom .widget_mycategoryorder li.cat-item a]:----*/
.custom li.widget {margin-bottom: 1.5em;}
.custom li.widget ul li{margin-bottom: 0em;}
.custom .vertmenu a:link, .custom .vertmenu a, .custom li.widget_killer_recent_entries a {
	color: #369; 
        text-weight:bold; 
	text-decoration: none;
	border-width: 0px 0px 1px 0px; 
	border-style: solid;
	border-color: #ddd;
	margin: 0px;
	display: block;
	padding-right: 10px;
	padding-left: 10px;}

/*format for hover and current item*/
.custom .vertmenu a:hover, .custom li.widget_killer_recent_entries a:hover {color:#FFF; background:#369;}
/*.custom .widget_pages li.current_page_item a {color:#336699; background:#fff; border-width: 1px; border-color: #336699;}*/

/*---:[ custom page content format for no sidebars]:---*/
.custom .no_sidebars .post_box {margin:0 8em;}

/*---:[ remove comments closed from pages not showing comments]:---*/
.custom .comments_closed p {display: none;}


/*---:[promotion box for posts]:--*/
.promobox {background: #E5E5E5;	padding: 5px; height: auto; width: 425px; border: 3px dashed #15588F;text-align: center;
	vertical-align: middle; margin-right: auto; margin-left: auto;}
