
    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_573909d0c8e80ebfa0269a9b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_7aca8ac0f498d850c89ec24a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_891ff61ef823b396ee805f3d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_8b60d473a6b362175cfcac45.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.740723;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_79c5d733167233c7ef045f71.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_37db5132c8baa48125aa6480.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_347ad5356051ded2e19c49a1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_85218bdaa6d57c9c419eff4e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932617;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_f9c80fc5c79c41230762e26c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932617;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;}
.ls6{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.lsa{letter-spacing:0.177840px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.388800px;}
.lsb{letter-spacing:0.900000px;}
.lsd{letter-spacing:21.546720px;}
.ls7{letter-spacing:35.226720px;}
.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;}
}
.ws1{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.238800px;}
.ws3{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:-0.448560px;}
.ws4{word-spacing:0.000000px;}
._2a{margin-left:-8.029440px;}
._1{margin-left:-1.619280px;}
._0{width:1.106400px;}
._4{width:2.219280px;}
._2{width:3.448560px;}
._7{width:4.500000px;}
._c{width:5.657520px;}
._11{width:6.812640px;}
._10{width:8.398800px;}
._9{width:9.475200px;}
._8{width:10.577520px;}
._d{width:12.399360px;}
._12{width:13.415280px;}
._b{width:16.759440px;}
._a{width:17.987760px;}
._e{width:19.411920px;}
._f{width:20.495280px;}
._14{width:21.633120px;}
._13{width:22.797600px;}
._17{width:24.152640px;}
._1f{width:25.185840px;}
._16{width:26.263680px;}
._15{width:27.370080px;}
._19{width:28.444080px;}
._18{width:30.566400px;}
._23{width:32.748480px;}
._2c{width:33.916320px;}
._2b{width:34.928880px;}
._21{width:36.274320px;}
._1a{width:44.849040px;}
._29{width:54.745200px;}
._1c{width:55.756080px;}
._1b{width:56.891520px;}
._24{width:74.968080px;}
._25{width:76.423440px;}
._28{width:81.452880px;}
._27{width:83.126160px;}
._6{width:85.656000px;}
._22{width:92.807280px;}
._2f{width:107.632320px;}
._2e{width:109.356240px;}
._2d{width:133.951200px;}
._1d{width:137.567520px;}
._20{width:143.244720px;}
._1e{width:150.475680px;}
._26{width:161.182560px;}
._5{width:686.343600px;}
._3{width:748.200000px;}
.fc8{color:transparent;}
.fc4{color:rgb(28,30,33);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc7{color:rgb(1,2,5);}
.fc6{color:rgb(23,43,77);}
.fc5{color:rgb(67,67,67);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y15d{bottom:-938.490000px;}
.y15c{bottom:-921.210000px;}
.y159{bottom:-911.850000px;}
.y15b{bottom:-903.210000px;}
.y15a{bottom:-885.210000px;}
.y158{bottom:-867.165000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:3.240000px;}
.y103{bottom:11.700000px;}
.yc8{bottom:11.880000px;}
.y13f{bottom:12.600000px;}
.ye3{bottom:20.340000px;}
.y111{bottom:20.514000px;}
.yc9{bottom:20.520000px;}
.ye6{bottom:20.550000px;}
.y11b{bottom:20.565000px;}
.y12c{bottom:21.240000px;}
.yc6{bottom:29.520000px;}
.y13e{bottom:29.880000px;}
.y12b{bottom:38.520000px;}
.yb{bottom:38.700000px;}
.y119{bottom:38.880000px;}
.y13d{bottom:47.160000px;}
.y12a{bottom:55.800000px;}
.y118{bottom:56.160000px;}
.ya{bottom:57.060000px;}
.y13c{bottom:64.440000px;}
.y9{bottom:72.540000px;}
.y129{bottom:73.080000px;}
.y117{bottom:73.440000px;}
.y13b{bottom:81.720000px;}
.y116{bottom:90.720000px;}
.y109{bottom:100.794000px;}
.y113{bottom:113.040000px;}
.y126{bottom:116.100000px;}
.y138{bottom:116.820000px;}
.y108{bottom:117.894000px;}
.y41{bottom:118.620000px;}
.yd6{bottom:120.060000px;}
.y78{bottom:120.240000px;}
.y9c{bottom:120.600000px;}
.y101{bottom:127.260000px;}
.y112{bottom:130.320000px;}
.y125{bottom:133.380000px;}
.y137{bottom:134.100000px;}
.y107{bottom:135.174000px;}
.y40{bottom:135.756000px;}
.y77{bottom:137.376000px;}
.y9b{bottom:137.916000px;}
.y100{bottom:144.576000px;}
.y104{bottom:145.116000px;}
.yda{bottom:145.470000px;}
.y124{bottom:150.690000px;}
.y136{bottom:151.410000px;}
.y106{bottom:152.454000px;}
.y3f{bottom:153.030000px;}
.yd5{bottom:154.470000px;}
.y76{bottom:154.650000px;}
.y9a{bottom:155.190000px;}
.yff{bottom:161.850000px;}
.yd9{bottom:162.570000px;}
.y123{bottom:167.790000px;}
.y135{bottom:168.690000px;}
.y105{bottom:169.734000px;}
.y3e{bottom:170.310000px;}
.yd4{bottom:171.750000px;}
.y75{bottom:171.930000px;}
.y99{bottom:172.290000px;}
.yfe{bottom:179.130000px;}
.y110{bottom:180.390000px;}
.y122{bottom:185.070000px;}
.y134{bottom:185.790000px;}
.y3d{bottom:187.590000px;}
.yd3{bottom:189.030000px;}
.y74{bottom:189.210000px;}
.y98{bottom:189.570000px;}
.yfd{bottom:196.410000px;}
.y156{bottom:202.170000px;}
.y121{bottom:202.350000px;}
.y133{bottom:203.070000px;}
.y3c{bottom:204.870000px;}
.yd2{bottom:206.310000px;}
.y73{bottom:206.490000px;}
.y97{bottom:206.850000px;}
.yfc{bottom:213.690000px;}
.y10f{bottom:215.670000px;}
.y155{bottom:219.450000px;}
.y120{bottom:219.630000px;}
.y132{bottom:220.350000px;}
.y3b{bottom:222.150000px;}
.yd1{bottom:223.590000px;}
.y72{bottom:223.770000px;}
.y96{bottom:224.130000px;}
.yfb{bottom:230.790000px;}
.y154{bottom:236.730000px;}
.y11f{bottom:236.910000px;}
.y131{bottom:237.630000px;}
.y3a{bottom:239.250000px;}
.y71{bottom:240.870000px;}
.y95{bottom:241.410000px;}
.yfa{bottom:248.070000px;}
.y10e{bottom:250.770000px;}
.y11e{bottom:254.010000px;}
.y130{bottom:254.910000px;}
.y39{bottom:256.530000px;}
.yd0{bottom:257.970000px;}
.y70{bottom:258.150000px;}
.y94{bottom:258.510000px;}
.yf9{bottom:265.350000px;}
.y115{bottom:268.770000px;}
.y153{bottom:271.290000px;}
.y12f{bottom:272.010000px;}
.y38{bottom:273.810000px;}
.ycf{bottom:275.250000px;}
.y6f{bottom:275.430000px;}
.y93{bottom:275.790000px;}
.yf8{bottom:282.630000px;}
.y10d{bottom:286.050000px;}
.y128{bottom:286.770000px;}
.y152{bottom:288.390000px;}
.y143{bottom:289.290000px;}
.y37{bottom:291.090000px;}
.yce{bottom:292.530000px;}
.y6e{bottom:292.710000px;}
.y92{bottom:293.070000px;}
.yf7{bottom:299.910000px;}
.y11d{bottom:304.050000px;}
.y151{bottom:305.670000px;}
.y142{bottom:306.570000px;}
.ycd{bottom:307.290000px;}
.y36{bottom:308.370000px;}
.y6d{bottom:309.990000px;}
.y91{bottom:310.350000px;}
.yf6{bottom:317.010000px;}
.y10c{bottom:321.330000px;}
.y12e{bottom:322.050000px;}
.y150{bottom:322.950000px;}
.yb0{bottom:323.850000px;}
.ycc{bottom:325.290000px;}
.y35{bottom:325.650000px;}
.y6c{bottom:327.090000px;}
.y90{bottom:327.630000px;}
.yf5{bottom:334.290000px;}
.y11c{bottom:339.330000px;}
.y14f{bottom:340.230000px;}
.yaf{bottom:341.130000px;}
.y34{bottom:342.750000px;}
.ycb{bottom:343.290000px;}
.y6b{bottom:344.370000px;}
.y8f{bottom:344.910000px;}
.yf4{bottom:351.570000px;}
.y10b{bottom:356.610000px;}
.y12d{bottom:357.330000px;}
.y14e{bottom:357.510000px;}
.yae{bottom:358.410000px;}
.y33{bottom:360.030000px;}
.yca{bottom:361.290000px;}
.y6a{bottom:361.650000px;}
.y8e{bottom:362.010000px;}
.yf3{bottom:368.850000px;}
.y11a{bottom:374.610000px;}
.y14d{bottom:374.790000px;}
.yad{bottom:375.510000px;}
.y32{bottom:377.310000px;}
.y69{bottom:378.930000px;}
.y8d{bottom:379.290000px;}
.yf2{bottom:386.130000px;}
.y10a{bottom:391.935000px;}
.y127{bottom:392.655000px;}
.yac{bottom:392.835000px;}
.y31{bottom:394.635000px;}
.y68{bottom:396.255000px;}
.y8c{bottom:396.615000px;}
.yc5{bottom:397.335000px;}
.yf1{bottom:403.455000px;}
.y13a{bottom:407.595000px;}
.y14c{bottom:409.215000px;}
.y114{bottom:409.935000px;}
.yab{bottom:410.115000px;}
.y67{bottom:413.535000px;}
.y8b{bottom:413.895000px;}
.y30{bottom:415.515000px;}
.yf0{bottom:420.555000px;}
.y14b{bottom:426.495000px;}
.y102{bottom:427.215000px;}
.yaa{bottom:427.395000px;}
.y66{bottom:430.635000px;}
.y8a{bottom:431.175000px;}
.yc7{bottom:432.615000px;}
.y2f{bottom:432.795000px;}
.yef{bottom:437.835000px;}
.y141{bottom:442.875000px;}
.y14a{bottom:443.775000px;}
.ya9{bottom:444.675000px;}
.y65{bottom:447.915000px;}
.y89{bottom:448.455000px;}
.y2e{bottom:450.075000px;}
.yee{bottom:455.115000px;}
.y149{bottom:461.055000px;}
.ya8{bottom:461.955000px;}
.y64{bottom:465.195000px;}
.y88{bottom:465.555000px;}
.y2d{bottom:467.355000px;}
.yc4{bottom:471.135000px;}
.yed{bottom:472.395000px;}
.y140{bottom:478.155000px;}
.y148{bottom:478.335000px;}
.ya7{bottom:479.055000px;}
.y63{bottom:482.475000px;}
.y87{bottom:482.835000px;}
.y2c{bottom:484.635000px;}
.yc3{bottom:488.235000px;}
.yec{bottom:489.675000px;}
.y147{bottom:495.435000px;}
.ya6{bottom:496.335000px;}
.y62{bottom:499.755000px;}
.y86{bottom:500.115000px;}
.y2b{bottom:501.915000px;}
.yc2{bottom:505.515000px;}
.yeb{bottom:506.955000px;}
.y146{bottom:512.715000px;}
.y139{bottom:513.435000px;}
.ya5{bottom:513.615000px;}
.y61{bottom:517.035000px;}
.y85{bottom:517.395000px;}
.y2a{bottom:519.015000px;}
.yc1{bottom:522.795000px;}
.yea{bottom:524.055000px;}
.y145{bottom:529.995000px;}
.ya4{bottom:530.895000px;}
.y60{bottom:534.135000px;}
.y84{bottom:534.675000px;}
.y29{bottom:536.295000px;}
.yc0{bottom:540.075000px;}
.ye9{bottom:541.335000px;}
.y144{bottom:544.035000px;}
.ya3{bottom:548.175000px;}
.y5f{bottom:551.415000px;}
.y83{bottom:551.955000px;}
.y28{bottom:553.575000px;}
.ybf{bottom:557.355000px;}
.ye8{bottom:558.615000px;}
.ya2{bottom:565.455000px;}
.y5e{bottom:568.695000px;}
.y82{bottom:569.055000px;}
.y27{bottom:570.855000px;}
.yd8{bottom:573.375000px;}
.ybe{bottom:574.635000px;}
.y9f{bottom:580.215000px;}
.y5d{bottom:585.975000px;}
.y81{bottom:586.335000px;}
.y26{bottom:588.135000px;}
.ye7{bottom:591.375000px;}
.ybd{bottom:591.735000px;}
.ya1{bottom:598.035000px;}
.y5c{bottom:603.255000px;}
.y80{bottom:603.615000px;}
.y25{bottom:605.415000px;}
.ybc{bottom:609.015000px;}
.ya0{bottom:616.035000px;}
.y5b{bottom:620.535000px;}
.y7f{bottom:620.895000px;}
.y24{bottom:622.515000px;}
.ybb{bottom:626.295000px;}
.ye5{bottom:626.655000px;}
.y9d{bottom:634.035000px;}
.y5a{bottom:637.635000px;}
.y7e{bottom:638.175000px;}
.y23{bottom:639.795000px;}
.yba{bottom:643.605000px;}
.y59{bottom:654.945000px;}
.y7d{bottom:655.305000px;}
.y22{bottom:657.105000px;}
.yb9{bottom:660.885000px;}
.ye4{bottom:661.965000px;}
.y58{bottom:672.225000px;}
.y7c{bottom:672.585000px;}
.y21{bottom:674.385000px;}
.yb8{bottom:677.985000px;}
.ye2{bottom:679.965000px;}
.y57{bottom:689.685000px;}
.y7b{bottom:689.865000px;}
.y20{bottom:691.665000px;}
.yb7{bottom:695.265000px;}
.y56{bottom:706.965000px;}
.y7a{bottom:707.145000px;}
.y1f{bottom:708.945000px;}
.yb6{bottom:712.545000px;}
.ye1{bottom:715.065000px;}
.y55{bottom:724.245000px;}
.y79{bottom:724.425000px;}
.y1e{bottom:726.045000px;}
.yb5{bottom:729.825000px;}
.ye0{bottom:733.065000px;}
.y54{bottom:741.705000px;}
.y1d{bottom:743.325000px;}
.yb4{bottom:747.105000px;}
.ydf{bottom:751.065000px;}
.y53{bottom:758.805000px;}
.y1c{bottom:760.605000px;}
.yb3{bottom:764.385000px;}
.y52{bottom:776.085000px;}
.y1b{bottom:777.885000px;}
.yb2{bottom:781.485000px;}
.yde{bottom:786.345000px;}
.y51{bottom:793.365000px;}
.y1a{bottom:795.165000px;}
.yb1{bottom:795.525000px;}
.y50{bottom:810.645000px;}
.y19{bottom:812.265000px;}
.ydd{bottom:821.625000px;}
.y4f{bottom:827.925000px;}
.y18{bottom:829.545000px;}
.y4e{bottom:845.205000px;}
.y17{bottom:846.825000px;}
.ydc{bottom:856.905000px;}
.y4d{bottom:862.305000px;}
.y16{bottom:864.105000px;}
.ydb{bottom:874.905000px;}
.y4c{bottom:879.585000px;}
.y15{bottom:881.385000px;}
.yd7{bottom:892.950000px;}
.y4b{bottom:896.910000px;}
.y14{bottom:898.710000px;}
.y4a{bottom:914.190000px;}
.y13{bottom:916.350000px;}
.y49{bottom:931.470000px;}
.y12{bottom:935.250000px;}
.y48{bottom:948.750000px;}
.y11{bottom:954.330000px;}
.y47{bottom:965.850000px;}
.y10{bottom:973.230000px;}
.y46{bottom:983.130000px;}
.yf{bottom:992.130000px;}
.y45{bottom:1000.410000px;}
.ye{bottom:1010.670000px;}
.y44{bottom:1017.690000px;}
.yd{bottom:1028.670000px;}
.y43{bottom:1034.970000px;}
.yc{bottom:1049.370000px;}
.y42{bottom:1052.070000px;}
.y8{bottom:1069.710000px;}
.y7{bottom:1088.070000px;}
.y6{bottom:1103.910000px;}
.y5{bottom:1121.910000px;}
.y4{bottom:1138.650000px;}
.y3{bottom:1180.800000px;}
.y2{bottom:1199.340000px;}
.y1{bottom:1216.620000px;}
.y157{bottom:1263.060000px;}
.h1c{height:-907.170000px;}
.h1b{height:-889.170000px;}
.h1a{height:-871.134000px;}
.h19{height:-853.125000px;}
.hc{height:17.100000px;}
.hb{height:17.280000px;}
.h9{height:17.316000px;}
.hf{height:34.380000px;}
.h12{height:34.416000px;}
.h10{height:34.560000px;}
.h14{height:34.596000px;}
.h5{height:42.164648px;}
.h18{height:42.835781px;}
.h8{height:46.736719px;}
.h7{height:48.224531px;}
.h6{height:48.410156px;}
.hd{height:48.496641px;}
.h4{height:50.800781px;}
.ha{height:53.100000px;}
.h2{height:53.573906px;}
.h3{height:59.383125px;}
.he{height:69.660000px;}
.h17{height:105.120000px;}
.h16{height:105.156000px;}
.h15{height:140.436000px;}
.h13{height:281.190000px;}
.h11{height:318.810000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w19{width:-1944.179850px;}
.w18{width:-1442.444850px;}
.w17{width:-1313.174850px;}
.w10{width:49.680000px;}
.wb{width:50.400000px;}
.we{width:51.660000px;}
.wc{width:63.036000px;}
.wf{width:66.276000px;}
.w16{width:78.120000px;}
.w11{width:82.440000px;}
.w7{width:82.656000px;}
.wd{width:82.800000px;}
.w14{width:88.200000px;}
.w15{width:129.780000px;}
.w12{width:129.816000px;}
.w8{width:197.670000px;}
.wa{width:200.010000px;}
.w4{width:201.270000px;}
.w9{width:202.170000px;}
.w5{width:232.950000px;}
.w6{width:233.130000px;}
.w13{width:459.465000px;}
.w3{width:466.815000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:7.740000px;}
.x3d{left:12.240000px;}
.x18{left:37.440000px;}
.x19{left:55.620000px;}
.x16{left:71.454000px;}
.x29{left:73.260000px;}
.x1{left:80.999987px;}
.x32{left:83.880000px;}
.x30{left:84.959987px;}
.x7{left:86.759987px;}
.xa{left:88.595987px;}
.x1c{left:96.840000px;}
.x2{left:99.935987px;}
.x1b{left:104.580000px;}
.x11{left:108.035987px;}
.x1a{left:110.340000px;}
.x35{left:111.815987px;}
.x3f{left:113.075987px;}
.xc{left:121.355987px;}
.x4{left:133.955987px;}
.x12{left:135.035987px;}
.x2d{left:161.669987px;}
.x20{left:164.370000px;}
.x8{left:193.169987px;}
.x2b{left:203.790000px;}
.x33{left:214.410000px;}
.x22{left:215.490000px;}
.x2e{left:219.450000px;}
.xd{left:244.289987px;}
.x39{left:262.109987px;}
.x1f{left:274.709987px;}
.x23{left:279.255000px;}
.x13{left:290.234987px;}
.x28{left:316.334987px;}
.x1d{left:320.474987px;}
.x10{left:322.634987px;}
.x9{left:341.534987px;}
.x3e{left:347.114987px;}
.x37{left:352.514987px;}
.xb{left:358.814987px;}
.x14{left:361.154987px;}
.xf{left:363.314987px;}
.x31{left:366.914987px;}
.x6{left:373.214987px;}
.x5{left:389.054987px;}
.x36{left:392.114987px;}
.x24{left:415.155000px;}
.xe{left:423.254987px;}
.x15{left:450.254987px;}
.x25{left:482.145000px;}
.x3{left:496.724987px;}
.x17{left:556.485000px;}
.x21{left:565.665000px;}
.x26{left:616.065000px;}
.x2c{left:663.990000px;}
.x34{left:674.610000px;}
.x2f{left:679.650000px;}
.x27{left:683.250000px;}
.x38{left:717.629987px;}
.x1e{left:725.009987px;}
.x3a{left:1313.175000px;}
.x3b{left:1442.445000px;}
.x3c{left:1944.180000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.lsa{letter-spacing:0.158080pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.345600pt;}
.lsb{letter-spacing:0.800000pt;}
.lsd{letter-spacing:19.152640pt;}
.ls7{letter-spacing:31.312640pt;}
.ws1{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.545600pt;}
.ws3{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:-0.398720pt;}
.ws4{word-spacing:0.000000pt;}
._2a{margin-left:-7.137280pt;}
._1{margin-left:-1.439360pt;}
._0{width:0.983467pt;}
._4{width:1.972693pt;}
._2{width:3.065387pt;}
._7{width:4.000000pt;}
._c{width:5.028907pt;}
._11{width:6.055680pt;}
._10{width:7.465600pt;}
._9{width:8.422400pt;}
._8{width:9.402240pt;}
._d{width:11.021653pt;}
._12{width:11.924693pt;}
._b{width:14.897280pt;}
._a{width:15.989120pt;}
._e{width:17.255040pt;}
._f{width:18.218027pt;}
._14{width:19.229440pt;}
._13{width:20.264533pt;}
._17{width:21.469013pt;}
._1f{width:22.387413pt;}
._16{width:23.345493pt;}
._15{width:24.328960pt;}
._19{width:25.283627pt;}
._18{width:27.170133pt;}
._23{width:29.109760pt;}
._2c{width:30.147840pt;}
._2b{width:31.047893pt;}
._21{width:32.243840pt;}
._1a{width:39.865813pt;}
._29{width:48.662400pt;}
._1c{width:49.560960pt;}
._1b{width:50.570240pt;}
._24{width:66.638293pt;}
._25{width:67.931947pt;}
._28{width:72.402560pt;}
._27{width:73.889920pt;}
._6{width:76.138667pt;}
._22{width:82.495360pt;}
._2f{width:95.673173pt;}
._2e{width:97.205547pt;}
._2d{width:119.067733pt;}
._1d{width:122.282240pt;}
._20{width:127.328640pt;}
._1e{width:133.756160pt;}
._26{width:143.273387pt;}
._5{width:610.083200pt;}
._3{width:665.066667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y15d{bottom:-834.213333pt;}
.y15c{bottom:-818.853333pt;}
.y159{bottom:-810.533333pt;}
.y15b{bottom:-802.853333pt;}
.y15a{bottom:-786.853333pt;}
.y158{bottom:-770.813333pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:2.880000pt;}
.y103{bottom:10.400000pt;}
.yc8{bottom:10.560000pt;}
.y13f{bottom:11.200000pt;}
.ye3{bottom:18.080000pt;}
.y111{bottom:18.234667pt;}
.yc9{bottom:18.240000pt;}
.ye6{bottom:18.266667pt;}
.y11b{bottom:18.280000pt;}
.y12c{bottom:18.880000pt;}
.yc6{bottom:26.240000pt;}
.y13e{bottom:26.560000pt;}
.y12b{bottom:34.240000pt;}
.yb{bottom:34.400000pt;}
.y119{bottom:34.560000pt;}
.y13d{bottom:41.920000pt;}
.y12a{bottom:49.600000pt;}
.y118{bottom:49.920000pt;}
.ya{bottom:50.720000pt;}
.y13c{bottom:57.280000pt;}
.y9{bottom:64.480000pt;}
.y129{bottom:64.960000pt;}
.y117{bottom:65.280000pt;}
.y13b{bottom:72.640000pt;}
.y116{bottom:80.640000pt;}
.y109{bottom:89.594667pt;}
.y113{bottom:100.480000pt;}
.y126{bottom:103.200000pt;}
.y138{bottom:103.840000pt;}
.y108{bottom:104.794667pt;}
.y41{bottom:105.440000pt;}
.yd6{bottom:106.720000pt;}
.y78{bottom:106.880000pt;}
.y9c{bottom:107.200000pt;}
.y101{bottom:113.120000pt;}
.y112{bottom:115.840000pt;}
.y125{bottom:118.560000pt;}
.y137{bottom:119.200000pt;}
.y107{bottom:120.154667pt;}
.y40{bottom:120.672000pt;}
.y77{bottom:122.112000pt;}
.y9b{bottom:122.592000pt;}
.y100{bottom:128.512000pt;}
.y104{bottom:128.992000pt;}
.yda{bottom:129.306667pt;}
.y124{bottom:133.946667pt;}
.y136{bottom:134.586667pt;}
.y106{bottom:135.514667pt;}
.y3f{bottom:136.026667pt;}
.yd5{bottom:137.306667pt;}
.y76{bottom:137.466667pt;}
.y9a{bottom:137.946667pt;}
.yff{bottom:143.866667pt;}
.yd9{bottom:144.506667pt;}
.y123{bottom:149.146667pt;}
.y135{bottom:149.946667pt;}
.y105{bottom:150.874667pt;}
.y3e{bottom:151.386667pt;}
.yd4{bottom:152.666667pt;}
.y75{bottom:152.826667pt;}
.y99{bottom:153.146667pt;}
.yfe{bottom:159.226667pt;}
.y110{bottom:160.346667pt;}
.y122{bottom:164.506667pt;}
.y134{bottom:165.146667pt;}
.y3d{bottom:166.746667pt;}
.yd3{bottom:168.026667pt;}
.y74{bottom:168.186667pt;}
.y98{bottom:168.506667pt;}
.yfd{bottom:174.586667pt;}
.y156{bottom:179.706667pt;}
.y121{bottom:179.866667pt;}
.y133{bottom:180.506667pt;}
.y3c{bottom:182.106667pt;}
.yd2{bottom:183.386667pt;}
.y73{bottom:183.546667pt;}
.y97{bottom:183.866667pt;}
.yfc{bottom:189.946667pt;}
.y10f{bottom:191.706667pt;}
.y155{bottom:195.066667pt;}
.y120{bottom:195.226667pt;}
.y132{bottom:195.866667pt;}
.y3b{bottom:197.466667pt;}
.yd1{bottom:198.746667pt;}
.y72{bottom:198.906667pt;}
.y96{bottom:199.226667pt;}
.yfb{bottom:205.146667pt;}
.y154{bottom:210.426667pt;}
.y11f{bottom:210.586667pt;}
.y131{bottom:211.226667pt;}
.y3a{bottom:212.666667pt;}
.y71{bottom:214.106667pt;}
.y95{bottom:214.586667pt;}
.yfa{bottom:220.506667pt;}
.y10e{bottom:222.906667pt;}
.y11e{bottom:225.786667pt;}
.y130{bottom:226.586667pt;}
.y39{bottom:228.026667pt;}
.yd0{bottom:229.306667pt;}
.y70{bottom:229.466667pt;}
.y94{bottom:229.786667pt;}
.yf9{bottom:235.866667pt;}
.y115{bottom:238.906667pt;}
.y153{bottom:241.146667pt;}
.y12f{bottom:241.786667pt;}
.y38{bottom:243.386667pt;}
.ycf{bottom:244.666667pt;}
.y6f{bottom:244.826667pt;}
.y93{bottom:245.146667pt;}
.yf8{bottom:251.226667pt;}
.y10d{bottom:254.266667pt;}
.y128{bottom:254.906667pt;}
.y152{bottom:256.346667pt;}
.y143{bottom:257.146667pt;}
.y37{bottom:258.746667pt;}
.yce{bottom:260.026667pt;}
.y6e{bottom:260.186667pt;}
.y92{bottom:260.506667pt;}
.yf7{bottom:266.586667pt;}
.y11d{bottom:270.266667pt;}
.y151{bottom:271.706667pt;}
.y142{bottom:272.506667pt;}
.ycd{bottom:273.146667pt;}
.y36{bottom:274.106667pt;}
.y6d{bottom:275.546667pt;}
.y91{bottom:275.866667pt;}
.yf6{bottom:281.786667pt;}
.y10c{bottom:285.626667pt;}
.y12e{bottom:286.266667pt;}
.y150{bottom:287.066667pt;}
.yb0{bottom:287.866667pt;}
.ycc{bottom:289.146667pt;}
.y35{bottom:289.466667pt;}
.y6c{bottom:290.746667pt;}
.y90{bottom:291.226667pt;}
.yf5{bottom:297.146667pt;}
.y11c{bottom:301.626667pt;}
.y14f{bottom:302.426667pt;}
.yaf{bottom:303.226667pt;}
.y34{bottom:304.666667pt;}
.ycb{bottom:305.146667pt;}
.y6b{bottom:306.106667pt;}
.y8f{bottom:306.586667pt;}
.yf4{bottom:312.506667pt;}
.y10b{bottom:316.986667pt;}
.y12d{bottom:317.626667pt;}
.y14e{bottom:317.786667pt;}
.yae{bottom:318.586667pt;}
.y33{bottom:320.026667pt;}
.yca{bottom:321.146667pt;}
.y6a{bottom:321.466667pt;}
.y8e{bottom:321.786667pt;}
.yf3{bottom:327.866667pt;}
.y11a{bottom:332.986667pt;}
.y14d{bottom:333.146667pt;}
.yad{bottom:333.786667pt;}
.y32{bottom:335.386667pt;}
.y69{bottom:336.826667pt;}
.y8d{bottom:337.146667pt;}
.yf2{bottom:343.226667pt;}
.y10a{bottom:348.386667pt;}
.y127{bottom:349.026667pt;}
.yac{bottom:349.186667pt;}
.y31{bottom:350.786667pt;}
.y68{bottom:352.226667pt;}
.y8c{bottom:352.546667pt;}
.yc5{bottom:353.186667pt;}
.yf1{bottom:358.626667pt;}
.y13a{bottom:362.306667pt;}
.y14c{bottom:363.746667pt;}
.y114{bottom:364.386667pt;}
.yab{bottom:364.546667pt;}
.y67{bottom:367.586667pt;}
.y8b{bottom:367.906667pt;}
.y30{bottom:369.346667pt;}
.yf0{bottom:373.826667pt;}
.y14b{bottom:379.106667pt;}
.y102{bottom:379.746667pt;}
.yaa{bottom:379.906667pt;}
.y66{bottom:382.786667pt;}
.y8a{bottom:383.266667pt;}
.yc7{bottom:384.546667pt;}
.y2f{bottom:384.706667pt;}
.yef{bottom:389.186667pt;}
.y141{bottom:393.666667pt;}
.y14a{bottom:394.466667pt;}
.ya9{bottom:395.266667pt;}
.y65{bottom:398.146667pt;}
.y89{bottom:398.626667pt;}
.y2e{bottom:400.066667pt;}
.yee{bottom:404.546667pt;}
.y149{bottom:409.826667pt;}
.ya8{bottom:410.626667pt;}
.y64{bottom:413.506667pt;}
.y88{bottom:413.826667pt;}
.y2d{bottom:415.426667pt;}
.yc4{bottom:418.786667pt;}
.yed{bottom:419.906667pt;}
.y140{bottom:425.026667pt;}
.y148{bottom:425.186667pt;}
.ya7{bottom:425.826667pt;}
.y63{bottom:428.866667pt;}
.y87{bottom:429.186667pt;}
.y2c{bottom:430.786667pt;}
.yc3{bottom:433.986667pt;}
.yec{bottom:435.266667pt;}
.y147{bottom:440.386667pt;}
.ya6{bottom:441.186667pt;}
.y62{bottom:444.226667pt;}
.y86{bottom:444.546667pt;}
.y2b{bottom:446.146667pt;}
.yc2{bottom:449.346667pt;}
.yeb{bottom:450.626667pt;}
.y146{bottom:455.746667pt;}
.y139{bottom:456.386667pt;}
.ya5{bottom:456.546667pt;}
.y61{bottom:459.586667pt;}
.y85{bottom:459.906667pt;}
.y2a{bottom:461.346667pt;}
.yc1{bottom:464.706667pt;}
.yea{bottom:465.826667pt;}
.y145{bottom:471.106667pt;}
.ya4{bottom:471.906667pt;}
.y60{bottom:474.786667pt;}
.y84{bottom:475.266667pt;}
.y29{bottom:476.706667pt;}
.yc0{bottom:480.066667pt;}
.ye9{bottom:481.186667pt;}
.y144{bottom:483.586667pt;}
.ya3{bottom:487.266667pt;}
.y5f{bottom:490.146667pt;}
.y83{bottom:490.626667pt;}
.y28{bottom:492.066667pt;}
.ybf{bottom:495.426667pt;}
.ye8{bottom:496.546667pt;}
.ya2{bottom:502.626667pt;}
.y5e{bottom:505.506667pt;}
.y82{bottom:505.826667pt;}
.y27{bottom:507.426667pt;}
.yd8{bottom:509.666667pt;}
.ybe{bottom:510.786667pt;}
.y9f{bottom:515.746667pt;}
.y5d{bottom:520.866667pt;}
.y81{bottom:521.186667pt;}
.y26{bottom:522.786667pt;}
.ye7{bottom:525.666667pt;}
.ybd{bottom:525.986667pt;}
.ya1{bottom:531.586667pt;}
.y5c{bottom:536.226667pt;}
.y80{bottom:536.546667pt;}
.y25{bottom:538.146667pt;}
.ybc{bottom:541.346667pt;}
.ya0{bottom:547.586667pt;}
.y5b{bottom:551.586667pt;}
.y7f{bottom:551.906667pt;}
.y24{bottom:553.346667pt;}
.ybb{bottom:556.706667pt;}
.ye5{bottom:557.026667pt;}
.y9d{bottom:563.586667pt;}
.y5a{bottom:566.786667pt;}
.y7e{bottom:567.266667pt;}
.y23{bottom:568.706667pt;}
.yba{bottom:572.093333pt;}
.y59{bottom:582.173333pt;}
.y7d{bottom:582.493333pt;}
.y22{bottom:584.093333pt;}
.yb9{bottom:587.453333pt;}
.ye4{bottom:588.413333pt;}
.y58{bottom:597.533333pt;}
.y7c{bottom:597.853333pt;}
.y21{bottom:599.453333pt;}
.yb8{bottom:602.653333pt;}
.ye2{bottom:604.413333pt;}
.y57{bottom:613.053333pt;}
.y7b{bottom:613.213333pt;}
.y20{bottom:614.813333pt;}
.yb7{bottom:618.013333pt;}
.y56{bottom:628.413333pt;}
.y7a{bottom:628.573333pt;}
.y1f{bottom:630.173333pt;}
.yb6{bottom:633.373333pt;}
.ye1{bottom:635.613333pt;}
.y55{bottom:643.773333pt;}
.y79{bottom:643.933333pt;}
.y1e{bottom:645.373333pt;}
.yb5{bottom:648.733333pt;}
.ye0{bottom:651.613333pt;}
.y54{bottom:659.293333pt;}
.y1d{bottom:660.733333pt;}
.yb4{bottom:664.093333pt;}
.ydf{bottom:667.613333pt;}
.y53{bottom:674.493333pt;}
.y1c{bottom:676.093333pt;}
.yb3{bottom:679.453333pt;}
.y52{bottom:689.853333pt;}
.y1b{bottom:691.453333pt;}
.yb2{bottom:694.653333pt;}
.yde{bottom:698.973333pt;}
.y51{bottom:705.213333pt;}
.y1a{bottom:706.813333pt;}
.yb1{bottom:707.133333pt;}
.y50{bottom:720.573333pt;}
.y19{bottom:722.013333pt;}
.ydd{bottom:730.333333pt;}
.y4f{bottom:735.933333pt;}
.y18{bottom:737.373333pt;}
.y4e{bottom:751.293333pt;}
.y17{bottom:752.733333pt;}
.ydc{bottom:761.693333pt;}
.y4d{bottom:766.493333pt;}
.y16{bottom:768.093333pt;}
.ydb{bottom:777.693333pt;}
.y4c{bottom:781.853333pt;}
.y15{bottom:783.453333pt;}
.yd7{bottom:793.733333pt;}
.y4b{bottom:797.253333pt;}
.y14{bottom:798.853333pt;}
.y4a{bottom:812.613333pt;}
.y13{bottom:814.533333pt;}
.y49{bottom:827.973333pt;}
.y12{bottom:831.333333pt;}
.y48{bottom:843.333333pt;}
.y11{bottom:848.293333pt;}
.y47{bottom:858.533333pt;}
.y10{bottom:865.093333pt;}
.y46{bottom:873.893333pt;}
.yf{bottom:881.893333pt;}
.y45{bottom:889.253333pt;}
.ye{bottom:898.373333pt;}
.y44{bottom:904.613333pt;}
.yd{bottom:914.373333pt;}
.y43{bottom:919.973333pt;}
.yc{bottom:932.773333pt;}
.y42{bottom:935.173333pt;}
.y8{bottom:950.853333pt;}
.y7{bottom:967.173333pt;}
.y6{bottom:981.253333pt;}
.y5{bottom:997.253333pt;}
.y4{bottom:1012.133333pt;}
.y3{bottom:1049.600000pt;}
.y2{bottom:1066.080000pt;}
.y1{bottom:1081.440000pt;}
.y157{bottom:1122.720000pt;}
.h1c{height:-806.373333pt;}
.h1b{height:-790.373333pt;}
.h1a{height:-774.341333pt;}
.h19{height:-758.333333pt;}
.hc{height:15.200000pt;}
.hb{height:15.360000pt;}
.h9{height:15.392000pt;}
.hf{height:30.560000pt;}
.h12{height:30.592000pt;}
.h10{height:30.720000pt;}
.h14{height:30.752000pt;}
.h5{height:37.479688pt;}
.h18{height:38.076250pt;}
.h8{height:41.543750pt;}
.h7{height:42.866250pt;}
.h6{height:43.031250pt;}
.hd{height:43.108125pt;}
.h4{height:45.156250pt;}
.ha{height:47.200000pt;}
.h2{height:47.621250pt;}
.h3{height:52.785000pt;}
.he{height:61.920000pt;}
.h17{height:93.440000pt;}
.h16{height:93.472000pt;}
.h15{height:124.832000pt;}
.h13{height:249.946667pt;}
.h11{height:283.386667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w19{width:-1728.159867pt;}
.w18{width:-1282.173200pt;}
.w17{width:-1167.266533pt;}
.w10{width:44.160000pt;}
.wb{width:44.800000pt;}
.we{width:45.920000pt;}
.wc{width:56.032000pt;}
.wf{width:58.912000pt;}
.w16{width:69.440000pt;}
.w11{width:73.280000pt;}
.w7{width:73.472000pt;}
.wd{width:73.600000pt;}
.w14{width:78.400000pt;}
.w15{width:115.360000pt;}
.w12{width:115.392000pt;}
.w8{width:175.706667pt;}
.wa{width:177.786667pt;}
.w4{width:178.906667pt;}
.w9{width:179.706667pt;}
.w5{width:207.066667pt;}
.w6{width:207.226667pt;}
.w13{width:408.413333pt;}
.w3{width:414.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:6.880000pt;}
.x3d{left:10.880000pt;}
.x18{left:33.280000pt;}
.x19{left:49.440000pt;}
.x16{left:63.514667pt;}
.x29{left:65.120000pt;}
.x1{left:71.999988pt;}
.x32{left:74.560000pt;}
.x30{left:75.519988pt;}
.x7{left:77.119988pt;}
.xa{left:78.751988pt;}
.x1c{left:86.080000pt;}
.x2{left:88.831988pt;}
.x1b{left:92.960000pt;}
.x11{left:96.031988pt;}
.x1a{left:98.080000pt;}
.x35{left:99.391988pt;}
.x3f{left:100.511988pt;}
.xc{left:107.871988pt;}
.x4{left:119.071988pt;}
.x12{left:120.031988pt;}
.x2d{left:143.706655pt;}
.x20{left:146.106667pt;}
.x8{left:171.706655pt;}
.x2b{left:181.146667pt;}
.x33{left:190.586667pt;}
.x22{left:191.546667pt;}
.x2e{left:195.066667pt;}
.xd{left:217.146655pt;}
.x39{left:232.986655pt;}
.x1f{left:244.186655pt;}
.x23{left:248.226667pt;}
.x13{left:257.986655pt;}
.x28{left:281.186655pt;}
.x1d{left:284.866655pt;}
.x10{left:286.786655pt;}
.x9{left:303.586655pt;}
.x3e{left:308.546655pt;}
.x37{left:313.346655pt;}
.xb{left:318.946655pt;}
.x14{left:321.026655pt;}
.xf{left:322.946655pt;}
.x31{left:326.146655pt;}
.x6{left:331.746655pt;}
.x5{left:345.826655pt;}
.x36{left:348.546655pt;}
.x24{left:369.026667pt;}
.xe{left:376.226655pt;}
.x15{left:400.226655pt;}
.x25{left:428.573333pt;}
.x3{left:441.533322pt;}
.x17{left:494.653333pt;}
.x21{left:502.813333pt;}
.x26{left:547.613333pt;}
.x2c{left:590.213333pt;}
.x34{left:599.653333pt;}
.x2f{left:604.133333pt;}
.x27{left:607.333333pt;}
.x38{left:637.893322pt;}
.x1e{left:644.453322pt;}
.x3a{left:1167.266667pt;}
.x3b{left:1282.173333pt;}
.x3c{left:1728.160000pt;}
}




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