html {
  height: 100%;
}
body {
	background-image: url('SkyTreeBackground.JPG');
	background-size: cover;
	color: #555;
	font-family: Times New Roman;
	font-size:16px;
	margin:0;
	height: 100%;
    background-repeat: repeat;
    background-attachment: fixed;
}

.container {
	width: 80%;
	margin:auto;
	overflow:hidden;
}

a {
	text-decoration: none;
	color: black;
}

a:Hover {
	color: red;
}

abbr {
	text-decoration: none;
}

#main {
	width: 80%;
	margin:auto;
	overflow:hidden;
	padding-right: 15px;
	padding-left: 15px;
	border: 2px solid #000;
	background: #dadada;
    color: #000;
    border-radius: 10px;
}

#modelmain h2, h3 {
	display: box;
	text-align: left;
	font-family: Comic Sans MS;
	margin: 10px;
}

#modelmain {
	float: left;
}

#viewercontrols {
	margin: auto;
	overflow: hidden;
	color: #000;
	background: #ddd;
	text-align: center;
	width: 60%;
	border-radius: 15px;
	opacity: 0.3;
	transition:opacity 0.25s linear;
	margin-top: 0.1;
	margin-bottom: 10px;
}

#viewercontrols:hover {
	color: #000;
	opacity: 0.7;
}

.separate {
	float: left;
	width: 100%;
	border-top: 1px solid #000;
}

#downloadmodel {
	margin-top: 20px;
	margin-right: 10px;
	padding: 15px;
	float: right;
	background-color: #1e90ff;
	border: none;
	font-weight: bold;
	color: #FFF;
	font-size: 18px;
	border-radius: 2px;
}

#downloadmodel:hover {
	cursor: pointer;
}

#main-header{
	font-family: Impact;
	background-color: #00878c;
	color:#fff;
}

#modelpreview {
	padding: 10px;
}

/* Navbar */

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + #modelpreview {
  padding-top: 60px;
}

.navbar {
	background-color:#333;
	z-index: 2;
}

.navbar a{
	float:left;
	font-family: 'Open Sans'; /*Comic Sans MS */
	padding:0;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	padding-right: 10px;
	
	text-align: center;
    padding: 15px 17px;
    text-decoration: none;
}

.links {
	display: block;
}

.links-responsive {
	float: none;
	display: block;
	margin-top: 3.1em;
}

.links-responsive a {
	position: relative;
	float: none;
	display: block;
	text-align: left;
}

.links-responsive .dropdown {
	float: none;
	display: block;
	text-align: left;
}

.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: red;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: #000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
	font-size: 16px;
}

.links-responsive .dropdown:hover .dropdown-content {
    display: inline;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 18px;    
    border: none;
    outline: none;
    padding: 14px 17px;
    background-color: inherit;
    margin: 0;
	
	font-family: 'Open Sans';
	color: #fff;
	text-decoration: none;
}

#main-footer{
	background:#333;
	color:#fff;
	text-align: center;
	padding: 10px;
	margin-top: 40px;
}

#nav-resp {
	display: none;
	background-color:#333;
	position: absolute;

    text-decoration: none;
    text-align: left;
    font-size: 18px;    
    border: none;
    outline: none;
    padding: 14px 16px;
    background-color: inherit;
    margin: 0px;
	float: left;
	
    font-family: Comic Sans MS;
    color: #fff;
    text-decoration: none;
}

#nav-resp:hover {
	background: red;
	cursor: pointer;
}

@media (max-width: 900px) {
	.links {
		float: none;
		display: block;
		margin-top: 3.1em;
		
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.2s ease-out;
	}

	.links a {
		position: relative;
		float: none;
		display: block;
		text-align: left;
	}

	.links .dropdown {
		float: none;
		display: block;
		text-align: left;
	}
	
	#nav-resp {
		display: block;
	}
}



/* The Modal (background) */
.modal {
	display: none; 
	position: fixed;
	z-index: 1;
	padding-top: 15%;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
}

/* Modal Content */
.modal-content {
	font-family: Sans-serif;
	position: relative;
	background-color: #fefefe;
	margin: auto;
	padding: 0;
	border: 1px solid #777;
	width: 80%;
	height: 19%;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
	-webkit-animation-name: animatetop;
	-webkit-animation-duration: 0.4s;
	animation-name: animatetop;
	animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #565656;
  color: white;
}

.modal-body {
	padding: 2px 16px;
	padding-bottom: 20px;
}

.modal-body a {
	font-family: Sans-serif;
	padding: 10px;
	margin: 5px;
	border: 1px solid black;
	float: left;
	font-weight: bold;
	border-radius: 4px;
}

.modal-body a:hover {
	cursor: pointer;
	background: #aaa;
	color: #FFF;
	font-weight: bold;
}

/* Search css control (dont change) */
.gsc-control-cse
{
	padding:0px !important;
	border-width:0px !important;
}

form.gsc-search-box,table.gsc-search-box
{
	margin-bottom:0px !important;
}

.gsc-search-box .gsc-input
{
	padding:0px 4px 0px 6px !important;
}

#gsc-iw-id1
{
	border-width: 0px !important;
	height: auto !important;
	box-shadow:none !important;
}

#gs_tti50
{
	padding:0px !important;
}

#gsc-i-id1
{
	height:33px !important;
	padding:0px !important;
	background:none !important;
	text-indent:0px !important;
}

.gsib_b
{
	display:none;
}

button.gsc-search-button
{
        display:block;
        width:13px !important;
        height:13px !important;
        border-width:0px !important;
        margin:0px !important;
        padding: 10px 6px 10px 13px !important;
        outline:none;
        cursor:pointer;
        box-shadow:none !important;
        box-sizing: content-box !important;
}

.gsc-branding
{
	display:none !important;
}

.gsc-control-cse,#gsc-iw-id1
{
	background-color:transparent !important;
}




/* Search css custom */
#search-box {
	width: 40%;
	float: right;
	height: 33px;
	margin: 5px auto;
	background-color: #fff;
	padding: 3px;
	border: 2px solid #424242;
	border-radius: 4px;
}

#search-box:hover {
	background-color: #eee;
}

#gsc-i-id1
{
	color:#000;
}

button.gsc-search-button
{
	padding:10px !important;
	background-color: #424242 !important;
	border-radius: 40px !important;
}


@media (max-width:1150px) {
	.modal-content {
		height: 25%;
	}
}

@media (max-width:620px) {
	.modal-content {
		height: 30%;
	}
}

@media (max-width:900px) {
	#search-box {
		width: 70%;
	}
}

@media (max-width:1000px) {
	#dingoes {
		background-position: center center;
	}
}
