@charset "utf-8";
/* CSS Document */

body {
	font-size: 100%/1.4;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	background-color: #265491;
	margin: 0;
	padding: 0;
	color: #000;
}

.container {
	width: 960px;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}
/* ~~ 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-image: none;
	width: 100%;
	background-color: #FFF;
	}

.sidebarleft {
	float: left;
	width: 180px;
	padding-bottom: 10px;
	background-color: #c6d8f0;}
	
/* ~~ this is css code for the scrolling news ~~ */        
#ticker-container {
    position:relative;
    overflow:hidden;
    width: 180px;
    height: 280px;
    background-color: #c6d8f0;
    padding-bottom: 10px;
    }
	
#ticker {
	position:relative;
	width:150px;
	}
	
#ticker ul {
	padding:0px;
	margin-bottom:30px;
	list-style-type:none;
	}

#ticker ul li {
	display:list-item;
	margin-bottom: 0px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 70%;
	font-weight: normal;
    color: ;
	padding-left: 15px;
	}

#ticker ul li.title {
	display:list-item;
	margin-bottom: 1px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 85%;
	font-weight: normal;
    color: ;
	padding-left: 15px;
	}
/* ~~ rules from the body control these settings by default, can add new styles if wanted. ~~ */	
#ticker ul li a {
	}
        
#ticker ul li a:hover {

        }

/* ~~ this is the end of th css code for the scrolling news ~~ */

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
	padding-bottom: 0px;
	}
	
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background-color: #82aadf;
	color: #000;
}
ul.nav a:hover, ul.nav a:active { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #FFF;
	background-color: #3f7dcd;
}

.content {
	padding-bottom: 30px;
	width: 780px;
	float: left;
	}

/* ~~ 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;
}
.content ul, .content ol {
	padding-top: 0;
	padding-right: 75px;
	padding-bottom: 10px;
	padding-left: 75px;
}

li {padding-bottom: 5px; }

h1, h2, h3, h4, 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: 25px;
	padding-left: 25px;
	
}
h1, h2, h3, h4
{
	line-height: 1;
	font-weight: bold;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;

	}

h1 { font-size: 160%; margin-bottom: 10px; }
h2 { font-size: 140%; margin-bottom: 10px; }
h3 { font-size: 120%; margin-bottom: 5px;}
h4 {
	font-size: 100%;
	margin-bottom: 5px;
}
p {	font-size: 95%; }

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: #265491;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #265491;
	text-decoration: none;
}
a:hover, a:active { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #82aadf;
}

table {  	
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 10px;
	font-size: 90%;
 }

td {
	padding: 5px 10px;
	
}

hr {
	color: #8e191c;
	margin-bottom: 20px;
}

.separator {clear: both; height: 1px; }

/* ~~ The footer ~~ */
.footer {
	background: #A4C1E7;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

.copyright {
	text-align: center;
	padding: 15px 0px 20px 0px;
	color: #FFF;
	font-size: 80%;
}
.copyright a {
	color: #FFF;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
.copyright a:hover { color: #8e191c; }





/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-top: 10px;
	margin-right: 25px;
	margin-bottom: 10px;
	margin-left: 10px;
	
	
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 25px;
}


div.float { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	
}

  
.float p {
	text-align: center;
	font-size: 70%;
	font-weight: bold;
	padding-top: 5px;
	padding-bottom: 0px;
	   }
	   
.float img {
	margin-right: auto;
	margin-left: auto;
	display: block;
	border: 1px solid #000;
}

.spacer {
  clear: both;
  }


table.includes { margin-left:auto; margin-right:auto;
 }
.includes td {
	padding-left: 25px;
	text-indent: -15px;
	padding-right: 15px;

}

.indent {
	padding-left: 25px;
	
}

ul.sublist { padding-left: 30px;
padding-bottom: 0px; 

}

table.key { font-size: 75%; }
.key td {
	vertical-align: top;
}

p.warning { font-size: 80%;
padding: 10px 75px; }

div.center {
	margin-top: 15px;
	margin-right: auto;
	margin-left: auto;
}
img.center  {
	margin-top: 25px;
	margin-right: auto;
	margin-left: auto;
	display: block;
	border: 1px solid #000;
	
}

.center {
	font-size: 75%;
	text-align: center;
	padding: 5px;
}

div.people { /* this class can be used to float an element left in your page. Used for gallery of pictures in People page */
	float: left;
	margin-top: 10px;
	margin-left: 25px;
	width: 160px;
}

  
.people p {
	text-align: center;
	font-size: 70%;
	font-weight: bold;
	padding-top: 5px;
	padding-bottom: 0px;
	   }
	   
.people img {
	margin-right: auto;
	margin-left: auto;
	display: block;
	border: 1px solid #000;
}


/* Picture with Caption. Create div.picture and include style="width:Xpx" where X is the width of the picture +2 px. Add <img> and <p> with caption text. */

.picture {
	background-color: #c6d8f0;
	border: 1px solid #CCCCCC;
	padding: 7px;
	
}

.picture img { border: 1px solid #CCCCCC;
vertical-align:middle; margin-bottom: 7px; }

.picture p {
	font-family: Arial, sans-serif;
	font-size: 70%;
	margin: 0px 0px 10px 0px; 
	padding: 0px 5px;
}

.kit {
	background-color: #FFF;
	border: 1px solid #CCCCCC;
	padding: 7px;
	margin-top: 0px;
}

.kit img {
	border: 1px solid #000;
	vertical-align:middle;
	margin-bottom: 7px;
}

.kit p {
	font-family: Arial, sans-serif;
	font-size: 70%;
	margin: 0px 0px 10px 0px; 
	padding: 0px 5px;
}

.book {
	background-color: #FFF;
	border: 1px solid #CCCCCC;
	padding: 7px;
	margin-top: 0px;
}

.book img {
	vertical-align:middle;
	margin-bottom: 7px;
}

.book p {
	font-family: Arial, sans-serif;
	font-size: 70%;
	margin: 0px 0px 10px 0px; 
	padding: 0px 5px;
}

.sample {
	text-indent: -45px;
	margin-left: 70px;
	margin-right: 25px;
}

/* layout for new items listed in archive. Each item goes in a div. It must have an title <h3>, text <p> and a date listed. */
.news {
	margin: 25px 25px;
	border: thick solid #DBE6F5;
}

.news h3 {margin-bottom: 10px;
padding: 5px 10px 5px 10px; 
border-bottom: medium solid #DBE6F5;
}

.news p { margin: 0px;
padding: 0px 20px 15px 20px;

}.container .content p iframe {
	text-align: center;
}

.faq {padding-bottom: 30px; 
	width: 390px; height: 180px;
	float: left; 
	}
