/****************************
-- CSS Tables --
****************************/
.tblGrid { 
  width: 100%; 
  border-collapse: collapse; 
}
/* Zebra striping */
.tblGrid tbody tr:nth-of-type(odd) { 
  background: #f2f7ff;   
}
.tblGrid th { 
  background: #00ADE6; 
  color: white; 
  font-weight: bold; 
}
.tblGrid td, .tblGrid th { 
  padding: 6px; 
  border: 1px solid #f2f7ff; 
  text-align: left; 
}
.tblGrid thead tr td th { 
  background: #00ADE6; 
  color: white; 
  font-weight: bold; 
  border: 1px solid #f2f7ff; 
}

.tblGrid > .theader { 
  background: #00ADE6; 
  color: white; 
  font-weight: bold; 
  border: 1px solid #f2f7ff; 
}

.tblNoHeader { 
  width: 100%; 
  border-collapse: collapse; 
 max-width:550px;
}
/* Zebra striping */
.tblNoHeader tbody tr:nth-of-type(odd) { 
  background: #f2f7ff;   
}
.tblNoHeader th { 
  background: #00ADE6; 
  color: white; 
  font-weight: bold; 
}
.tblNoHeader td, .tblNoHeader th , .tblNoHeader tr{ 
  padding: 6px; 
  border: 1px solid #f2f7ff; 
  text-align: left; 
 white-space: normal;   
  word-break: break-all;
  word-wrap: break-word;
}
.tblNoHeader thead tr td th { 
  background: #00ADE6; 
  color: white; 
  font-weight: bold; 
  border: 1px solid #f2f7ff; 
  
}

.tblNoHeader > .theader { 
  background: #00ADE6; 
  color: white; 
  font-weight: bold; 
  border: 1px solid #f2f7ff;

}

iframe, object, embed {
        max-width: 100%;
}

.myIframe {
position: relative;
padding-bottom: 65.25%;
padding-top: 30px;
height: 0;
overflow: auto; 
-webkit-overflow-scrolling:touch; 
border: solid black 1px;
} 
.myIframe iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


input[type=text],
input[type=email],
input[type=url],
input[type=password],
textarea {
	width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
input[type=text],
input[type=email],
input[type=url],
input[type=password] {
  width: 50%;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus {
  outline: 0;
  border-color: #4697e4;
}

@media (max-width: 600px) {
 
  input[type=text],
  input[type=email],
  input[type=url],
  input[type=password],
  textarea,
  select {
    width: 100%; 
  }
}
@media (min-width: 1200px) {
  form > div > label,
	legend {
  	text-align: right;
  }
}







