@charset "UTF-8";
html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}

/*
 * Create a centered isosceles triangle.
 */
/*------------------------------------------------------------------------------
CLEAR THE DECKS
------------------------------------------------------------------------------ */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  text-decoration: none;
}

body {
  line-height: 1;
  /* set line-height multiplier to be used with font size*/
}

ol, ul {
  list-style: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
}

q {
  quotes: "“" "”" "‘" "’";
}

blockquote:before, q:before {
  content: open-quote;
}

blockquote:after, q:after {
  content: close-quote;
}

ol li {
  list-style-type: decimal;
  margin-left: 25px;
}

ul li {
  list-style-type: disc;
  margin-left: 20px;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

div, aside, nav, header, section, footer {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*--------------
Instead of floats (doesn't collapse the parent like floats)
display: inline-block;
margin-left: -4px; or PREFERRED: set parent to font-size: 0 or display: inline-table
vertical-align: top;
----------------*/
/*------------------------------------------------------------------------------
SITE COLORS FOR REFERENCE
------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------
FONTS
----------------------------------------------------------------------*/
* {
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p, li, td, label {
  font-family: "adobe-garamond-pro", Georgia, serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "adobe-garamond-pro", Georgia, serif;
  font-weight: 400;
}

/*------------------------------------------------------------------------------
Basic Highsite Styles and Variables
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
HIGHSITE HTML PREFERENCES
------------------------------------------------------------------------------*/
* {
  font-family: "adobe-garamond-pro", Georgia, serif;
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: .3em;
  margin-top: .3em;
}

h2, h3 {
  margin-top: .8em;
}

h1 {
  margin-top: 0;
}

/* h1, h2, h3 { letter-spacing: -.05em; } */
h1, h2 {
  color: #444;
}

h3, h4, h5, h6 {
  word-spacing: 0.25px;
  color: #c67e26;
}

h1, h2, h3 {
  line-height: 1.10em;
  letter-spacing: -.02em;
}

h4, h5, h6 {
  line-height: 1.25em;
}

p, a, li, td, label, address {
  line-height: 1.25em;
  color: #444;
}

/* initial sizes—use /xm_client/editor.css for special TinyMCE editor styling*/
h1 {
  font-size: 3.0em;
}

h2 {
  font-size: 2.2em;
}

h3 {
  font-size: 1.8em;
}

h4 {
  font-size: 1.6em;
}

h5 {
  font-size: 1.4em;
}

h6 {
  font-size: 1.2em;
}

p, td, li, address {
  font-size: 100%;
}

a, i, em, b, strong, span {
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
}

a:link, a:visited {
  color: #c67e26;
}
a:hover {
  color: #aaa;
}
a:visited {
  color: #d5ad7c;
}

b, strong {
  font-weight: 700;
}

.sans {
  font-family: "proxima-nova";
}

.sansbold {
  font-family: "proxima-nova";
  font-weight: 700;
}

span.codedirection {
  unicode-bidi: bidi-override;
  direction: rtl;
}

/*------------------------------------------------------------------------------
FOOTER
--------------------------------------------------------------------------------*/
html {
  position: relative;
  min-height: 100%;
}

body {
  margin: 0 0 340px 0;
  /* bottom = footer height */
}

footer {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 340px;
  width: 100%;
  background-color: #444;
  /*background: $footer-background; url(/xm_client/images/footer-trade-bar.jpg) repeat-x top */
}
footer .content {
  position: relative;
  margin: 20px auto;
  max-width: 1200px;
}
footer .content div {
  float: left;
  margin: 0 20px 0 20px;
}
footer .content p, footer .content h4, footer .content address {
  color: #fff;
}
footer .content p, footer .content address {
  display: inline;
}
footer .content address {
  font-style: normal;
}
footer .content p, footer .content address {
  font-size: 1.2em;
}
footer .content p.copyright {
  font-size: 1.0em;
}
@media screen and (max-width: 768px) {
  footer .content .menu2, footer .content .copyright, footer .content p, footer .content h4 {
    display: none;
  }
  footer .content div:first-child p {
    display: block;
  }
}

/* Use this to set the styling in the TinyMCE footer editor to match the actual footer */
/*------------------------------------------------------------------------------
SITE-WIDE BODY & DIVS
------------------------------------------------------------------------------*/
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  /* remove if adding clearfix for the absolutely positioned element */
}
.container::after {
  clear: both;
  content: "";
  display: table;
}

.inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.inner::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 10px;
  }
}

/* Add this class to container and remove overflow:auto
   for absolutely positioned element
.cf:before, .cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
*/
.utility {
  float: right;
  width: 800px;
  height: 30px;
  margin: 5px 0 0 0;
}
.utility ul {
  float: left;
  margin: 0 0 0 100px;
}
.utility li {
  float: left;
  list-style: none;
  padding: 9px 20px 0 0;
}
.utility input {
  width: 200px;
}
.utility .search {
  margin: 10px 0 0 0;
  width: 200px;
  height: 15px;
  border: 1px dotted;
}
.utility a img.startsearch {
  vertical-align: -5px;
}

span.codedirection {
  unicode-bidi: bidi-override;
  direction: rtl;
}

/*------------- for lists ----------------------*/
.somecontentdiv ol li {
  list-style-type: decimal;
  margin-left: 25px;
}

.somecontentdiv ul li {
  list-style-type: disc;
  margin-left: 20px;
}

/*------------------- FOR SITE SPECIFIC CSS OVERRIDE OF CMS XM_DIALOG.CSS AND FORM.CSS---------- */
/*--------------------------- custom colors for buttons if needed----------------------------------- */
a.button,
a.small_button,
input.button,
input.small_button,
button {
  background: #c67e26;
  padding: 12px;
  margin-bottom: .5em;
  display: inline-block;
  border-radius: 4px;
  cursor: pointer;
  /* Text */
  font-family: "proxima-nova";
  font-weight: 300;
  color: white;
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
  /* Font smoothing
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;*/
}
a.button:disabled,
a.small_button:disabled,
input.button:disabled,
input.small_button:disabled,
button:disabled {
  background: #444;
  cursor: default;
}

.button:link,
.button:visited,
.small_button:link,
.small_button:visited {
  color: #fff;
}

a.button:hover, a.small_button:hover, input.button:hover, input.small_button:hover {
  background: #555;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #555;
}

/* -------- for customizing fonts -------*/
.label, p.wrap, .blabel, p.wrap span {
  font-size: 1em;
  font-family: 'adobe-garamond-pro', Georgia, serif;
  font-weight: 300;
  padding: 0  0 5px 0;
}
@media (max-width: 320) {
  .label, p.wrap, .blabel, p.wrap span {
    font-size: .8em;
  }
}

label::first-letter {
  text-transform: capitalize;
}

.blabel {
  font-family: 'adobe-garamond-pro', Georgia, serif;
  font-weight: 700;
}

input[type="text"], input[type="password"], input[type="email"], input[type="tel"], textarea {
  -webkit-border-radius: 4px;
  border-radius: 4px;
}

p.wrap.textonly {
  margin-top: 30px;
}

p.wrap.textonly:first-of-type {
  margin-top: 0;
}

p.wrap.textonly span {
  text-transform: uppercase;
  color: #c67e26;
}

@media screen and (max-width: 768px) {
  textarea {
    max-width: 100%;
  }
}
#msgs {
  width: 100%;
  clear: both;
  margin-bottom: 10px;
}

.error_label, p.success {
  background: none;
}

.form form p.submit_button_row input.button {
  height: 42px;
}

#public_form p.wrap input.button {
  height: 42px;
}

p.wrap input.counter {
  width: 50px;
  border: none;
}

.form #msgs p.success, div#msgs p.success {
  font-family: 'adobe-garamond-pro', Georgia, serif;
  font-weight: 300;
}

p.success {
  padding: 3px 0 4px 29px;
  color: #2B9A00;
  background: url(/images/success-flat.png) no-repeat 0px 0px;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  background: #fff;
  box-shadow: 0px 0px 6px 2px #CE8F43;
}

.home nav {
  min-height: 3.125rem;
  margin-top: 0;
}
.home nav div.sub_logo {
  display: none;
}
.home nav #menuh {
  margin-top: 0px;
}
.home nav #menuh ul {
  top: 47px;
}
.home section:nth-of-type(odd) {
  background: #F1EEEA;
}
.home h1 {
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.625rem;
  letter-spacing: -.02em;
  text-align: center;
}
.home h1::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 1200px) {
  .home h1 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 430px) {
  .home h1 {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 375px) {
  .home h1 {
    font-size: 2rem;
  }
}
.home h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.home .hero {
  position: relative;
}
.home .hero .identity {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  z-index: 2;
  padding: 10px 0 0 20px;
  font-size: 1.08333rem;
}
@media screen and (max-width: 768px) {
  .home .hero .identity {
    position: relative;
  }
}
.home .hero .identity .inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.home .hero .identity .inner::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 768px) {
  .home .hero .identity .inner {
    padding: 10px;
  }
}
.home .hero .identity .inner p.tagline {
  font-size: 1.5rem;
}
@media screen and (max-width: 430px) {
  .home .hero .identity .inner p.tagline {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 375px) {
  .home .hero .identity .inner p.tagline {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 320px) {
  .home .hero .identity .inner p.tagline {
    font-size: 1.0625rem;
  }
}
.home .hero .identity .inner div {
  float: left;
  display: block;
  margin-right: 2.85714%;
  width: 48.57143%;
}
.home .hero .identity .inner div:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .home .hero .identity .inner div {
    float: left;
    display: block;
    margin-right: 4.34783%;
    width: 100%;
  }
  .home .hero .identity .inner div:last-child {
    margin-right: 0;
  }
}
.home .hero .identity .inner div:first-child .logo {
  left: 0;
  bottom: 30px;
  position: absolute;
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .home .hero .identity .inner div:first-child .logo {
    position: relative;
    bottom: auto;
    max-width: 100%;
  }
}
.home .hero .identity .inner div:last-child {
  position: relative;
  top: 0;
}
.home .hero .identity .inner div:last-child img {
  float: left;
}
.home .hero .identity .inner div:last-child h2 {
  margin: 0;
  font-size: 3.125rem;
}
@media screen and (max-width: 1200px) {
  .home .hero .identity .inner div:last-child h2 {
    font-size: 2.25rem;
  }
}
.home .hero .identity .inner div:last-child h3 {
  margin: 0;
  font-size: 1.5rem;
}
.home .hero .identity .inner div:last-child h4 {
  margin: 20px 0 0 0;
  font-size: 2.25rem;
  font-style: italic;
}
.home .hero .identity .inner div:first-child p:nth-child(2n) {
  display: none;
}
@media screen and (max-width: 768px) {
  .home .hero .identity .inner div:first-child p:nth-child(2n) {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .home .hero .identity .inner div:last-child {
    display: none;
  }
}
.home .hero #slick-container {
  background: #c67e26;
}
.home .hero #slick-container li {
  margin-left: 0;
}
.home .hero #slick-container li img {
  max-width: 100%;
}
.home .hero #slick-container li .slider-text {
  display: none;
}
.home .hero #slick-container .slick-dots {
  text-align: left;
  margin-left: 20px;
  bottom: -36px;
}
.home .hero #slick-container .slick-dots li button:before {
  font-size: 18px;
  color: #c67e26;
}
.home .badge {
  display: block;
  position: fixed;
  right: -1.25rem;
  top: 18rem;
  z-index: 5;
  width: 17.5rem;
  height: 18.5rem;
  padding: 3.125rem 1.5625rem;
  background: url("images/badge.png") no-repeat center top;
}
@media screen and (max-width: 768px) {
  .home .badge {
    display: none;
  }
}
.home .badge a {
  color: white;
  display: block;
  text-align: center;
  font-size: 2.6rem;
  margin-left: 31px;
  margin-top: 6px;
  line-height: 2.5rem;
}
.home .badge a:last-of-type {
  margin-bottom: 0rem;
}
.home .caskets .inner, .home .urns .inner, .home .donate-n-plan .inner {
  padding: 1.875rem 0 4.375rem;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
}
.home .caskets .inner::after, .home .urns .inner::after, .home .donate-n-plan .inner::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 1200px) {
  .home .caskets .inner, .home .urns .inner, .home .donate-n-plan .inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.home .caskets .inner > div, .home .urns .inner > div, .home .donate-n-plan .inner > div {
  float: left;
  display: block;
  margin-right: 2.85714%;
  width: 48.57143%;
}
.home .caskets .inner > div:last-child, .home .urns .inner > div:last-child, .home .donate-n-plan .inner > div:last-child {
  margin-right: 0;
}
@media screen and (max-width: 480px) {
  .home .caskets .inner > div, .home .urns .inner > div, .home .donate-n-plan .inner > div {
    float: left;
    display: block;
    margin-right: 9.09091%;
    width: 100%;
  }
  .home .caskets .inner > div:last-child, .home .urns .inner > div:last-child, .home .donate-n-plan .inner > div:last-child {
    margin-right: 0;
  }
}
.home .caskets .inner > div img, .home .urns .inner > div img, .home .donate-n-plan .inner > div img {
  max-width: 100%;
  height: auto;
}
.home .caskets .inner > div h2, .home .urns .inner > div h2, .home .donate-n-plan .inner > div h2 {
  text-align: center;
}
.home .caskets .inner > div .button, .home .urns .inner > div .button, .home .donate-n-plan .inner > div .button {
  margin: 0 auto;
  display: table;
}
.home .caskets .inner p, .home .urns .inner p, .home .donate-n-plan .inner p {
  font-size: 1.3125rem;
  line-height: 1.5em;
}
.home .caskets div:last-child p, .home .caskets div:last-child li {
  font-size: 1.3125rem;
  line-height: 1.5em;
}
.home .caskets p:first-child::first-letter, .home .urns p:first-child::first-letter {
  font-size: 2.91667rem;
  color: #c67e26;
}
.home .features p {
  font-size: 1.2em;
  line-height: 1.4em;
  color: #444;
}
.home .features .feature-list .feature {
  float: left;
  display: block;
  margin-right: 2.85714%;
  width: 22.85714%;
}
.home .features .feature-list .feature:last-child {
  margin-right: 0;
}
.home .features .feature-list .feature:nth-child(4) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .home .features .feature-list .feature {
    float: left;
    display: block;
    margin-right: 4.34783%;
    width: 47.82609%;
  }
  .home .features .feature-list .feature:last-child {
    margin-right: 0;
  }
  .home .features .feature-list .feature:nth-child(2) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .home .features .feature-list .feature {
    margin-right: 0;
    float: left;
    display: block;
    margin-right: 9.09091%;
    width: 100%;
  }
  .home .features .feature-list .feature:last-child {
    margin-right: 0;
  }
}
.home .features .feature-list .feature img {
  overflow: hidden;
  height: 225px;
  max-height: 100%;
  max-width: 100%;
}
.home #four-ways, .home .products, .home .features {
  text-align: center;
  padding: 10px 0 30px 0;
}
.home #four-ways table, .home .products table, .home .features table {
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}
.home #four-ways table td img, .home .products table td img, .home .features table td img {
  max-width: 100%;
  height: auto !important;
  display: block;
  margin: 0 auto;
}
.home #four-ways .small-wrap {
  font-size: 1.2rem;
  margin-top: -4px;
  margin-bottom: 10px;
}
.home #four-ways p {
  font-size: 1.625em;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 0;
  margin-top: 6px;
  line-height: 1.2em;
}
@media screen and (max-width: 480px) {
  .home #four-ways p {
    font-size: 1.3em;
  }
}
.home #four-ways form p {
  margin: 0;
}
.home #four-ways #call-me input {
  padding: 0 15px;
  height: 45px;
  font-size: 0.69231em;
  border: none;
  /* This placeholder styling cannot share a block between the
   * various vendors. The selectors confuse the other browsers
   * ( at Chrome is confused ).
   */
}
.home #four-ways #call-me input::-webkit-input-placeholder {
  line-height: 28px;
}
.home #four-ways #call-me input::-moz-placeholder {
  /* Firefox 19+ */
  line-height: 28px;
}
.home #four-ways #call-me input:-ms-input-placeholder {
  line-height: 28px;
}
.home #four-ways #call-me input:-moz-placeholder {
  /* Firefox 18- */
  line-height: 28px;
}
.home #four-ways #call-me span {
  font-size: .8em;
  margin: 20px 0 5px 0;
  display: block;
}
.home #four-ways #call-me textarea {
  border: none;
}
.home #four-ways #call-me input.button {
  padding: 12px;
  width: 15%;
  border-radius: 5px;
  text-transform: uppercase;
  font-family: Verdana, sans-serif;
  font-size: 1.23077em;
  margin-top: 15px;
}
@media screen and (max-width: 480px) {
  .home #four-ways #call-me input.button {
    width: 50%;
  }
}
.home #four-ways #call-me p.whycall {
  display: none;
}
.home #four-ways .inner h3, .home .features .inner h3 {
  margin-bottom: .6em;
}

.button, button, .small_button {
  width: 65%;
  padding: 12px;
  margin-bottom: .5em;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .button, button, .small_button {
    max-width: 300px;
  }
}

.top-level-cat p {
  font-size: 1.2em;
  line-height: 1.3em;
  margin-bottom: 1.1em;
}
.top-level-cat nav {
  position: absolute;
  top: 0;
  background-color: #c67e26;
}
.top-level-cat nav #menuh ul {
  background-color: #c67e26;
}
.top-level-cat .hero {
  min-height: 600px;
  background-size: cover;
  background-position: center;
  margin-top: 0;
  -webkit-box-align: center;
  -moz-box-align: center;
  box-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.top-level-cat .hero img, .top-level-cat .hero p:first-child {
  display: none;
}
.top-level-cat .hero h1 {
  color: white;
  font-size: 6.5rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.top-level-cat .hero p {
  font-size: 1.1em;
  line-height: 1.3em;
}
.top-level-cat .top-thumbnails {
  height: auto;
  width: 100%;
  background-color: #F1EEEA;
  padding: 12px 0 6px 0;
}
.top-level-cat .top-thumbnails table {
  border-collapse: separate;
  border-spacing: 18px;
  margin: 0 auto;
}
.top-level-cat .top-thumbnails table td {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-level-cat .top-thumbnails table td {
    float: left;
    display: block;
    margin-right: 4.34783%;
    width: 47.82609%;
  }
  .top-level-cat .top-thumbnails table td:last-child {
    margin-right: 0;
  }
  .top-level-cat .top-thumbnails table td:nth-child(2n) {
    margin-right: 0;
  }
  .top-level-cat .top-thumbnails table td:nth-child(2n+1) {
    clear: left;
  }
}
@media screen and (max-width: 480px) {
  .top-level-cat .top-thumbnails table td {
    float: left;
    display: block;
    margin-right: 9.09091%;
    width: 100%;
    margin-right: 0;
  }
  .top-level-cat .top-thumbnails table td:last-child {
    margin-right: 0;
  }
}
.top-level-cat .top-thumbnails table td p {
  font-size: 1.4em;
  margin: 0;
  padding: 0;
}
.top-level-cat .top-description {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 35px;
  max-width: 685.71429px;
}
.top-level-cat .top-description::after {
  clear: both;
  content: "";
  display: table;
}
.top-level-cat .top-description aside {
  position: absolute;
  max-width: 220px;
  text-align: center;
  margin-top: 30px;
  color: #c67e26;
  top: 0;
  right: -240px;
}
@media screen and (max-width: 1120px) {
  .top-level-cat .top-description aside {
    float: right;
    position: relative;
    right: 0;
  }
}
@media screen and (max-width: 480px) {
  .top-level-cat .top-description aside {
    display: none;
  }
}
.top-level-cat .top-description aside p {
  color: inherit;
}
.top-level-cat .products {
  background-color: #F1EEEA;
  padding-bottom: 200px;
  text-align: center;
}
.top-level-cat .products h3 {
  margin: 20px 0 10px 0;
  font-size: 3rem;
}
.top-level-cat .products .right_items, .top-level-cat .products .left_items {
  display: inline-block;
  vertical-align: top;
}
.top-level-cat .products .left_items {
  margin-right: 20px;
}
.top-level-cat .products .right_items {
  margin-left: 20px;
}
.top-level-cat .products div.clear {
  display: block;
  width: 100%;
}
.top-level-cat .products .right_items > div, .top-level-cat .products .left_items > div {
  width: 380px;
  cwvertical-align: top;
}
@media (max-width: 360px) {
  .top-level-cat .products .right_items > div, .top-level-cat .products .left_items > div {
    width: 100%;
  }
}
.top-level-cat .products img {
  display: block;
  margin: 0 auto 10px;
  max-width: 100%;
  height: auto;
}
.top-level-cat .products p a {
  font-size: 1.125rem;
  line-height: 1.1em;
}
.top-level-cat .products ul {
  float: right;
}
.top-level-cat .products ul li {
  list-style: none;
  float: left;
  margin: 0;
  margin-left: 3px;
}

.top-level-cat.Caskets .products .bottom_items:last-of-type p a {
  font-size: 1.4em;
}

.detail section {
  padding: 0 3%;
}
.detail .product {
  background: #F1EEEA;
  padding-top: 10px;
  padding-bottom: 20px;
}
.detail .product .images {
  float: left;
  display: block;
  margin-right: 2.85714%;
  width: 65.71429%;
  margin-bottom: 24px;
}
.detail .product .images:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .detail .product .images {
    float: left;
    display: block;
    margin-right: 4.34783%;
    width: 100%;
  }
  .detail .product .images:last-child {
    margin-right: 0;
  }
}
.detail .product .images .inner h1 {
  font-size: 2.5em;
}
.detail .product .images img {
  max-width: 100%;
}
.detail .product .images .prevPage, .detail .product .images .nextPage {
  display: none;
}
.detail .product .images #image_wrap {
  width: 100%;
  background: white;
}
.detail .product .images #image_wrap #caption {
  padding-bottom: 15px;
  font-family: "adobe-garamond-pro", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.2em;
}
.detail .product .images .scrollable {
  width: 100%;
  top: 0;
  margin-top: 35px;
}
.detail .product .description {
  float: left;
  display: block;
  margin-right: 2.85714%;
  width: 31.42857%;
  margin-bottom: 20px;
}
.detail .product .description:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .detail .product .description {
    float: left;
    display: block;
    margin-right: 4.34783%;
    width: 100%;
  }
  .detail .product .description:last-child {
    margin-right: 0;
  }
}
.detail .product .description h1 {
  font-size: 2.25rem;
}
.detail .product .description h2 {
  font-size: 1.5rem;
}
.detail .product .description p, .detail .product .description li, .detail .product .description td {
  font-size: 1.2em;
  margin-bottom: .7em;
}
.detail .product .description ul {
  margin-bottom: 12px;
}
.detail .product .description ul li {
  list-style: disc;
  margin-bottom: 0;
  color: #444;
}
.detail .product .description ul li img {
  vertical-align: middle;
}
.detail .product .description td + td {
  padding-left: 20px;
  padding-bottom: 5px;
}
.detail .static-content {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 60px;
}
.detail .static-content::after {
  clear: both;
  content: "";
  display: table;
}
.detail .static-content .wrap {
  padding: 0;
  text-align: center;
}
.detail .static-content p, .detail .static-content li, .detail .static-content td {
  font-size: 1.2em;
  margin-bottom: .7em;
}
.detail .static-content div {
  float: left;
  display: block;
  margin-right: 2.85714%;
  width: 31.42857%;
}
.detail .static-content div:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .detail .static-content div {
    float: left;
    display: block;
    margin-right: 4.34783%;
    width: 100%;
  }
  .detail .static-content div:last-child {
    margin-right: 0;
  }
}
.detail .static-content div:last-child {
  text-align: center;
}
.detail .static-content div:last-child p {
  font-size: 1.2em;
  margin-bottom: 0;
}
.detail .static-content div:last-child #call-me-detail {
  width: 100%;
}
.detail .static-content div:last-child #call-me-detail p.wrap {
  font-size: 1.2em;
  margin-bottom: 0;
  margin-top: 6px;
}
.detail .static-content div:last-child #call-me-detail input[type=text], .detail .static-content div:last-child #call-me-detail input[type=tel] {
  height: 40px;
  padding: 5px 0 0px 4px;
}
.detail .static-content div:last-child #call-me-detail .button, .detail .static-content div:last-child #call-me-detail button, .detail .static-content div:last-child #call-me-detail .small_button {
  width: 65%;
  padding: 12px;
  margin-bottom: .5em;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .detail .static-content div:last-child #call-me-detail .button, .detail .static-content div:last-child #call-me-detail button, .detail .static-content div:last-child #call-me-detail .small_button {
    max-width: 300px;
  }
}

.subpage section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.subpage section::after {
  clear: both;
  content: "";
  display: table;
}
.subpage .banner-image {
  margin-bottom: 1em;
  line-height: 0;
}
.subpage .banner-image p {
  margin: 0;
  line-height: 0;
}
.subpage .banner-image img {
  max-width: 100%;
  width: 100%;
  line-height: 0;
  height: auto;
}
.subpage .main {
  float: left;
  display: block;
  margin-right: 2.85714%;
  width: 48.57143%;
  margin-left: 8.57143%;
  padding-bottom: 50px;
  min-height: 800px;
}
.subpage .main:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .subpage .main {
    float: left;
    display: block;
    margin-right: 4.34783%;
    width: 100%;
    margin-left: 0%;
    padding: 2.85714%;
  }
  .subpage .main:last-child {
    margin-right: 0;
  }
  .subpage .main img {
    max-width: 100%;
    height: auto;
  }
}
.subpage .main h4, .subpage .main h5, .subpage .main h6 {
  margin-top: 0;
  margin-bottom: 0.2em;
}
.subpage .main h1 {
  margin-bottom: 1.0em;
}
.subpage .main p, .subpage .main li {
  font-size: 1.2em;
}
.subpage .main p, .subpage .main ul {
  margin-bottom: .7em;
}
.subpage .main p.wrap {
  margin-bottom: 0;
}
.subpage .main h1 + p::first-letter, .subpage .main h2 + p::first-letter {
  color: #c67e26;
  font-size: 2.0em;
}
.subpage aside {
  float: left;
  display: block;
  margin-right: 2.85714%;
  width: 22.85714%;
  margin-left: 8.57143%;
  padding: 0 0 50px;
  text-align: center;
}
.subpage aside:last-child {
  margin-right: 0;
}
.subpage aside p, .subpage aside li {
  font-size: 1.2em;
}
.subpage aside p, .subpage aside ul {
  margin-bottom: .7em;
}
.subpage aside p {
  margin-top: 0;
}
.subpage aside img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .subpage aside {
    float: left;
    display: block;
    margin-right: 4.34783%;
    width: 100%;
    margin-left: 0%;
    padding: 2.85714%;
  }
  .subpage aside:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .subpage aside .button, .subpage aside button {
    width: auto;
  }
}

.subpage #call-me-detail {
  width: 100%;
  text-align: center;
}
.subpage #call-me-detail p.wrap {
  font-size: 1.2em;
  margin-bottom: 0;
  margin-top: 6px;
  padding: 0;
}
.subpage #call-me-detail input[type=text], .subpage #call-me-detail input[type=tel] {
  height: 40px;
  padding: 5px 0 0px 4px;
}
.subpage #call-me-detail .button, .subpage #call-me-detail button, .subpage #call-me-detail .small_button {
  width: 65%;
  padding: 12px;
  margin-bottom: .5em;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .subpage #call-me-detail .button, .subpage #call-me-detail button, .subpage #call-me-detail .small_button {
    max-width: 300px;
  }
}

.subpage.Child_Fund aside:last-child {
  margin-top: 110px;
}
.subpage.Child_Fund aside:last-child input.button {
  cursor: pointer;
}

.Custom_Engraving aside p, .Custom_Engraving aside img, .Custom_Engraving aside a {
  margin: 0;
}
.Custom_Engraving aside p:nth-of-type(2n), .Custom_Engraving aside img:nth-of-type(2n), .Custom_Engraving aside a:nth-of-type(2n) {
  margin-bottom: 20px;
}
.Custom_Engraving aside img {
  box-shadow: 0 0px 6px 0px #444;
}

.Request_a_Catalog form input,
.Shipping form input,
.Advanced_Planning_Order_Form form input {
  height: 36px;
  width: 300px;
}

/*------------------------------------------------------------------------------
DIVS -- SITE MAP
------------------------------------------------------------------------------*/
.Sitemap #sitemap p.level_top, .Sitemap #sitemap p.level_1, .Sitemap #sitemap p.level_2, .Sitemap #sitemap p.level_3 {
  font-family: "adobe-garamond-pro", Georgia, serif;
  font-weight: 400;
  font-size: 1.1em;
  margin-bottom: 0;
}
.Sitemap #sitemap p.level_top {
  font-weight: 700;
}
.Sitemap #sitemap p.level_1 {
  background: #fff url(/images/level1.png) no-repeat 0 35%;
  padding-left: 60px;
}
.Sitemap #sitemap p.level_2 {
  background: #fff url(/images/level2.png) no-repeat 0 35%;
  padding-left: 110px;
}
.Sitemap #sitemap p.level_3 {
  background: #fff url(/images/level3.png) no-repeat 0 35%;
  padding-left: 160px;
}

.wizard header {
  width: 100%;
  margin-bottom: 2em;
  background-color: #c67e26;
  padding: 0.5rem 0;
  position: relative;
}
.wizard header .logo {
  position: relative;
  margin: 0 auto;
  width: 400px;
  display: block;
}
.wizard input.button {
  background: #fff;
  color: #c67e26;
  text-transform: uppercase;
  border: 1px solid #c67e26;
  width: 300px;
  margin-bottom: 30px;
  margin-top: 10px;
}
.wizard input.button:hover {
  background: #EFDCC5;
}
.wizard section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 3.125rem;
  text-align: center;
}
.wizard section::after {
  clear: both;
  content: "";
  display: table;
}
.wizard section div, .wizard section p, .wizard section label {
  font-size: 2rem;
  line-height: 2.625rem;
}
.wizard section form input[type=text] {
  height: 48px;
  font-size: 1.5rem;
  width: 25rem;
  padding-top: 8px;
}
.wizard section form input[type=radio] {
  display: none;
}
.wizard section form input[type=radio] + label::before {
  content: '';
  display: inline-block;
  border: 1px solid #000;
  border-radius: 50%;
  margin: 0 0.5em;
}
.wizard section form input[type=radio]:checked + label::before {
  background-color: brown;
}
.wizard section form .casket + label::before {
  width: 2rem;
  height: 2rem;
}
.wizard section form .button {
  padding-right: 1.875rem;
  padding-left: 1.875rem;
}
.wizard section form > p {
  margin-bottom: 30px;
}
.wizard section #sidebyside {
  float: left;
  display: block;
  margin-right: 2.85714%;
  width: 65.71429%;
  margin-left: 17.14286%;
}
.wizard section #sidebyside:last-child {
  margin-right: 0;
}
.wizard section #sidebyside div {
  float: left;
  display: block;
  margin-right: 4.34783%;
  width: 47.82609%;
}
.wizard section #sidebyside div:last-child {
  margin-right: 0;
}
.wizard section #sidebyside div:nth-child(2n) {
  margin-right: 0;
}
.wizard section #sidebyside div:nth-child(2n+1) {
  clear: left;
}
.wizard section p.previous {
  padding-top: 0.625rem;
  clear: both;
}
.wizard section p.previous a {
  font-size: 1.5rem;
}
.wizard section p.dimen {
  font-size: 1.125rem;
  font-family: "proxima-nova";
  font-weight: 300;
  color: #ce8f43;
  text-align: center;
  line-height: 1.125rem;
  margin-top: 0;
  margin-bottom: 5px;
  padding: 0;
}

.wizard .OLP_Urn_style section #sidebyside div {
  margin-bottom: 40px;
}

.wizard.OLP_Single section #sidebyside {
  float: left;
  display: block;
  margin-right: 2.85714%;
  width: 100%;
  margin-left: 0%;
}
.wizard.OLP_Single section #sidebyside:last-child {
  margin-right: 0;
}
.wizard.OLP_Single section #sidebyside div {
  float: left;
  display: block;
  margin-right: 2.85714%;
  width: 31.42857%;
}
.wizard.OLP_Single section #sidebyside div:last-child {
  margin-right: 0;
}
.wizard.OLP_Single section #sidebyside div:nth-child(3n) {
  margin-right: 0;
}
.wizard.OLP_Single section #sidebyside div:nth-child(3n+1) {
  clear: left;
}
.wizard.OLP_Single section #sidebyside div:nth-child(2n+1) {
  clear: none;
}

.wizard.OLP_Engraving section #sidebyside {
  float: left;
  display: block;
  margin-right: 2.85714%;
  width: 31.42857%;
  margin-left: 34.28571%;
}
.wizard.OLP_Engraving section #sidebyside:last-child {
  margin-right: 0;
}
.wizard.OLP_Engraving section #sidebyside div {
  float: left;
  display: block;
  margin-right: 9.09091%;
  width: 100%;
}
.wizard.OLP_Engraving section #sidebyside div:last-child {
  margin-right: 0;
}
.wizard.OLP_Engraving section #sidebyside div:nth-child(1n) {
  margin-right: 0;
}
.wizard.OLP_Engraving section #sidebyside div:nth-child(1n+1) {
  clear: left;
}
.wizard.OLP_Engraving section #sidebyside div:nth-child(1) {
  clear: none;
}
.wizard.OLP_Engraving section #sidebyside img {
  margin-top: 1.125rem;
}

.wizard.OLP_Benefits section p {
  font-size: 1.25rem;
  line-height: 1.625rem;
}

.wizard.OLP_Shipping section p {
  font-size: 1.25rem;
  line-height: 1.625rem;
}

.OP_intro {
  max-width: 500px;
}
.OP_intro p {
  color: blue;
}

.wizard_final header {
  width: 100%;
  margin-bottom: 2em;
  background-color: #c67e26;
  padding: 0.5rem 0;
  position: relative;
}
.wizard_final header .logo {
  position: relative;
  margin: 0 auto;
  width: 400px;
  display: block;
}
.wizard_final input.button {
  background: #fff;
  color: #c67e26;
  text-transform: uppercase;
  border: 1px solid #c67e26;
  width: 300px;
  margin-bottom: 30px;
  margin-top: 10px;
}
.wizard_final input.button:hover {
  background: #EFDCC5;
}
.wizard_final form input[type=text] {
  height: 48px;
  font-size: 1.5rem;
  width: 25rem;
  padding-top: 8px;
}
.wizard_final form input[type=radio] {
  display: none;
}
.wizard_final form input[type=radio] + label::before {
  content: '';
  display: inline-block;
  border: 1px solid #000;
  border-radius: 50%;
  margin: 0 0.5em;
}
.wizard_final form input[type=radio]:checked + label::before {
  background-color: brown;
}
.wizard_final form .casket + label::before {
  width: 2rem;
  height: 2rem;
}
.wizard_final form .button {
  padding-right: 1.875rem;
  padding-left: 1.875rem;
}
.wizard_final form > p {
  margin-bottom: 30px;
}
.wizard_final p.previous {
  padding-top: 0.625rem;
  clear: both;
}
.wizard_final p.previous a {
  font-size: 1.5rem;
}
.wizard_final p.dimen {
  font-size: 1.125rem;
  font-family: "proxima-nova";
  font-weight: 300;
  color: #ce8f43;
  text-align: center;
  line-height: 1.125rem;
  margin-top: 0;
  margin-bottom: 5px;
  padding: 0;
}

section {
  padding: 0;
}

.action {
  background-color: #fdf8f4;
  padding-top: 30px;
  width: 100%;
  height: 550px;
}
@media screen and (max-width: 768px) {
  .action {
    height: 750px;
  }
}
@media screen and (max-width: 480px) {
  .action {
    height: 1000px;
  }
}
.action p {
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: left;
}
.action h3 {
  font-size: 2em;
  text-align: center;
}
.action h2 {
  font-size: 2.5em;
  text-align: center;
}
.action .items {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.action .items::after {
  clear: both;
  content: "";
  display: table;
}
.action .items .call {
  float: left;
  width: 33%;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .action .items .call {
    width: 100%;
  }
}
.action .items .share {
  float: left;
  width: 33%;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .action .items .share {
    width: 100%;
  }
}
.action .items .save {
  float: left;
  width: 33%;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .action .items .save {
    width: 100%;
  }
}

/*------------------------------------------------------------------------------
HORIZONTAL MENU
------------------------------------------------------------------------------*/
nav {
  width: 100%;
  min-height: 6.25rem;
  position: relative;
  background: #c67e26;
  z-index: 10;
  padding-top: 1px;
  font-size: 1.5rem;
  /* Megadropdown content*/
}
nav p:nth-of-type(1) {
  color: #fff;
  float: left;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  nav {
    padding: 0.9375rem;
    text-align: right;
  }
}
nav #menuh {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 8px;
  position: relative;
  /* Forces mega drown downs to alight to the '.inner' part of the nav*/
  /* Second-level list items or fly-downs*/
}
nav #menuh::after {
  clear: both;
  content: "";
  display: table;
}
@media screen and (max-width: 768px) {
  nav #menuh {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    text-align: left;
    background: #c67e26;
  }
  nav #menuh.open {
    display: block;
  }
  nav #menuh.open li {
    display: block;
    float: none;
    width: 100%;
    line-height: 1;
  }
  nav #menuh.open li:hover {
    background: transparent;
  }
  nav #menuh.open li a {
    width: 90%;
    display: inline-block;
    background: transparent;
  }
  nav #menuh.open li a:hover {
    background: tan;
  }
  nav #menuh.open li a.toggle {
    width: 16px;
    float: none;
    background-image: url("../js/meiermobile/dist/css/images/menu-toggle.png");
  }
  nav #menuh.open li a.toggle:hover {
    background-color: transparent;
  }
  nav #menuh.open li ul {
    position: relative;
    padding-top: 0;
    padding-left: 0;
    top: auto;
  }
  nav #menuh.open li ul ul {
    left: 0;
  }
}
nav #menuh li {
  height: 100%;
  float: left;
  margin: 0;
  list-style: none;
  line-height: 6.25rem;
  vertical-align: middle;
}
nav #menuh li a {
  display: block;
  line-height: 1.5rem;
  /* set vert spacing between li's and the main UL...*/
  color: white;
  /* ...distances between edges of type and left of li*/
  text-decoration: none;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Calculate based on height and fontsize to*/
  padding: 11px 20px 14px 10px;
}
nav #menuh li a:hover {
  color: white;
}
nav #menuh li a .current_top_menu_item {
  color: white;
}
nav #menuh li a .current_page {
  background-color: tan;
}
nav #menuh li:hover {
  background-color: tan;
}
nav #menuh ul {
  padding: 10px 0 0 10px;
  list-style: none;
  left: 0;
  width: 100%;
  top: 42px;
  position: absolute;
  background-color: rgba(198, 126, 38, 0.85);
  display: none;
}
nav #menuh ul li {
  margin: 0;
  padding: 0;
  height: auto;
  /* Turn off the top tier height 100%*/
  font-style: italic;
  /*CONTROLS THIRD-AND ABOVE LEVEL LIST ITEMS under About Us */
}
nav #menuh ul li a {
  display: block;
  padding: 10px 0 20px 0;
  width: 150px;
  /* master width minus left & right padding */
  text-align: center;
}
nav #menuh ul li a:hover {
  color: white;
  background-color: tan;
}
nav #menuh ul li ul {
  position: absolute;
  margin: 0 0 0 0;
  padding: 0;
  left: -999em;
  z-index: 1;
}
nav #menuh ul li ul li ul {
  margin: -22px 0 0 180px;
  /* the -top px vertically positions the right flyout */
  /*...and the left margin is ul-li-a horiz spacing+width+1/0 */
}
nav #menuh ul li ul li ul li a {
  background-color: #c67e26;
}
nav #menuh ul li ul li ul li a:hover {
  color: white;
  background-color: tan;
}
@media screen and (max-width: 1200px) {
  nav #menuh a.toggle {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  nav #menuh a.toggle {
    display: inline-block;
  }
}
nav .sub_logo {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin: 10px auto 0;
  width: 100%;
}
nav .sub_logo::after {
  clear: both;
  content: "";
  display: table;
}
nav .sub_logo a img {
  float: left;
  width: 300px;
}
nav .megadropdown-content {
  display: none;
  float: right;
  margin-right: 5%;
  height: 100%;
  width: 80%;
  color: white;
}
nav .megadropdown-content p {
  color: white;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
nav .megadropdown-content td {
  padding-right: 20px;
  vertical-align: top;
  font-size: 1.1em;
}
nav .megadropdown-content td p {
  margin-bottom: 0;
}
nav .megadropdown-content td a {
  padding: 0;
}
nav .megadropdown-content table {
  margin-bottom: 20px;
}
nav #menuh .megadropdown-content {
  display: block;
}
@media screen and (max-width: 768px) {
  nav #menuh .megadropdown-content {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  nav .sub_logo {
    width: auto;
    float: left;
  }
}

.menu-toggle {
  display: none;
  cursor: pointer;
  color: white;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: inline-block;
  }
}

.home .menu-toggle {
  margin-top: 0;
}

/*------------------------------------------------------------------------------
FOOTER MENU
------------------------------------------------------------------------------*/
/* ----- footer menu --- */
.menu2 {
  display: block;
  width: auto;
}
.menu2 li {
  margin-bottom: 4px;
  list-style: none;
  text-transform: capitalize;
  color: #fff;
  font-weight: 400;
  font-size: 21px;
  line-height: 24px;
  color: #fff;
}
.menu2 li a {
  display: block;
  color: #fff;
}
.menu2 li a:hover {
  color: #c67e26;
}
.menu2 li ul {
  display: none;
}

/*------------------------------------------------------------------------------
SCROLLABLE
------------------------------------------------------------------------------*/
#gallery .scrollable {
  height: 90px;
}

#gallery a.browse {
  background: url(/xm_client/images/scrollarrows.png) no-repeat;
  display: block;
  width: 30px;
  height: 30px;
  float: left;
  margin: -8px 0 0 -692px;
  cursor: pointer;
  font-size: 1px;
  padding: 0px;
}

#gallery .nextPage {
  position: relative;
  left: 744px;
  top: 8px;
}

#gallery .prevPage {
  position: relative;
  left: 0;
  top: 134px;
}

#gallery a.left {
  margin-left: 0;
}

#gallery a.right {
  background-position: 0 -30px;
  clear: right;
  margin-right: 0px;
}

#gallery a.right:hover {
  background-position: -30px -30px;
}

#gallery a.left:hover {
  background-position: -30px 0;
}

#gallery a.left:active {
  background-position: -60px 0;
}

#gallery a.right:active {
  background-position: -60px -30px;
}

.addVer-canonContainer {
  border: 0.0625rem solid #444;
  display: none;
  padding: 0.625rem;
  margin-bottom: 0.9375rem;
}
.addVer-canonContainer.active {
  display: block;
}
.addVer-canonContainer table {
  margin-bottom: 0.625rem;
}
.addVer-canonContainer .accept, .addVer-canonContainer .edit {
  background: #c67e26;
  padding: 12px;
  margin-bottom: .5em;
  display: inline-block;
  border-radius: 4px;
  cursor: pointer;
  /* Text */
  font-family: "proxima-nova";
  font-weight: 300;
  color: white;
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
  /* Font smoothing
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;*/
}
.addVer-canonContainer .ignore {
  cursor: pointer;
}

/*------------------------------------------------------------------------------
HIGHSITE ONLY -- keep at end of file
------------------------------------------------------------------------------*/
.error_page h1 {
  margin: 40px 0 10px 40px;
}

.error_page p {
  margin: 10px 40px;
}

p.edit_link_block {
  background: none !important;
}

p.edit_link_block a.edit_link {
  color: #9a4446 !important;
  font-weight: normal !important;
  font-size: 9px !important;
  text-decoration: none !important;
}

p.edit_link_block a.edit_link:hover {
  text-decoration: underline !important;
}

.multidiv {
  /* for separating multiple sections */
  position: relative;
  margin: 0 0 20px 0;
  border-bottom: 2px dotted #999;
  padding-bottom: 20px;
}
