@charset "utf-8";
html
{
    width: 100%;

    font-family: "Roboto", sans-serif;
}

body
{
    width: 100%;
    margin: 0;

    background-color: #EEEEEE;
    color: #383840;
}

#banner
{
    width: 100%;
    height: 56px;
    position: fixed;
    z-index: 100;

    line-height: 56px;
    font-size: 32px;

    display: inline-block;
    background-color: #EEEEEE;
    color: #383840;
}

#banner .bannerTitle
{
    padding-left: 16px;
    height: 100%;
}

#banner .floatRight
{
    height: 100%;
    float: right;

    font-size: 19px;
    line-height: normal;
	margin-top: 4px;
}

#banner .floatRight div
{
    display: inline-block;
    text-align: right;
}

#banner .floatRight img
{
    float: right;
    max-height: 48px;
}



#navBar
{
    width: 100%;
    height: 48px;
    position: fixed;
    z-index: 100;
    top: 56px;
    line-height: 48px;

    background-color: #383840;
    color: #EEEEEE;
}

#navBar a
{
    display: inline-block;
    height: 48px;
    z-index: 150;
    padding-left: 8px;
    padding-right: 8px;

    text-decoration: none;
    color: #EEEEEE;
}

#navBar a:hover
{
    background-color: #282830;
    cursor: pointer;
}


.contentContainer
{
    position: relative;
    width: 100%;
    top: 104px;
}

.inlineParallax
{
    width: 100%;
    height: 480px;

    background-attachment: fixed;
    background-position: 0 -160px;
    background-repeat: no-repeat;
    background-size: cover;

}

.content
{
    min-height: 320px;
    padding-left: 32px;
}

.content h2
{
    margin: 0;
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 32px;
}
.content p
{
    font-size: 16px;
}

.exlink
{
    display: inline-block;
    width: 200px;
    height: 80px;
    vertical-align: center;
    line-height: 80px;
    border-radius: 8px;

    text-decoration: none;
    color: #EEEEEE;
}

.exlink img
{
    padding-left: 8px;
    height: 60px;
    vertical-align: middle;
}
.exlink span
{
    padding-left: 8px;
    height: 80px;
    font-weight: bold;
    font-size: 24px;
}

.exlink:hover
{
    cursor: pointer;
}

a
{
    text-decoration: none;
    color: #383840;
}

.downloadLink
{
    margin-left: 8px;
    text-decoration: underline;
}

.contentImage
{
    text-align: center;
    max-width: 80%;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.contentImage img
{
    display: inline-block;
    max-width: 80%;
}

.red
{
    color: #e02020;
}
.green
{
	font-weight: bold;
    color: #20e020;
}

.serverOffline
{
    line-height: 56px;
    font-size: 32px;
    color: #e02020;
}

.model-box {
  position:   absolute;
  background-color: black;
  top: 104px;
  left:     0;
  bottom:   0;
  right:    0;
}

.model-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

@media (min-width: 2000px){
    #banner
    {
        height: 64px;
        line-height: 64px;
        font-size: 32px;
    }
    #banner .floatRight
    {
        font-size: 24px;
    }
    #banner .floatRight img
    {
        max-height: 60px;
        height: 60px;
    }
    #navBar
    {
        height: 50px;
        top: 64px;
        font-size: 25px;
        line-height: 50px;
    }
    .contentContainer
    {
        top: 114px;
    }
    .inlineParallax
    {
        height: 800px;
        background-position: 0 -300px;
    }
    .content
    {
        min-height: 400px;
    }
    .content h2
    {
        font-size: 40px;
    }
    .content p
    {
        font-size: 20px;
    }
	.model-box {
		top: 114px;
	}
}
@media (min-width: 2561px){
    #banner
    {
        height: 112px;
        line-height: 112px;
        font-size: 64px;
    }
    #banner .floatRight
    {
        font-size: 48px;
    }
    #banner .floatRight img
    {
        max-height: 96px;
        height: 96px;
    }
    #navBar
    {
        height: 96px;
        top: 112px;
        font-size: 48px;
        line-height: 96px;
    }
    .contentContainer
    {
        top: 208px;
    }
    .inlineParallax
    {
        height: 800px;
        background-position: 0 -300px;
    }
    .content
    {
        min-height: 640px;
    }
    .content h2
    {
        font-size: 64px;
    }
    .content p
    {
        font-size: 32px;
    }
	.model-box {
		top: 208px;
	}

}

.mobileOnly
{
    display: none;
}

@media (orientation: portrait)
{
    .inlineParallax
    {
        background: none;
        height: auto;
    }

    .mobileOnly
    {
        display: block;
        max-width: 100%;
        height: auto;
    }
}