/**
 * @brief Main css file for cloud 3Doids
 *
 * Main css file for cloud version of
 * 3Doids. Main page on distribution server.
 *
 * @category	Development
 * @version		1.0.0 04/05/2016
 * @since			00/00/0000
 * @author		Dominik Knapo <dominik.knapo@opifer.ventures>
 * @copyright	3D V360 LIMITED &copy; 2016
 * @filename	main.css
 */


/* Reset elements */
html, body {
	height: 100%;
	font-family: Verdana,Arial,Helvetica,sans-serif;
	font-size: 10pt;
	color: #000000; 
}

body {
	margin: 0;
	overflow: hidden;
	background: #fff;
}

#container {
	width: 100%;
	height: 100%;
}

#dialogoverlay {
	display: none;
	opacity: .8;
	position: fixed; 
	top: 0px;
	left: 0px; 
	background: #FFF;
	width: 100%;
	z-index: 900;
} 

#dialogbox {
	display: none;
	position: fixed;
	background: #1a1a1a;
	border-radius:7px;
	width:400px;
	z-index: 1000;
}

#dialogbox > div {
	background:#FFF;
	margin:8px;
}

#dialogbox > div > #dialogboxhead {
	background: #1a7fcb;
	font-size:19px;
	padding:10px;
	color:#fff;
}

#dialogbox > div > #dialogboxbody {
	background:#333;
	padding:20px;
	color:#FFF;
}