@charset "utf-8";
/* CSS Document */

body {
	font-family: Segoe UI, Helvetica, Arial, Sans-Serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight:bold;
}

.navcontainer-bentons {
	min-height:100px;
}

.navbar-header {
	float:none;
}

.navbar-bentons {
  /*background-color: #887469;
  border-color: #e7e7e7;*/
}

.breadcrumb {
	background-color:white;
	
}


.jumbotron h1 {
	color:black;
}

.jumbotron p {
	color:black;
}

.page-header {
margin-top:0px;
}

.btn-bentonstrade {
  color: #ffffff;
  background-color: #151F6D;
  border-color: #151F6D;
}

.btn-bentonstrade:hover,
.btn-bentonstrade:focus,
.btn-bentonstrade:active,
.btn-bentonstrade.active,
.open .dropdown-toggle.btn-bentonstrade {
  color: #ffffff;
  background-color: #151F6D;
  border-color: #151F6D;
}

.btn-bentonsbathrooms {
  color: #ffffff;
  background-color: #323233;
  border-color: #323233;
}

.btn-bentonsbathrooms:hover,
.btn-bentonsbathrooms:focus,
.btn-bentonsbathrooms:active,
.btn-bentonsbathrooms.active,
.open .dropdown-toggle.btn-bentonsbathrooms {
  color: #ffffff;
  background-color: #323233;
  border-color: #323233;
}

.btn-bentonsgas {
  color: #ffffff;
  background-color: #FE0000;
  border-color: #FE0000;
}

.btn-bentonsgas:hover,
.btn-bentonsgas:focus,
.btn-bentonsgas:active,
.btn-bentonsgas.active,
.open .dropdown-toggle.btn-bentonsgas {
  color: #ffffff;
  background-color: #FE0000;
  border-color: #FE0000;
}

.btn-bentonsgas .caret {
color: #FFFFFF;
}

.offset4{margin-left:340px}.offset3{margin-left:245px}.offset2{margin-left:180px}.offset1{margin-left:100px}

.BentonsBathroomsHeader {
	background:#323233;
	padding: 10px 0 10px 0;
}

.BentonsGasHeader {
	background:#FE0000;
	padding: 10px 0 10px 0;
}

.BentonsTradeHeader {
	background:#151F6D;
	padding: 4px 0 4px 0;
}

.white-caret
{
	border-top-color: white !important;
	border-bottom-color: white !important;
}

.StoreTypeInfo {
	width:400px; 
	padding:20px;
}

.dropdown-split-left-custom a {
	padding-right:1px;	
}

.dropdown-split-right-custom a.dropdown-toggle {
	padding-left:1px;
	padding-right:1px;
}

.navbar-collapse {
  max-height:none;
}

/*CSS for Hover Menus for Touch Devices */
/* http://stackoverflow.com/questions/20734462/bootstrap-clickable-menu-on-hover */
/* http://cameronspear.com/blog/bootstrap-dropdown-on-hover-plugin/ */
.touch .mobile-link {display:block;}
.no-touch .mobile-link {display:none}

/*.carousel {
	height:auto;	
}

.carousel img {
	height:auto;	
}

.carousel-inner > .item > img {
    position: absolute;
    top: 0px;
    left: 0px;
    min-width: 100%;
    height: auto;
}*/


/* CSS for Centering Content Vertically within a responsive column*/
/* http://www.bootply.com/94394 */
.center-row {
	display:table;
}

.center-vertical {
  	display:table-cell;
    vertical-align:middle;
    float:none;
}

.vcenter {
    /*display: inline-block;
    vertical-align: middle;
    float: none;*/
	
}

/* Start Product Table Styles */

.ProductCellTable {
    width: 100%;
    padding-right: 6px;
    padding-left: 6px;
    margin-bottom: 20px;
}

.ProductCellImageColumn {
    vertical-align: top;
    text-align: center;
    width: 140px; /*Max Image Width is 130px*/
    height: 110px; /*Max Image Width is 100px*/
}

.ProductCellTextColumn {
    vertical-align: top;
    text-align: left;
}

    .ProductCellTextColumn .ProductName {
        font-weight: bold;
    }


/* End Product Table Styles*/

.panel-padding12 {
		padding: 6px 12px 6px 12px;	
	}
	
.img-responsive-padding12 {
	padding-bottom:12px;	
}

.padding12 {
	padding-bottom:12px;	
}

 .marginbottom12 {
            margin-bottom:12px;
        }
		
		
/*Override Carousel Indicators to remove Gradient Backgrounds*/		

.left.carousel-control {
	background:none;
}

.right.carousel-control {
	background:none;
}

.carousel-control:hover, .carousel-control:focus
{
	color:#887469;	
}


.carousel-indicators {
	bottom:0px;	
	margin-bottom:0px;	
}

/* Styles for Logo Image Grid */

.logoimagetable {
    min-height: 120px; 
    min-width: 200px; 
    vertical-align: middle;
}

 .imagegridcell {
	        min-height:120px;
            min-width:200px;
            padding-bottom:20px;
			width:auto;
        }


/********************************************/
/* Styles for Multi Level Drop Down Menu    */
/********************************************/

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

/********************************************/


@media print {
    a[href]:after {
        /*content: " (" attr(href) ")"; Original Value*/
        /*Overrides the printing of URLs in the Print View*/
        content: none;
    }
}


.topnav {
	background-color:black; 
	padding-top:4px; 
	padding-bottom:4px; margin-bottom:-10px;
}

.topnavlinks a {
	color:white;
	padding-left:10px;
	/*font-weight:bold;*/
}