﻿@charset "utf-8";
/* CSS Document */

/* Resets */
td {
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif; /* CHANGES THE FONT FOR THE WHOLE SITE */
	vertical-align: top;
}

tr {
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif; /* CHANGES THE FONT FOR THE WHOLE SITE */
	vertical-align: top;
}

table {
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif; /* CHANGES THE FONT FOR THE WHOLE SITE */
	vertical-align: top;
}

.navigation ul {
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif; /* CHANGES THE FONT FOR THE WHOLE SITE */
	vertical-align: top;
}

img {
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif; /* CHANGES THE FONT FOR THE WHOLE SITE */
	vertical-align: top;
}


p {
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif; /* CHANGES THE FONT FOR THE WHOLE SITE */
	vertical-align: top;
}

body {
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif; /* CHANGES THE FONT FOR THE WHOLE SITE */
	vertical-align: top;
}

html {
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif; /* CHANGES THE FONT FOR THE WHOLE SITE */
	vertical-align: top;
}


/* Main Styles */

body {
	background:#487d9f url('images/bg_repeat.jpg') repeat-x scroll top; /* ENTIRE SITE BACKGROUND change the hex number being the bottom 
																		color of gradient */
}

.container {
	margin:0 auto;
	width:900px;
}

/* Navigation */

.navigation {
	width:250px;
	background:url('images/basic_04.jpg') repeat-y; /* navigation bg color (shouldn't need changed) */
	vertical-align:top;
}

.navigation ul {
	list-style:none;
	margin-left:0px;
	
}

.navigation li a:visited {
	display:block;
	font-size:14pt; /* FONT SIZE FOR THE LINKS */
	color: #ffffff; /* CHANGE THIS FOR THE NAVIGATION COLOR TEXT */
	text-decoration:none;
	width:65%;
	padding: 5px 15px;
	letter-spacing:-0.05em;
}

.navigation li a:link {
	display:block;
	font-size:14pt; /* FONT SIZE FOR THE LINKS */
	color: #fffff; /* CHANGE THIS FOR THE NAVIGATION COLOR TEXT */
	text-decoration:none;
	width:65%;
	padding: 5px 15px;
	letter-spacing:-0.05em;
}

.navigation li a:hover {
	color:#38bc1a; /* CHANGE THIS FOR THE ROLLOVER COLOR OF THE TEXT */
	border-left:5px #1a3869 solid;
}

/* Content */

.main {
	background:url('images/basic_05.jpg') repeat-y; /* CONTENT BACKGROUND COLOR IMAGE (shouldn't need changed) */
}

.content {
	padding:10px 20px;
	color:#ffffff; /* CHANGE THIS FOR THE MAIN FONT COLOR */
	font-size:10pt; /* FONT SIZE FOR THE CONTENT */
}

p {
	margin-top:20px;
	margin-bottom:20px;
	line-height:18px;
	letter-spacing:-0.03em;
}


/* Footer */

.footer {
	text-align:center;
	font-size:8pt; /* FONT SIZE FOR THE FOOTER */
	}
	
	hr {          
	width:90%; /* Width of the line in percent */
	border-bottom:#04306e solid 2px; 
	text-align:center;
	/* Firefox doesn't support colors of a HR so a border is used...this changes color & the size */
	}
	
.content .book {     /* This is what holds the book descriptions in a "CSS table". */
	width:400px;
	height:145px;
	padding:5px 10px 20px 10px;
	background-color:#2F88D8; /* Change background color of book tables */
	margin:0 auto; /* Centers the book table in the middle of page */
	}

/* 

---------  HEADER STYLES  ------------------------------------------------------------------------

*/

/* This is the header for the main subjects such as GENERAL TOPICS & FAQ, using HEADING 1, also acts as page headers*/

h1 {
	font-size:24pt; 
	margin:15px 0px;
	letter-spacing:-0.05em;
	color:#e7e4c6;  /* COLOR OF FONT */
	border-left: solid #c21211 3px; /* COLOR OF LEFT LINE */
	padding-left:10px;
	font-family:Trebuchet MS, Helvetica, sans-serif;
}

/*These are the headers, use the "heading 2" tag in your Website editor to call these values */

h2 { 
	font-size:12pt; /* Size of the font, then the color and then the code to make it bold */
	color:#38BC1A;
	font-weight:bold;
	}
	
/* Header for the back to top links. Call it using "Heading 3." */

h3 {
	font-size:8pt;
	font-style:italic;
	}	
	
/*

-----------  LINK STYLES  ---------------------------------------------------------------

 */

a:visited {    /* These set the color for the links and also when they've been visited */
	color:#ffffff;
	}
	
a:link {    /* These set the color for the links and also when they've been visited */
	color:#ffffff;
	}
	
a:hover {       /* This is when you hover over the link. */
	color:#2f88d8;
	text-decoration:none; /* This takes away the line under the link, set it to "underline" to remove that effect */
	}	

/* The next two values are exactly like the links above except they set the options for the links in the footer, if you have imported the footer coding. */

.footer a:visited {
	color:#fff;
	}
	
.footer a:link {
	color:#fff;
	}
	
.footer a:hover {
	color:#000;
	text-decoration:none;
	}	
	
/* 
	
DON'T CHANGE ANYTHING BELOW THIS LINE------------------------------------------------------------------------
	
*/

.content img {
	margin-left:10px;
	margin-right:10px;
	}
	
#sealant { 
	width:400px;
	height:125px;
	padding:5px 10px 20px 10px;
	margin:0 auto;
	}
	
.seal {
	width:200px;
	text-align:center;
	float:left;
	}

.predev {
	font-size:11pt;
	font-weight:bold;
	margin-bottom:-10px;
	}
	
ol li {
	padding-bottom:10px;
	list-style-type:circle;
	}

.diet {
	float:left;
	width:30%;
	height:auto;
	padding-bottom:2%;
	}
	

	

