body {
	margin: 0;
	font-family: Century Schoolbook, Arial;
	font-size: 12px;
	background-color: #FFFFFF;
	color: #001F3D;
}

.txtcolor {
	color: #001F3D;
}

.clgname {
	font-size: 14px;
	text-shadow: #F7B980 0px 1px 3px;
	font-weight: bolder;
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 700px) {
	.clgname {
		font-size: 10px;
	}
}

/*#loader {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid blue;
	border-right: 16px solid green;
	border-bottom: 16px solid red;
	border-left: 16px solid pink;
	width: 120px;
	height: 120px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 0px solid;
  background-color: #ED985F;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px 10px;
  transition: 0.3s;
  font-size: 17px;
  border-radius: 20px;
  color:#001F3D;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #E6E6E6;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #E6E6E6;
  color:#001F3D;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 3px 6px;
  border: 1px solid #ccc;
  border-top: none;
}

.inbrd {
	border-radius: 10px;
}

.bgcolor1{background-color: #001F3D;} /* Navy Blue */
.bgcolor2{background-color: #ED985F;} /* Dark Orange */
.bgcolor3{background-color: #F7B980;} /* Light Orange */
.bgcolor4{background-color: #E6E6E6;} /* Gray */

.topnav {
  overflow: hidden;
  background-color: #ED985F;
}

.topnav a {
  float: left;
  display: block;
  text-align: center;
  padding: 8px 14px;
  text-decoration: none;
  font-size: 12px;
}

.topnav a:hover {
  background-color: #F7B980;
  color: black;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}