
    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_467fe12f7d65df265c7c9973.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_f50521828cb747625c75759f.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_5771318ea28a04087e9d6c17.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;}
}
.ws23{word-spacing:-55.944000px;}
.ws62{word-spacing:-38.660400px;}
.ws4{word-spacing:-38.654100px;}
.ws9d{word-spacing:-38.653200px;}
.ws9f{word-spacing:-38.618400px;}
.ws64{word-spacing:-38.526000px;}
.ws5b{word-spacing:-38.520000px;}
.ws6{word-spacing:-38.360700px;}
.wsab{word-spacing:-38.166000px;}
.wsa7{word-spacing:-38.160000px;}
.ws6c{word-spacing:-38.148300px;}
.ws65{word-spacing:-38.088000px;}
.ws2{word-spacing:-38.081700px;}
.ws5{word-spacing:-38.078100px;}
.ws9b{word-spacing:-37.948200px;}
.ws6b{word-spacing:-37.946400px;}
.ws0{word-spacing:-37.944000px;}
.wsa8{word-spacing:-37.942200px;}
.wsa2{word-spacing:-37.940100px;}
.ws3c{word-spacing:-37.939200px;}
.ws3{word-spacing:-37.935900px;}
.ws1e{word-spacing:-37.933200px;}
.wsa1{word-spacing:-37.922400px;}
.ws57{word-spacing:-37.909800px;}
.ws63{word-spacing:-37.721700px;}
.ws5c{word-spacing:-37.720800px;}
.ws5d{word-spacing:-37.656000px;}
.wsad{word-spacing:-37.446000px;}
.ws77{word-spacing:-37.430100px;}
.ws9c{word-spacing:-37.349100px;}
.ws18{word-spacing:-37.217400px;}
.ws76{word-spacing:-37.206000px;}
.ws46{word-spacing:-36.720000px;}
.ws1d{word-spacing:-36.716400px;}
.ws1a{word-spacing:-36.508200px;}
.ws35{word-spacing:-35.786400px;}
.wsc{word-spacing:-35.771400px;}
.wse{word-spacing:-35.769600px;}
.wsa6{word-spacing:-35.283300px;}
.ws41{word-spacing:-35.051400px;}
.ws73{word-spacing:-34.344000px;}
.ws8d{word-spacing:-34.336800px;}
.ws40{word-spacing:-34.335600px;}
.ws92{word-spacing:-34.333200px;}
.ws7f{word-spacing:-34.122600px;}
.ws17{word-spacing:-33.538200px;}
.ws70{word-spacing:-32.904000px;}
.ws9e{word-spacing:-32.893200px;}
.ws91{word-spacing:-32.891400px;}
.wsa9{word-spacing:-32.400000px;}
.ws71{word-spacing:-32.394000px;}
.ws8b{word-spacing:-32.380200px;}
.ws98{word-spacing:-32.179200px;}
.ws8f{word-spacing:-32.173200px;}
.ws25{word-spacing:-31.454100px;}
.ws93{word-spacing:-30.733200px;}
.ws4f{word-spacing:-30.726000px;}
.ws5e{word-spacing:-30.717000px;}
.ws59{word-spacing:-30.030000px;}
.wsb{word-spacing:-30.005400px;}
.ws51{word-spacing:-29.797200px;}
.ws58{word-spacing:-29.304000px;}
.ws72{word-spacing:-28.569600px;}
.wsaa{word-spacing:-27.869100px;}
.ws39{word-spacing:-27.858600px;}
.ws89{word-spacing:-27.849600px;}
.ws47{word-spacing:-27.354000px;}
.ws85{word-spacing:-27.144000px;}
.ws88{word-spacing:-27.134100px;}
.ws8e{word-spacing:-27.131400px;}
.wsa4{word-spacing:-26.634000px;}
.ws6a{word-spacing:-26.616600px;}
.ws38{word-spacing:-26.413800px;}
.ws34{word-spacing:-26.413200px;}
.ws69{word-spacing:-26.406000px;}
.ws60{word-spacing:-25.920000px;}
.ws3a{word-spacing:-25.905600px;}
.ws8c{word-spacing:-25.710000px;}
.ws7e{word-spacing:-25.691400px;}
.ws33{word-spacing:-25.689600px;}
.ws3d{word-spacing:-25.206000px;}
.ws19{word-spacing:-25.196400px;}
.wsa3{word-spacing:-24.982200px;}
.ws84{word-spacing:-24.256800px;}
.ws2e{word-spacing:-24.181200px;}
.wsa{word-spacing:-24.033600px;}
.ws7c{word-spacing:-24.028200px;}
.ws24{word-spacing:-23.881800px;}
.ws3f{word-spacing:-23.757000px;}
.ws37{word-spacing:-23.743800px;}
.ws94{word-spacing:-23.540100px;}
.ws4c{word-spacing:-23.535000px;}
.ws54{word-spacing:-23.526000px;}
.ws36{word-spacing:-23.313600px;}
.ws15{word-spacing:-22.300200px;}
.ws16{word-spacing:-22.096800px;}
.ws68{word-spacing:-21.375000px;}
.ws66{word-spacing:-20.436600px;}
.ws86{word-spacing:-19.224600px;}
.ws43{word-spacing:-19.216800px;}
.ws82{word-spacing:-18.999000px;}
.ws74{word-spacing:-18.504000px;}
.ws7b{word-spacing:-18.501300px;}
.ws7a{word-spacing:-18.494100px;}
.ws3b{word-spacing:-17.994000px;}
.ws90{word-spacing:-17.773200px;}
.ws9{word-spacing:-16.560000px;}
.wsa5{word-spacing:-16.556400px;}
.ws30{word-spacing:-16.546500px;}
.ws5f{word-spacing:-16.344000px;}
.ws48{word-spacing:-15.842400px;}
.ws2f{word-spacing:-15.834000px;}
.ws75{word-spacing:-15.618300px;}
.ws56{word-spacing:-14.860800px;}
.ws44{word-spacing:-14.400000px;}
.ws80{word-spacing:-13.959000px;}
.ws21{word-spacing:-12.938400px;}
.ws20{word-spacing:-12.234000px;}
.ws1b{word-spacing:-12.013200px;}
.ws9a{word-spacing:-12.009600px;}
.ws29{word-spacing:-12.003300px;}
.ws8{word-spacing:-11.293200px;}
.ws2d{word-spacing:-10.793700px;}
.ws7{word-spacing:-10.787100px;}
.ws10{word-spacing:-10.583100px;}
.ws53{word-spacing:-10.070400px;}
.ws2a{word-spacing:-10.008000px;}
.ws99{word-spacing:-9.861300px;}
.wsac{word-spacing:-9.144000px;}
.ws52{word-spacing:-8.914800px;}
.ws96{word-spacing:-8.417400px;}
.wsd{word-spacing:-6.451200px;}
.wsa0{word-spacing:-5.541900px;}
.ws67{word-spacing:-5.525100px;}
.ws50{word-spacing:-3.600000px;}
.ws27{word-spacing:-3.384000px;}
.ws61{word-spacing:-3.380400px;}
.ws12{word-spacing:-0.720000px;}
.ws13{word-spacing:-0.489600px;}
.ws6f{word-spacing:0.000000px;}
.ws3e{word-spacing:0.950400px;}
.wsf{word-spacing:1.668600px;}
.ws55{word-spacing:2.397000px;}
.ws87{word-spacing:4.536000px;}
.ws1c{word-spacing:5.043600px;}
.ws7d{word-spacing:5.265900px;}
.ws4a{word-spacing:5.996400px;}
.ws49{word-spacing:6.929100px;}
.ws6e{word-spacing:6.998400px;}
.ws8a{word-spacing:11.025900px;}
.ws83{word-spacing:13.905000px;}
.ws5a{word-spacing:17.496000px;}
.ws26{word-spacing:17.722500px;}
.ws4e{word-spacing:18.720000px;}
.ws79{word-spacing:26.440200px;}
.ws95{word-spacing:26.856000px;}
.ws28{word-spacing:27.235500px;}
.ws2b{word-spacing:28.296000px;}
.ws31{word-spacing:28.818900px;}
.ws81{word-spacing:33.488400px;}
.ws4b{word-spacing:35.508600px;}
.ws2c{word-spacing:36.306000px;}
.ws97{word-spacing:36.959400px;}
.ws45{word-spacing:41.265000px;}
.ws6d{word-spacing:47.316600px;}
.ws4d{word-spacing:65.250900px;}
.ws22{word-spacing:71.292600px;}
.ws14{word-spacing:73.660800px;}
.ws78{word-spacing:90.450000px;}
.ws42{word-spacing:342.950400px;}
.ws11{word-spacing:607.683000px;}
.ws32{word-spacing:723.619800px;}
.ws1{word-spacing:1037.484900px;}
.ws1f{word-spacing:2195.004600px;}
._f{margin-left:-2.233800px;}
._2{margin-left:-1.210500px;}
._0{width:1.076400px;}
._1{width:18.968400px;}
._29{width:20.099100px;}
._7{width:21.212400px;}
._2b{width:22.234500px;}
._c{width:23.544000px;}
._27{width:24.624000px;}
._28{width:25.915200px;}
._6{width:27.144000px;}
._1a{width:29.360100px;}
._19{width:30.532500px;}
._d{width:32.462400px;}
._18{width:33.892800px;}
._b{width:35.098200px;}
._3{width:37.070100px;}
._1d{width:38.097900px;}
._1b{width:40.109400px;}
._5{width:41.256000px;}
._1e{width:42.921000px;}
._10{width:44.018400px;}
._4{width:45.969900px;}
._15{width:47.095200px;}
._22{width:48.105600px;}
._8{width:51.387300px;}
._13{width:53.928000px;}
._1c{width:58.098000px;}
._9{width:59.594400px;}
._25{width:61.485600px;}
._e{width:62.852400px;}
._26{width:68.678100px;}
._24{width:70.900200px;}
._12{width:74.880000px;}
._21{width:75.882000px;}
._2a{width:82.800000px;}
._14{width:84.224100px;}
._16{width:85.248000px;}
._23{width:90.567600px;}
._17{width:93.504000px;}
._1f{width:95.949000px;}
._20{width:122.688000px;}
._11{width:128.363400px;}
._a{width:131.323200px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(15,17,21);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y81{bottom:15.090000px;}
.y57{bottom:15.150000px;}
.y88{bottom:15.165000px;}
.y73{bottom:15.211500px;}
.y5b{bottom:15.225000px;}
.y7a{bottom:15.286500px;}
.y71{bottom:25.470000px;}
.y59{bottom:25.486500px;}
.y7f{bottom:25.530000px;}
.y7b{bottom:25.546500px;}
.y55{bottom:25.590000px;}
.y66{bottom:25.771500px;}
.y72{bottom:35.730000px;}
.y5a{bottom:35.745000px;}
.y80{bottom:35.790000px;}
.y79{bottom:35.805000px;}
.y56{bottom:35.850000px;}
.y87{bottom:35.865000px;}
.y76{bottom:35.911500px;}
.y67{bottom:36.030000px;}
.y65{bottom:46.290000px;}
.y75{bottom:56.430000px;}
.y83{bottom:56.490000px;}
.y86{bottom:56.565000px;}
.y3{bottom:63.975000px;}
.y28{bottom:106.815000px;}
.y78{bottom:118.350000px;}
.ya5{bottom:119.955000px;}
.y54{bottom:127.125000px;}
.y27{bottom:127.515000px;}
.ya4{bottom:140.655000px;}
.y26{bottom:148.215000px;}
.ya3{bottom:161.175000px;}
.y25{bottom:168.915000px;}
.ya2{bottom:181.875000px;}
.y77{bottom:182.325000px;}
.y24{bottom:189.615000px;}
.ya1{bottom:202.575000px;}
.y23{bottom:210.315000px;}
.y53{bottom:213.015000px;}
.ya0{bottom:223.275000px;}
.y22{bottom:231.015000px;}
.y52{bottom:233.715000px;}
.y9f{bottom:243.975000px;}
.y74{bottom:246.225000px;}
.y21{bottom:251.715000px;}
.y51{bottom:254.236500px;}
.y9e{bottom:264.675000px;}
.y50{bottom:274.936500px;}
.y9d{bottom:285.375000px;}
.y4f{bottom:295.636500px;}
.y9c{bottom:306.075000px;}
.y20{bottom:311.115000px;}
.y4e{bottom:316.336500px;}
.y9b{bottom:326.775000px;}
.y70{bottom:330.825000px;}
.y1f{bottom:331.815000px;}
.y4d{bottom:337.036500px;}
.y9a{bottom:347.475000px;}
.y4c{bottom:357.736500px;}
.y99{bottom:368.175000px;}
.y4b{bottom:378.436500px;}
.y98{bottom:388.875000px;}
.y1e{bottom:391.215000px;}
.y4a{bottom:399.136500px;}
.y97{bottom:409.575000px;}
.y1d{bottom:411.915000px;}
.y6f{bottom:419.475000px;}
.y49{bottom:419.836500px;}
.y96{bottom:430.275000px;}
.y1c{bottom:432.615000px;}
.y6e{bottom:440.175000px;}
.y48{bottom:440.536500px;}
.y95{bottom:450.975000px;}
.y1b{bottom:453.315000px;}
.yc0{bottom:458.175000px;}
.y6d{bottom:460.875000px;}
.y47{bottom:461.236500px;}
.y94{bottom:471.675000px;}
.y1a{bottom:474.015000px;}
.ybf{bottom:478.875000px;}
.y6c{bottom:481.575000px;}
.y46{bottom:481.936500px;}
.y93{bottom:492.375000px;}
.y19{bottom:494.715000px;}
.ybe{bottom:499.575000px;}
.y6b{bottom:502.275000px;}
.y45{bottom:502.636500px;}
.y92{bottom:513.075000px;}
.y18{bottom:515.415000px;}
.ybd{bottom:520.275000px;}
.y44{bottom:523.336500px;}
.y91{bottom:533.775000px;}
.y17{bottom:536.115000px;}
.y6a{bottom:540.150000px;}
.ybc{bottom:540.975000px;}
.y43{bottom:544.036500px;}
.y90{bottom:554.475000px;}
.y16{bottom:556.815000px;}
.ybb{bottom:561.675000px;}
.y42{bottom:564.736500px;}
.y8f{bottom:575.175000px;}
.y15{bottom:577.515000px;}
.yba{bottom:582.375000px;}
.y69{bottom:583.425000px;}
.y41{bottom:585.436500px;}
.y8e{bottom:595.875000px;}
.yb9{bottom:603.075000px;}
.y40{bottom:606.136500px;}
.y8d{bottom:616.575000px;}
.yb8{bottom:623.775000px;}
.y3f{bottom:626.836500px;}
.y14{bottom:636.915000px;}
.y8c{bottom:637.275000px;}
.yb7{bottom:644.475000px;}
.y68{bottom:647.325000px;}
.y3e{bottom:647.536500px;}
.y13{bottom:657.615000px;}
.y8b{bottom:657.975000px;}
.yb6{bottom:665.175000px;}
.y3d{bottom:668.236500px;}
.y8a{bottom:678.675000px;}
.yb5{bottom:685.875000px;}
.y3c{bottom:688.936500px;}
.y89{bottom:699.375000px;}
.yb4{bottom:706.575000px;}
.y3b{bottom:709.636500px;}
.y64{bottom:711.225000px;}
.y12{bottom:717.015000px;}
.yb3{bottom:727.275000px;}
.y3a{bottom:730.336500px;}
.y85{bottom:734.250000px;}
.y11{bottom:737.715000px;}
.yb2{bottom:747.975000px;}
.y39{bottom:751.036500px;}
.y10{bottom:758.415000px;}
.yb1{bottom:768.675000px;}
.y38{bottom:771.736500px;}
.yf{bottom:779.115000px;}
.yb0{bottom:789.375000px;}
.y37{bottom:792.436500px;}
.ye{bottom:799.815000px;}
.yaf{bottom:810.075000px;}
.y36{bottom:813.136500px;}
.y84{bottom:818.925000px;}
.yd{bottom:820.515000px;}
.y63{bottom:820.875000px;}
.yae{bottom:830.775000px;}
.y35{bottom:833.836500px;}
.yc{bottom:841.215000px;}
.y62{bottom:841.575000px;}
.yad{bottom:851.475000px;}
.y34{bottom:854.536500px;}
.yb{bottom:861.915000px;}
.y61{bottom:862.275000px;}
.yac{bottom:872.175000px;}
.y33{bottom:875.236500px;}
.ya{bottom:882.615000px;}
.y82{bottom:882.825000px;}
.y60{bottom:882.975000px;}
.yab{bottom:892.875000px;}
.y32{bottom:895.936500px;}
.y9{bottom:903.315000px;}
.y5f{bottom:903.675000px;}
.y31{bottom:916.636500px;}
.yaa{bottom:934.636500px;}
.y30{bottom:937.336500px;}
.y5e{bottom:941.550000px;}
.y7e{bottom:967.425000px;}
.ya9{bottom:973.336500px;}
.y8{bottom:980.715000px;}
.y5d{bottom:984.825000px;}
.ya8{bottom:994.036500px;}
.y2f{bottom:996.736500px;}
.y7{bottom:1001.415000px;}
.ya7{bottom:1014.736500px;}
.y2e{bottom:1017.436500px;}
.ya6{bottom:1035.436500px;}
.y2d{bottom:1038.136500px;}
.y5c{bottom:1048.725000px;}
.y7d{bottom:1056.136500px;}
.y7c{bottom:1076.836500px;}
.y2c{bottom:1097.536500px;}
.y6{bottom:1102.936500px;}
.y58{bottom:1112.550000px;}
.y2b{bottom:1118.236500px;}
.y2a{bottom:1138.936500px;}
.y5{bottom:1141.636500px;}
.y29{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h8{height:43.200000px;}
.h2{height:48.796875px;}
.h4{height:48.972656px;}
.h5{height:50.027344px;}
.h7{height:63.825000px;}
.h6{height:63.900000px;}
.ha{height:84.525000px;}
.hb{height:84.600000px;}
.h9{height:84.825000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w9{width:140.775000px;}
.w11{width:140.850000px;}
.wd{width:141.075000px;}
.w5{width:167.700000px;}
.wc{width:182.025000px;}
.w10{width:182.250000px;}
.w8{width:183.900000px;}
.w4{width:214.350000px;}
.w3{width:216.900000px;}
.wb{width:228.300000px;}
.wf{width:228.450000px;}
.w7{width:229.950000px;}
.w6{width:239.700000px;}
.we{width:242.775000px;}
.wa{width:242.925000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x8{left:53.175000px;}
.x9{left:71.925000px;}
.xb{left:90.000000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x13{left:129.600000px;}
.x2{left:160.560000px;}
.x6{left:163.260000px;}
.x7{left:220.860000px;}
.xa{left:270.000000px;}
.xe{left:292.800000px;}
.x11{left:296.025000px;}
.x5{left:358.560000px;}
.xc{left:484.275000px;}
.xf{left:522.675000px;}
.x12{left:524.250000px;}
.xd{left:651.900000px;}
.x10{left:706.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws23{word-spacing:-49.728000pt;}
.ws62{word-spacing:-34.364800pt;}
.ws4{word-spacing:-34.359200pt;}
.ws9d{word-spacing:-34.358400pt;}
.ws9f{word-spacing:-34.327467pt;}
.ws64{word-spacing:-34.245333pt;}
.ws5b{word-spacing:-34.240000pt;}
.ws6{word-spacing:-34.098400pt;}
.wsab{word-spacing:-33.925333pt;}
.wsa7{word-spacing:-33.920000pt;}
.ws6c{word-spacing:-33.909600pt;}
.ws65{word-spacing:-33.856000pt;}
.ws2{word-spacing:-33.850400pt;}
.ws5{word-spacing:-33.847200pt;}
.ws9b{word-spacing:-33.731733pt;}
.ws6b{word-spacing:-33.730133pt;}
.ws0{word-spacing:-33.728000pt;}
.wsa8{word-spacing:-33.726400pt;}
.wsa2{word-spacing:-33.724533pt;}
.ws3c{word-spacing:-33.723733pt;}
.ws3{word-spacing:-33.720800pt;}
.ws1e{word-spacing:-33.718400pt;}
.wsa1{word-spacing:-33.708800pt;}
.ws57{word-spacing:-33.697600pt;}
.ws63{word-spacing:-33.530400pt;}
.ws5c{word-spacing:-33.529600pt;}
.ws5d{word-spacing:-33.472000pt;}
.wsad{word-spacing:-33.285333pt;}
.ws77{word-spacing:-33.271200pt;}
.ws9c{word-spacing:-33.199200pt;}
.ws18{word-spacing:-33.082133pt;}
.ws76{word-spacing:-33.072000pt;}
.ws46{word-spacing:-32.640000pt;}
.ws1d{word-spacing:-32.636800pt;}
.ws1a{word-spacing:-32.451733pt;}
.ws35{word-spacing:-31.810133pt;}
.wsc{word-spacing:-31.796800pt;}
.wse{word-spacing:-31.795200pt;}
.wsa6{word-spacing:-31.362933pt;}
.ws41{word-spacing:-31.156800pt;}
.ws73{word-spacing:-30.528000pt;}
.ws8d{word-spacing:-30.521600pt;}
.ws40{word-spacing:-30.520533pt;}
.ws92{word-spacing:-30.518400pt;}
.ws7f{word-spacing:-30.331200pt;}
.ws17{word-spacing:-29.811733pt;}
.ws70{word-spacing:-29.248000pt;}
.ws9e{word-spacing:-29.238400pt;}
.ws91{word-spacing:-29.236800pt;}
.wsa9{word-spacing:-28.800000pt;}
.ws71{word-spacing:-28.794667pt;}
.ws8b{word-spacing:-28.782400pt;}
.ws98{word-spacing:-28.603733pt;}
.ws8f{word-spacing:-28.598400pt;}
.ws25{word-spacing:-27.959200pt;}
.ws93{word-spacing:-27.318400pt;}
.ws4f{word-spacing:-27.312000pt;}
.ws5e{word-spacing:-27.304000pt;}
.ws59{word-spacing:-26.693333pt;}
.wsb{word-spacing:-26.671467pt;}
.ws51{word-spacing:-26.486400pt;}
.ws58{word-spacing:-26.048000pt;}
.ws72{word-spacing:-25.395200pt;}
.wsaa{word-spacing:-24.772533pt;}
.ws39{word-spacing:-24.763200pt;}
.ws89{word-spacing:-24.755200pt;}
.ws47{word-spacing:-24.314667pt;}
.ws85{word-spacing:-24.128000pt;}
.ws88{word-spacing:-24.119200pt;}
.ws8e{word-spacing:-24.116800pt;}
.wsa4{word-spacing:-23.674667pt;}
.ws6a{word-spacing:-23.659200pt;}
.ws38{word-spacing:-23.478933pt;}
.ws34{word-spacing:-23.478400pt;}
.ws69{word-spacing:-23.472000pt;}
.ws60{word-spacing:-23.040000pt;}
.ws3a{word-spacing:-23.027200pt;}
.ws8c{word-spacing:-22.853333pt;}
.ws7e{word-spacing:-22.836800pt;}
.ws33{word-spacing:-22.835200pt;}
.ws3d{word-spacing:-22.405333pt;}
.ws19{word-spacing:-22.396800pt;}
.wsa3{word-spacing:-22.206400pt;}
.ws84{word-spacing:-21.561600pt;}
.ws2e{word-spacing:-21.494400pt;}
.wsa{word-spacing:-21.363200pt;}
.ws7c{word-spacing:-21.358400pt;}
.ws24{word-spacing:-21.228267pt;}
.ws3f{word-spacing:-21.117333pt;}
.ws37{word-spacing:-21.105600pt;}
.ws94{word-spacing:-20.924533pt;}
.ws4c{word-spacing:-20.920000pt;}
.ws54{word-spacing:-20.912000pt;}
.ws36{word-spacing:-20.723200pt;}
.ws15{word-spacing:-19.822400pt;}
.ws16{word-spacing:-19.641600pt;}
.ws68{word-spacing:-19.000000pt;}
.ws66{word-spacing:-18.165867pt;}
.ws86{word-spacing:-17.088533pt;}
.ws43{word-spacing:-17.081600pt;}
.ws82{word-spacing:-16.888000pt;}
.ws74{word-spacing:-16.448000pt;}
.ws7b{word-spacing:-16.445600pt;}
.ws7a{word-spacing:-16.439200pt;}
.ws3b{word-spacing:-15.994667pt;}
.ws90{word-spacing:-15.798400pt;}
.ws9{word-spacing:-14.720000pt;}
.wsa5{word-spacing:-14.716800pt;}
.ws30{word-spacing:-14.708000pt;}
.ws5f{word-spacing:-14.528000pt;}
.ws48{word-spacing:-14.082133pt;}
.ws2f{word-spacing:-14.074667pt;}
.ws75{word-spacing:-13.882933pt;}
.ws56{word-spacing:-13.209600pt;}
.ws44{word-spacing:-12.800000pt;}
.ws80{word-spacing:-12.408000pt;}
.ws21{word-spacing:-11.500800pt;}
.ws20{word-spacing:-10.874667pt;}
.ws1b{word-spacing:-10.678400pt;}
.ws9a{word-spacing:-10.675200pt;}
.ws29{word-spacing:-10.669600pt;}
.ws8{word-spacing:-10.038400pt;}
.ws2d{word-spacing:-9.594400pt;}
.ws7{word-spacing:-9.588533pt;}
.ws10{word-spacing:-9.407200pt;}
.ws53{word-spacing:-8.951467pt;}
.ws2a{word-spacing:-8.896000pt;}
.ws99{word-spacing:-8.765600pt;}
.wsac{word-spacing:-8.128000pt;}
.ws52{word-spacing:-7.924267pt;}
.ws96{word-spacing:-7.482133pt;}
.wsd{word-spacing:-5.734400pt;}
.wsa0{word-spacing:-4.926133pt;}
.ws67{word-spacing:-4.911200pt;}
.ws50{word-spacing:-3.200000pt;}
.ws27{word-spacing:-3.008000pt;}
.ws61{word-spacing:-3.004800pt;}
.ws12{word-spacing:-0.640000pt;}
.ws13{word-spacing:-0.435200pt;}
.ws6f{word-spacing:0.000000pt;}
.ws3e{word-spacing:0.844800pt;}
.wsf{word-spacing:1.483200pt;}
.ws55{word-spacing:2.130667pt;}
.ws87{word-spacing:4.032000pt;}
.ws1c{word-spacing:4.483200pt;}
.ws7d{word-spacing:4.680800pt;}
.ws4a{word-spacing:5.330133pt;}
.ws49{word-spacing:6.159200pt;}
.ws6e{word-spacing:6.220800pt;}
.ws8a{word-spacing:9.800800pt;}
.ws83{word-spacing:12.360000pt;}
.ws5a{word-spacing:15.552000pt;}
.ws26{word-spacing:15.753333pt;}
.ws4e{word-spacing:16.640000pt;}
.ws79{word-spacing:23.502400pt;}
.ws95{word-spacing:23.872000pt;}
.ws28{word-spacing:24.209333pt;}
.ws2b{word-spacing:25.152000pt;}
.ws31{word-spacing:25.616800pt;}
.ws81{word-spacing:29.767467pt;}
.ws4b{word-spacing:31.563200pt;}
.ws2c{word-spacing:32.272000pt;}
.ws97{word-spacing:32.852800pt;}
.ws45{word-spacing:36.680000pt;}
.ws6d{word-spacing:42.059200pt;}
.ws4d{word-spacing:58.000800pt;}
.ws22{word-spacing:63.371200pt;}
.ws14{word-spacing:65.476267pt;}
.ws78{word-spacing:80.400000pt;}
.ws42{word-spacing:304.844800pt;}
.ws11{word-spacing:540.162667pt;}
.ws32{word-spacing:643.217600pt;}
.ws1{word-spacing:922.208800pt;}
.ws1f{word-spacing:1951.115200pt;}
._f{margin-left:-1.985600pt;}
._2{margin-left:-1.076000pt;}
._0{width:0.956800pt;}
._1{width:16.860800pt;}
._29{width:17.865867pt;}
._7{width:18.855467pt;}
._2b{width:19.764000pt;}
._c{width:20.928000pt;}
._27{width:21.888000pt;}
._28{width:23.035733pt;}
._6{width:24.128000pt;}
._1a{width:26.097867pt;}
._19{width:27.140000pt;}
._d{width:28.855467pt;}
._18{width:30.126933pt;}
._b{width:31.198400pt;}
._3{width:32.951200pt;}
._1d{width:33.864800pt;}
._1b{width:35.652800pt;}
._5{width:36.672000pt;}
._1e{width:38.152000pt;}
._10{width:39.127467pt;}
._4{width:40.862133pt;}
._15{width:41.862400pt;}
._22{width:42.760533pt;}
._8{width:45.677600pt;}
._13{width:47.936000pt;}
._1c{width:51.642667pt;}
._9{width:52.972800pt;}
._25{width:54.653867pt;}
._e{width:55.868800pt;}
._26{width:61.047200pt;}
._24{width:63.022400pt;}
._12{width:66.560000pt;}
._21{width:67.450667pt;}
._2a{width:73.600000pt;}
._14{width:74.865867pt;}
._16{width:75.776000pt;}
._23{width:80.504533pt;}
._17{width:83.114667pt;}
._1f{width:85.288000pt;}
._20{width:109.056000pt;}
._11{width:114.100800pt;}
._a{width:116.731733pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y81{bottom:13.413333pt;}
.y57{bottom:13.466667pt;}
.y88{bottom:13.480000pt;}
.y73{bottom:13.521333pt;}
.y5b{bottom:13.533333pt;}
.y7a{bottom:13.588000pt;}
.y71{bottom:22.640000pt;}
.y59{bottom:22.654667pt;}
.y7f{bottom:22.693333pt;}
.y7b{bottom:22.708000pt;}
.y55{bottom:22.746667pt;}
.y66{bottom:22.908000pt;}
.y72{bottom:31.760000pt;}
.y5a{bottom:31.773333pt;}
.y80{bottom:31.813333pt;}
.y79{bottom:31.826667pt;}
.y56{bottom:31.866667pt;}
.y87{bottom:31.880000pt;}
.y76{bottom:31.921333pt;}
.y67{bottom:32.026667pt;}
.y65{bottom:41.146667pt;}
.y75{bottom:50.160000pt;}
.y83{bottom:50.213333pt;}
.y86{bottom:50.280000pt;}
.y3{bottom:56.866667pt;}
.y28{bottom:94.946667pt;}
.y78{bottom:105.200000pt;}
.ya5{bottom:106.626667pt;}
.y54{bottom:113.000000pt;}
.y27{bottom:113.346667pt;}
.ya4{bottom:125.026667pt;}
.y26{bottom:131.746667pt;}
.ya3{bottom:143.266667pt;}
.y25{bottom:150.146667pt;}
.ya2{bottom:161.666667pt;}
.y77{bottom:162.066667pt;}
.y24{bottom:168.546667pt;}
.ya1{bottom:180.066667pt;}
.y23{bottom:186.946667pt;}
.y53{bottom:189.346667pt;}
.ya0{bottom:198.466667pt;}
.y22{bottom:205.346667pt;}
.y52{bottom:207.746667pt;}
.y9f{bottom:216.866667pt;}
.y74{bottom:218.866667pt;}
.y21{bottom:223.746667pt;}
.y51{bottom:225.988000pt;}
.y9e{bottom:235.266667pt;}
.y50{bottom:244.388000pt;}
.y9d{bottom:253.666667pt;}
.y4f{bottom:262.788000pt;}
.y9c{bottom:272.066667pt;}
.y20{bottom:276.546667pt;}
.y4e{bottom:281.188000pt;}
.y9b{bottom:290.466667pt;}
.y70{bottom:294.066667pt;}
.y1f{bottom:294.946667pt;}
.y4d{bottom:299.588000pt;}
.y9a{bottom:308.866667pt;}
.y4c{bottom:317.988000pt;}
.y99{bottom:327.266667pt;}
.y4b{bottom:336.388000pt;}
.y98{bottom:345.666667pt;}
.y1e{bottom:347.746667pt;}
.y4a{bottom:354.788000pt;}
.y97{bottom:364.066667pt;}
.y1d{bottom:366.146667pt;}
.y6f{bottom:372.866667pt;}
.y49{bottom:373.188000pt;}
.y96{bottom:382.466667pt;}
.y1c{bottom:384.546667pt;}
.y6e{bottom:391.266667pt;}
.y48{bottom:391.588000pt;}
.y95{bottom:400.866667pt;}
.y1b{bottom:402.946667pt;}
.yc0{bottom:407.266667pt;}
.y6d{bottom:409.666667pt;}
.y47{bottom:409.988000pt;}
.y94{bottom:419.266667pt;}
.y1a{bottom:421.346667pt;}
.ybf{bottom:425.666667pt;}
.y6c{bottom:428.066667pt;}
.y46{bottom:428.388000pt;}
.y93{bottom:437.666667pt;}
.y19{bottom:439.746667pt;}
.ybe{bottom:444.066667pt;}
.y6b{bottom:446.466667pt;}
.y45{bottom:446.788000pt;}
.y92{bottom:456.066667pt;}
.y18{bottom:458.146667pt;}
.ybd{bottom:462.466667pt;}
.y44{bottom:465.188000pt;}
.y91{bottom:474.466667pt;}
.y17{bottom:476.546667pt;}
.y6a{bottom:480.133333pt;}
.ybc{bottom:480.866667pt;}
.y43{bottom:483.588000pt;}
.y90{bottom:492.866667pt;}
.y16{bottom:494.946667pt;}
.ybb{bottom:499.266667pt;}
.y42{bottom:501.988000pt;}
.y8f{bottom:511.266667pt;}
.y15{bottom:513.346667pt;}
.yba{bottom:517.666667pt;}
.y69{bottom:518.600000pt;}
.y41{bottom:520.388000pt;}
.y8e{bottom:529.666667pt;}
.yb9{bottom:536.066667pt;}
.y40{bottom:538.788000pt;}
.y8d{bottom:548.066667pt;}
.yb8{bottom:554.466667pt;}
.y3f{bottom:557.188000pt;}
.y14{bottom:566.146667pt;}
.y8c{bottom:566.466667pt;}
.yb7{bottom:572.866667pt;}
.y68{bottom:575.400000pt;}
.y3e{bottom:575.588000pt;}
.y13{bottom:584.546667pt;}
.y8b{bottom:584.866667pt;}
.yb6{bottom:591.266667pt;}
.y3d{bottom:593.988000pt;}
.y8a{bottom:603.266667pt;}
.yb5{bottom:609.666667pt;}
.y3c{bottom:612.388000pt;}
.y89{bottom:621.666667pt;}
.yb4{bottom:628.066667pt;}
.y3b{bottom:630.788000pt;}
.y64{bottom:632.200000pt;}
.y12{bottom:637.346667pt;}
.yb3{bottom:646.466667pt;}
.y3a{bottom:649.188000pt;}
.y85{bottom:652.666667pt;}
.y11{bottom:655.746667pt;}
.yb2{bottom:664.866667pt;}
.y39{bottom:667.588000pt;}
.y10{bottom:674.146667pt;}
.yb1{bottom:683.266667pt;}
.y38{bottom:685.988000pt;}
.yf{bottom:692.546667pt;}
.yb0{bottom:701.666667pt;}
.y37{bottom:704.388000pt;}
.ye{bottom:710.946667pt;}
.yaf{bottom:720.066667pt;}
.y36{bottom:722.788000pt;}
.y84{bottom:727.933333pt;}
.yd{bottom:729.346667pt;}
.y63{bottom:729.666667pt;}
.yae{bottom:738.466667pt;}
.y35{bottom:741.188000pt;}
.yc{bottom:747.746667pt;}
.y62{bottom:748.066667pt;}
.yad{bottom:756.866667pt;}
.y34{bottom:759.588000pt;}
.yb{bottom:766.146667pt;}
.y61{bottom:766.466667pt;}
.yac{bottom:775.266667pt;}
.y33{bottom:777.988000pt;}
.ya{bottom:784.546667pt;}
.y82{bottom:784.733333pt;}
.y60{bottom:784.866667pt;}
.yab{bottom:793.666667pt;}
.y32{bottom:796.388000pt;}
.y9{bottom:802.946667pt;}
.y5f{bottom:803.266667pt;}
.y31{bottom:814.788000pt;}
.yaa{bottom:830.788000pt;}
.y30{bottom:833.188000pt;}
.y5e{bottom:836.933333pt;}
.y7e{bottom:859.933333pt;}
.ya9{bottom:865.188000pt;}
.y8{bottom:871.746667pt;}
.y5d{bottom:875.400000pt;}
.ya8{bottom:883.588000pt;}
.y2f{bottom:885.988000pt;}
.y7{bottom:890.146667pt;}
.ya7{bottom:901.988000pt;}
.y2e{bottom:904.388000pt;}
.ya6{bottom:920.388000pt;}
.y2d{bottom:922.788000pt;}
.y5c{bottom:932.200000pt;}
.y7d{bottom:938.788000pt;}
.y7c{bottom:957.188000pt;}
.y2c{bottom:975.588000pt;}
.y6{bottom:980.388000pt;}
.y58{bottom:988.933333pt;}
.y2b{bottom:993.988000pt;}
.y2a{bottom:1012.388000pt;}
.y5{bottom:1014.788000pt;}
.y29{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h8{height:38.400000pt;}
.h2{height:43.375000pt;}
.h4{height:43.531250pt;}
.h5{height:44.468750pt;}
.h7{height:56.733333pt;}
.h6{height:56.800000pt;}
.ha{height:75.133333pt;}
.hb{height:75.200000pt;}
.h9{height:75.400000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w9{width:125.133333pt;}
.w11{width:125.200000pt;}
.wd{width:125.400000pt;}
.w5{width:149.066667pt;}
.wc{width:161.800000pt;}
.w10{width:162.000000pt;}
.w8{width:163.466667pt;}
.w4{width:190.533333pt;}
.w3{width:192.800000pt;}
.wb{width:202.933333pt;}
.wf{width:203.066667pt;}
.w7{width:204.400000pt;}
.w6{width:213.066667pt;}
.we{width:215.800000pt;}
.wa{width:215.933333pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x8{left:47.266667pt;}
.x9{left:63.933333pt;}
.xb{left:80.000000pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x13{left:115.200000pt;}
.x2{left:142.720000pt;}
.x6{left:145.120000pt;}
.x7{left:196.320000pt;}
.xa{left:240.000000pt;}
.xe{left:260.266667pt;}
.x11{left:263.133333pt;}
.x5{left:318.720000pt;}
.xc{left:430.466667pt;}
.xf{left:464.600000pt;}
.x12{left:466.000000pt;}
.xd{left:579.466667pt;}
.x10{left:628.000000pt;}
}




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