
    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_fb8ce15e998361cebe46cb1c.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_1d9465d41938b2cd0a9628a8.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_2322047036f87f138dc72726.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_129b525398155dc74755cd94.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7f28bb8bbc50d5bee143d8ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.706543;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:-81.360000px;}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.460200px;}
.ls3{letter-spacing:-0.053280px;}
.lse{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.206400px;}
.ls8{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.499680px;}
.ls4{letter-spacing:0.513600px;}
.lsd{letter-spacing:4.500000px;}
.ls12{letter-spacing:113.364000px;}
.lsb{letter-spacing:120.420000px;}
.ls1{letter-spacing:489.036000px;}
.ls0{letter-spacing:1037.136000px;}
.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;}
}
.ws6{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.146400px;}
.ws8{word-spacing:-15.120000px;}
.ws3{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.479800px;}
.ws9{word-spacing:-13.482000px;}
.ws1{word-spacing:0.000000px;}
._0{margin-left:-1.010880px;}
._1{width:1.059840px;}
._7{width:2.334240px;}
._2{width:3.646560px;}
._1a{width:5.329440px;}
._9{width:6.589440px;}
._14{width:7.828560px;}
._6{width:9.262800px;}
._5{width:10.278720px;}
._1e{width:11.425440px;}
._11{width:12.429600px;}
._8{width:13.581840px;}
._10{width:16.151040px;}
._e{width:17.390160px;}
._19{width:18.541440px;}
._1c{width:19.733040px;}
._12{width:20.849520px;}
._15{width:22.265280px;}
._c{width:23.724720px;}
._d{width:24.860160px;}
._b{width:26.115120px;}
._13{width:27.131040px;}
._20{width:28.684800px;}
._23{width:30.555840px;}
._1f{width:31.911840px;}
._22{width:33.166800px;}
._24{width:34.393680px;}
._1b{width:35.437680px;}
._f{width:36.692640px;}
._32{width:37.724400px;}
._a{width:38.724480px;}
._17{width:40.338000px;}
._2f{width:41.707440px;}
._29{width:43.505280px;}
._2b{width:45.357840px;}
._26{width:47.009280px;}
._21{width:49.182480px;}
._27{width:50.915520px;}
._28{width:52.002000px;}
._4{width:53.007120px;}
._3{width:54.142560px;}
._30{width:55.576800px;}
._2c{width:57.369600px;}
._2a{width:60.716160px;}
._1d{width:69.093360px;}
._36{width:77.715840px;}
._25{width:80.280000px;}
._2e{width:92.679840px;}
._31{width:107.619840px;}
._37{width:114.858720px;}
._16{width:115.920000px;}
._18{width:120.774960px;}
._34{width:132.069600px;}
._35{width:137.746800px;}
._33{width:139.001760px;}
._2d{width:564.480000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y12e{bottom:3.225000px;}
.yed{bottom:3.240000px;}
.y136{bottom:5.565000px;}
.yf0{bottom:5.760000px;}
.y131{bottom:16.365000px;}
.yf2{bottom:18.720000px;}
.y135{bottom:23.565000px;}
.yef{bottom:23.580000px;}
.y130{bottom:34.185000px;}
.y175{bottom:135.540000px;}
.y64{bottom:138.960000px;}
.ybe{bottom:140.940000px;}
.y13b{bottom:141.480000px;}
.y37{bottom:142.380000px;}
.y9f{bottom:142.740000px;}
.yeb{bottom:148.716000px;}
.y174{bottom:152.850000px;}
.y63{bottom:156.270000px;}
.ybd{bottom:158.250000px;}
.y13a{bottom:158.790000px;}
.y36{bottom:159.690000px;}
.y9e{bottom:160.050000px;}
.yea{bottom:165.990000px;}
.y173{bottom:170.130000px;}
.y62{bottom:173.550000px;}
.ybc{bottom:175.530000px;}
.y139{bottom:176.070000px;}
.y35{bottom:176.970000px;}
.y9d{bottom:177.150000px;}
.ye9{bottom:183.270000px;}
.y172{bottom:187.230000px;}
.y61{bottom:190.830000px;}
.y138{bottom:191.745000px;}
.ybb{bottom:192.630000px;}
.y34{bottom:194.250000px;}
.y9c{bottom:194.430000px;}
.y116{bottom:199.110000px;}
.ye8{bottom:200.550000px;}
.y171{bottom:204.510000px;}
.y137{bottom:207.225000px;}
.y60{bottom:207.930000px;}
.yba{bottom:209.910000px;}
.y33{bottom:211.530000px;}
.y9b{bottom:211.710000px;}
.y115{bottom:216.390000px;}
.ye7{bottom:217.470000px;}
.y170{bottom:221.790000px;}
.y134{bottom:222.705000px;}
.y5f{bottom:225.210000px;}
.yb9{bottom:227.190000px;}
.y32{bottom:228.630000px;}
.y9a{bottom:228.990000px;}
.y114{bottom:233.670000px;}
.ye6{bottom:234.570000px;}
.y16f{bottom:239.070000px;}
.y5e{bottom:242.490000px;}
.yb8{bottom:244.470000px;}
.y31{bottom:245.910000px;}
.y99{bottom:246.270000px;}
.y113{bottom:247.170000px;}
.ye5{bottom:252.210000px;}
.y16e{bottom:256.350000px;}
.y12f{bottom:259.245000px;}
.y84{bottom:259.410000px;}
.y5d{bottom:259.770000px;}
.y17b{bottom:263.190000px;}
.y98{bottom:263.370000px;}
.y30{bottom:263.550000px;}
.ye4{bottom:269.850000px;}
.y16d{bottom:273.630000px;}
.y133{bottom:274.725000px;}
.y5c{bottom:277.050000px;}
.yb7{bottom:279.030000px;}
.y17a{bottom:280.470000px;}
.y97{bottom:280.650000px;}
.y2f{bottom:283.890000px;}
.ye3{bottom:290.190000px;}
.y132{bottom:290.205000px;}
.y16c{bottom:290.730000px;}
.y5b{bottom:294.330000px;}
.yb6{bottom:296.130000px;}
.y179{bottom:297.750000px;}
.y96{bottom:297.930000px;}
.y2e{bottom:301.170000px;}
.y12d{bottom:306.945000px;}
.ye2{bottom:307.470000px;}
.y16b{bottom:308.010000px;}
.y5a{bottom:311.430000px;}
.yb5{bottom:314.130000px;}
.y178{bottom:315.030000px;}
.y95{bottom:315.210000px;}
.y2d{bottom:318.450000px;}
.ye1{bottom:324.750000px;}
.y16a{bottom:325.290000px;}
.y12c{bottom:328.350000px;}
.y59{bottom:328.710000px;}
.yb4{bottom:332.130000px;}
.y94{bottom:332.490000px;}
.y2c{bottom:335.730000px;}
.ye0{bottom:341.850000px;}
.y169{bottom:342.570000px;}
.y12b{bottom:345.630000px;}
.y58{bottom:345.990000px;}
.yb3{bottom:349.410000px;}
.y93{bottom:349.770000px;}
.y2b{bottom:352.830000px;}
.ydf{bottom:359.130000px;}
.y168{bottom:359.850000px;}
.y57{bottom:363.270000px;}
.yb2{bottom:366.690000px;}
.y92{bottom:366.870000px;}
.y2a{bottom:370.830000px;}
.yde{bottom:376.410000px;}
.y167{bottom:377.130000px;}
.y12a{bottom:380.190000px;}
.y56{bottom:380.550000px;}
.yb1{bottom:383.970000px;}
.y91{bottom:384.150000px;}
.y29{bottom:390.810000px;}
.ydd{bottom:393.735000px;}
.y166{bottom:394.275000px;}
.y129{bottom:397.335000px;}
.y55{bottom:397.875000px;}
.yb0{bottom:401.295000px;}
.y90{bottom:401.475000px;}
.y28{bottom:408.135000px;}
.ydc{bottom:411.015000px;}
.y165{bottom:411.555000px;}
.y128{bottom:414.615000px;}
.y54{bottom:414.975000px;}
.yaf{bottom:418.575000px;}
.y8f{bottom:418.755000px;}
.y27{bottom:425.415000px;}
.ydb{bottom:428.295000px;}
.y164{bottom:428.835000px;}
.y127{bottom:431.895000px;}
.y53{bottom:432.255000px;}
.yae{bottom:435.675000px;}
.y8e{bottom:436.035000px;}
.y26{bottom:442.695000px;}
.yda{bottom:445.395000px;}
.y163{bottom:446.115000px;}
.y126{bottom:449.175000px;}
.y52{bottom:449.535000px;}
.yad{bottom:452.955000px;}
.y8d{bottom:453.315000px;}
.y112{bottom:456.555000px;}
.y25{bottom:459.795000px;}
.yd9{bottom:462.675000px;}
.y162{bottom:463.395000px;}
.y125{bottom:466.455000px;}
.y51{bottom:466.815000px;}
.yac{bottom:470.235000px;}
.y8c{bottom:470.415000px;}
.y111{bottom:473.835000px;}
.y24{bottom:477.075000px;}
.yd8{bottom:479.955000px;}
.y161{bottom:480.495000px;}
.y124{bottom:483.735000px;}
.y50{bottom:484.095000px;}
.yab{bottom:487.515000px;}
.y8b{bottom:487.695000px;}
.y110{bottom:491.115000px;}
.y23{bottom:494.355000px;}
.yd7{bottom:497.235000px;}
.y160{bottom:497.775000px;}
.y123{bottom:500.835000px;}
.y4f{bottom:501.195000px;}
.yaa{bottom:504.795000px;}
.y8a{bottom:504.975000px;}
.y10f{bottom:508.395000px;}
.y22{bottom:511.635000px;}
.yd6{bottom:514.515000px;}
.y15f{bottom:515.055000px;}
.y122{bottom:518.115000px;}
.y4e{bottom:518.475000px;}
.ya9{bottom:521.895000px;}
.y89{bottom:522.255000px;}
.y10e{bottom:525.495000px;}
.y21{bottom:528.915000px;}
.y121{bottom:531.615000px;}
.yd5{bottom:531.795000px;}
.y15e{bottom:532.335000px;}
.y4d{bottom:535.755000px;}
.ya8{bottom:539.175000px;}
.y88{bottom:539.535000px;}
.y10d{bottom:542.775000px;}
.y20{bottom:546.195000px;}
.yd4{bottom:548.895000px;}
.y15d{bottom:549.615000px;}
.y4c{bottom:553.035000px;}
.ya7{bottom:556.455000px;}
.y87{bottom:556.635000px;}
.y10c{bottom:560.055000px;}
.y1f{bottom:563.295000px;}
.yd3{bottom:566.175000px;}
.y15c{bottom:566.895000px;}
.y4b{bottom:570.315000px;}
.ya6{bottom:573.735000px;}
.y86{bottom:573.915000px;}
.y10b{bottom:577.335000px;}
.y1e{bottom:580.575000px;}
.yd2{bottom:583.455000px;}
.y15b{bottom:583.995000px;}
.y85{bottom:587.415000px;}
.y4a{bottom:587.595000px;}
.ya5{bottom:591.015000px;}
.y10a{bottom:594.615000px;}
.y1d{bottom:597.855000px;}
.yd1{bottom:600.735000px;}
.y15a{bottom:601.275000px;}
.y83{bottom:604.335000px;}
.y49{bottom:604.695000px;}
.ya4{bottom:608.295000px;}
.y109{bottom:611.535000px;}
.y1c{bottom:615.135000px;}
.yd0{bottom:617.655000px;}
.y159{bottom:618.555000px;}
.y48{bottom:621.975000px;}
.ya3{bottom:625.395000px;}
.y108{bottom:628.995000px;}
.y1b{bottom:632.415000px;}
.ycf{bottom:635.115000px;}
.y158{bottom:635.835000px;}
.y47{bottom:639.255000px;}
.y82{bottom:639.615000px;}
.y187{bottom:642.345000px;}
.ya2{bottom:642.705000px;}
.y107{bottom:646.305000px;}
.y1a{bottom:649.725000px;}
.yce{bottom:652.425000px;}
.y157{bottom:653.145000px;}
.y46{bottom:656.565000px;}
.y186{bottom:659.625000px;}
.y81{bottom:659.985000px;}
.y106{bottom:663.585000px;}
.y19{bottom:666.825000px;}
.ycd{bottom:669.705000px;}
.y156{bottom:670.425000px;}
.y45{bottom:673.845000px;}
.y80{bottom:677.265000px;}
.y105{bottom:680.865000px;}
.y18{bottom:684.105000px;}
.ycc{bottom:686.985000px;}
.y155{bottom:687.525000px;}
.y44{bottom:691.125000px;}
.y185{bottom:694.185000px;}
.y7f{bottom:694.545000px;}
.y104{bottom:698.145000px;}
.y17{bottom:701.385000px;}
.y154{bottom:704.805000px;}
.y43{bottom:708.225000px;}
.y184{bottom:711.465000px;}
.y7e{bottom:711.825000px;}
.y103{bottom:715.425000px;}
.y16{bottom:718.665000px;}
.ycb{bottom:721.545000px;}
.y153{bottom:722.085000px;}
.y42{bottom:725.505000px;}
.y183{bottom:728.565000px;}
.y7d{bottom:728.925000px;}
.y102{bottom:732.525000px;}
.y15{bottom:735.945000px;}
.yca{bottom:738.645000px;}
.y152{bottom:739.365000px;}
.y41{bottom:742.785000px;}
.y182{bottom:745.845000px;}
.y7c{bottom:746.205000px;}
.y101{bottom:749.805000px;}
.y14{bottom:753.225000px;}
.yc9{bottom:755.925000px;}
.y151{bottom:756.645000px;}
.y40{bottom:760.065000px;}
.y181{bottom:763.125000px;}
.y7b{bottom:763.485000px;}
.y120{bottom:766.725000px;}
.y100{bottom:767.085000px;}
.y13{bottom:770.325000px;}
.yc8{bottom:773.025000px;}
.y150{bottom:773.925000px;}
.y3f{bottom:777.345000px;}
.y180{bottom:780.405000px;}
.y7a{bottom:780.765000px;}
.y11f{bottom:783.825000px;}
.yff{bottom:784.365000px;}
.y12{bottom:787.605000px;}
.yc7{bottom:791.025000px;}
.y3e{bottom:794.445000px;}
.y17f{bottom:797.685000px;}
.y79{bottom:798.045000px;}
.y11e{bottom:801.105000px;}
.yfe{bottom:801.645000px;}
.y11{bottom:804.885000px;}
.y14f{bottom:808.305000px;}
.yc6{bottom:809.025000px;}
.y3d{bottom:811.725000px;}
.y17e{bottom:814.965000px;}
.y78{bottom:815.145000px;}
.y11d{bottom:818.385000px;}
.yfd{bottom:818.925000px;}
.y10{bottom:822.165000px;}
.y14e{bottom:825.585000px;}
.yc5{bottom:827.025000px;}
.y3c{bottom:829.005000px;}
.y17d{bottom:832.065000px;}
.y77{bottom:832.425000px;}
.y11c{bottom:835.665000px;}
.yfc{bottom:836.025000px;}
.yf{bottom:839.445000px;}
.y14d{bottom:842.865000px;}
.yc4{bottom:845.025000px;}
.y3b{bottom:846.285000px;}
.y17c{bottom:849.345000px;}
.y76{bottom:849.705000px;}
.y11b{bottom:852.945000px;}
.yfb{bottom:853.305000px;}
.ye{bottom:856.545000px;}
.y14c{bottom:860.145000px;}
.yc3{bottom:863.025000px;}
.y3a{bottom:863.565000px;}
.y177{bottom:866.625000px;}
.y75{bottom:866.985000px;}
.y11a{bottom:870.225000px;}
.yfa{bottom:870.585000px;}
.yd{bottom:874.545000px;}
.y14b{bottom:877.245000px;}
.y39{bottom:880.845000px;}
.yc2{bottom:881.025000px;}
.y74{bottom:884.265000px;}
.y119{bottom:887.325000px;}
.yf9{bottom:887.865000px;}
.y14a{bottom:894.570000px;}
.y38{bottom:897.990000px;}
.yc1{bottom:899.070000px;}
.y73{bottom:901.590000px;}
.y118{bottom:904.650000px;}
.yf8{bottom:905.190000px;}
.y149{bottom:911.850000px;}
.yc{bottom:915.270000px;}
.yc0{bottom:917.070000px;}
.y117{bottom:918.150000px;}
.y72{bottom:918.690000px;}
.yf7{bottom:922.290000px;}
.y148{bottom:929.130000px;}
.yb{bottom:932.550000px;}
.ybf{bottom:935.070000px;}
.y71{bottom:935.970000px;}
.yf6{bottom:939.570000px;}
.y147{bottom:946.410000px;}
.ya{bottom:949.830000px;}
.y70{bottom:953.250000px;}
.yf5{bottom:956.850000px;}
.y146{bottom:963.690000px;}
.y9{bottom:967.110000px;}
.y6f{bottom:970.530000px;}
.yf4{bottom:972.690000px;}
.y145{bottom:980.790000px;}
.y8{bottom:984.390000px;}
.y6e{bottom:987.810000px;}
.yf3{bottom:988.170000px;}
.y144{bottom:998.070000px;}
.y7{bottom:1001.490000px;}
.y6d{bottom:1005.090000px;}
.y143{bottom:1015.350000px;}
.y6{bottom:1018.770000px;}
.yf1{bottom:1019.130000px;}
.y6c{bottom:1022.190000px;}
.y142{bottom:1032.630000px;}
.y176{bottom:1039.110000px;}
.y6b{bottom:1039.470000px;}
.y141{bottom:1049.910000px;}
.yee{bottom:1050.090000px;}
.y5{bottom:1053.330000px;}
.y6a{bottom:1056.750000px;}
.y140{bottom:1067.190000px;}
.y4{bottom:1070.610000px;}
.y69{bottom:1074.030000px;}
.y13f{bottom:1084.290000px;}
.yec{bottom:1086.990000px;}
.y3{bottom:1088.790000px;}
.y68{bottom:1091.310000px;}
.y13e{bottom:1101.570000px;}
.y67{bottom:1108.590000px;}
.y2{bottom:1112.910000px;}
.y13d{bottom:1119.210000px;}
.ya1{bottom:1125.330000px;}
.y66{bottom:1125.690000px;}
.y1{bottom:1137.030000px;}
.y13c{bottom:1139.940000px;}
.ya0{bottom:1142.640000px;}
.y65{bottom:1143.000000px;}
.h9{height:15.465000px;}
.hc{height:30.945000px;}
.hb{height:35.805000px;}
.hd{height:46.425000px;}
.ha{height:52.998047px;}
.h8{height:53.573906px;}
.h5{height:58.621992px;}
.h3{height:58.651172px;}
.h6{height:60.226875px;}
.h4{height:70.664062px;}
.h7{height:72.562500px;}
.h2{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.481000px;}
.w5{width:90.165000px;}
.w4{width:111.240000px;}
.w6{width:115.401000px;}
.w7{width:127.965000px;}
.w2{width:141.831000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:5.211000px;}
.x1e{left:9.900000px;}
.x19{left:12.045000px;}
.x1b{left:17.445000px;}
.x1c{left:19.425000px;}
.x18{left:24.825000px;}
.x1a{left:27.360000px;}
.x15{left:29.190000px;}
.x1f{left:36.930000px;}
.x17{left:41.040000px;}
.x2c{left:46.425000px;}
.x1d{left:49.320000px;}
.x20{left:52.200000px;}
.x2f{left:57.765000px;}
.x2e{left:63.900000px;}
.x33{left:74.340000px;}
.x12{left:101.205000px;}
.x4{left:106.416000px;}
.x2{left:110.556000px;}
.x10{left:115.956000px;}
.x1{left:125.496000px;}
.x30{left:148.896000px;}
.x5{left:152.670000px;}
.x32{left:154.470000px;}
.xd{left:185.610000px;}
.x11{left:202.530000px;}
.x14{left:243.045000px;}
.x8{left:245.190000px;}
.x7{left:255.090000px;}
.x22{left:267.870000px;}
.x16{left:323.535000px;}
.x21{left:348.015000px;}
.x3{left:357.015000px;}
.x6{left:435.855000px;}
.x2a{left:458.400000px;}
.x9{left:463.605000px;}
.x24{left:468.105000px;}
.xb{left:471.705000px;}
.xe{left:478.725000px;}
.x27{left:486.285000px;}
.x31{left:511.665000px;}
.x25{left:531.825000px;}
.x2b{left:548.580000px;}
.xc{left:559.905000px;}
.x29{left:586.905000px;}
.xf{left:596.445000px;}
.x28{left:625.065000px;}
.x2d{left:663.990000px;}
.xa{left:737.790000px;}
.x23{left:790.890000px;}
.x26{left:802.050000px;}
@media print{
.v2{vertical-align:-72.320000pt;}
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.409067pt;}
.ls3{letter-spacing:-0.047360pt;}
.lse{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.183467pt;}
.ls8{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.444160pt;}
.ls4{letter-spacing:0.456533pt;}
.lsd{letter-spacing:4.000000pt;}
.ls12{letter-spacing:100.768000pt;}
.lsb{letter-spacing:107.040000pt;}
.ls1{letter-spacing:434.698667pt;}
.ls0{letter-spacing:921.898667pt;}
.ws6{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws0{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.870933pt;}
.ws9{word-spacing:-11.984000pt;}
.ws1{word-spacing:0.000000pt;}
._0{margin-left:-0.898560pt;}
._1{width:0.942080pt;}
._7{width:2.074880pt;}
._2{width:3.241387pt;}
._1a{width:4.737280pt;}
._9{width:5.857280pt;}
._14{width:6.958720pt;}
._6{width:8.233600pt;}
._5{width:9.136640pt;}
._1e{width:10.155947pt;}
._11{width:11.048533pt;}
._8{width:12.072747pt;}
._10{width:14.356480pt;}
._e{width:15.457920pt;}
._19{width:16.481280pt;}
._1c{width:17.540480pt;}
._12{width:18.532907pt;}
._15{width:19.791360pt;}
._c{width:21.088640pt;}
._d{width:22.097920pt;}
._b{width:23.213440pt;}
._13{width:24.116480pt;}
._20{width:25.497600pt;}
._23{width:27.160747pt;}
._1f{width:28.366080pt;}
._22{width:29.481600pt;}
._24{width:30.572160pt;}
._1b{width:31.500160pt;}
._f{width:32.615680pt;}
._32{width:33.532800pt;}
._a{width:34.421760pt;}
._17{width:35.856000pt;}
._2f{width:37.073280pt;}
._29{width:38.671360pt;}
._2b{width:40.318080pt;}
._26{width:41.786027pt;}
._21{width:43.717760pt;}
._27{width:45.258240pt;}
._28{width:46.224000pt;}
._4{width:47.117440pt;}
._3{width:48.126720pt;}
._30{width:49.401600pt;}
._2c{width:50.995200pt;}
._2a{width:53.969920pt;}
._1d{width:61.416320pt;}
._36{width:69.080747pt;}
._25{width:71.360000pt;}
._2e{width:82.382080pt;}
._31{width:95.662080pt;}
._37{width:102.096640pt;}
._16{width:103.040000pt;}
._18{width:107.355520pt;}
._34{width:117.395200pt;}
._35{width:122.441600pt;}
._33{width:123.557120pt;}
._2d{width:501.760000pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y12e{bottom:2.866667pt;}
.yed{bottom:2.880000pt;}
.y136{bottom:4.946667pt;}
.yf0{bottom:5.120000pt;}
.y131{bottom:14.546667pt;}
.yf2{bottom:16.640000pt;}
.y135{bottom:20.946667pt;}
.yef{bottom:20.960000pt;}
.y130{bottom:30.386667pt;}
.y175{bottom:120.480000pt;}
.y64{bottom:123.520000pt;}
.ybe{bottom:125.280000pt;}
.y13b{bottom:125.760000pt;}
.y37{bottom:126.560000pt;}
.y9f{bottom:126.880000pt;}
.yeb{bottom:132.192000pt;}
.y174{bottom:135.866667pt;}
.y63{bottom:138.906667pt;}
.ybd{bottom:140.666667pt;}
.y13a{bottom:141.146667pt;}
.y36{bottom:141.946667pt;}
.y9e{bottom:142.266667pt;}
.yea{bottom:147.546667pt;}
.y173{bottom:151.226667pt;}
.y62{bottom:154.266667pt;}
.ybc{bottom:156.026667pt;}
.y139{bottom:156.506667pt;}
.y35{bottom:157.306667pt;}
.y9d{bottom:157.466667pt;}
.ye9{bottom:162.906667pt;}
.y172{bottom:166.426667pt;}
.y61{bottom:169.626667pt;}
.y138{bottom:170.440000pt;}
.ybb{bottom:171.226667pt;}
.y34{bottom:172.666667pt;}
.y9c{bottom:172.826667pt;}
.y116{bottom:176.986667pt;}
.ye8{bottom:178.266667pt;}
.y171{bottom:181.786667pt;}
.y137{bottom:184.200000pt;}
.y60{bottom:184.826667pt;}
.yba{bottom:186.586667pt;}
.y33{bottom:188.026667pt;}
.y9b{bottom:188.186667pt;}
.y115{bottom:192.346667pt;}
.ye7{bottom:193.306667pt;}
.y170{bottom:197.146667pt;}
.y134{bottom:197.960000pt;}
.y5f{bottom:200.186667pt;}
.yb9{bottom:201.946667pt;}
.y32{bottom:203.226667pt;}
.y9a{bottom:203.546667pt;}
.y114{bottom:207.706667pt;}
.ye6{bottom:208.506667pt;}
.y16f{bottom:212.506667pt;}
.y5e{bottom:215.546667pt;}
.yb8{bottom:217.306667pt;}
.y31{bottom:218.586667pt;}
.y99{bottom:218.906667pt;}
.y113{bottom:219.706667pt;}
.ye5{bottom:224.186667pt;}
.y16e{bottom:227.866667pt;}
.y12f{bottom:230.440000pt;}
.y84{bottom:230.586667pt;}
.y5d{bottom:230.906667pt;}
.y17b{bottom:233.946667pt;}
.y98{bottom:234.106667pt;}
.y30{bottom:234.266667pt;}
.ye4{bottom:239.866667pt;}
.y16d{bottom:243.226667pt;}
.y133{bottom:244.200000pt;}
.y5c{bottom:246.266667pt;}
.yb7{bottom:248.026667pt;}
.y17a{bottom:249.306667pt;}
.y97{bottom:249.466667pt;}
.y2f{bottom:252.346667pt;}
.ye3{bottom:257.946667pt;}
.y132{bottom:257.960000pt;}
.y16c{bottom:258.426667pt;}
.y5b{bottom:261.626667pt;}
.yb6{bottom:263.226667pt;}
.y179{bottom:264.666667pt;}
.y96{bottom:264.826667pt;}
.y2e{bottom:267.706667pt;}
.y12d{bottom:272.840000pt;}
.ye2{bottom:273.306667pt;}
.y16b{bottom:273.786667pt;}
.y5a{bottom:276.826667pt;}
.yb5{bottom:279.226667pt;}
.y178{bottom:280.026667pt;}
.y95{bottom:280.186667pt;}
.y2d{bottom:283.066667pt;}
.ye1{bottom:288.666667pt;}
.y16a{bottom:289.146667pt;}
.y12c{bottom:291.866667pt;}
.y59{bottom:292.186667pt;}
.yb4{bottom:295.226667pt;}
.y94{bottom:295.546667pt;}
.y2c{bottom:298.426667pt;}
.ye0{bottom:303.866667pt;}
.y169{bottom:304.506667pt;}
.y12b{bottom:307.226667pt;}
.y58{bottom:307.546667pt;}
.yb3{bottom:310.586667pt;}
.y93{bottom:310.906667pt;}
.y2b{bottom:313.626667pt;}
.ydf{bottom:319.226667pt;}
.y168{bottom:319.866667pt;}
.y57{bottom:322.906667pt;}
.yb2{bottom:325.946667pt;}
.y92{bottom:326.106667pt;}
.y2a{bottom:329.626667pt;}
.yde{bottom:334.586667pt;}
.y167{bottom:335.226667pt;}
.y12a{bottom:337.946667pt;}
.y56{bottom:338.266667pt;}
.yb1{bottom:341.306667pt;}
.y91{bottom:341.466667pt;}
.y29{bottom:347.386667pt;}
.ydd{bottom:349.986667pt;}
.y166{bottom:350.466667pt;}
.y129{bottom:353.186667pt;}
.y55{bottom:353.666667pt;}
.yb0{bottom:356.706667pt;}
.y90{bottom:356.866667pt;}
.y28{bottom:362.786667pt;}
.ydc{bottom:365.346667pt;}
.y165{bottom:365.826667pt;}
.y128{bottom:368.546667pt;}
.y54{bottom:368.866667pt;}
.yaf{bottom:372.066667pt;}
.y8f{bottom:372.226667pt;}
.y27{bottom:378.146667pt;}
.ydb{bottom:380.706667pt;}
.y164{bottom:381.186667pt;}
.y127{bottom:383.906667pt;}
.y53{bottom:384.226667pt;}
.yae{bottom:387.266667pt;}
.y8e{bottom:387.586667pt;}
.y26{bottom:393.506667pt;}
.yda{bottom:395.906667pt;}
.y163{bottom:396.546667pt;}
.y126{bottom:399.266667pt;}
.y52{bottom:399.586667pt;}
.yad{bottom:402.626667pt;}
.y8d{bottom:402.946667pt;}
.y112{bottom:405.826667pt;}
.y25{bottom:408.706667pt;}
.yd9{bottom:411.266667pt;}
.y162{bottom:411.906667pt;}
.y125{bottom:414.626667pt;}
.y51{bottom:414.946667pt;}
.yac{bottom:417.986667pt;}
.y8c{bottom:418.146667pt;}
.y111{bottom:421.186667pt;}
.y24{bottom:424.066667pt;}
.yd8{bottom:426.626667pt;}
.y161{bottom:427.106667pt;}
.y124{bottom:429.986667pt;}
.y50{bottom:430.306667pt;}
.yab{bottom:433.346667pt;}
.y8b{bottom:433.506667pt;}
.y110{bottom:436.546667pt;}
.y23{bottom:439.426667pt;}
.yd7{bottom:441.986667pt;}
.y160{bottom:442.466667pt;}
.y123{bottom:445.186667pt;}
.y4f{bottom:445.506667pt;}
.yaa{bottom:448.706667pt;}
.y8a{bottom:448.866667pt;}
.y10f{bottom:451.906667pt;}
.y22{bottom:454.786667pt;}
.yd6{bottom:457.346667pt;}
.y15f{bottom:457.826667pt;}
.y122{bottom:460.546667pt;}
.y4e{bottom:460.866667pt;}
.ya9{bottom:463.906667pt;}
.y89{bottom:464.226667pt;}
.y10e{bottom:467.106667pt;}
.y21{bottom:470.146667pt;}
.y121{bottom:472.546667pt;}
.yd5{bottom:472.706667pt;}
.y15e{bottom:473.186667pt;}
.y4d{bottom:476.226667pt;}
.ya8{bottom:479.266667pt;}
.y88{bottom:479.586667pt;}
.y10d{bottom:482.466667pt;}
.y20{bottom:485.506667pt;}
.yd4{bottom:487.906667pt;}
.y15d{bottom:488.546667pt;}
.y4c{bottom:491.586667pt;}
.ya7{bottom:494.626667pt;}
.y87{bottom:494.786667pt;}
.y10c{bottom:497.826667pt;}
.y1f{bottom:500.706667pt;}
.yd3{bottom:503.266667pt;}
.y15c{bottom:503.906667pt;}
.y4b{bottom:506.946667pt;}
.ya6{bottom:509.986667pt;}
.y86{bottom:510.146667pt;}
.y10b{bottom:513.186667pt;}
.y1e{bottom:516.066667pt;}
.yd2{bottom:518.626667pt;}
.y15b{bottom:519.106667pt;}
.y85{bottom:522.146667pt;}
.y4a{bottom:522.306667pt;}
.ya5{bottom:525.346667pt;}
.y10a{bottom:528.546667pt;}
.y1d{bottom:531.426667pt;}
.yd1{bottom:533.986667pt;}
.y15a{bottom:534.466667pt;}
.y83{bottom:537.186667pt;}
.y49{bottom:537.506667pt;}
.ya4{bottom:540.706667pt;}
.y109{bottom:543.586667pt;}
.y1c{bottom:546.786667pt;}
.yd0{bottom:549.026667pt;}
.y159{bottom:549.826667pt;}
.y48{bottom:552.866667pt;}
.ya3{bottom:555.906667pt;}
.y108{bottom:559.106667pt;}
.y1b{bottom:562.146667pt;}
.ycf{bottom:564.546667pt;}
.y158{bottom:565.186667pt;}
.y47{bottom:568.226667pt;}
.y82{bottom:568.546667pt;}
.y187{bottom:570.973333pt;}
.ya2{bottom:571.293333pt;}
.y107{bottom:574.493333pt;}
.y1a{bottom:577.533333pt;}
.yce{bottom:579.933333pt;}
.y157{bottom:580.573333pt;}
.y46{bottom:583.613333pt;}
.y186{bottom:586.333333pt;}
.y81{bottom:586.653333pt;}
.y106{bottom:589.853333pt;}
.y19{bottom:592.733333pt;}
.ycd{bottom:595.293333pt;}
.y156{bottom:595.933333pt;}
.y45{bottom:598.973333pt;}
.y80{bottom:602.013333pt;}
.y105{bottom:605.213333pt;}
.y18{bottom:608.093333pt;}
.ycc{bottom:610.653333pt;}
.y155{bottom:611.133333pt;}
.y44{bottom:614.333333pt;}
.y185{bottom:617.053333pt;}
.y7f{bottom:617.373333pt;}
.y104{bottom:620.573333pt;}
.y17{bottom:623.453333pt;}
.y154{bottom:626.493333pt;}
.y43{bottom:629.533333pt;}
.y184{bottom:632.413333pt;}
.y7e{bottom:632.733333pt;}
.y103{bottom:635.933333pt;}
.y16{bottom:638.813333pt;}
.ycb{bottom:641.373333pt;}
.y153{bottom:641.853333pt;}
.y42{bottom:644.893333pt;}
.y183{bottom:647.613333pt;}
.y7d{bottom:647.933333pt;}
.y102{bottom:651.133333pt;}
.y15{bottom:654.173333pt;}
.yca{bottom:656.573333pt;}
.y152{bottom:657.213333pt;}
.y41{bottom:660.253333pt;}
.y182{bottom:662.973333pt;}
.y7c{bottom:663.293333pt;}
.y101{bottom:666.493333pt;}
.y14{bottom:669.533333pt;}
.yc9{bottom:671.933333pt;}
.y151{bottom:672.573333pt;}
.y40{bottom:675.613333pt;}
.y181{bottom:678.333333pt;}
.y7b{bottom:678.653333pt;}
.y120{bottom:681.533333pt;}
.y100{bottom:681.853333pt;}
.y13{bottom:684.733333pt;}
.yc8{bottom:687.133333pt;}
.y150{bottom:687.933333pt;}
.y3f{bottom:690.973333pt;}
.y180{bottom:693.693333pt;}
.y7a{bottom:694.013333pt;}
.y11f{bottom:696.733333pt;}
.yff{bottom:697.213333pt;}
.y12{bottom:700.093333pt;}
.yc7{bottom:703.133333pt;}
.y3e{bottom:706.173333pt;}
.y17f{bottom:709.053333pt;}
.y79{bottom:709.373333pt;}
.y11e{bottom:712.093333pt;}
.yfe{bottom:712.573333pt;}
.y11{bottom:715.453333pt;}
.y14f{bottom:718.493333pt;}
.yc6{bottom:719.133333pt;}
.y3d{bottom:721.533333pt;}
.y17e{bottom:724.413333pt;}
.y78{bottom:724.573333pt;}
.y11d{bottom:727.453333pt;}
.yfd{bottom:727.933333pt;}
.y10{bottom:730.813333pt;}
.y14e{bottom:733.853333pt;}
.yc5{bottom:735.133333pt;}
.y3c{bottom:736.893333pt;}
.y17d{bottom:739.613333pt;}
.y77{bottom:739.933333pt;}
.y11c{bottom:742.813333pt;}
.yfc{bottom:743.133333pt;}
.yf{bottom:746.173333pt;}
.y14d{bottom:749.213333pt;}
.yc4{bottom:751.133333pt;}
.y3b{bottom:752.253333pt;}
.y17c{bottom:754.973333pt;}
.y76{bottom:755.293333pt;}
.y11b{bottom:758.173333pt;}
.yfb{bottom:758.493333pt;}
.ye{bottom:761.373333pt;}
.y14c{bottom:764.573333pt;}
.yc3{bottom:767.133333pt;}
.y3a{bottom:767.613333pt;}
.y177{bottom:770.333333pt;}
.y75{bottom:770.653333pt;}
.y11a{bottom:773.533333pt;}
.yfa{bottom:773.853333pt;}
.yd{bottom:777.373333pt;}
.y14b{bottom:779.773333pt;}
.y39{bottom:782.973333pt;}
.yc2{bottom:783.133333pt;}
.y74{bottom:786.013333pt;}
.y119{bottom:788.733333pt;}
.yf9{bottom:789.213333pt;}
.y14a{bottom:795.173333pt;}
.y38{bottom:798.213333pt;}
.yc1{bottom:799.173333pt;}
.y73{bottom:801.413333pt;}
.y118{bottom:804.133333pt;}
.yf8{bottom:804.613333pt;}
.y149{bottom:810.533333pt;}
.yc{bottom:813.573333pt;}
.yc0{bottom:815.173333pt;}
.y117{bottom:816.133333pt;}
.y72{bottom:816.613333pt;}
.yf7{bottom:819.813333pt;}
.y148{bottom:825.893333pt;}
.yb{bottom:828.933333pt;}
.ybf{bottom:831.173333pt;}
.y71{bottom:831.973333pt;}
.yf6{bottom:835.173333pt;}
.y147{bottom:841.253333pt;}
.ya{bottom:844.293333pt;}
.y70{bottom:847.333333pt;}
.yf5{bottom:850.533333pt;}
.y146{bottom:856.613333pt;}
.y9{bottom:859.653333pt;}
.y6f{bottom:862.693333pt;}
.yf4{bottom:864.613333pt;}
.y145{bottom:871.813333pt;}
.y8{bottom:875.013333pt;}
.y6e{bottom:878.053333pt;}
.yf3{bottom:878.373333pt;}
.y144{bottom:887.173333pt;}
.y7{bottom:890.213333pt;}
.y6d{bottom:893.413333pt;}
.y143{bottom:902.533333pt;}
.y6{bottom:905.573333pt;}
.yf1{bottom:905.893333pt;}
.y6c{bottom:908.613333pt;}
.y142{bottom:917.893333pt;}
.y176{bottom:923.653333pt;}
.y6b{bottom:923.973333pt;}
.y141{bottom:933.253333pt;}
.yee{bottom:933.413333pt;}
.y5{bottom:936.293333pt;}
.y6a{bottom:939.333333pt;}
.y140{bottom:948.613333pt;}
.y4{bottom:951.653333pt;}
.y69{bottom:954.693333pt;}
.y13f{bottom:963.813333pt;}
.yec{bottom:966.213333pt;}
.y3{bottom:967.813333pt;}
.y68{bottom:970.053333pt;}
.y13e{bottom:979.173333pt;}
.y67{bottom:985.413333pt;}
.y2{bottom:989.253333pt;}
.y13d{bottom:994.853333pt;}
.ya1{bottom:1000.293333pt;}
.y66{bottom:1000.613333pt;}
.y1{bottom:1010.693333pt;}
.y13c{bottom:1013.280000pt;}
.ya0{bottom:1015.680000pt;}
.y65{bottom:1016.000000pt;}
.h9{height:13.746667pt;}
.hc{height:27.506667pt;}
.hb{height:31.826667pt;}
.hd{height:41.266667pt;}
.ha{height:47.109375pt;}
.h8{height:47.621250pt;}
.h5{height:52.108438pt;}
.h3{height:52.134375pt;}
.h6{height:53.535000pt;}
.h4{height:62.812500pt;}
.h7{height:64.500000pt;}
.h2{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.538667pt;}
.w5{width:80.146667pt;}
.w4{width:98.880000pt;}
.w6{width:102.578667pt;}
.w7{width:113.746667pt;}
.w2{width:126.072000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:4.632000pt;}
.x1e{left:8.800000pt;}
.x19{left:10.706667pt;}
.x1b{left:15.506667pt;}
.x1c{left:17.266667pt;}
.x18{left:22.066667pt;}
.x1a{left:24.320000pt;}
.x15{left:25.946667pt;}
.x1f{left:32.826667pt;}
.x17{left:36.480000pt;}
.x2c{left:41.266667pt;}
.x1d{left:43.840000pt;}
.x20{left:46.400000pt;}
.x2f{left:51.346667pt;}
.x2e{left:56.800000pt;}
.x33{left:66.080000pt;}
.x12{left:89.960000pt;}
.x4{left:94.592000pt;}
.x2{left:98.272000pt;}
.x10{left:103.072000pt;}
.x1{left:111.552000pt;}
.x30{left:132.352000pt;}
.x5{left:135.706667pt;}
.x32{left:137.306667pt;}
.xd{left:164.986667pt;}
.x11{left:180.026667pt;}
.x14{left:216.040000pt;}
.x8{left:217.946667pt;}
.x7{left:226.746667pt;}
.x22{left:238.106667pt;}
.x16{left:287.586667pt;}
.x21{left:309.346667pt;}
.x3{left:317.346667pt;}
.x6{left:387.426667pt;}
.x2a{left:407.466667pt;}
.x9{left:412.093333pt;}
.x24{left:416.093333pt;}
.xb{left:419.293333pt;}
.xe{left:425.533333pt;}
.x27{left:432.253333pt;}
.x31{left:454.813333pt;}
.x25{left:472.733333pt;}
.x2b{left:487.626667pt;}
.xc{left:497.693333pt;}
.x29{left:521.693333pt;}
.xf{left:530.173333pt;}
.x28{left:555.613333pt;}
.x2d{left:590.213333pt;}
.xa{left:655.813333pt;}
.x23{left:703.013333pt;}
.x26{left:712.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; }
  