/*
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;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #a90000;
}

.custom #page {
    background: #fff;
}

.custom #header {background: url(images/MMV5_graphic.jpg) no-repeat; height: 4em; border-bottom: solid; 20px; color: #a90000; }

.custom #footer { background: #fff; border-top-color: #a90000; color: #000; }

blockquote { margin: 0 0 1.5385em 1.5em; padding: 0 0 0 0.7692em; font-family: Georgia, "Times New Roman", Times, serif; color: #555; border-left: 0.2308em solid #a90000; }


/*headline meta styles - not using right now
.custom .headline_meta {color: #a90000 ; font-weight: bold ;}
.custom .headline_meta {font-style: italic ;}
.custom .headline_meta {line-height: 1.8em ;}
.custom .headline_meta {font-size: 1em ;} */

.custom h1, h2 { font-weight: bold; color: #a90000 ;}
	
/*widget headline title color*/
.custom .sidebar h3 { font-weight: bold; color: #000000 ;}

/* nav menu color changes */

	.custom ul#tabs li.current-cat a, .custom ul#tabs li.current_page_item a {
  background-color: #000000;
  color: #ffffff;
  border-bottom: solid; 10px;
  }


/* nav menu color change when hovering */

.custom ul#tabs li a:hover {
  background:#a90000;
  color:#ffffff;
}

/* remove nav underline when hovering */

.custom ul#tabs li a:hover {
  text-decoration: none;
}

/*remove upper case on nav */

.custom ul#tabs li a {
  text-transform: none;
}

/* changing link colors */
.custom a, .custom a:visited, .custom a:hover { color: #a90000; }	


	
/*adding 2nd media box */
custom .mymmbox {
width: 91em;
height: 20em;
border: 1px solid
margin-left: 2em;
margin-bottom: 2em;
}



 