﻿body {
  background-color: #f5f5f5;
  font-family: Arial;
  font-size: 13px;
  margin: 0;
  padding: 0;
  background-image: url(../Images/LandingPageBackground.jpg);
  background-position-y: bottom;
  background-size: cover;
}
* {
  box-sizing: border-box;
}
h1 {
  margin-top: 5px;
  text-shadow: 0px 1px 2px rgba(0,0,0,0.2);
}
h2 {
  font-size: 15px;
  font-weight: 500;
}
.Page {
      
}
.Top {
  text-align: left;
  background-color: #fff;
  position: relative;
}
.TopBar {
  text-align: left;
  background-color: #cfbfbc;
  position: relative;
  height:5px;
}
.Top .loginDisplay {
  position: absolute;
  top: 10px;
  right: 10px;
}
.Main {
  border-top: 1px solid #aaa;
  padding: 10px;
}
.Logos img {
  vertical-align: middle;
  height: 75px;
  margin: 10px 20px;
}

.ColContainer {
  padding: 0 20px;
}
.Col50 {
  width: 50%;
  float: left;
}
.Col25 {
  width: 25%;
  float: left;
}
.WhiteBox {
  background-color: #fff;
  padding: 12px;
  border-radius: 5px;
  display: inline-block;
  color: #111;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
  width: 350px;
}
.LoginBox {
  padding: 12px;
  display: inline-block;
  color: #111;
  width: 350px;
}
input {  
  padding: 6px;
  font: inherit;
  border: 1px solid #ccc;
  border-radius: 3px;
  transition: border ease-in-out 0.2s;
  box-shadow: inset 0px 1px 1px rgba(0,0,0,0.05);
}
select {
  padding: 3px;
  border-color: transparent;
}
input:focus {
  border: 1px solid #999;
  box-shadow: inset 0px 1px 1px rgba(0,0,0,0.1);
}
div.row {
  margin: 5px 0;
}
div.row label {
  width: 120px;
  margin-right: 10px;
  display: inline-block;
}
.ConfButtons {
  margin-top: 10px;
}

.DivToolbar, fieldset {
  background-color: rgba(255,255,255,0.5);
  padding: 10px;
  box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
  border: none;
}
fieldset legend {
  padding: 10px 0 0;
  font-weight: 600;
}


.MainMenu {
  background: #eee;
  background: linear-gradient(180deg, #f5f5f5, #ccc);
  border-top: 1px solid #ddd;
}
.MainMenu ul {
  margin: 0;
}
.MainMenu ul li {
  list-style: none;
  padding: 11px;
}
.MainMenu ul li a, .MainMenu ul li a:visited {
  text-decoration: none;
  color: #222;
  margin-right: 20px;
  text-shadow: 0px 1px 4px #fff;
  padding: 11px;
  cursor: default;
}
.MainMenu ul li a[href]:hover {
  text-shadow: 0px 1px 4px #777;
  cursor: pointer;
}
.MainMenu ul.level2 {
  background: #eee;
  margin-top: 1px;
  padding: 0;
  border: 1px solid #aaa;
  border-top: none;
  width: 200px;
}
.MainMenu ul.level2 li {
  padding: 10px;
}
.MainMenu ul.level2 li:hover {
  background-color: #5bc0de;
}
.MainMenu ul.level2 li:hover a {
  text-shadow: none;
  color: #fff;
}

.Grid {
  background-color: rgba(255,255,255,0.5);
  border-collapse: collapse;
}
.Grid thead tr th {
  background: linear-gradient(180deg, #444, #222);
  padding: 8px 4px;
  color: #fff;
  text-align: left;
}
.Grid tbody tr td {
  padding: 4px 3px;
}
.Grid-ChildCell .Grid {
  border-bottom: 1px solid #333;
}