@charset "utf-8";
/*h1
{
	padding:0;
	margin:0;
}*/
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size:small;
	background:#FFFFFF;
	background-image:url(graphics/glow.jpg);
	background-repeat:repeat-x;
	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;
}
h1{
	font:Verdana;
	font-size:150%;
	font-weight:lighter;
	font-stretch:expanded;
	color:#632e66;
	padding: 0px;
	margin: 0px;
}
h2{
	font:Verdana;
	font-size:100%;
	font-weight:bold;
	font-stretch:expanded;
	text-decoration:underline;
	color:#632e66;
	margin: 0px;
	padding-top:15px;
	padding-bottom:12px;
}
legend {
	font:Verdana;
	font-size:100%;
	font-weight:bold;
	font-stretch:expanded;
	color:#632e66;
	padding-right:8px;
}
#page_top_glow { 
	width: 768px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 11px;
	background-image:url(graphics/top_glow.jpg);
	background-repeat: no-repeat;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align:center;
} 
#page_container { 
	width: 756px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	background-image:url(graphics/bgnd.jpg);
	background-repeat: repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding-left: 12px;
	padding-right: 0px;
	padding-bottom: 3px;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/*#top_glow{
	height:11px;
	background-image:url(graphics/top_glow.jpg);
	background-repeat:repeat-x;
} */
#header { 
	background: #FFFFFF; 
	width: 744px;
	padding: 0 0 0 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
#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 */
}
#logo {
	background-image:url(graphics/logo.jpg);
	background-repeat:no-repeat;
	width:130px;
	height:83px;
	float:left;
}

#logo_cover {
	width:130px;
	height:83px;
	border:none;
}
#header_right{
	width:600px;
	height:83px;
	margin-left:140px;
	padding-top:3px;
}
#font_resizer{
	font:Verdana;
	font-size:medium;
	text-align:center;
	width:60px;
	height:26px;
	background-color:#CCC;
	border:3px;
	border-style:double;
	border-color:#B5B5B5;
	float:right;
}
#fontHead{
	height:10px;
	padding:0px;
	margin:0px;
	font:Verdana;
	font-size:x-small;
	font-weight:bold;
	color:#FFF;
	text-align:center;
}
#fontAdd{
	width:30px;
	height:16px;
	float:right;
	padding:0;
	margin:0;
}
#fontAdd a{
	font:Verdana;
	font-size:medium;
	font-weight:bolder;
	color:#FFF;
	text-align:center;
	text-decoration:none;
}
#fontMinus{
	width:30px;
	float:right;
	height:16px;
	padding:0;
	margin:0;
}
#fontMinus a{
	font:Verdana;
	font-size:large;
	font-weight:bolder;
	color:#FFF;
	text-align:center;
	text-decoration:none;
}

#menu_container {
	width: 750px;
	height: 40px;
	background-image:url(graphics/menu_bgnd.jpg);
	background-repeat:repeat-x;
}
#menu_side_left {
	width: 11px;
	float: left;
}
#menu {
	height: 30px;
	width: 720px;
	float: left;
}
#menu_side_right {
	width: 19px;
	height: 40px;
	margin-left:731px;
}
#container { 
	width: 744px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin-top:5px;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 145px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background:#FBFBFB; /* the background color will be displayed for the length of the content in the column, but no further */
	/*padding: 15px 10px 15px 20px; */
	margin-right:15px;
	margin-top:5px;
}
#side_menu_table {
	width:145px;
	border-top:1px;
	border-top-style:dotted;
	border-top-color:#632e66;
	font:Verdana;
	font-size:100%;
	font-weight:bold;
	color:#632e66;
	margin-bottom:8px;
}
#side_menu_table a{
	color: #632e66;
	text-decoration:none;
	font-size:100%;
	font-weight:bold;
}
#td_submenu_left {
	width:50px;
	height:45px;
	border-bottom:1px;
	border-bottom-style:dotted;
	border-bottom-color:#632e66;
}
#td_submenu_right {
	width:95px;
	height:45px;
	/*vertical-align:middle;*/
	border-bottom:1px;
	border-bottom-style:dotted;
	border-bottom-color:#632e66;
}
#pic_viewer{
	margin-top:0px;
	margin-bottom:8px;
}
#mainContent {
	margin-left: 160px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width:570px;
	text-align:justify;
} 
#mainContent p {
	font:verdana;
	font-size:100%;
	color:#632e66;
	padding: 0 0 0 0;
	margin-top: 15px;
	margin-bottom:0px;
}
#title {
	width: 400px;
	height: 28px;
	border-bottom:dotted;
	border-bottom-color:#632e66;
	border-bottom-width:1px;
}
#title h1{
	font:Verdana;
	font-size:150%;
	font-weight:lighter;
	font-stretch:expanded;
	color:#632e66;
	padding: 0px;
	margin: 0px;
	/*vertical-align:top;*/
}
#contact {
	padding-left:15px;
}

#contact h2{
	font:Verdana;
	font-size:100%;
	font-weight:bold;
	font-stretch:expanded;
	text-decoration:underline;
	color:#632e66;
	margin: 0px;
	padding-top:15px;
	padding-bottom:12px;
	/*vertical-align:top;*/
}
#contact p{
	font:Verdana;
	font-size:100%;
	font-stretch:expanded;
	color:#632e66;
	padding-left:20px;
	margin: 0px;
	/*vertical-align:top;*/
}
#form_area {
	margin-top:20px;
}
#form {
	margin-top:0px;
	font:Verdana;
	font-size:100%;
	font-stretch:expanded;
	color:#632e66;
	padding-left:20px;
	margin: 0px;
	float:left;
	/*vertical-align:top;*/
}
#form_instructions {
	margin-top:0px;
	font:Verdana;
	font-size:100%;
	font-stretch:expanded;
	color:#632e66;
	padding-left:8px;
	padding-right:8px;
	margin-left: 375px;
}
#footer_container {
	width: 750px;
	height: 40px;
	margin-top:0px;
	background-image:url(graphics/menu_bgnd.jpg);
	background-repeat:repeat-x;
}
#footmenu_side_left {
	width: 11px;
	float: left;
}
#footmenu_side_right {
	width: 19px;
	height: 40px;
	margin-left:731px;
}
#footer_menu {
	height: 30px;
	width: 720px;
	float: left;
}
#footer_menu p {
	margin: 0;
	padding: 9px 0;
	font:Verdana;
	font-size:xx-small;
	color:#632e66;
}
#footer_menu a {
	margin: 0;
	padding: 9px 0;
	font:Verdana;
	font-size:xx-small;
	color:#632e66;
	text-decoration:none;
}
#footer_left-sec{
	float:left;
	width:300px;
	text-align:left;
}
#footer_right-sec{
	width:110px;
	float:right;
	text-align:right;
}
#footer_right-sec2{
	width:110px;
	float:right;
	text-align:right;
}
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD; 
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#page_bottom_line { 
	width: 768px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 11px;
	background-image:url(graphics/bottom_line.jpg);
	background-repeat: no-repeat;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align:center;
} 

#page_bottom_links { 
	width: 768px;
	height: 11px;
	margin: 0 auto;
} 

#page_bottom_links a {
	font:Verdana;
	font-size:xx-small;
	color:#CDCDCD;
	text-decoration:none;
	text-align:center;
}

#buttons_table {
	text-align:center;
}

.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-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0px;
}