
    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_970e2e06f4c9dd0e00059be1.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_6fa7041ab880deda5e7b4ebf.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_3779935daaca554187ae954a.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_a23e8f81d3970ad3939ebf6c.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_99464bea9850578b6ca22e05.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_268cbe6beab2b90688ca13de.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-82.080000px;}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls5{letter-spacing:-0.414600px;}
.ls3{letter-spacing:-0.341400px;}
.lsb{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls9{letter-spacing:25.344000px;}
.ls7{letter-spacing:54.864000px;}
.ls8{letter-spacing:197.976000px;}
.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:-72.000000px;}
.ws2{word-spacing:-21.060000px;}
.ws0{word-spacing:-20.718600px;}
.wsa{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws1{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.060000px;}
.ws5{word-spacing:0.000000px;}
._2{margin-left:-2.855760px;}
._0{margin-left:-1.095120px;}
._1{width:1.671600px;}
._3{width:2.999760px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y90{bottom:4.140000px;}
.y92{bottom:4.500000px;}
.y10f{bottom:8.820000px;}
.y95{bottom:14.760000px;}
.ydd{bottom:14.940000px;}
.yea{bottom:14.985000px;}
.yd4{bottom:19.080000px;}
.y10d{bottom:19.260000px;}
.y111{bottom:19.440000px;}
.y113{bottom:19.485000px;}
.y114{bottom:19.620000px;}
.y100{bottom:24.840000px;}
.y98{bottom:24.870000px;}
.y96{bottom:25.200000px;}
.y99{bottom:25.230000px;}
.ye9{bottom:25.245000px;}
.y10e{bottom:29.520000px;}
.ydb{bottom:35.460000px;}
.yd9{bottom:35.640000px;}
.yd8{bottom:45.900000px;}
.yd7{bottom:66.600000px;}
.y51{bottom:111.780000px;}
.y71{bottom:112.140000px;}
.y12f{bottom:113.940000px;}
.y18a{bottom:115.560000px;}
.ye3{bottom:118.620000px;}
.y147{bottom:119.880000px;}
.y18{bottom:122.760000px;}
.y36{bottom:132.300000px;}
.yfd{bottom:136.440000px;}
.y87{bottom:136.980000px;}
.y169{bottom:141.660000px;}
.yb8{bottom:143.280000px;}
.y189{bottom:146.700000px;}
.y6a{bottom:146.880000px;}
.ya5{bottom:147.240000px;}
.yd1{bottom:148.860000px;}
.ye2{bottom:149.580000px;}
.y12e{bottom:149.940000px;}
.y17{bottom:151.200000px;}
.y50{bottom:153.180000px;}
.y70{bottom:153.540000px;}
.y35{bottom:160.740000px;}
.y146{bottom:161.280000px;}
.y168{bottom:172.800000px;}
.y188{bottom:177.660000px;}
.yfc{bottom:177.840000px;}
.y86{bottom:178.380000px;}
.y16{bottom:179.640000px;}
.y158{bottom:180.540000px;}
.ye1{bottom:184.140000px;}
.yb7{bottom:185.940000px;}
.y69{bottom:188.280000px;}
.ya4{bottom:188.640000px;}
.yd0{bottom:190.260000px;}
.y12d{bottom:191.340000px;}
.y4f{bottom:194.580000px;}
.y6f{bottom:194.940000px;}
.y34{bottom:197.820000px;}
.y145{bottom:202.680000px;}
.y167{bottom:203.760000px;}
.y187{bottom:208.800000px;}
.yfb{bottom:219.240000px;}
.y85{bottom:219.780000px;}
.y157{bottom:221.940000px;}
.yc4{bottom:222.120000px;}
.y15{bottom:226.080000px;}
.yb6{bottom:228.780000px;}
.y68{bottom:229.680000px;}
.ya3{bottom:230.040000px;}
.ycf{bottom:231.660000px;}
.y12c{bottom:232.740000px;}
.y166{bottom:234.900000px;}
.y4e{bottom:235.980000px;}
.y6e{bottom:236.340000px;}
.y186{bottom:239.760000px;}
.y144{bottom:244.080000px;}
.y33{bottom:247.320000px;}
.yfa{bottom:260.670000px;}
.y84{bottom:261.210000px;}
.y156{bottom:263.370000px;}
.yc3{bottom:263.550000px;}
.y165{bottom:265.890000px;}
.y185{bottom:270.930000px;}
.y67{bottom:271.110000px;}
.ya2{bottom:271.470000px;}
.y14{bottom:272.190000px;}
.yce{bottom:273.090000px;}
.y12b{bottom:274.170000px;}
.y32{bottom:277.050000px;}
.y4d{bottom:277.410000px;}
.y6d{bottom:277.770000px;}
.y117{bottom:282.090000px;}
.y143{bottom:285.510000px;}
.yb5{bottom:289.650000px;}
.y164{bottom:297.030000px;}
.y184{bottom:301.890000px;}
.yf9{bottom:302.070000px;}
.yc2{bottom:304.770000px;}
.y31{bottom:305.490000px;}
.y83{bottom:309.630000px;}
.y66{bottom:312.510000px;}
.ya1{bottom:312.870000px;}
.ycd{bottom:314.490000px;}
.y12a{bottom:315.570000px;}
.y13{bottom:318.630000px;}
.y4c{bottom:318.810000px;}
.y6c{bottom:319.170000px;}
.y142{bottom:326.730000px;}
.y163{bottom:327.990000px;}
.yab{bottom:330.510000px;}
.y183{bottom:333.030000px;}
.y30{bottom:334.110000px;}
.yf8{bottom:343.470000px;}
.yed{bottom:344.010000px;}
.y116{bottom:344.190000px;}
.yc1{bottom:346.170000px;}
.yb4{bottom:348.870000px;}
.y65{bottom:353.910000px;}
.ya0{bottom:354.270000px;}
.ycc{bottom:355.890000px;}
.y129{bottom:356.970000px;}
.y12{bottom:357.690000px;}
.y162{bottom:359.130000px;}
.y4b{bottom:360.210000px;}
.y82{bottom:360.570000px;}
.y2f{bottom:362.550000px;}
.y182{bottom:363.990000px;}
.y6b{bottom:367.770000px;}
.y141{bottom:368.130000px;}
.yec{bottom:374.970000px;}
.y115{bottom:375.150000px;}
.yf7{bottom:384.870000px;}
.yc0{bottom:387.570000px;}
.yaa{bottom:389.910000px;}
.y161{bottom:390.090000px;}
.y2e{bottom:390.990000px;}
.y181{bottom:395.130000px;}
.y64{bottom:395.310000px;}
.y9f{bottom:395.670000px;}
.ycb{bottom:397.290000px;}
.y128{bottom:398.370000px;}
.y4a{bottom:401.610000px;}
.y81{bottom:401.970000px;}
.y11{bottom:406.650000px;}
.yb3{bottom:408.270000px;}
.y140{bottom:409.530000px;}
.yeb{bottom:414.390000px;}
.y160{bottom:421.050000px;}
.y180{bottom:426.090000px;}
.yf6{bottom:426.270000px;}
.ybf{bottom:428.970000px;}
.ya9{bottom:431.310000px;}
.y121{bottom:435.270000px;}
.y63{bottom:436.530000px;}
.y9e{bottom:437.070000px;}
.y2d{bottom:437.430000px;}
.yca{bottom:438.690000px;}
.yb2{bottom:439.230000px;}
.y127{bottom:439.770000px;}
.y49{bottom:443.010000px;}
.y80{bottom:443.370000px;}
.y13f{bottom:450.930000px;}
.y15f{bottom:452.190000px;}
.y10{bottom:455.790000px;}
.y17f{bottom:457.050000px;}
.ye8{bottom:464.250000px;}
.yf5{bottom:467.670000px;}
.ybe{bottom:470.370000px;}
.ya8{bottom:472.710000px;}
.y112{bottom:474.510000px;}
.y120{bottom:476.715000px;}
.y62{bottom:477.975000px;}
.y9d{bottom:478.515000px;}
.yc9{bottom:480.135000px;}
.y126{bottom:481.215000px;}
.y15e{bottom:483.195000px;}
.y2c{bottom:483.915000px;}
.y48{bottom:484.455000px;}
.y7f{bottom:484.815000px;}
.ye0{bottom:485.175000px;}
.y17e{bottom:488.235000px;}
.y13e{bottom:492.375000px;}
.ya7{bottom:503.535000px;}
.yf{bottom:504.795000px;}
.yf4{bottom:509.115000px;}
.y155{bottom:511.815000px;}
.ye7{bottom:514.335000px;}
.ydf{bottom:515.955000px;}
.y11f{bottom:518.115000px;}
.ybd{bottom:519.015000px;}
.y17d{bottom:519.195000px;}
.y61{bottom:519.375000px;}
.yc8{bottom:521.535000px;}
.y125{bottom:522.615000px;}
.y7e{bottom:526.215000px;}
.y9c{bottom:527.115000px;}
.y2b{bottom:530.355000px;}
.y47{bottom:533.055000px;}
.y13d{bottom:533.775000px;}
.y110{bottom:534.495000px;}
.ya6{bottom:537.915000px;}
.ye6{bottom:544.215000px;}
.y15d{bottom:545.295000px;}
.y17c{bottom:550.335000px;}
.yf3{bottom:550.515000px;}
.y154{bottom:553.215000px;}
.ye{bottom:553.935000px;}
.yde{bottom:555.375000px;}
.y2a{bottom:558.795000px;}
.y11e{bottom:559.515000px;}
.y60{bottom:560.775000px;}
.yc7{bottom:562.935000px;}
.y46{bottom:564.015000px;}
.y7d{bottom:567.615000px;}
.ye5{bottom:573.015000px;}
.y13c{bottom:575.175000px;}
.y15c{bottom:576.435000px;}
.y17b{bottom:581.295000px;}
.y29{bottom:587.235000px;}
.ybc{bottom:587.955000px;}
.yf2{bottom:591.915000px;}
.yc6{bottom:593.715000px;}
.y10c{bottom:594.435000px;}
.y153{bottom:594.615000px;}
.y11d{bottom:600.915000px;}
.y5f{bottom:602.175000px;}
.yd{bottom:602.895000px;}
.ydc{bottom:605.235000px;}
.y124{bottom:605.415000px;}
.y15b{bottom:607.395000px;}
.y7c{bottom:609.015000px;}
.y17a{bottom:612.435000px;}
.y28{bottom:615.675000px;}
.y9b{bottom:616.575000px;}
.ybb{bottom:618.735000px;}
.y45{bottom:621.255000px;}
.yf1{bottom:633.315000px;}
.y152{bottom:636.015000px;}
.y123{bottom:636.195000px;}
.yc5{bottom:638.535000px;}
.y11c{bottom:642.315000px;}
.y179{bottom:643.395000px;}
.y5e{bottom:643.575000px;}
.y27{bottom:644.295000px;}
.y9a{bottom:647.535000px;}
.y44{bottom:649.695000px;}
.y7b{bottom:650.415000px;}
.yc{bottom:652.035000px;}
.y10b{bottom:653.295000px;}
.yda{bottom:655.275000px;}
.y13b{bottom:657.975000px;}
.y15a{bottom:669.495000px;}
.y122{bottom:670.575000px;}
.y26{bottom:672.735000px;}
.y178{bottom:674.535000px;}
.yf0{bottom:674.715000px;}
.y151{bottom:677.415000px;}
.y11b{bottom:683.715000px;}
.y5d{bottom:684.975000px;}
.y97{bottom:686.955000px;}
.y10a{bottom:689.295000px;}
.y7a{bottom:691.815000px;}
.y13a{bottom:699.375000px;}
.y43{bottom:700.635000px;}
.y25{bottom:701.175000px;}
.y11a{bottom:704.445000px;}
.y177{bottom:705.525000px;}
.yb{bottom:707.865000px;}
.yef{bottom:716.145000px;}
.y150{bottom:718.845000px;}
.yd6{bottom:725.865000px;}
.y5c{bottom:726.405000px;}
.y42{bottom:729.105000px;}
.y24{bottom:729.645000px;}
.y109{bottom:730.725000px;}
.y79{bottom:733.245000px;}
.y119{bottom:735.225000px;}
.y176{bottom:736.665000px;}
.y94{bottom:737.745000px;}
.y159{bottom:740.265000px;}
.y139{bottom:740.805000px;}
.yee{bottom:746.925000px;}
.ya{bottom:750.165000px;}
.y41{bottom:757.725000px;}
.y23{bottom:758.085000px;}
.y14f{bottom:760.245000px;}
.y175{bottom:767.625000px;}
.y5b{bottom:767.805000px;}
.y118{bottom:769.605000px;}
.y108{bottom:772.125000px;}
.y78{bottom:774.645000px;}
.y138{bottom:782.205000px;}
.y40{bottom:786.165000px;}
.y93{bottom:787.605000px;}
.y174{bottom:798.765000px;}
.y9{bottom:799.125000px;}
.y14e{bottom:801.645000px;}
.y22{bottom:804.525000px;}
.y5a{bottom:809.205000px;}
.y107{bottom:813.525000px;}
.y3f{bottom:814.605000px;}
.y77{bottom:816.045000px;}
.y91{bottom:816.945000px;}
.yd3{bottom:818.025000px;}
.ye4{bottom:823.065000px;}
.y137{bottom:823.605000px;}
.y173{bottom:829.725000px;}
.y8{bottom:837.105000px;}
.y3e{bottom:843.045000px;}
.y8f{bottom:846.825000px;}
.yd5{bottom:848.085000px;}
.y59{bottom:850.605000px;}
.y21{bottom:850.965000px;}
.yb1{bottom:853.485000px;}
.y106{bottom:854.925000px;}
.y76{bottom:857.445000px;}
.y172{bottom:860.865000px;}
.y3d{bottom:871.485000px;}
.y136{bottom:872.205000px;}
.y8e{bottom:875.625000px;}
.yd2{bottom:876.705000px;}
.y7{bottom:879.225000px;}
.y18c{bottom:881.745000px;}
.y14d{bottom:884.445000px;}
.y171{bottom:891.825000px;}
.y58{bottom:892.005000px;}
.yb0{bottom:894.705000px;}
.y105{bottom:896.325000px;}
.y20{bottom:897.405000px;}
.y75{bottom:898.845000px;}
.y3c{bottom:899.925000px;}
.y6{bottom:917.205000px;}
.y170{bottom:922.965000px;}
.y18b{bottom:923.145000px;}
.y1f{bottom:925.845000px;}
.y3b{bottom:928.365000px;}
.y8d{bottom:929.625000px;}
.y57{bottom:933.450000px;}
.yaf{bottom:937.410000px;}
.y104{bottom:937.770000px;}
.y74{bottom:940.290000px;}
.y135{bottom:941.190000px;}
.y16f{bottom:953.970000px;}
.y1e{bottom:954.510000px;}
.y3a{bottom:956.850000px;}
.y5{bottom:966.210000px;}
.y14c{bottom:967.290000px;}
.y103{bottom:968.550000px;}
.y8c{bottom:970.890000px;}
.y134{bottom:971.970000px;}
.y56{bottom:974.850000px;}
.y73{bottom:981.690000px;}
.y1d{bottom:982.950000px;}
.y16e{bottom:985.110000px;}
.y39{bottom:985.290000px;}
.yae{bottom:998.250000px;}
.y133{bottom:1003.110000px;}
.y102{bottom:1007.970000px;}
.y14b{bottom:1008.690000px;}
.y4{bottom:1010.850000px;}
.y8b{bottom:1013.730000px;}
.y38{bottom:1013.910000px;}
.y16d{bottom:1016.070000px;}
.y55{bottom:1016.250000px;}
.y1c{bottom:1029.390000px;}
.y72{bottom:1030.110000px;}
.yba{bottom:1037.130000px;}
.yad{bottom:1039.650000px;}
.y37{bottom:1042.350000px;}
.y132{bottom:1042.530000px;}
.y3{bottom:1047.210000px;}
.y14a{bottom:1050.090000px;}
.y8a{bottom:1054.950000px;}
.y54{bottom:1057.650000px;}
.y101{bottom:1066.470000px;}
.y131{bottom:1071.690000px;}
.y1b{bottom:1075.470000px;}
.y16c{bottom:1078.170000px;}
.yac{bottom:1081.050000px;}
.y149{bottom:1091.490000px;}
.yb9{bottom:1096.350000px;}
.yff{bottom:1096.530000px;}
.y89{bottom:1097.790000px;}
.y53{bottom:1099.050000px;}
.y2{bottom:1101.030000px;}
.y16b{bottom:1109.310000px;}
.y1a{bottom:1113.270000px;}
.y130{bottom:1130.910000px;}
.y1{bottom:1137.210000px;}
.y88{bottom:1139.010000px;}
.y148{bottom:1139.910000px;}
.y16a{bottom:1140.270000px;}
.y52{bottom:1140.450000px;}
.y19{bottom:1141.710000px;}
.yfe{bottom:1145.850000px;}
.he{height:20.700000px;}
.hf{height:41.400000px;}
.h10{height:41.436000px;}
.h4{height:47.321367px;}
.h6{height:47.344922px;}
.h14{height:50.616000px;}
.h11{height:50.760000px;}
.h13{height:62.136000px;}
.hc{height:64.546875px;}
.ha{height:64.978594px;}
.hb{height:65.010937px;}
.h9{height:66.757500px;}
.h5{height:70.628906px;}
.h8{height:70.664062px;}
.h7{height:72.562500px;}
.hd{height:74.004654px;}
.h12{height:82.800000px;}
.h3{height:83.238047px;}
.h2{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:59.436000px;}
.wf{width:66.816000px;}
.w3{width:67.320000px;}
.w16{width:68.220000px;}
.w12{width:69.480000px;}
.wb{width:70.560000px;}
.w15{width:72.216000px;}
.w11{width:72.900000px;}
.wc{width:73.116000px;}
.w19{width:75.636000px;}
.w17{width:79.596000px;}
.w4{width:84.096000px;}
.w5{width:92.160000px;}
.w14{width:107.460000px;}
.wd{width:108.936000px;}
.w13{width:111.996000px;}
.we{width:115.920000px;}
.wa{width:143.676000px;}
.w10{width:150.510000px;}
.w18{width:215.490000px;}
.w8{width:250.230000px;}
.w9{width:268.095000px;}
.w7{width:362.415000px;}
.w1{width:892.500000px;}
.w2{width:892.619987px;}
.w0{width:892.620000px;}
.x0{left:0.000000px;}
.xb{left:4.320000px;}
.x7{left:6.480000px;}
.x4{left:8.280000px;}
.x9{left:10.620000px;}
.x11{left:13.140000px;}
.x29{left:14.760000px;}
.x13{left:16.200000px;}
.xc{left:17.640000px;}
.x3a{left:18.900000px;}
.xf{left:20.700000px;}
.x2b{left:23.040000px;}
.x28{left:24.480000px;}
.x25{left:27.360000px;}
.x31{left:29.520000px;}
.x24{left:30.600000px;}
.xd{left:33.120000px;}
.x22{left:34.590000px;}
.x20{left:35.640000px;}
.x10{left:37.080000px;}
.x40{left:38.340000px;}
.x23{left:39.450000px;}
.xe{left:41.580000px;}
.x35{left:44.640000px;}
.x12{left:46.080000px;}
.x2a{left:57.954000px;}
.x26{left:60.294000px;}
.x39{left:66.240000px;}
.x27{left:70.734000px;}
.x47{left:87.510000px;}
.x1c{left:96.114000px;}
.x1e{left:99.570000px;}
.x1{left:127.655987px;}
.x17{left:149.255987px;}
.x3{left:154.649987px;}
.x48{left:160.589987px;}
.x2{left:181.649987px;}
.x5{left:194.970000px;}
.x34{left:210.450000px;}
.x41{left:240.869987px;}
.x3b{left:246.494987px;}
.x1b{left:248.834987px;}
.x43{left:255.674987px;}
.x45{left:267.195000px;}
.x16{left:277.454987px;}
.x6{left:279.075000px;}
.x3c{left:282.315000px;}
.x33{left:299.594987px;}
.x2c{left:303.554987px;}
.x32{left:323.714987px;}
.x2e{left:326.054987px;}
.x14{left:332.354987px;}
.x2f{left:333.975000px;}
.x18{left:348.194987px;}
.x8{left:371.235000px;}
.x1d{left:377.895000px;}
.x3d{left:390.495000px;}
.x49{left:411.554987px;}
.x36{left:427.785000px;}
.xa{left:430.665000px;}
.x30{left:442.905000px;}
.x3e{left:462.705000px;}
.x19{left:473.324987px;}
.x37{left:500.685000px;}
.x3f{left:530.925000px;}
.x46{left:550.005000px;}
.x38{left:570.165000px;}
.x1f{left:645.990000px;}
.x2d{left:663.269987px;}
.x44{left:696.389987px;}
.x21{left:716.550000px;}
.x1a{left:738.869987px;}
.x42{left:771.839987px;}
.x15{left:819.179987px;}
@media print{
.v4{vertical-align:-72.960000pt;}
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls5{letter-spacing:-0.368533pt;}
.ls3{letter-spacing:-0.303467pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls9{letter-spacing:22.528000pt;}
.ls7{letter-spacing:48.768000pt;}
.ls8{letter-spacing:175.978667pt;}
.ws6{word-spacing:-64.000000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws0{word-spacing:-18.416533pt;}
.wsa{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws5{word-spacing:0.000000pt;}
._2{margin-left:-2.538453pt;}
._0{margin-left:-0.973440pt;}
._1{width:1.485867pt;}
._3{width:2.666453pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:3.680000pt;}
.y92{bottom:4.000000pt;}
.y10f{bottom:7.840000pt;}
.y95{bottom:13.120000pt;}
.ydd{bottom:13.280000pt;}
.yea{bottom:13.320000pt;}
.yd4{bottom:16.960000pt;}
.y10d{bottom:17.120000pt;}
.y111{bottom:17.280000pt;}
.y113{bottom:17.320000pt;}
.y114{bottom:17.440000pt;}
.y100{bottom:22.080000pt;}
.y98{bottom:22.106667pt;}
.y96{bottom:22.400000pt;}
.y99{bottom:22.426667pt;}
.ye9{bottom:22.440000pt;}
.y10e{bottom:26.240000pt;}
.ydb{bottom:31.520000pt;}
.yd9{bottom:31.680000pt;}
.yd8{bottom:40.800000pt;}
.yd7{bottom:59.200000pt;}
.y51{bottom:99.360000pt;}
.y71{bottom:99.680000pt;}
.y12f{bottom:101.280000pt;}
.y18a{bottom:102.720000pt;}
.ye3{bottom:105.440000pt;}
.y147{bottom:106.560000pt;}
.y18{bottom:109.120000pt;}
.y36{bottom:117.600000pt;}
.yfd{bottom:121.280000pt;}
.y87{bottom:121.760000pt;}
.y169{bottom:125.920000pt;}
.yb8{bottom:127.360000pt;}
.y189{bottom:130.400000pt;}
.y6a{bottom:130.560000pt;}
.ya5{bottom:130.880000pt;}
.yd1{bottom:132.320000pt;}
.ye2{bottom:132.960000pt;}
.y12e{bottom:133.280000pt;}
.y17{bottom:134.400000pt;}
.y50{bottom:136.160000pt;}
.y70{bottom:136.480000pt;}
.y35{bottom:142.880000pt;}
.y146{bottom:143.360000pt;}
.y168{bottom:153.600000pt;}
.y188{bottom:157.920000pt;}
.yfc{bottom:158.080000pt;}
.y86{bottom:158.560000pt;}
.y16{bottom:159.680000pt;}
.y158{bottom:160.480000pt;}
.ye1{bottom:163.680000pt;}
.yb7{bottom:165.280000pt;}
.y69{bottom:167.360000pt;}
.ya4{bottom:167.680000pt;}
.yd0{bottom:169.120000pt;}
.y12d{bottom:170.080000pt;}
.y4f{bottom:172.960000pt;}
.y6f{bottom:173.280000pt;}
.y34{bottom:175.840000pt;}
.y145{bottom:180.160000pt;}
.y167{bottom:181.120000pt;}
.y187{bottom:185.600000pt;}
.yfb{bottom:194.880000pt;}
.y85{bottom:195.360000pt;}
.y157{bottom:197.280000pt;}
.yc4{bottom:197.440000pt;}
.y15{bottom:200.960000pt;}
.yb6{bottom:203.360000pt;}
.y68{bottom:204.160000pt;}
.ya3{bottom:204.480000pt;}
.ycf{bottom:205.920000pt;}
.y12c{bottom:206.880000pt;}
.y166{bottom:208.800000pt;}
.y4e{bottom:209.760000pt;}
.y6e{bottom:210.080000pt;}
.y186{bottom:213.120000pt;}
.y144{bottom:216.960000pt;}
.y33{bottom:219.840000pt;}
.yfa{bottom:231.706667pt;}
.y84{bottom:232.186667pt;}
.y156{bottom:234.106667pt;}
.yc3{bottom:234.266667pt;}
.y165{bottom:236.346667pt;}
.y185{bottom:240.826667pt;}
.y67{bottom:240.986667pt;}
.ya2{bottom:241.306667pt;}
.y14{bottom:241.946667pt;}
.yce{bottom:242.746667pt;}
.y12b{bottom:243.706667pt;}
.y32{bottom:246.266667pt;}
.y4d{bottom:246.586667pt;}
.y6d{bottom:246.906667pt;}
.y117{bottom:250.746667pt;}
.y143{bottom:253.786667pt;}
.yb5{bottom:257.466667pt;}
.y164{bottom:264.026667pt;}
.y184{bottom:268.346667pt;}
.yf9{bottom:268.506667pt;}
.yc2{bottom:270.906667pt;}
.y31{bottom:271.546667pt;}
.y83{bottom:275.226667pt;}
.y66{bottom:277.786667pt;}
.ya1{bottom:278.106667pt;}
.ycd{bottom:279.546667pt;}
.y12a{bottom:280.506667pt;}
.y13{bottom:283.226667pt;}
.y4c{bottom:283.386667pt;}
.y6c{bottom:283.706667pt;}
.y142{bottom:290.426667pt;}
.y163{bottom:291.546667pt;}
.yab{bottom:293.786667pt;}
.y183{bottom:296.026667pt;}
.y30{bottom:296.986667pt;}
.yf8{bottom:305.306667pt;}
.yed{bottom:305.786667pt;}
.y116{bottom:305.946667pt;}
.yc1{bottom:307.706667pt;}
.yb4{bottom:310.106667pt;}
.y65{bottom:314.586667pt;}
.ya0{bottom:314.906667pt;}
.ycc{bottom:316.346667pt;}
.y129{bottom:317.306667pt;}
.y12{bottom:317.946667pt;}
.y162{bottom:319.226667pt;}
.y4b{bottom:320.186667pt;}
.y82{bottom:320.506667pt;}
.y2f{bottom:322.266667pt;}
.y182{bottom:323.546667pt;}
.y6b{bottom:326.906667pt;}
.y141{bottom:327.226667pt;}
.yec{bottom:333.306667pt;}
.y115{bottom:333.466667pt;}
.yf7{bottom:342.106667pt;}
.yc0{bottom:344.506667pt;}
.yaa{bottom:346.586667pt;}
.y161{bottom:346.746667pt;}
.y2e{bottom:347.546667pt;}
.y181{bottom:351.226667pt;}
.y64{bottom:351.386667pt;}
.y9f{bottom:351.706667pt;}
.ycb{bottom:353.146667pt;}
.y128{bottom:354.106667pt;}
.y4a{bottom:356.986667pt;}
.y81{bottom:357.306667pt;}
.y11{bottom:361.466667pt;}
.yb3{bottom:362.906667pt;}
.y140{bottom:364.026667pt;}
.yeb{bottom:368.346667pt;}
.y160{bottom:374.266667pt;}
.y180{bottom:378.746667pt;}
.yf6{bottom:378.906667pt;}
.ybf{bottom:381.306667pt;}
.ya9{bottom:383.386667pt;}
.y121{bottom:386.906667pt;}
.y63{bottom:388.026667pt;}
.y9e{bottom:388.506667pt;}
.y2d{bottom:388.826667pt;}
.yca{bottom:389.946667pt;}
.yb2{bottom:390.426667pt;}
.y127{bottom:390.906667pt;}
.y49{bottom:393.786667pt;}
.y80{bottom:394.106667pt;}
.y13f{bottom:400.826667pt;}
.y15f{bottom:401.946667pt;}
.y10{bottom:405.146667pt;}
.y17f{bottom:406.266667pt;}
.ye8{bottom:412.666667pt;}
.yf5{bottom:415.706667pt;}
.ybe{bottom:418.106667pt;}
.ya8{bottom:420.186667pt;}
.y112{bottom:421.786667pt;}
.y120{bottom:423.746667pt;}
.y62{bottom:424.866667pt;}
.y9d{bottom:425.346667pt;}
.yc9{bottom:426.786667pt;}
.y126{bottom:427.746667pt;}
.y15e{bottom:429.506667pt;}
.y2c{bottom:430.146667pt;}
.y48{bottom:430.626667pt;}
.y7f{bottom:430.946667pt;}
.ye0{bottom:431.266667pt;}
.y17e{bottom:433.986667pt;}
.y13e{bottom:437.666667pt;}
.ya7{bottom:447.586667pt;}
.yf{bottom:448.706667pt;}
.yf4{bottom:452.546667pt;}
.y155{bottom:454.946667pt;}
.ye7{bottom:457.186667pt;}
.ydf{bottom:458.626667pt;}
.y11f{bottom:460.546667pt;}
.ybd{bottom:461.346667pt;}
.y17d{bottom:461.506667pt;}
.y61{bottom:461.666667pt;}
.yc8{bottom:463.586667pt;}
.y125{bottom:464.546667pt;}
.y7e{bottom:467.746667pt;}
.y9c{bottom:468.546667pt;}
.y2b{bottom:471.426667pt;}
.y47{bottom:473.826667pt;}
.y13d{bottom:474.466667pt;}
.y110{bottom:475.106667pt;}
.ya6{bottom:478.146667pt;}
.ye6{bottom:483.746667pt;}
.y15d{bottom:484.706667pt;}
.y17c{bottom:489.186667pt;}
.yf3{bottom:489.346667pt;}
.y154{bottom:491.746667pt;}
.ye{bottom:492.386667pt;}
.yde{bottom:493.666667pt;}
.y2a{bottom:496.706667pt;}
.y11e{bottom:497.346667pt;}
.y60{bottom:498.466667pt;}
.yc7{bottom:500.386667pt;}
.y46{bottom:501.346667pt;}
.y7d{bottom:504.546667pt;}
.ye5{bottom:509.346667pt;}
.y13c{bottom:511.266667pt;}
.y15c{bottom:512.386667pt;}
.y17b{bottom:516.706667pt;}
.y29{bottom:521.986667pt;}
.ybc{bottom:522.626667pt;}
.yf2{bottom:526.146667pt;}
.yc6{bottom:527.746667pt;}
.y10c{bottom:528.386667pt;}
.y153{bottom:528.546667pt;}
.y11d{bottom:534.146667pt;}
.y5f{bottom:535.266667pt;}
.yd{bottom:535.906667pt;}
.ydc{bottom:537.986667pt;}
.y124{bottom:538.146667pt;}
.y15b{bottom:539.906667pt;}
.y7c{bottom:541.346667pt;}
.y17a{bottom:544.386667pt;}
.y28{bottom:547.266667pt;}
.y9b{bottom:548.066667pt;}
.ybb{bottom:549.986667pt;}
.y45{bottom:552.226667pt;}
.yf1{bottom:562.946667pt;}
.y152{bottom:565.346667pt;}
.y123{bottom:565.506667pt;}
.yc5{bottom:567.586667pt;}
.y11c{bottom:570.946667pt;}
.y179{bottom:571.906667pt;}
.y5e{bottom:572.066667pt;}
.y27{bottom:572.706667pt;}
.y9a{bottom:575.586667pt;}
.y44{bottom:577.506667pt;}
.y7b{bottom:578.146667pt;}
.yc{bottom:579.586667pt;}
.y10b{bottom:580.706667pt;}
.yda{bottom:582.466667pt;}
.y13b{bottom:584.866667pt;}
.y15a{bottom:595.106667pt;}
.y122{bottom:596.066667pt;}
.y26{bottom:597.986667pt;}
.y178{bottom:599.586667pt;}
.yf0{bottom:599.746667pt;}
.y151{bottom:602.146667pt;}
.y11b{bottom:607.746667pt;}
.y5d{bottom:608.866667pt;}
.y97{bottom:610.626667pt;}
.y10a{bottom:612.706667pt;}
.y7a{bottom:614.946667pt;}
.y13a{bottom:621.666667pt;}
.y43{bottom:622.786667pt;}
.y25{bottom:623.266667pt;}
.y11a{bottom:626.173333pt;}
.y177{bottom:627.133333pt;}
.yb{bottom:629.213333pt;}
.yef{bottom:636.573333pt;}
.y150{bottom:638.973333pt;}
.yd6{bottom:645.213333pt;}
.y5c{bottom:645.693333pt;}
.y42{bottom:648.093333pt;}
.y24{bottom:648.573333pt;}
.y109{bottom:649.533333pt;}
.y79{bottom:651.773333pt;}
.y119{bottom:653.533333pt;}
.y176{bottom:654.813333pt;}
.y94{bottom:655.773333pt;}
.y159{bottom:658.013333pt;}
.y139{bottom:658.493333pt;}
.yee{bottom:663.933333pt;}
.ya{bottom:666.813333pt;}
.y41{bottom:673.533333pt;}
.y23{bottom:673.853333pt;}
.y14f{bottom:675.773333pt;}
.y175{bottom:682.333333pt;}
.y5b{bottom:682.493333pt;}
.y118{bottom:684.093333pt;}
.y108{bottom:686.333333pt;}
.y78{bottom:688.573333pt;}
.y138{bottom:695.293333pt;}
.y40{bottom:698.813333pt;}
.y93{bottom:700.093333pt;}
.y174{bottom:710.013333pt;}
.y9{bottom:710.333333pt;}
.y14e{bottom:712.573333pt;}
.y22{bottom:715.133333pt;}
.y5a{bottom:719.293333pt;}
.y107{bottom:723.133333pt;}
.y3f{bottom:724.093333pt;}
.y77{bottom:725.373333pt;}
.y91{bottom:726.173333pt;}
.yd3{bottom:727.133333pt;}
.ye4{bottom:731.613333pt;}
.y137{bottom:732.093333pt;}
.y173{bottom:737.533333pt;}
.y8{bottom:744.093333pt;}
.y3e{bottom:749.373333pt;}
.y8f{bottom:752.733333pt;}
.yd5{bottom:753.853333pt;}
.y59{bottom:756.093333pt;}
.y21{bottom:756.413333pt;}
.yb1{bottom:758.653333pt;}
.y106{bottom:759.933333pt;}
.y76{bottom:762.173333pt;}
.y172{bottom:765.213333pt;}
.y3d{bottom:774.653333pt;}
.y136{bottom:775.293333pt;}
.y8e{bottom:778.333333pt;}
.yd2{bottom:779.293333pt;}
.y7{bottom:781.533333pt;}
.y18c{bottom:783.773333pt;}
.y14d{bottom:786.173333pt;}
.y171{bottom:792.733333pt;}
.y58{bottom:792.893333pt;}
.yb0{bottom:795.293333pt;}
.y105{bottom:796.733333pt;}
.y20{bottom:797.693333pt;}
.y75{bottom:798.973333pt;}
.y3c{bottom:799.933333pt;}
.y6{bottom:815.293333pt;}
.y170{bottom:820.413333pt;}
.y18b{bottom:820.573333pt;}
.y1f{bottom:822.973333pt;}
.y3b{bottom:825.213333pt;}
.y8d{bottom:826.333333pt;}
.y57{bottom:829.733333pt;}
.yaf{bottom:833.253333pt;}
.y104{bottom:833.573333pt;}
.y74{bottom:835.813333pt;}
.y135{bottom:836.613333pt;}
.y16f{bottom:847.973333pt;}
.y1e{bottom:848.453333pt;}
.y3a{bottom:850.533333pt;}
.y5{bottom:858.853333pt;}
.y14c{bottom:859.813333pt;}
.y103{bottom:860.933333pt;}
.y8c{bottom:863.013333pt;}
.y134{bottom:863.973333pt;}
.y56{bottom:866.533333pt;}
.y73{bottom:872.613333pt;}
.y1d{bottom:873.733333pt;}
.y16e{bottom:875.653333pt;}
.y39{bottom:875.813333pt;}
.yae{bottom:887.333333pt;}
.y133{bottom:891.653333pt;}
.y102{bottom:895.973333pt;}
.y14b{bottom:896.613333pt;}
.y4{bottom:898.533333pt;}
.y8b{bottom:901.093333pt;}
.y38{bottom:901.253333pt;}
.y16d{bottom:903.173333pt;}
.y55{bottom:903.333333pt;}
.y1c{bottom:915.013333pt;}
.y72{bottom:915.653333pt;}
.yba{bottom:921.893333pt;}
.yad{bottom:924.133333pt;}
.y37{bottom:926.533333pt;}
.y132{bottom:926.693333pt;}
.y3{bottom:930.853333pt;}
.y14a{bottom:933.413333pt;}
.y8a{bottom:937.733333pt;}
.y54{bottom:940.133333pt;}
.y101{bottom:947.973333pt;}
.y131{bottom:952.613333pt;}
.y1b{bottom:955.973333pt;}
.y16c{bottom:958.373333pt;}
.yac{bottom:960.933333pt;}
.y149{bottom:970.213333pt;}
.yb9{bottom:974.533333pt;}
.yff{bottom:974.693333pt;}
.y89{bottom:975.813333pt;}
.y53{bottom:976.933333pt;}
.y2{bottom:978.693333pt;}
.y16b{bottom:986.053333pt;}
.y1a{bottom:989.573333pt;}
.y130{bottom:1005.253333pt;}
.y1{bottom:1010.853333pt;}
.y88{bottom:1012.453333pt;}
.y148{bottom:1013.253333pt;}
.y16a{bottom:1013.573333pt;}
.y52{bottom:1013.733333pt;}
.y19{bottom:1014.853333pt;}
.yfe{bottom:1018.533333pt;}
.he{height:18.400000pt;}
.hf{height:36.800000pt;}
.h10{height:36.832000pt;}
.h4{height:42.063437pt;}
.h6{height:42.084375pt;}
.h14{height:44.992000pt;}
.h11{height:45.120000pt;}
.h13{height:55.232000pt;}
.hc{height:57.375000pt;}
.ha{height:57.758750pt;}
.hb{height:57.787500pt;}
.h9{height:59.340000pt;}
.h5{height:62.781250pt;}
.h8{height:62.812500pt;}
.h7{height:64.500000pt;}
.hd{height:65.781915pt;}
.h12{height:73.600000pt;}
.h3{height:73.989375pt;}
.h2{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:52.832000pt;}
.wf{width:59.392000pt;}
.w3{width:59.840000pt;}
.w16{width:60.640000pt;}
.w12{width:61.760000pt;}
.wb{width:62.720000pt;}
.w15{width:64.192000pt;}
.w11{width:64.800000pt;}
.wc{width:64.992000pt;}
.w19{width:67.232000pt;}
.w17{width:70.752000pt;}
.w4{width:74.752000pt;}
.w5{width:81.920000pt;}
.w14{width:95.520000pt;}
.wd{width:96.832000pt;}
.w13{width:99.552000pt;}
.we{width:103.040000pt;}
.wa{width:127.712000pt;}
.w10{width:133.786667pt;}
.w18{width:191.546667pt;}
.w8{width:222.426667pt;}
.w9{width:238.306667pt;}
.w7{width:322.146667pt;}
.w1{width:793.333333pt;}
.w2{width:793.439988pt;}
.w0{width:793.440000pt;}
.x0{left:0.000000pt;}
.xb{left:3.840000pt;}
.x7{left:5.760000pt;}
.x4{left:7.360000pt;}
.x9{left:9.440000pt;}
.x11{left:11.680000pt;}
.x29{left:13.120000pt;}
.x13{left:14.400000pt;}
.xc{left:15.680000pt;}
.x3a{left:16.800000pt;}
.xf{left:18.400000pt;}
.x2b{left:20.480000pt;}
.x28{left:21.760000pt;}
.x25{left:24.320000pt;}
.x31{left:26.240000pt;}
.x24{left:27.200000pt;}
.xd{left:29.440000pt;}
.x22{left:30.746667pt;}
.x20{left:31.680000pt;}
.x10{left:32.960000pt;}
.x40{left:34.080000pt;}
.x23{left:35.066667pt;}
.xe{left:36.960000pt;}
.x35{left:39.680000pt;}
.x12{left:40.960000pt;}
.x2a{left:51.514667pt;}
.x26{left:53.594667pt;}
.x39{left:58.880000pt;}
.x27{left:62.874667pt;}
.x47{left:77.786667pt;}
.x1c{left:85.434667pt;}
.x1e{left:88.506667pt;}
.x1{left:113.471988pt;}
.x17{left:132.671988pt;}
.x3{left:137.466655pt;}
.x48{left:142.746655pt;}
.x2{left:161.466655pt;}
.x5{left:173.306667pt;}
.x34{left:187.066667pt;}
.x41{left:214.106655pt;}
.x3b{left:219.106655pt;}
.x1b{left:221.186655pt;}
.x43{left:227.266655pt;}
.x45{left:237.506667pt;}
.x16{left:246.626655pt;}
.x6{left:248.066667pt;}
.x3c{left:250.946667pt;}
.x33{left:266.306655pt;}
.x2c{left:269.826655pt;}
.x32{left:287.746655pt;}
.x2e{left:289.826655pt;}
.x14{left:295.426655pt;}
.x2f{left:296.866667pt;}
.x18{left:309.506655pt;}
.x8{left:329.986667pt;}
.x1d{left:335.906667pt;}
.x3d{left:347.106667pt;}
.x49{left:365.826655pt;}
.x36{left:380.253333pt;}
.xa{left:382.813333pt;}
.x30{left:393.693333pt;}
.x3e{left:411.293333pt;}
.x19{left:420.733322pt;}
.x37{left:445.053333pt;}
.x3f{left:471.933333pt;}
.x46{left:488.893333pt;}
.x38{left:506.813333pt;}
.x1f{left:574.213333pt;}
.x2d{left:589.573322pt;}
.x44{left:619.013322pt;}
.x21{left:636.933333pt;}
.x1a{left:656.773322pt;}
.x42{left:686.079988pt;}
.x15{left:728.159988pt;}
}




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