/* ## corrects possible view port issues in browsers that do not recognize the viewport meta tag ## */
/* http://timkadlec.com/2013/01/windows-phone-8-and-device-width/ */
@-webkit-viewport   { width: device-width; }
@-moz-viewport      { width: device-width; }
@-ms-viewport       { width: device-width; }
@-o-viewport        { width: device-width; }
@viewport           { width: device-width; }



/*! normalize.css v2.0.1 | MIT License | git.io/normalize */

/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

/*
 * Corrects `block` display not defined in IE 8/9.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
}

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */

audio,
canvas,
video {
    display: inline-block;
}

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */

[hidden] {
    display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */

/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
    font-family: sans-serif; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -ms-text-size-adjust: 100%; /* 2 */
}

/*
 * Removes default margin.
 */

body {
    margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */

/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */

a:focus {
    outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
    outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */

h1 {
    font-size: 2em;
}

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/*
 * Addresses style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */

b,
strong {
    font-weight: bold;
}

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */

dfn {
    font-style: italic;
}

/*
 * Addresses styling not present in IE 8/9.
 */

mark {
    background: #ff0;
    color: #000;
}


/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */

q {
    quotes: "\201C" "\201D" "\2018" "\2019";
}

/*
 * Addresses inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */

/*
 * Removes border when inside `a` element in IE 8/9.
 */

img {
    border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */

svg:not(:root) {
    overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */

/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */

figure {
    margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

/*
 * Define consistent border, margin, and padding.
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
    border: 0; /* 1 */
    padding: 0; /* 2 */
}

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */

button,
input,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 2 */
    margin: 0; /* 3 */
}

/*
 * Addresses Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

button,
input {
    line-height: normal;
}

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button; /* 2 */
    cursor: pointer; /* 3 */
}

/*
 * Re-set default cursor for disabled elements.
 */

button[disabled],
input[disabled] {
    cursor: default;
}

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/*
 * Removes inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */

/*
 * Remove most spacing between table cells.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}



/* ===============  Default Adjustments  =============== */

body { font-family:"freight-sans-pro",sans-serif; }

::-moz-selection { background: #3197fc; text-shadow: none; }
::selection { background: #3197fc; text-shadow: none; }

hr { display: block; height: 1px; border: 0; border-top: 2px solid #fdd966; margin: 1.8em 0; padding: 0;}
img { max-width:100% !important; height:auto !important; vertical-align: middle; }
fieldset {border: 0;margin: 0; padding: 0; }
textarea { resize: vertical; }

/** FIX Google Maps Info window styes problem **/
img[src*="gstatic.com/"],
img[src*="googleapis.com/"] {
	max-width: none !important;
}

p { margin:0 0 1em 0; }

.ir { background-color: transparent; border: 0; overflow: hidden; *text-indent: -9999px; }
.ir:before { content: ""; display: block; width: 0; height: 100%; }
.hidden { display: none; visibility: hidden; }
.visuallyHidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
.visuallyHidden.focusable:active, .visuallyHidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
.invisible { visibility: hidden; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

.hide       { display:none; }
.smallest   { font-size:.8em; }
.smaller    { font-size:.9em; }
.larger     { font-size:1.1em; }
.largest    { font-size:1.2em; }
.bold       { font-weight:bold; }
.italic     { font-style:italic !important; }
.strike     {text-decoration:line-through !important;}

.red, .red:visited          { color:#f00 !important; }
.green, .green:visited      { color:#390 !important; }
.lgreen, .lgreen:visited    { color:#97937d !important; }

.bgYellow { background:yellow; }
.bgGreen { background:lime; }
.vtop { vertical-align:top; }
.center { text-align:center; }
.left { text-align:left; }
.right { text-align:right; }
.floatLeft { float:left; }
.floatRight { float:right; }
.imgLeft { float:left; margin-right:5px; padding:5px; border:1px solid #c4c4c4; }
.imgRight { float:right; margin-left:5px; padding:5px; border:1px solid #c4c4c4; }
.nowrap { white-space:nowrap; }
.borderless { border:0; border-collapse:collapse; }
.breakforprint { page-break-after:always; }
.clear { overflow:hidden; clear:both; height:0; margin:0; font-size:1px; line-height:0; }
.skip { position:absolute; left:-10000px; width:1px; height:1px; overflow:hidden; }
.important { color:red; font-weight:bold; text-transform:uppercase; }


/* ## Base List styles ## */
ul, ol { margin:0 0 1em; }
.noBullet { padding:0 0 0 1em; list-style-type:none; }
.noIndent { padding:0; list-style-type:none; }
.bulletSquare { list-style-type:square; }

/* ## Note/hint text or link ## */
.note { margin:0 7px; font-size:.8em; color:#4e4e4e; }
.note a, .note a:link, .note a:visited { text-decoration:underline; }


/* ================================================================
   PRIMARY LAYOUT STYLES 
   ================================================================ */

/* Enter unique styles for site here */

/* ## Disabled Form Fields ## */
input[disabled=true]    { background-color: #F0F0F0; }
textarea[disabled=true] { background-color: #F0F0F0; }
select[disabled=true]   { background-color: #F0F0F0; }
input[readonly=true]    { background-color: #F0F0F0; }
textarea[readonly=true] { background-color: #F0F0F0; }
select[readonly=true]   { background-color: #F0F0F0; }


/* Removed :link from the list to help cut down on writing time and prevent the need for extra specificity for classes */
a, a:visited { color:#2b4985; text-decoration:underline; }
a:hover, a:active, a:focus { color:#2b4985; text-decoration:none; }
a:active, a:focus { outline:0; }

.btnText { margin:0; padding:0; color:#6D6D6D; text-decoration:underline; border:0; background:none; }
.btnText:hover { color:#6D6D6D; text-decoration:none; }


/* ## Link Modifiers ## */
a .text { text-decoration:underline; }
a:hover .text, a:active .text, a:focus .text { text-decoration:none; }
a [class^="icon-"] { text-decoration:none; }
a.removeLink { color:#f00; font-size:0.9em; }


/* ## Link Lists ## */
/* We use '<ul class="linkList">' when setting a list of organized links. */
ul.linkList {margin:0 0 15px 0; padding:0; list-style-type:none;}
ul.linkList li {margin-bottom:8px;}
ul.linkList a,
ul.linkList a:link,
ul.linkList a:visited { text-decoration:none;}
ul.linkList a:hover,
ul.linkList a:active {text-decoration:underline;}


/* ## Start Up Layout - Use, modify, or delete as need be ## */
body {background:url(/cms/images/layout/bg_site.png) repeat 0 0; }
.siteContainer {max-width:1020px; margin:0 auto; background:#ffffff; overflow-x:hidden;}
.siteBody { min-height:300px; padding:45px 0 20px 0; }

h1 {}
h2 {color:#2b4985; font-size:1.875em; margin:0 0 10px 0;}
h3 {color:#2b4985; font-size:1.125em; margin:0 0 0 0; font-weight:500; text-transform:uppercase;}
h4 {color:#2b4985; font-size:1em; margin:0 0 5px 0; font-weight:bold; text-transform:uppercase;}

.siteBody p {font-size:1.125em; color:#2b4985;}
.siteBody p.smaller {font-size:1em;}
.siteBody p.smallest {font-size:.813em;}
.siteBody ul,
.siteBody ol {font-size:1.125em; color:#2b4985;}
.siteBody ul li,
.siteBody ol li {margin:0 0 10px 0;}

.siteBody ul {list-style-type:none;}
.siteBody ul li {position:relative; }
.siteBody ul li:before {content:'-'; left:-10px; position:relative;}

hr.yellow {border-top:2px solid #fdd966; margin:25px 0 25px 0;}

.hdng {}
.hdng2 {font-size:2.1em; text-transform:uppercase; margin:0 0 8px; line-height:1;}

ul.arrowList {margin:0 0 20px 0; padding:0; list-style-type:none;}
ul.arrowList li {margin:0 0 20px 0; position:relative; padding:0 0 0 15px;}
ul.arrowList li:before {content: '>'; position:absolute; top:-2px; left:0px; font-weight:500;}
ul.arrowList li .title {display:block; font-weight:500; margin:0px; text-transform:uppercase;}
ul.arrowList li .sub {display:block; color:#7e8aa2;}
ul.arrowList li a {text-decoration:none;}

/* ## Site Header ## */
.siteHeader {position:relative; z-index:1000; padding:10px 0 0 0;}
.siteHeader a.sitelogo { display:block;  margin:0 0 15px 0;}


.headerLinks {
    font-size: 0.75em;
    text-align: right;
	color:#2b4985;
	margin:0 0 15px 0;
	font-weight:500;
	float:left;
	position:relative;
}
.headerLinks a{
    margin: 0 3px;
	color:#2b4985;
    text-decoration: none;
}
.headerLinks a:hover, .headerLinks a:active {
    text-decoration: underline;
}
.headerLinks .loginBlock {position:absolute; display:none; width:320px; border:2px solid #005696; border-top:0px; left:-12px; top:25px; background:#ffffff; text-align:left; z-index:9999;}
.headerLinks .loginBlock .inner {padding:10px;}
.headerLinks .loginBlock .loginLinks {padding:5px 0 10px 0;}

/* Homepage */
.slideshow {position:relative;}
.heroContainer { position:relative; margin:0 -10px;}
.heroContainer img {}
.heroContainer  .over {position:absolute; height:100%; width:100%; top:0px; left:0px;}
.heroContainer .top {position:absolute; top:0px; width:100%;}
.heroContainer .bottom {position:absolute; bottom:0px; width:100%;}
.heroContainer .headline {font-size:1.875em; color:#ffffff; text-transform:uppercase; margin:0px; padding:10px 0; background:#008da8; text-align:center; letter-spacing:2px;}
.heroContainer .desc { background:#263248; color:#ffffff; font-size:1.313em; padding:15px; text-align:center; font-size:.9em;}
.heroContainer .desc .title {font-weight:bold; margin:0px; color:#ffffff;}
.heroContainer .desc p {margin:0px;}
.heroContainer .desc a {text-decoration:none; color:#ffffff;}
.slideshow .slick-prev {position:absolute; bottom:-12px; left:0px; font-size:3em; color:#AB0534; cursor:pointer;}
.slideshow .slick-next {position:absolute; bottom:-12px; right:0px; font-size:3em; color:#AB0534; cursor:pointer;}

.welcomeContainer {padding:20px 0; text-align:center;}
.welcomeContainer  h1 {font-size:1.750em; text-transform:uppercase; margin:0;  color:#263248;}
.welcomeContainer  p {font-size:1.125em; margin:0;  color:#263248; line-height:1.5;}


.contactContainer {background:#263248; padding:45px 0;}
.contactContainer .hdng2 {color:#ffffff;}
.contactContainer .formee label {color:#ffffff; font-weight:bold;}
.contactContainer .formee .formee-txt,
.contactContainer .formee input,
.contactContainer .formee select {background:#263248; border:1px solid #ffffff; color:#ffffff;}
.contactContainer .formee .btn {background:#e3e3e3; border:0px; color:#000000;}


.myacpContainer {background:#fbc112; padding:20px 0;}
.homeLogin .hdng2 {color:#263248;}
.homeLogin p {color:#263248; margin:0px; line-height:1.5;}
.homeLogin .textBlock { padding:0 0 10px 0;}
.homeLogin .formee input,
.homeLogin .formee select { border:1px solid #263248; color:#444444;}
.homeLogin .formee .btn {background:#263248; color:#ffffff;}
.homeLogin .loginLinks {float:right; font-size:.813em; }
.homeLogin .loginLinks a {text-decoration:none;}

.homeSplitcontainer {}
.homeSplit {}
.homeSplitLeft { padding:30px 10px 20px 10px; background:#d5dfe8;}
.homeSplitRight {display:table-cell; width:35%; background:#263248; padding:30px 10px 20px 10px;}
.homeSplitLeft .hdng2 {color:#263248;}
.homeSplitLeft p {color:#263248; margin:0 0 30px 0; line-height:1.5;}
.homeSplitRight .hdng2 {color:#7e8aa2;}
.homeSplitRight p {color:#ffffff; margin:0 0 30px 0; line-height:1.5;}

.btnContainer {margin:0 auto 20px; max-width:220px; text-align:center;}
.btnContainer .btn {display:block; background:#263248; color:#ffffff;}

.btnContainer {margin:0 auto 20px; max-width:220px; text-align:center;}
.homeSplitRight .btnContainer .btn {display:block; background:#7e8aa2; color:#ffffff;}

.communitiesContainer {background:url(/cms/images/bg-communities.jpg) no-repeat; padding:173px 0 0px 0; min-height:370px; box-sizing: border-box;}
.communitiesContainer .hdng2 {color:#e3e3e3;}
.communitiesContainer p {color:#e3e3e3; line-height:1.5;}
.communitiesContainer .btn { background:#fbc112; color:#263248; width: 142px; text-transform: none; box-sizing: border-box; font-size: 1em;}

.resourcesContainer {background:url(/cms/images/layout/bg_resources.jpg) no-repeat 0 0; padding:40px 0 40px; min-height:400px;}
.resourcesContainer .hdng2 {color:#2b4985;}
.resourcesContainer p {color:#2b4985; line-height:1.5; margin:0 0 20px 0;}
.resourcesContainer ul.links {list-style-type:none; margin:0px; padding:0px;}
.resourcesContainer ul.links li { margin:0 0 12px 0;}
.resourcesContainer ul.links a {color:#2b4985; font-size:1.125em; text-transform:uppercase; text-decoration:none;}

.prosthoContainer {background:url(/cms/images/layout/bg_books.jpg) no-repeat 0 100% #7e8aa1; padding:40px 0 40px 0; min-height:270px;}
.prosthoContainer .hdng2 {color:#e3e3e3;}
.prosthoContainer p {color:#e3e3e3; line-height:1.5;}
.prosthoContainer .btn { background:#e3e3e3; color:#7e8aa1;}




.homeNewsContainer {background:#e3e3e3; padding:20px 0;}
.homeNewsContainer {background:#fff; }


.newsSummaryWrpr {}
.newsSummaryWrpr .newsItem {padding:10px;  }
.newsSummaryWrpr .newsItemAlt {background:#cccccc; position:relative;}
.newsSummaryWrpr .newsItemAlt:after {background:#cccccc; position:absolute; content:''; width:100%; height:100%; top:0px; left:100%;}
.newsSummaryWrpr .newsItemAlt:before {background:#cccccc; position:absolute; content:''; width:100%; height:100%; top:0px; right:100%;}
.newsSummaryWrpr .newsItem .inner {display:block; width:100%;}
.newsSummaryWrpr .newsItem .inner .newsSummaryImage {display:block; width:100%; text-align:center; }
/*.newsSummaryWrpr .newsItem .inner .newsSummaryImage img{width: 100%;}*/
.newsSummaryWrpr .newsItem .inner .newsSummaryDesc {display:block; width:100%; padding: 10px 0;}
.newsSummaryWrpr .newsItem .newsSummaryDate {color:#2b4985; display: none; }
.newsSummaryWrpr .newsItem  .title {display:block; text-transform:uppercase; font-weight:bold; text-decoration:none; font-size:1.125em; margin:0px; line-height:1.2; text-align: center;}

.newsSummaryViewAll {text-align:center; padding:20px 0 0 0;}
.newsSummaryViewAll a.more {display:inline-block; color:#ffffff; padding:3px 10px; min-width:240px; text-transform:uppercase; background:#2b4985; font-size:1.225em; text-align:Center; text-decoration:none;}

/* PR Module */
h2.year {background: #2c4984 url(/cms/images/layout/icon-plus.png) no-repeat right 15px center; padding: 15px; cursor: pointer; color: white;}
h2.year.opened {background-image: url(/cms/images/layout/icon-minus.png);}
div.yearContainer {display: none;}
.PRRow {margin-bottom: 1em;}
p.date {color: #999999; margin: 0;}

/* accordion wysiwyg template */
.accordion h3 {background: #2c4984 url(/cms/images/layout/icon-plus.png) no-repeat right 15px center; padding: 15px; margin: 0 0 10px 0; cursor: pointer; color: white; font-weight: 700; font-size: 1.875em;}
.accordion h3.ui-state-active {background-image: url(/cms/images/layout/icon-minus.png);}
.accordion div {display: none; padding: 20px;}



/* About */

.worldOverlay {position:relative;}
.worldOverlay .over {background: rgba(43, 73, 133, 0.9); color:#ffffff; padding:20px 20px; margin:0 0 5px; top:35%;}
.worldOverlay .over p {color:#ffffff; margin:0px; text-align:center;}

.board {}
.board p {font-size:1em; font-style:italic;}
.board .name {display:block; font-weight:bold; text-transform:uppercase; font-style:normal;}
.board .top {background:#7e8aa2; padding:20px 0 5px; margin:0 0 20px 0;}
.board .top p {font-size:1.125em; color:#ffffff;}

.regionAccordion {margin:0 0 20px 0;}
.regionAccordion .ui-accordion-header {color:#2b4985; background:#e6e8eb; font-size:1.125em; margin:0 0 10px 0; padding:8px 40px 8px 8px; font-weight:500; position:relative; cursor:pointer;}
.regionAccordion .ui-accordion-header .ui-icon {position:absolute; right:8px; top:15px; width:30px; height:30px;}
.regionAccordion .ui-accordion-header .ui-icon:after {position:absolute; content:''; border-top:12px solid #2b4985; border-left:11px solid transparent; border-right:11px solid transparent;}
.regionAccordion .ui-accordion-header-active .ui-icon:after {border-top:0px; border-bottom:12px solid #2b4985;}
.regionAccordion .accordionContent {padding:5px 0 15px 0;}
.regionAccordion h4 {font-weight:500; margin:20px 0 15px 0; font-size:1.2em; text-transform:none;}
.regionAccordion strong {font-weight:normal;}

.committeeAccordion {}
.committeeAccordion .accordionHeader {color:#2b4985; font-size:1.3em; margin:0px; padding:8px 40px 8px 0; font-weight:bold; position:relative; cursor:pointer;}
.committeeAccordion .accordionHeader .ui-icon {position:absolute; right:1px; top:13px; width:30px; height:30px;}
.committeeAccordion .accordionHeader .ui-icon:after {position:absolute; content:''; border-top:15px solid #2b4985; border-left:14px solid transparent; border-right:14px solid transparent;}
.committeeAccordion .ui-accordion-header-active .ui-icon:after {border-top:0px; border-bottom:15px solid #2b4985;}
.committeeAccordion .accordionContent {padding:5px 0 5px 0;}

.committeeAccordion table {width:100%;}
.committeeAccordion table th {font-size:1.125em; color:#ffffff; padding:8px 10px; background:#263248; text-align:left;}
.committeeAccordion table td {padding:8px 10px; font-size:1em; color:#2b4985;}


/* Education */

.ambassador {max-width:148px; margin:0 auto 15px;}
.ambassador .name {display:block; background:#333f55; color:#ffffff; padding:3px; text-align:center; font-size:.7em;}

.partners {max-width:700px; margin:0 auto 15px auto;}
.partners  .title {text-transform:uppercase; margin:60px 0 20px 0; font-weight:300; color:#2599d2; font-size:1.9em;}
.partners  .title2 {margin:0 0 20px 0; font-weight:300; color:#2599d2; font-size:1.6em;}
.partners  .title3 {margin:0 0 5px 0; font-weight:300; color:#2599d2; font-size:1.3em;}


/* Continuing Education */

table.register {width:100%; margin:0 0 20px 0;}
table.register th {font-size:.75em; background:#7f8ba2; color:#ffffff; text-align:left; padding:8px; text-transform:uppercase;}
table.register td {font-size:.75em; color:#2c4a86; text-align:left; padding:8px; text-transform:uppercase;}


.sessionNav {margin:0 auto 30px; max-width:400px;}
.sessionNav a.prev {text-decoration:none; float:left; background:url(/cms/images/layout/icon_arrow_prev.png) no-repeat 50% 0; padding:50px 0 0 0; width:64px; color:#7f8ba2; font-size: 1em; text-align:center; text-transform:uppercase;}
.sessionNav a.next {text-decoration:none; float:right; background:url(/cms/images/layout/icon_arrow_next.png) no-repeat 50% 0; padding:50px 0 0 0; width:74px; color:#fcc000; font-size: 1em; text-align:center; text-transform:uppercase;}

.sessionList {}
.sessionList .session {margin:0 0 70px 0;}
.sessionList .session .title {padding:20px 0 0 0; margin:0 0 20px 0; color:#384a81; font-size:1.875em; font-weight:800; text-align:center; text-transform:uppercase;}
.sessionList .session .desc {margin:0 0 10px 0; color:#384a81; font-size:1.775em; text-align:center;}


/* Practice Resources */

.practiceList { padding:30px 0 0 0;}
.practiceList .listItem {display:table; padding:0 0 50px 0;}
.practiceList .listItem  .numContainer {display:table-cell; vertical-align:top; width:70px;}
.practiceList .listItem  .num {display:block; height:20px; width:20px; line-height:.6; font-weight:500; font-family:arial; color:#263248; background:#e3e3e3; padding:15px; -webkit-border-radius: 25px; border-radius: 25px; font-size:2em;}
.practiceList .listItem .content {display:table-cell; vertical-align:middle;}
.practiceList .listItem .content p {margin:0px;}
.practiceList .floatLeft { padding:0 20px 25px 0;}
.practiceList .floatRight {padding:0 0 25px 20px;}
.practiceList .note {background:#263248; color:#ffffff; font-size:.75em; padding:10px; -webkit-border-radius: 5px; border-radius: 5px; white-space:nowrap; display:block; margin:0 0 5px 0;}


.tips {}
.tips .tip {margin:0 0 35px 0;}
.tips .tip .title  {display:block; text-transform:uppercase; font-weight:500; margin:0px;}
.tips .tip.type1 {background:#6e7882;  padding:15px 15px 5px;}
.tips .tip.type1 p {color:#ffffff;}
.tips .tip.type2 {background:#2b4985;  padding:15px 15px 5px;}
.tips .tip.type2 p {color:#ffffff;}

.tipName {background:#fcc000; padding:10px; color:#2b4985; font-size:1.125em; margin:10px 0 10px 0; display:inline-block;}

.blueBlocks {text-align:center;}
.blueBlocks .block,
.blueBlocks a.block {background:#7e8aa2; max-width:170px; width:100%; display:table; margin:0 auto 40px; padding:20px 15px; height:100px; color:#ffffff; font-size:1.375em; text-transform:uppercase; text-decoration:none; display;block;}
.blueBlocks .block span {display:table-cell; vertical-align:middle;}

table.practice {width:100%; margin:30px 0;}
table.practice th {background:#263248; color:#ffffff; font-size:1.125em; text-transform:uppercase; font-weight:500; text-align:left; padding:6px 10px;}
table.practice td {font-size:1.125em; color:#2b4985; padding:6px 10px;}
table.practice .alt td {background:#e6e8eb;}


/* Publications */

.publicationList {}
.publicationList .title {color:#2b4985; background:#fcc000; font-size:1.6em; font-weight:600; padding:5px 10px; margin:0 0 30px 0; text-transform:uppercase;}
.publicationList .publication {margin:0 0 40px 0; text-align:center;}
.publicationList .publication a {text-decoration:none;}
.publicationList .publication span {text-transform:uppercase; display:block; padding:5px 0 0 0; font-weight:600;}


/* MyACP */

.documentItem {margin:0 0 25px 0;}
.documentItem h4 a {text-decoration:none;}
.documentItem p {margin:0 0 10px 0;}
.documentItem p.documentMeta {font-size:1em;}


/* graduateSearch */

.graduateSearchList {}
.graduateItem {padding:20px 0 20px 0; border-bottom:1px solid #dddddd;}
.graduateItem .title {margin:0 0 5px 0;}
.graduateItem p {margin:0 0 5px 0; font-size:1em;}

.careersDetailsWrpr {}
.careersDetailsWrpr .title {font-weight:bold; margin:0 0 0 0;}

.pagerArea {}
.invPager {padding:20px 0 0 0;}
.invPager a {display:inline-block; text-decoration:none; font-size:1.125em; margin:0 2px;}
.invPager span span  {font-weight:bold; font-size:1.125em; margin:0 2px;}


/* Location Search */

.locationList {}
.locationList .locationItem {padding:20px 10px;}
.locationList .locationItem:nth-child(2n) {background:#e6e8eb; }
.locationList .locationItem h3 {color:#384a81; font-weight:bold; font-size:1.15em; text-transform:uppercase; margin:0 0 10px 0;}
.locationList .locationItem .locImages { margin:0 0 10px 0;}
.locationList .locationItem .address {font-size:.813em;}
.locationList .locationItem .address .findDrName {display:none;}
.locationList .locationItem .heading {font-size:.813em; color:#384a81; font-weight:bold; margin:0 0 10px 0;}
.locationList .locationItem .heading .sub {display:block; font-weight:normal;}
.locationList .locationItem p {font-size:.813em;}


.documentsSearchWrpr {background:#2B4985; padding:20px 10px; margin:0 0 20px 0;}
.documentsSearchWrpr .formee label {color:#ffffff;}
.documentsSearchWrpr .formee input[type="text"] {background:#ffffff;}

/* ==========================================================================
   Global Modules
   ========================================================================== */

.mod { position: relative; }

.title { position: relative; margin: 0 0 1em; }
.titleAlt { margin:0 0 0.1em; font-size:1.2em; }
.titleAlt2 {  }

.title .more {
	position: absolute;
	top:0;
	right: 0;
	font-size: 0.6em;
}

.modContent{
	padding: 15px;
}



/* Item Lists Content
   ========================================================================== */

.itemList { 
	margin:0; 
	padding:0; 
	list-style:none; 
}

.item { 
	display: table;
	padding: 1em 0; 
	width: 100%;
	border-top: 1px solid #ccc; 
}
.item:first-child { border-top:0; padding-top:0; }
.item:last-child { padding-bottom: 0; }

.item > .content {
	display: table-cell;
	width: 100%;
	vertical-align: top;
}

.item .contentExtra {
	display: table-cell;
	vertical-align: top;
}

.content .title { margin:0; }
.itemList .content p { margin: 0; }
.content .date { font-size:0.85em; }


/* Item Media
   ========================================================================== */

.aside { 
	display: table-cell;
	padding: 0 15px 0 0; 
	text-align: center;
}

.caption {
	display: block;
	font-size: 0.8em;
	line-height: 1.2em;
}


/* Media Queries for Item Lists 
  ========================================================================== */


@media (max-width : 400px) { 
	
	.item { display: block; }
	.item > .content { display: block;}
	.item > .aside { display: block;}

}


/* News
   ========================================================================== */

.article > .aside {
	float:right; 
	margin: 1em;
}

.meta{
	margin:0.5em 0;
}

.meta > div {
	float: left;
}
 
.meta .social-tools{
	float: right;
}


.newsItemsWrpr {}
.newsItemsWrpr .newsItemWrpr {display:table; width:100%; background:#e6e8eb; padding:10px; margin:0 0 40px 0; position:relative;}
.newsItemsWrpr .newsItemWrpr:after {position:absolute; content:''; bottom:-20px; left:0px; width:100%; height:0px; border-bottom:1px solid #facd43; border-top:1px solid #fef2d0;}
.newsItemsWrpr .newsItemWrpr.altRow {background:#ffffff;}
.newsItemsWrpr .newsItemWrpr .newsItemImg {display:table-cell; width:20%; text-align:Center; padding:0 15px 0 0; vertical-align:middle;}
.newsItemsWrpr .newsItemWrpr .newsItemImg a {display:block;}
.newsItemsWrpr .newsItemWrpr .newsItemDescr {display:table-cell; vertical-align:middle;}
.newsItemsWrpr .newsItemWrpr .newsItemDescr .dateStamp {text-transform:uppercase; margin:0px;}
.newsItemsWrpr .newsItemWrpr .newsItemDescr h4 {margin:0px; font-size:1.125em;}
.newsItemsWrpr .newsItemWrpr .newsItemDescr h4 a {display:block; text-transform:uppercase; font-weight:600; margin:0px; text-decoration:none;}

.newsItemsWrpr .newsIt{text-align: center; margin: 15px 0;}
.newsItemsWrpr .newsIt .dateStamp{display: none;}
.newsItemsWrpr .newsIt .newsItemDescr{margin:10px 0;}
.newsModuleWrpr {}
.newsModuleWrpr .date {margin:-13px 0 10px 0}
.newsPhotoLeft {width:30%; float:left; margin:0 10px 10px 0;}

.newsContentTop{display: table; width: 100%;}
.newsContentTop span{margin: 0 10px;}
.newsContent .newsContentSumm{margin: 15px 0;}
.newsContent .newsdisplayimage img{width: 100%; margin: 10px 0;}
.newsModuleWrpr .relatedNewsContainer {margin:30px 0 30px; background:#eeeeee; padding:20px;}
.newsModuleWrpr .relatedNewsContainer .title {font-size:1.25em; font-weight:bold;}
.newsModuleWrpr .relatedNewsContainer .inner {display:table; }
.newsModuleWrpr .relatedNewsContainer .newsItem {display:table-cell; vertical-align:top; padding:0 30px 0 0; max-width:170px;}
.newsModuleWrpr .relatedNewsContainer .newsItem a {display:block; text-decoration:none;}
.newsModuleWrpr .relatedNewsContainer .newsItem .newsTitle {font-weight:bold; padding:5px 0 0 0; display:block;}
.newsModuleWrpr .relatedNewsContainer .newsItem .date {font-style:italic; display:block; margin:0;}

.newsModuleWrpr .jscroll-added {padding:40px 0 0 0; margin:40px 0 0 0; border-top:5px solid #2B4985;}

/* Events
   ========================================================================== */

.eventsCalendarItem {margin:0 0 15px 0;}
.eventsCalendarItem .date {text-transform:uppercase; font-size:1.125em; margin:0px;}
.eventsCalendarItem .time {margin:0px;}
.eventsCalendarItem a.eventLink {display:block; margin:0 0 15px 0; text-decoration:none; text-transform:uppercase; font-size:1.325em; font-weight:500;}

.smallCalendar {background:#263248; margin:0 0 30px 0; padding:15px 30px 40px; position:relative;}
.smallCalendar > a.prev {position:absolute; text-decoration:none; width:19px; height:18px; left:20px; top:185px; text-indent:-9999em; background:url(/cms/images/layout/icon_event_arrows.png) no-repeat 0 100%;}
.smallCalendar > a.next {position:absolute; text-decoration:none; width:19px; height:18px; right:20px; top:185px; text-indent:-9999em; background:url(/cms/images/layout/icon_event_arrows.png) no-repeat 0 0;}
.smallCalendar .heading {margin:0 0 40px 0;}
.smallCalendar .heading a.prev {float:left; text-decoration:none; color:#fcc000; font-size:1.1em;}
.smallCalendar .heading a.next {float:right; text-decoration:none; color:#fcc000; font-size:1.1em;}
.smallCalendar .heading .monthHeading {text-align:center; font-size:1.4em; color:#ffffff; font-weight:bold; text-transform:uppercase;}
.smallCalendar table.cal-sm {width:100%; max-width:500px; margin:0 auto; text-align:center;}
.smallCalendar table.cal-sm th {color:#ffffff; text-transform:uppercase; font-weight:500; font-size:1.225em; padding:5px 5px 15px;}
.smallCalendar table.cal-sm td {color:#ffffff; text-transform:uppercase; font-weight:500; font-size:1em; padding:10px;}
.smallCalendar table.cal-sm td a {text-decoration:none; color:#263248; position:relative; display:inline-block; background:#fcc000; padding:3px 9px 6px; -webkit-border-radius: 20px; border-radius: 20px;}



@media only screen and (min-width:11.250em) and (max-width:29.938em) {	
	.smallCalendar {padding:15px 7px;}
	.smallCalendar > a.prev,
	.smallCalendar > a.next  {top:55px;}
	.smallCalendar table.cal-sm th {font-size:.9em;}
	.smallCalendar table.cal-sm td {padding:3px;}
}


/* ==========================================================================
   Filters
   ========================================================================== */

.filter{
	padding: 1em;
	color:#ffffff;
	background: #2B4985;
}

.filter-options{
	float: left;
}

.filter-actions{
	float: right;
}

/* Pagination
   ========================================================================== */

.paging {
	padding: 1em;
}

.paging-results { 
	float: left;
}

.paging-list {
	float: right;
}

.paging-list ul {
	display: block;
	padding: 0;
	margin: 0;
}

.paging-list li{
	display: block;
	padding: 0;
	margin: 0;
	border: 1px solid #002B40;
	border-left-width: 0;
	float: left;
}

.paging-list li:first-child{
	border-left-width: 1px;
}

.paging-list li a,
.paging-list li span {
	display: block;
	min-width: 30px;
	padding: 2px 5px;
	text-align: center;
}

.paging-list li a {
	/* Link State */
}

.paging-list li span {
	/* Current Page State */
}

.paging-list li.disabled { 
	display: none;
}

.paging-list li.disabled+li { 
	border-left-width: 1px;
}

.paging-list li.disabled+.all {
	border-left-width: 0;
}


/* pagination and filters */

.filters {float:left; display:inline; margin:0 0 5px 0;}
.filters .filterList {float:left; display:inline; margin-bottom:5px;}
.filters label { display:inline; margin:0 5px 0 0; font-weight:bold; font-size:0.8em; }
.filters .sortList {float:left; display:inline;  padding:3px 10px 0;}
.filters .sortList label {margin:0 5px 0 0;}
.filters select {margin-right:10px;}


.filters .sortList .last {border-right:0;}
.filters .sortItem {display:inline; margin:0; padding:2px 4px; font-size:0.8em; border-right:1px solid #999999;}
.filters .sortItem a, .filters .sortItem a:link, .filters .sortItem a:visited {padding-right:12px; text-decoration:none; background:url(/cms/images/layout/arrow_sortorder.gif) no-repeat 100% 2px;}
.filters .sortItem a.down, .filters .sortItem a.down:link, .filters .sortItem a.down:visited {font-weight:bold; background-position:100% -18px;}
.filters .sortItem a.up, .filters .sortItem a.up:link, .filters .sortItem a.up:visited {font-weight:bold; background-position:100% -38px;}

.pagination {float:right; width:400px; margin:0 0 10px 0; text-align:right;}
.pagination .view {float:right; display:inline; padding:0 0 0 10px;}
.pagination .view a,.pagination .view a:link, .pagination .view a:visited { display:inline-block; text-decoration:none; padding:2px 6px;}
.pagination .paging {float:right; display:inline; padding:0 10px; border-right:1px solid #999999;}
.pagination .paging a,.pagination .paging a:link,.pagination .paging a:visited {float:left; display:inline; margin:0 3px; padding:2px 6px; text-align:center; text-decoration:none; }
.pagination .paging .active {float:left; display:inline; margin:0 4px; padding:2px 6px; text-align:center; color:#000; background-color:#d2d2d2; text-decoration:none; border:1px solid #969696;}
.pagination .paging .total { float:left; display:block; padding-top:2px; color:#999999;}
.pagination a.arrowRight,.pagination a.arrowRight:link,.pagination a.arrowRight:visited {float:left; display:inline; background:url(/cms/images/layout/arrow_right_gray.gif) no-repeat 50% 50%; text-indent:-9999em;}
.pagination a.arrowLeft,.pagination a.arrowLeft:link,.pagination a.arrowLeft:visited {float:left; display:inline; background:url(/cms/images/layout/arrow_left_gray.gif) no-repeat 50% 50%; text-indent:-9999em;}



/* ==============================================================
   GLOBAL STYLES 
   ============================================================== */

/*--- where is this used at? ----*/
.alert { 		
	overflow:hidden;
	border: 1px solid #FE0000; 
	margin: 1em 0;
	padding: 10px;
	min-height: 50px;	
	color: #fff;
	background-color: #FEFF99;	
}
.alert a { color:#fff; }

.bdr        { border:1px solid #555244; padding:1px; background-color:#a7a496; }
.bdrTop     { border-top:1px solid #999; }
.bdrRight   { border-right:1px solid #999; }
.bdrBottom  { border-bottom:1px solid #999; }
.bdrLeft    { border-left:1px solid #999; }

.bdrDash        { border:1px dashed #555244; }
.bdrDashTop     { border-top:1px dashed #999; }
.bdrDashRight   { border-right:1px dashed #999; }
.bdrDashBottom  { border-bottom:1px dashed #999; }
.bdrDashLeft    { border-left:1px dashed #999; }

.alternate	{background-color: #d8d8d8;}
.row		{background-color: #ffffff;}


/* ##  Error Markers  ## */
   
.fieldlbl {padding:4px 2px 0 0; text-align:right;}
.field {padding-left:2px;}
.fieldpad {padding-bottom:2px;}

.fieldtext {color:#000000;}
.fielderror {color:#cc0000;}
.fieldnorm {width:16px; height:20px;}
.fieldreq {width:16px; height:20px; background:transparent url(/cms/images/global/field-req.gif) no-repeat center right;}
 span.fieldreq {padding:0 6px; background-position:center center;}
 span.fieldnorm {padding:0 6px; background-position:center center;}
.fieldred {width:16px; height:20px; background:transparent url(/cms/images/global/field-error.gif) no-repeat center right;}
 span.fieldred {padding:0 6px; background-position:center center;}

 
/* ##  Tooltip Classes  ## */

.toolTipWrpr {display:none;width:340px;z-index:99;}
.toolTipShadow {background: url(/cms/images/core/tooltipbacktop.png) no-repeat top left;padding: 10px 13px 1px 13px;color:#666666;}
.toolTopShadowBottom {background: url(/cms/images/core/tooltipbackbottom.png) no-repeat top left;width:340px;height:16px;}
.toolTipDate {font-size:11px;color:#999999;font-weight:bold;}
.toolTipName {font-size:14px;color:#666666;font-weight:bold;margin-bottom:14px;}


/* ##  Generic Pager  ## */

.paging .sortStatus  {display:none;}

.genericPager {}
.genericPager ul {list-style-type: none; margin:0; padding:0;}
.genericPager li { display:inline-block; font-size:.813em; margin:0 5px 5px 0;}
.genericPager li:before {display:none !important;}
.genericPager li a {display:block; color:#263248; padding:2px 4px; text-decoration:none; }
.genericPager li a:hover, .genericPager li a:focus { color:#000; text-decoration:none; }
.genericPager li.nolink {color:#fff; border:1px solid #ddd; padding:2px 4px;}
.genericPager li.active {color:#263248; font-weight:bold; padding:2px 4px; }


/* ##  Smart Bug  ## */

.smartbug ul { list-style-type:none; background-color:#ccc; font-size:10px; border-left:1px solid #000; border-right:1px solid #000; border-top:1px solid #000; padding:0px; }
.smartbug li { border-bottom:1px solid #000; }
.smartbug a, .smartbug a:link, .smartbug a:visited { text-decoration:none; display:block; color:#000; padding:5px; }
.smartbug a:hover { background-color:#999; text-decoration:underline; }


/* ##  Master Overlay Styles ## */

.siteOverlay {
    display:none;
    position:relative;
    width:550px;
    max-width:95%;
    min-height:1px;
    background-color:#fff;
    z-index:1000;
    -webkit-border-radius:5px;    
       -moz-border-radius:5px;
            border-radius:5px;
    -webkit-box-shadow:0 0 15px #333;
       -moz-box-shadow:0 0 15px #333;
            box-shadow:0 0 15px #333;
}
.siteOverlay .overlayBar {position:relative; padding:7px 10px; text-align:right; border-bottom:1px solid #e6e6e6;}
.siteOverlay .overlayClose {display:inline-block; cursor:pointer; z-index:5;}
.siteOverlay .overlayContent {padding:15px;}


/* =================================================================
                           MODULE STYLES 
===================================================================*/


/* ##  Breadcrumb  ## */

.breadcrumbs { padding:0 0 10px 0; font-size:.9em; }
.breadcrumbs a, .breadcrumbs a:visited { text-decoration:none; }
.breadcrumbs a:hover, .breadcrumbs a:focus, .breadcrumbs a:active { text-decoration:underline; }
.breadcrumbs span { margin:0 2px; font-weight:normal; }


/* ## Page Heading ## */

.sectionHeading {background:#2b4985; padding:17px 0;}
.sectionHeading .title { margin:0; padding:0; font-size:2em; font-weight:bold; text-transform:uppercase; color:#ffffff; line-height:1.1em; }
.sectionHeading .title a {color:#ffffff; text-decoration:none;}

.pageHeading {background:#fcc000; padding:17px 0 17px;}
.pageHeading .title { margin:0; padding:0; font-size:1.25em; font-weight:500; text-transform:uppercase; color:#263248;}


/* ##  PAGE TOOLS  ## */
/* Print and Email icons and wrapper */

.pageToolsWrapper {float:right; display:inline; padding:5px 0 0 0; text-align:right;}

.pageTool { margin:0 10px 0; font-size:0.938em; color:#686868; font-weight:normal; text-decoration:none; cursor:pointer; }

.pageToolsWrapper a { float:right; display:inline;  }
.pageToolsWrapper a:hover,
.pageToolsWrapper a:active {color:#1C4E87; text-decoration:underline;}

.pageToolsWrapper a.bookmark,
.pageToolsWrapper a.bookmark:link,
.pageToolsWrapper a.bookmark:visited {padding:0 0 0 18px; margin-left:7px; background-position:0 -39px;}
.pageToolsWrapper a.bookmark:hover,
.pageToolsWrapper a.bookmark:active {background-position:0 -119px;}

.pageToolsWrapper .addthis_toolbox { float:right; display:inline; }
.pageToolsWrapper .addthis_toolbox a,
.pageToolsWrapper .addthis_toolbox a:link,
.pageToolsWrapper .addthis_toolbox a:visited {background:none; padding:0; margin:0 0 0 5px; }

.addthis_toolbox { display:inline; }


/* ## Email a Friend ## */

.emailFriendWrapper {}
.emailFriendWrapper .inner { padding:10px; }
.emailFriendWrapper .emailFriendSender { margin:10px 0 20px; border-bottom:1px dashed #ccc; }
.emailFriendWrapper .emailFriendAdditional { margin:10px 0 0; padding:20px 0 0; border-top:1px dashed #ccc; }


.searchbrcr { margin:0 0 15px 0; font-size:.875em;}
.searchbrcr a {font-size:1.1em; font-weight:bold; display:inline-block; text-decoration:none; margin:0 5px;}

.SearchResultsList {}
.SearchResultsList .listItem { padding:15px;}

/* =================================================================
                        THIRD PARTY STYLES
===================================================================*/

/* Slider */
.slick-slider
{
    position: relative;

    display: block;

    -moz-box-sizing: border-box;
         box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
	position:relative;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}


/* =================================================================
                        PRINT STYLES
===================================================================*/

@media print {
	* { background: transparent !important; color: #000 !important; box-shadow:none !important; text-shadow: none !important; }
	a, a:visited { text-decoration: underline; }
	a[href]:after { content: " (" attr(href) ")"; }
	abbr[title]:after { content: " (" attr(title) ")"; }
	.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
	pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
	thead { display: table-header-group; }
	tr, img { page-break-inside: avoid; }
	img { max-width: 100% !important; }
	@page { margin: 0.5cm; }
	p, h2, h3 { orphans: 3; widows: 3; }
	h2, h3 { page-break-after: avoid; }
}





.btnWrapper { display:inline-block; }
.btn { display:inline-block; margin:0; padding:2px 14px; font-size:.875em; font-weight:500; color:#384a81; background:#fcc000; border:0px; text-align:center; text-decoration:none; cursor:pointer; overflow:visible; text-transform:uppercase;}

.btnAlt {}
.btnAlt .btn{color:#666666; background-color:#cccccc ; border:1px solid #fff; text-align:center; text-decoration:none; cursor:pointer;}

.btnLarge .btn {padding:5px 10px; font-size:1.4em;}

.btnFullWidth {display:block;}
.btnFullWidth .btn {display:block; padding-left:0; padding-right:0; }
.btnFullWidth input.btn { width:100%; }


/* ## modifier for icon fonts (IcoMoon) embedded within button wrapper ## */

.btnWrapper [class^="icon-"] { margin:0 3px; font-size:0.7em; }


/* ## Site Icons ## */

.iconImage { position:relative; display:inline-block; bottom:1px; width:10px; height:10px;  vertical-align:middle; text-indent:-9999em; background:url(/cms/images/layout/icons_default.png) no-repeat 0 0; overflow:hidden; }
.iconCart { width:22px; height:22px; background-position:0 0; }
.iconRefresh { width:22px; height:22px; background-position:0 -27px; }
.iconContinueArrow { width:22px; height:16px; background-position:0 -57px; }
.iconCheckbox { width: 18px; height: 14px; background-position: -23px -112px; }
.iconXSquareRed { width: 12px; height: 12px; background-position: 0 -112px; }
.iconSearch { width: 14px; height: 14px; background-position: -55px 0; }
.iconQuestion { width: 22px; height: 22px; background-position: 0 -75px; }


/* ## truncate styling ## */

.truncateLink {}
.truncateLink a, .truncateLink a:link, .truncateLink a:visited { margin-left:5px; }
.truncateLink a.truncateMore, .truncateLink a.truncateMore:link, .truncateLink a.truncateMore:visited {}
.truncateLink a.truncateLess, .truncateLink a.truncateLess:link, .truncateLink a.truncateLess:visited {}


/* ## footer ## */

.footer {position:relative; background:#263248; padding:50px 0 40px; color:#ffffff;}

.footer .title {font-size:0.75em; font-weight:500; margin:0 0 8px 0; text-align:center;}

.footerLinks {text-align:center; font-size:0.625em; margin:0 0 30px 0;}
.footerLinks a {text-decoration:none; color:#ffffff; display:inline-block; margin:0 0 5px 0;}

.footer .seal {font-size:0.625em; background:url(/cms/images/layout/seal.png) no-repeat 0 40%; padding:0 0 0 70px; min-height:58px;}

.footer .logos { text-align:center; padding:15px 0 0 0;}
.footer .logos a  {margin:0 2% 15px; display:inline-block;}
.footer .logos img {max-width:300px !important;}


/* ## Table Wrapper to allow for overflow/scroll on smaller screens ## */
.tableWrapper { overflow:auto; }


/* ## NEW Limit Text Box ## */

.limitTextBox {}
.limitTextBox span { display:none; }
.limitTextBoxBar { width:100%; }
.limitTextBoxBarWrpr {
	width:100%;
	border:0px solid #000;
	overflow:hidden;
	font-size:9px;
	color:#000;
	white-space:nowrap;
	height:5px;
	background-color:#FDFBBE;
}
.limitTextBoxBarInner { width:0%; background-color:#FF0000; }
.limitTextBoxInputWrpr { display:table-cell; width:100%; vertical-align:top; }
.limitTextBoxInputWrpr textarea { box-sizing:border-box; vertical-align:top; }
.limitTextBoxSpellWrpr { display:table-cell; padding-left:5px; vertical-align:top; }
.limitTextBoxSpellWrpr img { max-width:16px !important; cursor: pointer; }


/* =================================================================
                        Media Queries
===================================================================*/


/* 16px baseline (180px - 767px) */
@media only screen and (min-width:11.250em) and (max-width:47.938em) {	
	
	
	.committeeAccordion .accordionHeader {font-size:1.125em;}
	
	.committeeAccordion table {display:block;}
	.committeeAccordion table th {display:none;}
	.committeeAccordion table tbody {display:block;}
	.committeeAccordion table tr {display:block;}
	.committeeAccordion table td {display:block;}
	.committeeAccordion table th a {}
	.committeeAccordion table tr { border: 1px solid #ccc; margin-bottom: 10px; }
	.committeeAccordion table td { border: none; border-bottom: 1px solid #eee; position: relative; padding-left: 30%;  text-align:left !important; font-size:.75em;}
	.committeeAccordion table td:last-child {border:0px;}
	.committeeAccordion table td:before {	position: absolute;	top: 6px; left: 6px; width: 40%; padding-right: 10px; text-align: left; word-wrap: break-word; }
	.committeeAccordion table tr:first-child { position: absolute; top: -9999px; left: -9999px; }
	.committeeAccordion table td:before { content: attr(data-content); height: 50px; }
	.committeeAccordion table td.large-padding {padding:22px 10px 22px 44%;}
	.committeeAccordion table .alternate {}
	
	.footer .logos a {display:block; margin:0 0 15px 0;}
	.footer .logos a img {max-width:280px;}
}

@media only screen and (min-width:30em){
	.heroContainer img {margin:0px; max-width:100% !important;}
}


/* 16px baseline (768px +) */
@media only screen and (min-width:48em){
	
	.hdng2 {font-size:3.313em;}
	
	.sectionHeading { padding:17px 0 22px;}
	.sectionHeading .title { font-size:3.313em; }

	.siteHeader {padding:45px 0 0;}
	.siteHeader a.sitelogo { margin:0 0 45px 0;}
	.headerLinks {float:none; margin:0 0 8px 0;}
	
	
	.heroContainer { position:relative; margin:0px;}
	.heroContainer .bottom { bottom:65px;}
	.heroContainer .headline {font-size:2.188em;}
	.heroContainer .desc { font-size:1.313em; }
	.slideshow .slick-prev { bottom:auto; margin-top:-50px; top:50%; left:0px; font-size:4em; line-height:1; box-shadow:3px 3px 4px -4px #000; background:#F3FDFF;}
	.slideshow .slick-next { bottom:auto; margin-top:-50px; top:50%; right:0px; font-size:4em; line-height:1; box-shadow:3px 3px 4px -4px #000; background:#F3FDFF;}
	
	.homeLogin {display:table; width:100%;}
	.homeLogin .textBlock {display:table-cell; vertical-align:middle; width:50%; border-right:2px solid #263248; padding:20px 10% 20px 0;}
	.homeLogin .loginBlock {display:table-cell; vertical-align:middle; width:50%; padding:20px 0 20px 10%;}
	
	.homeSplitLeft { padding:30px 70px 20px 70px;}
	.homeSplitRight { padding:30px 70px 20px 70px;}
	.btnContainer { max-width:300px; text-align:left; margin:0 0 20px 0;}
	.homeSplitRight .btnContainer { max-width:200px; text-align:left; margin:0 0 20px 0;}

	.worldOverlay .over { position:absolute;}
}

@media only screen and (min-width:58em){
	.homeSplitcontainer {}
	.homeSplit {display:table; width:100%;}
	.homeSplitLeft {display:table-cell; width:65%; background:url(/cms/images/layout/bg_home_doc.jpg) no-repeat 0 100% #d5dfe8; padding:40px 60px 40px 115px;}
	.homeSplitRight {display:table-cell; width:35%; background:#263248; padding:40px 20px 40px 20px;}

	.homeSplitLeft .hdng2 {color:#263248;}
	.homeSplitLeft p {color:#263248; margin:0 0 60px 0; line-height:1.5;}
	.homeSplitRight .hdng2 {color:#7e8aa2;}
	.homeSplitRight p {color:#ffffff; margin:0 0 60px 0; line-height:1.5;}
}



.stacktable { width: 100%; }
.st-head-row { padding-top: 1em; }
.st-head-row.st-head-row-main { font-size: 1.5em; padding-top: 0; }
.st-key { width: 49%; text-align: right; padding-right: 1%; }
.st-val { width: 49%; padding-left: 1%; }



/* RESPONSIVE EXAMPLE */
table, table td, table th { color: #2b4985;}
.stacktable.large-only { display: table; }
.stacktable.small-only { display: none; }

.stacktable.small-only {border:1px solid #2b4985;}
.stacktable.small-only th,
.stacktable.small-only td {border:1px solid #2b4985; text-align:left;}

@media (max-width: 800px) {
  .stacktable.large-only { display: none; }
  .stacktable.small-only { display: table; }
}


.accordion.program h3 {background: #2c4984 url(/cms/images/layout/icon-plus-10.png) no-repeat right 15px center; padding: 5px 15px; margin: 0 0 10px 0; cursor: pointer; color: white; font-weight: 700; font-size: 1em;}
.accordion.program h3.ui-state-active {background-image: url(/cms/images/layout/icon-minus-10.png);}
.accordion.program div {display: none; padding: 20px; border:solid 1px #2c4984; margin-bottom:10px;}




.glossaryFilter {border:solid 1px #2b4985; margin-bottom:20px; padding:10px; display:block;}
.glossaryFilter td.filterLink {font-size:.9em; margin-bottom:20px; width:100%; padding-bottom:20px;}
.glossaryFilter td.filterLink a {text-decoration:none;}
.glossaryFilter a.defImg img {max-width:100%; height:auto;}



.glossaryFilter tr.defs td {border-top:solid 1px #2b4985; padding-top:10px;}
.glossaryFilter tr.defs:first-child td {border-top:solid 0px #2b4985; padding-top:10px;}

.searchWrpr {margin-bottom:10px;}


@media (max-width:500px){
	
	p.brochure a.highlight {width:100%;display:block; text-align:center; margin-bottom:20px;}
	p.brochure a.highlight img {float:none !important; margin:0px auto !important; }
}


@media only screen 
and (min-device-width : 375px) 
and (max-device-width : 667px) 
and (orientation : portrait) { 
	
	p.brochure a.highlight {width:100%;display:block; text-align:center; margin-bottom:20px;}
	p.brochure a.highlight img {float:none !important; margin:0px auto !important;}
}


/* Ticket #437280 - Buyer's Guide  */

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {border-radius:0 !important;  }
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {border-top-left-radius:0 !important;}
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {border-top-right-radius:0 !important;}

.ui-state-default, 
.ui-widget-content .ui-state-default, 
.ui-widget-header .ui-state-default, 
.ui-button {background: #2b4985 !important; color:#fff !important; font-family: "freight-sans-pro",sans-serif; }
.ui-state-default:hover, 
.ui-widget-content .ui-state-default:hover, 
.ui-widget-header .ui-state-default:hover  {background: #2b4985 !important; color:#fcc000 !important;}

.ui-state-active:hover .ui-icon {background-image: url("/cms/images/jquery-ui/images/ui-icons_ffc000_256x240.png") !important;}
.ui-state-default:hover .ui-icon {background-image: url("/cms/images/jquery-ui/images/ui-icons_ffc000_256x240.png") !important;}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {background:#fcc000 !important; color:#263248 !important; border:none !important;}

.ui-icon, 
.ui-widget-content .ui-icon {background-image: url("/cms/images/jquery-ui/images/ui-icons_d8e7f3_256x240.png") !important;}


.ui-state-active .ui-icon, 
.ui-state-active .ui-widget-content .ui-icon {background-image: url("/cms/images/jquery-ui/images/ui-icons_2b4985_256x240.png") !important;}

.ui-widget-content {font-family: "freight-sans-pro",sans-serif; }

.ui-widget-content a {text-decoration:none;}







/* Ticket #476637 - Annual Session pages*/

.aSession ul.sNav {display:flex; flex-wrap:wrap; justify-content:center; list-style-type:none; align-items:center; margin:0; padding:10px 0px 0px;}

.aSession ul.sNav li { display:block;  padding:0px; text-align:center; width:auto; margin-bottom:20px;}
.aSession ul.sNav li {xborder-right:solid 1px #3f57a7;  margin:0px 2px 10px;}
x.aSession ul.sNav li:nth-child(1) {border-left:solid 1px #3f57a7; }



.aSession ul.sNav li a {text-decoration:none; padding:5px 30px; border:solid 1px #3f57a7; display:block; font-weight:bold;}
.aSession ul.sNav li a:hover {text-decoration:none; background:#3f57a7; color:#fcaf17;}

.aSession .pageHeading {background:#fcaf17; padding:0;}
.aSession .pageHeading .grid_10 {margin-left:0; width:100%;}

.aSession .siteBody .grid_10 {margin-left:0;}

.aSession .calloutWrpr {display:flex; flex-wrap:nowrap; justify-content:space-between; margin:0px 0px 40px}
.aSession .callout {width:33%; border:solid 0px #d93867; padding:0px; margin:0px 10px; display:flex; align-items:center; justify-content:center;}
.aSession .callout p {margin:0;}

.aSession .callout.register {}
.aSession .callout.register p {color:#fcaf17; font-weight:bold; text-align:center;}

.aSession .callout.program {}
.aSession .callout.program p {color:#3f57a7; font-weight:bold; text-align:center;}

.aSession .callout.hotel {}
.aSession .callout.hotel p {color:#fcaf17; font-weight:bold; text-align:center;}


.aSession #aSessiontabs {border:solid 0px #ff0000;}
.aSession #aSessiontabs ul.ui-tabs-nav {display:flex; align-content:center; justify-content:space-between; padding:0; margin:0;}

.aSession #aSessiontabs .ui-tabs-panel {padding:20px; margin-top:10px}
.aSession .ui-tabs-panel ul {display:block !important; text-align:left;}
.aSession #aSessiontabs ul.ui-tabs-nav li:before {display:none;}
.aSession #aSessiontabs ul.ui-tabs-nav li {background:none; border:solid 1px #fff; width:25%; text-align:center; padding:0px 5px; margin:0; font-weight:bold;}

.aSession #aSessiontabs ul.ui-tabs-nav li a {color:#fcaf17; width:100%; display:block; padding:10px 0px;}
.aSession #aSessiontabs ul.ui-tabs-nav li.ui-state-active a {color:#3f57a7;}

.aSession .ui-widget-content {border:solid 1px #3f57a7; }

.ui-state-active, 
.ui-widget-content .ui-state-active, 
.ui-widget-header .ui-state-active, 
a.ui-button:active, .ui-button:active, 
.ui-button.ui-state-active:hover {background:#fcaf17 !important;}

.aSession .ui-tabs-panel.ui-widget-content ul { width:85%; }
.aSession .ui-tabs-panel.ui-widget-content ul li {position:initial; line-height:1.5em;}
.aSession .ui-tabs-panel.ui-widget-content p {line-height:1.5em;}
x.aSession .ui-widget-content a.hasPop {position:absolute; right:25px;}

.aSession .grid_12 .flex {padding:10px;  align-content:center; justify-content:flex-start; display:flex;}
.aSession .grid_12 .flex .image {width:25%; margin-right:20px;}
.aSession .grid_12 .flex .content {display:block; width:70%;}


@media (max-width:480px){
	.aSession #aSessiontabs ul.ui-tabs-nav li {font-size:.8em;}
}


/* Ticket #488934 - Branemark Archive Section  */

.branemark .newsWrpr img {margin-bottom:20px;}
.branemark .newsItemsWrpr {display:flex; flex-wrap:wrap; height:100%; justify-content:center;}
.branemark .newsItemsWrpr .grid_4 {height:100%; float:none;}
.branemark .newsItemsWrpr .newsIt .newsItemImg {border:solid 1px #2b4985; font-weight:bold; }
.branemark .newsItemsWrpr .newsIt .newsItemImg h2 {font-size:1.2em; margin:10px 0px;}
.branemark .newsItemsWrpr .newsIt .newsItemImg p {font-weight:normal; margin-top:20px; padding:0px 10px}

/* Ticket #543347 - Update Member - Left Navagation Module */

ul.railNav2 li a.journal span {
	background-position: 10px -751px;
}

ul.railNav2 li a.shop span {
	background-position: 10px -679px;
}

ul.railNav2 li a.affinity span {
	background-position: 10px -1110px;
}

ul.railNav2 li a.classified span {
	background-position: 10px -821px;
}

ul.railNav2 li a.education span {
	background-position: 10px -1029px;
}



/* Ticket #781895 - News Section Layout */
.newsItemsWrpr {
	display: flex;
	flex-wrap: wrap;
}

.newsItemsWrpr .grid_4 {
	float: none;
	min-height: initial !important;
}
