
    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_65d4c4af39dbf162a3635a7d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8c2ce2b32574fb068c0efae0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_31830400b439b18e713e38fd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_5edb0e849653704b7fd8216f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862793;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_d7f5139d4fa8d8edef3cf42a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896973;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.800000px;}
.ls5{letter-spacing:2.400000px;}
.ls3{letter-spacing:7.704000px;}
.ls4{letter-spacing:13.800000px;}
.ls1{letter-spacing:16.800000px;}
.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;}
}
.ws5{word-spacing:-21.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.000000px;}
.ws4{word-spacing:-10.848000px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:32.400000px;}
.ws7{word-spacing:122.400000px;}
._28{margin-left:-6.552000px;}
._e{margin-left:-1.080000px;}
._8{width:1.008000px;}
._9{width:2.088000px;}
._16{width:3.096000px;}
._f{width:4.104000px;}
._10{width:5.184000px;}
._c{width:6.696000px;}
._d{width:7.776000px;}
._13{width:8.856000px;}
._a{width:9.936000px;}
._b{width:11.016000px;}
._14{width:12.240000px;}
._11{width:13.536000px;}
._12{width:14.544000px;}
._15{width:16.056000px;}
._1d{width:19.800000px;}
._22{width:20.880000px;}
._20{width:22.104000px;}
._21{width:23.184000px;}
._29{width:24.552000px;}
._26{width:26.856000px;}
._18{width:29.880000px;}
._1f{width:31.464000px;}
._23{width:44.136000px;}
._3e{width:50.400000px;}
._37{width:68.400000px;}
._3d{width:86.400000px;}
._2f{width:104.400000px;}
._2d{width:140.400000px;}
._33{width:176.400000px;}
._1b{width:186.792000px;}
._1a{width:274.632000px;}
._19{width:405.192000px;}
._3a{width:406.800000px;}
._3{width:412.920000px;}
._39{width:420.840000px;}
._2e{width:502.416000px;}
._17{width:550.704000px;}
._25{width:552.192000px;}
._27{width:610.920000px;}
._1c{width:623.304000px;}
._2{width:632.736000px;}
._24{width:708.264000px;}
._2c{width:843.768000px;}
._31{width:879.624000px;}
._0{width:916.344000px;}
._1e{width:922.128000px;}
._3c{width:951.408000px;}
._44{width:954.360000px;}
._7{width:955.872000px;}
._2b{width:967.464000px;}
._3b{width:973.440000px;}
._40{width:986.472000px;}
._41{width:1049.616000px;}
._36{width:1061.424000px;}
._35{width:1095.336000px;}
._32{width:1145.376000px;}
._2a{width:1183.176000px;}
._42{width:1215.360000px;}
._43{width:1280.160000px;}
._30{width:1310.904000px;}
._5{width:1315.440000px;}
._4{width:1321.560000px;}
._34{width:1358.928000px;}
._6{width:1364.184000px;}
._3f{width:1469.880000px;}
._1{width:1557.432000px;}
._38{width:1755.792000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.yad{bottom:112.650000px;}
.y4d{bottom:112.800000px;}
.yc3{bottom:113.250000px;}
.y90{bottom:113.400000px;}
.y20{bottom:114.450000px;}
.y3d{bottom:115.950000px;}
.y65{bottom:117.450000px;}
.yec{bottom:123.750000px;}
.yce{bottom:124.650000px;}
.y75{bottom:128.850000px;}
.y10b{bottom:129.600000px;}
.yfc{bottom:132.450000px;}
.yc2{bottom:135.300000px;}
.y82{bottom:138.300000px;}
.ya1{bottom:143.850000px;}
.y57{bottom:149.250000px;}
.yb3{bottom:155.700000px;}
.ycd{bottom:158.700000px;}
.y4c{bottom:159.000000px;}
.y8f{bottom:159.600000px;}
.yfb{bottom:163.500000px;}
.yeb{bottom:164.250000px;}
.ya0{bottom:170.700000px;}
.y81{bottom:184.650000px;}
.yea{bottom:186.600000px;}
.yb2{bottom:186.750000px;}
.yc1{bottom:192.750000px;}
.yfa{bottom:194.550000px;}
.y118{bottom:198.600000px;}
.y56{bottom:200.700000px;}
.y9f{bottom:201.750000px;}
.y126{bottom:202.950000px;}
.y3c{bottom:204.900000px;}
.y64{bottom:206.400000px;}
.y12c{bottom:206.550000px;}
.yc0{bottom:208.500000px;}
.y138{bottom:215.850000px;}
.y74{bottom:217.800000px;}
.y117{bottom:218.400000px;}
.y132{bottom:219.900000px;}
.y11f{bottom:222.750000px;}
.y125{bottom:222.900000px;}
.ybf{bottom:224.250000px;}
.y13e{bottom:225.450000px;}
.yf9{bottom:225.600000px;}
.y12b{bottom:226.500000px;}
.yac{bottom:226.800000px;}
.y9{bottom:227.400000px;}
.y149{bottom:227.850000px;}
.y144{bottom:230.400000px;}
.ye9{bottom:231.300000px;}
.y9e{bottom:232.800000px;}
.y14c{bottom:233.850000px;}
.y137{bottom:235.800000px;}
.y3b{bottom:235.950000px;}
.y63{bottom:237.450000px;}
.y152{bottom:238.050000px;}
.y116{bottom:238.350000px;}
.y131{bottom:239.700000px;}
.yab{bottom:240.600000px;}
.y11e{bottom:242.550000px;}
.y124{bottom:242.700000px;}
.y13d{bottom:245.250000px;}
.y12a{bottom:246.300000px;}
.y8{bottom:247.800000px;}
.y73{bottom:248.850000px;}
.y143{bottom:250.350000px;}
.y157{bottom:251.400000px;}
.ye8{bottom:253.650000px;}
.y136{bottom:255.600000px;}
.yf8{bottom:256.650000px;}
.y151{bottom:257.850000px;}
.y161{bottom:258.000000px;}
.y115{bottom:258.150000px;}
.y130{bottom:259.650000px;}
.y11d{bottom:262.500000px;}
.y123{bottom:262.650000px;}
.y9d{bottom:263.850000px;}
.ycc{bottom:264.750000px;}
.y13c{bottom:265.200000px;}
.y129{bottom:266.250000px;}
.y3a{bottom:267.000000px;}
.y15d{bottom:267.450000px;}
.y148{bottom:267.600000px;}
.y62{bottom:268.500000px;}
.y7{bottom:268.650000px;}
.y142{bottom:270.150000px;}
.y156{bottom:271.200000px;}
.y111{bottom:273.600000px;}
.y135{bottom:275.550000px;}
.ye7{bottom:276.000000px;}
.y150{bottom:277.800000px;}
.y17b{bottom:277.950000px;}
.y114{bottom:278.100000px;}
.y12f{bottom:279.450000px;}
.y72{bottom:279.900000px;}
.y11c{bottom:282.300000px;}
.y122{bottom:282.450000px;}
.y13b{bottom:285.000000px;}
.y128{bottom:286.050000px;}
.y169{bottom:286.800000px;}
.ycb{bottom:287.100000px;}
.y15c{bottom:287.400000px;}
.y147{bottom:287.550000px;}
.yf7{bottom:287.700000px;}
.y141{bottom:290.100000px;}
.y6{bottom:290.700000px;}
.y155{bottom:291.150000px;}
.y14b{bottom:293.400000px;}
.y110{bottom:293.550000px;}
.y9c{bottom:294.900000px;}
.y134{bottom:295.350000px;}
.y17a{bottom:296.550000px;}
.y14f{bottom:297.600000px;}
.y160{bottom:297.750000px;}
.y113{bottom:297.900000px;}
.y39{bottom:298.050000px;}
.ye6{bottom:298.350000px;}
.y12e{bottom:299.400000px;}
.y61{bottom:299.550000px;}
.y175{bottom:301.350000px;}
.y11b{bottom:302.250000px;}
.y121{bottom:302.400000px;}
.y13a{bottom:304.950000px;}
.y127{bottom:306.600000px;}
.y15b{bottom:307.200000px;}
.y146{bottom:307.350000px;}
.yca{bottom:309.450000px;}
.y140{bottom:309.900000px;}
.y71{bottom:310.950000px;}
.y5{bottom:311.100000px;}
.y16d{bottom:312.150000px;}
.y10f{bottom:313.350000px;}
.y133{bottom:315.900000px;}
.y179{bottom:316.500000px;}
.y14e{bottom:317.550000px;}
.y112{bottom:318.450000px;}
.yf6{bottom:318.750000px;}
.y12d{bottom:320.400000px;}
.ye5{bottom:320.700000px;}
.y174{bottom:321.300000px;}
.y11a{bottom:322.050000px;}
.y120{bottom:322.800000px;}
.y139{bottom:325.350000px;}
.y9b{bottom:325.950000px;}
.y168{bottom:326.550000px;}
.y15a{bottom:327.150000px;}
.y145{bottom:327.900000px;}
.y38{bottom:329.100000px;}
.y164{bottom:329.850000px;}
.y13f{bottom:330.450000px;}
.y60{bottom:330.600000px;}
.y154{bottom:330.900000px;}
.y16c{bottom:331.950000px;}
.y10e{bottom:333.300000px;}
.y14a{bottom:333.750000px;}
.y178{bottom:336.300000px;}
.y15f{bottom:337.500000px;}
.y14d{bottom:337.950000px;}
.y173{bottom:341.100000px;}
.y70{bottom:342.000000px;}
.ye4{bottom:343.050000px;}
.y167{bottom:346.350000px;}
.y159{bottom:346.950000px;}
.y170{bottom:347.100000px;}
.y163{bottom:349.650000px;}
.yf5{bottom:349.800000px;}
.y153{bottom:351.300000px;}
.y16b{bottom:351.900000px;}
.y10d{bottom:353.100000px;}
.y177{bottom:356.250000px;}
.y15e{bottom:357.900000px;}
.y37{bottom:360.150000px;}
.y4{bottom:360.600000px;}
.y172{bottom:361.050000px;}
.yc9{bottom:361.200000px;}
.yb1{bottom:361.350000px;}
.y119{bottom:362.400000px;}
.y109{bottom:363.450000px;}
.ye3{bottom:365.400000px;}
.y166{bottom:366.300000px;}
.y16f{bottom:366.900000px;}
.y158{bottom:367.500000px;}
.y162{bottom:370.200000px;}
.y16a{bottom:371.700000px;}
.y6f{bottom:373.050000px;}
.yb0{bottom:375.150000px;}
.y9a{bottom:376.350000px;}
.y176{bottom:376.650000px;}
.yf4{bottom:380.850000px;}
.y165{bottom:386.700000px;}
.y16e{bottom:387.450000px;}
.ye2{bottom:387.750000px;}
.y36{bottom:391.200000px;}
.yc8{bottom:392.250000px;}
.y5f{bottom:392.700000px;}
.y10c{bottom:394.050000px;}
.y108{bottom:394.500000px;}
.y171{bottom:401.400000px;}
.y4b{bottom:406.650000px;}
.yf3{bottom:411.900000px;}
.y35{bottom:422.250000px;}
.yc7{bottom:423.300000px;}
.y5e{bottom:423.750000px;}
.y107{bottom:425.550000px;}
.y8e{bottom:428.100000px;}
.y6e{bottom:435.150000px;}
.ye1{bottom:436.950000px;}
.y4a{bottom:437.700000px;}
.yf2{bottom:442.950000px;}
.y34{bottom:453.300000px;}
.y5d{bottom:454.800000px;}
.y106{bottom:456.600000px;}
.y8d{bottom:459.150000px;}
.y6d{bottom:466.200000px;}
.y49{bottom:468.750000px;}
.yc6{bottom:471.450000px;}
.yf1{bottom:474.000000px;}
.ybe{bottom:475.650000px;}
.y33{bottom:484.350000px;}
.y5c{bottom:485.850000px;}
.yc5{bottom:487.200000px;}
.y105{bottom:487.650000px;}
.y8c{bottom:490.200000px;}
.y6c{bottom:497.250000px;}
.y48{bottom:499.800000px;}
.yc4{bottom:502.950000px;}
.yf0{bottom:505.050000px;}
.ybd{bottom:506.700000px;}
.y32{bottom:515.400000px;}
.y104{bottom:518.700000px;}
.y8b{bottom:521.250000px;}
.y6b{bottom:528.300000px;}
.ye0{bottom:529.200000px;}
.y1f{bottom:534.900000px;}
.yef{bottom:536.100000px;}
.ybc{bottom:537.750000px;}
.y55{bottom:539.250000px;}
.y31{bottom:546.450000px;}
.y5b{bottom:546.600000px;}
.y103{bottom:549.750000px;}
.y47{bottom:550.200000px;}
.ydf{bottom:551.550000px;}
.y8a{bottom:552.300000px;}
.y1e{bottom:557.250000px;}
.y6a{bottom:559.350000px;}
.yee{bottom:567.150000px;}
.ybb{bottom:568.800000px;}
.y80{bottom:569.250000px;}
.y54{bottom:570.300000px;}
.y1d{bottom:579.600000px;}
.y102{bottom:580.800000px;}
.y89{bottom:583.350000px;}
.y69{bottom:590.400000px;}
.yde{bottom:596.250000px;}
.y99{bottom:596.550000px;}
.y30{bottom:598.200000px;}
.yba{bottom:599.850000px;}
.y7f{bottom:600.300000px;}
.y53{bottom:601.350000px;}
.y1c{bottom:601.950000px;}
.y101{bottom:611.850000px;}
.y88{bottom:614.400000px;}
.y12{bottom:614.700000px;}
.ydd{bottom:618.600000px;}
.y68{bottom:621.450000px;}
.y98{bottom:627.600000px;}
.y2f{bottom:629.250000px;}
.yb9{bottom:630.900000px;}
.y7e{bottom:631.350000px;}
.y52{bottom:632.400000px;}
.yaa{bottom:636.900000px;}
.ydc{bottom:640.950000px;}
.y100{bottom:642.900000px;}
.y87{bottom:645.450000px;}
.y1b{bottom:646.650000px;}
.y67{bottom:652.500000px;}
.y97{bottom:658.650000px;}
.y2e{bottom:660.300000px;}
.yb8{bottom:661.950000px;}
.y7d{bottom:662.400000px;}
.y51{bottom:663.450000px;}
.ya9{bottom:667.950000px;}
.y1a{bottom:669.000000px;}
.yff{bottom:673.950000px;}
.ydb{bottom:686.400000px;}
.y96{bottom:689.700000px;}
.y2d{bottom:691.350000px;}
.yb7{bottom:693.000000px;}
.y7c{bottom:693.450000px;}
.y86{bottom:695.850000px;}
.ya8{bottom:699.000000px;}
.y66{bottom:702.900000px;}
.yfe{bottom:705.000000px;}
.y85{bottom:709.650000px;}
.y50{bottom:713.850000px;}
.y95{bottom:720.750000px;}
.y2c{bottom:722.400000px;}
.y84{bottom:723.450000px;}
.yb6{bottom:724.050000px;}
.y7b{bottom:724.500000px;}
.ya7{bottom:730.050000px;}
.y19{bottom:736.050000px;}
.y83{bottom:737.250000px;}
.y11{bottom:744.000000px;}
.y94{bottom:751.800000px;}
.y2b{bottom:753.450000px;}
.yb5{bottom:755.100000px;}
.y7a{bottom:755.550000px;}
.ya6{bottom:761.100000px;}
.yfd{bottom:767.100000px;}
.yda{bottom:778.650000px;}
.yaf{bottom:779.250000px;}
.y93{bottom:782.850000px;}
.y2a{bottom:784.500000px;}
.yb4{bottom:786.150000px;}
.y79{bottom:786.600000px;}
.y10{bottom:792.150000px;}
.yae{bottom:793.050000px;}
.y5a{bottom:798.150000px;}
.y92{bottom:813.900000px;}
.y29{bottom:815.550000px;}
.y78{bottom:817.650000px;}
.ya5{bottom:823.200000px;}
.yd9{bottom:823.350000px;}
.y59{bottom:829.200000px;}
.y3{bottom:841.050000px;}
.yf{bottom:841.800000px;}
.yd8{bottom:845.700000px;}
.y28{bottom:846.600000px;}
.y46{bottom:848.250000px;}
.y77{bottom:848.700000px;}
.ya4{bottom:854.250000px;}
.y58{bottom:860.250000px;}
.y91{bottom:864.300000px;}
.yd7{bottom:868.050000px;}
.yed{bottom:877.650000px;}
.y45{bottom:879.300000px;}
.yd6{bottom:890.400000px;}
.y18{bottom:891.300000px;}
.ye{bottom:891.450000px;}
.y2{bottom:898.050000px;}
.y76{bottom:899.100000px;}
.ya3{bottom:904.650000px;}
.y27{bottom:908.700000px;}
.y44{bottom:910.350000px;}
.yd5{bottom:912.750000px;}
.ya2{bottom:918.450000px;}
.y17{bottom:922.350000px;}
.yd4{bottom:935.100000px;}
.y26{bottom:939.750000px;}
.yd{bottom:941.100000px;}
.y43{bottom:941.400000px;}
.y16{bottom:953.400000px;}
.yd3{bottom:957.450000px;}
.y25{bottom:970.800000px;}
.y42{bottom:972.450000px;}
.yd2{bottom:979.800000px;}
.y15{bottom:984.450000px;}
.yc{bottom:990.750000px;}
.y24{bottom:1001.850000px;}
.yd1{bottom:1002.150000px;}
.y41{bottom:1003.500000px;}
.y4f{bottom:1015.500000px;}
.yd0{bottom:1024.500000px;}
.y23{bottom:1032.900000px;}
.y40{bottom:1034.550000px;}
.yb{bottom:1040.400000px;}
.y14{bottom:1046.550000px;}
.y22{bottom:1063.950000px;}
.y3f{bottom:1065.600000px;}
.ycf{bottom:1069.800000px;}
.y13{bottom:1077.600000px;}
.y21{bottom:1095.000000px;}
.y3e{bottom:1096.650000px;}
.y4e{bottom:1108.650000px;}
.y10a{bottom:1136.850000px;}
.ya{bottom:1139.700000px;}
.ha{height:32.859375px;}
.h8{height:42.117188px;}
.h7{height:47.381836px;}
.hc{height:49.042969px;}
.h6{height:49.289062px;}
.h9{height:49.992188px;}
.he{height:52.646484px;}
.hd{height:57.503906px;}
.h4{height:57.911133px;}
.hb{height:58.324219px;}
.h5{height:63.175781px;}
.h3{height:73.705078px;}
.h2{height:91.652344px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:127.800000px;}
.x17{left:131.850000px;}
.xd{left:143.250000px;}
.x15{left:153.450000px;}
.x19{left:154.500000px;}
.xf{left:156.750000px;}
.x14{left:169.950000px;}
.xb{left:174.300000px;}
.x9{left:180.900000px;}
.x10{left:182.100000px;}
.x11{left:186.000000px;}
.xc{left:188.250000px;}
.xe{left:213.000000px;}
.x1b{left:251.850000px;}
.x12{left:351.300000px;}
.x1{left:359.400000px;}
.x3{left:365.550000px;}
.x2{left:374.550000px;}
.x7{left:376.500000px;}
.x4{left:379.050000px;}
.x6{left:382.350000px;}
.x5{left:397.350000px;}
.x16{left:445.800000px;}
.x1a{left:450.750000px;}
.x13{left:524.550000px;}
.x18{left:752.100000px;}
.xa{left:758.850000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.600000pt;}
.ls5{letter-spacing:2.133333pt;}
.ls3{letter-spacing:6.848000pt;}
.ls4{letter-spacing:12.266667pt;}
.ls1{letter-spacing:14.933333pt;}
.ws5{word-spacing:-18.666667pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-10.666667pt;}
.ws4{word-spacing:-9.642667pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:28.800000pt;}
.ws7{word-spacing:108.800000pt;}
._28{margin-left:-5.824000pt;}
._e{margin-left:-0.960000pt;}
._8{width:0.896000pt;}
._9{width:1.856000pt;}
._16{width:2.752000pt;}
._f{width:3.648000pt;}
._10{width:4.608000pt;}
._c{width:5.952000pt;}
._d{width:6.912000pt;}
._13{width:7.872000pt;}
._a{width:8.832000pt;}
._b{width:9.792000pt;}
._14{width:10.880000pt;}
._11{width:12.032000pt;}
._12{width:12.928000pt;}
._15{width:14.272000pt;}
._1d{width:17.600000pt;}
._22{width:18.560000pt;}
._20{width:19.648000pt;}
._21{width:20.608000pt;}
._29{width:21.824000pt;}
._26{width:23.872000pt;}
._18{width:26.560000pt;}
._1f{width:27.968000pt;}
._23{width:39.232000pt;}
._3e{width:44.800000pt;}
._37{width:60.800000pt;}
._3d{width:76.800000pt;}
._2f{width:92.800000pt;}
._2d{width:124.800000pt;}
._33{width:156.800000pt;}
._1b{width:166.037333pt;}
._1a{width:244.117333pt;}
._19{width:360.170667pt;}
._3a{width:361.600000pt;}
._3{width:367.040000pt;}
._39{width:374.080000pt;}
._2e{width:446.592000pt;}
._17{width:489.514667pt;}
._25{width:490.837333pt;}
._27{width:543.040000pt;}
._1c{width:554.048000pt;}
._2{width:562.432000pt;}
._24{width:629.568000pt;}
._2c{width:750.016000pt;}
._31{width:781.888000pt;}
._0{width:814.528000pt;}
._1e{width:819.669333pt;}
._3c{width:845.696000pt;}
._44{width:848.320000pt;}
._7{width:849.664000pt;}
._2b{width:859.968000pt;}
._3b{width:865.280000pt;}
._40{width:876.864000pt;}
._41{width:932.992000pt;}
._36{width:943.488000pt;}
._35{width:973.632000pt;}
._32{width:1018.112000pt;}
._2a{width:1051.712000pt;}
._42{width:1080.320000pt;}
._43{width:1137.920000pt;}
._30{width:1165.248000pt;}
._5{width:1169.280000pt;}
._4{width:1174.720000pt;}
._34{width:1207.936000pt;}
._6{width:1212.608000pt;}
._3f{width:1306.560000pt;}
._1{width:1384.384000pt;}
._38{width:1560.704000pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.yad{bottom:100.133333pt;}
.y4d{bottom:100.266667pt;}
.yc3{bottom:100.666667pt;}
.y90{bottom:100.800000pt;}
.y20{bottom:101.733333pt;}
.y3d{bottom:103.066667pt;}
.y65{bottom:104.400000pt;}
.yec{bottom:110.000000pt;}
.yce{bottom:110.800000pt;}
.y75{bottom:114.533333pt;}
.y10b{bottom:115.200000pt;}
.yfc{bottom:117.733333pt;}
.yc2{bottom:120.266667pt;}
.y82{bottom:122.933333pt;}
.ya1{bottom:127.866667pt;}
.y57{bottom:132.666667pt;}
.yb3{bottom:138.400000pt;}
.ycd{bottom:141.066667pt;}
.y4c{bottom:141.333333pt;}
.y8f{bottom:141.866667pt;}
.yfb{bottom:145.333333pt;}
.yeb{bottom:146.000000pt;}
.ya0{bottom:151.733333pt;}
.y81{bottom:164.133333pt;}
.yea{bottom:165.866667pt;}
.yb2{bottom:166.000000pt;}
.yc1{bottom:171.333333pt;}
.yfa{bottom:172.933333pt;}
.y118{bottom:176.533333pt;}
.y56{bottom:178.400000pt;}
.y9f{bottom:179.333333pt;}
.y126{bottom:180.400000pt;}
.y3c{bottom:182.133333pt;}
.y64{bottom:183.466667pt;}
.y12c{bottom:183.600000pt;}
.yc0{bottom:185.333333pt;}
.y138{bottom:191.866667pt;}
.y74{bottom:193.600000pt;}
.y117{bottom:194.133333pt;}
.y132{bottom:195.466667pt;}
.y11f{bottom:198.000000pt;}
.y125{bottom:198.133333pt;}
.ybf{bottom:199.333333pt;}
.y13e{bottom:200.400000pt;}
.yf9{bottom:200.533333pt;}
.y12b{bottom:201.333333pt;}
.yac{bottom:201.600000pt;}
.y9{bottom:202.133333pt;}
.y149{bottom:202.533333pt;}
.y144{bottom:204.800000pt;}
.ye9{bottom:205.600000pt;}
.y9e{bottom:206.933333pt;}
.y14c{bottom:207.866667pt;}
.y137{bottom:209.600000pt;}
.y3b{bottom:209.733333pt;}
.y63{bottom:211.066667pt;}
.y152{bottom:211.600000pt;}
.y116{bottom:211.866667pt;}
.y131{bottom:213.066667pt;}
.yab{bottom:213.866667pt;}
.y11e{bottom:215.600000pt;}
.y124{bottom:215.733333pt;}
.y13d{bottom:218.000000pt;}
.y12a{bottom:218.933333pt;}
.y8{bottom:220.266667pt;}
.y73{bottom:221.200000pt;}
.y143{bottom:222.533333pt;}
.y157{bottom:223.466667pt;}
.ye8{bottom:225.466667pt;}
.y136{bottom:227.200000pt;}
.yf8{bottom:228.133333pt;}
.y151{bottom:229.200000pt;}
.y161{bottom:229.333333pt;}
.y115{bottom:229.466667pt;}
.y130{bottom:230.800000pt;}
.y11d{bottom:233.333333pt;}
.y123{bottom:233.466667pt;}
.y9d{bottom:234.533333pt;}
.ycc{bottom:235.333333pt;}
.y13c{bottom:235.733333pt;}
.y129{bottom:236.666667pt;}
.y3a{bottom:237.333333pt;}
.y15d{bottom:237.733333pt;}
.y148{bottom:237.866667pt;}
.y62{bottom:238.666667pt;}
.y7{bottom:238.800000pt;}
.y142{bottom:240.133333pt;}
.y156{bottom:241.066667pt;}
.y111{bottom:243.200000pt;}
.y135{bottom:244.933333pt;}
.ye7{bottom:245.333333pt;}
.y150{bottom:246.933333pt;}
.y17b{bottom:247.066667pt;}
.y114{bottom:247.200000pt;}
.y12f{bottom:248.400000pt;}
.y72{bottom:248.800000pt;}
.y11c{bottom:250.933333pt;}
.y122{bottom:251.066667pt;}
.y13b{bottom:253.333333pt;}
.y128{bottom:254.266667pt;}
.y169{bottom:254.933333pt;}
.ycb{bottom:255.200000pt;}
.y15c{bottom:255.466667pt;}
.y147{bottom:255.600000pt;}
.yf7{bottom:255.733333pt;}
.y141{bottom:257.866667pt;}
.y6{bottom:258.400000pt;}
.y155{bottom:258.800000pt;}
.y14b{bottom:260.800000pt;}
.y110{bottom:260.933333pt;}
.y9c{bottom:262.133333pt;}
.y134{bottom:262.533333pt;}
.y17a{bottom:263.600000pt;}
.y14f{bottom:264.533333pt;}
.y160{bottom:264.666667pt;}
.y113{bottom:264.800000pt;}
.y39{bottom:264.933333pt;}
.ye6{bottom:265.200000pt;}
.y12e{bottom:266.133333pt;}
.y61{bottom:266.266667pt;}
.y175{bottom:267.866667pt;}
.y11b{bottom:268.666667pt;}
.y121{bottom:268.800000pt;}
.y13a{bottom:271.066667pt;}
.y127{bottom:272.533333pt;}
.y15b{bottom:273.066667pt;}
.y146{bottom:273.200000pt;}
.yca{bottom:275.066667pt;}
.y140{bottom:275.466667pt;}
.y71{bottom:276.400000pt;}
.y5{bottom:276.533333pt;}
.y16d{bottom:277.466667pt;}
.y10f{bottom:278.533333pt;}
.y133{bottom:280.800000pt;}
.y179{bottom:281.333333pt;}
.y14e{bottom:282.266667pt;}
.y112{bottom:283.066667pt;}
.yf6{bottom:283.333333pt;}
.y12d{bottom:284.800000pt;}
.ye5{bottom:285.066667pt;}
.y174{bottom:285.600000pt;}
.y11a{bottom:286.266667pt;}
.y120{bottom:286.933333pt;}
.y139{bottom:289.200000pt;}
.y9b{bottom:289.733333pt;}
.y168{bottom:290.266667pt;}
.y15a{bottom:290.800000pt;}
.y145{bottom:291.466667pt;}
.y38{bottom:292.533333pt;}
.y164{bottom:293.200000pt;}
.y13f{bottom:293.733333pt;}
.y60{bottom:293.866667pt;}
.y154{bottom:294.133333pt;}
.y16c{bottom:295.066667pt;}
.y10e{bottom:296.266667pt;}
.y14a{bottom:296.666667pt;}
.y178{bottom:298.933333pt;}
.y15f{bottom:300.000000pt;}
.y14d{bottom:300.400000pt;}
.y173{bottom:303.200000pt;}
.y70{bottom:304.000000pt;}
.ye4{bottom:304.933333pt;}
.y167{bottom:307.866667pt;}
.y159{bottom:308.400000pt;}
.y170{bottom:308.533333pt;}
.y163{bottom:310.800000pt;}
.yf5{bottom:310.933333pt;}
.y153{bottom:312.266667pt;}
.y16b{bottom:312.800000pt;}
.y10d{bottom:313.866667pt;}
.y177{bottom:316.666667pt;}
.y15e{bottom:318.133333pt;}
.y37{bottom:320.133333pt;}
.y4{bottom:320.533333pt;}
.y172{bottom:320.933333pt;}
.yc9{bottom:321.066667pt;}
.yb1{bottom:321.200000pt;}
.y119{bottom:322.133333pt;}
.y109{bottom:323.066667pt;}
.ye3{bottom:324.800000pt;}
.y166{bottom:325.600000pt;}
.y16f{bottom:326.133333pt;}
.y158{bottom:326.666667pt;}
.y162{bottom:329.066667pt;}
.y16a{bottom:330.400000pt;}
.y6f{bottom:331.600000pt;}
.yb0{bottom:333.466667pt;}
.y9a{bottom:334.533333pt;}
.y176{bottom:334.800000pt;}
.yf4{bottom:338.533333pt;}
.y165{bottom:343.733333pt;}
.y16e{bottom:344.400000pt;}
.ye2{bottom:344.666667pt;}
.y36{bottom:347.733333pt;}
.yc8{bottom:348.666667pt;}
.y5f{bottom:349.066667pt;}
.y10c{bottom:350.266667pt;}
.y108{bottom:350.666667pt;}
.y171{bottom:356.800000pt;}
.y4b{bottom:361.466667pt;}
.yf3{bottom:366.133333pt;}
.y35{bottom:375.333333pt;}
.yc7{bottom:376.266667pt;}
.y5e{bottom:376.666667pt;}
.y107{bottom:378.266667pt;}
.y8e{bottom:380.533333pt;}
.y6e{bottom:386.800000pt;}
.ye1{bottom:388.400000pt;}
.y4a{bottom:389.066667pt;}
.yf2{bottom:393.733333pt;}
.y34{bottom:402.933333pt;}
.y5d{bottom:404.266667pt;}
.y106{bottom:405.866667pt;}
.y8d{bottom:408.133333pt;}
.y6d{bottom:414.400000pt;}
.y49{bottom:416.666667pt;}
.yc6{bottom:419.066667pt;}
.yf1{bottom:421.333333pt;}
.ybe{bottom:422.800000pt;}
.y33{bottom:430.533333pt;}
.y5c{bottom:431.866667pt;}
.yc5{bottom:433.066667pt;}
.y105{bottom:433.466667pt;}
.y8c{bottom:435.733333pt;}
.y6c{bottom:442.000000pt;}
.y48{bottom:444.266667pt;}
.yc4{bottom:447.066667pt;}
.yf0{bottom:448.933333pt;}
.ybd{bottom:450.400000pt;}
.y32{bottom:458.133333pt;}
.y104{bottom:461.066667pt;}
.y8b{bottom:463.333333pt;}
.y6b{bottom:469.600000pt;}
.ye0{bottom:470.400000pt;}
.y1f{bottom:475.466667pt;}
.yef{bottom:476.533333pt;}
.ybc{bottom:478.000000pt;}
.y55{bottom:479.333333pt;}
.y31{bottom:485.733333pt;}
.y5b{bottom:485.866667pt;}
.y103{bottom:488.666667pt;}
.y47{bottom:489.066667pt;}
.ydf{bottom:490.266667pt;}
.y8a{bottom:490.933333pt;}
.y1e{bottom:495.333333pt;}
.y6a{bottom:497.200000pt;}
.yee{bottom:504.133333pt;}
.ybb{bottom:505.600000pt;}
.y80{bottom:506.000000pt;}
.y54{bottom:506.933333pt;}
.y1d{bottom:515.200000pt;}
.y102{bottom:516.266667pt;}
.y89{bottom:518.533333pt;}
.y69{bottom:524.800000pt;}
.yde{bottom:530.000000pt;}
.y99{bottom:530.266667pt;}
.y30{bottom:531.733333pt;}
.yba{bottom:533.200000pt;}
.y7f{bottom:533.600000pt;}
.y53{bottom:534.533333pt;}
.y1c{bottom:535.066667pt;}
.y101{bottom:543.866667pt;}
.y88{bottom:546.133333pt;}
.y12{bottom:546.400000pt;}
.ydd{bottom:549.866667pt;}
.y68{bottom:552.400000pt;}
.y98{bottom:557.866667pt;}
.y2f{bottom:559.333333pt;}
.yb9{bottom:560.800000pt;}
.y7e{bottom:561.200000pt;}
.y52{bottom:562.133333pt;}
.yaa{bottom:566.133333pt;}
.ydc{bottom:569.733333pt;}
.y100{bottom:571.466667pt;}
.y87{bottom:573.733333pt;}
.y1b{bottom:574.800000pt;}
.y67{bottom:580.000000pt;}
.y97{bottom:585.466667pt;}
.y2e{bottom:586.933333pt;}
.yb8{bottom:588.400000pt;}
.y7d{bottom:588.800000pt;}
.y51{bottom:589.733333pt;}
.ya9{bottom:593.733333pt;}
.y1a{bottom:594.666667pt;}
.yff{bottom:599.066667pt;}
.ydb{bottom:610.133333pt;}
.y96{bottom:613.066667pt;}
.y2d{bottom:614.533333pt;}
.yb7{bottom:616.000000pt;}
.y7c{bottom:616.400000pt;}
.y86{bottom:618.533333pt;}
.ya8{bottom:621.333333pt;}
.y66{bottom:624.800000pt;}
.yfe{bottom:626.666667pt;}
.y85{bottom:630.800000pt;}
.y50{bottom:634.533333pt;}
.y95{bottom:640.666667pt;}
.y2c{bottom:642.133333pt;}
.y84{bottom:643.066667pt;}
.yb6{bottom:643.600000pt;}
.y7b{bottom:644.000000pt;}
.ya7{bottom:648.933333pt;}
.y19{bottom:654.266667pt;}
.y83{bottom:655.333333pt;}
.y11{bottom:661.333333pt;}
.y94{bottom:668.266667pt;}
.y2b{bottom:669.733333pt;}
.yb5{bottom:671.200000pt;}
.y7a{bottom:671.600000pt;}
.ya6{bottom:676.533333pt;}
.yfd{bottom:681.866667pt;}
.yda{bottom:692.133333pt;}
.yaf{bottom:692.666667pt;}
.y93{bottom:695.866667pt;}
.y2a{bottom:697.333333pt;}
.yb4{bottom:698.800000pt;}
.y79{bottom:699.200000pt;}
.y10{bottom:704.133333pt;}
.yae{bottom:704.933333pt;}
.y5a{bottom:709.466667pt;}
.y92{bottom:723.466667pt;}
.y29{bottom:724.933333pt;}
.y78{bottom:726.800000pt;}
.ya5{bottom:731.733333pt;}
.yd9{bottom:731.866667pt;}
.y59{bottom:737.066667pt;}
.y3{bottom:747.600000pt;}
.yf{bottom:748.266667pt;}
.yd8{bottom:751.733333pt;}
.y28{bottom:752.533333pt;}
.y46{bottom:754.000000pt;}
.y77{bottom:754.400000pt;}
.ya4{bottom:759.333333pt;}
.y58{bottom:764.666667pt;}
.y91{bottom:768.266667pt;}
.yd7{bottom:771.600000pt;}
.yed{bottom:780.133333pt;}
.y45{bottom:781.600000pt;}
.yd6{bottom:791.466667pt;}
.y18{bottom:792.266667pt;}
.ye{bottom:792.400000pt;}
.y2{bottom:798.266667pt;}
.y76{bottom:799.200000pt;}
.ya3{bottom:804.133333pt;}
.y27{bottom:807.733333pt;}
.y44{bottom:809.200000pt;}
.yd5{bottom:811.333333pt;}
.ya2{bottom:816.400000pt;}
.y17{bottom:819.866667pt;}
.yd4{bottom:831.200000pt;}
.y26{bottom:835.333333pt;}
.yd{bottom:836.533333pt;}
.y43{bottom:836.800000pt;}
.y16{bottom:847.466667pt;}
.yd3{bottom:851.066667pt;}
.y25{bottom:862.933333pt;}
.y42{bottom:864.400000pt;}
.yd2{bottom:870.933333pt;}
.y15{bottom:875.066667pt;}
.yc{bottom:880.666667pt;}
.y24{bottom:890.533333pt;}
.yd1{bottom:890.800000pt;}
.y41{bottom:892.000000pt;}
.y4f{bottom:902.666667pt;}
.yd0{bottom:910.666667pt;}
.y23{bottom:918.133333pt;}
.y40{bottom:919.600000pt;}
.yb{bottom:924.800000pt;}
.y14{bottom:930.266667pt;}
.y22{bottom:945.733333pt;}
.y3f{bottom:947.200000pt;}
.ycf{bottom:950.933333pt;}
.y13{bottom:957.866667pt;}
.y21{bottom:973.333333pt;}
.y3e{bottom:974.800000pt;}
.y4e{bottom:985.466667pt;}
.y10a{bottom:1010.533333pt;}
.ya{bottom:1013.066667pt;}
.ha{height:29.208333pt;}
.h8{height:37.437500pt;}
.h7{height:42.117188pt;}
.hc{height:43.593750pt;}
.h6{height:43.812500pt;}
.h9{height:44.437500pt;}
.he{height:46.796875pt;}
.hd{height:51.114583pt;}
.h4{height:51.476562pt;}
.hb{height:51.843750pt;}
.h5{height:56.156250pt;}
.h3{height:65.515625pt;}
.h2{height:81.468750pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:113.600000pt;}
.x17{left:117.200000pt;}
.xd{left:127.333333pt;}
.x15{left:136.400000pt;}
.x19{left:137.333333pt;}
.xf{left:139.333333pt;}
.x14{left:151.066667pt;}
.xb{left:154.933333pt;}
.x9{left:160.800000pt;}
.x10{left:161.866667pt;}
.x11{left:165.333333pt;}
.xc{left:167.333333pt;}
.xe{left:189.333333pt;}
.x1b{left:223.866667pt;}
.x12{left:312.266667pt;}
.x1{left:319.466667pt;}
.x3{left:324.933333pt;}
.x2{left:332.933333pt;}
.x7{left:334.666667pt;}
.x4{left:336.933333pt;}
.x6{left:339.866667pt;}
.x5{left:353.200000pt;}
.x16{left:396.266667pt;}
.x1a{left:400.666667pt;}
.x13{left:466.266667pt;}
.x18{left:668.533333pt;}
.xa{left:674.533333pt;}
}




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