/* # - id */
/* element  */
/* To select elements with a specific class, write a period (.) followed by the class name (p class=)   */

/*  #id	(#firstname)	Selects the element with id="firstname"  */
/*  .class	(.intro)	Selects all elements with class="intro"  */
/*  element	(p)	Selects all <p> elements  */
/*  element,element	(div, p)	Selects all <div> elements and all <p> elements  */

.tn {
  border:  0.2em solid red;;
  color: #555555;
  padding: 0px 0px 0px 0px;
  background-color: inherit;
  margin: 2em;
  overflow: hidden;
  float: left;
}

* {
  box-sizing: border-box;
}

.navbar {
  overflow: hidden;
  background-color: #01b9e0;
  width: 75%;
  font-family: Verdana, Arial;
  border-radius: 7.5px;
  margin:auto;
}

/* ===============================================================  Navbar =======================*/

.navbar a { /* Links in the navbar */
  float: left;
  font-size: 14px;
  color: #f9f9f9;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}


.dropdown { 
  float: left;
  overflow: hidden;
}


.dropdown .dropbtn {
  font-size: 14px;	
  border: none;
  outline: none;
  color: #ffffff;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}


.navbar a:hover, .dropdown:hover .dropbtn { /* Add a background color to 'Menu' link on hover */
  background-color: rgba(20, 90, 171, 0.5);
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 10%;
  box-shadow: 10px 8px 16px 10px rgba(0,0,255,0.25);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  transition-duration: 0.7s;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: rgba(180, 180, 180, 0.5);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* ===============================================================  Body  =======================*/

body {
	margin:0;
	padding:0;
	border:0; /* Removes border around viewport in old versions of IE */
	width:100%;
	background:#fff;
	font-size:90%; /* min-width:600px; Min width of layout - remove if not required. doesnt work old versions of IE */
}

a {
	color:#000000;   /* Shellholder Part Numbers  */
}

h1{
	margin:0.8em auto .2em auto;
	width:75%;
	padding:0em;
	text-align: center;
	background:#ffffff;
	color:#000000;
	font-weight:bold;
	font-size: 1.6em;
	text-shadow:5px 5px 10px #cdcdcd;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

h2{
	margin:.8em 0 .2em 0;
	padding:0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
	background:#ffffff;
	color:#000000;
	text-shadow:2px 2px 5px #cdcdcd;
	font-weight:bold;
	font-size: 1.6em;
}

h3 {
	margin: .6em 0 .2em 0;
	padding:10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
	background:#ffffff;
	color:#000000;
	font-weight:normal;
	font-size: 0.9em;
}
h4 {
	margin: .6em;
	padding:10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
	background:#ffffff;
	color:#ff0000;
	font-weight:bold;
	font-size: 0.9em;
}

label {
	margin: .6em 0 .2em 0;
	padding:10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	background:#ffffff;
	color:#000000;
	font-weight:normal;
	font-size: 1.1em;
}

textarea {
	margin: .6em 0 .2em 0;
	padding:10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	background:#ffffff;
	color:#000000;
	font-weight:normal;
	font-size: 1.1em;
}


p{  
    display: block;
	margin:0.4em 1em.8em 1em;
	padding:10px;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color:#000000;
	font-weight:normal;
	font-size: 0.8em;
	font-size: 0.9em;
}

#post{
	margin:4em 4em 8em 4em; /* Only used in POSTS  */
	padding:10;
	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color:#000000;
	font-weight:normal;
	font-size: 1.1em;
}

#about {
	margin: 0.6em 2em 0em 0em; /* Only used in ABOUT, CONTACT  */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color:#000000;
	font-size: 1.1em;
}
img { 
	margin:2em; /* Not used  */
}

#note_a, #note_b, #note_c, #note_d, #note_e {
	margin: .6em 0 .2em 0;
	padding:10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	background:#ffffff;
	color:#000000;
	font-weight:normal;
	font-size: 1.1em;
}

/* =================================   Tooltip  ===============================*/

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 100px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  padding: 2px 0;
  position: absolute;
  z-index: 2;
  bottom: 75%;
  left: -10%;
  margin-left: 0px;
  opacity: 0;
  transition: opacity 1.8s;
  font-family: Arial, Verdana, Helvetica, sans-serif;
  font-size: 0.8em;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* =================================   Tables  ===============================*/


table {
border-collapse:collapse;
margin:auto;
width:80%;
border:1px solid #000000;
border-radius: 0px;
vertical-align: middle;
}

th{
height: 30px;
padding:15px;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight:1100;
font-size: 0.9em;
color:black;
background-color:#01b9e0;
}


tr:nth-child(odd) {
  background-color: #ffffff;
}

tr:nth-child(even) {
  background-color: #efefee;
}


td {
border:1px solid #000000;
padding:2px;
vertical-align:middle;
font-family: Verdana, Arial, Helvetica, sans-serif;
color:#000000;
font-weight:600;
font-size: 0.8em;
text-align: center;
}



#ads img { /* -NOT USED- */
	display:block;
	padding-top:10px;
}

/* -----------------------    Header styles ------------------------- */
#header {
	clear:both; /* -THIS NNEDS TO BE H1- */
	float:none;
	/*width:90%; */
	border:0px solid #000;
	border-radius: 8px;
	background-color: #ffffff;
	padding:26px;
}


/* ========================    horizontal rule  ====================== */
hr.rounded {  /* -Only used on SEARCH- */
	width: 70%;
	border-top: 2px solid #ff22ff;
}


hr {
  display: block;
  width:65%;
  text-align:center;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: auto;
  margin-right: auto;
  border-style: inset;
  border-width: 0.1em;
  border-color: green;
}


/* ---------------------------column container  -----------------------*/
.colmask {
	display: block;
    margin-left: auto;
    margin-right: auto;
	position:relative;	/* This fixes the IE7 overflow hidden bug */
	width:90%;			/* width of whole page */
	overflow:hidden;		/* This chops off any overhanging divs */
	background:#fff;
	 
}


/* ----------------------=---  Footer styles  =========================*/
#footer {
	clear:both;
	float:left;
	width:60%;
	border-top:1px solid #000;
	font-size: 0.8em;
	color: #ff00ff;
}



/* _____________________________________CONTACT FORM _______________________________________*/

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  
  background-color: #eeeeee;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2px; /* Add a top margin */
  margin-bottom: 2px; /* Bottom margin */
  width: 100%; /* Full width */
  padding: 1em; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}




/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #0000cc;
  color: white;
  font-size: 0.75em;
  display: block;
  margin-left: auto;
  margin-right: auto;
   margin-top: 20px;
  width: 16%;
  border-radius: 4px;
  cursor: pointer;
  }


/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #000088;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #fff;
  padding: 20px;
}

  #myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: 1px solid #333333;; /* Remove borders */
  transition-duration: 0.8s;
  outline: none; /* Remove outline */
  background-color: #0000aa; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 11px; /* Increase font size */
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}


/* _____________________________________SEARCH _______________________________________*/
.search {
  margin: auto;
  width: 50%;
  padding: 9em 2em 1em 2em;
  border: 1px #cccccc solid;
  border-radius: 10px;
  background-color: #ffffff;
  opacity: 0.8;
  font-family: Helvetica, Verdana, Arial, sans-serif;
  font-size: 1.5em; 
/*   color: #0000ee;*/
  box-shadow: 5px 10px 18px #888888
}


