
    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_42e1772cab2cf8c63d7dd4e6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ba6dd6cc2a7196510c5e67b2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_259e1bec161a651ae4ad7b4a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c8ece175c47d18a5f63249c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_f69c21a9a30ff741c5506e98.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_f884285d7287d7553671df8c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_364224d4ba3ee1f7c300fc59.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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsc{letter-spacing:-0.666000px;}
.ls6{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.457800px;}
.ls11{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.357000px;}
.ls8{letter-spacing:-0.322800px;}
.ls2{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.206400px;}
.ls17{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.053280px;}
.ls1{letter-spacing:-0.037440px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.206400px;}
.ls9{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.lse{letter-spacing:4.500000px;}
.ls16{letter-spacing:11.466720px;}
.ls15{letter-spacing:41.850720px;}
.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;}
}
.ws4{word-spacing:-24.300000px;}
.ws0{word-spacing:-23.902560px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.254600px;}
.ws2{word-spacing:-16.102200px;}
.ws6{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.146400px;}
.ws10{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.733600px;}
.wse{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.647440px;}
.ws8{word-spacing:-14.613240px;}
.ws5{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._2{margin-left:-2540.505120px;}
._4{margin-left:-1446.151680px;}
._6{margin-left:-1443.110040px;}
._5{margin-left:-936.230400px;}
._7{margin-left:-592.908480px;}
._17{margin-left:-5.588160px;}
._3{margin-left:-1.258560px;}
._0{width:1.244880px;}
._1{width:2.358960px;}
._a{width:3.705840px;}
._d{width:5.392800px;}
._c{width:6.991920px;}
._b{width:8.306640px;}
._9{width:10.051920px;}
._8{width:11.688960px;}
._10{width:13.509360px;}
._12{width:16.265280px;}
._11{width:17.394960px;}
._f{width:18.494880px;}
._e{width:20.006640px;}
._15{width:21.095280px;}
._14{width:23.014800px;}
._13{width:24.501600px;}
._16{width:26.215200px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:2.880000px;}
.fs3{font-size:38.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:3.240000px;}
.y105{bottom:3.780000px;}
.y108{bottom:3.825000px;}
.y8b{bottom:3.960000px;}
.y8c{bottom:4.320000px;}
.y87{bottom:4.500000px;}
.yb7{bottom:4.680000px;}
.y11a{bottom:5.040000px;}
.y11c{bottom:5.400000px;}
.y118{bottom:5.580000px;}
.y116{bottom:6.840000px;}
.y130{bottom:7.020000px;}
.y171{bottom:14.400000px;}
.yb1{bottom:23.400000px;}
.y89{bottom:24.840000px;}
.y170{bottom:33.120000px;}
.y16d{bottom:34.740000px;}
.y93{bottom:45.000000px;}
.y97{bottom:45.030000px;}
.y16f{bottom:51.660000px;}
.y6{bottom:58.680000px;}
.y8e{bottom:65.340000px;}
.y16e{bottom:70.194000px;}
.y9b{bottom:85.320000px;}
.yb5{bottom:87.156000px;}
.y35{bottom:87.516000px;}
.y16c{bottom:87.696000px;}
.y85{bottom:88.056000px;}
.ye3{bottom:88.236000px;}
.y114{bottom:92.376000px;}
.y16b{bottom:93.636000px;}
.y6c{bottom:98.856000px;}
.y147{bottom:99.216000px;}
.yb0{bottom:101.916000px;}
.y34{bottom:107.316000px;}
.y84{bottom:107.856000px;}
.ye2{bottom:108.216000px;}
.y113{bottom:112.176000px;}
.y16a{bottom:113.436000px;}
.y6b{bottom:118.656000px;}
.y146{bottom:119.016000px;}
.yb4{bottom:122.076000px;}
.y33{bottom:127.116000px;}
.y83{bottom:127.656000px;}
.ye1{bottom:128.016000px;}
.y112{bottom:131.976000px;}
.y169{bottom:133.236000px;}
.y6a{bottom:138.636000px;}
.y145{bottom:138.816000px;}
.yb2{bottom:142.236000px;}
.y32{bottom:147.096000px;}
.y82{bottom:147.636000px;}
.ye0{bottom:147.816000px;}
.y111{bottom:151.950000px;}
.y168{bottom:153.210000px;}
.y69{bottom:158.430000px;}
.y144{bottom:158.790000px;}
.yaf{bottom:160.230000px;}
.y31{bottom:166.890000px;}
.y81{bottom:167.430000px;}
.ydf{bottom:167.610000px;}
.y110{bottom:171.750000px;}
.y167{bottom:173.010000px;}
.y68{bottom:178.230000px;}
.y143{bottom:178.590000px;}
.yae{bottom:179.670000px;}
.y30{bottom:186.690000px;}
.y80{bottom:187.230000px;}
.yde{bottom:187.410000px;}
.y10f{bottom:191.550000px;}
.y166{bottom:192.810000px;}
.y67{bottom:198.030000px;}
.y142{bottom:198.390000px;}
.yad{bottom:204.690000px;}
.y2f{bottom:206.490000px;}
.y7f{bottom:207.030000px;}
.ydd{bottom:207.390000px;}
.y10e{bottom:211.350000px;}
.y165{bottom:212.610000px;}
.y66{bottom:217.830000px;}
.y141{bottom:218.190000px;}
.yac{bottom:224.490000px;}
.y2e{bottom:226.290000px;}
.y7e{bottom:226.830000px;}
.ydc{bottom:227.190000px;}
.y10d{bottom:231.150000px;}
.y164{bottom:232.410000px;}
.y65{bottom:237.810000px;}
.y140{bottom:237.990000px;}
.yab{bottom:244.470000px;}
.y2d{bottom:246.270000px;}
.y7d{bottom:246.810000px;}
.ydb{bottom:246.990000px;}
.y10c{bottom:251.130000px;}
.y163{bottom:252.390000px;}
.y64{bottom:257.610000px;}
.y13f{bottom:257.970000px;}
.yaa{bottom:264.270000px;}
.y2c{bottom:266.070000px;}
.y7c{bottom:266.610000px;}
.yda{bottom:266.790000px;}
.y10b{bottom:270.930000px;}
.y162{bottom:272.190000px;}
.y63{bottom:277.410000px;}
.y13e{bottom:277.770000px;}
.ya9{bottom:284.070000px;}
.y2b{bottom:285.870000px;}
.y7b{bottom:286.410000px;}
.yd9{bottom:286.590000px;}
.y10a{bottom:290.730000px;}
.y161{bottom:291.990000px;}
.y62{bottom:297.210000px;}
.y13d{bottom:297.570000px;}
.ya8{bottom:303.870000px;}
.y109{bottom:305.490000px;}
.y2a{bottom:305.670000px;}
.y7a{bottom:306.210000px;}
.yd8{bottom:306.570000px;}
.y160{bottom:311.790000px;}
.y61{bottom:317.010000px;}
.y13c{bottom:317.370000px;}
.ya7{bottom:323.670000px;}
.y107{bottom:324.930000px;}
.y29{bottom:325.470000px;}
.y79{bottom:326.010000px;}
.yd7{bottom:326.370000px;}
.y15f{bottom:331.635000px;}
.y60{bottom:337.035000px;}
.y13b{bottom:337.215000px;}
.ya6{bottom:343.695000px;}
.y106{bottom:344.235000px;}
.y28{bottom:345.495000px;}
.y78{bottom:346.035000px;}
.yd6{bottom:346.215000px;}
.y15e{bottom:351.615000px;}
.y5f{bottom:356.835000px;}
.y13a{bottom:357.195000px;}
.ya5{bottom:363.495000px;}
.y104{bottom:363.675000px;}
.y27{bottom:365.295000px;}
.y77{bottom:365.835000px;}
.yd5{bottom:366.015000px;}
.y15d{bottom:371.415000px;}
.y5e{bottom:376.635000px;}
.y139{bottom:376.995000px;}
.y103{bottom:382.935000px;}
.ya4{bottom:383.295000px;}
.y26{bottom:385.095000px;}
.y76{bottom:385.635000px;}
.yd4{bottom:385.815000px;}
.y15c{bottom:391.215000px;}
.y5d{bottom:396.435000px;}
.y138{bottom:396.795000px;}
.y102{bottom:402.375000px;}
.ya3{bottom:403.095000px;}
.y25{bottom:404.895000px;}
.y75{bottom:405.435000px;}
.yd3{bottom:405.795000px;}
.y15b{bottom:411.015000px;}
.y5c{bottom:416.235000px;}
.y137{bottom:416.595000px;}
.ya2{bottom:422.895000px;}
.y24{bottom:424.695000px;}
.y74{bottom:425.235000px;}
.yd2{bottom:425.595000px;}
.y101{bottom:427.395000px;}
.y15a{bottom:430.815000px;}
.y5b{bottom:436.215000px;}
.y136{bottom:436.395000px;}
.ya1{bottom:442.875000px;}
.y23{bottom:444.675000px;}
.y73{bottom:445.215000px;}
.yd1{bottom:445.395000px;}
.y100{bottom:447.195000px;}
.y159{bottom:450.795000px;}
.y135{bottom:451.335000px;}
.y5a{bottom:456.015000px;}
.ya0{bottom:462.675000px;}
.y22{bottom:464.475000px;}
.y72{bottom:465.015000px;}
.yd0{bottom:465.195000px;}
.yff{bottom:467.175000px;}
.y158{bottom:470.595000px;}
.y134{bottom:473.835000px;}
.y59{bottom:475.815000px;}
.y9a{bottom:477.435000px;}
.y21{bottom:484.275000px;}
.y71{bottom:484.815000px;}
.ycf{bottom:484.995000px;}
.yfe{bottom:486.975000px;}
.y157{bottom:490.395000px;}
.y133{bottom:495.435000px;}
.y58{bottom:495.615000px;}
.y9f{bottom:497.595000px;}
.y20{bottom:504.075000px;}
.y70{bottom:504.615000px;}
.yce{bottom:504.975000px;}
.yfd{bottom:506.775000px;}
.y156{bottom:510.195000px;}
.y57{bottom:515.415000px;}
.y9e{bottom:517.755000px;}
.y132{bottom:517.935000px;}
.y1f{bottom:523.875000px;}
.y6f{bottom:524.415000px;}
.ycd{bottom:524.775000px;}
.yfc{bottom:526.575000px;}
.y155{bottom:529.995000px;}
.y56{bottom:535.395000px;}
.y9d{bottom:537.915000px;}
.y131{bottom:539.535000px;}
.y1e{bottom:543.855000px;}
.y6e{bottom:544.395000px;}
.ycc{bottom:544.575000px;}
.yfb{bottom:546.375000px;}
.y154{bottom:549.975000px;}
.y55{bottom:555.195000px;}
.y9c{bottom:558.075000px;}
.y12f{bottom:562.035000px;}
.y1d{bottom:563.655000px;}
.y6d{bottom:564.195000px;}
.ycb{bottom:564.375000px;}
.yfa{bottom:566.355000px;}
.y153{bottom:569.775000px;}
.y96{bottom:577.515000px;}
.y1c{bottom:583.455000px;}
.y54{bottom:583.995000px;}
.yca{bottom:584.175000px;}
.yf9{bottom:586.155000px;}
.y12e{bottom:589.575000px;}
.y99{bottom:597.705000px;}
.y1b{bottom:603.285000px;}
.y53{bottom:603.825000px;}
.yc9{bottom:604.005000px;}
.yf8{bottom:605.985000px;}
.y12d{bottom:609.405000px;}
.y98{bottom:617.865000px;}
.y1a{bottom:623.085000px;}
.y52{bottom:623.625000px;}
.yc8{bottom:623.985000px;}
.yf7{bottom:625.785000px;}
.y12c{bottom:629.205000px;}
.y92{bottom:637.305000px;}
.y19{bottom:643.065000px;}
.y51{bottom:643.605000px;}
.yc7{bottom:643.785000px;}
.yf6{bottom:645.585000px;}
.y12b{bottom:649.185000px;}
.y95{bottom:657.465000px;}
.y18{bottom:662.865000px;}
.y50{bottom:663.405000px;}
.yc6{bottom:663.585000px;}
.yf5{bottom:665.565000px;}
.y12a{bottom:668.985000px;}
.y94{bottom:677.625000px;}
.y17{bottom:682.665000px;}
.y4f{bottom:683.205000px;}
.yc5{bottom:683.385000px;}
.yf4{bottom:685.365000px;}
.y129{bottom:688.785000px;}
.y8d{bottom:697.065000px;}
.y16{bottom:702.465000px;}
.y4e{bottom:703.005000px;}
.yc4{bottom:703.185000px;}
.yf3{bottom:705.165000px;}
.y128{bottom:708.585000px;}
.y91{bottom:717.225000px;}
.y4d{bottom:722.805000px;}
.yc3{bottom:723.165000px;}
.y15{bottom:724.605000px;}
.yf2{bottom:724.965000px;}
.y127{bottom:728.385000px;}
.y90{bottom:737.565000px;}
.y4c{bottom:742.785000px;}
.yc2{bottom:742.965000px;}
.yf1{bottom:744.765000px;}
.y126{bottom:748.365000px;}
.y14{bottom:753.405000px;}
.y8f{bottom:757.725000px;}
.y4b{bottom:762.585000px;}
.yc1{bottom:762.765000px;}
.yf0{bottom:764.745000px;}
.y125{bottom:768.165000px;}
.y13{bottom:773.205000px;}
.y88{bottom:777.165000px;}
.y4a{bottom:782.385000px;}
.yc0{bottom:782.565000px;}
.yef{bottom:784.545000px;}
.y124{bottom:787.965000px;}
.y12{bottom:793.005000px;}
.y8a{bottom:797.325000px;}
.y49{bottom:802.185000px;}
.ybf{bottom:802.365000px;}
.yee{bottom:804.345000px;}
.y123{bottom:807.765000px;}
.y11{bottom:812.985000px;}
.y86{bottom:816.765000px;}
.y48{bottom:821.985000px;}
.ybe{bottom:822.345000px;}
.yed{bottom:824.145000px;}
.y122{bottom:827.565000px;}
.y10{bottom:832.785000px;}
.y47{bottom:841.965000px;}
.ybd{bottom:842.145000px;}
.yec{bottom:843.945000px;}
.y121{bottom:847.545000px;}
.yf{bottom:852.585000px;}
.y46{bottom:861.765000px;}
.ybc{bottom:861.990000px;}
.yeb{bottom:863.970000px;}
.y120{bottom:867.390000px;}
.ye{bottom:872.430000px;}
.yea{bottom:878.730000px;}
.y45{bottom:881.610000px;}
.ybb{bottom:881.790000px;}
.y11f{bottom:887.190000px;}
.yd{bottom:892.230000px;}
.ye9{bottom:898.170000px;}
.y44{bottom:901.410000px;}
.yba{bottom:901.590000px;}
.y11e{bottom:901.950000px;}
.y152{bottom:906.990000px;}
.yc{bottom:914.370000px;}
.ye8{bottom:917.610000px;}
.y43{bottom:921.210000px;}
.yb9{bottom:921.570000px;}
.y11d{bottom:924.450000px;}
.y151{bottom:926.790000px;}
.yb8{bottom:936.330000px;}
.ye7{bottom:937.050000px;}
.yb{bottom:939.390000px;}
.y42{bottom:941.190000px;}
.y11b{bottom:946.230000px;}
.y150{bottom:946.770000px;}
.ya{bottom:954.150000px;}
.yb6{bottom:955.590000px;}
.ye6{bottom:956.310000px;}
.y41{bottom:960.990000px;}
.y14f{bottom:966.570000px;}
.y119{bottom:968.730000px;}
.y9{bottom:973.950000px;}
.ye5{bottom:975.750000px;}
.y40{bottom:980.790000px;}
.y14e{bottom:986.370000px;}
.y117{bottom:990.330000px;}
.ye4{bottom:995.190000px;}
.y8{bottom:997.350000px;}
.y3f{bottom:1000.590000px;}
.y14d{bottom:1001.130000px;}
.y115{bottom:1012.830000px;}
.y3e{bottom:1020.390000px;}
.y14c{bottom:1023.630000px;}
.y7{bottom:1029.030000px;}
.y3d{bottom:1040.370000px;}
.y14b{bottom:1045.410000px;}
.y3c{bottom:1060.170000px;}
.y5{bottom:1066.110000px;}
.y14a{bottom:1067.910000px;}
.y3b{bottom:1079.970000px;}
.y149{bottom:1089.510000px;}
.y4{bottom:1095.630000px;}
.y3a{bottom:1099.770000px;}
.y148{bottom:1112.010000px;}
.y39{bottom:1119.570000px;}
.y3{bottom:1125.150000px;}
.y38{bottom:1139.580000px;}
.y2{bottom:1154.700000px;}
.y37{bottom:1170.000000px;}
.y1{bottom:1186.560000px;}
.y36{bottom:1193.220000px;}
.h20{height:2.826563px;}
.h16{height:17.280000px;}
.hb{height:18.540000px;}
.h18{height:18.576000px;}
.h11{height:18.720000px;}
.hd{height:19.260000px;}
.hf{height:19.440000px;}
.h13{height:19.476000px;}
.h19{height:20.880000px;}
.h1d{height:20.916000px;}
.h1c{height:21.060000px;}
.h1b{height:21.600000px;}
.h1a{height:21.780000px;}
.h6{height:38.158594px;}
.hc{height:38.700000px;}
.ha{height:41.726953px;}
.h15{height:57.600000px;}
.h7{height:58.651172px;}
.h10{height:59.040000px;}
.h12{height:59.076000px;}
.h17{height:59.614102px;}
.h5{height:60.226875px;}
.h1e{height:61.423863px;}
.h8{height:62.211094px;}
.h4{height:65.010937px;}
.h3{height:66.757500px;}
.h9{height:67.824844px;}
.he{height:79.200000px;}
.h1f{height:84.240000px;}
.h2{height:96.508125px;}
.h14{height:99.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:101.556000px;}
.w5{width:101.880000px;}
.w3{width:117.720000px;}
.w11{width:137.916000px;}
.w1b{width:144.936000px;}
.w17{width:145.296000px;}
.wf{width:149.580000px;}
.w16{width:156.630000px;}
.w18{width:157.350000px;}
.w1d{width:164.550000px;}
.wd{width:165.270000px;}
.w14{width:166.350000px;}
.wc{width:175.350000px;}
.w1c{width:177.330000px;}
.w1e{width:178.230000px;}
.w13{width:178.950000px;}
.w15{width:179.850000px;}
.w1a{width:180.930000px;}
.w10{width:190.110000px;}
.w12{width:192.450000px;}
.w7{width:198.570000px;}
.w19{width:206.130000px;}
.w1f{width:210.810000px;}
.w8{width:210.990000px;}
.we{width:222.735000px;}
.wb{width:230.790000px;}
.w4{width:292.035000px;}
.wa{width:341.355000px;}
.w9{width:573.045000px;}
.w20{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.740000px;}
.xe{left:42.660000px;}
.x1f{left:45.900000px;}
.x1{left:54.179987px;}
.xc{left:57.645000px;}
.x10{left:70.920000px;}
.x1d{left:80.999987px;}
.xf{left:98.145000px;}
.x1e{left:108.035987px;}
.x2{left:138.996000px;}
.x8{left:160.050000px;}
.x1a{left:179.850000px;}
.x14{left:183.270000px;}
.x11{left:185.610000px;}
.x20{left:190.290000px;}
.x17{left:216.210000px;}
.x4{left:257.430000px;}
.xb{left:260.130000px;}
.xa{left:336.135000px;}
.x7{left:338.475000px;}
.x15{left:362.955000px;}
.x18{left:373.575000px;}
.x12{left:376.455000px;}
.x1b{left:386.715000px;}
.xd{left:483.585000px;}
.x9{left:502.305000px;}
.x13{left:515.085000px;}
.x19{left:519.585000px;}
.x16{left:530.025000px;}
.x5{left:550.185000px;}
.x1c{left:568.365000px;}
.x6{left:652.785000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-0.592000pt;}
.ls6{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.406933pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.317333pt;}
.ls8{letter-spacing:-0.286933pt;}
.ls2{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls17{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:-0.033280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.183467pt;}
.ls9{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.lse{letter-spacing:4.000000pt;}
.ls16{letter-spacing:10.192640pt;}
.ls15{letter-spacing:37.200640pt;}
.ws4{word-spacing:-21.600000pt;}
.ws0{word-spacing:-21.246720pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.448533pt;}
.ws2{word-spacing:-14.313067pt;}
.ws6{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.463467pt;}
.ws10{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws11{word-spacing:-13.185067pt;}
.wsa{word-spacing:-13.096533pt;}
.wse{word-spacing:-13.049067pt;}
.ws9{word-spacing:-13.019947pt;}
.ws8{word-spacing:-12.989547pt;}
.ws5{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._2{margin-left:-2258.226773pt;}
._4{margin-left:-1285.468160pt;}
._6{margin-left:-1282.764480pt;}
._5{margin-left:-832.204800pt;}
._7{margin-left:-527.029760pt;}
._17{margin-left:-4.967253pt;}
._3{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._1{width:2.096853pt;}
._a{width:3.294080pt;}
._d{width:4.793600pt;}
._c{width:6.215040pt;}
._b{width:7.383680pt;}
._9{width:8.935040pt;}
._8{width:10.390187pt;}
._10{width:12.008320pt;}
._12{width:14.458027pt;}
._11{width:15.462187pt;}
._f{width:16.439893pt;}
._e{width:17.783680pt;}
._15{width:18.751360pt;}
._14{width:20.457600pt;}
._13{width:21.779200pt;}
._16{width:23.302400pt;}
.fs4{font-size:2.560000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:2.880000pt;}
.y105{bottom:3.360000pt;}
.y108{bottom:3.400000pt;}
.y8b{bottom:3.520000pt;}
.y8c{bottom:3.840000pt;}
.y87{bottom:4.000000pt;}
.yb7{bottom:4.160000pt;}
.y11a{bottom:4.480000pt;}
.y11c{bottom:4.800000pt;}
.y118{bottom:4.960000pt;}
.y116{bottom:6.080000pt;}
.y130{bottom:6.240000pt;}
.y171{bottom:12.800000pt;}
.yb1{bottom:20.800000pt;}
.y89{bottom:22.080000pt;}
.y170{bottom:29.440000pt;}
.y16d{bottom:30.880000pt;}
.y93{bottom:40.000000pt;}
.y97{bottom:40.026667pt;}
.y16f{bottom:45.920000pt;}
.y6{bottom:52.160000pt;}
.y8e{bottom:58.080000pt;}
.y16e{bottom:62.394667pt;}
.y9b{bottom:75.840000pt;}
.yb5{bottom:77.472000pt;}
.y35{bottom:77.792000pt;}
.y16c{bottom:77.952000pt;}
.y85{bottom:78.272000pt;}
.ye3{bottom:78.432000pt;}
.y114{bottom:82.112000pt;}
.y16b{bottom:83.232000pt;}
.y6c{bottom:87.872000pt;}
.y147{bottom:88.192000pt;}
.yb0{bottom:90.592000pt;}
.y34{bottom:95.392000pt;}
.y84{bottom:95.872000pt;}
.ye2{bottom:96.192000pt;}
.y113{bottom:99.712000pt;}
.y16a{bottom:100.832000pt;}
.y6b{bottom:105.472000pt;}
.y146{bottom:105.792000pt;}
.yb4{bottom:108.512000pt;}
.y33{bottom:112.992000pt;}
.y83{bottom:113.472000pt;}
.ye1{bottom:113.792000pt;}
.y112{bottom:117.312000pt;}
.y169{bottom:118.432000pt;}
.y6a{bottom:123.232000pt;}
.y145{bottom:123.392000pt;}
.yb2{bottom:126.432000pt;}
.y32{bottom:130.752000pt;}
.y82{bottom:131.232000pt;}
.ye0{bottom:131.392000pt;}
.y111{bottom:135.066667pt;}
.y168{bottom:136.186667pt;}
.y69{bottom:140.826667pt;}
.y144{bottom:141.146667pt;}
.yaf{bottom:142.426667pt;}
.y31{bottom:148.346667pt;}
.y81{bottom:148.826667pt;}
.ydf{bottom:148.986667pt;}
.y110{bottom:152.666667pt;}
.y167{bottom:153.786667pt;}
.y68{bottom:158.426667pt;}
.y143{bottom:158.746667pt;}
.yae{bottom:159.706667pt;}
.y30{bottom:165.946667pt;}
.y80{bottom:166.426667pt;}
.yde{bottom:166.586667pt;}
.y10f{bottom:170.266667pt;}
.y166{bottom:171.386667pt;}
.y67{bottom:176.026667pt;}
.y142{bottom:176.346667pt;}
.yad{bottom:181.946667pt;}
.y2f{bottom:183.546667pt;}
.y7f{bottom:184.026667pt;}
.ydd{bottom:184.346667pt;}
.y10e{bottom:187.866667pt;}
.y165{bottom:188.986667pt;}
.y66{bottom:193.626667pt;}
.y141{bottom:193.946667pt;}
.yac{bottom:199.546667pt;}
.y2e{bottom:201.146667pt;}
.y7e{bottom:201.626667pt;}
.ydc{bottom:201.946667pt;}
.y10d{bottom:205.466667pt;}
.y164{bottom:206.586667pt;}
.y65{bottom:211.386667pt;}
.y140{bottom:211.546667pt;}
.yab{bottom:217.306667pt;}
.y2d{bottom:218.906667pt;}
.y7d{bottom:219.386667pt;}
.ydb{bottom:219.546667pt;}
.y10c{bottom:223.226667pt;}
.y163{bottom:224.346667pt;}
.y64{bottom:228.986667pt;}
.y13f{bottom:229.306667pt;}
.yaa{bottom:234.906667pt;}
.y2c{bottom:236.506667pt;}
.y7c{bottom:236.986667pt;}
.yda{bottom:237.146667pt;}
.y10b{bottom:240.826667pt;}
.y162{bottom:241.946667pt;}
.y63{bottom:246.586667pt;}
.y13e{bottom:246.906667pt;}
.ya9{bottom:252.506667pt;}
.y2b{bottom:254.106667pt;}
.y7b{bottom:254.586667pt;}
.yd9{bottom:254.746667pt;}
.y10a{bottom:258.426667pt;}
.y161{bottom:259.546667pt;}
.y62{bottom:264.186667pt;}
.y13d{bottom:264.506667pt;}
.ya8{bottom:270.106667pt;}
.y109{bottom:271.546667pt;}
.y2a{bottom:271.706667pt;}
.y7a{bottom:272.186667pt;}
.yd8{bottom:272.506667pt;}
.y160{bottom:277.146667pt;}
.y61{bottom:281.786667pt;}
.y13c{bottom:282.106667pt;}
.ya7{bottom:287.706667pt;}
.y107{bottom:288.826667pt;}
.y29{bottom:289.306667pt;}
.y79{bottom:289.786667pt;}
.yd7{bottom:290.106667pt;}
.y15f{bottom:294.786667pt;}
.y60{bottom:299.586667pt;}
.y13b{bottom:299.746667pt;}
.ya6{bottom:305.506667pt;}
.y106{bottom:305.986667pt;}
.y28{bottom:307.106667pt;}
.y78{bottom:307.586667pt;}
.yd6{bottom:307.746667pt;}
.y15e{bottom:312.546667pt;}
.y5f{bottom:317.186667pt;}
.y13a{bottom:317.506667pt;}
.ya5{bottom:323.106667pt;}
.y104{bottom:323.266667pt;}
.y27{bottom:324.706667pt;}
.y77{bottom:325.186667pt;}
.yd5{bottom:325.346667pt;}
.y15d{bottom:330.146667pt;}
.y5e{bottom:334.786667pt;}
.y139{bottom:335.106667pt;}
.y103{bottom:340.386667pt;}
.ya4{bottom:340.706667pt;}
.y26{bottom:342.306667pt;}
.y76{bottom:342.786667pt;}
.yd4{bottom:342.946667pt;}
.y15c{bottom:347.746667pt;}
.y5d{bottom:352.386667pt;}
.y138{bottom:352.706667pt;}
.y102{bottom:357.666667pt;}
.ya3{bottom:358.306667pt;}
.y25{bottom:359.906667pt;}
.y75{bottom:360.386667pt;}
.yd3{bottom:360.706667pt;}
.y15b{bottom:365.346667pt;}
.y5c{bottom:369.986667pt;}
.y137{bottom:370.306667pt;}
.ya2{bottom:375.906667pt;}
.y24{bottom:377.506667pt;}
.y74{bottom:377.986667pt;}
.yd2{bottom:378.306667pt;}
.y101{bottom:379.906667pt;}
.y15a{bottom:382.946667pt;}
.y5b{bottom:387.746667pt;}
.y136{bottom:387.906667pt;}
.ya1{bottom:393.666667pt;}
.y23{bottom:395.266667pt;}
.y73{bottom:395.746667pt;}
.yd1{bottom:395.906667pt;}
.y100{bottom:397.506667pt;}
.y159{bottom:400.706667pt;}
.y135{bottom:401.186667pt;}
.y5a{bottom:405.346667pt;}
.ya0{bottom:411.266667pt;}
.y22{bottom:412.866667pt;}
.y72{bottom:413.346667pt;}
.yd0{bottom:413.506667pt;}
.yff{bottom:415.266667pt;}
.y158{bottom:418.306667pt;}
.y134{bottom:421.186667pt;}
.y59{bottom:422.946667pt;}
.y9a{bottom:424.386667pt;}
.y21{bottom:430.466667pt;}
.y71{bottom:430.946667pt;}
.ycf{bottom:431.106667pt;}
.yfe{bottom:432.866667pt;}
.y157{bottom:435.906667pt;}
.y133{bottom:440.386667pt;}
.y58{bottom:440.546667pt;}
.y9f{bottom:442.306667pt;}
.y20{bottom:448.066667pt;}
.y70{bottom:448.546667pt;}
.yce{bottom:448.866667pt;}
.yfd{bottom:450.466667pt;}
.y156{bottom:453.506667pt;}
.y57{bottom:458.146667pt;}
.y9e{bottom:460.226667pt;}
.y132{bottom:460.386667pt;}
.y1f{bottom:465.666667pt;}
.y6f{bottom:466.146667pt;}
.ycd{bottom:466.466667pt;}
.yfc{bottom:468.066667pt;}
.y155{bottom:471.106667pt;}
.y56{bottom:475.906667pt;}
.y9d{bottom:478.146667pt;}
.y131{bottom:479.586667pt;}
.y1e{bottom:483.426667pt;}
.y6e{bottom:483.906667pt;}
.ycc{bottom:484.066667pt;}
.yfb{bottom:485.666667pt;}
.y154{bottom:488.866667pt;}
.y55{bottom:493.506667pt;}
.y9c{bottom:496.066667pt;}
.y12f{bottom:499.586667pt;}
.y1d{bottom:501.026667pt;}
.y6d{bottom:501.506667pt;}
.ycb{bottom:501.666667pt;}
.yfa{bottom:503.426667pt;}
.y153{bottom:506.466667pt;}
.y96{bottom:513.346667pt;}
.y1c{bottom:518.626667pt;}
.y54{bottom:519.106667pt;}
.yca{bottom:519.266667pt;}
.yf9{bottom:521.026667pt;}
.y12e{bottom:524.066667pt;}
.y99{bottom:531.293333pt;}
.y1b{bottom:536.253333pt;}
.y53{bottom:536.733333pt;}
.yc9{bottom:536.893333pt;}
.yf8{bottom:538.653333pt;}
.y12d{bottom:541.693333pt;}
.y98{bottom:549.213333pt;}
.y1a{bottom:553.853333pt;}
.y52{bottom:554.333333pt;}
.yc8{bottom:554.653333pt;}
.yf7{bottom:556.253333pt;}
.y12c{bottom:559.293333pt;}
.y92{bottom:566.493333pt;}
.y19{bottom:571.613333pt;}
.y51{bottom:572.093333pt;}
.yc7{bottom:572.253333pt;}
.yf6{bottom:573.853333pt;}
.y12b{bottom:577.053333pt;}
.y95{bottom:584.413333pt;}
.y18{bottom:589.213333pt;}
.y50{bottom:589.693333pt;}
.yc6{bottom:589.853333pt;}
.yf5{bottom:591.613333pt;}
.y12a{bottom:594.653333pt;}
.y94{bottom:602.333333pt;}
.y17{bottom:606.813333pt;}
.y4f{bottom:607.293333pt;}
.yc5{bottom:607.453333pt;}
.yf4{bottom:609.213333pt;}
.y129{bottom:612.253333pt;}
.y8d{bottom:619.613333pt;}
.y16{bottom:624.413333pt;}
.y4e{bottom:624.893333pt;}
.yc4{bottom:625.053333pt;}
.yf3{bottom:626.813333pt;}
.y128{bottom:629.853333pt;}
.y91{bottom:637.533333pt;}
.y4d{bottom:642.493333pt;}
.yc3{bottom:642.813333pt;}
.y15{bottom:644.093333pt;}
.yf2{bottom:644.413333pt;}
.y127{bottom:647.453333pt;}
.y90{bottom:655.613333pt;}
.y4c{bottom:660.253333pt;}
.yc2{bottom:660.413333pt;}
.yf1{bottom:662.013333pt;}
.y126{bottom:665.213333pt;}
.y14{bottom:669.693333pt;}
.y8f{bottom:673.533333pt;}
.y4b{bottom:677.853333pt;}
.yc1{bottom:678.013333pt;}
.yf0{bottom:679.773333pt;}
.y125{bottom:682.813333pt;}
.y13{bottom:687.293333pt;}
.y88{bottom:690.813333pt;}
.y4a{bottom:695.453333pt;}
.yc0{bottom:695.613333pt;}
.yef{bottom:697.373333pt;}
.y124{bottom:700.413333pt;}
.y12{bottom:704.893333pt;}
.y8a{bottom:708.733333pt;}
.y49{bottom:713.053333pt;}
.ybf{bottom:713.213333pt;}
.yee{bottom:714.973333pt;}
.y123{bottom:718.013333pt;}
.y11{bottom:722.653333pt;}
.y86{bottom:726.013333pt;}
.y48{bottom:730.653333pt;}
.ybe{bottom:730.973333pt;}
.yed{bottom:732.573333pt;}
.y122{bottom:735.613333pt;}
.y10{bottom:740.253333pt;}
.y47{bottom:748.413333pt;}
.ybd{bottom:748.573333pt;}
.yec{bottom:750.173333pt;}
.y121{bottom:753.373333pt;}
.yf{bottom:757.853333pt;}
.y46{bottom:766.013333pt;}
.ybc{bottom:766.213333pt;}
.yeb{bottom:767.973333pt;}
.y120{bottom:771.013333pt;}
.ye{bottom:775.493333pt;}
.yea{bottom:781.093333pt;}
.y45{bottom:783.653333pt;}
.ybb{bottom:783.813333pt;}
.y11f{bottom:788.613333pt;}
.yd{bottom:793.093333pt;}
.ye9{bottom:798.373333pt;}
.y44{bottom:801.253333pt;}
.yba{bottom:801.413333pt;}
.y11e{bottom:801.733333pt;}
.y152{bottom:806.213333pt;}
.yc{bottom:812.773333pt;}
.ye8{bottom:815.653333pt;}
.y43{bottom:818.853333pt;}
.yb9{bottom:819.173333pt;}
.y11d{bottom:821.733333pt;}
.y151{bottom:823.813333pt;}
.yb8{bottom:832.293333pt;}
.ye7{bottom:832.933333pt;}
.yb{bottom:835.013333pt;}
.y42{bottom:836.613333pt;}
.y11b{bottom:841.093333pt;}
.y150{bottom:841.573333pt;}
.ya{bottom:848.133333pt;}
.yb6{bottom:849.413333pt;}
.ye6{bottom:850.053333pt;}
.y41{bottom:854.213333pt;}
.y14f{bottom:859.173333pt;}
.y119{bottom:861.093333pt;}
.y9{bottom:865.733333pt;}
.ye5{bottom:867.333333pt;}
.y40{bottom:871.813333pt;}
.y14e{bottom:876.773333pt;}
.y117{bottom:880.293333pt;}
.ye4{bottom:884.613333pt;}
.y8{bottom:886.533333pt;}
.y3f{bottom:889.413333pt;}
.y14d{bottom:889.893333pt;}
.y115{bottom:900.293333pt;}
.y3e{bottom:907.013333pt;}
.y14c{bottom:909.893333pt;}
.y7{bottom:914.693333pt;}
.y3d{bottom:924.773333pt;}
.y14b{bottom:929.253333pt;}
.y3c{bottom:942.373333pt;}
.y5{bottom:947.653333pt;}
.y14a{bottom:949.253333pt;}
.y3b{bottom:959.973333pt;}
.y149{bottom:968.453333pt;}
.y4{bottom:973.893333pt;}
.y3a{bottom:977.573333pt;}
.y148{bottom:988.453333pt;}
.y39{bottom:995.173333pt;}
.y3{bottom:1000.133333pt;}
.y38{bottom:1012.960000pt;}
.y2{bottom:1026.400000pt;}
.y37{bottom:1040.000000pt;}
.y1{bottom:1054.720000pt;}
.y36{bottom:1060.640000pt;}
.h20{height:2.512500pt;}
.h16{height:15.360000pt;}
.hb{height:16.480000pt;}
.h18{height:16.512000pt;}
.h11{height:16.640000pt;}
.hd{height:17.120000pt;}
.hf{height:17.280000pt;}
.h13{height:17.312000pt;}
.h19{height:18.560000pt;}
.h1d{height:18.592000pt;}
.h1c{height:18.720000pt;}
.h1b{height:19.200000pt;}
.h1a{height:19.360000pt;}
.h6{height:33.918750pt;}
.hc{height:34.400000pt;}
.ha{height:37.090625pt;}
.h15{height:51.200000pt;}
.h7{height:52.134375pt;}
.h10{height:52.480000pt;}
.h12{height:52.512000pt;}
.h17{height:52.990313pt;}
.h5{height:53.535000pt;}
.h1e{height:54.598989pt;}
.h8{height:55.298750pt;}
.h4{height:57.787500pt;}
.h3{height:59.340000pt;}
.h9{height:60.288750pt;}
.he{height:70.400000pt;}
.h1f{height:74.880000pt;}
.h2{height:85.785000pt;}
.h14{height:88.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:90.272000pt;}
.w5{width:90.560000pt;}
.w3{width:104.640000pt;}
.w11{width:122.592000pt;}
.w1b{width:128.832000pt;}
.w17{width:129.152000pt;}
.wf{width:132.960000pt;}
.w16{width:139.226667pt;}
.w18{width:139.866667pt;}
.w1d{width:146.266667pt;}
.wd{width:146.906667pt;}
.w14{width:147.866667pt;}
.wc{width:155.866667pt;}
.w1c{width:157.626667pt;}
.w1e{width:158.426667pt;}
.w13{width:159.066667pt;}
.w15{width:159.866667pt;}
.w1a{width:160.826667pt;}
.w10{width:168.986667pt;}
.w12{width:171.066667pt;}
.w7{width:176.506667pt;}
.w19{width:183.226667pt;}
.w1f{width:187.386667pt;}
.w8{width:187.546667pt;}
.we{width:197.986667pt;}
.wb{width:205.146667pt;}
.w4{width:259.586667pt;}
.wa{width:303.426667pt;}
.w9{width:509.373333pt;}
.w20{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:6.880000pt;}
.xe{left:37.920000pt;}
.x1f{left:40.800000pt;}
.x1{left:48.159988pt;}
.xc{left:51.240000pt;}
.x10{left:63.040000pt;}
.x1d{left:71.999988pt;}
.xf{left:87.240000pt;}
.x1e{left:96.031988pt;}
.x2{left:123.552000pt;}
.x8{left:142.266667pt;}
.x1a{left:159.866667pt;}
.x14{left:162.906667pt;}
.x11{left:164.986667pt;}
.x20{left:169.146667pt;}
.x17{left:192.186667pt;}
.x4{left:228.826667pt;}
.xb{left:231.226667pt;}
.xa{left:298.786667pt;}
.x7{left:300.866667pt;}
.x15{left:322.626667pt;}
.x18{left:332.066667pt;}
.x12{left:334.626667pt;}
.x1b{left:343.746667pt;}
.xd{left:429.853333pt;}
.x9{left:446.493333pt;}
.x13{left:457.853333pt;}
.x19{left:461.853333pt;}
.x16{left:471.133333pt;}
.x5{left:489.053333pt;}
.x1c{left:505.213333pt;}
.x6{left:580.253333pt;}
}




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