/*
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/
*/

/* Custom Background */
body.custom { background: #f9f5db url('images/blue_retro_tile.gif'); }

		.custom #page {background: #fff; border: 0.1em solid #b5b198; border-top: 0; }


    /* Everything CSS Sprite Menu */  
        ul#menu{
          margin-bottom: -3em;
          margin-left:4em; 
          padding:0; 
          list-style:none; 
          clear:both; 
          padding-top:60px;
          position:absolute;  
         }  
            #menu li{overflow:hidden; text-indent:-9999px; display:inline; float:left; margin-right:0px; width:115px; height:74px; padding: 0 1em 0 1em;}  
                #menu li a{background:url('images/nav_menu_sprite.png') no-repeat; width:100%; height:100%; display:block;}  
      
                /* About Button */   
                   #menu li.about a{background-position:0px 0px;}  
                    #menu li.about a:hover{background-position:0px -74px;}  
                   #menu li.about a:active{background-position:0px -74px;}  
     
               /* Recipes Button */  
                   #menu li.recipes a{background-position:-121px 0px;}  
                   #menu li.recipes a:hover{background-position:-121px -74px;}  
                   #menu li.recipes a:active{background-position:-121px -74px;}  


               /* Resources button */
                   #menu li.resources a{background-position:-242px 0px;}
                   #menu li.resources a:hover{background-position:-242px -74px;}
                   #menu li.resources a:active{background-position:-242px -74px;}


                /* But what can I eat? button */
                   #menu li.eat a{background-position:-370px 0px;}
                   #menu li.eat a:hover{background-position:-370px -74px;}
                   #menu li.eat a:active{background-position:-370px -74px;} 



/* Custom Page */

.custom #page {
	-webkit-border-radius: 10px;
	-khtml-border-radius: 10px;	
	-moz-border-radius: 10px;
	border-radius: 10px;
        padding-top: 0px;
        width: 900px;
}	 

#header {
padding-top:0;
}