@charset "utf-8";
/* CSS Document */

.bottomTdBorder td {border-bottom: 1px solid #ffffff;
}

/*	Body Rule Notes 
	margin values are in shorthand: Top Right Bottom Left.
	Setting the left and right margins to 15% effectively centers
	all static content and makes that content fill 70% of the window. 
	Zero is the only value that does not require a unit of measure
	Global Font Style and base Font Size */
body {
	background-color: #FFFFFF;
	padding: 0;
	margin:0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
}

/* 	The main content DIV has no position and is therefore
	considered STATIC. */
#maincontent {font-size: 80%;
	padding-bottom:8px;
	padding-top:0px;
	padding-left:40px;
	padding-right: 140px;}

/* 	By adding a Tag "p" after the maincontent ID Selector we
	create what is called a Descendant Selector. In this instance
	the rule is defining styles for all paragraphs that are
	children (descendants) of the maincontent DIV. Another way
	of saying this is "all paragraphs inside maincontent".
	
	We set all paragraphs in the main content area to have
	Line height set to 150% for readability and text justified.
	Margin is set in shorthand to 8px top and bottom
	and zero left and right.
	
	In shorthand, the presence of two
	values means the first one is for Top and Bottom while the
	second is for Left and Right. */
#maincontent p, ul {
	margin: 8px 0;
	line-height: 150%;
	text-align: justify;
}


/* Heading Rules */

/*	The H1 is used to wrap the Logo, representing
	the top of your page's hierarchy */
h1 {margin: 0;}

/*	Additional Headings
	font type for h2 only
	Remove font-weight for H2 to make it render in default bold weight
	
	Font size is based on its container. An H2 in maincontent,
	for example, would be 200% x 85%
	
	Substantial top marigns are set for headings to provide nice
	separation of sections. */
h2 {
	margin: 24px 0 0 0; /* shorthand T-R-B-L */
	font-family: "Century Gothic", Arial, sans-serif; 
	font-weight: normal;
	font-size: 200%;
}
h3 {font-size: 130%; margin: 44px 0 0 0;}
h4 {font-size: 115%; margin: 36px 0 0 0;}


/* 	Link styles for Main Content only
	Active and Focus trigger the color change in IE-PC and other
	modern browsers when tabbing through the links with keyboard. */
#maincontent a:link {color: #36458F;}
#maincontent a:visited {color: #7A82B3;}
#maincontent a:hover, #maincontent a:active, #maincontent a:focus {color: #000000;}

.support-button {float:right;}

/* The footer is a Static DIV set with a substantial top margin to
	separate it from the main content above.
	
	Font size is 85% of the global font size.
	
	Padding top is set to 6px to provide separation between the
	footer contents and the 2px wide dotted border above it. */
#footer {
	margin: 50px 0px 0px 0px;
	font-size: 85%;
	padding: 6px 0px 6px 0px;
	border-top: 2px dotted #FFC600;
	color: #8F92B3;
    margin-left: auto; 
    margin-right: auto;
	text-align:center;
}

/* 	Link styles for Footer Content only
	Active and Focus trigger the color change in IE-PC and other
	modern browsers when tabbing through the links with keyboard. */
#footer a:link {color: #6F78B3; text-decoration: none;}
#footer a:visited {color: #8F92B3;}
#footer a:hover, #footer a:active, #footer a:focus {color: #000000;}
