/* CSS Document */

* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

body {
	width: 100%;
	background-color: #ffffff;
	font-family: Verdana, "sans-serif";
	font-size: 1em;
	color: #555555;
	border: 0px;
	margin: 0px;
}

/*title of the tool - to repeat in every page*/
header {
	height: 100px;
	background-color: #213b1c;
	padding: 5px 10px;
	vertical-align: middle;
	display: block;
	border: 0px;
	margin: 0px;
}

.header-brand {
	vertical-align: middle;
	float: right;
	padding: 10px 15px;
	text-align: right;
}
 
.header-title {
	color: #D0E4BF;
	padding: 5px 10px;
	vertical-align: middle;
	font-family: Verdana, "sans-serif";
	float: left;
}

/* navigation breadcrumb*/
nav {
	background-color: #3A6237;
	float: right;
	border: 0px;
	margin: 0px;
}

nav a {
  display: block;
  color: #D0E4BF;
  text-align: center;
	font-size: 0.8em;
  padding: 0px 20px 10px 20px;
  text-decoration: none;
}

nav a:hover {
  background-color: #4F7942;
  color: #D9AA00;
}

nav ul {
	list-style: none;
}

nav li {
	float: right;
}

.breadcrumb {
	color:#D0E4BF;
	text-align: right;
	padding: 6px 20px 10px 20px;
	border: 0px;
	margin: 0px;	
}

/*main body of the landing homepage*/
.main {
	overflow: auto;
	height: auto;
}

section {
	text-align: left;
	background-color: #D0E4BF;
	padding: 20px 20px 50px 20px;
	display: block;
	float: left;
	font-size: 0.8em;
	border: 0px;
	margin: 0px;
}

section a {
  display: block;
  background-color: #B16532;
color: #ffffff;
	font-weight: bold;
  text-align: center;
  padding: 10px;
  text-decoration: none;
	border-radius: 10px;
	margin: 20px 0px;
	
}

section a:hover {
  background-color: #4F7942;
  color: #D9AA00;
}

section ul {
	list-style: none;
}

aside {
	text-align: right;
	background-color: #ffffff;
	padding: 20px 20px 50px 20px;
	display: block;
	float: left;
	font-size: 1em;
	border: 0px;
	margin: 0px;
}



aside a {
  display: block;
  background-color: #D9AA00;
	color: #4F7942;
	font-weight: bold;
  padding: 1px 10px;
	text-align: center;
  text-decoration: none;
	border-radius: 15px;
	margin: 20px 0px;
	
}

aside a.existing {
	background-color: #4586C9;
	color:  #ffffff;
}

aside a:hover {
  background-color: #B16532;
  color: #D9AA00;
}

aside ul {
	list-style: none;
}

div.core {
	float: left;
	padding: 20px 20px 50px 20px;
	text-align: left;
}

div.buttons {
	display: inline-block;
	width: 100%;
	text-align: center;
}

div.planning {
	background-color: #D9AA00;
	text-align: center;
	float: left;
	width: 20%;
	border-radius: 15px;
	padding: 5px;
	margin: 20px;
}
div.planning a {
	text-decoration: none;
	color: #ffffff;
	font-weight: bold;
}

div.planning a:hover {
  background-color: #4F7942;
  color: #B16532;
}


div.managing {
	background-color: #4586C9;
	text-align: center;
	float: left;
	width: 20%;
	border-radius: 15px;
	padding: 5px;
	margin: 20px;
}
div.managing a {
	text-decoration: none;
	color: #ffffff;
	font-weight: bold;
}

div.managing a:hover {
  background-color: #4F7942;
  color: #D9AA00;
}

.vcs {
	display: block;
	background-color: #D0E4BF;
	padding: 15px 20px;
	border-radius: 20px;
}

table, th, td {
  border: 1px solid black;
}
/* style for the questions pages*/
img.icon {
	display: inline-block;
	float: left;
	padding: 5px;
}

/* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 500px;
  background-color: #9DC182;
  color: #ffffff;
  text-align: left;
  padding: 20px;
  position: absolute;
  z-index: 1;
  top: 0%;
  right: 50%;
}


/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;  
}


/* style for the forms to enter questions*/

/* style for information pages*/



/*footer style for every page*/
footer {
	position: fixed;
	overflow: hidden;
	left: 0px;
	bottom: 0px;
	height: 40px;
	color: #ffffff;
	background-color: #213b1c;
	padding: 5px;
	font-size: 0.7em;
	line-height: 1.5em;
}

footer a {
  color: #D0E4BF;
  text-align: center;
  padding: 1px 16px;
  text-decoration: none;
}

footer a:hover {
  background-color: #D9AA00;
  color: black;
}

footer ul {
	list-style: none;
}

footer li {
	float: left;
}
