@import url(fontbuilder.css);

/* when you highlight text */
::selection {
  background: #0286c2;
  color: #fff
}

#logo_bar, #logo_left {
  height: 117px
}

:root {
    --color-body: #111111;
    /* --color-header: #001446; */
    --color-header: #043a62;
    --color-icon: #001446;
    --color-link: #0099cc;
    --color-link-hover: #00bbfe;
    --color-link-visited: #467dce;
    --color-navlink: #001446;
}

html, body, body .ui-widget {
  font-family: 'sofia-pro', Gotham, Montserrat, Helvetica, Arial, sans-serif;
}
html body.mobile_menu_open {
  overflow: hidden;
}

a {
    color: var(--color-link);
    transition: all 0.3s;
    text-decoration: none;
}
a:hover,
a:focus,
.css_event_text a:hover,
.css_event_text a:focus {
    color: var(--color-link-hover);
    text-decoration: none;
}
a:visited,
.css_event_text a:visited {
    color: var(--color-link-visited);
}

.w100 {
  width: 100%;
  height: auto;
}

main * {
  box-sizing: border-box;
}

body .align_center {
  text-align: center;
}

body .m_0 { margin: 0!important; }
body .m_1 { margin: 1em; }
body .m_2 { margin: 2em; }
body .m_3 { margin: 3em; }
body .m_t_1 { margin-top: 1em; }
body .m_t_2 { margin-top: 2em; }
body .m_t_3 { margin-top: 3em; }
body .m_r_1 { margin-right: 1em; }
body .m_r_2 { margin-right: 2em; }
body .m_r_3 { margin-right: 3em; }
body .m_b_0 { margin-bottom: 0!important; }
body .m_b_1 { margin-bottom: 1em; }
body .m_b_2 { margin-bottom: 2em; }
body .m_b_3 { margin-bottom: 3em; }
body .m_l_1 { margin-left: 1em; }
body .m_l_2 { margin-left: 2em; }
body .m_l_3 { margin-left: 3em; }

body .p_0 { padding: 0!important; }
body .p_1 { padding: 1em; }
body .p_2 { padding: 2em; }
body .p_3 { padding: 3em; }
body .p_t_1 { padding-top: 1em; }
body .p_t_2 { padding-top: 2em; }
body .p_t_3 { padding-top: 3em; }
body .p_r_1 { padding-right: 1em; }
body .p_r_2 { padding-right: 2em; }
body .p_r_3 { padding-right: 3em; }
body .p_b_1 { padding-bottom: 1em; }
body .p_b_2 { padding-bottom: 2em; }
body .p_b_3 { padding-bottom: 3em; }
body .p_l_1 { padding-left: 1em; }
body .p_l_2 { padding-left: 2em; }
body .p_l_3 { padding-left: 3em; }

body .ui-widget-header {
    background: #dbdfe2;
    color: #001446;
    padding: 5px 0;
}
body .ui-widget-header, 
body .ui-widget-content {
  border-color: #c1c6c9;
}

body .fc-event {
  border-radius: 0;
  border: none;
  padding: 2px 4px;
}
body .fc-event, body .fc-event-dot {
  background: #5a97c2;
}
body .fc-event:hover, body .fc-event-dot:hover,
body .fc-event:focus, body .fc-event-dot:focus {
  background: #90c7ee;
}
body .ui-state-highlight, 
body .ui-widget-content .ui-state-highlight, 
body .ui-widget-header .ui-state-highlight {
  border: 1px solid #91c5dd;
  background: #c5ebfd;
  color: #363636;
}

html body .ui-state-default, 
html body .ui-widget-content .ui-state-default, 
html body .ui-widget-header .ui-state-default, 
html body .ui-button, 
html body .ui-button.ui-state-disabled:hover, 
html body .ui-button.ui-state-disabled:active {
  background: #dbdfe2;
  color: #001446;
  border-color: #c1c6c9;
}
body .ui-state-hover, 
body .ui-widget-content .ui-state-hover, 
body .ui-widget-header .ui-state-hover, 
body .ui-state-focus, 
body .ui-widget-content .ui-state-focus, 
body .ui-widget-header .ui-state-focus, 
body .ui-button:hover, .ui-button:focus {
  background: #FFFFFF;
  color: #0c235d;
  border-color: #EEEEEE;
}
body .ui-widget-header a {
  color: #001446;
}

.ui-button {
  border-radius: 0!important;
}

body .calendar_container {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
}

.bigintro {
  font-size: 24px;
  line-height: 130%;
  padding-left: 20%;
  padding-right: 20%;
  color: var(--color-header);
  background: #f7fcfc;
}


footer .row,
main .row {
  position: relative;
  display: grid;
}

footer .row.row_2_col,
main .row.row_2_col {
  grid-template-columns: 1fr 1fr;
}
footer .row.row_1_2_col,
main .row.row_1_2_col {
  grid-template-columns: 1fr 2fr;
}
footer .row.row_2_1_col,
main .row.row_2_1_col {
  grid-template-columns: 2fr 1fr;
  grid-column-gap: 24px;
}
footer .row.row_1_3_col,
main .row.row_1_3_col {
  grid-template-columns: 1fr 3fr;
}
footer .row.row_3_1_col,
main .row.row_3_1_col {
  grid-template-columns: 3fr 1fr;
}
footer .row.row_2_3_col,
main .row.row_2_3_col {
  grid-template-columns: 2fr 3fr;
}
footer .row.row_3_2_col,
main .row.row_3_2_col {
  grid-template-columns: 3fr 2fr;
}
footer .row.row_2_4_col,
main .row.row_2_4_col {
  grid-template-columns: 2fr 4fr;
}
footer .row.row_4_2_col,
main .row.row_4_2_col {
  grid-template-columns: 4fr 2fr;
}
footer .row.row_1_4_col,
main .row.row_1_4_col {
  grid-template-columns: 1fr 4fr;
}
footer .row.row_4_1_col,
main .row.row_4_1_col {
  grid-template-columns: 4fr 1fr;
}
footer .row .col,
main .row .col {
  padding: 1em 1.5em;
}

footer .row.row_3_col,
main .row.row_3_col {
  grid-template-columns: 1fr 1fr 1fr;
}
footer .row.row_2_1_1_col,
main .row.row_2_1_1_col {
  grid-template-columns: 2fr 1fr 1fr;
}
footer .row.row_1_2_1_col,
main .row.row_1_2_1_col {
  grid-template-columns: 1fr 2fr 1fr;
}
footer .row.row_1_1_2_col,
main .row.row_1_1_2_col {
  grid-template-columns: 1fr 2fr 1fr;
}

.card {
  border: 1px solid #AAAAAA;
  background: #FFFFFF;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 1em;
  position: relative;
  display: grid;
  grid-template-columns: 2fr 3fr;
}
.card h1:first-child,
.card h2:first-child,
.card h3:first-child,
.card h4:first-child,
.card h5:first-child,
.card h6:first-child,
.card p:first-child,
.card ul:first-child {
  margin-top: 0;
  padding-top: 0;
}
.card h1:last-child,
.card h2:last-child,
.card h3:last-child,
.card h4:last-child,
.card h5:last-child,
.card h6:last-child,
.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

main .checks {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
main .checks li {
  padding-left: 1.8em;
  position: relative;
  margin-bottom: 0.5em;
}
main .checks li:before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background: var(--color-header);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
  padding: 0;
}

main .blog_posts {
  background: #f7fcfc;
}

footer {
  padding-top: 2em;
  background: var(--color-header);
  color: #DDDDEE;
}
footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.css_footer_disclaimer a:link,
.css_footer_disclaimer a:visited,
footer a {
  color: #FFFFFF;
}
.css_footer_disclaimer a:hover,
.css_footer_disclaimer a:focus,
footer a:hover,
footer a:focus {
  color: #BBCCFF;
}

footer .logo_footer {
}
footer .logo_footer img {
  width: 100%;
  height: auto;
  margin-bottom: 2em;
}
footer .css_footer_disclaimer {
  color: #CCCCDD;
  font-size: 12px;
}
.footer_social {
  text-align: center;
}
.footer_social img {
  width: 36px;
  height: 36px;
  margin: 0 12px 12px 0;
}

.full-width {
    width: 106%;
    height: auto;
    margin: 0 -3%;
    box-sizing: border-box;
}

#logo_bar, #logo_bar_inner, #menu, html body {
  background-color: #FFF
}

#logo_left, #logo_right a, #menu_left a {
  background-repeat: no-repeat
}

#faqs div, #menu_mobile, .sr-only {
  overflow: hidden
}

#schedulebox .row:after, .clearfix:after {
  content: " ";
  clear: both
}

#menu_mobile ul, .nav ul, ol, ul {
  list-style: none
}

img {
  border: 0
}

.cent {
  margin: 0 auto;
  width: auto!important
}

body, html {
  width: 100%
}

body {
  z-index: 1;
  color: #333;
  overflow-x: hidden;
  overflow-y: auto
}

body .css_event_text {
  color: #555
}

#bluebox, .main_title_top {
  color: #FFF
}

.hideme {
  display: none !important;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-header);
  font-weight: 700
}
h2 {
  font-weight: 400;
}

#wrapper a, #wrapper button, #wrapper div, #wrapper h1, #wrapper h2, #wrapper h3, #wrapper h4, #wrapper h5, #wrapper h6 {
  outline: 0
}

.css_event_text ol.main_list {
  list-style-type: decimal;
  padding: 0 0 30px 40px;
  margin: 0;
  font-size: 18px
}

.css_event_text ol.main_list li {
  margin-bottom: 4px
}

#bluebox_bottom, #bluebox_top, #logo_bar, #menu {
  width: 100%
}

iframe[name=google_conversion_frame] {
  height: 0
}

#wrapper {
  min-width: 0;
  max-width: none;
  z-index: 1;
  background: #FFF
}

.fc-event.full, .fc-event-dot.full {
  background-color: #d76d5e;
  border: 1px solid #d76d5e;
}
.fc-event.inactive, .fc-event-dot.full {
  background-color: #d76d5e;
  border: 1px solid #d76d5e;
}
.fc-event.full:hover {
  background-color: #edada4;
  border-color: #edada4;
}

#header {
  height: 32px;
  width: 980px
}

#logo_bar_inner {
  margin: 0 auto;
  height: 117px
}

#logo_left {
  outline: 0;
  width: 292px;
  float: left;
  background-image: url(/media/images/logo.gif);
  background-position: bottom left
}

#logo_right {
  width: 570px;
  height: 78px;
  float: right;
  text-align: right;
  font-size: 15px;
  color: #2fb5ea;
  line-height: 78px;
  font-weight: 700
}

#logo_right a:active, #logo_right a:hover, #logo_right a:link, #logo_right a:visited {
  font-size: 20px;
  text-decoration: none
}

#logo_right a {
  display: block;
  padding-left: 20px;
  margin-left: 20px;
  background-image: url(/media/images/bullet_header_sprite.gif);
  background-position: top left;
  float: right
}

#logo_right a:link, #logo_right a:visited {
  color: #009bdf;
  background-position: top left;
  background-color: #FFF
}

#logo_right a:active, #logo_right a:hover {
  color: #b95119;
  background-position: bottom left
}

#menu_left a, #menu_right a, #menu_right .link, .bluebox_item_text, .bluebox_item_title, .tout_header {
  font-weight: 700
}

.tout_content DIV, .tout_content P {
  padding: 0;
  margin: 0
}

#menu_left {
  height: 33px;
  line-height: 35px;
  float: left;
  font-size: 16px
}

#menu_left a {
  width: 169px;
  height: 33px;
  text-align: center;
  float: left;
  padding-top: 2px;
  background-image: url(/media/images/bg_menubutton.gif);
  background-size: 100% 71px;
}

#menu_left a.medicare-options-seminars {
  width: 200px;
}

#menu_left a:link, #menu_left a:visited {
  color: #626262;
  text-decoration: none;
  background-position: top left
}

#menu_left a:active, #menu_left a:hover {
  color: #363636;
  text-decoration: none;
  background-position: bottom left
}

.menuspacer_6 {
  width: 6px;
  float: left;
  height: 35px
}

#bluemenucap_left, #bluemenucap_middle, #bluemenucap_right {
  height: 31px;
  float: right;
  background-repeat: no-repeat
}

#menu_right {
  height: 35px;
  float: right;
  background: #0071a9;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
}

#menu_right a,
#menu_right .link {
  float: right;
  line-height: 31px;
  font-size: 16px;
  text-align: center;
  padding: 3px 8px;
  display:inline-block;
  position: relative;
}

#menu_right a:link, #menu_right a:visited,
#menu_right .link {
  color: #fff;
  text-decoration: none
}

#menu_right a:active, #menu_right a:hover {
  color: #fff;
  text-decoration: underline
}

#menu_right a:first-child {
  padding-right: 20px
}

#menu_right a:last-child {
  padding-left: 20px
}

#menu_right .link .dropdown {
  background: #FFFFFF;
  background: rgba(0, 100, 165, 0.9);
  position: absolute;
  top: 36px;
  left: -8px;
  text-align: left;
  line-height: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  max-height:0;
  overflow: hidden;
  transition: max-height 0.5s, border-width 0.5s;
  -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.5);
  box-shadow: 0 3px 5px rgba(0,0,0,0.7);
  border: 0px solid #1DBFFF;
  z-index: 10;
}
#menu_right .link:hover .dropdown,
#menu_right .link:focus .dropdown {
  max-height:600px;
  transition: max-height 0.75s, border-width 0.3s;
  border-width: 1px;
}
#menu_right .link .dropdown a {
  float: none;
  display: block;
  padding: 10px 20px;
  line-height: 100%;
  transition: background-color 0.2s;
}
#menu_right .link .dropdown a:hover,
#menu_right .link .dropdown a:focus {
  background: rgba(255,255,255,0.2);
}

#bluemenu_cap {
  width: 100px;
  height: 4px;
  line-height: 4px;
  font-size: 4px;
  margin: 0;
  padding: 0
}

#bluemenucap_left {
  width: 12px;
  background-image: url(/media/images/bg_bluemenu_left.gif)
}

#bluemenucap_middle {
  width: 13px;
  background-image: url(/media/images/bg_bluemenu_middle.gif)
}

#bluemenucap_right {
  width: 12px;
  background-image: url(/media/images/bg_bluemenu_right.gif)
}

.dottedline {
  height: 1px;
  line-height: 1px;
  font-size: 1px;
  margin: 0;
  padding: 0;
  border: 0;
  background-image: url(/media/images/bg_dots.gif);
  background-repeat: repeat-x;
  clear: both
}

#home_focus, #interior_focus, .bluebox_line, .icon_quote, .tout_content, .tout_header {
  background-repeat: no-repeat
}

#home_focus {
  height: 471px;
  background-image: url(/media/images/homepage-2.jpg);
  background-size: cover;
  background-position: top center
}

.index #home_focus {
  padding-top: 140px
}

#bluebox-container {
  max-width: 958px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0
}

#bluebox h2, #bluebox-container p {
  margin: 0 0 8px
}

#bluebox_spacetop {
  height: 50px;
  width: 304px;
  clear: both
}

#bluebox_spaceleft {
  width: 4px;
  height: 344px;
  float: left
}

#bluebox {
  width: 63%;
  height: 344px;
  float: left
}

#bluebox h1 {
  margin: 16px 0 0
}

#bluebox_content {
  background: #2780af
}

#bluebox_content h1 {
  color: #FFF;
  line-height: 25px;
  font-size: 24px;
  margin-bottom: 8px
}

#bluebox_bottom img, #bluebox_top img {
  width: 100%;
  height: auto
}

.bluebox_line {
  height: 1px;
  width: 304px;
  background-image: url(/media/images/bluebox_line.png);
  line-height: 1px;
  font-size: 1px;
  clear: both;
  background-size: cover
}

.bluebox_item, .bluebox_item_text, .bluebox_item_title {
  height: 49px;
  line-height: 49px
}

.bluebox_item {
  width: auto;
  margin: 0;
  padding: 2px 2%;
  cursor: pointer;
  border-top: 1px solid #4a99bf
}

.bluebox_item_title {
  width: 87px;
  float: left;
  font-size: 26px;
  color: #ff8a00
}

.bluebox_item_text {
  width: 216px;
  float: right;
  font-size: 17px;
  color: #fff;
  text-align: right;
  text-decoration: none
}

#home_touts {
  max-width: 958px;
  min-height: 243px;
  margin-top: -35px
}

.tout, .tout_spacer {
  min-height: 100px;
  float: left
}

#home_touts>.tout {
  margin: 20px .5% 0;
  width: 24%;
  box-sizing: border-box
}

.tout_header {
  line-height: 35px;
  padding-left: 15px;
  background-color: #FFF;
  color: #2fb5e9;
  font-size: 16px;
  border-right: 1px solid #d9d9d9;
  border-left: 1px solid #d9d9d9;
  border-top: 1px solid #d9d9d9;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px
}

.tout_header h3 {
  font-size: 19px;
  color: #009bdf;
  margin: 0;
  line-height: 20px;
  padding: 10px 0
}

.tout_header_orange {
  color: #ff8a00
}

.tout_header_orange a:link, .tout_header_orange a:visited {
  color: #ff8a00;
  text-decoration: none
}

.tout_header_orange a:active, .tout_header_orange a:hover {
  color: #ff8a00;
  text-decoration: underline
}

.tout_content {
  padding-left: 15px;
  padding-right: 15px;
  background-image: url(/media/images/tab_tout_bg.png);
  color: #090304;
  font-size: 16px;
  line-height: 21px;
  background-size: contain
}

.tout_content a:link, .tout_content a:visited {
  color: #0071a9;
  text-decoration: none
}

.tout_content a:active, .tout_content a:hover {
  color: #b95119;
  text-decoration: underline
}

.tout_content_quote {
  font-style: normal;
  font-weight: 600;
  color: #949494;
  font-size: 14px
}

.tout_spacer {
  width: 6px
}

.icon_quote {
  width: 50px;
  height: 50px;
  background-image: url(/media/images/icon_quote.png);
  margin-top: -5px;
  float: right
}

.button_116 a, .button_117 a {
  width: 116px;
  height: 34px;
  line-height: 34px;
  background-image: url(/media/images/button_01.png);
  text-align: center;
  outline: 0;
  cursor: pointer;
  font-weight: 700;
  display: block;
  text-decoration: none
}

.button_116 {
  height: 34px
}

.button_116 a {
  font-size: 16px;
  color: #626262
}

.button_116 a:link, .button_116 a:visited {
  color: #626262;
  text-decoration: none;
  background-position: 0 0
}

.button_116 a:active, .button_116 a:focus, .button_116 a:hover {
  color: #fff;
  text-decoration: none;
  background-position: 0 -34px
}

.button_117 {
  height: 34px
}

.button_117 a {
  font-size: 12px;
  color: #626262
}

.button_117 a:link, .button_117 a:visited {
  color: #626262;
  text-decoration: none;
  background-position: 0 0
}

.button_117 a:active, .button_117 a:focus, .button_117 a:hover {
  color: #fff;
  text-decoration: none;
  background-position: 0 -34px
}

.button_200 {
  height: 39px
}

.button_200 a {
  text-decoration: none;
  text-transform: uppercase;
  width: 200px;
  height: 39px;
  line-height: 39px;
  background-image: url(/media/images/button_200.png);
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  color: #626262;
  cursor: pointer;
  display: block;
  outline: 0
}

.button_200 a:link, .button_200 a:visited {
  color: #626262;
  text-decoration: none;
  background-position: 0 0
}

.button_200 a:active, .button_200 a:focus, .button_200 a:hover {
  color: #fff;
  text-decoration: none;
  background-position: 0 -39px
}

.css_buttontext_02 {
  height: 30px
}

.css_buttontext_02 a {
  text-decoration: none;
  width: 154px;
  height: 30px;
  line-height: 30px;
  background-image: url(/media/images/button_02.png);
  text-align: center;
  cursor: pointer;
  display: block;
  outline: 0
}

.css_buttontext_02 a:active, .css_buttontext_02 a:focus, .css_buttontext_02 a:hover {
  color: #fff;
  text-decoration: none;
  background-position: 0 -30px
}

.spacer_12 {
  height: 12px;
  line-height: 12px;
  font-size: 12px
}

.spacer_24 {
  height: 24px;
  line-height: 24px;
  font-size: 24px
}

#footer {
  height: 62px;
  max-width: 958px;
  padding: 20px 15px 165px
}

#interior_focus .cent, .event_block_inner {
  max-width: 980px
}

#interior_content h1, #interior_content h2, #interior_content h3, #interior_content h4, #interior_content h5, #interior_content h6, #interior_content p, #interior_focus .cent {
  padding-left: 2%;
  padding-right: 2%
}

.event_block_inner, .interiorcontent_block_inner {
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 15px
}

.menuitem {
  width: 107px;
  height: 114px;
  float: left;
  cursor: pointer;
  display: block;
  text-decoration: none
}

.menuitem_name {
  width: 107px;
  height: 35px
}

.menuitembar {
  background-color: #000;
  width: 107px;
  height: 6px;
  font-size: 6px;
  line-height: 6px
}

#faqs h3, #faqs h3.active {
  font-size: 18px!important
}

.menuitembar_on {
  height: 15px;
  background-color: #3a6f8f
}

.menuspacer {
  width: 12px;
  height: 114px;
  float: left
}

#interior_focus {
  height: 300px;
  background-position: top center
}

#interior_content, .sep_line2 {
  background-position: center center
}

#interior_content {
  min-height: 243px;
  width: 100%;
  background-color: #FFF;
  background-image: url(media/images/bg_contentwhite.gif);
  background-repeat: repeat-y
}

.event_block, .event_block_inner {
  min-height: 197px;
  background-color: transparent;
  box-sizing: border-box
}

.sep_line, .sep_line2 {
  background-repeat: repeat-x
}

.sep_line {
  height: 72px;
  background-image: url(/media/images/sep_line.gif)
}

.sep_line2 {
  height: 26px;
  background-image: url(/media/images/sep_line2.gif)
}

#l, #m, #s {
  height: 19px;
  background-image: url(/media/images/lang/txt_resize_sprite.png);
  background-repeat: no-repeat;
  cursor: pointer
}

.event_block {
  width: 100%
}

.event_block_left {
  box-sizing: border-box;
  width: 66.66666%;
  float: left;
  padding-right: 20px
}
.hasloc .event_block_left {
  float:left;
  margin-left: 2%;
  width:48%;
  padding-right: 0;
}

.event_block_right {
  box-sizing: border-box;
  width: 33.33333%;
  float: right;
  padding-left: 20px
}
.hasloc .event_block_right {
  width: 48%;
  margin-right: 2%;
  margin-top: 0;
}

.interiorcontent_intro {
  max-width: 960px;
  margin: 0 auto;
  min-height: 50px
}

.interiorcontent_block {
  box-sizing: border-box;
  width: 100%;
  min-height: 197px
}

.interiorcontent_block_inner {
  box-sizing: border-box;
  max-width: 980px;
  min-height: 197px
}

.interiorcontent_block_left {
  box-sizing: border-box;
  width: 66.66666%;
  float: left;
  padding-right: 20px
}

.interiorcontent_block_right {
  box-sizing: border-box;
  width: 33.33333%;
  float: right;
  padding-left: 20px
}

#l, #m, #s, .planbox {
  float: left
}

.form_field {
  width: 185px
}

.planbox {
  width: 300px;
  padding-right: 20px
}

#fontresizebox {
  width: 65px;
  height: 30x;
  float: right
}

#s {
  width: 19px;
  background-position: 0 0
}

#m {
  width: 21px;
  background-position: -19px 0
}

#l {
  width: 25px;
  background-position: -40px 0
}

#faqs {
  position: relative;
  padding: 0 140px 20px
}

#faqs h2 {
  margin: 12px 0 6px
}

#faqs h3 {
  cursor: pointer;
  padding: 0 0 0 18px;
  margin: 6px 0 0;
  background: url(/media/images/iconPlusMinus.gif) top left no-repeat
}

#faqs h3.active {
  color: #2fb5e9;
  background-position: 0 -167px
}

#faqs div {
  height: 0;
  position: relative;
  padding: 0 0 0 10px;
  margin: 6px 0 0 10px
}

#faqs div p {
  padding: 0;
  margin-bottom: 15px;
  position: relative
}

h3 .aboutHeader {
  color: #0071a9;
  font-size: 17px;
  font-weight: 700;
  line-height: 24px
}

h1, h2 {
  line-height: 30px
}

h1 {
  font-size: 26px
}

h2 {
  font-size: 20px
}

h3 {
  font-size: 19px!important
}

h4 {
  font-size: 9px;
  line-height: 10px;
  font-weight: lighter
}

.medicare_content, .medicare_title {
  display: block;
  font-size: 16px;
  line-height: 24px
}

.store_selected {
  color: #fff;
  text-decoration: none;
  background-position: 0 -30px
}

button {
  font-size: 14px
}

.ui-dialog-titlebar {
  display: none
}

.ui-dialog, .ui-dialog-content, .ui-widget-content {
  background: #FFF
}

.ui-dialog-buttonset button {
  display: block;
  float: right
}

.ui-dialog-buttonset button:first {
  float: left
}

.modal_title {
  color: #0071a9;
  font-size: 25px;
  line-height: 32px
}

body .css_buttontext_02 a.newstore, body .css_buttontext_02 a.store_selected {
  width: 154px;
  height: 30px;
  line-height: 30px;
  background-image: url(media/images/button_02.png);
  display: block;
  outline: 0;
  text-align: center;
  cursor: pointer
}

body .css_buttontext_02 a.newstore {
  text-decoration: none
}

body .css_buttontext_02 a.newstore:focus, body .css_buttontext_02 a.newstore:hover {
  color: #fff!important;
  text-decoration: none;
  background-position: 0 -30px!important
}

body .css_buttontext_02 a.newstore:active, body .css_buttontext_02 a.store_selected:active, body .css_buttontext_02 a.store_selected:focus, body .css_buttontext_02 a.store_selected:hover {
  color: #fff!important;
  background-position: 0 -30px;
  text-decoration: none
}

body .css_buttontext_02 a.store_selected {
  text-decoration: none;
  color: #fff!important
}

.clearfix {
  display: block;
  clear: both;
  width: 100%;
  height: 1px
}

.hours {
  margin: 0;
  list-style: none;
}
.hours .weekday {
  display: inline-block;
  width: 100px;
}

.mobile-only {
  display: none!important
}
.tablet-only {
  display: none!important
}

.navbar-toggle {
  position: absolute;
  top: 45px;
  right: 20px;
  background: #FFF;
  border: 1px solid #DDD;
  padding: 9px 10px;
  border-radius: 4px;
  cursor: pointer;
  outline: 0
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: #888
}

.navbar-toggle .icon-bar+.icon-bar {
  margin-top: 4px
}

.navbar-toggle:focus, .navbar-toggle:hover {
  background-color: #ddd
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  clip: rect(0, 0, 0, 0);
  border: 0
}

#menu_mobile li>a, a {
  position: relative
}

#menu_mobile {
  display: none;
  width: 100%
}

#menu_mobile ul {
  margin-bottom: 0;
  padding-left: 0;
  border-top: 1px solid #EEE;
  width: 100%
}

#menu_mobile li>a {
  color: #777;
  line-height: 18px;
  display: block;
  padding: 15px 20px;
  font-weight: 700;
  text-decoration: none
}

#menu_mobile li>a:hover {
  color: #333
}

.interior_focus_spacer {
  height: 233px;
  width: 100%
}

.ui-dialog-content p, .ui-widget-content p {
  outline: 0
}

.ui-widget-overlay {
  width: 100%!important
}

.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-draggable {
  left: 0!important;
  display: block!important;
  width: 100%!important;
  background: 0 0!important;
  border: none!important;
  z-index: 100
}

.ui-dialog-content.ui-widget-content {
  background: #FFF!important;
  border-radius: 12px!important;
  border: 1px solid #CCC!important;
  margin: 0 auto!important;
  max-width: 470px!important;
  min-height: 140px!important;
  height: auto!important;
  overflow: hidden!important
}

.vertical-scroller-skinny .makeScroll {
  width: 300px;
  height: 670px;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 15px 1%
}

#schedulebox, a {
  overflow: hidden
}

.vertical-scroller-skinny .makeScroll .dealerinfobox {
  box-sizing: border-box
}

.css_event_text {
  padding: 0 2%
}

.css_event_text .css_event_text, .css_event_text .css_plans_subtitle, .css_event_text h1, .css_event_text h2, .css_event_text h3, .css_event_text h4, .css_event_text h5, .css_event_text h6, .css_event_text p {
  padding-left: 0!important
}

.css_event_text ol, .css_event_text ul {
  margin-left: 30px;
  padding-left: 0
}

#interior_content h3.ui-accordion-header {
  padding-left: 35px!important
}

h3.no-bottom-margin {
  margin-bottom: 5px;
  -webkit-margin-after: -5px;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0
}

.main_title_top {
  font-size: 46px;
  line-height: 10px!important
}

.css_title_interior_main h2 {
  font-size: 30px;
  line-height: 30px
}

.css_event_text a {
  word-wrap: break-word
}

#schedulebox {
  background: url(/media/images/gradient.png) repeat-x #fff;
  box-sizing: border-box;
  box-shadow: 1px 1px 3px #222;
  max-width: 500px;
  border-radius: 15px;
  margin-bottom: 40px
}

#schedulebox h2 {
  padding: 0!important;
  margin-bottom: 0
}

#schedulebox .row {
  padding: 0 0 10px
}

#schedulebox .row:after {
  display: block
}

#schedulebox .rounded-corners {
  width: 100%;
  box-sizing: border-box
}

#schedulebox .two-col, .two-col {
  width: 50%;
  float: left;
  box-sizing: border-box;
  padding-right: 15px
}

.two-col input {
  width: 100%
}

.page-glossary .css_page_headline {
  background: #f8f8f8;
  padding: 8px;
  border: 1px solid #EEE;
  width: 100%;
  box-sizing: border-box;
  display: block;
  margin: 40px 0 -15px
}

iframe[name=google_conversion_frame] {
  position: absolute
}

#social-footer {
  float: left;
  height: 34px;
  margin-top: 10px;
  margin-left: 0
}

#footer-links {
  float: right;
  color: #626262!important
}

.nav ul {
  margin: 0;
  padding: 0
}

.ui-dialog-content input[type=text] {
  max-width: 100%!important;
  width: auto!important;
  box-sizing: border-box;
  margin-left: 0!important
}

.standard_width {
    display: block;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
.full_width {
    display: block;
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.nav_submenus .megamenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    z-index: 100;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    padding: 24px 10%;
    box-sizing: border-box;
}
.nav_submenus .megamenu.active {
    display: block;
}
.nav_submenus .megamenu li {
  position: relative;
}

#nav_primary .nav_menubar .toplevel {
  height: 62px;
}
#nav_primary .nav_menubar a[data-hover-target] {
  position: relative;
  display: inline-block;
}
#nav_primary .nav_menubar a[data-hover-target]:after {
  position: absolute;
  width: 100%;
  height: 4px;
  left: 0;
  content: '';
  background-color: #ffffff;
  border-radius: 2px;
  bottom: 0;
}
#nav_primary .nav_menubar a[data-hover-target]:hover:after,
#nav_primary .nav_menubar a[data-hover-target]:focus:after {
  background-color: #00a2e2;
}
#nav_primary .nav_menubar .megamenu ul {
  text-align: left;
}
#nav_primary .nav_menubar .megamenu > .full_width > ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
#nav_primary .nav_menubar .megamenu > .standard_width > ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#nav_primary .nav_menubar .megamenu ul li {
  display: inline-block;
  width: 240px;
  padding: 0 0 20px 0;
  display: block;
  width: auto;
}

#nav_primary .nav_menubar .megamenu ul li.state_header {
  text-transform: uppercase;
  color: #209ad1;
  width: 100% !important;
  grid-column: 1 / -1;
  padding-bottom: 0em;
  margin-bottom: 0.4em;
  text-decoration: underline;
  padding-left: 0.5em;
}
#nav_primary .nav_menubar .megamenu ul li.state_header:before {
    display: block;
    width: calc(100% - 0px);
    height: 1px;
    margin-left: 0px;
    background: #EEEEEE;
    content: ' ';
    margin: 0.3em 0 1em 0;
}
#nav_primary .nav_menubar .megamenu ul li.state_header:first-child:before {
  display: none;
}

#nav_primary .nav_menubar .megamenu .loc > a {
  font-size: 20px;
}
#nav_primary .nav_menubar .megamenu ul .event a {
    font-size: 15px;
}
#nav_primary .nav_menubar .megamenu ul a,
#nav_primary .nav_submenus .megamenu .event {
  text-align: left;
}
#nav_primary .nav_menubar .megamenu ul a {
  padding: 8px;
  text-align: left;
}
#nav_primary .nav_menubar .megamenu ul .loc {
  text-align: left;
  padding: 0;
}
#nav_primary .nav_submenus .megamenu .event {
  
}

#nav_primary .nav_submenus .megamenu .event .event_title,
#nav_primary .nav_submenus .megamenu .event .event_date {
  display: inline-block;
}
#nav_primary .nav_submenus .megamenu .event .event_title {
  font-weight: 400;
  margin-right: 0.35em;
}
#nav_primary .nav_submenus .megamenu .event .event_date {
  font-weight: 300;
  color: #888888;
  font-size: 80%;
}
#nav_primary .nav_submenus .megamenu .event:hover .event_title,
#nav_primary .nav_submenus .megamenu .event:focus .event_title {
  color: #0078c1;
}
#nav_primary .nav_submenus .megamenu .event:hover .event_date,
#nav_primary .nav_submenus .megamenu .event:focus .event_date {
  color: #AAAAAA;
}

#nav_primary ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
#nav_primary ul a {
    text-decoration: none;
    outline: none;
}
.nav_menubar ul a {
    color: var(--color-navlink);
    font-size: 20px;
    font-weight: 400;
    padding: 1em;
    display: inline-block;
    letter-spacing: -0.2px;
    line-height: 1.1;
}
#nav_primary ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
}
#nav_primary .nav_logo {
    background: #FFFFFF;
    padding: 8px 0;
}
#nav_primary .nav_logo img {
    width: 100%;
    height: auto;
    max-width: 220px;
}
#nav_primary .nav_menubar {
  position: relative;
  background: #FFFFFF;
  /* box-shadow: 0 0 2px rgba(0,0,0,0.2), 0 0 10px rgba(0,0,0,0.05); */
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
#nav_primary .nav_menubar .btn_icon {
  background: #FFFFFF;
  border: none;
  text-align: center;
  height: 50px;
  width: 50px;
  display: none;
  cursor: pointer;
}
#nav_primary .nav_menubar .btn_icon:hover svg {
  -webkit-transition: all .3s ease-in-out;
  -moz-transition:    all .3s ease-in-out;
  -o-transition:      all .3s ease-in-out;
  -ms-transition:     all .3s ease-in-out;
  transition:         all .3s ease-in-out;
}
#nav_primary .nav_menubar .btn_icon:hover svg,
#nav_primary .nav_menubar .btn_icon:focus svg {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  opacity: 0.75;
}
#nav_primary .nav_menubar .btn_icon.active {
  display: block;
}
.mobile_menu_open #nav_primary .nav_menubar .btn_icon[data-action="menu"] {
  display: none;
}
.mobile_menu_open #nav_primary .nav_menubar .btn_icon[data-action="close"] {
  display: block;
}

.hero,
.hero .slides {
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.hero {
    height: 40vh;
    background-color: #dcdde1;
    min-height: 420px;
}
.hero .slides {
    height: 100%;
}
.hero .slides .slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-size: auto 100%;
    background-position: top right;
    background-repeat: no-repeat;
}
.hero .slides .slide .col_text {
    max-width: 600px;
    padding-top: 90px;
}
.hero .slides .slide h1,
.hero .slides .slide h2,
.hero .slides .slide p {
    margin: 0;
    padding: 0;
}
.hero .slides .slide h1 {
    font-size: 50px;
    line-height: 100%;
}
.hero .slides .slide p {
    margin: 1em 0;
    line-height: 130%;
    font-size: 24px;
}

.mobile_menu {
    display: none;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    background: #FFFFFF;
    height: calc(100vh - 100px);
    width: 100%;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.mobile_menu_open .mobile_menu {
    display: block;
}
#nav_primary .mobile_menu ul li {
  display: block;
}

.cta_holder {
  background: #043a62;
  background: #043a62;
  color: #FFFFFF;
  padding-top: 20px;
  margin-top: -36px;
}
.cta_holder h2, .cta_holder p {
    color: #FFFFFF;
    padding-left: 25px;
    padding-right: 25px;
    margin: 0;
}
.cta_holder p {
  margin-bottom: 0.5em;
}
.cta_holder p:last-child {
    padding-bottom: 25px;
}
.cta_holder select {
  background: #809db2 url('/media/images/dropdown-arrow.png') no-repeat calc(100% - 7px) center;
  border: none;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 18px;
  padding: 0.4em;
  display: block;
  width: 100%;
  letter-spacing: 0.05em;
}
.cta_holder select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.cta_holder select::-ms-expand {
  display: none;
}

.cta_holder #scheduleform2 {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.cta_holder #scheduleform2 table {
  padding: 0 20px 20px 20px;
}
.cta_holder #scheduleform2 h2 {
  padding: 0;
  margin: 0 0 0.75em 0;
  color: #809db2;
}

.cta_holder #scheduleform2 label,
.cta_holder #scheduleform2 input[type="text"] {
  font-size: 14px;
}
.cta_holder #scheduleform2 input[type="text"] {
  background: #809db2;
  border: none;
  color: #FFFFFF;
  padding: 0.5em;
  margin: 0.2em 0 0.5em 0;
}

.btn_pill {
  border-radius: 1em;
  display: inline-block;
  width: 100%;
  padding: 0.5em 0.9em;
  position: relative;
  text-align: left;
  border: none;
  cursor: pointer;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition:    all .3s ease-in-out;
  -o-transition:      all .3s ease-in-out;
  -ms-transition:     all .3s ease-in-out;
  transition:         all .3s ease-in-out;
}
.btn_lightblue,
.btn_lightblue:active,
.btn_lightblue:visited {
  background: #5a97c2;
  color: #FFFFFF;
  margin-bottom: 0.25em;
}
.btn_lightblue:hover,
.btn_lightblue:focus {
  background: #90c7ee;
  color: #FFFFFF;
}
.cta_holder img {
  width: 100%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cta_holder img:last-child {
  margin-bottom: 0;
}

.hmd_table {
  display: table;
  width: 100%;
  margin-bottom: 1em;
  background: #FFFFFF;
  border: none;
}
.hmd_table thead tr {
  border-bottom: 2px solid #013963;
}
.hmd_table thead tr {
  font-size: 15px;
  font-weight: bold;
}
.hmd_table tr {
  font-size: 14px;
}
.hmd_table tbody tr:nth-child(even) {
  background: #d0dce5;
}
.hmd_table tr td {
  padding: 0.6em 1.5em;
}
.hmd_table .btn {
  text-transform: uppercase;
  width: auto;
  padding: 0.25em 1em 0.35em 1em;
  margin-bottom: 0;
}
.hmd_table .event_date {
  text-transform: uppercase;
}
.hmd_table .event_date [data-key="date"],
.hmd_table .event_date [data-key="month"] {
  line-height: 100%;
  display: block;
  text-align: center;
}
.hmd_table .event_date [data-key="date"] {
  font-size: 24px;
}
.hmd_table .event_date [data-key="month"] {
  
}

.event_content {
  border-bottom: 1px solid #d0dce5;
  padding-bottom: 2em;
  margin-bottom: 2em;
}
.event_content .blurb {
  font-weight: bold;
}

.faqs_holder {
  margin-top: 0px;
  margin-bottom: 20px;
}
.faqs_holder .accordion_cat_toggle {
  cursor: pointer;
  user-select: none;
  line-height: 120%;
  padding: 0.5em 0 1em 0;
  margin: 0;
}
.faq_nav_sticky {
  position: relative;
  z-index: 1;
}
.faq_nav_sticky .faq_nav {
  width: 100%;
  max-width: 230px;
  -webkit-transition: top .5s ease-in-out;
  -moz-transition:    top .5s ease-in-out;
  -o-transition:      top .5s ease-in-out;
  -ms-transition:     top .5s ease-in-out;
  transition:         top .5s ease-in-out;
}
.faq_nav,
.faq_nav li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  font-size: 18px;
  font-weight: bold;
}
.faq_nav li a {
  display: inline-block;
  padding: 0.3em 0;
  line-height: 120%;
}
.accordion_container h3 {
  font-size: 18px;
  letter-spacing: -0.3px;
  line-height: 1.5;
  padding: 15px 60px 15px 0;
  margin-top: 0;
  margin-bottom: 0;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition:    all .3s ease-in-out;
  -o-transition:      all .3s ease-in-out;
  -ms-transition:     all .3s ease-in-out;
  transition:         all .3s ease-in-out;
}
.faq_nav li a:hover,
.faq_nav li a:focus,
.accordion_container.active h3,
.accordion_container h3:hover {
  color: var(--color-link-hover);
}
.accordion_toggle {
  user-select: none;
  color: #4892c9;
}
.accordion_container {
  position: relative;
}
.accordion_container:after {
  content: ' ';
  display: block;
  position: absolute;
  top: 15px;
  right: 20px;
  color: #0f96e3;
  font-size: 20px;
  height: 30px;
  width: 40px;
  background: transparent url('/media/images/carat-down.webp') no-repeat center;
  pointer-events: none;
}
.accordion_container.active:after {
  background: transparent url('/media/images/carat-up.webp') no-repeat center;
}
.accordion_container .content {
  display: none;
  border-color: #dfe1e5;
  background-color: #f7fbfd;
  padding: 0 20px;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
  -moz-transition:    max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
  -o-transition:      max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
  -ms-transition:     max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
  transition:         max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
}
.accordion_container.active .content {
  max-height: 600px;
  padding: 20px;
  overflow-y: auto;
  -webkit-transition: max-height 1s ease-in-out, padding 0.5s ease-in-out;
  -moz-transition:    max-height 1s ease-in-out, padding 0.5s ease-in-out;
  -o-transition:      max-height 1s ease-in-out, padding 0.5s ease-in-out;
  -ms-transition:     max-height 1s ease-in-out, padding 0.5s ease-in-out;
  transition:         max-height 1s ease-in-out, padding 0.5s ease-in-out;
}
.faqs_container .accordion_container {
    border-top: 1px solid #dfe1e5;
}
.faqs_container .accordion_container:last-child {
    border-bottom: 1px solid #dfe1e5;
}
/* grid, 2 cols, left col 200px */
.faqs_holder {
  width: 100%;
  grid-gap: 20px;
}
.faqs_container {
  /* display: none; */
}
.faqs_container h1 {
  margin-top: 2em;
}
.faqs_container.active {
  display: block!important;
}
.faqs_holder .accordion_cat_toggle.active {
  color: #00aefd;
}

.form_zip {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}
.form_zip:after {
  content: ' ';
  display: block;
  clear: both;
}
.form_zip .label,
.form_zip input[type="text"],
.form_zip .btn {
  height: 36px;
  box-sizing: border-box;
  display: block;
  float: left;
}
.form_zip .label {
  width: auto;
  color: #001446;
  font-weight: bold;
  padding-right: 0.25em;
  font-size: 16px;
  letter-spacing: -0.2px;
  line-height: 34px;
}
.form_zip input[type="text"] {
  width: 100%;
  max-width: 200px;
  padding: 0.5em;
  border: none;
  border-radius: 0;
  margin: 0;
  border-radius: 0;
  background: #f2f3f4;
  outline: none;
}
.form_zip .btn {
  padding-left: 0.5em;
  padding-right: 0.5em;
  line-height: 34px;
  vertical-align: top;
  margin-bottom: 0;
}

.icon.inline_icon {
  display: inline-block;
  height: 2em;
  line-height: 1em;
  width: auto;
  vertical-align: text-bottom;
  margin-top: -0.35em;
  margin-bottom: -0.45em;
}

@media screen and (min-width:1001px) {
  .non-tablet {
    display: block!important;
  }
  .non-tablet.row {
    display: grid!important;
  }
  .tablet-only {
    display: none!important;
  }

  .faqs_containers {
    padding-left: 240px;
  }
  .faq_fixed .faq_nav_sticky .faq_nav {
    position: fixed;
    top: 40px;
  }
}
@media screen and (max-width:1000px) {
  .non-tablet {
    display: none!important;
  }
  .tablet-only {
    display: block!important;
  }
  .tablet-only.row {
    display: grid!important;
  }
  .touts {
    margin-bottom: -40px;
  }
  .touts > .col {
    background: #E8E8E8;
    margin-bottom: 20px;
    padding-top: 10px!important;
  }

  #nav_primary .nav_menubar .btn_icon {
    position: absolute;
    top: -65px;
    right: 10px;
  }
  .row > div > h1,
  .faq_nav,
  .faqs_containers {
    padding-left: 20px;
    padding-right: 20px;
  }
  main .row > div,
  main .row.row_2_1_col > div {
    padding-left: 20px;
    padding-right: 20px;
  }
  main .row > div > h1,
  main .row.row_2_1_col > div > h1 {
    padding-left: 0;
    padding-right: 0;
  }
  #nav_primary .nav_menubar {
    height: 0px;
    position: absolute;
    top: 105px;
    left: 0px;
    right: 0px;
  }
  footer .row,
  main .row {
    display: block;
  }
  .event_block_left, .event_block_right, .interiorcontent_block_left, .interiorcontent_block_right {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-left: 20px;
    padding-right: 20px;
    border-top: 1px solid #f4f4f4;
    padding-top: 15px
  }
  #interior_focus>div>div:first-child, .interior_focus_spacer {
    height: 80px!important
  }
  #interior_focus {
    height: 150px;
    background-size: cover
  }
  #interior_focus > .cent {
    max-height:150px;
  }
  #home_touts {
    padding: 0 10px
  }
  #home_touts>.tout {
    margin-top: 10px
  }
  .tout_header {
    padding-top: 10px
  }
  .tout_content {
    background-image: none;
    padding-bottom: 20px;
    border-left: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    border-bottom-right-radius: 14px;
    border-bottom-left-radius: 14px
  }
  #logo_right {
    height: 64px;
    margin-top: -24px;
    padding-right: 2%;
    width: 100%;
    clear: both
  }
  #menu_left {
    width: 100%;
    box-sizing: border-box;
    padding: 0 .5%
  }
  #menu_left>a,
  #menu_left>a.medicare-options-seminars {
    width: 32.3%;
    margin: 0 .5%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    box-sizing: border-box;
    background: #ecedee;
    background: -moz-linear-gradient(top, #ecedee 85%, #bbb 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, #ecedee), color-stop(100%, #bbb));
    background: -webkit-linear-gradient(top, #ecedee 85%, #bbb 100%);
    background: -o-linear-gradient(top, #ecedee 85%, #bbb 100%);
    background: -ms-linear-gradient(top, #ecedee 85%, #bbb 100%);
    background: linear-gradient(to bottom, #ecedee 85%, #bbb 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ecedee', endColorstr='#bbbbbb', GradientType=0)
  }
  #menu_left>a:hover {
    background: #ddd;
    background: -moz-linear-gradient(top, #ddd 85%, #aaa 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, #ecedee), color-stop(100%, #aaa));
    background: -webkit-linear-gradient(top, #ddd 85%, #aaa 100%);
    background: -o-linear-gradient(top, #ddd 85%, #aaa 100%);
    background: -ms-linear-gradient(top, #ddd 85%, #aaa 100%);
    background: linear-gradient(to bottom, #ddd 85%, #aaa 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#aaaaaa', GradientType=0)
  }
  #bluemenucap_left, #bluemenucap_right, .menuspacer_6 {
    display: none
  }
  #menu_right {
    width: 100%;
    background: #0071a9
  }
  .res-block {
    width: 100%!important;
    display: block!important;
    float: none!important;
    margin-left: 0!important;
    margin-right: 0!important
  }
  .css_event_location_title h2 {
    margin-bottom: 8px
  }
  .vertical-scroller-skinny .makeScroll {
    width: auto;
    height: 370px;
    background: #f8f8f8;
    border: 1px solid #e9e9e9
  }
  .vertical-scroller-skinny .makeScroll .dealerinfobox {
    width: 33%;
    float: left;
    padding: 10px
  }
  #map_canvas {
    height: 500px!important
  }
  #menu_left a:link, #menu_left a:visited {
    color: #626262
  }
  .bigintro {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero {
    padding-left: 10%;
    padding-right: 10%;
    height: auto;
  }
  .hero .slides .slide {
    background-image: none!important;
    text-align: center;
  }
  .hero .slides .slide .col_text {
    max-width: none;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .hero .slides .slide h1 {
    font-size: 36px;
  }
  .non-desktop {
    display: none!important;
  }
  .non-tablet {
    display: none!important;
  }
  .tablet-only {
    display: block!important;
  }
  .cta_holder {
    margin-top: 0;
  }
}

@media screen and (max-width:900px) {
  #bluebox {
    width: 90%;
    margin: 0 auto;
    float: none
  }
}

@media screen and (max-width:720px) {
  .card {
    display: block;
  }
  .card .col_img {
    display: block;
    text-align: center;
  }
  .vertical-scroller-skinny .makeScroll .dealerinfobox {
    width: 50%
  }
  .hasloc .event_block_right, .hasloc .event_block_left {
    float: none;
    margin: 0;
    width: 100%;
  }
  .hasloc .event_block_left #map_canvas {
    height: 300px !important;
  }
  .hasloc .event_block_right {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width:768px) {
  #footer {
    height: auto;
    padding: 30px 15px 0
  }
  #footer:after {
    display: block;
    clear: both;
    content: " "
  }
  #footer-links, #social-footer {
    width: 100%!important;
    display: block!important;
    float: none!important;
    margin-left: 0!important;
    margin-right: 0!important;
    text-align: center;
    height: auto!important;
    line-height: 15px
  }
  #footer-links {
    line-height: 28px!important;
    padding-top: 5px
  }
  .css_footer_disclaimer>div {
    height: 0!important
  }
  .css_footer_disclaimer>div>.medicare_CPA>p {
    margin-top: 45px
  }
  footer .css_footer_disclaimer>div {
    height: auto!important
  }
  #map_canvas {
    height: 400px!important
  }
  .main_title_top {
    font-size: 32px!important
  }
}

@media screen and (max-width:620px) {
  #logo_right a:link, #logo_right a:visited {
    font-size: 18px;
    padding-left: 16px
  }
}

@media screen and (min-width:540px) {
  #menu_left {
    min-width: 520px;
  }
  #menu_mobile {
    display: none!important
  }
}

@media screen and (max-width:540px) {
  #bluebox, #menu_left, #menu_right {
    float: none
  }
  #bluebox, #logo_right, #menu, #menu_left {
    height: auto
  }
  .index #home_focus {
    padding-top: 0
  }
  .main_title_top {
    font-size: 26px!important;
    line-height: 26px!important;
    margin-top: 10px
  }
  .cent h1 {
    font-size: 32px!important;
    text-align: center
  }
  body .row > .col1,
  body .row > .col1 {
    width: 100%;
    float: none;
  }
  body .row > .col1 {
    padding-bottom: 20px;
  }
  body .row > .col2 {
    margin-bottom: 20px 0;
  }
  #bluebox h1 {
    line-height: 30px!important;
    text-align: left
  }
  .mobile-only {
    display: block!important
  }
  .non-mobile {
    display: none!important
  }
  #logo_right {
    width: auto;
    float: none;
    padding-right: 0
  }
  #logo_right:after, #logo_right>a:after, #menu_left:after {
    display: block;
    clear: both;
    content: " "
  }
  .nav {
    margin-left: 0
  }
  #logo_right a, #menu_left>a:link, #menu_left>a:visited {
    display: none!important
  }
  #menu_left>a:hover {
    color: #b95119
  }
  #menu_right {
    display: none;
    clear: both
  }
  #bluebox {
    width: 98%;
    margin: 200px 1% 0
  }
  #bluebox_spaceleft {
    height: 0
  }
  .bluebox_item_title {
    width: auto
  }
  #bluebox_content>div {
    display: block;
    width: auto
  }
  #bluebox:after {
    clear: both;
    display: block;
    content: " "
  }
  #home_focus, #home_focus .cent {
    height: auto!important;
    background-size: auto 240px;
    border-top: 6px solid #0071a9
  }
  .vertical-scroller-skinny .makeScroll .dealerinfobox {
    width: 100%
  }
  .vertical-scroller-skinny .makeScroll {
    height: 250px
  }
  #map_canvas {
    height: 300px!important
  }
  #interior_content h3.ui-accordion-header {
    font-size: 16px!important
  }
  #schedulebox .row {
    padding-bottom: 0
  }
  #schedulebox .two-col, .two-col {
    width: 100%;
    padding-bottom: 10px
  }
}

@media screen and (max-width:480px) {
  .button_116 {
    height: auto!important;
    width: 100%!important;
    float: none!important;
    box-sizing: border-box
  }
  #dialog-confirm-directions-cancel, #dialog-confirm-directions-map, #dialog-confirm-directions-submit {
    display: block!important;
    width: 100%!important;
    margin: 4px 0!important;
    float: none!important;
    height: 40px!important;
    line-height: 40px!important;
    box-sizing: border-box!important;
    border-radius: 8px!important;
    font-size: 16px!important
  }
  #dialog-confirm-directions-cancel {
    background: #e7e8e8!important;
    border: 1px solid #DDD
  }
  #dialog-confirm-directions-cancel:hover {
    background: #0072a9!important
  }
  #dialog-confirm-directions-map, #dialog-confirm-directions-submit {
    background: #0051e8!important
  }
  #dialog-confirm-directions-map:hover, #dialog-confirm-directions-submit:hover {
    background: #d54011!important
  }
}

@media screen and (max-width:400px) {
  #logo_bar {
    height: 80px
  }
  #logo_bar_inner {
    height: 100px
  }
  #logo_left {
    width: 220px;
    background-size: cover;
    background-position: bottom left;
    height: 85px;
    margin-top: 0
  }
  .navbar-toggle {
    top: 30px
  }
}

#footer_lang_container {
  text-align: center;
  background-color: #EEE
}

#footer-languages {
  padding: 12px;
  max-width: 958px;
  margin: -20px auto 0
}

#footer-language-menu {
  display: block;
  vertical-align: top;
  width: auto;
  box-sizing: border-box;
  margin: 0 auto
}

#footer_lang_container .nav-about ul {
  display: inline
}

#footer_lang_container ul:first-child {
  margin-bottom: 6px;
  margin-top: 2px;
  margin-left: 0;
  padding-left: 0
}

dl, ol, ul {
  line-height: 1.5em
}

.interiorcontent_block ol, ul {
  list-style: inherit
}

#footer-languages div.icon-languageselector-3 {
  padding-left: 12px;
  padding-right: 12px
}

.icon-languageselector-3 {
  background-image: url(media/images/LanguageIcon22px.png);
  display: inline-block;
  height: 31px;
  background-position: 0 100%;
  background-repeat: no-repeat
}

#footer-language-menu ul li {
  border-left: 1px solid #000;
  padding: 0 12px
}

#footer-language-menu ul li:first-child {
  border-left: none
}

#footer_lang_container ul li {
  display: inline-block
}

#footer_lang_container a {
  color: #495359;
  text-decoration: none;
  text-transform: uppercase
}

.link, a {
  cursor: pointer
}
