* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
html {
	font-family: "Open Sans", Arial, sans-serif;
	color: #444;
	background-color: White;
	background-image: url(../images/cloud2.jpg); 
	background-size: 100% auto;
	background-repeat: no-repeat;
}
body {
	font-size: 13px;
	overflow-x: hidden;
	overflow-y: scroll;
}




/* HEADER */
#header-outer {
	background: #008081;
	xbackground: SkyBlue;
	height: 5em;
}
img.header-logo {
	height: 4em;
	margin: .5em 0 .5em 1em;
}
ul.header-menu,
ul.language-menu {
	display: block;
	list-style-type: none;
}
ul.header-menu > li,
ul.language-menu > li {
	display: block;
	float: left;
}
ul.header-menu > li > a.header-menu-link,
ul.language-menu > li > a.language-menu-link {
	color: #ddd;
	xfont-size: .9em;
	text-decoration: none;
}
ul.header-menu > li > a.header-menu-link:hover,
ul.language-menu > li > a.language-menu-link:hover {
	color: #fff;
}
ul.language-menu > li > a.language-menu-link-active {
	color: #fff;
}
ul.header-menu > li:not(:last-of-type),
ul.language-menu > li:not(:last-of-type) {
	margin-right: .75em;
	padding-right: .75em;
	border-right: 1px solid #999;
}




/* TOP MENU */
#menu-outer {
	background: #256768 ;
	xbackground: SteelBlue;
	font-size: .9em;
	z-index: 2;
}
ul.topmenu {
	list-style-type: none;
}
ul.topmenu li {
	float: left;
}
ul.topmenu li a.topmenu-toplink {
	display: inline-block;
	padding: 1em 1em;
	line-height: 1em;
	font-size: 1em;
	color: #ccc;
	text-decoration: none;
}
ul.topmenu li:hover a.topmenu-toplink {
	color: #fff;
	background: #000;
}
ul.topmenu > li ul.dropmenu {
	position: absolute;
	list-style-type: none;
	background: #000;
	xbox-shadow: 0 .5em .5em rgba(0,0,0,0.25);
	padding: .75em;
	font-size: 1.2em;
	xborder-radius: 0 .25em .25em .25em;
	z-index: 2;
	/* fade in-out effect, source: http://stackoverflow.com/questions/26963102/css-drop-down-menu-fading-without-javascript */
	/**
	-webkit-transition: visibility 0.25s ease, opacity 0.25s ease;
	-moz-transition: visibility 0.25s ease, opacity 0.25s ease;
	-ms-transition: visibility 0.25s ease, opacity 0.25s ease;
	-o-transition: visibility 0.25s ease, opacity 0.25s ease;
	transition: visibility 0.25s ease, opacity 0.25s ease;
	visibility: hidden;
	opacity: 0;
	**/
	display: none;
}
ul.topmenu > li:hover ul.dropmenu {
	/* fade in-out effect */
	/**
	visibility: visible;
	opacity: 1;
	**/
	display: block;
}




/* DROP MENU */
ul.dropmenu a.dropmenu-link {
	display: inline-block;
	text-decoration: none;
}
ul.dropmenu a.dropmenu-link:hover {
}
ul.dropmenu a.dropmenu-link div.dropmenu-link-box {
	padding: .5em;
}
ul.dropmenu a.dropmenu-link div.dropmenu-link-box p {
	font-size: 0.8em;
	color: #bbb;
}
ul.dropmenu a.dropmenu-link:hover div.dropmenu-link-box p {
	color: #fff;
}
ul.dropmenu img.dropmenu-image {
	width: 12em;
	height: 8em;
}




/* GALLERY */
.gallery-outer {
	display: block;
	xbackground: #fff;
}
.gallery-screen {
	position: relative;
	overflow: hidden;
}
.gallery-oneimage-container,
.gallery-oneimage {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 1px;
	z-index: 1;
}
.gallery-oneimage-text-container {
	position: absolute;
	display: block;
	left: 1em;
	bottom: 1em;
	color: #fff;
	text-shadow: 0 0 .2em rgba(0,0,0,.8);
	z-index: 1;
}
.gallery-bottomspace {
	height: 1em;
}
.gallery-thumbnail-container-outer {
	position: relative;
	height: 60px;
	background: rgba(255,255,255,0.6);
	overflow-x: hidden;
	overflow-y: hidden;
}
.gallery-thumbnail-container-inner {
	position: absolute;
	left: 0;
	height: 60px;
	-webkit-transition: left .5s ease-out;
	-moz-transition: left .5s ease-out;
	-ms-transition: left .5s ease-out;
	-o-transition: left .5s ease-out;
	transition: left .5s ease-out;
}
.gallery-onethumbnail-image {
	opacity: .35;
}
.gallery-onethumbnail-button:hover > .gallery-onethumbnail-image,
.gallery-onethumbnail-button.active > .gallery-onethumbnail-image {
	opacity: 1;
}
.gallery-onethumbnail-button {
	display: block;
	border: none;
	outline: none;
	float: left;
	margin-right: 1px;
	height: 60px;
	cursor: pointer;
	z-index: 1;
}
.gallery-scrollbutton-left,
.gallery-scrollbutton-right {
	position: absolute;
	width: 30px;
	height: 60px;
	border: none;
	outline: none;
	cursor: pointer;
	z-index: 2;
}
.gallery-scrollbutton-left {
	left: 0;
	background: url(../images/gallery_arrow_left.png) no-repeat;
}
.gallery-scrollbutton-right {
	right: 0;
	background: url(../images/gallery_arrow_right.png) no-repeat;
}
#gallery-play {
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	width: 100px;
	height: 100px;
	border: none;
	outline: none;
	background: url(../images/gallery_play.png) no-repeat;
	cursor: pointer;
	opacity: .35;
	z-index: 2;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#gallery-play:hover {
	opacity: 1;
}




/* SLIDE */
#slide {
	position: relative;
	display: block;
	width: 100%;
	height: 70vh;
	z-index: 1;
	min-width: 1000px;
	overflow: hidden;
}
.slide-oneslide-container {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.slide-oneslide {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}
.slide-oneslide-textcontainer {
	position: relative;
	z-index: 1;
}
.slide-oneslide-textcontainer-inner {
	color: #fff;
	position: absolute;
	text-shadow: 0 0 .2em rgba(0,0,0,.8);
	z-index: 1;
}
.slide-oneslide-textcontainer-inner-text1 {
	font-family: "Playfair Display", Times, serif;
	font-size: 3em;
	letter-spacing: -1px;
}
.slide-oneslide-textcontainer-inner-text2 {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 1.75em;
}
.slide-oneslide-icon {
	position: absolute;
	z-index: 1;
}
.slide-arrow-left,
.slide-arrow-right {
	position: absolute;
	width: 50px;
	height: 80px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	border: none;
	outline: none;
	cursor: pointer;
	z-index: 2;
}
.slide-arrow-left {
	left: 0;
	background: url(../images/slide_arrow_left.png) center no-repeat;
}
.slide-arrow-right {
	right: 0;
	background: url(../images/slide_arrow_right.png) center no-repeat;
}




/* BOOKING BAND */
.bookingband-outer-gallery {
	display: block;
	xbackground: white;
}
.bookingband-inner-gallery {
	height: 3em;
	color: #fff;
	background: #888;
}
.bookingband-inner-gallery .bookingband-title {
	padding-left: 1em;
}
.bookingband-outer-slide {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3em;
	background: rgba(0,0,0,0.5);
	z-index: 2;
}
.bookingband-inner-slide {
	height: 3em;
	color: #fff;
}
.bookingband-inner-slide .bookingband-title {
	padding-left: 0;
}
a.bookingband-link {
	color: #fff;
	text-decoration: none;
}
a.bookingband-link:hover {
	text-decoration: underline
}
.bookingband-title {
	padding-right: 1em;
	margin-right: 1em;
	border-right: 1px solid #fff;
	
}
button.bookingband-bookingbutton {
	display: block;
	float: right;
	height: 3em;
	padding: 1em 3em;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 1em;
	font-weight: normal;
	line-height: 1em;
	color: #fff;
	background: -webkit-linear-gradient(top, YellowGreen 0%, #256768 100%);
	background: -moz-linear-gradient(top, YellowGreen 0%, #256768 100%);
	background: -ms-linear-gradient(top, YellowGreen 0%, #256768 100%);
	background: -o-linear-gradient(top, YellowGreen 0%, #256768 100%);
	background: linear-gradient(top, YellowGreen 0%, #256768 100%);
	border: none;
	outline: none;
	cursor: pointer;
}
img.bookingband-icon-wifi {
	display: inline-block;
	float: right;
	height: 2em;
	margin: .5em;
}




/* CONTENT */
#content-outer {
	padding: 5em 0;
	Xbackground: white;
}
#content-inner {
}




/* CONTENT: GENERAL */
table.content-user-table {
	border-spacing: 0;
	border-collapse: collapse;
	xtable-layout: fixed;
}
table.content-user-table td {
	padding: .25em;
	vertical-align: top;
}
p.content-paragraph {
	padding-bottom: 1.5em;
}
h1.content-header,
h2.content-header,
h3.content-header,
h4.content-header {
	xfont-family: "Roboto Condensed", Arial, sans-serif;
	font-family: "Playfair Display", Times, serif;
	font-style: normal;
	font-weight: normal;
	color: #256768;
	xcolor: #666;
	xletter-spacing: -.05em;
	letter-spacing: -.025em;
	padding-bottom: .25em;
}
h1.content-header {
	font-size: 2.5em;
}
h2.content-header {
	font-size: 2.25em;
}
h3.content-header {
	font-size: 2em;
}
h4.content-header {
	font-size: 1.75em;
}
a.content-link {
	color: #256768;
	color: #008081;
	text-decoration: underline;
	text-decoration: none;
	border-bottom: 1px dotted #256768;
}
a.content-pseudobuttonlink,
button.content-buttonlink {
	padding: .5em 1.5em;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 1em;
	font-weight: normal;
	line-height: 1em;
	color: #fff;
	background: -webkit-linear-gradient(top, YellowGreen 0%, #256768 100%);
	background: -moz-linear-gradient(top, YellowGreen 0%, #256768 100%);
	background: -ms-linear-gradient(top, YellowGreen 0%, #256768 100%);
	background: -o-linear-gradient(top, YellowGreen 0%, #256768 100%);
	background: linear-gradient(top, YellowGreen 0%, #256768 100%);
	border: none;
	border-radius: .2em;
}
a.content-pseudobuttonlink {
	display: inline-block;
	text-decoration: none;
}
button.content-buttonlink {
	outline: none;
}
span.content-bold {
	font-weight: bold;
}
span.content-italic {
	font-style: italic;
}
span.content-underline {
	text-decoration: underline;
}
div.content-centered {
	display: block;
	text-align: center;
}
ul.content-list {
	margin-left: 1.5em;
	padding-bottom: .5em;
}
div.content-line {
	display: block;
	height: 0;
	padding-top: 2em;
	margin-bottom: 2em;
	border-bottom: 1px dashed #bbb;
}
table.content-table {
	width: 100%;
	border-spacing: 0;
}
table.content-table > tbody > tr > td:nth-child(1) {
	width: 140px;
	xmin-width: 1%;
	vertical-align: top;
	padding-bottom: 1em;
}
table.content-table > tbody > tr > td:nth-child(2) {
	vertical-align: top;
	padding-left: 2em;
	padding-bottom: 1em;
}
table.content-table img.content-cover-image {
	xwidth: 140px;
	xpadding: 2px;
	xborder: 1px solid #eee;
}




/* CONTENT: IMAGE */
.content-image-container {
	padding: 0;
	margin: 0;
	background: rgba(0,0,0,0.15);
	margin-bottom: 2em;
}
img.content-image {
	display: block;
	width: 100%;
	border: none;
}
.content-image-description {
	padding: 1em;
	color: #444;
	font-size: .9em;
}



/* CONTENT: VIDEO */
.content-video-container-outer {
	padding: 0;
	margin: 0;
	background: rgba(0,0,0,0.15);
	margin-bottom: 2em;
}
.content-video-container-inner {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 video ratio */
}
iframe.content-video {
	display: block;
	width: 100%;
	border: none;
}
.content-video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	bottom: 0;
}
.content-video-description {
	padding: 1em;
	color: #444;
	font-size: .9em;
}







/* CONTENT: BOOKING WINDOW */
.content-booking-container {
	position: absolute;
	width: 800px;
	height: 600px;
	top: 50%;
	left: 50%;
	background: #fff;
	box-shadow: 0 0 1em rgba(0,0,0,0.5);
	z-index: 20;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#content-booking-window {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	padding: 20px;
	z-index: 20;
}




/* CONTENT: GOOGLE MAP */
.content-googlemap-container {
	width: 100%;
}




/* CONTENT: PANORAMA 360 */
.content-panorama360 {
	margin-bottom: 1.5em;
}




/* CONTENT: SPECIAL OFFER */
table.content-onespecialoffer {
	border-spacing: 0 ;
	margin-bottom: 1em;
}
img.content-onespecialoffer-image {
	padding: .5em;
	border: 1px solid #ddd;
}




/* CONTENT: PRESS COVERAGE */
.presscoveragegroup {
	display: block;
	margin-bottom: 1em;
}
.presscoverage-one-container {
	display: block;
	float: left;
	width: 140px;
	margin: 0 5px 10px 0;
}
.presscoverage-image {
	position: relative;
	display: block;
	width: 140px;
	height: 140px;
	background: #ddd;
}
.presscoverage-nonimage-container {
	position: relative;
	display: block;
	width: 140px;
	height: 140px;
	background: #ddd;
}
.presscoverage-nonimage-container span {
	position: absolute;
	top: 50%;
	left: 50%;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 3em;
	font-style: bold;
	color: #fff;
	-webkit-transform: translate(-50%, -50%);
}
.presscoverage-downloadlink-container {
	position: relative;
	display: block;
	text-align: center;
	width: 140px;
	height: 40px;
	background: #eee;
}
.presscoverage-downloadlink-image {
	display: inline-block; 
	width: 36px;
	height: 36px;
	margin-top: 2px;
	left: 50%;
	border-radius: 50%;
	background: #ccc url(../images/download.png) center center no-repeat;
}
.presscoverage-description {
	display: block;
	width: 140px;
	background: #eee;
	font-size: .8em;
	line-height: 1.2em;  
	xpadding: 5px;
}



/* CONTENT: FORM */
table.content-form {
	border-spacing: .5em .3em;
	width: 100%;
}
input[type=text].content-form,
input[type=password].content-form,
textarea.content-form {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 1em;
	padding: .25em;
	background: #f7f7f7;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
textarea.content-form {
	resize: none;
}
input[type=submit].content-form {
	padding: .5em 1.5em;
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 1em;
	font-weight: normal;
	line-height: 1em;
	color: #fff;
	background: -webkit-linear-gradient(top, YellowGreen 0%, #256768 100%);
	background: -moz-linear-gradient(top, YellowGreen 0%, #256768 100%);
	background: -ms-linear-gradient(top, YellowGreen 0%, #256768 100%);
	background: -o-linear-gradient(top, YellowGreen 0%, #256768 100%);
	background: linear-gradient(top, YellowGreen 0%, #256768 100%);
	border: none;
	border-radius: .2em;
}
input[type=text].content-form.fullwidth,
input[type=password].content-form.fullwidth {
	width: 100%;
}
textarea.content-form.fullwidth {
	width: 100%;
}
input[type=text].content-form.inputwarning,
input[type=password].content-form.inputwarning,
textarea.content-form.inputwarning {
	background: #fcc;
}



/* CONTENT SYNTAX */
.content-error {
	color: #fff;
	background: #f00;
	padding: .25em;
	font-family: "Playfair Condensed", Times, serif;
	xfont-style: italic;
}
.content-error > span {
	font-weight: bold;
}



/* CONTENT: DOCUMENT */
.document-container {
	display: block;
	width: 140px;
	margin: 0 5px 10px 0;
}
.document-image {
	display: block;
	width: 140px;
	background: #ddd;
}
.document-nonimage-container {
	position: relative;
	display: block;
	width: 140px;
	height: 140px;
	background: #ddd;
	overflow: hidden;
}
.document-nonimage-container span {
	position: absolute;
	top: 50%;
	left: 50%;
	font-family: "Playfair Display", Times, serif;
	font-size: 5em;
	font-style: bold;
	color: #c0c0c0;
	letter-spacing: -.1em;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.document-description {
	display: block;
	width: 140px;
	background: #eee;
	font-size: .8em;
	line-height: 1.2em;  
	padding: 5px;
}
.document-downloadlink-container {
	position: relative;
	display: block;
	text-align: center;
	width: 140px;
	height: 40px;
	background: #eee;
}
.document-downloadlink-image {
	display: inline-block; 
	width: 36px;
	height: 36px;
	margin-top: 2px;
	left: 50%;
	border-radius: 50%;
	background: #ccc url(../images/download.png) center center no-repeat;
}





/* PAGING */
.content-paging-container {
	display: block;
	margin-bottom: .5em;
}
.content-paging {
	padding: .4em .8em;
	width: 2em;
	line-height: 1em;
	font-size: .9em;
	color: #444;
	background: #eee;
	border: none;
	border-radius: 50%;
	margin-right: 2px;
	cursor: pointer;
	outline: none;
}
.content-paging.active{
	color: #fff;
	background: #008081;
}



/* FOOTER */
.footer-top-outer {
	color: #aaa;
	background: #256768;
	background: #222;
	background: #008081;
	padding: 1.25em;
}
a.footer-top-icon {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 30px;
	top: 2px;
	text-decoration: none;
}
a.icon-facebook {
	background: url(../images/icon_facebook.svg) no-repeat;
}
a.icon-twitter {
	background: url(../images/icon_twitter.svg) no-repeat; 
}
a.icon-youtube {
	background: url(../images/icon_youtube.svg) no-repeat; 
}
a.icon-instagram {
	background: url(../images/icon_instagram.svg) no-repeat; 
}
a.icon-path {
	background: url(../images/icon_path.svg) no-repeat; 
}
a.icon-linkedin {
	background: url(../images/icon_linkedin.svg) no-repeat; 
}
a.icon-googleplus {
	background: url(../images/icon_googleplus.svg) no-repeat; 
}
a.icon-weibo {
	background: url(../images/icon_weibo.svg) no-repeat; 
}
ul.footer-menu-top {
	list-style-type: none;
}
ul.footer-menu-top > li {
	display: block;
	float: left;
}
ul.footer-menu-top > li > a.footer-menu-top-link {
	color: #ddd;
	font-size: .9em;
	text-decoration: none;
}
ul.footer-menu-top > li > a.footer-menu-top-link:hover {
	color: #fff;
}
ul.footer-menu-top > li:not(:last-of-type) {
	margin-right: .75em;
	padding-right: .75em;
	border-right: 1px solid #999;
}
.footer-bottom-outer {
	font-size: .8em;
	color: Silver;
	background: Black;
	padding: 2em;
}



/* FOOTER ICON */
.footer-icon-container {
	position: relative;
	display: block;
	text-align: center;
	border: 1px solid #444;
	padding: 20px;
}
a.footer-icon-link {
	text-decoration: none;
	display: inline-block;
}
a.footer-icon-link > img.footer-icon-grayscale {
	display: block;
}
a.footer-icon-link > img.footer-icon-normal {
	display: none;
}
a.footer-icon-link:hover > img.footer-icon-grayscale {
	display: none;
}
a.footer-icon-link:hover > img.footer-icon-normal {
	display: block;
}
.footer-icon-label {
	position: absolute;
	left: 20px;
	top: -25px;
	background: #000;
}
.footer-icon-icon {
	display: inline-block;
	margin: 2px 7px;
}
.footer-icon-last-row {
	border-left: 1px solid #444;
}
.footer-icon-last {
	margin: 5px 5px;
	padding-left: 5px;
	
}




/* MESSAGING */
.informationmessage {
	display: block;
	padding: 1em;
	color: #fff;
	background: #008081;
}
.warningmessage {
	display: block;
	padding: 1em;
	color: #fff;
	background: Red;
}



/* COMMON */
.mask {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.8);
	xbackground: rgba(255,255,255,0.8);
	z-index: 10;
}
table {
	border-spacing: 0;
}
table.page-columns > tbody > tr > td:nth-child(1) {
	width: 60%;
	vertical-align: top;
}
table.page-columns > tbody > tr > td:nth-child(2) {
	width: 5%;
}
table.page-columns > tbody > tr > td:nth-child(3) {
	width: 35%;
	vertical-align: top;
}
table.page-columns > tbody > tr > td.alignmiddle {
	vertical-align: middle;
}
button.page-button-close {
	position: absolute;
	right: 0;
	top: 0;
	padding: .75em;
	font-size: 1em;
	line-height: 1em;
	color: #fff;
	background: red;
	border: none;
	text-align: center;
	outline: none;
	z-index: 21;
}
iframe {
	border: none;
}
.page-whitetext {
	color: #aaa;
}
.page-center {
	display: block;
}
.page-widthlimiter {
	display: block;
	margin: 0 auto;
	xmin-width: 900px;
	width: 1000px;
}
.page-fullwidth {
	width: 100%;
}
.alignleft {
	text-align: left;
}
.aligncenter {
	text-align: center;
}
.alignright {
	text-align: right;
}
.aligntop {
	vertical-align: top;
}
.alignmiddle {
	vertical-align: middle;
}
.alignbottom {
	vertical-align: bottom;
}
.perfectcenter {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.clearfix:after {
	clear: both;
	content: "";
	display: table;
}
div.eased {
	-webkit-transition: height .25s ease-out;
	-moz-transition: height .25s ease-out;
	-ms-transition: height .25s ease-out;
	-o-transition: height .25s ease-out;
	transition: height .25s ease-out;
}



/* LOADING ANIMATION */
.loading {
	display: inline-block;
	color: #008081;
	font-size: 1em;
	border: none;
	margin: 0 .5em;
}
.loadingbar {
	margin-right: 3px;
}
.loading > span {
	border: none;
	-webkit-animation: blinking .6s ease-out infinite;
	-moz-animation: blinking .6s ease-out infinite;
	-ms-animation: blinking .6s ease-out infinite;
	-o-animation: blinking .6s ease-out infinite;
	animation: blinking .6s ease-out infinite;
}
.loading > span.delay2 {
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -ms-animation-delay: .1s;
  -o-animation-delay: .1s;
  animation-delay: .1s;
}
.loading > span.delay3 {
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -ms-animation-delay: .2s;
  -o-animation-delay: .2s;
  animation-delay: .2s;
}
@-webkit-keyframes blinking { 0% { opacity: 0; } 100% { opacity: 1; } }
@-moz-keyframes blinking { 0% { opacity: 0; } 100% { opacity: 1; } }
@-ms-keyframes blinking { 0% { opacity: 0; } 100% { opacity: 1; } }
@-o-keyframes blinking { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes blinking { 0% { opacity: 0; } 100% { opacity: 1; } }




/* FACEBOOK SOCIAL PLUGIN */
.fb-comments, .fb-comments iframe[style], .fb-comments span {
   width: 100% !important;
}
