
    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_b333f1b119ef944aa00c4848.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_740ad648ab75b4458da9c7fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.984000;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_3b671111787a3ecdcc6411a3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.664000;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_5dcbf1e96c0746012a8ad0d4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.665000;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_b6b3e218826734c4638bcd8e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.922000;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_b8de05d6793cb885f5d2a5a2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984048;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);}
.m1{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:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.690000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:16.435200px;}
.ls3{letter-spacing:16.830600px;}
.ls9{letter-spacing:17.934600px;}
.ls0{letter-spacing:17.934710px;}
.ls8{letter-spacing:19.746600px;}
.ls6{letter-spacing:21.312600px;}
.lsa{letter-spacing:21.402600px;}
.ls7{letter-spacing:22.416600px;}
.ls2{letter-spacing:29.886532px;}
.ls1{letter-spacing:29.892532px;}
.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;}
}
.ws51{word-spacing:-35.865600px;}
.ws1c{word-spacing:-29.887800px;}
.wsf{word-spacing:-26.899200px;}
.ws3{word-spacing:-22.466149px;}
.ws2{word-spacing:-22.380072px;}
.wsa2{word-spacing:-20.084736px;}
.ws96{word-spacing:-19.785724px;}
.ws38{word-spacing:-19.725948px;}
.ws74{word-spacing:-19.427070px;}
.ws73{word-spacing:-19.307519px;}
.ws4c{word-spacing:-19.128192px;}
.wsa8{word-spacing:-18.948865px;}
.ws64{word-spacing:-18.829314px;}
.wsae{word-spacing:-18.810655px;}
.ws3a{word-spacing:-18.769538px;}
.ws87{word-spacing:-18.709763px;}
.ws1b{word-spacing:-18.650112px;}
.ws46{word-spacing:-18.649987px;}
.ws24{word-spacing:-18.590212px;}
.ws6a{word-spacing:-18.470660px;}
.ws98{word-spacing:-18.351109px;}
.ws90{word-spacing:-18.291334px;}
.ws3f{word-spacing:-18.231558px;}
.ws94{word-spacing:-18.171782px;}
.wsa5{word-spacing:-18.112007px;}
.ws99{word-spacing:-18.052231px;}
.wsb6{word-spacing:-17.932680px;}
.ws9e{word-spacing:-17.872904px;}
.ws5f{word-spacing:-17.813129px;}
.wsba{word-spacing:-17.753353px;}
.ws86{word-spacing:-17.693578px;}
.ws93{word-spacing:-17.633802px;}
.ws33{word-spacing:-17.574026px;}
.ws9f{word-spacing:-17.540824px;}
.ws68{word-spacing:-17.514251px;}
.wsce{word-spacing:-17.484480px;}
.ws50{word-spacing:-17.430682px;}
.ws2c{word-spacing:-17.394700px;}
.wsab{word-spacing:-17.334924px;}
.ws8e{word-spacing:-17.334887px;}
.ws8d{word-spacing:-17.275148px;}
.ws4e{word-spacing:-17.215373px;}
.ws36{word-spacing:-17.155597px;}
.wsc6{word-spacing:-17.107891px;}
.ws91{word-spacing:-17.095822px;}
.wsc5{word-spacing:-17.054093px;}
.ws4d{word-spacing:-17.036046px;}
.ws3b{word-spacing:-16.976270px;}
.ws7d{word-spacing:-16.916495px;}
.ws23{word-spacing:-16.796944px;}
.ws1a{word-spacing:-16.737168px;}
.ws47{word-spacing:-16.677392px;}
.ws52{word-spacing:-16.378514px;}
.wsb9{word-spacing:-16.318739px;}
.wsa4{word-spacing:-16.258963px;}
.ws7{word-spacing:-16.193318px;}
.ws67{word-spacing:-16.139412px;}
.ws1d{word-spacing:-16.079636px;}
.ws40{word-spacing:-16.019861px;}
.ws75{word-spacing:-15.960085px;}
.ws35{word-spacing:-15.900310px;}
.ws34{word-spacing:-15.858666px;}
.ws59{word-spacing:-15.840534px;}
.ws22{word-spacing:-15.720983px;}
.wsa0{word-spacing:-15.661207px;}
.wsd3{word-spacing:-15.655334px;}
.ws8f{word-spacing:-15.601536px;}
.ws53{word-spacing:-15.601432px;}
.wsa9{word-spacing:-15.541656px;}
.ws41{word-spacing:-15.422105px;}
.ws5e{word-spacing:-15.362329px;}
.ws14{word-spacing:-15.332544px;}
.ws97{word-spacing:-15.302554px;}
.ws4f{word-spacing:-15.242778px;}
.wsc{word-spacing:-15.224947px;}
.ws42{word-spacing:-15.183002px;}
.wsac{word-spacing:-15.123227px;}
.wsad{word-spacing:-15.088849px;}
.ws1f{word-spacing:-15.063552px;}
.ws3e{word-spacing:-15.063451px;}
.ws1{word-spacing:-15.003676px;}
.ws0{word-spacing:-14.943900px;}
.wsdb{word-spacing:-14.902157px;}
.wsda{word-spacing:-14.848358px;}
.wsaa{word-spacing:-14.824349px;}
.ws70{word-spacing:-14.764573px;}
.wscf{word-spacing:-14.706442px;}
.wsd0{word-spacing:-14.686963px;}
.ws5a{word-spacing:-14.645022px;}
.wscd{word-spacing:-14.633165px;}
.ws6f{word-spacing:-14.585246px;}
.ws2f{word-spacing:-14.525471px;}
.ws9d{word-spacing:-14.465695px;}
.ws1e{word-spacing:-14.346144px;}
.ws26{word-spacing:-14.286368px;}
.ws88{word-spacing:-14.226593px;}
.wsdc{word-spacing:-14.095181px;}
.ws58{word-spacing:-14.047266px;}
.wsdd{word-spacing:-14.041382px;}
.wsc1{word-spacing:-13.987584px;}
.ws49{word-spacing:-13.987490px;}
.wsc0{word-spacing:-13.933786px;}
.wsb5{word-spacing:-13.927715px;}
.ws63{word-spacing:-13.867939px;}
.ws95{word-spacing:-13.748388px;}
.ws21{word-spacing:-13.628837px;}
.ws5d{word-spacing:-13.569061px;}
.ws5c{word-spacing:-13.509286px;}
.wsd9{word-spacing:-13.504608px;}
.ws4{word-spacing:-13.503398px;}
.ws18{word-spacing:-13.449600px;}
.ws69{word-spacing:-13.449510px;}
.ws32{word-spacing:-13.389734px;}
.wsb3{word-spacing:-13.338655px;}
.ws71{word-spacing:-13.329959px;}
.ws7a{word-spacing:-13.210408px;}
.ws43{word-spacing:-13.150632px;}
.ws6e{word-spacing:-13.031081px;}
.ws61{word-spacing:-12.971305px;}
.wsd4{word-spacing:-12.965414px;}
.wsbb{word-spacing:-12.911616px;}
.ws76{word-spacing:-12.911530px;}
.ws7f{word-spacing:-12.851754px;}
.ws8b{word-spacing:-12.791978px;}
.wsa7{word-spacing:-12.732203px;}
.wscb{word-spacing:-12.696422px;}
.ws2b{word-spacing:-12.672427px;}
.wscc{word-spacing:-12.647184px;}
.ws89{word-spacing:-12.612652px;}
.ws3c{word-spacing:-12.552876px;}
.ws65{word-spacing:-12.493100px;}
.ws2e{word-spacing:-12.433325px;}
.ws39{word-spacing:-12.373549px;}
.ws4a{word-spacing:-12.313774px;}
.ws28{word-spacing:-12.253998px;}
.wsd{word-spacing:-12.212237px;}
.ws3d{word-spacing:-12.194222px;}
.ws8{word-spacing:-12.050842px;}
.ws66{word-spacing:-12.014896px;}
.ws77{word-spacing:-11.955120px;}
.wsb1{word-spacing:-11.895344px;}
.wsb{word-spacing:-11.889446px;}
.ws9{word-spacing:-11.835648px;}
.ws45{word-spacing:-11.835569px;}
.wsa{word-spacing:-11.781850px;}
.ws9b{word-spacing:-11.716018px;}
.ws31{word-spacing:-11.596466px;}
.ws82{word-spacing:-11.476915px;}
.ws9a{word-spacing:-11.417140px;}
.ws72{word-spacing:-11.357364px;}
.wsb8{word-spacing:-11.297588px;}
.wsa1{word-spacing:-11.237813px;}
.ws81{word-spacing:-11.178037px;}
.ws2a{word-spacing:-11.058486px;}
.wsa6{word-spacing:-10.998710px;}
.ws62{word-spacing:-10.938935px;}
.ws7b{word-spacing:-10.879159px;}
.ws7c{word-spacing:-10.866655px;}
.ws56{word-spacing:-10.819384px;}
.ws8a{word-spacing:-10.812655px;}
.wsd1{word-spacing:-10.759680px;}
.wsd2{word-spacing:-10.652083px;}
.wsaf{word-spacing:-10.640057px;}
.ws80{word-spacing:-10.580281px;}
.ws13{word-spacing:-10.544486px;}
.ws78{word-spacing:-10.520506px;}
.ws48{word-spacing:-10.460730px;}
.ws9c{word-spacing:-10.400954px;}
.wse{word-spacing:-10.383091px;}
.wsa3{word-spacing:-10.341179px;}
.ws10{word-spacing:-10.329293px;}
.ws57{word-spacing:-10.281403px;}
.ws11{word-spacing:-10.275494px;}
.wsbd{word-spacing:-10.167898px;}
.ws55{word-spacing:-10.161852px;}
.ws30{word-spacing:-10.102076px;}
.wsbf{word-spacing:-10.060301px;}
.wsbe{word-spacing:-10.006502px;}
.ws17{word-spacing:-9.952704px;}
.wsc4{word-spacing:-9.845107px;}
.ws7e{word-spacing:-9.803198px;}
.ws8c{word-spacing:-9.743423px;}
.wsc7{word-spacing:-9.576115px;}
.wsc8{word-spacing:-9.522317px;}
.ws85{word-spacing:-9.504320px;}
.wsc9{word-spacing:-9.468518px;}
.wsca{word-spacing:-9.461520px;}
.wsb7{word-spacing:-9.324994px;}
.wsc3{word-spacing:-9.307123px;}
.wsc2{word-spacing:-9.253325px;}
.ws44{word-spacing:-9.205442px;}
.ws12{word-spacing:-9.199526px;}
.ws79{word-spacing:-9.145667px;}
.ws37{word-spacing:-9.085891px;}
.wsb2{word-spacing:-9.026116px;}
.ws4b{word-spacing:-8.846789px;}
.ws84{word-spacing:-8.787013px;}
.ws25{word-spacing:-8.607686px;}
.ws5b{word-spacing:-8.547911px;}
.ws27{word-spacing:-8.488135px;}
.wsb0{word-spacing:-8.308808px;}
.wsb4{word-spacing:-8.189257px;}
.ws2d{word-spacing:-8.069706px;}
.ws54{word-spacing:-7.950155px;}
.ws29{word-spacing:-7.651277px;}
.ws16{word-spacing:-7.370381px;}
.ws60{word-spacing:-7.316582px;}
.ws92{word-spacing:-6.694867px;}
.ws6b{word-spacing:-6.395989px;}
.ws15{word-spacing:-6.348211px;}
.ws6c{word-spacing:-5.977560px;}
.ws6d{word-spacing:-5.618906px;}
.wsbc{word-spacing:-5.272243px;}
.wsd5{word-spacing:-0.645581px;}
.ws19{word-spacing:-0.003553px;}
.ws20{word-spacing:0.000000px;}
.wsd7{word-spacing:0.645581px;}
.wsd6{word-spacing:0.698726px;}
.wsd8{word-spacing:0.699379px;}
.ws6{word-spacing:2.935632px;}
.ws5{word-spacing:13.126810px;}
.ws83{word-spacing:35.793869px;}
._7{margin-left:-9.253325px;}
._5{margin-left:-7.230485px;}
._c{margin-left:-6.156887px;}
._2{margin-left:-4.901599px;}
._1{margin-left:-3.706087px;}
._0{margin-left:-2.092146px;}
._3{margin-left:-1.016185px;}
._9{width:1.016185px;}
._4{width:2.209284px;}
._f{width:10.042301px;}
._a{width:11.895344px;}
._d{width:13.389734px;}
._8{width:14.525471px;}
._11{width:16.258963px;}
._e{width:18.401288px;}
._13{width:19.845499px;}
._b{width:21.698543px;}
._12{width:24.209118px;}
._10{width:30.492450px;}
._6{width:71.659469px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y26{bottom:222.124500px;}
.y81{bottom:266.956500px;}
.y25{bottom:272.670000px;}
.y6b{bottom:277.206000px;}
.y6d{bottom:279.229500px;}
.y53{bottom:283.602000px;}
.yac{bottom:284.890500px;}
.y80{bottom:289.108500px;}
.y24{bottom:293.518500px;}
.ybf{bottom:293.961000px;}
.y6c{bottom:296.205000px;}
.y6a{bottom:299.358000px;}
.y52{bottom:301.534500px;}
.yab{bottom:302.823000px;}
.y7f{bottom:305.547000px;}
.ybe{bottom:310.399500px;}
.y23{bottom:311.452500px;}
.y51{bottom:319.467000px;}
.yaa{bottom:320.755500px;}
.y7e{bottom:321.985500px;}
.y69{bottom:322.456500px;}
.y50{bottom:337.401000px;}
.ya9{bottom:338.688000px;}
.y7d{bottom:338.826000px;}
.y68{bottom:340.389000px;}
.ybd{bottom:340.845000px;}
.y22{bottom:342.489000px;}
.y4f{bottom:355.333500px;}
.ya8{bottom:356.620500px;}
.y67{bottom:358.321500px;}
.y7c{bottom:361.998000px;}
.y4e{bottom:373.266000px;}
.ya7{bottom:374.553000px;}
.y66{bottom:376.254000px;}
.y7b{bottom:379.930500px;}
.y21{bottom:385.480500px;}
.ybc{bottom:385.525500px;}
.y4d{bottom:391.198500px;}
.ya6{bottom:392.487000px;}
.y65{bottom:394.188000px;}
.y7a{bottom:397.863000px;}
.y20{bottom:403.414500px;}
.ybb{bottom:403.458000px;}
.y4c{bottom:409.131000px;}
.ya5{bottom:410.419500px;}
.y64{bottom:412.120500px;}
.ye1{bottom:415.108500px;}
.y79{bottom:415.795500px;}
.yba{bottom:421.390500px;}
.y4b{bottom:427.063500px;}
.ya4{bottom:428.352000px;}
.y63{bottom:430.053000px;}
.y78{bottom:433.728000px;}
.yb9{bottom:439.323000px;}
.y4a{bottom:444.997500px;}
.y1f{bottom:445.137000px;}
.ya3{bottom:446.284500px;}
.y62{bottom:447.985500px;}
.y77{bottom:451.660500px;}
.yb8{bottom:457.255500px;}
.y1e{bottom:461.575500px;}
.y49{bottom:462.930000px;}
.ya2{bottom:464.217000px;}
.ye0{bottom:464.424000px;}
.y61{bottom:465.918000px;}
.y76{bottom:469.594500px;}
.yb7{bottom:475.188000px;}
.y1d{bottom:478.014000px;}
.y48{bottom:480.862500px;}
.ya1{bottom:482.149500px;}
.y60{bottom:483.850500px;}
.y75{bottom:487.527000px;}
.yb6{bottom:493.122000px;}
.y1c{bottom:494.452500px;}
.ydf{bottom:497.301000px;}
.y47{bottom:498.795000px;}
.ya0{bottom:500.083500px;}
.y5f{bottom:501.784500px;}
.y74{bottom:505.459500px;}
.y1b{bottom:510.891000px;}
.yb5{bottom:511.054500px;}
.yde{bottom:513.739500px;}
.y46{bottom:516.727500px;}
.y9f{bottom:518.016000px;}
.y5e{bottom:519.717000px;}
.y73{bottom:523.392000px;}
.y1a{bottom:527.329500px;}
.yb4{bottom:528.987000px;}
.ydd{bottom:530.178000px;}
.y45{bottom:534.660000px;}
.y9e{bottom:535.948500px;}
.y5d{bottom:537.649500px;}
.y72{bottom:541.324500px;}
.y19{bottom:543.768000px;}
.ydc{bottom:546.616500px;}
.yb3{bottom:546.919500px;}
.y44{bottom:552.594000px;}
.y9d{bottom:553.881000px;}
.y5c{bottom:555.582000px;}
.y71{bottom:559.257000px;}
.y18{bottom:560.205000px;}
.ydb{bottom:563.053500px;}
.yb2{bottom:564.852000px;}
.y43{bottom:570.526500px;}
.y9c{bottom:571.813500px;}
.y5b{bottom:573.514500px;}
.y17{bottom:576.643500px;}
.y70{bottom:577.191000px;}
.yda{bottom:579.492000px;}
.yb1{bottom:582.784500px;}
.y42{bottom:588.459000px;}
.y9b{bottom:589.746000px;}
.y5a{bottom:591.447000px;}
.y6f{bottom:595.123500px;}
.yd9{bottom:595.930500px;}
.yb0{bottom:600.718500px;}
.y41{bottom:606.391500px;}
.y9a{bottom:607.680000px;}
.y59{bottom:609.381000px;}
.yd8{bottom:612.369000px;}
.y16{bottom:615.666000px;}
.yaf{bottom:618.651000px;}
.y40{bottom:624.324000px;}
.y99{bottom:625.612500px;}
.y58{bottom:627.313500px;}
.yd7{bottom:628.807500px;}
.y6e{bottom:630.645000px;}
.y15{bottom:632.104500px;}
.yae{bottom:636.583500px;}
.y3f{bottom:642.256500px;}
.y98{bottom:643.545000px;}
.y57{bottom:645.246000px;}
.y14{bottom:648.543000px;}
.y3e{bottom:660.190500px;}
.y97{bottom:661.477500px;}
.yd6{bottom:661.684500px;}
.y56{bottom:663.178500px;}
.y13{bottom:664.981500px;}
.yad{bottom:669.307500px;}
.y3d{bottom:678.123000px;}
.y96{bottom:679.410000px;}
.y12{bottom:681.418500px;}
.yd5{bottom:694.561500px;}
.y3c{bottom:696.055500px;}
.y95{bottom:697.342500px;}
.y11{bottom:697.857000px;}
.y55{bottom:699.043500px;}
.yd4{bottom:711.000000px;}
.y3b{bottom:713.988000px;}
.y10{bottom:714.295500px;}
.y94{bottom:715.276500px;}
.y54{bottom:719.965500px;}
.yd3{bottom:727.437000px;}
.yf{bottom:730.734000px;}
.y3a{bottom:731.920500px;}
.y93{bottom:733.209000px;}
.yd2{bottom:743.875500px;}
.ye{bottom:747.172500px;}
.y39{bottom:749.853000px;}
.y92{bottom:751.141500px;}
.yd1{bottom:760.314000px;}
.y38{bottom:767.787000px;}
.y91{bottom:769.074000px;}
.yd0{bottom:776.752500px;}
.y37{bottom:785.719500px;}
.y90{bottom:787.006500px;}
.ycf{bottom:793.191000px;}
.yd{bottom:795.102000px;}
.y36{bottom:803.652000px;}
.y8f{bottom:804.939000px;}
.yce{bottom:809.629500px;}
.yc{bottom:817.254000px;}
.y35{bottom:821.584500px;}
.y8e{bottom:822.873000px;}
.ycd{bottom:826.068000px;}
.yb{bottom:833.692500px;}
.y34{bottom:839.517000px;}
.y8d{bottom:840.805500px;}
.ycc{bottom:842.506500px;}
.y33{bottom:857.449500px;}
.y8c{bottom:858.738000px;}
.ycb{bottom:858.945000px;}
.ya{bottom:859.300500px;}
.y32{bottom:875.383500px;}
.y8b{bottom:876.670500px;}
.yca{bottom:891.822000px;}
.y31{bottom:893.316000px;}
.y8a{bottom:894.603000px;}
.yc9{bottom:908.259000px;}
.y9{bottom:911.248500px;}
.y89{bottom:912.535500px;}
.yc8{bottom:924.697500px;}
.y30{bottom:929.181000px;}
.y88{bottom:930.469500px;}
.y8{bottom:938.148000px;}
.yc7{bottom:941.136000px;}
.y2f{bottom:947.113500px;}
.y87{bottom:948.402000px;}
.yc6{bottom:957.574500px;}
.y7{bottom:965.046000px;}
.y86{bottom:966.334500px;}
.yc5{bottom:974.013000px;}
.y2e{bottom:982.980000px;}
.y85{bottom:984.267000px;}
.yc4{bottom:990.451500px;}
.y6{bottom:991.945500px;}
.y2d{bottom:1000.912500px;}
.y84{bottom:1002.199500px;}
.yc3{bottom:1006.890000px;}
.y2c{bottom:1018.845000px;}
.y83{bottom:1020.132000px;}
.yc2{bottom:1023.328500px;}
.y5{bottom:1036.441500px;}
.y2b{bottom:1036.777500px;}
.y82{bottom:1038.066000px;}
.yc1{bottom:1039.767000px;}
.y4{bottom:1054.374000px;}
.y2a{bottom:1054.710000px;}
.yc0{bottom:1056.205500px;}
.y3{bottom:1072.306500px;}
.y29{bottom:1072.642500px;}
.y2{bottom:1090.239000px;}
.y28{bottom:1100.812500px;}
.y1{bottom:1108.171500px;}
.y27{bottom:1118.745000px;}
.h5{height:23.850624px;}
.hb{height:25.643904px;}
.h6{height:37.336090px;}
.h7{height:38.465856px;}
.h8{height:38.468418px;}
.h2{height:42.739554px;}
.hc{height:42.742400px;}
.h4{height:49.473619px;}
.h9{height:51.287808px;}
.ha{height:51.607602px;}
.hd{height:51.613602px;}
.h3{height:61.545198px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:202.147500px;}
.xc{left:208.498500px;}
.xe{left:212.956500px;}
.x11{left:217.090500px;}
.x12{left:219.706500px;}
.x4{left:223.923000px;}
.x1{left:227.142000px;}
.x10{left:229.404000px;}
.x3{left:234.822000px;}
.xb{left:244.666500px;}
.x5{left:264.325500px;}
.x8{left:270.795000px;}
.x9{left:279.739500px;}
.xa{left:292.053000px;}
.x7{left:359.538000px;}
.x6{left:392.064000px;}
.xd{left:454.045500px;}
.xf{left:609.106500px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:14.609067pt;}
.ls3{letter-spacing:14.960533pt;}
.ls9{letter-spacing:15.941867pt;}
.ls0{letter-spacing:15.941964pt;}
.ls8{letter-spacing:17.552533pt;}
.ls6{letter-spacing:18.944533pt;}
.lsa{letter-spacing:19.024533pt;}
.ls7{letter-spacing:19.925867pt;}
.ls2{letter-spacing:26.565806pt;}
.ls1{letter-spacing:26.571139pt;}
.ws51{word-spacing:-31.880533pt;}
.ws1c{word-spacing:-26.566933pt;}
.wsf{word-spacing:-23.910400pt;}
.ws3{word-spacing:-19.969910pt;}
.ws2{word-spacing:-19.893397pt;}
.wsa2{word-spacing:-17.853099pt;}
.ws96{word-spacing:-17.587310pt;}
.ws38{word-spacing:-17.534176pt;}
.ws74{word-spacing:-17.268507pt;}
.ws73{word-spacing:-17.162239pt;}
.ws4c{word-spacing:-17.002837pt;}
.wsa8{word-spacing:-16.843436pt;}
.ws64{word-spacing:-16.737168pt;}
.wsae{word-spacing:-16.720582pt;}
.ws3a{word-spacing:-16.684034pt;}
.ws87{word-spacing:-16.630900pt;}
.ws1b{word-spacing:-16.577877pt;}
.ws46{word-spacing:-16.577766pt;}
.ws24{word-spacing:-16.524633pt;}
.ws6a{word-spacing:-16.418365pt;}
.ws98{word-spacing:-16.312097pt;}
.ws90{word-spacing:-16.258963pt;}
.ws3f{word-spacing:-16.205829pt;}
.ws94{word-spacing:-16.152695pt;}
.wsa5{word-spacing:-16.099562pt;}
.ws99{word-spacing:-16.046428pt;}
.wsb6{word-spacing:-15.940160pt;}
.ws9e{word-spacing:-15.887026pt;}
.ws5f{word-spacing:-15.833892pt;}
.wsba{word-spacing:-15.780758pt;}
.ws86{word-spacing:-15.727625pt;}
.ws93{word-spacing:-15.674491pt;}
.ws33{word-spacing:-15.621357pt;}
.ws9f{word-spacing:-15.591843pt;}
.ws68{word-spacing:-15.568223pt;}
.wsce{word-spacing:-15.541760pt;}
.ws50{word-spacing:-15.493939pt;}
.ws2c{word-spacing:-15.461955pt;}
.wsab{word-spacing:-15.408821pt;}
.ws8e{word-spacing:-15.408788pt;}
.ws8d{word-spacing:-15.355687pt;}
.ws4e{word-spacing:-15.302554pt;}
.ws36{word-spacing:-15.249420pt;}
.wsc6{word-spacing:-15.207014pt;}
.ws91{word-spacing:-15.196286pt;}
.wsc5{word-spacing:-15.159194pt;}
.ws4d{word-spacing:-15.143152pt;}
.ws3b{word-spacing:-15.090018pt;}
.ws7d{word-spacing:-15.036884pt;}
.ws23{word-spacing:-14.930617pt;}
.ws1a{word-spacing:-14.877483pt;}
.ws47{word-spacing:-14.824349pt;}
.ws52{word-spacing:-14.558679pt;}
.wsb9{word-spacing:-14.505546pt;}
.wsa4{word-spacing:-14.452412pt;}
.ws7{word-spacing:-14.394061pt;}
.ws67{word-spacing:-14.346144pt;}
.ws1d{word-spacing:-14.293010pt;}
.ws40{word-spacing:-14.239876pt;}
.ws75{word-spacing:-14.186742pt;}
.ws35{word-spacing:-14.133609pt;}
.ws34{word-spacing:-14.096592pt;}
.ws59{word-spacing:-14.080475pt;}
.ws22{word-spacing:-13.974207pt;}
.wsa0{word-spacing:-13.921073pt;}
.wsd3{word-spacing:-13.915853pt;}
.ws8f{word-spacing:-13.868032pt;}
.ws53{word-spacing:-13.867939pt;}
.wsa9{word-spacing:-13.814805pt;}
.ws41{word-spacing:-13.708538pt;}
.ws5e{word-spacing:-13.655404pt;}
.ws14{word-spacing:-13.628928pt;}
.ws97{word-spacing:-13.602270pt;}
.ws4f{word-spacing:-13.549136pt;}
.wsc{word-spacing:-13.533286pt;}
.ws42{word-spacing:-13.496002pt;}
.wsac{word-spacing:-13.442868pt;}
.wsad{word-spacing:-13.412310pt;}
.ws1f{word-spacing:-13.389824pt;}
.ws3e{word-spacing:-13.389734pt;}
.ws1{word-spacing:-13.336601pt;}
.ws0{word-spacing:-13.283467pt;}
.wsdb{word-spacing:-13.246362pt;}
.wsda{word-spacing:-13.198541pt;}
.wsaa{word-spacing:-13.177199pt;}
.ws70{word-spacing:-13.124065pt;}
.wscf{word-spacing:-13.072393pt;}
.wsd0{word-spacing:-13.055078pt;}
.ws5a{word-spacing:-13.017797pt;}
.wscd{word-spacing:-13.007258pt;}
.ws6f{word-spacing:-12.964663pt;}
.ws2f{word-spacing:-12.911530pt;}
.ws9d{word-spacing:-12.858396pt;}
.ws1e{word-spacing:-12.752128pt;}
.ws26{word-spacing:-12.698994pt;}
.ws88{word-spacing:-12.645860pt;}
.wsdc{word-spacing:-12.529050pt;}
.ws58{word-spacing:-12.486459pt;}
.wsdd{word-spacing:-12.481229pt;}
.wsc1{word-spacing:-12.433408pt;}
.ws49{word-spacing:-12.433325pt;}
.wsc0{word-spacing:-12.385587pt;}
.wsb5{word-spacing:-12.380191pt;}
.ws63{word-spacing:-12.327057pt;}
.ws95{word-spacing:-12.220789pt;}
.ws21{word-spacing:-12.114522pt;}
.ws5d{word-spacing:-12.061388pt;}
.ws5c{word-spacing:-12.008254pt;}
.wsd9{word-spacing:-12.004096pt;}
.ws4{word-spacing:-12.003021pt;}
.ws18{word-spacing:-11.955200pt;}
.ws69{word-spacing:-11.955120pt;}
.ws32{word-spacing:-11.901986pt;}
.wsb3{word-spacing:-11.856582pt;}
.ws71{word-spacing:-11.848852pt;}
.ws7a{word-spacing:-11.742585pt;}
.ws43{word-spacing:-11.689451pt;}
.ws6e{word-spacing:-11.583183pt;}
.ws61{word-spacing:-11.530049pt;}
.wsd4{word-spacing:-11.524813pt;}
.wsbb{word-spacing:-11.476992pt;}
.ws76{word-spacing:-11.476915pt;}
.ws7f{word-spacing:-11.423781pt;}
.ws8b{word-spacing:-11.370647pt;}
.wsa7{word-spacing:-11.317514pt;}
.wscb{word-spacing:-11.285709pt;}
.ws2b{word-spacing:-11.264380pt;}
.wscc{word-spacing:-11.241941pt;}
.ws89{word-spacing:-11.211246pt;}
.ws3c{word-spacing:-11.158112pt;}
.ws65{word-spacing:-11.104978pt;}
.ws2e{word-spacing:-11.051844pt;}
.ws39{word-spacing:-10.998710pt;}
.ws4a{word-spacing:-10.945577pt;}
.ws28{word-spacing:-10.892443pt;}
.wsd{word-spacing:-10.855322pt;}
.ws3d{word-spacing:-10.839309pt;}
.ws8{word-spacing:-10.711859pt;}
.ws66{word-spacing:-10.679907pt;}
.ws77{word-spacing:-10.626773pt;}
.wsb1{word-spacing:-10.573639pt;}
.wsb{word-spacing:-10.568397pt;}
.ws9{word-spacing:-10.520576pt;}
.ws45{word-spacing:-10.520506pt;}
.wsa{word-spacing:-10.472755pt;}
.ws9b{word-spacing:-10.414238pt;}
.ws31{word-spacing:-10.307970pt;}
.ws82{word-spacing:-10.201702pt;}
.ws9a{word-spacing:-10.148569pt;}
.ws72{word-spacing:-10.095435pt;}
.wsb8{word-spacing:-10.042301pt;}
.wsa1{word-spacing:-9.989167pt;}
.ws81{word-spacing:-9.936033pt;}
.ws2a{word-spacing:-9.829765pt;}
.wsa6{word-spacing:-9.776631pt;}
.ws62{word-spacing:-9.723498pt;}
.ws7b{word-spacing:-9.670364pt;}
.ws7c{word-spacing:-9.659249pt;}
.ws56{word-spacing:-9.617230pt;}
.ws8a{word-spacing:-9.611249pt;}
.wsd1{word-spacing:-9.564160pt;}
.wsd2{word-spacing:-9.468518pt;}
.wsaf{word-spacing:-9.457828pt;}
.ws80{word-spacing:-9.404694pt;}
.ws13{word-spacing:-9.372877pt;}
.ws78{word-spacing:-9.351561pt;}
.ws48{word-spacing:-9.298427pt;}
.ws9c{word-spacing:-9.245293pt;}
.wse{word-spacing:-9.229414pt;}
.wsa3{word-spacing:-9.192159pt;}
.ws10{word-spacing:-9.181594pt;}
.ws57{word-spacing:-9.139025pt;}
.ws11{word-spacing:-9.133773pt;}
.wsbd{word-spacing:-9.038131pt;}
.ws55{word-spacing:-9.032757pt;}
.ws30{word-spacing:-8.979623pt;}
.wsbf{word-spacing:-8.942490pt;}
.wsbe{word-spacing:-8.894669pt;}
.ws17{word-spacing:-8.846848pt;}
.wsc4{word-spacing:-8.751206pt;}
.ws7e{word-spacing:-8.713954pt;}
.ws8c{word-spacing:-8.660820pt;}
.wsc7{word-spacing:-8.512102pt;}
.wsc8{word-spacing:-8.464282pt;}
.ws85{word-spacing:-8.448285pt;}
.wsc9{word-spacing:-8.416461pt;}
.wsca{word-spacing:-8.410240pt;}
.wsb7{word-spacing:-8.288883pt;}
.wsc3{word-spacing:-8.272998pt;}
.wsc2{word-spacing:-8.225178pt;}
.ws44{word-spacing:-8.182615pt;}
.ws12{word-spacing:-8.177357pt;}
.ws79{word-spacing:-8.129482pt;}
.ws37{word-spacing:-8.076348pt;}
.wsb2{word-spacing:-8.023214pt;}
.ws4b{word-spacing:-7.863812pt;}
.ws84{word-spacing:-7.810678pt;}
.ws25{word-spacing:-7.651277pt;}
.ws5b{word-spacing:-7.598143pt;}
.ws27{word-spacing:-7.545009pt;}
.wsb0{word-spacing:-7.385607pt;}
.wsb4{word-spacing:-7.279340pt;}
.ws2d{word-spacing:-7.173072pt;}
.ws54{word-spacing:-7.066804pt;}
.ws29{word-spacing:-6.801135pt;}
.ws16{word-spacing:-6.551450pt;}
.ws60{word-spacing:-6.503629pt;}
.ws92{word-spacing:-5.950993pt;}
.ws6b{word-spacing:-5.685324pt;}
.ws15{word-spacing:-5.642854pt;}
.ws6c{word-spacing:-5.313387pt;}
.ws6d{word-spacing:-4.994583pt;}
.wsbc{word-spacing:-4.686438pt;}
.wsd5{word-spacing:-0.573850pt;}
.ws19{word-spacing:-0.003158pt;}
.ws20{word-spacing:0.000000pt;}
.wsd7{word-spacing:0.573850pt;}
.wsd6{word-spacing:0.621090pt;}
.wsd8{word-spacing:0.621670pt;}
.ws6{word-spacing:2.609451pt;}
.ws5{word-spacing:11.668275pt;}
.ws83{word-spacing:31.816772pt;}
._7{margin-left:-8.225178pt;}
._5{margin-left:-6.427098pt;}
._c{margin-left:-5.472788pt;}
._2{margin-left:-4.356977pt;}
._1{margin-left:-3.294300pt;}
._0{margin-left:-1.859685pt;}
._3{margin-left:-0.903276pt;}
._9{width:0.903276pt;}
._4{width:1.963808pt;}
._f{width:8.926490pt;}
._a{width:10.573639pt;}
._d{width:11.901986pt;}
._8{width:12.911530pt;}
._11{width:14.452412pt;}
._e{width:16.356701pt;}
._13{width:17.640444pt;}
._b{width:19.287594pt;}
._12{width:21.519216pt;}
._10{width:27.104400pt;}
._6{width:63.697306pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:197.444000pt;}
.y81{bottom:237.294667pt;}
.y25{bottom:242.373333pt;}
.y6b{bottom:246.405333pt;}
.y6d{bottom:248.204000pt;}
.y53{bottom:252.090667pt;}
.yac{bottom:253.236000pt;}
.y80{bottom:256.985333pt;}
.y24{bottom:260.905333pt;}
.ybf{bottom:261.298667pt;}
.y6c{bottom:263.293333pt;}
.y6a{bottom:266.096000pt;}
.y52{bottom:268.030667pt;}
.yab{bottom:269.176000pt;}
.y7f{bottom:271.597333pt;}
.ybe{bottom:275.910667pt;}
.y23{bottom:276.846667pt;}
.y51{bottom:283.970667pt;}
.yaa{bottom:285.116000pt;}
.y7e{bottom:286.209333pt;}
.y69{bottom:286.628000pt;}
.y50{bottom:299.912000pt;}
.ya9{bottom:301.056000pt;}
.y7d{bottom:301.178667pt;}
.y68{bottom:302.568000pt;}
.ybd{bottom:302.973333pt;}
.y22{bottom:304.434667pt;}
.y4f{bottom:315.852000pt;}
.ya8{bottom:316.996000pt;}
.y67{bottom:318.508000pt;}
.y7c{bottom:321.776000pt;}
.y4e{bottom:331.792000pt;}
.ya7{bottom:332.936000pt;}
.y66{bottom:334.448000pt;}
.y7b{bottom:337.716000pt;}
.y21{bottom:342.649333pt;}
.ybc{bottom:342.689333pt;}
.y4d{bottom:347.732000pt;}
.ya6{bottom:348.877333pt;}
.y65{bottom:350.389333pt;}
.y7a{bottom:353.656000pt;}
.y20{bottom:358.590667pt;}
.ybb{bottom:358.629333pt;}
.y4c{bottom:363.672000pt;}
.ya5{bottom:364.817333pt;}
.y64{bottom:366.329333pt;}
.ye1{bottom:368.985333pt;}
.y79{bottom:369.596000pt;}
.yba{bottom:374.569333pt;}
.y4b{bottom:379.612000pt;}
.ya4{bottom:380.757333pt;}
.y63{bottom:382.269333pt;}
.y78{bottom:385.536000pt;}
.yb9{bottom:390.509333pt;}
.y4a{bottom:395.553333pt;}
.y1f{bottom:395.677333pt;}
.ya3{bottom:396.697333pt;}
.y62{bottom:398.209333pt;}
.y77{bottom:401.476000pt;}
.yb8{bottom:406.449333pt;}
.y1e{bottom:410.289333pt;}
.y49{bottom:411.493333pt;}
.ya2{bottom:412.637333pt;}
.ye0{bottom:412.821333pt;}
.y61{bottom:414.149333pt;}
.y76{bottom:417.417333pt;}
.yb7{bottom:422.389333pt;}
.y1d{bottom:424.901333pt;}
.y48{bottom:427.433333pt;}
.ya1{bottom:428.577333pt;}
.y60{bottom:430.089333pt;}
.y75{bottom:433.357333pt;}
.yb6{bottom:438.330667pt;}
.y1c{bottom:439.513333pt;}
.ydf{bottom:442.045333pt;}
.y47{bottom:443.373333pt;}
.ya0{bottom:444.518667pt;}
.y5f{bottom:446.030667pt;}
.y74{bottom:449.297333pt;}
.y1b{bottom:454.125333pt;}
.yb5{bottom:454.270667pt;}
.yde{bottom:456.657333pt;}
.y46{bottom:459.313333pt;}
.y9f{bottom:460.458667pt;}
.y5e{bottom:461.970667pt;}
.y73{bottom:465.237333pt;}
.y1a{bottom:468.737333pt;}
.yb4{bottom:470.210667pt;}
.ydd{bottom:471.269333pt;}
.y45{bottom:475.253333pt;}
.y9e{bottom:476.398667pt;}
.y5d{bottom:477.910667pt;}
.y72{bottom:481.177333pt;}
.y19{bottom:483.349333pt;}
.ydc{bottom:485.881333pt;}
.yb3{bottom:486.150667pt;}
.y44{bottom:491.194667pt;}
.y9d{bottom:492.338667pt;}
.y5c{bottom:493.850667pt;}
.y71{bottom:497.117333pt;}
.y18{bottom:497.960000pt;}
.ydb{bottom:500.492000pt;}
.yb2{bottom:502.090667pt;}
.y43{bottom:507.134667pt;}
.y9c{bottom:508.278667pt;}
.y5b{bottom:509.790667pt;}
.y17{bottom:512.572000pt;}
.y70{bottom:513.058667pt;}
.yda{bottom:515.104000pt;}
.yb1{bottom:518.030667pt;}
.y42{bottom:523.074667pt;}
.y9b{bottom:524.218667pt;}
.y5a{bottom:525.730667pt;}
.y6f{bottom:528.998667pt;}
.yd9{bottom:529.716000pt;}
.yb0{bottom:533.972000pt;}
.y41{bottom:539.014667pt;}
.y9a{bottom:540.160000pt;}
.y59{bottom:541.672000pt;}
.yd8{bottom:544.328000pt;}
.y16{bottom:547.258667pt;}
.yaf{bottom:549.912000pt;}
.y40{bottom:554.954667pt;}
.y99{bottom:556.100000pt;}
.y58{bottom:557.612000pt;}
.yd7{bottom:558.940000pt;}
.y6e{bottom:560.573333pt;}
.y15{bottom:561.870667pt;}
.yae{bottom:565.852000pt;}
.y3f{bottom:570.894667pt;}
.y98{bottom:572.040000pt;}
.y57{bottom:573.552000pt;}
.y14{bottom:576.482667pt;}
.y3e{bottom:586.836000pt;}
.y97{bottom:587.980000pt;}
.yd6{bottom:588.164000pt;}
.y56{bottom:589.492000pt;}
.y13{bottom:591.094667pt;}
.yad{bottom:594.940000pt;}
.y3d{bottom:602.776000pt;}
.y96{bottom:603.920000pt;}
.y12{bottom:605.705333pt;}
.yd5{bottom:617.388000pt;}
.y3c{bottom:618.716000pt;}
.y95{bottom:619.860000pt;}
.y11{bottom:620.317333pt;}
.y55{bottom:621.372000pt;}
.yd4{bottom:632.000000pt;}
.y3b{bottom:634.656000pt;}
.y10{bottom:634.929333pt;}
.y94{bottom:635.801333pt;}
.y54{bottom:639.969333pt;}
.yd3{bottom:646.610667pt;}
.yf{bottom:649.541333pt;}
.y3a{bottom:650.596000pt;}
.y93{bottom:651.741333pt;}
.yd2{bottom:661.222667pt;}
.ye{bottom:664.153333pt;}
.y39{bottom:666.536000pt;}
.y92{bottom:667.681333pt;}
.yd1{bottom:675.834667pt;}
.y38{bottom:682.477333pt;}
.y91{bottom:683.621333pt;}
.yd0{bottom:690.446667pt;}
.y37{bottom:698.417333pt;}
.y90{bottom:699.561333pt;}
.ycf{bottom:705.058667pt;}
.yd{bottom:706.757333pt;}
.y36{bottom:714.357333pt;}
.y8f{bottom:715.501333pt;}
.yce{bottom:719.670667pt;}
.yc{bottom:726.448000pt;}
.y35{bottom:730.297333pt;}
.y8e{bottom:731.442667pt;}
.ycd{bottom:734.282667pt;}
.yb{bottom:741.060000pt;}
.y34{bottom:746.237333pt;}
.y8d{bottom:747.382667pt;}
.ycc{bottom:748.894667pt;}
.y33{bottom:762.177333pt;}
.y8c{bottom:763.322667pt;}
.ycb{bottom:763.506667pt;}
.ya{bottom:763.822667pt;}
.y32{bottom:778.118667pt;}
.y8b{bottom:779.262667pt;}
.yca{bottom:792.730667pt;}
.y31{bottom:794.058667pt;}
.y8a{bottom:795.202667pt;}
.yc9{bottom:807.341333pt;}
.y9{bottom:809.998667pt;}
.y89{bottom:811.142667pt;}
.yc8{bottom:821.953333pt;}
.y30{bottom:825.938667pt;}
.y88{bottom:827.084000pt;}
.y8{bottom:833.909333pt;}
.yc7{bottom:836.565333pt;}
.y2f{bottom:841.878667pt;}
.y87{bottom:843.024000pt;}
.yc6{bottom:851.177333pt;}
.y7{bottom:857.818667pt;}
.y86{bottom:858.964000pt;}
.yc5{bottom:865.789333pt;}
.y2e{bottom:873.760000pt;}
.y85{bottom:874.904000pt;}
.yc4{bottom:880.401333pt;}
.y6{bottom:881.729333pt;}
.y2d{bottom:889.700000pt;}
.y84{bottom:890.844000pt;}
.yc3{bottom:895.013333pt;}
.y2c{bottom:905.640000pt;}
.y83{bottom:906.784000pt;}
.yc2{bottom:909.625333pt;}
.y5{bottom:921.281333pt;}
.y2b{bottom:921.580000pt;}
.y82{bottom:922.725333pt;}
.yc1{bottom:924.237333pt;}
.y4{bottom:937.221333pt;}
.y2a{bottom:937.520000pt;}
.yc0{bottom:938.849333pt;}
.y3{bottom:953.161333pt;}
.y29{bottom:953.460000pt;}
.y2{bottom:969.101333pt;}
.y28{bottom:978.500000pt;}
.y1{bottom:985.041333pt;}
.y27{bottom:994.440000pt;}
.h5{height:21.200555pt;}
.hb{height:22.794581pt;}
.h6{height:33.187635pt;}
.h7{height:34.191872pt;}
.h8{height:34.194149pt;}
.h2{height:37.990715pt;}
.hc{height:37.993245pt;}
.h4{height:43.976550pt;}
.h9{height:45.589163pt;}
.ha{height:45.873424pt;}
.hd{height:45.878757pt;}
.h3{height:54.706843pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:179.686667pt;}
.xc{left:185.332000pt;}
.xe{left:189.294667pt;}
.x11{left:192.969333pt;}
.x12{left:195.294667pt;}
.x4{left:199.042667pt;}
.x1{left:201.904000pt;}
.x10{left:203.914667pt;}
.x3{left:208.730667pt;}
.xb{left:217.481333pt;}
.x5{left:234.956000pt;}
.x8{left:240.706667pt;}
.x9{left:248.657333pt;}
.xa{left:259.602667pt;}
.x7{left:319.589333pt;}
.x6{left:348.501333pt;}
.xd{left:403.596000pt;}
.xf{left:541.428000pt;}
}




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