/*
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/
*/


/* Color Chart
Orange - F1921A
Green - 669900
Gray - 656E75
White - FFFFFF
Light Gray - E6E7E8
Blue - 679EC9
*/

/*
 * Custom.css for Lynnae McCoy.com
*/



body.custom { background:#679ec9 none repeat scroll 0 0;	
font-family:Tahoma,Arial,sans-serif; }


.custom #container { background:#666666 none repeat scroll 0 0; border:0.4em solid #777777; padding:0.3em; }


.custom #page { background:#FFFFFF none repeat scroll 0 0; padding: 1em 2em 2em 2em;}


/* Bottom Nav bar */

.custom ul#tabs li { background: #656e75; }

.custom ul#tabs li.current_page_item { background:#669900 none repeat scroll 0 0; }

.custom ul#tabs li a { color: white; } /* padding:0.545em 0.818em; */

.custom ul#tabs li a:hover { background: #679ec9; text-decoration: none; }




/*This makes links green when you mouse over them*/
.custom a:hover { color: #669900; }
.custom .format_text a:hover { text-decoration: underline; }


/* Sidebar formatting */

.custom .sidebar h3 {
	
-x-system-font:none;
	
background-color:#ffffff;
	
border-bottom:2px solid #669900;
	
border-top:2px solid #669900;
	
color:#669900;
	
font-family:tahoma,arial,sans-serif;  
font-size:1.3em;
	
font-size-adjust:none;
	
font-stretch:normal;
	
font-style:normal;
		
	
line-height:normal;
	
margin-top:5px;
	padding:4px;
	
text-align: center;
}


