/*
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 #sidebars {background-color: #926b6c;} 

/*---:[ Set 1: solid background with slick borders around your "page" area ]:
background - inner bar
solid - outer bar
---*/

body.custom { background: #44443f; }
	
	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #926b6c; border: 0.4em solid #685e77; }

/*---:[ end Set 1 ]:---*/

/*---:[ Set 3: ornate, repeating background pattern ]:---*/

body.custom { background: #926b6c url('images/pp1600.jpg') fixed no-repeat; }

		.custom #page { padding: 2em 1.9em; background: #c7c5b0; border: 0.1em solid #629084; border-top: 0; }

/*---:[ end Set 3 ]:---*/

/*      If you add more tabs to the navigation                                                            */
/* you can find out what their class is by right clicking on your page,                  */
/* selecting View Source Code and looking for the section under <ul id="tabs">. */ 
/* .custom ul#tabs li.current-cat { background: #fff; } 
.custom ul#tabs li.page-item-8 { background: #69c; }
.custom ul#tabs li.page-item-11 { background: #09c; }
.custom ul#tabs li.page-item-9 { background: #09d; }
.custom ul#tabs li.page-item-6 { background: #69d; }
---*/

/*--- change dropcap color ---*/
/*--- .custom .format_text .drop_cap { color: #ff0055; float: left; } ---*/

/*---new Update Block ---*/
.custom  .update { border: 3px solid #f2ec49; background: #fffdcb; padding: 1.0em 15px; margin: 0 0 1.46667em 0; clear: both; }
.custom .updorng { border: 3px solid #e87b2d; background: #f7d861; padding: 1.0em 15px; margin: 0 0 1.46667em 0; clear: both; }

/* For the 125x125 Ad boxes - adblock and cenx */
.custom div.adblock img {
padding: 4px;
background-color: #FFFFFF;
}
.custom .cenx {text-align: center;}

/*--- add a line above and below the sidebar category text ---*/
.custom .sidebar h3 { font-size: 0.846em; font-weight: bold; line-height: 1.455em; margin-bottom: 1em; padding: 0.636em 0.455em 0.545em 0.455em; text-transform: uppercase; font-variant: normal; letter-spacing: 2px; border-top: 1px solid #ddd; border-bottom: 1px dotted #ddd; }

.custom ul#tabs { list-style: none; border: 1px solid #11213a; border-width: 0 0 1px 1px; }                                               
/*-- page tab color ---*/                                
.custom  ul#tabs li { margin-bottom: -0.1em; background: #11213a; border: 1px solid #fff; border-left: White; float: left; }                                                     
.custom  ul#tabs li.current_page_item, ul#tabs li.current-cat {color: #11213a; background: #c7c5b0; border-bottom: 0; }                                           
.custom  ul#tabs li a, ul#tabs li a:visited { display: block; line-height: 1em; color: #fff; text-decoration: none; text-transform: none; letter-spacing: 2px; }

.custom  ul#tabs li a:hover { color: #c7c5b0; text-decoration: underline; background: #685e77;}                                                                                             
.custom  ul#tabs li.current_page_item a, ul#tabs li.current_page_item a:visited, ul#tabs li.current-cat a, ul#tabs li.current-cat a:visited { cursor: default; }     
.custom  ul#tabs li.current_page_item a:hover, ul#tabs li.current-cat a:hover { text-decoration: none; }                                                             
.custom  ul#tabs li.rss { padding-right: 0; background: none; border: none; float: right; }                                                                            
.custom  ul#tabs li.rss a, ul#tabs li.rss a:visited { padding-right: 16px; background: url('images/icon-rss.gif') 100% 50% no-repeat; } 
                            
 







