<style type="text/css">
/* Copyright: Ron Mazier */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
    --primary-color: 	#f5f5f5;
    --secondary-color: 	#333333;


    --accent-color: 	#D4AF37;
	--nav-color: 		#002147;  
	--nav-text-color: 	white;  
    --text-color: 		black;
    --hover-border-color: rgba(0, 0, 0, 1);
    --hover-shadow-color: rgba(0, 0, 0, 0.5);
    --border-color: 	rgba(0, 0, 0, 0.5);
    --input-bg-color: 	#ffefef;
    --values-color: 	blue;
	
		--headerbg:			url('../images/bg-1.png');

 --blue:#1E3A5F;
  --gold:#D4AF37;
  --orange:#F15A29;
  --coral:#F28C6A;
  --charcoal:#2E2E2E;
  --white:#FFFFFF;
}

/**** Body *********************/
	body {
		margin: 0px;
		padding: 0px;
		font-family: Arial, Open Sans, Roboto, Lato;
		background-color: #fffffa;
		color: #333;
	}
	h1,h2,h3 {
        margin-left: auto;
        margin-right: auto;
        text-align:center;
		color: #002147;
		font-family: Merriweather, Playfair Display;
	}
	.important {
            font-weight: bold;
            color: #d9534f;
        }
	header {
            background-color: #0074D9;
            color: #fff;
            padding: 1rem 0;
            text-align: center;
        }
	footer {
            background-color: #333;
            color: #fff;
            padding: 1rem 0;
            text-align: center;
            position: absolute;
            bottom: 0;
            width: 100%;
        }
	.content-container {
/*		display: flex; */
		margin: 0 auto;
		padding: 20px;
        }
	p {
            color: #444; 
        }
	.highlight {
            background: #f0f0f0;
            padding: 10px;
            border-left: 4px solid #007BFF;
        }
	.image-container {
            text-align: center;
            margin-top: 20px;
        }
	img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
        }

/**** Header *******************/
#header {

    display: 			flex;
    justify-content: 	space-between;
    align-items: 		center;
	flex-wrap:			wrap;
	background-image: var(--headerbg);



	background-size: 100% auto; 
	background-position: 0px; 
	background-repeat: no-repeat; 

    border: 0;
    border-bottom: 5px solid var(--gold);
    margin: 0;
    padding: 0;
    width: 100%;
} 
#header #header-title,
#header #top-right {
    flex: 1;
    text-align: center;
}
#header #logo-container {
    flex: 1;
    text-align: left;
}
#header img {
    margin: 2px;
/*	border-radius: 50%; */
    height: 90px;
/*    width: 90px; */
    object-fit: cover;
}
@media screen and (max-width:600px) {
    #header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #header img {
        height: 60px;
        width: 60px;
    }
}

/**************** Navbar *************************/
#navbar {
    display: 			flex;
    flex-wrap: 			wrap;
    background-color:	var(--nav-color);
    background-color:	var(--blue);
	color: 				var(--nav-text-color);
    width: 				100%;
    padding: 			10px 0;
}
#nav {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
#nav li {
    margin: 0 10px; /* Add spacing between links */
	text-align:center;
}
#nav li a {
    font-size: 16px; /* Smaller font size */
    padding: 5px 10px; /* Reduce padding */
    border-radius: 4px; /* Rounded edges for softer appearance */
    transition: background-color 0.6s, color 0.6s; /* Smooth hover effect */
    color: var(--nav-text-color);
	text-decoration: none;
	text-align:center;
}
#nav li:hover > ul {
    visibility: visible;
    opacity: 1;
}
#nav li ul {
    position: absolute;
    top: 100%;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background: rgba(255, 200, 255, 0.5);
    list-style: none;
    padding: 0;
    margin: 0;
    width: 190px;
}
#nav li:hover ul {
    visibility: visible;
    opacity: 1;
}

#nav li a:hover {
    background-color: #EEEEEE; /* Subtle hover effect */
    color: #333333; /* Slightly darker text on hover */
}
@media screen and (max-width: 600px) {
    #nav {

        flex-wrap:wrap; /* Stack items vertically */
    }

    #nav li {
        margin: 5px 0;
    }
}
.fdl {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fdl li {
    position: relative;
    padding-left: 25px; /* Space for the fleur-de-lis */
    margin-bottom: 10px; /* Add spacing between items */
}
.fdl li::before {
    content: '\269C'; /* Unicode for fleur-de-lis */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px; /* Adjust size */
    color: #008080; /* Customize color */
}

/**** Call to Action **********************/

	.cta {
            text-align: center;
            margin-top: 20px;
            padding: 15px;
            background-color: orange;
            color: white;
            font-size: 18px;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
			display: block;

			position: relative;
			/*    background-image: url('../Ron5.png'); /* Path to your image */
			background-size: contain; /* Adjust image size */
			background-position: 20px center; /* Center the image */
			background-repeat: no-repeat; /* Prevent tiling */
        }
	.cta::before {
		content: "";
		position: absolute;
		left: 10%; /* Center horizontally */
		top: -40px; /* Move it above the element */
		transform: translateX(-50%); /* Adjust horizontal centering */
		width: 100px; /* Adjust width */
		height: 100px; /* Adjust height */
		background-image: url('../images/Ron5.png');
		background-size: contain;
		background-repeat: no-repeat;
		/*    z-index: -1; /* Keep it behind the text */
	}
	.cta:hover {
            background-color: darkorange;
        }

/**** Download Link **********************/

	.download-link {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 15px;
            background-color: #007BFF;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }
	.download-link:hover {
            background-color: #0056b3;
        }
    .main {
      flex: 3;
      margin-right: 20px;
    }
    .sidebar {
      flex: 1;
      background: #f4f4f4;
      padding: 20px;
    }
	.section {
            background: white;
            margin: 20px;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
	.method {
            background: #eaeaea;
            padding: 15px;
            margin-bottom: 15px;
            border-left: 5px solid #444;
        }
	.method h2 {
            margin: 0;
        }

/**** Main Image **********************/
	.image-placeholder {
		width: 100%;
		height: 315px;
		background-color: #ccc;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #555;
		font-size: 20px;
		margin-bottom: 20px;
		overflow: hidden;	}
		
	.image-placeholder img {
            width: 100%;
			height: 100%;
			object-fit: cover;
		}

@media (max-width: 768px) {
	.image-placeholder {
		width: 100%;
		height: 210px;
	}
}

/**** Image Square **********************/
	.image-square {
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #555;
		font-size: 20px;
		margin-bottom: 20px;
		overflow: hidden;
		margin-right: auto;
		margin-left: auto;
	}	
	.image-square img {
            width: 100%;
			height: 100%;
			object-fit: cover;
            max-width: 100%;
            height: auto;
            border-radius: 8px;
		}

/**** Flex 2 cell **********************/

	.two-cell-flex {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 20px; 
	}
	.two-cell-text {
		flex: 1;
		min-width: 250px;
	}

/**** Image-small-square **********************/
	.image-small-square {
		width: 144px;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #555;
		font-size: 20px;
		margin-bottom: 20px;
		overflow: hidden;
        margin: 5px;
  flex: 0 0 200px; /* adjust size as needed */
    flex-shrink: 0;
	}
	
	.image-small-square img {
            width: 100%;
			height: auto;
			display: block;
			object-fit: cover;
            max-width: 100%;
            height: auto;
            border-radius: 8px;
		}

/**** Mailchimp *******************/
	#mc_embed_shell {
		background:#fff;
		padding: 10px;
		display: block;
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}
	#mc_embed_signup { 
		background:#fff; false;clear:left;
		font: 14px;
		width: 100%;
		max-width: 400px;
		padding: 10px;
		font-weight: bold;
		text-decoration: none;
		display: block;
		margin-right: auto;
		margin-left: auto;
	}
	.mc-field-group {
		text-align:right;
	}
	#mc_embed_signup_scroll {
		width: 100%;
		line-height: 1.6;
		max-width: 400px;
		margin-right: auto;
		margin-left: auto;	
	}

/**** Footer *******************/
	#footer {
		border-top:		2px solid var(--gold);
		border-bottom:	20px solid var(--blue);
		box-sizing: 	border-box;
		display:		block;
		font-style:		italic;
		margin:			0px;
		padding: 		20px;
		text-align:		center;
		width:			100%;
		}

/*** bbox ***/
.bbox {
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    margin: 15px auto;
    padding: 20px;
    max-width: 1024px;
    width: 100%;
    gap: 20px; /* Add spacing between elements */
}
.bbox:hover {
    border: 1px solid var(--hover-border-color);
    box-shadow: 1px 1px 2px 2px var(--hover-shadow-color);
    transition: box-shadow 0.3s ease-in-out;
}
.bbox .cell {
    display: flex;
    flex-direction: column;
    padding: 20px;
    align-items: flex-start;
    justify-content: space-around;
    text-align: left;
    flex: 1 1 auto; /* Flexible width */
    min-width: 150px; /* Prevent shrinking */
}
.bbox h2 {
    display: flex;
    flex-direction: column;
    padding: 20px;
    align-items: flex-start;
    justify-content: space-around;
    text-align: left;
    flex: 1 1 auto; /* Flexible width */
    min-width: 150px; /* Prevent shrinking */
}
.bbox a, strong {
    display: inline-block;
}
.bbox .img {
    flex: 1 1 auto; /* Flexible width */
    max-width: 300px;
    padding: 20px;
    min-width: 150px; /* Prevent shrinking */
}
.bbox .img img {
    width: 100%; /* Responsive image scaling */
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bbox {
        flex-direction: column; /* Stack items vertically */
        padding: 10px;
    }
    .bbox .img, .bbox .cell {
        max-width: 100%; /* Full width on smaller screens */
    }
    .bbox .cell {
        padding: 10px;
    }
}

/**** BUTTONS and HTML ELEMENTS ****/
	a:hover {
		text-decoration: underline;
	}
	input[type="button"], input[type="submit"] {
		box-sizing:		border-box;
		display:		in-line;
		margin-left: 	auto;
		margin-right: 	auto; 
		word-wrap: 		normal;
		white-space: 	normal;
		border:			1px;
		transition: 	width 2s;
		transition-timing-function: linear;
		text-align: 	center;
		background-color: rgba(255, 165, 0, 1);
		box-shadow: 	1px 2px 4px rgba(0,0,0,0.6);
	}
	input[type="button"]:hover,	input[type="submit"]:hover {
		text-decoration: underline;
		box-shadow: 	2px 2px 2px rgba(0,0,0,0.6);
		transform: 		translateY(-1px);
		background-color: 	rgba(255, 165, 0, 0.9);
		}
	.go	{
		width: 			32px;
		height: 		32px;
		border:			1px;
		border-radius: 	16px;
	}
	textarea {
		width: 100%;
		padding: 10px;
		box-sizing: border-box;
		border: 1px solid #ccc;
		border-radius: 5px;
		margin-right:auto;
		margin-left:auto;
		background-color: #f8f8f8;
	}
#gameCanvas {
        border: 2px solid black; /* Add a black border of 2px */
        display: block; /* Ensure proper alignment and spacing */
        margin: 20px auto; /* Center it with margin */
    }
	.button {
            background-color: #0074D9;
            color: white;
            border: none;
            padding: 10px 20px;
            text-transform: uppercase;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 20px;
        }
	.button:hover {
            background-color: #005fa3;
        }
.button:active {
			box-shadow: 	1px 1px rgba(0,0,0,0.6);
			transform: 		translateY(2px);
	}

/* Table Properties ******************/
	table {
        margin-left: auto;
        margin-right: auto;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
		}
	table tr {
        min-height: 32px;
		}
	th {
		background-color: rgb(60,190,255,0.5);
		text-align: center;
		font-size:	120%;
		font-weight:	bold;
		border-bottom: 1px solid white;
		padding:	10px;
		}
	tr:nth-child(even) {background-color: rgba(60,190,255,0.2)}
	td {
		padding: 5px;
	}

	form .inputer {text-align:center;} 
		#HomeButton {
		float: right;
		position:absolute;
		top:100;
		left:200;
		}
	form {
		margin: 0px;
		border: 0px;
		padding: 0px;
		}
	video {
		width: 300px;
		}	

/*** LoginBox	********************/
	#GardenBox 		{
        text-align: center;
	}
	.WelcomeBox		{
		background: #ffffff;
		line-height: 20px;
		min-width: 250px;
        color: #111111;
        text-align: left;
		margin: auto;
		padding: 10px;
		border: 0px solid #CCCCCC;
	}
	#WelcomeBox {
		box-sizing:		border-box;
		display:		inline-block;

		width:			90%;
		max-width: 		400px;
		padding: 		30px;

		clear:			both;
		border: 		1px solid rgba(255,255,255,0.5);
		text-align:		center;
		margin-right:	auto;
		margin-left:	auto;
		background-color:rgba(255,255,255,0.1);
	}
	#WelcomeBox span {
		box-sizing:		border-box;
		width:			100%;
		margin-left:	auto;
		margin-right:	auto;
		padding:		0px;
		float: 			left;
		clear: 			both;
		text-align: 	left;
		display: 		inline-block;
	}

/*** LoginBox	********************/		
	#LoginBox		{
		box-sizing:		border-box;
		display: 		none;
		text-align:		center;
		float: 			right;
		padding: 		30px;
		margin: 		0px;
		clear:			both;
		width:			300px;
		border: 		1px solid rgba(90,90,90,0.4);
		background-color: rgba(90,90,90,0.2);
		z-index: 		+1;
		position: 		fixed;
		top:			10px;
		right:			10px;
	    box-shadow: 	8px 8px 10px rgba(90,90,90,0.4);
		}
	#LoginBox input {	
		margin-left: 	auto;
		margin-right: 	auto;
		width:			100%;
		clear:			both;
		}
	#LoginBox a {	
		z-index: 		+1;
		position:		absolute;
		top:			3px;
		right:			3px;
		float:			right;
		color: 			white;
		font-weight: 	bold;
		font-size: 	150%;
		}
/* CRM **/ 
	#CRMBox {
		text-align: left;
	}
 
/*** Nola Referral ****/
	.twocolumns {
		box-sizing:			border-box;
		background-color: 	white;
		margin-left: 		auto;
		margin-right: 		auto;
		width:				80%;
		padding: 			20px;
		opacity: 			.9;
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)"; 
		}
	.homepagehalf {
		min-width: 	400px;
		width: 		49%;
		margin: 	0px;
		padding: 	5px;
		border: 	0px solid #CCCCCC;
		float: 		left;
		color: 		black;
		text-align: left;
		vertical-align: text-top;
	}
	.homepageleft {
		line-height: 22px;
		float: left;
		width: 56%;
		color: black;
		text-align: left;
		margin: 0px;
		padding: 3px;
		border: 0px solid #CCCCCC;
	}
	.homepageright {
		line-height: 22px;
		float: right;
		width: 44%;
		color: black;
		text-align: left;
		margin: 0px;
		padding: 3px;
		border: 0px solid #CCCCCC;
	}

/***	GrayScreen	******/
	.GrayScreen	{ 
		height: 	100%;
		width: 		100%;
		z-index: 	+1;
		position: 	fixed;
		margin:		0px;
		top: 		0px;
		left: 		0px;
		padding: 	0px;
		background-color: rgba(0,0,0,.4);
		display:	none;
		} 
	.inwrap		{
		width:				100%;
		max-width:			300px;
		display:			block;
		margin-top: 		10%;
		margin-left: 		auto;
		margin-right: 		auto; 
		padding:			10px; 
		border-radius: 		10px;
		background-color: 	rgba(109,208,255,0.95);
		border: 			1px solid  rgba(51,150,197,0.95);
	    box-shadow: 		6px 6px 6px rgba(0,0,0,0.7);
 		}

/*** Start Box ***/
	.StartBox		{
		box-sizing: 	border-box;
		padding:		5px; 
		border: 		0px solid  rgba(51,150,197,0.95);
		width:			100%;
		max-width:		500px;
		display:		inline-block;
		margin:			0px;
		color: 			#111111;
 		}
	.GrayScreen .closebutton	{ 
			clear:		right;
			float:		right;
			position: 	relative;
		}
	.GrayScreen .closebutton:hover{ 
			font-weight:	bold;
		}	
	.StartBox .boxheader	{ 
		box-sizing:		border-box;
		width:			100%;
		border: 		0px solid  rgba(51,150,197,0.95);
		margin-bottom: 	10px;
		margin-left:	auto;
		margin-right: 	auto;
		text-align: 	center;
		font-size:		14pt;
		font-weight:	bold;
		float:			left;
		clear: 			left;
 		}
	.StartBox input[type="text"] {
		width:			100%;
		height:			28px;
		font-size:		12pt;
		background-color: white;
 		}
	.StartBox input[type="button"] {
		
		width:			100%;
		color: 			white;
		text-align: 	center;
		font-size:		12pt;
		font-weight:	bold;
		margin-left: 	auto;
		margin-right: 	auto; 
		float: 			right;
		background-color: 	rgba(109,208,255,0.95);
		}

/***OTHER ****/
	#lyr {
		font: 				normal 10pt;
		background-color: 	transparent;
		border: 			0px solid Gray;
		padding: 			2px;
		position: 			absolute;
		top: 				0px;
		left: 				300px;
		height: 			18px;
		z-index:			10;
	}
	#gold {
            background-color: #D4A017;
        }
	
	/* Chrome, Safari, Opera */
	@-webkit-keyframes myslide {
			from {background-position: 	20% 70%;}
			to {background-position: 	25% 70%;}
		} 

	/* Standard syntax */
	@keyframes myslide {
			from {background-position: 	20% 70%;}
			to {background-position: 	25% 70%;}
		}

/* Copyright: Ron Mazier */
</style>