/* THIS CODE GETS RID OF THE SIDEBAR */
#secondary {
    display: none;
}

@media screen and (min-width: 56.875em) {
    .content-area {
        width: 100%;
    }
}

/* THIS CODE GETS RID OF THE WORDPRESS FOOTER */
.site-info {
display : none;
}
1
2
3
.site-info {
display : none;
}

/* THIS CODE ADDS A LINE UNDER THE HEADER */
/*.site-header {
padding-top: 12px !important;
padding-bottom: 12px !important;
border-bottom: 3px solid #440243 !important;
margin-bottom: 16px !important;
}*/

/* THIS CODE CHANGES THE HEADER SIZE */
#masthead {
padding-top: 36px !important;
padding-bottom: 0px !important;
}

/*DO NOT DISPLAY MAIN HEADER*/
/*.entry-title {display: none;}*/

/*DO NOT DISPLAY MAIN HEADER v2*/
#main header.entry-header h1.entry-title {
display: none;
}

/**
 * Reduce the white space which follows the page area (.entry-content)
 */

.site-main {
   margin-top: 0;
   margin-bottom: 0;
   padding-top: 0;
   padding-bottom: 0px;
}

/**
 * Reduce the white space immediately above the footer
 */

.entry-footer {
   margin-top: 0;
   margin-bottom: 0;
   padding-top: 0;
   padding-bottom: 0;
}



/**
 * Reduce the white space immediately above the footer
 */

.site-footer {
   margin-top: 0;
   margin-bottom: 0;
   padding-top: 0;
   padding-bottom: 0;
}


/*Change space round headers*/
.main-navigation {
   margin-top: 0;
   margin-bottom: 0;
   padding-top: 0;
   padding-bottom: 0;
}

/*Stop word breaks*/
.site-content article, .widget-area .widget {
	word-wrap: normal;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	hyphens: none;
}
