body {
    overflow-x: hidden;
    /* font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; */
	font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
}

.text-muted {
    color: #777;
}

.text-primary {
    color: #ffffff;
}

p {
    font-size: 14px;
}

p.large {
    font-size: 16px;
}

a,
a:hover,
a:focus,
a:active,
a.active {
    outline: 0;
}

a {
    color: #ffffff;
}

a.btn, .nav>li>a.btn {
    text-transform: uppercase;
	background-color: #354E7B;
	border: 1px solid #49618A;
	padding: 5px 10px;
	margin: 0px 5px;
}

a:hover,
a:focus,
a:active,
a.active {
    color: #5cb85c;
}

.fa-stack-200height {
    width: auto;
    height: 200px;
}

.img-centered {
    margin: 0 auto;
}

.bg-light-gray {
    background-color: #f7f7f7;
}

.bg-darkest-gray {
    background-color: #222;
}

.btn {
	border-radius: 0;
}

.btn-dark {
    background-color: #333 !important;
	border: 1px solid black !important;
}


.btn-success {
    background-color: #E55C2F !important;
	border: 1px solid #D7614D !important;
}

.btn-green {
	background-color: #6B9B30 !important;
	border: 1px solid #5c8e43 !important;
}

.btn-lightblue {
	background-color: #009CDE !important;
	border: 1px solid #0099db !important;
	color: white !important;
}

.btn-primary {
    border-color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    background-color: #5cb85c;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    border-color: #f6bf01;
    color: #fff;
    background-color: #5cb85c;
}

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    border-color: #ffffff;
    background-color: #ffffff;
}

.btn-primary .badge {
    color: #ffffff;
    background-color: #fff;
}

.btn-xl {
    padding: 20px 40px;
    border-color: #ffffff;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-color: #ffffff;
}

.btn-xl:hover,
.btn-xl:focus,
.btn-xl:active,
.btn-xl.active,
.open .dropdown-toggle.btn-xl {
    border-color: #f6bf01;
    color: #fff;
    background-color: #5cb85c;
}

.btn-xl:active,
.btn-xl.active,
.open .dropdown-toggle.btn-xl {
    background-image: none;
}

.btn-xl.disabled,
.btn-xl[disabled],
fieldset[disabled] .btn-xl,
.btn-xl.disabled:hover,
.btn-xl[disabled]:hover,
fieldset[disabled] .btn-xl:hover,
.btn-xl.disabled:focus,
.btn-xl[disabled]:focus,
fieldset[disabled] .btn-xl:focus,
.btn-xl.disabled:active,
.btn-xl[disabled]:active,
fieldset[disabled] .btn-xl:active,
.btn-xl.disabled.active,
.btn-xl[disabled].active,
fieldset[disabled] .btn-xl.active {
    border-color: #ffffff;
    background-color: #ffffff;
}

.btn-xl .badge {
    color: #ffffff;
    background-color: #fff;
}

.navbar-default {
    border-color: transparent;
    background-color: #222;
}

.navbar-default .navbar-brand {
    font-family: "PT Sans",cursive;
    font-weight: bold;
    color: #ffffff;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:active,
.navbar-default .navbar-brand.active {
    color: #5cb85c;
}

.navbar-default .navbar-collapse {
    border-color: rgba(255,255,255,.02);
}

.navbar-default .navbar-toggle {
    border-color: #ffffff;
    background-color: #ffffff;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #ffffff;
}

.navbar-default .nav li a {
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
}

.navbar-default .nav li a:hover,
.navbar-default .nav li a:focus {
    outline: 0;
    color: #ffffff;
}

.navbar-default .navbar-nav>.active>a {
    border-radius: 0;
    color: #fff;
    background-color: #ffffff;
}

.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    color: #fff;
    background-color: #5cb85c;
}

.invisibleOnDesktop {
	display: block;
}
.invisibleOnMobile {
	display: none;
}

@media(min-width:768px) {
	.invisibleOnDesktop {
		display: none;
	}
	.invisibleOnMobile {
		display: block;
	}

    .navbar-default {
        padding: 25px 0;
        border: 0;
        background-color: transparent;
        -webkit-transition: padding .3s;
        -moz-transition: padding .3s;
        transition: padding .3s;
    }

    .navbar-default .navbar-brand {
        font-size: 2em;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        transition: all .3s;
    }

    .navbar-default .navbar-nav>.active>a {
        border-radius: 3px;
    }

    .navbar-default.navbar-shrink {
        padding: 10px 0;
        background-color: #222;
    }

    .navbar-default.navbar-shrink .navbar-brand {
        font-size: 1.5em;
    }
}

.things-to-do-this-week {
    text-align: center;
    background-attachment: scroll;
    background-image: url(../img/things-to-do-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.app-background {
    text-align: center;
    background-color: #18396e;
	color: #fff;
    background-attachment: scroll;
    background-image: url(../img/mobile-background.jpg);
	background-size: 100%;
    background-repeat: no-repeat;
}

.landing-background {
    text-align: center;
    color: #fff;
    background-attachment: scroll;
    background-image: url(../img/mobile-background.jpg);
	background-size: 100%;
    background-repeat: no-repeat;
	background-color: #033064;
}
@media(min-width:768px) {
	.landing-background {
		background-image: url(../img/full-background-withphone.jpg);
	}
	.app-background {
    	background-image: url(../img/desktop-app-background.jpg);
	}
}

.The_Power_of__Word_of_Mouth_ {
  font-size: 48px;
  font-family: "Brandon Grotesque";
  color: rgb(44, 83, 129);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  z-index: 254;
    text-shadow:
    -2px -2px 0 #fff,
    2px -2px 0 #fff,
    -2px 2px 0 #fff,
    2px 2px 0 #fff;
}

.How_It_Works_ {
  font-size: 30px;
  font-family: "Brandon Grotesque";
  color: rgb(255, 255, 0);
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  z-index: 181;
}

#registernow {
    background-attachment: scroll;
    background-image: url(../img/whatis-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;  
    padding: 40px 0;
}

.What_is_Funlocity_com {
  font-size: 36px;
  font-family: "Brandon Grotesque";
  color: rgb(44, 83, 129);
  text-transform: uppercase;
  line-height: 1.2;
  text-align: left;
  z-index: 127;
}

.What_is_Texts {
  font-size: 16px;
  font-family: "Open Sans";
  color: rgb(44, 83, 129);
  line-height: 1.333;
  text-align: left;
  z-index: 121;
}

.Companies_that_are_already_on_board {
  font-size: 26px;
  font-family: "Brandon Grotesque";
  color: rgb(44, 83, 129);
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  z-index: 74;
}

#registernow input {
    width: 300px;
    margin-bottom: 10px;
}

header h2 {
    text-align: left;
    font-weight: bold;
}

header .intro-text {
    padding-top: 100px;
    padding-bottom: 50px;
}

header .intro-text .intro-lead-in {
    margin-bottom: 25px;
    font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 22px;
    font-style: italic;
    line-height: 22px;
}

header .intro-text .intro-heading {
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 700;
    line-height: 50px;
}

@media(min-width:768px) {
    header .intro-text {
        padding-top: 300px;
        padding-bottom: 200px;
    }

    header .intro-text .intro-lead-in {
        margin-bottom: 25px;
        font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;
        font-size: 40px;
        font-style: italic;
        line-height: 40px;
    }

    header .intro-text .intro-heading {
        margin-bottom: 50px;
        text-transform: uppercase;
        font-size: 75px;
        font-weight: 700;
        line-height: 75px;
    }
}

section {
    padding: 0;
}

section h2.section-heading {
    margin-top: 0;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: larger;
}

section h3.section-subheading {
    margin-bottom: 30px;
    text-transform: none;
    font-size: 16px;
    font-weight: 600;
}

.mainlandingheading {
	font-size: 24px;
	text-shadow: 2px 2px black;
}

.mainlandingcontent {
	font-size: 18px;
	text-align: left;
}

.mainlandingphoneimagewrap {
	padding: 0px;
}

@media(min-width:768px) {
    section {
        padding: 0;
    }

	.mainlandingheading {
		font-size: 48px;
		text-shadow: 4px 4px black;
	}
	
	.mainlandingcontent {
		font-size: 32px;
		text-align: justify;
	}

	.mainlandingpadding {
		padding-left: 30px;
	}

	.mainlandingphoneimagewrap {
		padding-left: 90px;
	}
}

.service-heading {
    margin: 15px 0;
    text-transform: none;
}

@media(min-width:767px) {
    #portfolio .portfolio-item {
        margin: 0 0 30px;
    }
}

.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    margin-left: -1.5px;
    background-color: #f1f1f1;
}

.timeline>li {
    position: relative;
    margin-bottom: 50px;
    min-height: 50px;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>li:after {
    clear: both;
}

.timeline>li .timeline-panel {
    float: right;
    position: relative;
    width: 100%;
    padding: 0 20px 0 100px;
    text-align: left;
}

.timeline>li .timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline>li .timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline>li .timeline-image {
    z-index: 100;
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
    margin-left: 0;
    border: 7px solid #f1f1f1;
    border-radius: 100%;
    text-align: center;
    color: #fff;
    background-color: #ffffff;
}

.timeline>li .timeline-image h4 {
    margin-top: 12px;
    font-size: 10px;
    line-height: 14px;
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: right;
    padding: 0 20px 0 100px;
    text-align: left;
}

.timeline>li.timeline-inverted>.timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline>li:last-child {
    margin-bottom: 0;
}

.timeline .timeline-heading h4 {
    margin-top: 0;
    color: inherit;
}

.timeline .timeline-heading h4.subheading {
    text-transform: none;
}

.timeline .timeline-body>p,
.timeline .timeline-body>ul {
    margin-bottom: 0;
}

@media(min-width:768px) {
    .timeline:before {
        left: 50%;
    }

    .timeline>li {
        margin-bottom: 100px;
        min-height: 100px;
    }

    .timeline>li .timeline-panel {
        float: left;
        width: 41%;
        padding: 0 20px 20px 30px;
        text-align: right;
    }

    .timeline>li .timeline-image {
        left: 50%;
        width: 100px;
        height: 100px;
        margin-left: -50px;
    }

    .timeline>li .timeline-image h4 {
        margin-top: 16px;
        font-size: 13px;
        line-height: 18px;
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        float: right;
        padding: 0 30px 20px 20px;
        text-align: left;
    }
}

@media(min-width:992px) {
    .timeline>li {
        min-height: 150px;
    }

    .timeline>li .timeline-panel {
        padding: 0 20px 20px;
    }

    .timeline>li .timeline-image {
        width: 150px;
        height: 150px;
        margin-left: -75px;
    }

    .timeline>li .timeline-image h4 {
        margin-top: 30px;
        font-size: 18px;
        line-height: 26px;
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        padding: 0 20px 20px;
    }
}

@media(min-width:1200px) {
    .timeline>li {
        min-height: 170px;
    }

    .timeline>li .timeline-panel {
        padding: 0 20px 20px 100px;
    }

    .timeline>li .timeline-image {
        width: 170px;
        height: 170px;
        margin-left: -85px;
    }

    .timeline>li .timeline-image h4 {
        margin-top: 40px;
    }

    .timeline>li.timeline-inverted>.timeline-panel {
        padding: 0 100px 20px 20px;
    }
}

footer {
    padding: 25px 0;
    text-align: center;
    background-color: #2B4F85;
}

footer span.copyright {
    text-transform: none;
    line-height: 20px;
    color: #ccc;
}

footer ul.quicklinks {
    margin-bottom: 0;
    text-transform: uppercase;
    text-transform: none;
    line-height: 40px;
}

.btn:focus,
.btn:active,
.btn.active,
.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus,
.btn:active:focus {
    outline: 0;
	background-color: #354E7B;
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

body {
    webkit-tap-highlight-color: #ffffff;
}

.shadow4px {
	text-shadow: 4px 4px black;
}

.shadow2px {
	text-shadow: 2px 2px black;
}

.howItWorksContainer {
	width: 100%;
	text-shadow: 2px 2px black;
}

.howItWorksContainer p {
	text-shadow: 1px 1px black;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; height: 0; overflow: hidden;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.megabig {
  font-size: 64px;
  font-family: "Pe-icon-7-stroke";
  color: rgb(44, 83, 129);
  text-transform: uppercase;
  line-height: 1.2;
  z-index: 42;
}

.dark-filter-box {
	color: #f6d55b;
	background-color: #001731;
}

.dark-filter-box-disabled {
	color: grey;
}

.brandonGrotesque {
	/* font-family: "Brandon Grotesque"; */
	font-family: 'Ubuntu', sans-serif;
}

.openSans {
	font-family: "Open Sans";
}

.landingWhiteHeading {
	font-size: 36px;
	font-family: "Brandon Grotesque";
	font-weight: 100;
	color: rgb(255, 255, 255);
	text-transform: uppercase;
}

.yellowstar {
	color: #ffde5a;
}

.whitestar {
	color: white;
}

.mainReviewProfileImage {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	border: 1px outset #eee;
}

.userReviewProfileImage {
	max-height: 50px;
	border-radius: 100%;
	border: 1px outset #eee;
}

.arrow_box {
	position: relative;
	background: #ffffff;
	border: 1px solid #c2e1f5;
	color: black;
	font-size: 13px;
	font-family: "Open Sans";
	padding: 10px;
	margin-bottom: 10px;
	margin-top: 10px;
}
.arrow_box:after, .arrow_box:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow_box:after {
	border-color: rgba(255, 255, 255, 0);
	border-top-color: #ffffff;
	border-width: 10px;
	margin-left: -10px;
}
.arrow_box:before {
	border-color: rgba(194, 225, 245, 0);
	border-top-color: #c2e1f5;
	border-width: 11px;
	margin-left: -11px;
}

.upper {
  text-transform: uppercase;
}

.mobile_app_grey {
	background-color: #f3f5f8;
	border-left: 1px solid #e7c5c0;
	border-bottom: 1px solid #e95b35;
	margin: 20px;
  	font-family: "Brandon Grotesque";
	color: #2c587f;
}

.app_grey, .mobile_app_grey a {
	color: #2c587f;
}

.app_grey a.btn, .mobile_app_grey a.btn {
	color: white;
}

.app_grey {
	background-color: #f3f5f8;
	border-left: 1px solid #e7c5c0;
	border-bottom: 1px solid #e95b35;
	padding: 10px;
  	font-family: "Brandon Grotesque";
	color: #2c587f;
}

.app_subwhite {
	background-color: #fdfdfd;
	border-left: 1px solid #e7c5c0;
	border-bottom: 1px solid #e95b35;
	padding: 10px;
	margin-left: 40px;
	margin-right: 40px;
  	font-family: "Brandon Grotesque";
	color: #2c587f;
	width: 97%;
}

.selected-inclusion {
	background-color: #6b9c31;
	color: white !important;
}
.selected-inclusion p {
	color: white !important;
}

.inclusion {
	padding: 15px 20px 15px 20px;
	margin: 5px;
	float: left;
}

.app_white {
	background-color: #fdfdfd;
	border-left: 1px solid #e7c5c0;
	border-bottom: 1px solid #e95b35;
	padding: 10px;
  	font-family: "Brandon Grotesque";
	color: #2c587f;
}

.row-bordered {
	border-bottom: 1px inset #e6e6e6;
	border-collapse: collapse;
	padding: 5px 10px 5px 10px;
}

.selected-upgrade-desktop {
	background-color: #6b9c31 !important; 
	color: white;
}

.indent {
	margin-left: 20px;
}

.rotate {
	/* Safari */
	-webkit-transform: translateX(-50%) translateY(180%) rotate(-90deg);

	/* Firefox */
	-moz-transform: translateX(-50%) translateY(180%) rotate(-90deg);

	/* IE */
	-ms-transform: translateX(-50%) translateY(180%) rotate(-90deg);

	/* Opera */
	-o-transform: translateX(-50%) translateY(180%) rotate(-90deg);

	/* Internet Explorer */
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.section-padding-10 {
	margin-top: 10px;
	margin-bottom: 20px;
}

.tour-detail-section-heading {
	font-weight: bold;
	color: #335c83;
}

.uppercase {
	text-transform: uppercase;
}

.addonLabel {
	color: #27557e;
}
.addonPrice {
	color: #84ab5b;
}
.selected-upgrade-desktop .addonLabel, .selected-upgrade-desktop .addonPrice {
	color: white;
}

.decorated-blue-btn {
	border-radius: 0; 
	padding-top: 18px !important;
	margin: 0px 1px !important;
	width: 118px; height: 60px;
	background-image: url(/img/bluecheckbutton.png); 
	background-position: bottom right; 
	background-repeat: no-repeat;
}

.decorated-red-btn {
	border-radius: 0; 
	padding-top: 18px !important;
	margin: 0px 1px !important;
	width: 118px; height: 60px;
	background-image: url(/img/redcheckbutton.png); 
	background-position: bottom right; 
	background-repeat: no-repeat;
}

.decorated-green-btn {
	border-radius: 0; 
	padding-top: 18px !important;
	margin: 0px 1px !important;
	width: 118px; height: 60px;
	background-image: url(/img/greencheckbutton.png); 
	background-position: bottom right; 
	background-repeat: no-repeat;
}

.decorated-orange-btn {
	border-radius: 0; 
	padding-top: 18px !important;
	margin: 0px 1px !important;
	width: 118px; height: 60px;
	background-image: url(/img/orangecheckbutton.png); 
	background-position: bottom right; 
	background-repeat: no-repeat;
}

.app_grey .row {
	margin-right: 0;
	margin-left: 0;
}

.smallYellowHeading {
	font-size: 24px;
	font-family: "Brandon Grotesque";
	color: rgb(255, 255, 0);
	text-transform: uppercase;
	line-height: 1.2;
	text-align: center;
	z-index: 181;
}

#desktop_leaflet_map {
	overflow: hidden; 
	height: 700px; 
	width: 100%;
}

.modal-content {
	color: black;
}

.modal-content a {
	color: blue !important;
}

.desktop-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 1040;
	background-color: rgba(0, 0, 0, 0.8);
}

.desktop-backdrop-decorated {
	width: 100% ;
	text-align: center; 
	position: absolute; 
	top: 25px;
	z-index: 1041;
}

.desktop-backdrop-decorated-inner {
	width: 430px; 
	height: 714px;
	margin: 0 auto; 
	background-image: url(../img/login-container.png); 
	background-repeat: no-repeat;
	z-index: 1041;
	padding-top: 120px;
}

.mobile-backdrop-decorated-inner {
	width: 375px;
	height: 714px;
	margin: 0 auto; 
	background-image: url(../img/login-container-nopadding.png); 
	background-repeat: no-repeat;
	z-index: 1041;
	padding-top: 120px;
}

.btn-danger {
	background-color: #d9534f !important;
	border-color: #d43f3a !important;
}

.btn-topbar-mobile {
	background-color: white !important;
	color: #27557e !important;
}

.btn-topbar {
	background-color: white !important;
	color: #27557e !important;
	margin: 0 !important;
	border-collapse: collapse;
	margin-left: -3px !important;
	margin-top: 3px !important;
}

.desktop-active-tab {
	background-color: #27557e !important;
	color: white !important;
	padding: 8px 10px 5px 10px !important;
	margin-top: 0 !important;
}

.desktop-previous-experience {
	background-color: white;
	border: 1px solid #363636;
	float: left;
	margin: 10px;
	max-width: 48%;
}

.btn-brightgreen {
	background-color: #7bbf4f !important;
	color: white !important;
}

.desktop-review-block {
	float: left;
	margin: 10px;
	max-width: 48%;
}

.desktop-review-block-inner {
	background-color: white;
	border: 1px solid #363636;
}

.rating {
	margin: 0;
	padding: 0;
	display: inline-block;
}
.rating li {
	padding: 1px;
	color: #a9a9a9;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	list-style-type: none;
	display: inline-block;
	cursor: pointer;
}
.rating li.filled {
	color: #fd0;
}

.table-whiteblocks {
	background-color: #f3f5f8;
}

.table-whiteblocks tr {
	background-color: white;
	margin: 5px;
	padding: 5px
}

.blueblock {
	background-color: #193a6a;
	color: white;
	font-size: larger;
	padding: 7px;
	margin: 5px;
}

.strikeout {
	text-decoration: line-through;
}

.dropshadow {
	text-shadow: 2px 2px black;
}

ol.blogaccent {
	color: #3fa7df;
}

ol.blogaccent span {
	color: white;
}

span.blogaccent {
	color: #3fa7df;
}

.navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
	max-height: 1000px;
}

.navbar-default {
	transition: background-color 0.5s ease;
	padding-bottom: 0px !important;
}

.navbar-shrink {
	transition: background-color 0.5s ease;
	background-color: black !important;
	padding-bottom: 0px !important;
}

.tourListingBlockItem {
	border: 2px solid white;
}

.black {
	color: black !important;
}

.halfwidth {
	width: 50%;
}

.profilepanel {
	float: left; 
	padding: 30px; 
	width: 150px; 
	height: 120px;
	color: black;
	margin: 5px;
	text-align: center;
	background-color: rgba(230, 230, 230, 0.95);
}

.greeninput::-webkit-input-placeholder {
   color: white;
}
.greeninput:-moz-placeholder {
   color: white;  
}
.greeninput::-moz-placeholder {
   color: white;  
}
.greeninput:-ms-input-placeholder {  
   color: white;  
}
.greeninput {
	background-color: #659B1D;
	color: white;
}

.centertxt {
	text-align: center;
}

.fullwidth {
	width: 100%;
}

.metricsbarchart .bar {
	fill: #5AA342;
}

.metricsbarchart .bar-red {
	fill: #FF9966;
}

.metricsbarchart .bar:hover {
	fill: steelblue;
}

.metricsbarchart .axis {
	font: 10px sans-serif;
}

.metricsbarchart .axis path, .metricsbarchart .axis line {
	fill: none;
	stroke: #000;
	shape-rendering: crispEdges;
}

.metricsbarchart .x.axis path {
	display: none;
}

.graphdaymonthswap .active {
	color: white;
}

.force-blue-bg-centered-body {
	background-color: #003e71;
	margin: 0 auto;
}

.forcewhitebg {
	background: white !important;
}

.dark-blue-sides-no-bg {
	border-left: 1px solid #001d4a;
	border-right: 1px solid #001d4a;
	background-image: none;
}

.datepicker {
	z-index: 10000 !important;
}