@charset "UTF-8";
/* CSS Document */

body {
	
	font-family: Lato, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	background-color: #0db14b;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 30px;
	padding-left: 30px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #f00;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #f00;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 900px;
	background-color: #fff;
	margin: 0 auto;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	background-color: #fff;
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

.content {
	padding: 30px 0 10px 0;
	background-color: #fff4bb;
}

.footer {
	padding: 10px 0 10px 0;
	font-family: Lato, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 75%;
	text-align: center;
	background-color: #fff4bb;
}

.navbar {
	padding: 0;
	margin: 0;
	background: #f00;
	font-family: Lato, Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
}
h1 {
	font-size: 190%;
	color: #f00;
	margin-bottom: 6px;
	text-align: center;
}
h2 {
	font-size: 140%;
	color: #f00;
	margin-bottom: 0px;
}
h3 {
	font-size: 120%;
	color: #000;
	margin-bottom: 0px;
}
p {
	font-size: 100%;
	line-height: 150%;
	color: #000;
}
.quote {
	font-size: 110%;
	font-weight: bold;
	font-style: italic;
	padding-top: 6px;
}
.footnote {
	font-size: 80%;
	font-style: italic;
}
.content ul {
	padding-left: 60px;
	padding-right: 30px;
	font-size: 100%;
	line-height: 150%;
}
.content li {
	padding-bottom: 6px;
	padding-top: 3px;
}
.nospace {
	font-weight: bold;
	margin-bottom: 0px;
}
.spaceup {
	margin-top: 20px;
}
.unit {
	margin: 0 0 10px 30px;
}
.norm table {
	padding-left: 30px;
	padding-bottom: 12px;
}
.norm td {
	font-size: 100%;
	padding-bottom: 6px;
	vertical-align: top;
}
.bodbul {
	margin: 0 0 15px 0;
}
.htp_tab {
	text-align: center;
	border-collapse: collapse;
}
.htp_tab td {
	border: #000 1px solid;
}
.left {
	text-align: left;
	padding: 0 6px;
}