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

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

:root {
    --primary-color: 	#0077b6; /* rgba(0, 119, 182, 1) */
    --secondary-color: 	#ff9900; /* Orange */
    --bg-color: 		#ffffff;
	--h-color:			#0077b6; /* blue */
    --accent-color: 	#d9534f;
    --nav-color: 		rgba(255, 255, 255, 0.4);
    --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;
}

/**** Body *********************/
	body {
        background-color: #f4f4f9;
		color: #333;
		font-family: Arial, sans-serif;
		line-height: 1.6;
		margin: 0;
		padding: 0;
        }
	#all {
		font-weight:	400;
		width:			100%;
		margin-left:	auto;
		margin-right: 	auto;
		margin-top: 	0px;
		margin-bottom: 	0px;
		padding: 		0px;
		text-align:		center;
	}		
	audio {
		width: 300px;
	}	
	video {
		width: 300px;
	}	
	form {
		border: 0px;
		margin: 20px;
		padding: 0px;
		text-align:		center;
		}
	h1,h2,h3 {
        text-align:		center;
        color:  		var(--h-color);
       }
	.donate {
		background: var(--secondary-color);
		color: #fff;
		padding: 10px 20px;
		text-align: center;
		font-size: 1.2em;
		border-radius: 5px;
		text-decoration: none;
		display: inline-block;
		margin: 20px 0;
    }

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

	background-image: linear-gradient(rgba(0,0,0,0),rgba(0, 119, 182, 0.9)), url('../images/book-club-1.png'); /* Path to your image */
	background-size: 100% auto; /* Adjust image size */
	background-position: 0px top; /* Center the image */
	background-repeat: no-repeat; /* Prevent tiling */

/*    background-size: 		cover; */
	
    border: 			0;
    border-bottom: 		2px solid var(--secondary-color);
    display: 			flex;
    justify-content: 	space-between;
    align-items: 		center;
	flex-wrap:			wrap;
    margin: 			0;
    padding:			0;
    width: 				100%;
} 

#header h1 {
color: white;
}
#header #logo-container,
#header #header-title,
#header #top-right {
    flex: 1;
    text-align: center;
}

#header img {
    height: 		50px;
	border-radius: 	8px;
    object-fit: 	cover;
}

@media screen and (max-width:769px) {
    #header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #header-title, #top-right {
        display:	none;
    }

	#header img {
		width: 			100px;
	}
}

/**************** Navbar *************************/
#navbar {
    display: flex;
    flex-wrap: wrap;
/*    background-color: var(--nav-color); */
	color: var(--nav-text-color);
    width: 100%;
    padding: 10px 0;
}

#nav {
    width: 100%;
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
 
#nav li {
    margin: 0 10px; /* Add spacing between links */
	text-align:center;
}

#nav li a {
	font-weight: 	bold;
	font-size: 1.4em;
    padding: 5px 10px; /* Reduce padding */
    border-radius: 4px; /* Rounded edges for softer appearance */
    transition: background-color 0.3s, color 0.3s; /* 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(128, 128, 200, 0.5);
    list-style: none;
    padding: 0;
    margin: 0;
    width: 190px;
}
#nav li a:hover {
    background-color: rgba(128, 128, 128, 0.5); /* Subtle hover effect */
}

@media screen and (max-width: 769px) {
    #nav {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
    }

    #nav li {
        margin: 5px 0;
    }

#nav li a {
	font-size: 1.0em;
    padding: 3px 6px; /* Reduce padding */
}


}

        h1, h2 {
            color: #0066cc;
        }

        main {
            margin: auto;
            overflow: hidden;
            padding: 1rem;
        }
        main h1 {
            background: #003090;
            color: #fff;
            padding: 20px 10px;
            text-align: center; 
            color: white;
        }
        section {
			background-color: #fff;
			padding: 20px;
            width: 100%;
            margin: 20px auto;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }
        .content img {
            display: block;
            max-width: 100%;
            height: auto;
            margin: 20px auto;
        }
        footer {
            text-align: center;
            padding: 10px;
            background: #0066cc;
            color: #fff;
            position: relative;
            bottom: 0;
            width: 100%;
        }

/**** Wrap ****/
	#wrap		{
			box-sizing:		border-box;
			width: 			100%;
			margin: 		0px;
			padding:		0px;
			border: 		0px;
			display:		block;
			color: 			#333333;
		}
	#content	{
			box-sizing:		border-box;
			width: 			100%;
			margin: 		0px;
			padding:		0px; 
			border: 		0px;
			display:		block;
			margin-left: 	auto;
			margin-right: 	auto;
		}
	#homepage	{
			box-sizing:		border-box;
			background: 	transparent;
			float: 			none;
			clear: 			both;
			display:		inline-block;
			margin-right: 	auto;
			margin-left: 	auto;
			padding: 		10px;
			margin-left: 	auto;
			margin-right: 	auto;
		}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.grid-item {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.grid-item img {
	max-height:300px;
	max-width:100%;

}
.grid-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

/****	Footer Background	* url(images/dark/footer.png) ****/
	#footer {
			box-sizing:		border-box;
			display:		inline-block;
			width:			100%;
			margin:			0px;
			padding: 		40px;
			clear:			both;
			border-top: 	2px inset var(--secondary-color);
			font-style:		italic;
			text-align:		center;
		}
		
	#footer  a:hover {
		background-color: var(--secondary-color);
		color: #fff;
		padding:			5px;
	}

	#footer>span img {
			width:			250px;
		}

	@media screen and (max-width:768px){

		#footer>span img {
			width:			100%;
		}
	} 

	@media screen and (min-width:769px){
		#footer>span img {
			width:			250px;
		}
	} 

/**** BUTTONS and HTML ELEMENTS ****/

	form .inputer {text-align:center;} 
	a:hover {
		text-decoration: underline;
	}
	input {
		text=align:center;
		background-color: #f8f8f8;
		height:			32px;
		font-size:		16pt;
	}
	input[type="submit"] {
		height:			32px;
		word-wrap: 		normal;
		white-space: 	normal;
		border:			1px;
		border-radius: 	3px;
		font-weight: 	bold;
		text-align: 	center;
		background-color: 	rgba(0,255,255,0.3);
	}  
	img {
		max-width:100%;
	}
	.payb {		background-color: 	#808080;
		margin-right:auto;
		margin-left:auto;
}
	textarea {
		width: 100%;
		padding: 10px; 
		box-sizing: border-box;
		border: 2px solid #ccc;
		border-radius: 5px;
		margin-right:auto;
		margin-left:auto;
		background-color: #f8f8f8;
	}
	input[type="button"] {
		height:			32px;
		margin-left: 	auto;
		margin-right: 	auto; 
		padding: 		8px;
		border-radius:	3px;
		min-width:		100px;
		text-align: 	center;
		color: 			black;
		font-weight: 	bold;
		background-color: 	rgba(0,255,255,0.3);
		box-shadow: 	1px 1px 2px rgba(0,255,255,0.9);
	}
	input[type="button"]:hover {
		text-decoration: underline;
		box-shadow: 	2px 2px 2px #0099FF;
		transform: 		translateY(-1px);
	}
	input[type="button"]:active {
		box-shadow: 	1px 1px rgba(0,0,0,0.6);
		transform: 		translateY(2px);
	}

	input[type=checkbox] {
		width:				30px;
		height:				30px;
		background-color:	yellow;
	}
	.selected {
			text-decoration: underline;
			border: 1px outset #aaaaaa;
			border-top: 1px outset #666666;
			border-left: 1px outset #666666;
			background-color: rgba(0,0,0,0.8);
			font-weight: bold;
			font-size: 12pt;
		}
	.gobutton	{
		width: 			32px;
		height: 		32px;
		border:			1px;
		border-radius: 	16px;
		float:			right;
		margin:			5px;
	}
	tr:nth-child(even) {background-color: rgba(0,255,255,0.2)}
	#HomeButton {
		float: right;
		position:absolute;
		top:100;
		left:200;
		}
	#ron {
		max-width: 		40px;
		border-radius: 20px
	}

/**** 2-columns	****************/
  
	#leftcolumn		{
		box-sizing:		border-box;
		width: 			20%;
		min-width: 		125px;
		padding: 		0px;
		margin: 		0px;
		margin-left: 	auto;
		margin-right:	auto;
		text-align: 	left;
		display:		inline-block;
		clear:			left;
		float:			left;
		}
	#leftcolumn > div {
		box-sizing:		border-box;
		width:			100%;
		margin-left:	auto;
		margin-right:	auto;
		padding:		10px;
		float: 			left;
		clear: 			both;
		margin-right:	auto;
		margin-left:	auto;
		text-align: 	left;
		display: 		inline-block;
		}
	#rightsidepage		{
		box-sizing:		border-box;
		width:			80%;
		padding: 		10px;
		margin-top:		0px;
		margin-left: 	auto;
		margin-right:	auto;
		clear: 			right;
		float: 			right;
	}
/*
	#rightsidepage	div	{
		box-sizing:		border-box;
		width:			100%;
		margin:			3px;
		margin-top: 	7px;
		padding: 		0px;
		border: 		1px solid #CCCCCC;
		border-bottom: 	1px solid #999999;
		border-right: 	1px solid #999999;
		border-radius: 	5px;
		float: 			left;
		clear: 			both;
		text-align: 	left;
		display: 		inline-block;
		background-color: white;
	    box-shadow: 	4px 4px 4px rgba(51,150,197,0.1);
	}
*/
	@media screen and (max-width:900px) and (min-width:540px) {
		#headerright, #headerleft, #leftcolumn, #rightsidepage {
			width:		100%;
			display: 	inline-block;
			
			}
			
		#leftcolumn, #rightsidepage {
			padding: 	0px;
		}

		#headerleft img 	{
			background: url(logo_MAZI.jpg) no-repeat;
			background-size: 40px;
			max-height: 30px;
			margin: 	15px;
			}
		}
	@media screen and (max-width:539px)	{
		#headerright, #headerleft, #leftcolumn, #rightsidepage {
			width:		100%;
			display: 	inline-block;
			}
		#headerleft img 	{
			max-height: 30px;
			margin: 	5px;
			}
		}

/** bbox **/
.bbox {
    background-color: var(--bg-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;
    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 .img {
    flex: 1 1 auto; /* Flexible width */
    max-width: 400px;
    padding: 20px;
    min-width: 150px; /* Prevent shrinking */
}

.bbox .img img {
    width: 100%; /* Responsive image scaling */
    height: auto;
    display: block;
    border-radius: 8px;
    min-width: 150px;
}

/* 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;
    }
}

	.section {
            margin-bottom: 20px;
        }
	.contact {
            font-weight: bold;
        }

	.bbox:nth-child(even) {
		border-top:		rgba(189, 166, 145,1);
	} 
	.bbox iframe{
		max-width:		100%;
		width:			100%;
	}
	.bbox>span:nth-child(1) {
		width:			45%;
		box-sizing:		border-box;
		display: 		inline-block;
		padding:		30px;
		background-color:white;
		float:			left;
		text-align:		left;

		border-bottom:	2px solid rgba(65,105,225,1);
	} 
	.bbox>span:nth-child(1) div {
		text-align:		left;
		box-sizing:		border-box;
		display: 		inline-block;
	}
	.bbox>span:nth-child(2) {
		width:			55%;
		box-sizing:		border-box;
		display: 		inline-block;
		padding:		30px;
		background-color:rgba(255,218,185,.1);
		float:			right;
	}
	
	.bbox>span img {
		max-height: 	600px;
		max-width: 		100%;
		min-width: 	150px;
	}

	.bbox p {
		text-align: 	left;
	}

	@media screen and (max-width:768px){

		.bbox>span:nth-child(1) {
			width:		100%;
			padding:	20px;
			float:		left;
		}

		.bbox>span:nth-child(2) {
			width:		100%;
			padding:	20px;
			float:		right;
		}
		.cltbox img {
			max-width:	100%;
		}
	} 

	@media screen and (min-width:769px){
		.bbox>span:nth-child(1) {
			width:		45%;
			padding:	30px;
			float:		left;
		}

		.bbox>span:nth-child(2) {
			width:		55%;
			padding:	30px;
			float:		right;
		}
		.cltbox img {
			max-width:	32%;
		}
	}

	#cuflyer 	{
		border: 	none;
		max-height: 600px;
		max-width: 100%;
		float: 		none;
	} 

	#hudwide 	{
		border: 	none;
		max-width: 100%;
		float: 		none;
	} 

	#gordonicon {
		width:100%;
		box-sizing:		border-box;
		display: 		inline-block;
	}
	.tenhouses {
		height:200px;
		max-width:100%;
		margin:5px;
		box-shadow: 	2px 2px 2px rgba(0,0,0,0.6);
	} 
	#beforeafter {
		max-width:100%;
		width:100%;
	}
	.ars {width:100%}
	.gordonimage {width:500px} 

	#index {
		box-sizing:		border-box;
		display: 		inline-block;
		text-align:		left;
		padding:		20px;
		margin:			10px;
		min-width:300px;
		border:			1px solid #999999;
		box-shadow: 	2px 2px 2px rgba(0,0,0,0.6);
	} 

/*** Clean-Up ***/
	#cuflyerbox {
		border-top:		8px solid rgba(250,250,115,1);
	} 

/** threebox **/
	.threebox {
		box-sizing:		border-box;
		height:			200px;
		display: 		inline-block;
		width:			100%;
		padding:		0px;
	} 
	.threebox span {
		box-sizing:		border-box;
		display: 		inline-block;
		padding:		0px;
		float:			left;
	} 
	.threebox iframe{
		max-width:100%;
		width:100%;
	}
	.threebox>span:nth-child(1) {
		width:			30%;
	}
	.threebox>span:nth-child(2) {
		width:			40%;
		border-left:	1px solid rgba(65,105,225,1);
		border-right:	1px solid rgba(65,105,225,1);
	}
	.threebox>span:nth-child(3) {
		width:			30%;
\	}
	.threebox>span img {
		max-height:100%;
		width: 100%;
	}
 
	@media screen and (max-width:768px){
		.threebox>span {
			width: 100%;
		}
		
	}
	@media screen and (min-width:769px){
		.threebox>span:nth-child(1) {
			width:			30%;
		}
		.threebox>span:nth-child(2) {
			width:			40%;
		}
		.threebox>span:nth-child(3) {
			width:			30%;
		}
	}

/*** Join ***/
/*	.inputcell {
				width:300px;
			}			
			#JoinBox {
			}
*/
	#JoinBox {
		box-sizing: 	border-box;
		display:		inline-block;
		max-width: 		100%;
		min-height: 	400px;
		padding:		20px; 
		width:			100%;
		margin-left: 	auto;
		margin-right: 	auto;
		margin-top: 	20px;
		margin-bottom: 	20px;
		clear:			both;
		text-align:		center;
 		}
	#JoinBox > div{
		text-align:		left;
 		}
	#JoinBox input[type="text"] {
		width:			100%;
		max-width: 		500px;
		background-color: white;
		margin-top: 	10px;
		margin-bottom: 	10px;
		margin-left: 	auto;
		margin-right: 	auto;
		clear:			both;
 		}
	#JoinBox input[type="button"] {
		width:			100%;
		max-width: 		500px;
		font-size:		16pt;
		margin-top: 	10px;
		font-weight:	bold;
		margin-left: 	auto;
		margin-right: 	auto;
		}
	#TextBox {
		box-sizing: 	border-box;
		display:		inline-block;
		min-height: 	300px;
		padding:		20px; 
		width:			100%;
		margin-left: 	auto;
		margin-right: 	auto;
		clear:			both;
		text-align:		left; 
		font-size: 120%; 
 		}
	.textbox {
		box-sizing: 	border-box;
		display:		inline-block;
		max-width: 		90%;
		min-height: 	400px;
		padding:		30px; 
		border: 		0px solid #808080;
		width:			100%;
		margin-left: 	auto;
		margin-right: 	auto;
		margin-top: 	30px;
		margin-bottom: 	30px;
		clear:			both;
		text-align:		left;
		}
	.textbox span {
		box-sizing: 	border-box;
		display:		inline-block;
		padding:		8px; 
		min-width:		100px;
		margin-left: 	auto;
		margin-right: 	auto;
		text-align:		left;
		width:			32%;
	}
	.textbox:nth-child(even) {background-color: rgba(0,255,255,0.1);}
	.textcell { 
	}
	.textcell:first-child {	
		font-weight: bold;
		font-size: 150%;}
	.textcell:nth-last-child(1) {		width:			99%;
			background-color: rgba(0,255,255,0.3);}


/** Calendar**/
	#Calendar {
		box-sizing: 	border-box;
		display:		inline-block;
		min-height: 	500px;
		padding:		20px; 
		width:			100%;
		margin-left: 	auto;
		margin-right: 	auto;
		clear:			both;
		text-align:		left;
		font-weight: 	bold;
		font-size: 		12pt; 
		border-bottom: 	1px solid black;
	}
	#Calendar table {
		border-bottom: 	1px solid black;
	}
	#Calendar th {
		box-sizing: 	border-box;
		display:		inline-block;
		padding:		20px; 
		width:			100%;
		margin-left: 	auto;
		margin-right: 	auto;
		clear:			both;
		font-size: 		32pt; 
		text-align: 	center;
		font-weight:	bold;
		border-bottom: 	3px solid black;
	}
	#Calendar td {
		box-sizing: border-box;
		display:	inline-block;
		padding:	5px; 
		width:		17%;
		height:		100%;
		min-height:	175px;
		border-top: 	1px solid black;
		border-left: 	1px solid black;
		margin: 	0px;
		text-align:	left;
		vertical-align:	top;
		overflow:	clip;
	}
	#Calendar td:first-child {
		width:			7%;
	} 
	#Calendar td:last-child {
		width:			7%;
		border-right: 	1px solid black;
	} 
	#Calendar td.h {
		height:		30px;
		min-height:		30px;
		text-align:	center;
	}
	#Calendar tr.short td {
		height: 80px;
	}
 
/** COvid**/
	#InfoBox {
		box-sizing: 	border-box;
		display:		inline-block;
		max-width: 		90%;
		min-height: 	400px;
		padding:		20px; 
		width:			100%;
		margin-left: 	auto;
		margin-right: 	auto;
		clear:			both;
		text-align:		left;
		font-size: 		120%;
 		} 
	#Flier1 {
		box-sizing: 	border-box;
		display:		inline-block;
		max-width: 		400px;
		padding:		20px; 
		width:			100%;
		margin-left: 	auto;
		margin-right: 	auto;
		clear:			both;
 		}


/**** More Buttons ****/

	#LogOffButton {
		float: right;
		position: absolute;
		background-color: white;
		top:0px;
	} 
	#NewFile {
        width: 200px;
		height: 35px;
		background: #FFFFFF url(https://www.ronmazier.com/images/icon_pluspaper.png) left no-repeat;
	}
	.button_table {
		background-color: #FFFFFF;
		width: 178px;
		border-top:    0px solid;
		border-left:   0px solid;
		border-bottom: 0px outset;
		border-right:  0px outset;
		padding: 3px;
		margin: 0px auto 0px auto;
		line-height: 25px;
	} 
	#timesheet input[type="text"] {
			width: 30px;
			background-color: #f2f2f2
		}

/*** Tables   ***/
	th {
		background-color: rgba(193,15,58,0.5);
		text-align: center;
		font-weight:	bold;
		border-bottom: 1px solid #aaaaaa;
		padding:	3px;
	}
/*	tr:nth-child(even) {background-color: rgba(193,15,58,0.1)} */
	td>img {
			width:			90%;
			max-width:800px;
		}
	td {
			border-bottom: 	20px solid rgba(193,15,58,0.5);
			text-align: 	center;
			padding: 		30px;
		}


/***OTHER ****/
	#EnrollBox {
		border-radius: 10px;
		border: 	1px solid #909090;
		background-color:rgba(0,240,240,0.1);
		padding:	50px;
		width:		90%;
		margin-right:auto;
		margin-left:auto;
	}
	#EnrollBox div {
		width:		50%;
		margin-right:auto;
		margin-left:auto;
	}

/*** 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.7);
		background-color: rgba(90,90,90,0.5);
		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;
		margin-top:		0px;
		margin-bottom:	10px;
		width:			100%;
		clear:			both;
		}
	#LoginBox input[type="submit"] {
		background-color: rgba(100,100,100,1);
		color: 			white;
	    box-shadow: 	4px 4px 4px rgba(90,90,90,0.4);
		margin-bottom:	0px;
		}
	#LoginBox a {	
		z-index: 		+1;
		position:		absolute;
		top:			3px;
		right:			3px;
		float:			right;
		color: 			white;
		font-weight: 	bold;
		font-size: 	150%;
		}
		
		
	#loginbutton	{
			width:		60px;
			height:		25px;
			float:		none;
		}
	#PassnameBox {
		padding-top: 	2px;
		margin-left: 	5px;
		clear: 			left;
		}
	#PassnameBox input[name="passname"] {
		width: 			80px;
		transition-property:	width;
		}
		
	#PassnameBox input[name="passname"]:focus {
		width: 			120px;
		}
	#PasswordBox {
		padding-top:	2px;
		margin-left:	5px;
		}
	#PasswordBox input[name="password"] {
		width: 			80px;
		}
	#useremail		{   width: 180px;	}
	#userpassword	{   width: 90px;	}
		
	/* 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%;}
		}
	.sponsor {
			box-sizing:		border-box;
			display:		inline-block;
			float: 			none;
			clear: 			both;
			width: 			150px;
			height:			80px;
			padding: 		10px;
			margin:			5x;
			border: 		0px;
		}

	.sponsor img {
			box-sizing:		border-box;
			width: 			100%;
		}
#ronsvideo {
			width:			200px
		}
	#ronsarticle {
			width:			200px
		}
	.lastyearphoto {
			width:			200px;
		}
	.i {
		font-family: "Bitstream Vera Sans Mono","Lucinda Console";
	 	font-size: 8pt;
	 	font-style: italic;
			box-sizing:		border-box;
			display:		inline-block;
			float: 			none;
			clear: 			both;
			height:			100px;
			padding: 		10px;
			margin:			10px;
			border: 		1px solid rgba(193,15,58,0.3);
		    box-shadow: 	2px 2px 2px rgba(193,15,58,0.3);
	}

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