﻿/* CSS layout */
html,
body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  
}

.box {
  display: flex;
  flex-flow: column;
  height: 100%;
  font-family: "Calibri", "Arial";
}

.box .row {
  border: 1px solid #2A3D45;
}

.box .row.header {
  flex: 0 1 auto;
  background-color: #14110F;
  color: #E39802;
  font-size: 40px;
  text-align: center;
  /* The above is shorthand for:
  flex-grow: 0,
  flex-shrink: 1,
  flex-basis: auto
  */
}

.box .row.menu {
  flex: 0 1 auto;
  background-color: #786F52;
  /* The above is shorthand for:
  flex-grow: 0,
  flex-shrink: 1,
  flex-basis: auto
  */
}


.box .row.content {
  flex: 1 1 auto;
  background-color: #EDE7D9;
}

.box .row.footer {
  flex: 0 1 20px;
  background-color: #14110F;
  color: #EDE7D9;
  text-align: center;
}

.menubox {
	width: 1000px;
	margin: auto;
	color: #EDE7D9;
	
}

.menubox a:link {
	color: #EDE7D9;	
	text-decoration: none;
}

.menubox a:visited {
	color: #EDE7D9;	
	text-decoration: none;
}

.menubox a:hover {
	color: #EDE7D9;
	text-decoration: underline;
}

.menubox a:active {
	color: #EDE7D9;
	text-decoration: none;	
}

.menubox a.activemenu {
	color: #EDE7D9;
	font-weight: bold;
	text-decoration: underline;	
}

.contentbox {
	width: 1000px;
	height: 100%;
	margin: auto;
}

.vert_centre {
	justify-content: center;
	display: flex;              /* establish flex container */
    flex-direction: column;
}

.wrapper_300 {
	margin: auto;
	width: 300px;
}

.wrapper_500 {
	margin: auto;
	width: 500px;
}

.alignleft {
	float: left;
	padding: 0;
	margin: 0;
}
.alignright {
	float: right;
	margin: 0;
	padding: 0;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
    color: #a94442;
}

.divTable{
	display: table;
	width: 100%;
}
.divTableRow {
	display: table-row;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
}
.divTableCell, .divTableHead {
	border: 1px solid #999999;
	display: table-cell;
	padding: 3px 10px;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
	font-weight: bold;
}
.divTableFoot {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}
.divTableBody {
	display: table-row-group;
}

.BlackLink a:link {
	color: #000000;	
	text-decoration: none;
}

.BlackLink a:visited {
	color: #000000;	
	text-decoration: none;
}

.BlackLink a:hover {
	color: #000000;
	text-decoration: underline;
}

.BlackLink a:active {
	color: #000000;
	text-decoration: none;	
}

.BlackLink a.activemenu {
	color: #000000;
	font-weight: bold;
	text-decoration: underline;	
}