
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_ab8e871540b168c10b7993b1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a0b722ca15b5504bd68ec93b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7a8bbd1a637f669430e0da7a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9473fbc54ba14ab003644380.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.997000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_36022545ad382b021f3454ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4533b3d07d30baeb4ae1d496.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f7a7d9ffa90901ec09ecfb84.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_36022545ad382b021f3454ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m28{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247502,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247534,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.247616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247616,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.247618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247618,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247698,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247748,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247891,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248122,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248244,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248597,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248660,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249016,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249163,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249343,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249413,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249440,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249628,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249778,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249930,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250160,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250165,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250369,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250407,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250495,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250540,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250742,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250762,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250810,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251051,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251209,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251286,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251313,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251413,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251460,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251543,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251765,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251938,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252103,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252128,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.252191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252191,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.252192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252192,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.252210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252210,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.252470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252470,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-19.980000px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls1e{letter-spacing:-1.200000px;}
.ls19{letter-spacing:-0.576000px;}
.ls18{letter-spacing:-0.335808px;}
.ls15{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.192000px;}
.ls12{letter-spacing:-0.180000px;}
.ls27{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.139920px;}
.ls11{letter-spacing:-0.120000px;}
.ls8{letter-spacing:-0.096000px;}
.ls26{letter-spacing:-0.069960px;}
.ls7{letter-spacing:-0.060000px;}
.ls13{letter-spacing:-0.048000px;}
.ls1f{letter-spacing:-0.034980px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.027984px;}
.ls22{letter-spacing:0.030000px;}
.ls20{letter-spacing:0.034980px;}
.ls3{letter-spacing:0.035495px;}
.ls2{letter-spacing:0.048000px;}
.lsb{letter-spacing:0.060000px;}
.ls17{letter-spacing:0.069960px;}
.lsc{letter-spacing:0.090000px;}
.ls10{letter-spacing:0.096000px;}
.ls16{letter-spacing:0.104940px;}
.lsf{letter-spacing:0.120000px;}
.lse{letter-spacing:0.133566px;}
.ls21{letter-spacing:0.139920px;}
.ls23{letter-spacing:0.174900px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.192000px;}
.ls1d{letter-spacing:0.209880px;}
.ls1c{letter-spacing:0.210000px;}
.lsd{letter-spacing:0.240000px;}
.ls1{letter-spacing:0.300000px;}
.ls25{letter-spacing:0.312000px;}
.ls24{letter-spacing:0.336000px;}
.ls14{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.450000px;}
.ls4{letter-spacing:1.952195px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws43{word-spacing:-12.360000px;}
.ws15{word-spacing:-12.300000px;}
.ws2b{word-spacing:-12.000000px;}
.ws46{word-spacing:-11.940000px;}
.ws45{word-spacing:-10.800000px;}
.ws58{word-spacing:-9.912000px;}
.ws3{word-spacing:-9.648000px;}
.ws2d{word-spacing:-9.600000px;}
.ws59{word-spacing:-9.456000px;}
.ws44{word-spacing:-7.205880px;}
.ws50{word-spacing:-7.170900px;}
.ws48{word-spacing:-7.135920px;}
.ws2c{word-spacing:-7.065960px;}
.ws47{word-spacing:-7.030980px;}
.ws0{word-spacing:-6.996000px;}
.ws49{word-spacing:-6.961020px;}
.ws57{word-spacing:-6.926040px;}
.ws2{word-spacing:-5.624784px;}
.ws1{word-spacing:-5.596800px;}
.ws3c{word-spacing:-1.860000px;}
.ws8{word-spacing:-1.800000px;}
.ws1c{word-spacing:-1.620000px;}
.ws39{word-spacing:-1.584000px;}
.ws21{word-spacing:-1.560000px;}
.ws5e{word-spacing:-1.488000px;}
.wsf{word-spacing:-1.440000px;}
.ws24{word-spacing:-1.320000px;}
.ws22{word-spacing:-1.260000px;}
.ws31{word-spacing:-1.200000px;}
.ws5b{word-spacing:-1.140000px;}
.ws3d{word-spacing:-1.080000px;}
.ws54{word-spacing:-1.020000px;}
.ws1f{word-spacing:-0.840000px;}
.ws25{word-spacing:-0.780000px;}
.ws36{word-spacing:-0.720000px;}
.ws3a{word-spacing:-0.624000px;}
.ws60{word-spacing:-0.600000px;}
.wsb{word-spacing:-0.540000px;}
.ws10{word-spacing:-0.480000px;}
.ws2e{word-spacing:-0.420000px;}
.ws26{word-spacing:-0.360000px;}
.ws5c{word-spacing:-0.336000px;}
.ws1b{word-spacing:-0.300000px;}
.ws5f{word-spacing:-0.288000px;}
.ws3f{word-spacing:-0.240000px;}
.ws14{word-spacing:-0.192000px;}
.ws41{word-spacing:-0.180000px;}
.ws1e{word-spacing:-0.120000px;}
.ws34{word-spacing:-0.104940px;}
.ws40{word-spacing:-0.069960px;}
.ws16{word-spacing:-0.060000px;}
.ws11{word-spacing:-0.048000px;}
.ws4f{word-spacing:-0.034980px;}
.ws5{word-spacing:0.000000px;}
.ws4c{word-spacing:0.034980px;}
.ws18{word-spacing:0.060000px;}
.ws17{word-spacing:0.120000px;}
.ws3e{word-spacing:0.139920px;}
.ws5d{word-spacing:0.144000px;}
.ws23{word-spacing:0.240000px;}
.wsc{word-spacing:0.300000px;}
.ws37{word-spacing:0.335808px;}
.wse{word-spacing:0.420000px;}
.ws2a{word-spacing:0.432000px;}
.ws4{word-spacing:0.480000px;}
.ws38{word-spacing:0.576000px;}
.ws7{word-spacing:0.600000px;}
.ws30{word-spacing:0.660000px;}
.ws12{word-spacing:0.864000px;}
.ws4e{word-spacing:0.960000px;}
.ws9{word-spacing:1.020000px;}
.ws56{word-spacing:1.080000px;}
.ws53{word-spacing:1.200000px;}
.ws32{word-spacing:1.320000px;}
.ws4a{word-spacing:1.380000px;}
.ws3b{word-spacing:1.440000px;}
.ws35{word-spacing:1.500000px;}
.ws1d{word-spacing:1.560000px;}
.ws5a{word-spacing:1.620000px;}
.ws2f{word-spacing:1.740000px;}
.ws28{word-spacing:1.776000px;}
.ws4b{word-spacing:1.800000px;}
.ws27{word-spacing:1.860000px;}
.wsd{word-spacing:1.920000px;}
.ws13{word-spacing:1.968000px;}
.ws29{word-spacing:2.016000px;}
.ws20{word-spacing:2.040000px;}
.ws61{word-spacing:2.100000px;}
.ws55{word-spacing:2.280000px;}
.ws19{word-spacing:2.340000px;}
.ws6{word-spacing:2.400000px;}
.ws33{word-spacing:2.640000px;}
.ws4d{word-spacing:2.760000px;}
.ws52{word-spacing:2.820000px;}
.wsa{word-spacing:2.940000px;}
.ws1a{word-spacing:3.060000px;}
.ws51{word-spacing:3.360000px;}
.ws42{word-spacing:4.500000px;}
._8{margin-left:-12.060000px;}
._3{margin-left:-8.035200px;}
._5{margin-left:-6.306000px;}
._6{margin-left:-4.458000px;}
._1{margin-left:-3.066000px;}
._0{margin-left:-1.440000px;}
._4{width:1.314510px;}
._2{width:2.412000px;}
._7{width:4.182000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.984000px;}
.fs4{font-size:34.980000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y50{bottom:50.226900px;}
.y27{bottom:54.502500px;}
.y2{bottom:86.740200px;}
.y5e{bottom:90.736200px;}
.y1{bottom:101.740200px;}
.y58{bottom:105.736200px;}
.y4d{bottom:116.740200px;}
.y57{bottom:120.736200px;}
.y81{bottom:127.548750px;}
.y4c{bottom:131.740200px;}
.y56{bottom:135.736200px;}
.y55{bottom:146.740200px;}
.y80{bottom:147.798750px;}
.y4b{bottom:150.736200px;}
.y24{bottom:153.070950px;}
.y4a{bottom:161.740200px;}
.y7d{bottom:165.736200px;}
.y7f{bottom:168.048750px;}
.y23{bottom:168.070950px;}
.y49{bottom:176.740200px;}
.y7c{bottom:180.736200px;}
.y22{bottom:183.070950px;}
.y5d{bottom:188.298750px;}
.y48{bottom:191.740200px;}
.y54{bottom:195.736200px;}
.y21{bottom:198.070950px;}
.y47{bottom:206.740200px;}
.y5c{bottom:208.548750px;}
.y53{bottom:210.736200px;}
.y20{bottom:217.066950px;}
.y46{bottom:225.736200px;}
.y1f{bottom:228.071100px;}
.y5b{bottom:228.798750px;}
.y7b{bottom:235.282950px;}
.y8c{bottom:236.740200px;}
.y1e{bottom:247.067100px;}
.y5a{bottom:249.048750px;}
.y8b{bottom:251.740200px;}
.y79{bottom:255.532950px;}
.y1d{bottom:258.071250px;}
.y7a{bottom:260.527950px;}
.y8a{bottom:266.740200px;}
.y45{bottom:269.298750px;}
.y89{bottom:270.736200px;}
.y1c{bottom:273.071250px;}
.y78{bottom:275.782950px;}
.y88{bottom:281.740200px;}
.y1b{bottom:288.071250px;}
.y44{bottom:289.548750px;}
.y77{bottom:296.032950px;}
.y87{bottom:296.740200px;}
.y1a{bottom:303.071250px;}
.y43{bottom:309.798750px;}
.y86{bottom:311.740200px;}
.y76{bottom:316.282950px;}
.y19{bottom:322.067250px;}
.y85{bottom:326.740200px;}
.y42{bottom:330.048750px;}
.y75{bottom:336.532950px;}
.y84{bottom:341.740200px;}
.y41{bottom:350.298750px;}
.y18{bottom:355.764150px;}
.y74{bottom:356.782950px;}
.y83{bottom:360.736200px;}
.y40{bottom:370.548750px;}
.y17{bottom:376.014150px;}
.y73{bottom:377.032950px;}
.y3f{bottom:390.798750px;}
.y52{bottom:395.793750px;}
.y16{bottom:396.264150px;}
.y71{bottom:397.282950px;}
.y72{bottom:402.277950px;}
.y3e{bottom:411.048750px;}
.y15{bottom:416.514150px;}
.y70{bottom:417.532950px;}
.y3d{bottom:431.298750px;}
.y14{bottom:436.764150px;}
.y6f{bottom:437.782950px;}
.y3c{bottom:451.548750px;}
.y13{bottom:457.014150px;}
.y6e{bottom:458.032950px;}
.y3b{bottom:471.798750px;}
.y12{bottom:477.264150px;}
.y6d{bottom:478.282950px;}
.y3a{bottom:492.048750px;}
.y11{bottom:497.514150px;}
.y6c{bottom:498.532950px;}
.y39{bottom:512.298750px;}
.y59{bottom:517.293750px;}
.y10{bottom:517.764150px;}
.y38{bottom:532.548750px;}
.y6a{bottom:535.790850px;}
.yf{bottom:538.014150px;}
.y6b{bottom:540.785850px;}
.y37{bottom:552.798750px;}
.y69{bottom:556.040850px;}
.ye{bottom:558.264150px;}
.y36{bottom:573.048750px;}
.y68{bottom:576.290850px;}
.yd{bottom:578.514150px;}
.y35{bottom:593.298750px;}
.y67{bottom:596.540850px;}
.yc{bottom:598.764150px;}
.y34{bottom:613.548750px;}
.y66{bottom:616.790850px;}
.yb{bottom:619.014150px;}
.y33{bottom:633.798750px;}
.y65{bottom:637.040850px;}
.y51{bottom:638.793750px;}
.ya{bottom:639.264150px;}
.y32{bottom:654.048750px;}
.y64{bottom:657.290850px;}
.y82{bottom:659.043750px;}
.y31{bottom:674.298750px;}
.y63{bottom:677.540850px;}
.y30{bottom:694.548750px;}
.y62{bottom:697.790850px;}
.y2f{bottom:714.798750px;}
.y61{bottom:718.040850px;}
.y9{bottom:731.797650px;}
.y2e{bottom:735.048750px;}
.y60{bottom:738.290850px;}
.y7e{bottom:740.043750px;}
.y8{bottom:752.797650px;}
.y2d{bottom:755.298750px;}
.y5f{bottom:758.540850px;}
.y7{bottom:773.797650px;}
.y2c{bottom:775.548750px;}
.y2b{bottom:795.798750px;}
.y6{bottom:807.553500px;}
.y2a{bottom:816.048750px;}
.y29{bottom:836.298750px;}
.y28{bottom:856.548750px;}
.y8d{bottom:861.543750px;}
.y5{bottom:880.653450px;}
.y4{bottom:880.653600px;}
.y3{bottom:893.253600px;}
.y26{bottom:898.288950px;}
.y4f{bottom:898.290300px;}
.y25{bottom:898.309800px;}
.y4e{bottom:898.311150px;}
.h8{height:23.450592px;}
.h6{height:24.240000px;}
.h7{height:29.313240px;}
.h9{height:33.936000px;}
.h3{height:35.196000px;}
.h2{height:40.224000px;}
.h4{height:50.280000px;}
.h5{height:60.336000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x4{left:114.803100px;}
.x1{left:170.078700px;}
.xa{left:180.158100px;}
.x13{left:183.795900px;}
.x5{left:191.338500px;}
.xf{left:203.408700px;}
.x10{left:211.837200px;}
.xd{left:231.359400px;}
.xe{left:239.889450px;}
.x15{left:269.582250px;}
.x16{left:278.041800px;}
.x11{left:334.001700px;}
.x12{left:342.250050px;}
.x6{left:385.956150px;}
.x7{left:390.191100px;}
.x2{left:441.664650px;}
.x3{left:475.295700px;}
.x8{left:490.441200px;}
.x9{left:498.965700px;}
.xb{left:565.737900px;}
.x14{left:570.802800px;}
.xc{left:574.015800px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls1e{letter-spacing:-1.066667pt;}
.ls19{letter-spacing:-0.512000pt;}
.ls18{letter-spacing:-0.298496pt;}
.ls15{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.170667pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls27{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.124373pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls8{letter-spacing:-0.085333pt;}
.ls26{letter-spacing:-0.062187pt;}
.ls7{letter-spacing:-0.053333pt;}
.ls13{letter-spacing:-0.042667pt;}
.ls1f{letter-spacing:-0.031093pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.024875pt;}
.ls22{letter-spacing:0.026667pt;}
.ls20{letter-spacing:0.031093pt;}
.ls3{letter-spacing:0.031551pt;}
.ls2{letter-spacing:0.042667pt;}
.lsb{letter-spacing:0.053333pt;}
.ls17{letter-spacing:0.062187pt;}
.lsc{letter-spacing:0.080000pt;}
.ls10{letter-spacing:0.085333pt;}
.ls16{letter-spacing:0.093280pt;}
.lsf{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.118725pt;}
.ls21{letter-spacing:0.124373pt;}
.ls23{letter-spacing:0.155467pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.170667pt;}
.ls1d{letter-spacing:0.186560pt;}
.ls1c{letter-spacing:0.186667pt;}
.lsd{letter-spacing:0.213333pt;}
.ls1{letter-spacing:0.266667pt;}
.ls25{letter-spacing:0.277333pt;}
.ls24{letter-spacing:0.298667pt;}
.ls14{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.400000pt;}
.ls4{letter-spacing:1.735285pt;}
.ws43{word-spacing:-10.986667pt;}
.ws15{word-spacing:-10.933333pt;}
.ws2b{word-spacing:-10.666667pt;}
.ws46{word-spacing:-10.613333pt;}
.ws45{word-spacing:-9.600000pt;}
.ws58{word-spacing:-8.810667pt;}
.ws3{word-spacing:-8.576000pt;}
.ws2d{word-spacing:-8.533333pt;}
.ws59{word-spacing:-8.405333pt;}
.ws44{word-spacing:-6.405227pt;}
.ws50{word-spacing:-6.374133pt;}
.ws48{word-spacing:-6.343040pt;}
.ws2c{word-spacing:-6.280853pt;}
.ws47{word-spacing:-6.249760pt;}
.ws0{word-spacing:-6.218667pt;}
.ws49{word-spacing:-6.187573pt;}
.ws57{word-spacing:-6.156480pt;}
.ws2{word-spacing:-4.999808pt;}
.ws1{word-spacing:-4.974933pt;}
.ws3c{word-spacing:-1.653333pt;}
.ws8{word-spacing:-1.600000pt;}
.ws1c{word-spacing:-1.440000pt;}
.ws39{word-spacing:-1.408000pt;}
.ws21{word-spacing:-1.386667pt;}
.ws5e{word-spacing:-1.322667pt;}
.wsf{word-spacing:-1.280000pt;}
.ws24{word-spacing:-1.173333pt;}
.ws22{word-spacing:-1.120000pt;}
.ws31{word-spacing:-1.066667pt;}
.ws5b{word-spacing:-1.013333pt;}
.ws3d{word-spacing:-0.960000pt;}
.ws54{word-spacing:-0.906667pt;}
.ws1f{word-spacing:-0.746667pt;}
.ws25{word-spacing:-0.693333pt;}
.ws36{word-spacing:-0.640000pt;}
.ws3a{word-spacing:-0.554667pt;}
.ws60{word-spacing:-0.533333pt;}
.wsb{word-spacing:-0.480000pt;}
.ws10{word-spacing:-0.426667pt;}
.ws2e{word-spacing:-0.373333pt;}
.ws26{word-spacing:-0.320000pt;}
.ws5c{word-spacing:-0.298667pt;}
.ws1b{word-spacing:-0.266667pt;}
.ws5f{word-spacing:-0.256000pt;}
.ws3f{word-spacing:-0.213333pt;}
.ws14{word-spacing:-0.170667pt;}
.ws41{word-spacing:-0.160000pt;}
.ws1e{word-spacing:-0.106667pt;}
.ws34{word-spacing:-0.093280pt;}
.ws40{word-spacing:-0.062187pt;}
.ws16{word-spacing:-0.053333pt;}
.ws11{word-spacing:-0.042667pt;}
.ws4f{word-spacing:-0.031093pt;}
.ws5{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.031093pt;}
.ws18{word-spacing:0.053333pt;}
.ws17{word-spacing:0.106667pt;}
.ws3e{word-spacing:0.124373pt;}
.ws5d{word-spacing:0.128000pt;}
.ws23{word-spacing:0.213333pt;}
.wsc{word-spacing:0.266667pt;}
.ws37{word-spacing:0.298496pt;}
.wse{word-spacing:0.373333pt;}
.ws2a{word-spacing:0.384000pt;}
.ws4{word-spacing:0.426667pt;}
.ws38{word-spacing:0.512000pt;}
.ws7{word-spacing:0.533333pt;}
.ws30{word-spacing:0.586667pt;}
.ws12{word-spacing:0.768000pt;}
.ws4e{word-spacing:0.853333pt;}
.ws9{word-spacing:0.906667pt;}
.ws56{word-spacing:0.960000pt;}
.ws53{word-spacing:1.066667pt;}
.ws32{word-spacing:1.173333pt;}
.ws4a{word-spacing:1.226667pt;}
.ws3b{word-spacing:1.280000pt;}
.ws35{word-spacing:1.333333pt;}
.ws1d{word-spacing:1.386667pt;}
.ws5a{word-spacing:1.440000pt;}
.ws2f{word-spacing:1.546667pt;}
.ws28{word-spacing:1.578667pt;}
.ws4b{word-spacing:1.600000pt;}
.ws27{word-spacing:1.653333pt;}
.wsd{word-spacing:1.706667pt;}
.ws13{word-spacing:1.749333pt;}
.ws29{word-spacing:1.792000pt;}
.ws20{word-spacing:1.813333pt;}
.ws61{word-spacing:1.866667pt;}
.ws55{word-spacing:2.026667pt;}
.ws19{word-spacing:2.080000pt;}
.ws6{word-spacing:2.133333pt;}
.ws33{word-spacing:2.346667pt;}
.ws4d{word-spacing:2.453333pt;}
.ws52{word-spacing:2.506667pt;}
.wsa{word-spacing:2.613333pt;}
.ws1a{word-spacing:2.720000pt;}
.ws51{word-spacing:2.986667pt;}
.ws42{word-spacing:4.000000pt;}
._8{margin-left:-10.720000pt;}
._3{margin-left:-7.142400pt;}
._5{margin-left:-5.605333pt;}
._6{margin-left:-3.962667pt;}
._1{margin-left:-2.725333pt;}
._0{margin-left:-1.280000pt;}
._4{width:1.168453pt;}
._2{width:2.144000pt;}
._7{width:3.717333pt;}
.fs5{font-size:24.874667pt;}
.fs4{font-size:31.093333pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y50{bottom:44.646133pt;}
.y27{bottom:48.446667pt;}
.y2{bottom:77.102400pt;}
.y5e{bottom:80.654400pt;}
.y1{bottom:90.435733pt;}
.y58{bottom:93.987733pt;}
.y4d{bottom:103.769067pt;}
.y57{bottom:107.321067pt;}
.y81{bottom:113.376667pt;}
.y4c{bottom:117.102400pt;}
.y56{bottom:120.654400pt;}
.y55{bottom:130.435733pt;}
.y80{bottom:131.376667pt;}
.y4b{bottom:133.987733pt;}
.y24{bottom:136.063067pt;}
.y4a{bottom:143.769067pt;}
.y7d{bottom:147.321067pt;}
.y7f{bottom:149.376667pt;}
.y23{bottom:149.396400pt;}
.y49{bottom:157.102400pt;}
.y7c{bottom:160.654400pt;}
.y22{bottom:162.729733pt;}
.y5d{bottom:167.376667pt;}
.y48{bottom:170.435733pt;}
.y54{bottom:173.987733pt;}
.y21{bottom:176.063067pt;}
.y47{bottom:183.769067pt;}
.y5c{bottom:185.376667pt;}
.y53{bottom:187.321067pt;}
.y20{bottom:192.948400pt;}
.y46{bottom:200.654400pt;}
.y1f{bottom:202.729867pt;}
.y5b{bottom:203.376667pt;}
.y7b{bottom:209.140400pt;}
.y8c{bottom:210.435733pt;}
.y1e{bottom:219.615200pt;}
.y5a{bottom:221.376667pt;}
.y8b{bottom:223.769067pt;}
.y79{bottom:227.140400pt;}
.y1d{bottom:229.396667pt;}
.y7a{bottom:231.580400pt;}
.y8a{bottom:237.102400pt;}
.y45{bottom:239.376667pt;}
.y89{bottom:240.654400pt;}
.y1c{bottom:242.730000pt;}
.y78{bottom:245.140400pt;}
.y88{bottom:250.435733pt;}
.y1b{bottom:256.063333pt;}
.y44{bottom:257.376667pt;}
.y77{bottom:263.140400pt;}
.y87{bottom:263.769067pt;}
.y1a{bottom:269.396667pt;}
.y43{bottom:275.376667pt;}
.y86{bottom:277.102400pt;}
.y76{bottom:281.140400pt;}
.y19{bottom:286.282000pt;}
.y85{bottom:290.435733pt;}
.y42{bottom:293.376667pt;}
.y75{bottom:299.140400pt;}
.y84{bottom:303.769067pt;}
.y41{bottom:311.376667pt;}
.y18{bottom:316.234800pt;}
.y74{bottom:317.140400pt;}
.y83{bottom:320.654400pt;}
.y40{bottom:329.376667pt;}
.y17{bottom:334.234800pt;}
.y73{bottom:335.140400pt;}
.y3f{bottom:347.376667pt;}
.y52{bottom:351.816667pt;}
.y16{bottom:352.234800pt;}
.y71{bottom:353.140400pt;}
.y72{bottom:357.580400pt;}
.y3e{bottom:365.376667pt;}
.y15{bottom:370.234800pt;}
.y70{bottom:371.140400pt;}
.y3d{bottom:383.376667pt;}
.y14{bottom:388.234800pt;}
.y6f{bottom:389.140400pt;}
.y3c{bottom:401.376667pt;}
.y13{bottom:406.234800pt;}
.y6e{bottom:407.140400pt;}
.y3b{bottom:419.376667pt;}
.y12{bottom:424.234800pt;}
.y6d{bottom:425.140400pt;}
.y3a{bottom:437.376667pt;}
.y11{bottom:442.234800pt;}
.y6c{bottom:443.140400pt;}
.y39{bottom:455.376667pt;}
.y59{bottom:459.816667pt;}
.y10{bottom:460.234800pt;}
.y38{bottom:473.376667pt;}
.y6a{bottom:476.258533pt;}
.yf{bottom:478.234800pt;}
.y6b{bottom:480.698533pt;}
.y37{bottom:491.376667pt;}
.y69{bottom:494.258533pt;}
.ye{bottom:496.234800pt;}
.y36{bottom:509.376667pt;}
.y68{bottom:512.258533pt;}
.yd{bottom:514.234800pt;}
.y35{bottom:527.376667pt;}
.y67{bottom:530.258533pt;}
.yc{bottom:532.234800pt;}
.y34{bottom:545.376667pt;}
.y66{bottom:548.258533pt;}
.yb{bottom:550.234800pt;}
.y33{bottom:563.376667pt;}
.y65{bottom:566.258533pt;}
.y51{bottom:567.816667pt;}
.ya{bottom:568.234800pt;}
.y32{bottom:581.376667pt;}
.y64{bottom:584.258533pt;}
.y82{bottom:585.816667pt;}
.y31{bottom:599.376667pt;}
.y63{bottom:602.258533pt;}
.y30{bottom:617.376667pt;}
.y62{bottom:620.258533pt;}
.y2f{bottom:635.376667pt;}
.y61{bottom:638.258533pt;}
.y9{bottom:650.486800pt;}
.y2e{bottom:653.376667pt;}
.y60{bottom:656.258533pt;}
.y7e{bottom:657.816667pt;}
.y8{bottom:669.153467pt;}
.y2d{bottom:671.376667pt;}
.y5f{bottom:674.258533pt;}
.y7{bottom:687.820133pt;}
.y2c{bottom:689.376667pt;}
.y2b{bottom:707.376667pt;}
.y6{bottom:717.825333pt;}
.y2a{bottom:725.376667pt;}
.y29{bottom:743.376667pt;}
.y28{bottom:761.376667pt;}
.y8d{bottom:765.816667pt;}
.y5{bottom:782.803067pt;}
.y4{bottom:782.803200pt;}
.y3{bottom:794.003200pt;}
.y26{bottom:798.479067pt;}
.y4f{bottom:798.480267pt;}
.y25{bottom:798.497600pt;}
.y4e{bottom:798.498800pt;}
.h8{height:20.844971pt;}
.h6{height:21.546667pt;}
.h7{height:26.056213pt;}
.h9{height:30.165333pt;}
.h3{height:31.285333pt;}
.h2{height:35.754667pt;}
.h4{height:44.693333pt;}
.h5{height:53.632000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x4{left:102.047200pt;}
.x1{left:151.181067pt;}
.xa{left:160.140533pt;}
.x13{left:163.374133pt;}
.x5{left:170.078667pt;}
.xf{left:180.807733pt;}
.x10{left:188.299733pt;}
.xd{left:205.652800pt;}
.xe{left:213.235067pt;}
.x15{left:239.628667pt;}
.x16{left:247.148267pt;}
.x11{left:296.890400pt;}
.x12{left:304.222267pt;}
.x6{left:343.072133pt;}
.x7{left:346.836533pt;}
.x2{left:392.590800pt;}
.x3{left:422.485067pt;}
.x8{left:435.947733pt;}
.x9{left:443.525067pt;}
.xb{left:502.878133pt;}
.x14{left:507.380267pt;}
.xc{left:510.236267pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  