/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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 overwrite *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!
*/

.custom #content { border-right: none; }

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: transparent none;
    border: 0;
	
}

.custom #page {
    background: transparent none;
}


/*edits from KK, for Chris */
.custom .post_box { border-top: 2px solid #45a826; } /* rules between blog posts*/

body.custom {background: url(htmlBG.jpg) top center no-repeat #1b1c1c; font-family:Arial, Helvetica, sans-serif; color:#333;} /* page background color*/

.custom ul#tabs{
position:absolute;
top:196px;
border:0;
width:975px;
padding-top:11px;
}
.custom ul#tabs li {
background:#e1e1e1; /* tab normal state background color */
margin: 0 .1em .1em 0;

}

.custom ul#tabs li.current_page_item{
border:0;
background-color:#fff; /* current page tab background color */
}
.custom ul#tabs li:hover {
background:#bbb none repeat scroll 0 0; /* tab mouse hover background color */

}
.custom #content_box {
background:#fff;
}

.custom #video_box{
padding:0;
background:#fff;
}

.custom a{
 color:#45a826; /* link color */
 }
 
.custom ul#tabs li a, .custom ul#tabs li a:visited {
color:#000;
display:block;
letter-spacing:0px;
line-height:1em;
text-decoration:none;
text-transform: none;
font-weight:bold;
font-size:1.2em;
}
.custom ul#tabs li.rss{
background-color: transparent;
margin-right:12px;
}
.custom ul#tabs li.rss a{
color: #fff;
}

.custom h2 a:hover {
color:#666; /* headline link hover color */
}

.custom #page{
padding:1em 2em 2em 1em;
}

.custom #header {
padding: 0;
overflow:hidden;
width:975px;
height:200px;
border-bottom:0 none;
}
.custom #header h1, .custom p#logo{
text-indent:-9999px;
}
.custom #footer{
border-top:1px double #000;
}
.custom #sidebar_1 {
border-right:1px dotted #000;
}

.custom li.widget .widget_box{
background: #ccc;
border:1px solid #999;
}
.custom li.widget .widget_box h3{
color:#fff;
}

.custom .headline_area h1, .custom .headline_area h2 {
font-size:2.0em;
line-height:1.0em;
}

.custom .embedflash{
margin:10px;
}

.custom .callme {
padding:80px 10px 100px 150px;
font-size:2.0em;
color:#3300CC;
background-image:url('http://foreignbankaccountamnesty.com/wp-content/uploads/2009/06/call.jpg');
background-repeat:no-repeat;
}
div#divid form#aweberForm input { border:0; padding:0; }


div#specialBox{
width:233px;
float:right;
}
div#specialBox p{
color:#fff;
font-size:16px;
}
p.enrollnow a{display:block;width:150px;height:40px; background:url(enroll.jpg) top right no-repeat;text-indent:-9999px;}
p.enrollnow a:hover{background:url(enroll.jpg) top left no-repeat;}

.custom .csspopup{
position: relative;
z-index: 0;
}

.custom .csspopup:hover{
background-color: transparent;
z-index: 50;
}

.custom .csspopup span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.custom .csspopup #csspopupcontents img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.custom .csspopup:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -200px;
left: 60px; /*position where enlarged image should offset horizontally */
}