/* === Text formatting === */
.bold {
	font-weight: bold;
}

.center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.left {
	position: absolute;
	left: 0;
}

.right {
	position: absolute;
	right: 0;
}

.textBlock {
    float: left;
    width: 80%;
    padding-left: 1em;
    display: inline-block;
}

.qBanner {
	color: #fff;
	height: 30px;
}

/* === div Properties === */
div.container {
	position: relative;
	overflow: hidden;
	width: 100%;
}


/* button Properties */
div.button {
	width: 25%;
	height: 65px;
	margin: 0 auto;
	line-height: 65px;
	display: inline-block;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	color: white;
}

.button.blue {
	background-color: #39f;
}
.blue.dark {
	background-color: #17d;
}

.button.green {
	background-color: #3b0;
}
.green.dark {
	background-color: #190;
}

.button.red {
	background-color: #b03;
}
.red.dark {
	background-color: #901;
}

.button.enlarge {
	width: 27%;
	height: 70px;
}


/* rangeText Color Schemes */
.lowScore {
	color: #b03;
}

.midScore {
	color: #f60;
}

.hiScore {
	color: #3b0;
}


/* table Color */
.correct {
	background-color: #3b0;
}

.wrong {
	background-color: #b03;
}

/* HTML Element Properties */
body {	
	position: relative;
	margin-left: auto;
	margin-right: auto;
	width: 600px;
	font-family: "Times New Roman", Times, serif;
	cursor: default;
	/* Unselectable text */
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-o-user-select: none;
	user-select: none;
	
	background-image: url('../images/bubbles.png');
	background-repeat: repeat-y;
	background-position: top center;
}

h1 {
	font-family: "Comic Sans MS", cursive, sans-serif;
	font-size: 40px;
	color: #09f;
}

h2 {
	font-size: 30px;
}

h3 {
	font-size: 24px;
}

p, ul, .textBlock {
	font-size: 20px;
}

form {
	padding-bottom: 25px;
}

img, a {
	border:0px;
}

#quiz_options {
	padding-bottom: 25px;
}

#quiz_progressBar {
	margin: 25px 0;
	height: 45px;
}

#result_table {
	text-align: left;
}
