
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_b1b08182410c27547aadef9d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.046387;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_2b82ec58d48d604c16495409.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_29ad799bdba715fc274e9632.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_4072a4bbd86daa7b22107f1d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065918;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_31e7785070eeed3552886b83.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.966309;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_b90efaa693ef9dc2782ca673.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.046387;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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;}
.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);}
.m10{transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272725,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.274200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274200,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.283325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283325,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285725,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.307150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307150,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.308325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308325,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.308825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308825,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.310600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310600,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.318175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318175,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.324325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324325,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333325,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.356050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356050,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls7{letter-spacing:-1.008000px;}
.ls1a{letter-spacing:-0.840000px;}
.ls2c{letter-spacing:-0.324600px;}
.lse{letter-spacing:-0.267000px;}
.lsa{letter-spacing:-0.226200px;}
.ls2a{letter-spacing:-0.194400px;}
.ls19{letter-spacing:-0.180000px;}
.ls21{letter-spacing:-0.121800px;}
.ls12{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.089400px;}
.lsc{letter-spacing:-0.073200px;}
.ls11{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.042540px;}
.ls30{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.077400px;}
.ls27{letter-spacing:0.100200px;}
.ls25{letter-spacing:0.102600px;}
.ls16{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.206400px;}
.ls13{letter-spacing:0.239040px;}
.ls1c{letter-spacing:0.254400px;}
.ls10{letter-spacing:0.259200px;}
.ls2b{letter-spacing:0.281400px;}
.ls15{letter-spacing:0.291000px;}
.ls18{letter-spacing:0.323400px;}
.ls3{letter-spacing:0.345000px;}
.ls0{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.413400px;}
.ls17{letter-spacing:0.471600px;}
.ls14{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.490800px;}
.ls22{letter-spacing:0.537840px;}
.ls29{letter-spacing:0.581400px;}
.ls2f{letter-spacing:0.714000px;}
.ls9{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.726000px;}
.lsf{letter-spacing:0.828000px;}
.ls1d{letter-spacing:0.942000px;}
.ls1b{letter-spacing:1.452000px;}
.ls1e{letter-spacing:3.040735px;}
.ls23{letter-spacing:7.661417px;}
.ls2e{letter-spacing:8.820000px;}
.ls24{letter-spacing:13.440000px;}
.ls1f{letter-spacing:201.204000px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws16{word-spacing:-16.392000px;}
.ws18{word-spacing:-15.882000px;}
.ws19{word-spacing:-15.666000px;}
.ws20{word-spacing:-15.654000px;}
.ws15{word-spacing:-15.420000px;}
.ws1f{word-spacing:-15.353400px;}
.ws1{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.263400px;}
.ws1e{word-spacing:-15.221400px;}
.ws17{word-spacing:-15.194400px;}
.ws14{word-spacing:-15.179040px;}
.ws1a{word-spacing:-15.146400px;}
.wsd{word-spacing:-15.048000px;}
.ws1b{word-spacing:-15.040200px;}
.ws1c{word-spacing:-15.017400px;}
.ws21{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.760000px;}
.ws1d{word-spacing:-14.745600px;}
.wsc{word-spacing:-14.565000px;}
.wse{word-spacing:-14.479200px;}
.wsb{word-spacing:-14.220000px;}
.ws7{word-spacing:-13.990800px;}
.ws8{word-spacing:-13.542540px;}
.wsa{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.392000px;}
.ws9{word-spacing:-13.233000px;}
.ws4{word-spacing:-11.160000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.213800px;}
.ws2{word-spacing:-9.720000px;}
.wsf{word-spacing:-8.928000px;}
.ws11{word-spacing:0.000000px;}
._b{margin-left:-2.453936px;}
._0{margin-left:-1.093680px;}
._1{width:1.099440px;}
._9{width:2.382820px;}
._a{width:3.383985px;}
._16{width:4.435913px;}
._14{width:5.593680px;}
._11{width:6.940080px;}
._12{width:8.094240px;}
._13{width:9.423360px;}
._15{width:10.902240px;}
._4{width:12.368444px;}
._18{width:13.496836px;}
._5{width:14.631175px;}
._6{width:15.687818px;}
._7{width:16.762615px;}
._8{width:18.306000px;}
._f{width:19.504520px;}
._c{width:20.651280px;}
._e{width:22.230827px;}
._d{width:23.302080px;}
._19{width:24.585840px;}
._2{width:29.430000px;}
._10{width:31.227840px;}
._3{width:40.170044px;}
._17{width:260.220000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,176,240);}
.fc1{color:rgb(0,112,192);}
.fc5{color:rgb(35,31,32);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.760000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:2.340000px;}
.y43{bottom:3.060000px;}
.y6e{bottom:3.240000px;}
.y5{bottom:3.780000px;}
.y73{bottom:3.960000px;}
.y6c{bottom:4.320000px;}
.y5b{bottom:5.010000px;}
.yb9{bottom:6.300000px;}
.ybb{bottom:6.480000px;}
.y2{bottom:9.900000px;}
.y4d{bottom:10.260000px;}
.y42{bottom:19.440000px;}
.yb7{bottom:20.520000px;}
.y4{bottom:22.710000px;}
.y59{bottom:28.620000px;}
.y41{bottom:36.000000px;}
.y4c{bottom:39.960000px;}
.y58{bottom:45.360000px;}
.y3{bottom:47.910000px;}
.y4b{bottom:51.120000px;}
.y40{bottom:53.100000px;}
.y7{bottom:57.060000px;}
.y4a{bottom:63.000000px;}
.y57{bottom:63.180000px;}
.y3f{bottom:69.480000px;}
.y49{bottom:75.960000px;}
.y56{bottom:78.660000px;}
.y3e{bottom:85.860000px;}
.y48{bottom:88.920000px;}
.y95{bottom:90.540000px;}
.y55{bottom:91.620000px;}
.y44{bottom:96.300000px;}
.y7a{bottom:97.380000px;}
.y54{bottom:98.100000px;}
.y3d{bottom:102.240000px;}
.y94{bottom:107.640000px;}
.y47{bottom:110.910000px;}
.y53{bottom:113.790000px;}
.y79{bottom:114.660000px;}
.y3c{bottom:118.620000px;}
.y93{bottom:124.920000px;}
.y52{bottom:129.270000px;}
.y78{bottom:131.940000px;}
.y3b{bottom:135.045000px;}
.y92{bottom:142.200000px;}
.y51{bottom:144.750000px;}
.y77{bottom:145.980000px;}
.y3a{bottom:151.425000px;}
.y91{bottom:159.480000px;}
.y50{bottom:160.230000px;}
.y39{bottom:167.805000px;}
.y46{bottom:173.010000px;}
.y4f{bottom:175.890000px;}
.y90{bottom:176.760000px;}
.y45{bottom:183.630000px;}
.y38{bottom:184.185000px;}
.y8f{bottom:193.860000px;}
.y37{bottom:200.565000px;}
.y8e{bottom:211.170000px;}
.y36{bottom:216.945000px;}
.y8d{bottom:228.450000px;}
.y35{bottom:233.325000px;}
.y8c{bottom:245.730000px;}
.y34{bottom:249.705000px;}
.y1f{bottom:259.425000px;}
.y8b{bottom:263.010000px;}
.y33{bottom:266.085000px;}
.y8a{bottom:280.290000px;}
.y32{bottom:282.465000px;}
.y1e{bottom:283.545000px;}
.y89{bottom:297.390000px;}
.y31{bottom:298.845000px;}
.y1d{bottom:307.665000px;}
.y11{bottom:309.990000px;}
.y88{bottom:314.670000px;}
.y30{bottom:315.225000px;}
.y2f{bottom:331.605000px;}
.y1c{bottom:331.785000px;}
.y87{bottom:331.950000px;}
.y2e{bottom:347.985000px;}
.y86{bottom:349.230000px;}
.y1b{bottom:355.905000px;}
.y2d{bottom:364.395000px;}
.y85{bottom:366.510000px;}
.y1a{bottom:380.055000px;}
.y2c{bottom:380.775000px;}
.y84{bottom:383.790000px;}
.y2b{bottom:397.155000px;}
.y83{bottom:397.650000px;}
.y19{bottom:404.355000px;}
.y2a{bottom:413.715000px;}
.yb5{bottom:417.270000px;}
.y18{bottom:428.475000px;}
.y29{bottom:430.095000px;}
.yb4{bottom:434.550000px;}
.y76{bottom:443.955000px;}
.y28{bottom:446.295000px;}
.yb3{bottom:451.695000px;}
.y17{bottom:452.595000px;}
.y75{bottom:461.235000px;}
.y27{bottom:461.775000px;}
.yb2{bottom:468.975000px;}
.y16{bottom:476.715000px;}
.y26{bottom:477.255000px;}
.y74{bottom:478.515000px;}
.yb1{bottom:486.255000px;}
.y25{bottom:492.915000px;}
.y15{bottom:500.835000px;}
.yb0{bottom:503.535000px;}
.y24{bottom:508.395000px;}
.yaf{bottom:520.815000px;}
.y23{bottom:523.875000px;}
.y14{bottom:524.955000px;}
.yae{bottom:537.915000px;}
.y22{bottom:539.355000px;}
.y13{bottom:549.255000px;}
.y21{bottom:554.835000px;}
.yad{bottom:555.195000px;}
.y20{bottom:570.495000px;}
.yac{bottom:572.475000px;}
.y12{bottom:573.375000px;}
.yab{bottom:589.755000px;}
.yaa{bottom:607.035000px;}
.ya9{bottom:624.315000px;}
.ya8{bottom:641.415000px;}
.ya7{bottom:658.695000px;}
.ya6{bottom:676.005000px;}
.ya5{bottom:693.285000px;}
.ya4{bottom:710.565000px;}
.y82{bottom:713.805000px;}
.ya3{bottom:727.845000px;}
.y81{bottom:731.085000px;}
.y72{bottom:734.865000px;}
.ya2{bottom:744.945000px;}
.y80{bottom:748.365000px;}
.y71{bottom:753.585000px;}
.y7f{bottom:762.225000px;}
.y70{bottom:771.585000px;}
.ya1{bottom:779.505000px;}
.y6f{bottom:789.585000px;}
.ya0{bottom:796.785000px;}
.y6d{bottom:807.585000px;}
.y9f{bottom:814.065000px;}
.y6b{bottom:825.585000px;}
.y9e{bottom:831.345000px;}
.y6a{bottom:847.905000px;}
.y9d{bottom:848.445000px;}
.y69{bottom:865.185000px;}
.y9c{bottom:865.725000px;}
.y68{bottom:882.465000px;}
.y9b{bottom:883.005000px;}
.y10{bottom:898.485000px;}
.y67{bottom:899.565000px;}
.y9a{bottom:900.285000px;}
.yf{bottom:915.810000px;}
.y66{bottom:916.890000px;}
.y99{bottom:917.610000px;}
.ye{bottom:933.090000px;}
.y65{bottom:934.170000px;}
.y98{bottom:934.710000px;}
.y64{bottom:951.450000px;}
.y97{bottom:951.990000px;}
.yd{bottom:955.590000px;}
.y63{bottom:968.730000px;}
.y96{bottom:969.270000px;}
.yc{bottom:972.870000px;}
.yba{bottom:984.030000px;}
.yb{bottom:984.750000px;}
.y62{bottom:986.010000px;}
.y61{bottom:1003.110000px;}
.yb8{bottom:1005.270000px;}
.ya{bottom:1017.330000px;}
.y60{bottom:1020.390000px;}
.y7e{bottom:1024.350000px;}
.yb6{bottom:1026.330000px;}
.y5f{bottom:1037.670000px;}
.y7d{bottom:1041.630000px;}
.y9{bottom:1043.250000px;}
.y5e{bottom:1054.950000px;}
.y7c{bottom:1058.730000px;}
.y8{bottom:1071.870000px;}
.y5d{bottom:1072.230000px;}
.y5a{bottom:1075.140000px;}
.y7b{bottom:1089.330000px;}
.y5c{bottom:1089.510000px;}
.y6{bottom:1107.870000px;}
.y1{bottom:1123.530000px;}
.h16{height:4.896563px;}
.h1a{height:17.280000px;}
.h1b{height:18.000000px;}
.h19{height:18.360000px;}
.h1e{height:20.340000px;}
.h14{height:25.116328px;}
.h17{height:27.720000px;}
.h12{height:29.464453px;}
.h13{height:29.900391px;}
.ha{height:32.292422px;}
.h1d{height:34.560000px;}
.hd{height:34.684453px;}
.h15{height:38.100586px;}
.he{height:38.997070px;}
.h7{height:40.132617px;}
.hb{height:42.164648px;}
.h1c{height:43.506914px;}
.hf{height:45.905273px;}
.h10{height:47.242617px;}
.h9{height:48.312422px;}
.h6{height:49.634648px;}
.h5{height:55.016719px;}
.h8{height:59.436914px;}
.h18{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h11{height:212.970000px;}
.hc{height:583.095000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:48.600000px;}
.wc{width:53.820000px;}
.w2{width:104.076000px;}
.w9{width:131.436000px;}
.w5{width:132.696000px;}
.wd{width:140.436000px;}
.wf{width:155.190000px;}
.w7{width:162.900000px;}
.we{width:169.770000px;}
.wa{width:180.210000px;}
.wb{width:216.210000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:7.056000px;}
.x1b{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:18.720000px;}
.x19{left:20.016000px;}
.x18{left:29.016000px;}
.x33{left:40.860000px;}
.x12{left:43.776000px;}
.x28{left:47.736000px;}
.x13{left:50.796000px;}
.x40{left:53.820000px;}
.x11{left:54.936000px;}
.x29{left:57.096000px;}
.x3e{left:61.425000px;}
.x1c{left:63.045000px;}
.x17{left:67.170000px;}
.x3a{left:69.525000px;}
.x16{left:73.290000px;}
.x15{left:75.270000px;}
.x1{left:78.300000px;}
.x9{left:86.399987px;}
.x2{left:95.790000px;}
.x41{left:100.980000px;}
.x21{left:102.645000px;}
.x3b{left:105.525000px;}
.x27{left:106.770000px;}
.x72{left:110.375987px;}
.x3f{left:112.005000px;}
.x53{left:113.435987px;}
.x14{left:124.590000px;}
.x37{left:128.730000px;}
.x35{left:130.545000px;}
.x39{left:134.865000px;}
.x5d{left:135.935987px;}
.x5{left:141.345000px;}
.x71{left:154.829987px;}
.x32{left:157.350000px;}
.x57{left:161.129987px;}
.x2d{left:163.109987px;}
.x2e{left:167.429987px;}
.x2b{left:168.689987px;}
.x2c{left:173.189987px;}
.x4e{left:174.449987px;}
.x3d{left:176.085000px;}
.x3{left:182.370000px;}
.x77{left:184.169987px;}
.x79{left:185.970000px;}
.x5e{left:187.409987px;}
.x54{left:200.189987px;}
.x74{left:205.409987px;}
.x34{left:206.670000px;}
.x3c{left:207.945000px;}
.x1a{left:219.090000px;}
.x5f{left:220.529987px;}
.x64{left:221.609987px;}
.x1f{left:225.405000px;}
.x20{left:233.715000px;}
.x73{left:238.349987px;}
.x7a{left:240.510000px;}
.x58{left:246.089987px;}
.x65{left:250.589987px;}
.x31{left:259.949987px;}
.x1d{left:264.675000px;}
.x1e{left:273.495000px;}
.x75{left:281.954987px;}
.x5a{left:298.154987px;}
.x4b{left:320.474987px;}
.x5b{left:322.994987px;}
.x56{left:337.574987px;}
.x36{left:338.835000px;}
.x76{left:348.374987px;}
.x66{left:362.594987px;}
.x52{left:364.934987px;}
.x4d{left:378.974987px;}
.x7b{left:381.675000px;}
.x26{left:383.115000px;}
.x67{left:410.474987px;}
.x42{left:415.874987px;}
.x78{left:419.474987px;}
.x6b{left:424.874987px;}
.x6c{left:455.144987px;}
.x4f{left:460.364987px;}
.x50{left:464.324987px;}
.x51{left:471.884987px;}
.x68{left:474.764987px;}
.x59{left:479.624987px;}
.x2f{left:485.744987px;}
.x22{left:487.920000px;}
.x23{left:492.420000px;}
.x24{left:494.220000px;}
.xa{left:501.764987px;}
.x6d{left:506.084987px;}
.x43{left:510.044987px;}
.x38{left:519.765000px;}
.xb{left:521.204987px;}
.xc{left:522.824987px;}
.x60{left:540.284987px;}
.x7c{left:552.165000px;}
.xe{left:570.704987px;}
.x25{left:572.340000px;}
.xd{left:584.384987px;}
.x6e{left:593.564987px;}
.x55{left:603.824987px;}
.x6f{left:614.624987px;}
.x44{left:624.164987px;}
.x47{left:625.469987px;}
.xf{left:628.349987px;}
.x4c{left:630.149987px;}
.x49{left:631.589987px;}
.x61{left:645.629987px;}
.x5c{left:679.469987px;}
.x48{left:680.729987px;}
.x69{left:683.969987px;}
.x4a{left:690.809987px;}
.x62{left:698.189987px;}
.x45{left:700.169987px;}
.x6a{left:724.649987px;}
.x46{left:737.609987px;}
.x63{left:740.489987px;}
.x70{left:759.749987px;}
.x8{left:766.049987px;}
.x30{left:773.429987px;}
.x7{left:784.409987px;}
.x10{left:806.939987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls1a{letter-spacing:-0.746667pt;}
.ls2c{letter-spacing:-0.288533pt;}
.lse{letter-spacing:-0.237333pt;}
.lsa{letter-spacing:-0.201067pt;}
.ls2a{letter-spacing:-0.172800pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls21{letter-spacing:-0.108267pt;}
.ls12{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.079467pt;}
.lsc{letter-spacing:-0.065067pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.037813pt;}
.ls30{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.068800pt;}
.ls27{letter-spacing:0.089067pt;}
.ls25{letter-spacing:0.091200pt;}
.ls16{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.183467pt;}
.ls13{letter-spacing:0.212480pt;}
.ls1c{letter-spacing:0.226133pt;}
.ls10{letter-spacing:0.230400pt;}
.ls2b{letter-spacing:0.250133pt;}
.ls15{letter-spacing:0.258667pt;}
.ls18{letter-spacing:0.287467pt;}
.ls3{letter-spacing:0.306667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.367467pt;}
.ls17{letter-spacing:0.419200pt;}
.ls14{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.436267pt;}
.ls22{letter-spacing:0.478080pt;}
.ls29{letter-spacing:0.516800pt;}
.ls2f{letter-spacing:0.634667pt;}
.ls9{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.645333pt;}
.lsf{letter-spacing:0.736000pt;}
.ls1d{letter-spacing:0.837333pt;}
.ls1b{letter-spacing:1.290667pt;}
.ls1e{letter-spacing:2.702875pt;}
.ls23{letter-spacing:6.810148pt;}
.ls2e{letter-spacing:7.840000pt;}
.ls24{letter-spacing:11.946667pt;}
.ls1f{letter-spacing:178.848000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.570667pt;}
.ws18{word-spacing:-14.117333pt;}
.ws19{word-spacing:-13.925333pt;}
.ws20{word-spacing:-13.914667pt;}
.ws15{word-spacing:-13.706667pt;}
.ws1f{word-spacing:-13.647467pt;}
.ws1{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.567467pt;}
.ws1e{word-spacing:-13.530133pt;}
.ws17{word-spacing:-13.506133pt;}
.ws14{word-spacing:-13.492480pt;}
.ws1a{word-spacing:-13.463467pt;}
.wsd{word-spacing:-13.376000pt;}
.ws1b{word-spacing:-13.369067pt;}
.ws1c{word-spacing:-13.348800pt;}
.ws21{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.120000pt;}
.ws1d{word-spacing:-13.107200pt;}
.wsc{word-spacing:-12.946667pt;}
.wse{word-spacing:-12.870400pt;}
.wsb{word-spacing:-12.640000pt;}
.ws7{word-spacing:-12.436267pt;}
.ws8{word-spacing:-12.037813pt;}
.wsa{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.904000pt;}
.ws9{word-spacing:-11.762667pt;}
.ws4{word-spacing:-9.920000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.078933pt;}
.ws2{word-spacing:-8.640000pt;}
.wsf{word-spacing:-7.936000pt;}
.ws11{word-spacing:0.000000pt;}
._b{margin-left:-2.181276pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.977280pt;}
._9{width:2.118062pt;}
._a{width:3.007987pt;}
._16{width:3.943034pt;}
._14{width:4.972160pt;}
._11{width:6.168960pt;}
._12{width:7.194880pt;}
._13{width:8.376320pt;}
._15{width:9.690880pt;}
._4{width:10.994172pt;}
._18{width:11.997188pt;}
._5{width:13.005488pt;}
._6{width:13.944727pt;}
._7{width:14.900102pt;}
._8{width:16.272000pt;}
._f{width:17.337351pt;}
._c{width:18.356693pt;}
._e{width:19.760735pt;}
._d{width:20.712960pt;}
._19{width:21.854080pt;}
._2{width:26.160000pt;}
._10{width:27.758080pt;}
._3{width:35.706705pt;}
._17{width:231.306667pt;}
.fsa{font-size:5.120000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:2.080000pt;}
.y43{bottom:2.720000pt;}
.y6e{bottom:2.880000pt;}
.y5{bottom:3.360000pt;}
.y73{bottom:3.520000pt;}
.y6c{bottom:3.840000pt;}
.y5b{bottom:4.453333pt;}
.yb9{bottom:5.600000pt;}
.ybb{bottom:5.760000pt;}
.y2{bottom:8.800000pt;}
.y4d{bottom:9.120000pt;}
.y42{bottom:17.280000pt;}
.yb7{bottom:18.240000pt;}
.y4{bottom:20.186667pt;}
.y59{bottom:25.440000pt;}
.y41{bottom:32.000000pt;}
.y4c{bottom:35.520000pt;}
.y58{bottom:40.320000pt;}
.y3{bottom:42.586667pt;}
.y4b{bottom:45.440000pt;}
.y40{bottom:47.200000pt;}
.y7{bottom:50.720000pt;}
.y4a{bottom:56.000000pt;}
.y57{bottom:56.160000pt;}
.y3f{bottom:61.760000pt;}
.y49{bottom:67.520000pt;}
.y56{bottom:69.920000pt;}
.y3e{bottom:76.320000pt;}
.y48{bottom:79.040000pt;}
.y95{bottom:80.480000pt;}
.y55{bottom:81.440000pt;}
.y44{bottom:85.600000pt;}
.y7a{bottom:86.560000pt;}
.y54{bottom:87.200000pt;}
.y3d{bottom:90.880000pt;}
.y94{bottom:95.680000pt;}
.y47{bottom:98.586667pt;}
.y53{bottom:101.146667pt;}
.y79{bottom:101.920000pt;}
.y3c{bottom:105.440000pt;}
.y93{bottom:111.040000pt;}
.y52{bottom:114.906667pt;}
.y78{bottom:117.280000pt;}
.y3b{bottom:120.040000pt;}
.y92{bottom:126.400000pt;}
.y51{bottom:128.666667pt;}
.y77{bottom:129.760000pt;}
.y3a{bottom:134.600000pt;}
.y91{bottom:141.760000pt;}
.y50{bottom:142.426667pt;}
.y39{bottom:149.160000pt;}
.y46{bottom:153.786667pt;}
.y4f{bottom:156.346667pt;}
.y90{bottom:157.120000pt;}
.y45{bottom:163.226667pt;}
.y38{bottom:163.720000pt;}
.y8f{bottom:172.320000pt;}
.y37{bottom:178.280000pt;}
.y8e{bottom:187.706667pt;}
.y36{bottom:192.840000pt;}
.y8d{bottom:203.066667pt;}
.y35{bottom:207.400000pt;}
.y8c{bottom:218.426667pt;}
.y34{bottom:221.960000pt;}
.y1f{bottom:230.600000pt;}
.y8b{bottom:233.786667pt;}
.y33{bottom:236.520000pt;}
.y8a{bottom:249.146667pt;}
.y32{bottom:251.080000pt;}
.y1e{bottom:252.040000pt;}
.y89{bottom:264.346667pt;}
.y31{bottom:265.640000pt;}
.y1d{bottom:273.480000pt;}
.y11{bottom:275.546667pt;}
.y88{bottom:279.706667pt;}
.y30{bottom:280.200000pt;}
.y2f{bottom:294.760000pt;}
.y1c{bottom:294.920000pt;}
.y87{bottom:295.066667pt;}
.y2e{bottom:309.320000pt;}
.y86{bottom:310.426667pt;}
.y1b{bottom:316.360000pt;}
.y2d{bottom:323.906667pt;}
.y85{bottom:325.786667pt;}
.y1a{bottom:337.826667pt;}
.y2c{bottom:338.466667pt;}
.y84{bottom:341.146667pt;}
.y2b{bottom:353.026667pt;}
.y83{bottom:353.466667pt;}
.y19{bottom:359.426667pt;}
.y2a{bottom:367.746667pt;}
.yb5{bottom:370.906667pt;}
.y18{bottom:380.866667pt;}
.y29{bottom:382.306667pt;}
.yb4{bottom:386.266667pt;}
.y76{bottom:394.626667pt;}
.y28{bottom:396.706667pt;}
.yb3{bottom:401.506667pt;}
.y17{bottom:402.306667pt;}
.y75{bottom:409.986667pt;}
.y27{bottom:410.466667pt;}
.yb2{bottom:416.866667pt;}
.y16{bottom:423.746667pt;}
.y26{bottom:424.226667pt;}
.y74{bottom:425.346667pt;}
.yb1{bottom:432.226667pt;}
.y25{bottom:438.146667pt;}
.y15{bottom:445.186667pt;}
.yb0{bottom:447.586667pt;}
.y24{bottom:451.906667pt;}
.yaf{bottom:462.946667pt;}
.y23{bottom:465.666667pt;}
.y14{bottom:466.626667pt;}
.yae{bottom:478.146667pt;}
.y22{bottom:479.426667pt;}
.y13{bottom:488.226667pt;}
.y21{bottom:493.186667pt;}
.yad{bottom:493.506667pt;}
.y20{bottom:507.106667pt;}
.yac{bottom:508.866667pt;}
.y12{bottom:509.666667pt;}
.yab{bottom:524.226667pt;}
.yaa{bottom:539.586667pt;}
.ya9{bottom:554.946667pt;}
.ya8{bottom:570.146667pt;}
.ya7{bottom:585.506667pt;}
.ya6{bottom:600.893333pt;}
.ya5{bottom:616.253333pt;}
.ya4{bottom:631.613333pt;}
.y82{bottom:634.493333pt;}
.ya3{bottom:646.973333pt;}
.y81{bottom:649.853333pt;}
.y72{bottom:653.213333pt;}
.ya2{bottom:662.173333pt;}
.y80{bottom:665.213333pt;}
.y71{bottom:669.853333pt;}
.y7f{bottom:677.533333pt;}
.y70{bottom:685.853333pt;}
.ya1{bottom:692.893333pt;}
.y6f{bottom:701.853333pt;}
.ya0{bottom:708.253333pt;}
.y6d{bottom:717.853333pt;}
.y9f{bottom:723.613333pt;}
.y6b{bottom:733.853333pt;}
.y9e{bottom:738.973333pt;}
.y6a{bottom:753.693333pt;}
.y9d{bottom:754.173333pt;}
.y69{bottom:769.053333pt;}
.y9c{bottom:769.533333pt;}
.y68{bottom:784.413333pt;}
.y9b{bottom:784.893333pt;}
.y10{bottom:798.653333pt;}
.y67{bottom:799.613333pt;}
.y9a{bottom:800.253333pt;}
.yf{bottom:814.053333pt;}
.y66{bottom:815.013333pt;}
.y99{bottom:815.653333pt;}
.ye{bottom:829.413333pt;}
.y65{bottom:830.373333pt;}
.y98{bottom:830.853333pt;}
.y64{bottom:845.733333pt;}
.y97{bottom:846.213333pt;}
.yd{bottom:849.413333pt;}
.y63{bottom:861.093333pt;}
.y96{bottom:861.573333pt;}
.yc{bottom:864.773333pt;}
.yba{bottom:874.693333pt;}
.yb{bottom:875.333333pt;}
.y62{bottom:876.453333pt;}
.y61{bottom:891.653333pt;}
.yb8{bottom:893.573333pt;}
.ya{bottom:904.293333pt;}
.y60{bottom:907.013333pt;}
.y7e{bottom:910.533333pt;}
.yb6{bottom:912.293333pt;}
.y5f{bottom:922.373333pt;}
.y7d{bottom:925.893333pt;}
.y9{bottom:927.333333pt;}
.y5e{bottom:937.733333pt;}
.y7c{bottom:941.093333pt;}
.y8{bottom:952.773333pt;}
.y5d{bottom:953.093333pt;}
.y5a{bottom:955.680000pt;}
.y7b{bottom:968.293333pt;}
.y5c{bottom:968.453333pt;}
.y6{bottom:984.773333pt;}
.y1{bottom:998.693333pt;}
.h16{height:4.352500pt;}
.h1a{height:15.360000pt;}
.h1b{height:16.000000pt;}
.h19{height:16.320000pt;}
.h1e{height:18.080000pt;}
.h14{height:22.325625pt;}
.h17{height:24.640000pt;}
.h12{height:26.190625pt;}
.h13{height:26.578125pt;}
.ha{height:28.704375pt;}
.h1d{height:30.720000pt;}
.hd{height:30.830625pt;}
.h15{height:33.867188pt;}
.he{height:34.664062pt;}
.h7{height:35.673437pt;}
.hb{height:37.479688pt;}
.h1c{height:38.672812pt;}
.hf{height:40.804688pt;}
.h10{height:41.993437pt;}
.h9{height:42.944375pt;}
.h6{height:44.119688pt;}
.h5{height:48.903750pt;}
.h8{height:52.832812pt;}
.h18{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h11{height:189.306667pt;}
.hc{height:518.306667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:43.200000pt;}
.wc{width:47.840000pt;}
.w2{width:92.512000pt;}
.w9{width:116.832000pt;}
.w5{width:117.952000pt;}
.wd{width:124.832000pt;}
.wf{width:137.946667pt;}
.w7{width:144.800000pt;}
.we{width:150.906667pt;}
.wa{width:160.186667pt;}
.wb{width:192.186667pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:6.272000pt;}
.x1b{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:16.640000pt;}
.x19{left:17.792000pt;}
.x18{left:25.792000pt;}
.x33{left:36.320000pt;}
.x12{left:38.912000pt;}
.x28{left:42.432000pt;}
.x13{left:45.152000pt;}
.x40{left:47.840000pt;}
.x11{left:48.832000pt;}
.x29{left:50.752000pt;}
.x3e{left:54.600000pt;}
.x1c{left:56.040000pt;}
.x17{left:59.706667pt;}
.x3a{left:61.800000pt;}
.x16{left:65.146667pt;}
.x15{left:66.906667pt;}
.x1{left:69.600000pt;}
.x9{left:76.799988pt;}
.x2{left:85.146667pt;}
.x41{left:89.760000pt;}
.x21{left:91.240000pt;}
.x3b{left:93.800000pt;}
.x27{left:94.906667pt;}
.x72{left:98.111988pt;}
.x3f{left:99.560000pt;}
.x53{left:100.831988pt;}
.x14{left:110.746667pt;}
.x37{left:114.426667pt;}
.x35{left:116.040000pt;}
.x39{left:119.880000pt;}
.x5d{left:120.831988pt;}
.x5{left:125.640000pt;}
.x71{left:137.626655pt;}
.x32{left:139.866667pt;}
.x57{left:143.226655pt;}
.x2d{left:144.986655pt;}
.x2e{left:148.826655pt;}
.x2b{left:149.946655pt;}
.x2c{left:153.946655pt;}
.x4e{left:155.066655pt;}
.x3d{left:156.520000pt;}
.x3{left:162.106667pt;}
.x77{left:163.706655pt;}
.x79{left:165.306667pt;}
.x5e{left:166.586655pt;}
.x54{left:177.946655pt;}
.x74{left:182.586655pt;}
.x34{left:183.706667pt;}
.x3c{left:184.840000pt;}
.x1a{left:194.746667pt;}
.x5f{left:196.026655pt;}
.x64{left:196.986655pt;}
.x1f{left:200.360000pt;}
.x20{left:207.746667pt;}
.x73{left:211.866655pt;}
.x7a{left:213.786667pt;}
.x58{left:218.746655pt;}
.x65{left:222.746655pt;}
.x31{left:231.066655pt;}
.x1d{left:235.266667pt;}
.x1e{left:243.106667pt;}
.x75{left:250.626655pt;}
.x5a{left:265.026655pt;}
.x4b{left:284.866655pt;}
.x5b{left:287.106655pt;}
.x56{left:300.066655pt;}
.x36{left:301.186667pt;}
.x76{left:309.666655pt;}
.x66{left:322.306655pt;}
.x52{left:324.386655pt;}
.x4d{left:336.866655pt;}
.x7b{left:339.266667pt;}
.x26{left:340.546667pt;}
.x67{left:364.866655pt;}
.x42{left:369.666655pt;}
.x78{left:372.866655pt;}
.x6b{left:377.666655pt;}
.x6c{left:404.573322pt;}
.x4f{left:409.213322pt;}
.x50{left:412.733322pt;}
.x51{left:419.453322pt;}
.x68{left:422.013322pt;}
.x59{left:426.333322pt;}
.x2f{left:431.773322pt;}
.x22{left:433.706667pt;}
.x23{left:437.706667pt;}
.x24{left:439.306667pt;}
.xa{left:446.013322pt;}
.x6d{left:449.853322pt;}
.x43{left:453.373322pt;}
.x38{left:462.013333pt;}
.xb{left:463.293322pt;}
.xc{left:464.733322pt;}
.x60{left:480.253322pt;}
.x7c{left:490.813333pt;}
.xe{left:507.293322pt;}
.x25{left:508.746667pt;}
.xd{left:519.453322pt;}
.x6e{left:527.613322pt;}
.x55{left:536.733322pt;}
.x6f{left:546.333322pt;}
.x44{left:554.813322pt;}
.x47{left:555.973322pt;}
.xf{left:558.533322pt;}
.x4c{left:560.133322pt;}
.x49{left:561.413322pt;}
.x61{left:573.893322pt;}
.x5c{left:603.973322pt;}
.x48{left:605.093322pt;}
.x69{left:607.973322pt;}
.x4a{left:614.053322pt;}
.x62{left:620.613322pt;}
.x45{left:622.373322pt;}
.x6a{left:644.133322pt;}
.x46{left:655.653322pt;}
.x63{left:658.213322pt;}
.x70{left:675.333322pt;}
.x8{left:680.933322pt;}
.x30{left:687.493322pt;}
.x7{left:697.253322pt;}
.x10{left:717.279988pt;}
}




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