﻿/*
	Market Segmentation CSS for screen

	CONTENTS
	--------
	Global styles
	Header
	Footer
	Content
	jQuery UI
	Home page
	Results page
	Filters
	Download page
	FAQs

	COLOURS
	-------
	Background	#F2F1F2
	Dark Blue	#227199
	Highlight	#F7F5A9
	Success		#B9E782
	Error		#FF7070
*/

/* ------------------------------------------------------------------------------------
   Global styles
   ------------------------------------------------------------------------------------ */

html {
    overflow-y: scroll;
}

body {
    font-family: Arial, Helvetica, Sans-Serif;
    background-color: #F2F1F2;
}

#minSize {
    min-width: 800px; /*ignored by IE < 8, set also in IE CSS */
    min-height: 500px; /*ignored by IE < 8, set also in IE CSS */
}

.no-display {
    display: none;
}

.inline {
    display: inline;
}

.module {
    padding: 10px;
    margin: 20px 0;
    overflow: hidden;
    zoom: 1;
    background-color: #FFFFFF;
    border: solid 1px #E2E2E2;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-box-shadow: 0px 0px 7px #C6C6C6;
    -webkit-box-shadow: 0px 0px 7px #C6C6C6;
    box-shadow: 0px 0px 7px #C6C6C6;
}

h1 {
    color: #FFFFFF;
    font-size: 36px;
    letter-spacing: -0.2px;
    text-shadow: 0px 0px 2px #FFFFFF;
    margin-top: 5px;
}

h2 {
    font-size: 24px;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

a {
    color: #1A688F;
    text-decoration: underline;
}

    a:hover {
        color: #1A688F;
        text-decoration: none;
    }

/* text modules */
.text-module {
    font-size: 15px;
}

    .text-module > p:last-child {
        margin-bottom: 0;
    }

    .text-module h3,
    .text-module p,
    .text-module ul,
    .text-module ol,
    .text-module dl,
    .text-module dt {
        margin-bottom: 0.7em;
        line-height: 1.3;
    }

    .text-module ul {
        padding-left: 20px;
        list-style-type: disc;
    }

        .text-module ul ul {
            list-style-type: circle;
            margin-bottom: 0;
            margin-top: 0.4em;
        }

            .text-module ul ul ul {
                list-style-type: square;
            }

        .text-module ul ol {
            list-style-type: decimal;
            margin-bottom: 0;
            margin-top: 0.4em;
        }

    .text-module ol {
        padding-left: 25px;
        list-style-type: decimal;
    }

        .text-module ol ol {
            list-style-type: lower-latin;
            margin-bottom: 0;
            margin-top: 0.4em;
        }

            .text-module ol ol ol {
                list-style-type: lower-roman;
            }

        .text-module ol ul {
            list-style-type: disc;
            margin-bottom: 0;
            margin-top: 0.4em;
        }

    .text-module li {
        margin-bottom: 0.4em;
    }

/* messages */

div.error,
div.success {
    padding: 17px 12px 17px 50px;
    margin-bottom: 15px;
    text-align: center;
}

div.error {
    background: #FF7070 url("../img/cross.png") no-repeat 12px 10px;
}

div.success {
    background: #B9E782 url("../img/tick.png") no-repeat 12px 10px;
}

/* tables */
.datatable {
    font-size: 14px;
    margin: 10px 20px 20px 20px;
    border-collapse: collapse;
    text-align: left;
    line-height: 1.6em;
}

    .datatable th {
        font-size: 17px;
        font-weight: normal;
        color: #227199;
        padding: 10px 12px;
        border-bottom: 2px solid #227199;
        text-align: center;
    }

    .datatable td {
        border-bottom: 1px solid #cccccc;
        color: #0F3A4F;
        padding: 6px 12px;
        text-align: center;
    }

    .datatable tbody tr:hover td {
        color: #2080AF;
    }

    .datatable th.column-break,
    .datatable td.column-break {
        border-left: 2px solid #227199;
    }

    .datatable tr.row-break {
        border-top: 2px solid #227199;
    }

/* tooltips */
.tooltip,
.segment-tooltip {
    display: none;
    background-color: #F7F5A9;
    border: 1px solid #cc9;
    padding: 7px;
    font-size: 13px;
    z-index: 9999;
    box-shadow: 2px 2px 5px #aaaaaa;
    -moz-box-shadow: 2px 2px 5px #aaaaaa;
    -webkit-box-shadow: 2px 2px 5px #aaaaaa;
}

.segment-tooltip {
    width: 500px;
    position: relative;
}

.segment-tooltip-arrow {
    background: transparent url("../img/tooltip_arrow_left.png") no-repeat top left;
    position: absolute;
    width: 23px;
    height: 32px;
    top: 22px;
    left: -23px;
}

.segment-tooltip img {
    float: left;
    border: 1px solid #333333;
}

.segment-tooltip p {
    font-size: 15px;
    margin: 0 0 0.5em 110px;
    line-height: 1.2em;
}

#choose-segments .segment-tooltip p {
    margin-left: 0;
}

.segment-tooltip p.segment-name,
.segment-tooltip p.segment-title {
    font-weight: bold;
}

.segment-tooltip p.segment-name {
    font-size: 22px;
}

.segment-tooltip p.segment-title {
    font-size: 18px;
}

.segment-tooltip p.segment-statistics {
    color: #C82641;
}

.segment-tooltip p.segment-profile {
    margin-bottom: 0;
}

/* buttons */
.button {
    background: #D8D8D8 url("../img/button_bg.png") repeat-x top left;
    padding: 8px;
    font-size: 12px;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    border: solid 1px #939393;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

    .button:hover {
        background: #FEFEFE url("../img/button_pressed_bg.png") repeat-x top left;
    }

    .button span {
        display: block;
        background: url("../img/drop_arrow.png") no-repeat right 2px;
    }

.small-button {
    padding: 2px 4px 2px 3px;
}

.search-button {
    font-size: 20px;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px #555555;
    background: #59980D url("../img/button_green_bg.gif") repeat-x top left;
    padding-left: 25px;
    padding-right: 25px;
    margin: 0 0 20px 12px;
    -moz-box-shadow: 0px 0px 7px #C6C6C6;
    -webkit-box-shadow: 0px 0px 7px #C6C6C6;
    box-shadow: 0px 0px 7px #C6C6C6;
}

    .search-button:hover {
        background: #7EBF2F url("../img/button_pressed_green_bg.gif") repeat-x top left;
    }

/* ------------------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------------------ */

#header {
    padding: 15px 20px 0 20px;
    margin-bottom: 25px;
    background: #227199 /*url("../img/logo.gif") no-repeat right center*/;
}

    #header ul {
        margin: 7px 0 0 2px;
    }

        #header ul li {
            display: inline;
            margin-right: 15px;
            font-size: 17px;
            line-height: 28px;
            vertical-align: top;
            padding-bottom: 12px;
        }

            #header ul li.active {
                background: url("../img/nav-arrow.gif") no-repeat bottom center;
            }

            #header ul li a {
                color: #B2D4E0;
                text-decoration: none;
            }

                #header ul li a:hover {
                    color: #FFFFFF;
                }

            #header ul li.active a {
                color: #FFFFFF;
                font-weight: bold;
            }

/* ------------------------------------------------------------------------------------
   Content
   ------------------------------------------------------------------------------------ */

#content {
    padding: 0 20px;
    overflow: hidden;
}

/* ------------------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------------------ */

#footer {
    font-size: 12px;
    line-height: 1.5em;
    color: #777777;
    margin-bottom: 3px;
    text-align: center;
    padding: 0 20px 10px;
}

/* ------------------------------------------------------------------------------------
   jQuery UI
   ------------------------------------------------------------------------------------ */

.ui-dialog, /* Modal Windows */
.ui-menu-item, /* Autocomplete */
.ui-widget /* Widgets */ {
    font-size: 0.9em !important;
}

.ui-widget {
    font-family: Arial, Helvetica, Sans-Serif !important;
}

/* Autocomplete */
.ui-autocomplete {
    max-height: 100px; /* ignored by IE < 8 */
    overflow-y: auto;
}

/* ------------------------------------------------------------------------------------
   Admin pages
   ------------------------------------------------------------------------------------ */

#returnToAdminPage-div a {
    float: right;
}

.floatRightLink {
    float: right;
    margin-left: -200px;
}

/* ------------------------------------------------------------------------------------
   Home page
   ------------------------------------------------------------------------------------ */

.homepage-slideshow {
    margin: 5px 5px 5px 20px;
    float: right;
    width: 500px;
    height: 286px;
}

    .homepage-slideshow img {
        border: 1px solid #cccccc;
    }

ul.homepage-viz-types {
    list-style-type: none;
    padding-left: 12px;
}

    ul.homepage-viz-types li {
        padding: 6px 0 6px 40px;
    }

        ul.homepage-viz-types li.map {
            background: transparent url("../img/layers_map.png") no-repeat center left;
        }

        ul.homepage-viz-types li.chart {
            background: transparent url("../img/chart_bar.png") no-repeat center left;
        }

        ul.homepage-viz-types li.table {
            background: transparent url("../img/table.png") no-repeat center left;
        }

/* ------------------------------------------------------------------------------------
   Results page
   ------------------------------------------------------------------------------------ */

div.results-heading {
    line-height: 25px;
    overflow: hidden;
    zoom: 1;
}

    div.results-heading h2 {
        float: left;
    }

ul.page-options {
    float: right;
}

    ul.page-options li {
        display: inline;
        font-size: 13px;
        font-weight: bold;
        margin-left: 12px;
        padding-left: 20px;
    }

        ul.page-options li.print {
            background: url("../img/print.png") no-repeat left center;
        }

        ul.page-options li.options {
            background: url("../img/options.png") no-repeat left center;
        }

        ul.page-options li.save {
            background: url("../img/save.png") no-repeat left center;
        }

        ul.page-options li.filter {
            background: url("../img/filter.png") no-repeat left center;
        }

    ul.page-options a {
        text-decoration: none;
        color: #000000;
    }

        ul.page-options a:hover {
            text-decoration: underline;
        }

#left-col {
    float: left;
    width: 220px;
}

#right-col {
    margin-left: 240px;
}

/* Visualization area */

#visualization {
    margin-bottom: 20px;
    padding: 1px;
}

#vis-options {
    margin-bottom: 7px;
}

    #vis-options ul {
        text-align: center;
        line-height: 32px;
    }

        #vis-options ul li {
            display: inline;
            margin: 0 10px;
            padding: 10px 0 10px 38px;
        }

            #vis-options ul li.disabled a {
                color: Gray;
                text-decoration: none;
            }

#view-bar-chart-population {
    background: url("../img/chart_bar.png") no-repeat left center;
}

#view-bar-chart-percentage {
    background: url("../img/chart_bar_percent.png") no-repeat left center;
}

#view-pie-chart {
    background: url("../img/chart_pie.png") no-repeat left center;
}

#view-map {
    background: url("../img/layers_map.png") no-repeat left center;
}

#view-table {
    background: url("../img/table.png") no-repeat left center;
}

#vis-options.disabled #view-bar-chart-population {
    background: url("../img/chart_bar_disabled.png") no-repeat left center;
}

#vis-options.disabled #view-bar-chart-percentage {
    background: url("../img/chart_bar_disabled.png") no-repeat left center;
}

#vis-options.disabled #view-pie-chart {
    background: url("../img/chart_pie_disabled.png") no-repeat left center;
}

#vis-options.disabled #view-map {
    background: url("../img/layers_map_disabled.png") no-repeat left center;
}

#vis-options.disabled #view-table {
    background: url("../img/table_disabled.png") no-repeat left center;
}

.visualization {
    display: none;
}

.OpenSpaceControlCopyrightCollection {
    bottom: 13px !important;
}

    .OpenSpaceControlCopyrightCollection a {
        display: none !important;
    }

#map-outer {
    position: relative;
}

.map-copyright {
    background-image: url(images/hatching1.gif);
    color: black;
    font-family: tahoma,arial,sans-serif;
    font-size: 11px;
    font-weight: bold;
    margin: 0 !important;
    text-align: left !important;
    visibility: visible !important;
    white-space: normal !important;
    bottom: 0;
    left: 2px;
    padding-left: 2px;
    position: absolute;
    z-index: 1005;
    /*padding-right: 268px;*/
    display: none;
}

    .map-copyright a {
        color: Black;
    }

#table {
    overflow: auto;
}


/* Legend */

div.legend {
    overflow: auto;
    margin-bottom: 7px;
    display: none; /*start with none shown*/
    font-size: 15px;
}

    div.legend li {
        margin-bottom: 3px;
        overflow: hidden;
        vertical-align: bottom;
    }

        div.legend li:last-child {
            margin-bottom: 0;
        }

        div.legend li span.key {
            display: block;
            width: 14px;
            height: 14px;
            border: 1px solid #CCCCCC;
            float: left;
            margin-right: 15px;
            margin-left: 5px;
        }

        div.legend li div.segment span.key {
            margin-left: 0px;
        }

        div.legend li img {
            float: left;
        }

        div.legend li div {
            margin-top: 4px;
        }

            div.legend li div.leftMargin {
                margin-left: 35px;
            }

        div.legend li.ancestorKey img {
            margin-left: 3px;
        }

.legend-section {
    margin-top: 10px;
}

#legend-sportsHelperText {
    margin-top: 10px;
    font-size: small;
}


/* ------------------------------------------------------------------------------------
   Filters
   ------------------------------------------------------------------------------------ */

/* Segments */
#choose-segments {
    margin: 20px 0;
    overflow: hidden;
}

    #choose-segments li {
        float: left;
        display: inline;
        padding: 6px;
        margin: 6px;
        border: 1px solid #555555;
        background-color: #EFEFEF;
        overflow: hidden;
        height: 120px;
        width: 152px;
    }

#segments li strong {
    float: left;
}

#choose-segments li:hover {
    background-color: #F7F5A9;
    cursor: pointer;
}

#choose-segments li.selected {
    border: 4px solid #E57A1D;
    margin: 3px;
}

#dominant-segments li {
    text-align: center;
    padding-top: 46px;
    height: 80px;
    line-height: 1.2em;
}

#choose-segments li a.choose-segments-profile {
    float: right;
    font-size: 10px;
    margin-left: 5px;
}

#choose-segments li div.choose-segments-photo {
    width: 100%;
    float: left;
    clear: both;
    margin-top: 6px;
    text-align: center;
    line-height: 0;
}

#choose-segments p.choose-segments-divider {
    float: left;
    font-weight: bold;
    font-size: 20px;
    width: 152px;
    height: 91px;
    text-align: center;
    margin: 60px 13px 0 13px;
}

/* Location */
#choose-location {
    margin-top: 20px;
}

ul.option-list li {
    margin-bottom: 10px;
    line-height: 21px;
    overflow: hidden;
}

/* IE6 only */
* html ul.option-list li {
    border: 1px solid #ffffff;
}

ul.option-list .ui-multiselect-options li {
    margin-bottom: 0;
    line-height: 1.3;
}

ul.option-list li:last-child {
    margin-bottom: 0;
}

ul.option-list div.radio {
    float: left;
    width: 220px;
}

ul.option-list div.option,
ul.option-list div.option-radio {
    margin-left: 230px;
}

    ul.option-list div.option input {
        width: 250px;
    }

    ul.option-list div.option .ui-multiselect-options input {
        width: auto;
    }

    ul.option-list div.option select {
        width: 256px;
    }

ul.option-sport div.option select {
    width: 400px;
}

ul.option-characteristic div.option select {
    width: 350px;
}

ul.option-characteristic div.radio {
    width: 310px;
}

ul.option-characteristic div.option {
    margin-left: 300px;
}

span.input-comment {
    margin-left: 10px;
    font-size: 12px;
}

#catchment {
    display: none;
    margin-top: 20px;
}

    #catchment input {
        width: 30px;
    }

    #catchment span {
        color: #555555;
    }

/* options */
#options-form #option-ap {
    height: 100px;
}

/* Modal windows */
.modal-window {
    display: none;
}

    .modal-window h2 {
        font-size: 18px;
    }

#save-form ul li {
    margin: 10px 0;
    padding: 10px 0 10px 38px;
    zoom: 1;
}

#save-form .save-pdf {
    background: url("../img/file_pdf.png") no-repeat left center;
}

#save-form .save-image {
    background: url("../img/file_image.png") no-repeat left center;
}

#save-form .save-excel {
    background: url("../img/file_excel.png") no-repeat left center;
}

#save-form li.disabled {
    display: none;
}

#save-form a {
    color: #1A688F;
}

#error-visualization {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    filter: alpha(opacity=90);
}

#error-visualization-outer {
    position: absolute;
    z-index: 5000;
    width: 100px;
    padding-top: 5px;
    display: none;
}

#progress-outer {
    position: absolute;
    z-index: 5000;
    width: 100px;
    padding-top: 5px;
    margin-right: 30px;
    display: none;
    text-align: right;
    opacity: 0.7; /* Firefox-type only */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
}

#progress {
    background-color: White;
    padding: 3px;
}

#limit-draw-outer {
    position: absolute;
    z-index: 5000;
    padding-top: 5px;
    padding-left: 80px;
    display: none;
}

#info-box {
    position: absolute;
    float: none;
    margin-right: 27px;
    z-index: 5000;
    width: 300px;
    margin-bottom: 5px;
    padding: 5px;
    border: solid 1px #D2D1D2;
    background-color: #F2F1F2;
    display: none;
}

/* ------------------------------------------------------------------------------------
   Download page
   ------------------------------------------------------------------------------------ */

#download-options,
#download-details {
    font-size: 15px;
}

    #download-options ol {
        list-style-type: decimal;
        padding-left: 25px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

        #download-options ol li {
            margin-bottom: 20px;
            padding: 3px;
        }

            #download-options ol li.odd {
                background-color: #F5F5F5;
            }

            #download-options ol li.selected {
                background-color: #DBFFAF;
            }

            #download-options ol li li {
                margin-bottom: 0;
                padding: 0;
            }

            #download-options ol li:last-child {
                margin-bottom: 0;
            }

    #download-options dl {
        zoom: 1;
    }

    #download-options dt {
        float: left;
        width: 100px;
        margin-bottom: 0.3em;
        font-weight: bold;
    }

    #download-options dd {
        margin-left: 120px;
        margin-bottom: 0.3em;
    }

        #download-options dd ul {
            margin-left: 20px;
            list-style-type: disc;
        }

    #download-details p {
        margin-bottom: 0.5em;
        line-height: 1.3;
    }

    #download-details ul.option-list {
        margin: 20px 0;
    }

    #download-details select {
        width: 306px;
    }

    #download-details input {
        width: 300px;
    }

    #download-details select.title {
        width: 60px;
    }

    #download-details input.title {
        width: 60px;
    }

    #download-details input.other {
        width: 130px;
    }

    #download-details span.check input {
        width: auto;
    }


/* ------------------------------------------------------------------------------------
   FAQs
   ------------------------------------------------------------------------------------ */

dl.faq dt {
    color: #227199;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 5px;
    padding-left: 15px;
    background: transparent url(Images/collapsedPanelIcon.gif) no-repeat left 6px;
    margin-bottom: 0;
    padding-bottom: 0.7em;
}

dl.faq dd {
    margin-left: 5px;
    padding-left: 15px;
}

#showHide {
    margin-left: 25px;
}


/* ------------------------------------------------------------------------------------
   Case Studies
   ------------------------------------------------------------------------------------ */

#caseStudies-view ul li {
    margin-bottom: 10px;
    padding: 3px;
}

    #caseStudies-view ul li.odd {
        background-color: #F5F5F5;
    }

    #caseStudies-view ul li:last-child {
        margin-bottom: 0;
    }

#caseStudies-view p {
    margin-bottom: 1em;
}

#caseStudies-view #smallPrint {
    font-size: x-small;
}

    #caseStudies-view #smallPrint h2 {
        font-size: x-small;
        text-decoration: underline;
    }

ul.caseStudiesList #caseStudyPreviewContainer {
    overflow: hidden;
}

ul.caseStudiesList #outerTextContainer {
    width: 100%;
    float: left
}

ul.caseStudiesList #innerTextContainer {
    margin-right: 125px;
}

ul.caseStudiesList .casestudyheader {
    overflow: hidden;
}

ul.caseStudiesList .title {
    float: left;
    font-size: 20px;
    font-weight: bolder;
}

ul.caseStudiesList .user {
    float: right;
    padding-left: 5px;
    padding-top: 0;
}

ul.caseStudiesList #summary {
    margin-top: 10px;
    margin-bottom: 10px
}

ul.caseStudiesList #previewImageContainer {
    float: left;
    margin-left: -100px;
}

#caseStudies-template #emailLink {
    margin-top: 10px;
    margin-left: 20px
}

#caseStudies-upload h2 {
    margin-bottom: 20px;
}

#caseStudies-upload #uploadButtonDiv {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 25px;
}

#caseStudies-upload dd {
    margin-bottom: 10px;
}

#caseStudies-organise #description {
    margin-bottom: 25px;
}

#caseStudies-organise .orderingListHeader {
    margin-bottom: 10px;
}

#caseStudies-organise #commitOrdering {
    margin-left: 20px;
}

#caseStudies-organise .caseStudiesList {
    padding-bottom: 20px;
    margin-bottom: 20px;
    background-color: #DDDDFF;
}

    #caseStudies-organise .caseStudiesList li {
        border-style: solid;
        border-width: 1px;
        margin-bottom: 1px;
    }

#caseStudies-organise #SelectedCaseStudies li {
    background-color: #DDFFDD;
}

#caseStudies-organise #NonSelectedCaseStudies li {
    background-color: #FFDDDD;
}

.editListHeader {
    margin-top: 8px;
    margin-bottom: 8px;
}

    .editListHeader a {
        font-size: medium;
        font-weight: normal;
    }

/* Remove the OpenSpace Logo */
#OpenSpaceControlPoweredBy img {
    visibility: hidden;
}

#ccc-content #cc-panel #ccc-end #ccc-dismiss-button span {
    color: #227199 !important;
}

#ccc-recommended-settings {
    background: #fff !important;
    font-weight: 700 !important;
}
