﻿<script>
<!--

/*
Auto Refresh Page with Time script
By JavaScript Kit (javascriptkit.com)
Over 200+ free scripts here!
*/

//enter refresh time in "minutes:seconds" Minutes should range from 0 to inifinity. Seconds should range from 0 to 59
var limit="2:00"

if (document.images){
var parselimit=limit.split(":")
parselimit=parselimit[0]*60+parselimit[1]*1
}
function beginrefresh(){
if (!document.images)
return
if (parselimit==1)
window.location.reload()
else{ 
parselimit-=1
curmin=Math.floor(parselimit/60)
cursec=parselimit%60
if (curmin!=0)
curtime=curmin+" minutes and "+cursec+" seconds left until page refresh!"
else
curtime=cursec+" seconds left until page refresh!"
window.status=curtime
setTimeout("beginrefresh()",1000)
}
}

window.onload=beginrefresh
//-->
</script>


<style type="text/css">
.style2 {
	font-size: x-small;
}
.style3 {
	text-align: center;
}
.ub-t {
	font-family: Calibri;
	position:relative;
	display:inline-block;
}
.litewire {
				display:inline;
	position:relative;
}
.flex-group {
				position:relative;
				text-align:justify;
				margin:0 auto;
				left:0;
				right:0;
				display:flex;
				flex-wrap:wrap;
				width:100%;
				min-width:0;

}
.style12 {
				border-width: 0;
				border-collapse: collapse;
}

.camera {
				width:816px;
				left:0;
				right:0;
				margin:0 auto;
}
.black {
				color:black;
}
.addresses {
				text-align:center;
				left:0;
				right:0;
				margin:0 auto;
				font-family:Arial, Helvetica, sans-serif;
				font-size:1em;
				padding-top:60px;
}
</style>
