body, button, input, select, textarea {
    color:#AED3E9 ; font-size: 1em
}

::selection  {
	background: #000000;
	color: white;
}
blockquote {
	padding-left: 40px;
	margin: 0;
	font-family: "PT Serif", serif;
	font-size: 0.8em;
	border-left: 2px solid #7CB8D2;
}
#page{
background-color:#000000; 
}

.main-navigation ul li a {
	display: block;
	padding-bottom: 7px;
	color:  #7CB8D2;
	text-decoration: none;
	-webkit-transition: all 250ms ease;
	-moz-transition: all 250ms ease;
	-o-transition: all 250ms ease;
	transition: all 250ms ease;
}

.page-content, .entry-content, .entry-summary{
font-size:80%;
}
add_filter('comments_open', 'wpc_comments_closed', 10, 2);
function wpc_comments_closed( $open, $post_id ) {
$post = get_post( $post_id );
if ('post' == $post->post_type)
$open = false;
return $open;
}