
    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_234ae728bc375cb1cf08ff54.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_06c6c66fa123d4a2223027b0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_13038848c4dc4cb54a96f4c2.woff2')format("woff");}.ff3{font-family:ff3;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;}
.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;}
}
.ws9{word-spacing:-40.968000px;}
.ws7e{word-spacing:-40.536000px;}
.wsa4{word-spacing:-23.672400px;}
.wsa2{word-spacing:-23.659500px;}
.wsb2{word-spacing:-23.658300px;}
.ws9f{word-spacing:-23.389200px;}
.ws20{word-spacing:-23.385600px;}
.ws8{word-spacing:-23.384700px;}
.wsca{word-spacing:-23.256000px;}
.ws6e{word-spacing:-23.252400px;}
.wsd9{word-spacing:-23.251200px;}
.ws64{word-spacing:-23.248800px;}
.wse0{word-spacing:-23.247900px;}
.ws82{word-spacing:-23.247600px;}
.wsb1{word-spacing:-23.246400px;}
.ws1f{word-spacing:-23.245200px;}
.ws81{word-spacing:-23.242200px;}
.ws56{word-spacing:-23.241600px;}
.ws9a{word-spacing:-23.239200px;}
.ws5e{word-spacing:-23.230800px;}
.wsac{word-spacing:-23.226600px;}
.wsa0{word-spacing:-23.186400px;}
.wsb4{word-spacing:-23.179200px;}
.ws7{word-spacing:-23.178600px;}
.ws98{word-spacing:-23.117100px;}
.wsb5{word-spacing:-23.112000px;}
.ws2{word-spacing:-23.105700px;}
.ws57{word-spacing:-23.099400px;}
.ws6a{word-spacing:-23.040000px;}
.wsbf{word-spacing:-23.029200px;}
.wsc8{word-spacing:-23.028600px;}
.ws1c{word-spacing:-23.027400px;}
.ws4f{word-spacing:-23.018400px;}
.ws0{word-spacing:-22.968000px;}
.ws3{word-spacing:-22.959900px;}
.wsa3{word-spacing:-22.952700px;}
.ws21{word-spacing:-22.752000px;}
.ws34{word-spacing:-22.746000px;}
.ws23{word-spacing:-22.740300px;}
.wsb8{word-spacing:-22.735800px;}
.wsa1{word-spacing:-22.677300px;}
.ws76{word-spacing:-22.671900px;}
.wsb7{word-spacing:-22.671000px;}
.wsa5{word-spacing:-22.667400px;}
.wsb3{word-spacing:-22.664700px;}
.ws7b{word-spacing:-22.536000px;}
.ws22{word-spacing:-22.534200px;}
.ws61{word-spacing:-22.529400px;}
.wsda{word-spacing:-22.529100px;}
.ws6{word-spacing:-22.527900px;}
.wsd4{word-spacing:-22.526100px;}
.ws3e{word-spacing:-22.525200px;}
.ws4{word-spacing:-22.522500px;}
.wscf{word-spacing:-22.516200px;}
.ws97{word-spacing:-22.318200px;}
.ws89{word-spacing:-22.314000px;}
.ws5{word-spacing:-22.307400px;}
.wsa6{word-spacing:-22.175100px;}
.wse2{word-spacing:-22.032000px;}
.ws2a{word-spacing:-22.028400px;}
.ws37{word-spacing:-22.023000px;}
.wsdc{word-spacing:-21.808800px;}
.wsf{word-spacing:-21.587400px;}
.ws94{word-spacing:-21.318000px;}
.wsdb{word-spacing:-21.314400px;}
.ws26{word-spacing:-21.308400px;}
.ws8f{word-spacing:-21.303000px;}
.ws55{word-spacing:-21.288600px;}
.ws2f{word-spacing:-21.102000px;}
.ws38{word-spacing:-21.085200px;}
.ws24{word-spacing:-21.024000px;}
.wse{word-spacing:-20.872800px;}
.ws72{word-spacing:-20.865600px;}
.ws25{word-spacing:-20.588400px;}
.wsd3{word-spacing:-19.861200px;}
.ws93{word-spacing:-19.634400px;}
.ws3d{word-spacing:-19.434600px;}
.ws7d{word-spacing:-19.152000px;}
.ws9b{word-spacing:-18.936000px;}
.ws83{word-spacing:-18.928800px;}
.ws29{word-spacing:-18.432000px;}
.ws6c{word-spacing:-18.428400px;}
.ws2e{word-spacing:-18.425400px;}
.wsba{word-spacing:-18.406200px;}
.ws30{word-spacing:-18.216000px;}
.ws48{word-spacing:-18.213300px;}
.wsd2{word-spacing:-18.210600px;}
.ws92{word-spacing:-18.207000px;}
.ws70{word-spacing:-18.195600px;}
.ws32{word-spacing:-17.712000px;}
.wsde{word-spacing:-17.709300px;}
.ws6f{word-spacing:-17.706600px;}
.ws66{word-spacing:-17.705400px;}
.wsab{word-spacing:-17.496000px;}
.wse4{word-spacing:-17.494200px;}
.ws9d{word-spacing:-17.490600px;}
.ws2d{word-spacing:-16.774200px;}
.ws8d{word-spacing:-16.772400px;}
.ws68{word-spacing:-16.761600px;}
.ws69{word-spacing:-16.756200px;}
.ws95{word-spacing:-16.752600px;}
.ws14{word-spacing:-16.278000px;}
.wsdd{word-spacing:-16.272000px;}
.ws9c{word-spacing:-16.058400px;}
.ws3b{word-spacing:-16.056000px;}
.wsc9{word-spacing:-15.840600px;}
.ws7f{word-spacing:-15.552000px;}
.ws78{word-spacing:-15.540300px;}
.wsb0{word-spacing:-15.336000px;}
.ws63{word-spacing:-15.326100px;}
.ws90{word-spacing:-15.325800px;}
.ws4d{word-spacing:-15.316200px;}
.ws2c{word-spacing:-14.832000px;}
.ws33{word-spacing:-14.828400px;}
.ws16{word-spacing:-14.622000px;}
.wse1{word-spacing:-14.614200px;}
.ws67{word-spacing:-14.605800px;}
.ws17{word-spacing:-14.396400px;}
.wsa8{word-spacing:-13.896000px;}
.ws8b{word-spacing:-13.891200px;}
.wsc4{word-spacing:-13.887600px;}
.ws8a{word-spacing:-13.883400px;}
.wse3{word-spacing:-13.392000px;}
.ws2b{word-spacing:-13.383000px;}
.ws8e{word-spacing:-13.182000px;}
.ws88{word-spacing:-13.171200px;}
.wsd8{word-spacing:-13.165200px;}
.wsad{word-spacing:-12.661200px;}
.wsaa{word-spacing:-12.462000px;}
.wscb{word-spacing:-12.447000px;}
.ws41{word-spacing:-12.445200px;}
.wsc2{word-spacing:-11.952000px;}
.ws44{word-spacing:-11.946000px;}
.ws86{word-spacing:-11.727000px;}
.ws3a{word-spacing:-11.725200px;}
.ws60{word-spacing:-11.232000px;}
.ws3f{word-spacing:-10.791000px;}
.ws1a{word-spacing:-10.294800px;}
.ws43{word-spacing:-10.291200px;}
.ws62{word-spacing:-10.279800px;}
.wsae{word-spacing:-9.576000px;}
.ws4c{word-spacing:-9.347400px;}
.ws40{word-spacing:-8.847000px;}
.ws4a{word-spacing:-8.629200px;}
.wsbb{word-spacing:-8.349000px;}
.ws10{word-spacing:-8.346600px;}
.wsa9{word-spacing:-8.142000px;}
.ws47{word-spacing:-8.136000px;}
.wsbc{word-spacing:-8.127000px;}
.ws8c{word-spacing:-8.118000px;}
.ws9e{word-spacing:-7.632000px;}
.ws12{word-spacing:-7.422000px;}
.wsc0{word-spacing:-7.405200px;}
.ws75{word-spacing:-6.467400px;}
.ws28{word-spacing:-5.976000px;}
.wsdf{word-spacing:-5.975100px;}
.wsd1{word-spacing:-5.968800px;}
.ws80{word-spacing:-5.472000px;}
.ws54{word-spacing:-5.247000px;}
.wsc7{word-spacing:-5.245200px;}
.ws4e{word-spacing:-4.312800px;}
.ws79{word-spacing:-4.028400px;}
.ws42{word-spacing:-3.592800px;}
.ws27{word-spacing:-3.306000px;}
.ws53{word-spacing:-3.065400px;}
.ws6b{word-spacing:-3.061800px;}
.ws5c{word-spacing:-2.598000px;}
.ws91{word-spacing:-2.585700px;}
.ws6d{word-spacing:-2.566800px;}
.ws85{word-spacing:-2.365200px;}
.wsd5{word-spacing:-1.651200px;}
.ws58{word-spacing:-1.648800px;}
.ws3c{word-spacing:-1.440000px;}
.ws7a{word-spacing:-0.936000px;}
.wsd0{word-spacing:-0.720000px;}
.ws5f{word-spacing:-0.709200px;}
.ws13{word-spacing:-0.205200px;}
.wsb9{word-spacing:0.000000px;}
.ws46{word-spacing:0.297000px;}
.ws11{word-spacing:0.308700px;}
.wsa7{word-spacing:0.511200px;}
.wsbd{word-spacing:1.728000px;}
.ws31{word-spacing:1.947600px;}
.ws65{word-spacing:1.960200px;}
.ws71{word-spacing:2.889000px;}
.ws5a{word-spacing:2.894400px;}
.ws59{word-spacing:2.901600px;}
.ws84{word-spacing:3.387000px;}
.ws49{word-spacing:4.112100px;}
.ws18{word-spacing:4.838400px;}
.wsbe{word-spacing:5.333400px;}
.ws36{word-spacing:7.003200px;}
.ws35{word-spacing:7.066800px;}
.ws77{word-spacing:7.712400px;}
.ws50{word-spacing:8.211600px;}
.ws5d{word-spacing:8.434800px;}
.ws1b{word-spacing:8.652600px;}
.ws7c{word-spacing:8.658000px;}
.wsb{word-spacing:9.146700px;}
.wsce{word-spacing:9.154800px;}
.wsa{word-spacing:9.216000px;}
.ws4b{word-spacing:9.369000px;}
.wsc5{word-spacing:10.393200px;}
.ws15{word-spacing:10.594800px;}
.ws96{word-spacing:11.536200px;}
.wsd6{word-spacing:15.121200px;}
.wscc{word-spacing:15.129000px;}
.ws51{word-spacing:15.624000px;}
.ws52{word-spacing:16.128000px;}
.wsc{word-spacing:16.352100px;}
.wsd7{word-spacing:16.425000px;}
.ws5b{word-spacing:18.658800px;}
.ws1e{word-spacing:19.953900px;}
.ws1d{word-spacing:20.017200px;}
.ws74{word-spacing:20.161800px;}
.wsc3{word-spacing:20.680800px;}
.ws45{word-spacing:21.412800px;}
.ws19{word-spacing:23.761800px;}
.wsc6{word-spacing:24.267600px;}
.ws39{word-spacing:24.273000px;}
.ws99{word-spacing:24.485400px;}
.wsaf{word-spacing:25.222500px;}
.wsd{word-spacing:26.208000px;}
.ws73{word-spacing:26.647200px;}
.wsc1{word-spacing:28.594800px;}
.ws87{word-spacing:32.699100px;}
.wscd{word-spacing:33.414000px;}
.wsb6{word-spacing:113.411700px;}
.ws1{word-spacing:1037.484900px;}
._5{margin-left:-1.443600px;}
._0{width:1.076400px;}
._26{width:16.977600px;}
._1{width:18.968400px;}
._7{width:20.219400px;}
._6{width:21.384000px;}
._13{width:23.469600px;}
._15{width:24.556800px;}
._a{width:25.782000px;}
._c{width:27.151200px;}
._1f{width:28.234800px;}
._17{width:30.027600px;}
._f{width:31.314000px;}
._19{width:32.913000px;}
._9{width:34.315200px;}
._12{width:35.568000px;}
._1a{width:37.267200px;}
._11{width:38.298000px;}
._18{width:40.255200px;}
._1e{width:41.288400px;}
._8{width:42.459300px;}
._14{width:43.624800px;}
._1c{width:44.857200px;}
._20{width:45.861000px;}
._d{width:47.073600px;}
._16{width:49.388400px;}
._2{width:51.045300px;}
._b{width:52.416000px;}
._22{width:53.823600px;}
._1b{width:57.196800px;}
._3{width:58.219200px;}
._1d{width:60.328800px;}
._10{width:62.127300px;}
._e{width:65.311200px;}
._23{width:66.941100px;}
._4{width:67.968000px;}
._24{width:70.704000px;}
._21{width:74.376000px;}
._25{width:82.800000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y95{bottom:3.750000px;}
.y97{bottom:3.780000px;}
.y99{bottom:3.811500px;}
.y9b{bottom:3.840000px;}
.y9d{bottom:3.870000px;}
.y93{bottom:3.900000px;}
.yb2{bottom:3.930000px;}
.yb6{bottom:3.961500px;}
.yba{bottom:3.990000px;}
.yc1{bottom:4.696500px;}
.y9f{bottom:4.725000px;}
.y4{bottom:12.240000px;}
.ybd{bottom:24.540000px;}
.yae{bottom:24.600000px;}
.yb1{bottom:24.630000px;}
.yb5{bottom:24.661500px;}
.yb9{bottom:24.690000px;}
.yc0{bottom:25.396500px;}
.yb0{bottom:45.150000px;}
.yb4{bottom:45.180000px;}
.yb8{bottom:45.211500px;}
.ybc{bottom:45.240000px;}
.ybf{bottom:46.096500px;}
.y3{bottom:63.975000px;}
.y90{bottom:100.875000px;}
.y54{bottom:102.315000px;}
.y27{bottom:120.136500px;}
.y8f{bottom:121.575000px;}
.y53{bottom:123.015000px;}
.y26{bottom:140.836500px;}
.yd4{bottom:142.275000px;}
.y78{bottom:142.636500px;}
.y52{bottom:143.715000px;}
.yc2{bottom:152.715000px;}
.yd3{bottom:162.975000px;}
.y8e{bottom:163.336500px;}
.y51{bottom:164.236500px;}
.y25{bottom:182.415000px;}
.y8d{bottom:184.036500px;}
.ybe{bottom:190.500000px;}
.yd2{bottom:204.736500px;}
.y50{bottom:205.996500px;}
.y24{bottom:224.175000px;}
.yd1{bottom:225.436500px;}
.y8c{bottom:225.795000px;}
.y77{bottom:225.975000px;}
.y4f{bottom:226.696500px;}
.yd0{bottom:246.136500px;}
.y76{bottom:246.675000px;}
.y4e{bottom:247.396500px;}
.ybb{bottom:254.175000px;}
.y23{bottom:265.936500px;}
.y75{bottom:267.375000px;}
.y4d{bottom:268.096500px;}
.ycf{bottom:287.896500px;}
.y74{bottom:288.075000px;}
.y4c{bottom:288.795000px;}
.y22{bottom:307.515000px;}
.yce{bottom:308.596500px;}
.y73{bottom:308.775000px;}
.y8b{bottom:309.136500px;}
.y4b{bottom:309.496500px;}
.yb7{bottom:317.025000px;}
.ycd{bottom:329.295000px;}
.y72{bottom:329.475000px;}
.y8a{bottom:329.836500px;}
.y4a{bottom:330.196500px;}
.y21{bottom:349.275000px;}
.y71{bottom:350.175000px;}
.y89{bottom:350.536500px;}
.y49{bottom:350.896500px;}
.y20{bottom:369.975000px;}
.y70{bottom:370.875000px;}
.y88{bottom:371.236500px;}
.yb3{bottom:379.875000px;}
.ycc{bottom:391.575000px;}
.y87{bottom:391.936500px;}
.y48{bottom:392.475000px;}
.y1f{bottom:411.736500px;}
.ycb{bottom:412.275000px;}
.y6f{bottom:412.636500px;}
.y47{bottom:413.175000px;}
.y1e{bottom:432.436500px;}
.y6e{bottom:433.336500px;}
.y86{bottom:433.696500px;}
.y46{bottom:433.875000px;}
.yaf{bottom:442.725000px;}
.y6d{bottom:454.036500px;}
.y85{bottom:454.396500px;}
.y45{bottom:454.575000px;}
.y1d{bottom:474.015000px;}
.y6c{bottom:474.736500px;}
.y84{bottom:475.096500px;}
.y44{bottom:475.275000px;}
.y1c{bottom:494.715000px;}
.y6b{bottom:495.436500px;}
.y83{bottom:495.796500px;}
.y43{bottom:495.975000px;}
.yad{bottom:505.575000px;}
.y1b{bottom:515.415000px;}
.y6a{bottom:516.136500px;}
.y82{bottom:516.496500px;}
.y42{bottom:516.675000px;}
.y1a{bottom:536.115000px;}
.y81{bottom:537.195000px;}
.y41{bottom:537.375000px;}
.y19{bottom:556.815000px;}
.y69{bottom:557.896500px;}
.y40{bottom:558.075000px;}
.yac{bottom:572.475000px;}
.y18{bottom:577.515000px;}
.y68{bottom:578.596500px;}
.y3f{bottom:578.775000px;}
.y17{bottom:598.215000px;}
.y67{bottom:599.295000px;}
.yab{bottom:614.236500px;}
.y16{bottom:618.915000px;}
.y66{bottom:619.996500px;}
.y3e{bottom:620.536500px;}
.yaa{bottom:634.936500px;}
.y15{bottom:639.615000px;}
.y65{bottom:640.695000px;}
.y3d{bottom:641.236500px;}
.ya9{bottom:655.636500px;}
.y14{bottom:660.315000px;}
.y64{bottom:661.396500px;}
.y3c{bottom:661.936500px;}
.ya8{bottom:676.336500px;}
.y13{bottom:681.015000px;}
.y80{bottom:682.275000px;}
.y3b{bottom:682.636500px;}
.ya7{bottom:697.036500px;}
.y12{bottom:701.715000px;}
.y63{bottom:702.975000px;}
.y3a{bottom:703.336500px;}
.ya6{bottom:717.736500px;}
.y11{bottom:722.415000px;}
.y62{bottom:723.675000px;}
.y39{bottom:724.036500px;}
.y10{bottom:743.115000px;}
.y61{bottom:744.375000px;}
.y38{bottom:744.736500px;}
.ya5{bottom:759.496500px;}
.yf{bottom:763.815000px;}
.y60{bottom:765.075000px;}
.yca{bottom:765.795000px;}
.ya4{bottom:780.195000px;}
.ye{bottom:784.515000px;}
.y5f{bottom:785.775000px;}
.y37{bottom:786.496500px;}
.yd8{bottom:786.675000px;}
.ya3{bottom:800.895000px;}
.yd{bottom:805.215000px;}
.y5e{bottom:806.475000px;}
.yc9{bottom:807.195000px;}
.yd7{bottom:807.375000px;}
.ya2{bottom:821.596500px;}
.yc{bottom:825.915000px;}
.y7f{bottom:827.175000px;}
.y36{bottom:828.075000px;}
.ya1{bottom:842.295000px;}
.y5d{bottom:848.236500px;}
.y35{bottom:848.775000px;}
.ya0{bottom:862.996500px;}
.yb{bottom:867.675000px;}
.y5c{bottom:868.936500px;}
.yc8{bottom:869.475000px;}
.ya{bottom:888.375000px;}
.y5b{bottom:889.636500px;}
.yc7{bottom:890.175000px;}
.y34{bottom:890.536500px;}
.y9e{bottom:900.750000px;}
.y5a{bottom:910.336500px;}
.y7e{bottom:910.695000px;}
.yc6{bottom:910.875000px;}
.y33{bottom:911.236500px;}
.y9c{bottom:923.025000px;}
.y9{bottom:930.136500px;}
.y59{bottom:931.036500px;}
.y7d{bottom:931.395000px;}
.yc5{bottom:931.575000px;}
.y32{bottom:931.936500px;}
.y9a{bottom:944.475000px;}
.y58{bottom:951.736500px;}
.y7c{bottom:952.095000px;}
.yc4{bottom:952.275000px;}
.y31{bottom:952.636500px;}
.y98{bottom:965.925000px;}
.y57{bottom:972.436500px;}
.yc3{bottom:972.975000px;}
.y30{bottom:973.336500px;}
.y96{bottom:987.375000px;}
.y56{bottom:993.136500px;}
.y7b{bottom:993.675000px;}
.y2f{bottom:994.036500px;}
.y94{bottom:1008.825000px;}
.y7a{bottom:1014.375000px;}
.y2e{bottom:1014.736500px;}
.y92{bottom:1030.275000px;}
.y8{bottom:1034.536500px;}
.y55{bottom:1034.895000px;}
.y79{bottom:1035.075000px;}
.y2d{bottom:1035.436500px;}
.yd6{bottom:1055.775000px;}
.y2c{bottom:1056.136500px;}
.y7{bottom:1076.295000px;}
.y91{bottom:1076.475000px;}
.y2b{bottom:1076.836500px;}
.yd5{bottom:1097.175000px;}
.y2a{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y29{bottom:1118.236500px;}
.y28{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h6{height:21.375000px;}
.h7{height:22.200000px;}
.h3{height:32.700000px;}
.h8{height:42.075000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h9{height:62.775000px;}
.ha{height:63.600000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w7{width:119.775000px;}
.w6{width:188.325000px;}
.w5{width:244.950000px;}
.w4{width:292.125000px;}
.w3{width:315.375000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x11{left:45.075000px;}
.x12{left:80.025000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.xa{left:128.700000px;}
.x2{left:160.560000px;}
.x14{left:289.950000px;}
.x5{left:312.480000px;}
.x6{left:333.000000px;}
.x13{left:360.375000px;}
.x8{left:363.420000px;}
.x9{left:366.480000px;}
.xb{left:397.620000px;}
.x7{left:406.800000px;}
.xc{left:433.080000px;}
.x15{left:478.200000px;}
.xd{left:499.680000px;}
.xe{left:522.720000px;}
.x16{left:597.900000px;}
.x10{left:603.720000px;}
.xf{left:628.738500px;}
.x17{left:717.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws9{word-spacing:-36.416000pt;}
.ws7e{word-spacing:-36.032000pt;}
.wsa4{word-spacing:-21.042133pt;}
.wsa2{word-spacing:-21.030667pt;}
.wsb2{word-spacing:-21.029600pt;}
.ws9f{word-spacing:-20.790400pt;}
.ws20{word-spacing:-20.787200pt;}
.ws8{word-spacing:-20.786400pt;}
.wsca{word-spacing:-20.672000pt;}
.ws6e{word-spacing:-20.668800pt;}
.wsd9{word-spacing:-20.667733pt;}
.ws64{word-spacing:-20.665600pt;}
.wse0{word-spacing:-20.664800pt;}
.ws82{word-spacing:-20.664533pt;}
.wsb1{word-spacing:-20.663467pt;}
.ws1f{word-spacing:-20.662400pt;}
.ws81{word-spacing:-20.659733pt;}
.ws56{word-spacing:-20.659200pt;}
.ws9a{word-spacing:-20.657067pt;}
.ws5e{word-spacing:-20.649600pt;}
.wsac{word-spacing:-20.645867pt;}
.wsa0{word-spacing:-20.610133pt;}
.wsb4{word-spacing:-20.603733pt;}
.ws7{word-spacing:-20.603200pt;}
.ws98{word-spacing:-20.548533pt;}
.wsb5{word-spacing:-20.544000pt;}
.ws2{word-spacing:-20.538400pt;}
.ws57{word-spacing:-20.532800pt;}
.ws6a{word-spacing:-20.480000pt;}
.wsbf{word-spacing:-20.470400pt;}
.wsc8{word-spacing:-20.469867pt;}
.ws1c{word-spacing:-20.468800pt;}
.ws4f{word-spacing:-20.460800pt;}
.ws0{word-spacing:-20.416000pt;}
.ws3{word-spacing:-20.408800pt;}
.wsa3{word-spacing:-20.402400pt;}
.ws21{word-spacing:-20.224000pt;}
.ws34{word-spacing:-20.218667pt;}
.ws23{word-spacing:-20.213600pt;}
.wsb8{word-spacing:-20.209600pt;}
.wsa1{word-spacing:-20.157600pt;}
.ws76{word-spacing:-20.152800pt;}
.wsb7{word-spacing:-20.152000pt;}
.wsa5{word-spacing:-20.148800pt;}
.wsb3{word-spacing:-20.146400pt;}
.ws7b{word-spacing:-20.032000pt;}
.ws22{word-spacing:-20.030400pt;}
.ws61{word-spacing:-20.026133pt;}
.wsda{word-spacing:-20.025867pt;}
.ws6{word-spacing:-20.024800pt;}
.wsd4{word-spacing:-20.023200pt;}
.ws3e{word-spacing:-20.022400pt;}
.ws4{word-spacing:-20.020000pt;}
.wscf{word-spacing:-20.014400pt;}
.ws97{word-spacing:-19.838400pt;}
.ws89{word-spacing:-19.834667pt;}
.ws5{word-spacing:-19.828800pt;}
.wsa6{word-spacing:-19.711200pt;}
.wse2{word-spacing:-19.584000pt;}
.ws2a{word-spacing:-19.580800pt;}
.ws37{word-spacing:-19.576000pt;}
.wsdc{word-spacing:-19.385600pt;}
.wsf{word-spacing:-19.188800pt;}
.ws94{word-spacing:-18.949333pt;}
.wsdb{word-spacing:-18.946133pt;}
.ws26{word-spacing:-18.940800pt;}
.ws8f{word-spacing:-18.936000pt;}
.ws55{word-spacing:-18.923200pt;}
.ws2f{word-spacing:-18.757333pt;}
.ws38{word-spacing:-18.742400pt;}
.ws24{word-spacing:-18.688000pt;}
.wse{word-spacing:-18.553600pt;}
.ws72{word-spacing:-18.547200pt;}
.ws25{word-spacing:-18.300800pt;}
.wsd3{word-spacing:-17.654400pt;}
.ws93{word-spacing:-17.452800pt;}
.ws3d{word-spacing:-17.275200pt;}
.ws7d{word-spacing:-17.024000pt;}
.ws9b{word-spacing:-16.832000pt;}
.ws83{word-spacing:-16.825600pt;}
.ws29{word-spacing:-16.384000pt;}
.ws6c{word-spacing:-16.380800pt;}
.ws2e{word-spacing:-16.378133pt;}
.wsba{word-spacing:-16.361067pt;}
.ws30{word-spacing:-16.192000pt;}
.ws48{word-spacing:-16.189600pt;}
.wsd2{word-spacing:-16.187200pt;}
.ws92{word-spacing:-16.184000pt;}
.ws70{word-spacing:-16.173867pt;}
.ws32{word-spacing:-15.744000pt;}
.wsde{word-spacing:-15.741600pt;}
.ws6f{word-spacing:-15.739200pt;}
.ws66{word-spacing:-15.738133pt;}
.wsab{word-spacing:-15.552000pt;}
.wse4{word-spacing:-15.550400pt;}
.ws9d{word-spacing:-15.547200pt;}
.ws2d{word-spacing:-14.910400pt;}
.ws8d{word-spacing:-14.908800pt;}
.ws68{word-spacing:-14.899200pt;}
.ws69{word-spacing:-14.894400pt;}
.ws95{word-spacing:-14.891200pt;}
.ws14{word-spacing:-14.469333pt;}
.wsdd{word-spacing:-14.464000pt;}
.ws9c{word-spacing:-14.274133pt;}
.ws3b{word-spacing:-14.272000pt;}
.wsc9{word-spacing:-14.080533pt;}
.ws7f{word-spacing:-13.824000pt;}
.ws78{word-spacing:-13.813600pt;}
.wsb0{word-spacing:-13.632000pt;}
.ws63{word-spacing:-13.623200pt;}
.ws90{word-spacing:-13.622933pt;}
.ws4d{word-spacing:-13.614400pt;}
.ws2c{word-spacing:-13.184000pt;}
.ws33{word-spacing:-13.180800pt;}
.ws16{word-spacing:-12.997333pt;}
.wse1{word-spacing:-12.990400pt;}
.ws67{word-spacing:-12.982933pt;}
.ws17{word-spacing:-12.796800pt;}
.wsa8{word-spacing:-12.352000pt;}
.ws8b{word-spacing:-12.347733pt;}
.wsc4{word-spacing:-12.344533pt;}
.ws8a{word-spacing:-12.340800pt;}
.wse3{word-spacing:-11.904000pt;}
.ws2b{word-spacing:-11.896000pt;}
.ws8e{word-spacing:-11.717333pt;}
.ws88{word-spacing:-11.707733pt;}
.wsd8{word-spacing:-11.702400pt;}
.wsad{word-spacing:-11.254400pt;}
.wsaa{word-spacing:-11.077333pt;}
.wscb{word-spacing:-11.064000pt;}
.ws41{word-spacing:-11.062400pt;}
.wsc2{word-spacing:-10.624000pt;}
.ws44{word-spacing:-10.618667pt;}
.ws86{word-spacing:-10.424000pt;}
.ws3a{word-spacing:-10.422400pt;}
.ws60{word-spacing:-9.984000pt;}
.ws3f{word-spacing:-9.592000pt;}
.ws1a{word-spacing:-9.150933pt;}
.ws43{word-spacing:-9.147733pt;}
.ws62{word-spacing:-9.137600pt;}
.wsae{word-spacing:-8.512000pt;}
.ws4c{word-spacing:-8.308800pt;}
.ws40{word-spacing:-7.864000pt;}
.ws4a{word-spacing:-7.670400pt;}
.wsbb{word-spacing:-7.421333pt;}
.ws10{word-spacing:-7.419200pt;}
.wsa9{word-spacing:-7.237333pt;}
.ws47{word-spacing:-7.232000pt;}
.wsbc{word-spacing:-7.224000pt;}
.ws8c{word-spacing:-7.216000pt;}
.ws9e{word-spacing:-6.784000pt;}
.ws12{word-spacing:-6.597333pt;}
.wsc0{word-spacing:-6.582400pt;}
.ws75{word-spacing:-5.748800pt;}
.ws28{word-spacing:-5.312000pt;}
.wsdf{word-spacing:-5.311200pt;}
.wsd1{word-spacing:-5.305600pt;}
.ws80{word-spacing:-4.864000pt;}
.ws54{word-spacing:-4.664000pt;}
.wsc7{word-spacing:-4.662400pt;}
.ws4e{word-spacing:-3.833600pt;}
.ws79{word-spacing:-3.580800pt;}
.ws42{word-spacing:-3.193600pt;}
.ws27{word-spacing:-2.938667pt;}
.ws53{word-spacing:-2.724800pt;}
.ws6b{word-spacing:-2.721600pt;}
.ws5c{word-spacing:-2.309333pt;}
.ws91{word-spacing:-2.298400pt;}
.ws6d{word-spacing:-2.281600pt;}
.ws85{word-spacing:-2.102400pt;}
.wsd5{word-spacing:-1.467733pt;}
.ws58{word-spacing:-1.465600pt;}
.ws3c{word-spacing:-1.280000pt;}
.ws7a{word-spacing:-0.832000pt;}
.wsd0{word-spacing:-0.640000pt;}
.ws5f{word-spacing:-0.630400pt;}
.ws13{word-spacing:-0.182400pt;}
.wsb9{word-spacing:0.000000pt;}
.ws46{word-spacing:0.264000pt;}
.ws11{word-spacing:0.274400pt;}
.wsa7{word-spacing:0.454400pt;}
.wsbd{word-spacing:1.536000pt;}
.ws31{word-spacing:1.731200pt;}
.ws65{word-spacing:1.742400pt;}
.ws71{word-spacing:2.568000pt;}
.ws5a{word-spacing:2.572800pt;}
.ws59{word-spacing:2.579200pt;}
.ws84{word-spacing:3.010667pt;}
.ws49{word-spacing:3.655200pt;}
.ws18{word-spacing:4.300800pt;}
.wsbe{word-spacing:4.740800pt;}
.ws36{word-spacing:6.225067pt;}
.ws35{word-spacing:6.281600pt;}
.ws77{word-spacing:6.855467pt;}
.ws50{word-spacing:7.299200pt;}
.ws5d{word-spacing:7.497600pt;}
.ws1b{word-spacing:7.691200pt;}
.ws7c{word-spacing:7.696000pt;}
.wsb{word-spacing:8.130400pt;}
.wsce{word-spacing:8.137600pt;}
.wsa{word-spacing:8.192000pt;}
.ws4b{word-spacing:8.328000pt;}
.wsc5{word-spacing:9.238400pt;}
.ws15{word-spacing:9.417600pt;}
.ws96{word-spacing:10.254400pt;}
.wsd6{word-spacing:13.441067pt;}
.wscc{word-spacing:13.448000pt;}
.ws51{word-spacing:13.888000pt;}
.ws52{word-spacing:14.336000pt;}
.wsc{word-spacing:14.535200pt;}
.wsd7{word-spacing:14.600000pt;}
.ws5b{word-spacing:16.585600pt;}
.ws1e{word-spacing:17.736800pt;}
.ws1d{word-spacing:17.793067pt;}
.ws74{word-spacing:17.921600pt;}
.wsc3{word-spacing:18.382933pt;}
.ws45{word-spacing:19.033600pt;}
.ws19{word-spacing:21.121600pt;}
.wsc6{word-spacing:21.571200pt;}
.ws39{word-spacing:21.576000pt;}
.ws99{word-spacing:21.764800pt;}
.wsaf{word-spacing:22.420000pt;}
.wsd{word-spacing:23.296000pt;}
.ws73{word-spacing:23.686400pt;}
.wsc1{word-spacing:25.417600pt;}
.ws87{word-spacing:29.065867pt;}
.wscd{word-spacing:29.701333pt;}
.wsb6{word-spacing:100.810400pt;}
.ws1{word-spacing:922.208800pt;}
._5{margin-left:-1.283200pt;}
._0{width:0.956800pt;}
._26{width:15.091200pt;}
._1{width:16.860800pt;}
._7{width:17.972800pt;}
._6{width:19.008000pt;}
._13{width:20.861867pt;}
._15{width:21.828267pt;}
._a{width:22.917333pt;}
._c{width:24.134400pt;}
._1f{width:25.097600pt;}
._17{width:26.691200pt;}
._f{width:27.834667pt;}
._19{width:29.256000pt;}
._9{width:30.502400pt;}
._12{width:31.616000pt;}
._1a{width:33.126400pt;}
._11{width:34.042667pt;}
._18{width:35.782400pt;}
._1e{width:36.700800pt;}
._8{width:37.741600pt;}
._14{width:38.777600pt;}
._1c{width:39.873067pt;}
._20{width:40.765333pt;}
._d{width:41.843200pt;}
._16{width:43.900800pt;}
._2{width:45.373600pt;}
._b{width:46.592000pt;}
._22{width:47.843200pt;}
._1b{width:50.841600pt;}
._3{width:51.750400pt;}
._1d{width:53.625600pt;}
._10{width:55.224267pt;}
._e{width:58.054400pt;}
._23{width:59.503200pt;}
._4{width:60.416000pt;}
._24{width:62.848000pt;}
._21{width:66.112000pt;}
._25{width:73.600000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:3.333333pt;}
.y97{bottom:3.360000pt;}
.y99{bottom:3.388000pt;}
.y9b{bottom:3.413333pt;}
.y9d{bottom:3.440000pt;}
.y93{bottom:3.466667pt;}
.yb2{bottom:3.493333pt;}
.yb6{bottom:3.521333pt;}
.yba{bottom:3.546667pt;}
.yc1{bottom:4.174667pt;}
.y9f{bottom:4.200000pt;}
.y4{bottom:10.880000pt;}
.ybd{bottom:21.813333pt;}
.yae{bottom:21.866667pt;}
.yb1{bottom:21.893333pt;}
.yb5{bottom:21.921333pt;}
.yb9{bottom:21.946667pt;}
.yc0{bottom:22.574667pt;}
.yb0{bottom:40.133333pt;}
.yb4{bottom:40.160000pt;}
.yb8{bottom:40.188000pt;}
.ybc{bottom:40.213333pt;}
.ybf{bottom:40.974667pt;}
.y3{bottom:56.866667pt;}
.y90{bottom:89.666667pt;}
.y54{bottom:90.946667pt;}
.y27{bottom:106.788000pt;}
.y8f{bottom:108.066667pt;}
.y53{bottom:109.346667pt;}
.y26{bottom:125.188000pt;}
.yd4{bottom:126.466667pt;}
.y78{bottom:126.788000pt;}
.y52{bottom:127.746667pt;}
.yc2{bottom:135.746667pt;}
.yd3{bottom:144.866667pt;}
.y8e{bottom:145.188000pt;}
.y51{bottom:145.988000pt;}
.y25{bottom:162.146667pt;}
.y8d{bottom:163.588000pt;}
.ybe{bottom:169.333333pt;}
.yd2{bottom:181.988000pt;}
.y50{bottom:183.108000pt;}
.y24{bottom:199.266667pt;}
.yd1{bottom:200.388000pt;}
.y8c{bottom:200.706667pt;}
.y77{bottom:200.866667pt;}
.y4f{bottom:201.508000pt;}
.yd0{bottom:218.788000pt;}
.y76{bottom:219.266667pt;}
.y4e{bottom:219.908000pt;}
.ybb{bottom:225.933333pt;}
.y23{bottom:236.388000pt;}
.y75{bottom:237.666667pt;}
.y4d{bottom:238.308000pt;}
.ycf{bottom:255.908000pt;}
.y74{bottom:256.066667pt;}
.y4c{bottom:256.706667pt;}
.y22{bottom:273.346667pt;}
.yce{bottom:274.308000pt;}
.y73{bottom:274.466667pt;}
.y8b{bottom:274.788000pt;}
.y4b{bottom:275.108000pt;}
.yb7{bottom:281.800000pt;}
.ycd{bottom:292.706667pt;}
.y72{bottom:292.866667pt;}
.y8a{bottom:293.188000pt;}
.y4a{bottom:293.508000pt;}
.y21{bottom:310.466667pt;}
.y71{bottom:311.266667pt;}
.y89{bottom:311.588000pt;}
.y49{bottom:311.908000pt;}
.y20{bottom:328.866667pt;}
.y70{bottom:329.666667pt;}
.y88{bottom:329.988000pt;}
.yb3{bottom:337.666667pt;}
.ycc{bottom:348.066667pt;}
.y87{bottom:348.388000pt;}
.y48{bottom:348.866667pt;}
.y1f{bottom:365.988000pt;}
.ycb{bottom:366.466667pt;}
.y6f{bottom:366.788000pt;}
.y47{bottom:367.266667pt;}
.y1e{bottom:384.388000pt;}
.y6e{bottom:385.188000pt;}
.y86{bottom:385.508000pt;}
.y46{bottom:385.666667pt;}
.yaf{bottom:393.533333pt;}
.y6d{bottom:403.588000pt;}
.y85{bottom:403.908000pt;}
.y45{bottom:404.066667pt;}
.y1d{bottom:421.346667pt;}
.y6c{bottom:421.988000pt;}
.y84{bottom:422.308000pt;}
.y44{bottom:422.466667pt;}
.y1c{bottom:439.746667pt;}
.y6b{bottom:440.388000pt;}
.y83{bottom:440.708000pt;}
.y43{bottom:440.866667pt;}
.yad{bottom:449.400000pt;}
.y1b{bottom:458.146667pt;}
.y6a{bottom:458.788000pt;}
.y82{bottom:459.108000pt;}
.y42{bottom:459.266667pt;}
.y1a{bottom:476.546667pt;}
.y81{bottom:477.506667pt;}
.y41{bottom:477.666667pt;}
.y19{bottom:494.946667pt;}
.y69{bottom:495.908000pt;}
.y40{bottom:496.066667pt;}
.yac{bottom:508.866667pt;}
.y18{bottom:513.346667pt;}
.y68{bottom:514.308000pt;}
.y3f{bottom:514.466667pt;}
.y17{bottom:531.746667pt;}
.y67{bottom:532.706667pt;}
.yab{bottom:545.988000pt;}
.y16{bottom:550.146667pt;}
.y66{bottom:551.108000pt;}
.y3e{bottom:551.588000pt;}
.yaa{bottom:564.388000pt;}
.y15{bottom:568.546667pt;}
.y65{bottom:569.506667pt;}
.y3d{bottom:569.988000pt;}
.ya9{bottom:582.788000pt;}
.y14{bottom:586.946667pt;}
.y64{bottom:587.908000pt;}
.y3c{bottom:588.388000pt;}
.ya8{bottom:601.188000pt;}
.y13{bottom:605.346667pt;}
.y80{bottom:606.466667pt;}
.y3b{bottom:606.788000pt;}
.ya7{bottom:619.588000pt;}
.y12{bottom:623.746667pt;}
.y63{bottom:624.866667pt;}
.y3a{bottom:625.188000pt;}
.ya6{bottom:637.988000pt;}
.y11{bottom:642.146667pt;}
.y62{bottom:643.266667pt;}
.y39{bottom:643.588000pt;}
.y10{bottom:660.546667pt;}
.y61{bottom:661.666667pt;}
.y38{bottom:661.988000pt;}
.ya5{bottom:675.108000pt;}
.yf{bottom:678.946667pt;}
.y60{bottom:680.066667pt;}
.yca{bottom:680.706667pt;}
.ya4{bottom:693.506667pt;}
.ye{bottom:697.346667pt;}
.y5f{bottom:698.466667pt;}
.y37{bottom:699.108000pt;}
.yd8{bottom:699.266667pt;}
.ya3{bottom:711.906667pt;}
.yd{bottom:715.746667pt;}
.y5e{bottom:716.866667pt;}
.yc9{bottom:717.506667pt;}
.yd7{bottom:717.666667pt;}
.ya2{bottom:730.308000pt;}
.yc{bottom:734.146667pt;}
.y7f{bottom:735.266667pt;}
.y36{bottom:736.066667pt;}
.ya1{bottom:748.706667pt;}
.y5d{bottom:753.988000pt;}
.y35{bottom:754.466667pt;}
.ya0{bottom:767.108000pt;}
.yb{bottom:771.266667pt;}
.y5c{bottom:772.388000pt;}
.yc8{bottom:772.866667pt;}
.ya{bottom:789.666667pt;}
.y5b{bottom:790.788000pt;}
.yc7{bottom:791.266667pt;}
.y34{bottom:791.588000pt;}
.y9e{bottom:800.666667pt;}
.y5a{bottom:809.188000pt;}
.y7e{bottom:809.506667pt;}
.yc6{bottom:809.666667pt;}
.y33{bottom:809.988000pt;}
.y9c{bottom:820.466667pt;}
.y9{bottom:826.788000pt;}
.y59{bottom:827.588000pt;}
.y7d{bottom:827.906667pt;}
.yc5{bottom:828.066667pt;}
.y32{bottom:828.388000pt;}
.y9a{bottom:839.533333pt;}
.y58{bottom:845.988000pt;}
.y7c{bottom:846.306667pt;}
.yc4{bottom:846.466667pt;}
.y31{bottom:846.788000pt;}
.y98{bottom:858.600000pt;}
.y57{bottom:864.388000pt;}
.yc3{bottom:864.866667pt;}
.y30{bottom:865.188000pt;}
.y96{bottom:877.666667pt;}
.y56{bottom:882.788000pt;}
.y7b{bottom:883.266667pt;}
.y2f{bottom:883.588000pt;}
.y94{bottom:896.733333pt;}
.y7a{bottom:901.666667pt;}
.y2e{bottom:901.988000pt;}
.y92{bottom:915.800000pt;}
.y8{bottom:919.588000pt;}
.y55{bottom:919.906667pt;}
.y79{bottom:920.066667pt;}
.y2d{bottom:920.388000pt;}
.yd6{bottom:938.466667pt;}
.y2c{bottom:938.788000pt;}
.y7{bottom:956.706667pt;}
.y91{bottom:956.866667pt;}
.y2b{bottom:957.188000pt;}
.yd5{bottom:975.266667pt;}
.y2a{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y29{bottom:993.988000pt;}
.y28{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h6{height:19.000000pt;}
.h7{height:19.733333pt;}
.h3{height:29.066667pt;}
.h8{height:37.400000pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h9{height:55.800000pt;}
.ha{height:56.533333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w7{width:106.466667pt;}
.w6{width:167.400000pt;}
.w5{width:217.733333pt;}
.w4{width:259.666667pt;}
.w3{width:280.333333pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x11{left:40.066667pt;}
.x12{left:71.133333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.xa{left:114.400000pt;}
.x2{left:142.720000pt;}
.x14{left:257.733333pt;}
.x5{left:277.760000pt;}
.x6{left:296.000000pt;}
.x13{left:320.333333pt;}
.x8{left:323.040000pt;}
.x9{left:325.760000pt;}
.xb{left:353.440000pt;}
.x7{left:361.600000pt;}
.xc{left:384.960000pt;}
.x15{left:425.066667pt;}
.xd{left:444.160000pt;}
.xe{left:464.640000pt;}
.x16{left:531.466667pt;}
.x10{left:536.640000pt;}
.xf{left:558.878667pt;}
.x17{left:637.866667pt;}
}




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