
    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_7e01c68118c3af7feee0b642.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_6f0e4374c695832caf1972cc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.691895;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_eee4d88aafb344c3ce16ca9c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c69842b92f7fb9e5c4e440d3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.973633;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_a0d4dd602a12c69929c021fa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_5409f3f5128e49e589d95f70.woff')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_21861a3f01f8c7be42d32dcb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.v1{vertical-align:27.360000px;}
.ls14{letter-spacing:-0.305400px;}
.ls10{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.028080px;}
.ls0{letter-spacing:0.119520px;}
.lsa{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.240960px;}
.lsb{letter-spacing:0.305400px;}
.ls8{letter-spacing:0.306600px;}
.ls4{letter-spacing:0.322560px;}
.ls5{letter-spacing:0.326640px;}
.lsd{letter-spacing:0.345360px;}
.ls13{letter-spacing:0.350640px;}
.ls16{letter-spacing:0.354720px;}
.ls7{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.369360px;}
.ls9{letter-spacing:0.378720px;}
.ls2{letter-spacing:0.412560px;}
.ls3{letter-spacing:0.550080px;}
.ls15{letter-spacing:10.944000px;}
.ls12{letter-spacing:41.357280px;}
.ls18{letter-spacing:53.202720px;}
.lsc{letter-spacing:64.026720px;}
.ls17{letter-spacing:83.442720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws1{word-spacing:-30.060000px;}
.ws2{word-spacing:-23.940000px;}
.ws5{word-spacing:-21.420000px;}
.ws8{word-spacing:-21.060000px;}
.ws3{word-spacing:-19.440000px;}
.ws9{word-spacing:-18.000000px;}
.wsa{word-spacing:-16.865400px;}
.ws6{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.300000px;}
.wsd{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.220000px;}
.ws7{word-spacing:0.000000px;}
._d{margin-left:-2.358720px;}
._2{margin-left:-1.195200px;}
._0{width:1.015920px;}
._10{width:2.055600px;}
._1{width:3.623280px;}
._3{width:4.722000px;}
._4{width:5.796720px;}
._1b{width:6.815040px;}
._5{width:8.013360px;}
._f{width:9.145680px;}
._14{width:10.750320px;}
._13{width:11.764080px;}
._b{width:12.817200px;}
._a{width:13.864320px;}
._e{width:14.983680px;}
._6{width:16.015680px;}
._8{width:17.449920px;}
._9{width:18.895440px;}
._19{width:20.666880px;}
._1c{width:21.767040px;}
._12{width:22.806720px;}
._11{width:23.846400px;}
._c{width:25.039440px;}
._1f{width:26.080560px;}
._7{width:27.429840px;}
._16{width:28.615680px;}
._17{width:29.646000px;}
._18{width:30.698640px;}
._22{width:31.806480px;}
._15{width:32.920320px;}
._1d{width:34.179840px;}
._20{width:36.103680px;}
._21{width:37.254480px;}
._1e{width:38.663040px;}
._1a{width:39.942720px;}
._25{width:41.592960px;}
._26{width:42.608880px;}
._24{width:51.572880px;}
._23{width:52.750080px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:51.120000px;}
.fs9{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:3.240000px;}
.y83{bottom:3.270000px;}
.y111{bottom:3.780000px;}
.y10d{bottom:19.620000px;}
.y86{bottom:20.340000px;}
.y8a{bottom:20.520000px;}
.y82{bottom:20.550000px;}
.y110{bottom:21.060000px;}
.y85{bottom:37.620000px;}
.y89{bottom:37.800000px;}
.y81{bottom:37.830000px;}
.y8c{bottom:54.900000px;}
.y88{bottom:55.080000px;}
.y80{bottom:55.110000px;}
.y19c{bottom:56.376000px;}
.y8e{bottom:72.360000px;}
.y7f{bottom:72.390000px;}
.y7e{bottom:89.490000px;}
.y7d{bottom:106.770000px;}
.y2{bottom:111.096000px;}
.ye1{bottom:139.536000px;}
.y95{bottom:144.756000px;}
.yb1{bottom:155.190000px;}
.y33{bottom:155.730000px;}
.ye0{bottom:158.610000px;}
.y13d{bottom:160.050000px;}
.y19a{bottom:161.670000px;}
.yff{bottom:163.110000px;}
.y94{bottom:163.650000px;}
.y162{bottom:166.710000px;}
.y14e{bottom:172.470000px;}
.y64{bottom:174.090000px;}
.y32{bottom:174.630000px;}
.ydf{bottom:177.510000px;}
.y13c{bottom:178.950000px;}
.y199{bottom:179.490000px;}
.yfe{bottom:182.010000px;}
.y93{bottom:182.730000px;}
.y161{bottom:183.990000px;}
.y14d{bottom:191.370000px;}
.y63{bottom:193.170000px;}
.y31{bottom:193.530000px;}
.yde{bottom:196.590000px;}
.y13b{bottom:197.850000px;}
.y198{bottom:199.470000px;}
.yfd{bottom:201.090000px;}
.y160{bottom:201.270000px;}
.y92{bottom:201.630000px;}
.y14c{bottom:210.270000px;}
.y62{bottom:212.070000px;}
.y30{bottom:212.610000px;}
.ydd{bottom:215.490000px;}
.y197{bottom:216.750000px;}
.y13a{bottom:216.930000px;}
.y15f{bottom:218.550000px;}
.yfc{bottom:219.990000px;}
.y91{bottom:220.530000px;}
.y14b{bottom:229.350000px;}
.y61{bottom:230.970000px;}
.y2f{bottom:231.510000px;}
.y196{bottom:234.030000px;}
.ydc{bottom:234.390000px;}
.y139{bottom:235.830000px;}
.yfb{bottom:239.070000px;}
.y90{bottom:239.610000px;}
.y14a{bottom:248.250000px;}
.y60{bottom:250.050000px;}
.y2e{bottom:250.590000px;}
.y195{bottom:251.310000px;}
.y15e{bottom:252.930000px;}
.ydb{bottom:253.470000px;}
.y138{bottom:254.910000px;}
.y11b{bottom:257.250000px;}
.yfa{bottom:257.970000px;}
.y8f{bottom:258.510000px;}
.y149{bottom:267.330000px;}
.y194{bottom:268.590000px;}
.y5f{bottom:268.950000px;}
.y2d{bottom:269.490000px;}
.y15d{bottom:270.750000px;}
.yda{bottom:272.370000px;}
.y137{bottom:273.855000px;}
.y8d{bottom:274.575000px;}
.y11a{bottom:276.375000px;}
.yf9{bottom:276.915000px;}
.y193{bottom:285.915000px;}
.y148{bottom:286.275000px;}
.y5e{bottom:288.075000px;}
.y2c{bottom:288.435000px;}
.y15c{bottom:290.055000px;}
.yd9{bottom:291.495000px;}
.y136{bottom:292.755000px;}
.y119{bottom:295.275000px;}
.yf8{bottom:295.995000px;}
.y192{bottom:303.015000px;}
.y147{bottom:305.175000px;}
.y5d{bottom:306.975000px;}
.y2b{bottom:307.515000px;}
.yd8{bottom:310.395000px;}
.y135{bottom:311.835000px;}
.y118{bottom:314.175000px;}
.yf7{bottom:314.895000px;}
.y191{bottom:320.295000px;}
.y146{bottom:324.255000px;}
.y5c{bottom:325.875000px;}
.yb0{bottom:326.235000px;}
.y2a{bottom:326.415000px;}
.yd7{bottom:329.475000px;}
.y134{bottom:330.735000px;}
.y117{bottom:333.255000px;}
.yf6{bottom:333.975000px;}
.y190{bottom:337.575000px;}
.y145{bottom:343.155000px;}
.y5b{bottom:344.955000px;}
.y29{bottom:345.495000px;}
.yaf{bottom:346.575000px;}
.yd6{bottom:348.375000px;}
.y133{bottom:349.815000px;}
.y116{bottom:352.155000px;}
.yf5{bottom:352.875000px;}
.y18f{bottom:354.855000px;}
.y8b{bottom:361.695000px;}
.y144{bottom:362.235000px;}
.y5a{bottom:363.855000px;}
.y28{bottom:364.395000px;}
.yae{bottom:365.655000px;}
.yd5{bottom:367.275000px;}
.y132{bottom:368.715000px;}
.y115{bottom:371.235000px;}
.yf4{bottom:371.775000px;}
.y18e{bottom:372.135000px;}
.y143{bottom:381.135000px;}
.y59{bottom:382.935000px;}
.y27{bottom:383.295000px;}
.yad{bottom:384.555000px;}
.yd4{bottom:386.355000px;}
.y131{bottom:387.615000px;}
.y18d{bottom:389.415000px;}
.y114{bottom:390.135000px;}
.yf3{bottom:390.855000px;}
.y142{bottom:400.035000px;}
.y58{bottom:401.835000px;}
.y26{bottom:402.375000px;}
.yac{bottom:403.635000px;}
.yd3{bottom:405.255000px;}
.y18c{bottom:406.515000px;}
.y130{bottom:406.695000px;}
.y113{bottom:409.215000px;}
.yf2{bottom:409.755000px;}
.y141{bottom:419.115000px;}
.y57{bottom:420.735000px;}
.y25{bottom:421.275000px;}
.yab{bottom:422.535000px;}
.y18b{bottom:423.795000px;}
.yd2{bottom:424.335000px;}
.y12f{bottom:425.595000px;}
.y112{bottom:428.115000px;}
.yf1{bottom:428.835000px;}
.y87{bottom:431.355000px;}
.y140{bottom:438.015000px;}
.y56{bottom:439.815000px;}
.y24{bottom:440.355000px;}
.y18a{bottom:441.075000px;}
.yaa{bottom:441.435000px;}
.yd1{bottom:443.235000px;}
.y10f{bottom:444.135000px;}
.y12e{bottom:444.675000px;}
.yf0{bottom:447.735000px;}
.y13f{bottom:457.095000px;}
.y189{bottom:458.355000px;}
.y55{bottom:458.715000px;}
.y23{bottom:459.255000px;}
.ya9{bottom:460.515000px;}
.yd0{bottom:462.135000px;}
.y12d{bottom:463.575000px;}
.yef{bottom:466.635000px;}
.y188{bottom:475.635000px;}
.y13e{bottom:476.355000px;}
.y54{bottom:477.795000px;}
.y22{bottom:478.335000px;}
.ya8{bottom:479.415000px;}
.y10e{bottom:479.955000px;}
.y15b{bottom:481.215000px;}
.ycf{bottom:481.395000px;}
.y12c{bottom:482.475000px;}
.yee{bottom:485.715000px;}
.y187{bottom:492.735000px;}
.y53{bottom:496.695000px;}
.y21{bottom:497.235000px;}
.ya7{bottom:498.495000px;}
.y15a{bottom:500.115000px;}
.y84{bottom:501.195000px;}
.y12b{bottom:501.555000px;}
.yce{bottom:501.915000px;}
.yed{bottom:504.615000px;}
.y186{bottom:510.015000px;}
.y52{bottom:515.595000px;}
.y20{bottom:516.135000px;}
.ya6{bottom:517.395000px;}
.y159{bottom:519.915000px;}
.y12a{bottom:520.455000px;}
.ycd{bottom:520.815000px;}
.yec{bottom:523.695000px;}
.y185{bottom:527.295000px;}
.y10c{bottom:532.515000px;}
.y51{bottom:534.675000px;}
.y1f{bottom:535.215000px;}
.ya5{bottom:536.295000px;}
.y129{bottom:539.535000px;}
.ycc{bottom:539.895000px;}
.yeb{bottom:542.595000px;}
.y158{bottom:543.315000px;}
.y184{bottom:544.575000px;}
.y50{bottom:553.575000px;}
.y1e{bottom:554.115000px;}
.ya4{bottom:555.375000px;}
.y128{bottom:558.465000px;}
.ycb{bottom:558.825000px;}
.yea{bottom:561.705000px;}
.y183{bottom:561.885000px;}
.y157{bottom:562.245000px;}
.y10b{bottom:566.925000px;}
.y4f{bottom:572.685000px;}
.y1d{bottom:573.945000px;}
.ya3{bottom:574.305000px;}
.y127{bottom:577.545000px;}
.yca{bottom:577.725000px;}
.y182{bottom:579.165000px;}
.ye9{bottom:580.605000px;}
.y156{bottom:581.325000px;}
.y4e{bottom:591.585000px;}
.ya2{bottom:593.385000px;}
.y181{bottom:596.265000px;}
.y126{bottom:596.445000px;}
.yc9{bottom:596.805000px;}
.y1c{bottom:597.345000px;}
.ye8{bottom:599.505000px;}
.y155{bottom:600.225000px;}
.y10a{bottom:605.805000px;}
.y4d{bottom:610.485000px;}
.ya1{bottom:612.285000px;}
.y180{bottom:613.545000px;}
.y125{bottom:615.345000px;}
.yc8{bottom:615.705000px;}
.y1b{bottom:615.885000px;}
.ye7{bottom:618.585000px;}
.y154{bottom:619.125000px;}
.y109{bottom:624.345000px;}
.y4c{bottom:629.565000px;}
.y17f{bottom:630.825000px;}
.ya0{bottom:631.185000px;}
.y1a{bottom:633.165000px;}
.y124{bottom:634.425000px;}
.yc7{bottom:634.785000px;}
.ye6{bottom:637.845000px;}
.y153{bottom:638.205000px;}
.y108{bottom:641.985000px;}
.y17e{bottom:648.105000px;}
.y4b{bottom:648.465000px;}
.y9f{bottom:650.265000px;}
.y19{bottom:650.805000px;}
.y123{bottom:653.325000px;}
.yc6{bottom:653.685000px;}
.y152{bottom:657.105000px;}
.ye5{bottom:658.545000px;}
.y107{bottom:661.065000px;}
.y17d{bottom:665.385000px;}
.y4a{bottom:667.545000px;}
.y9e{bottom:669.165000px;}
.y18{bottom:670.245000px;}
.y122{bottom:672.405000px;}
.yc5{bottom:672.585000px;}
.y7b{bottom:675.105000px;}
.y151{bottom:676.185000px;}
.ye4{bottom:678.525000px;}
.y106{bottom:679.965000px;}
.y17c{bottom:682.665000px;}
.y49{bottom:686.445000px;}
.y9d{bottom:688.245000px;}
.y121{bottom:691.305000px;}
.yc4{bottom:691.665000px;}
.y17{bottom:692.205000px;}
.y150{bottom:695.085000px;}
.ye3{bottom:696.165000px;}
.y7a{bottom:696.885000px;}
.y105{bottom:698.865000px;}
.y17b{bottom:699.765000px;}
.y48{bottom:705.525000px;}
.y9c{bottom:707.145000px;}
.y120{bottom:710.205000px;}
.yc3{bottom:710.565000px;}
.y16{bottom:710.745000px;}
.ye2{bottom:711.465000px;}
.y14f{bottom:713.985000px;}
.y79{bottom:715.425000px;}
.y17a{bottom:717.045000px;}
.y104{bottom:718.845000px;}
.y47{bottom:724.425000px;}
.y9b{bottom:726.225000px;}
.y15{bottom:728.025000px;}
.y11f{bottom:729.285000px;}
.yc2{bottom:729.645000px;}
.y78{bottom:733.065000px;}
.y179{bottom:734.325000px;}
.y103{bottom:742.065000px;}
.y46{bottom:743.325000px;}
.y14{bottom:745.125000px;}
.y11e{bottom:747.825000px;}
.yc1{bottom:748.545000px;}
.y178{bottom:751.605000px;}
.y77{bottom:751.965000px;}
.y102{bottom:760.605000px;}
.y13{bottom:762.405000px;}
.y9a{bottom:764.025000px;}
.y11d{bottom:765.465000px;}
.yc0{bottom:767.445000px;}
.y177{bottom:768.885000px;}
.y76{bottom:771.045000px;}
.y101{bottom:778.245000px;}
.y12{bottom:779.685000px;}
.y11c{bottom:780.765000px;}
.y45{bottom:781.665000px;}
.y99{bottom:783.105000px;}
.y176{bottom:785.985000px;}
.ybf{bottom:786.705000px;}
.y75{bottom:789.945000px;}
.y100{bottom:793.545000px;}
.y11{bottom:796.965000px;}
.y44{bottom:802.005000px;}
.y175{bottom:803.265000px;}
.ybe{bottom:807.225000px;}
.y74{bottom:808.845000px;}
.y10{bottom:814.245000px;}
.y174{bottom:820.545000px;}
.y43{bottom:821.085000px;}
.y98{bottom:821.265000px;}
.ybd{bottom:826.125000px;}
.y73{bottom:827.925000px;}
.yf{bottom:831.525000px;}
.y173{bottom:837.825000px;}
.y42{bottom:840.030000px;}
.y97{bottom:841.830000px;}
.ybc{bottom:845.250000px;}
.y72{bottom:846.870000px;}
.ye{bottom:848.670000px;}
.y172{bottom:855.150000px;}
.y41{bottom:858.930000px;}
.y96{bottom:861.630000px;}
.ybb{bottom:864.150000px;}
.yd{bottom:865.950000px;}
.y171{bottom:872.430000px;}
.y40{bottom:878.010000px;}
.yba{bottom:883.230000px;}
.yc{bottom:883.590000px;}
.y71{bottom:884.850000px;}
.y170{bottom:889.530000px;}
.y3f{bottom:896.910000px;}
.yb9{bottom:902.130000px;}
.yb{bottom:903.030000px;}
.y70{bottom:903.930000px;}
.y16f{bottom:906.810000px;}
.y3e{bottom:915.990000px;}
.yb8{bottom:921.030000px;}
.y6f{bottom:922.830000px;}
.y16e{bottom:924.090000px;}
.ya{bottom:924.990000px;}
.y3d{bottom:934.890000px;}
.yb7{bottom:940.110000px;}
.y16d{bottom:941.370000px;}
.y6e{bottom:941.730000px;}
.y9{bottom:944.250000px;}
.y3c{bottom:953.790000px;}
.y16c{bottom:958.650000px;}
.yb6{bottom:959.010000px;}
.y6d{bottom:960.810000px;}
.y8{bottom:964.950000px;}
.y3b{bottom:972.870000px;}
.y16b{bottom:975.930000px;}
.yb5{bottom:978.090000px;}
.y6c{bottom:979.710000px;}
.y7{bottom:985.830000px;}
.y3a{bottom:991.770000px;}
.y16a{bottom:993.030000px;}
.yb4{bottom:996.990000px;}
.y6b{bottom:998.790000px;}
.y6{bottom:1008.330000px;}
.y169{bottom:1010.310000px;}
.y39{bottom:1010.850000px;}
.yb3{bottom:1015.890000px;}
.y6a{bottom:1017.690000px;}
.y168{bottom:1027.590000px;}
.y38{bottom:1029.750000px;}
.y5{bottom:1034.430000px;}
.yb2{bottom:1035.150000px;}
.y69{bottom:1036.590000px;}
.y167{bottom:1044.870000px;}
.y37{bottom:1048.650000px;}
.y68{bottom:1055.670000px;}
.y166{bottom:1062.150000px;}
.y36{bottom:1067.910000px;}
.y4{bottom:1068.270000px;}
.y67{bottom:1074.570000px;}
.y165{bottom:1079.430000px;}
.y35{bottom:1088.430000px;}
.y66{bottom:1093.650000px;}
.y164{bottom:1096.530000px;}
.y3{bottom:1101.930000px;}
.y34{bottom:1108.230000px;}
.y65{bottom:1112.550000px;}
.y163{bottom:1113.810000px;}
.y1{bottom:1140.840000px;}
.y19b{bottom:1195.740000px;}
.he{height:17.280000px;}
.h16{height:33.696000px;}
.h15{height:34.380000px;}
.h17{height:35.100000px;}
.hf{height:42.164648px;}
.h2{height:43.215117px;}
.h19{height:43.506914px;}
.ha{height:45.461953px;}
.h7{height:46.736719px;}
.hb{height:47.901094px;}
.h9{height:50.391562px;}
.h14{height:50.800781px;}
.h11{height:51.660000px;}
.h6{height:52.066406px;}
.hd{height:52.417969px;}
.h4{height:56.231719px;}
.h8{height:58.585781px;}
.h18{height:59.436914px;}
.hc{height:61.329023px;}
.h5{height:64.327148px;}
.h12{height:68.940000px;}
.h3{height:81.432070px;}
.h13{height:86.400000px;}
.h10{height:120.816000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:111.060000px;}
.w3{width:129.060000px;}
.w7{width:153.210000px;}
.w9{width:165.810000px;}
.w8{width:168.510000px;}
.w5{width:184.890000px;}
.w4{width:343.695000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.740000px;}
.xa{left:117.036000px;}
.x7{left:123.155987px;}
.x2{left:126.035987px;}
.x1{left:132.695987px;}
.x4{left:142.235987px;}
.x15{left:146.196000px;}
.xe{left:150.149987px;}
.x1a{left:165.629987px;}
.x5{left:168.509987px;}
.xf{left:177.149987px;}
.xc{left:246.810000px;}
.x16{left:257.970000px;}
.x14{left:268.589987px;}
.x11{left:277.589987px;}
.x13{left:284.609987px;}
.x19{left:304.094987px;}
.x9{left:330.914987px;}
.x6{left:398.054987px;}
.x17{left:411.915000px;}
.x3{left:446.474987px;}
.x18{left:581.145000px;}
.xd{left:591.225000px;}
.x12{left:638.024987px;}
.x10{left:736.709987px;}
.x8{left:755.069987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls14{letter-spacing:-0.271467pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.024960pt;}
.ls0{letter-spacing:0.106240pt;}
.lsa{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.214187pt;}
.lsb{letter-spacing:0.271467pt;}
.ls8{letter-spacing:0.272533pt;}
.ls4{letter-spacing:0.286720pt;}
.ls5{letter-spacing:0.290347pt;}
.lsd{letter-spacing:0.306987pt;}
.ls13{letter-spacing:0.311680pt;}
.ls16{letter-spacing:0.315307pt;}
.ls7{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.328320pt;}
.ls9{letter-spacing:0.336640pt;}
.ls2{letter-spacing:0.366720pt;}
.ls3{letter-spacing:0.488960pt;}
.ls15{letter-spacing:9.728000pt;}
.ls12{letter-spacing:36.762027pt;}
.ls18{letter-spacing:47.291307pt;}
.lsc{letter-spacing:56.912640pt;}
.ls17{letter-spacing:74.171307pt;}
.wsb{word-spacing:-53.120000pt;}
.ws1{word-spacing:-26.720000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws8{word-spacing:-18.720000pt;}
.ws3{word-spacing:-17.280000pt;}
.ws9{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.991467pt;}
.ws6{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.640000pt;}
.ws7{word-spacing:0.000000pt;}
._d{margin-left:-2.096640pt;}
._2{margin-left:-1.062400pt;}
._0{width:0.903040pt;}
._10{width:1.827200pt;}
._1{width:3.220693pt;}
._3{width:4.197333pt;}
._4{width:5.152640pt;}
._1b{width:6.057813pt;}
._5{width:7.122987pt;}
._f{width:8.129493pt;}
._14{width:9.555840pt;}
._13{width:10.456960pt;}
._b{width:11.393067pt;}
._a{width:12.323840pt;}
._e{width:13.318827pt;}
._6{width:14.236160pt;}
._8{width:15.511040pt;}
._9{width:16.795947pt;}
._19{width:18.370560pt;}
._1c{width:19.348480pt;}
._12{width:20.272640pt;}
._11{width:21.196800pt;}
._c{width:22.257280pt;}
._1f{width:23.182720pt;}
._7{width:24.382080pt;}
._16{width:25.436160pt;}
._17{width:26.352000pt;}
._18{width:27.287680pt;}
._22{width:28.272427pt;}
._15{width:29.262507pt;}
._1d{width:30.382080pt;}
._20{width:32.092160pt;}
._21{width:33.115093pt;}
._1e{width:34.367147pt;}
._1a{width:35.504640pt;}
._25{width:36.971520pt;}
._26{width:37.874560pt;}
._24{width:45.842560pt;}
._23{width:46.888960pt;}
.fs4{font-size:45.440000pt;}
.fs9{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:2.880000pt;}
.y83{bottom:2.906667pt;}
.y111{bottom:3.360000pt;}
.y10d{bottom:17.440000pt;}
.y86{bottom:18.080000pt;}
.y8a{bottom:18.240000pt;}
.y82{bottom:18.266667pt;}
.y110{bottom:18.720000pt;}
.y85{bottom:33.440000pt;}
.y89{bottom:33.600000pt;}
.y81{bottom:33.626667pt;}
.y8c{bottom:48.800000pt;}
.y88{bottom:48.960000pt;}
.y80{bottom:48.986667pt;}
.y19c{bottom:50.112000pt;}
.y8e{bottom:64.320000pt;}
.y7f{bottom:64.346667pt;}
.y7e{bottom:79.546667pt;}
.y7d{bottom:94.906667pt;}
.y2{bottom:98.752000pt;}
.ye1{bottom:124.032000pt;}
.y95{bottom:128.672000pt;}
.yb1{bottom:137.946667pt;}
.y33{bottom:138.426667pt;}
.ye0{bottom:140.986667pt;}
.y13d{bottom:142.266667pt;}
.y19a{bottom:143.706667pt;}
.yff{bottom:144.986667pt;}
.y94{bottom:145.466667pt;}
.y162{bottom:148.186667pt;}
.y14e{bottom:153.306667pt;}
.y64{bottom:154.746667pt;}
.y32{bottom:155.226667pt;}
.ydf{bottom:157.786667pt;}
.y13c{bottom:159.066667pt;}
.y199{bottom:159.546667pt;}
.yfe{bottom:161.786667pt;}
.y93{bottom:162.426667pt;}
.y161{bottom:163.546667pt;}
.y14d{bottom:170.106667pt;}
.y63{bottom:171.706667pt;}
.y31{bottom:172.026667pt;}
.yde{bottom:174.746667pt;}
.y13b{bottom:175.866667pt;}
.y198{bottom:177.306667pt;}
.yfd{bottom:178.746667pt;}
.y160{bottom:178.906667pt;}
.y92{bottom:179.226667pt;}
.y14c{bottom:186.906667pt;}
.y62{bottom:188.506667pt;}
.y30{bottom:188.986667pt;}
.ydd{bottom:191.546667pt;}
.y197{bottom:192.666667pt;}
.y13a{bottom:192.826667pt;}
.y15f{bottom:194.266667pt;}
.yfc{bottom:195.546667pt;}
.y91{bottom:196.026667pt;}
.y14b{bottom:203.866667pt;}
.y61{bottom:205.306667pt;}
.y2f{bottom:205.786667pt;}
.y196{bottom:208.026667pt;}
.ydc{bottom:208.346667pt;}
.y139{bottom:209.626667pt;}
.yfb{bottom:212.506667pt;}
.y90{bottom:212.986667pt;}
.y14a{bottom:220.666667pt;}
.y60{bottom:222.266667pt;}
.y2e{bottom:222.746667pt;}
.y195{bottom:223.386667pt;}
.y15e{bottom:224.826667pt;}
.ydb{bottom:225.306667pt;}
.y138{bottom:226.586667pt;}
.y11b{bottom:228.666667pt;}
.yfa{bottom:229.306667pt;}
.y8f{bottom:229.786667pt;}
.y149{bottom:237.626667pt;}
.y194{bottom:238.746667pt;}
.y5f{bottom:239.066667pt;}
.y2d{bottom:239.546667pt;}
.y15d{bottom:240.666667pt;}
.yda{bottom:242.106667pt;}
.y137{bottom:243.426667pt;}
.y8d{bottom:244.066667pt;}
.y11a{bottom:245.666667pt;}
.yf9{bottom:246.146667pt;}
.y193{bottom:254.146667pt;}
.y148{bottom:254.466667pt;}
.y5e{bottom:256.066667pt;}
.y2c{bottom:256.386667pt;}
.y15c{bottom:257.826667pt;}
.yd9{bottom:259.106667pt;}
.y136{bottom:260.226667pt;}
.y119{bottom:262.466667pt;}
.yf8{bottom:263.106667pt;}
.y192{bottom:269.346667pt;}
.y147{bottom:271.266667pt;}
.y5d{bottom:272.866667pt;}
.y2b{bottom:273.346667pt;}
.yd8{bottom:275.906667pt;}
.y135{bottom:277.186667pt;}
.y118{bottom:279.266667pt;}
.yf7{bottom:279.906667pt;}
.y191{bottom:284.706667pt;}
.y146{bottom:288.226667pt;}
.y5c{bottom:289.666667pt;}
.yb0{bottom:289.986667pt;}
.y2a{bottom:290.146667pt;}
.yd7{bottom:292.866667pt;}
.y134{bottom:293.986667pt;}
.y117{bottom:296.226667pt;}
.yf6{bottom:296.866667pt;}
.y190{bottom:300.066667pt;}
.y145{bottom:305.026667pt;}
.y5b{bottom:306.626667pt;}
.y29{bottom:307.106667pt;}
.yaf{bottom:308.066667pt;}
.yd6{bottom:309.666667pt;}
.y133{bottom:310.946667pt;}
.y116{bottom:313.026667pt;}
.yf5{bottom:313.666667pt;}
.y18f{bottom:315.426667pt;}
.y8b{bottom:321.506667pt;}
.y144{bottom:321.986667pt;}
.y5a{bottom:323.426667pt;}
.y28{bottom:323.906667pt;}
.yae{bottom:325.026667pt;}
.yd5{bottom:326.466667pt;}
.y132{bottom:327.746667pt;}
.y115{bottom:329.986667pt;}
.yf4{bottom:330.466667pt;}
.y18e{bottom:330.786667pt;}
.y143{bottom:338.786667pt;}
.y59{bottom:340.386667pt;}
.y27{bottom:340.706667pt;}
.yad{bottom:341.826667pt;}
.yd4{bottom:343.426667pt;}
.y131{bottom:344.546667pt;}
.y18d{bottom:346.146667pt;}
.y114{bottom:346.786667pt;}
.yf3{bottom:347.426667pt;}
.y142{bottom:355.586667pt;}
.y58{bottom:357.186667pt;}
.y26{bottom:357.666667pt;}
.yac{bottom:358.786667pt;}
.yd3{bottom:360.226667pt;}
.y18c{bottom:361.346667pt;}
.y130{bottom:361.506667pt;}
.y113{bottom:363.746667pt;}
.yf2{bottom:364.226667pt;}
.y141{bottom:372.546667pt;}
.y57{bottom:373.986667pt;}
.y25{bottom:374.466667pt;}
.yab{bottom:375.586667pt;}
.y18b{bottom:376.706667pt;}
.yd2{bottom:377.186667pt;}
.y12f{bottom:378.306667pt;}
.y112{bottom:380.546667pt;}
.yf1{bottom:381.186667pt;}
.y87{bottom:383.426667pt;}
.y140{bottom:389.346667pt;}
.y56{bottom:390.946667pt;}
.y24{bottom:391.426667pt;}
.y18a{bottom:392.066667pt;}
.yaa{bottom:392.386667pt;}
.yd1{bottom:393.986667pt;}
.y10f{bottom:394.786667pt;}
.y12e{bottom:395.266667pt;}
.yf0{bottom:397.986667pt;}
.y13f{bottom:406.306667pt;}
.y189{bottom:407.426667pt;}
.y55{bottom:407.746667pt;}
.y23{bottom:408.226667pt;}
.ya9{bottom:409.346667pt;}
.yd0{bottom:410.786667pt;}
.y12d{bottom:412.066667pt;}
.yef{bottom:414.786667pt;}
.y188{bottom:422.786667pt;}
.y13e{bottom:423.426667pt;}
.y54{bottom:424.706667pt;}
.y22{bottom:425.186667pt;}
.ya8{bottom:426.146667pt;}
.y10e{bottom:426.626667pt;}
.y15b{bottom:427.746667pt;}
.ycf{bottom:427.906667pt;}
.y12c{bottom:428.866667pt;}
.yee{bottom:431.746667pt;}
.y187{bottom:437.986667pt;}
.y53{bottom:441.506667pt;}
.y21{bottom:441.986667pt;}
.ya7{bottom:443.106667pt;}
.y15a{bottom:444.546667pt;}
.y84{bottom:445.506667pt;}
.y12b{bottom:445.826667pt;}
.yce{bottom:446.146667pt;}
.yed{bottom:448.546667pt;}
.y186{bottom:453.346667pt;}
.y52{bottom:458.306667pt;}
.y20{bottom:458.786667pt;}
.ya6{bottom:459.906667pt;}
.y159{bottom:462.146667pt;}
.y12a{bottom:462.626667pt;}
.ycd{bottom:462.946667pt;}
.yec{bottom:465.506667pt;}
.y185{bottom:468.706667pt;}
.y10c{bottom:473.346667pt;}
.y51{bottom:475.266667pt;}
.y1f{bottom:475.746667pt;}
.ya5{bottom:476.706667pt;}
.y129{bottom:479.586667pt;}
.ycc{bottom:479.906667pt;}
.yeb{bottom:482.306667pt;}
.y158{bottom:482.946667pt;}
.y184{bottom:484.066667pt;}
.y50{bottom:492.066667pt;}
.y1e{bottom:492.546667pt;}
.ya4{bottom:493.666667pt;}
.y128{bottom:496.413333pt;}
.ycb{bottom:496.733333pt;}
.yea{bottom:499.293333pt;}
.y183{bottom:499.453333pt;}
.y157{bottom:499.773333pt;}
.y10b{bottom:503.933333pt;}
.y4f{bottom:509.053333pt;}
.y1d{bottom:510.173333pt;}
.ya3{bottom:510.493333pt;}
.y127{bottom:513.373333pt;}
.yca{bottom:513.533333pt;}
.y182{bottom:514.813333pt;}
.ye9{bottom:516.093333pt;}
.y156{bottom:516.733333pt;}
.y4e{bottom:525.853333pt;}
.ya2{bottom:527.453333pt;}
.y181{bottom:530.013333pt;}
.y126{bottom:530.173333pt;}
.yc9{bottom:530.493333pt;}
.y1c{bottom:530.973333pt;}
.ye8{bottom:532.893333pt;}
.y155{bottom:533.533333pt;}
.y10a{bottom:538.493333pt;}
.y4d{bottom:542.653333pt;}
.ya1{bottom:544.253333pt;}
.y180{bottom:545.373333pt;}
.y125{bottom:546.973333pt;}
.yc8{bottom:547.293333pt;}
.y1b{bottom:547.453333pt;}
.ye7{bottom:549.853333pt;}
.y154{bottom:550.333333pt;}
.y109{bottom:554.973333pt;}
.y4c{bottom:559.613333pt;}
.y17f{bottom:560.733333pt;}
.ya0{bottom:561.053333pt;}
.y1a{bottom:562.813333pt;}
.y124{bottom:563.933333pt;}
.yc7{bottom:564.253333pt;}
.ye6{bottom:566.973333pt;}
.y153{bottom:567.293333pt;}
.y108{bottom:570.653333pt;}
.y17e{bottom:576.093333pt;}
.y4b{bottom:576.413333pt;}
.y9f{bottom:578.013333pt;}
.y19{bottom:578.493333pt;}
.y123{bottom:580.733333pt;}
.yc6{bottom:581.053333pt;}
.y152{bottom:584.093333pt;}
.ye5{bottom:585.373333pt;}
.y107{bottom:587.613333pt;}
.y17d{bottom:591.453333pt;}
.y4a{bottom:593.373333pt;}
.y9e{bottom:594.813333pt;}
.y18{bottom:595.773333pt;}
.y122{bottom:597.693333pt;}
.yc5{bottom:597.853333pt;}
.y7b{bottom:600.093333pt;}
.y151{bottom:601.053333pt;}
.ye4{bottom:603.133333pt;}
.y106{bottom:604.413333pt;}
.y17c{bottom:606.813333pt;}
.y49{bottom:610.173333pt;}
.y9d{bottom:611.773333pt;}
.y121{bottom:614.493333pt;}
.yc4{bottom:614.813333pt;}
.y17{bottom:615.293333pt;}
.y150{bottom:617.853333pt;}
.ye3{bottom:618.813333pt;}
.y7a{bottom:619.453333pt;}
.y105{bottom:621.213333pt;}
.y17b{bottom:622.013333pt;}
.y48{bottom:627.133333pt;}
.y9c{bottom:628.573333pt;}
.y120{bottom:631.293333pt;}
.yc3{bottom:631.613333pt;}
.y16{bottom:631.773333pt;}
.ye2{bottom:632.413333pt;}
.y14f{bottom:634.653333pt;}
.y79{bottom:635.933333pt;}
.y17a{bottom:637.373333pt;}
.y104{bottom:638.973333pt;}
.y47{bottom:643.933333pt;}
.y9b{bottom:645.533333pt;}
.y15{bottom:647.133333pt;}
.y11f{bottom:648.253333pt;}
.yc2{bottom:648.573333pt;}
.y78{bottom:651.613333pt;}
.y179{bottom:652.733333pt;}
.y103{bottom:659.613333pt;}
.y46{bottom:660.733333pt;}
.y14{bottom:662.333333pt;}
.y11e{bottom:664.733333pt;}
.yc1{bottom:665.373333pt;}
.y178{bottom:668.093333pt;}
.y77{bottom:668.413333pt;}
.y102{bottom:676.093333pt;}
.y13{bottom:677.693333pt;}
.y9a{bottom:679.133333pt;}
.y11d{bottom:680.413333pt;}
.yc0{bottom:682.173333pt;}
.y177{bottom:683.453333pt;}
.y76{bottom:685.373333pt;}
.y101{bottom:691.773333pt;}
.y12{bottom:693.053333pt;}
.y11c{bottom:694.013333pt;}
.y45{bottom:694.813333pt;}
.y99{bottom:696.093333pt;}
.y176{bottom:698.653333pt;}
.ybf{bottom:699.293333pt;}
.y75{bottom:702.173333pt;}
.y100{bottom:705.373333pt;}
.y11{bottom:708.413333pt;}
.y44{bottom:712.893333pt;}
.y175{bottom:714.013333pt;}
.ybe{bottom:717.533333pt;}
.y74{bottom:718.973333pt;}
.y10{bottom:723.773333pt;}
.y174{bottom:729.373333pt;}
.y43{bottom:729.853333pt;}
.y98{bottom:730.013333pt;}
.ybd{bottom:734.333333pt;}
.y73{bottom:735.933333pt;}
.yf{bottom:739.133333pt;}
.y173{bottom:744.733333pt;}
.y42{bottom:746.693333pt;}
.y97{bottom:748.293333pt;}
.ybc{bottom:751.333333pt;}
.y72{bottom:752.773333pt;}
.ye{bottom:754.373333pt;}
.y172{bottom:760.133333pt;}
.y41{bottom:763.493333pt;}
.y96{bottom:765.893333pt;}
.ybb{bottom:768.133333pt;}
.yd{bottom:769.733333pt;}
.y171{bottom:775.493333pt;}
.y40{bottom:780.453333pt;}
.yba{bottom:785.093333pt;}
.yc{bottom:785.413333pt;}
.y71{bottom:786.533333pt;}
.y170{bottom:790.693333pt;}
.y3f{bottom:797.253333pt;}
.yb9{bottom:801.893333pt;}
.yb{bottom:802.693333pt;}
.y70{bottom:803.493333pt;}
.y16f{bottom:806.053333pt;}
.y3e{bottom:814.213333pt;}
.yb8{bottom:818.693333pt;}
.y6f{bottom:820.293333pt;}
.y16e{bottom:821.413333pt;}
.ya{bottom:822.213333pt;}
.y3d{bottom:831.013333pt;}
.yb7{bottom:835.653333pt;}
.y16d{bottom:836.773333pt;}
.y6e{bottom:837.093333pt;}
.y9{bottom:839.333333pt;}
.y3c{bottom:847.813333pt;}
.y16c{bottom:852.133333pt;}
.yb6{bottom:852.453333pt;}
.y6d{bottom:854.053333pt;}
.y8{bottom:857.733333pt;}
.y3b{bottom:864.773333pt;}
.y16b{bottom:867.493333pt;}
.yb5{bottom:869.413333pt;}
.y6c{bottom:870.853333pt;}
.y7{bottom:876.293333pt;}
.y3a{bottom:881.573333pt;}
.y16a{bottom:882.693333pt;}
.yb4{bottom:886.213333pt;}
.y6b{bottom:887.813333pt;}
.y6{bottom:896.293333pt;}
.y169{bottom:898.053333pt;}
.y39{bottom:898.533333pt;}
.yb3{bottom:903.013333pt;}
.y6a{bottom:904.613333pt;}
.y168{bottom:913.413333pt;}
.y38{bottom:915.333333pt;}
.y5{bottom:919.493333pt;}
.yb2{bottom:920.133333pt;}
.y69{bottom:921.413333pt;}
.y167{bottom:928.773333pt;}
.y37{bottom:932.133333pt;}
.y68{bottom:938.373333pt;}
.y166{bottom:944.133333pt;}
.y36{bottom:949.253333pt;}
.y4{bottom:949.573333pt;}
.y67{bottom:955.173333pt;}
.y165{bottom:959.493333pt;}
.y35{bottom:967.493333pt;}
.y66{bottom:972.133333pt;}
.y164{bottom:974.693333pt;}
.y3{bottom:979.493333pt;}
.y34{bottom:985.093333pt;}
.y65{bottom:988.933333pt;}
.y163{bottom:990.053333pt;}
.y1{bottom:1014.080000pt;}
.y19b{bottom:1062.880000pt;}
.he{height:15.360000pt;}
.h16{height:29.952000pt;}
.h15{height:30.560000pt;}
.h17{height:31.200000pt;}
.hf{height:37.479688pt;}
.h2{height:38.413438pt;}
.h19{height:38.672812pt;}
.ha{height:40.410625pt;}
.h7{height:41.543750pt;}
.hb{height:42.578750pt;}
.h9{height:44.792500pt;}
.h14{height:45.156250pt;}
.h11{height:45.920000pt;}
.h6{height:46.281250pt;}
.hd{height:46.593750pt;}
.h4{height:49.983750pt;}
.h8{height:52.076250pt;}
.h18{height:52.832812pt;}
.hc{height:54.514687pt;}
.h5{height:57.179688pt;}
.h12{height:61.280000pt;}
.h3{height:72.384062pt;}
.h13{height:76.800000pt;}
.h10{height:107.392000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:98.720000pt;}
.w3{width:114.720000pt;}
.w7{width:136.186667pt;}
.w9{width:147.386667pt;}
.w8{width:149.786667pt;}
.w5{width:164.346667pt;}
.w4{width:305.506667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.880000pt;}
.xa{left:104.032000pt;}
.x7{left:109.471988pt;}
.x2{left:112.031988pt;}
.x1{left:117.951988pt;}
.x4{left:126.431988pt;}
.x15{left:129.952000pt;}
.xe{left:133.466655pt;}
.x1a{left:147.226655pt;}
.x5{left:149.786655pt;}
.xf{left:157.466655pt;}
.xc{left:219.386667pt;}
.x16{left:229.306667pt;}
.x14{left:238.746655pt;}
.x11{left:246.746655pt;}
.x13{left:252.986655pt;}
.x19{left:270.306655pt;}
.x9{left:294.146655pt;}
.x6{left:353.826655pt;}
.x17{left:366.146667pt;}
.x3{left:396.866655pt;}
.x18{left:516.573333pt;}
.xd{left:525.533333pt;}
.x12{left:567.133322pt;}
.x10{left:654.853322pt;}
.x8{left:671.173322pt;}
}




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