
    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_2a61230572c65d887fb7e19e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056152;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_2af9d9fe761c1e09f3458139.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056152;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_ae0ba38bbdce60bd1c841eaa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_76a42ff20c07ebed0bafbbe0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_becbe0624d203bb934a333c7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5f2eceadd3098823cd24823b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.120605;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_661db4715b64b0f1c506b84a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e6217ace0cf7d5562ad5d3d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls7{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.720000px;}
.ls3{letter-spacing:22.296000px;}
.ls6{letter-spacing:87.984000px;}
.lsc{letter-spacing:91.386720px;}
.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;}
}
.ws8{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.064000px;}
.ws1{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.580000px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._15{margin-left:-5.400000px;}
._7{margin-left:-3.672000px;}
._f{margin-left:-2.664000px;}
._0{margin-left:-1.126080px;}
._1{width:1.183680px;}
._2{width:2.724240px;}
._6{width:4.608000px;}
._8{width:5.984640px;}
._12{width:7.562880px;}
._9{width:8.640000px;}
._a{width:9.792000px;}
._b{width:11.088000px;}
._c{width:12.240000px;}
._3{width:13.616400px;}
._11{width:15.624000px;}
._e{width:16.966080px;}
._19{width:19.440000px;}
._d{width:20.710080px;}
._5{width:22.032000px;}
._4{width:23.544000px;}
._13{width:25.096320px;}
._1b{width:26.599680px;}
._1c{width:28.065600px;}
._18{width:29.232000px;}
._17{width:30.312000px;}
._20{width:31.726080px;}
._14{width:34.272000px;}
._10{width:35.856000px;}
._16{width:37.512000px;}
._1a{width:39.124320px;}
._39{width:40.752000px;}
._2e{width:42.336000px;}
._27{width:43.848000px;}
._43{width:45.144000px;}
._1e{width:46.944000px;}
._33{width:51.984000px;}
._34{width:53.532000px;}
._29{width:58.968000px;}
._28{width:60.048000px;}
._22{width:70.272000px;}
._3a{width:73.512000px;}
._3f{width:77.328000px;}
._3b{width:81.720000px;}
._35{width:85.320000px;}
._2a{width:90.288000px;}
._3c{width:92.736000px;}
._3d{width:94.294080px;}
._2c{width:104.040000px;}
._23{width:109.368000px;}
._37{width:110.952000px;}
._3e{width:123.912000px;}
._38{width:133.776000px;}
._36{width:145.080000px;}
._26{width:146.232000px;}
._31{width:149.688000px;}
._1f{width:152.280000px;}
._2b{width:160.488000px;}
._42{width:168.912000px;}
._30{width:193.248000px;}
._2d{width:200.736000px;}
._2f{width:209.592000px;}
._32{width:213.912000px;}
._1d{width:217.414080px;}
._21{width:224.640000px;}
._40{width:233.352000px;}
._25{width:236.088000px;}
._41{width:237.384000px;}
._24{width:304.416000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.240000px;}
.yd3{bottom:3.960000px;}
.yf8{bottom:10.260000px;}
.y8{bottom:10.620000px;}
.yde{bottom:12.240000px;}
.yd5{bottom:12.420000px;}
.ya{bottom:20.520000px;}
.yd2{bottom:24.660000px;}
.y7{bottom:30.600000px;}
.yf4{bottom:30.960000px;}
.ydd{bottom:32.940000px;}
.yce{bottom:33.120000px;}
.y9{bottom:34.560000px;}
.yd1{bottom:45.360000px;}
.yf3{bottom:51.660000px;}
.yfc{bottom:51.690000px;}
.ydc{bottom:53.640000px;}
.y6{bottom:53.820000px;}
.yda{bottom:53.850000px;}
.ye{bottom:57.600000px;}
.yd0{bottom:66.060000px;}
.y5{bottom:72.720000px;}
.yd{bottom:77.760000px;}
.yf1{bottom:81.900000px;}
.y95{bottom:88.380000px;}
.y111{bottom:89.820000px;}
.y69{bottom:90.360000px;}
.ycb{bottom:91.080000px;}
.y4{bottom:91.830000px;}
.yba{bottom:97.020000px;}
.y122{bottom:110.700000px;}
.y3{bottom:110.730000px;}
.y110{bottom:112.140000px;}
.y68{bottom:112.680000px;}
.yf0{bottom:113.400000px;}
.yca{bottom:121.680000px;}
.y94{bottom:122.760000px;}
.y2{bottom:129.810000px;}
.yb9{bottom:131.400000px;}
.y3b{bottom:131.760000px;}
.y121{bottom:133.020000px;}
.y10f{bottom:134.460000px;}
.y67{bottom:135.036000px;}
.yef{bottom:135.936000px;}
.y3a{bottom:149.076000px;}
.yc9{bottom:152.310000px;}
.y120{bottom:155.370000px;}
.y10e{bottom:156.810000px;}
.y93{bottom:156.990000px;}
.y66{bottom:157.350000px;}
.yee{bottom:158.250000px;}
.yb8{bottom:165.630000px;}
.y39{bottom:166.350000px;}
.y11f{bottom:177.690000px;}
.y10d{bottom:179.130000px;}
.y65{bottom:179.670000px;}
.yed{bottom:180.570000px;}
.yc8{bottom:182.910000px;}
.y38{bottom:183.450000px;}
.y92{bottom:191.370000px;}
.yb7{bottom:200.010000px;}
.y37{bottom:200.730000px;}
.y10c{bottom:201.630000px;}
.y64{bottom:201.990000px;}
.yec{bottom:202.890000px;}
.yc7{bottom:213.510000px;}
.y91{bottom:213.690000px;}
.y36{bottom:218.010000px;}
.y11e{bottom:222.330000px;}
.y10b{bottom:223.950000px;}
.y63{bottom:224.310000px;}
.yeb{bottom:225.210000px;}
.yb6{bottom:234.390000px;}
.y35{bottom:235.290000px;}
.y90{bottom:236.010000px;}
.yc6{bottom:244.110000px;}
.y11d{bottom:244.650000px;}
.y10a{bottom:246.270000px;}
.yea{bottom:247.530000px;}
.y34{bottom:252.570000px;}
.y143{bottom:255.810000px;}
.yb5{bottom:256.710000px;}
.y8f{bottom:258.330000px;}
.y62{bottom:258.690000px;}
.y109{bottom:268.590000px;}
.ye9{bottom:269.850000px;}
.y33{bottom:270.570000px;}
.yc5{bottom:274.710000px;}
.yb4{bottom:279.030000px;}
.y8e{bottom:280.650000px;}
.y142{bottom:287.850000px;}
.y108{bottom:290.910000px;}
.y32{bottom:291.270000px;}
.y61{bottom:293.070000px;}
.yb3{bottom:301.350000px;}
.y8d{bottom:303.150000px;}
.ye8{bottom:304.230000px;}
.yc4{bottom:305.310000px;}
.y31{bottom:311.970000px;}
.y141{bottom:318.450000px;}
.yb2{bottom:323.670000px;}
.y107{bottom:325.290000px;}
.y8c{bottom:325.470000px;}
.ye7{bottom:326.550000px;}
.y30{bottom:332.670000px;}
.y60{bottom:334.830000px;}
.yc3{bottom:335.910000px;}
.yb1{bottom:345.990000px;}
.y106{bottom:347.610000px;}
.y8b{bottom:347.790000px;}
.ye6{bottom:348.870000px;}
.y140{bottom:349.050000px;}
.y2f{bottom:353.370000px;}
.y5f{bottom:355.530000px;}
.yc2{bottom:366.510000px;}
.yb0{bottom:368.490000px;}
.y105{bottom:369.930000px;}
.y8a{bottom:370.110000px;}
.ye5{bottom:371.190000px;}
.y2e{bottom:374.070000px;}
.y5e{bottom:376.230000px;}
.y13f{bottom:379.830000px;}
.yaf{bottom:390.855000px;}
.y104{bottom:392.295000px;}
.y89{bottom:392.475000px;}
.ye4{bottom:393.555000px;}
.y2d{bottom:394.815000px;}
.y5d{bottom:396.975000px;}
.yc1{bottom:397.155000px;}
.y13e{bottom:398.415000px;}
.y11c{bottom:413.175000px;}
.y103{bottom:414.615000px;}
.y88{bottom:414.795000px;}
.y2c{bottom:415.515000px;}
.ye3{bottom:415.875000px;}
.y5c{bottom:417.675000px;}
.yae{bottom:425.055000px;}
.yc0{bottom:427.755000px;}
.y13d{bottom:429.015000px;}
.y11b{bottom:435.495000px;}
.y2b{bottom:436.215000px;}
.y102{bottom:436.935000px;}
.y87{bottom:437.115000px;}
.ye2{bottom:438.195000px;}
.y5b{bottom:438.375000px;}
.yad{bottom:447.555000px;}
.y2a{bottom:456.915000px;}
.y11a{bottom:457.815000px;}
.y5a{bottom:459.075000px;}
.y101{bottom:459.255000px;}
.y86{bottom:459.435000px;}
.ye1{bottom:460.695000px;}
.yac{bottom:469.875000px;}
.y29{bottom:477.615000px;}
.y13c{bottom:478.335000px;}
.y59{bottom:479.775000px;}
.y100{bottom:481.575000px;}
.y85{bottom:481.755000px;}
.ye0{bottom:483.015000px;}
.yab{bottom:492.195000px;}
.y13b{bottom:496.875000px;}
.y28{bottom:498.315000px;}
.ybf{bottom:504.075000px;}
.yaa{bottom:514.515000px;}
.yff{bottom:515.955000px;}
.y84{bottom:516.135000px;}
.ydf{bottom:517.215000px;}
.y27{bottom:519.015000px;}
.y58{bottom:521.355000px;}
.ybe{bottom:526.395000px;}
.y13a{bottom:527.475000px;}
.ydb{bottom:534.855000px;}
.ya9{bottom:536.835000px;}
.y83{bottom:538.455000px;}
.y26{bottom:539.535000px;}
.y57{bottom:542.055000px;}
.ybd{bottom:548.895000px;}
.yfe{bottom:550.335000px;}
.y139{bottom:558.075000px;}
.ya8{bottom:559.155000px;}
.y25{bottom:560.235000px;}
.y82{bottom:560.775000px;}
.y56{bottom:562.755000px;}
.ybc{bottom:571.215000px;}
.y24{bottom:580.935000px;}
.ya7{bottom:581.475000px;}
.y81{bottom:583.095000px;}
.y55{bottom:583.455000px;}
.yfd{bottom:584.715000px;}
.y138{bottom:588.675000px;}
.ybb{bottom:593.535000px;}
.y23{bottom:601.635000px;}
.yfb{bottom:602.175000px;}
.y119{bottom:603.795000px;}
.y54{bottom:604.155000px;}
.y80{bottom:605.415000px;}
.yd9{bottom:605.955000px;}
.y137{bottom:607.395000px;}
.ya6{bottom:615.855000px;}
.y22{bottom:622.335000px;}
.y53{bottom:624.855000px;}
.y118{bottom:626.115000px;}
.y7f{bottom:627.915000px;}
.y136{bottom:637.995000px;}
.ya5{bottom:638.175000px;}
.y21{bottom:643.065000px;}
.y52{bottom:645.585000px;}
.y117{bottom:648.465000px;}
.y7e{bottom:650.265000px;}
.y135{bottom:656.565000px;}
.ya4{bottom:660.525000px;}
.y20{bottom:663.765000px;}
.y116{bottom:670.785000px;}
.yfa{bottom:671.325000px;}
.y7d{bottom:672.585000px;}
.yd8{bottom:677.265000px;}
.ya3{bottom:682.845000px;}
.y1f{bottom:684.465000px;}
.y134{bottom:687.165000px;}
.y51{bottom:687.345000px;}
.y7c{bottom:694.905000px;}
.y1e{bottom:704.445000px;}
.ya2{bottom:705.165000px;}
.y133{bottom:705.885000px;}
.y50{bottom:708.045000px;}
.y7b{bottom:717.225000px;}
.y1d{bottom:721.725000px;}
.ya1{bottom:727.485000px;}
.y4f{bottom:728.745000px;}
.y132{bottom:736.485000px;}
.y1c{bottom:739.005000px;}
.y7a{bottom:739.545000px;}
.yd7{bottom:748.545000px;}
.y4e{bottom:749.445000px;}
.yf9{bottom:754.845000px;}
.y131{bottom:755.025000px;}
.y1b{bottom:756.285000px;}
.y79{bottom:761.865000px;}
.y4d{bottom:770.145000px;}
.y1a{bottom:773.565000px;}
.y115{bottom:773.925000px;}
.ya0{bottom:784.185000px;}
.y130{bottom:785.625000px;}
.y19{bottom:790.845000px;}
.y78{bottom:796.245000px;}
.y12f{bottom:804.345000px;}
.y9f{bottom:806.505000px;}
.y18{bottom:807.945000px;}
.y4c{bottom:811.545000px;}
.y77{bottom:818.565000px;}
.yd6{bottom:819.825000px;}
.yf7{bottom:823.965000px;}
.y17{bottom:825.225000px;}
.y9e{bottom:828.825000px;}
.y4b{bottom:832.245000px;}
.y12e{bottom:834.945000px;}
.y76{bottom:840.885000px;}
.y16{bottom:847.725000px;}
.y9d{bottom:851.145000px;}
.y4a{bottom:852.945000px;}
.y75{bottom:863.205000px;}
.y15{bottom:865.005000px;}
.y12d{bottom:865.545000px;}
.y49{bottom:873.645000px;}
.y14{bottom:877.065000px;}
.y12c{bottom:884.085000px;}
.y74{bottom:885.525000px;}
.yf6{bottom:893.130000px;}
.y9c{bottom:896.010000px;}
.y13{bottom:899.430000px;}
.yd4{bottom:903.390000px;}
.y73{bottom:907.890000px;}
.y12b{bottom:914.730000px;}
.y48{bottom:915.270000px;}
.y9b{bottom:918.330000px;}
.y12{bottom:925.890000px;}
.y72{bottom:930.210000px;}
.y12a{bottom:933.450000px;}
.y47{bottom:935.970000px;}
.y9a{bottom:940.650000px;}
.y71{bottom:952.530000px;}
.y46{bottom:956.670000px;}
.y11{bottom:962.070000px;}
.y129{bottom:964.050000px;}
.ycf{bottom:974.670000px;}
.y70{bottom:975.030000px;}
.yf5{bottom:976.830000px;}
.y45{bottom:977.370000px;}
.y128{bottom:982.590000px;}
.y114{bottom:986.910000px;}
.y10{bottom:991.950000px;}
.y6f{bottom:997.350000px;}
.y44{bottom:998.070000px;}
.y113{bottom:1009.230000px;}
.y127{bottom:1013.190000px;}
.y43{bottom:1018.770000px;}
.y6e{bottom:1019.670000px;}
.yf{bottom:1021.650000px;}
.y112{bottom:1031.550000px;}
.y126{bottom:1031.910000px;}
.y42{bottom:1039.470000px;}
.y99{bottom:1041.990000px;}
.yc{bottom:1048.470000px;}
.y6d{bottom:1054.050000px;}
.ycd{bottom:1058.190000px;}
.y41{bottom:1060.170000px;}
.yf2{bottom:1060.350000px;}
.y125{bottom:1062.510000px;}
.y98{bottom:1064.310000px;}
.y1{bottom:1064.850000px;}
.y6c{bottom:1076.370000px;}
.y40{bottom:1080.870000px;}
.y124{bottom:1081.050000px;}
.y97{bottom:1086.630000px;}
.y6b{bottom:1098.690000px;}
.y3f{bottom:1101.570000px;}
.y96{bottom:1108.950000px;}
.y123{bottom:1111.650000px;}
.y6a{bottom:1121.010000px;}
.y3e{bottom:1143.330000px;}
.ycc{bottom:1146.060000px;}
.y3d{bottom:1176.480000px;}
.y3c{bottom:1197.360000px;}
.ha{height:32.672109px;}
.hb{height:50.218242px;}
.hd{height:50.800781px;}
.h5{height:52.435898px;}
.h3{height:55.663594px;}
.h6{height:58.121719px;}
.h4{height:60.835430px;}
.hc{height:63.175781px;}
.h7{height:65.884219px;}
.h8{height:67.565039px;}
.h13{height:68.400000px;}
.h14{height:68.436000px;}
.h9{height:69.687773px;}
.h12{height:70.380000px;}
.he{height:70.560000px;}
.h11{height:70.596000px;}
.hf{height:82.800000px;}
.h10{height:82.836000px;}
.h2{height:145.116000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wb{width:186.690000px;}
.w8{width:188.130000px;}
.wc{width:189.390000px;}
.wa{width:192.270000px;}
.w9{width:193.350000px;}
.w6{width:197.490000px;}
.w7{width:197.670000px;}
.w2{width:223.275000px;}
.w4{width:257.610000px;}
.w3{width:284.610000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x5{left:10.620000px;}
.x8{left:16.560000px;}
.x9{left:22.500000px;}
.xc{left:62.280000px;}
.x1{left:63.900000px;}
.xb{left:65.700000px;}
.x1b{left:67.319987px;}
.x1a{left:68.399987px;}
.x19{left:74.339987px;}
.x18{left:80.459987px;}
.x1c{left:83.519987px;}
.x6{left:91.440000px;}
.x10{left:97.955987px;}
.xd{left:105.525000px;}
.x13{left:113.615987px;}
.x20{left:121.715987px;}
.x11{left:159.149987px;}
.xa{left:174.465000px;}
.x4{left:209.730000px;}
.x17{left:226.109987px;}
.x21{left:258.690000px;}
.x16{left:260.489987px;}
.x1d{left:262.830000px;}
.x3{left:287.175000px;}
.x14{left:327.674987px;}
.x12{left:351.614987px;}
.x15{left:362.414987px;}
.xe{left:442.514987px;}
.xf{left:446.654987px;}
.x22{left:451.875000px;}
.x1e{left:461.235000px;}
.x7{left:571.785000px;}
.x23{left:639.285000px;}
.x1f{left:650.265000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls7{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.640000pt;}
.ls3{letter-spacing:19.818667pt;}
.ls6{letter-spacing:78.208000pt;}
.lsc{letter-spacing:81.232640pt;}
.ws8{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.168000pt;}
.ws1{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._15{margin-left:-4.800000pt;}
._7{margin-left:-3.264000pt;}
._f{margin-left:-2.368000pt;}
._0{margin-left:-1.000960pt;}
._1{width:1.052160pt;}
._2{width:2.421547pt;}
._6{width:4.096000pt;}
._8{width:5.319680pt;}
._12{width:6.722560pt;}
._9{width:7.680000pt;}
._a{width:8.704000pt;}
._b{width:9.856000pt;}
._c{width:10.880000pt;}
._3{width:12.103467pt;}
._11{width:13.888000pt;}
._e{width:15.080960pt;}
._19{width:17.280000pt;}
._d{width:18.408960pt;}
._5{width:19.584000pt;}
._4{width:20.928000pt;}
._13{width:22.307840pt;}
._1b{width:23.644160pt;}
._1c{width:24.947200pt;}
._18{width:25.984000pt;}
._17{width:26.944000pt;}
._20{width:28.200960pt;}
._14{width:30.464000pt;}
._10{width:31.872000pt;}
._16{width:33.344000pt;}
._1a{width:34.777173pt;}
._39{width:36.224000pt;}
._2e{width:37.632000pt;}
._27{width:38.976000pt;}
._43{width:40.128000pt;}
._1e{width:41.728000pt;}
._33{width:46.208000pt;}
._34{width:47.584000pt;}
._29{width:52.416000pt;}
._28{width:53.376000pt;}
._22{width:62.464000pt;}
._3a{width:65.344000pt;}
._3f{width:68.736000pt;}
._3b{width:72.640000pt;}
._35{width:75.840000pt;}
._2a{width:80.256000pt;}
._3c{width:82.432000pt;}
._3d{width:83.816960pt;}
._2c{width:92.480000pt;}
._23{width:97.216000pt;}
._37{width:98.624000pt;}
._3e{width:110.144000pt;}
._38{width:118.912000pt;}
._36{width:128.960000pt;}
._26{width:129.984000pt;}
._31{width:133.056000pt;}
._1f{width:135.360000pt;}
._2b{width:142.656000pt;}
._42{width:150.144000pt;}
._30{width:171.776000pt;}
._2d{width:178.432000pt;}
._2f{width:186.304000pt;}
._32{width:190.144000pt;}
._1d{width:193.256960pt;}
._21{width:199.680000pt;}
._40{width:207.424000pt;}
._25{width:209.856000pt;}
._41{width:211.008000pt;}
._24{width:270.592000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.880000pt;}
.yd3{bottom:3.520000pt;}
.yf8{bottom:9.120000pt;}
.y8{bottom:9.440000pt;}
.yde{bottom:10.880000pt;}
.yd5{bottom:11.040000pt;}
.ya{bottom:18.240000pt;}
.yd2{bottom:21.920000pt;}
.y7{bottom:27.200000pt;}
.yf4{bottom:27.520000pt;}
.ydd{bottom:29.280000pt;}
.yce{bottom:29.440000pt;}
.y9{bottom:30.720000pt;}
.yd1{bottom:40.320000pt;}
.yf3{bottom:45.920000pt;}
.yfc{bottom:45.946667pt;}
.ydc{bottom:47.680000pt;}
.y6{bottom:47.840000pt;}
.yda{bottom:47.866667pt;}
.ye{bottom:51.200000pt;}
.yd0{bottom:58.720000pt;}
.y5{bottom:64.640000pt;}
.yd{bottom:69.120000pt;}
.yf1{bottom:72.800000pt;}
.y95{bottom:78.560000pt;}
.y111{bottom:79.840000pt;}
.y69{bottom:80.320000pt;}
.ycb{bottom:80.960000pt;}
.y4{bottom:81.626667pt;}
.yba{bottom:86.240000pt;}
.y122{bottom:98.400000pt;}
.y3{bottom:98.426667pt;}
.y110{bottom:99.680000pt;}
.y68{bottom:100.160000pt;}
.yf0{bottom:100.800000pt;}
.yca{bottom:108.160000pt;}
.y94{bottom:109.120000pt;}
.y2{bottom:115.386667pt;}
.yb9{bottom:116.800000pt;}
.y3b{bottom:117.120000pt;}
.y121{bottom:118.240000pt;}
.y10f{bottom:119.520000pt;}
.y67{bottom:120.032000pt;}
.yef{bottom:120.832000pt;}
.y3a{bottom:132.512000pt;}
.yc9{bottom:135.386667pt;}
.y120{bottom:138.106667pt;}
.y10e{bottom:139.386667pt;}
.y93{bottom:139.546667pt;}
.y66{bottom:139.866667pt;}
.yee{bottom:140.666667pt;}
.yb8{bottom:147.226667pt;}
.y39{bottom:147.866667pt;}
.y11f{bottom:157.946667pt;}
.y10d{bottom:159.226667pt;}
.y65{bottom:159.706667pt;}
.yed{bottom:160.506667pt;}
.yc8{bottom:162.586667pt;}
.y38{bottom:163.066667pt;}
.y92{bottom:170.106667pt;}
.yb7{bottom:177.786667pt;}
.y37{bottom:178.426667pt;}
.y10c{bottom:179.226667pt;}
.y64{bottom:179.546667pt;}
.yec{bottom:180.346667pt;}
.yc7{bottom:189.786667pt;}
.y91{bottom:189.946667pt;}
.y36{bottom:193.786667pt;}
.y11e{bottom:197.626667pt;}
.y10b{bottom:199.066667pt;}
.y63{bottom:199.386667pt;}
.yeb{bottom:200.186667pt;}
.yb6{bottom:208.346667pt;}
.y35{bottom:209.146667pt;}
.y90{bottom:209.786667pt;}
.yc6{bottom:216.986667pt;}
.y11d{bottom:217.466667pt;}
.y10a{bottom:218.906667pt;}
.yea{bottom:220.026667pt;}
.y34{bottom:224.506667pt;}
.y143{bottom:227.386667pt;}
.yb5{bottom:228.186667pt;}
.y8f{bottom:229.626667pt;}
.y62{bottom:229.946667pt;}
.y109{bottom:238.746667pt;}
.ye9{bottom:239.866667pt;}
.y33{bottom:240.506667pt;}
.yc5{bottom:244.186667pt;}
.yb4{bottom:248.026667pt;}
.y8e{bottom:249.466667pt;}
.y142{bottom:255.866667pt;}
.y108{bottom:258.586667pt;}
.y32{bottom:258.906667pt;}
.y61{bottom:260.506667pt;}
.yb3{bottom:267.866667pt;}
.y8d{bottom:269.466667pt;}
.ye8{bottom:270.426667pt;}
.yc4{bottom:271.386667pt;}
.y31{bottom:277.306667pt;}
.y141{bottom:283.066667pt;}
.yb2{bottom:287.706667pt;}
.y107{bottom:289.146667pt;}
.y8c{bottom:289.306667pt;}
.ye7{bottom:290.266667pt;}
.y30{bottom:295.706667pt;}
.y60{bottom:297.626667pt;}
.yc3{bottom:298.586667pt;}
.yb1{bottom:307.546667pt;}
.y106{bottom:308.986667pt;}
.y8b{bottom:309.146667pt;}
.ye6{bottom:310.106667pt;}
.y140{bottom:310.266667pt;}
.y2f{bottom:314.106667pt;}
.y5f{bottom:316.026667pt;}
.yc2{bottom:325.786667pt;}
.yb0{bottom:327.546667pt;}
.y105{bottom:328.826667pt;}
.y8a{bottom:328.986667pt;}
.ye5{bottom:329.946667pt;}
.y2e{bottom:332.506667pt;}
.y5e{bottom:334.426667pt;}
.y13f{bottom:337.626667pt;}
.yaf{bottom:347.426667pt;}
.y104{bottom:348.706667pt;}
.y89{bottom:348.866667pt;}
.ye4{bottom:349.826667pt;}
.y2d{bottom:350.946667pt;}
.y5d{bottom:352.866667pt;}
.yc1{bottom:353.026667pt;}
.y13e{bottom:354.146667pt;}
.y11c{bottom:367.266667pt;}
.y103{bottom:368.546667pt;}
.y88{bottom:368.706667pt;}
.y2c{bottom:369.346667pt;}
.ye3{bottom:369.666667pt;}
.y5c{bottom:371.266667pt;}
.yae{bottom:377.826667pt;}
.yc0{bottom:380.226667pt;}
.y13d{bottom:381.346667pt;}
.y11b{bottom:387.106667pt;}
.y2b{bottom:387.746667pt;}
.y102{bottom:388.386667pt;}
.y87{bottom:388.546667pt;}
.ye2{bottom:389.506667pt;}
.y5b{bottom:389.666667pt;}
.yad{bottom:397.826667pt;}
.y2a{bottom:406.146667pt;}
.y11a{bottom:406.946667pt;}
.y5a{bottom:408.066667pt;}
.y101{bottom:408.226667pt;}
.y86{bottom:408.386667pt;}
.ye1{bottom:409.506667pt;}
.yac{bottom:417.666667pt;}
.y29{bottom:424.546667pt;}
.y13c{bottom:425.186667pt;}
.y59{bottom:426.466667pt;}
.y100{bottom:428.066667pt;}
.y85{bottom:428.226667pt;}
.ye0{bottom:429.346667pt;}
.yab{bottom:437.506667pt;}
.y13b{bottom:441.666667pt;}
.y28{bottom:442.946667pt;}
.ybf{bottom:448.066667pt;}
.yaa{bottom:457.346667pt;}
.yff{bottom:458.626667pt;}
.y84{bottom:458.786667pt;}
.ydf{bottom:459.746667pt;}
.y27{bottom:461.346667pt;}
.y58{bottom:463.426667pt;}
.ybe{bottom:467.906667pt;}
.y13a{bottom:468.866667pt;}
.ydb{bottom:475.426667pt;}
.ya9{bottom:477.186667pt;}
.y83{bottom:478.626667pt;}
.y26{bottom:479.586667pt;}
.y57{bottom:481.826667pt;}
.ybd{bottom:487.906667pt;}
.yfe{bottom:489.186667pt;}
.y139{bottom:496.066667pt;}
.ya8{bottom:497.026667pt;}
.y25{bottom:497.986667pt;}
.y82{bottom:498.466667pt;}
.y56{bottom:500.226667pt;}
.ybc{bottom:507.746667pt;}
.y24{bottom:516.386667pt;}
.ya7{bottom:516.866667pt;}
.y81{bottom:518.306667pt;}
.y55{bottom:518.626667pt;}
.yfd{bottom:519.746667pt;}
.y138{bottom:523.266667pt;}
.ybb{bottom:527.586667pt;}
.y23{bottom:534.786667pt;}
.yfb{bottom:535.266667pt;}
.y119{bottom:536.706667pt;}
.y54{bottom:537.026667pt;}
.y80{bottom:538.146667pt;}
.yd9{bottom:538.626667pt;}
.y137{bottom:539.906667pt;}
.ya6{bottom:547.426667pt;}
.y22{bottom:553.186667pt;}
.y53{bottom:555.426667pt;}
.y118{bottom:556.546667pt;}
.y7f{bottom:558.146667pt;}
.y136{bottom:567.106667pt;}
.ya5{bottom:567.266667pt;}
.y21{bottom:571.613333pt;}
.y52{bottom:573.853333pt;}
.y117{bottom:576.413333pt;}
.y7e{bottom:578.013333pt;}
.y135{bottom:583.613333pt;}
.ya4{bottom:587.133333pt;}
.y20{bottom:590.013333pt;}
.y116{bottom:596.253333pt;}
.yfa{bottom:596.733333pt;}
.y7d{bottom:597.853333pt;}
.yd8{bottom:602.013333pt;}
.ya3{bottom:606.973333pt;}
.y1f{bottom:608.413333pt;}
.y134{bottom:610.813333pt;}
.y51{bottom:610.973333pt;}
.y7c{bottom:617.693333pt;}
.y1e{bottom:626.173333pt;}
.ya2{bottom:626.813333pt;}
.y133{bottom:627.453333pt;}
.y50{bottom:629.373333pt;}
.y7b{bottom:637.533333pt;}
.y1d{bottom:641.533333pt;}
.ya1{bottom:646.653333pt;}
.y4f{bottom:647.773333pt;}
.y132{bottom:654.653333pt;}
.y1c{bottom:656.893333pt;}
.y7a{bottom:657.373333pt;}
.yd7{bottom:665.373333pt;}
.y4e{bottom:666.173333pt;}
.yf9{bottom:670.973333pt;}
.y131{bottom:671.133333pt;}
.y1b{bottom:672.253333pt;}
.y79{bottom:677.213333pt;}
.y4d{bottom:684.573333pt;}
.y1a{bottom:687.613333pt;}
.y115{bottom:687.933333pt;}
.ya0{bottom:697.053333pt;}
.y130{bottom:698.333333pt;}
.y19{bottom:702.973333pt;}
.y78{bottom:707.773333pt;}
.y12f{bottom:714.973333pt;}
.y9f{bottom:716.893333pt;}
.y18{bottom:718.173333pt;}
.y4c{bottom:721.373333pt;}
.y77{bottom:727.613333pt;}
.yd6{bottom:728.733333pt;}
.yf7{bottom:732.413333pt;}
.y17{bottom:733.533333pt;}
.y9e{bottom:736.733333pt;}
.y4b{bottom:739.773333pt;}
.y12e{bottom:742.173333pt;}
.y76{bottom:747.453333pt;}
.y16{bottom:753.533333pt;}
.y9d{bottom:756.573333pt;}
.y4a{bottom:758.173333pt;}
.y75{bottom:767.293333pt;}
.y15{bottom:768.893333pt;}
.y12d{bottom:769.373333pt;}
.y49{bottom:776.573333pt;}
.y14{bottom:779.613333pt;}
.y12c{bottom:785.853333pt;}
.y74{bottom:787.133333pt;}
.yf6{bottom:793.893333pt;}
.y9c{bottom:796.453333pt;}
.y13{bottom:799.493333pt;}
.yd4{bottom:803.013333pt;}
.y73{bottom:807.013333pt;}
.y12b{bottom:813.093333pt;}
.y48{bottom:813.573333pt;}
.y9b{bottom:816.293333pt;}
.y12{bottom:823.013333pt;}
.y72{bottom:826.853333pt;}
.y12a{bottom:829.733333pt;}
.y47{bottom:831.973333pt;}
.y9a{bottom:836.133333pt;}
.y71{bottom:846.693333pt;}
.y46{bottom:850.373333pt;}
.y11{bottom:855.173333pt;}
.y129{bottom:856.933333pt;}
.ycf{bottom:866.373333pt;}
.y70{bottom:866.693333pt;}
.yf5{bottom:868.293333pt;}
.y45{bottom:868.773333pt;}
.y128{bottom:873.413333pt;}
.y114{bottom:877.253333pt;}
.y10{bottom:881.733333pt;}
.y6f{bottom:886.533333pt;}
.y44{bottom:887.173333pt;}
.y113{bottom:897.093333pt;}
.y127{bottom:900.613333pt;}
.y43{bottom:905.573333pt;}
.y6e{bottom:906.373333pt;}
.yf{bottom:908.133333pt;}
.y112{bottom:916.933333pt;}
.y126{bottom:917.253333pt;}
.y42{bottom:923.973333pt;}
.y99{bottom:926.213333pt;}
.yc{bottom:931.973333pt;}
.y6d{bottom:936.933333pt;}
.ycd{bottom:940.613333pt;}
.y41{bottom:942.373333pt;}
.yf2{bottom:942.533333pt;}
.y125{bottom:944.453333pt;}
.y98{bottom:946.053333pt;}
.y1{bottom:946.533333pt;}
.y6c{bottom:956.773333pt;}
.y40{bottom:960.773333pt;}
.y124{bottom:960.933333pt;}
.y97{bottom:965.893333pt;}
.y6b{bottom:976.613333pt;}
.y3f{bottom:979.173333pt;}
.y96{bottom:985.733333pt;}
.y123{bottom:988.133333pt;}
.y6a{bottom:996.453333pt;}
.y3e{bottom:1016.293333pt;}
.ycc{bottom:1018.720000pt;}
.y3d{bottom:1045.760000pt;}
.y3c{bottom:1064.320000pt;}
.ha{height:29.041875pt;}
.hb{height:44.638438pt;}
.hd{height:45.156250pt;}
.h5{height:46.609688pt;}
.h3{height:49.478750pt;}
.h6{height:51.663750pt;}
.h4{height:54.075937pt;}
.hc{height:56.156250pt;}
.h7{height:58.563750pt;}
.h8{height:60.057813pt;}
.h13{height:60.800000pt;}
.h14{height:60.832000pt;}
.h9{height:61.944687pt;}
.h12{height:62.560000pt;}
.he{height:62.720000pt;}
.h11{height:62.752000pt;}
.hf{height:73.600000pt;}
.h10{height:73.632000pt;}
.h2{height:128.992000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wb{width:165.946667pt;}
.w8{width:167.226667pt;}
.wc{width:168.346667pt;}
.wa{width:170.906667pt;}
.w9{width:171.866667pt;}
.w6{width:175.546667pt;}
.w7{width:175.706667pt;}
.w2{width:198.466667pt;}
.w4{width:228.986667pt;}
.w3{width:252.986667pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x5{left:9.440000pt;}
.x8{left:14.720000pt;}
.x9{left:20.000000pt;}
.xc{left:55.360000pt;}
.x1{left:56.800000pt;}
.xb{left:58.400000pt;}
.x1b{left:59.839988pt;}
.x1a{left:60.799988pt;}
.x19{left:66.079988pt;}
.x18{left:71.519988pt;}
.x1c{left:74.239988pt;}
.x6{left:81.280000pt;}
.x10{left:87.071988pt;}
.xd{left:93.800000pt;}
.x13{left:100.991988pt;}
.x20{left:108.191988pt;}
.x11{left:141.466655pt;}
.xa{left:155.080000pt;}
.x4{left:186.426667pt;}
.x17{left:200.986655pt;}
.x21{left:229.946667pt;}
.x16{left:231.546655pt;}
.x1d{left:233.626667pt;}
.x3{left:255.266667pt;}
.x14{left:291.266655pt;}
.x12{left:312.546655pt;}
.x15{left:322.146655pt;}
.xe{left:393.346655pt;}
.xf{left:397.026655pt;}
.x22{left:401.666667pt;}
.x1e{left:409.986667pt;}
.x7{left:508.253333pt;}
.x23{left:568.253333pt;}
.x1f{left:578.013333pt;}
}




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