/*

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/

*/


/*---:[ #header styles ]:  ---*/

/* ROBIN - I JUST COMMENTED THIS OUT BUT YOU DON'T NEED IT ANY MORE */
/* Header - Image Banner */
/*.custom #header {border:0; padding:20px; margin:0px; height:190px; width: 1125px; background:url(images/salkids_banner.gif) center left no-repeat;}
.custom #header #logo {}
.custom #header #tagline {}*/

/* ROBIN - THIS MAKES A CLICKABLE HEADER */
.custom #header #logo a { 
	display: block; 
	height: 200px;
	width: 746px;
	background: url('images/newsalvationkidslogo.jpg') left no-repeat;
	outline: none; 
}

/* ROBIN - THIS GETS RID OF THE TITLE AND TAGLINE */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }

/* ROBIN - THIS WILL ALIGN THE HEADER */
.custom #header #logo { margin: 0px 0px 0px 0px; }


/* ROBIN - THIS WILL MAKE THE WHOLE MENU BAR COLORED */
.custom ul#tabs { background: #000000; }

/* Change the home tab unselected color */
.custom ul#tabs .home-item { background: #000000; }
/* Change the home tab unselected font color */
.custom ul#tabs .home-item a { color: #ff00cc; }


/* Change the about tab unselected color */
.custom ul#tabs .page-item-1 {	background: #000000; }
/* Change the about tab unselected font color */
.custom ul#tabs .page-item-1 a { color: #ff00cc; }

/* Change the tab 2 unselected color */
.custom ul#tabs .page-item-2 { background: #000000; }
/* Change the tab 2 unselected font color */
.custom ul#tabs .page-item-2 a { color: #ff00cc; }

/* Change the tab 3 unselected color */
.custom ul#tabs .page-item-3 { background: #000000; }
/* Change the tab 3 unselected font color */
.custom ul#tabs .page-item-3 a { color: #ff00cc; }

/* Change the tab 4 unselected color */
.custom ul#tabs .page-item-4 { background: #000000; }
/* Change the tab 4 unselected font color */
.custom ul#tabs .page-item-4 a { color: #ff00cc; }

/* Change the tab 4 unselected color */
.custom ul#tabs .page-item-5 { background: #000000; }
/* Change the tab 4 unselected font color */
.custom ul#tabs .page-item-5 a { color: #ff00cc; }

/* Change the color of the currently selected tab (pages and category pages) */
/* ROBIN - YOU HAD THE SAME VALUE FOR THE BACKGROUND AND FONT, SO IT WAS SOLID PURPLE! */
.custom ul#tabs li.current_page_item { background: #000000; }
.custom ul#tabs li.current-cat { background: #ff00cc; }
/* Change the font color of the currently selected tab (pages and category pages) */
.custom ul#tabs li.current_page_item a { color: #ff00cc; }
.custom ul#tabs li.current-cat a { color: #ff00cc; }

/* Change the color of a tab when the cursor hovers over it */
.custom ul#tabs li a:hover { background: #ff00cc; }
/* Change the font color of a tab when the cursor hovers over it */
.custom ul#tabs li a:hover { color: #000000; }


.custom #custom_box table { font-size: 1.2em; font-family: verdana; padding: 5px}



/*---------------------------------*/
/* WIDGETIZED FOOTER               */
/* Mike Nichols - October 17, 2009 */
/*---------------------------------*/

/* footer widget area setup */
#footer_setup {
	/* widgetized footer background (not footer background) */
	background: #EEEEEE;
	/* widget padding */
	padding: 16px;
	/* margin at bottom of widgets */
	margin-bottom: 25px;
	/* do not change this! */
	overflow: hidden;
}

/* widget item setup */
#footer_setup .footer_items {
	/* contents alignment */
	text-align: left;
	/* widget width */
	width: 210px;
	/* space between widgets */
	padding-right: 10px;
	/* text color */
	color: #2361A1;
	/* do not change these! */
	display: inline-block;
	float: left;
	height: 100%;
}

/* widget item headers*/
#footer_setup .footer_items h3 {
	/* font size */
	font-size: 1em;
	/* bold or not */
	font-weight: bold;
	/* uppercase or not */
	text-transform: uppercase;
	/* space out the letters*/
	letter-spacing: 0px;
	/* font color*/
	color: #000000;
	/* padding under header text */
	padding-bottom: 3px;
	/* border under header text */
	border-bottom: 3px solid #ffdf00;
	/* distance between border and widget text */
	margin-bottom: 5px;
}
	
/* do not change these! */
#footer_setup .footer_items ul li { list-style: none; }
#footer_setup .footer_items ul { margin: 0px; padding: 0px; }

/*--footer navigation--*/
.custom .footerstuff {text-align:center;}
.custom .footerstuff p {
font-size: 12px;
font-family: Georgia,"Times New Roman",Times,serif;
}

/*remove comments closed at bottom of page*/
.custom .comments_closed p {
  display: none;
}

