@charset "utf-8";
body  {
font-family:Calibri, Arial, Verdana;
font-size:15px;
	background: #FFFFFF;
	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 */s
	color: #000000;
	min-width:925px;
	max-width:1100px;
}
#container { 
	width: 97%;  /* this will create a container 97% of the browser width */
	background: #FFFFFF;
	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. */
} 
#header {
	height:220px;
	}
#header h1 {
	font-size:30px;
	color:#993399;
	}
#header .slogan {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 18px;
	color:#000000;
	background-color: transparent;
	float:right;
	width: 400px;
	text-align:right;
	margin-right: 20px;
	margin-top: 15px;
	display: inline;  /* <---Solution for bug IE6 */
}
#menu {
	color: #778899;
	background-color:transparent;
	float:left;	
	text-align:center;
	padding:10px;
	margin-top: 30px;
	margin-left: 10px;
	margin-bottom: 5px;
	display: inline;  /* <---Solution for bug IE6 */ 
}
#header a:link, #header a:visited, #header a:active {
	color:#660066;
	font-family:Arial, Helvetica, sans-serif;
	font-size:20px;
	text-align:center;
	text-decoration:none;
	border:2px solid #993399;
	padding: 2px;
	margin:2px;
	background-color:#FFFFFF
}
#header a:hover {
color:#660066;
border: 1px solid #993399;
}
#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 */
}
#header img {
margin-top:10px;
}
#header .logo {
	float:left;
	width: 200px;
	margin-left: 5px;
	margin-top: 5px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.small {
font-size:11px;
}
#sidebar1 {
font-family:Calibri, Arial, Verdana;
font-size:14px;
	float: right; 
	width: 200px; /* since this element is floated, a width must be given */
	margin-left:10px;
	padding: 5px;
	margin-top: 100px;
	margin-bottom:5px;
	border:1px solid #993399;
	background-image:url(../images/orchid_sm.gif);
	background-position:top right;
background-repeat:no-repeat;
}
#sidebar1 h2, #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
#sidebar1 a:link, #sidebar1 a:visited, #sidebar1 a:active {
	color:#993399
}
#sidebar1 a:hover {
color:#330033;

}
#indent {
margin-left:35px;
}
#indent h3{
margin-left:35px;
font-style:italic;
}


#mainContent {
background-image:url(../images/orchid_sm.gif);
background-repeat:repeat-y;

	zoom: 1;
	padding-top: 15px;
	font-size:100%;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 10px;
	padding-left: 40px;
	 }
#mainContent ul {
font-size:100%;
}
#mainContent ul ul{
font-size:90%;
font-style:italic;
}
#mainContent li {
margin-bottom: 2px;
}
#mainContent h3{
font: Verdana, Arial, Helvetica, sans-serif, italic, 12px, 

}
#breadcrumbs {
font-size:90%;
padding-top:10px;
margin-left: 30px;
margin-top: 5px;
width:400px;
text-align:left;
clear:both;
}
#wrapper {
margin-top:1s0px;
}
#mainContent .list {
font-size:16px;
list-style-type:none;
padding-left:100px;
}

#mainContent a:link, #mainContent a:visited {
color:#330033;
}
#mainContent a:hover {
color:#993399;
}
#mainContent img {
margin:5px;
padding-right:5px;
border:none;

}
#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
	text-align: center;
} 
#footer .copyright {
	font-size: 50%;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* 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;
}
