
    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_8d25902351ac85a273950a0f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.759766;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_b9c6a2dba04c40c67a3ba734.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.019043;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_e4be7e236a7129ef7bbe6b20.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.985352;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_346ff86c54b1b118be7f1d82.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.015625;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_00bc4905a12f19ec1a3f66db.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.016000;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_82f229be556fc5b869dcb6e3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.988000;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_6f9aed7d2d5dc46e7ef7ebcb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.998000;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:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.696000px;}
.v1{vertical-align:22.854000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:2.987500px;}
.ls1{letter-spacing:2.988259px;}
.ls0{letter-spacing:18.829440px;}
.ls2{letter-spacing:43.013639px;}
.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;}
}
.ws14{word-spacing:-41.833519px;}
.ws66{word-spacing:-34.861363px;}
.ws0{word-spacing:-31.902451px;}
.ws34{word-spacing:-29.768249px;}
.ws7e{word-spacing:-28.273859px;}
.ws2{word-spacing:-27.579071px;}
.ws90{word-spacing:-26.146022px;}
.ws84{word-spacing:-25.446643px;}
.ws25{word-spacing:-24.328669px;}
.ws7f{word-spacing:-23.154767px;}
.ws8{word-spacing:-22.619144px;}
.ws51{word-spacing:-20.204153px;}
.ws33{word-spacing:-20.144377px;}
.ws71{word-spacing:-20.084602px;}
.ws65{word-spacing:-20.024826px;}
.ws2f{word-spacing:-19.791644px;}
.ws6f{word-spacing:-19.606397px;}
.ws23{word-spacing:-19.546621px;}
.ws15{word-spacing:-19.486846px;}
.ws32{word-spacing:-19.295693px;}
.ws4c{word-spacing:-19.187968px;}
.ws68{word-spacing:-19.008641px;}
.ws7d{word-spacing:-18.948865px;}
.ws79{word-spacing:-18.769538px;}
.ws26{word-spacing:-18.470660px;}
.ws43{word-spacing:-18.351109px;}
.ws4b{word-spacing:-18.291334px;}
.ws1b{word-spacing:-18.112007px;}
.ws72{word-spacing:-17.932680px;}
.ws58{word-spacing:-17.693578px;}
.ws40{word-spacing:-17.454475px;}
.ws59{word-spacing:-17.394700px;}
.ws5b{word-spacing:-17.215373px;}
.ws54{word-spacing:-17.036046px;}
.ws76{word-spacing:-16.976270px;}
.ws67{word-spacing:-16.677392px;}
.ws55{word-spacing:-16.617617px;}
.ws3e{word-spacing:-16.557841px;}
.ws4a{word-spacing:-16.498066px;}
.ws37{word-spacing:-16.438290px;}
.ws77{word-spacing:-16.378514px;}
.ws73{word-spacing:-16.154981px;}
.wsc{word-spacing:-16.031923px;}
.ws19{word-spacing:-16.019861px;}
.ws6c{word-spacing:-15.895945px;}
.ws6d{word-spacing:-15.840534px;}
.ws62{word-spacing:-15.720983px;}
.ws1{word-spacing:-15.661207px;}
.ws11{word-spacing:-15.655334px;}
.ws1f{word-spacing:-15.541656px;}
.ws80{word-spacing:-15.481880px;}
.ws9{word-spacing:-15.451718px;}
.ws1d{word-spacing:-15.362329px;}
.ws27{word-spacing:-15.302554px;}
.ws63{word-spacing:-15.183002px;}
.ws10{word-spacing:-15.171149px;}
.ws44{word-spacing:-15.123227px;}
.ws3f{word-spacing:-15.063451px;}
.ws3b{word-spacing:-15.003676px;}
.ws22{word-spacing:-14.943900px;}
.ws7a{word-spacing:-14.884124px;}
.ws83{word-spacing:-14.842070px;}
.ws8b{word-spacing:-14.823725px;}
.ws94{word-spacing:-14.812800px;}
.wsa{word-spacing:-14.740762px;}
.ws52{word-spacing:-14.585246px;}
.ws3{word-spacing:-14.471770px;}
.ws53{word-spacing:-14.465695px;}
.ws78{word-spacing:-14.405920px;}
.ws70{word-spacing:-14.286368px;}
.ws8d{word-spacing:-14.148979px;}
.ws6e{word-spacing:-14.107042px;}
.ws92{word-spacing:-14.095181px;}
.ws6b{word-spacing:-14.047266px;}
.ws13{word-spacing:-14.041382px;}
.ws16{word-spacing:-13.987490px;}
.ws21{word-spacing:-13.927715px;}
.ws5a{word-spacing:-13.867939px;}
.ws8c{word-spacing:-13.772390px;}
.ws69{word-spacing:-13.748388px;}
.ws86{word-spacing:-13.718592px;}
.ws48{word-spacing:-13.688612px;}
.ws45{word-spacing:-13.628837px;}
.ws93{word-spacing:-13.610995px;}
.ws46{word-spacing:-13.569061px;}
.wsb{word-spacing:-13.557197px;}
.ws3d{word-spacing:-13.449510px;}
.ws18{word-spacing:-13.389734px;}
.ws87{word-spacing:-13.342003px;}
.ws1c{word-spacing:-13.270183px;}
.ws28{word-spacing:-13.210408px;}
.ws4d{word-spacing:-13.090856px;}
.ws47{word-spacing:-13.031081px;}
.ws91{word-spacing:-13.019213px;}
.ws5e{word-spacing:-12.911530px;}
.ws4f{word-spacing:-12.851754px;}
.ws12{word-spacing:-12.804019px;}
.ws17{word-spacing:-12.791978px;}
.ws8a{word-spacing:-12.750221px;}
.ws2b{word-spacing:-12.672427px;}
.ws1a{word-spacing:-12.552876px;}
.ws7{word-spacing:-12.528997px;}
.ws6{word-spacing:-12.481177px;}
.ws89{word-spacing:-12.427430px;}
.ws1e{word-spacing:-12.373549px;}
.wse{word-spacing:-12.319834px;}
.ws75{word-spacing:-12.074671px;}
.ws88{word-spacing:-11.997043px;}
.ws6a{word-spacing:-11.895344px;}
.ws38{word-spacing:-11.716018px;}
.ws20{word-spacing:-11.536691px;}
.ws8f{word-spacing:-11.512858px;}
.ws8e{word-spacing:-11.190067px;}
.ws3c{word-spacing:-11.178037px;}
.ws64{word-spacing:-10.998710px;}
.ws2e{word-spacing:-10.962814px;}
.ws2d{word-spacing:-10.920971px;}
.ws2a{word-spacing:-10.759608px;}
.ws3a{word-spacing:-10.460730px;}
.ws56{word-spacing:-10.341179px;}
.ws39{word-spacing:-10.281403px;}
.ws41{word-spacing:-10.161852px;}
.wsf{word-spacing:-10.060301px;}
.ws35{word-spacing:-9.982525px;}
.ws85{word-spacing:-9.898906px;}
.ws74{word-spacing:-9.862974px;}
.wsd{word-spacing:-9.845107px;}
.ws57{word-spacing:-9.683647px;}
.ws36{word-spacing:-9.623872px;}
.ws7c{word-spacing:-9.504320px;}
.ws49{word-spacing:-9.384769px;}
.ws29{word-spacing:-9.265218px;}
.ws4{word-spacing:-8.898490px;}
.ws42{word-spacing:-8.727238px;}
.ws4e{word-spacing:-8.667462px;}
.ws82{word-spacing:-8.607744px;}
.ws5d{word-spacing:-8.607686px;}
.ws5f{word-spacing:-8.488135px;}
.ws81{word-spacing:-8.338752px;}
.ws50{word-spacing:-8.308808px;}
.ws2c{word-spacing:-8.069706px;}
.ws5c{word-spacing:-7.830604px;}
.ws24{word-spacing:-7.471950px;}
.ws7b{word-spacing:-7.292623px;}
.ws60{word-spacing:-0.658423px;}
.ws61{word-spacing:-0.655786px;}
.ws30{word-spacing:0.000000px;}
.ws31{word-spacing:1.884144px;}
.ws5{word-spacing:9.537709px;}
._0{margin-left:-18.829440px;}
._1d{margin-left:-8.500147px;}
._4{margin-left:-6.079219px;}
._17{margin-left:-5.057968px;}
._6{margin-left:-3.819686px;}
._2{margin-left:-2.528525px;}
._1{margin-left:-1.446094px;}
._b{width:1.464043px;}
._1b{width:9.713791px;}
._f{width:11.446568px;}
._11{width:12.719377px;}
._9{width:14.041382px;}
._a{width:15.224947px;}
._3{width:16.731302px;}
._14{width:18.124004px;}
._e{width:19.157621px;}
._7{width:20.221735px;}
._16{width:21.481880px;}
._8{width:22.595328px;}
._c{width:24.217633px;}
._d{width:25.249118px;}
._5{width:27.437184px;}
._19{width:29.364580px;}
._18{width:32.063656px;}
._15{width:35.446931px;}
._12{width:37.711746px;}
._1a{width:39.773732px;}
._10{width:42.836009px;}
._1c{width:59.754298px;}
._13{width:2046.627072px;}
.fc4{color:rgb(85,85,85);}
.fc3{color:rgb(204,204,204);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,156,130);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:29.887800px;}
.fs3{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs0{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y34{bottom:66.924000px;}
.y89{bottom:151.963500px;}
.y33{bottom:154.195500px;}
.yb3{bottom:156.183000px;}
.y32{bottom:166.150500px;}
.y88{bottom:169.896000px;}
.y31{bottom:178.105500px;}
.yb2{bottom:178.467000px;}
.y87{bottom:187.828500px;}
.y63{bottom:189.043500px;}
.yb1{bottom:196.399500px;}
.y62{bottom:206.976000px;}
.yb0{bottom:214.332000px;}
.y86{bottom:216.141000px;}
.y30{bottom:223.923000px;}
.y61{bottom:224.908500px;}
.yaf{bottom:232.264500px;}
.y2f{bottom:241.855500px;}
.y85{bottom:247.050000px;}
.yae{bottom:250.197000px;}
.y60{bottom:254.796000px;}
.yd5{bottom:258.999000px;}
.y2e{bottom:259.788000px;}
.y84{bottom:264.982500px;}
.yad{bottom:268.129500px;}
.y5f{bottom:272.728500px;}
.yd4{bottom:276.931500px;}
.y2d{bottom:277.720500px;}
.y83{bottom:282.915000px;}
.y5e{bottom:290.662500px;}
.y2c{bottom:295.653000px;}
.yac{bottom:296.710500px;}
.y5d{bottom:308.595000px;}
.y2b{bottom:313.587000px;}
.y82{bottom:313.822500px;}
.yd3{bottom:314.106000px;}
.y2a{bottom:331.519500px;}
.y81{bottom:331.755000px;}
.y5c{bottom:338.482500px;}
.yab{bottom:340.362000px;}
.y29{bottom:349.452000px;}
.y80{bottom:349.689000px;}
.y5b{bottom:356.415000px;}
.yaa{bottom:358.294500px;}
.yd2{bottom:365.848500px;}
.y28{bottom:367.384500px;}
.y7f{bottom:367.621500px;}
.y5a{bottom:374.347500px;}
.ya9{bottom:376.227000px;}
.yd1{bottom:383.781000px;}
.y27{bottom:385.317000px;}
.y7e{bottom:385.554000px;}
.y59{bottom:392.281500px;}
.ya8{bottom:394.161000px;}
.yd0{bottom:401.715000px;}
.y26{bottom:403.249500px;}
.y58{bottom:410.214000px;}
.ya7{bottom:412.093500px;}
.y7d{bottom:414.135000px;}
.ycf{bottom:419.647500px;}
.y25{bottom:421.183500px;}
.y57{bottom:428.146500px;}
.ya6{bottom:430.026000px;}
.yce{bottom:437.580000px;}
.y24{bottom:439.116000px;}
.y56{bottom:446.079000px;}
.ya5{bottom:447.958500px;}
.y23{bottom:457.048500px;}
.y7c{bottom:457.752000px;}
.ya4{bottom:465.891000px;}
.ycd{bottom:467.467500px;}
.y55{bottom:474.660000px;}
.y22{bottom:474.981000px;}
.y7b{bottom:475.684500px;}
.ya3{bottom:483.823500px;}
.y21{bottom:492.913500px;}
.y7a{bottom:493.617000px;}
.ycc{bottom:497.355000px;}
.ya2{bottom:501.757500px;}
.y20{bottom:510.846000px;}
.y54{bottom:518.650500px;}
.ya1{bottom:519.690000px;}
.y79{bottom:524.524500px;}
.ycb{bottom:527.244000px;}
.y1f{bottom:528.780000px;}
.y53{bottom:536.583000px;}
.ya0{bottom:537.622500px;}
.y78{bottom:542.457000px;}
.y1e{bottom:546.712500px;}
.y52{bottom:554.515500px;}
.y9f{bottom:555.555000px;}
.yca{bottom:557.131500px;}
.y77{bottom:560.391000px;}
.y1d{bottom:564.645000px;}
.y51{bottom:572.449500px;}
.y9e{bottom:573.487500px;}
.y1c{bottom:582.577500px;}
.yc9{bottom:587.019000px;}
.y76{bottom:588.970500px;}
.y1b{bottom:600.510000px;}
.y9d{bottom:602.068500px;}
.yc8{bottom:604.951500px;}
.y50{bottom:609.622500px;}
.y1a{bottom:618.442500px;}
.yc7{bottom:622.885500px;}
.y75{bottom:632.587500px;}
.y19{bottom:636.376500px;}
.y9c{bottom:645.720000px;}
.y74{bottom:650.520000px;}
.y18{bottom:654.309000px;}
.y4f{bottom:661.365000px;}
.y9b{bottom:663.652500px;}
.yc6{bottom:663.888000px;}
.y73{bottom:668.454000px;}
.y17{bottom:672.241500px;}
.y4e{bottom:679.299000px;}
.y9a{bottom:681.585000px;}
.yc5{bottom:681.820500px;}
.y72{bottom:686.386500px;}
.y16{bottom:690.174000px;}
.yeb{bottom:690.763500px;}
.y4d{bottom:697.231500px;}
.y99{bottom:699.517500px;}
.yc4{bottom:699.753000px;}
.y71{bottom:704.319000px;}
.yea{bottom:707.202000px;}
.y15{bottom:708.106500px;}
.y4c{bottom:715.164000px;}
.y98{bottom:717.451500px;}
.yc3{bottom:717.685500px;}
.ye9{bottom:723.640500px;}
.y4b{bottom:733.096500px;}
.y70{bottom:733.419000px;}
.yc2{bottom:735.618000px;}
.ye8{bottom:740.079000px;}
.y14{bottom:745.279500px;}
.y4a{bottom:751.029000px;}
.y6f{bottom:751.351500px;}
.yc1{bottom:753.550500px;}
.y97{bottom:754.474500px;}
.ye7{bottom:756.517500px;}
.y49{bottom:768.961500px;}
.y6e{bottom:769.285500px;}
.ye6{bottom:772.956000px;}
.y48{bottom:786.895500px;}
.ye5{bottom:789.394500px;}
.yc0{bottom:794.553000px;}
.y13{bottom:796.668000px;}
.y6d{bottom:798.385500px;}
.y47{bottom:804.828000px;}
.ye4{bottom:805.831500px;}
.y96{bottom:805.878000px;}
.ybf{bottom:812.487000px;}
.y12{bottom:813.106500px;}
.y6c{bottom:816.318000px;}
.ye3{bottom:822.270000px;}
.y46{bottom:822.760500px;}
.y95{bottom:823.812000px;}
.y11{bottom:829.545000px;}
.ybe{bottom:830.419500px;}
.y6b{bottom:834.250500px;}
.ye2{bottom:838.708500px;}
.y45{bottom:840.693000px;}
.y10{bottom:845.982000px;}
.ybd{bottom:848.352000px;}
.y94{bottom:852.391500px;}
.ye1{bottom:855.147000px;}
.y44{bottom:858.625500px;}
.yf{bottom:862.420500px;}
.y6a{bottom:863.350500px;}
.ybc{bottom:866.284500px;}
.ye0{bottom:871.585500px;}
.y43{bottom:876.558000px;}
.ye{bottom:878.859000px;}
.y69{bottom:881.284500px;}
.ybb{bottom:884.217000px;}
.ydf{bottom:888.024000px;}
.y9{bottom:889.777500px;}
.y42{bottom:894.492000px;}
.yd{bottom:895.297500px;}
.y93{bottom:896.043000px;}
.y8{bottom:903.975000px;}
.yde{bottom:904.462500px;}
.y68{bottom:909.597000px;}
.yc{bottom:911.736000px;}
.y41{bottom:912.424500px;}
.y92{bottom:913.975500px;}
.ydd{bottom:920.901000px;}
.yba{bottom:925.219500px;}
.y67{bottom:927.529500px;}
.yb{bottom:928.174500px;}
.y40{bottom:930.357000px;}
.y7{bottom:932.368500px;}
.ydc{bottom:937.339500px;}
.y91{bottom:943.149000px;}
.yb9{bottom:943.152000px;}
.ya{bottom:944.613000px;}
.y6{bottom:946.564500px;}
.y3f{bottom:948.289500px;}
.y66{bottom:955.842000px;}
.y90{bottom:961.081500px;}
.yb8{bottom:961.086000px;}
.y3e{bottom:966.222000px;}
.ydb{bottom:973.612500px;}
.y65{bottom:973.774500px;}
.y8f{bottom:979.014000px;}
.yb7{bottom:979.018500px;}
.y3d{bottom:984.154500px;}
.y64{bottom:991.708500px;}
.yb6{bottom:996.951000px;}
.y3c{bottom:1002.088500px;}
.y8e{bottom:1008.187500px;}
.yb5{bottom:1014.883500px;}
.y5{bottom:1015.701000px;}
.y3b{bottom:1020.021000px;}
.yda{bottom:1025.355000px;}
.y8d{bottom:1026.120000px;}
.y4{bottom:1029.414000px;}
.yb4{bottom:1032.816000px;}
.y3a{bottom:1037.953500px;}
.yd9{bottom:1043.289000px;}
.y8c{bottom:1055.293500px;}
.y39{bottom:1055.886000px;}
.yd8{bottom:1061.221500px;}
.y8b{bottom:1073.226000px;}
.y38{bottom:1073.818500px;}
.yd7{bottom:1079.154000px;}
.y3{bottom:1079.803500px;}
.y37{bottom:1091.751000px;}
.y1{bottom:1092.030000px;}
.y8a{bottom:1102.399500px;}
.y2{bottom:1106.224500px;}
.yd6{bottom:1116.447000px;}
.y36{bottom:1120.332000px;}
.y35{bottom:1176.222000px;}
.h6{height:27.365453px;}
.hc{height:33.200464px;}
.h7{height:37.896892px;}
.h8{height:37.943591px;}
.h2{height:40.348800px;}
.h9{height:42.686719px;}
.hb{height:45.608783px;}
.hf{height:47.370996px;}
.h3{height:47.429370px;}
.h5{height:50.219453px;}
.he{height:53.622056px;}
.hd{height:56.915625px;}
.h10{height:68.214500px;}
.ha{height:68.298560px;}
.h4{height:79.738908px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:35.086500px;}
.x6{left:38.665500px;}
.x4{left:98.325000px;}
.x3{left:113.583000px;}
.x5{left:142.947000px;}
.x8{left:161.637000px;}
.x7{left:170.449500px;}
.x2{left:191.338500px;}
.xa{left:207.690000px;}
.xc{left:215.503500px;}
.xb{left:216.714000px;}
.x9{left:228.699000px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.285333pt;}
.v1{vertical-align:20.314667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:2.655555pt;}
.ls1{letter-spacing:2.656230pt;}
.ls0{letter-spacing:16.737280pt;}
.ls2{letter-spacing:38.234346pt;}
.ws14{word-spacing:-37.185350pt;}
.ws66{word-spacing:-30.987878pt;}
.ws0{word-spacing:-28.357734pt;}
.ws34{word-spacing:-26.460666pt;}
.ws7e{word-spacing:-25.132319pt;}
.ws2{word-spacing:-24.514730pt;}
.ws90{word-spacing:-23.240909pt;}
.ws84{word-spacing:-22.619238pt;}
.ws25{word-spacing:-21.625484pt;}
.ws7f{word-spacing:-20.582015pt;}
.ws8{word-spacing:-20.105906pt;}
.ws51{word-spacing:-17.959247pt;}
.ws33{word-spacing:-17.906113pt;}
.ws71{word-spacing:-17.852979pt;}
.ws65{word-spacing:-17.799845pt;}
.ws2f{word-spacing:-17.592573pt;}
.ws6f{word-spacing:-17.427908pt;}
.ws23{word-spacing:-17.374774pt;}
.ws15{word-spacing:-17.321641pt;}
.ws32{word-spacing:-17.151727pt;}
.ws4c{word-spacing:-17.055971pt;}
.ws68{word-spacing:-16.896570pt;}
.ws7d{word-spacing:-16.843436pt;}
.ws79{word-spacing:-16.684034pt;}
.ws26{word-spacing:-16.418365pt;}
.ws43{word-spacing:-16.312097pt;}
.ws4b{word-spacing:-16.258963pt;}
.ws1b{word-spacing:-16.099562pt;}
.ws72{word-spacing:-15.940160pt;}
.ws58{word-spacing:-15.727625pt;}
.ws40{word-spacing:-15.515089pt;}
.ws59{word-spacing:-15.461955pt;}
.ws5b{word-spacing:-15.302554pt;}
.ws54{word-spacing:-15.143152pt;}
.ws76{word-spacing:-15.090018pt;}
.ws67{word-spacing:-14.824349pt;}
.ws55{word-spacing:-14.771215pt;}
.ws3e{word-spacing:-14.718081pt;}
.ws4a{word-spacing:-14.664947pt;}
.ws37{word-spacing:-14.611813pt;}
.ws77{word-spacing:-14.558679pt;}
.ws73{word-spacing:-14.359983pt;}
.wsc{word-spacing:-14.250598pt;}
.ws19{word-spacing:-14.239876pt;}
.ws6c{word-spacing:-14.129729pt;}
.ws6d{word-spacing:-14.080475pt;}
.ws62{word-spacing:-13.974207pt;}
.ws1{word-spacing:-13.921073pt;}
.ws11{word-spacing:-13.915853pt;}
.ws1f{word-spacing:-13.814805pt;}
.ws80{word-spacing:-13.761671pt;}
.ws9{word-spacing:-13.734861pt;}
.ws1d{word-spacing:-13.655404pt;}
.ws27{word-spacing:-13.602270pt;}
.ws63{word-spacing:-13.496002pt;}
.ws10{word-spacing:-13.485466pt;}
.ws44{word-spacing:-13.442868pt;}
.ws3f{word-spacing:-13.389734pt;}
.ws3b{word-spacing:-13.336601pt;}
.ws22{word-spacing:-13.283467pt;}
.ws7a{word-spacing:-13.230333pt;}
.ws83{word-spacing:-13.192951pt;}
.ws8b{word-spacing:-13.176644pt;}
.ws94{word-spacing:-13.166933pt;}
.wsa{word-spacing:-13.102899pt;}
.ws52{word-spacing:-12.964663pt;}
.ws3{word-spacing:-12.863795pt;}
.ws53{word-spacing:-12.858396pt;}
.ws78{word-spacing:-12.805262pt;}
.ws70{word-spacing:-12.698994pt;}
.ws8d{word-spacing:-12.576870pt;}
.ws6e{word-spacing:-12.539593pt;}
.ws92{word-spacing:-12.529050pt;}
.ws6b{word-spacing:-12.486459pt;}
.ws13{word-spacing:-12.481229pt;}
.ws16{word-spacing:-12.433325pt;}
.ws21{word-spacing:-12.380191pt;}
.ws5a{word-spacing:-12.327057pt;}
.ws8c{word-spacing:-12.242125pt;}
.ws69{word-spacing:-12.220789pt;}
.ws86{word-spacing:-12.194304pt;}
.ws48{word-spacing:-12.167655pt;}
.ws45{word-spacing:-12.114522pt;}
.ws93{word-spacing:-12.098662pt;}
.ws46{word-spacing:-12.061388pt;}
.wsb{word-spacing:-12.050842pt;}
.ws3d{word-spacing:-11.955120pt;}
.ws18{word-spacing:-11.901986pt;}
.ws87{word-spacing:-11.859558pt;}
.ws1c{word-spacing:-11.795718pt;}
.ws28{word-spacing:-11.742585pt;}
.ws4d{word-spacing:-11.636317pt;}
.ws47{word-spacing:-11.583183pt;}
.ws91{word-spacing:-11.572634pt;}
.ws5e{word-spacing:-11.476915pt;}
.ws4f{word-spacing:-11.423781pt;}
.ws12{word-spacing:-11.381350pt;}
.ws17{word-spacing:-11.370647pt;}
.ws8a{word-spacing:-11.333530pt;}
.ws2b{word-spacing:-11.264380pt;}
.ws1a{word-spacing:-11.158112pt;}
.ws7{word-spacing:-11.136886pt;}
.ws6{word-spacing:-11.094379pt;}
.ws89{word-spacing:-11.046605pt;}
.ws1e{word-spacing:-10.998710pt;}
.wse{word-spacing:-10.950963pt;}
.ws75{word-spacing:-10.733041pt;}
.ws88{word-spacing:-10.664038pt;}
.ws6a{word-spacing:-10.573639pt;}
.ws38{word-spacing:-10.414238pt;}
.ws20{word-spacing:-10.254836pt;}
.ws8f{word-spacing:-10.233651pt;}
.ws8e{word-spacing:-9.946726pt;}
.ws3c{word-spacing:-9.936033pt;}
.ws64{word-spacing:-9.776631pt;}
.ws2e{word-spacing:-9.744723pt;}
.ws2d{word-spacing:-9.707530pt;}
.ws2a{word-spacing:-9.564096pt;}
.ws3a{word-spacing:-9.298427pt;}
.ws56{word-spacing:-9.192159pt;}
.ws39{word-spacing:-9.139025pt;}
.ws41{word-spacing:-9.032757pt;}
.wsf{word-spacing:-8.942490pt;}
.ws35{word-spacing:-8.873356pt;}
.ws85{word-spacing:-8.799027pt;}
.ws74{word-spacing:-8.767088pt;}
.wsd{word-spacing:-8.751206pt;}
.ws57{word-spacing:-8.607686pt;}
.ws36{word-spacing:-8.554553pt;}
.ws7c{word-spacing:-8.448285pt;}
.ws49{word-spacing:-8.342017pt;}
.ws29{word-spacing:-8.235749pt;}
.ws4{word-spacing:-7.909769pt;}
.ws42{word-spacing:-7.757545pt;}
.ws4e{word-spacing:-7.704411pt;}
.ws82{word-spacing:-7.651328pt;}
.ws5d{word-spacing:-7.651277pt;}
.ws5f{word-spacing:-7.545009pt;}
.ws81{word-spacing:-7.412224pt;}
.ws50{word-spacing:-7.385607pt;}
.ws2c{word-spacing:-7.173072pt;}
.ws5c{word-spacing:-6.960537pt;}
.ws24{word-spacing:-6.641733pt;}
.ws7b{word-spacing:-6.482332pt;}
.ws60{word-spacing:-0.585265pt;}
.ws61{word-spacing:-0.582921pt;}
.ws30{word-spacing:0.000000pt;}
.ws31{word-spacing:1.674795pt;}
.ws5{word-spacing:8.477963pt;}
._0{margin-left:-16.737280pt;}
._1d{margin-left:-7.555686pt;}
._4{margin-left:-5.403750pt;}
._17{margin-left:-4.495971pt;}
._6{margin-left:-3.395277pt;}
._2{margin-left:-2.247578pt;}
._1{margin-left:-1.285417pt;}
._b{width:1.301372pt;}
._1b{width:8.634481pt;}
._f{width:10.174727pt;}
._11{width:11.306113pt;}
._9{width:12.481229pt;}
._a{width:13.533286pt;}
._3{width:14.872269pt;}
._14{width:16.110226pt;}
._e{width:17.028996pt;}
._7{width:17.974876pt;}
._16{width:19.095005pt;}
._8{width:20.084736pt;}
._c{width:21.526785pt;}
._d{width:22.443661pt;}
._5{width:24.388608pt;}
._19{width:26.101849pt;}
._18{width:28.501027pt;}
._15{width:31.508383pt;}
._12{width:33.521552pt;}
._1a{width:35.354429pt;}
._10{width:38.076452pt;}
._1c{width:53.114931pt;}
._13{width:1819.224064pt;}
.fs4{font-size:26.566933pt;}
.fs3{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs0{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:59.488000pt;}
.y89{bottom:135.078667pt;}
.y33{bottom:137.062667pt;}
.yb3{bottom:138.829333pt;}
.y32{bottom:147.689333pt;}
.y88{bottom:151.018667pt;}
.y31{bottom:158.316000pt;}
.yb2{bottom:158.637333pt;}
.y87{bottom:166.958667pt;}
.y63{bottom:168.038667pt;}
.yb1{bottom:174.577333pt;}
.y62{bottom:183.978667pt;}
.yb0{bottom:190.517333pt;}
.y86{bottom:192.125333pt;}
.y30{bottom:199.042667pt;}
.y61{bottom:199.918667pt;}
.yaf{bottom:206.457333pt;}
.y2f{bottom:214.982667pt;}
.y85{bottom:219.600000pt;}
.yae{bottom:222.397333pt;}
.y60{bottom:226.485333pt;}
.yd5{bottom:230.221333pt;}
.y2e{bottom:230.922667pt;}
.y84{bottom:235.540000pt;}
.yad{bottom:238.337333pt;}
.y5f{bottom:242.425333pt;}
.yd4{bottom:246.161333pt;}
.y2d{bottom:246.862667pt;}
.y83{bottom:251.480000pt;}
.y5e{bottom:258.366667pt;}
.y2c{bottom:262.802667pt;}
.yac{bottom:263.742667pt;}
.y5d{bottom:274.306667pt;}
.y2b{bottom:278.744000pt;}
.y82{bottom:278.953333pt;}
.yd3{bottom:279.205333pt;}
.y2a{bottom:294.684000pt;}
.y81{bottom:294.893333pt;}
.y5c{bottom:300.873333pt;}
.yab{bottom:302.544000pt;}
.y29{bottom:310.624000pt;}
.y80{bottom:310.834667pt;}
.y5b{bottom:316.813333pt;}
.yaa{bottom:318.484000pt;}
.yd2{bottom:325.198667pt;}
.y28{bottom:326.564000pt;}
.y7f{bottom:326.774667pt;}
.y5a{bottom:332.753333pt;}
.ya9{bottom:334.424000pt;}
.yd1{bottom:341.138667pt;}
.y27{bottom:342.504000pt;}
.y7e{bottom:342.714667pt;}
.y59{bottom:348.694667pt;}
.ya8{bottom:350.365333pt;}
.yd0{bottom:357.080000pt;}
.y26{bottom:358.444000pt;}
.y58{bottom:364.634667pt;}
.ya7{bottom:366.305333pt;}
.y7d{bottom:368.120000pt;}
.ycf{bottom:373.020000pt;}
.y25{bottom:374.385333pt;}
.y57{bottom:380.574667pt;}
.ya6{bottom:382.245333pt;}
.yce{bottom:388.960000pt;}
.y24{bottom:390.325333pt;}
.y56{bottom:396.514667pt;}
.ya5{bottom:398.185333pt;}
.y23{bottom:406.265333pt;}
.y7c{bottom:406.890667pt;}
.ya4{bottom:414.125333pt;}
.ycd{bottom:415.526667pt;}
.y55{bottom:421.920000pt;}
.y22{bottom:422.205333pt;}
.y7b{bottom:422.830667pt;}
.ya3{bottom:430.065333pt;}
.y21{bottom:438.145333pt;}
.y7a{bottom:438.770667pt;}
.ycc{bottom:442.093333pt;}
.ya2{bottom:446.006667pt;}
.y20{bottom:454.085333pt;}
.y54{bottom:461.022667pt;}
.ya1{bottom:461.946667pt;}
.y79{bottom:466.244000pt;}
.ycb{bottom:468.661333pt;}
.y1f{bottom:470.026667pt;}
.y53{bottom:476.962667pt;}
.ya0{bottom:477.886667pt;}
.y78{bottom:482.184000pt;}
.y1e{bottom:485.966667pt;}
.y52{bottom:492.902667pt;}
.y9f{bottom:493.826667pt;}
.yca{bottom:495.228000pt;}
.y77{bottom:498.125333pt;}
.y1d{bottom:501.906667pt;}
.y51{bottom:508.844000pt;}
.y9e{bottom:509.766667pt;}
.y1c{bottom:517.846667pt;}
.yc9{bottom:521.794667pt;}
.y76{bottom:523.529333pt;}
.y1b{bottom:533.786667pt;}
.y9d{bottom:535.172000pt;}
.yc8{bottom:537.734667pt;}
.y50{bottom:541.886667pt;}
.y1a{bottom:549.726667pt;}
.yc7{bottom:553.676000pt;}
.y75{bottom:562.300000pt;}
.y19{bottom:565.668000pt;}
.y9c{bottom:573.973333pt;}
.y74{bottom:578.240000pt;}
.y18{bottom:581.608000pt;}
.y4f{bottom:587.880000pt;}
.y9b{bottom:589.913333pt;}
.yc6{bottom:590.122667pt;}
.y73{bottom:594.181333pt;}
.y17{bottom:597.548000pt;}
.y4e{bottom:603.821333pt;}
.y9a{bottom:605.853333pt;}
.yc5{bottom:606.062667pt;}
.y72{bottom:610.121333pt;}
.y16{bottom:613.488000pt;}
.yeb{bottom:614.012000pt;}
.y4d{bottom:619.761333pt;}
.y99{bottom:621.793333pt;}
.yc4{bottom:622.002667pt;}
.y71{bottom:626.061333pt;}
.yea{bottom:628.624000pt;}
.y15{bottom:629.428000pt;}
.y4c{bottom:635.701333pt;}
.y98{bottom:637.734667pt;}
.yc3{bottom:637.942667pt;}
.ye9{bottom:643.236000pt;}
.y4b{bottom:651.641333pt;}
.y70{bottom:651.928000pt;}
.yc2{bottom:653.882667pt;}
.ye8{bottom:657.848000pt;}
.y14{bottom:662.470667pt;}
.y4a{bottom:667.581333pt;}
.y6f{bottom:667.868000pt;}
.yc1{bottom:669.822667pt;}
.y97{bottom:670.644000pt;}
.ye7{bottom:672.460000pt;}
.y49{bottom:683.521333pt;}
.y6e{bottom:683.809333pt;}
.ye6{bottom:687.072000pt;}
.y48{bottom:699.462667pt;}
.ye5{bottom:701.684000pt;}
.yc0{bottom:706.269333pt;}
.y13{bottom:708.149333pt;}
.y6d{bottom:709.676000pt;}
.y47{bottom:715.402667pt;}
.ye4{bottom:716.294667pt;}
.y96{bottom:716.336000pt;}
.ybf{bottom:722.210667pt;}
.y12{bottom:722.761333pt;}
.y6c{bottom:725.616000pt;}
.ye3{bottom:730.906667pt;}
.y46{bottom:731.342667pt;}
.y95{bottom:732.277333pt;}
.y11{bottom:737.373333pt;}
.ybe{bottom:738.150667pt;}
.y6b{bottom:741.556000pt;}
.ye2{bottom:745.518667pt;}
.y45{bottom:747.282667pt;}
.y10{bottom:751.984000pt;}
.ybd{bottom:754.090667pt;}
.y94{bottom:757.681333pt;}
.ye1{bottom:760.130667pt;}
.y44{bottom:763.222667pt;}
.yf{bottom:766.596000pt;}
.y6a{bottom:767.422667pt;}
.ybc{bottom:770.030667pt;}
.ye0{bottom:774.742667pt;}
.y43{bottom:779.162667pt;}
.ye{bottom:781.208000pt;}
.y69{bottom:783.364000pt;}
.ybb{bottom:785.970667pt;}
.ydf{bottom:789.354667pt;}
.y9{bottom:790.913333pt;}
.y42{bottom:795.104000pt;}
.yd{bottom:795.820000pt;}
.y93{bottom:796.482667pt;}
.y8{bottom:803.533333pt;}
.yde{bottom:803.966667pt;}
.y68{bottom:808.530667pt;}
.yc{bottom:810.432000pt;}
.y41{bottom:811.044000pt;}
.y92{bottom:812.422667pt;}
.ydd{bottom:818.578667pt;}
.yba{bottom:822.417333pt;}
.y67{bottom:824.470667pt;}
.yb{bottom:825.044000pt;}
.y40{bottom:826.984000pt;}
.y7{bottom:828.772000pt;}
.ydc{bottom:833.190667pt;}
.y91{bottom:838.354667pt;}
.yb9{bottom:838.357333pt;}
.ya{bottom:839.656000pt;}
.y6{bottom:841.390667pt;}
.y3f{bottom:842.924000pt;}
.y66{bottom:849.637333pt;}
.y90{bottom:854.294667pt;}
.yb8{bottom:854.298667pt;}
.y3e{bottom:858.864000pt;}
.ydb{bottom:865.433333pt;}
.y65{bottom:865.577333pt;}
.y8f{bottom:870.234667pt;}
.yb7{bottom:870.238667pt;}
.y3d{bottom:874.804000pt;}
.y64{bottom:881.518667pt;}
.yb6{bottom:886.178667pt;}
.y3c{bottom:890.745333pt;}
.y8e{bottom:896.166667pt;}
.yb5{bottom:902.118667pt;}
.y5{bottom:902.845333pt;}
.y3b{bottom:906.685333pt;}
.yda{bottom:911.426667pt;}
.y8d{bottom:912.106667pt;}
.y4{bottom:915.034667pt;}
.yb4{bottom:918.058667pt;}
.y3a{bottom:922.625333pt;}
.yd9{bottom:927.368000pt;}
.y8c{bottom:938.038667pt;}
.y39{bottom:938.565333pt;}
.yd8{bottom:943.308000pt;}
.y8b{bottom:953.978667pt;}
.y38{bottom:954.505333pt;}
.yd7{bottom:959.248000pt;}
.y3{bottom:959.825333pt;}
.y37{bottom:970.445333pt;}
.y1{bottom:970.693333pt;}
.y8a{bottom:979.910667pt;}
.y2{bottom:983.310667pt;}
.yd6{bottom:992.397333pt;}
.y36{bottom:995.850667pt;}
.y35{bottom:1045.530667pt;}
.h6{height:24.324847pt;}
.hc{height:29.511523pt;}
.h7{height:33.686126pt;}
.h8{height:33.727637pt;}
.h2{height:35.865600pt;}
.h9{height:37.943750pt;}
.hb{height:40.541140pt;}
.hf{height:42.107552pt;}
.h3{height:42.159440pt;}
.h5{height:44.639514pt;}
.he{height:47.664050pt;}
.hd{height:50.591667pt;}
.h10{height:60.635111pt;}
.ha{height:60.709831pt;}
.h4{height:70.879030pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:31.188000pt;}
.x6{left:34.369333pt;}
.x4{left:87.400000pt;}
.x3{left:100.962667pt;}
.x5{left:127.064000pt;}
.x8{left:143.677333pt;}
.x7{left:151.510667pt;}
.x2{left:170.078667pt;}
.xa{left:184.613333pt;}
.xc{left:191.558667pt;}
.xb{left:192.634667pt;}
.x9{left:203.288000pt;}
}




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