/*
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/
*/
body.custom { background:url(images/JerseyMesh.png); }

#header{ background:url(images/SpartanFootballHeader.png) no-repeat scroll center; height:138px; padding-bottom: 0em; padding-to: 0em}


/*This section experiments with the @font-face declaration.*/
@font-face { 
font-family: "Collegiate"; 
src: url("http://www.spartan-football.com/wp-content/themes/thesis_16/custom/fonts/SFCollegiateSolid-Italic.ttf") format("truetype");
}

/*This is blocking out the changes made to render the actual blog text instead of image.  Uncomment this section and comment out above section to use text.*/
.custom #header #logo a { display: block; height: 138px; background: url('images/SpartanFootballHeader.png') no-repeat scroll center; outline: none; padding-bottom: 0em; padding-top: 0em}

.custom #header #logo, .custom #header #tagline { text-align: center; font-size: 8em; line-height: 2em}

.custom #header { padding-bottom: 0em; padding-top: 0em }

.custom #header #logo a { color:#006633; text-shadow: 2px 2px 0 #ffffff; font-family: "Collegiate", Impact, sans-serif; }
.custom #header #logo a:hover { color:#f0f0f0; text-shadow: 2px 2px 0 #006633; font-family: "Collegiate", Impact, sans-serif; }


.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #33332f; border: 0.4em solid #3e3e3a; }

		.custom #page { padding: 2em 1.9em; background: #fff; border: 0.1em solid #b5b198; border-top: 0; }



table.footer
{ font-size: 12px; text-align: right; border-spacing: 10px; color: #006633; margin-left:auto; margin-right: 6px; }

