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

/************************* Setup ***************************/

.custom #header, .custom .post, .custom .teasers_box, .custom #footer, .custom #footer a, .custom #footer a:active, .custom #archive_info, .custom .prev_next, .custom #comment_list, .custom #comment_list dd, .custom #commentform, .custom #sidebar_1, .custom #sidebar_2, .custom #comment_list dt.comment, .custom #comment_list dd.comment, .custom #comment_list dl .bypostauthor .format_text, .custom #trackback_list {
	border-bottom: 0px;
	border-top: 0px;
	border-right: 0px;
	border-left: 0px;
}

.custom 		{ background:#777; }
.custom .page 		{ background:#FFF; }

.custom #content_area a:visited 	{color:#f37122;}
.custom #content_area a:link 		{color:#f37122;}

/*** For Subscribe links at the top ***/
.subscribe_header {
padding: 1em 1em;
float:right;
text:align:right;
display:block;
}

/*** Subscribe text ***/
.subscribe_header p {
	font-size:1.8em;
padding:3.2em 0 0.4em 0.5em;
}

/*** Drawing the social icons ***/
.subscribe_header a {
color:#333333;
float:right;
      font-size:1.1em;
height:3.6em;
       line-height:3.6em;
       margin-left:1.0em;
       margin-right:1.0em;
       text-transform:uppercase;
}

/*** Drawing the social icons ***/
.subscribe_header a img {
border:medium none;
float:left;
      margin-right:0.5em;
padding:0;
}

/***  Top Bar Header ***/
#header {
background:url('images/bg-header.png') repeat-x scroll 0 0 transparent;
border:medium none;
height:150px;
padding:0 1em;
position:relative;
}

/*** Header Logo ***/
#header #logo a {
background:url('images/AceofWealth.jpg') no-repeat scroll 0 0 transparent;
height:150px;
float:left;
outline:medium none;
	text-indent:-9999px;
width:500px;
}

/*** Menu Styling ***/
.custom .menu {background:#4F504F;}
.custom ul.menu li.search {float:right;} 
.custom ul.menu li.search form {padding:0.3em .4em;} 
.custom ul.menu li.search form input {padding:0.4em; width:20em; background:#fff}


/*** Fill Background of content ***/
.custom #content_box {
background:#fff 
		   url('images/bg-content_box.png') 
		   0% 0% repeat-y;
}

/*** CUSTOM FORMATTING TO TEXT ***/
.custom #content .notice {
        border: 1px solid;
        background: #eee;  
        padding: 0.4em;
        width: 32.5em;
}       

.custom #content h1 {
        padding: 0.5em 0em;
	line-height: 1.3em;
}


/********* Tabbed widget viewing *********/

ul.domtabs li.active {background:#000000;}		/* Active tab background color */
ul.domtabs li:active a {color:#ffffff;}		/* Active tab font color */
ul.domtabs li {background:#888888;}			/* Inactive tabs background color */
ul.domtabs li a {color:#ffffff;}				/* Inactive tabs font color */
ul.domtabs li {border-color:#000000;}			/* Tabs border color */
.domtab div {border:1px solid #000000;}					/* Box border color - Should be the same as the Active tab background color */
.domtab div {background:#ffffff;}						/* Box background color */

ul.domtabs li {margin-right:0.5em;}			/* Space between each tab. Set to 0 for no space. */

div.domtab div {
display:none;
}

ul.domtabs {
	list-style:none;
padding:0;
margin:0;
}

ul.domtabs li {
float:left;
padding:0 0.5em;
	text-align:center;
	border-style:solid;
	border-width:1px 1px 0 1px;
}


ul.domtabs li a {
	text-decoration:none;
}

.domtab div {
	border-width:0 1px 1px 1px;
padding:0.5em;
clear:both;
}

.custom li.widget li {margin-bottom:0.3em;}
.custom #sidebar_2 li.widget li { margin-left:0.3em;}
.custom #sidebar_1 li.widget a:visited { color:#f37122;}



.custom li.widget h3 {
	font-size:1.5em;
	text-align:center;
	margin-bottom:0.2em;
}


/*** Footer ***/
.custom #footer {
background:url('images/bg-footer.png') repeat-x scroll 0 0 transparent;
border:medium none;
height:50px;
padding:0.4em 1em 0em 1em;
position:relative;
}

 .custom #sitemeter {
         float:left;
         padding: 0.2em;
 }

#footer.copyright{
text-align:center;
color:black;
}

/*** Custom Pages ***/
/*-----archives-----*/
.custom .archive h3 {margin-top: 0;}
.custom .archive ul {font-size: .85em; }
.custom .archivel { float: left; width: 40%;}
.custom .archiver { float: right; width: 60%;}

