body {
	color: #000000;
	background: #7984ba url(../images/body_bg.jpg);
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(../images/container_bg.jpg) repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px double #313b56;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#header {
	color: #FFFFFF;
} 

#header img {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #313B56;
	border-right-color: #313B56;
	border-bottom-color: #313B56;
	border-left-color: #313B56;
}

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#sidebar {
	float: left; /* Floats the side column to the left. */
	width: 200px; /* Since this element is floated, a width must be given */
	/* 	background: #CED3B5; The background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 15px 7px 15px; /* Pads the div so that its content doesn't butt up against the edges. */
	display: inline;
}

#sidebar p {
	/*	font-size: 95%;  Sets the font size of paragraphs to 85% of the user's browser preferences. */
	margin-top: 5px; /* Changes the top margin to 5 pixels of space. */
	margin-bottom: 6px; /* Changes the bottom margin to 5 pixels of space. */
	font-size: 115%;
	font-weight: normal;
}

#sidebar a:link, #sidebar a:visited {
	color: #000000; /* Removes the underline from the links. */
	background: #dedff1; /* Sets the background color of the buttons. */
	display: block; /* Puts a little space between the links and the edge of the buttons. */
	/*	width: 185px; // Makes the buttons 185 pixels wide. */
	border: 1px solid #3135B6;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 4px;
	text-decoration: none;
}

#sidebar a:hover, #sidebar a:focus {
	color: #FFFFFF;
	background: #313B56; /* Changes the background color of the button during the hover or focus state to a darker shade of blue. */
}

.contactInfo {
	margin-top: 20px;
	margin-bottom: 10px;
	border: 1px solid #313B56;
	background-color: #CCCCCC;
}

.contactInfo h3 {
	/*	color: #313B56; */
	margin-bottom: 2px;
	margin-top: 5px;
	margin-left: 0px;
	font-weight: bold;
	font-size: 115%;
	border-bottom-style: solid;
	border-bottom-width: thin;
	padding-left: 5px;
}
.contactInfo  td {
	font-size: 85%;
	padding-top: 6px;
	font-weight: bold;
}

.contactInfo a:link {
	color: #000000;
	text-decoration: none; /* Removes the underline from the links. */
	background: #dedff1; /* Sets the background color of the buttons. */
	display: block; /* Puts a little space between the links and the edge of the buttons. */
	width: auto; /* Makes the button 115 pixels wide. */
	border: 1px solid #3135B6;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 4px;
}

#content {
	/*	margin-left: 225px;
	padding-top: 10px;
	padding-left: 10px;
	padding-right: 5px; (End of old settings) */

	font-size: 95%; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 25px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;

}

#content p {
	line-height: 1.2;
}

#content h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	text-decoration: underline;
}

/* -------- Bulleted list section commented out ---------
#content ul {
	list-style-position: inside;
	text-indent: 2px;
}

html[xmlns] #content ul{ /* ff and ie7*/
/*	margin: 0;
	padding: 0;
	list-style-position: inside;
	list-style-type: none;
}  */

#content li{
/*	margin-bottom:3px;
	list-style-image: url(../images/bullet.jpg); 
	list-style-position: inside;
	display: inline; /*setting for FF and other standards compliant browsers*/
      #display: block; /*setting for IE7*/
	_display: block;
}
/* ---------------------------------------------------------- */



#footer {
	background: #313B56; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	padding-left: 20px;
}

#footer p {
	/*	padding: 10px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 225px;  (End of old settings) */

	font-size: 75%;
	color: #FFFFFF;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse -
			  a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

table  {
	padding-top: 10px;
	padding-right: 5px;
	padding-left: 10px;
}

th  {
	text-align: left;
}

#form  th {
	width: 120px;
	font-weight: normal;
}

#form td {
	width: 310px;
}

/* #header h1 {
	color: #FFFFFF;
	letter-spacing: .3em;
	margin: 0px;
	padding-top: 80px;
	padding-bottom: 80px;
	padding-left: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-image: url(images/header_logo.jpg);
	background-repeat: no-repeat;
	background-position: 15px 15px;
}*/

.lftimg {
	float: left;
	margin: 0 50px 15px 25px;      
	border: 1px solid #313B56;
}

.clearfloat {
	font-size: 1px;
	line-height: 0px;
	margin: 0px;
	height: 0px;
	clear: both;
}

#pad15 {
	padding-top: 15px;
}

.colwidth70 {
	text-align: right;
	width: 17.5%;
}

.colwidth20 {
	text-align: center;
	width: .5%;
}

.colwidth310 {
	width: 77%;
	padding-left: 3px;
}

.nobullet {
	list-style-type: none;
	padding-left: 10px;
}

.mapimage {
	left: 0px;
	top: 10px;
	width: 65%;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 10px;
	white-space: nowrap;
	padding-left: 30px;
}

#video tr {
	width: 320px;
	height: 320px;
}

#thumbnail {
	background-color: #FFFFFF;
	left: -10px;
	position: relative;
	top: -15px;
	width: 100px;
}

#thumbnail a .large {
	border: 0px;
	display: block;
	height: 1px;
	left: -1px;
	position: absolute;
	top: -1px;
	width: 1px;
}

#thumbnail a.mouseover, #thumbnail a.mouseover:visited {
	background: #FFFFFF;
	border: 1px solid #000000;
	display: block;
	height: 100px;
	left: 0;
	text-decoration: none;
	top: 0px;
	width: 100px;
}

#thumbnail a.mouseover:hover {
	background-color: #CCCCCC;
	color: #000000;
	text-decoration: none;
}

#thumbnail a.mouseover:hover .large {
	border: 2px solid #000000;
	display: block;
	left: 110px;
	position: absolute;
	top: -190px;
    width: 600px;
    height: 450px;
}

