@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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 100%;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	background-color: #FFF;
	bottom: auto;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.twoColElsLtHdr #container {
	width: 46em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
} 
.twoColElsLtHdr #header {
	padding: 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. */
	background-color: #069;
	color: #FFF;
	font-size: x-large;
	text-align: center;
} 
.twoColElsLtHdr #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; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #FFF;
	text-align: center;
	font-size: x-large;
	background-color: #069;
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLtHdr #sidebar1 p" rule.
*/
.twoColElsLtHdr #sidebar1 {
	float: left;
	width: 10em; /* top and bottom padding create visual space within this div */
	background-color: #069;
	text-align: left;
	border-top-color: #069;
	border-right-color: #069;
	border-bottom-color: #069;
	border-left-color: #069;
	padding: 0px;
}
.twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {
	margin-left: 5px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 5px;
	background-color: #069;
	border-top-color: #069;
	border-right-color: #069;
	border-bottom-color: #069;
	border-left-color: #069;
	font-size: medium;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsLtHdr #mainContent {
	margin: 0 1.5em 0 13em;
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	font-weight: bold;
} 
.twoColElsLtHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	color: #FFF;
} 
.twoColElsLtHdr #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 */
	background-color: #069;
	text-align: center;
	color: #FFF;
	font-size: medium;
}

/* Miscellaneous classes for reuse */
.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: xx-small;
	line-height: 0px;
}.twoColElsLtHdr #container #header h1 .small {
	font-size: small;
	font-weight: bold;
	background-color: #069;
	border-top-color: #069;
	border-right-color: #069;
	border-bottom-color: #069;
	border-left-color: #069;
}
.twoColElsLtHdr #container #header h1 .small {
	font-family: Verdana, Geneva, sans-serif;
	text-align: left;
	color: #FFF;
	background-color: #069;
	border-top-color: #069;
	border-right-color: #069;
	border-bottom-color: #069;
	border-left-color: #069;
}
.twoColElsLtHdr #container #header p {
	font-weight: bold;
	font-size: x-large;
	color: #FFF;
	font-style: italic;
	background-color: #069;
}
.twoColElsLtHdr #container #mainContent .style13 {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent .style13 {
	font-family: Verdana, Geneva, sans-serif;
}
.xxlarge {
	font-size: xx-large;
}
.twoColElsLtHdr #container #header .xxlarge {
	font-style: italic;
	font-family: Verdana, Geneva, sans-serif;
	font-size: xx-large;
	font-weight: bold;
	color: #FFF;
	background-color: #069;
	border-top-color: #069;
	border-right-color: #069;
	border-bottom-color: #069;
	border-left-color: #069;
}
.twoColElsLtHdr #container #mainContent div center .style14 font {
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
}
.twoColElsLtHdr #container #mainContent div p .style14 {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div .style14 {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div p .style14 {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div .style14 .style14 {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div p .style14 #int {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div .style14 {
	font-family: Verdana, Geneva, sans-serif;
	text-align: left;
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent div .style14 #sba {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div ul .links a {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div ul .links a font {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div ul li {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div ul li {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	font-weight: normal;
	text-align: left;
}
.twoColElsLtHdr #container #mainContent div .links li font a {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div .links li a {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div .links li a font {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div .links li a font {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div ul li font a {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div ul li font a {
	font-family: Verdana, Geneva, sans-serif;
	font-style: normal;
}
.twoColElsLtHdr #container #footer {
	font-weight: bold;
	font-size: medium;
}
.white {
	color: #FFF;
}
.bold {
	font-weight: bold;
}
.white {
	color: #FFF;
	font-weight: bold;
	background-color: #069;
	font-size: medium;
}
.verdana {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center .verdana {
	font-size: small;
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent ul li .links {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent .style15 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent .style15 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
}
.twoColElsLtHdr #container #mainContent .style15 {
	font-size: medium;
}
.verdana {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent .verdana {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent .style1 {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent ul .links a {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent ul .links a {
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent ul .links a {
	font-weight: bold;
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	text-align: left;

}
.twoColElsLtHdr #container #mainContent ul .links {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
}
.twoColElsLtHdr #container #mainContent center div .style15 font strong {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center div .style15 font strong {
	font-size: medium;
}
.twoColElsLtHdr #container #mainContent center div .style15 {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent .style15 {
	font-family: Verdana, Geneva, sans-serif;
	text-align: left;
}
.twoColElsLtHdr #container #mainContent center .links {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	font-weight: normal;
}
.twoColElsLtHdr #container #mainContent center .links .verdana #onlinedgree {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent center ul li .links div .links {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center ul .links div a {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center center center div .style16 font {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center center ul li div .links .style16 {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center ul li div .links {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center ul li div .links {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center div .links li a {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center div .style17 {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center center .links li div a {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center div .links li a {
	font-family: Verdana, Geneva, sans-serif;
}
.verdana14 {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent center center center .links li div a {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center center div ul .links a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	color: #03F;
}
.twoColElsLtHdr #container #mainContent center center center div ul li .links {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	color: #03F;
}
.twoColElsLtHdr #container #mainContent center center center .links li div a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	color: #00F;
}
.twoColElsLtHdr #container #mainContent center center div .links li a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	color: #03F;
}
.twoColElsLtHdr #container #mainContent center center .style18 font {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center .style18 strong {
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent center center div .links li a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent center center div .links li a {
	font-size: small;
	font-style: normal;
	color: #00F;
}
.twoColElsLtHdr #container #mainContent div b font {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div ul .links a {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div ul .links a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div .links li a {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div .links li a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div ul .links a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div ul .links a {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div ul .links a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent div .links li a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div .links li a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div .links li a {
	color: #00F;
}
.twoColElsLtHdr #container #mainContent p font b {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent div .links li a font {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
}
.twoColElsLtHdr #container #mainContent blockquote p .links {
	font-family: Verdana, Geneva, sans-serif;
}
.verdana14 {
	font-size: small;
	font-weight: normal;
}
.twoColElsLtHdr #container #mainContent blockquote p .links {
	font-style: italic;
}
.twoColElsLtHdr #container #mainContent blockquote p .links {
	font-style: italic;
}
.twoColElsLtHdr #container #mainContent blockquote p .links {
	font-style: italic;
}
.twoColElsLtHdr #container #mainContent blockquote p .links {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent blockquote p .links {
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent div ul li .links {
	font-style: italic;
}
.twoColElsLtHdr #container #mainContent div ul li .links {
	font-style: normal;

}
.twoColElsLtHdr #container #mainContent center center div ul li .links {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
}
.twoColElsLtHdr #container #mainContent center center center div .style19 span {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center center div .style19 font strong {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center center div .style19 span {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center .style19 {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center div ul li .links {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
}
.twoColElsLtHdr #container #mainContent center center p font strong {
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	font-size: medium;
}
.twoColElsLtHdr #container #mainContent center center div ul li .links {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	font-style: normal;
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent center center div ul li a font {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center div ul li font {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center div ul li font {
	font-family: Verdana, Geneva, sans-serif;
}
.italics {
	font-style: italic;
}
.twoColElsLtHdr #container #mainContent center center div ul .links div div .links {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center ul .links {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	font-weight: normal;
}
.twoColElsLtHdr #container #mainContent center center center div ul li .links {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
}
.twoColElsLtHdr #container #mainContent p {
	font-weight: bold;
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
	font-style: normal;
	color: #000;
}
.twoColElsLtHdr #container #mainContent center center div center div .links font {
	font-family: Verdana, Geneva, sans-serif;
	font-style: italic;
}
.twoColElsLtHdr #container #mainContent center center div .links {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
}
.twoColElsLtHdr #container #mainContent center center .style110 {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #header p {
	font-style: italic;
}
.twoColElsLtHdr #container #header p {
	font-style: normal;
	font-size: xx-large;
	background-color: #069;

}
.italics {
	font-style: italic;
}
.twoColElsLtHdr #container #mainContent .style111 font {
	font-family: Verdana, Geneva, sans-serif;
}
.italics {
	font-style: italic;
}
.twoColElsLtHdr #container #header p {
	background-color: #069;
	font-size: x-small;
}
.italics {
	font-style: italic;
}
.twoColElsLtHdr #container #mainContent center center div .style112 strong {
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
	font-style: normal;
}
.twoColElsLtHdr #container #mainContent center center div center div font strong {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center div .style1121 strong {
	font-size: small;
	font-style: italic;
}
.twoColElsLtHdr #container #mainContent center center center div font strong {
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
	font-style: normal;
	font-weight: bold;
	color: #000;
}
.twoColElsLtHdr #container #mainContent .links li a {
	font-family: Verdana, Geneva, sans-serif;
	text-align: left;
}
.twoColElsLtHdr #container #mainContent div .links li a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
}
.twoColElsLtHdr #container #mainContent center center .links li div div a {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center center div p span font {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center center div .style113 {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center center .style113 {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center center .style113 {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent p {
	font-size: small;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: normal;
}
.twoColElsLtHdr #container #mainContent center center center table caption #searchtips {
	font-size: large;
}
.twoColElsLtHdr #container #mainContent center center center table tr th p {
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent center center center table tr td p {
	font-weight: normal;
}
.twoColElsLtHdr #container #mainContent center center center div ul li {
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent center center center div ul li {
	font-weight: lighter;
	font-style: italic;
}
.twoColElsLtHdr #container #mainContent center center center div ul li span {
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent center center center table tr th p {
	text-align: center;
}
.twoColElsLtHdr #container #mainContent center center center table tr td p {
	text-align: center;
	font-size: medium;
}
.twoColElsLtHdr #container #mainContent center center center table tr th p {
	font-weight: normal;
	font-size: medium;
}
.twoColElsLtHdr #container #mainContent div .style15 font strong {
	font-family: Verdana, Geneva, sans-serif;
	font-size: medium;
}
.twoColElsLtHdr #container #header {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div div p #ecogeo {
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent ul li a {
	font-style: normal;
	font-weight: bold;
	color: #00F;
	font-size: small;
}
.twoColElsLtHdr #container #mainContent center center center blockquote table tr th p {
	font-weight: normal;
	font-size: medium;

}
#container #mainContent center center center blockquote table tr td p {
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent center center center blockquote table tr td p {
	font-weight: normal;
}
.twoColElsLtHdr #container #mainContent center center center blockquote table tr th {
	font-weight: normal;
}
.twoColElsLtHdr #container #mainContent center center center div ul li ul li {
	font-style: normal;
}
.twoColElsLtHdr #container #mainContent center center center div ul li a strong {
	font-style: normal;

}
.twoColElsLtHdr #container #mainContent center center center div ul li {
	font-weight: bold;
	font-style: normal;


}
.twoColElsLtHdr #container #mainContent center center center div ul li a strong {
	font-size: small;
	font-weight: bold;
	color: #00F;
	background-color: #FFF;
}
.twoColElsLtHdr #container #mainContent center center center table tr th {
	font-weight: bold;
	font-size: small;
}
.twoColElsLtHdr #container #mainContent center center center blockquote p a {
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent div ul li .links {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div ul li .links font u a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div ul .links .links a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div blockquote ul li font a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div blockquote ul li .links font a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div blockquote ul li a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div blockquote ul li .links {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div blockquote ul li a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div blockquote ul li .links {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div blockquote ul li a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div blockquote ul li .links {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div ul .links a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div div .links li a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent ul li div a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div blockquote ul li a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div blockquote ul li a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div ul li a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div ul .links a {
	font-size: medium;
}
.twoColElsLtHdr #container #mainContent div ul .links a {
	font-size: small;
}
.sml {
	font-size: small;
}
.sml {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div blockquote p a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div blockquote p .sml strong span {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div ul li div .links {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div center ul li .links font u a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div ul li div .links {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div div ul li .links {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div center ul li .links font a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div ul li .links {
	font-size: small;
	font-weight: bold;
}
.sml {
	font-size: medium;
}
.twoColElsLtHdr #container #mainContent div center p {
	font-size: small;
}
.twoColElsLtHdr #container #footer p {
	font-size: medium;
}
.med {
	font-size: medium;
}
.twoColElsLtHdr #container #mainContent div ul .links a {
	font-size: small;
}
.sml {
	font-size: small;
}
.sml {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div .links li font a {
}

.twoColElsLtHdr #container #mainContent div .links li font a {
	font-size: small;
}
.sml {
	font-size: small;
}
.sml {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent ul li div .links {
	font-size: small;
}
.sml {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent blockquote ul li .links {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div .style15 font strong {
	font-size: medium;
}
.twoColElsLtHdr #container #mainContent div strong {
	font-size: medium;
}
.twoColElsLtHdr #container #mainContent ul li div .links {

}
.twoColElsLtHdr #container #mainContent center center ul li div .links {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent center center ul li div .links {
	font-size: small;
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent center center center ul li .links div div a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent center div ul li a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent center ul li div .links {
	font-size: small;
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent center div p font {
	font-family: Verdana, Geneva, sans-serif;
}
.twoColElsLtHdr #container #mainContent center center center div ul .links a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent center center center div ul .links a {
	color: #00F;
}
.twoColElsLtHdr #container #mainContent center center center div ul li .links {
	font-size: small;
	color: #00F;
}
.twoColElsLtHdr #container #mainContent center center center div p {
	font-size: medium;
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent center center center div p a {
	color: #00F;
}
.twoColElsLtHdr #container #mainContent center center center div p a {
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent center center div .links li a {
	color: #00F;
}
.twoColElsLtHdr #container #footer p {
	font-size: medium;
	text-align: center;
}
.twoColElsLtHdr #container #mainContent div ul li a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent center center center p a {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent center center center p a strong span {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent center center center p a {
	font-size: small;
	font-weight: bold;
}
.twoColElsLtHdr #container #mainContent div div li .links {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div div li .links {
	font-size: small;
}
.twoColElsLtHdr #container #mainContent div div li .links {
	font-weight: bold;
	color: #00F;
}
.twoColElsLtHdr #container #mainContent div ul li a {
	text-align: left;
}
.twoColElsLtHdr #container #mainContent div div ul li .links {
	text-align: left;
}
.twoColElsLtHdr #container #mainContent div ul li a {
	text-align: left;
}
.twoColElsLtHdr #container #mainContent ul li .links {
	text-align: left;
}
.twoColElsLtHdr #container #mainContent div blockquote table tr th p strong {
	text-align: center;
}
.twoColElsLtHdr #mainContent blockquote p a .white strong {
	font-size: large;
}
.twoColElsLtHdr #mainContent blockquote p {
	font-weight: bold;
}
.subtitle {
	font-size: medium;
}
.twoColElsLtHdr #container #mainContent ul li a {
	text-align: left;
}
.twoColElsLtHdr #container #mainContent ul li ul li {
	font-weight: normal;
}
.twoColElsLtHdr #container #mainContent center center center .style16 strong #databases {
}
.twoColElsLtHdr #container #mainContent center center center h2 strong #databases {
	text-align: left;
}
.twoColElsLtHdr #container #mainContent ul li a {
	text-align: left;
}
.twoColElsLtHdr #container #mainContent ul li em {
	text-align: left;
}
.twoColElsLtHdr #container #mainContent ul li em {
	text-align: left;
}

