﻿	/* = = = = = GENERAL CSS STYLES = = = = = */

	p { font-family:arial,calibri,tahoma; font-size:1.4em; color:black;text-align:justify }
	h1 { font-family:verdana,tahoma,arial; font-size:1.7em; font-weight:bold; text-align:center }
	h2 { font-family:verdana,tahoma,arial; font-size:1.4em; font-weight:bold; margin-bottom:-15px }
	p.horiz-line { text-align:center }
	.indent { margin:-20px 0 10px 35px }
	
	/* = = = = = BUTTON CSS STYLES = = = = = */

	/* .padding:.2em .6em .2em; middle number controls left and right blank space around text
	padding-right:.6em; padding-left:.6em; padding-bottom:2px */
	.mybutton { display:inline-block; vertical-align:baseline; width:auto; margin-top:-10px; padding:.1em .6em .2em .6em; 
	font-family:tahoma,arial,"trebuchet ms"; outline:none; cursor:pointer; text-align:center; text-decoration:none; font-weight:bold; 
	font-size:1.5em; border-radius:20px; box-shadow:3px 3px 2px rgba(0,0,0,.4) }
	.gray { color:black; border:solid 2px black; background:#d3d3d3 }
	.gray:hover { color:white }
	
	.green { color:black; border:solid 2px black; background:#00ff00 }
	.green:hover { color:white }
	
	/*  = = = = = TABLE CSS STYLES = = = = =  */
	
	.round-table { background-color:#cccccc; font-family:tahoma,arial,calibri; text-decoration:none; font-size:1em; border-spacing:0; border-collapse:separate; border-radius:20px; border:2px solid black; overflow:hidden }
	.round-table th { background-color:tan; text-align:center; padding:5px 0 5px 0; border-bottom:2px solid black }
	.round-table td { text-align:left; padding:5px 0 5px 10px }
	/* Apply a border to the right of all but the last column */
	.round-table th:not(:last-child), .round-table td:not(:last-child) { border-right: 2px solid black } 
	/* Apply a border to the bottom of all but the last row */
	.round-table>tbody>tr:not(:last-child)>td, .round-table>tfoot:not(:last-child) { border-bottom: 2px solid black }

	/* = = = = =  NAVBAR CSS STYLES = = = = = */

	/* Navbar container */
	.navbar {
	overflow:hidden;
	border:solid 2px black;
	border-radius:20px; 
	background:linear-gradient(#d3d3d3,#777777);	
	font-weight:bold;
	}

	/* Links inside the navbar */
	.navbar a {
	float:left;
	font-family:Calibri,Tahoma,Arial; 
	font-size:25px;
	color:black;
	text-align:center;
	padding:14px 16px;
	text-decoration:none;
	}

	/* ALL navbar text on hover */
	.navbar a:hover, .dropdown:hover .dropbtn {
	color:white;
	}

