/*
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/
*/

/* General Customizations */
.custom a {
	outline: none;
	}


/* Nav Customizations */
.custom #menu_area {
	border-width: 0 0 1px;
	border-style: solid;
	}
	
.custom .menu {
	border: 0;
	}
	
.custom .menu a {
	padding:  1em 2em;
	border-width: 0 0 1px 0;
	}
	
.custom .menu .submenu a {
	padding: 0.636em 0.818em;
	border-width: 1px;
	}

.custom #menu_area, .custom .menu {
	background-color: #423B35;
	}

.custom #menu_area, .custom .menu a, .custom .menu .submenu a {
	border-color: #7F756B;
	}


/* Feature Box Customization */
.custom #feature_box {
	padding-right: 0;
	padding-left: 0;
	}


/* Header Customization */
.custom #header_area, .custom #header_area .page {
	width: 100%;
	background-color: transparent;
	}

.custom #header {
	margin: 0;
	padding: 0;
	}

.custom #header h1, .custom #header h1 a {
	margin: 0;
	padding: 0;
	height: 200px;	/* should be equal to the height of your logo image */
	background-image: url(http://blog.matthewcampagna.com/wp-content/custom/images/logo.png);
	background-repeat: no-repeat;
	background-position: center center;
	}

.custom #header h1 a {
	display: block;
	}
	
.custom #header h1 a span, .custom #header h2 {
	display: none;
	}
	
.custom #content_area .page {
	border-top: 1px solid #423B35;
	}


/* Multimedia Box Customizations */
.custom #image_box img {
	padding: 0;
	border-color: #423B35;
	}
	
/* Footer Customizations */
.custom #footer_area .col {
	width: 32.1%;
	padding: 0 0.6%;
	float: left;
	}
	
.custom #footer_area .cb {
	clear: both;
	}

.custom #footer_area {
	background-color: #423B35;
	border-top: 1px solid #7F756B;
	border-bottom: 1px solid #7F756B;
	}
	
.custom #footer_area .page {
	background-color: transparent;
	}

.custom #copyright {
	margin: 1em 0;
	padding: 0;
	color: #E3E1D5;
	text-align: right;
	}

.custom #footer a {
	color: #FFD439;
	}
	
.custom #footer a:hover {
	color: #38322D;
	background-color: #FFD439;
	}
	
