

/**
 * common.css -> http://locusonus.org/soundmap/
 * version 01
 */


@import url(https://fonts.googleapis.com/css?family=Roboto:300,600,800);


body
{
	color: #303030;
	background-color: white;
	font-family: "Roboto",Arial,sans-serif !important;
	font-size: 11px;
}

small
{
	font-size: 90%;
}

a
{
	color: #8e8e8e;
}

a:hover
{
	opacity: 0.5;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50);
}

hr,
.hide,
.hidden
{
	display: none;
}


.close
{
	cursor: pointer;
	position: fixed;
	right: 4px;
	top: 4px;
	opacity: 0.3;
}

.close:hover
{
	opacity: 1.0;
}

.debug
{
	float: none;
	color: fuchsia;
	font-family: monospace;
	padding: 10px;
}

.overlay
{
	
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	height: 100%;
	background-color: white;
	
}

img.icon
{
	border: 1px solid transparent;
    border-radius: 24px;
    box-shadow: 0 0 1px #e6e6e6 inset, 0 0 1px #e6e6e6 inset;
}



/** -- popup iframe ----------------------------------------------------------------------------- */

#popup
{
	position: fixed;
	z-index: 1002;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

#popup .overlay
{
	background-color: black;
	opacity: 0.7;
	width: 100%;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);
}

#popup iframe
{
	position: absolute;
	height: 70%;
	left: 15%;
	top: 15%;
	width: 855px;
	border: none;
	border-radius: 3px;
}


