/*
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: #eaeaea url(images/none.jpg) repeat;
}

.custom .format_text a {
text-decoration:underline;
}

.custom .format_text a:hover {
text-decoration:underline;
}

.custom #container {
    margin-top: 0em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #ddd;
    border: 0.3em solid #bbb;
}

.custom #page {
    background: #fff;
}

.custom #header {padding-top:0.2em;padding-bottom:0.5em; padding-left:0; padding-right:0; border-bottom:0; height:122px; overflow:hidden;}

/* Sidebar Heading Blue*/

.custom .sidebar h3 {
background:#3C75A6 none repeat scroll 0 0;
color:#FFFFFF;
padding:0.3em 0;
text-align:center;
text-shadow:1px 1px 1px #333333;
}
/* Make all widget headings white */
.custom .widget h3 {
   color: ffffff;
}

/* Specify bottom margin on all widgets */
.custom li.widget {
   margin-bottom: 2.769em;
}

.custom .format_text p.alert {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#FFFFFF none repeat scroll 0 0;
border:1px solid #FBAF17;
}

.custom .menu{
  padding-bottom: 1em;
  border:none;
  }

.custom .menu a {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#4D4D4D none repeat scroll 0 0;
color:#FFFFFF;
}

.custom .menu a:hover, .custom .menu .current ul a:hover, .custom .menu .current-cat ul a:hover{
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#CCCCCC none repeat scroll 0 0;
color:#000000;
}

.custom .menu .rss a, {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background: transparent url(lib/images/icon-rss.gif) no-repeat scroll 100% 50%;
border:medium none;
padding-right:16px;
}

.custom .menu .rss a:hover {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
color: #111111;
background: transparent url(lib/images/icon-rss.gif) no-repeat scroll 100% 50%;
border:medium none;
padding-right:16px;
}

/* FTC Compliance */

#ftc_comp{
background-color:#EAEAEA;
border:1px solid #CCCCCC;
color:#333333;
margin:10px;
text-align:center;
padding:5px;
width:90%;
}

.custom h2 a {font-weight:bold; color:#2361a1;}

/*---:[Alert Bar One]:---*/
.alert_one {
width: 99%;
color: #111;
background: #e3f0f2;
border-bottom: 0.4em solid #3d5a84;
padding-left: 2em;
font-size: 1.2em;
text-align: center;
}

/*---[Alert Bar Two]---*/
.alert_two {
background: #e3f0f2;
border: 4px solid #3d5a84;
font-size: 1.2em;
color: #111;
padding-left: 2em;
height: 2em;
text-align: center;
}

/*---[Alert Bar Three]---*/
.alert_three {
background: #e3f0f2;
border: 4px solid #2cac53;
font-size: 1.2em;
color: #000;
padding-left: 2em;
height: 4em;
text-align: center;
}

/*---[Alert Bar Four]---*/
.alert_four {
background: #e3f0f2;
border: 4px solid #b41404;
font-size: 1.2em;
color: #000;
padding-left: 2em;
height: 4em;
text-align: center;
}
