/*
	Author	:	Guy Snelling
	Email		:	guy@consumingfire.co.za
	
	san pt colurs
	cyan: 150.219,248  96dbf8
	purple: 103,59,183  673bb7
	yellow: 255,255,0 ffff00
	red: 234,30,99  ea1e63
*/
* {
	border:0;
	margin:0;
	padding:0;
}

/* general */
a {
	//color:#FF00FF;
	text-decoration:none;
}

a:hover {
	color:#96dbf8;
	text-decoration:none;
}

/* body */
body {
	//background:#CCE5FF; //light blue
	background:#FFFFFF;
	color:#555;
	font:100% Arial, Helvetica, sans-serif;
    
    top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width:1200px;
  height: 100%;
  margin: auto;
  align: center;
}

.logo {
	color:#673bb7;
	font-size:600%;
	font-family: Tahoma, sans-serif;
	letter-spacing:-3px;
	text-align:center;
	padding:5px;
	margin-bottom:-20px;
}
.sublogo {
	color:#673bb7;
	font-size:250%;
	font-family: verdana, sans-serif;
	letter-spacing:-3px;
	text-align:center;
	padding:5px;
	margin-bottom:-20px;
}
.pagelogo {
	color:#00000;
	font-size:300%;
	font-family: Tahoma, sans-serif;
	letter-spacing:-3px;
	text-align:left;
	padding:5px;
	margin-bottom:0px;
}
.pagetext {
	color:#673bb7;
	font-size:150%;
	font-family: Arial, sans-serif;
	letter-spacing:0px;
	text-align:left;
	padding:5px;
	margin-bottom:0px;
}
button {
			color: #96dbf8;
			background-color: #ffffff;
			border: 8px solid #96dbf8;
			border-radius: 18px;
			padding: 20px 50px;
			letter-spacing: 6px;
			cursor: pointer;
			font-size: 37px;
			
		}
.menu	{
			font-size: 37px;
			width: 800px;
		}
.large	{
			font-size: 37px;
		}		
.small {
			font-size: 20px;
			padding: 10px 30px;
			border: 2px solid #96dbf8;
		}
button:hover {
			color: #ffffff;
			background-color: #96dbf8;

		}
		
input, select, .input, textarea{
	padding: 5px;
	font-family: "Arial";
	font-weight: bold;
	font-size: 1em;
	color: #000000;
	background: #96dbf8;
	border: 2px solid #96dbf8;
	border-radius: 10px;
   
}



.error {
	color: #ea1e63;
}

/*this section is for the drop down menu*/
/*https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_js_dropdown*/

.dropbtn {
  background-color: #673bb7;
  color: white;
  padding: 16px;
  font-size: 20px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #96dbf8;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffff00;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #96dbf8;}

.show {display: block;}
/*end of the drop down menu*/



		
