@media all and (min-width: 960px)
{

	#overlay_host {
		max-width: 1920px;
		margin-left: auto;
		margin-right: auto;
	}

	#hotel_icon
	{
		background-image: url('../images/hotel_icon_standalone.png');
		background-position: 50% 50%;
		background-size: contain;
		background-repeat: no-repeat;
		height: 60px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		display: block;
		position: absolute;
		bottom: 30px;
		right: 0;
		left: 0;
		cursor: pointer;
		display: none;
	}

	.animated { 
	    -webkit-animation-duration: 1s; 
	    animation-duration: 1s; 
	    -webkit-animation-fill-mode: both; 
	    animation-fill-mode: both; 
	} 

	@-webkit-keyframes fadeInUp { 
	    0% { 
	        opacity: 0; 
	        -webkit-transform: translateY(20px); 
	    } 
	    100% { 
	        opacity: 1; 
	        -webkit-transform: translateY(0); 
	    } 
	} 

	@keyframes fadeInUp { 
	    0% { 
	        opacity: 0; 
	        transform: translateY(20px); 
	    } 
	    100% { 
	        opacity: 1; 
	        transform: translateY(0); 
	    } 
	} 

	.fadeInUp { 
	    -webkit-animation-name: fadeInUp; 
	    animation-name: fadeInUp; 
	    display: block !important;
	}

	@-webkit-keyframes fadeOutDown { 
	    0% { 
	        opacity: 1; 
	        -webkit-transform: translateY(0); 
	    } 
	    100% { 
	        opacity: 0; 
	        -webkit-transform: translateY(20px); 
	    } 
	} 
	@keyframes fadeOutDown { 
	    0% { 
	        opacity: 1; 
	        transform: translateY(0); 
	    } 
	    100% { 
	        opacity: 0; 
	        transform: translateY(20px); 
	    } 
	} 
	.fadeOutDown { 
	    -webkit-animation-name: fadeOutDown; 
	    animation-name: fadeOutDown;
	    display: block !important;
	}

	.event_image img
	{
		width: 100%;
	}

	.event_title
	{
		font-family: "Oswald";
		font-weight: lighter;
		text-transform: uppercase;
		font-size: 30px;
		border-bottom: 1px solid #BBB;
		margin-bottom: 10px;
		width: 90%;
	}

	.event_item
	{
		position: relative;
		margin-bottom: 15px;
		background-color: #FFF;
		border-radius: 5px;
		padding: 2.5%;
		padding-top: 10px;
		width: 80%;
	}

	

	#events_timeline_host
	{
		width: 90%;
		height: auto;
		position: relative;
		overflow: hidden;
		padding-top: 50px;
		padding-bottom: 35px;

		font-size: 1em;	
		line-height: 1.5em;
		font-family: "Droid Serif", sans-serif;
	}

	#events_host
	{
		list-style: none;
		position: relative;
		left: 175px;
	}

	#events_timebar
	{
		position: absolute;
		left: 155px;
		top: -25px;
		height: 120%;
		width: 5px;
		background-color: #AAA;
	}

	.event_image
	{
		float: left;
	}

	.event_ball
	{
		width: 15px;
		height: 15px;
		position: absolute;
		left: -31px;
		top: 37.5px;
		background-color: #FFF;
		border: 5px solid #3b5998;
		border-radius: 25px;
	}

	.event_date
	{
		position: absolute;
		left: -140px;
		top: 25px;
		text-align: right;
		width: 100px;
	}

	#nav_host
	{
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
	}
	.nav_progress
	{
		width: 20%;
		height: 5px;
		z-index: -1;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		border: none;
		background-color: transparent;
		color: #3b5998;
		float: left;
		position: relative;

	}

	.nav_progress::-webkit-progress-bar {
	  background-color: transparent;
	}

	.nav_progress::-webkit-progress-value {
	  background-color: #3b5998;
	}

	.nav_progress::-moz-progress-bar {
	  background-color: #3b5998;
	}

	

	#scroll_hint
	{
		position: fixed;
		opacity: 1;
		bottom: 5px;
		margin-left: auto;
		margin-right: auto;
		width: 100%;
		height: 50px;
		background-image: url('../images/down.png');
		background-size: 300px auto;
		background-position: center;
		background-repeat: no-repeat;
		-webkit-transition: opacity 0.5s ease;
		-moz-transition: opacity 0.5s ease;
		transition: opacity 0.5s ease;  

	}

	.hint_fade
	{
		opacity: 0 !important;
	}
	
	#nav_panel
	{
		width: 100%;
		height: 100%;
		position: relative;
		background-color: #000;
		z-index: 100;
		text-align: center;
		background-color: #222;
		-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
		-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
		box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
	}

	#nav_panel_wrapper {
		display: flex;
		align-items: center;
		justify-items: center;
		height: 100%;
	}
	
	.nav_button
	{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 20%;
		height: 100%;
		padding-top: 5px;
		padding-bottom: 5px;
		cursor: pointer;
		font-family: "Montserrat", sans-serif;
		text-transform: uppercase;
		font-size: 1.25em;
		font-weight: 600;
		z-index: 999 !important;
		-o-transition: all 0.5s ease;
		-ms-transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		-webkit-transition: all 0.5s ease;
		transition: all 0.5s ease;
	}

	.nav_button span {
		height: 1.25em;
		display: flex;
		text-align: center;
	}


	.background_image
	{
		width: 100%;
		height: 500px;
		z-index: 1;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: 50% -0.1625px;
		overflow: hidden;
		position: static;
  		background-attachment: fixed;
	}

	.page_1 {
		
		height: 1000px;
		background-attachment: scroll;

	}

	.fluid_row
	{
		width: 100%;
		height: auto;
		
	}

	.fluid_row:nth-of-type(2n)
	{
		background-color: #FFFFFF;
	}

	.fluid_row:nth-of-type(1)
	{
		padding-top: 15px;
	}
	
	.fluid_full
	{
		width: 95%;
		float: left;
		height: auto;
		min-width: calc(480px - 10%);
		margin: 2.5%;
	}

	.fluid_full img {
		width: 100%;
	}

	.fluid_elem
	{
		width: 45%;
		float: left;
		height: auto;
		min-width: calc(480px - 10%);
		margin: 2.5%;
	}
	
	.fluid_text
	{
		font-size: 1em;	
		line-height: 1.5em;
	}

	#big_logo
	{
		width: 200px;
		height: 200px;
		background-image: url('../images/hotel-logo-diamond.png');
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		position: relative;
		transition: all 0.1s;
	}

	#content_head
	{
		width: 100%;
		max-width: 1920px;
		color: #FFF;	
		position: fixed;
		z-index: 1000;
		-o-transition: all 0.5s ease;
		-ms-transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		-webkit-transition: all 0.5s ease;
		transition: all 0.5s ease;
		float: left;
		background-color: #FFF;
		height: 75px;
	}

	#mobile_content_head
	{
		display: none;
	}

	#mobile_menu
	{
		display: none;
	}

	.title_wrap {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.content_item_title
	{
		
		opacity: 1;
		color: #FFF;
		font-family: "Montserrat", serif;
		font-weight: 600;
		font-size: 5em;
		text-transform: uppercase;



	   
	}

	.content_item_title span
	{
		

	}

	#mobile_banner
	{
		display: none;
	}

	.n_hotel_table table
	{
		font-family: "Didact Gothic", sans-serif;
		text-align: left;
		border-top: 1px solid #000;
		border-right: 1px solid #000;
	}

	.n_hotel_table tr td, tr th
	{
		padding: 10px;
		border-left: 1px solid #000;
		border-bottom: 1px solid #000;
	}

	#events_table
	{
		border-bottom: 5px solid #BBB;
		padding: 2.5%;
		font-family: "Droid Serif", sans-serif;
	}

	#events_table table
	{
		width: 100%;
		margin: 0;
		padding: 0;
		border-top: 1px solid #000;
		border-right: 1px solid #000;
	}

	#events_table tr td, tr th
	{
		border-bottom: 1px solid #000;
		border-left: 1px solid #000;
		padding: 10px;
		text-align: left;
	}

	#events_table tr th
	{
		background-color: #3B5998;
		color: #FFF;
	}

	#events_table tr td
	{
		background-color: #EEE;
	}

	.table_head
	{
		display: none;
	}

	.file_box
	{
		width: 95%;
		height: auto;
		
		margin: 2.5%;
		margin-top: 25px;
		margin-bottom: 25px;
		padding-bottom: 15px;
		font-family: "Montserrat", sans-serif;
	}

	.file_box h2
	{
		font-family: "Montserrat", sans-serif;
		font-weight: 500;
		font-size: 2em;
		text-transform: uppercase;
		margin-bottom: 10px;
		width: calc(100% - 30px);

	}

}