/*  This section is for things that set the look and feel of the entire program */

/* Properties of the body of your webpage */

body{
	background-color: #FFFFFF;
	margin:0px 0px; padding:0px;
	text-align:center;
}

/* Properties of the FullPage Div that holds everything in your webpage */

#FullPage {
	position: relative;
	width:1024px;
	padding-bottom: 50px;
	margin:0px auto; /* Right and left margin widths set to "auto" */
	text-align:left; /* Counteract to IE5/Win Hack */
}

/* Properties of the MainBody Div that holds everything in your webpage */

#MainBody{
	position: relative;
	top: 0px;
}

/* Properties of the Program Title Div that holds title of your webpage */

#ProgramTitle{
	position: relative;
	top: 25px;
	width: 1000px;
	text-align: center;
}

/* Properties of the Title Class that formats the text that is your title */

.Titles{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:xx-large;
	color:#990000;
	text-align: center;
}

/*  ************************************* */

/*  This section is for the splash screen or the directions that occur before the program is actually started */

/* Properties of the Overview Section Div that holds the introductory information for your program */

#OverviewSection{
	position: absolute;
	top: 75px;
	left: 50px;
	width: 900px;
	height: 600px;
	border: black;
	border-style: dashed;
	border-width: 5px;
}

/* Properties of the Overview Picture Div says where to put the picture in the overview section of your page */

#OverviewPicture{
	position: absolute;
	top: 375px;
	left: 300px;
}

/* Properties of the LabDirections Div says where to put the overall directions in the overview section of your page */

#LabDirections{
	position: absolute;
	top: 25px;
	left: 50px;
	width: 800px;
}

/* Properties of the Available Languages Div says where to put the links to other languages */

#AvailableLanguages{
	position: absolute;
	top: 310px;
	left: 20px;
	width: 300px;
}

#Language1{
	position: absolute;
	top: 40px;
	left: 0px;
	width: 300px;
}

#Language2{
	position: absolute;
	top: 80px;
	left: 0px;
	width: 300px;
}

/* Properties of the Button and Invisible Button classes are for formatting all the buttons (visible and invisible) that can be used in your program */

.Button{
	height: 45px;
	padding-top: 5px;
	background-color: #c0c0c0;
	border: 2px #990000 solid;
	border-radius: 10px;
	text-align: center;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:28px;
	color:#990000;
}

.InvisibleButton{
	
}

/* Properties of the Directions and Little Directions classes are setting two different fonts that can be used in your program */

.Directions{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:22px;
	color:#990000;
	text-align: center;
}

.LittleDirections{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:18px;
	color:#990000;
	text-align: center;
}

/*  ************************************* */

/* This is the section that contains all the stuff that is part of the actual running program */


/* This ID is for entire area of the program that will display as part of the simulation */

#LabSection{
	position: absolute;
	top: 75px;
	left: 0px;
	visibility: hidden;
}

/* This ID is for part of the program that will hold the Canvas with all the drawings and animations. */

#DrawingSectionOne{
	position: absolute;
	top: 0px;
	width: 900px;
	left: 50px;
	height: 600px;
	border: black;
	border-style: dashed;
	border-width: 5px;
}

#ActualQuestion{
	position: absolute;
	top: 10px;
	width: 850px;
	left: 25px;
	height: 50px;
}

#SpaceForAnswer{
	position: absolute;
	top: 350px;
	width: 600px;
	left: 65px;
	height: 250px;
}

#AnswerTitle{
	position: absolute;
	width: 600px;
	top: 0px;
	left: 0px;
}

#DirectionsforSub{
	position: absolute;
	width: 600px;
	top: 40px;
	text-align: center;
}

#FormArea{
	position: absolute;
	width: 600px;
	top: 100px;
	left: 0px;
}

#FormQuestions{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 300px;
	height: 200px;
}

.FormText{
	position: relative;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:18px;
	color:#990000;
	width: 300px;
	right: 0px;
	height: 50px;
	text-align: right;
}

#FormAnswers{
	position: absolute;
	top: 0px;
	left: 305px;
	width: 250px;
	height: 200px;
}

.FormInputs{
	position: relative;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:18px;
	color:#990000;
	width: 250px;
	left: 0px;
	height: 25px;
	text-align: left;
	margin-bottom: 25px;
}

#BeginButton{
	position: absolute;
	top: 275px;
	left: 375px;
	width: 150px;
}

#SubmitButton{
	position: absolute;
	bottom: 75px;
	left: 725px;
	width: 150px;
}