* {
  box-sizing: border-box;
  
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* Create three unequal columns that floats next to each other 
.column {
float: left;
  padding: 10px;

}

 navigation column 
 Style the side navigation 

.column.sidenav {
  
  height: 100%;
  width: 200px;
  overflow: hidden;
 
  
  background-color: #387390;
  
}
 Style the content 
.column.content {
	
width: 50%;
  padding-left: 10px;
  background-color: #aaa;
}

 Style the right column 
.column.rightcontent {
	

 width: 40%;
  padding-left: 10px;
  background-color: #dddddd; 
}
*/

@media print{
  body{ background-color:#FFFFFF; background-image:none; color:#000000 }
  table{box-shadow:none}
  .header{ display:none}
  .sidenav{ display:none}
  .main-content{ width:100%}
  
  }



/*make a grid*/

.header { grid-area: header; }
.sidenav { grid-area: menu; }
.main-content { grid-area: main; }
.right-content { grid-area: right; }


.grid-container {
  display: grid;
  grid-template-areas:
    'menu header header'
    'menu main right';
	grid-template-columns: 200px 1fr 1fr;
  grid-template-rows: 150px auto;
 
  padding: 0px;
}

.header {
	background-color: #387390;
	max-height: 200px;
}
.sidenav {
	
  background-color: #387390;
  min-width: 200px;
}

.main-content{

background-color: #b1c7cc;
border: 1px;

	
}
/* Side navigation links */

.right-content{
background-color: #d5e7eb;
border: 1px;
	
}


.sidenav a {
  color: white;
  padding: 16px;
  text-decoration: none;
  display: block;
}

.sidenav img {
  color: white;
  padding: 0px;
  text-decoration: none;
  display: block;
}
.sidenav p {
  color: white;
  padding: 16px;
  text-shadow: 2px 2px #000;
  display: block;
   border-bottom: 2px solid white;


}
/* Change color on hover */
.sidenav a:hover {
  background-color: #fff;
  color: #387390;
}



{
    /* Change your font family */
    font-family: sans-serif;
}

.content-table {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 400px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.content-table thead tr {
    background-color: #387390;
    color: #fff;
    text-align: center;
	min-height: 150px;
    font-weight: bold;
}

.content-table th,
.content-table td {
	
    padding: 10px 5px;
	word-wrap: break-word;
	border : 1px solid #aaa;
}

.content-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.content-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.content-table tbody tr:last-of-type {
    border-bottom: 2px solid #387390;
}

.content-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}





.rightcontent-table {
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 0.9em;
    min-width: 300px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.rightcontent-table thead tr {
    background-color: #dddddd;
    color: #fff;
    text-align: center;
	min-height: 100px;
    font-weight: bold;
}

.rightcontent-table th,
.rightcontent-table td {
	
    padding: 5px 10px;
}

.rightcontent-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.rightcontent-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.rightcontent-table tbody tr:last-of-type {
    border-bottom: 1px solid #387390;
}

.rightcontent-table tbody tr.active-row {
    font-weight: bold;
    color: #009879;
}

.collapse {
            background-color: #387390;
			margin: 25px 0;
			padding:15px 25px;
			box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
            border: none;
            outline: none;
            font-size: 25px;
			border-radius: 5px 5px;
			color: #fff;
        }
.small-button {
            background-color: #387390;
			margin: 25px 0;
			
			padding:5px 10px;
			box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
            border: none;
            outline: none;
            font-size: 15px;
			border-radius: 5px 5px;
			color: #fff;
			cursor: pointer;
        }
          
.active,
.collapse:hover {
            background-color: #fff;
			color: #387390;
        }
.pressed {
            background-color: #fff;
			margin: 25px 0;
			padding:15px 25px;
			box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
            border: none;
            outline: none;
            font-size: 25px;
			border-radius: 5px 5px;
			color: #387390;
        }		
          
.expanded {
           
            display: none;
            
        }
.expanded-sub {
           
            display: none;
            
        }
#taskDataForm{
           
            display: none;
            
        }
.pointer {
	cursor: pointer;
	}

.right {

  border: 1px solid #387390;
  padding: 10px;
}
.bold {

 
  font-size: 15px;
 
  font-weight: bold;
  
}
.small {

  font-size: 12px;
 
}