
    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_4cc6442179e0b162f5323aea.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_608cfab757d01b4b29560829.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_eb7e61dec42dbd6873e3a467.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_8e70083b56e0f6ba3322acaa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_882773364e8c6e93ed3a2225.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.454000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.334000px;}
.ls3{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.840017px;}
.ls9{letter-spacing:2.371909px;}
.lsb{letter-spacing:2.385746px;}
.lsa{letter-spacing:2.391487px;}
.ls8{letter-spacing:2.391527px;}
.lsc{letter-spacing:2.395613px;}
.ls0{letter-spacing:2.964877px;}
.ls7{letter-spacing:2.986766px;}
.ls6{letter-spacing:2.987108px;}
.ls5{letter-spacing:2.987675px;}
.ls4{letter-spacing:2.988017px;}
.ls1{letter-spacing:2.988780px;}
.ls2{letter-spacing:2.990725px;}
.lsd{letter-spacing:35.861468px;}
.lse{letter-spacing:35.867468px;}
.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;}
}
.ws3{word-spacing:-14.943900px;}
.ws11{word-spacing:-14.920027px;}
.ws26{word-spacing:-11.955150px;}
.ws93{word-spacing:-11.936059px;}
.ws4{word-spacing:-7.301351px;}
.ws3e{word-spacing:-1.195512px;}
.wsb9{word-spacing:-0.908591px;}
.ws84{word-spacing:-0.597756px;}
.wsc1{word-spacing:-0.573847px;}
.ws4b{word-spacing:-0.537980px;}
.wsa8{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.wsa3{word-spacing:-0.015656px;}
.ws92{word-spacing:-0.012596px;}
.wsa2{word-spacing:-0.003927px;}
.ws8e{word-spacing:-0.003192px;}
.ws6b{word-spacing:-0.003180px;}
.ws69{word-spacing:-0.001326px;}
.ws37{word-spacing:0.000000px;}
.ws6d{word-spacing:0.001128px;}
.ws6a{word-spacing:0.004049px;}
.ws8f{word-spacing:0.014645px;}
.ws29{word-spacing:0.179327px;}
.wsaf{word-spacing:0.358654px;}
.ws6{word-spacing:0.430387px;}
.ws66{word-spacing:0.478205px;}
.ws49{word-spacing:0.537980px;}
.ws2e{word-spacing:0.597756px;}
.ws12{word-spacing:0.717307px;}
.wsb5{word-spacing:1.075961px;}
.ws43{word-spacing:1.315063px;}
.ws54{word-spacing:1.613941px;}
.ws53{word-spacing:1.853044px;}
.ws70{word-spacing:1.912819px;}
.ws35{word-spacing:2.092146px;}
.ws52{word-spacing:2.151922px;}
.ws7e{word-spacing:2.271473px;}
.ws91{word-spacing:2.391030px;}
.ws14{word-spacing:2.450800px;}
.wsc4{word-spacing:2.534492px;}
.ws98{word-spacing:2.570351px;}
.ws78{word-spacing:2.677954px;}
.ws8{word-spacing:2.689920px;}
.ws80{word-spacing:2.809453px;}
.ws7f{word-spacing:3.048556px;}
.ws71{word-spacing:3.108331px;}
.ws99{word-spacing:3.168107px;}
.ws74{word-spacing:3.227882px;}
.ws81{word-spacing:3.287658px;}
.wsb8{word-spacing:3.347434px;}
.ws61{word-spacing:3.586536px;}
.ws67{word-spacing:3.706087px;}
.ws7{word-spacing:3.712090px;}
.ws39{word-spacing:3.825638px;}
.ws42{word-spacing:3.885414px;}
.ws19{word-spacing:4.004965px;}
.ws95{word-spacing:4.064751px;}
.ws1b{word-spacing:4.184292px;}
.ws48{word-spacing:4.303843px;}
.ws1f{word-spacing:4.483170px;}
.ws16{word-spacing:4.542946px;}
.ws31{word-spacing:4.602721px;}
.wsbe{word-spacing:4.686419px;}
.ws1e{word-spacing:4.722272px;}
.ws90{word-spacing:4.743818px;}
.ws72{word-spacing:4.782048px;}
.ws79{word-spacing:4.782060px;}
.ws4a{word-spacing:5.080926px;}
.ws64{word-spacing:5.140702px;}
.ws7b{word-spacing:5.260253px;}
.ws30{word-spacing:5.379804px;}
.ws33{word-spacing:5.499355px;}
.ws82{word-spacing:5.618906px;}
.ws4e{word-spacing:5.678682px;}
.ws13{word-spacing:5.798233px;}
.wsa1{word-spacing:5.924522px;}
.ws6c{word-spacing:5.939240px;}
.ws2{word-spacing:5.977560px;}
.ws94{word-spacing:5.977575px;}
.ws2f{word-spacing:6.097111px;}
.ws63{word-spacing:6.156887px;}
.ws5f{word-spacing:6.216662px;}
.ws1a{word-spacing:6.336214px;}
.ws77{word-spacing:6.407960px;}
.ws8b{word-spacing:6.455765px;}
.ws89{word-spacing:6.515540px;}
.ws1{word-spacing:6.575340px;}
.wse{word-spacing:6.724800px;}
.ws2a{word-spacing:6.814418px;}
.ws85{word-spacing:6.874194px;}
.ws56{word-spacing:6.993745px;}
.wsc2{word-spacing:7.029628px;}
.ws18{word-spacing:7.113296px;}
.ws60{word-spacing:7.173072px;}
.ws97{word-spacing:7.292623px;}
.ws62{word-spacing:7.352399px;}
.ws45{word-spacing:7.531726px;}
.ws44{word-spacing:7.651277px;}
.ws28{word-spacing:7.770828px;}
.ws4c{word-spacing:7.830604px;}
.ws1c{word-spacing:8.069706px;}
.ws9d{word-spacing:8.189257px;}
.ws3c{word-spacing:8.488135px;}
.ws2d{word-spacing:8.547911px;}
.ws3b{word-spacing:8.607686px;}
.ws86{word-spacing:8.667462px;}
.ws3a{word-spacing:8.787013px;}
.wsc3{word-spacing:9.085914px;}
.ws24{word-spacing:9.205442px;}
.ws46{word-spacing:9.743423px;}
.ws51{word-spacing:9.803198px;}
.wsbd{word-spacing:9.861178px;}
.ws15{word-spacing:9.922750px;}
.wsa0{word-spacing:9.982525px;}
.ws34{word-spacing:10.102076px;}
.ws8c{word-spacing:10.221628px;}
.wsd{word-spacing:10.275494px;}
.wsa6{word-spacing:10.281403px;}
.ws1d{word-spacing:10.341179px;}
.wsb2{word-spacing:10.400954px;}
.ws3d{word-spacing:10.460730px;}
.ws88{word-spacing:10.640057px;}
.wsaa{word-spacing:10.819384px;}
.wsb7{word-spacing:10.879159px;}
.wsa4{word-spacing:10.938935px;}
.ws7c{word-spacing:10.998710px;}
.ws68{word-spacing:11.118262px;}
.ws76{word-spacing:11.237813px;}
.wsad{word-spacing:11.297588px;}
.ws7a{word-spacing:11.417140px;}
.wsc0{word-spacing:11.620406px;}
.ws75{word-spacing:11.656242px;}
.ws5b{word-spacing:11.775793px;}
.wsba{word-spacing:11.811688px;}
.ws36{word-spacing:11.955120px;}
.wsb3{word-spacing:12.194222px;}
.wsa{word-spacing:12.212237px;}
.wsbf{word-spacing:12.242074px;}
.ws50{word-spacing:12.433325px;}
.ws9a{word-spacing:12.493100px;}
.ws41{word-spacing:12.612652px;}
.ws6e{word-spacing:12.732203px;}
.ws22{word-spacing:12.791978px;}
.wsb1{word-spacing:12.851754px;}
.ws65{word-spacing:12.911530px;}
.wsa7{word-spacing:13.090856px;}
.ws2b{word-spacing:13.150632px;}
.ws17{word-spacing:13.449510px;}
.wsb4{word-spacing:13.569061px;}
.ws5d{word-spacing:13.688612px;}
.ws55{word-spacing:13.808164px;}
.wsbc{word-spacing:13.820153px;}
.ws5a{word-spacing:13.927715px;}
.wsac{word-spacing:14.166817px;}
.ws59{word-spacing:14.226593px;}
.wsab{word-spacing:14.286368px;}
.ws58{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws96{word-spacing:14.405920px;}
.ws40{word-spacing:14.465695px;}
.ws21{word-spacing:14.525471px;}
.wsa9{word-spacing:14.704798px;}
.wsa5{word-spacing:14.884124px;}
.ws47{word-spacing:14.943900px;}
.ws23{word-spacing:15.063451px;}
.ws4d{word-spacing:15.302554px;}
.ws5e{word-spacing:15.362329px;}
.ws20{word-spacing:15.481880px;}
.ws32{word-spacing:15.541656px;}
.ws3f{word-spacing:15.661207px;}
.ws83{word-spacing:15.960085px;}
.wsae{word-spacing:16.019861px;}
.ws27{word-spacing:16.079636px;}
.ws73{word-spacing:16.199188px;}
.ws4f{word-spacing:16.438290px;}
.wsbb{word-spacing:16.832851px;}
.wsc{word-spacing:17.161690px;}
.ws9b{word-spacing:17.275148px;}
.ws5c{word-spacing:17.394700px;}
.ws8a{word-spacing:17.454475px;}
.wsb{word-spacing:17.538278px;}
.ws57{word-spacing:17.872904px;}
.ws9{word-spacing:17.914867px;}
.ws10{word-spacing:17.932680px;}
.ws87{word-spacing:18.530436px;}
.wsb6{word-spacing:18.889090px;}
.ws7d{word-spacing:19.068416px;}
.ws9c{word-spacing:19.367294px;}
.wsb0{word-spacing:19.725948px;}
.ws2c{word-spacing:20.024826px;}
.wsf{word-spacing:20.120602px;}
.ws8d{word-spacing:20.682358px;}
.ws25{word-spacing:20.861684px;}
.ws9f{word-spacing:22.774504px;}
.ws9e{word-spacing:23.013606px;}
.ws6f{word-spacing:24.149342px;}
.ws38{word-spacing:28.991166px;}
._0{margin-left:-9.325017px;}
._4{margin-left:-4.949453px;}
._1{margin-left:-3.586545px;}
._6{margin-left:-2.510572px;}
._2{margin-left:-1.434618px;}
._8{width:1.052053px;}
._3{width:2.611217px;}
._7{width:3.957425px;}
._13{width:10.377070px;}
._5{width:14.645026px;}
._b{width:16.737172px;}
._14{width:18.219649px;}
._15{width:21.275744px;}
._9{width:26.361040px;}
._e{width:28.632516px;}
._f{width:29.887875px;}
._a{width:36.774041px;}
._12{width:43.252479px;}
._11{width:46.385982px;}
._10{width:60.803883px;}
._c{width:465.103156px;}
._d{width:769.959481px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:38.256600px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y2d{bottom:113.332500px;}
.y2c{bottom:131.265000px;}
.y42{bottom:149.197500px;}
.y2b{bottom:149.199000px;}
.y2a{bottom:167.131500px;}
.y29{bottom:185.064000px;}
.yb8{bottom:190.992000px;}
.y28{bottom:202.996500px;}
.yb7{bottom:220.740000px;}
.y27{bottom:220.929000px;}
.y87{bottom:221.961000px;}
.yb6{bottom:238.672500px;}
.y41{bottom:238.861500px;}
.y26{bottom:238.863000px;}
.y86{bottom:239.893500px;}
.yb5{bottom:256.605000px;}
.y25{bottom:256.795500px;}
.y85{bottom:257.826000px;}
.yb4{bottom:274.537500px;}
.y24{bottom:274.728000px;}
.y84{bottom:275.758500px;}
.yb3{bottom:292.471500px;}
.y23{bottom:292.660500px;}
.y83{bottom:293.692500px;}
.y6e{bottom:298.582500px;}
.yb2{bottom:310.404000px;}
.y22{bottom:310.593000px;}
.y82{bottom:311.625000px;}
.y6d{bottom:316.515000px;}
.ycf{bottom:326.109000px;}
.yb1{bottom:328.336500px;}
.y21{bottom:328.525500px;}
.y81{bottom:329.557500px;}
.yce{bottom:339.558000px;}
.y6c{bottom:346.255500px;}
.yb0{bottom:346.269000px;}
.y40{bottom:346.458000px;}
.y20{bottom:346.459500px;}
.y80{bottom:347.490000px;}
.ycd{bottom:353.008500px;}
.y6b{bottom:364.189500px;}
.yaf{bottom:364.201500px;}
.y1f{bottom:364.392000px;}
.y7f{bottom:365.422500px;}
.ycc{bottom:366.457500px;}
.ycb{bottom:379.906500px;}
.y6a{bottom:382.122000px;}
.yae{bottom:382.134000px;}
.y1e{bottom:382.324500px;}
.y7e{bottom:383.356500px;}
.y3f{bottom:386.835000px;}
.yca{bottom:393.357000px;}
.y69{bottom:400.054500px;}
.yad{bottom:400.068000px;}
.y1d{bottom:400.257000px;}
.y7d{bottom:401.289000px;}
.yc9{bottom:406.806000px;}
.y3e{bottom:413.679000px;}
.y68{bottom:417.987000px;}
.yac{bottom:418.000500px;}
.y1c{bottom:418.189500px;}
.y7c{bottom:419.221500px;}
.yc8{bottom:420.255000px;}
.y3d{bottom:431.611500px;}
.yc7{bottom:433.705500px;}
.y67{bottom:435.919500px;}
.yab{bottom:435.933000px;}
.y1b{bottom:436.122000px;}
.y7b{bottom:437.154000px;}
.yc6{bottom:447.154500px;}
.y3c{bottom:449.544000px;}
.y66{bottom:453.852000px;}
.yaa{bottom:453.865500px;}
.y1a{bottom:454.056000px;}
.y7a{bottom:455.086500px;}
.yc5{bottom:460.605000px;}
.y3b{bottom:467.476500px;}
.y65{bottom:471.786000px;}
.ya9{bottom:471.798000px;}
.y19{bottom:471.988500px;}
.y79{bottom:473.019000px;}
.yc4{bottom:474.054000px;}
.y3a{bottom:485.409000px;}
.yc3{bottom:487.503000px;}
.y64{bottom:489.718500px;}
.y18{bottom:489.921000px;}
.y78{bottom:490.953000px;}
.ya8{bottom:495.658500px;}
.yc2{bottom:500.953500px;}
.y39{bottom:503.341500px;}
.y63{bottom:507.651000px;}
.y77{bottom:508.885500px;}
.yc1{bottom:514.402500px;}
.y38{bottom:521.275500px;}
.ya7{bottom:525.408000px;}
.y62{bottom:525.583500px;}
.y17{bottom:529.522500px;}
.yc0{bottom:536.595000px;}
.y76{bottom:537.714000px;}
.y37{bottom:539.208000px;}
.ya6{bottom:543.340500px;}
.y61{bottom:543.516000px;}
.y36{bottom:557.140500px;}
.ya5{bottom:561.273000px;}
.y60{bottom:561.448500px;}
.ybf{bottom:564.613500px;}
.y75{bottom:574.501500px;}
.y35{bottom:575.073000px;}
.ya4{bottom:579.205500px;}
.y5f{bottom:579.382500px;}
.ybe{bottom:582.547500px;}
.y16{bottom:585.724500px;}
.y74{bottom:592.434000px;}
.y34{bottom:593.005500px;}
.ya3{bottom:597.138000px;}
.y5e{bottom:597.315000px;}
.ybd{bottom:600.480000px;}
.y15{bottom:603.495000px;}
.y73{bottom:610.366500px;}
.y33{bottom:610.939500px;}
.ya2{bottom:615.070500px;}
.y5d{bottom:615.247500px;}
.y14{bottom:618.439500px;}
.ybc{bottom:623.119500px;}
.y72{bottom:628.299000px;}
.y32{bottom:628.872000px;}
.ya1{bottom:633.004500px;}
.y5c{bottom:633.180000px;}
.y13{bottom:633.382500px;}
.y31{bottom:646.804500px;}
.y12{bottom:648.327000px;}
.ya0{bottom:650.937000px;}
.y5b{bottom:651.112500px;}
.ybb{bottom:651.139500px;}
.y11{bottom:663.271500px;}
.y30{bottom:664.737000px;}
.y9f{bottom:668.869500px;}
.y5a{bottom:669.046500px;}
.yba{bottom:669.072000px;}
.y10{bottom:678.214500px;}
.y71{bottom:679.366500px;}
.y2f{bottom:682.669500px;}
.y9e{bottom:686.802000px;}
.y59{bottom:686.979000px;}
.yb9{bottom:687.004500px;}
.y70{bottom:692.817000px;}
.yf{bottom:693.159000px;}
.y2e{bottom:700.602000px;}
.y58{bottom:704.911500px;}
.y9d{bottom:704.938500px;}
.y6f{bottom:706.266000px;}
.ye{bottom:708.102000px;}
.y9c{bottom:722.871000px;}
.yd{bottom:723.046500px;}
.y9b{bottom:740.803500px;}
.y57{bottom:740.979000px;}
.y9a{bottom:758.736000px;}
.y56{bottom:758.911500px;}
.y55{bottom:776.845500px;}
.y54{bottom:794.778000px;}
.yc{bottom:805.012500px;}
.y53{bottom:812.710500px;}
.yb{bottom:823.504500px;}
.y99{bottom:825.835500px;}
.y52{bottom:830.643000px;}
.y98{bottom:839.284500px;}
.ya{bottom:841.998000px;}
.y51{bottom:848.575500px;}
.y97{bottom:852.733500px;}
.y9{bottom:860.491500px;}
.y96{bottom:866.184000px;}
.y50{bottom:866.508000px;}
.y8{bottom:879.205500px;}
.y95{bottom:879.633000px;}
.y4f{bottom:884.442000px;}
.y94{bottom:890.775000px;}
.y4e{bottom:902.374500px;}
.y93{bottom:917.674500px;}
.y7{bottom:918.042000px;}
.y4d{bottom:920.307000px;}
.y92{bottom:931.123500px;}
.y6{bottom:936.534000px;}
.y4c{bottom:938.239500px;}
.y91{bottom:944.574000px;}
.y5{bottom:955.027500px;}
.y90{bottom:955.716000px;}
.y4b{bottom:956.172000px;}
.y4{bottom:973.521000px;}
.y4a{bottom:974.104500px;}
.y8e{bottom:982.614000px;}
.y8f{bottom:982.615500px;}
.y49{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.y8d{bottom:996.064500px;}
.y8c{bottom:1009.513500px;}
.y48{bottom:1009.971000px;}
.y8b{bottom:1022.964000px;}
.y47{bottom:1027.903500px;}
.y8a{bottom:1034.106000px;}
.y2{bottom:1039.309500px;}
.y46{bottom:1045.836000px;}
.y89{bottom:1055.362500px;}
.y45{bottom:1063.768500px;}
.y1{bottom:1081.152000px;}
.y44{bottom:1081.701000px;}
.y88{bottom:1086.184500px;}
.y43{bottom:1099.635000px;}
.h9{height:32.900573px;}
.ha{height:33.187496px;}
.h7{height:37.336090px;}
.h6{height:37.605082px;}
.h3{height:40.826735px;}
.h4{height:41.125613px;}
.hb{height:41.419613px;}
.h8{height:41.484266px;}
.h2{height:45.238339px;}
.h5{height:59.572339px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1c{left:73.446000px;}
.x2e{left:80.905500px;}
.x32{left:82.411500px;}
.x37{left:85.284000px;}
.x19{left:88.315500px;}
.x5{left:90.871500px;}
.x4{left:96.781500px;}
.x1b{left:99.447000px;}
.x6{left:100.854000px;}
.x7{left:109.753500px;}
.x18{left:115.951500px;}
.x1{left:127.050000px;}
.x3{left:131.316000px;}
.x1a{left:156.286500px;}
.x2f{left:191.265000px;}
.x38{left:201.433500px;}
.x29{left:203.428500px;}
.x2{left:232.636500px;}
.x33{left:242.848500px;}
.x34{left:257.542500px;}
.xc{left:265.164000px;}
.xb{left:274.197000px;}
.x9{left:276.387000px;}
.xa{left:283.941000px;}
.x8{left:289.471500px;}
.x1e{left:293.952000px;}
.x21{left:305.085000px;}
.x1f{left:306.451500px;}
.x1d{left:333.925500px;}
.x20{left:361.923000px;}
.x31{left:436.213500px;}
.x2c{left:467.967000px;}
.xf{left:469.911000px;}
.xe{left:475.821000px;}
.x10{left:479.893500px;}
.x2b{left:482.910000px;}
.x24{left:484.719000px;}
.x11{left:490.204500px;}
.xd{left:494.080500px;}
.x30{left:505.224000px;}
.x2d{left:515.370000px;}
.x28{left:542.926500px;}
.x35{left:555.655500px;}
.x36{left:570.351000px;}
.x27{left:582.198000px;}
.x25{left:583.566000px;}
.x22{left:585.025500px;}
.x39{left:591.090000px;}
.x2a{left:598.779000px;}
.x3b{left:614.418000px;}
.x23{left:629.754000px;}
.x26{left:639.036000px;}
.x17{left:644.202000px;}
.x3a{left:648.346500px;}
.x13{left:654.505500px;}
.x16{left:665.638500px;}
.x14{left:667.006500px;}
.x12{left:687.181500px;}
.x15{left:722.478000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.741333pt;}
.ls3{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.746682pt;}
.ls9{letter-spacing:2.108364pt;}
.lsb{letter-spacing:2.120663pt;}
.lsa{letter-spacing:2.125766pt;}
.ls8{letter-spacing:2.125802pt;}
.lsc{letter-spacing:2.129434pt;}
.ls0{letter-spacing:2.635446pt;}
.ls7{letter-spacing:2.654903pt;}
.ls6{letter-spacing:2.655207pt;}
.ls5{letter-spacing:2.655711pt;}
.ls4{letter-spacing:2.656015pt;}
.ls1{letter-spacing:2.656693pt;}
.ls2{letter-spacing:2.658422pt;}
.lsd{letter-spacing:31.876861pt;}
.lse{letter-spacing:31.882194pt;}
.ws3{word-spacing:-13.283467pt;}
.ws11{word-spacing:-13.262246pt;}
.ws26{word-spacing:-10.626800pt;}
.ws93{word-spacing:-10.609830pt;}
.ws4{word-spacing:-6.490090pt;}
.ws3e{word-spacing:-1.062677pt;}
.wsb9{word-spacing:-0.807637pt;}
.ws84{word-spacing:-0.531339pt;}
.wsc1{word-spacing:-0.510086pt;}
.ws4b{word-spacing:-0.478205pt;}
.wsa8{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047821pt;}
.wsa3{word-spacing:-0.013917pt;}
.ws92{word-spacing:-0.011197pt;}
.wsa2{word-spacing:-0.003491pt;}
.ws8e{word-spacing:-0.002837pt;}
.ws6b{word-spacing:-0.002827pt;}
.ws69{word-spacing:-0.001179pt;}
.ws37{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.001003pt;}
.ws6a{word-spacing:0.003599pt;}
.ws8f{word-spacing:0.013018pt;}
.ws29{word-spacing:0.159402pt;}
.wsaf{word-spacing:0.318803pt;}
.ws6{word-spacing:0.382566pt;}
.ws66{word-spacing:0.425071pt;}
.ws49{word-spacing:0.478205pt;}
.ws2e{word-spacing:0.531339pt;}
.ws12{word-spacing:0.637606pt;}
.wsb5{word-spacing:0.956410pt;}
.ws43{word-spacing:1.168945pt;}
.ws54{word-spacing:1.434614pt;}
.ws53{word-spacing:1.647150pt;}
.ws70{word-spacing:1.700284pt;}
.ws35{word-spacing:1.859685pt;}
.ws52{word-spacing:1.912819pt;}
.ws7e{word-spacing:2.019087pt;}
.ws91{word-spacing:2.125360pt;}
.ws14{word-spacing:2.178489pt;}
.wsc4{word-spacing:2.252882pt;}
.ws98{word-spacing:2.284756pt;}
.ws78{word-spacing:2.380403pt;}
.ws8{word-spacing:2.391040pt;}
.ws80{word-spacing:2.497292pt;}
.ws7f{word-spacing:2.709827pt;}
.ws71{word-spacing:2.762961pt;}
.ws99{word-spacing:2.816095pt;}
.ws74{word-spacing:2.869229pt;}
.ws81{word-spacing:2.922363pt;}
.wsb8{word-spacing:2.975497pt;}
.ws61{word-spacing:3.188032pt;}
.ws67{word-spacing:3.294300pt;}
.ws7{word-spacing:3.299635pt;}
.ws39{word-spacing:3.400567pt;}
.ws42{word-spacing:3.453701pt;}
.ws19{word-spacing:3.559969pt;}
.ws95{word-spacing:3.613112pt;}
.ws1b{word-spacing:3.719371pt;}
.ws48{word-spacing:3.825638pt;}
.ws1f{word-spacing:3.985040pt;}
.ws16{word-spacing:4.038174pt;}
.ws31{word-spacing:4.091308pt;}
.wsbe{word-spacing:4.165706pt;}
.ws1e{word-spacing:4.197575pt;}
.ws90{word-spacing:4.216727pt;}
.ws72{word-spacing:4.250709pt;}
.ws79{word-spacing:4.250720pt;}
.ws4a{word-spacing:4.516379pt;}
.ws64{word-spacing:4.569513pt;}
.ws7b{word-spacing:4.675780pt;}
.ws30{word-spacing:4.782048pt;}
.ws33{word-spacing:4.888316pt;}
.ws82{word-spacing:4.994583pt;}
.ws4e{word-spacing:5.047717pt;}
.ws13{word-spacing:5.153985pt;}
.wsa1{word-spacing:5.266242pt;}
.ws6c{word-spacing:5.279324pt;}
.ws2{word-spacing:5.313387pt;}
.ws94{word-spacing:5.313400pt;}
.ws2f{word-spacing:5.419654pt;}
.ws63{word-spacing:5.472788pt;}
.ws5f{word-spacing:5.525922pt;}
.ws1a{word-spacing:5.632190pt;}
.ws77{word-spacing:5.695965pt;}
.ws8b{word-spacing:5.738458pt;}
.ws89{word-spacing:5.791591pt;}
.ws1{word-spacing:5.844747pt;}
.wse{word-spacing:5.977600pt;}
.ws2a{word-spacing:6.057261pt;}
.ws85{word-spacing:6.110395pt;}
.ws56{word-spacing:6.216662pt;}
.wsc2{word-spacing:6.248558pt;}
.ws18{word-spacing:6.322930pt;}
.ws60{word-spacing:6.376064pt;}
.ws97{word-spacing:6.482332pt;}
.ws62{word-spacing:6.535466pt;}
.ws45{word-spacing:6.694867pt;}
.ws44{word-spacing:6.801135pt;}
.ws28{word-spacing:6.907403pt;}
.ws4c{word-spacing:6.960537pt;}
.ws1c{word-spacing:7.173072pt;}
.ws9d{word-spacing:7.279340pt;}
.ws3c{word-spacing:7.545009pt;}
.ws2d{word-spacing:7.598143pt;}
.ws3b{word-spacing:7.651277pt;}
.ws86{word-spacing:7.704411pt;}
.ws3a{word-spacing:7.810678pt;}
.wsc3{word-spacing:8.076368pt;}
.ws24{word-spacing:8.182615pt;}
.ws46{word-spacing:8.660820pt;}
.ws51{word-spacing:8.713954pt;}
.wsbd{word-spacing:8.765491pt;}
.ws15{word-spacing:8.820222pt;}
.wsa0{word-spacing:8.873356pt;}
.ws34{word-spacing:8.979623pt;}
.ws8c{word-spacing:9.085891pt;}
.wsd{word-spacing:9.133773pt;}
.wsa6{word-spacing:9.139025pt;}
.ws1d{word-spacing:9.192159pt;}
.wsb2{word-spacing:9.245293pt;}
.ws3d{word-spacing:9.298427pt;}
.ws88{word-spacing:9.457828pt;}
.wsaa{word-spacing:9.617230pt;}
.wsb7{word-spacing:9.670364pt;}
.wsa4{word-spacing:9.723498pt;}
.ws7c{word-spacing:9.776631pt;}
.ws68{word-spacing:9.882899pt;}
.ws76{word-spacing:9.989167pt;}
.wsad{word-spacing:10.042301pt;}
.ws7a{word-spacing:10.148569pt;}
.wsc0{word-spacing:10.329250pt;}
.ws75{word-spacing:10.361104pt;}
.ws5b{word-spacing:10.467372pt;}
.wsba{word-spacing:10.499278pt;}
.ws36{word-spacing:10.626773pt;}
.wsb3{word-spacing:10.839309pt;}
.wsa{word-spacing:10.855322pt;}
.wsbf{word-spacing:10.881843pt;}
.ws50{word-spacing:11.051844pt;}
.ws9a{word-spacing:11.104978pt;}
.ws41{word-spacing:11.211246pt;}
.ws6e{word-spacing:11.317514pt;}
.ws22{word-spacing:11.370647pt;}
.wsb1{word-spacing:11.423781pt;}
.ws65{word-spacing:11.476915pt;}
.wsa7{word-spacing:11.636317pt;}
.ws2b{word-spacing:11.689451pt;}
.ws17{word-spacing:11.955120pt;}
.wsb4{word-spacing:12.061388pt;}
.ws5d{word-spacing:12.167655pt;}
.ws55{word-spacing:12.273923pt;}
.wsbc{word-spacing:12.284581pt;}
.ws5a{word-spacing:12.380191pt;}
.wsac{word-spacing:12.592726pt;}
.ws59{word-spacing:12.645860pt;}
.wsab{word-spacing:12.698994pt;}
.ws58{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws96{word-spacing:12.805262pt;}
.ws40{word-spacing:12.858396pt;}
.ws21{word-spacing:12.911530pt;}
.wsa9{word-spacing:13.070931pt;}
.wsa5{word-spacing:13.230333pt;}
.ws47{word-spacing:13.283467pt;}
.ws23{word-spacing:13.389734pt;}
.ws4d{word-spacing:13.602270pt;}
.ws5e{word-spacing:13.655404pt;}
.ws20{word-spacing:13.761671pt;}
.ws32{word-spacing:13.814805pt;}
.ws3f{word-spacing:13.921073pt;}
.ws83{word-spacing:14.186742pt;}
.wsae{word-spacing:14.239876pt;}
.ws27{word-spacing:14.293010pt;}
.ws73{word-spacing:14.399278pt;}
.ws4f{word-spacing:14.611813pt;}
.wsbb{word-spacing:14.962534pt;}
.wsc{word-spacing:15.254835pt;}
.ws9b{word-spacing:15.355687pt;}
.ws5c{word-spacing:15.461955pt;}
.ws8a{word-spacing:15.515089pt;}
.wsb{word-spacing:15.589581pt;}
.ws57{word-spacing:15.887026pt;}
.ws9{word-spacing:15.924326pt;}
.ws10{word-spacing:15.940160pt;}
.ws87{word-spacing:16.471499pt;}
.wsb6{word-spacing:16.790302pt;}
.ws7d{word-spacing:16.949703pt;}
.ws9c{word-spacing:17.215373pt;}
.wsb0{word-spacing:17.534176pt;}
.ws2c{word-spacing:17.799845pt;}
.wsf{word-spacing:17.884979pt;}
.ws8d{word-spacing:18.384318pt;}
.ws25{word-spacing:18.543719pt;}
.ws9f{word-spacing:20.244003pt;}
.ws9e{word-spacing:20.456539pt;}
.ws6f{word-spacing:21.466082pt;}
.ws38{word-spacing:25.769925pt;}
._0{margin-left:-8.288904pt;}
._4{margin-left:-4.399514pt;}
._1{margin-left:-3.188040pt;}
._6{margin-left:-2.231619pt;}
._2{margin-left:-1.275216pt;}
._8{width:0.935158pt;}
._3{width:2.321082pt;}
._7{width:3.517711pt;}
._13{width:9.224062pt;}
._5{width:13.017801pt;}
._b{width:14.877486pt;}
._14{width:16.195243pt;}
._15{width:18.911773pt;}
._9{width:23.432035pt;}
._e{width:25.451125pt;}
._f{width:26.567000pt;}
._a{width:32.688037pt;}
._12{width:38.446648pt;}
._11{width:41.231984pt;}
._10{width:54.047896pt;}
._c{width:413.425027pt;}
._d{width:684.408427pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:34.005867pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:100.740000pt;}
.y2c{bottom:116.680000pt;}
.y42{bottom:132.620000pt;}
.y2b{bottom:132.621333pt;}
.y2a{bottom:148.561333pt;}
.y29{bottom:164.501333pt;}
.yb8{bottom:169.770667pt;}
.y28{bottom:180.441333pt;}
.yb7{bottom:196.213333pt;}
.y27{bottom:196.381333pt;}
.y87{bottom:197.298667pt;}
.yb6{bottom:212.153333pt;}
.y41{bottom:212.321333pt;}
.y26{bottom:212.322667pt;}
.y86{bottom:213.238667pt;}
.yb5{bottom:228.093333pt;}
.y25{bottom:228.262667pt;}
.y85{bottom:229.178667pt;}
.yb4{bottom:244.033333pt;}
.y24{bottom:244.202667pt;}
.y84{bottom:245.118667pt;}
.yb3{bottom:259.974667pt;}
.y23{bottom:260.142667pt;}
.y83{bottom:261.060000pt;}
.y6e{bottom:265.406667pt;}
.yb2{bottom:275.914667pt;}
.y22{bottom:276.082667pt;}
.y82{bottom:277.000000pt;}
.y6d{bottom:281.346667pt;}
.ycf{bottom:289.874667pt;}
.yb1{bottom:291.854667pt;}
.y21{bottom:292.022667pt;}
.y81{bottom:292.940000pt;}
.yce{bottom:301.829333pt;}
.y6c{bottom:307.782667pt;}
.yb0{bottom:307.794667pt;}
.y40{bottom:307.962667pt;}
.y20{bottom:307.964000pt;}
.y80{bottom:308.880000pt;}
.ycd{bottom:313.785333pt;}
.y6b{bottom:323.724000pt;}
.yaf{bottom:323.734667pt;}
.y1f{bottom:323.904000pt;}
.y7f{bottom:324.820000pt;}
.ycc{bottom:325.740000pt;}
.ycb{bottom:337.694667pt;}
.y6a{bottom:339.664000pt;}
.yae{bottom:339.674667pt;}
.y1e{bottom:339.844000pt;}
.y7e{bottom:340.761333pt;}
.y3f{bottom:343.853333pt;}
.yca{bottom:349.650667pt;}
.y69{bottom:355.604000pt;}
.yad{bottom:355.616000pt;}
.y1d{bottom:355.784000pt;}
.y7d{bottom:356.701333pt;}
.yc9{bottom:361.605333pt;}
.y3e{bottom:367.714667pt;}
.y68{bottom:371.544000pt;}
.yac{bottom:371.556000pt;}
.y1c{bottom:371.724000pt;}
.y7c{bottom:372.641333pt;}
.yc8{bottom:373.560000pt;}
.y3d{bottom:383.654667pt;}
.yc7{bottom:385.516000pt;}
.y67{bottom:387.484000pt;}
.yab{bottom:387.496000pt;}
.y1b{bottom:387.664000pt;}
.y7b{bottom:388.581333pt;}
.yc6{bottom:397.470667pt;}
.y3c{bottom:399.594667pt;}
.y66{bottom:403.424000pt;}
.yaa{bottom:403.436000pt;}
.y1a{bottom:403.605333pt;}
.y7a{bottom:404.521333pt;}
.yc5{bottom:409.426667pt;}
.y3b{bottom:415.534667pt;}
.y65{bottom:419.365333pt;}
.ya9{bottom:419.376000pt;}
.y19{bottom:419.545333pt;}
.y79{bottom:420.461333pt;}
.yc4{bottom:421.381333pt;}
.y3a{bottom:431.474667pt;}
.yc3{bottom:433.336000pt;}
.y64{bottom:435.305333pt;}
.y18{bottom:435.485333pt;}
.y78{bottom:436.402667pt;}
.ya8{bottom:440.585333pt;}
.yc2{bottom:445.292000pt;}
.y39{bottom:447.414667pt;}
.y63{bottom:451.245333pt;}
.y77{bottom:452.342667pt;}
.yc1{bottom:457.246667pt;}
.y38{bottom:463.356000pt;}
.ya7{bottom:467.029333pt;}
.y62{bottom:467.185333pt;}
.y17{bottom:470.686667pt;}
.yc0{bottom:476.973333pt;}
.y76{bottom:477.968000pt;}
.y37{bottom:479.296000pt;}
.ya6{bottom:482.969333pt;}
.y61{bottom:483.125333pt;}
.y36{bottom:495.236000pt;}
.ya5{bottom:498.909333pt;}
.y60{bottom:499.065333pt;}
.ybf{bottom:501.878667pt;}
.y75{bottom:510.668000pt;}
.y35{bottom:511.176000pt;}
.ya4{bottom:514.849333pt;}
.y5f{bottom:515.006667pt;}
.ybe{bottom:517.820000pt;}
.y16{bottom:520.644000pt;}
.y74{bottom:526.608000pt;}
.y34{bottom:527.116000pt;}
.ya3{bottom:530.789333pt;}
.y5e{bottom:530.946667pt;}
.ybd{bottom:533.760000pt;}
.y15{bottom:536.440000pt;}
.y73{bottom:542.548000pt;}
.y33{bottom:543.057333pt;}
.ya2{bottom:546.729333pt;}
.y5d{bottom:546.886667pt;}
.y14{bottom:549.724000pt;}
.ybc{bottom:553.884000pt;}
.y72{bottom:558.488000pt;}
.y32{bottom:558.997333pt;}
.ya1{bottom:562.670667pt;}
.y5c{bottom:562.826667pt;}
.y13{bottom:563.006667pt;}
.y31{bottom:574.937333pt;}
.y12{bottom:576.290667pt;}
.ya0{bottom:578.610667pt;}
.y5b{bottom:578.766667pt;}
.ybb{bottom:578.790667pt;}
.y11{bottom:589.574667pt;}
.y30{bottom:590.877333pt;}
.y9f{bottom:594.550667pt;}
.y5a{bottom:594.708000pt;}
.yba{bottom:594.730667pt;}
.y10{bottom:602.857333pt;}
.y71{bottom:603.881333pt;}
.y2f{bottom:606.817333pt;}
.y9e{bottom:610.490667pt;}
.y59{bottom:610.648000pt;}
.yb9{bottom:610.670667pt;}
.y70{bottom:615.837333pt;}
.yf{bottom:616.141333pt;}
.y2e{bottom:622.757333pt;}
.y58{bottom:626.588000pt;}
.y9d{bottom:626.612000pt;}
.y6f{bottom:627.792000pt;}
.ye{bottom:629.424000pt;}
.y9c{bottom:642.552000pt;}
.yd{bottom:642.708000pt;}
.y9b{bottom:658.492000pt;}
.y57{bottom:658.648000pt;}
.y9a{bottom:674.432000pt;}
.y56{bottom:674.588000pt;}
.y55{bottom:690.529333pt;}
.y54{bottom:706.469333pt;}
.yc{bottom:715.566667pt;}
.y53{bottom:722.409333pt;}
.yb{bottom:732.004000pt;}
.y99{bottom:734.076000pt;}
.y52{bottom:738.349333pt;}
.y98{bottom:746.030667pt;}
.ya{bottom:748.442667pt;}
.y51{bottom:754.289333pt;}
.y97{bottom:757.985333pt;}
.y9{bottom:764.881333pt;}
.y96{bottom:769.941333pt;}
.y50{bottom:770.229333pt;}
.y8{bottom:781.516000pt;}
.y95{bottom:781.896000pt;}
.y4f{bottom:786.170667pt;}
.y94{bottom:791.800000pt;}
.y4e{bottom:802.110667pt;}
.y93{bottom:815.710667pt;}
.y7{bottom:816.037333pt;}
.y4d{bottom:818.050667pt;}
.y92{bottom:827.665333pt;}
.y6{bottom:832.474667pt;}
.y4c{bottom:833.990667pt;}
.y91{bottom:839.621333pt;}
.y5{bottom:848.913333pt;}
.y90{bottom:849.525333pt;}
.y4b{bottom:849.930667pt;}
.y4{bottom:865.352000pt;}
.y4a{bottom:865.870667pt;}
.y8e{bottom:873.434667pt;}
.y8f{bottom:873.436000pt;}
.y49{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.y8d{bottom:885.390667pt;}
.y8c{bottom:897.345333pt;}
.y48{bottom:897.752000pt;}
.y8b{bottom:909.301333pt;}
.y47{bottom:913.692000pt;}
.y8a{bottom:919.205333pt;}
.y2{bottom:923.830667pt;}
.y46{bottom:929.632000pt;}
.y89{bottom:938.100000pt;}
.y45{bottom:945.572000pt;}
.y1{bottom:961.024000pt;}
.y44{bottom:961.512000pt;}
.y88{bottom:965.497333pt;}
.y43{bottom:977.453333pt;}
.h9{height:29.244954pt;}
.ha{height:29.499997pt;}
.h7{height:33.187635pt;}
.h6{height:33.426739pt;}
.h3{height:36.290431pt;}
.h4{height:36.556100pt;}
.hb{height:36.817434pt;}
.h8{height:36.874903pt;}
.h2{height:40.211857pt;}
.h5{height:52.953190pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:65.285333pt;}
.x2e{left:71.916000pt;}
.x32{left:73.254667pt;}
.x37{left:75.808000pt;}
.x19{left:78.502667pt;}
.x5{left:80.774667pt;}
.x4{left:86.028000pt;}
.x1b{left:88.397333pt;}
.x6{left:89.648000pt;}
.x7{left:97.558667pt;}
.x18{left:103.068000pt;}
.x1{left:112.933333pt;}
.x3{left:116.725333pt;}
.x1a{left:138.921333pt;}
.x2f{left:170.013333pt;}
.x38{left:179.052000pt;}
.x29{left:180.825333pt;}
.x2{left:206.788000pt;}
.x33{left:215.865333pt;}
.x34{left:228.926667pt;}
.xc{left:235.701333pt;}
.xb{left:243.730667pt;}
.x9{left:245.677333pt;}
.xa{left:252.392000pt;}
.x8{left:257.308000pt;}
.x1e{left:261.290667pt;}
.x21{left:271.186667pt;}
.x1f{left:272.401333pt;}
.x1d{left:296.822667pt;}
.x20{left:321.709333pt;}
.x31{left:387.745333pt;}
.x2c{left:415.970667pt;}
.xf{left:417.698667pt;}
.xe{left:422.952000pt;}
.x10{left:426.572000pt;}
.x2b{left:429.253333pt;}
.x24{left:430.861333pt;}
.x11{left:435.737333pt;}
.xd{left:439.182667pt;}
.x30{left:449.088000pt;}
.x2d{left:458.106667pt;}
.x28{left:482.601333pt;}
.x35{left:493.916000pt;}
.x36{left:506.978667pt;}
.x27{left:517.509333pt;}
.x25{left:518.725333pt;}
.x22{left:520.022667pt;}
.x39{left:525.413333pt;}
.x2a{left:532.248000pt;}
.x3b{left:546.149333pt;}
.x23{left:559.781333pt;}
.x26{left:568.032000pt;}
.x17{left:572.624000pt;}
.x3a{left:576.308000pt;}
.x13{left:581.782667pt;}
.x16{left:591.678667pt;}
.x14{left:592.894667pt;}
.x12{left:610.828000pt;}
.x15{left:642.202667pt;}
}




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