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

		

/*---:[ core layout elements ]:---*/

.custom #container { width: 100em; margin: 0 auto; }

	.custom #page { padding: 2em; }

		.custom #header { padding: .8em 2.2em;  clear: both; }

		.custom #content_box { width: 100%; }

			.custom #content { width: 51.3em; float: left; }

				.custom .post_box { margin: 0 0.4em 0 2em; }
				
				.custom .top { border: none !important; }

			.custom #sidebars { width: 44.6em; float: right; }

				.custom #sidebars_box { width: 100%; }
				
				.custom .pad_sidebars { padding: .8em 0.1em; }
				
					.custom .sidebar { width: 50%; float: left; }
					
					

		.custom #footer { padding-top: 1.1em; color: #888; border-top: 3px double #ddd; text-align: right; }




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

body.custom { background: #000000; }
	
.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #33332f; border: 0.4em solid #3e3e3a; }

.custom #page { background: #c9dcf5; }
		
/*---:[ end Set 1 ]:---*/






/*---:[ nav menu styles ]:---*/

.custom ul#tabs { list-style: none; background: url('images/dot-ddd.gif') 0 100% repeat-x; border-left: 1px solid #ddd; }

.custom	ul#tabs li { font-size: 1.1em; line-height: 1em; padding: 0.545em 0.818em; background: #175181; border: 1px solid #ddd; border-left: 0; text-transform: uppercase; letter-spacing: 2px; float: left; color: white; }

.custom	ul#tabs li.current_page_item, ul#tabs li.current-cat { background: #9dd0fa; border-bottom-color: #fff; color: #175181; }
	
.custom ul#tabs li.rss { padding-right: 0; background: none; border: none; float: right; }

.custom ul#tabs li a, ul#tabs li a:visited { color: #fff; text-decoration: none; }
	
.custom	ul#tabs li a:hover { color: #fff; text-decoration: underline; }
		
.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; color: #175181; }
		
.custom ul#tabs li.current_page_item a:hover, ul#tabs li.current-cat a:hover { text-decoration: none; color: #175181; }
		
.custom ul#tabs li.rss a { padding-right: 16px; background: url('images/icon-rss.gif') 100% 50% no-repeat; color: black; }


/*---:[ Post Box styles ]:---*/
	
.custom	.post_box h1, .post_box h2 { padding-top: .2em; font-size: 2.6em;  }

/*---:[ Widgets styles ]:---*/

.custom li.widget { width: 100%; margin-bottom: 1.538em; font-size: 1.3em; line-height: 1.385em; }


/*---:[ footer styles ]:---*/

.custom #footer p { font-size: 1.2em; line-height: 1.5em; color: #666; }

.custom #footer a, #footer a:visited { color: #666; text-decoration: none; border-bottom: 1px solid #ccc; }

.custom #footer a:hover { color: #333; }


