body {
    font-family: Helvetica, Arial, sans-serif;
	background-color: #292929;
	color: #cccccc;
	background-image: url("background.gif");
}

.games ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.games li {
	border-radius: 2px 2px 2px 2px;
	border: 1px solid #666666;
	padding: 10px 10px 10px 10px;
	margin: 10px 10px 10px 10px;
	box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.games li .solved {
	border: 1px solid #FFC41C;
	box-shadow: 0px 0px 2px 2px rgba(255, 196, 28, 0.2);
}

.menu small {
	color: #fff;
}

a {
	text-decoration: none;
	color: #FFC41C;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #292929;
}

.menu li {
  float: left;
}

.menu li a {
  display: block;
  color: efefef;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
.menu li a:hover {
  background-color: #FF3333;
}

.menu .active {
  background-color: #ffc41c;
}

 /* unvisited link */
a:link {
	color: #FF3333;;
}

/* visited link */
a:visited {
	color: #FF3333;;
}

/* mouse over link */
a:hover {
	color: black;
}

/* selected link */
a:active {
	color: black;
} 

h2 {
	color: limegreen;
}

.main_section{
	background-color: #FFFFFF;
	color: #292929;
	max-width: 1000px;
	padding: 20px 12px 10px 20px;
	margin: 10px auto;
	font: 13pt arial, sans-serif;
	border-radius: 0px 0px 5px 5px;
	border: 1px solid #666666;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.form-style-2{
	background-color: #FFFFFF;
	color: #292929;
	max-width: 500px;
	padding: 20px 12px 10px 20px;
	margin: 50px auto;
	font: 13px arial, sans-serif;
	border-radius: 5px;
	border: 1px solid #666666;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.form-style-2-heading{
	font-weight: bold;
	border-bottom: 1px solid #ddd;
	margin-bottom: 20px;
	font-size: 15px;
	padding-bottom: 3px;
}
.form-style-2 label{
	display: block;
	margin: 0px 0px 15px 0px;
}
.form-style-2 label > span{
	width: 100px;
	font-weight: bold;
	float: left;
	padding-top: 8px;
	padding-right: 5px;
}
.form-style-2 span.required{
	color:red;
}
.form-style-2 span.message{
	font-size: 8px;
}
.form-style-2 .tel-number-field{
	width: 40px;
	text-align: center;
}
.form-style-2 input.input-field, .form-style-2 .select-field{
	width: 48%;	
}
.form-style-2 input.input-field, 
.form-style-2 .tel-number-field, 
.form-style-2 .textarea-field, 
 .form-style-2 .select-field{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	border: 1px solid #C2C2C2;
	box-shadow: 1px 1px 4px #EBEBEB;
	-moz-box-shadow: 1px 1px 4px #EBEBEB;
	-webkit-box-shadow: 1px 1px 4px #EBEBEB;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	padding: 7px;
	outline: none;
}
.form-style-2 .input-field:focus, 
.form-style-2 .tel-number-field:focus, 
.form-style-2 .textarea-field:focus,  
.form-style-2 .select-field:focus{
	border: 1px solid #0C0;
}
.form-style-2 .textarea-field{
	height:100px;
	width: 55%;
}
.form-style-2 input[type=submit],
.form-style-2 input[type=button]{
	border: none;
	padding: 8px 15px 8px 15px;
	background: #FF3333;
	color: #fff;
	box-shadow: 1px 1px 4px #DADADA;
	-moz-box-shadow: 1px 1px 4px #DADADA;
	-webkit-box-shadow: 1px 1px 4px #DADADA;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
.form-style-2 input[type=submit]:hover,
.form-style-2 input[type=button]:hover{
	background: #EA7B00;
	color: #fff;
}

.form-style-2 input[type=submit]:disabled,
.form-style-2 input[type=button][disabled]{
  background: #efefef;
  color: #292929;
}