/*!
 * import from bootstrap.css v3.3.6
-------------------------------------------------- */
@import url(../bootstrap.min.css);


img {
  display: block;
  height: auto;
  max-width: 100%;
}


  
/* Navbar
-------------------------------------------------- */
.navbar-inline-container-no-wrap {
    display: inline-block;
    white-space: nowrap;
}
.navbar-set-color {
    background-color: #666;
    border-color: #6188f5;
}

/* To make all images responsive by default:
see: http://stackoverflow.com/questions/17932509/images-not-responsive-by-default-in-twitter-bootstrap-3/17933207#17933207
For Less use:
img {
  &:extend(.img-responsive);
}
Note: requires Less 1.4.0. see: http://stackoverflow.com/a/15573240/1596547
-------------------------------------------------- */
img {
  display: block;
  height: auto;
  max-width: 100%;
}



/* Carousel
-------------------------------------------------- */
.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 9%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    filter: alpha(opacity=30);
    opacity: .5;
}
.carousel-control.left {
    background-image: -webkit-linear-gradient(left, color-stop(rgba(40, 40, 40, .2) 0%), color-stop(rgba(0, 0, 0, .0001) 80%));
    background-image:         linear-gradient(to right, rgba(40, 40, 40, .2) 0%, rgba(0, 0, 0, .0001) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x;
}
.carousel-control.right {
    right: 0;
    left: auto;
    background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, .0001) 0%), color-stop(rgba(40, 40, 40, .2) 80%));
    background-image:         linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(40, 40, 40, .2) 80%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x;
}
/*lighten carousel nav bars (next and previous)*/
.carousel-control:hover,
.carousel-control:focus {
    color: #fff;
    text-decoration: none;
    filter: alpha(opacity=90);
    outline: none;
    opacity: .2;
}

.carousel-caption-overflow-thumb-pic {
    /*overflow:auto;*/
    height:62px;
    overflow-y: visible;
    overflow-x: hidden;
}

.carousel-caption-overflow-full-pic {
    /*overflow:auto;*/
    height:62px;
    overflow-y: visible;
    overflow-x: hidden;
}

.carousel-caption {
    position: static;
    right: 10%;
    bottom: 0px;
    left: 10%;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-right: 10%;
    padding-left: 10%;
    color: #666666;
    text-align: justify;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}
.carousel-indicators {
    top: 6px;
}
/* Carousel Misc - Overflow.
-------------------------------------------------- */
.overflow-carousel-caption-thumb {
    height:62px; overflow-y: visible; overflow-x: hidden;
}
.overflow-carousel-caption-full {
    height:62px; overflow-y: visible; overflow-x: hidden;
}



/* Form-Control
-------------------------------------------------- */
.our-form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
}
.navbar-centre-element {
    padding: 0px 0px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    margin-left: 15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
}
.required {
    color: rgb(255, 0, 0);
}
.form-group-squeeze-stack {
    padding-bottom: 4px;
    margin-right:4px;
}



/* Dropdowns
-------------------------------------------------- */
.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 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:#cccccc;margin-top:5px;margin-right:-10px;}
.dropdown-submenu:hover>a:after{border-left-color:#ffffff;}
.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;}



/* Misc.
-------------------------------------------------- */
.keep-inline {
    display: inline-block;
}
.keep-inline-no-wrap {
    display: inline-block;
    white-space: nowrap;
}
.no-wrap-container {
    white-space: nowrap;
}
/* Misc - Background Color Opacity.
see: http://stackoverflow.com/questions/637921/opacity-of-background-color-but-not-the-text
-------------------------------------------------- */
.alpha60-black {
    /* Fallback for web browsers that don't support RGBa */
    background-color: rgb(0, 0, 0);
    /* RGBa with 0.6 opacity */
    background-color: rgba(0, 0, 0, 0.6);
    /* For IE 5.5 - 7*/
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
    /* For IE 8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}
.alpha10-black, .alpha60-black {
    /* RGBa with 0.1 opacity */
    background-color: rgba(0, 0, 0, 0.1);
}
.alpha20-black {
    /* RGBa with 0.2 opacity */
    background-color: rgba(0, 0, 0, 0.2);
}
.alpha30-black, .alpha60-black {
    /* RGBa with 0.3 opacity */
    background-color: rgba(0, 0, 0, 0.3);
}
.alpha40-black, .alpha60-black {
    /* RGBa with 0.4 opacity */
    background-color: rgba(0, 0, 0, 0.4);
}

/* .dil = div in-line
example usage:
<div class="no-wrap-container">
    <div class="dil dil-red">icon</div>
    <div class="dil dil-yell">This can be a large</div>
    <div class="dil dil-red">small</div>
    <div class="dil dil-yell">medium</div>
    <div class="dil dil-red">whatever you like</div>
    <div class="dil dil-yell">and then some more and more and more</div>
</div>
-------------------------------------------------- */
.dil {
    display: inline-block;
    *display:inline;/*for IE 7 */
    *zoom:1;/*for IE 7 */
    vertical-align:top;
}
.dil-yel {
    background-color:#ff0;
}

.dil-red {
    background-color:red;
}

/* Misc.
-------------------------------------------------- */

dt, dd {
    line-height: 1.2;
    font-size: 1em;
    font-weight: normal;
}
/* dt {float: left; clear: left; width: 2.75em;} */
dt {
    text-indent: 0;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    clear: left;
}
dd {text-indent: 0;
    padding: 0 0 0 0;
    margin: 0 0 0.75em 3em;
}
dd{
    text-align: left;
    vertical-align: text-top;
}
h4, dt{
    font-weight: bold;
    margin-bottom: 4px;
    padding: 0px 0px 0px 0px;
    /*background-color: #FCFCFC;*/
    /*border: 1px dashed red;*/
    /*border-bottom: 1px dashed #D7D4D3;*/
    vertical-align: text-top;
}
dt{
    text-align: left;
}
dl{
    margin-bottom: 2em;
}
dd li{
    margin-bottom: 0.5em;
    margin-right: 4em;
    line-height: 1;
}
dd {
    margin-bottom: 0.5em;
    margin-right: 4em;

}



/* Tabs - custom inclusion of right, left and below tabs
see: http://stackoverflow.com/questions/18432577/stacked-tabs-in-bootstrap-3
see: http://www.bootply.com/74926
see: (converted to less) https://gist.github.com/lavoiesl/6610753
see: [file placement] assets/twitter-bootstrap/less/tabs-customised.less
-------------------------------------------------- */
.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
    border-bottom: 0;
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
    display: none;
}

.tab-content > .active,
.pill-content > .active {
    display: block;
}

.tabs-below > .nav-tabs {
    border-top: 1px solid #ddd;
}

.tabs-below > .nav-tabs > li {
       margin-top: -1px;
    margin-bottom: 0;
}

.tabs-below > .nav-tabs > li > a {
    -webkit-border-radius: 0 0 4px 4px;
       -moz-border-radius: 0 0 4px 4px;
            border-radius: 0 0 4px 4px;
}

.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
    border-top-color: #ddd;
    border-bottom-color: transparent;
}

.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
    border-color: transparent #ddd #ddd #ddd;
}

 .tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
    float: none;
}

 .tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
    min-width: 74px;
    margin-right: 0;
    margin-bottom: 3px;
}

.tabs-left > .nav-tabs {
    float: left;
    margin-right: 19px;
    border-right: 1px solid #ddd;
}

.tabs-left > .nav-tabs > li > a {
             margin-right: -1px;
    -webkit-border-radius: 4px 0 0 4px;
       -moz-border-radius: 4px 0 0 4px;
            border-radius: 4px 0 0 4px;
}

.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
    border-color: green yellow blue red;
}

.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
    border-color: green transparent green red;
    *border-right-color: #ffffff;
}

.tabs-right > .nav-tabs {
    float: right;
    margin-left: 19px;
    border-left: 1px solid #ddd;
}

.tabs-right > .nav-tabs > li > a {
              margin-left: -1px;
    -webkit-border-radius: 0 4px 4px 0;
       -moz-border-radius: 0 4px 4px 0;
            border-radius: 0 4px 4px 0;
}

.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
    border-color: blue red green yellow;
}

.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
    border-color: green red green transparent;
    *border-left-color: #ffffff;
}

/*Search Results Tab Boxes - start
====================================*/
.tab-box {
    border: 1px solid #ddd;
    border-width: 0 1px 1px; /* Removes the top border */
}
.tab-box > .tab-content {
    border: 1px solid #ddd;
    border-width: 0 1px 1px; /* Removes the top border */
    padding: 2px;
}
.tab-box > .nav-tabs > li {
    float: left;
}
.tab-box > .nav-tabs > li > a {
    margin-right: 0;
    margin-left: 2px;
}
/*Search Results Tab Boxes - end
====================================*/


/*Misc Tab Boxes - end
====================================*/
.align-tabs-right li { float: right; }

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus{
    background-color: ivory !important;
    border-radius: 6px;
    color: darkolivegreen;/*#556B2F*/
    border-color: darkgray darkgray transparent darkgray;
}



/*Image Styles - start
====================================*/
.img-wrap-left {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.img-wrap-right {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
}

.img-wrap-left-300 {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    height: 300px;
}

.img-wrap-right-300 {
    float: right;
    margin-left: 10px;
    margin-bottom: 10px;
    height: 300px;
}

.img-wrap-left-240 {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    height: 240px;
}

.img-wrap-right-240 {
    float: right;
    margin-left: 10px;
    margin-bottom: 10px;
    height: 240px;
}


/*Advert Details Styles - start
====================================*/
.well {
    background: #ECEBFF;
}
.article-well {
    min-height:20px;
    padding:19px;
    margin-bottom:20px;
    background-color:#F2F3FF;
    border:1px solid #e3e3e3;
    border-radius:4px;
    -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);
    box-shadow:inset 0 1px 1px rgba(0,0,0,.05)
}
.light-off-white-article-well {
    background-color:#fafafa;
}
.light-pink-article-well {
    background-color:#f9f4f4;
}
.light-yellow-article-well {
    background-color:#fbf9ee;
}
.light-lavender-article-well {
    background-color:#F2F3FF;
}
.light-green-article-well {
    background-color:#EEFFEE;
}
.light-blue-article-well {
    background-color:#effffe;
}
