
    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_5a415b4b0f9c4501ee39befd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.852000;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_8fc00bf76b5868be1a34c959.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.067000;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_de60dc2a90b25e7e6aadeaec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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_8a0ff9ef3c23a0124498e2de.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.067000;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_35f2219043136a86687e4795.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.067000;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_8a0ff9ef3c23a0124498e2de.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.067000;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_8fb08ec7b6637fb34288b009.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_e065c62db086a0ab4f40db3e.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m35{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);}
.m65{transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247558,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247622,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247638,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247743,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.247838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247838,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247845,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247885,0.000000,0.000000,0.250000,0,0);}
.m5b{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);}
.m3d{transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248175,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248427,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248440,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248526,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248688,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248727,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248790,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248858,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249042,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249313,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249740,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249985,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);}
.m2{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250085,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250305,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250357,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250485,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250505,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);}
.m39{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);}
.m17{transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250915,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250922,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250962,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251155,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251265,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251335,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m42{transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251603,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251857,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251888,0.000000,0.000000,0.250000,0,0);}
.m2f{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);}
.m1c{transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252132,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252222,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252395,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls12{letter-spacing:-0.840000px;}
.ls13{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.240000px;}
.ls3{letter-spacing:-0.180000px;}
.ls2{letter-spacing:-0.120000px;}
.ls11{letter-spacing:-0.096000px;}
.ls4{letter-spacing:-0.060000px;}
.ls10{letter-spacing:-0.055968px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.030000px;}
.ls8{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.090000px;}
.ls9{letter-spacing:0.120000px;}
.lse{letter-spacing:0.150000px;}
.ls5{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.300000px;}
.ls6{letter-spacing:0.330000px;}
.lsc{letter-spacing:0.360000px;}
.lsf{letter-spacing:1.392000px;}
.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;}
}
.ws17{word-spacing:-12.300000px;}
.wsd{word-spacing:-12.180000px;}
.wsa{word-spacing:-12.000000px;}
.ws18{word-spacing:-11.820000px;}
.ws10{word-spacing:-10.992000px;}
.ws11{word-spacing:-9.600000px;}
.wse{word-spacing:-6.996000px;}
.wsf{word-spacing:-5.540832px;}
.wsc{word-spacing:-1.800000px;}
.ws16{word-spacing:-0.780000px;}
.ws7{word-spacing:-0.360000px;}
.ws5{word-spacing:-0.300000px;}
.wsb{word-spacing:-0.240000px;}
.ws6{word-spacing:-0.180000px;}
.ws9{word-spacing:-0.120000px;}
.ws4{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:0.060000px;}
.ws12{word-spacing:0.096000px;}
.ws1{word-spacing:0.120000px;}
.ws2{word-spacing:0.180000px;}
.ws8{word-spacing:0.240000px;}
.ws15{word-spacing:0.600000px;}
.ws14{word-spacing:0.720000px;}
.ws13{word-spacing:0.840000px;}
.ws19{word-spacing:3.000000px;}
._7{margin-left:-6.689400px;}
._3{margin-left:-5.494200px;}
._1{margin-left:-3.451800px;}
._0{margin-left:-1.894200px;}
._5{width:1.143600px;}
._2{width:2.194200px;}
._4{width:3.199800px;}
._6{width:4.531800px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:27.984000px;}
.fs4{font-size:34.980000px;}
.fs0{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y44{bottom:50.226900px;}
.y20{bottom:54.502500px;}
.yca{bottom:86.740200px;}
.ya2{bottom:86.740350px;}
.ya1{bottom:101.740350px;}
.y8e{bottom:102.462000px;}
.yac{bottom:106.501500px;}
.yc9{bottom:107.298000px;}
.ya0{bottom:120.736350px;}
.y8d{bottom:122.712150px;}
.y41{bottom:123.509400px;}
.yc8{bottom:127.855950px;}
.y6f{bottom:133.235700px;}
.y1d{bottom:142.480650px;}
.y8c{bottom:142.962150px;}
.y40{bottom:143.759400px;}
.yc7{bottom:148.413900px;}
.y7d{bottom:150.243600px;}
.y6e{bottom:153.485700px;}
.y59{bottom:160.767150px;}
.y1c{bottom:162.730650px;}
.yab{bottom:164.009400px;}
.yc6{bottom:168.971850px;}
.y7c{bottom:170.493600px;}
.y6d{bottom:173.735700px;}
.y8b{bottom:180.219900px;}
.y3f{bottom:181.017150px;}
.yaa{bottom:184.259400px;}
.yc5{bottom:189.529800px;}
.y9f{bottom:190.743600px;}
.y6c{bottom:193.985700px;}
.y1b{bottom:199.988550px;}
.y8a{bottom:200.469900px;}
.y3e{bottom:201.267150px;}
.ya9{bottom:204.509400px;}
.y7b{bottom:207.751500px;}
.y9e{bottom:210.993600px;}
.y6b{bottom:214.235700px;}
.y1a{bottom:220.238550px;}
.y89{bottom:220.719900px;}
.y3d{bottom:221.517150px;}
.ya8{bottom:224.759400px;}
.yc4{bottom:227.095500px;}
.y7a{bottom:228.001500px;}
.y9d{bottom:231.243600px;}
.y6a{bottom:234.485700px;}
.y19{bottom:240.488550px;}
.y3c{bottom:241.767150px;}
.yc3{bottom:247.653450px;}
.y69{bottom:254.735700px;}
.y88{bottom:257.977800px;}
.y58{bottom:258.775050px;}
.y18{bottom:260.738550px;}
.y3b{bottom:262.017150px;}
.y79{bottom:265.259400px;}
.y9c{bottom:268.501500px;}
.y68{bottom:274.985700px;}
.y87{bottom:278.227800px;}
.y17{bottom:280.988550px;}
.y3a{bottom:282.267150px;}
.yc2{bottom:285.219300px;}
.y57{bottom:296.032950px;}
.y16{bottom:301.238550px;}
.y78{bottom:302.517150px;}
.y9b{bottom:305.759400px;}
.y67{bottom:312.243600px;}
.y86{bottom:315.485700px;}
.y56{bottom:316.282950px;}
.y39{bottom:319.525050px;}
.y15{bottom:321.488550px;}
.y77{bottom:322.767150px;}
.yc1{bottom:322.785150px;}
.y9a{bottom:326.009400px;}
.y55{bottom:336.532950px;}
.y38{bottom:339.775050px;}
.y14{bottom:341.738550px;}
.y76{bottom:343.017150px;}
.yc0{bottom:343.342950px;}
.y99{bottom:346.259400px;}
.y66{bottom:349.501500px;}
.y85{bottom:352.743600px;}
.y54{bottom:356.782950px;}
.y13{bottom:361.988550px;}
.y75{bottom:363.267150px;}
.y98{bottom:366.509400px;}
.y65{bottom:369.751500px;}
.y37{bottom:377.032950px;}
.ycc{bottom:380.275050px;}
.ybf{bottom:380.908800px;}
.y12{bottom:382.238550px;}
.ya7{bottom:383.517150px;}
.y97{bottom:386.759400px;}
.y84{bottom:390.001500px;}
.y36{bottom:397.282950px;}
.y74{bottom:400.525050px;}
.y11{bottom:402.488550px;}
.ya6{bottom:403.767150px;}
.y64{bottom:407.009400px;}
.y83{bottom:410.251500px;}
.y35{bottom:417.532950px;}
.ybe{bottom:418.474650px;}
.y73{bottom:420.775050px;}
.y96{bottom:424.017150px;}
.y63{bottom:427.259400px;}
.y34{bottom:437.782950px;}
.ybd{bottom:439.032600px;}
.y10{bottom:439.746450px;}
.ya5{bottom:441.025050px;}
.y95{bottom:444.267150px;}
.y62{bottom:447.509400px;}
.y33{bottom:458.032950px;}
.ybc{bottom:459.590400px;}
.ya4{bottom:461.275050px;}
.y94{bottom:464.517150px;}
.y61{bottom:467.759400px;}
.y53{bottom:475.040850px;}
.yf{bottom:477.004200px;}
.y32{bottom:478.282950px;}
.ybb{bottom:480.148350px;}
.ya3{bottom:481.525050px;}
.y82{bottom:488.009250px;}
.y52{bottom:495.290850px;}
.ye{bottom:497.254200px;}
.y31{bottom:498.532950px;}
.y93{bottom:501.775050px;}
.y60{bottom:505.017300px;}
.y81{bottom:508.259250px;}
.y51{bottom:515.540850px;}
.yd{bottom:517.504200px;}
.yba{bottom:517.714200px;}
.y30{bottom:518.782950px;}
.y92{bottom:522.025050px;}
.y5f{bottom:525.267300px;}
.y50{bottom:535.790850px;}
.yc{bottom:537.754200px;}
.yb9{bottom:538.272150px;}
.y2f{bottom:539.032950px;}
.y91{bottom:542.275050px;}
.y5e{bottom:545.517300px;}
.y4f{bottom:556.040850px;}
.yb{bottom:558.004200px;}
.yb8{bottom:558.829950px;}
.y2e{bottom:559.282950px;}
.y90{bottom:562.525050px;}
.y5d{bottom:565.767300px;}
.y4e{bottom:576.290850px;}
.ya{bottom:578.254200px;}
.y2d{bottom:579.532950px;}
.y80{bottom:582.775050px;}
.yb7{bottom:596.395800px;}
.y4d{bottom:596.540850px;}
.y9{bottom:598.504200px;}
.y2c{bottom:599.782950px;}
.y5c{bottom:603.025050px;}
.y4c{bottom:616.790850px;}
.yb6{bottom:616.953750px;}
.y2b{bottom:620.032950px;}
.y5b{bottom:623.275050px;}
.y8{bottom:635.762100px;}
.y4b{bottom:637.040850px;}
.yb5{bottom:637.511700px;}
.y2a{bottom:640.282950px;}
.y7f{bottom:643.525050px;}
.y7{bottom:656.012100px;}
.y4a{bottom:657.290850px;}
.yb4{bottom:658.069500px;}
.y29{bottom:660.532950px;}
.y49{bottom:677.540850px;}
.yb3{bottom:678.627450px;}
.y28{bottom:680.782950px;}
.ycb{bottom:694.548750px;}
.y72{bottom:697.790850px;}
.yb2{bottom:699.185400px;}
.y27{bottom:701.032950px;}
.y48{bottom:714.798750px;}
.y5a{bottom:718.040850px;}
.yb1{bottom:719.743350px;}
.y26{bottom:721.282950px;}
.y47{bottom:735.048750px;}
.y71{bottom:738.290850px;}
.y7e{bottom:741.532950px;}
.y46{bottom:755.298750px;}
.yb0{bottom:757.309050px;}
.y25{bottom:758.540850px;}
.y6{bottom:765.553500px;}
.y45{bottom:775.548750px;}
.yaf{bottom:777.867150px;}
.y70{bottom:778.790850px;}
.y5{bottom:786.553500px;}
.y24{bottom:795.798750px;}
.yae{bottom:798.424950px;}
.y8f{bottom:799.040850px;}
.y4{bottom:807.553500px;}
.y23{bottom:816.048750px;}
.yad{bottom:835.990800px;}
.y22{bottom:836.298750px;}
.y21{bottom:856.548750px;}
.y3{bottom:880.653450px;}
.y2{bottom:880.653600px;}
.y1{bottom:893.253600px;}
.y1f{bottom:898.288950px;}
.y43{bottom:898.290300px;}
.y1e{bottom:898.309800px;}
.y42{bottom:898.311150px;}
.h7{height:21.743568px;}
.h2{height:29.610000px;}
.h6{height:32.634000px;}
.h5{height:37.296000px;}
.h8{height:42.540000px;}
.h4{height:46.620000px;}
.h3{height:55.944000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x4{left:114.803100px;}
.x3{left:170.078700px;}
.x1{left:441.664650px;}
.x2{left:445.759500px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls12{letter-spacing:-0.746667pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:-0.106667pt;}
.ls11{letter-spacing:-0.085333pt;}
.ls4{letter-spacing:-0.053333pt;}
.ls10{letter-spacing:-0.049749pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.026667pt;}
.ls8{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.080000pt;}
.ls9{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.133333pt;}
.ls5{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.266667pt;}
.ls6{letter-spacing:0.293333pt;}
.lsc{letter-spacing:0.320000pt;}
.lsf{letter-spacing:1.237333pt;}
.ws17{word-spacing:-10.933333pt;}
.wsd{word-spacing:-10.826667pt;}
.wsa{word-spacing:-10.666667pt;}
.ws18{word-spacing:-10.506667pt;}
.ws10{word-spacing:-9.770667pt;}
.ws11{word-spacing:-8.533333pt;}
.wse{word-spacing:-6.218667pt;}
.wsf{word-spacing:-4.925184pt;}
.wsc{word-spacing:-1.600000pt;}
.ws16{word-spacing:-0.693333pt;}
.ws7{word-spacing:-0.320000pt;}
.ws5{word-spacing:-0.266667pt;}
.wsb{word-spacing:-0.213333pt;}
.ws6{word-spacing:-0.160000pt;}
.ws9{word-spacing:-0.106667pt;}
.ws4{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:0.053333pt;}
.ws12{word-spacing:0.085333pt;}
.ws1{word-spacing:0.106667pt;}
.ws2{word-spacing:0.160000pt;}
.ws8{word-spacing:0.213333pt;}
.ws15{word-spacing:0.533333pt;}
.ws14{word-spacing:0.640000pt;}
.ws13{word-spacing:0.746667pt;}
.ws19{word-spacing:2.666667pt;}
._7{margin-left:-5.946133pt;}
._3{margin-left:-4.883733pt;}
._1{margin-left:-3.068267pt;}
._0{margin-left:-1.683733pt;}
._5{width:1.016533pt;}
._2{width:1.950400pt;}
._4{width:2.844267pt;}
._6{width:4.028267pt;}
.fs5{font-size:24.874667pt;}
.fs4{font-size:31.093333pt;}
.fs0{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:44.646133pt;}
.y20{bottom:48.446667pt;}
.yca{bottom:77.102400pt;}
.ya2{bottom:77.102533pt;}
.ya1{bottom:90.435867pt;}
.y8e{bottom:91.077333pt;}
.yac{bottom:94.668000pt;}
.yc9{bottom:95.376000pt;}
.ya0{bottom:107.321200pt;}
.y8d{bottom:109.077467pt;}
.y41{bottom:109.786133pt;}
.yc8{bottom:113.649733pt;}
.y6f{bottom:118.431733pt;}
.y1d{bottom:126.649467pt;}
.y8c{bottom:127.077467pt;}
.y40{bottom:127.786133pt;}
.yc7{bottom:131.923467pt;}
.y7d{bottom:133.549867pt;}
.y6e{bottom:136.431733pt;}
.y59{bottom:142.904133pt;}
.y1c{bottom:144.649467pt;}
.yab{bottom:145.786133pt;}
.yc6{bottom:150.197200pt;}
.y7c{bottom:151.549867pt;}
.y6d{bottom:154.431733pt;}
.y8b{bottom:160.195467pt;}
.y3f{bottom:160.904133pt;}
.yaa{bottom:163.786133pt;}
.yc5{bottom:168.470933pt;}
.y9f{bottom:169.549867pt;}
.y6c{bottom:172.431733pt;}
.y1b{bottom:177.767600pt;}
.y8a{bottom:178.195467pt;}
.y3e{bottom:178.904133pt;}
.ya9{bottom:181.786133pt;}
.y7b{bottom:184.668000pt;}
.y9e{bottom:187.549867pt;}
.y6b{bottom:190.431733pt;}
.y1a{bottom:195.767600pt;}
.y89{bottom:196.195467pt;}
.y3d{bottom:196.904133pt;}
.ya8{bottom:199.786133pt;}
.yc4{bottom:201.862667pt;}
.y7a{bottom:202.668000pt;}
.y9d{bottom:205.549867pt;}
.y6a{bottom:208.431733pt;}
.y19{bottom:213.767600pt;}
.y3c{bottom:214.904133pt;}
.yc3{bottom:220.136400pt;}
.y69{bottom:226.431733pt;}
.y88{bottom:229.313600pt;}
.y58{bottom:230.022267pt;}
.y18{bottom:231.767600pt;}
.y3b{bottom:232.904133pt;}
.y79{bottom:235.786133pt;}
.y9c{bottom:238.668000pt;}
.y68{bottom:244.431733pt;}
.y87{bottom:247.313600pt;}
.y17{bottom:249.767600pt;}
.y3a{bottom:250.904133pt;}
.yc2{bottom:253.528267pt;}
.y57{bottom:263.140400pt;}
.y16{bottom:267.767600pt;}
.y78{bottom:268.904133pt;}
.y9b{bottom:271.786133pt;}
.y67{bottom:277.549867pt;}
.y86{bottom:280.431733pt;}
.y56{bottom:281.140400pt;}
.y39{bottom:284.022267pt;}
.y15{bottom:285.767600pt;}
.y77{bottom:286.904133pt;}
.yc1{bottom:286.920133pt;}
.y9a{bottom:289.786133pt;}
.y55{bottom:299.140400pt;}
.y38{bottom:302.022267pt;}
.y14{bottom:303.767600pt;}
.y76{bottom:304.904133pt;}
.yc0{bottom:305.193733pt;}
.y99{bottom:307.786133pt;}
.y66{bottom:310.668000pt;}
.y85{bottom:313.549867pt;}
.y54{bottom:317.140400pt;}
.y13{bottom:321.767600pt;}
.y75{bottom:322.904133pt;}
.y98{bottom:325.786133pt;}
.y65{bottom:328.668000pt;}
.y37{bottom:335.140400pt;}
.ycc{bottom:338.022267pt;}
.ybf{bottom:338.585600pt;}
.y12{bottom:339.767600pt;}
.ya7{bottom:340.904133pt;}
.y97{bottom:343.786133pt;}
.y84{bottom:346.668000pt;}
.y36{bottom:353.140400pt;}
.y74{bottom:356.022267pt;}
.y11{bottom:357.767600pt;}
.ya6{bottom:358.904133pt;}
.y64{bottom:361.786133pt;}
.y83{bottom:364.668000pt;}
.y35{bottom:371.140400pt;}
.ybe{bottom:371.977467pt;}
.y73{bottom:374.022267pt;}
.y96{bottom:376.904133pt;}
.y63{bottom:379.786133pt;}
.y34{bottom:389.140400pt;}
.ybd{bottom:390.251200pt;}
.y10{bottom:390.885733pt;}
.ya5{bottom:392.022267pt;}
.y95{bottom:394.904133pt;}
.y62{bottom:397.786133pt;}
.y33{bottom:407.140400pt;}
.ybc{bottom:408.524800pt;}
.ya4{bottom:410.022267pt;}
.y94{bottom:412.904133pt;}
.y61{bottom:415.786133pt;}
.y53{bottom:422.258533pt;}
.yf{bottom:424.003733pt;}
.y32{bottom:425.140400pt;}
.ybb{bottom:426.798533pt;}
.ya3{bottom:428.022267pt;}
.y82{bottom:433.786000pt;}
.y52{bottom:440.258533pt;}
.ye{bottom:442.003733pt;}
.y31{bottom:443.140400pt;}
.y93{bottom:446.022267pt;}
.y60{bottom:448.904267pt;}
.y81{bottom:451.786000pt;}
.y51{bottom:458.258533pt;}
.yd{bottom:460.003733pt;}
.yba{bottom:460.190400pt;}
.y30{bottom:461.140400pt;}
.y92{bottom:464.022267pt;}
.y5f{bottom:466.904267pt;}
.y50{bottom:476.258533pt;}
.yc{bottom:478.003733pt;}
.yb9{bottom:478.464133pt;}
.y2f{bottom:479.140400pt;}
.y91{bottom:482.022267pt;}
.y5e{bottom:484.904267pt;}
.y4f{bottom:494.258533pt;}
.yb{bottom:496.003733pt;}
.yb8{bottom:496.737733pt;}
.y2e{bottom:497.140400pt;}
.y90{bottom:500.022267pt;}
.y5d{bottom:502.904267pt;}
.y4e{bottom:512.258533pt;}
.ya{bottom:514.003733pt;}
.y2d{bottom:515.140400pt;}
.y80{bottom:518.022267pt;}
.yb7{bottom:530.129600pt;}
.y4d{bottom:530.258533pt;}
.y9{bottom:532.003733pt;}
.y2c{bottom:533.140400pt;}
.y5c{bottom:536.022267pt;}
.y4c{bottom:548.258533pt;}
.yb6{bottom:548.403333pt;}
.y2b{bottom:551.140400pt;}
.y5b{bottom:554.022267pt;}
.y8{bottom:565.121867pt;}
.y4b{bottom:566.258533pt;}
.yb5{bottom:566.677067pt;}
.y2a{bottom:569.140400pt;}
.y7f{bottom:572.022267pt;}
.y7{bottom:583.121867pt;}
.y4a{bottom:584.258533pt;}
.yb4{bottom:584.950667pt;}
.y29{bottom:587.140400pt;}
.y49{bottom:602.258533pt;}
.yb3{bottom:603.224400pt;}
.y28{bottom:605.140400pt;}
.ycb{bottom:617.376667pt;}
.y72{bottom:620.258533pt;}
.yb2{bottom:621.498133pt;}
.y27{bottom:623.140400pt;}
.y48{bottom:635.376667pt;}
.y5a{bottom:638.258533pt;}
.yb1{bottom:639.771867pt;}
.y26{bottom:641.140400pt;}
.y47{bottom:653.376667pt;}
.y71{bottom:656.258533pt;}
.y7e{bottom:659.140400pt;}
.y46{bottom:671.376667pt;}
.yb0{bottom:673.163600pt;}
.y25{bottom:674.258533pt;}
.y6{bottom:680.492000pt;}
.y45{bottom:689.376667pt;}
.yaf{bottom:691.437467pt;}
.y70{bottom:692.258533pt;}
.y5{bottom:699.158667pt;}
.y24{bottom:707.376667pt;}
.yae{bottom:709.711067pt;}
.y8f{bottom:710.258533pt;}
.y4{bottom:717.825333pt;}
.y23{bottom:725.376667pt;}
.yad{bottom:743.102933pt;}
.y22{bottom:743.376667pt;}
.y21{bottom:761.376667pt;}
.y3{bottom:782.803067pt;}
.y2{bottom:782.803200pt;}
.y1{bottom:794.003200pt;}
.y1f{bottom:798.479067pt;}
.y43{bottom:798.480267pt;}
.y1e{bottom:798.497600pt;}
.y42{bottom:798.498800pt;}
.h7{height:19.327616pt;}
.h2{height:26.320000pt;}
.h6{height:29.008000pt;}
.h5{height:33.152000pt;}
.h8{height:37.813333pt;}
.h4{height:41.440000pt;}
.h3{height:49.728000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x4{left:102.047200pt;}
.x3{left:151.181067pt;}
.x1{left:392.590800pt;}
.x2{left:396.230667pt;}
}




    .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; }
  