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

/*change content column to 600px*/
.custom #container {
	width: 1040px !important;
	}
	
.custom #masthead {
	width: 1020px !important;
	}	
	
.custom #rotating_image {
	width: 1040px !important;
	}	
	
.custom #content_box {
	width: 1020px !important;
	background: url('images/content_bg_600.gif') 50% 0 repeat-y !important; 	
	}	
		
	
.custom #left_box {
	width: 820px !important;
	}	
	
.custom #content {
	width: 618px !important;
	}	
	
	.custom #content h1 {
		width: 578px !important;
		margin: 0 auto !important;
		}	
	
.custom #content_inner {
	width: 600px !important;
	}	

	.custom .navigation {
		width: 560px !important;
		margin: 0 auto !important;
		}		
		
.custom #comments {
	width: 599px !important;
	padding: 0 10px !important;
	}	
	
	
.custom	dl#comment_list dd.comment {
	width: 580px !important;
	}

.custom dl#comment_list dt.comment {
	width: 580px !important;
	}
	
	
	
/*related posts */
.custom div.related-posts a {
	margin-right: 15px !important;
 	border: none !important;
	}
	
.related-posts-title {
    color: #111111;
    font-size: 1.8em;
    line-height: 1.11111em;
    padding: 1.11111em 10px 0;
	}
	
	
/*popular posts*/	
.custom #popular-posts ul {	
	list-style-type: none !important;
	background-image: none !important;
	padding-left: 5px !important;
	display: block;
	}
	
.custom #popular-posts ul li {
	background-image: none !important;
	float: left;
	margin-right: 27px !important;
	margin-left: 0 !important;
	padding: 0 !important;
	width: 150px !important;
	}	
	
.custom #popular-posts ul li img {	
	width: 150px !important;
	height: 150px !important;
	overflow: hidden;
	border: 1px solid #dddddd;
	}
	
.custom .wpp-post-title	{
	display: none;
	}

/*centre align existing images in post*/	
.custom #content_inner .alignnone {
	display: block;
	text-align: center !important;
	margin-left: auto !important;
	margin-right: auto !important;
	}	
	
	
	
/*SNS icons in masthead*/	
.custom #masthead ul {
	display: block;
	height: 40px;
	list-style-type: none;
	}	
	
.custom #masthead li {
	float: right;
	margin-left: 20px;
	}	
	
	
/*archives by year*/
.custom ul.compact-archives {
	list-style-type: none;
	font: 1.2em/1.33333em Verdana,serif;
	}
	
.custom ul.compact-archives li {	
	margin-bottom: 15px;
	}
	

/*tag archives page thumbnails*/
.custom .tag_archives ul {
	padding: 0 !important;
	margin: 0 0 40px 0 !important;
	text-align: center;
	clear: both;
	display: block;
	}
	
.custom .tag_archives ul img {	
	padding-bottom: 10px;
	}
	
.custom .tag_archives ul li {
	width: 150px !important;
	padding: 0;
	margin: 0 25px 20px 25px !important;
	list-style-type: none;
	float: left;
	}		
	
