body,
td
{
	color: #363636;
	font-family: 'Roboto', Helvetica;
	margin:0px;
}
.title {
    color: #0661b2;
    font-weight: bold;
	margin-bottom:10px;
}
.droparrow {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  background: none;
     transition: transform 0.3s ease 0s;
vertical-align: bottom;
}

.droparrow:focus {
  outline: none;
}

.droparrow span {
  display: block;
  position: absolute;
  top: 6px;
  left: 0px;
  right: 5px;
  height: 4px;
  background-color: rgba(6,97,178,1);
  border-radius: 1px;
  transform: rotate(45deg);
}

.droparrow span::before {
  position: absolute;
  display: block;
  top:-4px;
  left: 4px;
  width: 100%;
  height: 4px;
  background-color: rgba(6,97,178,1);
  border-radius: 1px;
  content: "";
}

.droparrow span::before {
  transform: rotate(90deg);
}

.droparrow2 span {
  background-color: rgba(238, 238, 238, 1);
}

.droparrow2 span::before {
  background-color: rgba(238, 238, 238, 1);
}

.droparrow-rot {
     transition: transform 0.3s ease 0s;
	 transform: rotate(180deg);
}

.droparrow-rot span {
  background-color: rgba(6,97,178,1);
}

.droparrow-rot span::before {
  background-color: rgba(6,97,178,1);
}
.scrollbar::-webkit-scrollbar 
{
 width: 5px;
}
.scrollbar::-webkit-scrollbar-track 
{
 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
 border-radius:10px;
}
.scrollbar::-webkit-scrollbar-thumb
{
 background-color: rgba(6,97,198,0.3);
 border-radius:10px;
}
.bluetext td {
    color: rgba(6,97,178,1);
}
.message {
  font-size: 14px;
  font-weight: bold;
  color: #2980b9;
  text-align: left;
  margin-bottom: 20px;
}



.inputform input[type=text],
.inputform input[type=number],
.inputform input[type=password],
.inputform input[type=date],
.inputform input[type=time],
.inputform textarea,
.inputform select {
	padding: 15px 20px;
    border-radius: 1px;
    margin: 5px auto;
    background-color: #E5E5E5;
    border: 1px solid silver;
    -webkit-box-shadow: inset 0 1px 5px rgba(0,0,0,0.2);
    box-shadow: inset 0 1px 5px rgba(0,0,0,0.2), 0 1px rgba(255,255,255,.8);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: background-color .5s ease;
    -moz-transition: background-color .5s ease;
    -o-transition: background-color .5s ease;
    -ms-transition: background-color .5s ease;
    transition: background-color .5s ease;
   font-family: 'Roboto', Helvetica;
    width: 100%;
}
.inputform input[type=text]:active,
.inputform input[type=text]:focus,
.inputform input[type=number]:active,
.inputform input[type=number]:focus,
.inputform input[type=password]:active,
.inputform input[type=password]:focus,
.inputform input[type=date]:active,
.inputform input[type=date]:focus,
.inputform input[type=time]:active,
.inputform input[type=time]:focus,
.inputform select:active,
.inputform select:focus {
	outline: none;
	border-color: silver;
  background-color:white;
}
.inputform input[type=submit],
.inputform input[type=file] {
  font-family:'Open Sans Condensed', sans-serif;
  text-transform:uppercase;
  outline:none;
  -webkit-appearance: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	background-color: #009191;
	padding: 10px;
	color: white;
 border: 2px solid #007070;
 border-radius: 5px;
	font-size: 1.5em;
	font-weight: bold;
	margin-top: 5px;
	cursor: pointer;
  position:relative;
  top:0;
}

.inputform input[type=submit]:hover {
	background-color: #00A0A0;
}
.personimage:hover {
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.5);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1.5);
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1.5);
    transition: all 200ms ease-in;
    transform: scale(8);
	opacity:1;
}
.divTable{
	display: table;
	width: 100%;
}
.divTableRow,  .divTableRownoalternate{
	display: table-row;
	line-height: 20px;
}
.divTableRowHeader {
	display: table-row;
}
/*
.divTableRow:nth-child(even) {
	background: #333333;
    background-image: linear-gradient(0deg, #333333, #3D3D3D 50%, #333333);
}
.divTableRow:nth-child(odd) {
	background: #333333;
    background-image: linear-gradient(0deg, #222222, #2D2D2D 50%, #222222);
}
*/
.divTableCell {
	display: table-cell;
	text-align:center;
	vertical-align: middle;
	padding-top:5px;
	padding-bottom:5px;
}
.divTableRow .divTableCell,
.divTableRownoalternate .divTableCell{
	border-top:1px solid black;
}
.divTableRow:last-child > .divTableCell,
.divTableRownoalternate:last-child > .divTableCell{
	border-bottom:1px solid black;
}
.divTableHeading {
	display: table-header-group;
	font-weight: bold;
}
.divTableBody {
	display: table-row-group;
}
.promoline .divTableCell {
	border-top:1px solid #FFD800;
}