* {
  box-sizing: border-box;
}
p {
	margin-top: 0;
	margin-bottom: 0;
	padding: 5px 10px 5px 10px;
}

#noStyle {
	padding: 0;
	margin : 0;
}

h1 {
	text-align: center;
}

.boxShadow {
	box-shadow       : 4px 7px 18px darkBlue;
}

.content {
	font: 100%/1.4 serif;
	background-image: linear-gradient(to bottom, #33ccff 0%, #33ffff 100%);
	margin: 0;
	padding: 0;
	color: DarkBlue;
	border-radius: 10px;
	min-height: 560px;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 5px;
}

html {
  font-family: "Lucida Sans", sans-serif;
}

img {
  border-radius: 10px;
}

a:link {
	color: white;
    text-decoration: none;	
}

a:visited {
	text-decoration: none;
	color: white;
}

a:hover, a:active, a:focus {
    color: white;	
	text-decoration: none;
}

.header {
  background-color: DarkBlue;
  color: white;
  padding: 5px;
  border-radius: 10px;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 2px;
  margin-bottom: 5px;
  background-color: RoyalBlue;
  color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.menu li:hover {
  background-color: SkyBlue;
  border-radius: 10px;
}

.leftMenu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.leftMenu li {
  font-size: 18px;
  padding: 2px 10px 2px 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: DodgerBlue;
  color: white;
  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: RoyalBlue;
  border-radius: 10px;
}

.aside {
  background-color: grey;
  padding: 6px;
  color: #ffffff;
  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);
}

.show-on-cell       { width: 100%;   }	
.no-show-on-cell    { display:none;  }
.show-on-wideScreen { display:none;  }

.login-on-cell { 
   margin-top     : 10px;
   margin-bottom  : 4px; 
   width          : 100%;  
}
    
form {
	border-radius : 10px;
	vertical-align: text-top;
}

label {
	display       : inline-block;
    margin-top    : 3px;
	vertical-align: top;
    text-align    : right;
    width         : 30%;
}

input {
    display       : inline-block;
	height        : 40px;
    margin-bottom : 3px;
	border-radius : 10px;
}

input[type=image] {
    display       : inline-block;
    width         : 40px;
    height        : 40px;
    border-radius : 10px;
}

input[type=text], select, textarea {
    display       : inline-block;
    padding       : 12px;
    border        : 1px solid #ccc;
    border-radius : 10px;
    resize        : vertical;
    width         : 60%;  
}

input[type=password], select, textarea {
    display       : inline-block;
    padding       : 12px;
    border        : 1px solid #ccc;
    border-radius : 10px;
    resize        : vertical;
}

input[type=submit] {
    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;
    color           : white;
    background-color: RoyalBlue;	
}

input[type=radio] {
	display         : inline-block;
    padding         : 2px 2px;
    text-align      : left;
    width           : 15px;
    height          : 15px;	
}

input[type=file] {
    display         : inline-block;
    padding         : 12px;
    border          : 1px solid #ccc;
    border-radius   : 10px;
    resize          : vertical;
	width           : 80%;
    background-color: Yellow;  
}

select {
    display       : inline-block;
	height        : 40px;
    margin-bottom : 3px;
	border-radius : 10px;
}

.headerCellOnly {
  margin-top      : 5px;
  margin-bottom   : 5px;
  display         : inline-block;
  text-align      : center;
  height          : 10vw;
  width           : 100%;
}

.centered {
  margin-top: 5px;
  margin-bottom: 5px;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.footer {
  background-color: DarkBlue;
  color: yellow;
  text-align: center;
  font-size: 12px;
  padding: 5px;
  border-radius: 10px;
}

/**********************/
/* Different devices  */
/**********************/

/* For mobile phones: */
@media only screen and (max-width: 600px) { 
  .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%; }
  .oneThird {
    width: 25%;
    display: inline;  
  }
  .bottomRight {
    vertical-align:bottom;
    horizontal-align: right;
  }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
  /* For tablets: */
  .show-on-wideScreen { display:inline-block; }
  .show-on-cell       { display:none; }
  .headerCellOnly     { display:none; }
  .login-on-cell      { display:none; }
  .form-25            { width: 25%; }
  .form-50            { width: 50%; }
  .form-75            { width: 75%; }
  .form-100           { width: 100%; }
  .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%;}
  input[type=submit]  { width: 95%; }
  input[type=text], select, textarea { width: 95%; }
  input[type=password], select, textarea { width: 95%; }
}

/* Mobile phones and tablets on lanscape - treat like a fat cell phone*/
@media screen and (min-width: 568px) and (max-width: 767px) and (orientation: landscape) {
  .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%; }
}

/* For desktop: */
@media only screen and (min-width: 768px) {
  .show-on-wideScreen { display:inline-block; }
  .show-on-cell       { display:none; }
  .headerCellOnly     { display:none; }
  .login-on-cell      { display:none; }
  .form-25            { width: 25%; }
  .form-50            { width: 50%; }
  .form-75            { width: 75%; }
  .form-100           { width: 100%; }
  .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%;}
}

