@charset "UTF-8";
/* CSS Document */

/* This is to try and get rid of all stupid margins and stuff that i don't want by default */
p, ul, li, a, table, tr, td, h1, h2, h3, h4, h5, img, div, form{
	margin: 0px;
	padding: 0px;
	border: none;
}

table {
	border-collapse: collapse;
}

img {
	display: block;
}


body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #ffffff;
	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;
}
.thrColFixHdr #container { 
	width: 965px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColFixHdr #container.popup_container {
	width: 500px;
}
.thrColFixHdr #header { 
	background: #ffffff url(../images/design/header_bg.gif) top left no-repeat; 
	padding: 0px;  /* 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. */
	height: 80px;
} 
.thrColFixHdr #header #logo {
	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: 15px 0px 0px 20px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	width: 340px; /*actual image width 334px */
	float: left;
}
.thrColFixHdr #header #global_nav {
	background: url(../images/design/global_nav_bg.gif) bottom right no-repeat;
	float: right;
	width: 300px;
	margin: 0px 10px 0px 0px;
}
.thrColFixHdr #header #global_nav p {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #5b5951;
	padding: 5px 5px 5px 5px;
	margin: 0px;
}
.thrColFixHdr #header #global_nav a {
	color: #333333;
	text-decoration: none;
	padding: 0px 7px 0px 7px;
}
.thrColFixHdr #header #global_nav a:hover {
	color: #02bcde;
	text-decoration: underline;
}

.thrColFixHdr #header #search_box {
	float: right;
	position: relative;
	top: 40px;
	right: -300px;
	width: 150px;
}

.thrColFixHdr #main_nav {
	border-top: 2px solid #065563;
	border-bottom: 2px solid #065563;
	width: 965px;
	height: 20px;
	background: #01778c;
}

.thrColFixHdr #main_nav ul.lev1{
	
	list-style: none;
	margin: 0px 0px 2px 0px;
	padding: 0px 0px 0px 15px;
	text-align: left;
}

*html .thrColFixHdr #main_nav ul li.lev1 { width: 60px; white-space: nowrap !important;}/* IE 6 fix */

.thrColFixHdr #main_nav ul li.lev1{
	float: left;
	padding: 0px 12px 0px 8px;
	background: url(images/main_nav_divider.gif) 100% 55% no-repeat;
	height: 18px; /* 20px height from nav container, minues borders */
}
.thrColFixHdr #main_nav ul li.last {
	background: none;
}
.thrColFixHdr #main_nav ul li a{
	font-family: "Trebuchet MS", Arial;
	font-size: 11px;
	text-transform: uppercase;
	text-decoration: none;
	color: #ffffff;
	white-space: nowrap;
	line-height: 18px;
	display: block;
}
.thrColFixHdr #main_nav ul li a:hover, .thrColFixHdr #main_nav ul li a.selected, .thrColFixHdr #main_nav ul li a.current{
	color: #dbdc03;
}

.thrColFixHdr #main_nav ul li ul {
	display: none;
	z-index: 9999999;
	position: absolute;
}
.thrColFixHdr #main_nav ul li ul{
	background: #f0f1f1;
	border: 1px solid #065563;
}

.thrColFixHdr #main_nav ul li ul li{
	border-bottom: 1px solid #cccccc;
	padding: 0px;
	list-style: none;
}

.thrColFixHdr #main_nav ul li ul li.last {
	border-bottom: none;
}

.thrColFixHdr #main_nav ul li ul li a {
	color: #333333;
	padding: 5px 10px 5px 20px;
}

.thrColFixHdr #main_nav ul li ul li a:hover, .thrColFixHdr #main_nav ul li ul li a.selected, .thrColFixHdr #main_nav ul li ul li a.current {
	color: #ffffff;
	background: #02bcde url(images/main_nav_arrow.gif) left top no-repeat;
}

