@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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; 
	color: #000000;
	background-color: #FFF;
	background-image: url(images/mat_pattern.jpg);
	background-repeat: repeat;
}
#container {
	width: 92%;
        /* min-width: 680px; */  /* Too small for banner! */
	min-width: 780px; 
	max-width: 1024px; 
	background: #FFF;
	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. */
	background-image: url(images/footer_pattern.jpg);
	background-repeat: repeat-x;
	background-position: bottom;
	border-right: thin solid #666;
	border-left: thin solid #666;
} 
#banner {
	background-color: #FFF;
	background-image: url(images/header_pattern.jpg);
	background-repeat: repeat-x;
}
#header {
	padding: 0 10px 0 20px;  /* 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-image: url(images/banner_title.png);
	background-repeat: no-repeat;
	background-position: center;
	height: 120px;
} 
#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 */
}
#logo {
	float: left;
}
#bannerTitle {
	margin: 0 auto;
	display: block;
}
#bannerText {
	float: right;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 120px; /* the background color will be displayed for the length of the content in the column, but no further */
	/* padding: 15px 0; */  /* Dave likes less top/bottom padding */
        padding: 1px 0;
	margin: 20px 20px 10px 0px;
	background-image: url(images/navbar_bg2.jpg);
	background-repeat: repeat-y;
	background-color: #eef;
	font-weight: bold;
border-radius: 10px 5px 5px 10px;
}
table {
	padding: 10px 10px 10px 10px;
}
#notes ol, #notes ol li {
	margin-left: 60px;
}
#navbar {
	list-style-type: none;
}
#navbar li {
	/* margin: 0 0 8px -20px; */  /* Dave likes them closer together */
	margin: 0 0 2px -25px;
	/* color: #444; */  /* Dave likes lighter gray for unclickables*/
	color: #777;
	font-size: smaller;
}
#navbar li a {
	text-decoration: none;
}
#navbar li a:link {
	color: #1C3767;
}
#navbar li a:visited {
	color: #1C3767;
}
#navbar li a:hover {
	/* color: black; */  /* Dave likes white */
	color: white;
}
#navbar li a:active {
	color: gray;
}
	
#mainContent {
	margin: 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent h1 {
	font-size: 1.5em;
	font-family: Comic Sans MS;
	/*dks text-align: center; */
	text-align: left;
	color: #3c5c82;     /* Dave likes a little color */

} 
#mainContent h2 {
	font-size: 1.2em;
	font-family: Comic Sans MS;
	color: #3c5c82;     /* Dave likes a little color */
} 
#footer {
	padding: 0 10px 0 20px;
	text-align: center;
} 
#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;
}
.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;
}
.smaller {
	font-size: smaller;
}

#CropBox {
   cursor:n-resize;
}
