/*
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: #000000 url('images/pattern_001.jpg');
}



.custom #container {
  border:0.4em solid #292929;
  margin-bottom:2em;
  margin-top:2em;
  padding:0.3em;
}

.custom #page {
    background: #ffffff;
}


/*Note box style */
.custom .format_text p.note {
background: #f5f5f5 url('http://www.kristensong.com/wp-content/themes/thesis/custom/images/black_guitar-32x32.png') center no-repeat;
border: 2px solid #ddd;
background-position: 7px 50%; /* x-pos y-pos */
text-align: left;
padding: 5px 5px 5px 45px;}

/*Alert box style */
.custom .format_text p.alert {
background: #ffffa0 url('http://www.kristensong.com/wp-content/themes/thesis/custom/images/star-48.png') center no-repeat;
border: 2px solid #e5e597;
background-position: 7px 50%; /* x-pos y-pos */
text-align: left;
padding: 5px 5px 5px 45px;}

.custom #feature_box { background: #4d4d4d url(images/vertgradient.png) repeat-x; padding: 22px 15px 22px 15px; }
.custom #feature_box, #feature_box h2 { color: #ffffff; }
.custom #feature_box h2 { font-family: Georgia, Arial, San-Serif; font-size: 22px; margin: 0 0 15px 0; }
.custom #feature_box p { font-family: Georgia, Arial, San-Serif; font-size: 14px; }
.custom #feature_box a { color: #ffffff; text-decoration: underline; }
.custom #feature_box h2 a { text-decoration: none; }
.custom #feature_box a:hover { color: #e7e7e7; }
.custom #feature_box .featurereadmore { padding: 22px 0 0 0; }
.custom #feature_box .featurereadmore a { font-size: 14px; text-decoration: none; }
.custom #feature_box .featurereadmore a:visited { font-size: 14px; text-decoration: none; }
.custom #feature_box .featurereadmore a:hover { text-decoration: underline; }