/*
File:			custom.css
Description:	Custom styles for the Neoclassical Theme that you define

Use:

The <body> tag has been appended with the "custom" class, like so: <body class="custom">.
You can use the "custom" class to overwrite *any* CSS declarations contained in this
theme's 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: #A2CD5A; } <--- 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 .alignleft
{ font-weight: bold; 
  float: left;
  text-align: left;
  width: 50%;
 
}
 
.custom .alignright
{ font-weight: bold; 
  float: right;
  text-align: right;
  width: 50%;
  
}

.custom .older { padding: 0 20px 0 0; float: left; }

	.custom .previous { text-align: left; }

        .custom .next { text-align: right; }



.custom #content_inner { width: 445px; padding: 0 12px 0 16px; }

.custom h3 { font-size: 1.23077em; line-height: 1.25em; color: #000000; }

	.custom .format_text h3 { margin: 1.99em 0 0.625em 0; }

	.custom .format_text h3.top { margin: 0 0 0.625em 0 !important; }




.custom .page h1 { margin: 0 0 1.9em 0; }


.custom .format_text ul li { padding: 0 0 0 4px; background: none; 0 0.38462em no-repeat; }


.custom #masthead { display: none }

.custom #container { width: 885px; margin: 0 auto; padding: 0 0; background-color: #fff; }

.custom a, .custom a:visited { color: #666666; text-decoration: none; }

.custom a:hover { color: #99CC99; text-decoration: underline; }
	
.custom .format_text a, .custom .format_text a:visited { color: #666666; background: none; text-decoration: underline; }

.custom .format_text a:hover { color: #99CC99; text-decoration: underline; } 

.custom	h2 a, .custom h2 a:visited { color: #111; text-decoration: none; }
 

.custom .format_text p { margin: 0 1.2em 1.53846em 0; font: 14px "Trebuchet MS", Helvetica, Arial, sans-serif;
	 line-height: 1.8em; }
	
	.custom .format_text p.note { padding: 0.76923em 10px; background: #ffffa0; border: 1px solid #d3d35d; font: 14px "Trebuchet MS", Helvetica, Arial, sans-serif;
	 line-height: 140%; }
	
	.custom .format_text ul { list-style: disc; margin: 0 0 1.53846em 20px; font: 14px "Trebuchet MS", Helvetica, Arial, sans-serif; line-height: 1.8em; background: none; }

	.custom .format_text ol { margin: 0 0 1.53846em 20px; font: 14px "Trebuchet MS", Helvetica, Arial, sans-serif;
	 line-height: 1.8em;}
	
	.custom .format_text li { font: 14px "Trebuchet MS", Helvetica, Arial, sans-serif;
	 line-height: 1.8em; }
	
		
	.custom .format_text ul li ul, .format_text ul li ol, .format_text ol li ul, .format_text ol li ol { margin: 0 0 0 10px; }







div.sociable { margin: 16px 0; font: 14px "Trebuchet MS", Helvetica, Arial, sans-serif;}

span.sociable_tagline { position: relative; }
span.sociable_tagline span { display: none; width: 14em; }
span.sociable_tagline:hover span {
	position: absolute;
	display: block;
	top: -5em;
	background: #ffe;
	border: 1px solid #ccc;
	color: black;
	line-height: 1.25em;

}
.sociable span {
	display: block;
}
.sociable ul {
	display: inline;
	margin: 0 !important;
	padding: 0 !important;
}
.sociable ul li {
	background: none;
	display: inline !important;
	list-style-type: none;
	margin: 0;
	padding: 1px;
}
.sociable ul li:before { content: ""; }
.sociable img {
	float: none;
	width: 16px;
	height: 16px;
	border: 0;
	margin: 0;
	padding: 0;
}

.sociable-hovers {
	opacity: .4;
	-moz-opacity: .4;
	filter: alpha(opacity=40);
}
.sociable-hovers:hover {
	opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
}


