
    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_bb9f7f5d3203b596d1bb8718.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_075d390e2e3ad48fbe4b7d86.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.007000;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_877e159dca0f054271054f1e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_a8180d35ae3ecb94f4c52b9f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_075d390e2e3ad48fbe4b7d86.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.007000;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_04782fcfd292156a4bdf609c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_cf506eb40f79362a860e415a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.727539;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_bb9f7f5d3203b596d1bb8718.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.960000;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_d2de8b1745e51bef66481692.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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:ffa;src:url('chunks/assets/font_573a130b4551baa0d1566ed7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.287000;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:ffb;src:url('chunks/assets/font_075d390e2e3ad48fbe4b7d86.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.007000;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:ffc;src:url('chunks/assets/font_65ff968b394b3c76fcb86c92.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.680176;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:ffd;src:url('chunks/assets/font_bb9f7f5d3203b596d1bb8718.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.960000;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:ffe;src:url('chunks/assets/font_bd8c118cb7c7d950689e6caa.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.954000;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:fff;src:url('chunks/assets/font_b3caf80757d1edee67119efb.woff2')format("woff");}.fff{font-family:fff;line-height:0.865234;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:ff10;src:url('chunks/assets/font_3d55cd117cd359212da49deb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.865234;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:ff11;src:url('chunks/assets/font_fcbc62b488567196b1719907.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.954000;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.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250126,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v3{vertical-align:-12.199200px;}
.v2{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.239400px;}
.v4{vertical-align:30.240600px;}
.v6{vertical-align:42.480000px;}
.v1{vertical-align:59.040600px;}
.ls1{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.009014px;}
.lsd{letter-spacing:0.038334px;}
.lse{letter-spacing:0.058897px;}
.ls21{letter-spacing:0.172080px;}
.ls12{letter-spacing:0.175996px;}
.ls17{letter-spacing:0.176971px;}
.ls1b{letter-spacing:0.202815px;}
.ls0{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.281268px;}
.ls5{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.323381px;}
.ls1d{letter-spacing:0.334093px;}
.ls7{letter-spacing:0.344790px;}
.lsf{letter-spacing:0.357937px;}
.lsc{letter-spacing:0.406312px;}
.ls11{letter-spacing:0.590050px;}
.ls10{letter-spacing:0.736469px;}
.ls4{letter-spacing:1.468150px;}
.lsa{letter-spacing:26.378880px;}
.ls13{letter-spacing:26.494560px;}
.ls22{letter-spacing:26.585760px;}
.ls18{letter-spacing:26.919613px;}
.ls16{letter-spacing:26.920812px;}
.ls1f{letter-spacing:26.920854px;}
.ls20{letter-spacing:26.921412px;}
.ls1a{letter-spacing:26.921448px;}
.ls14{letter-spacing:26.922150px;}
.ls15{letter-spacing:26.959580px;}
.ls1e{letter-spacing:27.643838px;}
.ls1c{letter-spacing:49.956000px;}
.lsb{letter-spacing:50.676000px;}
.ls6{letter-spacing:54.642722px;}
.ls2{letter-spacing:127.651079px;}
.ls3{letter-spacing:127.674000px;}
.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:-54.870480px;}
.ws11{word-spacing:-40.032000px;}
.ws7{word-spacing:-33.426720px;}
.ws8{word-spacing:-26.623942px;}
.ws4{word-spacing:-26.621280px;}
.wsd{word-spacing:-23.421062px;}
.ws10{word-spacing:-23.418720px;}
.ws0{word-spacing:-20.016000px;}
.ws15{word-spacing:-18.414720px;}
.wse{word-spacing:-16.614941px;}
.ws2{word-spacing:-16.613280px;}
.wsb{word-spacing:-0.792000px;}
.ws14{word-spacing:-0.288000px;}
.ws3{word-spacing:-0.180000px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:0.144014px;}
.ws6{word-spacing:0.679728px;}
.ws1d{word-spacing:0.765697px;}
.ws9{word-spacing:1.053073px;}
.ws1e{word-spacing:6.982080px;}
.ws1c{word-spacing:7.398240px;}
.ws1b{word-spacing:7.906121px;}
.ws16{word-spacing:8.117922px;}
.ws19{word-spacing:8.199625px;}
.ws20{word-spacing:8.785918px;}
.ws1a{word-spacing:8.786689px;}
.ws13{word-spacing:10.943328px;}
.wsf{word-spacing:13.277520px;}
.wsc{word-spacing:15.459537px;}
.ws21{word-spacing:24.035473px;}
.ws18{word-spacing:35.107727px;}
.ws1f{word-spacing:61.317852px;}
.ws5{word-spacing:101.026896px;}
.wsa{word-spacing:611.268000px;}
._18{margin-left:-764.994720px;}
._0{margin-left:-1.584000px;}
._1{width:1.152000px;}
._2{width:2.448000px;}
._d{width:3.521784px;}
._b{width:4.756668px;}
._7{width:5.802300px;}
._5{width:7.479530px;}
._6{width:8.506340px;}
._c{width:10.477320px;}
._42{width:11.776931px;}
._f{width:12.885516px;}
._15{width:13.981956px;}
._9{width:15.955800px;}
._e{width:17.759532px;}
._8{width:18.856908px;}
._45{width:20.396880px;}
._4{width:21.738240px;}
._14{width:24.974275px;}
._2f{width:26.369609px;}
._11{width:28.054704px;}
._39{width:29.785224px;}
._4d{width:32.657280px;}
._34{width:34.556168px;}
._a{width:36.609888px;}
._38{width:38.343862px;}
._16{width:39.588432px;}
._37{width:40.924248px;}
._13{width:42.414665px;}
._36{width:44.624920px;}
._32{width:46.585153px;}
._17{width:48.879984px;}
._3a{width:50.656753px;}
._46{width:53.242752px;}
._2a{width:54.677480px;}
._49{width:57.359857px;}
._43{width:58.489521px;}
._44{width:59.869361px;}
._3f{width:65.308128px;}
._48{width:67.127856px;}
._33{width:73.303775px;}
._2d{width:75.654961px;}
._2e{width:76.969956px;}
._4c{width:81.233807px;}
._41{width:83.694527px;}
._3e{width:88.482527px;}
._3d{width:91.546847px;}
._4b{width:102.175728px;}
._47{width:104.569728px;}
._3c{width:111.943727px;}
._31{width:125.412295px;}
._12{width:127.648176px;}
._30{width:146.928999px;}
._2c{width:160.745909px;}
._2b{width:162.183964px;}
._40{width:209.714304px;}
._4a{width:234.229152px;}
._3b{width:280.129487px;}
._26{width:348.881506px;}
._23{width:419.764789px;}
._1c{width:478.274149px;}
._1b{width:489.095029px;}
._3{width:494.256000px;}
._24{width:547.508629px;}
._22{width:552.966949px;}
._1a{width:574.129909px;}
._1d{width:575.281909px;}
._21{width:681.767029px;}
._25{width:727.812562px;}
._20{width:766.801909px;}
._1f{width:771.012469px;}
._1e{width:952.002037px;}
._29{width:984.733666px;}
._28{width:1198.568626px;}
._27{width:1202.779186px;}
._35{width:1235.883120px;}
._19{width:1920.841575px;}
._10{width:1953.943824px;}
.fc4{color:rgb(204,0,154);}
.fc3{color:rgb(51,51,204);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fsb{font-size:59.765976px;}
.fse{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs2{font-size:84.240000px;}
.fsa{font-size:84.248424px;}
.fs4{font-size:95.754000px;}
.fs6{font-size:95.760000px;}
.fs7{font-size:95.769576px;}
.fs1{font-size:108.000000px;}
.fs8{font-size:120.240000px;}
.fs9{font-size:120.252024px;}
.fsc{font-size:144.000000px;}
.fsd{font-size:144.014400px;}
.y0{bottom:0.000000px;}
.ya{bottom:11.574300px;}
.ye{bottom:11.576400px;}
.yc{bottom:14.814150px;}
.yd{bottom:29.532900px;}
.y9{bottom:29.574300px;}
.yb{bottom:32.814150px;}
.y6{bottom:42.188700px;}
.yf6{bottom:67.011300px;}
.ya1{bottom:69.172650px;}
.y9a{bottom:69.600576px;}
.y74{bottom:70.612500px;}
.y50{bottom:74.185950px;}
.y9b{bottom:74.392350px;}
.ye0{bottom:77.411550px;}
.y40{bottom:78.352200px;}
.y5{bottom:79.933650px;}
.y92{bottom:80.116500px;}
.y91{bottom:80.152200px;}
.ydf{bottom:80.839050px;}
.y79{bottom:81.412200px;}
.y82{bottom:81.700650px;}
.y90{bottom:82.852200px;}
.ye1{bottom:83.356650px;}
.y9c{bottom:88.971900px;}
.y4c{bottom:94.446276px;}
.yf5{bottom:101.568900px;}
.y81{bottom:101.716500px;}
.y22{bottom:105.738600px;}
.y101{bottom:107.837250px;}
.y73{bottom:107.871150px;}
.y99{bottom:108.307446px;}
.yde{bottom:109.639050px;}
.y4{bottom:112.693650px;}
.yfd{bottom:116.130600px;}
.yed{bottom:116.149200px;}
.y4b{bottom:129.184866px;}
.y21{bottom:130.953600px;}
.ydd{bottom:138.619050px;}
.y7f{bottom:139.517250px;}
.y72{bottom:140.628600px;}
.y98{bottom:143.050920px;}
.y100{bottom:143.837250px;}
.y8f{bottom:147.371040px;}
.yec{bottom:150.709200px;}
.yb2{bottom:152.989200px;}
.y20{bottom:156.168600px;}
.yf4{bottom:159.703500px;}
.y3f{bottom:162.225450px;}
.ybd{bottom:167.058450px;}
.ydc{bottom:167.059050px;}
.y71{bottom:168.348600px;}
.y7e{bottom:176.957250px;}
.y8e{bottom:177.434046px;}
.y97{bottom:177.614376px;}
.yc1{bottom:178.694250px;}
.yff{bottom:179.837250px;}
.y1f{bottom:181.383600px;}
.yb1{bottom:183.229200px;}
.yfc{bottom:185.430600px;}
.yeb{bottom:185.446350px;}
.ydb{bottom:196.399050px;}
.y4a{bottom:198.496296px;}
.ybc{bottom:201.798450px;}
.y8{bottom:202.818900px;}
.y70{bottom:203.087100px;}
.y1e{bottom:206.598600px;}
.y8d{bottom:207.677070px;}
.y3e{bottom:207.945450px;}
.y96{bottom:212.357850px;}
.yb0{bottom:213.290700px;}
.y38{bottom:213.885750px;}
.y7d{bottom:214.397250px;}
.yfe{bottom:215.837250px;}
.yfb{bottom:220.170600px;}
.y63{bottom:220.176300px;}
.yea{bottom:220.186350px;}
.yf3{bottom:220.723500px;}
.yda{bottom:225.199050px;}
.y1d{bottom:231.813600px;}
.y37{bottom:235.482450px;}
.ybb{bottom:236.358450px;}
.y6f{bottom:237.825750px;}
.y8c{bottom:237.920094px;}
.ye5{bottom:242.488500px;}
.y76{bottom:242.490000px;}
.yf7{bottom:242.491500px;}
.y29{bottom:242.494050px;}
.y2e{bottom:242.496900px;}
.y66{bottom:242.499750px;}
.y3d{bottom:242.680050px;}
.yaf{bottom:243.532350px;}
.y4e{bottom:248.250450px;}
.y4f{bottom:251.670450px;}
.yd9{bottom:254.179050px;}
.yfa{bottom:254.730600px;}
.y62{bottom:254.737800px;}
.ye9{bottom:254.745000px;}
.yf2{bottom:255.463500px;}
.ya2{bottom:256.877400px;}
.y1c{bottom:257.028600px;}
.ybe{bottom:262.817550px;}
.y49{bottom:267.803226px;}
.y8b{bottom:268.163118px;}
.yba{bottom:271.098450px;}
.y6e{bottom:272.384250px;}
.yae{bottom:273.777000px;}
.yc3{bottom:280.637550px;}
.y36{bottom:281.022450px;}
.y1b{bottom:282.243600px;}
.yd8{bottom:282.979050px;}
.yf9{bottom:289.470600px;}
.y61{bottom:289.477800px;}
.ye8{bottom:289.483500px;}
.yf1{bottom:290.023500px;}
.y95{bottom:290.153550px;}
.y8a{bottom:298.226124px;}
.y48{bottom:302.546700px;}
.y47{bottom:302.579400px;}
.yad{bottom:304.018500px;}
.ycb{bottom:305.815800px;}
.yb9{bottom:305.838450px;}
.y6d{bottom:307.122900px;}
.y1a{bottom:307.458600px;}
.yd7{bottom:311.779050px;}
.y65{bottom:312.150000px;}
.ye4{bottom:312.151500px;}
.y28{bottom:312.154050px;}
.y2d{bottom:312.156900px;}
.y77{bottom:315.377700px;}
.y35{bottom:315.756900px;}
.y104{bottom:319.531500px;}
.yf8{bottom:324.210600px;}
.y60{bottom:324.217800px;}
.ye7{bottom:324.222150px;}
.y94{bottom:324.893550px;}
.y56{bottom:327.078300px;}
.y89{bottom:328.469148px;}
.y7{bottom:331.298700px;}
.y5a{bottom:332.640150px;}
.y19{bottom:332.673600px;}
.y80{bottom:333.377700px;}
.yac{bottom:334.078500px;}
.y5d{bottom:334.386000px;}
.yc0{bottom:336.210000px;}
.y3c{bottom:339.518100px;}
.y6c{bottom:340.060350px;}
.yca{bottom:340.381650px;}
.yb8{bottom:340.398450px;}
.yd6{bottom:340.759050px;}
.yf0{bottom:348.881100px;}
.y18{bottom:357.888600px;}
.y88{bottom:358.712172px;}
.ye6{bottom:358.950600px;}
.y55{bottom:363.078300px;}
.yab{bottom:364.318500px;}
.y6b{bottom:367.780350px;}
.yd5{bottom:369.559050px;}
.y46{bottom:371.879400px;}
.yc9{bottom:375.121650px;}
.yb7{bottom:375.138450px;}
.yef{bottom:376.420050px;}
.y64{bottom:381.990000px;}
.y2c{bottom:381.991500px;}
.y27{bottom:381.994050px;}
.y17{bottom:383.103600px;}
.y3b{bottom:385.058100px;}
.y87{bottom:388.775178px;}
.y103{bottom:389.371500px;}
.y5f{bottom:393.510600px;}
.y75{bottom:393.519300px;}
.yaa{bottom:394.565550px;}
.yc2{bottom:394.694700px;}
.yd4{bottom:398.539050px;}
.y54{bottom:399.078300px;}
.y6a{bottom:400.537800px;}
.y45{bottom:406.619400px;}
.y16{bottom:408.318600px;}
.y93{bottom:408.618000px;}
.yc8{bottom:409.863150px;}
.yb6{bottom:409.878450px;}
.y34{bottom:417.269100px;}
.y86{bottom:419.018202px;}
.y3a{bottom:419.795400px;}
.ya9{bottom:424.625550px;}
.yd3{bottom:427.339050px;}
.y5e{bottom:428.250600px;}
.y69{bottom:428.257800px;}
.y5c{bottom:429.279150px;}
.y15{bottom:433.533600px;}
.y53{bottom:435.078300px;}
.yee{bottom:435.277500px;}
.y44{bottom:441.378900px;}
.yc7{bottom:444.603150px;}
.y3{bottom:444.618150px;}
.yb5{bottom:444.618750px;}
.ybf{bottom:448.739700px;}
.y85{bottom:449.260920px;}
.y2b{bottom:451.651500px;}
.y26{bottom:451.654500px;}
.ya8{bottom:454.868550px;}
.yd2{bottom:456.139050px;}
.y14{bottom:458.748600px;}
.y7b{bottom:462.259050px;}
.y33{bottom:462.990600px;}
.y68{bottom:462.996450px;}
.y58{bottom:470.523150px;}
.yc6{bottom:479.163150px;}
.yb4{bottom:479.178750px;}
.y84{bottom:479.503944px;}
.y2{bottom:480.078150px;}
.y13{bottom:483.963600px;}
.ya7{bottom:485.108550px;}
.yd1{bottom:485.119050px;}
.y39{bottom:486.749100px;}
.y32{bottom:497.550600px;}
.y67{bottom:497.554950px;}
.y12{bottom:509.178900px;}
.y83{bottom:509.566950px;}
.y43{bottom:510.678900px;}
.y78{bottom:513.738750px;}
.yc5{bottom:513.903150px;}
.yb3{bottom:513.918750px;}
.yd0{bottom:513.919050px;}
.ya6{bottom:515.168550px;}
.y59{bottom:515.343150px;}
.y57{bottom:515.523150px;}
.y2a{bottom:520.051500px;}
.y25{bottom:520.054500px;}
.y31{bottom:532.290600px;}
.y11{bottom:534.393900px;}
.ycf{bottom:542.899050px;}
.ya5{bottom:545.408550px;}
.y42{bottom:545.418900px;}
.y41{bottom:545.430600px;}
.ya0{bottom:558.199200px;}
.y51{bottom:562.017000px;}
.y52{bottom:562.197000px;}
.y30{bottom:567.030600px;}
.y1{bottom:570.451950px;}
.y7a{bottom:571.699050px;}
.yce{bottom:571.699200px;}
.y9f{bottom:576.199200px;}
.yf{bottom:579.729900px;}
.y102{bottom:580.711500px;}
.y23{bottom:580.891500px;}
.ye2{bottom:584.466600px;}
.ya4{bottom:590.588550px;}
.y9e{bottom:594.199200px;}
.ycd{bottom:600.679200px;}
.y2f{bottom:601.770600px;}
.y7c{bottom:605.539050px;}
.y4d{bottom:608.430450px;}
.y9d{bottom:612.199200px;}
.ya3{bottom:620.828550px;}
.ycc{bottom:629.479200px;}
.y5b{bottom:661.150650px;}
.yc4{bottom:661.159350px;}
.y10{bottom:661.168200px;}
.y24{bottom:661.168500px;}
.ye3{bottom:669.799500px;}
.h22{height:44.282160px;}
.h8{height:47.150640px;}
.h10{height:47.163840px;}
.h13{height:47.164440px;}
.h21{height:47.168052px;}
.h11{height:47.175840px;}
.hf{height:47.187840px;}
.h7{height:52.453125px;}
.h2{height:53.352000px;}
.h5{height:53.358000px;}
.h1d{height:56.808000px;}
.h4{height:56.820000px;}
.ha{height:61.195312px;}
.h23{height:66.465360px;}
.h1f{height:66.472007px;}
.h20{height:66.473231px;}
.h9{height:68.542658px;}
.hc{height:70.958160px;}
.h1a{height:70.965256px;}
.h2a{height:70.967760px;}
.hd{height:75.554640px;}
.h14{height:75.562195px;}
.h12{height:75.565440px;}
.he{height:75.576240px;}
.h15{height:75.581733px;}
.h1b{height:75.583440px;}
.h1c{height:75.593640px;}
.h1e{height:75.605040px;}
.h3{height:80.028000px;}
.h26{height:82.503960px;}
.h27{height:82.509960px;}
.h28{height:82.510560px;}
.h29{height:82.524360px;}
.h6{height:85.212000px;}
.h16{height:89.097840px;}
.h19{height:89.106750px;}
.h17{height:89.204040px;}
.h18{height:94.869360px;}
.hb{height:106.191240px;}
.h24{height:113.616000px;}
.h25{height:113.627362px;}
.h0{height:807.461400px;}
.h1{height:807.750000px;}
.w0{width:1075.913700px;}
.w1{width:1076.250000px;}
.x0{left:0.000000px;}
.x17{left:1.308011px;}
.x9{left:20.917800px;}
.xb{left:25.417650px;}
.x41{left:35.857200px;}
.x5{left:60.156900px;}
.x1{left:70.416450px;}
.x8{left:71.641200px;}
.x2{left:73.484250px;}
.x42{left:77.972747px;}
.x15{left:79.432858px;}
.x18{left:85.372500px;}
.x2f{left:115.414650px;}
.x12{left:130.901947px;}
.x14{left:143.875500px;}
.x10{left:169.784597px;}
.xc{left:209.744700px;}
.x2c{left:227.039850px;}
.x2d{left:228.494700px;}
.x44{left:251.843639px;}
.x43{left:271.823525px;}
.x1d{left:290.385150px;}
.x24{left:298.305300px;}
.x1b{left:344.905050px;}
.x2e{left:380.243195px;}
.x1c{left:401.445900px;}
.x46{left:405.017667px;}
.x1a{left:427.798650px;}
.x45{left:432.916609px;}
.x19{left:437.855250px;}
.xd{left:464.677800px;}
.x4{left:467.119714px;}
.x11{left:476.485370px;}
.x3{left:484.399350px;}
.xa{left:485.659350px;}
.x32{left:495.558900px;}
.x31{left:511.246200px;}
.x37{left:512.326200px;}
.x38{left:514.031100px;}
.x3d{left:517.172523px;}
.x3b{left:560.386500px;}
.x33{left:630.980400px;}
.x3f{left:635.120850px;}
.x22{left:644.772600px;}
.x34{left:652.041029px;}
.x25{left:671.482650px;}
.x7{left:695.531700px;}
.xf{left:717.130633px;}
.x39{left:738.188850px;}
.x3c{left:745.067550px;}
.x36{left:757.628100px;}
.xe{left:762.487800px;}
.x16{left:763.997850px;}
.x1f{left:766.127700px;}
.x13{left:773.147550px;}
.x20{left:817.246246px;}
.x29{left:821.525400px;}
.x26{left:826.153350px;}
.x2b{left:838.127850px;}
.x28{left:844.204500px;}
.x27{left:847.216981px;}
.x1e{left:848.704350px;}
.x35{left:852.304050px;}
.x6{left:857.534700px;}
.x40{left:883.308150px;}
.x3e{left:890.688150px;}
.x23{left:908.868450px;}
.x21{left:938.388450px;}
.x2a{left:948.648450px;}
.x30{left:953.459850px;}
.x3a{left:1009.257600px;}
@media print{
.v3{vertical-align:-10.843733pt;}
.v2{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.879467pt;}
.v4{vertical-align:26.880533pt;}
.v6{vertical-align:37.760000pt;}
.v1{vertical-align:52.480533pt;}
.ls1{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.008013pt;}
.lsd{letter-spacing:0.034074pt;}
.lse{letter-spacing:0.052353pt;}
.ls21{letter-spacing:0.152960pt;}
.ls12{letter-spacing:0.156441pt;}
.ls17{letter-spacing:0.157307pt;}
.ls1b{letter-spacing:0.180280pt;}
.ls0{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.250016pt;}
.ls5{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.287450pt;}
.ls1d{letter-spacing:0.296972pt;}
.ls7{letter-spacing:0.306480pt;}
.lsf{letter-spacing:0.318166pt;}
.lsc{letter-spacing:0.361166pt;}
.ls11{letter-spacing:0.524489pt;}
.ls10{letter-spacing:0.654639pt;}
.ls4{letter-spacing:1.305022pt;}
.lsa{letter-spacing:23.447893pt;}
.ls13{letter-spacing:23.550720pt;}
.ls22{letter-spacing:23.631787pt;}
.ls18{letter-spacing:23.928545pt;}
.ls16{letter-spacing:23.929611pt;}
.ls1f{letter-spacing:23.929648pt;}
.ls20{letter-spacing:23.930144pt;}
.ls1a{letter-spacing:23.930176pt;}
.ls14{letter-spacing:23.930800pt;}
.ls15{letter-spacing:23.964071pt;}
.ls1e{letter-spacing:24.572300pt;}
.ls1c{letter-spacing:44.405333pt;}
.lsb{letter-spacing:45.045333pt;}
.ls6{letter-spacing:48.571308pt;}
.ls2{letter-spacing:113.467626pt;}
.ls3{letter-spacing:113.488000pt;}
.ws17{word-spacing:-48.773760pt;}
.ws11{word-spacing:-35.584000pt;}
.ws7{word-spacing:-29.712640pt;}
.ws8{word-spacing:-23.665726pt;}
.ws4{word-spacing:-23.663360pt;}
.wsd{word-spacing:-20.818722pt;}
.ws10{word-spacing:-20.816640pt;}
.ws0{word-spacing:-17.792000pt;}
.ws15{word-spacing:-16.368640pt;}
.wse{word-spacing:-14.768837pt;}
.ws2{word-spacing:-14.767360pt;}
.wsb{word-spacing:-0.704000pt;}
.ws14{word-spacing:-0.256000pt;}
.ws3{word-spacing:-0.160000pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:0.128013pt;}
.ws6{word-spacing:0.604203pt;}
.ws1d{word-spacing:0.680620pt;}
.ws9{word-spacing:0.936065pt;}
.ws1e{word-spacing:6.206293pt;}
.ws1c{word-spacing:6.576213pt;}
.ws1b{word-spacing:7.027663pt;}
.ws16{word-spacing:7.215931pt;}
.ws19{word-spacing:7.288556pt;}
.ws20{word-spacing:7.809705pt;}
.ws1a{word-spacing:7.810390pt;}
.ws13{word-spacing:9.727403pt;}
.wsf{word-spacing:11.802240pt;}
.wsc{word-spacing:13.741811pt;}
.ws21{word-spacing:21.364865pt;}
.ws18{word-spacing:31.206868pt;}
.ws1f{word-spacing:54.504758pt;}
.ws5{word-spacing:89.801685pt;}
.wsa{word-spacing:543.349333pt;}
._18{margin-left:-679.995307pt;}
._0{margin-left:-1.408000pt;}
._1{width:1.024000pt;}
._2{width:2.176000pt;}
._d{width:3.130475pt;}
._b{width:4.228149pt;}
._7{width:5.157600pt;}
._5{width:6.648471pt;}
._6{width:7.561191pt;}
._c{width:9.313173pt;}
._42{width:10.468383pt;}
._f{width:11.453792pt;}
._15{width:12.428405pt;}
._9{width:14.182933pt;}
._e{width:15.786251pt;}
._8{width:16.761696pt;}
._45{width:18.130560pt;}
._4{width:19.322880pt;}
._14{width:22.199356pt;}
._2f{width:23.439653pt;}
._11{width:24.937515pt;}
._39{width:26.475755pt;}
._4d{width:29.028693pt;}
._34{width:30.716594pt;}
._a{width:32.542123pt;}
._38{width:34.083433pt;}
._16{width:35.189718pt;}
._37{width:36.377110pt;}
._13{width:37.701924pt;}
._36{width:39.666596pt;}
._32{width:41.409025pt;}
._17{width:43.448875pt;}
._3a{width:45.028225pt;}
._46{width:47.326890pt;}
._2a{width:48.602204pt;}
._49{width:50.986540pt;}
._43{width:51.990685pt;}
._44{width:53.217209pt;}
._3f{width:58.051670pt;}
._48{width:59.669205pt;}
._33{width:65.158911pt;}
._2d{width:67.248854pt;}
._2e{width:68.417739pt;}
._4c{width:72.207829pt;}
._41{width:74.395135pt;}
._3e{width:78.651135pt;}
._3d{width:81.374975pt;}
._4b{width:90.822870pt;}
._47{width:92.950870pt;}
._3c{width:99.505535pt;}
._31{width:111.477595pt;}
._12{width:113.465045pt;}
._30{width:130.603554pt;}
._2c{width:142.885252pt;}
._2b{width:144.163524pt;}
._40{width:186.412715pt;}
._4a{width:208.203690pt;}
._3b{width:249.003989pt;}
._26{width:310.116894pt;}
._23{width:373.124257pt;}
._1c{width:425.132577pt;}
._1b{width:434.751137pt;}
._3{width:439.338667pt;}
._24{width:486.674337pt;}
._22{width:491.526177pt;}
._1a{width:510.337697pt;}
._1d{width:511.361697pt;}
._21{width:606.015137pt;}
._25{width:646.944499pt;}
._20{width:681.601697pt;}
._1f{width:685.344417pt;}
._1e{width:846.224033pt;}
._29{width:875.318814pt;}
._28{width:1065.394334pt;}
._27{width:1069.137054pt;}
._35{width:1098.562773pt;}
._19{width:1707.414733pt;}
._10{width:1736.838954pt;}
.fs3{font-size:53.120000pt;}
.fsb{font-size:53.125312pt;}
.fse{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs2{font-size:74.880000pt;}
.fsa{font-size:74.887488pt;}
.fs4{font-size:85.114667pt;}
.fs6{font-size:85.120000pt;}
.fs7{font-size:85.128512pt;}
.fs1{font-size:96.000000pt;}
.fs8{font-size:106.880000pt;}
.fs9{font-size:106.890688pt;}
.fsc{font-size:128.000000pt;}
.fsd{font-size:128.012800pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:10.288267pt;}
.ye{bottom:10.290133pt;}
.yc{bottom:13.168133pt;}
.yd{bottom:26.251467pt;}
.y9{bottom:26.288267pt;}
.yb{bottom:29.168133pt;}
.y6{bottom:37.501067pt;}
.yf6{bottom:59.565600pt;}
.ya1{bottom:61.486800pt;}
.y9a{bottom:61.867178pt;}
.y74{bottom:62.766667pt;}
.y50{bottom:65.943067pt;}
.y9b{bottom:66.126533pt;}
.ye0{bottom:68.810267pt;}
.y40{bottom:69.646400pt;}
.y5{bottom:71.052133pt;}
.y92{bottom:71.214667pt;}
.y91{bottom:71.246400pt;}
.ydf{bottom:71.856933pt;}
.y79{bottom:72.366400pt;}
.y82{bottom:72.622800pt;}
.y90{bottom:73.646400pt;}
.ye1{bottom:74.094800pt;}
.y9c{bottom:79.086133pt;}
.y4c{bottom:83.952245pt;}
.yf5{bottom:90.283467pt;}
.y81{bottom:90.414667pt;}
.y22{bottom:93.989867pt;}
.y101{bottom:95.855333pt;}
.y73{bottom:95.885467pt;}
.y99{bottom:96.273285pt;}
.yde{bottom:97.456933pt;}
.y4{bottom:100.172133pt;}
.yfd{bottom:103.227200pt;}
.yed{bottom:103.243733pt;}
.y4b{bottom:114.830992pt;}
.y21{bottom:116.403200pt;}
.ydd{bottom:123.216933pt;}
.y7f{bottom:124.015333pt;}
.y72{bottom:125.003200pt;}
.y98{bottom:127.156373pt;}
.y100{bottom:127.855333pt;}
.y8f{bottom:130.996480pt;}
.yec{bottom:133.963733pt;}
.yb2{bottom:135.990400pt;}
.y20{bottom:138.816533pt;}
.yf4{bottom:141.958667pt;}
.y3f{bottom:144.200400pt;}
.ybd{bottom:148.496400pt;}
.ydc{bottom:148.496933pt;}
.y71{bottom:149.643200pt;}
.y7e{bottom:157.295333pt;}
.y8e{bottom:157.719152pt;}
.y97{bottom:157.879445pt;}
.yc1{bottom:158.839333pt;}
.yff{bottom:159.855333pt;}
.y1f{bottom:161.229867pt;}
.yb1{bottom:162.870400pt;}
.yfc{bottom:164.827200pt;}
.yeb{bottom:164.841200pt;}
.ydb{bottom:174.576933pt;}
.y4a{bottom:176.441152pt;}
.ybc{bottom:179.376400pt;}
.y8{bottom:180.283467pt;}
.y70{bottom:180.521867pt;}
.y1e{bottom:183.643200pt;}
.y8d{bottom:184.601840pt;}
.y3e{bottom:184.840400pt;}
.y96{bottom:188.762533pt;}
.yb0{bottom:189.591733pt;}
.y38{bottom:190.120667pt;}
.y7d{bottom:190.575333pt;}
.yfe{bottom:191.855333pt;}
.yfb{bottom:195.707200pt;}
.y63{bottom:195.712267pt;}
.yea{bottom:195.721200pt;}
.yf3{bottom:196.198667pt;}
.yda{bottom:200.176933pt;}
.y1d{bottom:206.056533pt;}
.y37{bottom:209.317733pt;}
.ybb{bottom:210.096400pt;}
.y6f{bottom:211.400667pt;}
.y8c{bottom:211.484528pt;}
.ye5{bottom:215.545333pt;}
.y76{bottom:215.546667pt;}
.yf7{bottom:215.548000pt;}
.y29{bottom:215.550267pt;}
.y2e{bottom:215.552800pt;}
.y66{bottom:215.555333pt;}
.y3d{bottom:215.715600pt;}
.yaf{bottom:216.473200pt;}
.y4e{bottom:220.667067pt;}
.y4f{bottom:223.707067pt;}
.yd9{bottom:225.936933pt;}
.yfa{bottom:226.427200pt;}
.y62{bottom:226.433600pt;}
.ye9{bottom:226.440000pt;}
.yf2{bottom:227.078667pt;}
.ya2{bottom:228.335467pt;}
.y1c{bottom:228.469867pt;}
.ybe{bottom:233.615600pt;}
.y49{bottom:238.047312pt;}
.y8b{bottom:238.367216pt;}
.yba{bottom:240.976400pt;}
.y6e{bottom:242.119333pt;}
.yae{bottom:243.357333pt;}
.yc3{bottom:249.455600pt;}
.y36{bottom:249.797733pt;}
.y1b{bottom:250.883200pt;}
.yd8{bottom:251.536933pt;}
.yf9{bottom:257.307200pt;}
.y61{bottom:257.313600pt;}
.ye8{bottom:257.318667pt;}
.yf1{bottom:257.798667pt;}
.y95{bottom:257.914267pt;}
.y8a{bottom:265.089888pt;}
.y48{bottom:268.930400pt;}
.y47{bottom:268.959467pt;}
.yad{bottom:270.238667pt;}
.ycb{bottom:271.836267pt;}
.yb9{bottom:271.856400pt;}
.y6d{bottom:272.998133pt;}
.y1a{bottom:273.296533pt;}
.yd7{bottom:277.136933pt;}
.y65{bottom:277.466667pt;}
.ye4{bottom:277.468000pt;}
.y28{bottom:277.470267pt;}
.y2d{bottom:277.472800pt;}
.y77{bottom:280.335733pt;}
.y35{bottom:280.672800pt;}
.y104{bottom:284.028000pt;}
.yf8{bottom:288.187200pt;}
.y60{bottom:288.193600pt;}
.ye7{bottom:288.197467pt;}
.y94{bottom:288.794267pt;}
.y56{bottom:290.736267pt;}
.y89{bottom:291.972576pt;}
.y7{bottom:294.487733pt;}
.y5a{bottom:295.680133pt;}
.y19{bottom:295.709867pt;}
.y80{bottom:296.335733pt;}
.yac{bottom:296.958667pt;}
.y5d{bottom:297.232000pt;}
.yc0{bottom:298.853333pt;}
.y3c{bottom:301.793867pt;}
.y6c{bottom:302.275867pt;}
.yca{bottom:302.561467pt;}
.yb8{bottom:302.576400pt;}
.yd6{bottom:302.896933pt;}
.yf0{bottom:310.116533pt;}
.y18{bottom:318.123200pt;}
.y88{bottom:318.855264pt;}
.ye6{bottom:319.067200pt;}
.y55{bottom:322.736267pt;}
.yab{bottom:323.838667pt;}
.y6b{bottom:326.915867pt;}
.yd5{bottom:328.496933pt;}
.y46{bottom:330.559467pt;}
.yc9{bottom:333.441467pt;}
.yb7{bottom:333.456400pt;}
.yef{bottom:334.595600pt;}
.y64{bottom:339.546667pt;}
.y2c{bottom:339.548000pt;}
.y27{bottom:339.550267pt;}
.y17{bottom:340.536533pt;}
.y3b{bottom:342.273867pt;}
.y87{bottom:345.577936pt;}
.y103{bottom:346.108000pt;}
.y5f{bottom:349.787200pt;}
.y75{bottom:349.794933pt;}
.yaa{bottom:350.724933pt;}
.yc2{bottom:350.839733pt;}
.yd4{bottom:354.256933pt;}
.y54{bottom:354.736267pt;}
.y6a{bottom:356.033600pt;}
.y45{bottom:361.439467pt;}
.y16{bottom:362.949867pt;}
.y93{bottom:363.216000pt;}
.yc8{bottom:364.322800pt;}
.yb6{bottom:364.336400pt;}
.y34{bottom:370.905867pt;}
.y86{bottom:372.460624pt;}
.y3a{bottom:373.151467pt;}
.ya9{bottom:377.444933pt;}
.yd3{bottom:379.856933pt;}
.y5e{bottom:380.667200pt;}
.y69{bottom:380.673600pt;}
.y5c{bottom:381.581467pt;}
.y15{bottom:385.363200pt;}
.y53{bottom:386.736267pt;}
.yee{bottom:386.913333pt;}
.y44{bottom:392.336800pt;}
.yc7{bottom:395.202800pt;}
.y3{bottom:395.216133pt;}
.yb5{bottom:395.216667pt;}
.ybf{bottom:398.879733pt;}
.y85{bottom:399.343040pt;}
.y2b{bottom:401.468000pt;}
.y26{bottom:401.470667pt;}
.ya8{bottom:404.327600pt;}
.yd2{bottom:405.456933pt;}
.y14{bottom:407.776533pt;}
.y7b{bottom:410.896933pt;}
.y33{bottom:411.547200pt;}
.y68{bottom:411.552400pt;}
.y58{bottom:418.242800pt;}
.yc6{bottom:425.922800pt;}
.yb4{bottom:425.936667pt;}
.y84{bottom:426.225728pt;}
.y2{bottom:426.736133pt;}
.y13{bottom:430.189867pt;}
.ya7{bottom:431.207600pt;}
.yd1{bottom:431.216933pt;}
.y39{bottom:432.665867pt;}
.y32{bottom:442.267200pt;}
.y67{bottom:442.271067pt;}
.y12{bottom:452.603467pt;}
.y83{bottom:452.948400pt;}
.y43{bottom:453.936800pt;}
.y78{bottom:456.656667pt;}
.yc5{bottom:456.802800pt;}
.yb3{bottom:456.816667pt;}
.yd0{bottom:456.816933pt;}
.ya6{bottom:457.927600pt;}
.y59{bottom:458.082800pt;}
.y57{bottom:458.242800pt;}
.y2a{bottom:462.268000pt;}
.y25{bottom:462.270667pt;}
.y31{bottom:473.147200pt;}
.y11{bottom:475.016800pt;}
.ycf{bottom:482.576933pt;}
.ya5{bottom:484.807600pt;}
.y42{bottom:484.816800pt;}
.y41{bottom:484.827200pt;}
.ya0{bottom:496.177067pt;}
.y51{bottom:499.570667pt;}
.y52{bottom:499.730667pt;}
.y30{bottom:504.027200pt;}
.y1{bottom:507.068400pt;}
.y7a{bottom:508.176933pt;}
.yce{bottom:508.177067pt;}
.y9f{bottom:512.177067pt;}
.yf{bottom:515.315467pt;}
.y102{bottom:516.188000pt;}
.y23{bottom:516.348000pt;}
.ye2{bottom:519.525867pt;}
.ya4{bottom:524.967600pt;}
.y9e{bottom:528.177067pt;}
.ycd{bottom:533.937067pt;}
.y2f{bottom:534.907200pt;}
.y7c{bottom:538.256933pt;}
.y4d{bottom:540.827067pt;}
.y9d{bottom:544.177067pt;}
.ya3{bottom:551.847600pt;}
.ycc{bottom:559.537067pt;}
.y5b{bottom:587.689467pt;}
.yc4{bottom:587.697200pt;}
.y10{bottom:587.705067pt;}
.y24{bottom:587.705333pt;}
.ye3{bottom:595.377333pt;}
.h22{height:39.361920pt;}
.h8{height:41.911680pt;}
.h10{height:41.923413pt;}
.h13{height:41.923947pt;}
.h21{height:41.927158pt;}
.h11{height:41.934080pt;}
.hf{height:41.944747pt;}
.h7{height:46.625000pt;}
.h2{height:47.424000pt;}
.h5{height:47.429333pt;}
.h1d{height:50.496000pt;}
.h4{height:50.506667pt;}
.ha{height:54.395833pt;}
.h23{height:59.080320pt;}
.h1f{height:59.086228pt;}
.h20{height:59.087316pt;}
.h9{height:60.926807pt;}
.hc{height:63.073920pt;}
.h1a{height:63.080227pt;}
.h2a{height:63.082453pt;}
.hd{height:67.159680pt;}
.h14{height:67.166396pt;}
.h12{height:67.169280pt;}
.he{height:67.178880pt;}
.h15{height:67.183763pt;}
.h1b{height:67.185280pt;}
.h1c{height:67.194347pt;}
.h1e{height:67.204480pt;}
.h3{height:71.136000pt;}
.h26{height:73.336853pt;}
.h27{height:73.342187pt;}
.h28{height:73.342720pt;}
.h29{height:73.354987pt;}
.h6{height:75.744000pt;}
.h16{height:79.198080pt;}
.h19{height:79.206000pt;}
.h17{height:79.292480pt;}
.h18{height:84.328320pt;}
.hb{height:94.392213pt;}
.h24{height:100.992000pt;}
.h25{height:101.002099pt;}
.h0{height:717.743467pt;}
.h1{height:718.000000pt;}
.w0{width:956.367733pt;}
.w1{width:956.666667pt;}
.x0{left:0.000000pt;}
.x17{left:1.162676pt;}
.x9{left:18.593600pt;}
.xb{left:22.593467pt;}
.x41{left:31.873067pt;}
.x5{left:53.472800pt;}
.x1{left:62.592400pt;}
.x8{left:63.681067pt;}
.x2{left:65.319333pt;}
.x42{left:69.309109pt;}
.x15{left:70.606985pt;}
.x18{left:75.886667pt;}
.x2f{left:102.590800pt;}
.x12{left:116.357287pt;}
.x14{left:127.889333pt;}
.x10{left:150.919641pt;}
.xc{left:186.439733pt;}
.x2c{left:201.813200pt;}
.x2d{left:203.106400pt;}
.x44{left:223.861013pt;}
.x43{left:241.620911pt;}
.x1d{left:258.120133pt;}
.x24{left:265.160267pt;}
.x1b{left:306.582267pt;}
.x2e{left:337.993951pt;}
.x1c{left:356.840800pt;}
.x46{left:360.015704pt;}
.x1a{left:380.265467pt;}
.x45{left:384.814764pt;}
.x19{left:389.204667pt;}
.xd{left:413.046933pt;}
.x4{left:415.217524pt;}
.x11{left:423.542551pt;}
.x3{left:430.577200pt;}
.xa{left:431.697200pt;}
.x32{left:440.496800pt;}
.x31{left:454.441067pt;}
.x37{left:455.401067pt;}
.x38{left:456.916533pt;}
.x3d{left:459.708910pt;}
.x3b{left:498.121333pt;}
.x33{left:560.871467pt;}
.x3f{left:564.551867pt;}
.x22{left:573.131200pt;}
.x34{left:579.592026pt;}
.x25{left:596.873467pt;}
.x7{left:618.250400pt;}
.xf{left:637.449451pt;}
.x39{left:656.167867pt;}
.x3c{left:662.282267pt;}
.x36{left:673.447200pt;}
.xe{left:677.766933pt;}
.x16{left:679.109200pt;}
.x1f{left:681.002400pt;}
.x13{left:687.242267pt;}
.x20{left:726.441108pt;}
.x29{left:730.244800pt;}
.x26{left:734.358533pt;}
.x2b{left:745.002533pt;}
.x28{left:750.404000pt;}
.x27{left:753.081761pt;}
.x1e{left:754.403867pt;}
.x35{left:757.603600pt;}
.x6{left:762.253067pt;}
.x40{left:785.162800pt;}
.x3e{left:791.722800pt;}
.x23{left:807.883067pt;}
.x21{left:834.123067pt;}
.x2a{left:843.243067pt;}
.x30{left:847.519867pt;}
.x3a{left:897.117867pt;}
}




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