
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_bbe388d9e89e171c0a2beb00.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090820;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_003600bd87d6b0f841a322ae.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5582292e3d7f14a6565ca6b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090820;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_9aa42bf26377bb7180307a04.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3747e44e7cf5b12f8f4ac267.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.099121;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_48fdc75fa4f25001587601d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.099121;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_75f1c8433ccb27d92fe026af.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_a7c4649296753e9aaca0d3ad.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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;}
.m2{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.lsf{letter-spacing:-0.774000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.206400px;}
.ls9{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls15{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.702720px;}
.lse{letter-spacing:0.900000px;}
.lsd{letter-spacing:1.620000px;}
.ls17{letter-spacing:2.340000px;}
.ls5{letter-spacing:3.060000px;}
.ls19{letter-spacing:4.500000px;}
.ls6{letter-spacing:5.220000px;}
.ls4{letter-spacing:5.940000px;}
.ls1a{letter-spacing:6.660000px;}
.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;}
}
.ws0{word-spacing:-15.300000px;}
.wse{word-spacing:-15.246600px;}
.ws8{word-spacing:-15.238800px;}
.ws9{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.wsa{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.733600px;}
.ws5{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.500000px;}
.ws2{word-spacing:-9.720000px;}
.ws3{word-spacing:-9.000000px;}
.ws6{word-spacing:0.000000px;}
._16{margin-left:-4.498800px;}
._e{margin-left:-3.212880px;}
._7{margin-left:-2.165520px;}
._1{margin-left:-1.068480px;}
._0{width:1.627920px;}
._6{width:2.796480px;}
._5{width:4.266240px;}
._3{width:5.474640px;}
._2{width:6.590880px;}
._8{width:7.799760px;}
._4{width:8.844480px;}
._b{width:9.846000px;}
._f{width:10.936080px;}
._13{width:12.028080px;}
._11{width:13.319280px;}
._12{width:16.402320px;}
._10{width:17.848800px;}
._d{width:18.884160px;}
._c{width:20.079360px;}
._17{width:21.116880px;}
._9{width:22.156560px;}
._a{width:23.230080px;}
._15{width:25.995360px;}
._14{width:27.668880px;}
._18{width:29.925360px;}
._19{width:31.499760px;}
._1a{width:32.503200px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc2{bottom:3.240000px;}
.y11{bottom:5.220000px;}
.yf{bottom:5.760000px;}
.yfc{bottom:7.200000px;}
.ydb{bottom:7.380000px;}
.y101{bottom:7.425000px;}
.yd{bottom:7.560000px;}
.y7{bottom:9.540000px;}
.y4{bottom:10.260000px;}
.yc8{bottom:11.520000px;}
.ybd{bottom:11.700000px;}
.ycb{bottom:11.880000px;}
.yc4{bottom:20.340000px;}
.yc0{bottom:20.520000px;}
.yc{bottom:23.220000px;}
.y6{bottom:26.640000px;}
.y3f{bottom:29.160000px;}
.ybf{bottom:37.800000px;}
.y3{bottom:38.520000px;}
.yb{bottom:47.700000px;}
.yc1{bottom:55.125000px;}
.ya{bottom:63.180000px;}
.y9{bottom:79.020000px;}
.y142{bottom:85.536000px;}
.y169{bottom:88.596000px;}
.y77{bottom:93.996000px;}
.y3d{bottom:99.216000px;}
.y141{bottom:102.816000px;}
.y168{bottom:110.376000px;}
.y76{bottom:111.276000px;}
.yf8{bottom:114.876000px;}
.y3c{bottom:116.496000px;}
.y12b{bottom:126.936000px;}
.y167{bottom:127.656000px;}
.y75{bottom:128.556000px;}
.y140{bottom:129.096000px;}
.y116{bottom:129.816000px;}
.yf7{bottom:132.156000px;}
.yb8{bottom:132.876000px;}
.y3b{bottom:133.776000px;}
.y12a{bottom:144.216000px;}
.y13f{bottom:146.376000px;}
.y115{bottom:147.096000px;}
.yf6{bottom:149.436000px;}
.yb7{bottom:150.150000px;}
.y3a{bottom:151.050000px;}
.y74{bottom:154.830000px;}
.y129{bottom:161.490000px;}
.y13e{bottom:163.650000px;}
.y114{bottom:164.370000px;}
.yf5{bottom:166.710000px;}
.yb6{bottom:167.430000px;}
.y39{bottom:168.150000px;}
.y73{bottom:172.110000px;}
.y13d{bottom:180.930000px;}
.y113{bottom:181.650000px;}
.y38{bottom:185.430000px;}
.y128{bottom:187.590000px;}
.y166{bottom:188.310000px;}
.y72{bottom:189.210000px;}
.yf4{bottom:192.810000px;}
.yb5{bottom:193.530000px;}
.y13c{bottom:198.030000px;}
.y112{bottom:198.930000px;}
.y37{bottom:202.710000px;}
.y127{bottom:204.870000px;}
.y165{bottom:205.590000px;}
.y71{bottom:206.490000px;}
.yf3{bottom:210.090000px;}
.yb4{bottom:210.810000px;}
.y111{bottom:216.030000px;}
.y36{bottom:219.990000px;}
.y126{bottom:222.150000px;}
.y70{bottom:223.770000px;}
.y13b{bottom:224.310000px;}
.yf2{bottom:227.370000px;}
.yb3{bottom:228.090000px;}
.y110{bottom:233.310000px;}
.y35{bottom:237.270000px;}
.y125{bottom:239.430000px;}
.y6f{bottom:241.050000px;}
.y13a{bottom:241.590000px;}
.yf1{bottom:244.650000px;}
.yb2{bottom:245.370000px;}
.y10f{bottom:250.590000px;}
.y34{bottom:254.370000px;}
.y124{bottom:256.710000px;}
.y6e{bottom:258.330000px;}
.y139{bottom:258.870000px;}
.yf0{bottom:261.930000px;}
.y164{bottom:266.430000px;}
.y33{bottom:271.650000px;}
.y10e{bottom:276.870000px;}
.yef{bottom:279.210000px;}
.y123{bottom:282.810000px;}
.y163{bottom:283.710000px;}
.y6d{bottom:284.430000px;}
.y138{bottom:285.150000px;}
.y32{bottom:288.930000px;}
.yee{bottom:296.310000px;}
.yb1{bottom:297.750000px;}
.y6c{bottom:301.710000px;}
.y10d{bottom:303.150000px;}
.y162{bottom:305.310000px;}
.y31{bottom:306.210000px;}
.y137{bottom:311.250000px;}
.y122{bottom:312.150000px;}
.yb0{bottom:315.030000px;}
.y6b{bottom:318.990000px;}
.yed{bottom:322.590000px;}
.y30{bottom:323.490000px;}
.y10c{bottom:329.070000px;}
.yaf{bottom:332.310000px;}
.y6a{bottom:336.270000px;}
.y136{bottom:337.395000px;}
.y121{bottom:338.115000px;}
.y2f{bottom:340.815000px;}
.y161{bottom:344.415000px;}
.yd3{bottom:347.115000px;}
.yec{bottom:348.915000px;}
.yae{bottom:349.635000px;}
.y69{bottom:353.595000px;}
.y2e{bottom:357.915000px;}
.y160{bottom:361.695000px;}
.yeb{bottom:366.195000px;}
.yad{bottom:366.915000px;}
.y68{bottom:370.875000px;}
.yd2{bottom:373.215000px;}
.y2d{bottom:375.195000px;}
.yea{bottom:383.475000px;}
.yac{bottom:384.195000px;}
.y67{bottom:388.155000px;}
.y2c{bottom:392.475000px;}
.yd1{bottom:400.035000px;}
.ye9{bottom:400.755000px;}
.yab{bottom:401.475000px;}
.y2b{bottom:409.755000px;}
.y66{bottom:414.255000px;}
.ye8{bottom:417.855000px;}
.y15f{bottom:422.355000px;}
.y9b{bottom:423.975000px;}
.y2a{bottom:427.035000px;}
.yaa{bottom:427.575000px;}
.y65{bottom:431.535000px;}
.yd0{bottom:434.955000px;}
.y15e{bottom:439.635000px;}
.ye7{bottom:444.135000px;}
.ya9{bottom:444.855000px;}
.y64{bottom:448.815000px;}
.y9a{bottom:450.075000px;}
.y29{bottom:458.715000px;}
.y15d{bottom:461.415000px;}
.ya8{bottom:462.135000px;}
.y63{bottom:466.095000px;}
.y99{bottom:467.355000px;}
.ye6{bottom:467.895000px;}
.ycf{bottom:469.695000px;}
.y28{bottom:478.695000px;}
.y62{bottom:483.375000px;}
.y98{bottom:484.635000px;}
.ya7{bottom:488.415000px;}
.y15c{bottom:495.975000px;}
.y61{bottom:500.475000px;}
.y97{bottom:501.915000px;}
.ye5{bottom:503.175000px;}
.yce{bottom:504.435000px;}
.y27{bottom:504.795000px;}
.ya6{bottom:505.695000px;}
.y15b{bottom:517.575000px;}
.y96{bottom:519.195000px;}
.y60{bottom:526.755000px;}
.y26{bottom:531.075000px;}
.ya5{bottom:531.795000px;}
.y15a{bottom:534.855000px;}
.y95{bottom:536.475000px;}
.ye4{bottom:538.455000px;}
.ycd{bottom:539.355000px;}
.y5f{bottom:544.035000px;}
.y25{bottom:548.355000px;}
.ya4{bottom:549.075000px;}
.y159{bottom:552.135000px;}
.y94{bottom:553.755000px;}
.y5e{bottom:561.315000px;}
.y24{bottom:565.635000px;}
.y93{bottom:570.855000px;}
.ye3{bottom:573.735000px;}
.y158{bottom:573.915000px;}
.ycc{bottom:574.095000px;}
.ya3{bottom:575.355000px;}
.y5d{bottom:578.595000px;}
.y23{bottom:582.915000px;}
.y92{bottom:588.135000px;}
.y157{bottom:591.195000px;}
.ya2{bottom:592.635000px;}
.y5c{bottom:595.875000px;}
.y22{bottom:600.195000px;}
.yca{bottom:608.865000px;}
.y156{bottom:612.825000px;}
.y5b{bottom:613.005000px;}
.y91{bottom:614.445000px;}
.y21{bottom:617.505000px;}
.ya1{bottom:618.945000px;}
.y155{bottom:630.105000px;}
.y5a{bottom:630.285000px;}
.y90{bottom:631.725000px;}
.y20{bottom:634.605000px;}
.ye2{bottom:635.145000px;}
.ya0{bottom:636.225000px;}
.y120{bottom:641.085000px;}
.yc9{bottom:644.145000px;}
.y154{bottom:647.385000px;}
.y8f{bottom:649.005000px;}
.y1f{bottom:651.885000px;}
.y9f{bottom:653.325000px;}
.y59{bottom:656.565000px;}
.y8e{bottom:666.105000px;}
.y11f{bottom:667.365000px;}
.y1e{bottom:669.165000px;}
.ye1{bottom:670.425000px;}
.y153{bottom:673.665000px;}
.y58{bottom:673.845000px;}
.yc7{bottom:679.065000px;}
.y9e{bottom:679.605000px;}
.y10b{bottom:681.225000px;}
.y135{bottom:682.665000px;}
.y8d{bottom:683.385000px;}
.y11e{bottom:684.645000px;}
.y1d{bottom:686.445000px;}
.y57{bottom:691.125000px;}
.y10a{bottom:698.505000px;}
.y134{bottom:699.945000px;}
.y11d{bottom:701.925000px;}
.y1c{bottom:703.725000px;}
.ye0{bottom:705.705000px;}
.y9d{bottom:705.885000px;}
.y56{bottom:708.405000px;}
.y8c{bottom:709.665000px;}
.yc6{bottom:713.805000px;}
.y109{bottom:715.605000px;}
.y133{bottom:717.225000px;}
.y11c{bottom:719.025000px;}
.y1b{bottom:721.005000px;}
.y55{bottom:725.505000px;}
.y152{bottom:726.225000px;}
.y9c{bottom:731.805000px;}
.ydf{bottom:731.985000px;}
.y108{bottom:732.885000px;}
.y132{bottom:734.325000px;}
.y8b{bottom:735.945000px;}
.y11b{bottom:736.305000px;}
.y1a{bottom:738.105000px;}
.y54{bottom:742.785000px;}
.yc5{bottom:748.545000px;}
.y107{bottom:750.165000px;}
.y131{bottom:751.605000px;}
.y151{bottom:752.325000px;}
.y8a{bottom:753.225000px;}
.y11a{bottom:753.585000px;}
.y19{bottom:755.385000px;}
.yde{bottom:767.265000px;}
.y106{bottom:767.445000px;}
.y130{bottom:768.885000px;}
.y53{bottom:769.065000px;}
.y18{bottom:772.665000px;}
.y150{bottom:778.605000px;}
.y89{bottom:779.325000px;}
.y119{bottom:779.865000px;}
.yc3{bottom:783.465000px;}
.y105{bottom:784.725000px;}
.y12f{bottom:786.165000px;}
.y52{bottom:786.345000px;}
.y17{bottom:789.945000px;}
.y104{bottom:802.005000px;}
.ydd{bottom:802.365000px;}
.y51{bottom:803.625000px;}
.y14f{bottom:804.885000px;}
.y88{bottom:805.605000px;}
.y16{bottom:807.225000px;}
.y118{bottom:809.025000px;}
.y12e{bottom:812.445000px;}
.ybe{bottom:818.565000px;}
.y103{bottom:819.105000px;}
.y50{bottom:820.725000px;}
.y14e{bottom:822.165000px;}
.y87{bottom:822.885000px;}
.y15{bottom:824.325000px;}
.y117{bottom:835.125000px;}
.ydc{bottom:837.645000px;}
.y4f{bottom:838.005000px;}
.y12d{bottom:838.545000px;}
.y14d{bottom:839.445000px;}
.y86{bottom:840.165000px;}
.y14{bottom:841.605000px;}
.y102{bottom:845.385000px;}
.y4e{bottom:855.285000px;}
.y14c{bottom:856.725000px;}
.y85{bottom:857.445000px;}
.y13{bottom:858.885000px;}
.y12c{bottom:864.645000px;}
.y100{bottom:869.145000px;}
.y4d{bottom:872.610000px;}
.yda{bottom:872.970000px;}
.y14b{bottom:874.050000px;}
.y84{bottom:874.770000px;}
.y12{bottom:876.210000px;}
.ybc{bottom:888.450000px;}
.y4c{bottom:889.890000px;}
.yff{bottom:895.470000px;}
.yd9{bottom:899.250000px;}
.y10{bottom:899.970000px;}
.y14a{bottom:900.150000px;}
.y83{bottom:900.870000px;}
.y4b{bottom:907.170000px;}
.y172{bottom:909.150000px;}
.y149{bottom:917.430000px;}
.y82{bottom:918.150000px;}
.yfe{bottom:921.750000px;}
.ye{bottom:921.930000px;}
.y171{bottom:926.430000px;}
.y4a{bottom:933.270000px;}
.yd8{bottom:934.530000px;}
.y148{bottom:934.710000px;}
.y81{bottom:935.430000px;}
.y8{bottom:943.170000px;}
.y170{bottom:943.710000px;}
.yfd{bottom:948.030000px;}
.y49{bottom:950.550000px;}
.y80{bottom:952.710000px;}
.y147{bottom:960.990000px;}
.ybb{bottom:961.710000px;}
.y16f{bottom:965.490000px;}
.y48{bottom:967.830000px;}
.yd7{bottom:969.810000px;}
.yfb{bottom:974.310000px;}
.y146{bottom:978.270000px;}
.y7f{bottom:978.990000px;}
.y47{bottom:985.110000px;}
.y16e{bottom:987.270000px;}
.y145{bottom:995.550000px;}
.y7e{bottom:996.270000px;}
.yfa{bottom:1000.410000px;}
.y16d{bottom:1004.550000px;}
.yd6{bottom:1004.910000px;}
.y46{bottom:1011.390000px;}
.y7d{bottom:1013.550000px;}
.y144{bottom:1021.650000px;}
.y16c{bottom:1026.150000px;}
.y45{bottom:1028.670000px;}
.y7c{bottom:1030.650000px;}
.y143{bottom:1038.930000px;}
.yd5{bottom:1040.190000px;}
.y5{bottom:1041.630000px;}
.y16b{bottom:1043.430000px;}
.y44{bottom:1045.770000px;}
.y7b{bottom:1047.930000px;}
.y7a{bottom:1065.210000px;}
.y43{bottom:1072.050000px;}
.yf9{bottom:1074.210000px;}
.yd4{bottom:1075.470000px;}
.yba{bottom:1082.490000px;}
.y2{bottom:1089.330000px;}
.y79{bottom:1091.490000px;}
.y42{bottom:1099.590000px;}
.y16a{bottom:1104.090000px;}
.yb9{bottom:1108.590000px;}
.y78{bottom:1108.770000px;}
.y41{bottom:1125.870000px;}
.y40{bottom:1143.180000px;}
.y3e{bottom:1161.720000px;}
.y1{bottom:1161.900000px;}
.hd{height:21.240000px;}
.h1b{height:25.380000px;}
.h18{height:25.560000px;}
.h1c{height:25.596000px;}
.hb{height:32.273438px;}
.h11{height:34.020000px;}
.h15{height:34.056000px;}
.h16{height:34.200000px;}
.h13{height:34.380000px;}
.h1a{height:34.416000px;}
.h14{height:34.560000px;}
.h19{height:34.596000px;}
.h1e{height:43.506914px;}
.h6{height:46.800000px;}
.he{height:48.410156px;}
.hc{height:50.273438px;}
.h10{height:50.976914px;}
.h17{height:51.660000px;}
.h5{height:52.290000px;}
.hf{height:53.573906px;}
.ha{height:54.900000px;}
.h8{height:63.000000px;}
.h7{height:64.546875px;}
.h2{height:65.884219px;}
.h3{height:68.076000px;}
.h12{height:69.156000px;}
.h1d{height:71.613281px;}
.h4{height:83.790000px;}
.h9{height:97.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:39.420000px;}
.w14{width:45.900000px;}
.w18{width:52.560000px;}
.w10{width:68.976000px;}
.wd{width:86.580000px;}
.w11{width:86.760000px;}
.w13{width:88.956000px;}
.w15{width:91.800000px;}
.w16{width:92.736000px;}
.w1d{width:105.660000px;}
.w1b{width:105.876000px;}
.w1c{width:106.056000px;}
.w4{width:109.476000px;}
.wa{width:122.256000px;}
.wc{width:123.876000px;}
.wb{width:126.000000px;}
.w9{width:126.036000px;}
.w1a{width:127.260000px;}
.we{width:127.440000px;}
.w8{width:138.456000px;}
.w12{width:200.910000px;}
.w19{width:222.510000px;}
.w7{width:336.450000px;}
.w6{width:386.745000px;}
.wf{width:466.845000px;}
.w5{width:613.725000px;}
.w3{width:723.210000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:4.854000px;}
.x5{left:8.496000px;}
.x24{left:11.700000px;}
.x31{left:15.480000px;}
.x30{left:17.820000px;}
.x2a{left:19.980000px;}
.x26{left:23.250000px;}
.x28{left:26.640000px;}
.x2d{left:28.650000px;}
.x2c{left:39.240000px;}
.x21{left:49.674000px;}
.x2e{left:53.274000px;}
.x17{left:61.020000px;}
.x1{left:63.899987px;}
.x2b{left:65.154000px;}
.x22{left:73.254000px;}
.x2f{left:82.794000px;}
.x2{left:84.960000px;}
.xd{left:92.375987px;}
.x3a{left:102.455987px;}
.x8{left:103.860000px;}
.x3c{left:109.835987px;}
.xe{left:111.815987px;}
.x18{left:130.356000px;}
.x3b{left:136.295987px;}
.x13{left:149.256000px;}
.x3{left:158.250000px;}
.x6{left:194.430000px;}
.x19{left:217.470000px;}
.x9{left:223.410000px;}
.x4{left:249.015000px;}
.x12{left:256.529987px;}
.x35{left:274.709987px;}
.x15{left:277.050000px;}
.x33{left:288.434987px;}
.x20{left:297.434987px;}
.x16{left:301.934987px;}
.x37{left:306.254987px;}
.x38{left:319.034987px;}
.x23{left:335.055000px;}
.x11{left:343.874987px;}
.xa{left:349.455000px;}
.x1a{left:418.755000px;}
.xf{left:437.654987px;}
.x25{left:462.675000px;}
.x7{left:471.705000px;}
.x1b{left:508.245000px;}
.x1c{left:554.505000px;}
.x27{left:568.905000px;}
.xb{left:597.705000px;}
.x1d{left:646.665000px;}
.x29{left:675.330000px;}
.x39{left:687.389987px;}
.xc{left:721.590000px;}
.x36{left:725.909987px;}
.x34{left:732.569987px;}
.x10{left:734.909987px;}
.x1e{left:739.770000px;}
.x32{left:770.729987px;}
.x1f{left:779.550000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsf{letter-spacing:-0.688000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.183467pt;}
.ls9{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls15{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.624640pt;}
.lse{letter-spacing:0.800000pt;}
.lsd{letter-spacing:1.440000pt;}
.ls17{letter-spacing:2.080000pt;}
.ls5{letter-spacing:2.720000pt;}
.ls19{letter-spacing:4.000000pt;}
.ls6{letter-spacing:4.640000pt;}
.ls4{letter-spacing:5.280000pt;}
.ls1a{letter-spacing:5.920000pt;}
.ws0{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.552533pt;}
.ws8{word-spacing:-13.545600pt;}
.ws9{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.185067pt;}
.wsf{word-spacing:-13.096533pt;}
.ws5{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws3{word-spacing:-8.000000pt;}
.ws6{word-spacing:0.000000pt;}
._16{margin-left:-3.998933pt;}
._e{margin-left:-2.855893pt;}
._7{margin-left:-1.924907pt;}
._1{margin-left:-0.949760pt;}
._0{width:1.447040pt;}
._6{width:2.485760pt;}
._5{width:3.792213pt;}
._3{width:4.866347pt;}
._2{width:5.858560pt;}
._8{width:6.933120pt;}
._4{width:7.861760pt;}
._b{width:8.752000pt;}
._f{width:9.720960pt;}
._13{width:10.691627pt;}
._11{width:11.839360pt;}
._12{width:14.579840pt;}
._10{width:15.865600pt;}
._d{width:16.785920pt;}
._c{width:17.848320pt;}
._17{width:18.770560pt;}
._9{width:19.694720pt;}
._a{width:20.648960pt;}
._15{width:23.106987pt;}
._14{width:24.594560pt;}
._18{width:26.600320pt;}
._19{width:27.999787pt;}
._1a{width:28.891733pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:2.880000pt;}
.y11{bottom:4.640000pt;}
.yf{bottom:5.120000pt;}
.yfc{bottom:6.400000pt;}
.ydb{bottom:6.560000pt;}
.y101{bottom:6.600000pt;}
.yd{bottom:6.720000pt;}
.y7{bottom:8.480000pt;}
.y4{bottom:9.120000pt;}
.yc8{bottom:10.240000pt;}
.ybd{bottom:10.400000pt;}
.ycb{bottom:10.560000pt;}
.yc4{bottom:18.080000pt;}
.yc0{bottom:18.240000pt;}
.yc{bottom:20.640000pt;}
.y6{bottom:23.680000pt;}
.y3f{bottom:25.920000pt;}
.ybf{bottom:33.600000pt;}
.y3{bottom:34.240000pt;}
.yb{bottom:42.400000pt;}
.yc1{bottom:49.000000pt;}
.ya{bottom:56.160000pt;}
.y9{bottom:70.240000pt;}
.y142{bottom:76.032000pt;}
.y169{bottom:78.752000pt;}
.y77{bottom:83.552000pt;}
.y3d{bottom:88.192000pt;}
.y141{bottom:91.392000pt;}
.y168{bottom:98.112000pt;}
.y76{bottom:98.912000pt;}
.yf8{bottom:102.112000pt;}
.y3c{bottom:103.552000pt;}
.y12b{bottom:112.832000pt;}
.y167{bottom:113.472000pt;}
.y75{bottom:114.272000pt;}
.y140{bottom:114.752000pt;}
.y116{bottom:115.392000pt;}
.yf7{bottom:117.472000pt;}
.yb8{bottom:118.112000pt;}
.y3b{bottom:118.912000pt;}
.y12a{bottom:128.192000pt;}
.y13f{bottom:130.112000pt;}
.y115{bottom:130.752000pt;}
.yf6{bottom:132.832000pt;}
.yb7{bottom:133.466667pt;}
.y3a{bottom:134.266667pt;}
.y74{bottom:137.626667pt;}
.y129{bottom:143.546667pt;}
.y13e{bottom:145.466667pt;}
.y114{bottom:146.106667pt;}
.yf5{bottom:148.186667pt;}
.yb6{bottom:148.826667pt;}
.y39{bottom:149.466667pt;}
.y73{bottom:152.986667pt;}
.y13d{bottom:160.826667pt;}
.y113{bottom:161.466667pt;}
.y38{bottom:164.826667pt;}
.y128{bottom:166.746667pt;}
.y166{bottom:167.386667pt;}
.y72{bottom:168.186667pt;}
.yf4{bottom:171.386667pt;}
.yb5{bottom:172.026667pt;}
.y13c{bottom:176.026667pt;}
.y112{bottom:176.826667pt;}
.y37{bottom:180.186667pt;}
.y127{bottom:182.106667pt;}
.y165{bottom:182.746667pt;}
.y71{bottom:183.546667pt;}
.yf3{bottom:186.746667pt;}
.yb4{bottom:187.386667pt;}
.y111{bottom:192.026667pt;}
.y36{bottom:195.546667pt;}
.y126{bottom:197.466667pt;}
.y70{bottom:198.906667pt;}
.y13b{bottom:199.386667pt;}
.yf2{bottom:202.106667pt;}
.yb3{bottom:202.746667pt;}
.y110{bottom:207.386667pt;}
.y35{bottom:210.906667pt;}
.y125{bottom:212.826667pt;}
.y6f{bottom:214.266667pt;}
.y13a{bottom:214.746667pt;}
.yf1{bottom:217.466667pt;}
.yb2{bottom:218.106667pt;}
.y10f{bottom:222.746667pt;}
.y34{bottom:226.106667pt;}
.y124{bottom:228.186667pt;}
.y6e{bottom:229.626667pt;}
.y139{bottom:230.106667pt;}
.yf0{bottom:232.826667pt;}
.y164{bottom:236.826667pt;}
.y33{bottom:241.466667pt;}
.y10e{bottom:246.106667pt;}
.yef{bottom:248.186667pt;}
.y123{bottom:251.386667pt;}
.y163{bottom:252.186667pt;}
.y6d{bottom:252.826667pt;}
.y138{bottom:253.466667pt;}
.y32{bottom:256.826667pt;}
.yee{bottom:263.386667pt;}
.yb1{bottom:264.666667pt;}
.y6c{bottom:268.186667pt;}
.y10d{bottom:269.466667pt;}
.y162{bottom:271.386667pt;}
.y31{bottom:272.186667pt;}
.y137{bottom:276.666667pt;}
.y122{bottom:277.466667pt;}
.yb0{bottom:280.026667pt;}
.y6b{bottom:283.546667pt;}
.yed{bottom:286.746667pt;}
.y30{bottom:287.546667pt;}
.y10c{bottom:292.506667pt;}
.yaf{bottom:295.386667pt;}
.y6a{bottom:298.906667pt;}
.y136{bottom:299.906667pt;}
.y121{bottom:300.546667pt;}
.y2f{bottom:302.946667pt;}
.y161{bottom:306.146667pt;}
.yd3{bottom:308.546667pt;}
.yec{bottom:310.146667pt;}
.yae{bottom:310.786667pt;}
.y69{bottom:314.306667pt;}
.y2e{bottom:318.146667pt;}
.y160{bottom:321.506667pt;}
.yeb{bottom:325.506667pt;}
.yad{bottom:326.146667pt;}
.y68{bottom:329.666667pt;}
.yd2{bottom:331.746667pt;}
.y2d{bottom:333.506667pt;}
.yea{bottom:340.866667pt;}
.yac{bottom:341.506667pt;}
.y67{bottom:345.026667pt;}
.y2c{bottom:348.866667pt;}
.yd1{bottom:355.586667pt;}
.ye9{bottom:356.226667pt;}
.yab{bottom:356.866667pt;}
.y2b{bottom:364.226667pt;}
.y66{bottom:368.226667pt;}
.ye8{bottom:371.426667pt;}
.y15f{bottom:375.426667pt;}
.y9b{bottom:376.866667pt;}
.y2a{bottom:379.586667pt;}
.yaa{bottom:380.066667pt;}
.y65{bottom:383.586667pt;}
.yd0{bottom:386.626667pt;}
.y15e{bottom:390.786667pt;}
.ye7{bottom:394.786667pt;}
.ya9{bottom:395.426667pt;}
.y64{bottom:398.946667pt;}
.y9a{bottom:400.066667pt;}
.y29{bottom:407.746667pt;}
.y15d{bottom:410.146667pt;}
.ya8{bottom:410.786667pt;}
.y63{bottom:414.306667pt;}
.y99{bottom:415.426667pt;}
.ye6{bottom:415.906667pt;}
.ycf{bottom:417.506667pt;}
.y28{bottom:425.506667pt;}
.y62{bottom:429.666667pt;}
.y98{bottom:430.786667pt;}
.ya7{bottom:434.146667pt;}
.y15c{bottom:440.866667pt;}
.y61{bottom:444.866667pt;}
.y97{bottom:446.146667pt;}
.ye5{bottom:447.266667pt;}
.yce{bottom:448.386667pt;}
.y27{bottom:448.706667pt;}
.ya6{bottom:449.506667pt;}
.y15b{bottom:460.066667pt;}
.y96{bottom:461.506667pt;}
.y60{bottom:468.226667pt;}
.y26{bottom:472.066667pt;}
.ya5{bottom:472.706667pt;}
.y15a{bottom:475.426667pt;}
.y95{bottom:476.866667pt;}
.ye4{bottom:478.626667pt;}
.ycd{bottom:479.426667pt;}
.y5f{bottom:483.586667pt;}
.y25{bottom:487.426667pt;}
.ya4{bottom:488.066667pt;}
.y159{bottom:490.786667pt;}
.y94{bottom:492.226667pt;}
.y5e{bottom:498.946667pt;}
.y24{bottom:502.786667pt;}
.y93{bottom:507.426667pt;}
.ye3{bottom:509.986667pt;}
.y158{bottom:510.146667pt;}
.ycc{bottom:510.306667pt;}
.ya3{bottom:511.426667pt;}
.y5d{bottom:514.306667pt;}
.y23{bottom:518.146667pt;}
.y92{bottom:522.786667pt;}
.y157{bottom:525.506667pt;}
.ya2{bottom:526.786667pt;}
.y5c{bottom:529.666667pt;}
.y22{bottom:533.506667pt;}
.yca{bottom:541.213333pt;}
.y156{bottom:544.733333pt;}
.y5b{bottom:544.893333pt;}
.y91{bottom:546.173333pt;}
.y21{bottom:548.893333pt;}
.ya1{bottom:550.173333pt;}
.y155{bottom:560.093333pt;}
.y5a{bottom:560.253333pt;}
.y90{bottom:561.533333pt;}
.y20{bottom:564.093333pt;}
.ye2{bottom:564.573333pt;}
.ya0{bottom:565.533333pt;}
.y120{bottom:569.853333pt;}
.yc9{bottom:572.573333pt;}
.y154{bottom:575.453333pt;}
.y8f{bottom:576.893333pt;}
.y1f{bottom:579.453333pt;}
.y9f{bottom:580.733333pt;}
.y59{bottom:583.613333pt;}
.y8e{bottom:592.093333pt;}
.y11f{bottom:593.213333pt;}
.y1e{bottom:594.813333pt;}
.ye1{bottom:595.933333pt;}
.y153{bottom:598.813333pt;}
.y58{bottom:598.973333pt;}
.yc7{bottom:603.613333pt;}
.y9e{bottom:604.093333pt;}
.y10b{bottom:605.533333pt;}
.y135{bottom:606.813333pt;}
.y8d{bottom:607.453333pt;}
.y11e{bottom:608.573333pt;}
.y1d{bottom:610.173333pt;}
.y57{bottom:614.333333pt;}
.y10a{bottom:620.893333pt;}
.y134{bottom:622.173333pt;}
.y11d{bottom:623.933333pt;}
.y1c{bottom:625.533333pt;}
.ye0{bottom:627.293333pt;}
.y9d{bottom:627.453333pt;}
.y56{bottom:629.693333pt;}
.y8c{bottom:630.813333pt;}
.yc6{bottom:634.493333pt;}
.y109{bottom:636.093333pt;}
.y133{bottom:637.533333pt;}
.y11c{bottom:639.133333pt;}
.y1b{bottom:640.893333pt;}
.y55{bottom:644.893333pt;}
.y152{bottom:645.533333pt;}
.y9c{bottom:650.493333pt;}
.ydf{bottom:650.653333pt;}
.y108{bottom:651.453333pt;}
.y132{bottom:652.733333pt;}
.y8b{bottom:654.173333pt;}
.y11b{bottom:654.493333pt;}
.y1a{bottom:656.093333pt;}
.y54{bottom:660.253333pt;}
.yc5{bottom:665.373333pt;}
.y107{bottom:666.813333pt;}
.y131{bottom:668.093333pt;}
.y151{bottom:668.733333pt;}
.y8a{bottom:669.533333pt;}
.y11a{bottom:669.853333pt;}
.y19{bottom:671.453333pt;}
.yde{bottom:682.013333pt;}
.y106{bottom:682.173333pt;}
.y130{bottom:683.453333pt;}
.y53{bottom:683.613333pt;}
.y18{bottom:686.813333pt;}
.y150{bottom:692.093333pt;}
.y89{bottom:692.733333pt;}
.y119{bottom:693.213333pt;}
.yc3{bottom:696.413333pt;}
.y105{bottom:697.533333pt;}
.y12f{bottom:698.813333pt;}
.y52{bottom:698.973333pt;}
.y17{bottom:702.173333pt;}
.y104{bottom:712.893333pt;}
.ydd{bottom:713.213333pt;}
.y51{bottom:714.333333pt;}
.y14f{bottom:715.453333pt;}
.y88{bottom:716.093333pt;}
.y16{bottom:717.533333pt;}
.y118{bottom:719.133333pt;}
.y12e{bottom:722.173333pt;}
.ybe{bottom:727.613333pt;}
.y103{bottom:728.093333pt;}
.y50{bottom:729.533333pt;}
.y14e{bottom:730.813333pt;}
.y87{bottom:731.453333pt;}
.y15{bottom:732.733333pt;}
.y117{bottom:742.333333pt;}
.ydc{bottom:744.573333pt;}
.y4f{bottom:744.893333pt;}
.y12d{bottom:745.373333pt;}
.y14d{bottom:746.173333pt;}
.y86{bottom:746.813333pt;}
.y14{bottom:748.093333pt;}
.y102{bottom:751.453333pt;}
.y4e{bottom:760.253333pt;}
.y14c{bottom:761.533333pt;}
.y85{bottom:762.173333pt;}
.y13{bottom:763.453333pt;}
.y12c{bottom:768.573333pt;}
.y100{bottom:772.573333pt;}
.y4d{bottom:775.653333pt;}
.yda{bottom:775.973333pt;}
.y14b{bottom:776.933333pt;}
.y84{bottom:777.573333pt;}
.y12{bottom:778.853333pt;}
.ybc{bottom:789.733333pt;}
.y4c{bottom:791.013333pt;}
.yff{bottom:795.973333pt;}
.yd9{bottom:799.333333pt;}
.y10{bottom:799.973333pt;}
.y14a{bottom:800.133333pt;}
.y83{bottom:800.773333pt;}
.y4b{bottom:806.373333pt;}
.y172{bottom:808.133333pt;}
.y149{bottom:815.493333pt;}
.y82{bottom:816.133333pt;}
.yfe{bottom:819.333333pt;}
.ye{bottom:819.493333pt;}
.y171{bottom:823.493333pt;}
.y4a{bottom:829.573333pt;}
.yd8{bottom:830.693333pt;}
.y148{bottom:830.853333pt;}
.y81{bottom:831.493333pt;}
.y8{bottom:838.373333pt;}
.y170{bottom:838.853333pt;}
.yfd{bottom:842.693333pt;}
.y49{bottom:844.933333pt;}
.y80{bottom:846.853333pt;}
.y147{bottom:854.213333pt;}
.ybb{bottom:854.853333pt;}
.y16f{bottom:858.213333pt;}
.y48{bottom:860.293333pt;}
.yd7{bottom:862.053333pt;}
.yfb{bottom:866.053333pt;}
.y146{bottom:869.573333pt;}
.y7f{bottom:870.213333pt;}
.y47{bottom:875.653333pt;}
.y16e{bottom:877.573333pt;}
.y145{bottom:884.933333pt;}
.y7e{bottom:885.573333pt;}
.yfa{bottom:889.253333pt;}
.y16d{bottom:892.933333pt;}
.yd6{bottom:893.253333pt;}
.y46{bottom:899.013333pt;}
.y7d{bottom:900.933333pt;}
.y144{bottom:908.133333pt;}
.y16c{bottom:912.133333pt;}
.y45{bottom:914.373333pt;}
.y7c{bottom:916.133333pt;}
.y143{bottom:923.493333pt;}
.yd5{bottom:924.613333pt;}
.y5{bottom:925.893333pt;}
.y16b{bottom:927.493333pt;}
.y44{bottom:929.573333pt;}
.y7b{bottom:931.493333pt;}
.y7a{bottom:946.853333pt;}
.y43{bottom:952.933333pt;}
.yf9{bottom:954.853333pt;}
.yd4{bottom:955.973333pt;}
.yba{bottom:962.213333pt;}
.y2{bottom:968.293333pt;}
.y79{bottom:970.213333pt;}
.y42{bottom:977.413333pt;}
.y16a{bottom:981.413333pt;}
.yb9{bottom:985.413333pt;}
.y78{bottom:985.573333pt;}
.y41{bottom:1000.773333pt;}
.y40{bottom:1016.160000pt;}
.y3e{bottom:1032.640000pt;}
.y1{bottom:1032.800000pt;}
.hd{height:18.880000pt;}
.h1b{height:22.560000pt;}
.h18{height:22.720000pt;}
.h1c{height:22.752000pt;}
.hb{height:28.687500pt;}
.h11{height:30.240000pt;}
.h15{height:30.272000pt;}
.h16{height:30.400000pt;}
.h13{height:30.560000pt;}
.h1a{height:30.592000pt;}
.h14{height:30.720000pt;}
.h19{height:30.752000pt;}
.h1e{height:38.672812pt;}
.h6{height:41.600000pt;}
.he{height:43.031250pt;}
.hc{height:44.687500pt;}
.h10{height:45.312813pt;}
.h17{height:45.920000pt;}
.h5{height:46.480000pt;}
.hf{height:47.621250pt;}
.ha{height:48.800000pt;}
.h8{height:56.000000pt;}
.h7{height:57.375000pt;}
.h2{height:58.563750pt;}
.h3{height:60.512000pt;}
.h12{height:61.472000pt;}
.h1d{height:63.656250pt;}
.h4{height:74.480000pt;}
.h9{height:86.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:35.040000pt;}
.w14{width:40.800000pt;}
.w18{width:46.720000pt;}
.w10{width:61.312000pt;}
.wd{width:76.960000pt;}
.w11{width:77.120000pt;}
.w13{width:79.072000pt;}
.w15{width:81.600000pt;}
.w16{width:82.432000pt;}
.w1d{width:93.920000pt;}
.w1b{width:94.112000pt;}
.w1c{width:94.272000pt;}
.w4{width:97.312000pt;}
.wa{width:108.672000pt;}
.wc{width:110.112000pt;}
.wb{width:112.000000pt;}
.w9{width:112.032000pt;}
.w1a{width:113.120000pt;}
.we{width:113.280000pt;}
.w8{width:123.072000pt;}
.w12{width:178.586667pt;}
.w19{width:197.786667pt;}
.w7{width:299.066667pt;}
.w6{width:343.773333pt;}
.wf{width:414.973333pt;}
.w5{width:545.533333pt;}
.w3{width:642.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:4.314667pt;}
.x5{left:7.552000pt;}
.x24{left:10.400000pt;}
.x31{left:13.760000pt;}
.x30{left:15.840000pt;}
.x2a{left:17.760000pt;}
.x26{left:20.666667pt;}
.x28{left:23.680000pt;}
.x2d{left:25.466667pt;}
.x2c{left:34.880000pt;}
.x21{left:44.154667pt;}
.x2e{left:47.354667pt;}
.x17{left:54.240000pt;}
.x1{left:56.799988pt;}
.x2b{left:57.914667pt;}
.x22{left:65.114667pt;}
.x2f{left:73.594667pt;}
.x2{left:75.520000pt;}
.xd{left:82.111988pt;}
.x3a{left:91.071988pt;}
.x8{left:92.320000pt;}
.x3c{left:97.631988pt;}
.xe{left:99.391988pt;}
.x18{left:115.872000pt;}
.x3b{left:121.151988pt;}
.x13{left:132.672000pt;}
.x3{left:140.666667pt;}
.x6{left:172.826667pt;}
.x19{left:193.306667pt;}
.x9{left:198.586667pt;}
.x4{left:221.346667pt;}
.x12{left:228.026655pt;}
.x35{left:244.186655pt;}
.x15{left:246.266667pt;}
.x33{left:256.386655pt;}
.x20{left:264.386655pt;}
.x16{left:268.386655pt;}
.x37{left:272.226655pt;}
.x38{left:283.586655pt;}
.x23{left:297.826667pt;}
.x11{left:305.666655pt;}
.xa{left:310.626667pt;}
.x1a{left:372.226667pt;}
.xf{left:389.026655pt;}
.x25{left:411.266667pt;}
.x7{left:419.293333pt;}
.x1b{left:451.773333pt;}
.x1c{left:492.893333pt;}
.x27{left:505.693333pt;}
.xb{left:531.293333pt;}
.x1d{left:574.813333pt;}
.x29{left:600.293333pt;}
.x39{left:611.013322pt;}
.xc{left:641.413333pt;}
.x36{left:645.253322pt;}
.x34{left:651.173322pt;}
.x10{left:653.253322pt;}
.x1e{left:657.573333pt;}
.x32{left:685.093322pt;}
.x1f{left:692.933333pt;}
}




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