﻿@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;
}

.sidebar_img {
	text-align:center;
}

.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:#94bffc 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/site/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: #fff; /* 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: #fff; /* CHANGE THIS FOR THE NAVIGATION COLOR TEXT */
	text-decoration:none;
	width:65%;
	padding: 5px 15px;
	letter-spacing:-0.05em;
}

.navigation li a:hover {
	color:#001b3d ; /* CHANGE THIS FOR THE ROLLOVER COLOR OF THE TEXT */
	border-left:5px #001b3d solid;
}

/* Content */

.main {
	background:url('images/site/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:100%; /* Width of the line in percent */
	border-bottom:#029cd8 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:#1f5e95; /* 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:#c4e3f9;  /* COLOR OF FONT */
	border-left: solid #001b3d 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:#F39A22;
	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:#8abbe3;
	}
	
a:link {    /* These set the color for the links and also when they've been visited */
	color:#8abbe3;
	}
	
a:hover {       /* This is when you hover over the link. */
	color:#0091ca;
	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:#034e85;
	}
	
.footer a:link {
	color:#034e85;
	}
	
.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%;
	}
	
	
/* APPOINTMENT FORM */
/* Global form styles */
.appointment-form {margin: 18px auto;}
fieldset {border: none; padding: 9px 0;}
fieldset div {clear: both;}
.form-footer {padding-top: 18px; text-align: center; }
.form-footer button {/*these styles control the look of the button, change as necessary*/
	clear:both;/*do not change, forces button to sit below floated elements*/
	margin: 9px auto;/*do not change, controls positioning*/
	display: block;
	width:100px;
	height:30px;
	background:#3671a6;/* customize me! */
	border: 1px solid #86aed2;
	text-align:center;
	color:#ffffff;/* customize me! */
	font-size:14px;
	font-weight:bold;}
/* appointment form */
.appointment-form {
	margin: 18px 0;
	padding: 10px;}
.appointment-form fieldset {border: none; padding: 9px 0;}
.appointment-form label {/*floats labels left*/
	font-size: 12px;
	display:block;
	font-weight:bold;
	text-align:left;
	width:45%;
	float:left;
	line-height: 18px;
	padding-top: 4px;}
.appointment-form label span {/*sits below labels; holds instructions*/
	color:#cccccc;
	display:block;
	font-size:11px;
	font-weight:normal;
	text-align:left;
	width:100%;}
.appointment-form textarea {
	float:left;
	font-size:12px;
	padding:4px 2px;
	border:solid 1px #690988;/* customize me! */
	width:45%;
	margin:9px 0 9px 2%;
	background: #ffffff;}
.appointment-form select {
	float:left;
	font-size:12px;
	padding:4px 2px;
	border:solid 1px #690988;/* customize me! */
	width:45%;
	margin:9px 0 9px 2%;
	background: #ffffff;}
.appointment-form input {
	float:left;
	font-size:12px;
	padding:4px 2px;
	border:solid 1px #690988;/* customize me! */
	width:45%;
	margin:9px 0 9px 2%;
	background: #ffffff;}
.appointment-form p.verification {
	clear: both;
	margin: 9px 0 9px 47%;
	font-size: 12px;}
.appointment-form p.radio {
	clear: both;
	margin: 9px 0 9px 47%;
	font-size: 12px;}
.appointment-form p.radio-float {
	clear: none;
	float:left;
	width: 45%;
	padding:0;
	margin:9px 0 9px 2%;}
.appointment-form span#found-other {width: 100%;}
.appointment-form span#found-other input {margin-left: 47%; background: #fff0b2}
.appointment-form p.radio-float input {
	float: none;
	width: auto;
	margin: 0 0 0 2%;
	padding: 4px 2px;}


.appointment-form p.radio input {
	float: none;
	width: auto;
	margin: 0 0 0 2%;
	padding: 4px 2px;}


