/* CSS Information
-----------------------------------------------------------
Author: Jaymie Jones
Author Company: ionline
-----------------------------------------------------------*/
/* Summary
-----------------------------------------------------------
01. Base Element Declarations
02. Base Element Containers
03. Base Element Classes
04. General Styles
-----------------------------------------------------------*/
/* @group 01. Base element declarations
-----------------------------------------------------------*/
body, td, th {
  color: gray;
  font-family: helvetica, arial, sans-serif;
  font-size: 12px; }

body, #wysiwyg {
  background-color: #fff !important;
  background-image: none !important;
  line-height: 1.3; }

a, a:visited { color: #0069aa; }

a:link { text-decoration: underline; }

a:visited { color: #0069aa; text-decoration: underline; }

a:hover {
  text-decoration: none; }

a:active {
  text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  color: #231f20;
  text-transform: capitalize; }

fieldset {
  border: 1px solid gray;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px; }

legend {
  border: 1px solid #b7b9ba;
  border-bottom: none;
  margin-left: 10px;
  padding: 3px 10px 0 10px;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0; }

strong, label, legend, blockquote, abbr, acronym {
  font-weight: bold; }

em, blockquote {
  font-style: italic; }

blockquote {
  font-family: georgia, serif;
  font-size: 20px;
  margin: 25px; }

th {
  background-color: #b7b9ba;
  color: #fff; }

th, td {
  padding: 3px; }

tr.even td {
  background-color: #f0f1f1; }

pre {
  background-color: #f8f8f8;
  border-left: 2px solid #b7b9ba;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

pre:hover {
  border-left: 2px solid green; }

/* @end */
/* @group 02. Base element containers
-----------------------------------------------------------*/
#container {
  background-color: #e8e8e8; }

#wrapper {
  margin: 0 auto;
  padding-bottom: 15px;
  width: 1024px; }

#header {
  background: transparent url(../images/bg-header.png) top left no-repeat;
  height: 129px;
  margin-bottom: 10px;
  position: relative; }

#content-wrap, #footer-wrap {
  background-color: #fff; }

#slideshow, #slideshow img {
  background-color: #000;
  color: #fff;
  height: 330px;
  overflow: hidden;
  -moz-border-radius: 15px 15px 0 0;
  -ms-border-radius: 15px 15px 0 0;
  -o-border-radius: 15px 15px 0 0;
  -webkit-border-radius: 15px 15px 0 0;
  border-radius: 15px 15px 0 0; }

#content-wrap { border: 1px solid #b7b9ba; padding: 15px 55px 30px 55px; }

#footer-wrap {
  border-right: 1px solid #b7b9ba;
  border-bottom: 1px solid #b7b9ba;
  border-left: 1px solid #b7b9ba;
  font-size: 11px;
  overflow: hidden;
  padding: 23px 55px;
  -moz-border-radius: 0 0 15px 15px;
  -ms-border-radius: 0 0 15px 15px;
  -o-border-radius: 0 0 15px 15px;
  -webkit-border-radius: 0 0 15px 15px;
  border-radius: 0 0 15px 15px; }

/* @end */
/* @group 03. Base element classes
-----------------------------------------------------------*/
/* Clearfix
/* -------------- */
/* slightly enhanced, universal clearfix hack */
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0; }

.clearfix {
  display: inline-block; }

/* start commented backslash hack \*/
* html .clearfix {
  height: 1%; }

.clearfix {
  display: block; }

/* stop commented backslash hack */

.out-of-stock { color: red; }

.prevnext { height: 45px; padding: 10px 0; }

/* Buttons
-------------------------*/
button, .button, .form-submit {
  border: none;
  border-top: 1px solid #0088dd;
  color: #fff;
  font-weight: bold;
  padding: 5px 12px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=lighten($primary-link-color, 20%), endColorstr=$primary-link-color);
  background-image: -moz-linear-gradient(top, #11a4ff, #0069aa);
  background-image: -ms-linear-gradient(top, #11a4ff, #0069aa);
  background-image: -o-linear-gradient(top, #11a4ff, #0069aa);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#11a4ff), to(#0069aa));
  background-image: -webkit-linear-gradient(top, #11a4ff, #0069aa);
  background-image: linear-gradient(top, #11a4ff, #0069aa); }

button:hover, .button:hover, .form-submit:hover {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=lighten($primary-link-color, 20%), endColorstr=$primary-link-color);
  background-image: -moz-linear-gradient(top, #2aaeff, #0079c3);
  background-image: -ms-linear-gradient(top, #2aaeff, #0079c3);
  background-image: -o-linear-gradient(top, #2aaeff, #0079c3);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#2aaeff), to(#0079c3));
  background-image: -webkit-linear-gradient(top, #2aaeff, #0079c3);
  background-image: linear-gradient(top, #2aaeff, #0079c3); }

/* Navigation
-------------------------*/
.nav ul, .nav li {
  margin: 0;
  padding: 0; }

.nav li {
  display: block;
  float: left;
  list-style-type: none; }

/* Social
-------------------------*/
.social-links li {
  display: block;
  float: left;
  list-style-type: none;
  margin-left: 12px; }

.social-links li:first-child {
  margin-left: 0; }

.social-links a {
  display: block;
  height: 33px;
  overflow: hidden;
  width: 33px; }

.social-links a span {
  display: none; }

/* Forms
-------------------------*/

fieldset.form, .form legend { border: none; }

.form legend { color: #231F20; font-size: 16px; margin: 0 0 10px 0 ; padding: 0; }

.form ul, .page_7 #contact-form li { margin: 0; padding: 0; }

.form li { list-style-type: none; margin-bottom: 5px !important; overflow: hidden; }

.form label { display: block; float: left; padding-right: 10px; width: 70px; }

.form .input, .form textarea, .form select { width: 160px; }

.form .captcha { border: 1px solid #eee; }

/* @end */

/* @group 04. General Styles
-----------------------------------------------------------*/
/* Header
-------------------------*/
#logo, #nav-wrap, #header-brochures {
  position: absolute; }

#logo {
  left: 32px;
  top: 12px; z-index: 71; }

#nav-wrap {
  bottom: 0;
  left: 77px; z-index: 70; }

  #header-brochures { bottom: 0; display: block; right: -45px; z-index: 70;}

#nav-wrap li:first-child { background: transparent url(../images/bg-divider.png) bottom left no-repeat; }

#nav-wrap li { position: relative; }

#nav-wrap li a {
  background: transparent url(../images/bg-divider.png) bottom right no-repeat;
  display: block;
  color: #fff;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  text-decoration: none;
}

#nav-wrap li ul {
  display: none;
  left: 0;
  position: absolute;
  top: 100%;
  z-index: 70;
}

#nav-wrap li:hover ul { display: block; }

#nav-wrap li li a {
  background-color: #005497;
  background-image: none;
  border-bottom: 1px solid #003153;
  font-size: 11px;
  height: auto;
  line-height: normal;
  padding: 5px 10px;
  width: 140px;
}

#nav-wrap li li a:hover { background-color: #003153; }

/* Content
-------------------------*/

#top-panels { margin-bottom: 15px; overflow: hidden; }

#top-panels ul, #top-panels li { margin: 0; padding: 0; }

#top-panels li { float: left; list-style-type: none; margin-right: 13px; }

#top-panels li.last { margin-right: 0; }

.article {
  border-bottom: 1px solid #eee;
  clear: both;
  margin-bottom: 8px;
  overflow: hidden;
  padding-bottom: 8px;
}

.article .thumb {
  display: block;
  float: left;
  height: 120px;
  overflow: hidden;
  width: 180px;
}

.article .thumb img { max-width: 180px; }

.article .details { margin-left: 200px; }

.article .heading { color: #000; font-size: 14px; }

.article .date { font-size: 11px; }

#ticker-wrap {
  background: transparent url(../images/ticker.png) top left no-repeat;
  height: 47px;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
  width: 914px;
}

#ticker-wrap a {
  height: 47px;
  left: 0;
  position: absolute;
  top: 0;
  width: 914px;
  z-index: 70;
}

#ticker-wrap ul, #ticker-wrap li { margin: 0; padding: 0; }

#ticker-text {
  height: 27px;
  left: 530px;
  line-height: 29px;
  overflow: hidden;
  position: absolute;
  top: 12px;
  width: 347px;
}

#ticker-text a { color: #B7B9BA; text-decoration: none; }

#bottom-panels { margin-bottom: 15px; overflow: hidden; }

#bottom-panels ul, #bottom-panels li { margin: 0; padding: 0; }

#bottom-panels li { float: left; list-style-type: none; margin-right: 17px; }

#bottom-panels li.last { margin-right: 0; }

.page_7 #content-wrap { overflow: hidden; }

.page_7 #content-main { float: left; width: 500px; }

.page_7 #contact-form { margin-top: 50px; margin-left: 530px; }

.page_7 #contact-form legend { color: #231F20; font-size: 16px; margin: 0 0 10px 0 ; }

#gallery_wrap .galleryimage {
  display: block;
  border: 1px solid #555;
  height: 70px;
  overflow: hidden;
  width: 110px;
}

#gallery_wrap .galleryimage:hover { border: 1px solid #222; }

#video_list { margin: 0; padding: 0; }

#video_list li {
  display: block;
  float: left;
  height: 170px;
  margin-bottom: 40px;
  padding-right: 17px;
  width: 215px;
}

#video_list li.last { padding-right: 0; }

#video_list li img { height: 140px; width: 215px; }

.product-section {
  background: #fff url(../images/bg-product-grid.png) top left repeat;
  clear: both;
  margin-left: -55px;
  overflow: hidden;
  padding: 0 70px;
  width: 882px;
}

.page_16 .product-section { background: #fff url(../images/bg-product-grid.png) top left repeat; }

.page_products h2.title, .page_16 h2.title {
  background-color: #005497;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  clear: both;
  color: #fff;
  font-size: 14px;
  font-weight: normal;
  height: 30px;
  line-height: 32px;
  margin: 0 0 0 15px;
  text-align: center;
  width: 210px;
}

#product_list .product {
  float: left;
  height: 130px;
  overflow: hidden;
  padding-top: 15px;
  width: 440px;
}

.page_16 #product_list .product {
  padding-right: 60px;
  width: 140px;
}

.page_16 #product_list .product.first, .page_16 #product_list .product.second { background: transparent url(../images/bg-plus.png) center right no-repeat; }

.page_16 #product_list .product.third { background: transparent url(../images/bg-equals.png) center right no-repeat; }

.page_16 #product_list .product.second, .page_16 #product_list .product.third { padding-left: 25px; }

.page_16 #product_list .product.total { line-height: 2.5; padding-left: 20px; width: 150px; }

#product_list .product-details { float: left; height: 110px; width: 250px; }

#product_list .product-details h3 { margin: 0 0 2px 0; }

.page_16 #product_list .product-details { width: 100%; }

#product_list .product.total h3 { font-size: 17px; }

.page_16 #product_list .product-details h3 { margin: 0; }

#product_list .product_image { height: 110px; margin-left: 280px; width: 110px; }

.page_16 #product_list .product_image { height: auto; margin-left: 0; padding-bottom: 5px; text-align: center; }

#product_list .product_image img { max-height: 90px; max-width: 110px; }

.page_16 #product_list .product_image img { max-height: 65px; min-height: 65px; }

#product_list .description, #product_list .price { margin-bottom: 10px; }

.page_16 #product_list .price { margin-bottom: 0; }

#product_list .price { color: #000; }

#product_list .moreinfo a { font-weight: normal; text-decoration: none; }

#view_product_details { overflow: hidden; }

#view_details_stock_images { overflow: hidden; width: 100%; }

#stockmainimage { margin-bottom: 10px; width: 400px; }

#stockmainimage img { max-width: 100%; }

#extrathumbs { margin: 0; overflow: hidden; padding: 0; }

#extrathumbs li {
  float: left;
  height: 160px;
  list-style-type: none;
  margin: 0 20px 20px 0;
  overflow: hidden;
  padding: 0 10px 10px 0;
  width: 195px;
}

#extrathumbs li.last { padding-right: 0; }

#extrathumbs img { max-width: 100%; }

#view_details_info h1 { margin-top: 0; }

#slideshow { position: relative; z-index: 50; }

#slideshow ul, #slideshow li { margin: 0; padding: 0; }

/* Document Folders */

.list_files { margin: 0; overflow: hidden; padding: 0; }

.list_files li { list-style-type: none; margin: 0; padding: 0; }

.list_files a {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  -moz-border-radius: 7px;
  -ms-border-radius: 7px;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  color: #231F20;
  display: block;
  font-weight: bold;
  line-height: 40px;
  margin-bottom: 5px;
  padding: 5px 10px;
  text-decoration: none;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.list_files a:hover { background-color: #e3e3e3; color: #0069aa; }

.list_files img { padding-right: 5px; vertical-align: middle; }

/* Footer
-------------------------*/
#footer-wrap a {
  color: gray;
  text-decoration: none; }

#copyright {
  float: left; }

#ionline {
  padding-top: 5px; }

#ionline img {
  vertical-align: middle; }

#footer-wrap .social-links {
  float: right; }

#footer-wrap .social-links li {
  text-align: right; }

#footer-wrap .social-links li.facebook {
  background: transparent url(../images/social-facebook.png) top left no-repeat; }

#footer-wrap .social-links li.twitter {
  background: transparent url(../images/social-twitter.png) top left no-repeat; }

#footer-wrap .social-links li.youtube {
  background: transparent url(../images/social-youtube.png) top left no-repeat; }

/* @end */

