/* Remove underline from all heading levels */
h1,h2,h3,h4,h5,h6
{
	text-decoration: none !important;
	border-bottom: none !important;
	margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}

p
{
    margin-top: 0px !important;
    padding-top: 0px !important;
}

.site-footer
{
    display: none;
}

/* Remove space at the top of pages as I have the Hide Page Titles option enabled
   The following two items did not seem to work 
.published-container .page-header
{
  display: none;
  margin-top: 0;
  padding-top: 0;
}

.published-container
{
  padding-top: 0 !important;
  margin-top: 0 !important;
}
*/


/* Hide title only on 'About' page

.published-container[data-page-path="Home"] .page-header 
{
  display: none;
}
/*

/* Hide title on pages with 'hide-title' class */
.hide-title h1.page-header {
  display: none !important;
}

