@charset "utf-8";
/* CSS Document */
body {
	margin: 0px auto;
	height: 430px;
	width: 600px;	
	background: #FFFFFF;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;  
	cursor: default;
}

#canvas {
	margin: 10px 0 0 0;
	height:100%;
	/*height: 430px;
	width: 600px;*/
}

#header {
	border-color: Red;
	border: 1px solid red;
	border-radius: 5px;
	/*position: absolute;*/
	position: relative;
}

#heading {
	margin: 0px auto;
	/*height: 100px;
	width: 600px;*/
}
	
h1 {	
   position: relative;
   margin: 0 3px;
   /*top: 50px;
   left: 5px;*/
   font-size: 16px;
   font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}

p {
   position: relative;
  /*top: 40px;
   left: 5px;*/
   margin: 3px 3px;
   font-size: 16px;
   font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
}

#mycanvas {
	border: 1px solid red;
	position: relative;
	/*top: 130px;*/
	margin: 5px 0;
	width: 590px;
	height: 260px;
	border-radius: 5px;
}

.textline {
	position: relative;
	margin: 15px 10px;
	/*top: 5px;
	left: 15px;*/
}

.content, .answer1, .answer2, .answer3, .answer4, .answer5, .answer6, .noselect {
	z-index: 10;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size: 18px;
	font-weight: bold;
	border: 1px solid transparent;
	/*padding: inherit;*/
}

#Stage {
	position: absolute;
	z-index: 150;
	top: 10px;
	left: 325px;
}

/* Monkey image for printing*/
#monkey {
	position: absolute;
	visibility: hidden;
	top: 10px;
	left: 325px;
}

.button {
	font-size: 16px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: bold;
	background-color: #FFFEA3;
	border: 1px #FF7373 solid;
	border-radius: 8px;
	padding: 6px 23px;	
	width: 46px;
	height: 20px;
	cursor: pointer;
}

#check {
	position: absolute;
	top: 270px;
	left: 300px;
}

#reset {
	position: absolute;
	top: 270px;
	left: 400px;
}

#print {
	position: absolute;
	top: 270px;
	left: 500px;
}

#copyright {
	position: absolute;	
	top: 290px;
	left:5px;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size: 9px;
	z-index: -10;
}

.hide {
	visibility: hidden;
}

.span_hover {
	border: 1px #FF7373 solid;
	cursor: pointer;
	border-radius: 5px;
}

.button:hover {
	background-color: #6699FF;
}

/* selected text shows border*/
.bordered {
	border: 2px #FF7373 solid inherit;
	background-color: #FF7373;
	border-radius: 8px 8px 8px 8px;	
}

.italic {
	font-style:italic;
}

/* Pop up box*/
#simplemodal-container {
	width:260px;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	background-color:#FFFEA3;
	border:1px #FF7373 solid;
	padding:15px 0px;
	border-radius: 5px;
	color: #000000;
	text-align: center;
	top: 220px;	
	opacity: 0.9;
}

/* Pop up box - close btn*/
#simplemodal-container a.modalCloseImg {
	background:url(../images/x.png) no-repeat; 
	width:25px; 
	height:29px; 
	display:inline;
	z-index:3200; 
	position:absolute; 
	top:3px; 
	right:0px; 
	cursor:pointer;
}

#simplemodal-container a.modalCloseImg:hover {
	background:url(../images/x_hover.png) no-repeat; 
	/*width:25px; 
	height:29px;*/
}

@media print {	
	/* print background color*/
	/*body {
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	}*/
	@page {
  		size: A4 landscape;
	}
    #Stage {
	visibility: hidden;
    }
	#monkey{
	visibility: visible;
	}
	.bordered {
	border: 2px #FF7373 solid;
	}
}