/* DEFINITIONS */
.Block{ display: block }
.Inline{ display: inline }
.IBlock{ display: inline }
.Bold{ font-weight: bold !important }
.Red{ color: #F55 !important }
.Underscore{ border: solid 1px; border-style: none none solid none }
.Italic{ font-style: italic }
.SpaceRight{ margin-right: 10px }
.Regular16{ font-size: 16px; text-shadow: 1px 1px 10px #000; }
.white{ color: #FFF }

.LargeTitle{
  font-family: RobotoThin;
  font-size: 48px;
  text-shadow: 1px 1px 10px #000;
}
.SubTitle{
  font-family: RobotoThin;
  font-size: 26px;
  text-shadow: 1px 1px 10px #000;
}
.MediumTitle{
  font-size: 20px;
  text-decoration: bold;
  text-shadow: 1px 1px 10px #000;
}
.SmallTitle{
  font-size: 12px;
  font-style: italic;
  text-shadow: 1px 1px 10px #000;
}
.PanelTitle{
  width: 100%;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;

  background-color: #F11;
  text-shadow: none;
}

.TitleBar{
  width: calc(100% - 200px);
  height: 35px;
  margin: 0px 0px 10px 0px;
  padding: 0px;
  top: 0px;
  left: 200px;

  position: fixed;

  background-color: #111;
  color: #FFF;

  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: none;
}
.SideBar{
  width: 200px;
  height: 100%;
  margin: 0px 0px 0px 0px;
  top: 0px;
  left: 0px;

  position: fixed;

  background-color: #111;
  color: #FFF;

  text-align: center;
  text-shadow: none;
  z-index: 900;
}

.PanelButton{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-shadow: none;
}
.PanelButton:hover{
  background-color: rgba(255,255,255,0.1);
}
.PanelFooter{
  width: 100%;
  padding: 10px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-style: italic;
  position: absolute;
  bottom: 0px;
  color: #FFF;
  text-shadow: none;
}

.Thumb{
  padding: 3px;
  border: solid 1px #888;
  border-radius: 3px;
}
.hr{
  padding: 0px 10%;
  border-width: 1px;
  border-style: solid none none none;
}

.MenuButton{
  top: 0px;
  right: 0px;
  z-index: 1100;
  width: 35px;
  height: 35px;
  position: absolute;
  align-items: center;
  justify-content: center;
  /*background-color: #F11;*/
}

.BodyContainer{
  background-repeat: no-repeat;
  background-position: center center;

  position: absolute;
  top: 35px;
  padding: 10px;
  height: calc(100% - 35px - 20px);
  overflow: auto;
}

.TextBox{
  border: 1px solid #BBB;
  padding: 5px;
  font-size: 16px;
  border-radius: 3px;
  display: inline;
  width: auto;
  font-family: monospace;
  background-color: #FFF;
}

.GIF{
  height: auto;
}

*:focus{
  outline: none;
}

input{
  border: 1px solid #BBB;
  padding: 5px;
  font-size: 16px;
  border-radius: 3px;
}

input[type="submit"],button{
  background: #E9E9E9;
}

/* OVERRIDES */
@font-face{
  font-family: RobotoRegular;
  src: url("/fonts/Roboto/Roboto-Regular.ttf");
}
@font-face{
  font-family: RobotoThin;
  src: url("/fonts/Roboto/Roboto-Thin.ttf");
}
body{
  font-family: RobotoRegular;
  margin: 0px;
}
a{
  text-decoration: none;
  color: #000;
}
