/* {box-sizing: border-box;}*/

body {
    margin: 0;
    position: relative;
	font-size: 15px;        /* THIS SETS THE FONT SIZE WITHIN THE FORMS */
	background: #F8F8FF;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}

.relative {
  position: fixed;
  left: 230px;
  border: 3px solid #73AD21;
}

/* ========================================== MAIN BODY ============
@media screen and (max-height: 600px) {
	.sidenav {padding-top: 15px;}
	.sidenav a {font-size: 8px;}
} 
/* used in media queries to apply different styles for different media types of devices width and height of the viewport, device, orientation, resolution */

/* background-color = the Home Page color originally #2196F3*/
/* color: black = this is the Home button text color*/
/* font-size = This sets the size of the font used in the HOME button in the Side Nav bar */
.active1 { 
	background-color:  #D3D3D3;	
	color: black;		
	font-size: 15px;	
} 

.content { 
    max-width:400px;
    margin: auto;
    background: white;
    padding: 10px;
}

.a {
    text-align: center;
    margin: auto;
    font-family: verdana;
}

.b {
    text-align: left;
    margin: 40px 40px;
    font-size: 15px;
}

.c {
    text-align: right;
    margin: 40px 40px;
} 

.d {
    text-align: justify;
    margin-left: 260px;     /* CHANGES THE POSITION OF THE FIELDSET BOX FROM THE LEFT MARGIN */
    margin-right: 280px;   /* HAS NO EFFECT ON THE POSITION OF THE FIELDSET BOX FROM THE RIGHT MARGIN */
}


.e {
	text-align: left;
    margin: auto;
    margin-left: 360px;
    margin-right: 180px; 
}

.g {
	text-align: right;
    margin: auto;
    margin-left: 360px;
    margin-right: 180px; 
}

/* Used to center text and buttons */
.f {
	text-align: center;
	color: black;
	margin: auto;
}

.center {
  margin: auto;
  width: 50%;
  border: 3px solid green;
  padding: 10px;
}

.ex1 {
	margin-left: 20px;
}

.ex2 {
	margin-left: 180px;
}


/* Used for FORMs

/* THIS HAS NO VALID FUNCTION IN FORMS 
.fieldset {
    width: 600px;
}
*/

/* Style the input field */

label {
    float: left;
    width: 140px; /* THIS DETERMINES THE DISTANCE OF THE INPUT BOXES FROM THE LEFT MARGIN IN THE FORMS */
}

/* THIS PROVIDES THE BASIC LAYOUT FOR THE FORMS */
input {
  background-color: #D1EAD1;
  border-bottom: 2px solid black;
  color: black;
  padding: 6px 2px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: default;
}

input[type="text"] {
  border-radius: 3px;
  border: none;
  background-color: white;
  width: 50%;
  height: 25px;
  color: #666;
  padding: 5px;
}

input[type=submit] {
  background-color: #D1EAD1;  /* Black */
  border-bottom: 4px solid black;
  color: black;
  padding: 6px 2px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: default;
}

/* IF THIS IS ACTIVATED IT AFFECTS THE FORMS LAYOUT */
/*
label {
    margin: 400px;
    width: 40px;
    display: inline-block;
    text-align: right;
 }
*/

/* this determines the style for the main area of the pages USED IN FORMS */
h1 {
    color: blue;
    margin-left: 280;
    margin-right: 200;
    text-align: center;
    font-family: arial,helvetica,sans-serif;
    font-size: 30px; /* Sets the font size for the main text area in the page */
}

/* Sets the font size for the main text area in the page USED IN FORMS */
h2 { 
    color: blue;
    margin-left: 280;
    margin-right: 200;
    text-align: center;
    font-family: arial,helvetica,sans-serif;
    font-size: 25px;
}

h3 {
    color: blue;
    margin-left: 280;
/*    margin-right: 200;  */
    text-align: center;
    font-family:arial,helvetica,sans-serif;
    font-size: 15px; 
}

h4 { 
    color: blue;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    font-family: arial,helvetica,sans-serif;
    font-size: 35px;
}

/* Sets the font size for the main text area in the page */

/* Sets the font size for the main text area in the page */
p {
    margin-left: 280;
    margin-right: 200;
    text-align: left;
    font-size: 15px;
}

/* Sets the font size for the main text area in SET UP ACCOUNTS */
pc {
    margin-left: 280;
    margin-right: 200;
    text-align: center;
    font-size: 15px;
}

/* Sets the font size for the main text area in the page */
p1 {
    margin-left: 280;
    margin-right: 200;
    text-align: justify;
    color: white;
    font-size: 15px; 
} 

p2 {
    margin-left: 30;
    font-size: 20px; 
    text-align: right;
}

p3 {
    font-size: 15px; 
    text-align: left;
}

p4 {
    margin-left: 220;
    margin-right: 80;
    font-size: 15px; 
    text-align: right;
}

/* BOX AROUND TEXT */
/* Used for SET UP ACCOUNTS */
.box1 {
	text-align: left;
    background-color: lightgrey;
    width: 800px;
    border: 2px black;
    padding: 5px;
    margin-left: 410px;
}
 

/* COLUMNS */

/* SINGLE COLUMN */
.singlecol {
    columns: 400px 2;
    position: absolute;
    z-index: -1;
    left: 320px;
    width: 480px;
    font-size: 13px;
}

/* Create TWO equal columns that float next to each other USED IN FORMS */
.column {
  position: absolute;
  top: 40px;
  float: none;
  z-index: -1;
  margin: 70px;
  width: 60%; /* SETS THE BOX SIZE IN FORMS */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
    width: 100%;
    z-index: -1;
  }
}

/* Tables */
/* Zedbra */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}
tr:hover {
  background-color:orange;
}

th, td {
  text-align: left;
  padding: 16px;
}

.tr:active a:hover {
    background-color: #2196F3;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}


tr:nth-child(even) {
  background-color: #f2f2f2;
}



