body {
    font-family: sans-serif;
    background: #F0F3F7;
	padding: 0;
	margin:0;
}

.main{
	width: 80%;
	margin: auto;
	padding: .4rem .4rem;
}

.MESSAGE{
	display: flex;
    justify-content: center;
	width:80%;
	border-radius: 4px;
	padding: 15px 32px;
	text-align: center;
	font-size: 16px;
	margin: auto;
	color: #FFF;

	/*margin-top:4px;*/
	z-index: 1000;
    transition: opacity 0.5s ease;
	position: fixed;    /* Use fixed positioning */
    bottom: 20px;  
}
.ERROR{
    background-color: #f7a862;
    border-color: #f7a862;
 }
.OK{
    background-color: #6BAF81;
    border-color: #6BAF81;
}

.hidden{display: none;}

button {
  border-radius: 4px;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  color: #fff;
  background-color: #1A506E;
  border-color: black;
}

button:hover {
    color: #fff;
    background-color: #30627E;
    border-color: white;
}
button.secondary {
    color: #1A506E;
    background-color: #fff;
    border-color: #1A506E;
    margin-bottom: 5px;
}
button.secondary:hover {
    color: #1A506E;
    background-color: #F9FAFC;
}

button.orange {
    color: #1A506E;
    background-color: #f7a862;
    border-color: #f7a862;
    margin-bottom: 5px;
}
button.orange:hover {
    background-color: #f47709;
	border-color: #f47709;
}

button.red {
    color: #FFF;
    background-color: #E36A6A;
	border-color: #E36A6A;
    margin-bottom: 5px;
}
button.red:hover {
    background-color: #f7a862;
    border-color: #f7a862;
}

button.green {
    color: #FFF;
    background-color: #6BAF81;
    border-color: #6BAF81;
    margin-bottom: 5px;
}
button.green:hover {
    background-color: #5AA673;
    border-color: #5AA673;
}
header.menu {
	background-color: #15587B;
	padding: 0;
	margin: 0;
	display: block;
}
.profile {
	padding: .4rem;
	margin: 0;
}
header ul {
	/*border-bottom: 1px solid rgba(242, 242, 242, 1);*/
	list-style-type: none;
	margin: 0;
	overflow: hidden;
	padding: 0;
	text-align: left;
}
header li {
	display: inline-block;
}

header li.right{float : right;}
/*header li img{margin:0}*/
header li a {
	border-radius: 5px;
	color: #FFF;
	display: block;
	height: 44px;
	text-decoration: none;
}
header li.menu-item a {
	border-radius: 5px;
	margin: 5px 0;
	height: 38px;
	line-height: 36px;
	padding: .4rem .4rem;
	text-align: center;
	color: #FFF;
}
header li.menu-item a:hover,
header li.menu-item a:focus {
	color: #1A506E;
    background-color: #fff;
    border-color: #1A506E;
    margin-bottom: 5px;
	
	/*background-color: rgba(221, 72, 20, .2);
	color: rgba(221, 72, 20, 1);*/
}
header .logo {
	float: left;
	height: 44px;
	padding: .4rem .5rem;
}
header .menu-toggle {
	display: none;
	float: right;
	font-size: 2rem;
	font-weight: bold;
}
header .menu-toggle button {
	background-color: rgba(221, 72, 20, .6);
	border: none;
	border-radius: 3px;
	color: rgba(255, 255, 255, 1);
	cursor: pointer;
	font: inherit;
	font-size: 1.3rem;
	height: 36px;
	padding: 0;
	margin: 11px 0;
	overflow: visible;
	width: 40px;
}
header .menu-toggle button:hover,
header .menu-toggle button:focus {
	background-color: rgba(221, 72, 20, .8);
	color: rgba(255, 255, 255, .8);
}

 /* Style the tab */
.tab {
	margin: auto;
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  float: center;
  text-align:center;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    color: #1A506E;
    background-color: #f1f1f1;
    border-color: #1A506E;
  float: center;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
    text-align:center;
}

/* Change background color of buttons on hover */
.tab button:hover {
    color: #1A506E;
    background-color: #F9FAFC;
}

/* Create an active/current tablink class */
.tab button.active {
	  border: 1px solid #1A506E;
    background-color: #F9FAFC;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  float: center;
  margin: auto;
  text-align:center;
} 

.page-title-bar {
  margin: 0;
  padding: 0;
  color: #0d6591;
}

.page-title-bar h1 {  font-size: 33px;}
.page-title-bar h4 {  font-size: 20px;}

table tr:hover td {
  background: #cacaca;
  cursor: pointer;
}