
* {
  box-sizing: border-box;
}

/* Style the body */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

/* Header/logo Title */
/*.header {
  padding: 3px;
  text-align: center;
  vertical-align: middle ;
  background: #660066;
  height: 6px;
  color: white;
}*/

/* Increase the font size of the heading */
.header h1 {
  font-size: 10px;
}

/* Style the top navigation bar */
.navbar {
  overflow: hidden;
  background-color: #333;
  padding-left: 30px;
/*  padding-top: 5px;
  padding-bottom: 5px;*/
  
}


/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding-top: 4px ;
  padding-bottom: 4px;
  text-decoration: none;
}

/* Right-aligned link */
.navbar a.right {
  float: right;
  margin-right: 8px;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  background-color:#f1f1f1;
  padding: 20px;
}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background-color: white;
  padding: 20px;
  padding-left: 40px;
}

/* Fake image, just for this example */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Footer */
.footer {
  padding: 2px;
  text-align: center;
  background: #1C2833 ;
  color:white;
}

.row1color {
  background: #f1f1f1;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 4px;
}
.row2color {
  
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 4px;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .navbar a {
    float: none;
    width: 100%;
  }
}


#qColor{
    font-weight:bold;
    color:#000080;
}
    
input[type=button], input[type=submit] {
            background-color: #1565C0;
            border: none;
            /*color: white;*/
            padding: 8px 32px;
            text-decoration: none;
            margin: 4px 2px;
            margin-left: 10px;
            cursor: pointer;
            color:white;
            border-radius: 16px;
            }
 
/*input[type=button], input[type=submit], input[type=reset] */

.main1 {
  max-width: 90%;
  margin: auto;
  /*background: white;*/
  /*padding: 10px;*/
  overflow: visible;
  padding-left: 3%;
  padding-right: 3%;
}



