body{
background-image:url(../ke_images/steel_textured_kick-plate_bkg.jpg);
text-align: center; /*centers our layout in some browsers*/
}

a:link {
color : #000000;
text-decoration : none;
font-weight: bold;
}
a:visited {
color : #565656;
text-decoration : none;
font-weight: bold;
}
a:active {
color : #000000;
text-decoration : none;
font-weight: bold;
}
a:hover {
color :#ee7744;
text-decoration : none;
font-weight: bold;
}

#container{
width: 955px; /*The width of our layout*/
margin-left: auto;
margin-right: auto;
/*Margin left and right set to auto center's our layout*/
text-align: left; /*Resets the text alignment*/
overflow:hidden
}

#banner{
width: 955px;
height: 90px;
}

#left{
width: 220px;
float: left;
background-color:#E9E6E1;
overflow:hidden;
padding-bottom: 5000px;
margin-bottom: -5000px;
}

#center{
width: 441px;
float: left;
margin-left: 0px;
margin-right: 0px;
background-color:#E9E6E1;
overflow:hidden;
padding-bottom: 2000px;
margin-bottom: -2000px;
}

#centerBody{
width: 735px;
float: left;
margin-left: 0px;
margin-right: 0px;
background-color:#E9E6E1;
overflow:hidden;
padding-bottom: 4000px;
margin-bottom: -4000px;
}

#right{
width: 294px;
float: right;
background-color:#E9E6E1;
padding-bottom: 2000px;
margin-bottom: -2000px;
}

#footer{
width: 955px;
float: left;
background-color:#999999;
text-align: center;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

div.thumb {
  float: left;
  margin: 20px;
  }
 
div.thumb p {
   text-align: center;
   }
  
div.tool {
  float: right;
  margin: 20px;
  border:0px solid #ff0000;
  }

div.tool p {
   text-align: center;
   font-weight: bold;
   font-size:14px;
   }

div.containerSize {
  border: 1px dashed #333;
  background-color: #E9E6E1;
  margin: 10px;
  }
div.spacer {
  clear: both;
  }

p {
color: black;
font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
margin-left: 10px;
margin-top: 5px;
margin-bottom: 5px;
margin-right: 5px;
font-size: 10pt 
}

.railText {
text-align: left;
color: black;
font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
font-size: 10pt;
margin-left: 10px;
margin-top: 5px;
margin-bottom: 5px;
margin-right: 5px
}

h1,h2,h3,h4,h5,h6 {
	text-align: left;
	color: #ee7744;
	font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
	font-weight:bold;
	margin-left: 10px;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-right: 0px
}

li.toolSpecs {
  font-size: 10pt;
  font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
 }

td {
font-size: 9pt;
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
}

li.inline {
  display: inline;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 5px;
  padding-top: 5px;
  border-right: 1px dotted #066;
  font-size: 8pt;
  font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
 }

li.last {
  display: inline;
  padding-left: 5px;
  padding-right: 3px;
  border-right: 0px;
  font-size: 8pt;
  font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
 }
  
ul.makeMenu, ul.makeMenu ul {
  width: 200px;                /* sets the size of the menu blocks */
  background-color: #ee7744;   /* makes the menu blocks KE Kools Red - a bg-color MUST be included for IE to work properly! */
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
}
ul.makeMenu li {
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #fff;                 /* sets the default font colour to white */
}
ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 0px;                    /* position slightly lower than the parent menu item */
  left: 160px;                  /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: #000;      /* gives the active menu items a black background */
  color: #fff;                 /* makes the active menu item text white */ 
}
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
}
ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
}
/* and some link styles */
ul.makeMenu li a { color: #fff; display: block; width: 100%; text-decoration: none; font-family: Arial, Helvetica, sans-serif; font-weight: bold; margin-left: 15pt; font-size: 10pt; line-height:22px; text-transform: uppercase }
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { color: #000; }
ul.makeMenu li:hover > a { color: #fff; } /* supports links in branch headings - should not be display: block; */
</style>
[if gt IE 5.0]><![if lt IE 7]>
<style type="text/css">
/* that IE 5+ conditional comment makes this only visible in IE 5+ */
ul.makeMenu li {  /* the behaviour to mimic the li:hover rules in IE 5+ */
  behavior: url( IEmen.htc );
}
ul.makeMenu ul {  /* copy of above declaration without the > selector, except left position is wrong */
  display: none; position: absolute; top: 2px; left: 78px;
}
<![endif]><![endif]
