/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.
*/
/* RICKETTS: Change background colour of posts and pages (default is white)
If not #fafafa, then member Login button will not look right!
https://wordpress.org/support/topic/theme-twenty-fourteen-change-contentbody-background-color */
#site-header, #main, 
.site-content .entry-header, 
.site-content .entry-content, 
.site-content .entry-summary, 
.site-content .entry-meta,
.page-content {
	background-color: #fafafa;
}

/* RICKETTS: Centre page on screens >1260 px wide 
https://wordpress.org/support/topic/page-is-left-aligned-on-1260px-larger-screen */
#page {
	margin-left: auto;
	margin-right: auto;
}

/* RICKETTS: Change colour of active navigation menu bold text from light blue to white - to match wordpress.com template http://en.forums.wordpress.com/topic/twenty-fourteen-how-to-change-color-of-current-item-ni-primary-menu */
.site-navigation .current_page_item > a, 
.site-navigation .current_page_ancestor > a {
	color: #fff;
}

/* RICKETTS: Change colour of "Powered by WordPress" footer text from light blue to white - to match wordpress.com template  
*/
.site-footer a {
	color: #fff;
}

/* RICKETTS: Change blue shade colour of primary sidebar, extended primary sidebar and footer to march wordpress.com template   
*/
#secondary {
	background-color: #0e78c1;
}

.site:before {
	background-color: #0e78c1;
}

.site-footer {
	background-color: #0e78c1;
}

/* RICKETTS: hide menu/search on two pages:  Members Login and Public Documents
*/
.home nav#primary-navigation ul {
	display: none;
}

.page-id-157 nav#primary-navigation ul {
	display: none;
}

.home #search-container {
	display: none;
}

.page-id-157 #search-container {
	display: none;
}

/* RICKETTS: full-width page for Public Documents, News & Market Data pages
*/
#post-157 .entry-content, #post-9753 .entry-content, #post-9768 .entry-content, #post-9770 .entry-content, #post-6641 .entry-content {
	max-width: 800px;
	margin: 0 auto;
}