/*
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 {
	background: #366 url(images/bluebackgroundmuted.gif) repeat top center;
}

/*---:[ nav menu styles ]:---*/
.menu, .menu a, .menu li ul { border-style: solid; background-color: #efefef; }
	.menu a { background-color: #efefef; border-top: 3px solid #fff;}
		.menu .rss a, .menu .rss a:hover { margin-right: 10px; color: #fff;}
	.menu .current > a, .menu .current-cat > a, .menu .current-menu-item > a { background-color: #fff; }
	
	.menu .tab-home a {
		border-top: 3px solid #0099cc;
	}
	
	.menu .tab-1 a {
		border-top: 3px solid #ffcc00;
	}
	
	.menu .tab-2 a {
		border-top: 3px solid #ff0033;
	}
	
	.menu .tab-3 a {
		border-top: 3px solid #9966cc;
	}
	
	.menu .tab-4 a {
		border-top: 3px solid #99cc33;
	}
	
	.menu .tab-5 a {
		border-top: 3px solid #ff9933;
	}
	
	.menu .cat-item-374 a {
		border-top: 3px solid #99cccc;
	}
	
#header { border: none; background-color: #366;}

/* Sidebar Photo */
.sidebarphoto {
	border: none;
	text-align: center;
	margin: 0 auto;
}

.sidebar input[type="text"]{
	width: 120px;	
}

.post_box, .teasers_box {
	padding-left: 10px;
}

/* Changes from 2/2/11 List */
body {margin-top: 15px;}

p.intro, blockquote {
    color: #808080;
    font-style: italic;
    line-height: 1.35em;
}
#content_box {
    background: transparent;
    width: 100%;
}
#content {
	width: 73.4em; /* Was 60.3em, modified after second sidebar was removed. TO 12-24-2016 */
	float: left;
	-moz-border-radius: 12px 12px 12px 12px;
	-webkit-border-radius: 12px 12px 12px 12px;
	border-radius: 12px 12px 12px 12px;
	-moz-box-shadow: 2px 2px 2px #B0B0B0;
	-webkit-box-shadow: 2px 2px 2px #B0B0B0;
	box-shadow: 2px 2px 2px #B0B0B0;
	}
#sidebar_1 { width: 17.2em; border-style: dotted; border-width: 0 0 0 0; float: left; clear: left;
	-moz-border-radius: 12px 12px 12px 12px; 
	-webkit-border-radius: 12px 12px 12px 12px; 
	border-radius: 12px 12px 12px 12px; 
	-moz-box-shadow: 1px 1px 1px 0 #B0B0B0;
	-webkit-box-shadow: 1px 1px 1px 0 #B0B0B0;
	box-shadow: 1px 1px 1px 0 #B0B0B0;
	}
#sidebar_2 { width: 17.1em; float: left;  
	-moz-border-radius: 12px 12px 12px 12px; 
	-webkit-border-radius: 12px 12px 12px 12px;
	border-radius: 12px 12px 12px 12px;  
	-moz-box-shadow: 1px 1px 1px 0 #B0B0B0
	-webkit-box-shadow: 1px 1px 1px 0 #B0B0B0
	box-shadow: 1px 1px 1px 0 #B0B0B0
	}
.menu a { font-size: 1.1em; line-height: 1.273em; padding: 0.636em 0.818em; border-width: 0.091em; border-left-width: 0; font-family: verdana;}
h1, h2, h2 a { color: #A74AC7;  font-family: Verdana}

.menu { background: url("images/bluebackgroundmuted.gif") repeat scroll center top transparent; border-width: 0;}


.menu a, .menu li ul { 
    border-color: #DDDDDD;    
    -moz-border-radius: 2px 12px 2px 2px;
    -webkit-border-radius: 2px 12px 2px 2px;
    border-radius: 2px 12px 2px 2px;
    border-style: solid;
    margin-top: 10px;
	
	}
#logo a { display: block; width: 26.361em; height: 3.944em; text-indent: -9999px; outline: none;   }

.teasers_box .st_facebook, .teasers_box .st_twitter, .teasers_box .st_delicious, .teasers_box .st_digg, .teasers_box .st_reddit, .teasers_box .st_stumblupon, .teasers_box .st_email, .teasers_box .st_sharethis {
	display: none;
}

select#cat.postform {max-width: 150px;}