/*
 * Inline Menu (Simple Horizontal Menu with separators)
*/

.inline-menu{

	margin: 0;
}

.inline-menu li{

	border-right: 1px solid #333;
	line-height: 13px;
	padding: 0 10px;
	list-style: none;
	display: inline-block;
}

.inline-menu li a{

	text-transform: uppercase;
	font-weight: bold;
	font-size: 12px;
	line-height: 13px;
}

.inline-menu li:last-child{

	border-right-width: 0;
}

.inline-menu li:first-child{

	padding-left: 0 !important;
}

.inline-menu li:last-child{

	padding-right: 0 !important;
}

/* Carets*/

.caret-down {

	display: inline-block;
	width: 0; 
	height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 9px solid #fff;
}

.caret-left {

	display: inline-block;
	width: 0; 
	height: 0; 
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-right: 9px solid #fff; 
}

.caret-right {

	display: inline-block;
	width: 0; 
	height: 0; 
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 9px solid #fff;
}
	
/* Secondary Button */

.btn-secondary{

    color: #fff;
    background: rgb(10,88,153); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(10,88,153,1) 0%, rgba(7,57,102,1) 100%); /* FF3.6+ */ 
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(10,88,153,1)), color-stop(100%,rgba(7,57,102,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(10,88,153,1) 0%,rgba(7,57,102,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(10,88,153,1) 0%,rgba(7,57,102,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(10,88,153,1) 0%,rgba(7,57,102,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(10,88,153,1) 0%,rgba(7,57,102,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0a5899', endColorstr='#073966',GradientType=0 ); /* IE6-9 */
}

.btn-secondary:hover{

    color: #fff;
    /*text-shadow: 0 1px 4px rgba(0,0,0,0.8);*/
    background: rgb(58,178,78); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(58,178,78,1) 0%, rgba(14,134,34,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(58,178,78,1)), color-stop(100%,rgba(14,134,34,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(58,178,78,1) 0%,rgba(14,134,34,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(58,178,78,1) 0%,rgba(14,134,34,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(58,178,78,1) 0%,rgba(14,134,34,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(58,178,78,1) 0%,rgba(14,134,34,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3ab24e', endColorstr='#0e8622',GradientType=0 ); /* IE6-9 */
}


/* Equal Height Columns */

.row-eq-height {

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  margin: 10px -15px;
  width: 100%;
}

.list-eq-height{

  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 10px -15px;
}

.list-eq-height li img{

	vertical-align: middle;
}

/* Make Bootsrap Unresponsive */

body {
  min-width: 1000px;
}
body .container {
  max-width: none !important;
  width: 1000px !important;
}
body [class^="col-"] {
  float: left;
}
body .col-md-1,
body .col-lg-1 {
  width: 8.33333333% !important;
}
body .col-md-2,
body .col-lg-2 {
  width: 16.66666667% !important;
}
body .col-md-3,
body .col-lg-3 {
  width: 25% !important;
}
body .col-md-4,
body .col-lg-4 {
  width: 33.33333333% !important;
}
body .col-md-5,
body .col-lg-5 {
  width: 41.66666667% !important;
}
body .col-md-6,
body .col-lg-6 {
  width: 50% !important;
}
body .col-md-7,
body .col-lg-7 {
  width: 58.33333333% !important;
}
body .col-md-8,
body .col-lg-8 {
  width: 66.66666667% !important;
}
body .col-md-9,
body .col-lg-9 {
  width: 75% !important;
}
body .col-md-10,
body .col-lg-10 {
  width: 83.33333333% !important;
}
body .col-md-11,
body .col-lg-11 {
  width: 91.66666667% !important;
}
body .col-md-12,
body .col-lg-12 {
  width: 100% !important;
}
body .col-md-offset-0,
body .col-lg-offset-0 {
  margin-left: 0 !important;
}
body .col-md-offset-1,
body .col-lg-offset-1 {
  margin-left: 8.33333333% !important;
}
body .col-md-offset-2,
body .col-lg-offset-2 {
  margin-left: 16.66666667% !important;
}
body .col-sm-offset-3,
body .col-md-offset-3,
body .col-lg-offset-3 {
  margin-left: 25% !important;
}
body .col-sm-offset-4,
body .col-md-offset-4,
body .col-lg-offset-4 {
  margin-left: 33.33333333% !important;
}
body .col-sm-offset-5,
body .col-md-offset-5,
body .col-lg-offset-5 {
  margin-left: 41.66666667% !important;
}
body .col-sm-offset-6,
body .col-md-offset-6,
body .col-lg-offset-6 {
  margin-left: 50% !important;
}
body .col-sm-offset-7,
body .col-md-offset-7,
body .col-lg-offset-7 {
  margin-left: 58.33333333% !important;
}
body .col-sm-offset-8,
body .col-md-offset-8,
body .col-lg-offset-8 {
  margin-left: 66.66666667% !important;
}
body .col-sm-offset-9,
body .col-md-offset-9,
body .col-lg-offset-9 {
  margin-left: 75% !important;
}
body .col-sm-offset-10,
body .col-md-offset-10,
body .col-lg-offset-10 {
  margin-left: 83.33333333% !important;
}
body .col-sm-offset-11,
body .col-md-offset-11,
body .col-lg-offset-11 {
  margin-left: 91.66666667% !important;
}
body .col-sm-offset-12,
body .col-md-offset-12,
body .col-lg-offset-12 {
  margin-left: 100% !important;
}
body .visible-xs,
body .visible-xs-block,
body .visible-sm,
body .visible-sm-block {
  display: block !important;
}
body .visible-xs-inline,
body .visible-sm-inline {
  display: inline !important;
}
body .visible-xs-inline-block,
body .visible-sm-inline-block {
  display: inline-block !important;
}
body .hidden-xs,
body .hidden-sm {
  display: block !important;
}
body .container .navbar-header,
body .container .navbar-collapse {
  margin-right: 0;
  margin-left: 0;
}
body .navbar-header {
  float: left;
}
body .navbar-collapse {
  display: block !important;
  height: auto !important;
  padding-bottom: 0;
  overflow: visible !important;
}
body .navbar-toggle {
  display: none;
}
body .navbar-collapse {
  border-top: 0;
}
body .navbar-brand {
  margin-left: -15px;
}
body .navbar-nav {
  float: left;
  margin: 0;
}
body .navbar-nav > li {
  float: left;
}
body .navbar-nav > li > a {
  padding: 15px;
}
body .navbar-nav.navbar-right {
  float: right;
}
body .navbar .navbar-nav .open .dropdown-menu {
  position: absolute;
  float: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-width: 0 1px 1px;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
body .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  color: #333;
}
body .navbar .navbar-nav .open .dropdown-menu > li > a:hover,
body .navbar .navbar-nav .open .dropdown-menu > li > a:focus,
body .navbar .navbar-nav .open .dropdown-menu > .active > a,
body .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
body .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
  color: #fff !important;
  background-color: #428bca !important;
}
body .navbar .navbar-nav .open .dropdown-menu > .disabled > a,
body .navbar .navbar-nav .open .dropdown-menu > .disabled > a:hover,
body .navbar .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  color: #999 !important;
  background-color: transparent !important;
}

/* Add Support for 5 column rows */

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
    float: left;
    width: 20% !important;
}

.col-xs-2-5ths,
.col-sm-2-5ths,
.col-md-2-5ths,
.col-lg-2-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
    float: left;
    width: 40% !important;
}

/* Disable for non-responsive */
/*@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
    .col-sm-2-5ths {
        width: 40%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
    .col-md-2-5ths {
        width: 40%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
    .col-lg-2-5ths {
        width: 40%;
        float: left;
    }
}*/

/* Carousel */

.carousel ul{

	list-style: none;
}