
    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_e7991a99db6ab1ea78276b0a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7e5c80b3eca133131b15a8c4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_7f9fbcf5e5539f61b44804d5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bb47cc92cc7d4aae303f8634.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_045991374c10e810ff43c239.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_625a5b5fc23a9b0ec93cb4f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_cbd51115fe1da6f5fc8694e9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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:ffa;src:url('chunks/assets/font_20f602a2e05693414970ddc0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8cc6c8e010bb8a0b4d071811.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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:ffc;src:url('chunks/assets/font_620bab5a3db143845b972b8f.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4f80b6e6471818c3d21aaf28.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.130371;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:ffe;src:url('chunks/assets/font_50febc27544a23d529e0667b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.202148;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;}
.lsc{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.480000px;}
.ls15{letter-spacing:-0.420000px;}
.ls9{letter-spacing:-0.240000px;}
.ls1{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.024000px;}
.lsf{letter-spacing:0.060000px;}
.ls12{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.ls16{letter-spacing:0.144000px;}
.lse{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.384000px;}
.ls13{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.600000px;}
.ls11{letter-spacing:0.780000px;}
.ls10{letter-spacing:15.720000px;}
.lsd{letter-spacing:45.720000px;}
.ls14{letter-spacing:54.384000px;}
.ls6{letter-spacing:63.720000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-72.000000px;}
.ws5{word-spacing:-60.000000px;}
.ws8{word-spacing:-22.080000px;}
.ws9{word-spacing:-21.840000px;}
.ws1{word-spacing:-18.384000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.054000px;}
.ws4{word-spacing:-15.000000px;}
.ws7{word-spacing:-13.140000px;}
.ws3{word-spacing:0.000000px;}
._17{margin-left:-4.260000px;}
._d{margin-left:-2.172000px;}
._0{margin-left:-1.002000px;}
._1{width:1.344000px;}
._14{width:2.352000px;}
._e{width:3.372000px;}
._a{width:4.380000px;}
._b{width:6.192000px;}
._10{width:7.428000px;}
._13{width:8.484000px;}
._12{width:9.840000px;}
._9{width:11.400000px;}
._15{width:12.486000px;}
._11{width:13.488000px;}
._f{width:16.044000px;}
._c{width:17.220000px;}
._16{width:18.300000px;}
._7{width:19.944000px;}
._6{width:21.180000px;}
._8{width:22.620000px;}
._1a{width:23.922000px;}
._18{width:25.380000px;}
._19{width:26.610000px;}
._4{width:336.180000px;}
._2{width:559.950000px;}
._3{width:642.780000px;}
._5{width:1180.080000px;}
.fc8{color:rgb(15,36,62);}
.fc5{color:transparent;}
.fc2{color:rgb(238,0,0);}
.fc7{color:rgb(51,51,51);}
.fc6{color:rgb(127,127,127);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:30.000000px;}
.fs8{font-size:36.000000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs9{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yd7{bottom:3.600000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y81{bottom:5.700000px;}
.y86{bottom:5.715000px;}
.y84{bottom:5.730000px;}
.y9e{bottom:5.985000px;}
.y3d{bottom:6.000000px;}
.yae{bottom:6.300000px;}
.ycb{bottom:6.900000px;}
.ycf{bottom:7.200000px;}
.yac{bottom:7.785000px;}
.yaa{bottom:7.815000px;}
.yb8{bottom:8.400000px;}
.yc8{bottom:8.415000px;}
.yb4{bottom:9.000000px;}
.yb0{bottom:9.615000px;}
.ydc{bottom:10.807500px;}
.yc6{bottom:12.000000px;}
.y5{bottom:12.337500px;}
.yb6{bottom:12.900000px;}
.yd8{bottom:17.400000px;}
.yd4{bottom:19.500000px;}
.ycc{bottom:20.745000px;}
.yd2{bottom:22.200000px;}
.yc9{bottom:22.215000px;}
.yce{bottom:24.600000px;}
.y3c{bottom:25.500000px;}
.ydb{bottom:27.892500px;}
.yc5{bottom:29.115000px;}
.y151{bottom:31.515000px;}
.yd0{bottom:38.400000px;}
.y3b{bottom:39.915000px;}
.y14a{bottom:41.580000px;}
.ydd{bottom:41.737500px;}
.y4{bottom:46.800000px;}
.y150{bottom:56.445000px;}
.y1{bottom:57.037500px;}
.y3a{bottom:57.315000px;}
.y149{bottom:62.625000px;}
.y3f{bottom:74.137500px;}
.y39{bottom:74.415000px;}
.y14f{bottom:81.045000px;}
.y3{bottom:81.337500px;}
.y38{bottom:91.815000px;}
.y14e{bottom:105.345000px;}
.y37{bottom:108.915000px;}
.ye0{bottom:111.337500px;}
.y32{bottom:114.337500px;}
.y10e{bottom:114.937500px;}
.y141{bottom:119.737500px;}
.y98{bottom:125.437500px;}
.y36{bottom:126.315000px;}
.ydf{bottom:128.737500px;}
.y31{bottom:132.037500px;}
.y10d{bottom:132.337500px;}
.y140{bottom:137.137500px;}
.y74{bottom:142.237500px;}
.yde{bottom:143.137500px;}
.y35{bottom:143.415000px;}
.y97{bottom:146.137500px;}
.yda{bottom:146.737500px;}
.y30{bottom:149.137500px;}
.y10c{bottom:149.437500px;}
.y13f{bottom:154.245000px;}
.y73{bottom:159.930000px;}
.y34{bottom:161.145000px;}
.y2f{bottom:166.545000px;}
.y10b{bottom:166.845000px;}
.y96{bottom:170.145000px;}
.y13e{bottom:171.630000px;}
.y72{bottom:177.045000px;}
.y2e{bottom:183.675000px;}
.y10a{bottom:183.975000px;}
.y95{bottom:186.975000px;}
.y13d{bottom:188.775000px;}
.yd9{bottom:189.375000px;}
.y71{bottom:194.475000px;}
.y109{bottom:201.375000px;}
.y13c{bottom:206.175000px;}
.y14d{bottom:208.245000px;}
.yd6{bottom:209.475000px;}
.y70{bottom:211.575000px;}
.y2d{bottom:212.775000px;}
.y108{bottom:218.475000px;}
.y13b{bottom:223.275000px;}
.yd5{bottom:227.475000px;}
.y6f{bottom:228.975000px;}
.y2c{bottom:230.175000px;}
.y107{bottom:235.875000px;}
.y13a{bottom:240.675000px;}
.y6e{bottom:246.075000px;}
.y2b{bottom:247.575000px;}
.yd3{bottom:247.875000px;}
.y106{bottom:252.975000px;}
.y139{bottom:257.775000px;}
.y6d{bottom:263.475000px;}
.y2a{bottom:264.675000px;}
.yd1{bottom:267.975000px;}
.y105{bottom:270.375000px;}
.y138{bottom:275.175000px;}
.y6c{bottom:280.575000px;}
.y29{bottom:282.075000px;}
.y104{bottom:288.075000px;}
.ycd{bottom:291.075000px;}
.y137{bottom:292.275000px;}
.y6b{bottom:297.975000px;}
.y103{bottom:308.175000px;}
.y136{bottom:309.675000px;}
.y28{bottom:310.875000px;}
.y102{bottom:325.575000px;}
.y6a{bottom:326.775000px;}
.y27{bottom:328.575000px;}
.yca{bottom:330.075000px;}
.y101{bottom:342.675000px;}
.y135{bottom:344.175000px;}
.y69{bottom:344.475000px;}
.y26{bottom:345.720000px;}
.yc7{bottom:351.705000px;}
.y100{bottom:360.120000px;}
.y134{bottom:361.320000px;}
.y68{bottom:361.605000px;}
.y25{bottom:363.120000px;}
.yc4{bottom:374.505000px;}
.yff{bottom:377.205000px;}
.y133{bottom:378.705000px;}
.y67{bottom:379.020000px;}
.y24{bottom:391.905000px;}
.yfe{bottom:394.620000px;}
.y132{bottom:395.820000px;}
.y66{bottom:407.820000px;}
.y23{bottom:409.620000px;}
.yfd{bottom:411.705000px;}
.y131{bottom:413.205000px;}
.yc3{bottom:422.205000px;}
.y65{bottom:425.505000px;}
.y22{bottom:426.705000px;}
.yfc{bottom:429.120000px;}
.y130{bottom:430.320000px;}
.yc2{bottom:441.705000px;}
.y64{bottom:442.620000px;}
.y21{bottom:444.120000px;}
.yfb{bottom:446.205000px;}
.y12f{bottom:447.705000px;}
.yc1{bottom:456.120000px;}
.y63{bottom:460.005000px;}
.y14c{bottom:460.905000px;}
.yfa{bottom:463.620000px;}
.y12e{bottom:464.820000px;}
.y20{bottom:472.905000px;}
.y62{bottom:477.120000px;}
.yc0{bottom:480.705000px;}
.y12d{bottom:482.205000px;}
.y1f{bottom:490.620000px;}
.y61{bottom:494.505000px;}
.ybf{bottom:498.120000px;}
.y12c{bottom:499.320000px;}
.y1e{bottom:507.705000px;}
.y60{bottom:511.620000px;}
.ybe{bottom:513.450000px;}
.yf9{bottom:515.250000px;}
.y12b{bottom:516.750000px;}
.ybd{bottom:524.250000px;}
.y1d{bottom:525.150000px;}
.y5f{bottom:529.050000px;}
.yf8{bottom:532.650000px;}
.y12a{bottom:534.450000px;}
.y94{bottom:536.850000px;}
.ybc{bottom:538.650000px;}
.y5e{bottom:546.150000px;}
.yf7{bottom:549.750000px;}
.y1c{bottom:553.950000px;}
.y93{bottom:554.250000px;}
.y129{bottom:554.550000px;}
.ybb{bottom:559.050000px;}
.yf6{bottom:567.150000px;}
.y92{bottom:571.350000px;}
.y1b{bottom:571.650000px;}
.y128{bottom:571.950000px;}
.y5d{bottom:575.250000px;}
.yf5{bottom:584.250000px;}
.yba{bottom:585.750000px;}
.y1a{bottom:588.750000px;}
.y127{bottom:589.050000px;}
.y5c{bottom:592.650000px;}
.yf4{bottom:601.650000px;}
.yb9{bottom:604.050000px;}
.y91{bottom:605.850000px;}
.y19{bottom:606.150000px;}
.y126{bottom:606.450000px;}
.y5b{bottom:610.050000px;}
.yb7{bottom:611.850000px;}
.yf3{bottom:618.750000px;}
.y90{bottom:623.550000px;}
.y18{bottom:623.850000px;}
.y5a{bottom:627.150000px;}
.y147{bottom:631.950000px;}
.yb5{bottom:634.950000px;}
.yf2{bottom:636.150000px;}
.y125{bottom:640.950000px;}
.y17{bottom:642.150000px;}
.y8f{bottom:643.950000px;}
.y59{bottom:644.550000px;}
.y146{bottom:649.050000px;}
.y124{bottom:658.050000px;}
.y8e{bottom:658.350000px;}
.y58{bottom:661.650000px;}
.yb3{bottom:662.550000px;}
.yf1{bottom:665.850000px;}
.y145{bottom:666.450000px;}
.y123{bottom:675.450000px;}
.y57{bottom:678.750000px;}
.y8d{bottom:679.050000px;}
.y144{bottom:683.595000px;}
.yf0{bottom:689.595000px;}
.yb2{bottom:690.195000px;}
.y122{bottom:692.595000px;}
.y33{bottom:695.880000px;}
.y56{bottom:697.095000px;}
.y8c{bottom:699.480000px;}
.y143{bottom:700.995000px;}
.yb1{bottom:708.480000px;}
.y121{bottom:709.980000px;}
.y55{bottom:715.380000px;}
.yaf{bottom:716.280000px;}
.y142{bottom:718.095000px;}
.yef{bottom:718.380000px;}
.y8b{bottom:720.195000px;}
.y120{bottom:727.080000px;}
.y54{bottom:733.695000px;}
.y8a{bottom:740.595000px;}
.y11f{bottom:744.495000px;}
.y53{bottom:752.280000px;}
.y89{bottom:761.280000px;}
.y11e{bottom:762.195000px;}
.yad{bottom:762.780000px;}
.y52{bottom:770.580000px;}
.y11d{bottom:781.695000px;}
.y88{bottom:781.995000px;}
.yab{bottom:783.795000px;}
.y51{bottom:796.080000px;}
.y87{bottom:802.380000px;}
.ya9{bottom:805.980000px;}
.y148{bottom:807.000000px;}
.y11c{bottom:813.495000px;}
.y50{bottom:813.795000px;}
.y85{bottom:823.080000px;}
.yee{bottom:823.695000px;}
.y14b{bottom:827.295000px;}
.y11b{bottom:830.580000px;}
.ya8{bottom:832.080000px;}
.yed{bottom:841.080000px;}
.y4f{bottom:842.580000px;}
.y83{bottom:843.795000px;}
.y11a{bottom:847.995000px;}
.ya7{bottom:856.125000px;}
.yec{bottom:858.525000px;}
.y4e{bottom:860.325000px;}
.y82{bottom:864.225000px;}
.y119{bottom:865.125000px;}
.ya6{bottom:874.425000px;}
.yeb{bottom:875.625000px;}
.y4d{bottom:877.425000px;}
.y118{bottom:882.525000px;}
.y80{bottom:884.925000px;}
.yea{bottom:893.025000px;}
.y117{bottom:899.625000px;}
.y16{bottom:900.525000px;}
.ya5{bottom:902.325000px;}
.y7f{bottom:905.325000px;}
.y4c{bottom:906.525000px;}
.y116{bottom:917.025000px;}
.ya4{bottom:919.425000px;}
.ye9{bottom:921.825000px;}
.y4b{bottom:923.925000px;}
.y15{bottom:927.825000px;}
.y7e{bottom:929.925000px;}
.y115{bottom:934.125000px;}
.ya3{bottom:935.325000px;}
.ye8{bottom:939.525000px;}
.ya2{bottom:947.025000px;}
.y14{bottom:949.725000px;}
.y7d{bottom:950.325000px;}
.y114{bottom:951.525000px;}
.y4a{bottom:953.025000px;}
.ye7{bottom:956.625000px;}
.ya1{bottom:961.725000px;}
.y13{bottom:967.125000px;}
.y7c{bottom:967.425000px;}
.y113{bottom:968.625000px;}
.y49{bottom:970.425000px;}
.ye6{bottom:974.025000px;}
.ya0{bottom:982.125000px;}
.y12{bottom:984.825000px;}
.y112{bottom:986.025000px;}
.y48{bottom:987.825000px;}
.ye5{bottom:991.125000px;}
.y7b{bottom:1001.925000px;}
.y9f{bottom:1002.825000px;}
.y111{bottom:1003.125000px;}
.y11{bottom:1008.525000px;}
.y47{bottom:1016.670000px;}
.y7a{bottom:1019.370000px;}
.y110{bottom:1020.570000px;}
.y9d{bottom:1023.270000px;}
.y10{bottom:1028.370000px;}
.y46{bottom:1034.370000px;}
.y79{bottom:1036.455000px;}
.ye4{bottom:1037.370000px;}
.y10f{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.y9c{bottom:1047.870000px;}
.y45{bottom:1051.455000px;}
.y78{bottom:1054.170000px;}
.ye3{bottom:1055.070000px;}
.yc{bottom:1062.570000px;}
.y9b{bottom:1067.370000px;}
.yb{bottom:1068.255000px;}
.y44{bottom:1068.870000px;}
.ye2{bottom:1072.170000px;}
.y9a{bottom:1082.070000px;}
.ya{bottom:1083.570000px;}
.y43{bottom:1085.955000px;}
.y77{bottom:1089.255000px;}
.ye1{bottom:1089.570000px;}
.y9{bottom:1097.955000px;}
.y42{bottom:1103.370000px;}
.y99{bottom:1106.370000px;}
.y76{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y41{bottom:1120.455000px;}
.y75{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y40{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y3e{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h29{height:8.466797px;}
.h5{height:12.700195px;}
.h27{height:17.400000px;}
.h23{height:19.500000px;}
.h18{height:19.785000px;}
.h16{height:19.800000px;}
.h17{height:19.837500px;}
.h1a{height:20.085000px;}
.h15{height:20.100000px;}
.h25{height:20.737500px;}
.h1c{height:20.947266px;}
.ha{height:21.000000px;}
.he{height:21.166992px;}
.h1e{height:21.585000px;}
.h1d{height:21.600000px;}
.h22{height:22.200000px;}
.h20{height:22.837500px;}
.h1f{height:23.400000px;}
.h1b{height:25.136719px;}
.h21{height:26.700000px;}
.h19{height:33.515625px;}
.h7{height:33.867188px;}
.h12{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.hc{height:38.100586px;}
.h26{height:38.400000px;}
.h13{height:39.471680px;}
.h28{height:41.737500px;}
.hb{height:41.894531px;}
.h4{height:42.333984px;}
.h24{height:42.900000px;}
.h14{height:43.681641px;}
.h11{height:43.857422px;}
.hd{height:50.273438px;}
.h6{height:50.800781px;}
.h10{height:51.996094px;}
.h2c{height:59.677734px;}
.h2b{height:61.435547px;}
.h1{height:65.645508px;}
.h2f{height:73.722656px;}
.h2a{height:77.100000px;}
.h2e{height:91.406250px;}
.h2{height:97.200000px;}
.hf{height:177.930000px;}
.h2d{height:245.475000px;}
.h0{height:1263.000000px;}
.w13{width:32.700000px;}
.we{width:41.737500px;}
.w4{width:72.300000px;}
.w17{width:81.337500px;}
.w15{width:102.337500px;}
.w11{width:105.637500px;}
.w16{width:106.537500px;}
.w3{width:108.000000px;}
.wf{width:117.637500px;}
.w9{width:174.345000px;}
.wa{width:174.375000px;}
.wb{width:174.645000px;}
.wc{width:174.675000px;}
.w12{width:190.875000px;}
.w6{width:253.275000px;}
.w14{width:379.605000px;}
.w10{width:400.905000px;}
.w5{width:483.450000px;}
.wd{width:537.750000px;}
.w8{width:700.125000px;}
.w7{width:730.125000px;}
.w18{width:737.100000px;}
.w19{width:740.625000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x33{left:7.485000px;}
.x2{left:10.799998px;}
.x14{left:16.200000px;}
.x3{left:22.200000px;}
.x4{left:23.400000px;}
.x29{left:49.500000px;}
.x2a{left:51.630000px;}
.x2b{left:58.200000px;}
.x2e{left:67.800000px;}
.x2d{left:69.892500px;}
.x43{left:75.937500px;}
.xb{left:78.337500px;}
.x1{left:81.037487px;}
.x22{left:83.137500px;}
.x13{left:84.937500px;}
.x42{left:87.937487px;}
.x3b{left:94.237500px;}
.x18{left:96.637500px;}
.x1e{left:97.837500px;}
.x16{left:108.037487px;}
.xe{left:116.745000px;}
.x1f{left:122.437500px;}
.x3c{left:127.537500px;}
.x21{left:151.537500px;}
.x9{left:153.629987px;}
.x3d{left:156.937500px;}
.x37{left:167.437500px;}
.x24{left:174.637500px;}
.x44{left:177.337500px;}
.x20{left:181.837500px;}
.x1d{left:190.837500px;}
.x1c{left:193.537500px;}
.x10{left:196.874987px;}
.x23{left:199.582500px;}
.x17{left:204.974987px;}
.x1a{left:212.182500px;}
.x19{left:214.582500px;}
.x31{left:235.882500px;}
.xc{left:241.567500px;}
.x1b{left:243.082500px;}
.x28{left:255.674987px;}
.x35{left:268.574987px;}
.x12{left:271.274987px;}
.x26{left:290.474987px;}
.x36{left:301.319987px;}
.x30{left:318.404987px;}
.x45{left:324.667500px;}
.x27{left:326.219987px;}
.x2f{left:346.319987px;}
.x3a{left:350.219987px;}
.x11{left:385.619987px;}
.x6{left:405.119987px;}
.xf{left:446.549987px;}
.x38{left:499.050000px;}
.x3e{left:507.750000px;}
.xd{left:561.780000px;}
.x15{left:574.994987px;}
.x39{left:605.280000px;}
.x3f{left:610.695000px;}
.x8{left:616.379987px;}
.x2c{left:622.095000px;}
.x32{left:635.895000px;}
.x7{left:648.194987px;}
.x34{left:678.225000px;}
.x5{left:698.624987px;}
.x25{left:703.124987px;}
.x40{left:717.825000px;}
.x41{left:785.369987px;}
.xa{left:812.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.426667pt;}
.ls15{letter-spacing:-0.373333pt;}
.ls9{letter-spacing:-0.213333pt;}
.ls1{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.021333pt;}
.lsf{letter-spacing:0.053333pt;}
.ls12{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.ls16{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.341333pt;}
.ls13{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.533333pt;}
.ls11{letter-spacing:0.693333pt;}
.ls10{letter-spacing:13.973333pt;}
.lsd{letter-spacing:40.640000pt;}
.ls14{letter-spacing:48.341333pt;}
.ls6{letter-spacing:56.640000pt;}
.wsa{word-spacing:-64.000000pt;}
.ws5{word-spacing:-53.333333pt;}
.ws8{word-spacing:-19.626667pt;}
.ws9{word-spacing:-19.413333pt;}
.ws1{word-spacing:-16.341333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.381333pt;}
.ws4{word-spacing:-13.333333pt;}
.ws7{word-spacing:-11.680000pt;}
.ws3{word-spacing:0.000000pt;}
._17{margin-left:-3.786667pt;}
._d{margin-left:-1.930667pt;}
._0{margin-left:-0.890667pt;}
._1{width:1.194667pt;}
._14{width:2.090667pt;}
._e{width:2.997333pt;}
._a{width:3.893333pt;}
._b{width:5.504000pt;}
._10{width:6.602667pt;}
._13{width:7.541333pt;}
._12{width:8.746667pt;}
._9{width:10.133333pt;}
._15{width:11.098667pt;}
._11{width:11.989333pt;}
._f{width:14.261333pt;}
._c{width:15.306667pt;}
._16{width:16.266667pt;}
._7{width:17.728000pt;}
._6{width:18.826667pt;}
._8{width:20.106667pt;}
._1a{width:21.264000pt;}
._18{width:22.560000pt;}
._19{width:23.653333pt;}
._4{width:298.826667pt;}
._2{width:497.733333pt;}
._3{width:571.360000pt;}
._5{width:1048.960000pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:26.666667pt;}
.fs8{font-size:32.000000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs9{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yd7{bottom:3.200000pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y81{bottom:5.066667pt;}
.y86{bottom:5.080000pt;}
.y84{bottom:5.093333pt;}
.y9e{bottom:5.320000pt;}
.y3d{bottom:5.333333pt;}
.yae{bottom:5.600000pt;}
.ycb{bottom:6.133333pt;}
.ycf{bottom:6.400000pt;}
.yac{bottom:6.920000pt;}
.yaa{bottom:6.946667pt;}
.yb8{bottom:7.466667pt;}
.yc8{bottom:7.480000pt;}
.yb4{bottom:8.000000pt;}
.yb0{bottom:8.546667pt;}
.ydc{bottom:9.606667pt;}
.yc6{bottom:10.666667pt;}
.y5{bottom:10.966667pt;}
.yb6{bottom:11.466667pt;}
.yd8{bottom:15.466667pt;}
.yd4{bottom:17.333333pt;}
.ycc{bottom:18.440000pt;}
.yd2{bottom:19.733333pt;}
.yc9{bottom:19.746667pt;}
.yce{bottom:21.866667pt;}
.y3c{bottom:22.666667pt;}
.ydb{bottom:24.793333pt;}
.yc5{bottom:25.880000pt;}
.y151{bottom:28.013333pt;}
.yd0{bottom:34.133333pt;}
.y3b{bottom:35.480000pt;}
.y14a{bottom:36.960000pt;}
.ydd{bottom:37.100000pt;}
.y4{bottom:41.600000pt;}
.y150{bottom:50.173333pt;}
.y1{bottom:50.700000pt;}
.y3a{bottom:50.946667pt;}
.y149{bottom:55.666667pt;}
.y3f{bottom:65.900000pt;}
.y39{bottom:66.146667pt;}
.y14f{bottom:72.040000pt;}
.y3{bottom:72.300000pt;}
.y38{bottom:81.613333pt;}
.y14e{bottom:93.640000pt;}
.y37{bottom:96.813333pt;}
.ye0{bottom:98.966667pt;}
.y32{bottom:101.633333pt;}
.y10e{bottom:102.166667pt;}
.y141{bottom:106.433333pt;}
.y98{bottom:111.500000pt;}
.y36{bottom:112.280000pt;}
.ydf{bottom:114.433333pt;}
.y31{bottom:117.366667pt;}
.y10d{bottom:117.633333pt;}
.y140{bottom:121.900000pt;}
.y74{bottom:126.433333pt;}
.yde{bottom:127.233333pt;}
.y35{bottom:127.480000pt;}
.y97{bottom:129.900000pt;}
.yda{bottom:130.433333pt;}
.y30{bottom:132.566667pt;}
.y10c{bottom:132.833333pt;}
.y13f{bottom:137.106667pt;}
.y73{bottom:142.160000pt;}
.y34{bottom:143.240000pt;}
.y2f{bottom:148.040000pt;}
.y10b{bottom:148.306667pt;}
.y96{bottom:151.240000pt;}
.y13e{bottom:152.560000pt;}
.y72{bottom:157.373333pt;}
.y2e{bottom:163.266667pt;}
.y10a{bottom:163.533333pt;}
.y95{bottom:166.200000pt;}
.y13d{bottom:167.800000pt;}
.yd9{bottom:168.333333pt;}
.y71{bottom:172.866667pt;}
.y109{bottom:179.000000pt;}
.y13c{bottom:183.266667pt;}
.y14d{bottom:185.106667pt;}
.yd6{bottom:186.200000pt;}
.y70{bottom:188.066667pt;}
.y2d{bottom:189.133333pt;}
.y108{bottom:194.200000pt;}
.y13b{bottom:198.466667pt;}
.yd5{bottom:202.200000pt;}
.y6f{bottom:203.533333pt;}
.y2c{bottom:204.600000pt;}
.y107{bottom:209.666667pt;}
.y13a{bottom:213.933333pt;}
.y6e{bottom:218.733333pt;}
.y2b{bottom:220.066667pt;}
.yd3{bottom:220.333333pt;}
.y106{bottom:224.866667pt;}
.y139{bottom:229.133333pt;}
.y6d{bottom:234.200000pt;}
.y2a{bottom:235.266667pt;}
.yd1{bottom:238.200000pt;}
.y105{bottom:240.333333pt;}
.y138{bottom:244.600000pt;}
.y6c{bottom:249.400000pt;}
.y29{bottom:250.733333pt;}
.y104{bottom:256.066667pt;}
.ycd{bottom:258.733333pt;}
.y137{bottom:259.800000pt;}
.y6b{bottom:264.866667pt;}
.y103{bottom:273.933333pt;}
.y136{bottom:275.266667pt;}
.y28{bottom:276.333333pt;}
.y102{bottom:289.400000pt;}
.y6a{bottom:290.466667pt;}
.y27{bottom:292.066667pt;}
.yca{bottom:293.400000pt;}
.y101{bottom:304.600000pt;}
.y135{bottom:305.933333pt;}
.y69{bottom:306.200000pt;}
.y26{bottom:307.306667pt;}
.yc7{bottom:312.626667pt;}
.y100{bottom:320.106667pt;}
.y134{bottom:321.173333pt;}
.y68{bottom:321.426667pt;}
.y25{bottom:322.773333pt;}
.yc4{bottom:332.893333pt;}
.yff{bottom:335.293333pt;}
.y133{bottom:336.626667pt;}
.y67{bottom:336.906667pt;}
.y24{bottom:348.360000pt;}
.yfe{bottom:350.773333pt;}
.y132{bottom:351.840000pt;}
.y66{bottom:362.506667pt;}
.y23{bottom:364.106667pt;}
.yfd{bottom:365.960000pt;}
.y131{bottom:367.293333pt;}
.yc3{bottom:375.293333pt;}
.y65{bottom:378.226667pt;}
.y22{bottom:379.293333pt;}
.yfc{bottom:381.440000pt;}
.y130{bottom:382.506667pt;}
.yc2{bottom:392.626667pt;}
.y64{bottom:393.440000pt;}
.y21{bottom:394.773333pt;}
.yfb{bottom:396.626667pt;}
.y12f{bottom:397.960000pt;}
.yc1{bottom:405.440000pt;}
.y63{bottom:408.893333pt;}
.y14c{bottom:409.693333pt;}
.yfa{bottom:412.106667pt;}
.y12e{bottom:413.173333pt;}
.y20{bottom:420.360000pt;}
.y62{bottom:424.106667pt;}
.yc0{bottom:427.293333pt;}
.y12d{bottom:428.626667pt;}
.y1f{bottom:436.106667pt;}
.y61{bottom:439.560000pt;}
.ybf{bottom:442.773333pt;}
.y12c{bottom:443.840000pt;}
.y1e{bottom:451.293333pt;}
.y60{bottom:454.773333pt;}
.ybe{bottom:456.400000pt;}
.yf9{bottom:458.000000pt;}
.y12b{bottom:459.333333pt;}
.ybd{bottom:466.000000pt;}
.y1d{bottom:466.800000pt;}
.y5f{bottom:470.266667pt;}
.yf8{bottom:473.466667pt;}
.y12a{bottom:475.066667pt;}
.y94{bottom:477.200000pt;}
.ybc{bottom:478.800000pt;}
.y5e{bottom:485.466667pt;}
.yf7{bottom:488.666667pt;}
.y1c{bottom:492.400000pt;}
.y93{bottom:492.666667pt;}
.y129{bottom:492.933333pt;}
.ybb{bottom:496.933333pt;}
.yf6{bottom:504.133333pt;}
.y92{bottom:507.866667pt;}
.y1b{bottom:508.133333pt;}
.y128{bottom:508.400000pt;}
.y5d{bottom:511.333333pt;}
.yf5{bottom:519.333333pt;}
.yba{bottom:520.666667pt;}
.y1a{bottom:523.333333pt;}
.y127{bottom:523.600000pt;}
.y5c{bottom:526.800000pt;}
.yf4{bottom:534.800000pt;}
.yb9{bottom:536.933333pt;}
.y91{bottom:538.533333pt;}
.y19{bottom:538.800000pt;}
.y126{bottom:539.066667pt;}
.y5b{bottom:542.266667pt;}
.yb7{bottom:543.866667pt;}
.yf3{bottom:550.000000pt;}
.y90{bottom:554.266667pt;}
.y18{bottom:554.533333pt;}
.y5a{bottom:557.466667pt;}
.y147{bottom:561.733333pt;}
.yb5{bottom:564.400000pt;}
.yf2{bottom:565.466667pt;}
.y125{bottom:569.733333pt;}
.y17{bottom:570.800000pt;}
.y8f{bottom:572.400000pt;}
.y59{bottom:572.933333pt;}
.y146{bottom:576.933333pt;}
.y124{bottom:584.933333pt;}
.y8e{bottom:585.200000pt;}
.y58{bottom:588.133333pt;}
.yb3{bottom:588.933333pt;}
.yf1{bottom:591.866667pt;}
.y145{bottom:592.400000pt;}
.y123{bottom:600.400000pt;}
.y57{bottom:603.333333pt;}
.y8d{bottom:603.600000pt;}
.y144{bottom:607.640000pt;}
.yf0{bottom:612.973333pt;}
.yb2{bottom:613.506667pt;}
.y122{bottom:615.640000pt;}
.y33{bottom:618.560000pt;}
.y56{bottom:619.640000pt;}
.y8c{bottom:621.760000pt;}
.y143{bottom:623.106667pt;}
.yb1{bottom:629.760000pt;}
.y121{bottom:631.093333pt;}
.y55{bottom:635.893333pt;}
.yaf{bottom:636.693333pt;}
.y142{bottom:638.306667pt;}
.yef{bottom:638.560000pt;}
.y8b{bottom:640.173333pt;}
.y120{bottom:646.293333pt;}
.y54{bottom:652.173333pt;}
.y8a{bottom:658.306667pt;}
.y11f{bottom:661.773333pt;}
.y53{bottom:668.693333pt;}
.y89{bottom:676.693333pt;}
.y11e{bottom:677.506667pt;}
.yad{bottom:678.026667pt;}
.y52{bottom:684.960000pt;}
.y11d{bottom:694.840000pt;}
.y88{bottom:695.106667pt;}
.yab{bottom:696.706667pt;}
.y51{bottom:707.626667pt;}
.y87{bottom:713.226667pt;}
.ya9{bottom:716.426667pt;}
.y148{bottom:717.333333pt;}
.y11c{bottom:723.106667pt;}
.y50{bottom:723.373333pt;}
.y85{bottom:731.626667pt;}
.yee{bottom:732.173333pt;}
.y14b{bottom:735.373333pt;}
.y11b{bottom:738.293333pt;}
.ya8{bottom:739.626667pt;}
.yed{bottom:747.626667pt;}
.y4f{bottom:748.960000pt;}
.y83{bottom:750.040000pt;}
.y11a{bottom:753.773333pt;}
.ya7{bottom:761.000000pt;}
.yec{bottom:763.133333pt;}
.y4e{bottom:764.733333pt;}
.y82{bottom:768.200000pt;}
.y119{bottom:769.000000pt;}
.ya6{bottom:777.266667pt;}
.yeb{bottom:778.333333pt;}
.y4d{bottom:779.933333pt;}
.y118{bottom:784.466667pt;}
.y80{bottom:786.600000pt;}
.yea{bottom:793.800000pt;}
.y117{bottom:799.666667pt;}
.y16{bottom:800.466667pt;}
.ya5{bottom:802.066667pt;}
.y7f{bottom:804.733333pt;}
.y4c{bottom:805.800000pt;}
.y116{bottom:815.133333pt;}
.ya4{bottom:817.266667pt;}
.ye9{bottom:819.400000pt;}
.y4b{bottom:821.266667pt;}
.y15{bottom:824.733333pt;}
.y7e{bottom:826.600000pt;}
.y115{bottom:830.333333pt;}
.ya3{bottom:831.400000pt;}
.ye8{bottom:835.133333pt;}
.ya2{bottom:841.800000pt;}
.y14{bottom:844.200000pt;}
.y7d{bottom:844.733333pt;}
.y114{bottom:845.800000pt;}
.y4a{bottom:847.133333pt;}
.ye7{bottom:850.333333pt;}
.ya1{bottom:854.866667pt;}
.y13{bottom:859.666667pt;}
.y7c{bottom:859.933333pt;}
.y113{bottom:861.000000pt;}
.y49{bottom:862.600000pt;}
.ye6{bottom:865.800000pt;}
.ya0{bottom:873.000000pt;}
.y12{bottom:875.400000pt;}
.y112{bottom:876.466667pt;}
.y48{bottom:878.066667pt;}
.ye5{bottom:881.000000pt;}
.y7b{bottom:890.600000pt;}
.y9f{bottom:891.400000pt;}
.y111{bottom:891.666667pt;}
.y11{bottom:896.466667pt;}
.y47{bottom:903.706667pt;}
.y7a{bottom:906.106667pt;}
.y110{bottom:907.173333pt;}
.y9d{bottom:909.573333pt;}
.y10{bottom:914.106667pt;}
.y46{bottom:919.440000pt;}
.y79{bottom:921.293333pt;}
.ye4{bottom:922.106667pt;}
.y10f{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.y9c{bottom:931.440000pt;}
.y45{bottom:934.626667pt;}
.y78{bottom:937.040000pt;}
.ye3{bottom:937.840000pt;}
.yc{bottom:944.506667pt;}
.y9b{bottom:948.773333pt;}
.yb{bottom:949.560000pt;}
.y44{bottom:950.106667pt;}
.ye2{bottom:953.040000pt;}
.y9a{bottom:961.840000pt;}
.ya{bottom:963.173333pt;}
.y43{bottom:965.293333pt;}
.y77{bottom:968.226667pt;}
.ye1{bottom:968.506667pt;}
.y9{bottom:975.960000pt;}
.y42{bottom:980.773333pt;}
.y99{bottom:983.440000pt;}
.y76{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y41{bottom:995.960000pt;}
.y75{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y40{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y3e{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h29{height:7.526042pt;}
.h5{height:11.289062pt;}
.h27{height:15.466667pt;}
.h23{height:17.333333pt;}
.h18{height:17.586667pt;}
.h16{height:17.600000pt;}
.h17{height:17.633333pt;}
.h1a{height:17.853333pt;}
.h15{height:17.866667pt;}
.h25{height:18.433333pt;}
.h1c{height:18.619792pt;}
.ha{height:18.666667pt;}
.he{height:18.815104pt;}
.h1e{height:19.186667pt;}
.h1d{height:19.200000pt;}
.h22{height:19.733333pt;}
.h20{height:20.300000pt;}
.h1f{height:20.800000pt;}
.h1b{height:22.343750pt;}
.h21{height:23.733333pt;}
.h19{height:29.791667pt;}
.h7{height:30.104167pt;}
.h12{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.hc{height:33.867188pt;}
.h26{height:34.133333pt;}
.h13{height:35.085938pt;}
.h28{height:37.100000pt;}
.hb{height:37.239583pt;}
.h4{height:37.630208pt;}
.h24{height:38.133333pt;}
.h14{height:38.828125pt;}
.h11{height:38.984375pt;}
.hd{height:44.687500pt;}
.h6{height:45.156250pt;}
.h10{height:46.218750pt;}
.h2c{height:53.046875pt;}
.h2b{height:54.609375pt;}
.h1{height:58.351562pt;}
.h2f{height:65.531250pt;}
.h2a{height:68.533333pt;}
.h2e{height:81.250000pt;}
.h2{height:86.400000pt;}
.hf{height:158.160000pt;}
.h2d{height:218.200000pt;}
.h0{height:1122.666667pt;}
.w13{width:29.066667pt;}
.we{width:37.100000pt;}
.w4{width:64.266667pt;}
.w17{width:72.300000pt;}
.w15{width:90.966667pt;}
.w11{width:93.900000pt;}
.w16{width:94.700000pt;}
.w3{width:96.000000pt;}
.wf{width:104.566667pt;}
.w9{width:154.973333pt;}
.wa{width:155.000000pt;}
.wb{width:155.240000pt;}
.wc{width:155.266667pt;}
.w12{width:169.666667pt;}
.w6{width:225.133333pt;}
.w14{width:337.426667pt;}
.w10{width:356.360000pt;}
.w5{width:429.733333pt;}
.wd{width:478.000000pt;}
.w8{width:622.333333pt;}
.w7{width:649.000000pt;}
.w18{width:655.200000pt;}
.w19{width:658.333333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x33{left:6.653333pt;}
.x2{left:9.599999pt;}
.x14{left:14.400000pt;}
.x3{left:19.733333pt;}
.x4{left:20.800000pt;}
.x29{left:44.000000pt;}
.x2a{left:45.893333pt;}
.x2b{left:51.733333pt;}
.x2e{left:60.266667pt;}
.x2d{left:62.126667pt;}
.x43{left:67.500000pt;}
.xb{left:69.633333pt;}
.x1{left:72.033322pt;}
.x22{left:73.900000pt;}
.x13{left:75.500000pt;}
.x42{left:78.166655pt;}
.x3b{left:83.766667pt;}
.x18{left:85.900000pt;}
.x1e{left:86.966667pt;}
.x16{left:96.033322pt;}
.xe{left:103.773333pt;}
.x1f{left:108.833333pt;}
.x3c{left:113.366667pt;}
.x21{left:134.700000pt;}
.x9{left:136.559988pt;}
.x3d{left:139.500000pt;}
.x37{left:148.833333pt;}
.x24{left:155.233333pt;}
.x44{left:157.633333pt;}
.x20{left:161.633333pt;}
.x1d{left:169.633333pt;}
.x1c{left:172.033333pt;}
.x10{left:174.999988pt;}
.x23{left:177.406667pt;}
.x17{left:182.199988pt;}
.x1a{left:188.606667pt;}
.x19{left:190.740000pt;}
.x31{left:209.673333pt;}
.xc{left:214.726667pt;}
.x1b{left:216.073333pt;}
.x28{left:227.266655pt;}
.x35{left:238.733322pt;}
.x12{left:241.133322pt;}
.x26{left:258.199988pt;}
.x36{left:267.839988pt;}
.x30{left:283.026655pt;}
.x45{left:288.593333pt;}
.x27{left:289.973322pt;}
.x2f{left:307.839988pt;}
.x3a{left:311.306655pt;}
.x11{left:342.773322pt;}
.x6{left:360.106655pt;}
.xf{left:396.933322pt;}
.x38{left:443.600000pt;}
.x3e{left:451.333333pt;}
.xd{left:499.360000pt;}
.x15{left:511.106655pt;}
.x39{left:538.026667pt;}
.x3f{left:542.840000pt;}
.x8{left:547.893322pt;}
.x2c{left:552.973333pt;}
.x32{left:565.240000pt;}
.x7{left:576.173322pt;}
.x34{left:602.866667pt;}
.x5{left:620.999988pt;}
.x25{left:624.999988pt;}
.x40{left:638.066667pt;}
.x41{left:698.106655pt;}
.xa{left:722.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; }
  