/* CSS Document */
/* This document contains style definitions only to be used on article pages */

/* Any <h2> or <p> class="ArticlePageHeading"> tag has its' top margin set here */
/* ie there's a space above the title on article pages */
h2.ArticlePageHeading {
	margin-top: 30px;
} 
p.ArticlePageHeading {
	margin-top: 30px;
}

/* this defines the space above article text-body - as long as the text body is in a <div "class=ArticleText"> */
div.ArticleText {
	margin-top: 30px;
}

/* This section puts a larger margin at the bottom of the text-body,
 and compensates with a negative top-margin so that paragraph breaks aren't too wide 
 ie you can adjust these figures to set the spacing between paragraphs and the bottom margin */
div.ArticleText p, p.ArticleText {
	margin-top: -10px;
	margin-bottom: 20px;
}
/* This eliminates the margin below <p class="subheading"> so that subheadings sit closer to the following text */
p.subheading {
	padding: 10px 0px 0px;
}

