

/* ==== INCLUDE: /css/resp-base.css ==== */

/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:
	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com
-------------------------------------------------------------------------------*/

/* Let's default this puppy out
-------------------------------------------------------------------------------*/
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");

html, body, body div, span, object, iframe, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 11pt;
	font-weight: normal;
	font-family: sans-serif;
	vertical-align: baseline;
	background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {display: block;}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

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

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */

/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {max-width: 100%; height: auto;}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:
#map img {
		max-width: none;
}
*/

/* force a vertical scrollbar to prevent a jumpy page */
html {overflow-y: scroll;}

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
/* ul {list-style: none;} */

blockquote, q {quotes: none;}

blockquote:before,
blockquote:after,
q:before,
q:after {content: ''; content: none;}

a {margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent;}

del {text-decoration: line-through;}

abbr[title], dfn[title] {border-bottom: 1px dotted #000; cursor: help;}

/* tables still need cellspacing="0" in the markup */
table {border-collapse: collapse; border-spacing: 0;}
th {font-weight: bold; vertical-align: bottom;}
td {font-weight: normal; vertical-align: top;}

hr {display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0;}

input, select {vertical-align: middle;}

pre {
    white-space: pre; /* CSS2 */
    white-space: pre-wrap; /* CSS 2.1 */
    white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
    word-wrap: break-word; /* IE */
}

input[type="radio"] {vertical-align: text-bottom;}
input[type="checkbox"] {vertical-align: bottom;}
.ie7 input[type="checkbox"] {vertical-align: baseline;}
.ie6 input {vertical-align: text-bottom;}

select, input, textarea {font: 99% sans-serif;}

table {font-size: inherit; font: 100%;}

small {font-size: 85%;}

strong {font-weight: bold;}

td, td img {vertical-align: top;}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {font-size: 75%; line-height: 0; position: relative;}
sup {top: -0.5em;}
sub {bottom: -0.25em;}

/* standardize any monospaced elements */
pre, code, kbd, samp {font-family: monospace, sans-serif;}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {cursor: pointer;}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {margin: 0;}

/* make buttons play nice in IE */
button,
input[type=button] {width: auto; overflow: visible;}

/* scale images in IE7 more attractively */
.ie7 img {-ms-interpolation-mode: bicubic;}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/

/* let's clear some floats */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }


/* mrp additions */

.provider-attribution {
	
	
}

.mrp-crea-attribution {
	margin: 0 20px;
	padding: 10px 0 20px 0;
	font-size: 10px;
	font-family: verdana;
	text-align: left;
}

.mrp-crea-attribution.region-DDF {
	text-align: center;
}

.mrp-crea-attribution * {
	font-size: 0.8rem;
}

.mrp-crea-attribution {
	max-width: 800px;
    margin: 0 auto;
}

.mrp-crea-attribution hr {
	display: none;
}


.page-footer-copyright {
	
	text-align: center;
	padding: 20px 0;
	font-size: 11px;
}

.page-footer-copyright a {
	font-weight: bold;
}

.quick-message {
	padding: 20px 30px;
	background-color: black;
	opacity: 0.8;
	border-radius: 10px;
	color: white;
	font-weight: bold;
	font-family: sans-serif;
	text-align: center;
	
	position: fixed;
	top: 50%;
	left: 50%;
	-ms-transform: translate( -50%, -50% );	
	-webkit-transform: translate( -50%, -50% );	
	-moz-transform: translate( -50%, -50% );	
	transform: translate( -50%, -50% );	
}

.quick-message.fade {
	opacity: 0;
	-ie-transition: opacity 1s;
	-moz-transition: opacity 1s;
	-webkit-transition: opacity 1s;
	transition: opacity 1s;
}

body > .html-layout{
	-webkit-transition: transform 500ms ease-in-out;
	-moz-transition: transform 500ms ease-in-out;
	-ms-transition: transform 500ms ease-in-out;
	-o-transition: transform 500ms ease-in-out;
	transition: transform 500ms ease-in-out;
}

html.mrp-idx-on .mrp-sidebar-tab {
	display: none;
}


@media (max-width: 650px) {

	body #content-well {
		width: 100%;
	}
	
	.mrp-sidebar.mrp-sidebar-left {
		position: absolute;
		position: fixed;
		left: 0px;
		top: 0;
		-moz-transform: translate(-110%,0);	
		-webkit-transform: translate(-110%,0);	
		transform: translate(-110%,0);
	}
	
	.mrp-sidebar.mrp-sidebar-right {
		position: absolute;
		position: fixed;
		right: 0px;
		top: 0;
		-moz-transform: translate(110%,0);	
		-webkit-transform: translate(110%,0);	
		transform: translate(110%,0);
	}
	
	.mrp-sidebar.right.on {
		-moz-transform: translate(0,0);	
		-webkit-transform: translate(0,0);	
		transform: translate(0,0);
	}
	
	
	.mrp-sidebar-tab {
		position: fixed;
		top: 50%;
		background-color: black;
		color: white;
		font: normal normal normal 14px/1 FontAwesome;
		font-size: inherit;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		padding: 10px 7px;
		border: 1px solid black;
		box-shadow: 0 0 5px #333;
		box-sizing: border-box;
		cursor: pointer;
		z-index: 100;
		font-size: 20px;
		opacity: 0.7;
		
		-moz-transform: translate(0,-50%);	
		-webkit-transform: translate(0,-50%);	
		transform: translate(0,-50%);
	}
	.mrp-sidebar-tab.right:before {
		/* content: "\f0c9"; */
		content: "\f03b";
	}
	
	.mrp-sidebar-tab.right.on:before {
		/* content: "\f0c9"; */
		content: "\f03c";
	}
	.mrp-sidebar-tab.left:before {
		/* content: "\f0c9"; */
		content: "\f03c";
	}
	
	.mrp-sidebar-tab.left.on:before {
		/* content: "\f0c9"; */
		content: "\f03b";
	}

	.mrp-sidebar-tab.right {
		right: 0;	
	}
	
	.mrp-sidebar-tab.left {
		left: 0;
	}
	
	/*
	.mrp-sidebar:before {
		position: absolute;
		top: 0;
		background-color: black;
		color: white;
		content: "\f0c9";
		font: normal normal normal 14px/1 FontAwesome;
		font-size: inherit;
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		padding: 10px;
		border: 1px solid black;
		box-shadow: 0 0 5px #333;
		box-sizing: border-box;
		cursor: pointer;
	}
	
	.mrp-sidebar.right:before {
		left: 0;
		-moz-transform: translate(-100%,0);	
		-webkit-transform: translate(-100%,0);	
		transform: translate(-100%,0);
	}
	*/
}

/* ==== INCLUDE: /css/weblets/responsive/menu.css ==== */

/* menu responsive */

.mrp-weblet-menu {
	position: relative;
	z-index: 100;
}

.mrp-menu-resp-wrapper li {
	cursor: pointer;
}
.mrp-menu-resp-wrapper > ul {
	/* default is table */
	display: table;
}
.mrp-menu-resp-wrapper > ul > li {
	/* default is table view */
	display: table-cell;
}
			
.mrp-menu-resp-wrapper {
	box-sizing: border-box;
}

.mrp-menu-resp-wrapper * {
	box-sizing: border-box;
}

.mrp-menu-resp-wrapper ul,
.mrp-menu-resp-wrapper ul li {
	padding: 0;
	margin: 0;
	list-style-type: none;
	position: relative;
}

.mrp-menu-resp-wrapper li.has-sub {
	
	padding-right: 31px;
	cursor: pointer;
}

.mrp-menu-resp-wrapper span.chevron {
	
	position: absolute;
	display: block;
	right: 0px;
	top: 0px;
	height: 100%;
	width: 25px;
	background-color: #efefef;
	cursor: pointer;
	
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

.mrp-menu-resp-wrapper span.chevron::after {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	opacity: 0.5;
}

.mrp-menu-resp-wrapper li > span.chevron::after {
	content: "\f067";
}

.mrp-menu-resp-wrapper li.on > span.chevron::after {
	content: "\f068";
}

.mrp-menu-resp-wrapper > ul {	
	width: 100%;
}

.mrp-menu-resp-wrapper > ul > li {
	padding: 3px 6px;
	border: 1px solid gray;
	box-sizing: border-box;
	position: relative;
}

.mrp-menu-resp-wrapper > ul ul {
	display: none;
}

.mrp-menu-resp-wrapper ul ul > li {
	display: none;
	min-width: 100px;
	border-bottom: 1px solid gray;
	padding: 3px 6px;
}

.mrp-menu-resp-wrapper ul ul > li:last-child {
	border-bottom: 0;
}

.mrp-menu-resp-wrapper li.on > ul > li {
	display: block;
}

.mrp-menu-resp-wrapper li.on > ul {
	position: absolute;
	left: 0;
	top: 100%;
	display: block;
	
	border: 1px solid gray;
	background-color: white;
	z-index: 1;
	box-shadow: 5px 5px 10px rgba(127,127,127,0.5);
}

.mrp-menu-resp-wrapper > ul > li.on.left > ul {
	left: auto;
	right: 0;	
}

.mrp-menu-resp-wrapper > ul ul > li.on > ul {
	left: calc(100% - 5px);
	top: 5px;
}

.mrp-menu-resp-wrapper > ul ul > li.on.left > ul {
	right: calc(100% - 10px);
	left: auto;
	top: 5px;
}
			
.mrp-menu-resp-wrapper > ul.top > li > a {		
	white-space: nowrap;
}

.mrp-menu-resp-wrapper a {
	text-decoration: none;
	display: block;
}

.mrp-menu-resp-wrapper li.has-sub a {
	display: inline-block;
}

.mrp-menu-resp-wrapper li.on a {
	
}

.mrp-menu-resp-wrapper ul.on > li {
	opacity: 0.7;
}

.mrp-menu-resp-wrapper ul.on > li.on {
	opacity: 1.0;
}


@media (min-width: 400px) {
	/* flex-box */
	.mrp-menu-resp-wrapper > ul {
		display: flex;
		flex-direction: row;
		flex-flow: wrap;
		//justify-content: center;
		align-content: stretch;
	}
	
	
	.mrp-menu-resp-wrapper > ul > li {
		flex-grow: 1;
	}
	/* end of flex-box */
}

/* sidebar */

.mrp-sidebar .mrp-menu-resp-wrapper > ul {
	display: block;
}
	
.mrp-sidebar .mrp-menu-resp-wrapper ul > li  {
	
	display: block;
	border: 0;
	border-bottom: 1px solid gray;
}

.mrp-sidebar .mrp-menu-resp-wrapper ul > li:first-child {
	border-top: 1px solid gray;
}

.mrp-sidebar .mrp-menu-resp-wrapper li.on.has-sub {
	padding-right: 6px;
}

.mrp-sidebar .mrp-menu-resp-wrapper ul.on > li.on {
	display: block;
}

.mrp-sidebar .mrp-menu-resp-wrapper li.on > ul {
	
	position: relative;
	left: auto;
	top: auto;
	box-shadow: none;
	margin-right: 30px;
	border: 0;
	border-left: 1px solid gray;
	border-right: 1px solid gray;
	margin-top: 5px;
	margin-bottom: 5px;
}

.mrp-sidebar .mrp-menu-resp-wrapper ul ul > li:last-child {
	border-bottom: 1px solid gray;
}

.mrp-sidebar .mrp-menu-resp-wrapper > ul ul > li.on > ul {
	left: auto;
	right: auto;
	top: auto;
}

.mrp-sidebar .mrp-menu-resp-wrapper > ul ul > li.on.left > ul {
	right: auto;
	right: auto;
	top: auto;
}

.mrp-sidebar .mrp-menu-resp-wrapper li.on > a {
	display: block;
	padding: 10px 6px;
}


@media (max-width: 400px) {
	
	.mrp-menu-resp-wrapper {
		overflow: hidden; /* to make it acquire height */
	}
	
	.mrp-menu-resp-wrapper .top-handle {
		clear: both;
		/* float: right; */
		float: left;
		display: block;
		margin: 10px 5px;
		padding: 10px;
		box-shadow: 0 0 10px rgba( 128,128,128,0.5 );
		font: normal normal normal 14px/1 FontAwesome;
		cursor: pointer;
	}
	
	.mrp-menu-resp-wrapper .top-handle:after {
		content: "\f0c9";
	}
	
	.mrp-menu-resp-wrapper > ul {
		display: none;
	}
	
	.mrp-menu-resp-wrapper .top-handle.on ~ ul {
		display: block;
	}
	
	.mrp-menu-resp-wrapper > ul {
		clear: both;
	}
		
	.mrp-menu-resp-wrapper ul > li {
		display: block;
		border: 0;
		border-bottom: 1px solid gray;
	}
	
	.mrp-menu-resp-wrapper ul > li:first-child {
		border-top: 1px solid gray;
	}
	
	.mrp-menu-resp-wrapper ul.on > li {
		/* display: none; */
	}
	
	.mrp-menu-resp-wrapper li.on.has-sub {
		padding-right: 6px;
	}
	
	.mrp-menu-resp-wrapper ul.on > li.on {
		display: block;
		/*
		padding: 0;
		margin: 0;
		border: 0;
		*/
	}
	
	.mrp-menu-resp-wrapper li.on > ul {
		
		position: relative;
		left: auto;
		top: auto;
		box-shadow: none;
		margin-right: 30px;
		border: 0;
		border-left: 1px solid gray;
		border-right: 1px solid gray;
		margin-top: 5px;
		margin-bottom: 5px;
	}
	
	.mrp-menu-resp-wrapper ul ul > li:last-child {
		border-bottom: 1px solid gray;
	}
	
	.mrp-menu-resp-wrapper > ul ul > li.on > ul {
		left: auto;
		right: auto;
		top: auto;
	}
	
	.mrp-menu-resp-wrapper > ul ul > li.on.left > ul {
		right: auto;
		right: auto;
		top: auto;
	}
	
	.mrp-menu-resp-wrapper li.on > a {
		display: block;
		padding: 10px 6px;
	}	
}

/* ==== INCLUDE: /css/weblets/responsive/image-banner.css ==== */

.mrp-resp-banner {
	position: relative;
	height: 0;
	padding-bottom: 50%;
}

.mrp-resp-banner ul.images {
	
	display: block;
	width: 100%;
	height: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	overflow: hidden;
}

.mrp-resp-banner ul.images li {
	
	margin: 0;
	padding: 0;
	position: absolute;
	display: block;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	opacity: 0.0;
	z-index: 0;
}

.mrp-resp-banner ul.images li.mrp-resp-banner-show {
	z-index: 2;
	opacity: 1.0;
}

.mrp-resp-banner ul.images img {
	
	max-width: none;
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: auto;
	
	-moz-transform: translate(-50%,-50%);	
	-webkit-transform: translate(-50%,-50%);	
	transform: translate(-50%,-50%);
}

.mrp-resp-banner .bullet-nav {
	
	position: absolute;
	width: 100%;
	text-align: center;
	left: 0;
	bottom: 10px;
	z-index: 20;
}

.mrp-resp-banner .bullet-nav > span {
	
	display: inline-block;
	margin: 0 5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: white;
	box-shadow: 0 0 10px #333;
	z-index: 100;
	cursor: pointer;
}

.mrp-resp-banner .bullet-nav > span.active {
	background-color: yellow;
}

/* animation */

.mrp-resp-banner.mrp-resp-banner-rotate ul.images > li {
	-webkit-transition: opacity 500ms ease-in-out;
	-moz-transition: opacity 500ms ease-in-out;
	-ms-transition: opacity 500ms ease-in-out;
	-o-transition: opacity 500ms ease-in-out;
	transition: opacity 500ms ease-in-out;
    
    opacity: 0.0;
}

.mrp-resp-banner.mrp-resp-banner-rotate ul.images > li.mrp-resp-banner-show {
	-webkit-transition-delay: 0ms; /* Chrome, Safari, Opera */
	-moz-transition-delay: 0ms; /* Chrome, Safari, Opera */
	-o-transition-delay: 0ms; /* Chrome, Safari, Opera */
    transition-delay: 0ms;
    
    opacity: 1.0;
}

.mrp-resp-banner.mrp-resp-banner-slide ul.images > li {
	-webkit-transition: transform 500ms ease-in-out;
	-moz-transition: transform 500ms ease-in-out;
	-ms-transition: transform 500ms ease-in-out;
	-o-transition: transform 500ms ease-in-out;
	transition: transform 500ms ease-in-out;
	
	opacity: 1.0;
	
	-webkit-transition-delay: 1000ms; /* Chrome, Safari, Opera */
	-moz-transition-delay: 1000ms; /* Chrome, Safari, Opera */
	-o-transition-delay: 1000ms; /* Chrome, Safari, Opera */
    transition-delay: 1000ms;
}

.mrp-resp-banner.mrp-resp-banner-slide.mrp-resp-banner-right ul.images > li {
	-moz-transform: translate(-100%,0);	
	-webkit-transform: translate(-100%,0);	
	transform: translate(-100%,0);
}

.mrp-resp-banner.mrp-resp-banner-slide.mrp-resp-banner-left ul.images > li {
	-moz-transform: translate(100%,0);	
	-webkit-transform: translate(100%,0);	
	transform: translate(100%,0);
}

.mrp-resp-banner.mrp-resp-banner-slide ul.images > li.mrp-resp-banner-show {
	-moz-transform: translate(0,0);	
	-webkit-transform: translate(0,0);	
	transform: translate(0,0);	
	
	-webkit-transition-delay: 0ms; /* Chrome, Safari, Opera */
	-moz-transition-delay: 0ms; /* Chrome, Safari, Opera */
	-o-transition-delay: 0ms; /* Chrome, Safari, Opera */
    transition-delay: 0ms;
}


@media (max-width: 650px) {
	
	.mrp-resp-banner {
		position: relative;
		height: 0;
		padding-bottom: 60%;
	}

	.mrp-resp-banner ul.images img {
		
		height: 100%;
		width: auto;
	}
}









.mrp-resp-banner .next-nav,
.mrp-resp-banner .prev-nav {
	width: 50px;
	height: 50px;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -25px;
	z-index: 200;
	background-color: black;
	cursor: pointer;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	-ms-border-radius: 25px;
	-o-border-radius: 25px;
	border-radius: 25px;
}

.mrp-resp-banner .next-nav,
.mrp-resp-banner .prev-nav,
.mrp-resp-banner .bullet-nav {
	-webkit-transition:visibility 0s linear 0.3s,opacity 0.3s linear;
	-moz-transition:visibility 0s linear 0.3s,opacity 0.3s linear;
	-ms-transition:visibility 0s linear 0.3s,opacity 0.3s linear;
	-o-transition:visibility 0s linear 0.3s,opacity 0.3s linear;
	transition:visibility 0s linear 0.3s,opacity 0.3s linear;
	visibility: hidden;
	opacity: 0;
}

.mrp-resp-banner .next-nav {
	right: 10px;
	background: black url(/img/weblets/image-banner/next.png) no-repeat center center;
	
}
.mrp-resp-banner .prev-nav {
	left: 10px;
	background: black url(/img/weblets/image-banner/prev.png) no-repeat center center;
}


.mrp-resp-banner .bullet-nav {
	text-align: center;
	position: absolute;
	bottom: 10px;
	width: 100%;
}
.mrp-resp-banner .bullet-nav span {
	width: 10px;
	height: 10px;
	background-color: #fff;
	box-shadow: 0 0 15px #333;
	display: inline-block;
	cursor: pointer;
	z-index: 200;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
}


.mrp-resp-banner:hover .next-nav,
.mrp-resp-banner:hover .prev-nav  {
	visibility: visible;
	opacity: 0.5;
	-webkit-transition-delay:0s;
	-moz-transition-delay:0s;
	-ms-transition-delay:0s;
	-o-transition-delay:0s;
	transition-delay:0s;
}

.mrp-resp-banner:hover .bullet-nav {
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay:0s;
	-moz-transition-delay:0s;
	-ms-transition-delay:0s;
	-o-transition-delay:0s;
	transition-delay:0s;
}

.bullet-nav span.active {
	background-color: #336699;
}



.mrp-resp-banner .mrp-js-banner-content {
	
	position: absolute;
	left: 50%;
	top: 50%;
	-moz-transform: translate(-50%,-50%);	
	-webkit-transform: translate(-50%,-50%);	
	transform: translate(-50%,-50%);
	text-align: center;
	max-width: 80%;
}


.mrp-resp-banner .mrp-js-banner-button {
	/*
	position: absolute;
	display: block;
	z-index: 100;
	margin-left: 50%;
	bottom: 40px;
	-moz-transform: translate(-50%,0);	
	-webkit-transform: translate(-50%,0);	
	transform: translate(-50%,0);
	*/
	
	display: inline-block;
	
	min-width: 80px;
	color: #fff;
	background-image: -webkit-linear-gradient(top, #5697d0 0%, #357ebd 100%);
    background-image: -o-linear-gradient(top, #5697d0 0%, #357ebd 100%);
    background-image: linear-gradient(to bottom, #5697d0 0%, #357ebd 100%);
    background-repeat: repeat-x;
    border-color: #3071a9;
    border-bottom-color: #245682;
    text-shadow: none;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background-color: #428bca;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-decoration: none;
}

.mrp-resp-banner .mrp-js-banner-hero-title {
	/* position: absolute; 
	margin-left: 50%;
	bottom: 170px;
	-moz-transform: translate(-50%,0);	
	-webkit-transform: translate(-50%,0);	
	transform: translate(-50%,0);
	max-width: 80%;
	*/
	display: block;
	text-align: center;
	z-index: 100;
	font-size: 32px;
	color: white;
	text-shadow: 0 0 5px #000;
	margin-bottom: 10px;
}
