/* Master layout */

/************************************************************
Global styles */

/* Partial CSS Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-tap-highlight-color:  rgba(0, 0, 0, 0);
}
html, body {
	height: 100%;
	width: 100%;
	-webkit-text-size-adjust: 100%;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, select, input, option {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
	display: block;
}
audio, canvas, video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
	height: 0;
}
pre {
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word
}

:focus {
	outline:none;
}

table {
	border: 0 none;
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
td {
	vertical-align: top;
}

/* End Reset */

body{
	font-family: 'Helvetica';
	font-size: 14px;
	color: #061e39;
}
/* Links */
a {
	color:inherit;
	outline:none;
	color:inherit;
	outline:none;
	-webkit-transition: all 0.3s ease 0s; 
	   -moz-transition: all 0.3s ease 0s;
	    -ms-transition: all 0.3s ease 0s;
	     -o-transition: all 0.3s ease 0s;
			transition: all 0.3s ease 0s;
}

a:link,
a:visited,
a:hover,
a:active {
	text-decoration:none;
}
}
	
a:link,
a:visited,
a:hover,
a:active {
	text-decoration:none;
	
}
a img {
	border:none;
}
img {
	max-width:100%;
}
a[href^="tel:"] {
	color:inherit;
	cursor:inherit;
}
input[type="search"] {
    -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}
/* Headings */
h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}
h1 {

}
h2 {
}
h3 {
}
h4 {

}

/* Block-level */

address {
	font-style:inherit;
}
p{
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 20px;
}
strong{
	font-family: 'Helvetica Bold';
}

i {
  text-transform: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: normal;
  color: inherit;
}

p a {
	color: #9368A9;
	text-decoration: underline !important;
}
footer p a {
	color: #FFF !important;
	text-decoration: underline !important;
}

p a:hover {
	color: inherit;
}

/*************************
   Generic Site Styles
*************************/
.table {
  display: table;
  width: 100%;
  height: 100%;
  table-layout: fixed;
  /*float: none !important;*/
}
.table.page{
  max-width: 1102px;
  margin: 0 auto;
}
#nav-bar .table.page {
	max-width: 1300px;
}
.table.page.large {
  max-width: 1024px;
}

main .table.page,
.table.auto-height {
  height: auto;
}

.table.auto-width {
  width: auto;
}

.table.auto-all {
  height: auto;
  width: auto;
}

main .table.page {
  max-width: 1002px;
}
.row {
  display: table-row;
}
.cell {
  display: table-cell;
  vertical-align: top;
  height: 100%;
  float: none !important;
}
.padding {
  padding: 0px 20px;
}
.padding-left {
  padding-left: 20px;
}
.padding-right {
  padding-right: 20px;
}
.middle {
  vertical-align: middle;
}
.bottom {
  vertical-align: bottom;
}
.table-header-group {
  display: table-header-group;
}
.table-footer-group {
  display: table-footer-group;
}

/* Text alignment */
.align-left { text-align:left !important; }
.align-center { text-align:center !important; }
.align-right { text-align:right !important; }

/** Default Placeholder styles ***/

::-webkit-input-placeholder {
/* WebKit browsers */
  
}
:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
  
}
::-moz-placeholder {
/* Mozilla Firefox 19+ */

}
:-ms-input-placeholder {
/* Internet Explorer 10+ */

}

/* Container class to make iFrames responsive */
.frame-contain {
	position: relative;
	height:0;
	max-width:100%;
	overflow: hidden;
	padding-bottom: 56.25%; /* 16:9 */
							/* 75% = 4:3 */
}

.frame-contain iframe {
	position: absolute;
	top:0;
	left:0;
	height:100% !important;
	width:100% !important;
}

/* Fix extra button padding in Firefox */
input[type="submit"]::-moz-focus-inner {
	border:none;
	padding:0;
	line-height:1;
}
/************************************************************
Miscellaneous */

.relative {
  position: relative;
}

.full-size {
  height: 100%;
  width: 100%;
}

.on-top {
  position: relative;
  z-index: 1;
}

.hide {
  display: none !important;
}

#outer-container ul:not([class]),
.popup ul:not([class]) {
  display: block;
  list-style: none;
}

#outer-container ul:not([class]) > li,
.popup ul:not([class]) > li { 
  display: block;
  list-style: none;
  width: 100%;
  position: relative;
  padding-left: 12px;
  font-size: 14px; 
  line-height: 22px;
}

#outer-container ul:not([class]) > li + li,
.popup ul:not([class]) > li + li {
  margin-top: 15px;
}

#outer-container ul:not([class]) > li:before,
.popup ul:not([class]) > li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #c69b82;
  position: absolute;
  top:7px;
  left: 0px;
}

#outer-container * + ul:not([class]),
.popup * + ul:not([class]) {
  margin-top: 18px;
}

#outer-container ul:not([class]) + *,
.popup ul:not([class]) + * {
  margin-top: 18px;
}

/************************************************************
Site Stuff */

/* Banner text */
/*
.banner-spacing {
	padding-top:265px;
}
*/

.pl-holder, input.pl-holder{
	color: rgba(46, 46, 52, 0.5);
}
.fs-light{
	color: #ffffff;
}
.bg-overlay{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.6;
	z-index: 1;
	background: rgba(159,124,104,1);
	background: -moz-linear-gradient(top, rgba(159,124,104,1) 0%, rgba(64,90,137,1) 48%, rgba(6,30,57,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(159,124,104,1)), color-stop(48%, rgba(64,90,137,1)), color-stop(100%, rgba(6,30,57,1)));
	background: -webkit-linear-gradient(top, rgba(159,124,104,1) 0%, rgba(64,90,137,1) 48%, rgba(6,30,57,1) 100%);
	background: -o-linear-gradient(top, rgba(159,124,104,1) 0%, rgba(64,90,137,1) 48%, rgba(6,30,57,1) 100%);
	background: -ms-linear-gradient(top, rgba(159,124,104,1) 0%, rgba(64,90,137,1) 48%, rgba(6,30,57,1) 100%);
	background: linear-gradient(to bottom, rgba(159,124,104,1) 0%, rgba(64,90,137,1) 48%, rgba(6,30,57,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9f7c68', endColorstr='#061e39', GradientType=0 );
}
.dotted-overlay{
	background: url("../images/layout/bg_pattern_dotted.png") repeat;
	position: absolute;
  top: 0px;
  left: 0px;
	width: 100%;
	height: 100%;
}
.bg-light{
	background: url(../images/layout/bg_pattern.png) repeat #ffffff;
}
.bg-dark{
	background: url(../images/layout/bg_pattern_lines.png) repeat #061e39;
	color: #ffffff;
}
.btn{
	text-transform: uppercase;
	height: 52px;
	line-height: 46px;
	color: #ffffff;
	font-family: 'Helvetica Bold';
	border: 4px solid  #9368A9;
	display: inline-block;
	min-width: 200px;
	text-align: center;
	padding: 0 20px;
	font-size: 18px;
	background: none;
	cursor: pointer;
	-webkit-transition: all 0.3s ease 0s; 
	   -moz-transition: all 0.3s ease 0s;
	    -ms-transition: all 0.3s ease 0s;
	     -o-transition: all 0.3s ease 0s;
			transition: all 0.3s ease 0s;
}
.btn:hover{
	background-color:  #9368A9;
}
.link{
	font-family: 'Helvetica Bold';
	text-transform: uppercase;
	font-size: 18px;
}
.slick-arrow.slick-prev, 
.slick-arrow.slick-next,
.nav-arrow{
	width:60px;
	height: 55px;
	border: 4px solid #9f7c68;
	display: block;
	text-indent: -999em;
	-webkit-transition: all 0.3s ease 0s; 
	   -moz-transition: all 0.3s ease 0s;
	    -ms-transition: all 0.3s ease 0s;
	     -o-transition: all 0.3s ease 0s;
			transition: all 0.3s ease 0s;
}
.slick-arrow.slick-next:hover,
.slick-arrow.slick-prev:hover{
	background-color: #9f7c68 !important;
}
.nav-arrow.nav-next:hover{
	background: url("../images/arrows/sl_right_light.png") center center no-repeat #9f7c68;
}
.nav-arrow.nav-prev:hover{
	background: url("../images/arrows/sl_left_light.png") center center no-repeat #9f7c68;
}
.slick-arrow.slick-prev,
.nav-arrow.nav-prev{
	background: url("../images/arrows/sl_left_blue.png") center center no-repeat;
}
.slick-arrow.slick-next,
.nav-arrow.nav-next{
	background: url("../images/arrows/sl_right_blue.png") center center no-repeat;
}
h3.compl-title{
	font-size: 32px;
	line-height: 40px;
	padding-bottom: 20px;
	position: relative;
	margin-bottom: 20px;
	font-family: 'Copperplate Gothic Bold';
	text-transform: uppercase;
}
h3.compl-title span{
	color: #9368A9;
	font-family: 'Black Jack';
	display: block;
	text-transform: none;
}
h3.compl-title:after{
	content: "";
	display: block;
	width: 228px;
	height: 4px;
	background: #405a89;
	position: absolute;
	left:50%;
	margin-left: -114px;
	bottom: 0;
}
.fixed-section{
	left: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
  transition: all 0.8s ease 0s;
}
.fixed-section .bg-overlay{
	opacity: 0.90;
}
.close-btn{
  background: rgba(0, 0, 0, 0) url(../images/layout/close-menu-white.png) no-repeat scroll 0 0;
  display: block;
  font-size: 20px;
  position: fixed;
  right: 45px;
  text-indent: -999em;
  top: 170px;
  width: 26px;
  height: 28px;
  z-index: 20;
}

div.selectBox .sbHolder, div.selectBox .sbOptions {
	font-family: 'Helvetica Bold';
}
div.selectBox {
	background-color: #061e39;
	width: 100%;
	position: relative;
	z-index: 99;
}
div.selectBox.smallBox {
	width: 120px
}
div.selectBox * {
	box-sizing: border-box !important
}
div.selectBox .sbHolder, div.selectBox .sbSelector, div.selectBox .sbToggle {
	height: 53px
}
div.selectBox .sbHolder {
	background-color: #061e39;
	color: #FFF;
	cursor: pointer;
	font-size: 16px;
	line-height: 16px;
	padding: 0;
	position: relative;
	z-index: 1
}
div.selectBox .sbHolder a {
	color: #FFF
}
div.selectBox .sbSelector {
	overflow: hidden;
	padding: 17px 16px;
	border: 2px solid #061e39;
}
div.selectBox .sbToggle {
	background: url(/images/layout/category-arrow.png) center center no-repeat #405A89;
	cursor: pointer;
	position: absolute;
	right: 0;
	width: 49px;
	top: 0
}
div.selectBox .sbOptions {
	background: #FFF;
	max-height: 250px !important;
	overflow-y: auto;
	border-left: 2px solid #061e39;
	border-right: 2px solid #061e39;
	border-bottom: 2px solid #061e39
}
div.selectBox .sbOptions li a {
	font-size: 14px;
	line-height: 14px;
	color: #000;
	display: block;
	padding: 10px 13px
}
div.selectBox .sbOptions li a:focus, div.selectBox .sbOptions li a:hover {
	background: #405A89;
	color: #fff
}
.episodes-of-care {
	margin-top: 50px;
}
.episodes-of-care span {
	font-family: 'Helvetica Bold';
	font-size: 18px;
	color: #061e39;
	text-transform: uppercase;
}