/* ****** */
/* Navbar */
/* ****** */
/* Ref: https://www.mrc-productivity.com/techblog/?ht_kb=how-to-build-a-drop-down-navigation-menu-with-css */
h1.navbarhead {
    text-align: center;
    font-family: Verdana;
    font-size: 60px;
    font-weight: bold;
    height: 65px;
    color: #cccccc;
}
#navbardiv {
	width: 100%;
	height: 125px; 
	margin: 0;
	z-index: 99;
	/* position: relative; */ 
	background-color: #366b82;
	position: fixed;
	top: 0;
	left: 0;
}
.navbar2 {
	height: 50px;
    padding: 0;
	margin: 0;
	position: absolute; /* Ensures that the menu doesn’t affect other elements */
	border-right: 1px solid #54879d; 
}
.navbar2 li {
	height: auto;
	width: 150px;  /* Each menu item is 150px wide */
	float: left;  /* This lines up the menu items horizontally */
	text-align: center;  /* All text is placed in the center of the box */
	list-style: none;  /* Removes the default styling (bullets) for the list */
	font: normal bold 12px/1.2em Arial, Verdana, Helvetica;  
	padding: 0;
	margin: 0;
	background-color: #366b82;
}
.navbar2 a {							
	padding: 18px 0;  /* Adds a padding on the top and bottom so the text appears centered vertically */
	border-left: 1px solid #54879d; /* Creates a border in a slightly lighter shade of blue than the background.  Combined with the right border, this creates a nice effect. */
	border-right: 1px solid #1f5065; /* Creates a border in a slightly darker shade of blue than the background.  Combined with the left border, this creates a nice effect. */
	text-decoration: none;  /* Removes the default hyperlink styling. */
	color: white; /* Text color is white */
	display: block;
}
.navbar2 li:hover, a:hover { background-color: #54879d; }
.navbar2 li ul {
	display: none;  /* Hides the drop-down menu */
	height: auto;									
	margin: 0; /* Aligns drop-down box underneath the menu item */
	padding: 0; /* Aligns drop-down box underneath the menu item */			
}				
.navbar2 li:hover ul {
    display: block; /* Displays the drop-down box when the menu item is hovered over */
}
.navbar2 li ul li { background-color: #54879d; } 
.navbar2 li ul li a {
	border-left: 1px solid #1f5065; 
	border-right: 1px solid #1f5065; 
	border-top: 1px solid #74a3b7; 
	border-bottom: 1px solid #1f5065; 
}
.navbar2 li ul li a:hover { background-color: #366b82; }      
      
      
/* *********** */
/* General css */
/* *********** */
body {
  background-image: url("../images/FLMap_Light.png");
  background-size: cover;
  background-color: #ffffff;
  }
h1.head {
  text-align: center;
  font-family: Verdana;
  font-size: 60px;
  font-weight: bold;
  padding-top: 40px;
  }
h2.head {
  text-align: center;
  font-family: Verdana;
  font-style: italic;
  font-size: 48px;
  font-weight: bold;
  color: #800000;
  }
.main {
  font-family: Verdana;
  font-size: 36px;
  font-weight: bold;
  color: #000080;
}
p.notice {
  font-family: Verdana;
  font-size: 36px;
  font-weight: bold;
  color: #e9f542;
}
/* #f5da42 */
.flabel {
  font-size: 24px;
	font-weight: bold;
	}
 .div80C {
	display: inline-block;
	left: 0px;
	top: 0px;
	margin: 0 10%;
	width: 80%;
 }
 .div60C {
	display: inline-block;
	left: 0px;
	top: 0px;
	margin: 0 20%;
	width: 60%;
	background: #ffffff;
	padding: 20px 20px 20px 20px;
 }
.bodyText {
        font-family: Verdana;
        font-size: 18px;
        color: #000000;
}
.cglogo { height: 300px; }
#loadingDiv {
	background-image: url('/images/loading.gif');
	background-position: center bottom;
	background-color:#fff;
	background-size:170px 94px; 
	background-repeat:no-repeat;
	border: 1px solid #000000;
	border-radius: 10px;
	box-shadow: 7px 7px 10px 4px rgba(64,64,64,0.5);
	height: 130px;
	left: 50%;
	margin: -100px 0 0 -100px;
	position: fixed;
	text-align: center;
	top: 50%;
	width: 200px;
	z-index: 100;
}

.highlightRed { color: #ff0000; font-weight: bold; }
.highlightBlack { color: #000000; font-weight: bold; }
.center {
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
hr.bold { border: 10px solid green; border-radius: 5px; }

/* ************* */
/* Pretty Tables */
/* ************* */
.pretty {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 250px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.pretty thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}
.pretty th,
.pretty td {
    padding: 12px 15px;
}
.pretty tbody tr {
    border-bottom: 1px solid #dddddd;
}

.pretty tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.pretty tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}
b.blue { color: #0000ff; }
b.red  { color: #ff0000; }
.rightimg  { float: right; }
.leftimg   { float: left; }
.bigslider { transform: scale(2.0); }

/* ****************** */
/* Mobile Devices css */
/* ****************** */
@media screen and (max-width: 900px) {
	/* Navbar */
	h1.navbarhead { font-size: 20px; height: 16px; }
	#navbardiv    { height: 25px; }
	.navbar2      { height: 20px; }
	.navbar2 li   { width: 85px; }
	.navbar2 a    { padding: 4px 0; }
	
	/* General */
	h1.head   	{ font-size: 24px; padding-top: 10px; }
	h2.head   	{ font-size: 16px; }
	h3			{ font-size: 18px; }
	h4			{ font-size: 16px; }
	.main 		{ font-size: 16px; }
	p.notice 	{ font-size: 20px; }
	.flabel 	{ font-size: 12px; }
 	.div60C 	{ padding: 8px 8px 8px 8px; margin: 0 10%; width: 80%; }
	.bodyText 	{ font-size: 12px; }
	.cglogo 	{ height: 150px; }
	#loadingDiv {
		background-size:170px 94px; 
		box-shadow: 7px 7px 10px 4px rgba(64,64,64,0.5);
		height: 130px;
		margin: -100px 0 0 -100px;
		width: 200px;
	}    
}
