﻿a {
	color: #444;
	text-decoration:none
}
a:visited {
	color: #444;
	text-decoration:none
}
a:hover {
	color: #666;
	text-decoration:none
}
* {
  box-sizing: border-box;
}
*{
  font-family: Arial, Helvetica, sans-serif
}
.hdr-bkgrnd {
	background-color:#000000;
	color:#f25900;
}
input[type=text]:focus {
  outline: 2px ridge #E64310;;
}

.shaded-table {
	margin:auto; 
	width:800px; 
	background-color:#CED2DB; 
	padding:10px; 
	border:1px #E64310 solid;
	border-radius:5px;
	box-shadow:5px 5px 7px gray;
}
.info_bub {
	cursor:pointer;
	border:1px black solid;
	height:16px; width:16px;
	border-radius:8px;
	font-size:12px;
	display:inline-block;
	vertical-align:top;
	text-align:center;
	margin:0px;
}
.text-center {
	text-align: center;
}
.auto-style4 {
	border: 1px solid #808080;
	text-align: center;
}
.cell-border-left {
	border: 1px solid #808080;
	text-align: left;
	padding-left:5px;
}
.cell-border-center {
	border: 1px solid #808080;
	text-align: center;
}
.text-left {
	text-align: left;
}
.text-right {
	text-align: right;
}

.text-color-white {
	color: #FFFFFF
}

.error {
	color: #FF0000;
}

/* Navbar container */
.navbar {
  overflow: hidden;
  background-color:#555555;
  font-family: Arial, Helvetica, sans-serif;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 5px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 5px 16px;
  background-color:#555555;
  font-family: inherit;
  margin: 0;
}

/* Add a background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #444;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #555555;
  min-width: 160px;
  box-shadow: 5px 5px 9px 0px rgba(0,50,0,0.5);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: whit;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #444;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Tooltip styles */

/* Information style tooltiip */

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 190px;
  background-color: #eee;
  color: #000;
  text-align: center;
  border:1px black solid;
  border-radius: 6px;
  padding: 5px 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -100px;
  opacity: 0;
  transition: opacity 0.3s;
}

.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;
}

/* Parts pictures style tooltiip */

.partstip {
  position: relative;
  display: inline-block;
}

.partstip .partstiptext {
  visibility: hidden;
  width: 510px;
  background-color: #eee;
  color: #000;
  text-align: center;
  border:1px black solid;
  border-radius: 6px;
  padding: 5px 5px;
  position: absolute;
  z-index: 1;
  bottom: -120%;
  right: 105%;
  margin-left: 0px;
  opacity: 0;
  transition: opacity 0.3s;
}

.partstip .partstiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.partstip:hover .partstiptext {
  visibility: visible;
  opacity: 1;
}

/* Parts popup style tooltiip */

.poptip {
  position:relative;
  display: inline-block;
}

.poptip .poptiptext {
  position:fixed;
  top:70px;
  left:50px;
  visibility: hidden;
  width: 200px;
  background-color: #CCFFCC;
  color: #000;
  text-align: center;
  border:2px #006600 solid;
  border-radius: 6px;
  padding: 5px 5px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}

.poptip:hover .poptiptext {
  visibility: visible;
  opacity: 1;
}
.button-large{
	height:28px;
	font-size:18px;
	background-color:#B7BDCA;
	border:1px #E64310 solid;
	cursor:pointer;
	box-shadow:1px 1px 2px gray;
	border-radius:5px;
	display:inline-block;
	padding:3px;
}

.left_slide {
  width: 100%;
  max-width:1000px;
  height: auto;
  position: fixed;
  top: 20px;
  background-color: rgba(255, 255, 255);
  text-align: center;
  overflow: hidden;
  left: -100%;
  -webkit-transition: left 0.6s, -webkit-transform 0.6s;
  transition: left 0.6s, -webkit-transform 0.6s;
  transition: left 0.6s, transform 0.6s;
  transition: left 0.6s, transform 0.6s, -webkit-transform 0.6s;
  z-index: 1;
  border:2px orange solid;
}
.left_slide .closebtn {
  position: absolute;
  top: 0;
  right: 0px;
  font-size: 36px;
  width: 30px;
  text-decoration:none;
  background-color:#800;
  color:#eee;
}
