html{
	text-align: center;
	font-family: 'Work Sans', Arial, Helvetica, sans-serif;
	font-size: 15px;
}
body{
	margin: 0;
}
div{
	width: 100%;
}
/*MENU*/
ul#menu {
    list-style-type: none;
    margin: auto;
    padding: 0;
    overflow: hidden;
    width: 75%;
}
#menu li {
    float: left;
}
#menu li.right{
    float: right;
}
#menu li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
#menu li a:hover {
    color: gray;
}
/*Drop down menu
li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
li.dropdown {
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    opacity: 0.8;
    z-index: 1;
}
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.dropdown-content a:hover {background-color: #f1f1f1}
.dropdown:hover .dropdown-content {
    display: block;
}
*/
/*MENU*/
ul#sub-menu {
    list-style-type: none;
    margin: auto;
    padding: 0;
    overflow: hidden;
    width: 75%;
    background-color: #FFF;
    padding-bottom: 5px;
}
#sub-menu li {
    float: left;
    text-align: left;
    max-width: 60%;
    margin-left: 10px;
    border-bottom: 1px;
}
#sub-menu li.right{
    float: right;
}
#sub-menu li a {
    display: block;
    color: #333;
    padding: 14px 16px;
    padding-left: 0;
    text-decoration: none;
    font-weight: bold;
}
#sub-menu li .descr{
	font-size: 13px;
	color: gray;
	max-width: 50%;
}
#sub-menu li a:hover {
    color: gray;
}
/*END*/

#main{
	width: 100%;
	background-color: #F0F0F0;
	padding-top: 10px;
	padding-bottom: 10px;
}
/*Loader*/
#loader {
    position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	margin: -75px 0 0 -75px;
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #3498db;
	width: 60px;
	height: 60px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/*END*/
iframe{
	width: 70%;
	height: 500px;
	border: 0;
}
#footer{
	width: 100%;
	background-color: #FFF;
}

/*Control*/
#control{
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 70%;
}
#control img{
    margin-left: 10px;
    cursor: pointer;
}
#control img:hover{
    margin-bottom: 1px;
}
#control img:active{
    margin-bottom: 0px;
}
/*END*/

/***Special Effect***/
/*Full screen*/
/*END*/