/* RICKETTS: Change background colour of posts and pages (default is white)
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 full-width page for Delphi survey */
#post-326 .entry-content {
	max-width: 800px;
	margin: 0 auto;
}
#post-334 .entry-content {
	max-width: 800px;
	margin: 0 auto;
}
#post-388 .entry-content {
	max-width: 800px;
	margin: 0 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: Disable "+Follow" button (bottom right) 
#actionbar {
	display: none;
} */

/*RICKETTS Disable WordPress Admin Bar for non-admins by adding this 3-line code at end of functions.php 
if ( ! current_user_can('manage_options') ) {
    add_filter( 'show_admin_bar', '__return_false' );
} */
