
    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_56ab058cee2b168d89a42670.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_2169af4630ff3d6d7a482145.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_6cf6d7c9e0d560f8bdcda764.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_d510a75b51d74cd542bc6bca.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_45f49af0207ebc9edacafcf5.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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d0b6cc51e8edf1c86f7f5d58.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_0777dc0506bc400fc814a6b8.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.885742;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);}
.vc{vertical-align:-29.400000px;}
.va{vertical-align:-16.800000px;}
.v1{vertical-align:-14.400000px;}
.v4{vertical-align:-10.800000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:14.460000px;}
.vb{vertical-align:16.770000px;}
.v8{vertical-align:27.660000px;}
.v3{vertical-align:36.600000px;}
.v9{vertical-align:37.740000px;}
.v7{vertical-align:42.660000px;}
.v2{vertical-align:47.400000px;}
.v5{vertical-align:94.800000px;}
.ls9{letter-spacing:-3.000000px;}
.lsb{letter-spacing:-2.994000px;}
.ls8{letter-spacing:-2.988000px;}
.lsa{letter-spacing:-2.700000px;}
.ls29{letter-spacing:-0.120000px;}
.ls7{letter-spacing:-0.012000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls14{letter-spacing:0.015000px;}
.ls21{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.024000px;}
.ls1b{letter-spacing:0.048000px;}
.lsd{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.150000px;}
.ls1a{letter-spacing:0.168000px;}
.ls34{letter-spacing:0.228000px;}
.ls17{letter-spacing:0.240000px;}
.lsf{letter-spacing:0.264000px;}
.ls28{letter-spacing:0.276000px;}
.ls1c{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls31{letter-spacing:0.660000px;}
.lsc{letter-spacing:1.200000px;}
.ls2b{letter-spacing:1.284000px;}
.ls12{letter-spacing:1.344000px;}
.ls24{letter-spacing:1.404000px;}
.ls36{letter-spacing:1.560000px;}
.ls27{letter-spacing:2.616000px;}
.ls16{letter-spacing:2.688000px;}
.ls22{letter-spacing:2.871000px;}
.ls25{letter-spacing:3.216000px;}
.ls10{letter-spacing:3.264000px;}
.ls15{letter-spacing:3.276000px;}
.ls11{letter-spacing:3.288000px;}
.ls2c{letter-spacing:3.336000px;}
.ls26{letter-spacing:3.348000px;}
.ls2f{letter-spacing:4.260000px;}
.lse{letter-spacing:8.400000px;}
.ls2d{letter-spacing:9.000000px;}
.ls32{letter-spacing:9.900000px;}
.ls20{letter-spacing:15.756000px;}
.ls1f{letter-spacing:19.011000px;}
.ls1d{letter-spacing:19.071000px;}
.ls1e{letter-spacing:19.131000px;}
.ls19{letter-spacing:20.166000px;}
.ls18{letter-spacing:22.476000px;}
.ls13{letter-spacing:23.076000px;}
.ls23{letter-spacing:33.984000px;}
.ls33{letter-spacing:34.260000px;}
.ls2a{letter-spacing:39.540000px;}
.ls30{letter-spacing:50.340000px;}
.ls2e{letter-spacing:54.060000px;}
.ls4{letter-spacing:63.720000px;}
.ls35{letter-spacing:144.252000px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.wsa{word-spacing:-60.000000px;}
.wsd{word-spacing:-51.276000px;}
.ws13{word-spacing:-51.048000px;}
.wsf{word-spacing:-51.000000px;}
.ws12{word-spacing:-42.000000px;}
.ws15{word-spacing:-41.880000px;}
.ws14{word-spacing:-29.064000px;}
.ws11{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.ws16{word-spacing:-16.500000px;}
.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;}
.wsb{word-spacing:0.000000px;}
.ws10{word-spacing:12.531000px;}
.wse{word-spacing:17.598000px;}
._2f{margin-left:-15.225000px;}
._30{margin-left:-14.124000px;}
._2e{margin-left:-9.696000px;}
._2c{margin-left:-4.416000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._d{width:2.574000px;}
._c{width:3.852000px;}
._6{width:4.896000px;}
._27{width:6.084000px;}
._e{width:7.128000px;}
._a{width:9.000000px;}
._b{width:10.152000px;}
._31{width:11.232000px;}
._32{width:12.312000px;}
._8{width:15.048000px;}
._9{width:16.200000px;}
._34{width:17.958000px;}
._7{width:19.182000px;}
._13{width:21.168000px;}
._f{width:22.752000px;}
._26{width:24.264000px;}
._19{width:25.920000px;}
._37{width:27.216000px;}
._24{width:28.440000px;}
._25{width:29.520000px;}
._4{width:30.816000px;}
._5{width:31.896000px;}
._12{width:33.006000px;}
._1b{width:34.488000px;}
._1c{width:35.784000px;}
._16{width:37.224000px;}
._17{width:38.592000px;}
._2d{width:40.176000px;}
._44{width:41.544000px;}
._3d{width:43.128000px;}
._45{width:44.280000px;}
._22{width:46.296000px;}
._3b{width:49.176000px;}
._33{width:50.256000px;}
._3c{width:51.282000px;}
._2b{width:53.784000px;}
._10{width:54.792000px;}
._11{width:55.902000px;}
._23{width:57.138000px;}
._14{width:59.760000px;}
._15{width:60.840000px;}
._28{width:64.128000px;}
._29{width:65.400000px;}
._2a{width:67.824000px;}
._36{width:71.352000px;}
._40{width:72.432000px;}
._47{width:75.600000px;}
._39{width:78.696000px;}
._4b{width:79.764000px;}
._43{width:82.296000px;}
._1f{width:87.048000px;}
._20{width:88.128000px;}
._1d{width:91.368000px;}
._1e{width:92.592000px;}
._3a{width:100.584000px;}
._18{width:102.696000px;}
._35{width:104.736000px;}
._21{width:106.200000px;}
._3f{width:116.064000px;}
._46{width:124.560000px;}
._38{width:134.856000px;}
._3e{width:137.640000px;}
._41{width:139.416000px;}
._49{width:143.280000px;}
._4a{width:144.648000px;}
._1a{width:156.960000px;}
._48{width:182.160000px;}
._42{width:230.832000px;}
._4c{width:262.878000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:42.000000px;}
.fs6{font-size:51.000000px;}
.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;}
.y22{bottom:3.900000px;}
.y7{bottom:5.400000px;}
.yce{bottom:5.850000px;}
.ycb{bottom:5.985000px;}
.yb{bottom:6.000000px;}
.yd0{bottom:6.735000px;}
.yc{bottom:6.750000px;}
.y7e{bottom:6.900000px;}
.y79{bottom:6.915000px;}
.y7b{bottom:7.050000px;}
.y77{bottom:7.065000px;}
.ycf{bottom:8.700000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y21{bottom:24.600000px;}
.yd4{bottom:25.650000px;}
.yca{bottom:25.785000px;}
.ycd{bottom:26.535000px;}
.yf8{bottom:30.750000px;}
.y7d{bottom:30.795000px;}
.yfb{bottom:30.930000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y20{bottom:45.300000px;}
.yd3{bottom:45.592500px;}
.yc9{bottom:45.600000px;}
.yd8{bottom:45.630000px;}
.yf7{bottom:54.607500px;}
.y3{bottom:57.637500px;}
.yd2{bottom:65.392500px;}
.yc8{bottom:65.400000px;}
.yd7{bottom:65.430000px;}
.y1f{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.yd6{bottom:85.230000px;}
.y1e{bottom:86.700000px;}
.yf6{bottom:105.637500px;}
.y1d{bottom:107.400000px;}
.y3c{bottom:107.587500px;}
.y126{bottom:108.487500px;}
.yd1{bottom:112.987500px;}
.y68{bottom:119.137500px;}
.y97{bottom:122.587500px;}
.y1c{bottom:128.100000px;}
.y3b{bottom:131.287500px;}
.y125{bottom:132.337500px;}
.y67{bottom:143.137500px;}
.y96{bottom:146.287500px;}
.y1b{bottom:148.800000px;}
.yae{bottom:149.287500px;}
.y66{bottom:152.580000px;}
.y3a{bottom:155.130000px;}
.y124{bottom:156.045000px;}
.y1a{bottom:169.500000px;}
.y95{bottom:172.680000px;}
.yad{bottom:173.445000px;}
.y123{bottom:176.595000px;}
.yf5{bottom:177.795000px;}
.y39{bottom:178.995000px;}
.y65{bottom:186.180000px;}
.ycc{bottom:193.095000px;}
.y122{bottom:195.495000px;}
.yac{bottom:197.145000px;}
.y94{bottom:199.380000px;}
.y38{bottom:202.695000px;}
.yf4{bottom:209.295000px;}
.y64{bottom:210.045000px;}
.y121{bottom:214.545000px;}
.yab{bottom:220.995000px;}
.y93{bottom:226.080000px;}
.y37{bottom:226.545000px;}
.yf3{bottom:233.130000px;}
.y120{bottom:233.445000px;}
.y63{bottom:233.745000px;}
.yc7{bottom:234.345000px;}
.yaa{bottom:244.995000px;}
.y92{bottom:250.245000px;}
.y36{bottom:250.395000px;}
.y11f{bottom:252.495000px;}
.yf2{bottom:256.995000px;}
.y62{bottom:260.130000px;}
.ya9{bottom:269.295000px;}
.y11e{bottom:271.395000px;}
.y91{bottom:273.945000px;}
.y35{bottom:274.080000px;}
.yf1{bottom:280.695000px;}
.y61{bottom:284.295000px;}
.y11d{bottom:290.445000px;}
.ya8{bottom:293.295000px;}
.y34{bottom:297.945000px;}
.y90{bottom:300.330000px;}
.yf0{bottom:304.545000px;}
.y11c{bottom:309.345000px;}
.y60{bottom:310.695000px;}
.ya7{bottom:317.130000px;}
.yc6{bottom:321.495000px;}
.y33{bottom:321.795000px;}
.y8f{bottom:324.495000px;}
.yef{bottom:328.395000px;}
.y5f{bottom:334.995000px;}
.ya6{bottom:340.995000px;}
.yc5{bottom:345.345000px;}
.y32{bottom:345.645000px;}
.y11b{bottom:347.295000px;}
.y8e{bottom:348.195000px;}
.yee{bottom:352.095000px;}
.y5e{bottom:358.995000px;}
.ya5{bottom:364.695000px;}
.y11a{bottom:366.345000px;}
.yc4{bottom:369.045000px;}
.y31{bottom:369.345000px;}
.y8d{bottom:372.045000px;}
.yed{bottom:375.945000px;}
.y5d{bottom:381.825000px;}
.y119{bottom:385.275000px;}
.ya4{bottom:388.575000px;}
.yc3{bottom:392.925000px;}
.y30{bottom:393.225000px;}
.y8c{bottom:396.075000px;}
.y5b{bottom:396.525000px;}
.yec{bottom:399.825000px;}
.y118{bottom:404.325000px;}
.y5a{bottom:405.525000px;}
.ya3{bottom:412.425000px;}
.yc2{bottom:416.775000px;}
.y2f{bottom:417.075000px;}
.y8b{bottom:422.775000px;}
.y117{bottom:423.225000px;}
.yeb{bottom:423.525000px;}
.y5c{bottom:432.525000px;}
.ya2{bottom:436.125000px;}
.yc1{bottom:440.625000px;}
.y2e{bottom:440.775000px;}
.y116{bottom:442.275000px;}
.yea{bottom:447.375000px;}
.y59{bottom:448.425000px;}
.y8a{bottom:449.475000px;}
.ya1{bottom:459.975000px;}
.y115{bottom:461.175000px;}
.yc0{bottom:464.325000px;}
.y2d{bottom:464.625000px;}
.ye9{bottom:471.225000px;}
.y58{bottom:472.275000px;}
.y89{bottom:476.175000px;}
.y114{bottom:480.225000px;}
.ya0{bottom:483.825000px;}
.ybf{bottom:488.175000px;}
.y2c{bottom:488.475000px;}
.ye8{bottom:494.925000px;}
.y57{bottom:496.125000px;}
.y113{bottom:502.425000px;}
.y88{bottom:502.725000px;}
.y9f{bottom:507.525000px;}
.ybe{bottom:512.025000px;}
.y2b{bottom:512.175000px;}
.ye7{bottom:518.775000px;}
.y56{bottom:519.825000px;}
.y112{bottom:526.275000px;}
.y87{bottom:526.875000px;}
.y9e{bottom:531.375000px;}
.ybd{bottom:535.725000px;}
.y2a{bottom:536.025000px;}
.ye6{bottom:542.625000px;}
.y55{bottom:543.675000px;}
.y111{bottom:550.125000px;}
.y86{bottom:551.925000px;}
.y9d{bottom:555.225000px;}
.ybc{bottom:559.575000px;}
.y29{bottom:559.875000px;}
.y85{bottom:560.925000px;}
.ye5{bottom:566.475000px;}
.y54{bottom:567.525000px;}
.y110{bottom:573.825000px;}
.y9c{bottom:579.075000px;}
.ybb{bottom:583.425000px;}
.y28{bottom:583.575000px;}
.ye4{bottom:590.175000px;}
.y84{bottom:590.925000px;}
.y53{bottom:593.925000px;}
.y10f{bottom:597.675000px;}
.y9b{bottom:602.775000px;}
.yba{bottom:607.125000px;}
.y27{bottom:607.425000px;}
.ye3{bottom:614.025000px;}
.y83{bottom:614.775000px;}
.y52{bottom:620.625000px;}
.y10e{bottom:621.525000px;}
.y9a{bottom:626.625000px;}
.yb9{bottom:630.975000px;}
.y26{bottom:631.275000px;}
.ye2{bottom:637.875000px;}
.y82{bottom:638.625000px;}
.y10d{bottom:645.225000px;}
.y51{bottom:647.175000px;}
.y99{bottom:650.475000px;}
.yb8{bottom:654.825000px;}
.ye1{bottom:661.575000px;}
.y81{bottom:662.325000px;}
.y25{bottom:663.975000px;}
.y10c{bottom:669.075000px;}
.y50{bottom:673.875000px;}
.y98{bottom:674.175000px;}
.yb7{bottom:678.525000px;}
.y24{bottom:680.775000px;}
.ye0{bottom:685.425000px;}
.y80{bottom:686.175000px;}
.y10b{bottom:692.925000px;}
.y4f{bottom:698.025000px;}
.yb6{bottom:702.375000px;}
.ydf{bottom:705.375000px;}
.y7f{bottom:710.025000px;}
.y10a{bottom:716.625000px;}
.y4e{bottom:721.875000px;}
.y23{bottom:722.175000px;}
.yb5{bottom:726.225000px;}
.y7c{bottom:727.575000px;}
.y109{bottom:740.520000px;}
.y19{bottom:742.920000px;}
.y4d{bottom:745.620000px;}
.yb4{bottom:749.970000px;}
.y108{bottom:766.920000px;}
.y4c{bottom:769.470000px;}
.yb3{bottom:769.920000px;}
.y7a{bottom:775.920000px;}
.y107{bottom:791.070000px;}
.y4b{bottom:793.320000px;}
.y78{bottom:800.505000px;}
.y106{bottom:814.770000px;}
.y4a{bottom:817.020000px;}
.y76{bottom:824.955000px;}
.y105{bottom:838.620000px;}
.y49{bottom:840.870000px;}
.y75{bottom:859.170000px;}
.y104{bottom:862.470000px;}
.y48{bottom:864.720000px;}
.y74{bottom:883.320000px;}
.y103{bottom:886.170000px;}
.y47{bottom:888.420000px;}
.y73{bottom:907.020000px;}
.y102{bottom:910.020000px;}
.y46{bottom:912.270000px;}
.yde{bottom:930.570000px;}
.y72{bottom:930.870000px;}
.y18{bottom:932.820000px;}
.y101{bottom:933.870000px;}
.y45{bottom:936.120000px;}
.y17{bottom:952.020000px;}
.ydd{bottom:954.420000px;}
.y71{bottom:954.720000px;}
.y100{bottom:957.720000px;}
.y44{bottom:959.970000px;}
.y16{bottom:972.720000px;}
.ydc{bottom:978.270000px;}
.y70{bottom:978.420000px;}
.yff{bottom:981.420000px;}
.y43{bottom:983.670000px;}
.y15{bottom:993.420000px;}
.ydb{bottom:1001.970000px;}
.y6f{bottom:1002.270000px;}
.yfe{bottom:1005.270000px;}
.y42{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.yda{bottom:1025.820000px;}
.y6e{bottom:1026.120000px;}
.yfd{bottom:1029.120000px;}
.y41{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.yd9{bottom:1049.670000px;}
.y6d{bottom:1049.820000px;}
.yfc{bottom:1052.820000px;}
.y40{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.yd5{bottom:1067.220000px;}
.yfa{bottom:1070.370000px;}
.y6c{bottom:1073.670000px;}
.y11{bottom:1076.220000px;}
.yb2{bottom:1078.470000px;}
.y3f{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.y6b{bottom:1098.000000px;}
.yb1{bottom:1102.350000px;}
.y3e{bottom:1102.800000px;}
.yf9{bottom:1118.850000px;}
.y6a{bottom:1123.950000px;}
.yb0{bottom:1126.050000px;}
.y3d{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.y69{bottom:1148.250000px;}
.yaf{bottom:1150.050000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h10{height:20.737500px;}
.h1a{height:23.700000px;}
.h19{height:23.850000px;}
.h21{height:40.500000px;}
.h11{height:41.400000px;}
.h22{height:42.070312px;}
.h20{height:42.333984px;}
.h6{height:45.300000px;}
.h29{height:46.277344px;}
.h26{height:47.550000px;}
.h1b{height:47.587500px;}
.h27{height:47.737500px;}
.h3{height:48.600000px;}
.hd{height:50.484375px;}
.ha{height:50.800781px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h1f{height:60.468750px;}
.h12{height:61.670545px;}
.he{height:64.775391px;}
.h9{height:65.645508px;}
.h28{height:67.837600px;}
.hc{height:70.664062px;}
.h25{height:71.400000px;}
.hb{height:72.562500px;}
.h1d{height:74.004654px;}
.h1e{height:79.350000px;}
.h2{height:82.441406px;}
.h15{height:88.154297px;}
.h24{height:99.187500px;}
.h23{height:103.710938px;}
.h1c{height:106.664062px;}
.h18{height:108.434062px;}
.h13{height:124.453125px;}
.h14{height:135.554297px;}
.h17{height:137.997656px;}
.h16{height:165.464062px;}
.hf{height:186.300000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w9{width:46.500000px;}
.we{width:83.850000px;}
.w11{width:83.887500px;}
.wd{width:97.500000px;}
.w10{width:101.235000px;}
.wc{width:101.287500px;}
.wb{width:106.950000px;}
.wf{width:106.987500px;}
.w14{width:163.200000px;}
.w12{width:163.245000px;}
.w6{width:178.350000px;}
.w13{width:227.880000px;}
.w15{width:227.895000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.wa{width:344.595000px;}
.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;}
.x2a{left:92.250000px;}
.x10{left:95.099987px;}
.x21{left:96.599987px;}
.x1b{left:100.200000px;}
.x1a{left:104.700000px;}
.xd{left:106.980000px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x11{left:135.937487px;}
.x2b{left:151.095000px;}
.x23{left:173.129987px;}
.x22{left:193.694987px;}
.x2f{left:207.345000px;}
.x2c{left:253.095000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x2d{left:351.345000px;}
.x2e{left:434.474987px;}
.x15{left:454.124987px;}
.x1d{left:457.274987px;}
.x1f{left:484.274987px;}
.x24{left:505.275000px;}
.x1e{left:510.374987px;}
.x18{left:523.724987px;}
.x12{left:531.974987px;}
.x13{left:553.874987px;}
.x27{left:565.725000px;}
.x19{left:578.174987px;}
.x17{left:611.024987px;}
.x30{left:621.975000px;}
.xc{left:625.425000px;}
.x14{left:661.469987px;}
.x28{left:667.770000px;}
.xf{left:713.655000px;}
.x25{left:762.569987px;}
.x29{left:766.020000px;}
.x2{left:819.119987px;}
.x26{left:846.569987px;}
.x16{left:850.619987px;}
@media print{
.vc{vertical-align:-26.133333pt;}
.va{vertical-align:-14.933333pt;}
.v1{vertical-align:-12.800000pt;}
.v4{vertical-align:-9.600000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:12.853333pt;}
.vb{vertical-align:14.906667pt;}
.v8{vertical-align:24.586667pt;}
.v3{vertical-align:32.533333pt;}
.v9{vertical-align:33.546667pt;}
.v7{vertical-align:37.920000pt;}
.v2{vertical-align:42.133333pt;}
.v5{vertical-align:84.266667pt;}
.ls9{letter-spacing:-2.666667pt;}
.lsb{letter-spacing:-2.661333pt;}
.ls8{letter-spacing:-2.656000pt;}
.lsa{letter-spacing:-2.400000pt;}
.ls29{letter-spacing:-0.106667pt;}
.ls7{letter-spacing:-0.010667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls14{letter-spacing:0.013333pt;}
.ls21{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.021333pt;}
.ls1b{letter-spacing:0.042667pt;}
.lsd{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.133333pt;}
.ls1a{letter-spacing:0.149333pt;}
.ls34{letter-spacing:0.202667pt;}
.ls17{letter-spacing:0.213333pt;}
.lsf{letter-spacing:0.234667pt;}
.ls28{letter-spacing:0.245333pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls31{letter-spacing:0.586667pt;}
.lsc{letter-spacing:1.066667pt;}
.ls2b{letter-spacing:1.141333pt;}
.ls12{letter-spacing:1.194667pt;}
.ls24{letter-spacing:1.248000pt;}
.ls36{letter-spacing:1.386667pt;}
.ls27{letter-spacing:2.325333pt;}
.ls16{letter-spacing:2.389333pt;}
.ls22{letter-spacing:2.552000pt;}
.ls25{letter-spacing:2.858667pt;}
.ls10{letter-spacing:2.901333pt;}
.ls15{letter-spacing:2.912000pt;}
.ls11{letter-spacing:2.922667pt;}
.ls2c{letter-spacing:2.965333pt;}
.ls26{letter-spacing:2.976000pt;}
.ls2f{letter-spacing:3.786667pt;}
.lse{letter-spacing:7.466667pt;}
.ls2d{letter-spacing:8.000000pt;}
.ls32{letter-spacing:8.800000pt;}
.ls20{letter-spacing:14.005333pt;}
.ls1f{letter-spacing:16.898667pt;}
.ls1d{letter-spacing:16.952000pt;}
.ls1e{letter-spacing:17.005333pt;}
.ls19{letter-spacing:17.925333pt;}
.ls18{letter-spacing:19.978667pt;}
.ls13{letter-spacing:20.512000pt;}
.ls23{letter-spacing:30.208000pt;}
.ls33{letter-spacing:30.453333pt;}
.ls2a{letter-spacing:35.146667pt;}
.ls30{letter-spacing:44.746667pt;}
.ls2e{letter-spacing:48.053333pt;}
.ls4{letter-spacing:56.640000pt;}
.ls35{letter-spacing:128.224000pt;}
.wsc{word-spacing:-64.000000pt;}
.wsa{word-spacing:-53.333333pt;}
.wsd{word-spacing:-45.578667pt;}
.ws13{word-spacing:-45.376000pt;}
.wsf{word-spacing:-45.333333pt;}
.ws12{word-spacing:-37.333333pt;}
.ws15{word-spacing:-37.226667pt;}
.ws14{word-spacing:-25.834667pt;}
.ws11{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.ws16{word-spacing:-14.666667pt;}
.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;}
.wsb{word-spacing:0.000000pt;}
.ws10{word-spacing:11.138667pt;}
.wse{word-spacing:15.642667pt;}
._2f{margin-left:-13.533333pt;}
._30{margin-left:-12.554667pt;}
._2e{margin-left:-8.618667pt;}
._2c{margin-left:-3.925333pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._d{width:2.288000pt;}
._c{width:3.424000pt;}
._6{width:4.352000pt;}
._27{width:5.408000pt;}
._e{width:6.336000pt;}
._a{width:8.000000pt;}
._b{width:9.024000pt;}
._31{width:9.984000pt;}
._32{width:10.944000pt;}
._8{width:13.376000pt;}
._9{width:14.400000pt;}
._34{width:15.962667pt;}
._7{width:17.050667pt;}
._13{width:18.816000pt;}
._f{width:20.224000pt;}
._26{width:21.568000pt;}
._19{width:23.040000pt;}
._37{width:24.192000pt;}
._24{width:25.280000pt;}
._25{width:26.240000pt;}
._4{width:27.392000pt;}
._5{width:28.352000pt;}
._12{width:29.338667pt;}
._1b{width:30.656000pt;}
._1c{width:31.808000pt;}
._16{width:33.088000pt;}
._17{width:34.304000pt;}
._2d{width:35.712000pt;}
._44{width:36.928000pt;}
._3d{width:38.336000pt;}
._45{width:39.360000pt;}
._22{width:41.152000pt;}
._3b{width:43.712000pt;}
._33{width:44.672000pt;}
._3c{width:45.584000pt;}
._2b{width:47.808000pt;}
._10{width:48.704000pt;}
._11{width:49.690667pt;}
._23{width:50.789333pt;}
._14{width:53.120000pt;}
._15{width:54.080000pt;}
._28{width:57.002667pt;}
._29{width:58.133333pt;}
._2a{width:60.288000pt;}
._36{width:63.424000pt;}
._40{width:64.384000pt;}
._47{width:67.200000pt;}
._39{width:69.952000pt;}
._4b{width:70.901333pt;}
._43{width:73.152000pt;}
._1f{width:77.376000pt;}
._20{width:78.336000pt;}
._1d{width:81.216000pt;}
._1e{width:82.304000pt;}
._3a{width:89.408000pt;}
._18{width:91.285333pt;}
._35{width:93.098667pt;}
._21{width:94.400000pt;}
._3f{width:103.168000pt;}
._46{width:110.720000pt;}
._38{width:119.872000pt;}
._3e{width:122.346667pt;}
._41{width:123.925333pt;}
._49{width:127.360000pt;}
._4a{width:128.576000pt;}
._1a{width:139.520000pt;}
._48{width:161.920000pt;}
._42{width:205.184000pt;}
._4c{width:233.669333pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:45.333333pt;}
.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;}
.y22{bottom:3.466667pt;}
.y7{bottom:4.800000pt;}
.yce{bottom:5.200000pt;}
.ycb{bottom:5.320000pt;}
.yb{bottom:5.333333pt;}
.yd0{bottom:5.986667pt;}
.yc{bottom:6.000000pt;}
.y7e{bottom:6.133333pt;}
.y79{bottom:6.146667pt;}
.y7b{bottom:6.266667pt;}
.y77{bottom:6.280000pt;}
.ycf{bottom:7.733333pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y21{bottom:21.866667pt;}
.yd4{bottom:22.800000pt;}
.yca{bottom:22.920000pt;}
.ycd{bottom:23.586667pt;}
.yf8{bottom:27.333333pt;}
.y7d{bottom:27.373333pt;}
.yfb{bottom:27.493333pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y20{bottom:40.266667pt;}
.yd3{bottom:40.526667pt;}
.yc9{bottom:40.533333pt;}
.yd8{bottom:40.560000pt;}
.yf7{bottom:48.540000pt;}
.y3{bottom:51.233333pt;}
.yd2{bottom:58.126667pt;}
.yc8{bottom:58.133333pt;}
.yd7{bottom:58.160000pt;}
.y1f{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.yd6{bottom:75.760000pt;}
.y1e{bottom:77.066667pt;}
.yf6{bottom:93.900000pt;}
.y1d{bottom:95.466667pt;}
.y3c{bottom:95.633333pt;}
.y126{bottom:96.433333pt;}
.yd1{bottom:100.433333pt;}
.y68{bottom:105.900000pt;}
.y97{bottom:108.966667pt;}
.y1c{bottom:113.866667pt;}
.y3b{bottom:116.700000pt;}
.y125{bottom:117.633333pt;}
.y67{bottom:127.233333pt;}
.y96{bottom:130.033333pt;}
.y1b{bottom:132.266667pt;}
.yae{bottom:132.700000pt;}
.y66{bottom:135.626667pt;}
.y3a{bottom:137.893333pt;}
.y124{bottom:138.706667pt;}
.y1a{bottom:150.666667pt;}
.y95{bottom:153.493333pt;}
.yad{bottom:154.173333pt;}
.y123{bottom:156.973333pt;}
.yf5{bottom:158.040000pt;}
.y39{bottom:159.106667pt;}
.y65{bottom:165.493333pt;}
.ycc{bottom:171.640000pt;}
.y122{bottom:173.773333pt;}
.yac{bottom:175.240000pt;}
.y94{bottom:177.226667pt;}
.y38{bottom:180.173333pt;}
.yf4{bottom:186.040000pt;}
.y64{bottom:186.706667pt;}
.y121{bottom:190.706667pt;}
.yab{bottom:196.440000pt;}
.y93{bottom:200.960000pt;}
.y37{bottom:201.373333pt;}
.yf3{bottom:207.226667pt;}
.y120{bottom:207.506667pt;}
.y63{bottom:207.773333pt;}
.yc7{bottom:208.306667pt;}
.yaa{bottom:217.773333pt;}
.y92{bottom:222.440000pt;}
.y36{bottom:222.573333pt;}
.y11f{bottom:224.440000pt;}
.yf2{bottom:228.440000pt;}
.y62{bottom:231.226667pt;}
.ya9{bottom:239.373333pt;}
.y11e{bottom:241.240000pt;}
.y91{bottom:243.506667pt;}
.y35{bottom:243.626667pt;}
.yf1{bottom:249.506667pt;}
.y61{bottom:252.706667pt;}
.y11d{bottom:258.173333pt;}
.ya8{bottom:260.706667pt;}
.y34{bottom:264.840000pt;}
.y90{bottom:266.960000pt;}
.yf0{bottom:270.706667pt;}
.y11c{bottom:274.973333pt;}
.y60{bottom:276.173333pt;}
.ya7{bottom:281.893333pt;}
.yc6{bottom:285.773333pt;}
.y33{bottom:286.040000pt;}
.y8f{bottom:288.440000pt;}
.yef{bottom:291.906667pt;}
.y5f{bottom:297.773333pt;}
.ya6{bottom:303.106667pt;}
.yc5{bottom:306.973333pt;}
.y32{bottom:307.240000pt;}
.y11b{bottom:308.706667pt;}
.y8e{bottom:309.506667pt;}
.yee{bottom:312.973333pt;}
.y5e{bottom:319.106667pt;}
.ya5{bottom:324.173333pt;}
.y11a{bottom:325.640000pt;}
.yc4{bottom:328.040000pt;}
.y31{bottom:328.306667pt;}
.y8d{bottom:330.706667pt;}
.yed{bottom:334.173333pt;}
.y5d{bottom:339.400000pt;}
.y119{bottom:342.466667pt;}
.ya4{bottom:345.400000pt;}
.yc3{bottom:349.266667pt;}
.y30{bottom:349.533333pt;}
.y8c{bottom:352.066667pt;}
.y5b{bottom:352.466667pt;}
.yec{bottom:355.400000pt;}
.y118{bottom:359.400000pt;}
.y5a{bottom:360.466667pt;}
.ya3{bottom:366.600000pt;}
.yc2{bottom:370.466667pt;}
.y2f{bottom:370.733333pt;}
.y8b{bottom:375.800000pt;}
.y117{bottom:376.200000pt;}
.yeb{bottom:376.466667pt;}
.y5c{bottom:384.466667pt;}
.ya2{bottom:387.666667pt;}
.yc1{bottom:391.666667pt;}
.y2e{bottom:391.800000pt;}
.y116{bottom:393.133333pt;}
.yea{bottom:397.666667pt;}
.y59{bottom:398.600000pt;}
.y8a{bottom:399.533333pt;}
.ya1{bottom:408.866667pt;}
.y115{bottom:409.933333pt;}
.yc0{bottom:412.733333pt;}
.y2d{bottom:413.000000pt;}
.ye9{bottom:418.866667pt;}
.y58{bottom:419.800000pt;}
.y89{bottom:423.266667pt;}
.y114{bottom:426.866667pt;}
.ya0{bottom:430.066667pt;}
.ybf{bottom:433.933333pt;}
.y2c{bottom:434.200000pt;}
.ye8{bottom:439.933333pt;}
.y57{bottom:441.000000pt;}
.y113{bottom:446.600000pt;}
.y88{bottom:446.866667pt;}
.y9f{bottom:451.133333pt;}
.ybe{bottom:455.133333pt;}
.y2b{bottom:455.266667pt;}
.ye7{bottom:461.133333pt;}
.y56{bottom:462.066667pt;}
.y112{bottom:467.800000pt;}
.y87{bottom:468.333333pt;}
.y9e{bottom:472.333333pt;}
.ybd{bottom:476.200000pt;}
.y2a{bottom:476.466667pt;}
.ye6{bottom:482.333333pt;}
.y55{bottom:483.266667pt;}
.y111{bottom:489.000000pt;}
.y86{bottom:490.600000pt;}
.y9d{bottom:493.533333pt;}
.ybc{bottom:497.400000pt;}
.y29{bottom:497.666667pt;}
.y85{bottom:498.600000pt;}
.ye5{bottom:503.533333pt;}
.y54{bottom:504.466667pt;}
.y110{bottom:510.066667pt;}
.y9c{bottom:514.733333pt;}
.ybb{bottom:518.600000pt;}
.y28{bottom:518.733333pt;}
.ye4{bottom:524.600000pt;}
.y84{bottom:525.266667pt;}
.y53{bottom:527.933333pt;}
.y10f{bottom:531.266667pt;}
.y9b{bottom:535.800000pt;}
.yba{bottom:539.666667pt;}
.y27{bottom:539.933333pt;}
.ye3{bottom:545.800000pt;}
.y83{bottom:546.466667pt;}
.y52{bottom:551.666667pt;}
.y10e{bottom:552.466667pt;}
.y9a{bottom:557.000000pt;}
.yb9{bottom:560.866667pt;}
.y26{bottom:561.133333pt;}
.ye2{bottom:567.000000pt;}
.y82{bottom:567.666667pt;}
.y10d{bottom:573.533333pt;}
.y51{bottom:575.266667pt;}
.y99{bottom:578.200000pt;}
.yb8{bottom:582.066667pt;}
.ye1{bottom:588.066667pt;}
.y81{bottom:588.733333pt;}
.y25{bottom:590.200000pt;}
.y10c{bottom:594.733333pt;}
.y50{bottom:599.000000pt;}
.y98{bottom:599.266667pt;}
.yb7{bottom:603.133333pt;}
.y24{bottom:605.133333pt;}
.ye0{bottom:609.266667pt;}
.y80{bottom:609.933333pt;}
.y10b{bottom:615.933333pt;}
.y4f{bottom:620.466667pt;}
.yb6{bottom:624.333333pt;}
.ydf{bottom:627.000000pt;}
.y7f{bottom:631.133333pt;}
.y10a{bottom:637.000000pt;}
.y4e{bottom:641.666667pt;}
.y23{bottom:641.933333pt;}
.yb5{bottom:645.533333pt;}
.y7c{bottom:646.733333pt;}
.y109{bottom:658.240000pt;}
.y19{bottom:660.373333pt;}
.y4d{bottom:662.773333pt;}
.yb4{bottom:666.640000pt;}
.y108{bottom:681.706667pt;}
.y4c{bottom:683.973333pt;}
.yb3{bottom:684.373333pt;}
.y7a{bottom:689.706667pt;}
.y107{bottom:703.173333pt;}
.y4b{bottom:705.173333pt;}
.y78{bottom:711.560000pt;}
.y106{bottom:724.240000pt;}
.y4a{bottom:726.240000pt;}
.y76{bottom:733.293333pt;}
.y105{bottom:745.440000pt;}
.y49{bottom:747.440000pt;}
.y75{bottom:763.706667pt;}
.y104{bottom:766.640000pt;}
.y48{bottom:768.640000pt;}
.y74{bottom:785.173333pt;}
.y103{bottom:787.706667pt;}
.y47{bottom:789.706667pt;}
.y73{bottom:806.240000pt;}
.y102{bottom:808.906667pt;}
.y46{bottom:810.906667pt;}
.yde{bottom:827.173333pt;}
.y72{bottom:827.440000pt;}
.y18{bottom:829.173333pt;}
.y101{bottom:830.106667pt;}
.y45{bottom:832.106667pt;}
.y17{bottom:846.240000pt;}
.ydd{bottom:848.373333pt;}
.y71{bottom:848.640000pt;}
.y100{bottom:851.306667pt;}
.y44{bottom:853.306667pt;}
.y16{bottom:864.640000pt;}
.ydc{bottom:869.573333pt;}
.y70{bottom:869.706667pt;}
.yff{bottom:872.373333pt;}
.y43{bottom:874.373333pt;}
.y15{bottom:883.040000pt;}
.ydb{bottom:890.640000pt;}
.y6f{bottom:890.906667pt;}
.yfe{bottom:893.573333pt;}
.y42{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.yda{bottom:911.840000pt;}
.y6e{bottom:912.106667pt;}
.yfd{bottom:914.773333pt;}
.y41{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.yd9{bottom:933.040000pt;}
.y6d{bottom:933.173333pt;}
.yfc{bottom:935.840000pt;}
.y40{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.yd5{bottom:948.640000pt;}
.yfa{bottom:951.440000pt;}
.y6c{bottom:954.373333pt;}
.y11{bottom:956.640000pt;}
.yb2{bottom:958.640000pt;}
.y3f{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.y6b{bottom:976.000000pt;}
.yb1{bottom:979.866667pt;}
.y3e{bottom:980.266667pt;}
.yf9{bottom:994.533333pt;}
.y6a{bottom:999.066667pt;}
.yb0{bottom:1000.933333pt;}
.y3d{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.y69{bottom:1020.666667pt;}
.yaf{bottom:1022.266667pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h10{height:18.433333pt;}
.h1a{height:21.066667pt;}
.h19{height:21.200000pt;}
.h21{height:36.000000pt;}
.h11{height:36.800000pt;}
.h22{height:37.395833pt;}
.h20{height:37.630208pt;}
.h6{height:40.266667pt;}
.h29{height:41.135417pt;}
.h26{height:42.266667pt;}
.h1b{height:42.300000pt;}
.h27{height:42.433333pt;}
.h3{height:43.200000pt;}
.hd{height:44.875000pt;}
.ha{height:45.156250pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h1f{height:53.750000pt;}
.h12{height:54.818262pt;}
.he{height:57.578125pt;}
.h9{height:58.351562pt;}
.h28{height:60.300089pt;}
.hc{height:62.812500pt;}
.h25{height:63.466667pt;}
.hb{height:64.500000pt;}
.h1d{height:65.781915pt;}
.h1e{height:70.533333pt;}
.h2{height:73.281250pt;}
.h15{height:78.359375pt;}
.h24{height:88.166667pt;}
.h23{height:92.187500pt;}
.h1c{height:94.812500pt;}
.h18{height:96.385833pt;}
.h13{height:110.625000pt;}
.h14{height:120.492708pt;}
.h17{height:122.664583pt;}
.h16{height:147.079167pt;}
.hf{height:165.600000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w9{width:41.333333pt;}
.we{width:74.533333pt;}
.w11{width:74.566667pt;}
.wd{width:86.666667pt;}
.w10{width:89.986667pt;}
.wc{width:90.033333pt;}
.wb{width:95.066667pt;}
.wf{width:95.100000pt;}
.w14{width:145.066667pt;}
.w12{width:145.106667pt;}
.w6{width:158.533333pt;}
.w13{width:202.560000pt;}
.w15{width:202.573333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.wa{width:306.306667pt;}
.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;}
.x2a{left:82.000000pt;}
.x10{left:84.533322pt;}
.x21{left:85.866655pt;}
.x1b{left:89.066667pt;}
.x1a{left:93.066667pt;}
.xd{left:95.093333pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x11{left:120.833322pt;}
.x2b{left:134.306667pt;}
.x23{left:153.893322pt;}
.x22{left:172.173322pt;}
.x2f{left:184.306667pt;}
.x2c{left:224.973333pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x2d{left:312.306667pt;}
.x2e{left:386.199988pt;}
.x15{left:403.666655pt;}
.x1d{left:406.466655pt;}
.x1f{left:430.466655pt;}
.x24{left:449.133333pt;}
.x1e{left:453.666655pt;}
.x18{left:465.533322pt;}
.x12{left:472.866655pt;}
.x13{left:492.333322pt;}
.x27{left:502.866667pt;}
.x19{left:513.933322pt;}
.x17{left:543.133322pt;}
.x30{left:552.866667pt;}
.xc{left:555.933333pt;}
.x14{left:587.973322pt;}
.x28{left:593.573333pt;}
.xf{left:634.360000pt;}
.x25{left:677.839988pt;}
.x29{left:680.906667pt;}
.x2{left:728.106655pt;}
.x26{left:752.506655pt;}
.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; }
  