
    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_3878975556f1a07cdd1738b4.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_6f99594e3e5886d750f156de.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_edffb58d6717e342d241e7be.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_89644aa03051e3149319f061.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.956000;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_625e6b95c3a549242ffe60cf.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_d00f147241d27e77f22df3de.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_fd56dcaecf578d763eb2dac8.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_625e6b95c3a549242ffe60cf.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;}
.m4{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);}
.m45{transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.mc{transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247902,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248018,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);}
.m39{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);}
.m37{transform:matrix(0.248488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248488,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248610,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248645,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248663,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248885,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248947,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249188,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249213,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249360,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249488,0.000000,0.000000,0.250000,0,0);}
.m47{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);}
.m2e{transform:matrix(0.249553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249553,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m42{transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);}
.m2a{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);}
.m7{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);}
.m48{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m4f{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);}
.mf{transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250065,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m19{transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250590,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m15{transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250960,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251040,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251310,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251338,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251697,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251880,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251922,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251960,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252040,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.252142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252142,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);}
.m3{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;}
.ls9{letter-spacing:-0.300000px;}
.ls6{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.120000px;}
.ls10{letter-spacing:-0.069960px;}
.ls7{letter-spacing:-0.060000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.240000px;}
.lsc{letter-spacing:0.300000px;}
.lsf{letter-spacing:0.360000px;}
.lse{letter-spacing:0.420000px;}
.ls0{letter-spacing:0.480000px;}
.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;}
}
.ws10{word-spacing:-12.000000px;}
.ws2a{word-spacing:-11.940000px;}
.ws0{word-spacing:-9.600000px;}
.ws1f{word-spacing:-5.596800px;}
.ws37{word-spacing:-1.920000px;}
.ws12{word-spacing:-1.860000px;}
.ws3{word-spacing:-1.800000px;}
.ws15{word-spacing:-1.740000px;}
.ws39{word-spacing:-1.620000px;}
.ws2{word-spacing:-1.440000px;}
.ws26{word-spacing:-1.320000px;}
.ws35{word-spacing:-1.260000px;}
.ws25{word-spacing:-1.080000px;}
.ws38{word-spacing:-1.020000px;}
.ws3a{word-spacing:-0.900000px;}
.ws29{word-spacing:-0.840000px;}
.ws2c{word-spacing:-0.720000px;}
.ws31{word-spacing:-0.540000px;}
.ws32{word-spacing:-0.300000px;}
.ws24{word-spacing:-0.240000px;}
.wsa{word-spacing:-0.180000px;}
.ws17{word-spacing:-0.120000px;}
.ws1e{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:0.060000px;}
.ws36{word-spacing:0.069960px;}
.ws11{word-spacing:0.120000px;}
.wsc{word-spacing:0.180000px;}
.ws6{word-spacing:0.240000px;}
.wsf{word-spacing:0.300000px;}
.ws33{word-spacing:0.420000px;}
.wsd{word-spacing:0.480000px;}
.ws14{word-spacing:0.540000px;}
.ws30{word-spacing:0.600000px;}
.ws2b{word-spacing:0.660000px;}
.ws2f{word-spacing:0.720000px;}
.ws20{word-spacing:0.780000px;}
.ws21{word-spacing:0.840000px;}
.ws9{word-spacing:0.900000px;}
.ws19{word-spacing:0.960000px;}
.ws2d{word-spacing:1.140000px;}
.ws18{word-spacing:1.200000px;}
.ws23{word-spacing:1.260000px;}
.ws8{word-spacing:1.320000px;}
.wse{word-spacing:1.500000px;}
.ws13{word-spacing:1.620000px;}
.ws5{word-spacing:1.860000px;}
.ws1c{word-spacing:1.980000px;}
.ws28{word-spacing:2.040000px;}
.ws2e{word-spacing:2.100000px;}
.ws16{word-spacing:2.340000px;}
.ws7{word-spacing:2.400000px;}
.ws1b{word-spacing:2.460000px;}
.ws1a{word-spacing:2.700000px;}
.ws22{word-spacing:2.760000px;}
.ws27{word-spacing:3.000000px;}
.ws34{word-spacing:3.480000px;}
.ws1d{word-spacing:4.080000px;}
.ws4{word-spacing:4.800000px;}
._5{margin-left:-5.386800px;}
._1{margin-left:-4.286400px;}
._2{margin-left:-2.438400px;}
._0{margin-left:-1.180800px;}
._3{width:1.052400px;}
._6{width:2.095200px;}
._4{width:3.104400px;}
._7{width:4.324800px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:27.984000px;}
.fs5{font-size:34.980000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs3{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:50.226900px;}
.y25{bottom:54.502500px;}
.y2{bottom:86.740200px;}
.y1{bottom:101.740200px;}
.y70{bottom:105.736200px;}
.y93{bottom:107.216400px;}
.y4a{bottom:107.295600px;}
.y92{bottom:127.692600px;}
.y49{bottom:127.850850px;}
.y91{bottom:148.168650px;}
.y48{bottom:148.406250px;}
.y22{bottom:153.264150px;}
.y6f{bottom:155.632950px;}
.y90{bottom:168.644850px;}
.y47{bottom:168.961650px;}
.y21{bottom:173.514150px;}
.y6e{bottom:175.882950px;}
.y8f{bottom:189.121050px;}
.y46{bottom:189.517050px;}
.y20{bottom:193.764150px;}
.y6d{bottom:196.132950px;}
.y8e{bottom:209.597250px;}
.y45{bottom:210.072450px;}
.y1f{bottom:214.014150px;}
.y6c{bottom:216.382950px;}
.y8d{bottom:230.073450px;}
.y44{bottom:230.627850px;}
.y1e{bottom:234.264150px;}
.y6b{bottom:236.632950px;}
.y8c{bottom:250.549650px;}
.y43{bottom:251.183250px;}
.y1d{bottom:254.514150px;}
.y6a{bottom:256.882950px;}
.y8b{bottom:271.025850px;}
.y42{bottom:271.738650px;}
.y1c{bottom:274.764150px;}
.y69{bottom:277.132950px;}
.y8a{bottom:291.502050px;}
.y41{bottom:292.294050px;}
.y1b{bottom:295.014150px;}
.y68{bottom:297.382950px;}
.y89{bottom:311.978250px;}
.y40{bottom:312.849450px;}
.y1a{bottom:315.264150px;}
.y67{bottom:317.632950px;}
.y88{bottom:332.454450px;}
.y3f{bottom:333.404850px;}
.y19{bottom:335.514150px;}
.y66{bottom:337.882950px;}
.y87{bottom:352.930650px;}
.y3e{bottom:353.960250px;}
.y18{bottom:355.764150px;}
.y65{bottom:358.132950px;}
.y86{bottom:373.406850px;}
.y3d{bottom:374.515650px;}
.y17{bottom:376.014150px;}
.y64{bottom:378.382950px;}
.y85{bottom:393.883050px;}
.y3c{bottom:395.070900px;}
.y16{bottom:396.264150px;}
.y63{bottom:398.632950px;}
.y84{bottom:414.359100px;}
.y3b{bottom:415.626450px;}
.y15{bottom:416.514150px;}
.y62{bottom:418.882950px;}
.y83{bottom:434.835300px;}
.y3a{bottom:436.181700px;}
.y14{bottom:436.764150px;}
.y61{bottom:439.132950px;}
.y82{bottom:455.311500px;}
.y39{bottom:456.737100px;}
.y13{bottom:457.014150px;}
.y60{bottom:459.382950px;}
.y81{bottom:475.787700px;}
.y12{bottom:477.264150px;}
.y38{bottom:477.292500px;}
.y5f{bottom:479.632950px;}
.y80{bottom:496.263900px;}
.y11{bottom:497.514150px;}
.y37{bottom:497.847900px;}
.y5e{bottom:499.882950px;}
.y7f{bottom:516.740100px;}
.y10{bottom:517.764150px;}
.y36{bottom:518.403300px;}
.y5d{bottom:520.132950px;}
.y98{bottom:537.216300px;}
.yf{bottom:538.014150px;}
.y35{bottom:538.958700px;}
.y5c{bottom:540.382950px;}
.y7e{bottom:545.720250px;}
.y97{bottom:557.692500px;}
.ye{bottom:558.264150px;}
.y34{bottom:559.514100px;}
.y5b{bottom:560.632950px;}
.y96{bottom:578.168700px;}
.yd{bottom:578.514150px;}
.y33{bottom:580.069500px;}
.y5a{bottom:580.882950px;}
.y7d{bottom:590.358150px;}
.yc{bottom:598.764150px;}
.y32{bottom:600.624900px;}
.y59{bottom:601.132950px;}
.y95{bottom:607.148850px;}
.y7c{bottom:610.834500px;}
.yb{bottom:619.014150px;}
.y31{bottom:621.180300px;}
.y58{bottom:621.382950px;}
.y7b{bottom:631.310550px;}
.ya{bottom:639.264150px;}
.y57{bottom:641.632950px;}
.y30{bottom:641.735700px;}
.y7a{bottom:651.786750px;}
.y56{bottom:661.882950px;}
.y2f{bottom:662.290950px;}
.y79{bottom:672.263100px;}
.y55{bottom:682.132950px;}
.y2e{bottom:682.846500px;}
.y78{bottom:692.739150px;}
.y94{bottom:697.734150px;}
.y54{bottom:702.382950px;}
.y2d{bottom:703.401750px;}
.y77{bottom:713.215350px;}
.y2c{bottom:723.957150px;}
.y53{bottom:731.136900px;}
.y9{bottom:731.797650px;}
.y76{bottom:733.691550px;}
.y2b{bottom:744.512550px;}
.y8{bottom:752.797650px;}
.y75{bottom:754.167750px;}
.y2a{bottom:765.067950px;}
.y7{bottom:773.797650px;}
.y74{bottom:774.643950px;}
.y52{bottom:775.548750px;}
.y29{bottom:785.623350px;}
.y73{bottom:795.120150px;}
.y51{bottom:795.798750px;}
.y28{bottom:806.178750px;}
.y6{bottom:807.553500px;}
.y72{bottom:815.596350px;}
.y50{bottom:816.048750px;}
.y27{bottom:826.734150px;}
.y71{bottom:836.072550px;}
.y4f{bottom:836.298750px;}
.y26{bottom:855.793500px;}
.y4e{bottom:856.548750px;}
.y5{bottom:880.653450px;}
.y4{bottom:880.653600px;}
.y3{bottom:893.253600px;}
.y24{bottom:898.288950px;}
.y4c{bottom:898.290300px;}
.y23{bottom:898.309800px;}
.y4b{bottom:898.311150px;}
.h7{height:23.450592px;}
.h8{height:29.313240px;}
.h3{height:35.196000px;}
.h2{height:40.224000px;}
.h4{height:50.280000px;}
.h6{height:52.794000px;}
.h5{height:60.336000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x5{left:114.803100px;}
.x1{left:170.078700px;}
.x7{left:184.360650px;}
.x4{left:191.338500px;}
.x2{left:441.664650px;}
.x3{left:475.022400px;}
.x6{left:569.932950px;}
@media print{
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls9{letter-spacing:-0.266667pt;}
.ls6{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.106667pt;}
.ls10{letter-spacing:-0.062187pt;}
.ls7{letter-spacing:-0.053333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.213333pt;}
.lsc{letter-spacing:0.266667pt;}
.lsf{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.373333pt;}
.ls0{letter-spacing:0.426667pt;}
.ws10{word-spacing:-10.666667pt;}
.ws2a{word-spacing:-10.613333pt;}
.ws0{word-spacing:-8.533333pt;}
.ws1f{word-spacing:-4.974933pt;}
.ws37{word-spacing:-1.706667pt;}
.ws12{word-spacing:-1.653333pt;}
.ws3{word-spacing:-1.600000pt;}
.ws15{word-spacing:-1.546667pt;}
.ws39{word-spacing:-1.440000pt;}
.ws2{word-spacing:-1.280000pt;}
.ws26{word-spacing:-1.173333pt;}
.ws35{word-spacing:-1.120000pt;}
.ws25{word-spacing:-0.960000pt;}
.ws38{word-spacing:-0.906667pt;}
.ws3a{word-spacing:-0.800000pt;}
.ws29{word-spacing:-0.746667pt;}
.ws2c{word-spacing:-0.640000pt;}
.ws31{word-spacing:-0.480000pt;}
.ws32{word-spacing:-0.266667pt;}
.ws24{word-spacing:-0.213333pt;}
.wsa{word-spacing:-0.160000pt;}
.ws17{word-spacing:-0.106667pt;}
.ws1e{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:0.053333pt;}
.ws36{word-spacing:0.062187pt;}
.ws11{word-spacing:0.106667pt;}
.wsc{word-spacing:0.160000pt;}
.ws6{word-spacing:0.213333pt;}
.wsf{word-spacing:0.266667pt;}
.ws33{word-spacing:0.373333pt;}
.wsd{word-spacing:0.426667pt;}
.ws14{word-spacing:0.480000pt;}
.ws30{word-spacing:0.533333pt;}
.ws2b{word-spacing:0.586667pt;}
.ws2f{word-spacing:0.640000pt;}
.ws20{word-spacing:0.693333pt;}
.ws21{word-spacing:0.746667pt;}
.ws9{word-spacing:0.800000pt;}
.ws19{word-spacing:0.853333pt;}
.ws2d{word-spacing:1.013333pt;}
.ws18{word-spacing:1.066667pt;}
.ws23{word-spacing:1.120000pt;}
.ws8{word-spacing:1.173333pt;}
.wse{word-spacing:1.333333pt;}
.ws13{word-spacing:1.440000pt;}
.ws5{word-spacing:1.653333pt;}
.ws1c{word-spacing:1.760000pt;}
.ws28{word-spacing:1.813333pt;}
.ws2e{word-spacing:1.866667pt;}
.ws16{word-spacing:2.080000pt;}
.ws7{word-spacing:2.133333pt;}
.ws1b{word-spacing:2.186667pt;}
.ws1a{word-spacing:2.400000pt;}
.ws22{word-spacing:2.453333pt;}
.ws27{word-spacing:2.666667pt;}
.ws34{word-spacing:3.093333pt;}
.ws1d{word-spacing:3.626667pt;}
.ws4{word-spacing:4.266667pt;}
._5{margin-left:-4.788267pt;}
._1{margin-left:-3.810133pt;}
._2{margin-left:-2.167467pt;}
._0{margin-left:-1.049600pt;}
._3{width:0.935467pt;}
._6{width:1.862400pt;}
._4{width:2.759467pt;}
._7{width:3.844267pt;}
.fs6{font-size:24.874667pt;}
.fs5{font-size:31.093333pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs3{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:44.646133pt;}
.y25{bottom:48.446667pt;}
.y2{bottom:77.102400pt;}
.y1{bottom:90.435733pt;}
.y70{bottom:93.987733pt;}
.y93{bottom:95.303467pt;}
.y4a{bottom:95.373867pt;}
.y92{bottom:113.504533pt;}
.y49{bottom:113.645200pt;}
.y91{bottom:131.705467pt;}
.y48{bottom:131.916667pt;}
.y22{bottom:136.234800pt;}
.y6f{bottom:138.340400pt;}
.y90{bottom:149.906533pt;}
.y47{bottom:150.188133pt;}
.y21{bottom:154.234800pt;}
.y6e{bottom:156.340400pt;}
.y8f{bottom:168.107600pt;}
.y46{bottom:168.459600pt;}
.y20{bottom:172.234800pt;}
.y6d{bottom:174.340400pt;}
.y8e{bottom:186.308667pt;}
.y45{bottom:186.731067pt;}
.y1f{bottom:190.234800pt;}
.y6c{bottom:192.340400pt;}
.y8d{bottom:204.509733pt;}
.y44{bottom:205.002533pt;}
.y1e{bottom:208.234800pt;}
.y6b{bottom:210.340400pt;}
.y8c{bottom:222.710800pt;}
.y43{bottom:223.274000pt;}
.y1d{bottom:226.234800pt;}
.y6a{bottom:228.340400pt;}
.y8b{bottom:240.911867pt;}
.y42{bottom:241.545467pt;}
.y1c{bottom:244.234800pt;}
.y69{bottom:246.340400pt;}
.y8a{bottom:259.112933pt;}
.y41{bottom:259.816933pt;}
.y1b{bottom:262.234800pt;}
.y68{bottom:264.340400pt;}
.y89{bottom:277.314000pt;}
.y40{bottom:278.088400pt;}
.y1a{bottom:280.234800pt;}
.y67{bottom:282.340400pt;}
.y88{bottom:295.515067pt;}
.y3f{bottom:296.359867pt;}
.y19{bottom:298.234800pt;}
.y66{bottom:300.340400pt;}
.y87{bottom:313.716133pt;}
.y3e{bottom:314.631333pt;}
.y18{bottom:316.234800pt;}
.y65{bottom:318.340400pt;}
.y86{bottom:331.917200pt;}
.y3d{bottom:332.902800pt;}
.y17{bottom:334.234800pt;}
.y64{bottom:336.340400pt;}
.y85{bottom:350.118267pt;}
.y3c{bottom:351.174133pt;}
.y16{bottom:352.234800pt;}
.y63{bottom:354.340400pt;}
.y84{bottom:368.319200pt;}
.y3b{bottom:369.445733pt;}
.y15{bottom:370.234800pt;}
.y62{bottom:372.340400pt;}
.y83{bottom:386.520267pt;}
.y3a{bottom:387.717067pt;}
.y14{bottom:388.234800pt;}
.y61{bottom:390.340400pt;}
.y82{bottom:404.721333pt;}
.y39{bottom:405.988533pt;}
.y13{bottom:406.234800pt;}
.y60{bottom:408.340400pt;}
.y81{bottom:422.922400pt;}
.y12{bottom:424.234800pt;}
.y38{bottom:424.260000pt;}
.y5f{bottom:426.340400pt;}
.y80{bottom:441.123467pt;}
.y11{bottom:442.234800pt;}
.y37{bottom:442.531467pt;}
.y5e{bottom:444.340400pt;}
.y7f{bottom:459.324533pt;}
.y10{bottom:460.234800pt;}
.y36{bottom:460.802933pt;}
.y5d{bottom:462.340400pt;}
.y98{bottom:477.525600pt;}
.yf{bottom:478.234800pt;}
.y35{bottom:479.074400pt;}
.y5c{bottom:480.340400pt;}
.y7e{bottom:485.084667pt;}
.y97{bottom:495.726667pt;}
.ye{bottom:496.234800pt;}
.y34{bottom:497.345867pt;}
.y5b{bottom:498.340400pt;}
.y96{bottom:513.927733pt;}
.yd{bottom:514.234800pt;}
.y33{bottom:515.617333pt;}
.y5a{bottom:516.340400pt;}
.y7d{bottom:524.762800pt;}
.yc{bottom:532.234800pt;}
.y32{bottom:533.888800pt;}
.y59{bottom:534.340400pt;}
.y95{bottom:539.687867pt;}
.y7c{bottom:542.964000pt;}
.yb{bottom:550.234800pt;}
.y31{bottom:552.160267pt;}
.y58{bottom:552.340400pt;}
.y7b{bottom:561.164933pt;}
.ya{bottom:568.234800pt;}
.y57{bottom:570.340400pt;}
.y30{bottom:570.431733pt;}
.y7a{bottom:579.366000pt;}
.y56{bottom:588.340400pt;}
.y2f{bottom:588.703067pt;}
.y79{bottom:597.567200pt;}
.y55{bottom:606.340400pt;}
.y2e{bottom:606.974667pt;}
.y78{bottom:615.768133pt;}
.y94{bottom:620.208133pt;}
.y54{bottom:624.340400pt;}
.y2d{bottom:625.246000pt;}
.y77{bottom:633.969200pt;}
.y2c{bottom:643.517467pt;}
.y53{bottom:649.899467pt;}
.y9{bottom:650.486800pt;}
.y76{bottom:652.170267pt;}
.y2b{bottom:661.788933pt;}
.y8{bottom:669.153467pt;}
.y75{bottom:670.371333pt;}
.y2a{bottom:680.060400pt;}
.y7{bottom:687.820133pt;}
.y74{bottom:688.572400pt;}
.y52{bottom:689.376667pt;}
.y29{bottom:698.331867pt;}
.y73{bottom:706.773467pt;}
.y51{bottom:707.376667pt;}
.y28{bottom:716.603333pt;}
.y6{bottom:717.825333pt;}
.y72{bottom:724.974533pt;}
.y50{bottom:725.376667pt;}
.y27{bottom:734.874800pt;}
.y71{bottom:743.175600pt;}
.y4f{bottom:743.376667pt;}
.y26{bottom:760.705333pt;}
.y4e{bottom:761.376667pt;}
.y5{bottom:782.803067pt;}
.y4{bottom:782.803200pt;}
.y3{bottom:794.003200pt;}
.y24{bottom:798.479067pt;}
.y4c{bottom:798.480267pt;}
.y23{bottom:798.497600pt;}
.y4b{bottom:798.498800pt;}
.h7{height:20.844971pt;}
.h8{height:26.056213pt;}
.h3{height:31.285333pt;}
.h2{height:35.754667pt;}
.h4{height:44.693333pt;}
.h6{height:46.928000pt;}
.h5{height:53.632000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x5{left:102.047200pt;}
.x1{left:151.181067pt;}
.x7{left:163.876133pt;}
.x4{left:170.078667pt;}
.x2{left:392.590800pt;}
.x3{left:422.242133pt;}
.x6{left:506.607067pt;}
}




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