@charset "UTF-8";
html {
height: 700px;
}
body {
	font-family:helvetica;
	background:#333;
	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:#000;

}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 600px;
	background: #94C;
	margin-left:auto;
	margin-right: auto;
	margin-top: 5%;
	margin-bottom: 30%;
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-family: Georgia, Times, serif;
}
#projectBox {
	overflow-x:hidden;
	overflow-y:auto;
	text-align: center;
	height: 440px;
	width: 100%;
	padding: 3px;
}

#inputDiv {
	font-family:Georgia, Times, serif;
	text-align: center;
	width: 100%;
}
#header {
	text-align: left;
	background:#CFCFCF; 
	padding: 0 1px 0 3px;  /* 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. */
	border-bottom:dashed;
	border-bottom-width:1px;
	letter-spacing:3px;
	color:#FFF;

}
#header h1 {
	text-align: left;
	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 */
}
#mainContent {
	overflow:auto;
	width: 760px;
	margin-left:0px;
	margin-right:0px;
 	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-family: Georgia, serif;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
}
iframe {
	width:600px;
	height: 510px;
	overflow-x: hidden;
	overflow-y: scroll;
} 
input {
	margin-left:auto;
	font-family:inherit;
	font-size:14px;
	border:none;
	text-align:center;
	background-color:#94C;
}
ul {
	display:block;
	margin-left:20px;
	list-style:none;
	text-align:left;
}
li {
	display:inline-block;
}
A:link {text-decoration: none; color:#000}
A:visited {text-decoration: none; color:#FFF}
A:hover {text-decoration: none;	color:#CFF}
A:active {text-decoration: none; color:CCC}