body {
  display: flex;
  flex-direction: column;
}
#-content- {
    flex: 1 0 auto;
}
#-top- {
	position: relative;
	background-color: #223a73;
	overflow: hidden;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	padding: 30px 30px;
	border: none;
}
#-top-border- {
	border: 0;
	height: 4px;
	background: linear-gradient(358.5deg,#00aeef .09%,#134a86);
}
#-top- > img {
    width: 350px;
    max-width: calc(95vw - 60px);
    height: auto;
}
#-top- > h1 {
	font-weight: bold;
	background-color: #223A73;
	color: white;
	font-family:'Roboto', sans-serif;
	font-weight:bold;
	font-size:24px;
	text-align: center;
	margin: auto;
}
#-top-menu-, #-menu-, div.rowmenu {
	position: relative;
	background-color: #223A73;
	display: flex;	
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	color: white;
}
div.rowmenu {
    background-color: white;
    color: #0095EB;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
}
td.rowmenu {
    background-color: white;
    margin:0;
    padding:0;
}
#-top-menu- {
	flex-direction: column;	
}
#-menu-, div.rowmenu {
	flex-direction: row;
}
#-menu- * {
	margin: 0;	
	margin-left: 2px;
    margin-right: 2px;
}
#-user- {
	font-size: 13px;
}
#-top-menu- button.actionbutton {
	float: none;
	text-align: center;
	width: auto;
	background-color: #223A73;
	color: white;
	font-size: 13px;	
}
.rowmenu button.actionbutton {
	background-color: white;
    width: auto;
    margin-right: 20px;
    font-size: 12px;
    border: none;
    color: #0095EB;
}
.rowmenu button.actionbutton:hover {
	cursor: pointer;
    text-decoration: underline;
}
#-top-menu- button.actionbutton:hover {
	cursor: pointer;
	color: #f6bb08;
    text-decoration: underline;
}
#-top-menu- button.linkbutton {
	color: white;
	text-decoration: underline;
	font-weight: bold;
	font-size: 13px;
}
#-top-menu- button.linkbutton:hover {
	color: #f6bb08;
	text-decoration: underline;
}
#-container- {
    position: relative;
	display: flex;
	flex-direction: column;
	padding-bottom: 30px;   
}
#-footer- {
    position: relative;
    /* bottom: 0; */
    background-color: #f2f2f2;
    padding: 30px;
    border-top: 4px solid #223A73;
    width: 100%;
    
    flex-shrink: 0;
}
#-main- {
    position: relative;
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    width: 800px;
    max-width: 90vw;
    padding: 20px;
}
.menu-item {
    position: relative;
	display: flex;
	flex-direction: column;
    flex-wrap: nowrap;
    margin: 10px 0px;
}
.menu-item  h1{
    font-size: 27px;
    font-weight: bolder;
    text-align: left;
    color: #212529;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
.menu-item  p{
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: #212529;
    margin-top: 10px;
    line-height: 1.5;
}
.menu-item  button.linkbutton{
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    color: #003476;
    padding: 3px;
}
.menu-item  button.linkbutton:hover{
    cursor: pointer;
    color: #00aeef;
    text-decoration: underline;
}
.modal-container {
      display: block;
      position: fixed;
      z-index: 1;
      left: 0;
	  top: 0;
      width: 100%;
      height: 100%;
      background-color: rgb(0,0,0); /* Fallback color */
      background-color: rgba(0,0,0,0.05); /* Black w/ opacity */
}
.modal-dialog {
	position: absolute;
	top: 150px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fefefe;
	padding: 0;
	border-radius: 5px;
	width: 400px;
	max-width: 80vw;
	height: auto;
	/* padding-bottom: 20px; */
	overflow: auto;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
	
	margin-left: auto;
	margin-right: auto;
}
.close {
	color: white;
	float: right;
	font-size: 100%;
	font-weight: bold;
}
.close:hover,
.close:focus {
      color: red;
      text-decoration: none;
      cursor: pointer;
}
.modal-header {
      padding: 8px 20px;
      background-color: #223A73;
      color: white;
	  border-top-left-radius: 5px;
	  border-top-right-radius: 5px;
}
.modal-header.ddi-error {
	background-color: #ca1a4b;
}
.modal-header.ddi-info {
	background-color: #f6bb08;
}
.modal-header h1 {
    font-size: 100%;
}
.modal-body {
	padding: 20px;
	height: calc(100% - 20px);
	overflow-y: auto;
	font-size: 13px;
}
.modal-dialog .formcontainer {
    padding-bottom: 0px;
}
.modal-dialog table.calendar {
    margin-bottom: 20px;
}
table.grid {
    border-collapse: collapse;
    border: 1px solid #ccc;
    width: 100%;
}
table.grid td {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    text-align: left;
    padding: 5px;
    font-size: 14px;
    color: #475466;
}
table.grid td.rowid {
    background-color: #223A73;
    color: white;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}
table.grid td.rowid:hover {
    background-color: #0095EB;
    cursor: pointer;
}
table.grid td.fieldlabel {
    background-color: #ecf8fa;
    color: #223A73;
    font-weight: bold;
    text-align: left;
    font-size: 14px;
}
table.calendar {
    display: none;
    table-layout: fixed;
    border-collapse: collapse;
    width: calc(100% - 1px);
    font-size: 13px;
    border: 1px solid #ccc;
}
table.calendar.current {
    display: table;
}
.calendar td {
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 2px;
    line-height: 1.5;
    text-align: center;
}
.calendar td.-cell-inactive {
    color: #ccc;
}
.calendar td.-extra2- {
    color: red;
}
.calendar td.-extra3- {
    color: maroon;
}
.calendar td.-expires- {
    color: green;    
}
.calendar td.-cell-:not(.active):hover{
    cursor: pointer;
    background-color: #ccc;
}
.calendar td.active{
    background-color: yellow;
}
.calendar tr:first-child td ,
.calendar tr:nth-child(2) td {
    font-weight: bold;
}
.calendar .actionbutton {
    width: 25px;
    padding: 0;
    margin: 0;
}
.calendar .actionbutton i {
    pointer-events: none;
}
.calendar .actionbutton.next {
    float: right;
}
.calendar .actionbutton.previous {
    float: left;
}
.calendar .actionbutton:hover {
    cursor: pointer;
}
.doccontainer {
    position: relative;
    margin-left: auto;
    margin-right: auto; 
	padding: 40px;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
	width: 700px;
	max-width: 90vw;
    height: 60vh;
    overflow-y: auto;
}
table.ddidoc {
    width: auto;
    border-collapse: collapse;
    border: none;
    table-layout:auto;
}

@media screen and (max-width: 1100px) {
	#-top- {
		flex-direction: column;
		margin-top: 20px;
	}
}
@media screen and (min-width: 1101px) {
	#-top- {
		flex-direction: row;
		margin-top: 0px;
	}
}









