
/*link transitions */
.expo a, .expo a:hover {
	-o-transition: color 0.25s ease-in;
	-webkit-transition: color 0.25s ease-in;
	-moz-transition: color 0.25s ease-in;
	transition: color 0.25s ease-in;
	text-decoration: none;
}

/* Main bar */
.expo {
	width: 100%;
	position: relative;
	float: left;
	clear: both;
	padding: 15px 20px;
	background: #92d14f;
	color: #fff;
	font-size: 20px;
	line-height: 1.4;
	font-family: "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
	font-weight: 400;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.expo.expo-fixed {
	position: fixed;
	margin-top: -10px;
	padding-top:20px;
	left: 0;
}

/* IE7 --> border-box doesn't work */
.ie7 .expo {
	width: 96%;
	padding: 15px 2%;
}

/* links in the bar */
.expo a {
	color: #011f60;
	font-weight: 600;
	text-decoration: none;
}

.expo a:hover {
	color: #2C6A93;
}

/* close button */
.expo-close {
	position: absolute;
	top: 15px;
	right: 20px;
	text-decoration: none;
	font-weight: 600;
	color: #fff;
	min-width: 44px;
	min-height: 44px;
	text-align: right;
}

.expo-close.expo-close-left {
	right: auto;
	left: 0;
}


@media screen and (max-width: 48em) { /* 768px */

	.expo {
		padding: 20px;
	}

}
@media screen and (max-width: 37.5em) { /* 600px */

	.expo {
		padding: 20px 30px;
	}

}

/* colour transitions {NOPE}*/
.expo.colours {
	-webkit-animation:colour 48s 30 ease-in-out;
	-moz-animation:colour 48s 30 ease-in-out;
	-ms-animation:colour 48s 30 ease-in-out;
	-o-animation:colour 48s 30 ease-in-out;
	animation:colour 48s 30 ease-in-out;
	animation-iteration-count:infinite;
}

@-webkit-keyframes colour {
	100% { background-color: #92d14f; }
}

@-moz-keyframes colour {
	100% { background-color: #92d14f; }
}

@-ms-keyframes colour {
	100% { background-color: #92d14f; }
}

@-o-keyframes colour {
	100% { background-color: #92d14f; }
}

@keyframes colour {
	100% { background-color: #92d14f; }
}


.expobar-animated{-webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:1.25s;-moz-animation-duration:1.25s;-ms-animation-duration:1.25s;-o-animation-duration:1.25s;animation-duration:1.25s;}


@-webkit-keyframes expobar-bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
	}	60% {
		opacity: 1;
		-webkit-transform: translateY(30px);
	}

	80% {
		-webkit-transform: translateY(-10px);
	}

	100% {
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes expobar-bounceInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-2000px);
	}

	60% {
		opacity: 1;
		-moz-transform: translateY(30px);
	}

	80% {
		-moz-transform: translateY(-10px);
	}

	100% {
		-moz-transform: translateY(0);
	}
}

@-o-keyframes expobar-bounceInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-2000px);
	}

	60% {
		opacity: 1;
		-o-transform: translateY(30px);
	}

	80% {
		-o-transform: translateY(-10px);
	}

	100% {
		-o-transform: translateY(0);
	}
}

@keyframes expobar-bounceInDown {
	0% {
		opacity: 0;
		transform: translateY(-2000px);
	}

	60% {
		opacity: 1;
		transform: translateY(30px);
	}

	80% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(0);
	}
}

.expobar-bounceInDown {
	-webkit-animation-name: expobar-bounceInDown;
	-moz-animation-name: expobar-bounceInDown;
	-o-animation-name: expobar-bounceInDown;
	animation-name: expobar-bounceInDown;
}
@-webkit-keyframes expobar-bounceOutUp {
	0% {
		-webkit-transform: translateY(0);
	}

	20% {
		opacity: 1;
		-webkit-transform: translateY(20px);
	}

	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
	}
}

@-moz-keyframes expobar-bounceOutUp {
	0% {
		-moz-transform: translateY(0);
	}

	20% {
		opacity: 1;
		-moz-transform: translateY(20px);
	}

	100% {
		opacity: 0;
		-moz-transform: translateY(-2000px);
	}
}

@-o-keyframes expobar-bounceOutUp {
	0% {
		-o-transform: translateY(0);
	}

	20% {
		opacity: 1;
		-o-transform: translateY(20px);
	}

	100% {
		opacity: 0;
		-o-transform: translateY(-2000px);
	}
}

@keyframes expobar-bounceOutUp {
	0% {
		transform: translateY(0);
	}

	20% {
		opacity: 1;
		transform: translateY(20px);
	}

	100% {
		opacity: 0;
		transform: translateY(-2000px);
	}
}

.expobar-bounceOutUp {
	-webkit-animation-name: expobar-bounceOutUp;
	-moz-animation-name: expobar-bounceOutUp;
	-o-animation-name: expobar-bounceOutUp;
	animation-name: expobar-bounceOutUp;
}
