/* For all devices */
* {
  box-sizing: border-box;
}
p {
	margin-top: 0;
	margin-bottom: 0;
}
.content {
	font: 100%/1.4 serif;
	background-image: Beige;
	margin: 0;
	padding: 0;
	color: dimGrey;
	border-radius: 10px;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 5px;
}

html {
  font-family: "Lucida Sans", sans-serif;
}

img {
  border-radius: 5%;
}

.nav {
	
}

a:link {
	color: DimGrey;
    text-decoration: none;	
}

a:visited {
	text-decoration: none;
	color: DarkGrey;
}

a:hover, a:active, a:focus {
    color: Grey;	
	text-decoration: none;
}

.header {
  background-color: Beige;
  color: DimGrey;
  padding: 5px;
  border-radius: 10px;
}

h1 {
	text-align: center
}

.leftMenu ul {
  list-style-type: none;
  margin-top: 10px;
  padding: 0;
}

.leftMenu li {
  padding: 2px;
  margin-bottom: 5px;
  background-color: DimGrey;
  color: Beige;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.leftMenu li:hover {
  background-color: DarkGrey;
  color: Beige;
  border-radius: 10px;
}

.aside {
  background-color: YellowGreen;
  padding: 6px;
  color: white;
  text-align: center;
  font-size: 14px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

/* form styles */

.form-10 {
  float: left;
  width: 100%;
  margin-top: 0;
  text-align: left;
}

.form-25 {
  float: left;
  width: 100%;
  margin-top: 0;
  text-align: left;
}

.form-30 {
  float: left;
  width: 100%;
  margin-top: 0;
  text-align: left;
}

.form-50 {
  float: left;
  width: 100%;
  margin-top: 0;
  text-align: left;
}

.form-75 {
  float: left;
  width: 100%;
  margin-top: 0;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input {
	height: 40px;
	margin-bottom: 3px;
    margin-bottom: 3px;
	border-radius: 10px;
	display: inline-block;
}

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: SteelBlue;
  color: white;
  padding: 12px 20px;
  border: none;
  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: DodgerBlue;
}

.show-on-cell    { 
    display:inline-block;
    width: 100%;   
}	

.show-on-wideScreen { 
   display:none;   
}

.login-on-cell { 
   display:inline-block; 
   margin-top: 10px;
   margin-bottom: 4px; 
   width: 100%;  
}

.headerCellOnly {
  margin-top: 5px;
  margin-bottom: 5px;
  display: inline-block;
  text-align: center;
  height: 10vw;
  width: 100%;
}

.footer {
  background-color: Beige;
  color: DimGrey;
  text-align: center;
  font-size: 12px;
  padding: 5px;
  border-radius: 10px;
}

@media only screen and (max-width: 600px) {
  /* For cell phones: */
  [class*="col-"] {
    width: 100%;
  } 
  input {
    width: 100%;
  }
  input[type=text], select, textarea {
    width: 95%;
  }
  input[type=password], select, textarea {
    width: 95%;
  }
  input[type=submit] {
    width: 95%; 
  }  
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .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: */
  .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%;}
}


