

/*======================================================
  sitecontent.CSS
  ======================================================
    1.  TEXT STYLES
    2.  TABLES
    3.  FORMS
    4.  BUTTONS
    5.  HELPER CLASSES
    6.  AccordionS
    7.  MEDIA QUERIES

  ===================================================== */


/*======================================================
  1. TEXT STYLES
  ===================================================== */

body {
    font: 16px/20px 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000;
}

h1, h2, h3, h4, h5, h6 {
	font-family:'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.2em;
    color: #000;
    font-weight: normal;
}

h1 {
    font-size: 1.750em; /* 28px */
    font-weight: normal;
    padding: 0;
    margin: 0;
    text-align: left;
}

    h1.hidden {
        height: 1px;
        width: 1px;
        visibility: hidden;
        position: fixed;
        top: 0;
        right: 0;
    }

h2 {
    font-size: 1.500em; /* 24pt */
    margin: 15px 0;
	font-weight: normal;
    padding: 0;
}

h3 {
    font-size: 1.250em; /* 20pt */
    font-weight: normal;
    margin: 10px 0;
    padding: 0;
}

h4,
h5,
h6 {
    font-size: 1.125em; /* 18pt */
    font-weight: bold;
    margin: 10px 0;
    padding: 0;
}

#printArea .intro {
    font-size: 1.125em;
    color: #000;
}

#printArea .caption {
    font-size: 11px;
    font-style: italic;
    line-height: 15px;
}


.eSolutionsGroupPhotoGalleryV2PlaceholderDiv .ad-image-description {
    margin: 0px !important;
}

/* Blockquotes */

blockquote {
}

    blockquote .quoteText {
        font-size: 1.25em;
        line-height: 1.25em;
        margin-bottom: 20px;
    }

/* Link Colors */

a, a:link, a:visited, a[href^=tel] {
    color: #0066a4;
	font-weight: 600;
    text-decoration: none;
}

footer a[href^=tel] {
	color: #fff;
}

    a:hover, a:active, a:focus {
        text-decoration: underline;
    }

#footerText a{
    color: #fff !important;
	font-weight: normal;
}

.col-content p.viewAll a, .col-content a.viewAll{
	margin: 10px 0 !important;
	overflow: hidden;
	display: block;
	float: left;
	min-width: 55%;
	padding: 8px 15px;
	color: #336699 !important;
	background: #e6e6e6;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#colPostings .col-content p.viewAll a, #colPostings .col-content a.viewAll{
	display: inline-block;
	width: auto;
	min-width: 0;
	float: none;
	margin: 0 !important;
	color: #FFF !important;
	background: #2a84b7;
	font-weight: normal;
	padding: 8px 30px;
}

/* Ensuring content-related lists display properly in content areas */
/* list-style-position:inside; for IE */
#printArea ul {
    margin: 10px 0px 10px 30px;
    padding: 0;
	list-style-type: square;
}

#printArea ol {
    margin: 10px 0px 10px 30px;
    padding: 0;
}

#printArea li {
    margin: 5px 0px 5px 0px;
}


/* fix for showing bullets on photo gallery images */
#contentInt .ad-nav ul li {
    list-style: none !important;
}



/*======================================================
  2. TABLE STYLES
  ===================================================== */

.datatable {
    margin: 0px 0px 15px 0px;
    padding: 0;
    width: 100%;
}

    .datatable td, .datatable th {
        padding: 7px 10px;
        color: #333;
		border-bottom: 1px solid #e8f1f7;
    }

    .datatable .titlerow {
        background: #2a84b7;
        text-align: left;
        font-size: 1em;
        color: #FFF;
        font-weight: bold;
    }

        .datatable .titlerow td, .datatable .titlerow th {
            color: #FFF;
			border: none;
        }

        .datatable .titlerow h2 {
            color: #FFF !important;
        }

    .datatable caption {
        text-align: left;
        /*	height: 0px;
    visibility: hidden;
    display: none; */
    }

    .datatable .row {
        background: #e8f1f7;
    }

    .datatable .altrow {
        background: #fff;
    }

    .datatable td p, #printArea .datatable td p, td p, #printArea td p {
        margin: 7px 0 0 0;
    }

        .datatable td p:first-child, #printArea .datatable td p:first-child {
            margin: 0 !important;
        }

        td p:first-child, #printArea td p:first-child {
            margin: 0 !important;
        }

sub {
    font-size: 80%;
}

sup {
    font-size: 80%;
}

hr {
    display: block;
    border: none;
    height: 1px;
    color: #ccc;
    background-color: #ccc;
    margin: 20px 0;
}


/*======================================================
  3. FORM STYLES (DEFAULT STYLES IN BASE.CSS)
  ===================================================== */

::-webkit-input-placeholder {
    color: #000;
	opacity: 1;
}

:-moz-placeholder { /* Firefox 18- */
    color: #000;
	opacity: 1;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #000;
	opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
	opacity: 1;
}

.formField {
    width: 100%;
    margin: 6px 0;
}

input[type="text"], input[type="date"], select {
    width: 100%;
    height: 30px;
    padding: 3px 7px;
    -webkit-appearance: none;
    border: solid 1px #ccc;
}

textarea {
    width: 100% !important;
    min-height: 144px;
    padding: 7px;
    border: none;
    outline: none;
    -webkit-appearance: none;
    border: solid 1px #ccc;
}

input[type="button"] {
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
}

select[multiple] {
    min-height: 185px;
}


/*======================================================
  4. BUTTONS
  ===================================================== */

.button, a.button, button {
    cursor: pointer;
    border: none;
    display: inline-block;
    padding: 10px;
    margin: 3px 3px 3px 0;
    color: #fff !important;
    text-align: center;
    font-size: .9em;
    font-weight: 700;
    background: #2a84b7;
    -webkit-transition: background 0.1s ease-in;
    -moz-transition: background 0.1s ease-in;
    -ms-transition: background 0.1s ease-in;
    -o-transition: background 0.1s ease-in;
    transition: background 0.1s ease-in;
    -webkit-backface-visibility: hidden;
    -webkit-appearance: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.myZone .button.arrowButton {
    clear: both;
    text-align: left;
    background-image: url(../images/structure/chevron-right-white.png); 
    background-position: 95% center;
    background-repeat: no-repeat;
    display: block;
    margin: 5px 0;
    padding-right: 40px;
}

    .button:hover, .button:active, a.button:hover, a.button:active, button:hover, button:active {
        text-decoration: none;
    }


/*======================================================
  5. HELPER CLASSES
  ===================================================== */

/*======required (MUST SUPPORT WHITE TEXT) ======= */

.headingBackgroundColour { background-color: #2a84b7 !important; }

/*=============================================== */

#printAreaContent img {
    max-width: 100%;
    height:auto;
}

img.ImageLeft, img.Left, .Left iframe {
    float: left;
    margin: 0 20px 20px 0;
    padding: 1px;
}

img.ImageRight, img.Right, .Right iframe {
    float: right;
    margin: 0 0 20px 20px;
    padding: 1px;
}

img.Center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    clear: both;
}

.Center, .alignCenter {
    text-align: center;
}

.Left, .alignLeft {
    text-align: left;
}

.Right, .alignRight {
    text-align: right;
}

.inline {
    display: inline;
}

.inlineBlock {
    display: inline-block;
}

.noMarginTop {
    margin-top: 0;
}

.noMarginBottom {
    margin-bottom: 0;
}

.noMarginLeft {
    margin-left: 0;
}

.noMarginRight {
    margin-right: 0;
}

.width100 {
    width: 100%;
}

.RedText {
	color: #BD1B3E;
}

.BlueText {
	color: #003d79;
}


/*======================================================
  6. ACCORDIONS
  ===================================================== */

.Accordion {
    margin-bottom: 5px;
}

.AccordionTrigger {
    display: block;
    padding: 8px;
    overflow:hidden;
    padding-right: 60px;
    position: relative;
    border: solid 1px #999;
    background: #fff url(../images/structure/Accordion-open.png) 99% center no-repeat;
    -webkit-box-shadow: 0 3px 3px #999; 
    -moz-box-shadow: 0 3px 3px #999;
    box-shadow: 0 2px 3px #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

    .AccordionTrigger:hover,
    .AccordionTrigger:focus
    {
        background-color: #f7f7f7;   
        text-decoration: none;
        cursor: pointer;
    }

    .AccordionTrigger:active {
        background-color: #f7f7f7;   
        text-decoration: none;
        cursor: pointer;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;   
    }
    .AccordionTrigger.open {
        border: solid 1px #ccc;
        background: #fff url(../images/structure/Accordion-close.png) 99% center no-repeat;
        -webkit-border-radius: 3px 3px 0 0;
        -moz-border-radius: 3px 3px 0 0;
        border-radius: 3px 3px 0 0; 
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;   
    }
.AccordionContent {
    padding: 10px;
    border: solid 1px #ccc;
    border-top: none;
    overflow:hidden;
    display: none;
    background: #efefef;
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}


/* Nested Accordion */

.AccordionContent .AccordionContent {
    background: #fff !important;
}


p.ic-EmptyContent { 
    display:none;
}


 


/*======================================================
  7. MEDIA QUERIES
  ===================================================== */

@media only screen and (max-width : 991PX) {
    select[multiple] {
        min-height: 0;
    }
}

@media only screen and (max-width : 767px) {
	
	.col-content p.viewAll a, .col-content a.viewAll{
		font-weight: normal;
	}
	.sectionHeadingContent{
		width: 220px;
		margin-left: -110px;
	}
	
	.sectionHeadingContent h2{
		width: 212px;
		font-size: 1.2em;
	}
	
	.contentLeft .col-header h3{
		background-size: 30px auto !important;
		line-height: 1.429em;
		margin: 6px 0 !important;
	}
	
    .ic-form-group {
        text-align: left;
    }

    .xsPadding40 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .xsPadding20 {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .xsNoGutter {
        padding-left: 0;
        padding-right: 0;
    }

    #footerWrapper a[href^=tel] {
        color: #c1e0ff;
    }

    .hideXs {
        display: none;
    }
	
	
	/* Custom Table Styles */
	
	.datatableColumnHighlight, .datatableRowHighlight, .datatableColumnAndRowHighlight{
		border: 1px solid #ccc;
	}
	
	.datatableColumnHighlight tr, .datatableRowHighlight tr, .datatableColumnAndRowHighlight tr{
		border-bottom: 1px solid #ccc;
		border-top: 1px solid #ccc;
	}
	
	.datatableColumnHighlight thead tr, .datatableRowHighlight thead tr, .datatableColumnAndRowHighlight thead tr{
		border: none;
	}
	
	.datatableColumnHighlight tr, .datatableRowHighlight tr, .datatableColumnAndRowHighlight tr,
	.datatableColumnHighlight th, .datatableRowHighlight th, .datatableColumnAndRowHighlight th,
	.datatableColumnHighlight td, .datatableRowHighlight td, .datatableColumnAndRowHighlight td{
		display: block;
		width: 100% !important;
	}
	
	.datatableColumnHighlight thead tr.altrow, .datatableColumnHighlight thead tr.row,
	.datatableRowHighlight thead tr.altrow, .datatableRowHighlight thead tr.row,
	.datatableColumnAndRowHighlight thead tr.altrow, .datatableColumnAndRowHighlight thead tr.row{
		display: none;
	}
	
	.datatable td, .datatable th,
	.datatableColumnHighlight td, .datatableColumnHighlight th,
	.datatableRowHighlight td, .datatableRowHighlight th,
	.datatableColumnAndRowHighlight td, .datatableColumnAndRowHighlight th {
        padding: 10px;
    }
	
	.datatableColumnHighlight .altrow td:first-child,
	.datatableColumnAndRowHighlight .altrow td:first-child,
	.datatableColumnHighlight .row td:first-child,
	.datatableColumnAndRowHighlight .row td:first-child{ background: #f5eaea; border-right: none; padding-top: 15px; padding-bottom: 15px; font-weight: bold; }
	
	.datatableColumnHighlight .altrow td,
	.datatableColumnHighlight .row td,
	.datatableColumnAndRowHighlight .altrow td,
	.datatableColumnAndRowHighlight .row td{
		background: #FFF;
	}
	
}
