@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	/* background: #666666; */
	background: #DDDDDD;
	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: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColFixHdr #header { 
	/* background: #DDDDDD; */
	background: red;
	color: white;
	padding: 0 10px 0 10px;  /* 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. */
	text-align:center;
	height: 150px;
} 
.thrColFixHdr #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 */
}
.thrColFixHdr #menubar { 
	padding: 0;
	background: navy;
	color: #66CCFF;
	height: 30px;
	vertical-align: middle;
	padding-top: 5px;
	text-align: center;
	font-size: 100%;
	font-weight: 500;
	font-variant:small-caps;
}

.thrColFixHdr #menubar  a { 
	vertical-align: middle;
	text-align: center;
	padding-left: 2em;
	padding-right: 2em;
}

a.menuitem:link {
	color:#66CCFF;
	text-decoration:none;
}
a.menuitem:active {
	color:#66CCFF;
	text-decoration:none;
}
a.menuitem:visited {
	color:#66CCFF;
	text-decoration:none;
}
a.menuitem:hover {
	color:#FFFFFF;
	text-decoration:underline;
}
 
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 170px; /* 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 */
	height: 750px;
	/* background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	background:#66CCFF;
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
	font-size: 90%;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* 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 */
	height: 750px;
	/* background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	background:#66CCFF;
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
	font-size: 90%;
}
.thrColFixHdr #mainContent { 
	margin: 0 220px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. */
					 /* No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin */
					 /* if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	vertical-align:top;
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.thrColFixHdr #mainContentLtr { 
	margin: 0 30px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. */
					 /* No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin */
					 /* if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	vertical-align:top;
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.thrColFixHdr #mainContentMap { 
	margin: 0 50px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. */
					 /* No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin */
					 /* if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	vertical-align:top;
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.thrColFixHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#BBBBBB;
	text-align:center;
	font-size: 70%;
	color:#444444;
} 
.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: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
/* 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 */
.clearfloat { 
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
a.linktext {
	color:#0000CC;
	text-decoration:none;
	font-weight:700;
	vertical-align: baseline;
}
a.linktext:hover {
	color: red;	/* was #FF6600 */
	text-decoration:underline;
}
p.homeDesc {
	font-size: 80%;
}
p.homeSidebarSmall {
	font-size: 85%;
}
ul.homeIssues {
	padding-left: 15px;
}
a.homeIssueLink {
	color: black;
	text-decoration:none;
	font-size: 90%;
	font-weight:700;
	vertical-align: baseline;
}
a.homeIssueLink:hover {
	color: red;
	text-decoration:underline;
}
p.DBtext {
	font-size: 80%;
}
ul.homeBullets {
	padding-left: 15px;
	font-size: 80%;
}
p.letterText {
	font-size: 80%;
}
p.letterTextSide {
	font-size: 80%;
	margin-left: 15px;
}
h3.letterHead {
	margin-left: 15px;
}
h2.letterHead {
	font-size: 95%;
}
h3.letterSubHead {
	font-size: 85%;
}
.issueTextEmphasis {
	color: red;
}
ul.issueBullets {
	padding-left: 15px;
	font-size: 80%;
}
h3.issues {
	font-size: 95%;
}
ul.roleBullets {
	padding-left: 15px;
	padding-bottom: 20px;
	font-size: 90%;
}
li.roleBullets {
	padding-bottom: 10px;
}
.photoCaption {
	font-size: 70%;
	text-align: center;
}

