/* MAIN HTML TAGS */


body {
	font-family: 'Source Sans Pro', helvetica, arial, sans-serif;  /* Possibly change font; try some options first */
	font-size: 120%;
	background: url(../images/backPattern.png);
	color: #000;
	}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 270px;
	z-index: 99;
	}
	
nav {
	width: 100%;
	height: 70px;
	}

a {
	text-decoration:none;
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	transition: all 0.1s ease;
	color: rgba(255,255,255,0.4);
	}
	
a:hover {
	color: #fa0;
	}	
	
p {
	font-size: 1em;
	line-height: 1.2em;
	font-weight: 300;
	color: #000; 
	text-align: left;
	padding: 0 0 1.25rem 0;
	}
	
h1 {
	font-family: 'Raleway', serif;
	font-size: 2.5em;
	font-weight: 900;
	color: rgba(0,0,0,0.2);
	text-align: center;
	margin: 20px 0 0 0;
	}

h2 {
	font-family: 'Raleway', serif;
	font-weight: 900;
	font-size: 1.3em;
	margin: 0 0 10px 0;
	color: #900;
	padding-bottom: 10px;
	border-bottom: solid 1px rgba(0,0,0,0.2);
	}
	
h3 {
	font-family: 'Raleway', serif;
	font-weight: 700;
	font-size: 1em;
	margin-bottom: 10px;
	color: #000;		
	}

/*h4 {
	font-family: 'Raleway', serif;
	font-weight: 700;
	font-size: 1em;
	margin-bottom: 10px;
	color: #000;		
	}*/

strong {
	font-weight: 700;
	}

ol, ul {
    list-style: none;
    margin:0;
    padding:0;
	}	
	
figcaption {	
	color: #000;
	text-align: right;
	font-weight: 400;
	font-size: 0.7em;
	margin: 0 0 20px 0;
	}

figcaption a:link, figcaption a:visited {
	font-weight: 700;
	color: #025592;
	}

figcaption a:hover, figcaption a:active {
	color: #900;
	}
	
form {
	text-align: center;
	}

input {
	height: 40px;
	padding: 5px 10px;
	border: none;
	-moz-border-radius: 10px;
	border-radius: 10px;
	margin-bottom: 10px;
	box-sizing: border-box;
	}
	
input:focus {
	border: none;
	}	

input[type='text'] { 
	background: rgba(255,255,255,0.5);
	width: 100%;
	font-weight: 700;
	}	

input[type='submit'] { 
	float: right;
	font-family: FontAwesome, 'Helvetica Neue', Helvetica, Arial, sans-serif;
	height: 40px;
	width: 60px;
	font-size: 1.2em;
	padding: 10px;
	background: #025592;
	color: #fff;
	}	

input[type='submit']:hover { 
	background: #900;
	}

	
/* WEATHER ANIMATION STYLES*/


/* Sky colours */
#skyColourPostRisePreSet {
	position: absolute;
	top: 0;
	left: 0;
	background: #64bae5;
	background: -moz-linear-gradient(top, #64bae5 0%, #c1dbff 17%, #b9f7e7 31%, #fffb91 50%, #ffae3d 68%, #ff633d 84%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#64bae5), color-stop(17%,#c1dbff), color-stop(31%,#b9f7e7), color-stop(50%,#fffb91), color-stop(68%,#ffae3d), color-stop(84%,#ff633d));
	background: -webkit-linear-gradient(top, #64bae5 0%,#c1dbff 17%,#b9f7e7 31%,#fffb91 50%,#ffae3d 68%,#ff633d 84%);
	background: -o-linear-gradient(top, #64bae5 0%,#c1dbff 17%,#b9f7e7 31%,#fffb91 50%,#ffae3d 68%,#ff633d 84%);
	background: -ms-linear-gradient(top, #64bae5 0%,#c1dbff 17%,#b9f7e7 31%,#fffb91 50%,#ffae3d 68%,#ff633d 84%);
	background: linear-gradient(to bottom, #64bae5 0%,#c1dbff 17%,#b9f7e7 31%,#fffb91 50%,#ffae3d 68%,#ff633d 84%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#64bae5', endColorstr='#ff633d',GradientType=0 );	
	height: 200px;
	width: 100%;
	z-index: 100;
	}

#skyColourPreRisePostSet {
	background: #3b5989;
	background: -moz-linear-gradient(top, #3b5989 0%, #9c9dce 25%, #bdd5fc 50%, #f3fccc 66%, #ffce89 80%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3b5989), color-stop(25%,#9c9dce), color-stop(50%,#bdd5fc), color-stop(66%,#f3fccc), color-stop(80%,#ffce89));
	background: -webkit-linear-gradient(top, #3b5989 0%,#9c9dce 25%,#bdd5fc 50%,#f3fccc 66%,#ffce89 80%);
	background: -o-linear-gradient(top, #3b5989 0%,#9c9dce 25%,#bdd5fc 50%,#f3fccc 66%,#ffce89 80%);
	background: -ms-linear-gradient(top, #3b5989 0%,#9c9dce 25%,#bdd5fc 50%,#f3fccc 66%,#ffce89 80%);
	background: linear-gradient(to bottom, #3b5989 0%,#9c9dce 25%,#bdd5fc 50%,#f3fccc 66%,#ffce89 80%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b5989', endColorstr='#ffce89',GradientType=0 );	
	height: 200px;
	width: 100%;
	z-index: 100;
	}

#skyColourDay {
	background: #99ccff;
	background: -moz-linear-gradient(top,  #99ccff 0%, #d8ebff 50%, #ffffff 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#99ccff), color-stop(50%,#d8ebff), color-stop(100%,#ffffff)); 
	background: -webkit-linear-gradient(top,  #99ccff 0%,#d8ebff 50%,#ffffff 100%); 
	background: -o-linear-gradient(top,  #99ccff 0%,#d8ebff 50%,#ffffff 100%); 
	background: -ms-linear-gradient(top,  #99ccff 0%,#d8ebff 50%,#ffffff 100%); 
	background: linear-gradient(to bottom,  #99ccff 0%,#d8ebff 50%,#ffffff 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99ccff', endColorstr='#ffffff',GradientType=0 );
	height: 200px;
	width: 100%;
	z-index: 100;
	}

#skyColourCloud {
	background: #999999;
	background: -moz-linear-gradient(top,  #999999 0%, #cccccc 50%, #ffffff 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#999999), color-stop(50%,#cccccc), color-stop(100%,#ffffff));
	background: -webkit-linear-gradient(top,  #999999 0%,#cccccc 50%,#ffffff 100%);
	background: -o-linear-gradient(top,  #999999 0%,#cccccc 50%,#ffffff 100%);
	background: -ms-linear-gradient(top,  #999999 0%,#cccccc 50%,#ffffff 100%);
	background: linear-gradient(to bottom,  #999999 0%,#cccccc 50%,#ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#999999', endColorstr='#ffffff',GradientType=0 );
	height: 200px;
	width: 100%;
	z-index: 100;
	}	

#skyColourNight {
	background: #000;
	background-image: url(../images/stars.jpg);
	height: 200px;
	width: 100%;
	z-index: 100;
	}
	
/* Sky position for sun and moon */
#skyPositionRise {
	position: absolute;
	top: 40%;
	left: 6%;
	z-index: 105;
	}
	
#skyPosition0 {
	position: absolute;
	top: 24%;
	left: 14%;
	z-index: 105;
	}

#skyPosition1 {
	position: absolute;
	top: 10%;
	left: 23%;
	z-index: 105;
	}

#skyPosition2 {
	position: absolute;
	top: 3%;
	left: 33%;
	z-index: 105;
	}

#skyPosition3 {
	position: absolute;
	top: 0%;
	left: 46%;
	z-index: 105;
	}

#skyPosition4 {
	position: absolute;
	top: 3%;
	right: 33%;
	z-index: 105;
	}

#skyPosition5 {
	position: absolute;
	top: 10%;
	right: 23%;
	z-index: 105;
	}

#skyPosition6 {
	position: absolute;
	top: 24%;
	left: 14%;
	z-index: 105;
	}

#skyPositionSet {
	position: absolute;
	top: 40%;
	right: 6%;
	z-index: 105;
	}	

/* Cloud and weather scroll methods */
@keyframes overCast {
	from { background-position: 0 0; }
	to { background-position: 1332px 0; }
	}
	
@-webkit-keyframes overCast {
	from { background-position: 0 0; }
	to { background-position: 1332px 0; }
	}
	
@-ms-keyframes overCast {
	from { background-position: 0 0; }
	to { background-position: 1332px 0; }
	}
	
@-moz-keyframes overCast {
	from { background-position: 0 0; }
	to { background-position: 1332px 0; }
	}

@keyframes floatingClouds {
	from { background-position: 0 0; }
	to { background-position: 2370px 0; }
	}
	
@-webkit-keyframes floatingClouds {
	from { background-position: 0 0; }
	to { background-position: 2370px 0; }
	}
	
@-ms-keyframes floatingClouds {
	from { background-position: 0 0; }
	to { background-position: 2370px 0; }
	}

@-moz-keyframes floatingClouds {
	from { background-position: 0 0; }
	to { background-position: 2370px 0; }
	}

@keyframes precipitation {
	from { background-position: 0 0; }
	to { background-position: -50px 200px; }
	}

@-webkit-keyframes precipitation {
	from { background-position: 0 0; }
	to { background-position: -50px 200px; }
	}
	
@-ms-keyframes precipitation {
	from { background-position: 0 0; }
	to { background-position: -50px 200px; }
	}
	
@-moz-keyframes precipitation {
	from { background-position: 0 0; }
	to { background-position: -50px 200px; }
	}

/* Clouds */
#overcast	{ 
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%;
	height: 200px; 
	z-index: 111;
	background-image: url(../images/overcast.jpg);
	background-position: 0px 0px;
	background-repeat: repeat-x;
	animation: overCast 60s linear infinite;
	-ms-animation: overCast 60s linear infinite;
	-moz-animation: overCast 60s linear infinite;
	-webkit-animation: overCast 60s linear infinite;
	}

#highcloud	{ 
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%;
	height: 200px; 
	z-index: 110;
	background-image: url(../images/highcloud.png);
	background-position: 0px 0px;
	background-repeat: repeat-x;
	animation: floatingClouds 800s linear infinite;
	-ms-animation: floatingClouds 800s linear infinite;
	-moz-animation: floatingClouds 800s linear infinite;
	-webkit-animation: floatingClouds 800s linear infinite;
	}

#farClouds	{ 
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%;
	height: 200px; 
	z-index: 112;
	background-image: url(../images/farClouds.png);
	background-position: 0px 0px;
	background-repeat: repeat-x;
	animation: floatingClouds 85s linear infinite;
	-ms-animation: floatingClouds 85s linear infinite;
	-moz-animation: floatingClouds 85s linear infinite;
	-webkit-animation: floatingClouds 85s linear infinite;
	}	
	
#midClouds	{ 
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%;
	height: 200px; 
	z-index: 113;
	background-image: url(../images/midClouds.png);
	background-position: 0px 0px;
	background-repeat: repeat-x;
	animation: floatingClouds 75s linear infinite;
	-ms-animation: floatingClouds 75s linear infinite;
	-moz-animation: floatingClouds 75s linear infinite;
	-webkit-animation: floatingClouds 75s linear infinite;
	}	
	
#nearClouds	{ 
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%;
	height: 200px; 
	z-index: 114;
	background-image: url(../images/nearClouds.png);
	background-position: 0px 0px;
	background-repeat: repeat-x;
	animation: floatingClouds 65s linear infinite;
	-ms-animation: floatingClouds 65s linear infinite;
	-moz-animation: floatingClouds 65s linear infinite;
	-webkit-animation: floatingClouds 65s linear infinite;
	}

/* Weather types */
#lightRain { 
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%; 
	height: 200px; 
	z-index: 115;
	background-image: url(../images/drizzle.png);
	background-position: 0px 0px;
	background-repeat: repeat;
	animation: precipitation 8s linear infinite;
	-ms-animation: precipitation 8s linear infinite;
	-moz-animation: precipitation 8s linear infinite;
	-webkit-animation: precipitation 8s linear infinite;
	}		
		
#modRain { 
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%; 
	height: 200px; 
	z-index: 115;
	background-image: url(../images/rain.png);
	background-position: 0px 0px;
	background-repeat: repeat;
	animation: precipitation 3s linear infinite;
	-ms-animation: precipitation 3s linear infinite;
	-moz-animation: precipitation 3s linear infinite;
	-webkit-animation: precipitation 3s linear infinite;
	}		
		
#heavyRain { 
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%; 
	height: 200px; 
	z-index: 115;
	background-image: url(../images/rain2.png);
	background-position: 0px 0px;
	background-repeat: repeat;
	animation: precipitation 1s linear infinite;
	-ms-animation: precipitation 1s linear infinite;
	-moz-animation: precipitation 1s linear infinite;
	-webkit-animation: precipitation 1s linear infinite;
	}
	
#lightSnowFront { 
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%; 
	height: 200px; 
	z-index: 121;
	background-image: url(../images/light_snow_front.png);
	background-position: 0px 0px;
	background-repeat: repeat;
	animation: precipitation 10s linear infinite;
	-ms-animation: precipitation 10s linear infinite;
	-moz-animation: precipitation 10s linear infinite;
	-webkit-animation: precipitation 10s linear infinite;
	}		
	
#lightSnowBack { 
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%; 
	height: 200px; 
	z-index: 122;
	background-image: url(../images/light_snow_back.png);
	background-position: 0px 0px;
	background-repeat: repeat;
	animation: precipitation 15s linear infinite;
	-ms-animation: precipitation 15s linear infinite;
	-moz-animation: precipitation 15s linear infinite;
	-webkit-animation: precipitation 15s linear infinite;
	}	

#heavySnowFront { 
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%; 
	height: 200px; 
	z-index: 121;
	background-image: url(../images/heavy_snow_front.png);
	background-position: 0px 0px;
	background-repeat: repeat;
	animation: precipitation 7s linear infinite;
	-ms-animation: precipitation 7s linear infinite;
	-moz-animation: precipitation 7s linear infinite;
	-webkit-animation: precipitation 7s linear infinite;
	}		
	
#heavySnowBack	{ 
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%; 
	height: 200px; 
	z-index: 122;
	background-image: url(../images/heavy_snow_back.png);
	background-position: 0px 0px;
	background-repeat: repeat;
	animation: precipitation 10s linear infinite;
	-ms-animation: precipitation 10s linear infinite;
	-moz-animation: precipitation 10s linear infinite;
	-webkit-animation: precipitation 10s linear infinite;
	}
	
#fog { 
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%; 
	height: 200px; 
	z-index: 122;
	background-image: url(../images/fog.png);
	background-position: 0px 0px;
	background-repeat: repeat-x;
	animation: overCast 30s linear infinite;
	-ms-animation: overCast 30s linear infinite;
	-moz-animation: overCast 30s linear infinite;
	-webkit-animation: overCast 30s linear infinite;
	}		
	
#mist { 
	position: absolute;
	top: 0; 
	left: 0;
	width: 100%; 
	height: 200px; 
	z-index: 122;
	background-image: url(../images/mist.png);
	background-position: 0px 0px;
	background-repeat: repeat-x;
	animation: overCast 30s linear infinite;
	-ms-animation: overCast 30s linear infinite;
	-moz-animation: overCast 30s linear infinite;
	-webkit-animation: overCast 30s linear infinite;
	}	

/* Thunderstorm animation */	
.flash {
	display: none;
	}

.lightning1 { 
	position: absolute; 
	top: 0px; 
	left: 10%; 
	height: 175px; 
	width: 233px; 
	z-index:118;
	background: url(../images/lightning1.png) no-repeat;
	}

.lightning2 { 
	position: absolute; 
	top: 0px; 
	left: 25%; 
	height: 175px; 
	width: 233px; 
	z-index:118;
	background: url(../images/lightning2.png) no-repeat;
	}

.lightning3 { 
	position: absolute; 
	top: 0px; 
	left: 40%; 
	height: 175px; 
	width: 233px; 
	z-index: 118;
	background: url(../images/lightning3.png) no-repeat;
	}

.lightning4 { 
	position: absolute; 
	top: 0px; 
	right: 40%; 
	height: 175px; 
	width: 233px; 
	z-index: 118;
	background: url(../images/lightning4.png) no-repeat;
	}

.lightning5 { 
	position: absolute; 
	top: 0px; 
	right: 25%; 
	height: 175px; 
	width: 233px; 
	z-index: 118;
	background: url(../images/lightning5.png) no-repeat;
	}

.lightning6 { 
	position: absolute; 
	top: 0px; 
	right: 10%; 
	height: 175px; 
	width: 233px; 
	z-index: 118;
	background: url(../images/lightning6.png) no-repeat;
	}
	
/* Rochester landscape */
#landscapeBack {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: url('../images/silohouetteBack.png') repeat-x; 
	height: 200px; 
	width: 100%;
	z-index: 123;
	}

#landscape {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: url('../images/silohouette.png') no-repeat;
	height: 200px; 
	width: 1366px;
	z-index: 124;
	}

	
/* WEATHER TEXT STYLES*/

	
#weatherDetailsMobile {
	color: #fff!important;
	font-size: 0.8em;
	}	

.temp {
	font-size: 0.9em;
	font-family: 'Source Sans Pro', helvetica, arial, sans-serif;
	width: 60px;
	height: 32px;
	border-radius:10px;
	box-sizing: border-box;
	text-align: center;
	line-height: 30px;
	font-weight: 700;
	color: #000;
	}

.temp1 {
	background-color: #66ccff;
	}

.temp2 {
	background-color: #00ffcc;
	}

.temp3 {
	background-color: #99ff99;
	}

.temp4 {
	background-color: #ffff99;
	}

.temp5 {
	background-color: #ffdf0f;
	}

.temp6 {
	background-color: #ffcc00;
	}

.temp7 {
	background-color: #ff9900;
	}

.temp8 {
	background-color: #ff6600;
	}
	
.temp9 {
	background-color: #ff2200;
}	
	

/* MAIN HEADER STYLES */

	
#logoMenu {
	width: 100%;
	height: 80px;
	background: #000;
	text-align: center;
	position: fixed;
	top: 150px;
	z-index:9999;
	border-bottom: 10px solid #fff;
	box-shadow: 0 1px 0 rgba(0,0,0,0.2);
	}

.navLogoBlock {
	width: 35%;
	display: inline-block;
	margin: 0 1%;
	padding: 0;
	vertical-align: middle;
	}
	
.navLogoBlock img {
	width: 100%;
	height: auto;
	max-height: 70px;
	max-width: 302px;
	}
	
.navTempBlock {
	width: 7%;
	display: inline-block;
	margin: 0 1%;
	padding: 0;
	vertical-align: middle;
	}	

.navBlock {
	width: 5%;
	display: inline-block;
	margin: 0 1%;
	padding: 0;
	font-family: 'Raleway', serif;
	font-weight: 700;
	font-size: 1.2em;
	vertical-align: middle;
	}
	
.tooltip, .tooltip2 {
	position: relative;
	}
	
.tooltip:before, .tooltip:after {
	font-weight: 700;
	position: absolute;
	transition: All 0.5s ease;
	-webkit-transition: All 0.5s ease;
	-moz-transition: All 0.5s ease;
	-o-transition: All 0.5s ease;
	margin-left: -90px;
	left: 50%;
	bottom: 300%;
	display: block;
	color: #000;
	opacity: 0;
    visibility:hidden;
	}

.tooltip:before {
	content: attr(title);
	border: none;
	border-radius: 20px;
	background: #fb0;
	background: rgba(255,187,0,0.9);
	width: 120px;
	text-align: center;
	z-index: 2;
	font-size: 11pt;
	line-height: 1.2;
	padding: 10px;
	}

.tooltip:after {
	font-family: "FontAwesome";
	content: '\f04b ';
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	margin-left: 0;
	margin-top: 0;
	width: 0;
	height: 0;
	z-index: 1;
	line-height: 15px;
	color: rgba(255,255,255,0.9);
	color: rgba(255,187,0,0.9);
	font-size: 25px;
	}


.tooltip:hover:before, .tooltip:hover:after {
	bottom: 150%;
	opacity: 1;
    visibility:visible;
	}
	
	
/* MAIN BODY STYLES */	


.clickDrag {
	margin-top: 10px;
	text-align: center;
	}	

#owl-demo .item{
	position: relative;
	width: 90%;
	padding: 0;
	margin: 5%;
	color: #000;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: left;
	}

.moreLink {
	display: inline-block;
	font: 700 0.8em 'Raleway', cursive;
	margin: 0 0 0.7em 0;
}

.moreLink a:link, .moreLink a:visited {
	padding: 0.2em 0.7em;
	background: #025592;
	color: #fff;
	}
	
.moreLink a:hover, .moreLink a:active{
	background: #900;
	}

.sectionImage {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background:#fff;
	width: 100%;
	padding: 2%;
	box-shadow: 0 0 18px rgba(0,0,0,0.5);
	height: auto;
	margin: 10px 0;
	}

#footer {
	font-size: 0.9em;
	text-align: center;
	}
	
	
/* FORTHCOMING EVENT STYLES */


.circleBlock {
	background: #900;
	background: rgba(153,0,0,0.9);
	border: solid 4px #fff;
	border-radius: 50%;
	height: 100px;
	width: 100px;
	display: table;
    position: absolute;
	top: 90px;
	right: 15px;
	padding: 5px;
	box-shadow: 5px 5px 8px rgba(0,0,0,0.5);
	-ms-transform: rotate(7deg);
    -webkit-transform: rotate(7deg); 
    transform: rotate(7deg);
	z-index: 999;
	}
	
.circleBlock div {
	color: #fff;
	text-align: center;
	display: table-cell;
    vertical-align: middle;
	}
	
.circleBlockDates {
	color: #fb0;
	font-size: 1.2em;
	font-weight: 700;
	}	
	

/* VISITOR INFORMATION STYLES */


::-webkit-input-placeholder { 
	color: rgba(0,0,0,0.3);
	font-size:12pt;
	}
	
::-moz-placeholder { 
	color: rgba(0,0,0,0.3);
	font-size: 12pt;
	}
	
:-ms-input-placeholder { 
	color: rgba(0,0,0,0.3);
	font-size: 12pt;
	}
	
:-moz-placeholder { 
	color: rgba(0,0,0,0.3);
	font-size: 12pt;
	}

	
/* ASSORTED CLASSES AND IDs */	
	
	
.red {
	color: #900;
	}
	
.blue {
	color: #025592;
	}
	
.gold {
	color: #fb0;
	}

.grey {
	color: rgba(0,0,0,0.4);
	}

.size90 {
	font-size: 0.9em;
	}
	
.size80 {
	font-size: 0.8em;
	}
	
.size70 {
	font-size: 0.7em;
	}
	
	
/* RESPONSIVE STYLES */

	
@media only screen and (min-width: 1200px) {
	#wideHide {
		display: none;
		}
	}	
	
@media only screen and (min-width: 651px) {
	#demo {
		margin: 250px 60px 0 60px;
	}	
	
	#mobileMenu {
		display: none;
		}	
	}
	
@media only screen and (max-width: 650px) {
	#mobileMenu {
		padding: 10px 0;
		background: #000;
		text-align: center;
		display: block;
		}

	.navLogoBlock {
		width: 100%;
		display: block;
		margin: 0 0 10px 0;
		padding: 0;
		}		
		
	#demo {
		margin-top: 20px;
		}			
	
	header {
		display: none;
		}

	.navBlock {
		margin: 0 3%;
		font-size: 1.4em;
		}	
	}

@media only screen and (max-width: 550px) {
	.navBlock {
		font-size: 0.8em;
		}	
	
	nav {
		height: 40px;
		}
	}

@media only screen and (min-width: 651px) and (max-width: 960px) {
	.navBlock {
		font-size: 1em;
		}
	}









/* REDUNDANT STYLES?? DELETE AT A LATER DATE */



/*.swipeImage {
	display: inline-block;
	width: 33%;
	height: auto;
	vertical-align: text-top;
	}

.swipeCopy {
	display: inline-block;
	width: 60%;
	height: auto;
	vertical-align: text-top;
	margin-right: 5%;
	text-align: left;
	}
						
.swiperContainer {
	margin: 20px 0;
	z-index: 999999999;
	}	
	
.eventContainer {
	width: 100%;
	height: 100%;
	text-align: left;
	}

.eventBlock {
	display: inline-block;
	padding: 0;
	margin: 0 10px 0.8em 0;
	text-align: left;
}

.swipeNote {
	font-size: 0.9em;
	font-weight: 700;
	text-align: center;
	margin: 0 10px;
	color: rgba(0,0,0,0.3);
	}
	
.dividerSolid {
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: dashed 1px rgba(0,0,0,0.2);
}	
	
.alignRight {
	float: right;
	}
	
.alignCenter {
	text-align: center;
	}
	
.mapBlock a  {
	color: #fff!important;
	}

.mapBlock {
	display: inline-block;
	font-size: 0.8em;
	font-weight: 700;
	text-align: center;
	background: #900;
	color: #fff!important;
	border: none;
	padding: 2px 5px;
	margin: 0 5px 5px 0;
	border-radius: 5px;
	}

.mapBlock:hover {
	background: #025592;
	}	

#testZone {
	z-index: 999;
	color: #ff0;
	font-weight: 700;
	}
	
#bolt-container div {
    display:none;
}
.show {
    display:block!important;
}
	
.eventName {
	color: #900;
}	

.eventDate {
	color: #000;
}		

.swipeRight {
	position: fixed;
	right: 10px;
	bottom: 20%;
	width: 50px;
	}

.swipeLeft {
	position: fixed;
	left: 10px;
	bottom: 20%;
	width: 50px;
	}	
	

#rochesterTraffic {
	height: 300px;
	overflow-y: scroll;
	}
	
.rssFeed a {
	font-weight: 700;
	color: #025592;
	text-decoration: none;
}

.rssFeed a:hover {
	color: #900;	
}

.rssRow div {
	font-size: 0.8em;
	font-weight: 700;
	color: #000;
	margin: 5px 0;
	padding: 0;
}

.rssRow p {
	font-size: 0.8em;
	font-weight: 400;
	color: #000;
	text-align: left;
	padding: 0 0 1.25rem 0;
	}		*/
	
