
    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_e7e58251b00a5e947c8725f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_d72a9f6d90b24ac9192f3043.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_913882cfe674b1855d3ca13b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_684b25e0ee3d09e02278d646.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_400006df64502385518ce377.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bf6a362a9e96eeaa9496ca12.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5fa13df1dc874f87b4e2bc8a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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:ff8;src:url('chunks/assets/font_ca7f74f4f46a94c5f16ff85e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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;}
.ls9{letter-spacing:-3.000000px;}
.lsb{letter-spacing:-2.994000px;}
.ls8{letter-spacing:-2.988000px;}
.lsa{letter-spacing:-2.700000px;}
.ls18{letter-spacing:-0.252000px;}
.lsc{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.192000px;}
.ls1c{letter-spacing:-0.168000px;}
.ls1e{letter-spacing:-0.126000px;}
.ls7{letter-spacing:-0.012000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls1b{letter-spacing:0.060000px;}
.ls16{letter-spacing:0.084000px;}
.ls0{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.150000px;}
.ls1d{letter-spacing:0.168000px;}
.ls12{letter-spacing:0.192000px;}
.ls15{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.300000px;}
.ls19{letter-spacing:0.384000px;}
.ls20{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.600000px;}
.ls1a{letter-spacing:16.200000px;}
.lse{letter-spacing:20.400000px;}
.ls14{letter-spacing:21.000000px;}
.ls17{letter-spacing:23.400000px;}
.lsf{letter-spacing:30.384000px;}
.ls10{letter-spacing:33.984000px;}
.ls1f{letter-spacing:34.584000px;}
.ls13{letter-spacing:63.984000px;}
.ls11{letter-spacing:122.400000px;}
.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;}
}
.wsf{word-spacing:-18.216000px;}
.wsd{word-spacing:-18.192000px;}
.ws14{word-spacing:-18.168000px;}
.wsa{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.832000px;}
.ws12{word-spacing:-17.808000px;}
.wsb{word-spacing:-17.784000px;}
.wse{word-spacing:-16.500000px;}
.ws13{word-spacing:-16.374000px;}
.ws10{word-spacing:-16.248000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsc{word-spacing:0.000000px;}
._3d{margin-left:-5.328000px;}
._a{margin-left:-4.248000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._31{width:2.262000px;}
._5{width:3.600000px;}
._6{width:5.040000px;}
._e{width:6.840000px;}
._f{width:8.064000px;}
._1a{width:9.576000px;}
._4{width:10.806000px;}
._10{width:11.886000px;}
._19{width:13.170000px;}
._7{width:14.184000px;}
._12{width:15.204000px;}
._d{width:16.908000px;}
._5d{width:18.876000px;}
._9{width:19.932000px;}
._1c{width:21.672000px;}
._25{width:23.544000px;}
._1b{width:24.624000px;}
._3c{width:25.848000px;}
._2f{width:26.952000px;}
._30{width:28.806000px;}
._26{width:30.456000px;}
._27{width:31.536000px;}
._23{width:32.976000px;}
._24{width:34.518000px;}
._39{width:35.724000px;}
._40{width:36.804000px;}
._3f{width:38.436000px;}
._16{width:40.272000px;}
._29{width:41.976000px;}
._2a{width:42.984000px;}
._3a{width:43.992000px;}
._3b{width:45.246000px;}
._4e{width:46.992000px;}
._2d{width:48.528000px;}
._2e{width:49.536000px;}
._38{width:50.904000px;}
._8{width:52.200000px;}
._1d{width:53.670000px;}
._22{width:54.720000px;}
._53{width:55.872000px;}
._42{width:57.888000px;}
._61{width:58.926000px;}
._15{width:60.972000px;}
._1e{width:61.986000px;}
._48{width:63.432000px;}
._49{width:64.512000px;}
._52{width:66.312000px;}
._54{width:67.596000px;}
._5f{width:68.700000px;}
._b{width:69.984000px;}
._59{width:71.640000px;}
._43{width:74.160000px;}
._44{width:75.600000px;}
._4a{width:76.812000px;}
._1f{width:77.832000px;}
._20{width:79.056000px;}
._55{width:80.352000px;}
._21{width:82.872000px;}
._17{width:83.952000px;}
._18{width:85.248000px;}
._56{width:86.832000px;}
._57{width:88.128000px;}
._2b{width:90.144000px;}
._2c{width:91.296000px;}
._11{width:94.968000px;}
._37{width:96.252000px;}
._4d{width:97.878000px;}
._58{width:99.834000px;}
._13{width:101.232000px;}
._14{width:102.456000px;}
._c{width:103.968000px;}
._28{width:105.264000px;}
._3e{width:106.332000px;}
._5b{width:114.192000px;}
._5e{width:115.776000px;}
._33{width:117.936000px;}
._34{width:118.944000px;}
._45{width:120.528000px;}
._46{width:121.752000px;}
._4c{width:122.832000px;}
._5a{width:124.272000px;}
._32{width:125.928000px;}
._35{width:128.016000px;}
._36{width:129.456000px;}
._62{width:132.984000px;}
._50{width:134.136000px;}
._51{width:135.216000px;}
._63{width:140.760000px;}
._5c{width:144.420000px;}
._4b{width:171.216000px;}
._47{width:176.550000px;}
._60{width:195.228000px;}
._41{width:206.784000px;}
._4f{width:211.332000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y71{bottom:3.600000px;}
.yd6{bottom:3.615000px;}
.ydd{bottom:3.645000px;}
.ycc{bottom:3.750000px;}
.y101{bottom:3.780000px;}
.y22{bottom:3.900000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.y6b{bottom:9.150000px;}
.yf7{bottom:13.050000px;}
.yd8{bottom:13.200000px;}
.yfe{bottom:13.230000px;}
.y69{bottom:18.600000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y76{bottom:22.650000px;}
.yd5{bottom:22.665000px;}
.yff{bottom:22.680000px;}
.y70{bottom:22.695000px;}
.y21{bottom:24.600000px;}
.y6a{bottom:28.050000px;}
.y106{bottom:32.085000px;}
.y73{bottom:32.100000px;}
.yfd{bottom:32.130000px;}
.y6d{bottom:32.145000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y75{bottom:41.550000px;}
.yd4{bottom:41.565000px;}
.y6f{bottom:41.595000px;}
.yd9{bottom:41.700000px;}
.y100{bottom:41.730000px;}
.y20{bottom:45.300000px;}
.yf9{bottom:51.000000px;}
.yd0{bottom:51.015000px;}
.y105{bottom:51.150000px;}
.y3{bottom:57.637500px;}
.y74{bottom:60.600000px;}
.yce{bottom:60.615000px;}
.y6e{bottom:60.645000px;}
.y1f{bottom:66.000000px;}
.y104{bottom:70.035000px;}
.ycf{bottom:70.065000px;}
.ydb{bottom:79.500000px;}
.yd3{bottom:79.515000px;}
.y2{bottom:81.637500px;}
.y1e{bottom:86.700000px;}
.yd2{bottom:98.565000px;}
.y1d{bottom:107.400000px;}
.y3c{bottom:107.587500px;}
.y10c{bottom:107.887500px;}
.y8b{bottom:108.187500px;}
.yd1{bottom:117.465000px;}
.y11e{bottom:122.587500px;}
.y67{bottom:126.637500px;}
.y1c{bottom:128.100000px;}
.y3b{bottom:131.287500px;}
.y10b{bottom:131.737500px;}
.y8a{bottom:131.887500px;}
.y11d{bottom:140.137500px;}
.yca{bottom:142.087500px;}
.yf6{bottom:147.337500px;}
.y66{bottom:150.495000px;}
.y3a{bottom:155.130000px;}
.y10a{bottom:155.580000px;}
.y89{bottom:155.745000px;}
.y11c{bottom:161.595000px;}
.yc9{bottom:165.930000px;}
.yf5{bottom:171.180000px;}
.y65{bottom:174.345000px;}
.y39{bottom:178.995000px;}
.y109{bottom:179.295000px;}
.y88{bottom:179.580000px;}
.y11b{bottom:183.045000px;}
.yc8{bottom:189.645000px;}
.yf4{bottom:195.045000px;}
.y64{bottom:198.195000px;}
.y38{bottom:202.695000px;}
.y108{bottom:203.145000px;}
.y87{bottom:203.295000px;}
.y11a{bottom:204.495000px;}
.yc7{bottom:213.495000px;}
.yf3{bottom:218.745000px;}
.y63{bottom:221.895000px;}
.y37{bottom:226.545000px;}
.y107{bottom:226.995000px;}
.y86{bottom:227.145000px;}
.y119{bottom:232.995000px;}
.yc6{bottom:237.345000px;}
.yf2{bottom:242.595000px;}
.y103{bottom:244.545000px;}
.y62{bottom:245.745000px;}
.ya6{bottom:247.695000px;}
.y36{bottom:250.395000px;}
.y85{bottom:250.995000px;}
.y118{bottom:256.695000px;}
.yc5{bottom:261.045000px;}
.yf1{bottom:266.445000px;}
.y61{bottom:269.595000px;}
.ya5{bottom:271.545000px;}
.y35{bottom:274.080000px;}
.y84{bottom:274.695000px;}
.y117{bottom:280.545000px;}
.yc4{bottom:284.895000px;}
.yf0{bottom:290.130000px;}
.y60{bottom:293.295000px;}
.ya4{bottom:295.395000px;}
.y34{bottom:297.945000px;}
.y83{bottom:298.545000px;}
.y116{bottom:304.395000px;}
.yc3{bottom:308.745000px;}
.yef{bottom:313.995000px;}
.y5f{bottom:317.130000px;}
.ya3{bottom:319.095000px;}
.y33{bottom:321.795000px;}
.y82{bottom:322.395000px;}
.y115{bottom:328.080000px;}
.yc2{bottom:332.445000px;}
.yee{bottom:337.830000px;}
.y102{bottom:340.095000px;}
.y5e{bottom:340.995000px;}
.ya2{bottom:342.945000px;}
.y32{bottom:345.645000px;}
.y81{bottom:346.245000px;}
.y114{bottom:351.945000px;}
.yc1{bottom:356.295000px;}
.yed{bottom:361.695000px;}
.y5d{bottom:364.695000px;}
.ya1{bottom:366.795000px;}
.y31{bottom:369.345000px;}
.y80{bottom:369.945000px;}
.y113{bottom:375.795000px;}
.yfc{bottom:378.795000px;}
.yc0{bottom:380.175000px;}
.yec{bottom:385.425000px;}
.y5c{bottom:388.575000px;}
.ya0{bottom:390.525000px;}
.y30{bottom:393.225000px;}
.y7f{bottom:393.825000px;}
.y112{bottom:399.675000px;}
.ybf{bottom:404.025000px;}
.yeb{bottom:409.275000px;}
.y5b{bottom:412.425000px;}
.y9f{bottom:414.375000px;}
.y2f{bottom:417.075000px;}
.y7e{bottom:417.675000px;}
.y111{bottom:423.375000px;}
.ybe{bottom:427.725000px;}
.yea{bottom:433.125000px;}
.y5a{bottom:436.125000px;}
.yfb{bottom:436.575000px;}
.y9e{bottom:438.225000px;}
.y2e{bottom:440.775000px;}
.y110{bottom:440.925000px;}
.y7d{bottom:441.375000px;}
.ybd{bottom:451.575000px;}
.ye9{bottom:456.825000px;}
.y59{bottom:459.975000px;}
.y9d{bottom:461.925000px;}
.y10f{bottom:462.375000px;}
.y2d{bottom:464.625000px;}
.y7c{bottom:465.225000px;}
.ybc{bottom:475.425000px;}
.ye8{bottom:480.675000px;}
.y58{bottom:483.825000px;}
.y9c{bottom:485.775000px;}
.y2c{bottom:488.475000px;}
.y7b{bottom:489.075000px;}
.yfa{bottom:494.175000px;}
.ybb{bottom:499.125000px;}
.ye7{bottom:504.525000px;}
.y10e{bottom:505.275000px;}
.y57{bottom:507.525000px;}
.y9b{bottom:509.625000px;}
.y2b{bottom:512.175000px;}
.y7a{bottom:512.775000px;}
.yba{bottom:522.975000px;}
.y10d{bottom:526.725000px;}
.ye6{bottom:528.225000px;}
.y56{bottom:531.375000px;}
.y9a{bottom:533.325000px;}
.y2a{bottom:536.025000px;}
.y79{bottom:536.625000px;}
.yb9{bottom:546.825000px;}
.yf8{bottom:551.925000px;}
.ye5{bottom:552.075000px;}
.y55{bottom:555.225000px;}
.y99{bottom:557.175000px;}
.y29{bottom:559.875000px;}
.y78{bottom:560.475000px;}
.yb8{bottom:570.525000px;}
.ye4{bottom:575.925000px;}
.y77{bottom:578.025000px;}
.y54{bottom:579.075000px;}
.y98{bottom:581.025000px;}
.y28{bottom:583.575000px;}
.yb7{bottom:594.375000px;}
.ye3{bottom:599.625000px;}
.y53{bottom:602.775000px;}
.y97{bottom:604.725000px;}
.y27{bottom:607.425000px;}
.yb6{bottom:618.225000px;}
.ye2{bottom:623.475000px;}
.y52{bottom:626.625000px;}
.y96{bottom:628.575000px;}
.y26{bottom:631.275000px;}
.yb5{bottom:641.925000px;}
.ye1{bottom:647.325000px;}
.y51{bottom:650.475000px;}
.y95{bottom:652.425000px;}
.y72{bottom:654.675000px;}
.y25{bottom:663.975000px;}
.yb4{bottom:665.775000px;}
.ye0{bottom:671.025000px;}
.y50{bottom:674.175000px;}
.y94{bottom:676.125000px;}
.y24{bottom:680.775000px;}
.yb3{bottom:689.625000px;}
.ydf{bottom:694.875000px;}
.y4f{bottom:698.025000px;}
.y93{bottom:699.975000px;}
.yb2{bottom:713.325000px;}
.yde{bottom:718.725000px;}
.y4e{bottom:721.875000px;}
.y23{bottom:722.175000px;}
.y92{bottom:723.825000px;}
.y6c{bottom:731.325000px;}
.ydc{bottom:736.275000px;}
.yb1{bottom:737.175000px;}
.y1b{bottom:742.920000px;}
.y4d{bottom:745.620000px;}
.y91{bottom:747.720000px;}
.yb0{bottom:761.070000px;}
.y4c{bottom:769.470000px;}
.y90{bottom:771.420000px;}
.yaf{bottom:784.770000px;}
.y4b{bottom:793.320000px;}
.y8f{bottom:795.270000px;}
.y68{bottom:808.020000px;}
.yae{bottom:808.620000px;}
.yda{bottom:812.970000px;}
.y4a{bottom:817.020000px;}
.y8e{bottom:819.120000px;}
.yad{bottom:832.455000px;}
.y49{bottom:840.870000px;}
.y8d{bottom:842.820000px;}
.yac{bottom:856.320000px;}
.y8c{bottom:862.770000px;}
.y48{bottom:864.720000px;}
.yab{bottom:880.020000px;}
.y47{bottom:888.420000px;}
.y1a{bottom:891.420000px;}
.yaa{bottom:903.870000px;}
.yd7{bottom:908.520000px;}
.y19{bottom:910.620000px;}
.y46{bottom:912.270000px;}
.ya9{bottom:927.720000px;}
.y18{bottom:931.320000px;}
.y45{bottom:936.120000px;}
.ya8{bottom:951.420000px;}
.y17{bottom:952.020000px;}
.y44{bottom:959.970000px;}
.ycd{bottom:966.255000px;}
.ya7{bottom:971.370000px;}
.y16{bottom:972.720000px;}
.y43{bottom:983.670000px;}
.y15{bottom:993.420000px;}
.y42{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.y41{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.y40{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.y3f{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.ycb{bottom:1099.800000px;}
.y3e{bottom:1102.800000px;}
.yf{bottom:1117.650000px;}
.y3d{bottom:1126.500000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h18{height:19.050000px;}
.h21{height:20.700000px;}
.hf{height:20.737500px;}
.h1c{height:37.950000px;}
.h10{height:41.400000px;}
.h6{height:45.300000px;}
.h17{height:46.277344px;}
.h3{height:48.600000px;}
.h13{height:48.900000px;}
.hc{height:50.484375px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h1e{height:56.850000px;}
.h1a{height:56.985000px;}
.h1d{height:57.000000px;}
.h1f{height:57.037500px;}
.h4{height:58.886719px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.h14{height:66.515625px;}
.h11{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h12{height:74.004654px;}
.h16{height:75.900000px;}
.h15{height:75.937500px;}
.h2{height:82.441406px;}
.h1b{height:94.785000px;}
.h20{height:94.800000px;}
.h19{height:132.787500px;}
.he{height:144.900000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wd{width:76.050000px;}
.wf{width:85.650000px;}
.w14{width:87.337500px;}
.w15{width:94.800000px;}
.wa{width:97.687500px;}
.w16{width:103.050000px;}
.we{width:103.987500px;}
.w13{width:104.400000px;}
.w10{width:123.900000px;}
.wb{width:130.987500px;}
.wc{width:131.085000px;}
.w9{width:141.600000px;}
.w6{width:178.350000px;}
.w11{width:193.530000px;}
.w12{width:197.550000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1c{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x20{left:69.599987px;}
.x10{left:76.649987px;}
.x1d{left:95.699987px;}
.x1b{left:100.200000px;}
.x1a{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x23{left:175.095000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x24{left:306.945000px;}
.x22{left:383.774987px;}
.x1e{left:457.274987px;}
.x12{left:464.924987px;}
.x13{left:468.824987px;}
.x25{left:484.274987px;}
.x1f{left:510.374987px;}
.x14{left:531.674987px;}
.x26{left:534.825000px;}
.x2a{left:563.175000px;}
.x17{left:568.574987px;}
.x2d{left:578.624987px;}
.x19{left:592.574987px;}
.x11{left:597.974987px;}
.x15{left:600.524987px;}
.x18{left:611.474987px;}
.xc{left:625.425000px;}
.x27{left:639.570000px;}
.x2b{left:651.270000px;}
.x29{left:652.320000px;}
.x21{left:698.820000px;}
.xf{left:713.655000px;}
.x28{left:725.970000px;}
.x2c{left:746.820000px;}
.x2{left:819.119987px;}
.x16{left:850.619987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.666667pt;}
.lsb{letter-spacing:-2.661333pt;}
.ls8{letter-spacing:-2.656000pt;}
.lsa{letter-spacing:-2.400000pt;}
.ls18{letter-spacing:-0.224000pt;}
.lsc{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.170667pt;}
.ls1c{letter-spacing:-0.149333pt;}
.ls1e{letter-spacing:-0.112000pt;}
.ls7{letter-spacing:-0.010667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls1b{letter-spacing:0.053333pt;}
.ls16{letter-spacing:0.074667pt;}
.ls0{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.133333pt;}
.ls1d{letter-spacing:0.149333pt;}
.ls12{letter-spacing:0.170667pt;}
.ls15{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls19{letter-spacing:0.341333pt;}
.ls20{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls1a{letter-spacing:14.400000pt;}
.lse{letter-spacing:18.133333pt;}
.ls14{letter-spacing:18.666667pt;}
.ls17{letter-spacing:20.800000pt;}
.lsf{letter-spacing:27.008000pt;}
.ls10{letter-spacing:30.208000pt;}
.ls1f{letter-spacing:30.741333pt;}
.ls13{letter-spacing:56.874667pt;}
.ls11{letter-spacing:108.800000pt;}
.wsf{word-spacing:-16.192000pt;}
.wsd{word-spacing:-16.170667pt;}
.ws14{word-spacing:-16.149333pt;}
.wsa{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.850667pt;}
.ws12{word-spacing:-15.829333pt;}
.wsb{word-spacing:-15.808000pt;}
.wse{word-spacing:-14.666667pt;}
.ws13{word-spacing:-14.554667pt;}
.ws10{word-spacing:-14.442667pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsc{word-spacing:0.000000pt;}
._3d{margin-left:-4.736000pt;}
._a{margin-left:-3.776000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._31{width:2.010667pt;}
._5{width:3.200000pt;}
._6{width:4.480000pt;}
._e{width:6.080000pt;}
._f{width:7.168000pt;}
._1a{width:8.512000pt;}
._4{width:9.605333pt;}
._10{width:10.565333pt;}
._19{width:11.706667pt;}
._7{width:12.608000pt;}
._12{width:13.514667pt;}
._d{width:15.029333pt;}
._5d{width:16.778667pt;}
._9{width:17.717333pt;}
._1c{width:19.264000pt;}
._25{width:20.928000pt;}
._1b{width:21.888000pt;}
._3c{width:22.976000pt;}
._2f{width:23.957333pt;}
._30{width:25.605333pt;}
._26{width:27.072000pt;}
._27{width:28.032000pt;}
._23{width:29.312000pt;}
._24{width:30.682667pt;}
._39{width:31.754667pt;}
._40{width:32.714667pt;}
._3f{width:34.165333pt;}
._16{width:35.797333pt;}
._29{width:37.312000pt;}
._2a{width:38.208000pt;}
._3a{width:39.104000pt;}
._3b{width:40.218667pt;}
._4e{width:41.770667pt;}
._2d{width:43.136000pt;}
._2e{width:44.032000pt;}
._38{width:45.248000pt;}
._8{width:46.400000pt;}
._1d{width:47.706667pt;}
._22{width:48.640000pt;}
._53{width:49.664000pt;}
._42{width:51.456000pt;}
._61{width:52.378667pt;}
._15{width:54.197333pt;}
._1e{width:55.098667pt;}
._48{width:56.384000pt;}
._49{width:57.344000pt;}
._52{width:58.944000pt;}
._54{width:60.085333pt;}
._5f{width:61.066667pt;}
._b{width:62.208000pt;}
._59{width:63.680000pt;}
._43{width:65.920000pt;}
._44{width:67.200000pt;}
._4a{width:68.277333pt;}
._1f{width:69.184000pt;}
._20{width:70.272000pt;}
._55{width:71.424000pt;}
._21{width:73.664000pt;}
._17{width:74.624000pt;}
._18{width:75.776000pt;}
._56{width:77.184000pt;}
._57{width:78.336000pt;}
._2b{width:80.128000pt;}
._2c{width:81.152000pt;}
._11{width:84.416000pt;}
._37{width:85.557333pt;}
._4d{width:87.002667pt;}
._58{width:88.741333pt;}
._13{width:89.984000pt;}
._14{width:91.072000pt;}
._c{width:92.416000pt;}
._28{width:93.568000pt;}
._3e{width:94.517333pt;}
._5b{width:101.504000pt;}
._5e{width:102.912000pt;}
._33{width:104.832000pt;}
._34{width:105.728000pt;}
._45{width:107.136000pt;}
._46{width:108.224000pt;}
._4c{width:109.184000pt;}
._5a{width:110.464000pt;}
._32{width:111.936000pt;}
._35{width:113.792000pt;}
._36{width:115.072000pt;}
._62{width:118.208000pt;}
._50{width:119.232000pt;}
._51{width:120.192000pt;}
._63{width:125.120000pt;}
._5c{width:128.373333pt;}
._4b{width:152.192000pt;}
._47{width:156.933333pt;}
._60{width:173.536000pt;}
._41{width:183.808000pt;}
._4f{width:187.850667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y71{bottom:3.200000pt;}
.yd6{bottom:3.213333pt;}
.ydd{bottom:3.240000pt;}
.ycc{bottom:3.333333pt;}
.y101{bottom:3.360000pt;}
.y22{bottom:3.466667pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.y6b{bottom:8.133333pt;}
.yf7{bottom:11.600000pt;}
.yd8{bottom:11.733333pt;}
.yfe{bottom:11.760000pt;}
.y69{bottom:16.533333pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y76{bottom:20.133333pt;}
.yd5{bottom:20.146667pt;}
.yff{bottom:20.160000pt;}
.y70{bottom:20.173333pt;}
.y21{bottom:21.866667pt;}
.y6a{bottom:24.933333pt;}
.y106{bottom:28.520000pt;}
.y73{bottom:28.533333pt;}
.yfd{bottom:28.560000pt;}
.y6d{bottom:28.573333pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y75{bottom:36.933333pt;}
.yd4{bottom:36.946667pt;}
.y6f{bottom:36.973333pt;}
.yd9{bottom:37.066667pt;}
.y100{bottom:37.093333pt;}
.y20{bottom:40.266667pt;}
.yf9{bottom:45.333333pt;}
.yd0{bottom:45.346667pt;}
.y105{bottom:45.466667pt;}
.y3{bottom:51.233333pt;}
.y74{bottom:53.866667pt;}
.yce{bottom:53.880000pt;}
.y6e{bottom:53.906667pt;}
.y1f{bottom:58.666667pt;}
.y104{bottom:62.253333pt;}
.ycf{bottom:62.280000pt;}
.ydb{bottom:70.666667pt;}
.yd3{bottom:70.680000pt;}
.y2{bottom:72.566667pt;}
.y1e{bottom:77.066667pt;}
.yd2{bottom:87.613333pt;}
.y1d{bottom:95.466667pt;}
.y3c{bottom:95.633333pt;}
.y10c{bottom:95.900000pt;}
.y8b{bottom:96.166667pt;}
.yd1{bottom:104.413333pt;}
.y11e{bottom:108.966667pt;}
.y67{bottom:112.566667pt;}
.y1c{bottom:113.866667pt;}
.y3b{bottom:116.700000pt;}
.y10b{bottom:117.100000pt;}
.y8a{bottom:117.233333pt;}
.y11d{bottom:124.566667pt;}
.yca{bottom:126.300000pt;}
.yf6{bottom:130.966667pt;}
.y66{bottom:133.773333pt;}
.y3a{bottom:137.893333pt;}
.y10a{bottom:138.293333pt;}
.y89{bottom:138.440000pt;}
.y11c{bottom:143.640000pt;}
.yc9{bottom:147.493333pt;}
.yf5{bottom:152.160000pt;}
.y65{bottom:154.973333pt;}
.y39{bottom:159.106667pt;}
.y109{bottom:159.373333pt;}
.y88{bottom:159.626667pt;}
.y11b{bottom:162.706667pt;}
.yc8{bottom:168.573333pt;}
.yf4{bottom:173.373333pt;}
.y64{bottom:176.173333pt;}
.y38{bottom:180.173333pt;}
.y108{bottom:180.573333pt;}
.y87{bottom:180.706667pt;}
.y11a{bottom:181.773333pt;}
.yc7{bottom:189.773333pt;}
.yf3{bottom:194.440000pt;}
.y63{bottom:197.240000pt;}
.y37{bottom:201.373333pt;}
.y107{bottom:201.773333pt;}
.y86{bottom:201.906667pt;}
.y119{bottom:207.106667pt;}
.yc6{bottom:210.973333pt;}
.yf2{bottom:215.640000pt;}
.y103{bottom:217.373333pt;}
.y62{bottom:218.440000pt;}
.ya6{bottom:220.173333pt;}
.y36{bottom:222.573333pt;}
.y85{bottom:223.106667pt;}
.y118{bottom:228.173333pt;}
.yc5{bottom:232.040000pt;}
.yf1{bottom:236.840000pt;}
.y61{bottom:239.640000pt;}
.ya5{bottom:241.373333pt;}
.y35{bottom:243.626667pt;}
.y84{bottom:244.173333pt;}
.y117{bottom:249.373333pt;}
.yc4{bottom:253.240000pt;}
.yf0{bottom:257.893333pt;}
.y60{bottom:260.706667pt;}
.ya4{bottom:262.573333pt;}
.y34{bottom:264.840000pt;}
.y83{bottom:265.373333pt;}
.y116{bottom:270.573333pt;}
.yc3{bottom:274.440000pt;}
.yef{bottom:279.106667pt;}
.y5f{bottom:281.893333pt;}
.ya3{bottom:283.640000pt;}
.y33{bottom:286.040000pt;}
.y82{bottom:286.573333pt;}
.y115{bottom:291.626667pt;}
.yc2{bottom:295.506667pt;}
.yee{bottom:300.293333pt;}
.y102{bottom:302.306667pt;}
.y5e{bottom:303.106667pt;}
.ya2{bottom:304.840000pt;}
.y32{bottom:307.240000pt;}
.y81{bottom:307.773333pt;}
.y114{bottom:312.840000pt;}
.yc1{bottom:316.706667pt;}
.yed{bottom:321.506667pt;}
.y5d{bottom:324.173333pt;}
.ya1{bottom:326.040000pt;}
.y31{bottom:328.306667pt;}
.y80{bottom:328.840000pt;}
.y113{bottom:334.040000pt;}
.yfc{bottom:336.706667pt;}
.yc0{bottom:337.933333pt;}
.yec{bottom:342.600000pt;}
.y5c{bottom:345.400000pt;}
.ya0{bottom:347.133333pt;}
.y30{bottom:349.533333pt;}
.y7f{bottom:350.066667pt;}
.y112{bottom:355.266667pt;}
.ybf{bottom:359.133333pt;}
.yeb{bottom:363.800000pt;}
.y5b{bottom:366.600000pt;}
.y9f{bottom:368.333333pt;}
.y2f{bottom:370.733333pt;}
.y7e{bottom:371.266667pt;}
.y111{bottom:376.333333pt;}
.ybe{bottom:380.200000pt;}
.yea{bottom:385.000000pt;}
.y5a{bottom:387.666667pt;}
.yfb{bottom:388.066667pt;}
.y9e{bottom:389.533333pt;}
.y2e{bottom:391.800000pt;}
.y110{bottom:391.933333pt;}
.y7d{bottom:392.333333pt;}
.ybd{bottom:401.400000pt;}
.ye9{bottom:406.066667pt;}
.y59{bottom:408.866667pt;}
.y9d{bottom:410.600000pt;}
.y10f{bottom:411.000000pt;}
.y2d{bottom:413.000000pt;}
.y7c{bottom:413.533333pt;}
.ybc{bottom:422.600000pt;}
.ye8{bottom:427.266667pt;}
.y58{bottom:430.066667pt;}
.y9c{bottom:431.800000pt;}
.y2c{bottom:434.200000pt;}
.y7b{bottom:434.733333pt;}
.yfa{bottom:439.266667pt;}
.ybb{bottom:443.666667pt;}
.ye7{bottom:448.466667pt;}
.y10e{bottom:449.133333pt;}
.y57{bottom:451.133333pt;}
.y9b{bottom:453.000000pt;}
.y2b{bottom:455.266667pt;}
.y7a{bottom:455.800000pt;}
.yba{bottom:464.866667pt;}
.y10d{bottom:468.200000pt;}
.ye6{bottom:469.533333pt;}
.y56{bottom:472.333333pt;}
.y9a{bottom:474.066667pt;}
.y2a{bottom:476.466667pt;}
.y79{bottom:477.000000pt;}
.yb9{bottom:486.066667pt;}
.yf8{bottom:490.600000pt;}
.ye5{bottom:490.733333pt;}
.y55{bottom:493.533333pt;}
.y99{bottom:495.266667pt;}
.y29{bottom:497.666667pt;}
.y78{bottom:498.200000pt;}
.yb8{bottom:507.133333pt;}
.ye4{bottom:511.933333pt;}
.y77{bottom:513.800000pt;}
.y54{bottom:514.733333pt;}
.y98{bottom:516.466667pt;}
.y28{bottom:518.733333pt;}
.yb7{bottom:528.333333pt;}
.ye3{bottom:533.000000pt;}
.y53{bottom:535.800000pt;}
.y97{bottom:537.533333pt;}
.y27{bottom:539.933333pt;}
.yb6{bottom:549.533333pt;}
.ye2{bottom:554.200000pt;}
.y52{bottom:557.000000pt;}
.y96{bottom:558.733333pt;}
.y26{bottom:561.133333pt;}
.yb5{bottom:570.600000pt;}
.ye1{bottom:575.400000pt;}
.y51{bottom:578.200000pt;}
.y95{bottom:579.933333pt;}
.y72{bottom:581.933333pt;}
.y25{bottom:590.200000pt;}
.yb4{bottom:591.800000pt;}
.ye0{bottom:596.466667pt;}
.y50{bottom:599.266667pt;}
.y94{bottom:601.000000pt;}
.y24{bottom:605.133333pt;}
.yb3{bottom:613.000000pt;}
.ydf{bottom:617.666667pt;}
.y4f{bottom:620.466667pt;}
.y93{bottom:622.200000pt;}
.yb2{bottom:634.066667pt;}
.yde{bottom:638.866667pt;}
.y4e{bottom:641.666667pt;}
.y23{bottom:641.933333pt;}
.y92{bottom:643.400000pt;}
.y6c{bottom:650.066667pt;}
.ydc{bottom:654.466667pt;}
.yb1{bottom:655.266667pt;}
.y1b{bottom:660.373333pt;}
.y4d{bottom:662.773333pt;}
.y91{bottom:664.640000pt;}
.yb0{bottom:676.506667pt;}
.y4c{bottom:683.973333pt;}
.y90{bottom:685.706667pt;}
.yaf{bottom:697.573333pt;}
.y4b{bottom:705.173333pt;}
.y8f{bottom:706.906667pt;}
.y68{bottom:718.240000pt;}
.yae{bottom:718.773333pt;}
.yda{bottom:722.640000pt;}
.y4a{bottom:726.240000pt;}
.y8e{bottom:728.106667pt;}
.yad{bottom:739.960000pt;}
.y49{bottom:747.440000pt;}
.y8d{bottom:749.173333pt;}
.yac{bottom:761.173333pt;}
.y8c{bottom:766.906667pt;}
.y48{bottom:768.640000pt;}
.yab{bottom:782.240000pt;}
.y47{bottom:789.706667pt;}
.y1a{bottom:792.373333pt;}
.yaa{bottom:803.440000pt;}
.yd7{bottom:807.573333pt;}
.y19{bottom:809.440000pt;}
.y46{bottom:810.906667pt;}
.ya9{bottom:824.640000pt;}
.y18{bottom:827.840000pt;}
.y45{bottom:832.106667pt;}
.ya8{bottom:845.706667pt;}
.y17{bottom:846.240000pt;}
.y44{bottom:853.306667pt;}
.ycd{bottom:858.893333pt;}
.ya7{bottom:863.440000pt;}
.y16{bottom:864.640000pt;}
.y43{bottom:874.373333pt;}
.y15{bottom:883.040000pt;}
.y42{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.y41{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.y40{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.y3f{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.ycb{bottom:977.600000pt;}
.y3e{bottom:980.266667pt;}
.yf{bottom:993.466667pt;}
.y3d{bottom:1001.333333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h18{height:16.933333pt;}
.h21{height:18.400000pt;}
.hf{height:18.433333pt;}
.h1c{height:33.733333pt;}
.h10{height:36.800000pt;}
.h6{height:40.266667pt;}
.h17{height:41.135417pt;}
.h3{height:43.200000pt;}
.h13{height:43.466667pt;}
.hc{height:44.875000pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h1e{height:50.533333pt;}
.h1a{height:50.653333pt;}
.h1d{height:50.666667pt;}
.h1f{height:50.700000pt;}
.h4{height:52.343750pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.h14{height:59.125000pt;}
.h11{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h12{height:65.781915pt;}
.h16{height:67.466667pt;}
.h15{height:67.500000pt;}
.h2{height:73.281250pt;}
.h1b{height:84.253333pt;}
.h20{height:84.266667pt;}
.h19{height:118.033333pt;}
.he{height:128.800000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wd{width:67.600000pt;}
.wf{width:76.133333pt;}
.w14{width:77.633333pt;}
.w15{width:84.266667pt;}
.wa{width:86.833333pt;}
.w16{width:91.600000pt;}
.we{width:92.433333pt;}
.w13{width:92.800000pt;}
.w10{width:110.133333pt;}
.wb{width:116.433333pt;}
.wc{width:116.520000pt;}
.w9{width:125.866667pt;}
.w6{width:158.533333pt;}
.w11{width:172.026667pt;}
.w12{width:175.600000pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1c{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x20{left:61.866655pt;}
.x10{left:68.133322pt;}
.x1d{left:85.066655pt;}
.x1b{left:89.066667pt;}
.x1a{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x23{left:155.640000pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x24{left:272.840000pt;}
.x22{left:341.133322pt;}
.x1e{left:406.466655pt;}
.x12{left:413.266655pt;}
.x13{left:416.733322pt;}
.x25{left:430.466655pt;}
.x1f{left:453.666655pt;}
.x14{left:472.599988pt;}
.x26{left:475.400000pt;}
.x2a{left:500.600000pt;}
.x17{left:505.399988pt;}
.x2d{left:514.333322pt;}
.x19{left:526.733322pt;}
.x11{left:531.533322pt;}
.x15{left:533.799988pt;}
.x18{left:543.533322pt;}
.xc{left:555.933333pt;}
.x27{left:568.506667pt;}
.x2b{left:578.906667pt;}
.x29{left:579.840000pt;}
.x21{left:621.173333pt;}
.xf{left:634.360000pt;}
.x28{left:645.306667pt;}
.x2c{left:663.840000pt;}
.x2{left:728.106655pt;}
.x16{left:756.106655pt;}
}




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