/* These are the default values if they haven't been set by page-specific styles */
/* These styles are common to most pages and may use some of the variables set above */
body, h1, h2, h3, h4, li, p, div, span {
  color: black;
}

body {
  color: black;
  font-family: 'Ubuntu', Arial, sans-serif;
  margin: 0 0 12px 0;
  min-height: 98vh;
  background: #F7830E;
  /* Old browsers */
  background: -moz-linear-gradient(top, #F7830E 1%, #FF0000 67%, #500000 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #F7830E), color-stop(67%, #FF0000), color-stop(100%, #500000));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #F7830E 1%, #FF0000 67%, #500000 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #F7830E 1%, #FF0000 67%, #500000 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #F7830E 1%, #FF0000 67%, #500000 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #F7830E 1%, #FF0000 67%, #500000 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F7830E', endColorstr='#500000',GradientType=0);
  /* IE6-9 */
}

h1 {
  font-size: 54px;
  margin: 20px 0 0;
}

h2 {
  font-size: 24px;
  margin: 8px 0 8px 0;
}

h3 {
  font-size: 24px;
  margin: 0;
  letter-spacing: 12px;
}

h4 {
  margin: 4px 0 4px 0;
}

a:link, a:hover, a:visited {
  color: #CC0000;
}

#DBIndicator {
  position: fixed;
  top: 4px;
  right: 4px;
  z-index: 1000;
  width: 120px;
  padding: 2px;
  outline: 1px solid black;
  box-shadow: 0 12px 32px 0px black;
  text-align: center;
}
#DBIndicator.BriMerProd {
  background-color: red;
  font-weight: bold;
}
#DBIndicator.BriMer {
  background-color: white;
  font-weight: normal;
}

/* Site Header */
#Site_Header a {
  text-decoration: none;
}

#Header_Bar {
  height: 20px;
  text-align: center;
  font-style: italic;
  font-size: 12px;
  background-color: #CC0000;
  border-bottom: 1px solid #F9C70E;
  color: #F9C70E;
}

#Header_Container {
  height: 120px;
  padding-top: 10px;
}

#Logo {
  padding-left: 10px;
  border: none;
}

#Parallax_Window {
  height: 110px;
  width: 95%;
  border-radius: 6px 6px 6px 6px;
  background: #00CCFF;
  overflow: hidden;
  position: relative;
}
#Parallax_Window.family {
  background: #f0e8da;
}

#Content_Container {
  border-radius: 15px 16px 12px 12px;
  border-style: solid;
  border-width: 1px;
  border-top-color: #F9C70E;
  border-bottom-color: black;
  box-shadow: 0 12px 12px 2px black;
  background-color: white;
}
#Content_Container.flat {
  box-shadow: none;
}

#Header_Menu {
  color: white;
  background-color: #CC0000;
  height: 46px;
  font-size: 20px;
  border-radius: 12px 12px 0 0;
}
#Header_Menu div {
  float: left;
  margin: 4px 5px 4px 5px;
  color: white;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid transparent;
  display: block;
  padding: 6px 10px;
}
#Header_Menu div.selected {
  border-color: black;
  background-color: #F7830E;
}
#Header_Menu div:first-child {
  border-radius: 11px 4px 4px 4px;
}
#Header_Menu div:hover {
  border: 1px solid #F9C70E;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5) inset, 0 1px 0 rgba(255, 255, 255, 0.1);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.796), 0 0 8px white;
  border-radius: 4px;
}
#Header_Menu div:first-child:hover {
  border-radius: 11px 4px 4px 4px;
}
#Header_Menu a {
  color: white;
  text-decoration: none;
}

/* Contents */
#Content_Grid {
  background-color: white;
  min-height: 500px;
  padding: 12px 0 12px 0;
}
#Content_Grid.compact {
  min-height: 0;
}

.header_bar {
  text-align: center;
}

.content_box {
  border: 1px solid #F7830E;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 16px;
  position: relative;
  height: 240px;
  background: #FFFFEE;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #FFFFEE 0%, #FFFFA5 14%, #FFFFEE 75%, #FFFFA5 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFEE), color-stop(14%, #FFFFA5), color-stop(75%, #FFFFEE), color-stop(100%, #FFFFA5));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(-45deg, #FFFFEE 0%, #FFFFA5 14%, #FFFFEE 75%, #FFFFA5 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(-45deg, #FFFFEE 0%, #FFFFA5 14%, #FFFFEE 75%, #FFFFA5 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(-45deg, #FFFFEE 0%, #FFFFA5 14%, #FFFFEE 75%, #FFFFA5 100%);
  /* IE10+ */
  background: linear-gradient(135deg, #FFFFEE 0%, #FFFFA5 14%, #FFFFEE 75%, #FFFFA5 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFEE', endColorstr='#FFFFA5',GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
.content_box.height-min {
  height: 180px;
}
.content_box.height-short {
  height: 180px;
}
.content_box.height-auto {
  height: auto;
  overflow: hidden;
}
.content_box ul {
  margin-top: 0;
}
.content_box .in_progress {
  position: absolute;
  top: 10px;
  right: -6px;
  padding: 2px;
  font-weight: bold;
  color: gray;
  background: orange;
  transform: rotate(16deg);
}
.content_box.highlight img {
  border: 2px solid transparent;
}
.content_box.highlight img:hover {
  border: 2px solid black;
}

.List {
  margin-top: 12px;
}
.List > div.collapsible:hover {
  cursor: pointer;
}
.List > div {
  width: 100%;
  min-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-top: 1px solid gray;
  padding: 4px 0 4px 0;
  clear: both;
}
.List > div.selected {
  height: auto;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.ProvidedBy {
  height: 12px;
  width: 30px;
  border-radius: 6px 6px 6px 6px;
  padding: 0 4px;
  color: white;
  font-size: 10px;
  font-weight: normal !important;
  text-align: center;
}
.ProvidedBy.Brian {
  background-color: #071C71;
}
.ProvidedBy.Merri {
  background-color: #2A014F;
}
.ProvidedBy.Isaac {
  background-color: #CC0000;
}
.ProvidedBy.Josie {
  background-color: #D24C6B;
}
.ProvidedBy.overlay {
  position: absolute;
  bottom: 4px;
  right: 4px;
}

[ng\:cloak], [ng-cloak], .ng-cloak {
  display: none !important;
}

[ng-click] {
  cursor: pointer;
}

/* Oddities */
.error {
  font-size: 28px;
  font-weight: bold;
  color: red;
}

.splashtext {
  font-size: 20px;
  margin: 40px 0 0 24px;
  -webkit-transform: rotate(-28deg);
  /* Safari */
  -moz-transform: rotate(-28deg);
  /* Firefox */
  -ms-transform: rotate(-28deg);
  /* IE */
  -o-transform: rotate(-28deg);
  /* Opera */
}

.DebugPanel {
  display: none;
  position: absolute;
  left: 10px;
  background-color: #cccccc;
  border: 1px solid black;
  width: 200px;
  min-height: 200px;
  font-size: 12px;
}

#DebugData1 {
  top: 20px;
  z-index: 300;
}

#DebugData2 {
  top: 240px;
}

#DebugData3 {
  top: 460px;
}

#coming_soon_dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 200px;
  width: 400px;
  margin-top: -100px;
  margin-left: -200px;
  background-color: #1533AD;
  border-radius: 6px 6px 6px 6px;
  z-index: 1001;
  /*display: none;*/
  padding: 16px;
  text-align: center;
}

#coming_soon_dialog_panel {
  position: fixed !important;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  background-color: black;
  z-index: 1000;
  /*display: none;*/
}

.coming_soon {
  color: white;
  font-size: 18px;
  font-style: italic;
  text-shadow: -4px 4px 6px black;
}

.coming_soon_img {
  margin: 14px 4px 0 75px;
  height: 80px;
  width: 60px;
  border-radius: 30px 30px 30px 30px;
  float: left;
  box-shadow: -8px 8px 14px;
  background-image: url("../Media/images/logo.gif");
  background-size: 80%;
  background-repeat: no-repeat;
  background-color: #1533AD;
  background-position: 50% center;
}
