/* For all devices */
* {
  box-sizing: border-box;
}
p {
	margin-top: 0;
	margin-bottom: 0;
}
ul {
	margin:  3px 5px;
	padding: 3px 5px;
}
ul.li {
	margin:  3px 5px;
	padding: 3px 5px;
}
h1 {
	text-align:center;
    color: DodgerBlue;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 5px;
}

html {
  font-family: "Lucida Sans", sans-serif;
}

img {
  border-radius: 5%;
}

a:link {
	color: Yellow;
    text-decoration: none;	
}

a:visited {
	text-decoration: none;
	color: AntiqueWhite;
}

a:hover, a:active, a:focus {
    color: AntiqueWhite;	
	text-decoration: none;
}

.header {
  background-color: DodgerBlue;
  color: white;
  padding: 5px;
  border-radius: 10px;
  margin-bottom: 3px;
}

.headerCellOnly {
  margin-top: 5px;
  margin-bottom: 5px;
  display: inline-block;
  text-align: center;
  height: 10vw;
  width: 100%;
}

.content {
	font: 100%/1.4 serif;
	background-image: linear-gradient(to bottom, #AFEEEE 0%,  #FFFAFA 100%);
	margin: 0;
	padding: 6px;
	color: black;
	border-radius: 10px;
	min-height:702px;
}

.footer {
  background-color: DodgerBlue;
  color: Yellow;
  text-align: center;
  font-size: 15px;
  margin-top: 5px;
  margin-bottom: 10px;
  padding: 3px;
  border-radius: 5px;
}

.nav {

}

.leftMenu ul {
  list-style-type: none;
  margin:  0px;
  padding: 5px;
}

.leftMenu li {
  padding: 5px 8px;
  margin:  5px 2px;
  height:  40px;
  font-size: 20px;
  background-color: DodgerBlue;
  border:2px solid Navy;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  border-radius: 10px;
}

.leftMenu li:hover {
  background-color: Navy; 
}

.aside {
  background-image: linear-gradient(to bottom, #000080 0%,  #87CEEB 100%);
  padding: 6px;
  color: white;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
  border-radius: 10px;
}

.show-on-cell    { 
    display:inline-block;
    width: 100%;   
}	
.no-show-on-cell    { 
    display:none;  
}

.show-on-wideScreen { 
   display:none;   
}

.login-on-cell { 
   display:inline-block; 
   margin-top: 10px;
   margin-bottom: 4px; 
   width: 100%;  
}


input[type=image] {
  width  : 25px;
  height : 25px;
  display: inline-block;
}

input[type=text], select, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  resize: vertical;
}

input[type=password], select, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  resize: vertical;
}

input[type=submit] {
  background-color: Violet;
  color: white;
  border:2px solid white;
  padding: 12px 20px;
  font-size: 20px;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  margin-left: 2px;
  margin-right: 2px;
  margin-top: 5px;
  margin-bottom: 5px;  
}

input[type=submit]:hover {
  background-color: Pink;
}

input {
    margin-bottom: 3px;
}

.minWidth200 { min-width: 200px; }
.minWidth250 { min-width: 250px; }
.minWidth500 { min-width: 500px; }

.maxWidth500 { max-width: 500px; }

.minWidth33percent { min-width: 33%; }

.maxWidth66percent { max-width: 66%; }

.floatLeft   { float: left; }
.floatRight  { float: right; }

.displayFlex {
  display: flex;
}

.backgroundColorCenter {
   background-image: linear-gradient(to bottom, #AFEEEE 0%,  #FFFAFA 100%);  
}

@media only screen and (max-width: 600px) {
  /* For cell phones: */
  .show-on-wideScreen { display:none; }
  .show-on-cell       { display:inline-block }
  .headerCellOnly     { display:inline-block; }
  .login-on-cell      { display:inline-block; } 
  .form-25            { width: 100%; }
  .form-50            { width: 100%; }
  .form-75            { width: 100%; }
  .form-100           { width: 100%; }
  [class*="col-"]     { width: 100%; }
  input[type=submit]  { width: 95%; }
  input[type=text], select, textarea { width: 95%; }
  input[type=password], select, textarea { width: 95%; }  
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  input { width: auto; }
  .show-on-wideScreen { display:inline-block; }
  .show-on-cell   { display:none }
  .headerCellOnly { display:none; }
  .login-on-cell  { display:none; }
  .col-t-1 {width: 8.33%;}
  .col-t-2 {width: 16.66%;}
  .col-t-3 {width: 25%;}
  .col-t-4 {width: 33.33%;}
  .col-t-5 {width: 41.66%;}
  .col-t-6 {width: 50%;}
  .col-t-7 {width: 58.33%;}
  .col-t-8 {width: 66.66%;}
  .col-t-9 {width: 75%;}
  .col-t-10 {width: 83.33%;}
  .col-t-11 {width: 91.66%;}
  .col-t-12 {width: 100%;}
}

@media only screen and (min-width: 768px) {
  /* For desktop: */
  input { width: auto; }
  .show-on-wideScreen { display:inline-block; }
  .show-on-cell   { display:none }
  .headerCellOnly { display:none; }
  .login-on-cell  { display:none; }
  .col-d-1 {width: 8.33%;}
  .col-d-2 {width: 16.66%;}
  .col-d-3 {width: 25%;}
  .col-d-4 {width: 33.33%;}
  .col-d-5 {width: 41.66%;}
  .col-d-6 {width: 50%;}
  .col-d-7 {width: 58.33%;}
  .col-d-8 {width: 66.66%;}
  .col-d-9 {width: 75%;}
  .col-d-10 {width: 83.33%; }
  .col-d-11 {width: 91.66%;}
  .col-d-12 {width: 100%;}
}