
    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_450748a0e0509efadc143206.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_35e675d80d522fd9feb5d1e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_514d575c75d0789bc3858b42.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_14d0978cfddfbac1af465fc3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.212400px;}
.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;}
}
.ws9c{word-spacing:-56.156400px;}
.ws86{word-spacing:-55.944000px;}
.ws8a{word-spacing:-38.868300px;}
.wsc8{word-spacing:-38.863800px;}
.wscc{word-spacing:-38.659200px;}
.ws6{word-spacing:-38.657700px;}
.ws81{word-spacing:-38.653200px;}
.ws18{word-spacing:-38.651400px;}
.ws95{word-spacing:-38.651100px;}
.ws85{word-spacing:-38.649600px;}
.ws9a{word-spacing:-38.648700px;}
.ws5{word-spacing:-38.647800px;}
.ws87{word-spacing:-38.646000px;}
.wsca{word-spacing:-38.641500px;}
.ws1c{word-spacing:-38.590800px;}
.ws1f{word-spacing:-38.586300px;}
.ws90{word-spacing:-38.443500px;}
.ws5c{word-spacing:-38.440800px;}
.wsc7{word-spacing:-38.437200px;}
.ws3{word-spacing:-38.374200px;}
.ws9b{word-spacing:-38.166000px;}
.wsa0{word-spacing:-38.160000px;}
.ws92{word-spacing:-38.157900px;}
.wsc2{word-spacing:-38.154000px;}
.ws15{word-spacing:-38.152800px;}
.ws22{word-spacing:-38.145600px;}
.ws52{word-spacing:-38.140200px;}
.ws9{word-spacing:-38.080800px;}
.wsb9{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.ws88{word-spacing:-37.943700px;}
.ws9f{word-spacing:-37.942800px;}
.wsb{word-spacing:-37.939200px;}
.ws4{word-spacing:-37.938600px;}
.ws8b{word-spacing:-37.936800px;}
.ws28{word-spacing:-37.935900px;}
.ws98{word-spacing:-37.935000px;}
.ws2{word-spacing:-37.931400px;}
.ws89{word-spacing:-37.928700px;}
.ws2a{word-spacing:-37.925100px;}
.ws9e{word-spacing:-37.911900px;}
.wsa{word-spacing:-37.720800px;}
.wsa2{word-spacing:-37.720200px;}
.wsc{word-spacing:-37.713600px;}
.wsd{word-spacing:-37.709100px;}
.ws2d{word-spacing:-37.224000px;}
.ws2e{word-spacing:-37.215000px;}
.ws9d{word-spacing:-37.214100px;}
.ws96{word-spacing:-37.210500px;}
.ws8e{word-spacing:-37.191600px;}
.ws27{word-spacing:-36.864000px;}
.wsb7{word-spacing:-36.508200px;}
.wsbc{word-spacing:-36.507300px;}
.ws44{word-spacing:-36.504000px;}
.ws3e{word-spacing:-36.501300px;}
.ws7a{word-spacing:-36.487800px;}
.ws7f{word-spacing:-35.987400px;}
.ws4a{word-spacing:-35.778600px;}
.ws3f{word-spacing:-35.776200px;}
.ws69{word-spacing:-35.775900px;}
.ws1b{word-spacing:-35.276400px;}
.ws67{word-spacing:-35.262600px;}
.ws4d{word-spacing:-35.064000px;}
.wsc5{word-spacing:-35.049600px;}
.wsa5{word-spacing:-35.048700px;}
.wsb2{word-spacing:-34.840800px;}
.wsa6{word-spacing:-34.554600px;}
.ws3a{word-spacing:-34.344000px;}
.ws5a{word-spacing:-34.117800px;}
.ws4f{word-spacing:-33.624000px;}
.wsbd{word-spacing:-33.600600px;}
.ws8{word-spacing:-33.547800px;}
.ws70{word-spacing:-33.114600px;}
.ws7d{word-spacing:-32.904600px;}
.ws19{word-spacing:-32.884200px;}
.ws53{word-spacing:-32.680800px;}
.ws25{word-spacing:-32.532300px;}
.ws1a{word-spacing:-32.400000px;}
.ws12{word-spacing:-32.383200px;}
.ws5d{word-spacing:-32.184000px;}
.ws3b{word-spacing:-32.176800px;}
.ws4c{word-spacing:-31.680000px;}
.wsad{word-spacing:-31.457700px;}
.wsf{word-spacing:-31.454700px;}
.ws82{word-spacing:-31.449600px;}
.wsba{word-spacing:-31.446000px;}
.wse{word-spacing:-31.445100px;}
.wsa7{word-spacing:-30.747300px;}
.ws37{word-spacing:-30.742200px;}
.ws20{word-spacing:-30.741300px;}
.wsc9{word-spacing:-30.737400px;}
.ws21{word-spacing:-30.735000px;}
.wsc1{word-spacing:-30.726000px;}
.ws78{word-spacing:-30.520800px;}
.wscb{word-spacing:-30.518100px;}
.wscd{word-spacing:-30.240000px;}
.ws62{word-spacing:-30.022200px;}
.wsb8{word-spacing:-30.018600px;}
.ws40{word-spacing:-30.011400px;}
.ws4b{word-spacing:-29.301300px;}
.wsce{word-spacing:-29.281800px;}
.ws56{word-spacing:-28.578600px;}
.ws26{word-spacing:-28.576200px;}
.ws7b{word-spacing:-28.566000px;}
.wsb1{word-spacing:-28.560000px;}
.ws16{word-spacing:-27.351900px;}
.ws80{word-spacing:-27.348000px;}
.ws55{word-spacing:-27.347700px;}
.ws17{word-spacing:-27.142200px;}
.ws34{word-spacing:-27.129600px;}
.ws3d{word-spacing:-27.128700px;}
.ws68{word-spacing:-27.125100px;}
.ws39{word-spacing:-26.426400px;}
.ws35{word-spacing:-26.424000px;}
.ws36{word-spacing:-25.908000px;}
.ws1d{word-spacing:-25.695000px;}
.ws75{word-spacing:-25.693200px;}
.ws6f{word-spacing:-25.691400px;}
.wsbf{word-spacing:-25.471200px;}
.ws33{word-spacing:-24.990000px;}
.ws42{word-spacing:-24.988200px;}
.ws46{word-spacing:-24.975000px;}
.ws45{word-spacing:-24.766200px;}
.wsc4{word-spacing:-23.759700px;}
.wsc3{word-spacing:-23.742000px;}
.ws48{word-spacing:-23.736600px;}
.ws54{word-spacing:-23.544000px;}
.wsb4{word-spacing:-23.526000px;}
.ws30{word-spacing:-23.031000px;}
.ws71{word-spacing:-22.818600px;}
.ws5b{word-spacing:-22.110000px;}
.ws66{word-spacing:-22.104000px;}
.ws6e{word-spacing:-22.095900px;}
.wsc6{word-spacing:-21.882600px;}
.ws29{word-spacing:-21.730500px;}
.ws32{word-spacing:-21.384000px;}
.ws58{word-spacing:-20.664000px;}
.ws14{word-spacing:-20.657400px;}
.ws57{word-spacing:-20.149200px;}
.ws31{word-spacing:-19.944000px;}
.ws6b{word-spacing:-19.212000px;}
.ws7e{word-spacing:-18.711000px;}
.ws7{word-spacing:-18.472500px;}
.ws83{word-spacing:-17.769600px;}
.wsb6{word-spacing:-17.766000px;}
.ws1e{word-spacing:-17.058600px;}
.ws38{word-spacing:-17.054100px;}
.ws74{word-spacing:-17.046000px;}
.ws4e{word-spacing:-16.834800px;}
.ws2b{word-spacing:-16.566000px;}
.wsbe{word-spacing:-16.557000px;}
.ws2c{word-spacing:-16.344000px;}
.wsa9{word-spacing:-16.335000px;}
.wsb5{word-spacing:-15.624600px;}
.ws59{word-spacing:-14.901000px;}
.ws65{word-spacing:-14.673600px;}
.ws77{word-spacing:-14.397300px;}
.wsb0{word-spacing:-14.171400px;}
.ws76{word-spacing:-14.169000px;}
.ws24{word-spacing:-13.670100px;}
.ws23{word-spacing:-13.464000px;}
.wsaa{word-spacing:-12.960000px;}
.ws6d{word-spacing:-12.727800px;}
.wsae{word-spacing:-12.726000px;}
.wsb3{word-spacing:-12.223800px;}
.ws73{word-spacing:-12.030000px;}
.ws11{word-spacing:-12.011400px;}
.ws3c{word-spacing:-12.006000px;}
.ws72{word-spacing:-11.502000px;}
.ws60{word-spacing:-10.584000px;}
.ws97{word-spacing:-9.847800px;}
.ws2f{word-spacing:-9.640800px;}
.wsab{word-spacing:-9.360000px;}
.ws13{word-spacing:-9.122100px;}
.ws79{word-spacing:-8.640000px;}
.ws51{word-spacing:-8.417400px;}
.wsaf{word-spacing:-6.966000px;}
.ws63{word-spacing:-6.760800px;}
.ws49{word-spacing:-6.757200px;}
.wsa3{word-spacing:-6.476100px;}
.wsa4{word-spacing:-6.246000px;}
.ws64{word-spacing:-5.526000px;}
.ws5e{word-spacing:-4.830000px;}
.ws47{word-spacing:-3.374700px;}
.wsa8{word-spacing:-2.440800px;}
.ws10{word-spacing:-2.439000px;}
.wsbb{word-spacing:-2.140200px;}
.ws43{word-spacing:-1.213200px;}
.wsc0{word-spacing:-0.495000px;}
.ws7c{word-spacing:0.217800px;}
.ws5f{word-spacing:1.667400px;}
.ws84{word-spacing:4.761000px;}
.wsac{word-spacing:5.268600px;}
.wsa1{word-spacing:5.979600px;}
.ws6a{word-spacing:7.215000px;}
.ws6c{word-spacing:7.421400px;}
.ws50{word-spacing:9.576000px;}
.ws61{word-spacing:13.914000px;}
.ws93{word-spacing:21.115800px;}
.ws41{word-spacing:23.256000px;}
.ws8c{word-spacing:61.928100px;}
.ws91{word-spacing:106.785900px;}
.ws99{word-spacing:115.427700px;}
.ws94{word-spacing:175.192500px;}
.ws8f{word-spacing:179.516700px;}
.ws8d{word-spacing:436.768200px;}
.ws1{word-spacing:455.092800px;}
._12{margin-left:-2.308800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._24{width:2.132400px;}
._4{width:18.775800px;}
._11{width:20.727000px;}
._c{width:21.733200px;}
._26{width:22.757100px;}
._e{width:23.757300px;}
._b{width:24.786000px;}
._5{width:25.829100px;}
._16{width:27.491400px;}
._10{width:28.708500px;}
._a{width:29.799900px;}
._15{width:31.080000px;}
._14{width:32.485200px;}
._13{width:33.973800px;}
._1{width:36.000000px;}
._9{width:37.355400px;}
._21{width:38.445600px;}
._d{width:40.386600px;}
._1a{width:42.045000px;}
._f{width:43.757100px;}
._7{width:45.131400px;}
._1c{width:46.461900px;}
._8{width:47.858100px;}
._19{width:49.196400px;}
._18{width:50.235600px;}
._1f{width:52.398000px;}
._6{width:54.567000px;}
._17{width:55.933200px;}
._22{width:57.662400px;}
._1b{width:59.244600px;}
._23{width:62.669400px;}
._20{width:64.276800px;}
._1d{width:71.202000px;}
._1e{width:72.298800px;}
._27{width:73.440000px;}
._25{width:99.660900px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y82{bottom:5.625000px;}
.y73{bottom:5.670000px;}
.y7b{bottom:5.715000px;}
.y89{bottom:5.745000px;}
.y71{bottom:5.821500px;}
.y77{bottom:5.836500px;}
.y85{bottom:5.865000px;}
.y7e{bottom:6.600000px;}
.y8d{bottom:6.630000px;}
.y75{bottom:16.095000px;}
.y86{bottom:16.125000px;}
.y79{bottom:16.155000px;}
.y8a{bottom:16.186500px;}
.y8e{bottom:16.890000px;}
.y7f{bottom:17.040000px;}
.y76{bottom:26.355000px;}
.y84{bottom:26.386500px;}
.y7a{bottom:26.415000px;}
.y88{bottom:26.445000px;}
.y8c{bottom:27.150000px;}
.y7d{bottom:27.300000px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y2b{bottom:99.975000px;}
.y59{bottom:103.396500px;}
.ya5{bottom:109.515000px;}
.y70{bottom:112.875000px;}
.y2a{bottom:120.675000px;}
.y58{bottom:124.096500px;}
.ya4{bottom:130.215000px;}
.y29{bottom:141.375000px;}
.y57{bottom:144.796500px;}
.ya3{bottom:150.915000px;}
.y28{bottom:162.075000px;}
.y6f{bottom:165.315000px;}
.y56{bottom:165.496500px;}
.ya2{bottom:171.615000px;}
.ya1{bottom:192.315000px;}
.y27{bottom:203.836500px;}
.y6e{bottom:206.896500px;}
.y55{bottom:207.255000px;}
.ya0{bottom:213.015000px;}
.y26{bottom:224.536500px;}
.y6d{bottom:227.596500px;}
.y54{bottom:227.775000px;}
.y9f{bottom:233.715000px;}
.y6c{bottom:248.295000px;}
.y53{bottom:248.475000px;}
.y9e{bottom:254.415000px;}
.y25{bottom:266.295000px;}
.y6b{bottom:268.996500px;}
.y52{bottom:269.175000px;}
.y9d{bottom:275.115000px;}
.y24{bottom:286.996500px;}
.y6a{bottom:289.696500px;}
.y51{bottom:289.875000px;}
.y9c{bottom:295.815000px;}
.y23{bottom:307.696500px;}
.y69{bottom:310.396500px;}
.y50{bottom:310.575000px;}
.y9b{bottom:316.515000px;}
.y22{bottom:328.396500px;}
.y68{bottom:331.096500px;}
.y4f{bottom:331.275000px;}
.y21{bottom:349.096500px;}
.y67{bottom:351.795000px;}
.y4e{bottom:351.975000px;}
.y9a{bottom:358.275000px;}
.y20{bottom:369.795000px;}
.y66{bottom:372.496500px;}
.y4d{bottom:372.675000px;}
.y99{bottom:378.975000px;}
.y1f{bottom:390.496500px;}
.y65{bottom:393.196500px;}
.y4c{bottom:393.375000px;}
.y98{bottom:399.675000px;}
.y64{bottom:413.896500px;}
.y4b{bottom:414.075000px;}
.y97{bottom:420.375000px;}
.y1e{bottom:432.075000px;}
.y63{bottom:434.596500px;}
.y4a{bottom:434.775000px;}
.y96{bottom:441.075000px;}
.y1d{bottom:452.775000px;}
.yc0{bottom:454.575000px;}
.y62{bottom:455.295000px;}
.y49{bottom:455.475000px;}
.y95{bottom:461.775000px;}
.ybf{bottom:475.275000px;}
.y61{bottom:475.996500px;}
.y48{bottom:476.175000px;}
.y94{bottom:482.475000px;}
.y1c{bottom:494.536500px;}
.ybe{bottom:495.975000px;}
.y60{bottom:496.695000px;}
.y47{bottom:496.875000px;}
.y93{bottom:503.175000px;}
.y1b{bottom:515.236500px;}
.ybd{bottom:516.675000px;}
.y5f{bottom:517.396500px;}
.y46{bottom:517.575000px;}
.y92{bottom:523.875000px;}
.y1a{bottom:535.936500px;}
.ybc{bottom:537.375000px;}
.y5e{bottom:538.096500px;}
.y45{bottom:538.275000px;}
.y91{bottom:544.575000px;}
.y19{bottom:556.636500px;}
.ybb{bottom:558.075000px;}
.y5d{bottom:558.796500px;}
.y44{bottom:558.975000px;}
.y90{bottom:565.275000px;}
.y18{bottom:577.336500px;}
.yba{bottom:578.775000px;}
.y5c{bottom:579.496500px;}
.y43{bottom:579.675000px;}
.y8f{bottom:585.975000px;}
.y17{bottom:598.036500px;}
.yb9{bottom:599.475000px;}
.y5b{bottom:600.195000px;}
.y42{bottom:600.375000px;}
.yb8{bottom:620.175000px;}
.y5a{bottom:620.896500px;}
.y41{bottom:621.075000px;}
.y16{bottom:639.795000px;}
.yb7{bottom:640.875000px;}
.y40{bottom:641.775000px;}
.y15{bottom:660.496500px;}
.yb6{bottom:661.575000px;}
.y3f{bottom:662.475000px;}
.y8b{bottom:667.725000px;}
.y3e{bottom:683.175000px;}
.y14{bottom:702.075000px;}
.yb5{bottom:703.336500px;}
.y3d{bottom:703.875000px;}
.y87{bottom:715.950000px;}
.y13{bottom:722.775000px;}
.y3c{bottom:724.575000px;}
.y12{bottom:743.475000px;}
.yb4{bottom:745.096500px;}
.y3b{bottom:745.275000px;}
.y83{bottom:763.350000px;}
.y11{bottom:764.175000px;}
.yb3{bottom:765.795000px;}
.y3a{bottom:765.975000px;}
.y10{bottom:784.875000px;}
.yb2{bottom:786.496500px;}
.y39{bottom:786.675000px;}
.yf{bottom:805.575000px;}
.yb1{bottom:807.195000px;}
.y38{bottom:807.375000px;}
.y81{bottom:810.750000px;}
.ye{bottom:826.275000px;}
.yb0{bottom:827.895000px;}
.y37{bottom:828.075000px;}
.yaf{bottom:848.596500px;}
.y36{bottom:848.775000px;}
.y80{bottom:862.996500px;}
.yd{bottom:868.036500px;}
.yae{bottom:869.295000px;}
.y35{bottom:869.475000px;}
.yad{bottom:889.995000px;}
.y34{bottom:890.175000px;}
.yc{bottom:909.795000px;}
.yac{bottom:910.695000px;}
.y33{bottom:910.875000px;}
.yab{bottom:931.395000px;}
.y32{bottom:931.575000px;}
.y7c{bottom:944.775000px;}
.yb{bottom:951.375000px;}
.yaa{bottom:952.095000px;}
.y31{bottom:952.275000px;}
.ya9{bottom:972.795000px;}
.y30{bottom:972.975000px;}
.y78{bottom:993.000000px;}
.ya{bottom:993.136500px;}
.ya8{bottom:993.495000px;}
.y2f{bottom:993.675000px;}
.ya7{bottom:1014.195000px;}
.y2e{bottom:1014.375000px;}
.ya6{bottom:1034.895000px;}
.y2d{bottom:1035.075000px;}
.y74{bottom:1040.400000px;}
.y2c{bottom:1055.775000px;}
.y9{bottom:1076.475000px;}
.y72{bottom:1087.725000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h4{height:20.175000px;}
.h7{height:25.125000px;}
.h6{height:25.200000px;}
.h8{height:45.075000px;}
.h3{height:45.095654px;}
.h9{height:45.900000px;}
.h2{height:48.796875px;}
.h5{height:50.027344px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w3{width:105.375000px;}
.w7{width:119.850000px;}
.w4{width:151.875000px;}
.w6{width:171.225000px;}
.w5{width:270.450000px;}
.w8{width:279.825000px;}
.w9{width:301.425000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:1.920000px;}
.xa{left:125.700000px;}
.x1{left:127.620000px;}
.x10{left:159.480000px;}
.x4{left:174.060000px;}
.xc{left:233.250000px;}
.xf{left:247.725000px;}
.x5{left:338.760000px;}
.xd{left:387.300000px;}
.x3{left:461.625000px;}
.x9{left:530.638500px;}
.x6{left:540.720000px;}
.x8{left:554.220000px;}
.x7{left:571.320000px;}
.xe{left:659.925000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.188800pt;}
.ws9c{word-spacing:-49.916800pt;}
.ws86{word-spacing:-49.728000pt;}
.ws8a{word-spacing:-34.549600pt;}
.wsc8{word-spacing:-34.545600pt;}
.wscc{word-spacing:-34.363733pt;}
.ws6{word-spacing:-34.362400pt;}
.ws81{word-spacing:-34.358400pt;}
.ws18{word-spacing:-34.356800pt;}
.ws95{word-spacing:-34.356533pt;}
.ws85{word-spacing:-34.355200pt;}
.ws9a{word-spacing:-34.354400pt;}
.ws5{word-spacing:-34.353600pt;}
.ws87{word-spacing:-34.352000pt;}
.wsca{word-spacing:-34.348000pt;}
.ws1c{word-spacing:-34.302933pt;}
.ws1f{word-spacing:-34.298933pt;}
.ws90{word-spacing:-34.172000pt;}
.ws5c{word-spacing:-34.169600pt;}
.wsc7{word-spacing:-34.166400pt;}
.ws3{word-spacing:-34.110400pt;}
.ws9b{word-spacing:-33.925333pt;}
.wsa0{word-spacing:-33.920000pt;}
.ws92{word-spacing:-33.918133pt;}
.wsc2{word-spacing:-33.914667pt;}
.ws15{word-spacing:-33.913600pt;}
.ws22{word-spacing:-33.907200pt;}
.ws52{word-spacing:-33.902400pt;}
.ws9{word-spacing:-33.849600pt;}
.wsb9{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.ws88{word-spacing:-33.727733pt;}
.ws9f{word-spacing:-33.726933pt;}
.wsb{word-spacing:-33.723733pt;}
.ws4{word-spacing:-33.723200pt;}
.ws8b{word-spacing:-33.721600pt;}
.ws28{word-spacing:-33.720800pt;}
.ws98{word-spacing:-33.720000pt;}
.ws2{word-spacing:-33.716800pt;}
.ws89{word-spacing:-33.714400pt;}
.ws2a{word-spacing:-33.711200pt;}
.ws9e{word-spacing:-33.699467pt;}
.wsa{word-spacing:-33.529600pt;}
.wsa2{word-spacing:-33.529067pt;}
.wsc{word-spacing:-33.523200pt;}
.wsd{word-spacing:-33.519200pt;}
.ws2d{word-spacing:-33.088000pt;}
.ws2e{word-spacing:-33.080000pt;}
.ws9d{word-spacing:-33.079200pt;}
.ws96{word-spacing:-33.076000pt;}
.ws8e{word-spacing:-33.059200pt;}
.ws27{word-spacing:-32.768000pt;}
.wsb7{word-spacing:-32.451733pt;}
.wsbc{word-spacing:-32.450933pt;}
.ws44{word-spacing:-32.448000pt;}
.ws3e{word-spacing:-32.445600pt;}
.ws7a{word-spacing:-32.433600pt;}
.ws7f{word-spacing:-31.988800pt;}
.ws4a{word-spacing:-31.803200pt;}
.ws3f{word-spacing:-31.801067pt;}
.ws69{word-spacing:-31.800800pt;}
.ws1b{word-spacing:-31.356800pt;}
.ws67{word-spacing:-31.344533pt;}
.ws4d{word-spacing:-31.168000pt;}
.wsc5{word-spacing:-31.155200pt;}
.wsa5{word-spacing:-31.154400pt;}
.wsb2{word-spacing:-30.969600pt;}
.wsa6{word-spacing:-30.715200pt;}
.ws3a{word-spacing:-30.528000pt;}
.ws5a{word-spacing:-30.326933pt;}
.ws4f{word-spacing:-29.888000pt;}
.wsbd{word-spacing:-29.867200pt;}
.ws8{word-spacing:-29.820267pt;}
.ws70{word-spacing:-29.435200pt;}
.ws7d{word-spacing:-29.248533pt;}
.ws19{word-spacing:-29.230400pt;}
.ws53{word-spacing:-29.049600pt;}
.ws25{word-spacing:-28.917600pt;}
.ws1a{word-spacing:-28.800000pt;}
.ws12{word-spacing:-28.785067pt;}
.ws5d{word-spacing:-28.608000pt;}
.ws3b{word-spacing:-28.601600pt;}
.ws4c{word-spacing:-28.160000pt;}
.wsad{word-spacing:-27.962400pt;}
.wsf{word-spacing:-27.959733pt;}
.ws82{word-spacing:-27.955200pt;}
.wsba{word-spacing:-27.952000pt;}
.wse{word-spacing:-27.951200pt;}
.wsa7{word-spacing:-27.330933pt;}
.ws37{word-spacing:-27.326400pt;}
.ws20{word-spacing:-27.325600pt;}
.wsc9{word-spacing:-27.322133pt;}
.ws21{word-spacing:-27.320000pt;}
.wsc1{word-spacing:-27.312000pt;}
.ws78{word-spacing:-27.129600pt;}
.wscb{word-spacing:-27.127200pt;}
.wscd{word-spacing:-26.880000pt;}
.ws62{word-spacing:-26.686400pt;}
.wsb8{word-spacing:-26.683200pt;}
.ws40{word-spacing:-26.676800pt;}
.ws4b{word-spacing:-26.045600pt;}
.wsce{word-spacing:-26.028267pt;}
.ws56{word-spacing:-25.403200pt;}
.ws26{word-spacing:-25.401067pt;}
.ws7b{word-spacing:-25.392000pt;}
.wsb1{word-spacing:-25.386667pt;}
.ws16{word-spacing:-24.312800pt;}
.ws80{word-spacing:-24.309333pt;}
.ws55{word-spacing:-24.309067pt;}
.ws17{word-spacing:-24.126400pt;}
.ws34{word-spacing:-24.115200pt;}
.ws3d{word-spacing:-24.114400pt;}
.ws68{word-spacing:-24.111200pt;}
.ws39{word-spacing:-23.490133pt;}
.ws35{word-spacing:-23.488000pt;}
.ws36{word-spacing:-23.029333pt;}
.ws1d{word-spacing:-22.840000pt;}
.ws75{word-spacing:-22.838400pt;}
.ws6f{word-spacing:-22.836800pt;}
.wsbf{word-spacing:-22.641067pt;}
.ws33{word-spacing:-22.213333pt;}
.ws42{word-spacing:-22.211733pt;}
.ws46{word-spacing:-22.200000pt;}
.ws45{word-spacing:-22.014400pt;}
.wsc4{word-spacing:-21.119733pt;}
.wsc3{word-spacing:-21.104000pt;}
.ws48{word-spacing:-21.099200pt;}
.ws54{word-spacing:-20.928000pt;}
.wsb4{word-spacing:-20.912000pt;}
.ws30{word-spacing:-20.472000pt;}
.ws71{word-spacing:-20.283200pt;}
.ws5b{word-spacing:-19.653333pt;}
.ws66{word-spacing:-19.648000pt;}
.ws6e{word-spacing:-19.640800pt;}
.wsc6{word-spacing:-19.451200pt;}
.ws29{word-spacing:-19.316000pt;}
.ws32{word-spacing:-19.008000pt;}
.ws58{word-spacing:-18.368000pt;}
.ws14{word-spacing:-18.362133pt;}
.ws57{word-spacing:-17.910400pt;}
.ws31{word-spacing:-17.728000pt;}
.ws6b{word-spacing:-17.077333pt;}
.ws7e{word-spacing:-16.632000pt;}
.ws7{word-spacing:-16.420000pt;}
.ws83{word-spacing:-15.795200pt;}
.wsb6{word-spacing:-15.792000pt;}
.ws1e{word-spacing:-15.163200pt;}
.ws38{word-spacing:-15.159200pt;}
.ws74{word-spacing:-15.152000pt;}
.ws4e{word-spacing:-14.964267pt;}
.ws2b{word-spacing:-14.725333pt;}
.wsbe{word-spacing:-14.717333pt;}
.ws2c{word-spacing:-14.528000pt;}
.wsa9{word-spacing:-14.520000pt;}
.wsb5{word-spacing:-13.888533pt;}
.ws59{word-spacing:-13.245333pt;}
.ws65{word-spacing:-13.043200pt;}
.ws77{word-spacing:-12.797600pt;}
.wsb0{word-spacing:-12.596800pt;}
.ws76{word-spacing:-12.594667pt;}
.ws24{word-spacing:-12.151200pt;}
.ws23{word-spacing:-11.968000pt;}
.wsaa{word-spacing:-11.520000pt;}
.ws6d{word-spacing:-11.313600pt;}
.wsae{word-spacing:-11.312000pt;}
.wsb3{word-spacing:-10.865600pt;}
.ws73{word-spacing:-10.693333pt;}
.ws11{word-spacing:-10.676800pt;}
.ws3c{word-spacing:-10.672000pt;}
.ws72{word-spacing:-10.224000pt;}
.ws60{word-spacing:-9.408000pt;}
.ws97{word-spacing:-8.753600pt;}
.ws2f{word-spacing:-8.569600pt;}
.wsab{word-spacing:-8.320000pt;}
.ws13{word-spacing:-8.108533pt;}
.ws79{word-spacing:-7.680000pt;}
.ws51{word-spacing:-7.482133pt;}
.wsaf{word-spacing:-6.192000pt;}
.ws63{word-spacing:-6.009600pt;}
.ws49{word-spacing:-6.006400pt;}
.wsa3{word-spacing:-5.756533pt;}
.wsa4{word-spacing:-5.552000pt;}
.ws64{word-spacing:-4.912000pt;}
.ws5e{word-spacing:-4.293333pt;}
.ws47{word-spacing:-2.999733pt;}
.wsa8{word-spacing:-2.169600pt;}
.ws10{word-spacing:-2.168000pt;}
.wsbb{word-spacing:-1.902400pt;}
.ws43{word-spacing:-1.078400pt;}
.wsc0{word-spacing:-0.440000pt;}
.ws7c{word-spacing:0.193600pt;}
.ws5f{word-spacing:1.482133pt;}
.ws84{word-spacing:4.232000pt;}
.wsac{word-spacing:4.683200pt;}
.wsa1{word-spacing:5.315200pt;}
.ws6a{word-spacing:6.413333pt;}
.ws6c{word-spacing:6.596800pt;}
.ws50{word-spacing:8.512000pt;}
.ws61{word-spacing:12.368000pt;}
.ws93{word-spacing:18.769600pt;}
.ws41{word-spacing:20.672000pt;}
.ws8c{word-spacing:55.047200pt;}
.ws91{word-spacing:94.920800pt;}
.ws99{word-spacing:102.602400pt;}
.ws94{word-spacing:155.726667pt;}
.ws8f{word-spacing:159.570400pt;}
.ws8d{word-spacing:388.238400pt;}
.ws1{word-spacing:404.526933pt;}
._12{margin-left:-2.052267pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._24{width:1.895467pt;}
._4{width:16.689600pt;}
._11{width:18.424000pt;}
._c{width:19.318400pt;}
._26{width:20.228533pt;}
._e{width:21.117600pt;}
._b{width:22.032000pt;}
._5{width:22.959200pt;}
._16{width:24.436800pt;}
._10{width:25.518667pt;}
._a{width:26.488800pt;}
._15{width:27.626667pt;}
._14{width:28.875733pt;}
._13{width:30.198933pt;}
._1{width:32.000000pt;}
._9{width:33.204800pt;}
._21{width:34.173867pt;}
._d{width:35.899200pt;}
._1a{width:37.373333pt;}
._f{width:38.895200pt;}
._7{width:40.116800pt;}
._1c{width:41.299467pt;}
._8{width:42.540533pt;}
._19{width:43.730133pt;}
._18{width:44.653867pt;}
._1f{width:46.576000pt;}
._6{width:48.504000pt;}
._17{width:49.718400pt;}
._22{width:51.255467pt;}
._1b{width:52.661867pt;}
._23{width:55.706133pt;}
._20{width:57.134933pt;}
._1d{width:63.290667pt;}
._1e{width:64.265600pt;}
._27{width:65.280000pt;}
._25{width:88.587467pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y82{bottom:5.000000pt;}
.y73{bottom:5.040000pt;}
.y7b{bottom:5.080000pt;}
.y89{bottom:5.106667pt;}
.y71{bottom:5.174667pt;}
.y77{bottom:5.188000pt;}
.y85{bottom:5.213333pt;}
.y7e{bottom:5.866667pt;}
.y8d{bottom:5.893333pt;}
.y75{bottom:14.306667pt;}
.y86{bottom:14.333333pt;}
.y79{bottom:14.360000pt;}
.y8a{bottom:14.388000pt;}
.y8e{bottom:15.013333pt;}
.y7f{bottom:15.146667pt;}
.y76{bottom:23.426667pt;}
.y84{bottom:23.454667pt;}
.y7a{bottom:23.480000pt;}
.y88{bottom:23.506667pt;}
.y8c{bottom:24.133333pt;}
.y7d{bottom:24.266667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y2b{bottom:88.866667pt;}
.y59{bottom:91.908000pt;}
.ya5{bottom:97.346667pt;}
.y70{bottom:100.333333pt;}
.y2a{bottom:107.266667pt;}
.y58{bottom:110.308000pt;}
.ya4{bottom:115.746667pt;}
.y29{bottom:125.666667pt;}
.y57{bottom:128.708000pt;}
.ya3{bottom:134.146667pt;}
.y28{bottom:144.066667pt;}
.y6f{bottom:146.946667pt;}
.y56{bottom:147.108000pt;}
.ya2{bottom:152.546667pt;}
.ya1{bottom:170.946667pt;}
.y27{bottom:181.188000pt;}
.y6e{bottom:183.908000pt;}
.y55{bottom:184.226667pt;}
.ya0{bottom:189.346667pt;}
.y26{bottom:199.588000pt;}
.y6d{bottom:202.308000pt;}
.y54{bottom:202.466667pt;}
.y9f{bottom:207.746667pt;}
.y6c{bottom:220.706667pt;}
.y53{bottom:220.866667pt;}
.y9e{bottom:226.146667pt;}
.y25{bottom:236.706667pt;}
.y6b{bottom:239.108000pt;}
.y52{bottom:239.266667pt;}
.y9d{bottom:244.546667pt;}
.y24{bottom:255.108000pt;}
.y6a{bottom:257.508000pt;}
.y51{bottom:257.666667pt;}
.y9c{bottom:262.946667pt;}
.y23{bottom:273.508000pt;}
.y69{bottom:275.908000pt;}
.y50{bottom:276.066667pt;}
.y9b{bottom:281.346667pt;}
.y22{bottom:291.908000pt;}
.y68{bottom:294.308000pt;}
.y4f{bottom:294.466667pt;}
.y21{bottom:310.308000pt;}
.y67{bottom:312.706667pt;}
.y4e{bottom:312.866667pt;}
.y9a{bottom:318.466667pt;}
.y20{bottom:328.706667pt;}
.y66{bottom:331.108000pt;}
.y4d{bottom:331.266667pt;}
.y99{bottom:336.866667pt;}
.y1f{bottom:347.108000pt;}
.y65{bottom:349.508000pt;}
.y4c{bottom:349.666667pt;}
.y98{bottom:355.266667pt;}
.y64{bottom:367.908000pt;}
.y4b{bottom:368.066667pt;}
.y97{bottom:373.666667pt;}
.y1e{bottom:384.066667pt;}
.y63{bottom:386.308000pt;}
.y4a{bottom:386.466667pt;}
.y96{bottom:392.066667pt;}
.y1d{bottom:402.466667pt;}
.yc0{bottom:404.066667pt;}
.y62{bottom:404.706667pt;}
.y49{bottom:404.866667pt;}
.y95{bottom:410.466667pt;}
.ybf{bottom:422.466667pt;}
.y61{bottom:423.108000pt;}
.y48{bottom:423.266667pt;}
.y94{bottom:428.866667pt;}
.y1c{bottom:439.588000pt;}
.ybe{bottom:440.866667pt;}
.y60{bottom:441.506667pt;}
.y47{bottom:441.666667pt;}
.y93{bottom:447.266667pt;}
.y1b{bottom:457.988000pt;}
.ybd{bottom:459.266667pt;}
.y5f{bottom:459.908000pt;}
.y46{bottom:460.066667pt;}
.y92{bottom:465.666667pt;}
.y1a{bottom:476.388000pt;}
.ybc{bottom:477.666667pt;}
.y5e{bottom:478.308000pt;}
.y45{bottom:478.466667pt;}
.y91{bottom:484.066667pt;}
.y19{bottom:494.788000pt;}
.ybb{bottom:496.066667pt;}
.y5d{bottom:496.708000pt;}
.y44{bottom:496.866667pt;}
.y90{bottom:502.466667pt;}
.y18{bottom:513.188000pt;}
.yba{bottom:514.466667pt;}
.y5c{bottom:515.108000pt;}
.y43{bottom:515.266667pt;}
.y8f{bottom:520.866667pt;}
.y17{bottom:531.588000pt;}
.yb9{bottom:532.866667pt;}
.y5b{bottom:533.506667pt;}
.y42{bottom:533.666667pt;}
.yb8{bottom:551.266667pt;}
.y5a{bottom:551.908000pt;}
.y41{bottom:552.066667pt;}
.y16{bottom:568.706667pt;}
.yb7{bottom:569.666667pt;}
.y40{bottom:570.466667pt;}
.y15{bottom:587.108000pt;}
.yb6{bottom:588.066667pt;}
.y3f{bottom:588.866667pt;}
.y8b{bottom:593.533333pt;}
.y3e{bottom:607.266667pt;}
.y14{bottom:624.066667pt;}
.yb5{bottom:625.188000pt;}
.y3d{bottom:625.666667pt;}
.y87{bottom:636.400000pt;}
.y13{bottom:642.466667pt;}
.y3c{bottom:644.066667pt;}
.y12{bottom:660.866667pt;}
.yb4{bottom:662.308000pt;}
.y3b{bottom:662.466667pt;}
.y83{bottom:678.533333pt;}
.y11{bottom:679.266667pt;}
.yb3{bottom:680.706667pt;}
.y3a{bottom:680.866667pt;}
.y10{bottom:697.666667pt;}
.yb2{bottom:699.108000pt;}
.y39{bottom:699.266667pt;}
.yf{bottom:716.066667pt;}
.yb1{bottom:717.506667pt;}
.y38{bottom:717.666667pt;}
.y81{bottom:720.666667pt;}
.ye{bottom:734.466667pt;}
.yb0{bottom:735.906667pt;}
.y37{bottom:736.066667pt;}
.yaf{bottom:754.308000pt;}
.y36{bottom:754.466667pt;}
.y80{bottom:767.108000pt;}
.yd{bottom:771.588000pt;}
.yae{bottom:772.706667pt;}
.y35{bottom:772.866667pt;}
.yad{bottom:791.106667pt;}
.y34{bottom:791.266667pt;}
.yc{bottom:808.706667pt;}
.yac{bottom:809.506667pt;}
.y33{bottom:809.666667pt;}
.yab{bottom:827.906667pt;}
.y32{bottom:828.066667pt;}
.y7c{bottom:839.800000pt;}
.yb{bottom:845.666667pt;}
.yaa{bottom:846.306667pt;}
.y31{bottom:846.466667pt;}
.ya9{bottom:864.706667pt;}
.y30{bottom:864.866667pt;}
.y78{bottom:882.666667pt;}
.ya{bottom:882.788000pt;}
.ya8{bottom:883.106667pt;}
.y2f{bottom:883.266667pt;}
.ya7{bottom:901.506667pt;}
.y2e{bottom:901.666667pt;}
.ya6{bottom:919.906667pt;}
.y2d{bottom:920.066667pt;}
.y74{bottom:924.800000pt;}
.y2c{bottom:938.466667pt;}
.y9{bottom:956.866667pt;}
.y72{bottom:966.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h4{height:17.933333pt;}
.h7{height:22.333333pt;}
.h6{height:22.400000pt;}
.h8{height:40.066667pt;}
.h3{height:40.085026pt;}
.h9{height:40.800000pt;}
.h2{height:43.375000pt;}
.h5{height:44.468750pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w3{width:93.666667pt;}
.w7{width:106.533333pt;}
.w4{width:135.000000pt;}
.w6{width:152.200000pt;}
.w5{width:240.400000pt;}
.w8{width:248.733333pt;}
.w9{width:267.933333pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:1.706667pt;}
.xa{left:111.733333pt;}
.x1{left:113.440000pt;}
.x10{left:141.760000pt;}
.x4{left:154.720000pt;}
.xc{left:207.333333pt;}
.xf{left:220.200000pt;}
.x5{left:301.120000pt;}
.xd{left:344.266667pt;}
.x3{left:410.333333pt;}
.x9{left:471.678667pt;}
.x6{left:480.640000pt;}
.x8{left:492.640000pt;}
.x7{left:507.840000pt;}
.xe{left:586.600000pt;}
.x2{left:649.920000pt;}
}




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