﻿/* Editor
================================= */

.nx-editor .textblock > .PageElement-Title {
    font-family: 'Tahoma', sans-serif;
    font-weight: bold;
    font-size: 36px;
    color: #147ccc;
}

.nx-editor .nx-html {
    background: url(../Images/bg-tile.jpg);
}

.nx-editor .nx-page {
    background: rgba(222, 222, 222, 0.7);
}

.nx-editor-default {
    width: 1140px;
}

.nx-editor-buttons-default {
    width: 1140px;
}


/* Site
================================= */


.nx-body {
    font-size: 15px;
    line-height: 1.428571429;
    color: #1f2426;
}

    .nx-body.container {
        max-width: 1000px;
    }


    /* Background Colors
================================= */

    .nx-body .primary-bg-color {
        background-color: #C04631;
    }

    .nx-body .secondary-bg-color {
        background-color: #A73A26;
    }

    .nx-body .tertiary-bg-color {
        background-color: #006470;
    }

.nx-page {
    /* SB: removed
    background: rgba(222, 222, 222, 0.7);
	*/
}


/* Typography
================================= */

.nx-body .primary-font-color {
    color: #248A99;
}

.nx-body .secondary-font-color {
    color: #A73A26;
}

.nx-body a {
    color: #248A99;
}

    .nx-body a:focus,
    .nx-body a:hover {
        color: #006470;
    }

.nx-body h1 {
    font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
    font-size: 42px;
    /* SB: removed
    color: #248A99;
	*/
}

.nx-body h2 {
    font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
    font-size: 36px;
    /* SB: removed
    color: #248A99;
	*/
}

.nx-body h3 {
    font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
    font-size: 30px;
    /* SB: removed
    color: #248A99;
	*/
}

.nx-body h4 {
    font-family: TimesNewRoman, "Times New Roman", Times, Baskerville, Georgia, serif;
    font-size: 24px;
    /* SB: removed
    color: #248A99;
	*/
}

.nx-body p {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    /* SB: removed
    color: #1f2426;
	*/
}

/* Header
================================= */

.nx-body .header-wrapper {
    /* SB: removed color - This is the very top where logo/agency name goes (full width)
    background-color: #C04631;
*/
    /* SB: removed after moving header info
	background-color: #fff;
*/
    min-height: 300px;
    /* Decided on this as a minimum height if there is nothing in the header area */
}

.nx-header {
    /* SB: removed color - The is the very top where logo/agency name goes (site width)
    background-color: #C04631;
*/
    /* SB: changed color */
    color: #666;
}

    .nx-header h1,
    .nx-header h2,
    .nx-header h3,
    .nx-header h4,
    .nx-header p,
    .nx-header a {
        /* SB: changed color */
        color: #666;
    }

/* Nav
================================= */

.nx-body .menu-wrapper {
    /* SB: color removed: This is the background color for the menu, full width
    background-color: #C04631;
*/
    background-color: #fff;
}

.nx-menu {
    padding: 10px 0 15px 0;
    /* SB: color removed
    background-color: #C04631;
*/
}

    .nx-menu nav {
        margin: 0;
        /* SB: removed
        padding: 2px;
		*/
        line-height: 0.9em;
        /* SB: removed
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
		*/
    }

        .nx-menu nav a {
            /* SB: color changed */
            color: #666;
        }

            .nx-menu nav a:focus,
            .nx-menu nav a:hover {
                color: #fff;
                text-decoration: none;
            }

        .nx-menu nav ul li:hover > ul {
            display: block;
            position: absolute;
            box-shadow: 4px 4px 6px #333;
            z-index: 99;
        }

        .nx-menu nav ul {
            list-style: none;
            position: relative;
            margin: 0;
            padding: 0;
        }

            .nx-menu nav ul:after {
                content: "";
                clear: both;
                display: block;
            }

            .nx-menu nav ul li {
                float: left;
                font-size: 80%;
                /*background-color: #fbfbfb;*/
                color: #fff;
            }

                .nx-menu nav ul li.more {
                    padding-right: 10px;
                    background-image: url(../Images/caret-down.png);
                    background-repeat: no-repeat;
                    background-position: right 18px top 14px;
                }


                .nx-menu nav ul li a {
                    display: block;
                    padding: 14px 26px;
                }

                .nx-menu nav ul li:hover {
                    /* SB: color changed
                    background-color: #A73A26; */
                    background-color: #999;
                    color: #fff;
                }

                .nx-menu nav ul li.current {
                    /* SBL color changed
                    background-color: #A73A26; */
                    background-color: #e1e1e0;
                }

                    .nx-menu nav ul li.current a {
                        color: #fff;
                    }


            .nx-menu nav ul ul {
                display: none;
                position: absolute;
                /*top: 100%;*/
                line-height: 1.2em;
                min-width: 200px;
            }

                .nx-menu nav ul ul li {
                    float: none;
                    border-top: 1px solid #eee;
                    border-right: 1px solid #eee;
                    position: relative;
                    /* SB: color changed
                    background: #A73A26; */
                    background-color: #e1e1e0;
                    /*width: 100%;*/
                    min-width: 200px;
                }

                    .nx-menu nav ul ul li.more {
                        padding-right: 0;
                        background-image: url(../Images/caret-right.png);
                        background-repeat: no-repeat;
                        background-position: right 10px top 16px;
                    }

                    .nx-menu nav ul ul li:hover {
                        /* SB: color changed
                        background-color: #C04631; */
                        background-color: #999;
                    }

                .nx-menu nav ul ul ul {
                    position: absolute;
                    left: 101%;
                    top: 0;
                }

                    .nx-menu nav ul ul ul li {
                        background: #999;
                        min-width: 200px;
                    }

                        .nx-menu nav ul ul ul li:hover {
                            /* SB: color changed
                            background: #A73A26; */
                            background-color: #999;
                            color: #fff;
                        }

        .nx-menu nav .selected {
            /* SB: color changed
            background-color: #692518; */
            background-color: #e1e1e0;
        }

/* Content
================================= */

.nx-body #row01 {
    background: #A73A26;
}

.nx-body .offer {
    border: 1px solid #c2c9cc;
    background: #f8f8f8;
    padding: 15px;
    margin-top: 10px;
    margin-bottom: 15px;
}

    .nx-body .offer img {
        width: 100%;
    }

    .nx-body .offer h3 {
        margin-top: 10px;
        margin-bottom: 0;
    }

/* Content: Search Results */

.nx-body table.ContentTitleBar2 td {
    color: #fff;
    background-color: #248A99;
}

.nx-body .SRBottomSearchCritLabel {
    color: #666;
}

.nx-body table.ContentTitleBar2 td a {
    color: #fff;
}

.nx-body .tabactiveBackground {
    background-color: #248A99;
    color: #fff;
}

.nx-body .bg2,
.nx-body .bg1 {
    /* SB: color changed
    background-color: #248A99;
	*/
    background-color: #e0e0e0;
    color: #1f2426;
}

.nx-body .bg3 {
    background-color: #006470;
}

.nx-body .ODPriceBoxHeader {
    color: #fff;
    border-left: 1px solid #248A99;
    border-right: 1px solid #248A99;
}

.nx-body .ODPriceBoxRow1 {
    background: #EEE;
}

.nx-body td.SROfferContent {
    background-color: #fff;
}

.nx-body .SRPrice800 {
    color: #ffffcc;
}

.nx-body .SpecialOD {
    background-color: #ffffcc;
    border-color: #aaaaaa;
}

/* Content: Offer Details */

.nx-body div#DetailPageTop {
    background-color: #fff;
}

.nx-body .MainContentOD {
    border: 1px solid #248A99;
    padding: 15px;
    background-color: #fff;
}

.nx-body .ODTabActive {
    background-color: #248A99;
}

.nx-body .ODTabInactive {
    background-color: #006470;
}

.nx-body table.ListTable1 {
    background-color: #fff;
}


/* Content: Compare  */

.nx-body td.CompareColumn {
    border: 1px solid #999;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #fff;
}

.nx-body div.CompareTop {
    background-color: #eee;
    color: #006470;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px;
    height: 80px;
    overflow: hidden;
}

.nx-body .ResultsBoxTop {
    font-size: 14px;
    font-weight: bold;
}


/* Content: Quick Search  */

.quicksearch-container a {
    color: #fff;
}

    .quicksearch-container a:hover,
    .quicksearch-container a:focus {
        color: #fff;
    }

.quicksearch-tab a {
    background: #8b8686;
    border: 1px solid #999;
    border-bottom: none;
}

    .quicksearch-tab a.active {
        color: #999;
        background: #e0e0e0;
    }

.quicksearch-tab-body {
    background: #e0e0e0;
    border: 1px solid #999;
}

/* Content: Cruise Search  */

.cruisesearch-container a {
    color: #fff;
}

    .cruisesearch-container a:hover,
    .cruisesearch-container a:focus {
        color: #fff;
    }

/* Page Elements - Offer Highlight
================================= */

.nx-body div.offerHL {
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
}

    .nx-body div.offerHL .HLtitle {
        margin: -10px -10px 10px -10px;
        padding: 5px 0 5px 10px;
        color: #fff;
    }

    .nx-body div.offerHL .OfferName {
        font-size: 1.2em;
    }

    .nx-body div.offerHL .TeaserText {
        margin-top: 12px;
    }

    .nx-body div.offerHL .MoreDetails {
        margin-top: 12px;
    }




/* Footer
================================= */

.nx-body .footer-wrapper {
    /* SB: Color changed
    background-color: #717672;
	*/
    background-color: #999;
}

.nx-footer {
    color: #fff;
    /* SB: color changed
    background-color: #717672; */
    background-color: #999;
    border-top: 1px solid #999;
}

    .nx-footer p,
    .nx-footer h1,
    .nx-footer h2,
    .nx-footer h3,
    .nx-footer h4,
    .nx-footer li,
    .nx-footer a {
        color: #fff;
    }

/* Content: Offer Groups*/
.nx-body .OGMainTable {
    border: 1px solid #248A99;
    background-color: #FFFFFF;
}

.nx-body .OGSupplierInfoContainer {
    padding-top: 5px;
    padding-right: 5px;
    padding-left: 5px;
}

.nx-body .OGCategoryTableHeader {
    text-align: center;
}

.nx-body .OGCategoryTableLeft {
    border-left: 1px solid #248A99;
    border-bottom: 1px solid #248A99;
}

.nx-body .OGCategoryTableRight {
    border-left: 1px solid #248A99;
    border-right: 1px solid #248A99;
    border-bottom: 1px solid #248A99;
}

.nx-body .OGCategoryTableBorder {
    border-right: 1px solid #248A99;
    border-left: 1px solid #248A99;
    border-bottom: 1px solid #248A99;
    height: 100%;
    width: 100%;
}

.nx-body .OGPaddedContainer {
    padding: 5px;
}

.nx-logo-wrapper {
    margin-top: 10px;
}

.nx-body .categories-header-color {
    color: #333;
}

.nx-related-offer-title {
    font-weight: bold;
    font-size: 18px;
    font-style: italic;
}

.fs-month-highlighted {
    background-color: #00AEEF;
    color: #fff;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    color: #fff !important;
    background-color: #248A99;
    border-color: #248A99;
}

.nx-body .search-item {
    border: 1px solid #c2c9cc;
    background: #f8f8f8;
    padding: 15px;
    margin-top: 10px;
    margin-bottom: 15px;
}

    .nx-body .search-item h3 {
        margin-top: 10px;
        margin-bottom: 0;
    }


/* used in MVC search result, offer group, offer details*/
.nx-body .OGCategory-left {
    border-left: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    height: 100%;
    width: 100%;
}

.nx-body .OGCategory-right {
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    height: 100%;
    width: 100%;
}

.cruisesearch .rounded-border {
    border: 1px solid #999;
    border-radius: 5px;
}

/* Agent Directory */

.agent-bio {
    min-height: 130px;
    max-height: 130px;
}

.nx-body .system-container {
    border: 1px solid #c2c9cc;
    background: #f8f8f8;
    padding: 15px;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Content: Search box  */
.searchbox-container a {
    color: #fff;
}

    .searchbox-container a:hover,
    .searchbox-container a:focus {
        color: #fff;
    }
