/* ------------------------------------------- */
/* Defining Universals for Body and Containers */

*{
	margin: 0 auto;   /* reset top and bottom to 0 and left nd right to auto centers everything properly */
	padding: 0;
	}

body{
	display:flex;
	font-family:helvetica; 
	background: url(../images/bnet-bg.jpg) no-repeat center top;
	overflow:hidden;
	}


form{
	width:600px;
	padding:10px;
	margin:auto;
	margin-left:30px;
	margin-right:auto;
	margin-top:5px;
	margin-bottom:5px;
	position:absolute;
	left:50%;
	right:50%;
	border:5px solid #e5c34f; /* Gold text color */
	border-radius:10px;
	transform:translateX(-55%);
	z-index:0;
	}
	
.myform{
	height: 620px;
}

.LoginForm{
	height: 520px;
}

/* ------------------------- */
/* Defining Headers and text */

h1 {
	font-family: Georgia, "Times New Roman", Times, serif ;
	font-size: 72px;
	font-weight: normal;
	margin: .67em 0;
	display: block;
	color:#e5c34f; /* Gold */
	}
	
h2 {
	font-family: Georgia, "Times New Roman", Times, serif ;
	font-size: 30px;
	font-weight: normal;
    text-align: center;
	margin: .67em 0;
	display: block;
	color:#e5c34f; /* Gold */
	}

h3 {
	font-family: Georgia, "Times New Roman", Times, serif ;
	font-size: 18px;
	font-weight: normal;
    text-align: center;
	color:#CCC; /* Gray */
	margin: .67em 0;
	display: block;
	color:#e5c34f; /* Gold */
	}

h4 {
	font-family: Georgia, "Times New Roman", Times, serif ;
	font-size: 16px;
	font-weight: normal;
    text-align: center;
	color:#e5c34f; /* Gold */
	margin: .67em 0;
	display: block;
	}


p {
	font-family: Georgia, "Times New Roman", Times, serif ;
    font-size: 14px;
	font-weight: normal;
    text-align: center;
    margin: 20px 0 20px 0;
    display: block;
    padding-top: 2px;
	color:#e5c34f; /* Gold */
    }

/* ----------------------------------- */
/* -----------  Containers  ---------- */

.main-wrapper{
	width:700px;
	height:96vh;
	position:absolute;
	background-color: transparent;
	color:#e5c34f; /* Gold */
	left:50%;
	right:50%; /* */
	transform:translateX(-50%);
	}
	
.container {
	width:100%;
	height: auto;
	background:transparent;
	}
	
.inner_container {
	margin-right: auto;
	margin-left: auto;
	border-bottom: 2px #e5c34f; /* Gold */
	background:transparent;
	}
	
.container_L_Justify {
	width:600px;
	height:auto;
	margin-right: auto;
	margin-left: auto;
	background:transparent;
	text-align:left;
	line-height:1.5;
	}	

.container_C_Justify {
	width: 600px;
	height:auto;
	padding-top:30px;
	margin-right: auto;
	margin-left: auto;
	text-align:center;
	background:transparent;
	}	
	
.container_R_Justify {
	width:600px;
	height:auto;
	margin-right: auto;
	margin-left: auto;
	background:transparent;
	text-align:right;
	line-height:1.5;
	}

.Photo-container {
	height:150px;
	width:150px;
	margin:1px;	
	Border:double #e5c34f; /* Gold */
	position:relative;
	}

.sectVis {
	visibility:hidden;
	}

.sect {
	height:100%;
	width:790px;
	background-size:cover;
	background-repeat:no-repeat;
	background-attachment:fixed;
	margin-left:auto;
	margin-right:auto;
	}

.subsection {
	height:50%;
	width:790px;
	margin-left:auto;
	margin-right:auto;
	background-color:#e5c34f; /* Gold */
	}


/* ----------------------------------- */
/* ----------- Data Boxes Defn -------- */

input{
	width: auto;
	padding: 10px;
	border: 1px solid #ccc; /* Grey */
	font-size: 12px;
	height: auto;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	color:#000;	/* Black */
	}

.datebox {
	width:120px;
	height:12px;
	appearance:"yyyy/mm/dd";
	border: 1px solid #ccc; /* Grey */
	color:#000;	/* Black */
	}

.inputvalues{
	width: auto;
	margin:2px;
	padding:2px;
	border: 1px solid #ccc; /* Grey */
	color:#000;	/* Black */
	}

.selectbox{
	width: auto;
	height:20px;
	margin:1px;
	padding:1px;
	color:#000;	/* Black */
	}

.cb-Checkbox{
	width: 15px;
	height:15px;
	margin:1px;
	padding:1px;
	color:#000;	/* Black */
	}
	
/* ------------------------------*/
/* --------- Buttons ------------*/

.register_btn{
	right:45%;
	top: 50%;
	font: bold 20px Times, serif;
	text-decoration: none;
	background-color: #000025; /* Dk Blue */
	color: #e5c34f; /* Gold */
	width: 110px;
	height:auto;
	padding: 22px 16px 22px 16px;
	margin-top:10px;
	margin-bottom:15px;
	margin-right:0px;
	border: 2px solid #e5c34f; /* Gold */
	border-radius: 15px;
	text-align: center;
	z-index:10;
	}
.register_btn:hover { background-color:#5a5af1; }   /* Lt Blue */


/* -----------------------------*/
/* ------- Sidebar Nav --------- */

/* Style the links inside the sidenav */
#mySidenav a {
	position: absolute; /* Position them relative to the browser window */
	left: -160px; /* Position them outside of the screen */
	transition: 0.3s; /* Add transition on hover */
	padding: 10px; /* 15px padding */
	width: 180px; /* Set a specific width */
	text-decoration: none; /* Remove underline */
	font-size: 18px; /* Increase font size */
/*	outline:1px solid #e5c34f; /* Gold text color */
	color: #e5c34f; /* Gold text color */
	border-radius: 0 10px 10px 0;
	}

#mySidenav a:hover{
	left:0;
	opacity:1.0;
	}

#ul, #li{
	list-style:none;
	}

activate sticky 
.sidenav:after {
	content: 'sticky';
	display: none;
	}

.sidenav.is-sticky {
	position: -webkit-sticky;
	position: sticky;
	left: auto;
	top: auto;
	} /**/
  

/* The about link: 20px from the top with a green background */
#sect1 {
  top: 20px;
  background-color: rgba(0,51,128,0.5); /* Blue 1 */
  border-top:1px solid #e5c34f; /* Gold */
  border-bottom:1px #e5c34f; /* Gold */
  border-right:1px solid #e5c34f; /* Gold */
}

#sect2 {
  top: 60px;
  background-color: rgba(26,117,255,0.5); /* Blue 2 */
  border-top:1px solid #e5c34f; /* Gold */
  border-bottom:1px #e5c34f; /* Gold */
  border-right:1px solid #e5c34f; /* Gold */
}

#sect3 {
  top: 100px;
  background-color: rgba(26,117,255,0.5); /* Blue 2 */
  border-top:1px solid #e5c34f; /* Gold */
  border-bottom:1px #e5c34f; /* Gold */
  border-right:1px solid #e5c34f; /* Gold */
}

#sect4  {
  top: 140px;
  background-color: rgba(26,117,255,0.5); /* Blue 2 */
  border-top:1px solid #e5c34f; /* Gold */
  border-bottom:1px #e5c34f; /* Gold */
  border-right:1px solid #e5c34f; /* Gold */
}

#sect5  {
  top: 180px;
  background-color: rgba(26,117,255,0.5); /* Blue 2 */
  border-top:1px solid #e5c34f; /* Gold */
  border-bottom:1px #e5c34f; /* Gold */
  border-right:1px solid #e5c34f; /* Gold */
}

#sect6  {
  top: 220px;
  background-color: rgba(26,117,255,0.5); /* Blue 2 */
  border-top:1px solid #e5c34f; /* Gold */
  border-bottom:1px #e5c34f; /* Gold */
  border-right:1px solid #e5c34f; /* Gold */
}

#sect7  {
  top: 260px;
  background-color: rgba(26,117,255,0.5); /* Blue 2 */
  border-top:1px solid #e5c34f; /* Gold */
  border-bottom:1px #e5c34f; /* Gold */
  border-right:1px solid #e5c34f; /* Gold */
}

#sect8  {
  top: 300px;
  background-color: rgba(128,0,0,0.5); /* Red 1 */
  border-top:1px solid #e5c34f; /* Gold */
  border-bottom:1px #e5c34f; /* Gold */
  border-right:1px solid #e5c34f; /* Gold */
}

#sect9  {
  top: 340px;
  background-color: rgba(230,0,0,0.5); /* Red 2 */
  border-top:1px solid #e5c34f; /* Gold */
  border-bottom:1px #e5c34f; /* Gold */
  border-right:1px solid #e5c34f; /* Gold */
}

#sect10  {
  top: 380px;
  background-color: rgba(102,0,255,0.5); /* Purple 1 */
  border-top:1px solid #e5c34f; /* Gold */
  border-bottom:1px #e5c34f; /* Gold */
  border-right:1px solid #e5c34f; /* Gold */
}

#sect11  {
  top: 420px;
  background-color: rgba(0,179,179,0.5); /* Purple 2 */
  border-top:1px solid #e5c34f; /* Gold */
  border-bottom:1px #e5c34f; /* Gold */
  border-right:1px solid #e5c34f; /* Gold */
}

#sect12  {
  top: 460px;
  background-color: rgba(0,153,53,0.5); /* Purple 3 */
  border-top:1px solid #e5c34f; /* Gold */
  border-bottom:1px #e5c34f; /* Gold */
  border-right:1px solid #e5c34f; /* Gold */
}

#sect13 {
  top: 500px;
  background-color: rgba(0,153,53,0.5); /* Purple 3 */
  border-top:1px solid #e5c34f; /* Gold */
  border-bottom:1px solid #e5c34f; /* Gold */
  border-right:1px solid #e5c34f; /* Gold */
}
