@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: 61px;
	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: #666666;
	background-image:url(../images/common/tig_public_bkgd.jpg);
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #008AC2;
	background-repeat: repeat-x;
}
.twoColFixRtHdr #container { 
	width: 888px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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. */
	background-image:url(../images/common/tig_public_bkgd_container.jpg);
	
} 
.twoColFixRtHdr #containerBkgd {
	background-image:url(../images/common/tig_public_bkgd_containerBkgd.jpg);
	background-repeat: no-repeat;
}
 #login {
	text-align: right;
	height: 27px;
	color: #FFF;
	padding-right: 30px;
}
.twoColFixRtHdr #header { 
	/* padding: 0 45px 0 37px; */ /* 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: 101px;
} 
.twoColFixRtHdr #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 */
	color: #333333;
}
.twoColFixRtHdr #movie { 
	width: 852px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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. */	
	color: #00659C;
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 236px; /* 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: #E2EEF7; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
	margin-right: 20px;
	margin-top: 1px;
}
.twoColFixRtHdr #sidebarNavContainer {
	margin: 0 14px;
	background-image:url(../images/common/tig_public_sidbar_container_bkgd.jpg);
	background-repeat:repeat-y;
}
.twoColFixRtHdr #sidebarNavHeaderBkgd {
	margin: 0;
	background-image:url(../images/common/tig_public_sidbar_blend.jpg);
	background-repeat: no-repeat;
}
.twoColFixRtHdr #sidebarNavHeader {
	margin: 20px 0 0 1px;
	border-left: #B6191F solid 6px;
	color: #00659C;
	padding-left: 10px;
	font-size: 120%;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.twoColFixRtHdr #sidebarNavContent {
	margin: 10px 10px 0px 10px;
	background-color: #FFF;
	color: #00659C;
	font-size: 11px;
	padding: 5px 15px;
	line-height: 195%;
}
.twoColFixRtHdr #sidebarNavFooter {
	background-image:url(../images/common/tig_public_sidbar_footer_bkgd.jpg);
	background-repeat: no-repeat;
	background: #E2EEF7;
}
.twoColFixRtHdr #mainContent { 
	margin: 1px 250px 0 18px; /* the right margin on this div element creates the column down the right 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: 10px 70px 0 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
} 
.twoColFixRtHdr #mainContent 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 */
	color: #00659C;
}
.twoColFixRtHdr #mainContent p {
	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 */
	color: #666666;
	line-height: 180%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.twoColFixRtHdr #footer {
	padding: 0 10px 0 20px;
	background-image:url(../images/common/tig_public_bkgd_footer.jpg);
	background-repeat:repeat-x;
	color: #E2EEF7;
	text-align: center;
	font-size: 80%;
	padding: 10px 0 0 0;
	background-color: #008AC2;
} 
.twoColFixRtHdr #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: 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:0;
    font-size: 1px;
    line-height: 0px;
}
/*a:link {
	text-decoration: none;
    border-bottom: 1px dotted;
	color: #00659C;
}
a:visited {
	text-decoration: none;
    border-bottom: 1px dotted;
	color: #00659C;
}
a:hover {
	text-decoration: none;
    border-bottom: 1px dotted;
	color: #00659C;
	background-color:#E6EEF3;
}
a:active {
	text-decoration: none;
    border-bottom: 1px dotted;
	color: #00659C;
}*/
.loginNav {
	color: #FFF;
	text-decoration: none;
}
a.loginNav:link {
	color: #FFF;
	border-bottom: none;
}
a.loginNav:visited {
	color: #FFF;
	border-bottom: none;
}
a.loginNav:hover {
	color: #FFF;
	border-bottom: 1px dotted;
	background: none;
}
a.loginNav:active {
	color: #FFF;
	border-bottom: none;
}
a.sideBarNav:link {
	text-decoration: none;
    border-bottom: 1px dotted;
	color: #00659C;
}
a.sideBarNav:visited {
	text-decoration: none;
    border-bottom: 1px dotted;
	color: #00659C;
}
a.sideBarNav:hover {
	text-decoration: none;
    border-bottom: 1px dotted;
	color: #00659C;
	background-color:#E6EEF3;
}
a.sideBarNav:active {
	text-decoration: none;
    border-bottom: 1px dotted;
	color: #00659C;
}
.twoColFixRtHdr #mainContent a:link {
	text-decoration: none;
    border-bottom: 1px dotted;
	color: #00659C;
}
.twoColFixRtHdr #mainContent a:visited {
	text-decoration: none;
    border-bottom: 1px dotted;
	color: #00659C;
}
.twoColFixRtHdr #mainContent a:hover {
	text-decoration: none;
    border-bottom: 1px dotted;
	color: #00659C;
	background-color:#E6EEF3;
}
.twoColFixRtHdr #mainContent a:active {
	text-decoration: none;
    border-bottom: 1px dotted;
	color: #00659C;
}
.redLetter {
	color:#930;
}
.whiteLetter {
	color:#FFF;
}
#border {
	margin: 0;
	border: solid 1px #CCC;
	padding: 10px;
}
/* eliminate img shifing in IE8 */
a img {
	display: block;
}

#tblLines {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 10px;
	border-bottom: 1px dashed #A2A2A2;
}

#tblLinesSolid {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 10px;
	border: 1px solid #DCDCDC;
}

#tblLinesHeader {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 10px;
	border-top: 1px dashed #A2A2A2;
	border-bottom: 1px dashed #A2A2A2;
}

.headerText {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #333333;
}

.headerText2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #9C3033;
}

