/*
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 Code */

body.custom {
background: #000 url('images/FrugalRIMama_Background2.jpg') 50% 0%; repeat; margin: 0 auto;
}

.custom #container {
margin-top: 2em;
margin-bottom: 2em;
}

.custom .page {
background: #ffffff;
}

.custom .format_text a {text-decoration:none;}

/* Custom Header Code */

.custom #header #logo a { display: block; height: 266px; width: 1100px; background-position:center; background: url('images/FrugalRIHeaderFinal_Big.jpg') no-repeat; outline: none; background-color: transparent;}

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }

.custom ul#tabs li a {text-decoration:none; letter-spacing:1.62px; background-color:#ffff99;}


.custom ul#tabs li ul {display:none; position:absolute; list-style:none;}
.custom ul#tabs li ul li {float: none; width: 225px; }
.custom ul#tabs li:hover ul {display:block; text-decoration:none }


/* Feature Box Code */

.custom #feature_box {background-color:#FFF;}


/* Sidebar Box for Widget Titles */

.custom .sidebar h3 {
background:#ffff99 none repeat scroll 0 0;
border:1px solid;
text-align:center;
font-weight:bold;
}

/* Line spacing in widgets */

.custom li.widget {
line-height:100%;
}

/* Nav Menu Customization */

.custom #tabs {
background-color:#ffff99;
}

/* Footer Customization */

.custom #footer {
background:ffff99;
padding:0.5em 0; 
border-top:1px solid #bbd;
}

.custom #footer div.col {
float:left;
height: 35em;
background:#6699cc;
margin:5px 0 5px 0;
padding-left:5px;
padding-top:20px;
text-align:left;
width:29.75em;
}

.custom #footer div.col.Footer1 {
width:170px;
color:#ffffff;
text-align:center;
}

.custom #footer div.col.Footer2 {
width:650px;
color:#ffffff;
text-align:center;
}

.custom #footer div.col.Footer3 {
width:267px;
color:#ffffff;
text-align:center;
}

.custom #footer h3 {
background:#ffff99 none repeat scroll 0 0;
border:1px solid;
text-align:center;
font-size:1em;
line-height:1.385em;
margin-bottom:0.692em;
color:#555555;
font-variant:small-caps;
letter-spacing:2px;
font-weight:bold;
}