@charset "UTF-8";
body  {
	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;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 13px;
	background-color: #DDD;
}
.thrColFixHdr #container {
	width: 780px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
} 
.thrColFixHdr #header {
	background-color: #FFFFFF;
} 
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px;
	padding-top: 0px;
	padding-right: 17px;
	padding-bottom: 15px;
	padding-left: 15px;
	font-size: 11px;
	margin: 0px;
}
.thrColFixHdr #mainContent {
	text-align: justify;
	padding-right: 32px;
	margin-left: 182px;
	padding-left: 15px;
	line-height: 18px;
	color: #333333;
} 
.thrColFixHdr #footer {
	background:#DDDDDD;
	font-size: 11px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.thrColFixHdr #footer p {
	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 */
}
.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: 12px;
}
.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:0;
    font-size: 1px;
    line-height: 0px;
}
/* SpryMenuBarVertical.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
ul.MenuBarVertical
{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	font-size: 12px;
	cursor: default;
	width: 150px;
}
/* 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
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 11px;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 150px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
/* 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) */
ul.MenuBarVertical ul
{
	margin: -5% 0 0 95%;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 180px;
	left: -1000em;
	top: 6px;
}
/* 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: 180px;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
{
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #CCC;
	border-right-color: #CCC;
	border-left-color: #CCC;
}
/* Submenu containers have borders on all sides */
ul.MenuBarVertical ul
{
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #CCC;
	border-right-color: #CCC;
	border-left-color: #CCC;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	background-color: #EEE;
	padding: 0.5em 0.75em;
	color: #333;
	text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
	background-color: #933;
	color: #FFF;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
{
	background-color: #933;
	color: #FFF;
}

/*******************************************************************************

 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/SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 90% 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: 90% 50%;
}

/*******************************************************************************

 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;
	}
}
h3 {
	font-size: 12px;
	color: #933;
	font-weight: normal;
	margin: 0px;
}
h1 {
	font-size: 13px;
	margin: 0px;
}
h2 {
	font-size: 12px;
	margin: 0px;
	padding-top: 12px;
}

#blockads {
	width: 140px;
	margin-top: 25px;
	background-color: #E1C3C5;
	padding: 6px;
}
.textlink {
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #333333;
	color: #333333;
}
.updated {
	font-size: 10px;
}
a:link {
	color: #000000;
	text-decoration: none;
}
a:hover {
	color: #933;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
p {
	margin-top: 3px;
}
.thrColFixHdr #mainContent p {
	margin-top: 10px;
	margin-bottom: 10px;
}
#blockads2 {
	width: 140px;
	margin-top: 15px;
	background-color: #E1C3C5;
	padding: 6px;
}
.formfields {
	width: 134px;
	font-size: 11px;
	margin-top: 2px;
}
form {
	margin-top: 3px;
	margin-bottom: 6px;
}
.thrColFixHdr #container #sidebar1 #blockads p {
	margin-bottom: 3px;
}
.thrColFixHdr #container #sidebar1 #blockads2 p {
	margin-bottom: 6px;
}
.submitform {
	font-size: 11px;
	margin-top: 4px;
	margin-bottom: 0px;
}
.quotes {
	font-style: italic;
}
.fltrtbottmarg {
	float: right;
	margin-left: 8px;
	margin-bottom: 32px;
}
.coltext {
	color: #933;
}
.fltrt2 {
	float: right;
	margin-right: 150px;
}
.bodytintpanel {
	font-size: 11px;
	padding: 6px;
	background-image: url(images/ttc_logo.gif);
}
.thrColFixHdr #container #mainContent .fltrt3 ul {
	margin-top: 0px;
}
.fltrt3 {
	float: right;
	margin-right: 40px;
	margin-top: 0px;
}
.thrColFixHdr #container #mainContent .bodytintpanel h2 {
	font-size: 11px;
}
.fltrt4 {
	float: right;
	margin-right: 40px;
}
.clients {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	font-size: 11px;
	padding: 3px;
	border-left-width: 6px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
	border-right-width: 6px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}
.clientshead {
	font-size: 11px;
	padding: 3px;
	border-left-width: 6px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
	border-right-width: 6px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}
.clientsindent {
	font-size: 11px;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 16px;
	border-left-width: 6px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
	border-right-width: 6px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}
.clientsindentfinal {
	font-size: 11px;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
	padding-left: 16px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	border-left-width: 6px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
	border-right-width: 6px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}
.thrColFixHdr #container #mainContent .fltrt .coltext {
	margin-top: 0px;
	padding-top: 12px;
}
.coltextbold {
	font-weight: bold;
	padding-top: 12px;
	font-size: 12px;
}
.table {
	font-size: 11px;
}
ul.list-right {
            float:left;
            padding-left:20px;
            margin-left:40px;
}
 
ul.list-left {
            float:left;
            padding-left:20px;
            margin-left:20px;
}
.smaller {
	font-size: 12px;
	background-color: #FFFFCC;
	margin: 2px;
	padding-top: 2px;
	padding-right: 8px;
	padding-bottom: 2px;
	padding-left: 8px;
}
.10point {
	font-size: 10px;
}
.thrColFixHdr #container #mainContent .bodytintpanel blockquote {
	margin-top: 0px;
}
.rule {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #B5CECD;
	margin-top: 0px;
	padding-top: 0px;
}
