/* Splash Screen */
#splashScreen{
  position: absolute;
  z-index: 999;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: #F3F3F3;
  /* Make Text Unselectable */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

/* Splash Screen - Terms of Use Block */
#termsOfUseBlockDIV{
  position: fixed;
  height: 400px;
  width: 500px;
  margin-top: -200px;
  margin-left: -250px;
  top: 50%;
  left: 50%;
  background-color: white;
  border: 1px solid #25363d;
  /* Make Text Unselectable */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

/* Splash Screen - Terms of Use Block - Mobile - 700px */
@media only screen and (max-width: 700px) {
  #termsOfUseBlockDIV{
    position: fixed;
    height: 400px;
    width: 320px;
    margin-top: -200px;
    margin-left: -160px;
    top: 50%;
    left: 50%;
    background-color: white;
    border: 1px solid #25363d;
	/* Make Text Unselectable */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }
}

/* Splash Screen - Terms of Use Block Header */
#termsOfUseBlockHeaderDIV{
  position: absolute;
  height: 30px;
  top: 0px;
  left: 0px;
  right: 0px;
  background-color: #25363d;
  border: 1px solid #25363d;
  font-weight: bold;
  font-size: 14pt;
  color: white;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  line-height: 30px;
  /* Make Text Unselectable */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

/* Splash Screen - Terms of Use Block Header - Mobile - 700px */
@media only screen and (max-width: 700px) {
  #termsOfUseBlockHeaderDIV{
    position: absolute;
    height: 30px;
    top: 0px;
    left: 0px;
    right: 0px;
    background-color: #25363d;
    border: 1px solid #25363d;
    font-weight: bold;
    font-size: 12pt;
    color: white;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    line-height: 30px;
	/* Make Text Unselectable */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }
}

/* Splash Screen - Image DIV */
#splashScreenImageDIV{
  position: absolute;
  top: 35px;
  left: 125px;
  right: 125px;
  height: 140px;
  /* Make Text Unselectable */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

/* Splash Screen - Image DIV - Mobile - 700px; */
@media only screen and (max-width: 700px) {
  #splashScreenImageDIV{
    position: absolute;
    top: 35px;
    left: 35px;
    right: 35px;
    height: 140px;
	/* Make Text Unselectable */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }
}

/* Splash Screen - Image */
#splashScreenImage{
  position: absolute;
  top: 0px;
  left: 0px;
  height: 140px;
  width: 248px;
  /* Make Text Unselectable */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

/* Splash Screen - Terms of Use Title */
#termsOfUseStatementTitle{
  position: absolute;
  top: 180px;
  left: 5px;
  right: 5px;
  height: 20px;
  font-weight: bold;
  font-size: 12pt;
  display: inline-block;
  line-height: 20px;
  /* Make Text Unselectable */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

/* Splash Screen - Terms of Use Title - Mobile - 700px */
@media only screen and (max-width: 700px) {
  #termsOfUseStatementTitle{
    position: absolute;
    top: 176px;
    left: 5px;
    right: 5px;
    height: 20px;
    font-weight: bold;
    font-size: 10pt;
    display: inline-block;
    line-height: 20px;
	/* Make Text Unselectable */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }
}


/* Splash Screen - Terms of Use Text Block */
#termsOfUseStatementTextBlock{
  position: absolute;
  top: 200px;
  margin-left: 5px;
  margin-right: 5px;
  height: 120px;
  font-size: 11pt;
  text-align: justify;
  line-height: 20px;
  /* Make Text Unselectable */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

/* Splash Screen - Terms of Use Title - Mobile - 700px */
@media only screen and (max-width: 700px) {
  #termsOfUseStatementTextBlock{
    position: absolute;
    top: 197px;
    margin-left: 5px;
    margin-right: 5px;
    height: 128px;
    font-size: 10pt;
    text-align: justify;
    line-height: 16px;
	/* Make Text Unselectable */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }
}

.buttonSplash {
  background-color: #D3D3D3;
  height: 30px;
  width: 130px;
  border: 1px solid #D3D3D3;
  border-radius: 6px;
  color: #25363d;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 10pt;
  font-weight: bold;
  cursor: pointer;
  /* Make Text Unselectable */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

#splashAcceptBtn{
  position: absolute;
  bottom: 20px;
  left: 100px;
  /* Make Text Unselectable */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

@media only screen and (max-width: 700px) {
  #splashAcceptBtn{
    position: absolute;
    bottom: 20px;
    left: 20px;
	/* Make Text Unselectable */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }
}

#splashDeclineBtn{
  position: absolute;
  bottom: 20px;
  right: 100px;
  /* Make Text Unselectable */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

@media only screen and (max-width: 700px) {
  #splashDeclineBtn{
    position: absolute;
    bottom: 20px;
    right: 20px;
	/* Make Text Unselectable */
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
  }
}
