.custom #sidebar_1 {border-left: 2px dotted #7B6D29; border-right: none; }
.custom .post_box, .teasers_box {border: none; }

body.custom {
    background: #333300;
}
/* line below for left sidebar right border
.custom #column_wrap {background: none;}*/

.custom #container {
    margin-top: 1.8em;
    margin-bottom: 2em;
    padding: 0.2em;
    background: #000;
    border: 0.3em solid #000;
}

.custom blockquote { color: #993300; border: none; }

.custom li.widget {margin-bottom: .8em;}
.custom li.widget {line-height: 1.25em;}

.custom #page {
    background: #ffffcc;
}

.custom h3 { font-weight: bold; }

/* This line sets up our clickable background image based on the site title's link */
.custom #header #logo a { display: block; height: 140px; width: 950px; background: url('images/aging_professional_informat.jpg') no-repeat; outline: none; }

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */

/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }

.custom #content_box { background: none; border: none; }
.custom #header { border-bottom: none; }
.custom .sidebar h3 { color: #006600; font-size: 1.3em; }
.custom #sidebars { border: none; }

/*nav bar below, post thesis 1.6 upgrade*/
.custom ul.menu { padding: 0 1.1em; border:none; background: #333300; color: #ffffcc; width: 930px;}
.custom #header {border-bottom:none;}
.custom ul.menu {background:#333300 none repeat scroll 0 0;}

/*preceeding text extended nav bar color to end of header */
.custom ul.menu {border:0;}
.custom ul.menu li a:hover {background: #AAAAAA; -moz-border-radius: 25px; -webkit-border-radius: 25px;}
/*text above adds oval hover in FF*/
.comments_closed p { display: none; }

/*changes color of widget*/
li#text-455311921 {
	background: #9CC3A5;
	border: 1px solid #31615A;
	line-height: 1.4em;
	-moz-border-radius: 5px;
	padding: 0.3em;
	-webkit-border-radius: 5px;
}


/*--------------------Custom Icon Code-----------------------------*/
.custom #mysocials { 
	font-size: 16.9px; 
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-top: 1em;
	background: #CEC373;
	}

/*For FF and IE7*/
.custom #mysocials{
	border: solid 2px #7B6D29;
	overflow: hidden;... Read More
}
/*For IE6*/
* html .custom #mysocials{
height: 1%;
overflow: visible;
}

.custom #mysocials h3 { 
	text-align: center; 
	color: #006600;
	font-size: 20px;
	}

.custom #mysocials ul li { 
	float: left;
	margin-left: 3px;
	overflow: hidden;
	}

.custom #mysocials ul li a img { 
	width: 85px; /* Important: Decrease this number if your icons don't line up. */
	}
	
/*--The code below is a way to automatically center horizontal lists--*/
.custom #mysocials .table {
	display: table;   /* Allow the centering to work via tables*/
	margin: 0 auto;
	}
	
.custom #mysocials .table ul#horizontal_list {
	list-style: none;
	padding-top: 2px;
	}
	
.custom #mysocials . table ul#horizontal-list li {
	display: inline;
	}

/*   
pre-Thesis 1.6 below
	.custom ul#tabs li {margin:0; border:0; background: #333300; color: #FFFFCC;}
   .custom ul#tabs li.current_page_item, 
      .custom ul#tabs li.current-cat {padding:0; border:0; background: #333300; color: #FFFFCC;}
   .custom ul#tabs li a,
      .custom ul#tabs li a:active {text-decoration:none; font-weight:bold; color: #FFFFCC;}
      .custom ul#tabs li a:visited {text-decoration:none; font-weight:bold; color: #FFFFCC;}
      .custom ul#tabs li a:hover {text-decoration:underline; font-weight: bold; color: #FFFFCC;}
   .custom ul#tabs li.current_page_item a {margin:0; border:0; background:#333300; color:#FFFFCC; font-weight: bold;}
   .custom ul#tabs li.current-cat a {margin:0; border:0; background:#333300; color: #FFFFCC;} */

/*--------------------End Custom Icon Code------------------------*/

/*below is above sidebar block attempt*/
/*#mysocials {
padding:0.5em; background: #FFFBCC; border: 1px solid #E6DB55; line-height: 1.4em; -moz-border-radius: 5px; padding: 0.4em; -webkit-border-radius: 5px;
}*/

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