/* undohtml.css */
/* (CC) 2004 Tantek Celik. Some Rights Reserved.             */
/*   http://creativecommons.org/licenses/by/2.0                   */
/* This style sheet is licensed under a Creative Commons License. */

/* Purpose: undo some of the default styling of common (X)HTML browsers */


/* link underlines tend to make hypertext less readable,
   because underlines obscure the shapes of the lower halves of words */
:link,:visited { text-decoration:none }

/* no list-markers by default, since lists are used more often for semantics */
ul,ol { list-style:none }

/* avoid browser default inconsistent heading font-sizes */
/* and pre/code too */
h2,h3,h4,h5,h6,pre,code { font-size:1em; }

/* remove the inconsistent (among browsers) default ul,ol padding or margin  */
/* the default spacing on headings does not match nor align with
   normal interline spacing at all, so let's get rid of it. */
/* zero out the spacing around pre, form, body, html, p, blockquote as well */
/* form elements are oddly inconsistent, and not quite CSS emulatable. */
/*  nonetheless strip their margin and padding as well */
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input
{ margin:0; padding:0 }

/* whoever thought blue linked image borders were a good idea? */
a img,:link img,:visited img { border:none }

/* de-italicize address */
address { font-style:normal }

/* more varnish stripping as necessary... */

/* lumina specific */

html {
  height:100%;
}

body {
  height:100%;
  text-align: center;
  font-size: .7em;
  font-family: Verdana, Arial, Sans-serif;
  background-color: white;
}

a {
  font-weight: bold;
}

h1 {
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
}

ul {
  list-style: square outside;
  font-weight: bold;
}

li {
  margin: .5em 0 .5em 0;
}

div#container {
  text-align: left;
  width: 850px;
  background-color: white;
  min-height:100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto -60px;
}

div#header {
  padding-left: 20px;
  width: 830px;
  height: 146px;
  background: white url(/images/logo.jpg) no-repeat top left;
  text-align: right;
}

div#call_today {
  margin-top: 5px;
  padding-right: 10px;
  float: right;
  height: 30px;
  width: 170px;
  background-color: white;
  color: red;
  font-weight: bold;
}

div#search_form {
  margin-top: 20px;
  margin-left: 500px;
  margin-right: 10px;
  float: right;
  height: 30px;
  width: 200px;
  background-color: white;
}

div#main_links {
  border-top: thin solid black;
  border-left: thin solid black;
  border-right: thin solid black;
  margin-top: 25px;
  margin-left: 150px;
  float: right;
  height: 15px;
  width: 460px;
  text-align: center;
  padding: 10px 5px 10px 5px;
  background-color: #f2f2f2;
}

span#product{
  font-size: 1.4em;
  font-weight: bold;
}

div#product_links{
  text-align: center;
  height: 20px;
  background-color: #00006F;
  padding: 10px 10px 10px 10px;
  color: white;
  border: 2px solid black;
}

div#content {
  text-align: left;
  padding-bottom: 50px;
  height: auto;
  background-color: #white;
}

div#left_column {
  float: left;
  margin-top: 10px;
  text-align: center;
}

div#left_menu {
  width: 230px;
  background-color: #00006F;
  padding: 10px 10px 10px 10px;
  color: white;
  height: auto;
  text-align: left;
  border: 2px solid black;
}

div#left_column {
  width: 230px;
  background-color: white;
}

div#right_column {
  width: 550px;
  margin-left: 270px;
  padding: 10px 10px 10px 10px;
  height: auto;
}

div#applications_img {
  text-align: center;
 }

div#one_column {
  padding: 40px 40px 0px 40px;
}

div#footer {
  width: 850px;
  height: 60px;
  text-align: center;
  border-top: 2px solid black;
  padding-top: 10px;
  background-color: white;
}

div.list {
  margin-left: 1em;
}

div#new_products {
  border: 1px solid black;
  margin-left: 220px;
  margin-right: 220px;
  margin-bottom: 20px;
}

div.new_product {
  text-align: center;
  width: 360px;
  height: 190px;
  padding: 5px 5px 5px 5px;
  margin: 0 auto;
}

div#right_data_sheets {
  text-align: center;
  float: right;
  width: 250px;
  border: 1px solid black;
  padding: 10px;
}

a.white {
  color: #dfdfdf;
  /* border-bottom: 1px dotted white; */
}

a.white:hover {
  color: #aaaaaa;
  border-bottom: 1px dotted white;
}

a.blue {
  color: #00006F;
}

a.blue:hover {
  color: #0000B2;
  border-bottom: 1px dotted #00006F;
}

a.top {
  color: white;
}

a.bottom {
  color: #00006F;
  border-bottom: 1px dotted #00006F;
}

div#overlay {
  width: 100%;
  margin: 0px;
  position: absolute;
  z-index: 1;
  background-color: #111111;
}

div#popup {
  position: absolute;
  left: 0px;
  border: solid 1px black;
  z-index: 2;
  background-color: white;
  padding: 20px 30px 30px 30px;
  opacity: 1.0;
  text-align: center;
}
