
    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_8a479a91e5667aea0f06d3c7.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_d040b1953e4293a2ccd0f6bf.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_009910c1ae094f686426a9ed.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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0a257b528034e446232b67f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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;}
.ls2{letter-spacing:38.874000px;}
.ls3{letter-spacing:39.600000px;}
.ls1{letter-spacing:100.768200px;}
.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;}
}
.ws6{word-spacing:-55.944000px;}
.ws6d{word-spacing:-38.659200px;}
.ws4{word-spacing:-38.656500px;}
.ws97{word-spacing:-38.655900px;}
.ws63{word-spacing:-38.655000px;}
.ws95{word-spacing:-38.653200px;}
.wsd4{word-spacing:-38.652300px;}
.ws3{word-spacing:-38.651400px;}
.ws76{word-spacing:-38.647800px;}
.ws8e{word-spacing:-38.643300px;}
.ws6a{word-spacing:-38.631600px;}
.ws91{word-spacing:-38.446800px;}
.ws51{word-spacing:-38.440800px;}
.ws65{word-spacing:-38.440500px;}
.ws71{word-spacing:-38.439600px;}
.ws28{word-spacing:-38.439000px;}
.ws2e{word-spacing:-38.437800px;}
.ws72{word-spacing:-38.437200px;}
.ws57{word-spacing:-38.434500px;}
.wsd0{word-spacing:-38.430900px;}
.ws42{word-spacing:-38.427600px;}
.ws47{word-spacing:-38.166000px;}
.ws64{word-spacing:-38.156400px;}
.ws8b{word-spacing:-38.154600px;}
.ws11{word-spacing:-38.153700px;}
.ws33{word-spacing:-38.152800px;}
.ws6b{word-spacing:-38.151000px;}
.ws52{word-spacing:-38.150100px;}
.ws3d{word-spacing:-38.149200px;}
.ws55{word-spacing:-38.148300px;}
.ws5e{word-spacing:-38.142000px;}
.ws2{word-spacing:-38.081700px;}
.ws0{word-spacing:-37.944000px;}
.wsbd{word-spacing:-37.940400px;}
.ws5f{word-spacing:-37.936200px;}
.wsa5{word-spacing:-37.935900px;}
.wsc{word-spacing:-37.935600px;}
.ws6c{word-spacing:-37.935000px;}
.ws5d{word-spacing:-37.932600px;}
.wsab{word-spacing:-37.930800px;}
.wsc5{word-spacing:-37.930500px;}
.ws9d{word-spacing:-37.930200px;}
.ws15{word-spacing:-37.929600px;}
.ws98{word-spacing:-37.926000px;}
.ws74{word-spacing:-37.924200px;}
.ws77{word-spacing:-37.922400px;}
.wsc8{word-spacing:-37.921500px;}
.ws49{word-spacing:-37.732200px;}
.ws9e{word-spacing:-37.727100px;}
.wsa3{word-spacing:-37.726200px;}
.ws69{word-spacing:-37.725900px;}
.wsce{word-spacing:-37.722600px;}
.wsc2{word-spacing:-37.721700px;}
.ws6f{word-spacing:-37.708200px;}
.wsc6{word-spacing:-37.639800px;}
.ws8d{word-spacing:-37.436400px;}
.ws9b{word-spacing:-37.427400px;}
.ws35{word-spacing:-37.426500px;}
.ws8c{word-spacing:-37.423800px;}
.ws1d{word-spacing:-37.422000px;}
.ws4f{word-spacing:-37.414200px;}
.ws1e{word-spacing:-37.224000px;}
.ws56{word-spacing:-37.222200px;}
.wscc{word-spacing:-37.209600px;}
.ws36{word-spacing:-37.206000px;}
.ws44{word-spacing:-37.204200px;}
.ws3f{word-spacing:-37.195200px;}
.wsb5{word-spacing:-37.000800px;}
.wsd1{word-spacing:-36.701100px;}
.wsac{word-spacing:-36.510000px;}
.wsd2{word-spacing:-36.504000px;}
.ws4c{word-spacing:-36.493200px;}
.ws58{word-spacing:-36.286800px;}
.ws1c{word-spacing:-36.282600px;}
.ws5{word-spacing:-36.000300px;}
.ws86{word-spacing:-35.760600px;}
.wsf{word-spacing:-35.557200px;}
.ws32{word-spacing:-35.553600px;}
.wsa8{word-spacing:-34.843200px;}
.wsbe{word-spacing:-34.840800px;}
.wse{word-spacing:-34.833600px;}
.ws88{word-spacing:-34.827600px;}
.ws22{word-spacing:-34.560000px;}
.ws62{word-spacing:-34.545600px;}
.ws61{word-spacing:-34.333200px;}
.ws20{word-spacing:-34.130400px;}
.ws21{word-spacing:-34.117200px;}
.ws60{word-spacing:-34.113600px;}
.ws30{word-spacing:-33.626400px;}
.wscd{word-spacing:-33.623100px;}
.ws96{word-spacing:-33.609000px;}
.ws8{word-spacing:-33.402600px;}
.ws92{word-spacing:-33.399600px;}
.ws2b{word-spacing:-33.120000px;}
.ws66{word-spacing:-33.103800px;}
.ws5c{word-spacing:-32.680800px;}
.wsc9{word-spacing:-32.183100px;}
.wsb1{word-spacing:-32.179200px;}
.wsb0{word-spacing:-32.178600px;}
.ws26{word-spacing:-31.966200px;}
.ws94{word-spacing:-31.945800px;}
.ws84{word-spacing:-31.457400px;}
.wsa{word-spacing:-31.226400px;}
.ws4e{word-spacing:-30.946800px;}
.ws14{word-spacing:-30.526800px;}
.wsc1{word-spacing:-30.006600px;}
.ws93{word-spacing:-29.800800px;}
.wsa1{word-spacing:-29.799000px;}
.ws7{word-spacing:-29.522400px;}
.wsd3{word-spacing:-29.310000px;}
.ws50{word-spacing:-29.289000px;}
.wsb6{word-spacing:-27.846000px;}
.ws9a{word-spacing:-27.642600px;}
.ws3c{word-spacing:-27.138600px;}
.ws2a{word-spacing:-27.135000px;}
.wsb8{word-spacing:-26.417400px;}
.ws4b{word-spacing:-26.409600px;}
.wsb7{word-spacing:-25.693200px;}
.ws29{word-spacing:-25.480800px;}
.ws2d{word-spacing:-24.975000px;}
.ws87{word-spacing:-24.480000px;}
.wsba{word-spacing:-24.253200px;}
.ws1b{word-spacing:-24.039600px;}
.wsbf{word-spacing:-22.791600px;}
.ws7c{word-spacing:-22.594500px;}
.ws3a{word-spacing:-21.390000px;}
.ws5a{word-spacing:-21.378600px;}
.ws53{word-spacing:-21.369600px;}
.wsc0{word-spacing:-20.645400px;}
.wscf{word-spacing:-20.438100px;}
.wsca{word-spacing:-19.943100px;}
.ws27{word-spacing:-19.936800px;}
.ws7b{word-spacing:-19.217400px;}
.ws13{word-spacing:-18.493200px;}
.wsa9{word-spacing:-18.491400px;}
.ws12{word-spacing:-17.271900px;}
.ws81{word-spacing:-17.058000px;}
.ws80{word-spacing:-17.056800px;}
.wsbc{word-spacing:-17.053200px;}
.ws7f{word-spacing:-17.048100px;}
.ws7a{word-spacing:-17.038800px;}
.ws83{word-spacing:-16.846200px;}
.ws7e{word-spacing:-16.830900px;}
.ws82{word-spacing:-16.344000px;}
.ws7d{word-spacing:-16.337400px;}
.ws5b{word-spacing:-16.336800px;}
.ws19{word-spacing:-16.114800px;}
.ws23{word-spacing:-16.113600px;}
.ws25{word-spacing:-15.624000px;}
.wsaa{word-spacing:-15.613200px;}
.ws70{word-spacing:-15.400800px;}
.ws59{word-spacing:-15.395400px;}
.wscb{word-spacing:-15.394500px;}
.ws24{word-spacing:-15.391200px;}
.ws3e{word-spacing:-14.895000px;}
.ws75{word-spacing:-14.679000px;}
.ws34{word-spacing:-14.673600px;}
.ws31{word-spacing:-14.158800px;}
.ws17{word-spacing:-13.674600px;}
.ws9{word-spacing:-13.464000px;}
.wsb9{word-spacing:-12.513600px;}
.ws2c{word-spacing:-12.240000px;}
.ws16{word-spacing:-11.800800px;}
.wsb{word-spacing:-10.578300px;}
.wsaf{word-spacing:-8.919600px;}
.wsae{word-spacing:-8.917200px;}
.wsad{word-spacing:-8.395200px;}
.ws4d{word-spacing:-8.200800px;}
.ws6e{word-spacing:-8.199600px;}
.ws85{word-spacing:-7.680600px;}
.ws10{word-spacing:-7.473600px;}
.ws18{word-spacing:-5.752800px;}
.ws54{word-spacing:-5.747400px;}
.wsbb{word-spacing:-4.091400px;}
.wsc3{word-spacing:-1.178400px;}
.wsc7{word-spacing:-0.504000px;}
.wsc4{word-spacing:-0.286800px;}
.ws78{word-spacing:0.000000px;}
.wsa6{word-spacing:0.946800px;}
.ws40{word-spacing:2.385900px;}
.ws68{word-spacing:2.890800px;}
.ws67{word-spacing:4.753800px;}
.ws1a{word-spacing:5.258700px;}
.ws1f{word-spacing:5.266800px;}
.ws2f{word-spacing:5.985600px;}
.ws89{word-spacing:8.865900px;}
.ws8a{word-spacing:9.373800px;}
.wsb3{word-spacing:11.016000px;}
.wsb2{word-spacing:11.536200px;}
.wsb4{word-spacing:11.960100px;}
.ws79{word-spacing:13.910400px;}
.ws4a{word-spacing:14.415000px;}
.ws46{word-spacing:23.499000px;}
.ws73{word-spacing:25.430400px;}
.ws9f{word-spacing:27.589500px;}
.wsd{word-spacing:32.630400px;}
.ws3b{word-spacing:38.604600px;}
.ws8f{word-spacing:40.780800px;}
.ws90{word-spacing:41.477400px;}
.wsa4{word-spacing:47.238600px;}
.ws99{word-spacing:47.248200px;}
.ws48{word-spacing:50.416200px;}
.ws39{word-spacing:60.206400px;}
.ws43{word-spacing:60.709500px;}
.ws37{word-spacing:63.082200px;}
.ws38{word-spacing:64.519800px;}
.wsa7{word-spacing:78.707700px;}
.ws9c{word-spacing:79.421400px;}
.wsa0{word-spacing:84.469500px;}
.wsa2{word-spacing:99.084600px;}
.ws45{word-spacing:141.335400px;}
.ws41{word-spacing:335.232900px;}
.ws1{word-spacing:1037.484900px;}
._2{margin-left:-1.066800px;}
._0{width:1.076400px;}
._3{width:16.554600px;}
._1{width:18.968400px;}
._19{width:19.987200px;}
._12{width:21.003600px;}
._a{width:22.166400px;}
._5{width:23.956200px;}
._15{width:25.114800px;}
._7{width:26.402400px;}
._4{width:27.580800px;}
._24{width:29.289600px;}
._14{width:30.375000px;}
._17{width:32.309400px;}
._11{width:33.336000px;}
._1f{width:34.455000px;}
._1c{width:35.773200px;}
._13{width:37.497600px;}
._c{width:39.290700px;}
._f{width:41.040000px;}
._16{width:42.699600px;}
._6{width:43.704000px;}
._d{width:45.354000px;}
._8{width:46.432200px;}
._22{width:48.093600px;}
._b{width:49.536000px;}
._e{width:51.542400px;}
._25{width:53.267400px;}
._26{width:56.180400px;}
._21{width:58.032000px;}
._1b{width:60.313800px;}
._10{width:62.418000px;}
._18{width:63.432000px;}
._23{width:68.590200px;}
._1e{width:70.894800px;}
._27{width:73.440000px;}
._1d{width:83.218800px;}
._9{width:87.334800px;}
._1a{width:95.738400px;}
._20{width:98.130000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs2{font-size:48.300000px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:5.640000px;}
.y44{bottom:5.700000px;}
.y35{bottom:5.761500px;}
.y79{bottom:5.775000px;}
.y3b{bottom:5.820000px;}
.y95{bottom:5.821500px;}
.y80{bottom:6.465000px;}
.y9d{bottom:6.525000px;}
.y4d{bottom:6.646500px;}
.y4{bottom:12.240000px;}
.y99{bottom:16.080000px;}
.y41{bottom:16.140000px;}
.y36{bottom:16.200000px;}
.y77{bottom:16.215000px;}
.y3e{bottom:16.261500px;}
.y9f{bottom:16.965000px;}
.y4a{bottom:17.086500px;}
.y94{bottom:26.340000px;}
.y43{bottom:26.400000px;}
.y34{bottom:26.461500px;}
.y78{bottom:26.475000px;}
.y39{bottom:26.521500px;}
.y9b{bottom:27.225000px;}
.y4c{bottom:27.345000px;}
.y40{bottom:36.840000px;}
.y46{bottom:36.900000px;}
.y3d{bottom:36.961500px;}
.y49{bottom:37.605000px;}
.y9e{bottom:37.665000px;}
.y42{bottom:47.100000px;}
.y47{bottom:47.161500px;}
.y38{bottom:47.220000px;}
.y4b{bottom:47.865000px;}
.y9c{bottom:47.925000px;}
.y3c{bottom:57.480000px;}
.y3{bottom:63.975000px;}
.y3a{bottom:67.740000px;}
.yc6{bottom:101.596500px;}
.y75{bottom:119.596500px;}
.yc5{bottom:122.296500px;}
.ya3{bottom:124.455000px;}
.y2b{bottom:125.175000px;}
.yc4{bottom:142.996500px;}
.ya2{bottom:145.155000px;}
.y2a{bottom:145.875000px;}
.y74{bottom:161.175000px;}
.yc3{bottom:163.696500px;}
.ya1{bottom:165.855000px;}
.y29{bottom:166.575000px;}
.y5d{bottom:171.255000px;}
.y73{bottom:181.875000px;}
.yc2{bottom:184.396500px;}
.ya0{bottom:186.555000px;}
.y28{bottom:187.275000px;}
.y72{bottom:202.575000px;}
.yc1{bottom:205.096500px;}
.y27{bottom:207.975000px;}
.y5c{bottom:213.015000px;}
.yc0{bottom:225.795000px;}
.y9a{bottom:226.650000px;}
.y26{bottom:228.675000px;}
.y5b{bottom:233.715000px;}
.y71{bottom:244.336500px;}
.ybf{bottom:246.496500px;}
.y5a{bottom:254.415000px;}
.y70{bottom:265.036500px;}
.ybe{bottom:267.196500px;}
.y25{bottom:270.255000px;}
.y59{bottom:275.115000px;}
.y6f{bottom:285.736500px;}
.ybd{bottom:287.896500px;}
.y24{bottom:290.955000px;}
.y98{bottom:295.575000px;}
.y6e{bottom:306.436500px;}
.ybc{bottom:308.596500px;}
.y23{bottom:311.655000px;}
.y58{bottom:316.875000px;}
.y6d{bottom:327.136500px;}
.ybb{bottom:329.295000px;}
.y22{bottom:332.355000px;}
.y97{bottom:342.975000px;}
.yba{bottom:349.996500px;}
.y21{bottom:353.055000px;}
.y57{bottom:358.455000px;}
.y6c{bottom:368.896500px;}
.yb9{bottom:370.696500px;}
.y20{bottom:373.755000px;}
.y56{bottom:379.155000px;}
.yb8{bottom:391.396500px;}
.y1f{bottom:394.455000px;}
.y55{bottom:399.855000px;}
.y6b{bottom:410.475000px;}
.y96{bottom:411.075000px;}
.yb7{bottom:432.975000px;}
.y1e{bottom:436.215000px;}
.y54{bottom:441.615000px;}
.y6a{bottom:452.236500px;}
.y1d{bottom:456.915000px;}
.y69{bottom:472.936500px;}
.yb6{bottom:474.736500px;}
.y1c{bottom:477.615000px;}
.y93{bottom:479.175000px;}
.y53{bottom:483.375000px;}
.y68{bottom:493.636500px;}
.yb5{bottom:495.436500px;}
.y1b{bottom:498.315000px;}
.y52{bottom:504.075000px;}
.y67{bottom:514.336500px;}
.yb4{bottom:516.136500px;}
.y1a{bottom:519.015000px;}
.y51{bottom:524.775000px;}
.y92{bottom:526.575000px;}
.y19{bottom:539.715000px;}
.y50{bottom:545.475000px;}
.y66{bottom:556.096500px;}
.yb3{bottom:557.896500px;}
.y18{bottom:560.415000px;}
.y4f{bottom:566.175000px;}
.yb2{bottom:578.596500px;}
.y17{bottom:581.115000px;}
.y4e{bottom:586.875000px;}
.y65{bottom:597.675000px;}
.yb1{bottom:599.295000px;}
.y91{bottom:599.475000px;}
.yb0{bottom:619.996500px;}
.y90{bottom:620.175000px;}
.y16{bottom:622.875000px;}
.y48{bottom:626.850000px;}
.yaf{bottom:640.695000px;}
.y7f{bottom:643.050000px;}
.y8f{bottom:661.936500px;}
.y15{bottom:664.455000px;}
.y7e{bottom:670.575000px;}
.yae{bottom:682.275000px;}
.y8e{bottom:682.636500px;}
.y14{bottom:685.155000px;}
.y45{bottom:695.775000px;}
.yad{bottom:702.975000px;}
.y8d{bottom:703.336500px;}
.y13{bottom:705.855000px;}
.y7d{bottom:717.975000px;}
.yac{bottom:723.675000px;}
.y8c{bottom:724.036500px;}
.yab{bottom:744.375000px;}
.y12{bottom:747.615000px;}
.y3f{bottom:763.875000px;}
.yaa{bottom:765.075000px;}
.y7b{bottom:765.375000px;}
.y8b{bottom:765.795000px;}
.y11{bottom:768.315000px;}
.y8a{bottom:786.315000px;}
.y10{bottom:789.015000px;}
.y7a{bottom:792.075000px;}
.ya9{bottom:806.836500px;}
.y89{bottom:807.195000px;}
.yf{bottom:809.715000px;}
.y76{bottom:818.700000px;}
.ya8{bottom:827.536500px;}
.y88{bottom:827.715000px;}
.ye{bottom:830.415000px;}
.y37{bottom:831.975000px;}
.ya7{bottom:848.236500px;}
.y87{bottom:848.596500px;}
.yd{bottom:851.115000px;}
.ya6{bottom:868.936500px;}
.y86{bottom:869.115000px;}
.yc{bottom:871.815000px;}
.ya5{bottom:889.636500px;}
.yb{bottom:892.515000px;}
.ya4{bottom:910.336500px;}
.y85{bottom:910.875000px;}
.ya{bottom:913.215000px;}
.y33{bottom:920.775000px;}
.y64{bottom:931.395000px;}
.y84{bottom:931.575000px;}
.y9{bottom:933.915000px;}
.y63{bottom:952.095000px;}
.y83{bottom:952.275000px;}
.y8{bottom:954.615000px;}
.y62{bottom:972.795000px;}
.y82{bottom:972.975000px;}
.yc9{bottom:973.336500px;}
.y61{bottom:993.495000px;}
.y32{bottom:993.675000px;}
.yc8{bottom:994.036500px;}
.y31{bottom:1014.375000px;}
.yc7{bottom:1014.736500px;}
.y60{bottom:1035.075000px;}
.y81{bottom:1035.436500px;}
.y7{bottom:1035.975000px;}
.y5f{bottom:1055.775000px;}
.y30{bottom:1056.136500px;}
.y5e{bottom:1076.475000px;}
.y2f{bottom:1076.836500px;}
.y2e{bottom:1097.536500px;}
.y6{bottom:1117.875000px;}
.y2d{bottom:1118.236500px;}
.y2c{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.hb{height:24.375000px;}
.hd{height:25.200000px;}
.h3{height:32.700000px;}
.h6{height:44.933789px;}
.hc{height:45.075000px;}
.h7{height:45.825000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.he{height:50.747344px;}
.hf{height:50.753344px;}
.h9{height:65.775000px;}
.ha{height:66.600000px;}
.h8{height:86.475000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w7{width:151.875000px;}
.w8{width:180.900000px;}
.w3{width:202.875000px;}
.w9{width:210.825000px;}
.wb{width:234.675000px;}
.w4{width:245.925000px;}
.w5{width:253.650000px;}
.wa{width:254.700000px;}
.w6{width:399.225000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:1.800000px;}
.x4{left:11.760000px;}
.x8{left:73.830000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x7{left:136.980000px;}
.x10{left:156.960000px;}
.x2{left:160.560000px;}
.x6{left:246.420000px;}
.x5{left:303.300000px;}
.x9{left:329.400000px;}
.xe{left:339.600000px;}
.xc{left:527.250000px;}
.xb{left:577.500000px;}
.xf{left:596.475000px;}
.xd{left:681.300000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:34.554667pt;}
.ls3{letter-spacing:35.200000pt;}
.ls1{letter-spacing:89.571733pt;}
.ws6{word-spacing:-49.728000pt;}
.ws6d{word-spacing:-34.363733pt;}
.ws4{word-spacing:-34.361333pt;}
.ws97{word-spacing:-34.360800pt;}
.ws63{word-spacing:-34.360000pt;}
.ws95{word-spacing:-34.358400pt;}
.wsd4{word-spacing:-34.357600pt;}
.ws3{word-spacing:-34.356800pt;}
.ws76{word-spacing:-34.353600pt;}
.ws8e{word-spacing:-34.349600pt;}
.ws6a{word-spacing:-34.339200pt;}
.ws91{word-spacing:-34.174933pt;}
.ws51{word-spacing:-34.169600pt;}
.ws65{word-spacing:-34.169333pt;}
.ws71{word-spacing:-34.168533pt;}
.ws28{word-spacing:-34.168000pt;}
.ws2e{word-spacing:-34.166933pt;}
.ws72{word-spacing:-34.166400pt;}
.ws57{word-spacing:-34.164000pt;}
.wsd0{word-spacing:-34.160800pt;}
.ws42{word-spacing:-34.157867pt;}
.ws47{word-spacing:-33.925333pt;}
.ws64{word-spacing:-33.916800pt;}
.ws8b{word-spacing:-33.915200pt;}
.ws11{word-spacing:-33.914400pt;}
.ws33{word-spacing:-33.913600pt;}
.ws6b{word-spacing:-33.912000pt;}
.ws52{word-spacing:-33.911200pt;}
.ws3d{word-spacing:-33.910400pt;}
.ws55{word-spacing:-33.909600pt;}
.ws5e{word-spacing:-33.904000pt;}
.ws2{word-spacing:-33.850400pt;}
.ws0{word-spacing:-33.728000pt;}
.wsbd{word-spacing:-33.724800pt;}
.ws5f{word-spacing:-33.721067pt;}
.wsa5{word-spacing:-33.720800pt;}
.wsc{word-spacing:-33.720533pt;}
.ws6c{word-spacing:-33.720000pt;}
.ws5d{word-spacing:-33.717867pt;}
.wsab{word-spacing:-33.716267pt;}
.wsc5{word-spacing:-33.716000pt;}
.ws9d{word-spacing:-33.715733pt;}
.ws15{word-spacing:-33.715200pt;}
.ws98{word-spacing:-33.712000pt;}
.ws74{word-spacing:-33.710400pt;}
.ws77{word-spacing:-33.708800pt;}
.wsc8{word-spacing:-33.708000pt;}
.ws49{word-spacing:-33.539733pt;}
.ws9e{word-spacing:-33.535200pt;}
.wsa3{word-spacing:-33.534400pt;}
.ws69{word-spacing:-33.534133pt;}
.wsce{word-spacing:-33.531200pt;}
.wsc2{word-spacing:-33.530400pt;}
.ws6f{word-spacing:-33.518400pt;}
.wsc6{word-spacing:-33.457600pt;}
.ws8d{word-spacing:-33.276800pt;}
.ws9b{word-spacing:-33.268800pt;}
.ws35{word-spacing:-33.268000pt;}
.ws8c{word-spacing:-33.265600pt;}
.ws1d{word-spacing:-33.264000pt;}
.ws4f{word-spacing:-33.257067pt;}
.ws1e{word-spacing:-33.088000pt;}
.ws56{word-spacing:-33.086400pt;}
.wscc{word-spacing:-33.075200pt;}
.ws36{word-spacing:-33.072000pt;}
.ws44{word-spacing:-33.070400pt;}
.ws3f{word-spacing:-33.062400pt;}
.wsb5{word-spacing:-32.889600pt;}
.wsd1{word-spacing:-32.623200pt;}
.wsac{word-spacing:-32.453333pt;}
.wsd2{word-spacing:-32.448000pt;}
.ws4c{word-spacing:-32.438400pt;}
.ws58{word-spacing:-32.254933pt;}
.ws1c{word-spacing:-32.251200pt;}
.ws5{word-spacing:-32.000267pt;}
.ws86{word-spacing:-31.787200pt;}
.wsf{word-spacing:-31.606400pt;}
.ws32{word-spacing:-31.603200pt;}
.wsa8{word-spacing:-30.971733pt;}
.wsbe{word-spacing:-30.969600pt;}
.wse{word-spacing:-30.963200pt;}
.ws88{word-spacing:-30.957867pt;}
.ws22{word-spacing:-30.720000pt;}
.ws62{word-spacing:-30.707200pt;}
.ws61{word-spacing:-30.518400pt;}
.ws20{word-spacing:-30.338133pt;}
.ws21{word-spacing:-30.326400pt;}
.ws60{word-spacing:-30.323200pt;}
.ws30{word-spacing:-29.890133pt;}
.wscd{word-spacing:-29.887200pt;}
.ws96{word-spacing:-29.874667pt;}
.ws8{word-spacing:-29.691200pt;}
.ws92{word-spacing:-29.688533pt;}
.ws2b{word-spacing:-29.440000pt;}
.ws66{word-spacing:-29.425600pt;}
.ws5c{word-spacing:-29.049600pt;}
.wsc9{word-spacing:-28.607200pt;}
.wsb1{word-spacing:-28.603733pt;}
.wsb0{word-spacing:-28.603200pt;}
.ws26{word-spacing:-28.414400pt;}
.ws94{word-spacing:-28.396267pt;}
.ws84{word-spacing:-27.962133pt;}
.wsa{word-spacing:-27.756800pt;}
.ws4e{word-spacing:-27.508267pt;}
.ws14{word-spacing:-27.134933pt;}
.wsc1{word-spacing:-26.672533pt;}
.ws93{word-spacing:-26.489600pt;}
.wsa1{word-spacing:-26.488000pt;}
.ws7{word-spacing:-26.242133pt;}
.wsd3{word-spacing:-26.053333pt;}
.ws50{word-spacing:-26.034667pt;}
.wsb6{word-spacing:-24.752000pt;}
.ws9a{word-spacing:-24.571200pt;}
.ws3c{word-spacing:-24.123200pt;}
.ws2a{word-spacing:-24.120000pt;}
.wsb8{word-spacing:-23.482133pt;}
.ws4b{word-spacing:-23.475200pt;}
.wsb7{word-spacing:-22.838400pt;}
.ws29{word-spacing:-22.649600pt;}
.ws2d{word-spacing:-22.200000pt;}
.ws87{word-spacing:-21.760000pt;}
.wsba{word-spacing:-21.558400pt;}
.ws1b{word-spacing:-21.368533pt;}
.wsbf{word-spacing:-20.259200pt;}
.ws7c{word-spacing:-20.084000pt;}
.ws3a{word-spacing:-19.013333pt;}
.ws5a{word-spacing:-19.003200pt;}
.ws53{word-spacing:-18.995200pt;}
.wsc0{word-spacing:-18.351467pt;}
.wscf{word-spacing:-18.167200pt;}
.wsca{word-spacing:-17.727200pt;}
.ws27{word-spacing:-17.721600pt;}
.ws7b{word-spacing:-17.082133pt;}
.ws13{word-spacing:-16.438400pt;}
.wsa9{word-spacing:-16.436800pt;}
.ws12{word-spacing:-15.352800pt;}
.ws81{word-spacing:-15.162667pt;}
.ws80{word-spacing:-15.161600pt;}
.wsbc{word-spacing:-15.158400pt;}
.ws7f{word-spacing:-15.153867pt;}
.ws7a{word-spacing:-15.145600pt;}
.ws83{word-spacing:-14.974400pt;}
.ws7e{word-spacing:-14.960800pt;}
.ws82{word-spacing:-14.528000pt;}
.ws7d{word-spacing:-14.522133pt;}
.ws5b{word-spacing:-14.521600pt;}
.ws19{word-spacing:-14.324267pt;}
.ws23{word-spacing:-14.323200pt;}
.ws25{word-spacing:-13.888000pt;}
.wsaa{word-spacing:-13.878400pt;}
.ws70{word-spacing:-13.689600pt;}
.ws59{word-spacing:-13.684800pt;}
.wscb{word-spacing:-13.684000pt;}
.ws24{word-spacing:-13.681067pt;}
.ws3e{word-spacing:-13.240000pt;}
.ws75{word-spacing:-13.048000pt;}
.ws34{word-spacing:-13.043200pt;}
.ws31{word-spacing:-12.585600pt;}
.ws17{word-spacing:-12.155200pt;}
.ws9{word-spacing:-11.968000pt;}
.wsb9{word-spacing:-11.123200pt;}
.ws2c{word-spacing:-10.880000pt;}
.ws16{word-spacing:-10.489600pt;}
.wsb{word-spacing:-9.402933pt;}
.wsaf{word-spacing:-7.928533pt;}
.wsae{word-spacing:-7.926400pt;}
.wsad{word-spacing:-7.462400pt;}
.ws4d{word-spacing:-7.289600pt;}
.ws6e{word-spacing:-7.288533pt;}
.ws85{word-spacing:-6.827200pt;}
.ws10{word-spacing:-6.643200pt;}
.ws18{word-spacing:-5.113600pt;}
.ws54{word-spacing:-5.108800pt;}
.wsbb{word-spacing:-3.636800pt;}
.wsc3{word-spacing:-1.047467pt;}
.wsc7{word-spacing:-0.448000pt;}
.wsc4{word-spacing:-0.254933pt;}
.ws78{word-spacing:0.000000pt;}
.wsa6{word-spacing:0.841600pt;}
.ws40{word-spacing:2.120800pt;}
.ws68{word-spacing:2.569600pt;}
.ws67{word-spacing:4.225600pt;}
.ws1a{word-spacing:4.674400pt;}
.ws1f{word-spacing:4.681600pt;}
.ws2f{word-spacing:5.320533pt;}
.ws89{word-spacing:7.880800pt;}
.ws8a{word-spacing:8.332267pt;}
.wsb3{word-spacing:9.792000pt;}
.wsb2{word-spacing:10.254400pt;}
.wsb4{word-spacing:10.631200pt;}
.ws79{word-spacing:12.364800pt;}
.ws4a{word-spacing:12.813333pt;}
.ws46{word-spacing:20.888000pt;}
.ws73{word-spacing:22.604800pt;}
.ws9f{word-spacing:24.524000pt;}
.wsd{word-spacing:29.004800pt;}
.ws3b{word-spacing:34.315200pt;}
.ws8f{word-spacing:36.249600pt;}
.ws90{word-spacing:36.868800pt;}
.wsa4{word-spacing:41.989867pt;}
.ws99{word-spacing:41.998400pt;}
.ws48{word-spacing:44.814400pt;}
.ws39{word-spacing:53.516800pt;}
.ws43{word-spacing:53.964000pt;}
.ws37{word-spacing:56.073067pt;}
.ws38{word-spacing:57.350933pt;}
.wsa7{word-spacing:69.962400pt;}
.ws9c{word-spacing:70.596800pt;}
.wsa0{word-spacing:75.084000pt;}
.wsa2{word-spacing:88.075200pt;}
.ws45{word-spacing:125.631467pt;}
.ws41{word-spacing:297.984800pt;}
.ws1{word-spacing:922.208800pt;}
._2{margin-left:-0.948267pt;}
._0{width:0.956800pt;}
._3{width:14.715200pt;}
._1{width:16.860800pt;}
._19{width:17.766400pt;}
._12{width:18.669867pt;}
._a{width:19.703467pt;}
._5{width:21.294400pt;}
._15{width:22.324267pt;}
._7{width:23.468800pt;}
._4{width:24.516267pt;}
._24{width:26.035200pt;}
._14{width:27.000000pt;}
._17{width:28.719467pt;}
._11{width:29.632000pt;}
._1f{width:30.626667pt;}
._1c{width:31.798400pt;}
._13{width:33.331200pt;}
._c{width:34.925067pt;}
._f{width:36.480000pt;}
._16{width:37.955200pt;}
._6{width:38.848000pt;}
._d{width:40.314667pt;}
._8{width:41.273067pt;}
._22{width:42.749867pt;}
._b{width:44.032000pt;}
._e{width:45.815467pt;}
._25{width:47.348800pt;}
._26{width:49.938133pt;}
._21{width:51.584000pt;}
._1b{width:53.612267pt;}
._10{width:55.482667pt;}
._18{width:56.384000pt;}
._23{width:60.969067pt;}
._1e{width:63.017600pt;}
._27{width:65.280000pt;}
._1d{width:73.972267pt;}
._9{width:77.630933pt;}
._1a{width:85.100800pt;}
._20{width:87.226667pt;}
.fs2{font-size:42.933333pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:5.013333pt;}
.y44{bottom:5.066667pt;}
.y35{bottom:5.121333pt;}
.y79{bottom:5.133333pt;}
.y3b{bottom:5.173333pt;}
.y95{bottom:5.174667pt;}
.y80{bottom:5.746667pt;}
.y9d{bottom:5.800000pt;}
.y4d{bottom:5.908000pt;}
.y4{bottom:10.880000pt;}
.y99{bottom:14.293333pt;}
.y41{bottom:14.346667pt;}
.y36{bottom:14.400000pt;}
.y77{bottom:14.413333pt;}
.y3e{bottom:14.454667pt;}
.y9f{bottom:15.080000pt;}
.y4a{bottom:15.188000pt;}
.y94{bottom:23.413333pt;}
.y43{bottom:23.466667pt;}
.y34{bottom:23.521333pt;}
.y78{bottom:23.533333pt;}
.y39{bottom:23.574667pt;}
.y9b{bottom:24.200000pt;}
.y4c{bottom:24.306667pt;}
.y40{bottom:32.746667pt;}
.y46{bottom:32.800000pt;}
.y3d{bottom:32.854667pt;}
.y49{bottom:33.426667pt;}
.y9e{bottom:33.480000pt;}
.y42{bottom:41.866667pt;}
.y47{bottom:41.921333pt;}
.y38{bottom:41.973333pt;}
.y4b{bottom:42.546667pt;}
.y9c{bottom:42.600000pt;}
.y3c{bottom:51.093333pt;}
.y3{bottom:56.866667pt;}
.y3a{bottom:60.213333pt;}
.yc6{bottom:90.308000pt;}
.y75{bottom:106.308000pt;}
.yc5{bottom:108.708000pt;}
.ya3{bottom:110.626667pt;}
.y2b{bottom:111.266667pt;}
.yc4{bottom:127.108000pt;}
.ya2{bottom:129.026667pt;}
.y2a{bottom:129.666667pt;}
.y74{bottom:143.266667pt;}
.yc3{bottom:145.508000pt;}
.ya1{bottom:147.426667pt;}
.y29{bottom:148.066667pt;}
.y5d{bottom:152.226667pt;}
.y73{bottom:161.666667pt;}
.yc2{bottom:163.908000pt;}
.ya0{bottom:165.826667pt;}
.y28{bottom:166.466667pt;}
.y72{bottom:180.066667pt;}
.yc1{bottom:182.308000pt;}
.y27{bottom:184.866667pt;}
.y5c{bottom:189.346667pt;}
.yc0{bottom:200.706667pt;}
.y9a{bottom:201.466667pt;}
.y26{bottom:203.266667pt;}
.y5b{bottom:207.746667pt;}
.y71{bottom:217.188000pt;}
.ybf{bottom:219.108000pt;}
.y5a{bottom:226.146667pt;}
.y70{bottom:235.588000pt;}
.ybe{bottom:237.508000pt;}
.y25{bottom:240.226667pt;}
.y59{bottom:244.546667pt;}
.y6f{bottom:253.988000pt;}
.ybd{bottom:255.908000pt;}
.y24{bottom:258.626667pt;}
.y98{bottom:262.733333pt;}
.y6e{bottom:272.388000pt;}
.ybc{bottom:274.308000pt;}
.y23{bottom:277.026667pt;}
.y58{bottom:281.666667pt;}
.y6d{bottom:290.788000pt;}
.ybb{bottom:292.706667pt;}
.y22{bottom:295.426667pt;}
.y97{bottom:304.866667pt;}
.yba{bottom:311.108000pt;}
.y21{bottom:313.826667pt;}
.y57{bottom:318.626667pt;}
.y6c{bottom:327.908000pt;}
.yb9{bottom:329.508000pt;}
.y20{bottom:332.226667pt;}
.y56{bottom:337.026667pt;}
.yb8{bottom:347.908000pt;}
.y1f{bottom:350.626667pt;}
.y55{bottom:355.426667pt;}
.y6b{bottom:364.866667pt;}
.y96{bottom:365.400000pt;}
.yb7{bottom:384.866667pt;}
.y1e{bottom:387.746667pt;}
.y54{bottom:392.546667pt;}
.y6a{bottom:401.988000pt;}
.y1d{bottom:406.146667pt;}
.y69{bottom:420.388000pt;}
.yb6{bottom:421.988000pt;}
.y1c{bottom:424.546667pt;}
.y93{bottom:425.933333pt;}
.y53{bottom:429.666667pt;}
.y68{bottom:438.788000pt;}
.yb5{bottom:440.388000pt;}
.y1b{bottom:442.946667pt;}
.y52{bottom:448.066667pt;}
.y67{bottom:457.188000pt;}
.yb4{bottom:458.788000pt;}
.y1a{bottom:461.346667pt;}
.y51{bottom:466.466667pt;}
.y92{bottom:468.066667pt;}
.y19{bottom:479.746667pt;}
.y50{bottom:484.866667pt;}
.y66{bottom:494.308000pt;}
.yb3{bottom:495.908000pt;}
.y18{bottom:498.146667pt;}
.y4f{bottom:503.266667pt;}
.yb2{bottom:514.308000pt;}
.y17{bottom:516.546667pt;}
.y4e{bottom:521.666667pt;}
.y65{bottom:531.266667pt;}
.yb1{bottom:532.706667pt;}
.y91{bottom:532.866667pt;}
.yb0{bottom:551.108000pt;}
.y90{bottom:551.266667pt;}
.y16{bottom:553.666667pt;}
.y48{bottom:557.200000pt;}
.yaf{bottom:569.506667pt;}
.y7f{bottom:571.600000pt;}
.y8f{bottom:588.388000pt;}
.y15{bottom:590.626667pt;}
.y7e{bottom:596.066667pt;}
.yae{bottom:606.466667pt;}
.y8e{bottom:606.788000pt;}
.y14{bottom:609.026667pt;}
.y45{bottom:618.466667pt;}
.yad{bottom:624.866667pt;}
.y8d{bottom:625.188000pt;}
.y13{bottom:627.426667pt;}
.y7d{bottom:638.200000pt;}
.yac{bottom:643.266667pt;}
.y8c{bottom:643.588000pt;}
.yab{bottom:661.666667pt;}
.y12{bottom:664.546667pt;}
.y3f{bottom:679.000000pt;}
.yaa{bottom:680.066667pt;}
.y7b{bottom:680.333333pt;}
.y8b{bottom:680.706667pt;}
.y11{bottom:682.946667pt;}
.y8a{bottom:698.946667pt;}
.y10{bottom:701.346667pt;}
.y7a{bottom:704.066667pt;}
.ya9{bottom:717.188000pt;}
.y89{bottom:717.506667pt;}
.yf{bottom:719.746667pt;}
.y76{bottom:727.733333pt;}
.ya8{bottom:735.588000pt;}
.y88{bottom:735.746667pt;}
.ye{bottom:738.146667pt;}
.y37{bottom:739.533333pt;}
.ya7{bottom:753.988000pt;}
.y87{bottom:754.308000pt;}
.yd{bottom:756.546667pt;}
.ya6{bottom:772.388000pt;}
.y86{bottom:772.546667pt;}
.yc{bottom:774.946667pt;}
.ya5{bottom:790.788000pt;}
.yb{bottom:793.346667pt;}
.ya4{bottom:809.188000pt;}
.y85{bottom:809.666667pt;}
.ya{bottom:811.746667pt;}
.y33{bottom:818.466667pt;}
.y64{bottom:827.906667pt;}
.y84{bottom:828.066667pt;}
.y9{bottom:830.146667pt;}
.y63{bottom:846.306667pt;}
.y83{bottom:846.466667pt;}
.y8{bottom:848.546667pt;}
.y62{bottom:864.706667pt;}
.y82{bottom:864.866667pt;}
.yc9{bottom:865.188000pt;}
.y61{bottom:883.106667pt;}
.y32{bottom:883.266667pt;}
.yc8{bottom:883.588000pt;}
.y31{bottom:901.666667pt;}
.yc7{bottom:901.988000pt;}
.y60{bottom:920.066667pt;}
.y81{bottom:920.388000pt;}
.y7{bottom:920.866667pt;}
.y5f{bottom:938.466667pt;}
.y30{bottom:938.788000pt;}
.y5e{bottom:956.866667pt;}
.y2f{bottom:957.188000pt;}
.y2e{bottom:975.588000pt;}
.y6{bottom:993.666667pt;}
.y2d{bottom:993.988000pt;}
.y2c{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.hb{height:21.666667pt;}
.hd{height:22.400000pt;}
.h3{height:29.066667pt;}
.h6{height:39.941146pt;}
.hc{height:40.066667pt;}
.h7{height:40.733333pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.he{height:45.108750pt;}
.hf{height:45.114083pt;}
.h9{height:58.466667pt;}
.ha{height:59.200000pt;}
.h8{height:76.866667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w7{width:135.000000pt;}
.w8{width:160.800000pt;}
.w3{width:180.333333pt;}
.w9{width:187.400000pt;}
.wb{width:208.600000pt;}
.w4{width:218.600000pt;}
.w5{width:225.466667pt;}
.wa{width:226.400000pt;}
.w6{width:354.866667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:1.600000pt;}
.x4{left:10.453333pt;}
.x8{left:65.626667pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x7{left:121.760000pt;}
.x10{left:139.520000pt;}
.x2{left:142.720000pt;}
.x6{left:219.040000pt;}
.x5{left:269.600000pt;}
.x9{left:292.800000pt;}
.xe{left:301.866667pt;}
.xc{left:468.666667pt;}
.xb{left:513.333333pt;}
.xf{left:530.200000pt;}
.xd{left:605.600000pt;}
}




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