/*
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/
*/

.headline_area h1 {display:none;}

.custom #header #logo a {display: block; height: 271px; width: 940px; background: url('http://www.peakskillslearning.com/wp-content/themes/thesis_16/custom/images/113010_Solid_Line_Peakskills_Header.jpg')  left no-repeat; outline: none; }

/* This line gets rid of the site title & tagline by casting them out to the far left */.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 */
.custom #header #tagline { height: 0; }.custom #header {border-bottom:none; padding:0}

/* all programming home tab*/
.custom .menu .tab-home a {
	background: #B0B115;
	color: yellow; width: 99px; text-align: center;}
.custom .menu .tab-home a:hover {
	background: #B0B115;
	color: white;width: 99px; text-align: center;}
}

/* all programming second tab*/
.custom .menu .tab-1 a {
	background: #00ABE3;
	color: yellow;width: 99px; text-align: center;}
}
.custom .menu .tab-1 a:hover {
	background: #00ABE3;
	color: white;width: 99px; text-align: center;}
}

/*all programming third tab*/
.custom .menu .tab-2 a {
	background: #DC741D;
	color: yellow;width: 99px; text-align: center;}
}
.custom .menu .tab-2 a:hover {
	background: #DC741D;
	color: white;width: 99px; text-align: center;}
}
.custom .menu .tab-2 .submenu a {
	background: #DC741D;
	color: white;width: 99px; text-align: center;}
}

/* all programming fourth tab*/
.custom .menu .tab-3 a {
	background: #DEAE1C;
	color: yellow;width: 99px; text-align: center;}
}
.custom .menu .tab-3 a:hover {
	background: #DEAE1C;
	color: white;width: 99px; text-align: center;}
}
.custom .menu .tab-3 .submenu a {
	background: #DEAE1C;
	color: white;width: 99px; text-align: center;}
}

/* all programming fifth tab*/
.custom .menu .tab-4 a {
	background: #F82140;
	color: yellow;width: 99px; text-align: center;}
}
.custom .menu .tab-4 a:hover {
	background: #F82140;
	color: white;width: 99px; text-align: center;}
}

/* all programming sixth tab*/
.custom .menu .tab-5 a {
	background: #B0B115;
	color: yellow;width: 99px; text-align: center;}
}
.custom .menu .tab-5 a:hover {
	background: #B0B115;
	color: white;width: 99px; text-align: center;}
}

/* CURRENTLY SELECTED TAB */
/* color of the currently selected tab background and font color 
*/
.custom .menu .current a,
.custom .menu .current-cat a {
	background: #B0B115;
	color: purple;width: 99px; text-align: center;}
}

