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


/*styles to customize blog header to match writedirections.com */

.custom #custom_header_container { 
	width: 885px; 
	margin: 0 0 20px 0;
}

.custom #custom_header { 
	background: #FFFFFF; 
	padding: 10px 10px 0 20px;  
} 

.custom #custom_header h1 {
	margin: 0;
	padding: 10px 0; 
}

.custom #custom_logo { 
	float: left;
	padding: 0px 30px 30px 0px;
	width: 150px;
} 
.custom #custom_keywords { 
	float: left;
	padding: 0px 10px 30px 0px;
	width: 450px;
}
.custom #custom_keywords h1 {
	font-size: 18px;
	color: #006bcd;
	margin: 0 0 5px 0;
	padding: 0;
}

.custom #custom_keywords h2 { 
	font-size: 14px;
	color: #333;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
}
.custom #custom_keywords p { 
	font-size: 11px;
	color: #333;
	margin-top: 3px;
	padding-top: 0px;
	text-align: justify;
	text-align-last: left;

}
.custom #custom_subscription { 
	float: right;
	padding: 0 10px 0 0;
	font-size: 11px;
	
	
} 
.custom #custom_subscription p { 
	font-weight: bold;
	font-size: 12px;
	margin: 0px;
}
 
.custom #custom_nav { 
	background: #FFFFFF; 
	border-top: 2px solid #006bcd;
	margin: 10px 0 60px 0; 
	padding: 20px 10px 0px 20px;
	
} 
.custom #custom_nav ul { 
	list-style: none;
	font-size: 16px;
	margin: 0;
	padding: 0;
}

.custom #custom_nav li { 
	display: block;
	float: left;
	margin: 0 25px 0 0;
	padding: 0 0 5px 0;
	
}
 
.custom #custom_nav li a { 
	color: #006bcd;
	text-decoration:none;
	font-weight: bold;
	padding: 2px;

	
}
 
.custom #custom_nav li a:visited { 
	color: #006bcd;
	text-decoration:none;
	font-weight: bold;
	padding: 2px;
	
	
}
 
.custom #custom_nav li a:hover { 
	color: #fff;
	text-decoration:none;
	font-weight: bold;
	background-color: #006bcd;
	padding: 2px;
	
	
}
 
.custom #custom_nav li a:active { 
	color: #006bcd;
	text-decoration:none;
	font-weight: bold;
	padding: 2px;
	
	
}

.custom .custom_clearfloat { 
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
	
/*general customization of styles */

.custom #content_inner { width: 441px; padding: 0 9px; }

.custom #container  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;	
	color: #000000;
}

.custom a {
	color: #006bcd;
	font-weight: bold;
	
}

.custom a:visited {
	color: #a549d9;
}
.custom h1, .custom h2, .custom h3,  .custom h4 { 
	font: bold 1.0em Verdana, Arial, Helvetica, sans-serif;
}

.custom blockquote { 
	font-family: Verdana, Arial, Helvetica, sans-serif; color: #555; margin: 0 0 1.53846em 10px; padding: 0 0 0 10px; border-left: 1px solid #eee; 
} 

.custom h2, .custom h2 a {
	font-size: 1.3em;
}

.custom h2 {
	border-top: none;
}

.custom .sidebar h2 { font-size: 1.3em; margin: 0 0 1.4em 0; line-height: 2.5em; padding: 0; text-transform: none; letter-spacing: 0; border-top: 0; border-bottom: 1px solid #ddd; 
}

.custom #content_inner h1, custom #content_inner h2 {font-size: 1.3em;}

.custom .archives h1 { font-size: 1.1em; line-height: 1.81818em; text-transform: none; letter-spacing: 0; margin: 0 0 1.81818em 0; padding: 0.36364em 10px 0.36364em 10px; background: #eee; border-top: 1px solid #ddd; border-bottom: 1px dotted #ddd; text-align: center; }

.custom #comment_form .form_submit { padding: 0.35714em 4px; background: url('images/submit_bg.gif'); border: 3px double #999; border-top-color: #ccc; border-left-color: #ccc; color: #333; font: bold 1.07692em Verdana, Arial, Helvetica, sans-serif; cursor: pointer; }
