/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
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;
}

em
{
	font-style: italic;
}


/*** airtime css ***/
html
{
	background: #ccc; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

body
{
	font-family: "Century Gothic", sans-serif;
	font-size: 18px;
	line-height: 1.2em;
	color: #545957;
}

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #fff;
}

::-webkit-scrollbar
{
	width: 6px;
	background-color: #fff;
}

::-webkit-scrollbar-thumb
{
	background-color: #444444;
}

a
{
	color: #545957;
	font-weight: bold;
	text-decoration: none;
	padding: 0 2px;
}

a:hover
{
	background: black;
	color: white;
}

a.image-link
{
	padding: 0;
}

a.image-link:hover
{
	background: none;
}

p
{
	margin-bottom: 1em;
}

#menu
{
	position: relative;
	opacity: .9;
	background: white;
	padding: 10px;
	text-transform: lowercase;
	overflow: auto;
}

#menu ul
{
	width: 200px;
	float: left;
	padding-left: 5px;
	margin-left: 5px;
}

#menu ul#internal
{
	border-left: 1px solid #ccc;
}

/* #menu ul:not(#internal) li a
{
	color: #777;
}

#menu ul:not(#internal) li a:hover
{
	color: #fff;
} */

#menu ul.social
{
	display: block;
	width: auto;
	
	position: absolute;
	top: 20px;
	right: 0;
}

#menu ul.social li
{
	float: left;
	width: 32px;
	margin-right: 20px;
}

#menu ul.social li a
{
	display: block;
	width: 40px;
	height: 40px;
	font-size: 1px;
	color: transparent;
	background: url('../img/social/facebook.svg');
	background-size: contain;
	background-repeat: no-repeat;
	opacity: .7;
}

#menu ul.social li a:hover
{
	opacity: 1;
}

#menu ul.social a.facebook
{
	/*isdefault*/
}

#menu ul.social a.twitter
{
	background-image: url('../img/social/twitter.svg');
}

#menu ul.social a.instagram
{
	background-image: url('../img/social/instagram.svg');
}

#menu ul.social a.soundcloud
{
	background-image: url('../img/social/soundcloud.svg');
}

#menu ul.social a.youtube
{
	background-image: url('../img/social/youtube.svg');
}

.container
{
	background-color: rgba(0, 0, 0, 0.6);
	position: relative;
	display: none; 
}

.container h2
{
	font-size: 3em;
	color: white;
	position: absolute;
	margin-left: 50px;
	margin-top: 45px;
}

.container h3
{
	font-weight: bold;
}

.container img
{
	width: 100%;
	margin-bottom: 10px;
}

.container .close
{
	position: fixed;
	color: #fff;
	top: 90px;
	right: 10px;
}

#releases.container
{
	/*min-width: 1750px;*/
	overflow: scroll;
}

.blockcontainer
{
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}

.block
{
	float: left;
	max-width: 500px;
	background: rgba(255, 255, 255, 0.9);
	margin-left: 50px;
	padding: 10px;
	
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	overflow: auto;
	min-height: 200px;
}

.block h4
{
	margin-top: 10px;
}

ul.mentions
{
	list-style: disc;
}

ul.mentions li 
{ 
	list-style: disc outside none;
	display: list-item;
	margin-left: 1em;
}

#ismobile
{
	display: none;
}

@media screen and (max-device-width: 480px) and (orientation: portrait)
{
	#ismobile
	{
		display: block;
	}

	#menu 
	{	
		width: auto;
		height: 40px;
	}		
		
	#menu #internal
	{
		display: none;
	}
	
	#menu ul.social
	{
		float: none;
		position: relative;
		top: auto;
		right: auto;
		left: auto;
		width: 265px;
		margin: 0 auto;
	}

	.block
	{
		top: auto;
		transform: none;
		margin-left: 0;
	}
	
	.container
	{
	  display: block;
	  overflow: auto;
	  width: auto;
	}

	.container h2
	{
		position: relative;
		top: auto;
		left: auto;
		margin-bottom: 20px;
		margin-left: 0;
	}

	.container .close,
	.background-photo
	{
		display: none;
	}
	
	#releases.container
	{
		min-width: auto;
	}
} 