/* Reset & Basics (Inspired by E. Meyers) */
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,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    outline: 0;
    font: inherit;
    vertical-align: top;
}

@import url('https://fonts.googleapis.com/css?family=EB+Garamond');


@font-face {
    font-family: Montserrat;
    src: url(../fonts/Montserrat/Montserrat-Medium.ttf) format("truetype");
}

@font-face {
    font-family: MontserratLight;
    src: url(../fonts/Montserrat/Montserrat-Light.ttf) format("truetype");
}

@font-face {
    font-family: MontserratBold;
    src: url(../fonts/Montserrat/Montserrat-Bold.ttf) format("truetype");
}

/******  CUSTOM TSN ICON-FONTS selected from http://fontello.com  *****/
@font-face {
    font-family: 'tsn';
    src: url(../fonts/tsn_icons/tsn.eot);
    src: url(../fonts/tsn_icons/tsn.eot#iefix) format("embedded-opentype"),url(../fonts/tsn_icons/tsn.woff) format("woff"),url(../fonts/tsn_icons/tsn.ttf) format("truetype"),url(../fonts/tsn_icons/tsn.svg#tsn) format("svg");
}

.tsn_icons {
    font-family: "tsn";
}

@font-face {
    font-family: 'shift_icons';
    src: url(../fonts/shift/shift.eot?1);
    src: url(../fonts/shift/shift.eot#iefix?1) format("embedded-opentype"), url(../fonts/shift/shift.woff?1) format("woff"), url(../fonts/shift/shift.ttf?1) format("truetype"), url(../fonts/shift/shift.svg#shift?1) format("svg");
}
.shift_icons {
    font-family: "shift_icons";
}

@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,300,300italic,400italic,500,500italic');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,300,400,700');


/**** START ****/
* {
    box-sizing: border-box;
}

html {
    position: relative;
    min-height: 100%;
    font: 20px/23px MontserratLight, serif;
    height: 100%;
}

body {
    font-size: 1rem;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    margin: 0;
    padding: 0;
    color: #000;
    letter-spacing: -.4px;
    background-color: rgb(255, 255, 255);
    height: 100%;
}

@media (min-width: 400px) {
    html {
        font-size: calc(16px + (22 - 16) * (100vw - 400px) / (1200 - 400));
    }
}

p, li, td {
    margin: 0 0 15px;
    font-size: calc( 18px + (20 - 18) * (100vw - 1200px) / (1200 - 400) ); 
    line-height: 1.3em;
}

@media (min-width: 1200px) {
    html {
        font-size: 20px;
    }
    p, li, td {
        font-size: 1.1em; 
    }
}


#outer_container {
    background-color: rgb(255, 255, 255);
}

/* #Typography */
h1,h2,h3,h4,h5,h6 {
    color: #0f0931;
    font-family: Montserrat;
    font-weight: 600;
    margin: 0 0 5px;
    padding: 0;
}


h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: -.1rem;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.25;
    letter-spacing: -.1rem;
}

h3 {
    font-size: 1.8rem;
    line-height: 1.7rem;
    letter-spacing: -.1rem;
}

h4 {
    font-size: 1.5rem;
    line-height: 1.35;
    letter-spacing: -.08rem;
}

h5 {
    font-size: 1.35rem;
    line-height: 1.5;
    letter-spacing: -.05rem;
}

h6 {
    font-size: 1.25rem;
    line-height: 1.6;
    letter-spacing: 0;
}

p,li {
    margin: 0 0 15px;
}

.center_align {
    text-align: center;
}

ul, ol {
    margin-left: 5%;
}

strong {
    font-weight: 600;
}

em, i {
    font-style: italic;
}

img,embed,object,video {
    vertical-align: top;
    max-width: 100%;
    height: auto;
}

blockquote {
    border: none;
    display: table;
    margin: 30px 10%;
}
blockquote p {
    color: #00966D;
    display: table-cell;
    vertical-align: middle;
}

blockquote img {
    max-width: 150px;
    max-height: 150px;
}

.p_indent p.rteindent1 {
    margin-left: 15%;
    margin-right: 5%;
}

#admin-menu li {
    font-size: 10px;
}

.menu_select_bottom {
    display: none;
}

.Garamond, .garamond {
    font-family: 'EB Garamond', Georgia, serif;
}

/* #Layout */
#container {
    margin: 0;
    padding: 0;
}

#inner {
    background-color: #fff;
    margin: 0 auto;
    max-width: 1488px;
    padding: 20px 3%;
    width: 98%;
    min-height: 400px;
}

#content {
    width: 90%;
    margin: 0 auto;
}

/**
 * Tables.
 */
table tr.even, table tr.odd {
    border: none;
    padding: 0.6em;
}

/**
 * Remove checkbox spacing.
 * See http://drupal.org/node/1252206
 */
table th.select-all {
    width: 1px;
}

/**
 * Admin panel.
 */
ul.admin-list li {
    background: url(../images/bullet.png) no-repeat scroll 0 12px transparent;
}

div.admin-panel {
    box-shadow: 1px 1px 1px #777;
}

/**
 * Messages.
 */
div.messages {
    border-radius: 5px;
    display: none;
}

div.view-changed {
    display: block;
}

div.messages .hide-message {
    display: block;
    float: right;
    margin: -8px -4px 0 0;
    padding: 3px;
    font-weight: 900;
    text-align: center;
    border-radius: 5px;
    opacity: .5;
    cursor: pointer;
    -webkit-transition: .5s opacity linear;
    -moz-transition: .5s opacity linear;
    -ms-transition: .5s opacity linear;
    -o-transition: .5s opacity linear;
    transition: .5s opacity linear;
}

div.messages:hover .hide-message {
    opacity: 1;
}


/**
 * Navigation.
 */
ul.primary li {
    margin: 0 3px;
}

ul.primary li a:link,ul.primary li a.active,ul.primary li a:active,ul.primary li a:visited,ul.primary li.active a {
    background-color: #E5E5E5;
    box-shadow: 1px 1px 0 #333;
}

ul.primary li a:hover {
    background-color: #D5D5D5;
    color: #000;
}

ul.secondary li a:hover,ul.secondary li.active a,ul.secondary li.active a.active {
    background: none repeat scroll 0 0 #888;
    color: #FFF;
}

ul.secondary li a {
    -webkit-transition: .5s background linear;
    -moz-transition: .5s background linear;
    -ms-transition: .5s background linear;
    -o-transition: .5s background linear;
    transition: .5s background linear;
}

/**
 * Implement Seven pagers as designed.
 * See http://drupal.org/node/538788
 */
.short-pager {
    text-align: center;
    margin-top: 2em;
}

.short-pager div {
    display: inline;
    margin-left: 1em;
}

.short-pager .short-pager-prev,.short-pager .short-pager-first {
    background: url(../images/arrow-prev.png) no-repeat center left;
    padding-left: 10px;
}

.short-pager .short-pager-next,.short-pager .short-pager-last {
    background: url(../images/arrow-next.png) no-repeat center right;
    padding-right: 10px;
}

/**
 * Dashboard headers.
 */
#dashboard .dashboard-region div.block h2 {
    background-color: #F5F5F5;
}

/**
 * Styles for link buttons and action links.
 */
.action-links {
    list-style: none;
    padding: 0;
    margin: 1em 0;
}

.action-links li {
    display: inline-block;
    margin: 0 .3em;
}

.action-links li:first-child {
    margin-left: 0;
/* LTR */
}

a.button {
    background-color: #F5F5F5;
    display: inline-block;
    padding: .3em .5em;
    text-decoration: none;
}

a.button.add:before {
    content: '+';
    font-size: 120%;
    font-weight: 900;
    padding-right: .3em;
/* LTR */
}

a.button.add {
    background: #1078d8;
    background-image: -webkit-linear-gradient(top,#419FF1,#1076D5);
    background-image: -moz-linear-gradient(top,#419FF1,#1076D5);
    background-image: -o-linear-gradient(top,#419FF1,#1076D5);
    background-image: linear-gradient(to bottom,#419FF1,#1076D5);
    border: 1px solid #0048C8;
    border-radius: .4em;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
    color: #FFF;
    font-size: 1em;
    line-height: normal;
    margin: 0;
    padding: 3px .75em;
    text-shadow: 0 -1px 0 rgba(0,0,0,0.5);
}

a.button.add:focus,a.button.add:hover {
    background-color: #419CF1;
    background-image: -webkit-linear-gradient(top,#59ABF3,#2A93EF);
    background-image: -moz-linear-gradient(top,#59ABF3,#2A93EF);
    background-image: -o-linear-gradient(top,#59ABF3,#2A93EF);
    background-image: linear-gradient(to bottom,#59ABF3,#2A93EF);
    color: #FFF;
}

a.button.add:active {
    background-color: #0E69BE;
    background-image: -webkit-linear-gradient(top,#59ABF3,#2A93EF);
    background-image: -moz-linear-gradient(top,#59ABF3,#2A93EF);
    background-image: -o-linear-gradient(top,#59ABF3,#2A93EF);
    background-image: -ms-linear-gradient(top,#59ABF3,#2A93EF);
    background-image: linear-gradient(to bottom,#59ABF3,#2A93EF);
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.25);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.25);
}

h1 a, h2 a, h3 a, h4 a {
    text-decoration: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover {
    text-decoration: underline;
}


/**
 * Progress bar.
 */
.progress .filled {
    background-image: url(../images/progress-bar.gif);
    border-right: 1px #999 solid;
    height: 15px;
}

.progress .bar {
    background-color: #F5F5F5;
    margin: 0;
    border: #999 3px double;
    border-radius: 5px;
}

/**
 * Fields.
 */
form .field-multiple-table th.field-label {
    padding-left: 7px;
}

.biggen {
    float: left;
    width: 88px;
    height: 66px;
    float: left;
    margin: 1px;
}

.biggen:hover {
    width: inherit;
    height: inherit;
}

.thmbs {
    width: 738px;
}

.thmbs td {
    padding: 0;
    margin: 0;
    vertical-align: top;
    border: 1px solid #777;
}

fieldset {
    border: 1px solid #ccc;
    padding: 2.5em 0 0;
/* LTR */
    position: relative;
    margin: 1em 0;
}

fieldset .fieldset-legend {
    margin-top: .5em;
    padding-left: 15px;
/* LTR */
    position: absolute;
    text-transform: uppercase;
}

fieldset .fieldset-wrapper {
    padding: 0 13px 13px 15px;
/* LTR */
}

fieldset.collapsed {
    background-color: transparent;
}

html.js fieldset.collapsed {
    border-width: 1px;
    height: auto;
}

fieldset fieldset {
    background-color: #fff;
}

fieldset fieldset fieldset {
    background-color: #f8f8f8;
}

/**
 * Form elements.
 */
.form-item {
    padding: 9px 0;
    margin: 0 0 10px;
}

.filter-wrapper .form-item,div.teaser-checkbox .form-item,.form-item .form-item {
    padding: 5px 0;
    margin: 0;
    border: 0;
}

.form-type-checkbox {
    padding: 0;
}

.text-format-wrapper .form-item {
    padding-bottom: 0;
}

.form-item label {
    margin: 0;
    padding: 0;
}

.form-item label.option {
    font-size: .923em;
    text-transform: none;
}

.form-item label.option input {
    vertical-align: middle;
}

.form-disabled input.form-autocomplete,.form-disabled input.form-text,.form-disabled input.form-file,.form-disabled textarea.form-textarea,.form-disabled select.form-select {
    background-color: #eee;
    color: #777;
}

/* Filter */
.filter-wrapper {
    border-top: 0;
    padding: 10px 2px;
}

.filter-wrapper .fieldset-wrapper {
    padding: 0 6px;
}

.filter-wrapper .form-item,.filter-wrapper .filter-guidelines,.filter-wrapper .filter-help {
    font-size: .923em;
    padding: 2px 0 0;
/* LTR */
}

ul.tips,div.description,.form-item div.description {
    margin: 5px 0;
    line-height: 1.231em;
    font-size: .923em;
    color: #666;
}

ul.tips li {
    margin: .25em 0 .25em 1.5em;
/* LTR */
}

body div.form-type-radio div.description,body div.form-type-checkbox div.description {
    margin-left: 1.5em;
/* LTR */
}

input.form-submit,a.button {
    cursor: pointer;
    padding: 4px 17px;
    margin-bottom: 1em;
    margin-right: 1em;
/* LTR */
    color: #5a5a5a;
    text-align: center;
    font-weight: 400;
    font-size: 1.077em;
    font-family: Ubuntu,Verdana,sans-serif;
    border: 1px solid #e4e4e4;
    border-bottom: 1px solid #b4b4b4;
    border-left-color: #d2d2d2;
    border-right-color: #d2d2d2;
    background: url(../images/buttons.png) 0 0 repeat-x;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}

a.button:link,a.button:visited,a.button:hover,a.button:active {
    text-decoration: none;
    color: #5a5a5a;
}

input.form-submit:active {
    background: #666;
    color: #fff;
    border-color: #555;
    text-shadow: #222 0 -1px 0;
}

input.form-button-disabled,input.form-button-disabled:active {
    background: #eee none;
    border-color: #eee;
    text-shadow: none;
    color: #999;
}

input.form-autocomplete,input.form-text,input.form-file,textarea.form-textarea,select.form-select {
    border: 1px solid #a09c9c;
    border-radius: 3px;
    color: #333;
    font-size: 1em;
    line-height: 1.25em;
    padding: 2px;
}

input.form-text:focus,input.form-file:focus,textarea.form-textarea:focus,select.form-select:focus {
    color: #000;
    border-color: #ace;
}

#user-login {
    max-width: 600px;
    margin: 40px auto;
}

/****************************************************/
.node-faculty .node-notes .field-type-node-reference,#edit-title .form-required {
    display: none;
}

.field-name-field-bullets .field-items {
    list-style: disc;
    margin-left: 5%;
}

.field-name-field-bullets .field-items div {
    display: list-item;
}

#faculty-node-form #edit-field-image,#faculty-node-form #edit-field-photo-markup {
    width: 46%;
    float: left;
    margin: 0;
}

#faculty-node-form #edit-field-image {
    border-right: 1px solid #ccc;
    padding-right: 2%;
}

#edit-field-photo-markup {
    padding-left: 2%;
}

#edit-field-photo-markup input[type="text"] {
    width: 100%;
}

#shift_presents_logo {
    position: absolute;
    top: 0;
    left: 0;
}

#faculty-queue-form table td,#faculty-queue-form table th {
    border: 0 none;
    color: #000;
    padding: 0 10px;
    vertical-align: middle;
}




#admin_menu_edit_source {
    color: #0bcb2f;
    display: block;
    font-size: 9px;
    font-weight: 600;
    left: 5px;
    position: fixed;
    top: 6px;
    z-index: 9999;
}

#admin-menu a#node_edit_link {
    float: left;
    margin: 1px 0 0 9px;
    font-weight: 600;
    font-size: 13px;
}

#admin-menu .dropdown#admin-menu-append {
    width: 40%;
    border-radius: 10px;
    position: absolute;
    right: 68px;
    top: 2px;
    color: #fff;
}
#admin-menu #admin-menu-append a {
    display: inline-block;
    color: #000;
    margin: 0 1px;
    background: #cacaca;
    border-radius: 10px;
}
#admin-menu #admin-menu-append a.active {
    display: none;
}

.page-node- ul.primary li:nth-child(2) {
    float: none;
    font-size: 12px;
    left: 25px;
    position: fixed;
    top: 7px;
    z-index: 9999;
}

.page-node- ul.primary li:nth-child(2) a {
    background-color: #000;
    color: #fafafa;
    box-shadow: none;
}

.page-node- ul.primary li a:link {
    background-color: inherit;
    border-color: inherit;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    display: inline;
    float: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: inherit;
    padding: 0;
}

#admin-menu #admin-menu-icon {
    margin-left: 80px;
}

#admin_menu_edit_source {
    color: #0bcb2f;
    display: block;
    font-size: 9px;
    font-weight: 600;
    left: 5px;
    position: fixed;
    top: 6px;
    z-index: 9999;
}

#admin_menu_edit_page {
    color: #fafafa;
    display: block;
    font-size: 12px;
    left: 25px;
    position: fixed;
    top: 6px;
    font-weight: 600;
    letter-spacing: 1.5px;
    z-index: 9999;
}

.page-node- ul.primary li:nth-child(2) {
    float: none;
    font-size: 12px;
    left: 25px;
    position: fixed;
    top: 7px;
    z-index: 9999;
}

.page-node- ul.primary li a:link {
    background-color: inherit;
    border-color: inherit;
    border-radius: 0;
    border-style: none;
    border-width: 0;
    display: inline;
    float: none;
    font-weight: 600;    
    font-size: 0.7em;
    letter-spacing: 1.5px;
    line-height: inherit;
    padding: 0;
}

.page-node- ul.primary li:nth-child(2) a {
    background-color: #000;
    color: #fafafa;
    box-shadow: none;    
    font-size: 1em;
}

.photo img {
    border-radius: 100%;
}

.signin_box {
    max-width: 600px;
    margin: 30px auto;
    min-height: 500px;
}

.logged-in .edit_link {
    font-size: .7em;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: block;
    margin: 0;
    position: absolute;
    right: 36px;
    background: #a00;
    padding: 0 9px;
    border-radius: 12px;
    cursor: pointer;
}

.edit_link:hover {
    text-decoration: underline;
    color: #fdbebe;
}

.not-logged-in .edit_link {
    display: none;
}    

.summit_logo img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

#summit_logo_big {
    display: block;
}

#summit_logo_phone {
    display: none;
}

.red {
    color: #dc0000;
}

.small {
    font-size: .7em;
}

.support_button {
    color: #2d8d0a;
}
.support_button:hover {
    color: #04b0b0;
    text-decoration: none;
}


#admin_fixed_bottom {
    bottom: 0;
    color: #050000;
    position: fixed;
    z-index: 10;
    padding: 0 3px;
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 35px;
}

#admin_fixed_bottom div {
    display: inline-block;
    padding: 0 3px;
    font-size: 13px;
    /* border: 1px solid #848484; */
    color: #fff;
    margin: 0 1px;
    height: 31px;
    background-color: #2c2c2c;
    border-radius: 6px;
    line-height: 2em;
}

#admin_fixed_bottom div a {
    color: #00e9e2;
    font-weight: 600;
}

div#folderpath {
    background: #760000;
}
div#page_nids {
    background: #560076;
}
div#page_label {
    background: #002276;
}
div#edit_salespage_link {
    background: #040076;
}
div#window_size {
    background: #0a414b;
}
#admin_fixed_bottom div.other_pages {
    background-color: #7d7a7a;
}
#admin_fixed_bottom div.other_pages a {
    color: #e4da4b;
}




.embedded-video {
  width: 100%;
  max-width: 700px;
  margin-bottom: 40px;
}

.video_embed {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.embedded-video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.embedded-video-wrapper > * {
    position: absolute;
    top: 10%;
    left: 0;
    height: 100%;
    width: 100%;
}

.gold_bg, .content a.gold_bg {
    background: #fdaa28;
    border-radius: 2px;
    color: #fff;
    font-size: 1.75rem;
    font-family: 'Open Sans Bold', sans-serif;
    outline: none;
    padding: 0.5em 0.8em;
    text-align: center;
    vertical-align: middle;
    border: none;
    cursor: pointer;
    display: block;
    max-width: 600px;
    margin: 30px auto;
    line-height: .85em;
}

.gold_bg:hover,
a.gold_bg:hover {
  text-decoration: none;
  text-shadow: 0 0 6px rgba(255,255,255,.3) , 0 0 15px rgba(255,255,255,.3) , 0 0 20px rgba(255,255,255,.3);  
}

/*******  COLORBOX  ********/
#overcat {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #333;
    opacity: .6;
    z-index: 3;
    display: none;
}
#colorbox {
    z-index: 4;
}

#cboxClose {
    background: none;
    border: 0 none;
    color: #fff;
    font-size: 1.42em;
    position: absolute;
    right: -5px;
    top: -2px;
}

#cboxClose::after {
    font-family: tsn;
    content: "\e821";
}

#cboxClose:hover {
    color: #333;
    cursor: pointer;
}

/** colorbox_loaded **/
.colorbox_loaded #cboxLoadedContent {
    background-color: #fff;
    border-radius: 28px;
    border: 2px solid #878787;
}

#colorbox_loaded #cboxLoadedContent {
    background-color: #fff;
}

#policy_inner {
    font-size: .8rem;
    margin: 3%;
    padding: 15px 5%;
    background-color: #fff;    
    min-height: 200px;   
    height: 90vh;
    overflow-y: auto;
}

.colorbox_loaded #cboxClose {
    color: #236eb0;
    right: 34px;
    top: 16px;
    font-size: 30px;
}

#node_ajax_content {
    font-size: .68rem;
    letter-spacing: -.5px;
    line-height: 1.1rem;
    margin: 55px 2% 0;
    background-color: #fff;
    min-height: 200px;
}

#node_ajax_content a {
    color: #0989F1;
}

.node_ajax_left {
    display: inline-block;
    vertical-align: top;
    width: 24%;
    text-align: center;
}

.node_ajax_right {
    display: inline-block;
    vertical-align: top;
    width: 73%;
    padding: 0 0 0 2vw;
    max-height: 337px;
    overflow-y: scroll;
}

#node_ajax_content .photo {
    border-radius: 0;
    float: none;
    margin: 5px 1% 5px 0;
    display: block;
}

.node_ajax_left .photo img {
    border-radius: 29px;
}

#node_ajax_content .preferred_name {
    font-size: 1.3em;
    margin: 18px 0 0px;
    color: #000;
    text-transform: uppercase;
}

#node_ajax_content .liner {
    border-top: solid #9d9d9d 1px;
    margin: 12px 17% 0;
}

#node_ajax_content .tagline {
    margin: 10px 0;
    font-style: normal;
    font-weight: 600;
}

#node_ajax_content .websites {
    margin-top: 18px;
}

#node_ajax_content .websites a {
    display: block;
}

.field-name-field-faqs {
    display: none;
}

table tbody {
    border: none;
}

.hidden {
    display: none;
}

.clear,.clearfix:after,.clear {
    clear: both;
}

.s10, .s1 {
    min-height: 10px;
}

.s20, .s2 {
    min-height: 20px;
}

.s30, .s3 {
    min-height: 30px;
}

.s40, .s4 {
    min-height: 40px;
}

.s50, .s5 {
    min-height: 50px;
}

.s60, .s6 {
    min-height: 60px;
}

.s70, .s7 {
    min-height: 70px;
}

.s80, .s8 {
    min-height: 80px;
}

.s90, .s9 {
    min-height: 90px;
}

.s100 {
    min-height: 100px;
}


.center {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.round {
    border-radius: 100%;
    background: #fff;
}

.right {
    float: right;
	margin: 5px 0 5px 20px;
}

.left {
    float: left;
	margin: 5px 20px 5px 0;
}

.medium {
    max-width: 300px;
    max-height: 300px;
}

.image-align_center {
  display: block;
  margin-left: auto;
  margin-right: auto
}

.image-align_right {
    float: right;
    margin: 5px 0 5px 1%;
    clear: both;
}

.image-align_left {
    float: left;
    margin: 5px 1% 5px 0;
    clear: both;
}

.videoWrapper {
    max-width: 800px;
    margin: 0 auto;
}

.videoWrapper iframe {
}

.image-circle_wrap_right {
  border-radius: 100%;
  -webkit-shape-outside: circle();
  shape-outside: circle(); 
    float: right;
    margin: 5px 0 5px 1%;
    clear: both;
}

.image-circle_wrap_left {
  border-radius: 100%;
  -webkit-shape-outside: circle();
  shape-outside: circle(); 
    float: left;
	margin: 5px 20px 5px 0;
}

.circle {
  border-radius: 100%;
  -webkit-shape-outside: circle();
  shape-outside: circle();
}

.sandwich {
    height: 0;
    width: auto;
}

.handbad {
    left: 0;
    top: 0;
    width: 100%;
    position: absolute;
}

#email_preview p {
    font-size: .9em;
}
#email_preview h4 {
    font-size: .9em;
    font-weight: 500;
}

#email_preview table {
    font-size: .9em;
}

.not-logged-in ul.tabs.primary {
   display: none; 
}

#speaker_page_player {
    max-width: 400px;
    margin: 0 auto 30px;
}

input[type="text"].highlight {
    border: 2px solid red;
}


#bottom_fixed {
    color: #2ccfb8;
    position: fixed;
    bottom: 0;
    background-color: #000;
    padding: 1px 0 5px 10%;
    font-size: 11px;
    line-height: 2em;
    left: 0;
    z-index: 150;
    width: 100%;
}

#bottom_fixed a {
    color: #eee;
    padding-right: 10px;
}

#bottom_fixed .rightts {
    float: right;
    margin-right: 10%;
}

.cover {
    background-size: cover;
}

#reg_disclose {
    font-size: .7em;
    line-height: 1.1em;
    margin-top: 9px;
}


.field-name-field-html img {
    max-width: 230px;
    max-height: 230px;
}




#simple_footer {
    text-align: center;
    font-size: 0.9em;
    margin: 20px 0 60px;
    font-style: italic;
}

#thin_footer {
    color: #333;
    font-size: .65em;
    position: absolute;
    left: 0;
    bottom: 0;
    height: auto;
    width: 100%;
    padding: 5px 0;
    background-color: #fff;
}

#flogo {
    margin-left: 3%;
}

#pbot_right {
    float: right;
    font-size: 1.1em;
    margin-top: 10px;
    text-align: right;
    margin-right: 2%;
    min-width: 500px;
}

#pbot_right span, #pbot_right a {
    color: #4c4c4e;
    margin: 0 3%;
}


.breakout { 
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100vw; 
}

#customer_nav {
    background-color: #fff;
    width: 100%;
    height: 25px;
    position: fixed;
    top: 0;
    text-align: center;
    z-index: 20;
    border-bottom: solid 1px #ccc;
}

#customer_nav a {
    text-decoration: none;
    color: #6a1d99;
    margin: 0 5px;
    font-size: 16px;
}
#customer_nav a:hover {
    color: #ab21ff;    
}

.customer_nav #container {
    margin-top: 25px;
}

.admin-menu.customer_nav #container {
    margin-top: 55px;
}
.admin-menu #customer_nav {
    top: 30px;
}



@media (max-width: 520px) {
    .right, .left, .image-circle_wrap_right, .image-circle_wrap_left {
        float: none;
        margin: 0 auto;
        display: block;
    }
    .page-page-11 #inner {        
        padding-top: 83px;
    }
    .page-page-11 #summit_logo_phone {
        display: none;
    }
    #node_ajax_content .photo {
        float: none;
        margin: 5px auto 5px auto;
        display: block;
        text-align: center;
    }
    #flogo img {
        margin: 0 auto;
        display: block;
    }
    #pbot_right {
        float: none;
        font-size: 1.1em;
        text-align: center;
        min-width: inherit;
        margin: 0 0 20px;
    }
    h1 {
        font-size: 2.15rem;
        line-height: 2rem;
    }
    h2 {
        font-size: 1.52rem;
        line-height: 1.52rem;
    }
    h3 {
        font-size: 1rem;
        line-height: 1;
    }
}



@media (max-width: 480px) {
    #summit_logo_big {
        display: none;
    }

    #summit_logo_phone {
        display: block;
        margin-top: 47px;
    }
    #youtube {
        width: 100%;
        margin-bottom: 32px;
    }
    
    #customer_nav a {
        font-size: 13px;
    }
}


















/* NEW MENU */

#shift_nav {
    display: none;
}

#bnow_but {
    color: #fff;
    background-color: #FAB84A;
    height: 47px;
    display: inline-block;
    margin: 0 0 0 14vw;
    padding: 10px 20px 0;
    font-weight: 600;
    letter-spacing: .07em;
    width: 171px;
    text-align: center;
    line-height: 1.2em;
}

#top_nav_logo_cont {
    float: left;
    margin: 17px 10px 0 6%;
}

#logo_min {
    position: absolute;
    top: 3px;
    left: 3vw;
    display: block;
}

#shift_nav.thin_menu {
    height: 48px;
    box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.053);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    text-align: left;
    z-index: 20;
}

.admin-menu #shift_nav {
    top: 30px;
}


#menu_ul {
    list-style: none;
    text-align: center;
    margin: 42px auto 0;
}

.thin_menu #menu_ul {
    margin: 15px 0 0 2vh;
    display: inline-block;
}

.thin_menu #menu_ul li {
    display: inline-block;
    position: relative;
    list-style: none;
    line-height: .3em;
    vertical-align: top;
}

#menu_ul li a {
    font-weight: 600;
    color: #5f5f5f;
    font-size: .55em;
    display: block;
    padding: 5px 15px 0;
    letter-spacing: .05152em;
    text-transform: uppercase;
}

#menu_ul .jumpLink a {
    color: #a00;
    font-size: .655em;
}

#shift_nav a, #shift_nav a:hover {
    text-decoration: none;
}

#mob_menu_activator {
    display: none;
    font-size: 37px;
    color: #989898;
    top: 13px;
    position: absolute;
    right: 10%;
}

#shift_nav.mobile_nav {
    width: 100%;
    z-index: 12;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    text-align: left;
    z-index: 20;
    height: 48px;
    overflow: visible;
    box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.053);
}

#top_logo_white {
    display: none;
}

.mobile_nav #menu_ul {
    width: 100%;
    background-color: #fff;
    padding: 16px 0 9px;
    margin: 0 auto 0;
    box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.053);
    display: none;
}

.mobile_nav #menu_ul li {
    margin: 1px 1%;
    border-bottom: none;
    background-color: #5caec6;
    border-radius: 20px;
    padding: 6px 0;
    display: block;
    min-height: 40px;
}

.mobile_nav #menu_ul li a {
    font-weight: 600;
    color: #fff;
    font-family: MontserratBold;
    font-size: .85em;
}

.mobile_nav #bnow_but {
    display: block;
    margin: 0 0 0 40%;
    padding: 15px 5px;
    font-weight: 600;
    width: 124px;
    line-height: 0.81em;
    letter-spacing: -.007em;
}

.mobile_nav #menu_ul li#sidebar_show_li {
    background-color: #634583;
}

.show_more_hide {
    display: block;
}

.show_more {
    display: none;
}

.spacer_100 {
    display: inline-block;
    margin: 0 0 0 14vw;
    width: 57px;
}

@media (max-width: 500px) {
    .show_more_hide, .spacer_100, #admin-menu {
        display: none;
    }
    .has_shift_nav.admin-menu #container {
        margin-top: 48px;
    }
    #simple_footer {
        margin: 20px 0 101px;
    }
    .thin_menu #menu_ul {
        display: block;
    }
    #logo_min {
        left: .5%;
    }
    .show_more {
        display: block;
        cursor: pointer;
        color: #0e8290;
        text-align: center;
        margin-bottom: 30px;
        border-bottom: solid 1px #d4d1d1;
        padding-bottom: 5px;
    }
    .show_more::before {
        font-family: shift_icons;
        content: "\e808";
        padding-right: 6px;
    }
    .show_more_before {
        position: relative;
    }
    .show_more_before div {
        position: absolute;
        height: 200px;
        width: 100%;
        top: -200px;
        background: rgba(250, 250, 250, 0);
        background: -moz-linear-gradient(top, rgba(250, 250, 250, 0) 0%, rgba(255, 255, 255, 1) 100%);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(250, 250, 250, 0)), color-stop(100%, rgba(255, 255, 255, 1)));
        background: -webkit-linear-gradient(top, rgba(250, 250, 250, 0) 0%, rgba(255, 255, 255, 1) 100%);
        background: -o-linear-gradient(top, rgba(250, 250, 250, 0) 0%, rgba(255, 255, 255, 1) 100%);
        background: -ms-linear-gradient(top, rgba(250, 250, 250, 0) 0%, rgba(255, 255, 255, 1) 100%);
        background: linear-gradient(to bottom, rgba(250, 250, 250, 0) 0%, rgba(255, 255, 255, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#ffffff', GradientType=0);
    }
    .show_more_before div.yellow {
        position: absolute;
        height: 200px;
        width: 100%;
        top: -200px;
        background: rgba(250, 250, 250, 0);
        background: -moz-linear-gradient(top, rgba(250, 250, 250, 0) 0%, rgba(255, 249, 222, 1) 100%);
        background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(250, 250, 250, 0)), color-stop(100%, rgba(255, 249, 222, 1)));
        background: -webkit-linear-gradient(top, rgba(250, 250, 250, 0) 0%, rgba(255, 249, 222, 1) 100%);
        background: -o-linear-gradient(top, rgba(250, 250, 250, 0) 0%, rgba(255, 249, 222, 1) 100%);
        background: -ms-linear-gradient(top, rgba(250, 250, 250, 0) 0%, rgba(255, 249, 222, 1) 100%);
        background: linear-gradient(to bottom, rgba(250, 250, 250, 0) 0%, rgba(255, 249, 222, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#fff9de', GradientType=0);
    }
    .mob_opt img {
        display: none;
    }
    .mob_opt {
        width: 100%;
        height: 200px;
        background-position: center 32%;
        margin: 15px 0;
        background-repeat: no-repeat;
        background-size: cover;
    }
}




.HasCache, .NotUsingCache, .UsingCache, .NoCache {
    font-size: 8px;
    cursor: pointer;
}

.HasCache {
    color: #49f900;
}

.NoCache {
    color: #fc3333;    
}

.UsingCache {
    color: #a1ff8c;    
}

.NotUsingCache {
    color: #f8a6a6;    
}


#session_page_banner {
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100vw; 
    top: -20px;
}

#admin-menu .dropdown#admin-menu-cache {
    padding-right: 170px;
}
#admin-menu .dropdown#admin-menu-cache a {
    display: inline-block;
    padding: 0;
}
#admin-menu .dropdown#admin-menu-cache a.qsq {
    color: #858383;
}












