/* This is for any unique stylings that apply only to this program */


/* This ID is for the title of the program found above the dotted areas of the problem */

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

/* This class is for the title of the program found above the dotted areas of the problem */

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


/* This ID is for entire area of the program where you see how good your answers were */

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

#DrawingSectionTwo{
	position: absolute;
	top: 700px;
	width: 900px;
	left: 50px;
	height: 400px;
	border: black;
	border-style: dashed;
	border-width: 5px;
}

#PauseButton{
	position: absolute;
	top: 50px;
	right: 25px;
	width: 100px;

	visibility: visible;
}

#ResumeButton{
	position: absolute;
	top: 50px;
	right: 25px;
	width: 100px;

	visibility: hidden;
}

#ResetButton{
	position: absolute;
	top: 150px;
	right: 25px;
	width: 100px;

	visibility: hidden;
}

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

#BButton{
	position: absolute;
	top: 150px;
	left: 25px;
	width: 50px;
}

#CButton{
	position: absolute;
	top: 250px;
	left: 25px;
	width: 50px;
}

#DButton{
	position: absolute;
	top: 350px;
	left: 25px;
	width: 50px;
}

.Button{
	height: 50px;
	background-color: #CCCCCC;
	border: 2px #990000 solid;
	border-radius: 10px;
	text-align: center;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:36px;
	color:#990000;
}

