@charset "UTF-8";
/* CSS Document */
/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
ul.MenuBarVertical{
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 110px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are same fixed width as parent */
ul.MenuBarVertical li {
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 110px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
#MenuBar1 .flyout {
	padding-bottom: 0px;
	padding-top: 0px;
	padding-right: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 10px;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
/* overlapping of the submenu-flyout menu - 
	0% aligns it at exactly the same position as the parent; 101% positions the submenu/flyout it on the right edge of the parent */
ul.MenuBarVertical ul {
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: auto;
	left: -1000em;
	top: 0px;
	margin-top: 0%;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 101%;
	border: thin solid #FFF;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarVertical ul.MenuBarSubmenuVisible {
	left: 0;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li {
	width: 11em;
}

/*******************************************************************************
 DESIGN INFORMATION: describes color scheme, borders, fonts
 *******************************************************************************/

/* Parent menu container has borders on all sides */
/*ul.MenuBarVertical {
}*/
.nav1 {
	background-image: url(images/b1.gif);
	background-repeat: no-repeat;
}
.nav2 {
	background-image: url(images/b2.gif);
	background-repeat: no-repeat;
}
.nav3 {
	background-image: url(images/b3.gif);
	background-repeat: no-repeat;
}
.nav4 {
	background-image: url(images/b4.gif);
	background-repeat: no-repeat;
}
.nav5 {
	background-image: url(images/b5.gif);
	background-repeat: no-repeat;
}
.nav6 {
	background-image: url(images/b6.gif);
	background-repeat: no-repeat;
}

/* outside border on the flyouts */
/*ul.MenuBarVertical ul{
}*/
/* Styling for parent menu item */
ul.MenuBarVertical a {
	display: block;
	cursor: pointer;
	color: #FFF;
	text-decoration: none;
	padding-top: 12px;
	padding-bottom: 11px;
	padding-left: 15px;
	font-size: 1.2em;
	height: 35px;
	font-family: "Times New Roman", Times, serif;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-right: 0px;
}

/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus {
	color: #333;
}
/* Menu items that are open with submenus  */
ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
{
	color: #333;
}

/*  ******************************************************************************************************************
    CHANGING COLOR ON SUB MENUS  - WE NEED TO CREATE DESCENDANT SELECTORS AND 
	 APPLY THE CLASS TO THE TOP LEVEL LI THAT TRIGGERS THE SUBMENU/FLYOUT
 *******************************************************************************************************************   */

#MenuBar1 .flyout a {
	padding-top: 11px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-image: url(images/b3.gif);
	background-repeat: no-repeat;
	display: block;
	padding-right: 0px;
	font-family: "Times New Roman", Times, serif;
	margin: 0px;
	height: 35px;
}
#MenuBar1 .flyout ul a {
	background-color: #999;
	padding-top: 0.5em;
	padding-right: 0.75em;
	padding-bottom: 0.5em;
	padding-left: 0.3em;
	background-image: none;
	width: auto;
	height: auto;
	font-size: 1em;
}

#MenuBar1 .flyout a:hover {
}
#MenuBar1 .flyout ul a:hover {/* color of the hover on the submenu / flyout */
	padding-top: 0.5em;
	padding-right: 0.75em;
	padding-bottom: 0.5em;
	padding-left: 0.3em;
}

/*  ******************************************************************************
 SUBMENU INDICATION: styles if there is a submenu under a given menu item
 ************************************************************************** */

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu 
and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarVertical a.MenuBarItemSubmenu {
	background-image: url(../images/SpryMenuBarRightHover.gif);  /* used the same as the hover - so it was a white arrow */
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover 
and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarVertical a.MenuBarItemSubmenuHover {
	background-image: url(../images/SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
	padding: 0.5em 0.75em;
}

/*******************************************************************************
 BROWSER HACKS: the hacks below should not be changed unless you are an expert
 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarVertical iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarVertical li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}



body  {
	margin: 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;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
}
body p {
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}
.bl_lnk_cnt {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	color: #6891a6;
	text-align: center;
	padding-top: 10px;
	display: block;
}


.bioimage {
	margin-top: 0.5px;
	margin-right: 0.5em;
	margin-bottom: 0.5em;
	margin-left: 0px;
}

.img_space {
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	padding: 0px;
}



.header img {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thrColFixHdr #container {
	width: 800px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColFixHdr #header {
	width: 800px;
	background-color: #eae6e5;
	height: 187px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
} 
.thrColFixHdr #header h1 {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 110px;
	padding-bottom: 20px;
	padding-top: 30px;
	padding-right: 0px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#pro_wrap {
	background-color: #FFFFFF;
	width: 660px;
	margin-left: 125px;
	margin-top: 35px;
}
.thrColFixHdr #sidebar2 {
	float: right;
	width: 310px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 5px;
	overflow: visible;
	margin-top: 85px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.thrColFixHdr #sidebar2a {
	float: right;
	width: 310px;
	padding-top: 28px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 5px;
	overflow: visible;
	margin: 0px;
}

.thrColFixHdr #container #sidebar1 #q_box {
	background-color: #edeae9;
	width: 102px;
	text-align: center;
	padding-top: 15px;
	margin-top: 35px;
	margin-right: 0px;
	margin-bottom: 15px;
	margin-left: 0px;
	padding-right: 4px;
	padding-bottom: 15px;
	padding-left: 4px;
}
.thrColFixHdr #container #sidebar1 #q_box p {
	font-family: "Times New Roman", Times, serif;
	font-size: .98em;
	color: #a39a90;
	font-weight: lighter;
	line-height: 1.3em;
	padding-right: 0px;
	margin-right: 3px;
	margin-left: 3px;
	padding-left: 0px;
	margin-bottom: 2px;
	padding-bottom: 0px;
	text-indent: -0.5em;
}
.q_box_p1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .90em;
	color: #8B837A;
	font-weight: lighter;
	line-height: 1.15em;
	padding-right: 0px;
	margin-right: 0px;
	margin-left: 0px;
	padding-left: 0px;
	margin-top: 0px;
	padding-top: 0px;
}

.thrColFixHdr #mainContent {
	padding-bottom: 0px;
	padding-right: 5px;
	padding-left: 5px;
	padding-top: 0px;
	margin-top: 30px;
	margin-right: 340px;
	margin-bottom: 0px;
	margin-left: 140px;
	overflow: visible;
} 

.thrColFixHdr #second_mainContent {
	margin-top: 15px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 140px;
	padding: 0px;
} 
.programs {
	width: 600px;
}

.ul_blue{
	color: #6891a6;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 15px;
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 16px;
	padding-left: 0px;
	list-style-position: outside;
	list-style-image: url(images/dot2.gif);
	font-size: 0.9em;
}
.ul_blue li{
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.ul_blue2 li {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.ul_blue2{
	color: #6891a6;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 4px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 15px;
	list-style-position: outside;
	list-style-image: url(images/dot2.gif);
	font-size: 0.9em;
	padding: 0px;
}
.ul_black{
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 25px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-size: 0.9em;
	list-style-position: outside;
	list-style-image: url(images/dot4.gif);
}
.ul_black2{
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 22px;
	list-style-position: outside;
	font-size: 1em;
	list-style-type: disc;
	padding: 0px;
}
.ul_black2 li {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 01px;
	margin-left: 0px;
}
.li_spaced{
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.p_after_bullet{
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}


.thrColFixHdr #container #sidebar1 img {
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.thrColFixHdr #footer {
	padding-top: 15px;
	padding-bottom: 20px;
	float: left;
	width: 800px;
	margin-top: 15px;
	text-align: center;
} 
.sidebar2_p {
	font-family: "Times New Roman", Times, serif;
	font-size: 2.2em;
	text-align: left;
	color: #a39a90;
	font-weight: lighter;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-top: 16px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	line-height: 1em;
}
.sidebar2_p2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	text-align: left;
	color: #a39a90;
	font-weight: normal;
	line-height: normal;
	margin-top: 4px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	text-transform: none;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

.green_p_1 {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: lighter;
	color: #8a9b3c;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 16px;
	font-size: 1em;
	margin-top: 0px;
	padding: 0px;
}
.green_p_2 {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	font-weight: lighter;
	color: #8a9b3c;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 16px;
	font-size: 1em;
	margin-top: 0px;
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}


.mainContent_p_2 {
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: normal;
	color: #666666;
	font-size: 1em;
	line-height: 1.5em;
}
.mainContent_p_2 {
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: normal;
	color: #666666;
	font-size: 1em;
	line-height: 1.5em;
}

.mainContent_p_4 {
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: normal;
	color: #000000;
	font-size: 0.9em;
}
.thrColFixHdr #container #footer a {
	color: #8a9b3c;
}
.thrColFixHdr #container #footer a:hover {
	color: #6891a6;
	text-decoration: none;
}
.thrColFixHdr #footer p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.85em;
	color: #8a9b3c;
	margin: 0;
}

.sidebar_img {
	padding: 0px;
	margin: 0px;
}
.text_norm{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	color: #000000;
	text-align: left;
	left: 0px;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 0px;
	margin-top: 2px;
	margin-right: 0px;
	margin-bottom: 3px;
	margin-left: 0px;
}
.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: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

.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:0;
    font-size: 1px;
    line-height: 0px;
}

h2 {
	color: #6891a6;
	font-size: 1.4em;
	font-style: normal;
	font-family: "Times New Roman", Times, serif;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-bottom: 4px;
	font-weight: lighter;
	line-height: 1.0em;
	margin-right: 0px;
	margin-left: 0px;
	padding-right: 0px;
	padding-left: 0px;
}


h3 {
	color: #6891a6;
	font-size: 0.9em;
	font-style: normal;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: lighter;
	text-transform: uppercase;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 12px;
	padding-left: 0px;
	margin-bottom: 0px;
}
.btm_space4 {
	padding-bottom: 4px;
}
.btm_space28 {
	margin-bottom: 30px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}
h4 {
	color: #6891a6;
	font-size: 1em;
	font-style: normal;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: lighter;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	line-height: 1.1em;
}
h5 {
	color: #6891a6;
	font-size: 1em;
	font-style: normal;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: lighter;
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
	font-weight: bold;
	color: #6891a6;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}



blockquote {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.95em;
	text-indent: -5px;
	color: #333333;
}
ol {
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	padding-top: 0px;
	margin-top: 0px;
	margin-left: 0px;
}
ol li {
	color: #6891a6;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 2px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 0px;
}
.pro {
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	width: 660px;
	margin-bottom: 0px;
	padding: 0px;
	height: 200px;
	float: none;
}
.thrColFixHdr #container #pro_wrap .pro h4 {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 4px;
	margin-left: 0px;
}




.thrColFixHdr #container #sidebar2 #pro_mini a {
	font-family: Arial, Helvetica, sans-serif;
}
.thrColFixHdr #container #sidebar2 #pro_mini ul {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 25px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
}
.thrColFixHdr #container #sidebar2 #pro_mini li {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
}
.thrColFixHdr #container #sidebar2 ul a {
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
}
.mainContent_a_blk {
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
}



.style3 {
	color: #6891a6;
	margin: 0px;
	padding: 0px;
	font-weight: bold;
}
.thrColFixHdr #container #pro_wrap .pro a {
	color: #000000;
}
.thrColFixHdr #container #pro_wrap .pro ul {
	list-style-type: disc;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	color: #000000;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	padding-left: 375px;
	margin-left: 0px;
}
.thrColFixHdr #container #pro_wrap .pro li {
	margin-bottom: 7px;
}
#pro_mini {
	width: 304px;
	background-color: #edeae9;
	margin-top: 30px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
}
.thrColFixHdr #container #sidebar2 #pro_mini p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 5px;
	color: #000;
	padding: 0;
}
.img_btm_space {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	margin: 0px;
}
.thrColFixHdr #container #sidebar2 .ul_blue li a {
	color: #6891a6;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

.thrColFixHdr #container #sidebar2 .ul_blue li a:hover {
	color: #6891a6;
	text-decoration: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.blue_bold {
	font-weight: bold;
	color: #6891a6;
}
.thrColFixHdr #container #sidebar2 #pro_mini ul {
	list-style-image: url(images/dot3.gif);
}
.list_no_bull {
	list-style-type: square;
	color: #F0F;
}
.link {
	color: #6891a6;
	
}

a:hover {
	text-decoration: none;
	color: #6891a6;
}

a {
	color: #6891a6;
	
}


.thrColFixHdr #container #mainContent h5 {
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: lighter;
	color: #8a9b3c;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 8px;
	font-size: 1em;
	margin-top: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.no_pad {
	margin: 0px;
	padding: 0px;
}
.btm_space10 {
	margin-bottom: 10px;
}
blockquote, blockquote p {
	text-indent: -0.8em;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 4px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0em;
	}
.top_space8 {
	padding-top: 8px;
}
.top_space16 {
	padding-top: 16px;
}
.neg_top {
	padding: 0px;
	margin-top: -8px;
	margin-right: 0px;
	margin-bottom: 16px;
	margin-left: 0px;
}

