@charset "UTF-8";
/* CSS Document */

.acdsSite #container { 
	width: 100%; 
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	}

.acdsSite #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 */
}

.acdsSite #sidebar1 {
	position:relative;
	width:25%;
	height:100%;
	float: left; 
	width: 18em; /* since this element is floated, a width must be given */
	padding: 10px; /* top and bottom padding create visual space within this div  */
}
.acdsSite #sidebar1 h3, .acdsSite #sidebar1 p {
	margin-left: 20px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.acdsSite #Form {
	z-index: 10;
	float: right;
	margin: 0px 20px 20px 20px;
	width: 200px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:.70em;
	font-weight: bold;
	line-height: 115%;
	color: #1D437A;
}

.acdsSite #mainContent { 
	position:relative;
	height:100%;
	width:85%;
} 

.acdsSite #TextContent {
	position:relative;
	height:100%;
	width:85%;
	padding-left: 20px;
} 

.acdsSite #nav { 
font-family:Arial, Helvetica, sans-serif;
padding: 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 

.acdsSite #footer { 
font-family:Arial, Helvetica, sans-serif;
font-size: x-small;
padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 



/* 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: 1px;
    line-height: 0px;
}

H1 
{ font-family: Georgia, "Times New Roman", Times, serif;
font-weight: bold;
font-size:1em;
color: #1D437A;
}

H2
{ font-family: Arial, Helvetica, sans-serif;
font-weight:bold;
font-size:.9em;
line-height: 125%
color:#1D437A;
}

p.text {
font-family: Arial, Helvetica, sans-serif;
font-size:.85em;
line-height:125%;
color: #1D437A;
}

p a {
font-weight: bold;
/*all links in a paragraph show up bold*/
}

p small {
font-size: .65em;
}
/*styles anything tagged "small" in paragraph*/

p.footer {
padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
font-family: Arial, Helvetica, sans-serif;
font-size:x-small;
line-height:125%;
}

p.nav {
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, sans-serif;
	font-size:0.70em;
	line-height:125%;
	font-weight: bold;
}
ul.text {
font-family: Arial, Helvetica, sans-serif;
font-size:.85em;
line-height:125%;
color: #1D437A;
padding-left: 20px
}

ul.list {
font-family: Arial, Helvetica, sans-serif;
font-size:.85em;
color: #1D437A;
}


a {
 color: inherit;
 }
 
a:link {
	text-decoration: none;
	border: 0px;
}
a:visited {
	text-decoration: none;
	color: inherit;
}
a:hover {
	text-decoration: underline;
	font-weight:bold;
	color: #1D437A;
}
a:active {
	text-decoration: none;
}

a.folio { 
font-family: Arial, Helvetica, sans-serif;
padding-left:20px;
font-size:.85em;
letter-spacing:.25em;
color:#1D437A;
}

a:hover.anchor {
text-decoration: none;
}