@charset "UTF-8";
/* CSS Document */

/*---------------------------------
Resets & Basics (Inspired by E. Meyers)
-----------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline; 
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }

body { line-height: 1; }

ol, ul { list-style: none; }

blockquote, q { quotes: none; }

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

table {
	border-collapse: collapse;
	border-spacing: 0;
}

select { font-size:14px; }

border-collapse { collapse; }

a, a:active, a:hover { outline: 0; }

sup {
	font-size: 80%;
	line-height: 0;
	position: relative;
	top: -0.5em;
}

sub {
	font-size: 85%;
	line-height: 0;
	position: relative;
	bottom: -0.15em;
}

/*---------------------------------
HTML ELEMENTS
-----------------------------------*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


body {
    font-size: 100%;
	line-height: 1.5;
	font-family: 'Merriweather', Times New Roman, serif;
	font-weight: 300;
	color: #b2b2b2;
	/*gradient*/	
	background: #000000; /* Old browsers */
	/* IE9 SVG, needs conditional override of 'filter' to 'none' */
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUxJSIgc3RvcC1jb2xvcj0iIzI2MjYyNiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
	background: -moz-linear-gradient(top,  #000000 0%, #262626 51%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #000000 0%,#262626 51%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #000000 0%,#262626 51%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#262626',GradientType=0 ); /* IE6-8 */
}


/* keeps font size the same between portrait and landscape */
html { -webkit-text-size-adjust: none; }


.centered_col {
	float: none;
	margin: 0 auto;
}

/* required for sticky footer */
html {
	font-size: 1em;
	position: relative;
	min-height: 100%;
	background-color: #262626;
}

.wrapper {
  overflow: hidden;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  clear: both;
}
/* end required for sticky footer */


.logo-grouping {
	float: left;
	cursor: pointer;
}

/*--------------------------------- HEADER -----------------------------------*/ 
h1.logo  {
	/*http://nicolasgallagher.com/another-css-image-replacement-technique/*/
	font: 0/0 a;
    text-shadow: none;
    color: transparent;
	float: left;
}

img.logo {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 0;
}

/*--------------------------------- NAVIGATION -----------------------------------*/ 
.nav-list {
	margin-top: 1.25em;
	float: right;
}

.nav-list > li {
	display: block;
	float: left;
	margin-right: 2em;
	font-family: 'Lato', Tahoma, sans-serif;
	font-size: 1.125em;
	padding-top: 5px;
	border-top: 3px solid transparent;
}

.nav-list > li.facebook-icon {
    font-size: 1.5em;
    padding-top: 0;
}

.nav-list > li:last-child {
	margin-right: 0;
}

.nav-list > li a {
	font-weight: 300;
	text-decoration: none;
	color: #b2b2b2;
}

.nav-list > li:hover,
.nav-list > li.selected {
	border-top: 3px solid #00adef;
}

.nav-list > li:hover,
.nav-list > li a:hover,
.nav-list > li.selected a {
	color: #fafafa;
}

.nav-list > li:last-child:after {
	content: "";
	margin-right: 0;
	margin-left: 0;
}
.nav-menu { display: none; }

/*--------------------------------- DROPDOWN -----------------------------------*/ 
ul.dropdown {
	position: absolute;
	z-index: 9999; 
	background-color: #464646;
	height: 0;
	overflow: hidden;
	opacity: 0;
	filter: alpha (opacity = 0);
	-webkit-transition: opacity 0.4s ease-out;
	-moz-transition: opacity 0.4s ease-out;
	-o-transition: opacity 0.4s ease-out;
	-ms-transition: opacity 0.4s ease-out;
	transition: opacity 0.4s ease-out;
	/*
	-webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:    0px 2px 3px 0px rgba(0, 0, 0, 0.5);
	box-shadow:         0px 2px 3px 0px rgba(0, 0, 0, 0.5);
	*/
}

li:hover ul.dropdown {
	height: auto;
	overflow: auto;
	opacity: 10;
	filter: alpha (opacity = 100);
}

ul.dropdown li {
	float: none;
	display: list-item;
	margin-right: 0;
}

ul.dropdown li a {
	display: block;
	white-space: nowrap;
	padding: .5em 1em;
}

ul.dropdown li a:hover {
	background-color: #00adef;
	color: #fafafa;
}

/*--------------------------------- END NAVIGATION -----------------------------------*/ 

/*--------------------------------- MAIN CONTENT -----------------------------------*/ 
.main h1, .main h2, .main h3 {
	font-family: 'Lato', Tahoma, sans-serif;
	font-weight: 300;
}

.main h1 {
	font-size: 2.25em;
	line-height: normal;
}

.main h2 {
	font-size: 1.5em;
	margin-top: 0.4em;
	margin-bottom: 1em;
}

.blue { color: #00adef; }

.main p {
	margin: 0 0 1em 0;
	line-height: 1.7;
}

.main p a {
	color: #b2b2b2;
	text-decoration: none;
	border-bottom: 1px dotted #b2b2b2;
}

.main p a:hover { 
	color: #5fc7ef;
	border-bottom: none; 
}

.main p.first { margin-top: 1em; }

.main ul {
	margin-left: 1em;
}

.main li {
	list-style-type: disc;
	margin-bottom: 1em;
}

.specialized .main li {
	margin-bottom: 0.5em;
}

.credit {
	font-style: italic;
}

/*--------------------------------- UTILITY -----------------------------------*/ 
.centered { text-align: center; }
.fltLeft { float: left; }
.fltRight { float: right; }

/*--------------------------------- GALLERY -----------------------------------*/ 
.gallery {
	margin: 1em 0;
	font-family: 'Lato', Tahoma, sans-serif;
	font-weight: 300;
	color: #fafafa;
}

.gallery b {
	font-weight: 400;
}

/*--------------------------------- FOOTER -----------------------------------*/ 
footer {
	margin: 2em 0 0 0;
}

footer p {
	padding: 0 .25em;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	color: #b2b2b2;
	text-align: center;
}

footer p a[href^=tel] {
	color: #b2b2b2;
	text-decoration: none;
	border-bottom: none;
	cursor: pointer;
}



/*--------------------------------- END FOOTER -----------------------------------*/ 


/* IE10+ viewport fix */
@-ms-viewport { width: device-width; }
@viewport { width: device-width; }


@media all and (min-width: 1024px) and (max-width: 1280px) {
}


@media all and (max-width: 1120px) {
	
	.logo-grouping {
		margin-left: 0.25em;
	}
	
	img.logo {
		max-width: 200px;
		margin-right: 0.5em
	}
	
	.entertainment .main h1.hyphens { 
	  -moz-hyphens: auto;
	  -webkit-hyphens: auto;
	  -ms-hyphens: auto;
	  hyphens: auto;
	}
	
	.nav-menu {	/* show for tablet, etc */
		display: block;
		padding: 10px 0;
		cursor: pointer;
		color: #b2b2b2;
		height: 2.8em;
		float: right;
	 }
	 
	 a.nav-menu:hover {
		 color: #fafafa;
	 }
	 
	 
	 a.nav-menu:hover .menu-symbol,
	 a.nav-menu:hover .menu-symbol:before,
	 a.nav-menu:hover .menu-symbol:after {
		 background: none repeat scroll 0% 0% #fafafa;
	 }
	 
	 .menu-text { 
		font-family: 'Lato', Tahoma, sans-serif;
		padding: 0 .25em 0 0;
	 }
	 
/* 3-bar menu icon */	 
	 .menu-symbol { 
	 	float: right;
		display: inline-block;
		background-color: #b2b2b2;
		height: 2px;
		width: 16px;
		position: relative;
		margin: 1em 0.25em 0 0.25em; 
	}
	
	.menu-symbol:before {
		content: "";
		position: absolute;
		background: none repeat scroll 0% 0% #b2b2b2;
		height: 2px;
		width: 16px;
		top: -4px;
	}
	
	.menu-symbol:after {
		content: "";
		position: absolute;
		background: none repeat scroll 0% 0% #b2b2b2;
		height: 2px;
		width: 16px;
		top: -8px;	
	}
/* END 3-bar menu icon */	 

	 .nav-list {
		 float: none;
		 overflow: hidden;
		 height: 0;
		 position: absolute;
		 top: 1.5em;
		 right: 0;
		 background-color: #464646;
		 z-index: 1000;
	 }
	 
	 .nav-open {
		 height: auto;
	 }
	 
	 .nav-list > li {
		 width: 100%;
		 float: none;
		 line-height: 2.5em;
		 font-size: 1em;
		 border-top: none;
	 }
	 
	 .nav-list  > li:hover, .nav-list > li.selected, .nav-list > li.selected a {
		 border-top: none;
		 background-color: transparent;
	 }
	 
	 .nav-list > li:hover {
		 background-color: #00adef;
	 }
	 
	 .nav-list > li a {
		 text-align: left;
		 padding: 0 0.5em;
	 }
	 
	ul.dropdown {
		position: relative;
		display: block;
		height: auto;
		opacity: 1;
		overflow: visible;
	}
	
	ul.dropdown li {
		float: none;
		display: block;
	}
	
	ul.dropdown li a {
		display: block;
		white-space: normal;
		padding: 0.5em 0 0.5em 2em;
		line-height: normal;
	}
	
	ul.dropdown li:last-child {
		margin-bottom: 0;
	}
	
	ul.dropdown li:hover {
		background-color: #00adef;
	}
	
	ul.dropdown li a:hover {
		color: #fafafa;
	}
}

@media all and (max-width: 767px) {
	.main { padding: 0 0.25em; }
	.main p.first { margin-top: 0; }
}

@media all and (max-width: 480px) {
	img.logo {
		max-width: 125px;
	}
	
	footer p a[href^=tel] {
		color: #b2b2b2;
		text-decoration: none;
		border-bottom: 1px dotted #b2b2b2;
		cursor: pointer;
	}
	
	footer p a[href^=tel]:hover {
		border-bottom: none;
	}
}

@media print {
	@page { margin: 1cm; }
	
	@page :left, @page :right {
		margin: 0.5cm;
	}
	
	
	html { min-height: auto; height: auto; }
	
	wrapper { overflow: visible; }
	
	body {
		color: #000;
		font-size: 11px;
		background-color: #fff;
	}
	
	header { border-top: none; }
	
	img.logo { padding-bottom: 10px; }
	
	footer { position: relative !important; }
}
