/*
	
	
	This stylesheet will allow you to futureproof your CSS changes
	against future releases and upgrades The Mighty Moo! WordPress theme. 
	
	Instructions:
	
	
	To change the default color of the <a> tag (let's say you want to 
	make them a cherry red [#c00]) and to remove the default
	underline, this is what you would do:
	
	.custom a { color: #c00; text-decoration: none; }
	
	LIMITATION: The background color of the active accordion tab is set in the accordion.js file.
	
	FYI: This concept was borrowed from http://www.pearsonified.com/2007/02/how_to_protect_css_mods_for_any_wordpress_theme.php
	

	Uncomment the CSS code below to change the theme to blue.  Remember to update the "accordion.js" file accordingly as follows:

			onBackground: function(toggler, i){
				bgFx[i].clearTimer();
				toggler.setStyle('background-color', toggler.defaultColor);
				toggler.getFirst().setStyle('color', '#666666');
			}


*/

/* The .custom class defines the body tag */
/*.custom {
	background-image: url("images/bg_blue.jpg");}
	
.custom .toggler .date{
	color:#fff;}
	
.custom #header a{
	color:#167a8f;}
.custom #header .description {
	color:#167a8f;}

.custom a:link, a:visited, .custom a:hover, a:active {
	color:#167a8f;}
	
.custom .postmetadata{
	color:#333;}
	
.custom .textbody{
	background-color:#FFF;}

.custom .widgettitle, #sidebarContainer h2{
	background-color:#167a8f;}
	
.custom .sidebar {
	color:#333;}
	
#footerContainer {
	color:#999;}
	
#footerContainer a {
	color:#666;}*/