/*floats footer content left, brings OJS inline with footer content*/
.pkp_footer_content {
	float:left;
}
 
 /*to remove small boxed space under title*/
 .pkp_page_index .cmp_announcements {
 	border-top:0;
 }
 
 /*connects broken borders*/
 .pkp_structure_content {
 	padding-top:0; /*default 30px*/
 }
 
 /*restores whitespace above announcement content with borders intact*/
 .obj_announcement_summary {
 	margin-top:30px;
 	padding-top:30px;
 } 
 
 /*removes height restriction on site logo*/
 .pkp_site_name .is_img img {
 	max-height:100%;
 }
 
 /*GUI color picker doesn't seem to change header background color*/
 .pkp_structure_head {
 	background-color:#fff;
 }
 
 @media (min-width: 768px) {
 	/*adjusts spacing between intervention/research sections.*/
 	.obj_issue_toc .section {
 		padding: 15px 30px 10px 30px;
 	}	
 }/*end @media*/

/*removes excess whitespace around Current Issue info*/ 
.pkp_page_index .current_issue .current_issue_title {
 	margin:0;
 }
 
/*removes excess whitespace after Current Issue Published info*/ 
.obj_issue_toc .sections:not(:first-child) {
 	margin-top:0;
 }
 
 /*increases font size of article titles*/
.obj_article_summary .title {
	font-size:16px;
}

/*Applies only to screens under 768px in width*/
@media (max-width:768px){
	
	/*centres brand footer info*/
	.pkp_brand_footer a {
		margin:0 auto;
		float:none;
	}

	/*centres footer content*/
	.pkp_footer_content {
		text-align:center;
		float:none;
	}
}/*end @media*/		 

/*removes whitespace above logo image*/
.has_site_logo .pkp_head_wrapper {
	padding-top:0px;
}					
			