
    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_c981b1cb317b7cfe262e984c.woff')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_44116ec356fc6a699303c2ba.woff')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_4a85e1e632ec5cc3b3549cf0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_bb7c3bd68d5ddac9a9b9a39e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7fb6b352815258aa23f8c0e4.woff')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_515cdba1dd57b18b0a58ee76.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_648258862d237d7ce151158e.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9d0348a02546b41eeed3c7c4.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-42.480000px;}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-9.480000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.360000px;}
.v1{vertical-align:33.120000px;}
.ls17{letter-spacing:-1.008000px;}
.lsa{letter-spacing:-0.792000px;}
.ls16{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.432000px;}
.lsd{letter-spacing:0.480000px;}
.lsb{letter-spacing:0.540000px;}
.ls1c{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.756000px;}
.ls14{letter-spacing:1.080000px;}
.lse{letter-spacing:1.260000px;}
.ls15{letter-spacing:2.160000px;}
.ls12{letter-spacing:4.320000px;}
.ls18{letter-spacing:5.760000px;}
.ls13{letter-spacing:7.920000px;}
.ls7{letter-spacing:10.800000px;}
.ls1a{letter-spacing:33.960000px;}
.ls6{letter-spacing:197.976000px;}
.ls9{letter-spacing:201.036000px;}
.ls0{letter-spacing:675.540000px;}
.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;}
}
.wsc{word-spacing:-18.720000px;}
.ws5{word-spacing:-18.432000px;}
.ws4{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.280000px;}
.ws6{word-spacing:-17.208000px;}
.ws1{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-2.148000px;}
._0{margin-left:-1.080000px;}
._1{width:1.008000px;}
._a{width:2.160000px;}
._b{width:3.228000px;}
._e{width:4.392000px;}
._8{width:5.976000px;}
._9{width:7.392000px;}
._3{width:8.424000px;}
._12{width:9.792000px;}
._11{width:11.592000px;}
._c{width:12.888000px;}
._d{width:14.112000px;}
._6{width:15.672000px;}
._7{width:16.728000px;}
._14{width:19.008000px;}
._15{width:20.232000px;}
._21{width:21.648000px;}
._1f{width:22.752000px;}
._4{width:23.880000px;}
._5{width:24.984000px;}
._17{width:26.472000px;}
._16{width:27.480000px;}
._18{width:28.680000px;}
._1e{width:29.688000px;}
._22{width:31.116000px;}
._13{width:32.532000px;}
._f{width:33.912000px;}
._10{width:35.652000px;}
._24{width:65.700000px;}
._1d{width:69.808080px;}
._1b{width:91.516080px;}
._1c{width:97.456080px;}
._23{width:137.520000px;}
._1a{width:193.944000px;}
._19{width:197.976000px;}
._20{width:1002.396000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y140{bottom:20.145000px;}
.y12d{bottom:20.160000px;}
.y119{bottom:20.190000px;}
.y142{bottom:20.325000px;}
.y117{bottom:20.340000px;}
.y123{bottom:20.505000px;}
.y12a{bottom:20.520000px;}
.y11c{bottom:20.550000px;}
.y120{bottom:20.685000px;}
.y128{bottom:20.700000px;}
.y148{bottom:20.745000px;}
.y6{bottom:47.340000px;}
.y141{bottom:51.285000px;}
.y122{bottom:51.465000px;}
.y116{bottom:51.480000px;}
.y130{bottom:51.525000px;}
.y11e{bottom:51.645000px;}
.y126{bottom:51.660000px;}
.y12f{bottom:51.705000px;}
.y11f{bottom:51.825000px;}
.y127{bottom:51.840000px;}
.y5{bottom:65.340000px;}
.y115{bottom:82.440000px;}
.y133{bottom:82.620000px;}
.y132{bottom:82.800000px;}
.y114{bottom:90.720000px;}
.y13e{bottom:95.025000px;}
.y113{bottom:113.580000px;}
.y145{bottom:115.380000px;}
.y2b{bottom:122.760000px;}
.ycd{bottom:129.420000px;}
.y125{bottom:130.680000px;}
.y11a{bottom:131.760000px;}
.y85{bottom:131.940000px;}
.y105{bottom:133.020000px;}
.y4b{bottom:142.740000px;}
.y112{bottom:144.540000px;}
.yf0{bottom:150.480000px;}
.y6b{bottom:152.280000px;}
.y2a{bottom:157.680000px;}
.y144{bottom:158.400000px;}
.ycc{bottom:160.380000px;}
.y84{bottom:162.900000px;}
.yb7{bottom:167.220000px;}
.y9e{bottom:168.660000px;}
.y16a{bottom:170.280000px;}
.y104{bottom:173.520000px;}
.y4a{bottom:173.700000px;}
.y111{bottom:175.680000px;}
.yef{bottom:181.620000px;}
.y6a{bottom:183.420000px;}
.yd9{bottom:191.520000px;}
.y29{bottom:192.780000px;}
.y83{bottom:194.040000px;}
.yb6{bottom:198.360000px;}
.ycb{bottom:200.520000px;}
.y143{bottom:201.420000px;}
.y103{bottom:204.510000px;}
.y49{bottom:204.870000px;}
.y124{bottom:204.885000px;}
.y10f{bottom:206.490000px;}
.y110{bottom:206.670000px;}
.y9d{bottom:208.650000px;}
.yee{bottom:212.610000px;}
.y69{bottom:214.410000px;}
.yd8{bottom:222.510000px;}
.y82{bottom:225.030000px;}
.y28{bottom:226.650000px;}
.yb5{bottom:229.350000px;}
.yca{bottom:231.510000px;}
.y159{bottom:232.410000px;}
.y102{bottom:235.650000px;}
.y48{bottom:235.830000px;}
.yed{bottom:243.750000px;}
.y13d{bottom:245.205000px;}
.y68{bottom:245.550000px;}
.y9c{bottom:246.810000px;}
.y81{bottom:256.170000px;}
.yb4{bottom:260.490000px;}
.yd7{bottom:262.290000px;}
.yc9{bottom:262.650000px;}
.y158{bottom:263.550000px;}
.y27{bottom:266.610000px;}
.y47{bottom:266.970000px;}
.y67{bottom:276.510000px;}
.y121{bottom:279.045000px;}
.y9b{bottom:281.910000px;}
.yec{bottom:283.350000px;}
.y80{bottom:287.130000px;}
.yc8{bottom:293.610000px;}
.y157{bottom:294.510000px;}
.y26{bottom:297.750000px;}
.y46{bottom:297.930000px;}
.yb3{bottom:300.090000px;}
.yd6{bottom:302.610000px;}
.y101{bottom:306.750000px;}
.y66{bottom:307.650000px;}
.y9a{bottom:314.850000px;}
.y7f{bottom:317.910000px;}
.y13f{bottom:320.085000px;}
.yeb{bottom:323.490000px;}
.y156{bottom:325.470000px;}
.y169{bottom:325.650000px;}
.y25{bottom:328.710000px;}
.yc7{bottom:333.750000px;}
.y100{bottom:337.710000px;}
.y45{bottom:338.070000px;}
.y65{bottom:338.610000px;}
.yb2{bottom:340.590000px;}
.y7e{bottom:351.030000px;}
.y11d{bottom:353.025000px;}
.y99{bottom:354.810000px;}
.y168{bottom:356.610000px;}
.y24{bottom:359.670000px;}
.yea{bottom:363.810000px;}
.yc6{bottom:364.710000px;}
.yff{bottom:368.850000px;}
.y44{bottom:369.030000px;}
.y64{bottom:369.750000px;}
.yb1{bottom:371.550000px;}
.yd5{bottom:372.990000px;}
.y155{bottom:377.130000px;}
.y13c{bottom:378.570000px;}
.y7d{bottom:382.170000px;}
.y167{bottom:387.750000px;}
.y23{bottom:390.810000px;}
.y98{bottom:394.950000px;}
.yc5{bottom:395.850000px;}
.yfe{bottom:399.810000px;}
.y43{bottom:400.170000px;}
.y154{bottom:408.630000px;}
.y63{bottom:409.710000px;}
.yb0{bottom:411.510000px;}
.y7c{bottom:413.130000px;}
.y13b{bottom:415.290000px;}
.y166{bottom:418.710000px;}
.y22{bottom:421.770000px;}
.yc4{bottom:426.810000px;}
.y11b{bottom:427.185000px;}
.y42{bottom:431.130000px;}
.y97{bottom:434.910000px;}
.yfd{bottom:439.635000px;}
.y153{bottom:440.355000px;}
.y62{bottom:440.895000px;}
.yaf{bottom:442.695000px;}
.y7b{bottom:444.315000px;}
.y13a{bottom:446.295000px;}
.y165{bottom:449.895000px;}
.y21{bottom:452.955000px;}
.yc3{bottom:457.995000px;}
.y41{bottom:462.315000px;}
.ye9{bottom:466.095000px;}
.y10e{bottom:470.955000px;}
.y152{bottom:471.495000px;}
.y61{bottom:471.855000px;}
.yae{bottom:473.655000px;}
.y96{bottom:475.095000px;}
.y7a{bottom:475.275000px;}
.yfc{bottom:479.955000px;}
.y164{bottom:480.855000px;}
.y139{bottom:483.375000px;}
.y20{bottom:483.915000px;}
.y40{bottom:493.275000px;}
.yc2{bottom:497.595000px;}
.y151{bottom:502.455000px;}
.y60{bottom:502.995000px;}
.yad{bottom:504.795000px;}
.ye8{bottom:505.695000px;}
.yd4{bottom:506.235000px;}
.y79{bottom:506.415000px;}
.yfb{bottom:511.095000px;}
.y163{bottom:511.995000px;}
.y95{bottom:514.695000px;}
.y1f{bottom:515.055000px;}
.y138{bottom:520.275000px;}
.y3f{bottom:524.415000px;}
.yd3{bottom:529.095000px;}
.y150{bottom:533.595000px;}
.y5f{bottom:533.955000px;}
.y78{bottom:537.375000px;}
.yc1{bottom:537.735000px;}
.yfa{bottom:542.055000px;}
.y162{bottom:542.955000px;}
.yac{bottom:544.395000px;}
.y1e{bottom:546.015000px;}
.ye7{bottom:546.195000px;}
.y94{bottom:555.195000px;}
.y3e{bottom:555.375000px;}
.y137{bottom:557.715000px;}
.yd2{bottom:560.055000px;}
.y14f{bottom:564.555000px;}
.y5e{bottom:565.095000px;}
.y77{bottom:568.515000px;}
.yf9{bottom:573.195000px;}
.y161{bottom:574.095000px;}
.y1d{bottom:577.155000px;}
.yc0{bottom:578.055000px;}
.yab{bottom:584.535000px;}
.y3d{bottom:586.515000px;}
.y136{bottom:589.035000px;}
.yd1{bottom:591.195000px;}
.y93{bottom:595.155000px;}
.y14e{bottom:595.515000px;}
.y5d{bottom:596.055000px;}
.y76{bottom:599.475000px;}
.y160{bottom:605.055000px;}
.y135{bottom:606.495000px;}
.y1c{bottom:608.115000px;}
.ybf{bottom:609.195000px;}
.yf8{bottom:613.155000px;}
.ye6{bottom:617.115000px;}
.y3c{bottom:617.475000px;}
.yaa{bottom:624.855000px;}
.y14d{bottom:626.475000px;}
.y5c{bottom:627.195000px;}
.y75{bottom:630.615000px;}
.yd0{bottom:630.795000px;}
.y92{bottom:635.115000px;}
.y15f{bottom:636.195000px;}
.ybe{bottom:640.155000px;}
.yf7{bottom:644.115000px;}
.y1b{bottom:648.075000px;}
.ye5{bottom:648.255000px;}
.y3b{bottom:648.615000px;}
.y134{bottom:649.695000px;}
.ya9{bottom:655.995000px;}
.y118{bottom:657.255000px;}
.y5b{bottom:658.155000px;}
.y74{bottom:661.575000px;}
.y15e{bottom:667.155000px;}
.ybd{bottom:671.115000px;}
.y91{bottom:675.285000px;}
.y14c{bottom:675.825000px;}
.y1a{bottom:678.885000px;}
.y3a{bottom:679.605000px;}
.ye4{bottom:687.885000px;}
.y5a{bottom:689.145000px;}
.y73{bottom:692.745000px;}
.ya8{bottom:695.625000px;}
.y15d{bottom:698.145000px;}
.y19{bottom:699.585000px;}
.ybc{bottom:702.285000px;}
.yf6{bottom:706.245000px;}
.y90{bottom:714.885000px;}
.y10d{bottom:715.785000px;}
.y14b{bottom:718.845000px;}
.y39{bottom:719.745000px;}
.y18{bottom:719.925000px;}
.y59{bottom:720.285000px;}
.y72{bottom:723.705000px;}
.ye3{bottom:728.025000px;}
.y15c{bottom:729.285000px;}
.ybb{bottom:733.245000px;}
.ya7{bottom:736.125000px;}
.y17{bottom:739.725000px;}
.yf5{bottom:746.025000px;}
.y38{bottom:750.705000px;}
.y58{bottom:751.245000px;}
.y10c{bottom:752.505000px;}
.y71{bottom:754.845000px;}
.y8f{bottom:755.025000px;}
.y15b{bottom:760.245000px;}
.y14a{bottom:761.865000px;}
.ycf{bottom:764.385000px;}
.ya6{bottom:767.085000px;}
.y16{bottom:767.445000px;}
.ye2{bottom:768.345000px;}
.yba{bottom:773.385000px;}
.y15{bottom:778.785000px;}
.y37{bottom:781.845000px;}
.y57{bottom:782.385000px;}
.y10b{bottom:783.645000px;}
.y70{bottom:785.805000px;}
.yf4{bottom:785.985000px;}
.y15a{bottom:791.385000px;}
.y8e{bottom:794.985000px;}
.y131{bottom:797.865000px;}
.y14{bottom:798.225000px;}
.ye1{bottom:799.485000px;}
.yb9{bottom:804.345000px;}
.y149{bottom:804.885000px;}
.ya5{bottom:807.225000px;}
.y36{bottom:812.805000px;}
.y6f{bottom:816.945000px;}
.y10a{bottom:820.905000px;}
.y56{bottom:822.345000px;}
.y13{bottom:826.125000px;}
.yf3{bottom:826.485000px;}
.y8d{bottom:835.485000px;}
.y12{bottom:837.465000px;}
.ya4{bottom:838.185000px;}
.ye0{bottom:839.445000px;}
.y6e{bottom:847.905000px;}
.y109{bottom:852.225000px;}
.y35{bottom:852.945000px;}
.y55{bottom:853.485000px;}
.y11{bottom:857.085000px;}
.yf2{bottom:857.445000px;}
.y8c{bottom:866.445000px;}
.ydf{bottom:870.585000px;}
.y12e{bottom:872.025000px;}
.y10{bottom:876.705000px;}
.ya3{bottom:877.965000px;}
.y6d{bottom:879.045000px;}
.y108{bottom:883.545000px;}
.y34{bottom:883.905000px;}
.y54{bottom:884.445000px;}
.y147{bottom:890.925000px;}
.y8b{bottom:897.585000px;}
.yf{bottom:904.425000px;}
.y6c{bottom:910.050000px;}
.yde{bottom:910.230000px;}
.y107{bottom:914.910000px;}
.y33{bottom:915.090000px;}
.y53{bottom:915.630000px;}
.ye{bottom:915.990000px;}
.ya2{bottom:917.970000px;}
.y16b{bottom:925.350000px;}
.y8a{bottom:928.590000px;}
.y146{bottom:934.170000px;}
.yd{bottom:936.150000px;}
.yb8{bottom:937.230000px;}
.y32{bottom:946.050000px;}
.y106{bottom:946.230000px;}
.y52{bottom:946.590000px;}
.ya1{bottom:947.130000px;}
.ydd{bottom:950.370000px;}
.yc{bottom:955.770000px;}
.y89{bottom:959.730000px;}
.yce{bottom:968.370000px;}
.ya0{bottom:977.010000px;}
.y31{bottom:977.190000px;}
.y51{bottom:977.730000px;}
.yb{bottom:990.150000px;}
.ydc{bottom:990.330000px;}
.y88{bottom:990.690000px;}
.yf1{bottom:999.330000px;}
.y30{bottom:1008.150000px;}
.y9f{bottom:1008.510000px;}
.y50{bottom:1008.690000px;}
.y12c{bottom:1020.210000px;}
.ya{bottom:1021.290000px;}
.y87{bottom:1021.830000px;}
.ydb{bottom:1030.830000px;}
.y2f{bottom:1039.110000px;}
.y4f{bottom:1039.830000px;}
.y86{bottom:1061.430000px;}
.yda{bottom:1061.790000px;}
.y12b{bottom:1063.230000px;}
.y2e{bottom:1070.250000px;}
.y4e{bottom:1070.790000px;}
.y9{bottom:1072.770000px;}
.y2d{bottom:1101.390000px;}
.y4d{bottom:1101.930000px;}
.y129{bottom:1106.250000px;}
.y8{bottom:1108.950000px;}
.y2c{bottom:1132.530000px;}
.y4c{bottom:1132.890000px;}
.y7{bottom:1137.030000px;}
.y4{bottom:1153.080000px;}
.y3{bottom:1170.720000px;}
.y2{bottom:1191.780000px;}
.y1{bottom:1212.120000px;}
.h14{height:43.005000px;}
.h1c{height:43.018500px;}
.h1b{height:43.020000px;}
.h10{height:43.041000px;}
.he{height:43.050000px;}
.h1a{height:43.056000px;}
.h18{height:43.185000px;}
.h1d{height:43.222500px;}
.h8{height:47.344922px;}
.hd{height:48.616875px;}
.h9{height:50.273438px;}
.h4{height:58.651172px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.h12{height:73.965000px;}
.h15{height:74.002500px;}
.h1e{height:74.004654px;}
.h11{height:74.145000px;}
.h16{height:74.160000px;}
.h13{height:74.196000px;}
.h7{height:76.317188px;}
.ha{height:80.464922px;}
.hb{height:80.584922px;}
.h6{height:81.736875px;}
.h5{height:84.898125px;}
.h17{height:105.120000px;}
.h19{height:117.885000px;}
.hf{height:185.565000px;}
.hc{height:229.350000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w8{width:42.105000px;}
.w7{width:48.405000px;}
.w9{width:54.201000px;}
.w4{width:56.376000px;}
.w5{width:57.045000px;}
.w3{width:62.100000px;}
.wa{width:70.725000px;}
.w10{width:87.861000px;}
.we{width:90.036000px;}
.wf{width:90.885000px;}
.w11{width:95.745000px;}
.w6{width:167.055000px;}
.wc{width:180.930000px;}
.wd{width:183.615000px;}
.w2{width:240.319500px;}
.wb{width:329.059500px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.089500px;}
.x25{left:9.180000px;}
.x1d{left:10.980000px;}
.x1a{left:12.060000px;}
.x24{left:13.680000px;}
.x29{left:15.300000px;}
.x21{left:17.445000px;}
.x27{left:19.605000px;}
.x2b{left:21.780000px;}
.x20{left:23.925000px;}
.x34{left:25.185000px;}
.x2a{left:26.280000px;}
.x1b{left:28.080000px;}
.x2c{left:30.960000px;}
.x35{left:33.300000px;}
.x2d{left:35.280000px;}
.x36{left:36.360000px;}
.x30{left:38.325000px;}
.x37{left:41.565000px;}
.x33{left:42.660000px;}
.x38{left:45.540000px;}
.x18{left:99.946500px;}
.x4{left:108.036000px;}
.x17{left:115.596000px;}
.x9{left:117.936000px;}
.x39{left:135.036000px;}
.x7{left:146.556000px;}
.x3a{left:162.030000px;}
.x16{left:184.170000px;}
.xd{left:190.290000px;}
.x14{left:196.410000px;}
.x11{left:202.350000px;}
.x2{left:224.490000px;}
.x12{left:236.910000px;}
.x3{left:247.710000px;}
.xe{left:263.190000px;}
.xb{left:299.775000px;}
.x8{left:312.915000px;}
.xf{left:335.055000px;}
.xc{left:340.995000px;}
.x1{left:350.355000px;}
.x13{left:364.935000px;}
.x15{left:389.055000px;}
.x1c{left:402.375000px;}
.x2e{left:428.835000px;}
.x5{left:433.155000px;}
.x6{left:446.655000px;}
.xa{left:450.075000px;}
.x1e{left:464.475000px;}
.x10{left:469.335000px;}
.x31{left:518.880000px;}
.x1f{left:520.860000px;}
.x22{left:577.920000px;}
.x2f{left:609.780000px;}
.x26{left:620.040000px;}
.x28{left:674.250000px;}
.x32{left:697.650000px;}
.x23{left:744.990000px;}
@media print{
.v4{vertical-align:-37.760000pt;}
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-8.426667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.320000pt;}
.v1{vertical-align:29.440000pt;}
.ls17{letter-spacing:-0.896000pt;}
.lsa{letter-spacing:-0.704000pt;}
.ls16{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.384000pt;}
.lsd{letter-spacing:0.426667pt;}
.lsb{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.672000pt;}
.ls14{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.120000pt;}
.ls15{letter-spacing:1.920000pt;}
.ls12{letter-spacing:3.840000pt;}
.ls18{letter-spacing:5.120000pt;}
.ls13{letter-spacing:7.040000pt;}
.ls7{letter-spacing:9.600000pt;}
.ls1a{letter-spacing:30.186667pt;}
.ls6{letter-spacing:175.978667pt;}
.ls9{letter-spacing:178.698667pt;}
.ls0{letter-spacing:600.480000pt;}
.wsc{word-spacing:-16.640000pt;}
.ws5{word-spacing:-16.384000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.360000pt;}
.ws6{word-spacing:-15.296000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-1.909333pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.896000pt;}
._a{width:1.920000pt;}
._b{width:2.869333pt;}
._e{width:3.904000pt;}
._8{width:5.312000pt;}
._9{width:6.570667pt;}
._3{width:7.488000pt;}
._12{width:8.704000pt;}
._11{width:10.304000pt;}
._c{width:11.456000pt;}
._d{width:12.544000pt;}
._6{width:13.930667pt;}
._7{width:14.869333pt;}
._14{width:16.896000pt;}
._15{width:17.984000pt;}
._21{width:19.242667pt;}
._1f{width:20.224000pt;}
._4{width:21.226667pt;}
._5{width:22.208000pt;}
._17{width:23.530667pt;}
._16{width:24.426667pt;}
._18{width:25.493333pt;}
._1e{width:26.389333pt;}
._22{width:27.658667pt;}
._13{width:28.917333pt;}
._f{width:30.144000pt;}
._10{width:31.690667pt;}
._24{width:58.400000pt;}
._1d{width:62.051627pt;}
._1b{width:81.347627pt;}
._1c{width:86.627627pt;}
._23{width:122.240000pt;}
._1a{width:172.394667pt;}
._19{width:175.978667pt;}
._20{width:891.018667pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y140{bottom:17.906667pt;}
.y12d{bottom:17.920000pt;}
.y119{bottom:17.946667pt;}
.y142{bottom:18.066667pt;}
.y117{bottom:18.080000pt;}
.y123{bottom:18.226667pt;}
.y12a{bottom:18.240000pt;}
.y11c{bottom:18.266667pt;}
.y120{bottom:18.386667pt;}
.y128{bottom:18.400000pt;}
.y148{bottom:18.440000pt;}
.y6{bottom:42.080000pt;}
.y141{bottom:45.586667pt;}
.y122{bottom:45.746667pt;}
.y116{bottom:45.760000pt;}
.y130{bottom:45.800000pt;}
.y11e{bottom:45.906667pt;}
.y126{bottom:45.920000pt;}
.y12f{bottom:45.960000pt;}
.y11f{bottom:46.066667pt;}
.y127{bottom:46.080000pt;}
.y5{bottom:58.080000pt;}
.y115{bottom:73.280000pt;}
.y133{bottom:73.440000pt;}
.y132{bottom:73.600000pt;}
.y114{bottom:80.640000pt;}
.y13e{bottom:84.466667pt;}
.y113{bottom:100.960000pt;}
.y145{bottom:102.560000pt;}
.y2b{bottom:109.120000pt;}
.ycd{bottom:115.040000pt;}
.y125{bottom:116.160000pt;}
.y11a{bottom:117.120000pt;}
.y85{bottom:117.280000pt;}
.y105{bottom:118.240000pt;}
.y4b{bottom:126.880000pt;}
.y112{bottom:128.480000pt;}
.yf0{bottom:133.760000pt;}
.y6b{bottom:135.360000pt;}
.y2a{bottom:140.160000pt;}
.y144{bottom:140.800000pt;}
.ycc{bottom:142.560000pt;}
.y84{bottom:144.800000pt;}
.yb7{bottom:148.640000pt;}
.y9e{bottom:149.920000pt;}
.y16a{bottom:151.360000pt;}
.y104{bottom:154.240000pt;}
.y4a{bottom:154.400000pt;}
.y111{bottom:156.160000pt;}
.yef{bottom:161.440000pt;}
.y6a{bottom:163.040000pt;}
.yd9{bottom:170.240000pt;}
.y29{bottom:171.360000pt;}
.y83{bottom:172.480000pt;}
.yb6{bottom:176.320000pt;}
.ycb{bottom:178.240000pt;}
.y143{bottom:179.040000pt;}
.y103{bottom:181.786667pt;}
.y49{bottom:182.106667pt;}
.y124{bottom:182.120000pt;}
.y10f{bottom:183.546667pt;}
.y110{bottom:183.706667pt;}
.y9d{bottom:185.466667pt;}
.yee{bottom:188.986667pt;}
.y69{bottom:190.586667pt;}
.yd8{bottom:197.786667pt;}
.y82{bottom:200.026667pt;}
.y28{bottom:201.466667pt;}
.yb5{bottom:203.866667pt;}
.yca{bottom:205.786667pt;}
.y159{bottom:206.586667pt;}
.y102{bottom:209.466667pt;}
.y48{bottom:209.626667pt;}
.yed{bottom:216.666667pt;}
.y13d{bottom:217.960000pt;}
.y68{bottom:218.266667pt;}
.y9c{bottom:219.386667pt;}
.y81{bottom:227.706667pt;}
.yb4{bottom:231.546667pt;}
.yd7{bottom:233.146667pt;}
.yc9{bottom:233.466667pt;}
.y158{bottom:234.266667pt;}
.y27{bottom:236.986667pt;}
.y47{bottom:237.306667pt;}
.y67{bottom:245.786667pt;}
.y121{bottom:248.040000pt;}
.y9b{bottom:250.586667pt;}
.yec{bottom:251.866667pt;}
.y80{bottom:255.226667pt;}
.yc8{bottom:260.986667pt;}
.y157{bottom:261.786667pt;}
.y26{bottom:264.666667pt;}
.y46{bottom:264.826667pt;}
.yb3{bottom:266.746667pt;}
.yd6{bottom:268.986667pt;}
.y101{bottom:272.666667pt;}
.y66{bottom:273.466667pt;}
.y9a{bottom:279.866667pt;}
.y7f{bottom:282.586667pt;}
.y13f{bottom:284.520000pt;}
.yeb{bottom:287.546667pt;}
.y156{bottom:289.306667pt;}
.y169{bottom:289.466667pt;}
.y25{bottom:292.186667pt;}
.yc7{bottom:296.666667pt;}
.y100{bottom:300.186667pt;}
.y45{bottom:300.506667pt;}
.y65{bottom:300.986667pt;}
.yb2{bottom:302.746667pt;}
.y7e{bottom:312.026667pt;}
.y11d{bottom:313.800000pt;}
.y99{bottom:315.386667pt;}
.y168{bottom:316.986667pt;}
.y24{bottom:319.706667pt;}
.yea{bottom:323.386667pt;}
.yc6{bottom:324.186667pt;}
.yff{bottom:327.866667pt;}
.y44{bottom:328.026667pt;}
.y64{bottom:328.666667pt;}
.yb1{bottom:330.266667pt;}
.yd5{bottom:331.546667pt;}
.y155{bottom:335.226667pt;}
.y13c{bottom:336.506667pt;}
.y7d{bottom:339.706667pt;}
.y167{bottom:344.666667pt;}
.y23{bottom:347.386667pt;}
.y98{bottom:351.066667pt;}
.yc5{bottom:351.866667pt;}
.yfe{bottom:355.386667pt;}
.y43{bottom:355.706667pt;}
.y154{bottom:363.226667pt;}
.y63{bottom:364.186667pt;}
.yb0{bottom:365.786667pt;}
.y7c{bottom:367.226667pt;}
.y13b{bottom:369.146667pt;}
.y166{bottom:372.186667pt;}
.y22{bottom:374.906667pt;}
.yc4{bottom:379.386667pt;}
.y11b{bottom:379.720000pt;}
.y42{bottom:383.226667pt;}
.y97{bottom:386.586667pt;}
.yfd{bottom:390.786667pt;}
.y153{bottom:391.426667pt;}
.y62{bottom:391.906667pt;}
.yaf{bottom:393.506667pt;}
.y7b{bottom:394.946667pt;}
.y13a{bottom:396.706667pt;}
.y165{bottom:399.906667pt;}
.y21{bottom:402.626667pt;}
.yc3{bottom:407.106667pt;}
.y41{bottom:410.946667pt;}
.ye9{bottom:414.306667pt;}
.y10e{bottom:418.626667pt;}
.y152{bottom:419.106667pt;}
.y61{bottom:419.426667pt;}
.yae{bottom:421.026667pt;}
.y96{bottom:422.306667pt;}
.y7a{bottom:422.466667pt;}
.yfc{bottom:426.626667pt;}
.y164{bottom:427.426667pt;}
.y139{bottom:429.666667pt;}
.y20{bottom:430.146667pt;}
.y40{bottom:438.466667pt;}
.yc2{bottom:442.306667pt;}
.y151{bottom:446.626667pt;}
.y60{bottom:447.106667pt;}
.yad{bottom:448.706667pt;}
.ye8{bottom:449.506667pt;}
.yd4{bottom:449.986667pt;}
.y79{bottom:450.146667pt;}
.yfb{bottom:454.306667pt;}
.y163{bottom:455.106667pt;}
.y95{bottom:457.506667pt;}
.y1f{bottom:457.826667pt;}
.y138{bottom:462.466667pt;}
.y3f{bottom:466.146667pt;}
.yd3{bottom:470.306667pt;}
.y150{bottom:474.306667pt;}
.y5f{bottom:474.626667pt;}
.y78{bottom:477.666667pt;}
.yc1{bottom:477.986667pt;}
.yfa{bottom:481.826667pt;}
.y162{bottom:482.626667pt;}
.yac{bottom:483.906667pt;}
.y1e{bottom:485.346667pt;}
.ye7{bottom:485.506667pt;}
.y94{bottom:493.506667pt;}
.y3e{bottom:493.666667pt;}
.y137{bottom:495.746667pt;}
.yd2{bottom:497.826667pt;}
.y14f{bottom:501.826667pt;}
.y5e{bottom:502.306667pt;}
.y77{bottom:505.346667pt;}
.yf9{bottom:509.506667pt;}
.y161{bottom:510.306667pt;}
.y1d{bottom:513.026667pt;}
.yc0{bottom:513.826667pt;}
.yab{bottom:519.586667pt;}
.y3d{bottom:521.346667pt;}
.y136{bottom:523.586667pt;}
.yd1{bottom:525.506667pt;}
.y93{bottom:529.026667pt;}
.y14e{bottom:529.346667pt;}
.y5d{bottom:529.826667pt;}
.y76{bottom:532.866667pt;}
.y160{bottom:537.826667pt;}
.y135{bottom:539.106667pt;}
.y1c{bottom:540.546667pt;}
.ybf{bottom:541.506667pt;}
.yf8{bottom:545.026667pt;}
.ye6{bottom:548.546667pt;}
.y3c{bottom:548.866667pt;}
.yaa{bottom:555.426667pt;}
.y14d{bottom:556.866667pt;}
.y5c{bottom:557.506667pt;}
.y75{bottom:560.546667pt;}
.yd0{bottom:560.706667pt;}
.y92{bottom:564.546667pt;}
.y15f{bottom:565.506667pt;}
.ybe{bottom:569.026667pt;}
.yf7{bottom:572.546667pt;}
.y1b{bottom:576.066667pt;}
.ye5{bottom:576.226667pt;}
.y3b{bottom:576.546667pt;}
.y134{bottom:577.506667pt;}
.ya9{bottom:583.106667pt;}
.y118{bottom:584.226667pt;}
.y5b{bottom:585.026667pt;}
.y74{bottom:588.066667pt;}
.y15e{bottom:593.026667pt;}
.ybd{bottom:596.546667pt;}
.y91{bottom:600.253333pt;}
.y14c{bottom:600.733333pt;}
.y1a{bottom:603.453333pt;}
.y3a{bottom:604.093333pt;}
.ye4{bottom:611.453333pt;}
.y5a{bottom:612.573333pt;}
.y73{bottom:615.773333pt;}
.ya8{bottom:618.333333pt;}
.y15d{bottom:620.573333pt;}
.y19{bottom:621.853333pt;}
.ybc{bottom:624.253333pt;}
.yf6{bottom:627.773333pt;}
.y90{bottom:635.453333pt;}
.y10d{bottom:636.253333pt;}
.y14b{bottom:638.973333pt;}
.y39{bottom:639.773333pt;}
.y18{bottom:639.933333pt;}
.y59{bottom:640.253333pt;}
.y72{bottom:643.293333pt;}
.ye3{bottom:647.133333pt;}
.y15c{bottom:648.253333pt;}
.ybb{bottom:651.773333pt;}
.ya7{bottom:654.333333pt;}
.y17{bottom:657.533333pt;}
.yf5{bottom:663.133333pt;}
.y38{bottom:667.293333pt;}
.y58{bottom:667.773333pt;}
.y10c{bottom:668.893333pt;}
.y71{bottom:670.973333pt;}
.y8f{bottom:671.133333pt;}
.y15b{bottom:675.773333pt;}
.y14a{bottom:677.213333pt;}
.ycf{bottom:679.453333pt;}
.ya6{bottom:681.853333pt;}
.y16{bottom:682.173333pt;}
.ye2{bottom:682.973333pt;}
.yba{bottom:687.453333pt;}
.y15{bottom:692.253333pt;}
.y37{bottom:694.973333pt;}
.y57{bottom:695.453333pt;}
.y10b{bottom:696.573333pt;}
.y70{bottom:698.493333pt;}
.yf4{bottom:698.653333pt;}
.y15a{bottom:703.453333pt;}
.y8e{bottom:706.653333pt;}
.y131{bottom:709.213333pt;}
.y14{bottom:709.533333pt;}
.ye1{bottom:710.653333pt;}
.yb9{bottom:714.973333pt;}
.y149{bottom:715.453333pt;}
.ya5{bottom:717.533333pt;}
.y36{bottom:722.493333pt;}
.y6f{bottom:726.173333pt;}
.y10a{bottom:729.693333pt;}
.y56{bottom:730.973333pt;}
.y13{bottom:734.333333pt;}
.yf3{bottom:734.653333pt;}
.y8d{bottom:742.653333pt;}
.y12{bottom:744.413333pt;}
.ya4{bottom:745.053333pt;}
.ye0{bottom:746.173333pt;}
.y6e{bottom:753.693333pt;}
.y109{bottom:757.533333pt;}
.y35{bottom:758.173333pt;}
.y55{bottom:758.653333pt;}
.y11{bottom:761.853333pt;}
.yf2{bottom:762.173333pt;}
.y8c{bottom:770.173333pt;}
.ydf{bottom:773.853333pt;}
.y12e{bottom:775.133333pt;}
.y10{bottom:779.293333pt;}
.ya3{bottom:780.413333pt;}
.y6d{bottom:781.373333pt;}
.y108{bottom:785.373333pt;}
.y34{bottom:785.693333pt;}
.y54{bottom:786.173333pt;}
.y147{bottom:791.933333pt;}
.y8b{bottom:797.853333pt;}
.yf{bottom:803.933333pt;}
.y6c{bottom:808.933333pt;}
.yde{bottom:809.093333pt;}
.y107{bottom:813.253333pt;}
.y33{bottom:813.413333pt;}
.y53{bottom:813.893333pt;}
.ye{bottom:814.213333pt;}
.ya2{bottom:815.973333pt;}
.y16b{bottom:822.533333pt;}
.y8a{bottom:825.413333pt;}
.y146{bottom:830.373333pt;}
.yd{bottom:832.133333pt;}
.yb8{bottom:833.093333pt;}
.y32{bottom:840.933333pt;}
.y106{bottom:841.093333pt;}
.y52{bottom:841.413333pt;}
.ya1{bottom:841.893333pt;}
.ydd{bottom:844.773333pt;}
.yc{bottom:849.573333pt;}
.y89{bottom:853.093333pt;}
.yce{bottom:860.773333pt;}
.ya0{bottom:868.453333pt;}
.y31{bottom:868.613333pt;}
.y51{bottom:869.093333pt;}
.yb{bottom:880.133333pt;}
.ydc{bottom:880.293333pt;}
.y88{bottom:880.613333pt;}
.yf1{bottom:888.293333pt;}
.y30{bottom:896.133333pt;}
.y9f{bottom:896.453333pt;}
.y50{bottom:896.613333pt;}
.y12c{bottom:906.853333pt;}
.ya{bottom:907.813333pt;}
.y87{bottom:908.293333pt;}
.ydb{bottom:916.293333pt;}
.y2f{bottom:923.653333pt;}
.y4f{bottom:924.293333pt;}
.y86{bottom:943.493333pt;}
.yda{bottom:943.813333pt;}
.y12b{bottom:945.093333pt;}
.y2e{bottom:951.333333pt;}
.y4e{bottom:951.813333pt;}
.y9{bottom:953.573333pt;}
.y2d{bottom:979.013333pt;}
.y4d{bottom:979.493333pt;}
.y129{bottom:983.333333pt;}
.y8{bottom:985.733333pt;}
.y2c{bottom:1006.693333pt;}
.y4c{bottom:1007.013333pt;}
.y7{bottom:1010.693333pt;}
.y4{bottom:1024.960000pt;}
.y3{bottom:1040.640000pt;}
.y2{bottom:1059.360000pt;}
.y1{bottom:1077.440000pt;}
.h14{height:38.226667pt;}
.h1c{height:38.238667pt;}
.h1b{height:38.240000pt;}
.h10{height:38.258667pt;}
.he{height:38.266667pt;}
.h1a{height:38.272000pt;}
.h18{height:38.386667pt;}
.h1d{height:38.420000pt;}
.h8{height:42.084375pt;}
.hd{height:43.215000pt;}
.h9{height:44.687500pt;}
.h4{height:52.134375pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.h12{height:65.746667pt;}
.h15{height:65.780000pt;}
.h1e{height:65.781915pt;}
.h11{height:65.906667pt;}
.h16{height:65.920000pt;}
.h13{height:65.952000pt;}
.h7{height:67.837500pt;}
.ha{height:71.524375pt;}
.hb{height:71.631042pt;}
.h6{height:72.655000pt;}
.h5{height:75.465000pt;}
.h17{height:93.440000pt;}
.h19{height:104.786667pt;}
.hf{height:164.946667pt;}
.hc{height:203.866667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w8{width:37.426667pt;}
.w7{width:43.026667pt;}
.w9{width:48.178667pt;}
.w4{width:50.112000pt;}
.w5{width:50.706667pt;}
.w3{width:55.200000pt;}
.wa{width:62.866667pt;}
.w10{width:78.098667pt;}
.we{width:80.032000pt;}
.wf{width:80.786667pt;}
.w11{width:85.106667pt;}
.w6{width:148.493333pt;}
.wc{width:160.826667pt;}
.wd{width:163.213333pt;}
.w2{width:213.617333pt;}
.wb{width:292.497333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.190667pt;}
.x25{left:8.160000pt;}
.x1d{left:9.760000pt;}
.x1a{left:10.720000pt;}
.x24{left:12.160000pt;}
.x29{left:13.600000pt;}
.x21{left:15.506667pt;}
.x27{left:17.426667pt;}
.x2b{left:19.360000pt;}
.x20{left:21.266667pt;}
.x34{left:22.386667pt;}
.x2a{left:23.360000pt;}
.x1b{left:24.960000pt;}
.x2c{left:27.520000pt;}
.x35{left:29.600000pt;}
.x2d{left:31.360000pt;}
.x36{left:32.320000pt;}
.x30{left:34.066667pt;}
.x37{left:36.946667pt;}
.x33{left:37.920000pt;}
.x38{left:40.480000pt;}
.x18{left:88.841333pt;}
.x4{left:96.032000pt;}
.x17{left:102.752000pt;}
.x9{left:104.832000pt;}
.x39{left:120.032000pt;}
.x7{left:130.272000pt;}
.x3a{left:144.026667pt;}
.x16{left:163.706667pt;}
.xd{left:169.146667pt;}
.x14{left:174.586667pt;}
.x11{left:179.866667pt;}
.x2{left:199.546667pt;}
.x12{left:210.586667pt;}
.x3{left:220.186667pt;}
.xe{left:233.946667pt;}
.xb{left:266.466667pt;}
.x8{left:278.146667pt;}
.xf{left:297.826667pt;}
.xc{left:303.106667pt;}
.x1{left:311.426667pt;}
.x13{left:324.386667pt;}
.x15{left:345.826667pt;}
.x1c{left:357.666667pt;}
.x2e{left:381.186667pt;}
.x5{left:385.026667pt;}
.x6{left:397.026667pt;}
.xa{left:400.066667pt;}
.x1e{left:412.866667pt;}
.x10{left:417.186667pt;}
.x31{left:461.226667pt;}
.x1f{left:462.986667pt;}
.x22{left:513.706667pt;}
.x2f{left:542.026667pt;}
.x26{left:551.146667pt;}
.x28{left:599.333333pt;}
.x32{left:620.133333pt;}
.x23{left:662.213333pt;}
}




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