/* --------------------------------------------------------------
       grid.css
       * Sets up an easy-to-use grid of 24 columns.

       By default, the grid is 950px wide, with 24 columns
       spanning 30px, and a 10px margin between columns.
-------------------------------------------------------------- */
/* A container should group all your columns. */
/* Use this class on any div.span / container to see the grid. */
/* Columns
-------------------------------------------------------------- */
/* Sets up basic grid floating and margin. */
/* Use these classes to set the width of a column. */
/* Add these to a column to append empty cols. */
/* Add these to a column to prepend empty cols. */
/* Use these classes on an element to push it into the
next column, or to pull it into the previous column.  */
/* The last column in a row needs this class. */
/* Use these classes to set the width of an input or textarea. */
/* Border on right hand side of a column. */
/* Border with more whitespace, spans one column. */
/* Misc classes and elements
-------------------------------------------------------------- */
/* In case you need to add a gutter above/below an element */
/* Use a .box to create a padded box inside a column.  */
/* Use this to create a horizontal ruler across a column. */
hr {
  background: #ddd;
  color: #ddd;
  clear: both;
  float: none;
  width: 100%;
  height: .1em;
  margin: 0 0 1.45em;
  border: none;
}
hr.space {
  background: #fff;
  color: #fff;
  visibility: hidden;
}
/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */
/* Regular clearing
   apply to column that should drop below previous ones. */
/*
    Developed by anthonyvscode.com
    This solution is to be used in the dotless implemention of less css: http://www.dotlesscss.org/
*/
/*Border Radius Functions*/
/*
.border_radius(@radius_top, @radius_bottom)
{
    .border_radius(@radius_top, @radius_top, @radius_bottom, @radius_bottom);
}

.border_radius(@radius_top_left, @radius_top_right, @radius_bottom_right, @radius_bottom_left)
{
    -webkit-border-radius:@radius_top_left @radius_top_right @radius_bottom_right @radius_bottom_left;
    -moz-border-radius:@radius_top_left @radius_top_right @radius_bottom_right @radius_bottom_left;
    border-radius:@radius_top_left @radius_top_right @radius_bottom_right @radius_bottom_left;
}
*/
/*Shadows*/
/*Transformations*/
/*
.opacity(@op:100)
{
    filter:alpha(opacity=@op);
    -moz-opacity:@op/100;
    -khtml-opacity:@op/100;
    opacity:@op/100;
}
*/
.borders {
  border: solid 1px #d5ddf7;
}
.button {
  float: left;
  height: 30px;
  cursor: pointer;
  overflow: hidden;
  background-color: transparent;
  border: none;
  padding: 0px;
  margin-top: -4px;
  margin-right: -5px;
}
.button .b-left, .button .b-center, .button .b-right {
  background-image: url(/sites/all/themes/custom/images/button/button.png);
  float: left;
  display: block;
  height: 30px;
}
.button .b-left, .button .b-right {
  width: 10px;
}
.button .b-left {
  background-repeat: no-repeat;
  background-position: left 0px;
}
.button .b-center {
  color: black;
  text-align: center;
  padding-top: 6px;
  background-repeat: repeat-x;
  background-position: 0px -40px;
}
.button .b-right {
  background-repeat: no-repeat;
  background-position: -10px -80px;
}
button.dark .b-left, button.dark .b-center, button.dark .b-right {
  background-image: url(/sites/all/themes/custom/images/button/button-dark.png);
  color: white;
}
.bnr {
  background-repeat: no-repeat;
}
.brx {
  background-repeat: repeat-x;
}
.bry {
  background-repeat: repeat-y;
}
body {
  background-color: #fff;
  font-family: "Trebuchet MS", sans-serif;
  background-image: url(/sites/all/themes/custom/images/bg/bg1.png);
  background-repeat: repeat-x;
}
body.home,
body.product,
body.frequently-asked-questions,
body.feedback,
body.contact-us {
  background-image: url(/sites/all/themes/custom/images/bg/bg3.png);
  background-repeat: repeat-x;
}
#main_bg {
  width: 950px;
  margin: 0 auto;
  display: block;
  clear: both;
  overflow: hidden;
  -webkit-border-radius: 10px 10px 0px 0px;
  -moz-border-radius: 10px 10px 0px 0px;
  border-radius: 10px 10px 0px 0px;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
  z-index: 2;
}
#ft_bg {
  display: block;
  position: relative;
  padding: 0px 30px 10px 30px;
  border-top: solid 2px #d5ddf7;
  background-color: #272727;
  z-index: 1;
}
#ft_bg :after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
}
#wrapper, #ft {
  width: 950px;
  margin: 0 auto;
  display: block;
  clear: both;
  overflow: hidden;
}
#before_hd,
#pre_hd,
#hd,
#post_hd,
#before_bd,
#bd,
#pre_content,
#content,
#content_main,
#post_content,
#after_bd,
#pre_ft_content,
#ft_content,
#post_ft_content {
  width: 950px;
  float: left;
  margin-right: 10px;
  margin-right: 0;
}
#hd {
  height: 100px;
}
#content {
  padding-top: 20px;
}
body.home #content {
  padding-top: 10px;
}
#after_bd {
  height: 20px;
}
#ft_content {
  height: 100px;
}
#content_left {
  width: 310px;
  float: left;
  margin-right: 10px;
  overflow: hidden;
}
#pre_content.with-left, #content_main.with-left, #post_content.with-left {
  width: 630px;
  float: left;
  margin-right: 10px;
  margin-right: 0px !important;
}
#content_main ul {
  margin-left: 30px;
}
#tabs .ui-widget-header {
  background: none !important;
  border: none !important;
}
#tabs, #tabs .ui-tabs-nav li, #tabs .ui-tabs-nav li a {
  padding: 0px;
  margin: 0px;
  border: none !important;
  background: none !important;
}
#tabs .ui-tabs-nav li {
  margin-right: 3px;
}
#tabs .ui-tabs-nav li a {
  position: relative;
  padding: 5px 10px;
  border: solid 1px #d5ddf7 !important;
  background-color: white !important;
  top: 5px !important;
  height: 20px;
  overflow: hidden;
}
#tabs .ui-tabs-nav li.ui-state-active a {
  border-bottom: none !important;
  height: 25px;
  top: 1px !important;
}
#tabs .ui-tabs-panel {
  border: solid 1px #d5ddf7;
  padding: 10px;
}
#tabs #plist td, #tabs .view-glossary td {
  text-align: center;
  height: 150px;
  padding: 5px;
  border: none !important;
  overflow: hidden;
  border-collapse: collapse;
  border-spacing: 0;
}
#tabs .view-glossary tr {
  height: 150px !important;
  overflow: hidden;
}
#tabs .view-glossary .plist-item, #tabs #plist td .plist-item {
  position: relative;
  border: solid 1px #d5ddf7;
  display: block;
  text-decoration: none;
}
#tabs .view-glossary td .plist-item *, #tabs #plist td .plist-item * {
  border: none !important;
}
#tabs .view-glossary td .plist-item:hover .name, #tabs #plist td .plist-item:hover .name {
  display: block;
}
#tabs .view-glossary td .name, #tabs #plist td .name {
  position: absolute;
  top: 0px;
  width: 144px;
  height: 139px;
  text-align: center;
  vertical-align: middle;
  background-color: black;
  opacity: 0.8;
  color: white !important;
  display: none;
  padding-top: 5px;
}
#tabs .view-glossary td .name a, #tabs #plist td .name a {
  color: white !important;
}
#tabs .view-glossary td .name .desc, #tabs #plist td .name .desc {
  font-size: 10px;
  line-height: 10px;
  display: block;
  clear: both;
  padding: 5px;
  padding-top: 10px;
}
#tabs .view-glossary td .image, #tabs #plist td .image {
  width: 125px;
  height: 125px;
  padding: 9px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
}
#hd #hd_left, #hd #hd_right {
  width: 470px;
  float: left;
  margin-right: 10px;
}
#hd #hd_right {
  margin-right: 0;
}
#hd #hd_left #logo {
  display: block;
  width: 320px;
  height: 150px;
  background-image: url(/sites/all/themes/custom/images/elements/logo.png);
  background-repeat: no-repeat;
  background-position: 5px -10px;
  text-indent: -5000em;
}
#block-menu-primary-links {
  display: block;
  display: block;
  float: right;
  margin-top: 10px;
  position: relative;
  padding-left: 50px;
}
#block-menu-primary-links :after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
}
#block-menu-primary-links ul li {
  float: left;
  list-style: none;
}
#block-menu-primary-links ul li a {
  position: relative;
  display: block;
  left: -1px;
  padding-right: 10px;
  padding-left: 10px;
  border-left: solid 1px #d5ddf7;
  border-right: solid 1px #d5ddf7;
}
#block-menu-primary-links ul li.last a {
  padding-right: 0px;
  border-right: none;
}
#block-menu-primary-links ul li ul {
  display: none;
}
#block-menu-primary-links ul li.expanded:hover {
  height: 33px;
}
#block-menu-primary-links ul li.expanded:hover a {
  background-color: white;
  height: 32px;
  display: block;
  z-index: 5;
}
#block-menu-primary-links ul li.expanded:hover ul {
  display: block;
  position: absolute;
  top: 30px;
  left: 30px;
  background-color: white;
  padding: 7px 0px 10px 0px;
  border: solid 1px #d5ddf7;
  border: solid 1px #d5ddf7;
  box-shadow: 0px 5px 5px #272727;
  -webkit-box-shadow: 0px 5px 5px #272727;
  -moz-box-shadow: 0px 5px 5px #272727;
  -webkit-border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  z-index: 1;
}
#block-menu-primary-links ul li.expanded:hover ul li a {
  color: #272727;
  height: auto;
}
#block-menu-primary-links ul li.expanded:hover ul li.last {
  padding-right: 10px;
}
.shopping-cart {
  float: right;
  font-size: 12px;
  position: absolute;
  right: 32px;
  text-align: right;
  top: 74px;
}
.shopping-cart, .shopping-cart a {
  color: black;
}
.products-menu {
  width: 670px;
  float: left;
  margin-right: 10px;
  background-image: url(/sites/all/themes/custom/images/elements/icons.png);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  height: 30px;
  position: relative;
}
.products-menu ul {
  margin-left: 30px;
  margin-top: 8px;
  border-left: solid 1px #d5ddf7;
}
.products-menu ul li {
  float: left;
  padding-right: 5px;
  padding-left: 5px;
  list-style: none;
  border-right: solid 1px #d5ddf7;
  font-size: 12px;
}
.products-menu ul li ul li {
  padding-right: 10px;
  padding-left: 10px;
  list-style: none;
  border-right: none;
}
.products-menu ul li a {
  color: white;
  text-decoration: none;
  margin-top: -3px;
}
.products-menu ul li ul {
  display: none;
}
.products-menu ul li:hover ul {
  display: block;
  position: absolute;
  left: 0px;
  top: 17px;
  padding: 20px 0px 10px 0px;
  margin-right: 15px;
  background: #272727;
  border: solid 1px #d5ddf7;
  border-top: none;
  box-shadow: 0px 5px 5px #272727;
  -webkit-box-shadow: 0px 5px 5px #272727;
  -moz-box-shadow: 0px 5px 5px #272727;
  -webkit-border-radius: 0px 0px 5px 5px;
  -moz-border-radius: 0px 0px 5px 5px;
  border-radius: 0px 0px 5px 5px;
  z-index: 4000;
}
.searchbar {
  background-image: url(/sites/all/themes/custom/images/elements/icons.png);
  background-repeat: no-repeat;
  background-position: 0px -35px;
  width: 270px;
  float: left;
  margin-right: 10px;
  margin-right: 0;
  float: right;
  height: 30px;
  margin-top: 2px;
}
.searchbar form {
  float: right;
  margin-top: 4px;
  padding-left: 25px;
}
.searchbar form label, .searchbar form input[type=submit] {
  display: none;
}
.searchbar form .form-item {
  margin: 0px !important;
  float: left;
}
.searchbar form input[type=text] {
  float: left;
  width: 160px;
}
#ft .block-menu ul {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: auto;
}
#ft .block-menu li {
  float: left;
  padding: 10px;
}
#ft .block-menu li a {
  color: white;
}
#pre_content #left_box {
  width: 630px;
  float: left;
  margin-right: 10px;
  background-color: white;
  background-image: url(/sites/all/themes/custom/images/bg/box1.png);
  background-repeat: no-repeat;
  background-position: 5px 10px;
}
#pre_content #right_box {
  width: 310px;
  float: left;
  margin-right: 10px;
  margin-right: 0;
  background-color: white;
  background-image: url(/sites/all/themes/custom/images/bg/words.png);
  background-repeat: no-repeat;
  background-position: center center;
}
#pre_content #left_box .box, #pre_content #right_box .box {
  border: solid 1px #d5ddf7;
  height: 298px;
}
.recently-viewed .item-list ul, .recently-viewed .item-list ul li {
  list-style: none;
  margin-left: 0px;
}
.recently-viewed .item-list ul li .views-field-field-image-cache-fid {
  float: left;
  clear: none;
  margin-right: 5px;
  margin-bottom: 5px;
  border: solid 1px #d5ddf7;
  width: 58px;
  height: 58px;
  padding: 7px 0px 0px 7px;
}
.recently-viewed .item-list ul li:hover .hidden-data {
  display: block;
}
.recently-viewed .item-list ul li {
  float: left;
}
.recently-viewed .item-list ul li .hidden-data {
  position: absolute;
  top: 75%;
  left: 0px;
  padding: 5px;
  width: 200px;
  border: solid 1px #d5ddf7;
  background-color: #272727;
  display: none;
  z-index: 1000;
  box-shadow: 0px 5px 5px #272727;
  -webkit-box-shadow: 0px 5px 5px #272727;
  -moz-box-shadow: 0px 5px 5px #272727;
  -webkit-border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  color: white;
}
.recently-viewed .item-list ul li .selling-price {
  float: right;
  clear: both;
}
body.feedback #comments {
  position: relative;
  top: 15px;
  padding-bottom: 40px;
}
body.frequently-asked-questions #comments {
  position: relative;
  top: 20px;
  padding-bottom: 40px;
}
#comments h2 {
  display: none;
}
.twitter-list .twtr-hd, .twitter-list .twtr-ft, .twitter-list h2 {
  display: none;
}
.twitter-list {
  height: 275px;
  width: 300px;
  overflow: hidden;
}
body.home .twitter-list {
  margin-top: 5px;
}

.twitter-list a{
	color:#272727 !important;
}

body.home .wp-logo, body.home .twitter-list {
  border: solid 1px #d5ddf7;
  -webkit-border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}
body.home .wp-logo {
  width: 300px;
  margin-top: 10px;
}
body.home .twitter-list h2 {
  display: block;
  font-size: 17px;
  margin-left: 10px;
  margin-top: 8px;
  margin-bottom: 13px;
}
.wp-logo{
	width:300px;
}

.featured-products {
  width: 670px;
  float: left;
  margin-right: 10px;
  height: 296px;
  margin-top: 10px;
  background-color: white;
  border: solid 1px #d5ddf7;
  position: relative;
  width: 655px !important;
}
.featured-products .views_slideshow_singleframe_slide .views-field-field-image-cache-fid {
  float: left;
  width: 300px;
  margin-left: 25px;
  margin-top: 30px;
  text-align: center;
}
.featured-products .views_slideshow_singleframe_slide .views-field-title {
  float: left;
  width: 300px;
  font-size: 150%;
  line-height: 120%;
  margin-top: 25px;
  color: black;
  text-decoration: none;
  text-align: right;
}
.featured-products .views_slideshow_singleframe_slide .views-field-title a {
  color: black;
  text-decoration: none;
  margin-right: 25px;
}
.featured-products .views_slideshow_singleframe_slide .views-field-phpcode {
  float: left;
  width: 300px;
  margin-top: 0px;
  text-align: right;
  margin-right: 25px;
}
.featured-products .views_slideshow_singleframe_slide .views-field-phpcode ul {
  margin-left: 18px;
}
.featured-products .views_slideshow_singleframe_slide .views-field-phpcode ul li {
  list-style: none;
}
.featured-products .views-slideshow-controls-bottom {
  position: absolute;
  bottom: 20px;
  right: 25px;
}
.featured-products .pager-item {
  float: left;
  margin-left: -15px;
}
.featured-products .pager-item a {
  float: left;
  display: block;
  width: 23px;
  height: 23px;
  text-indent: -5000em;
  background-image: url(/sites/all/themes/custom/images/elements/pagination.png);
  background-position: top right;
  background-repeat: no-repeat;
}
.featured-products .pager-item a:hover, .featured-products .activeSlide a {
  background-position: top left;
}
.catalog #content_main .item-list {
  text-align: center;
  margin-top: 20px;
}
.catalog #content_main .item-list .pager {
  margin-left: 0px;
  display: inline;
}
.catalog #content_main .item-list .pager li {
  display: inline-block;
}
.catalog #content_main .item-list .pager .pager-last, .catalog #content_main .item-list .pager .pager-next {
  display: none;
}
.catalog #content_main ul.uc-categories {
  display: none;
}
#catalog-filters {
  height: 20px;
  overflow: hidden;
  position: relative;
}
.filter-extra {
  display: none !important;
}
.catalog-filter {
  float: left;
  clear: none;
  display: block;
  width: 195px;
  text-align: left;
}
.catalog-filter.filter-limit select {
  float: right;
  width: 138px;
  margin-right: 7px;
}
.catalog-filter.filter-mode {
  width: 190px;
  height: 20px;
  border: none;
}
.catalog-filter.filter-order {
  padding-left: 12px;
  width: 192px;
}
.catalog-filter.filter-order select {
  float: right;
  width: 145px;
  margin-right: 7px;
}
.catalog-filter.last {
  float: right;
  width: 17px;
  text-align: center;
  position: absolute;
  right: 14px;
  border-left: solid 1px #eee;
}
.catalog-filter.last a {
  margin-left: 6px;
}
.filter-mode a, .filter-mode strong {
  display: block;
  float: left;
  overflow: hidden;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 55px;
}
.category-grid-products table {
  width: 630px !important;
}
.category-grid-products td {
  padding: 10px;
  width: 190px !important;
}
.category-grid-products td * {
  width: auto !important;
}
.category-grid-products td select {
  width: 200px;
  overflow: hidden;
}
.category-table-products table.category-products {
  width: 630px !important;
}
.category-table-products table.category-products tr {
  vertical-align: middle;
}
.category-table-products table.category-products tr.odd {
  background-color: white;
}
.category-table-products table.category-products td {
  padding: 10px;
  vertical-align: top;
}
.category-table-products table.category-products td form {
  float: right;
  margin: 0px;
  padding: 0px;
}
.category-table-products table.category-products tbody tr td:first-child {
  text-align: center;
}
.category-table-products table.category-products tbody tr td:last-child {
  padding-right: 0px;
}
.category-list-products {
  width: 630px !important;
}
.category-list-products .node-type-product {
  padding: 10px;
  vertical-align: top;
  border-bottom: solid 1px #d5ddf7;
  margin-bottom: 10px;
}
.category-list-products .node-type-product h2 {
  line-height: 120%;
}
.category-list-products .node-type-product .nd-region-right {
  float: right;
  margin-right: -10px;
  text-align: right;
}
.category-list-products .node-type-product .nd-region-right form {
  float: right;
}
.category-list-products .node-type-product .field-product-image {
  text-align: center;
}
.category-list-products .node-type-product .body-teaser ul li {
  margin-bottom: 3px;
}
body.product #content_main .content {
  position: relative;
}
body.product #content_main h1 {
  width: 790px;
  float: left;
  margin-right: 10px;
  margin-bottom: 5px;
}
body.product #content_main .product-info.model, body.product #content_main .product-info.product.sell, .product-info.weight {
  display: none;
}
body.product #content_main .product-info.product.display {
  width: 150px;
  float: left;
  margin-right: 10px;
  margin: 0px;
  margin-right: 0;
}
body.product #content_main .product-info.product.display .uc-price {
  width: auto;
  padding-left: 0px;
  text-align: right;
  float: right;
}
body.product #content_main .product-image {
  position: relative;
  right: 6px;
  width: 950px;
  float: left;
  margin-right: 10px;
  margin-right: 0;
  height: 245px;
  background-color: white;
  overflow: hidden;
  margin-right: 0px;
  margin-top: 6px;
  vertical-align: middle;
}
body.product #content_main .product-image .main-product-image {
  display: inline;
}
body.product #content_main .product-image .more-product-images {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 50px;
  height: 215px;
  padding: 10px;
  overflow: hidden;
  border: solid 1px #eee;
}
body.product #content_main .product-body {
  width: 950px;
  float: left;
  margin-right: 10px;
  margin-right: 0;
  margin-top: 25px;
}
body.product #content_main .add-to-cart {
  float: right;
}
body.product #content_main .add-to-cart inputbody.product #content_main .add-to-cart select {
  float: right;
  text-align: right;
}
body.product #content_main .field-field-feat {
  display: none;
}
#cart-form-products {
  text-align: center;
}
#cart-form-products * {
  border-color: #d5ddf7;
}
#cart-form-products table {
  text-align: center;
  margin-left: auto;
  margin-left: auto;
}
#cart-form-products table thead th, #cart-form-products table .subtotal {
  background-color: #272727;
  color: white;
  padding: 5px;
}
#cart-form-products table th, #cart-form-products table td {
  padding: 10px;
}
#cart-form-products table tr.even {
  background-color: white !important;
}
#cart-related-products, #cart-related-products table {
  width: 950px;
  float: left;
  margin-right: 10px;
  margin-right: 0;
}
#cart-related-products table .cart-related-item {
  width: 231px;
}
#cart-related-products table .cart-related-item .upsell-block-product-title {
  display: block;
}
#cart-related-products table .cart-related-item .upsell-block-product-title :after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
}
#cart-related-products table .cart-related-item a.buy-related-item {
  height: 75px;
}
#cart-related-products table .cart-related-item {
  width: 229px;
}
#cart-pane legend, #simple_quote-pane, #simple_quote-pane {
  display: none;
}
#cart-pane table thead th, #cart-pane table .subtotal {
  background-color: #272727;
  color: white;
  padding: 5px;
}
#cart-pane table th, #cart-pane table td {
  padding: 10px;
}
#cart-pane table tr.even {
  background-color: white !important;
}
#cart-pane,
#customer-pane,
#delivery-pane,
#billing-pane,
#simple_quote-pane,
#simple_quote-pane,
#comments-pane,
#cart-pane table {
  width: 950px;
  float: left;
  margin-right: 10px;
  margin-right: 0;
  margin-bottom: 10px;
}
#customer-pane,
#delivery-pane,
#billing-pane,
#simple_quote-pane,
#simple_quote-pane,
#comments-pane,
#cart-pane table {
  padding: 10px 20px;
}
#customer-pane div, #delivery-pane div {
  text-align: left;
  margin-top: 5px;
}
#customer-pane div a {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
#delivery-pane, #billing-pane {
  display: block;
  width: 420px;
  overflow: hidden;
  float: left;
  clear: none;
  border: 1px solid #d5ddf7;
}
#delivery-pane select, #billing-pane select {
  width: 226px !important;
  margin-left: 20px;
}
#delivery-pane #edit-panes-delivery-delivery-address-select-wrapper select, #billing-pane #edit-panes-billing-billing-address-select-wrapper select {
  width: 200px !important;
}
#delivery-pane .field-label, #billing-pane .field-label {
  width: 165px !important;
}
#delivery-pane input, #billing-pane input {
  width: 220px !important;
  float: right;
  margin-left: 20px;
}
#billing-pane input.form-checkbox {
  width: 20px !important;
  float: right;
  margin-left: 20px;
}
#delivery-pane .description {
  margin-top: 16px;
  margin-bottom: 20px;
}
#billing-pane .description {
  display: none;
}
#billing-pane {
  float: right;
}
#customer-pane {
  border: 1px solid #d5ddf7;
  width: 908px;
}
#comments-pane {
  width: 950px;
  float: left;
  margin-right: 10px;
  margin-right: 0;
  border: 1px solid #d5ddf7;
  width: 908px;
}
#comments-pane textarea {
  width: 900px;
  max-width: 900px;
}
#comments-pane .grippie {
  width: 905px;
  max-width: 905px;
}
#checkout-form-bottom {
  width: 950px;
  float: left;
  margin-right: 10px;
  margin-right: 0;
  border: none;
}
.order-review-table {
  width: 950px;
  float: left;
  margin-right: 10px;
  margin-right: 0;
  text-align: center;
}
.order-review-table table {
  width: 940px;
}
.order-review-table table thead th, .order-review-table table .subtotal {
  background-color: #272727;
  color: white;
  padding: 5px;
}
.order-review-table table th, .order-review-table table td {
  padding: 10px;
  text-align: left !important;
}
.order-review-table table tr.even {
  background-color: white !important;
}
.order-review-table .title-col {
  font-weight: bold;
  padding-bottom: 20px;
  padding-left: 3em;
  padding-top: 20px;
  text-align: left;
  width: 140px;
}
.order-review-table .data-col {
  padding-right: 3em;
  text-align: left;
}
.search-grid {
  float: left;
  width: 270px;
  float: left;
  margin-right: 10px;
  margin-top: 11px;
  padding-top: 40px;
  background-color: white;
  height: 256px;
  padding-left: 6px;
  padding-right: 6px;
  margin-right: 0;
}
.search-grid img {
  width: 270px;
}
.no-products {
  padding: 20px;
  text-align: center;
}
.uc-order-history {
  width: 960px;
}
.uc-order-history thead th {
  background-color: #272727;
  color: white;
  padding: 5px;
}
.uc-order-history thead th a {
  color: white;
}
.uc-order-history th, .uc-order-history td {
  padding: 10px;
  text-align: left !important;
}
.list_address table .pane-title-row {
  background-color: #272727;
  color: white;
  padding: 5px;
}
.list_address table .addresses-default-address-label {
  padding: 15px 5px;
}
.list_address table {
  width: 960px;
}
.list_address table .title-col {
  width: 150px;
}
.letters {
  margin-left: 24px;
  margin-bottom: 10px;
}
.letters a {
  padding: 0px 2px;
  text-transform: uppercase;
}
.letters a.active {
  font-weight: bold;
  text-decoration: none;
  color: black;
}


