
    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_61d4cbe802ca4270300833e1.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_06b75c88e3c32415d3ef3825.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1076414245cd78820d46ca8c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.008789;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_9de8e08054e82d3754110541.woff')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_9c15433a79008bb6fb9c987b.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f4823363c59b8b3376e3df47.woff')format("woff");}.ff6{font-family:ff6;line-height:0.923340;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_d3b235483952096da07c9238.woff')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_adb203242b6a5abd55ee99e3.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1fec3f05bc0b1b3642dcd6aa.woff')format("woff");}.ffa{font-family:ffa;line-height:0.923340;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.341280px;}
.ls1{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.720000px;}
.lsa{letter-spacing:7.200000px;}
.ls9{letter-spacing:33.960000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-72.144000px;}
.ws4{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.ws3{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-78.102480px;}
._26{margin-left:-16.560000px;}
._27{margin-left:-9.437760px;}
._23{margin-left:-8.069760px;}
._24{margin-left:-6.048000px;}
._14{margin-left:-4.560000px;}
._6{margin-left:-3.528000px;}
._0{margin-left:-1.578240px;}
._1{width:1.062480px;}
._a{width:2.418000px;}
._5{width:3.548880px;}
._b{width:4.587120px;}
._e{width:5.804400px;}
._f{width:6.912000px;}
._7{width:8.352000px;}
._8{width:9.353520px;}
._9{width:11.088000px;}
._16{width:12.180000px;}
._c{width:13.968000px;}
._d{width:14.993520px;}
._1f{width:16.398480px;}
._15{width:19.512000px;}
._13{width:20.531760px;}
._12{width:21.672000px;}
._1e{width:22.896000px;}
._18{width:24.696000px;}
._19{width:25.937520px;}
._1a{width:27.864000px;}
._1b{width:28.872000px;}
._17{width:30.744000px;}
._10{width:32.760000px;}
._11{width:33.840000px;}
._1c{width:34.848000px;}
._1d{width:36.305520px;}
._21{width:39.119040px;}
._20{width:40.890240px;}
._4{width:81.220080px;}
._2{width:109.380000px;}
._22{width:134.256000px;}
._25{width:1066.104000px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:81.360000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.ya{bottom:-16.199955px;}
.y11c{bottom:-10.125000px;}
.y114{bottom:-10.080000px;}
.ye7{bottom:-9.900000px;}
.y0{bottom:0.000000px;}
.yc4{bottom:3.960000px;}
.y12b{bottom:3.990000px;}
.yd4{bottom:4.005000px;}
.y9{bottom:6.120000px;}
.y2f{bottom:14.940000px;}
.y7{bottom:17.280000px;}
.y14e{bottom:24.660000px;}
.y8{bottom:31.500000px;}
.y6{bottom:57.780000px;}
.y5{bottom:78.516000px;}
.y2e{bottom:116.316000px;}
.ydc{bottom:122.076000px;}
.y56{bottom:123.876000px;}
.yb9{bottom:126.576000px;}
.y129{bottom:128.556000px;}
.y17c{bottom:130.536000px;}
.y79{bottom:131.976000px;}
.y100{bottom:136.116000px;}
.y2d{bottom:137.016000px;}
.y128{bottom:138.636000px;}
.ydb{bottom:142.776000px;}
.y55{bottom:144.576000px;}
.y127{bottom:145.296000px;}
.y9a{bottom:147.816000px;}
.y17b{bottom:151.230000px;}
.y78{bottom:152.670000px;}
.yff{bottom:156.810000px;}
.y2c{bottom:157.710000px;}
.yb8{bottom:163.110000px;}
.yda{bottom:163.470000px;}
.y159{bottom:165.630000px;}
.y126{bottom:165.990000px;}
.y99{bottom:168.510000px;}
.y17a{bottom:171.930000px;}
.y125{bottom:176.250000px;}
.y2b{bottom:178.410000px;}
.y54{bottom:181.110000px;}
.y124{bottom:182.910000px;}
.yb7{bottom:183.810000px;}
.yd9{bottom:184.170000px;}
.y158{bottom:186.330000px;}
.y98{bottom:189.210000px;}
.y77{bottom:191.370000px;}
.y179{bottom:192.630000px;}
.yfe{bottom:198.570000px;}
.y2a{bottom:199.110000px;}
.y53{bottom:201.810000px;}
.y123{bottom:203.610000px;}
.yb6{bottom:204.330000px;}
.yd8{bottom:204.870000px;}
.y157{bottom:207.030000px;}
.y97{bottom:209.910000px;}
.y178{bottom:213.330000px;}
.yfd{bottom:219.270000px;}
.y52{bottom:222.510000px;}
.y122{bottom:224.310000px;}
.yb5{bottom:225.030000px;}
.yd7{bottom:225.570000px;}
.y156{bottom:227.730000px;}
.y76{bottom:227.910000px;}
.y96{bottom:230.610000px;}
.y177{bottom:234.030000px;}
.y1a0{bottom:237.810000px;}
.yfc{bottom:239.970000px;}
.y29{bottom:240.690000px;}
.y51{bottom:243.030000px;}
.y121{bottom:245.010000px;}
.yb4{bottom:245.730000px;}
.yd6{bottom:246.270000px;}
.y75{bottom:248.610000px;}
.y176{bottom:254.730000px;}
.y120{bottom:255.090000px;}
.y28{bottom:261.390000px;}
.y11f{bottom:261.930000px;}
.y50{bottom:263.730000px;}
.y74{bottom:269.310000px;}
.y19f{bottom:274.350000px;}
.y175{bottom:275.430000px;}
.yfb{bottom:281.550000px;}
.y27{bottom:282.090000px;}
.yb3{bottom:282.270000px;}
.y11e{bottom:282.630000px;}
.yd5{bottom:287.850000px;}
.y73{bottom:290.010000px;}
.y19e{bottom:295.050000px;}
.y174{bottom:296.130000px;}
.yfa{bottom:298.290000px;}
.y4f{bottom:300.270000px;}
.y26{bottom:302.790000px;}
.y11d{bottom:303.330000px;}
.yd3{bottom:305.310000px;}
.y155{bottom:307.110000px;}
.yf9{bottom:308.370000px;}
.y72{bottom:310.755000px;}
.y11b{bottom:313.455000px;}
.yf8{bottom:315.255000px;}
.y19d{bottom:315.795000px;}
.y173{bottom:316.875000px;}
.y154{bottom:317.415000px;}
.yb2{bottom:318.855000px;}
.y11a{bottom:320.115000px;}
.y25{bottom:323.535000px;}
.y153{bottom:324.075000px;}
.yd2{bottom:326.955000px;}
.y95{bottom:331.455000px;}
.yf7{bottom:335.955000px;}
.y19c{bottom:336.495000px;}
.y4e{bottom:336.855000px;}
.y172{bottom:337.575000px;}
.yb1{bottom:339.555000px;}
.y119{bottom:340.815000px;}
.y24{bottom:344.235000px;}
.y152{bottom:344.775000px;}
.y71{bottom:347.295000px;}
.yd1{bottom:348.375000px;}
.yf6{bottom:356.655000px;}
.y19b{bottom:357.195000px;}
.y4d{bottom:357.555000px;}
.y171{bottom:358.275000px;}
.yb0{bottom:360.255000px;}
.y118{bottom:361.515000px;}
.y23{bottom:364.935000px;}
.y151{bottom:365.475000px;}
.y70{bottom:367.995000px;}
.yd0{bottom:369.795000px;}
.y94{bottom:370.155000px;}
.yf5{bottom:377.355000px;}
.y19a{bottom:377.895000px;}
.y4c{bottom:378.255000px;}
.y170{bottom:378.975000px;}
.yaf{bottom:380.955000px;}
.y117{bottom:382.215000px;}
.y150{bottom:386.175000px;}
.y6f{bottom:388.695000px;}
.y93{bottom:390.855000px;}
.ycf{bottom:391.215000px;}
.y14f{bottom:396.255000px;}
.yf4{bottom:398.055000px;}
.y199{bottom:398.595000px;}
.y4b{bottom:398.955000px;}
.y16f{bottom:399.675000px;}
.y22{bottom:401.475000px;}
.yae{bottom:401.655000px;}
.y116{bottom:402.915000px;}
.y14d{bottom:403.095000px;}
.y6e{bottom:409.395000px;}
.y92{bottom:411.555000px;}
.yce{bottom:412.635000px;}
.yf3{bottom:418.755000px;}
.y198{bottom:419.295000px;}
.yad{bottom:422.355000px;}
.y115{bottom:423.615000px;}
.y6d{bottom:430.095000px;}
.y91{bottom:432.255000px;}
.y113{bottom:433.875000px;}
.ycd{bottom:434.055000px;}
.y4a{bottom:435.495000px;}
.y16e{bottom:436.215000px;}
.yf2{bottom:439.455000px;}
.y197{bottom:439.995000px;}
.y112{bottom:440.535000px;}
.yac{bottom:443.055000px;}
.y21{bottom:443.235000px;}
.y14c{bottom:444.495000px;}
.y6c{bottom:450.795000px;}
.y90{bottom:452.955000px;}
.y14b{bottom:454.575000px;}
.ycc{bottom:455.475000px;}
.y49{bottom:456.195000px;}
.yf1{bottom:460.155000px;}
.y196{bottom:460.695000px;}
.y111{bottom:461.235000px;}
.y14a{bottom:461.415000px;}
.yab{bottom:463.755000px;}
.y110{bottom:471.315000px;}
.y6b{bottom:471.495000px;}
.y16d{bottom:472.575000px;}
.y48{bottom:476.895000px;}
.ycb{bottom:477.075000px;}
.y10f{bottom:478.155000px;}
.yf0{bottom:480.855000px;}
.y195{bottom:481.395000px;}
.y149{bottom:482.115000px;}
.yaa{bottom:484.455000px;}
.y20{bottom:484.995000px;}
.y8f{bottom:491.655000px;}
.y6a{bottom:492.195000px;}
.y16c{bottom:493.275000px;}
.y47{bottom:497.595000px;}
.yca{bottom:498.495000px;}
.y10e{bottom:498.855000px;}
.yef{bottom:501.555000px;}
.y194{bottom:502.095000px;}
.y148{bottom:502.815000px;}
.ya9{bottom:505.155000px;}
.y1f{bottom:505.695000px;}
.y8e{bottom:512.355000px;}
.y69{bottom:512.895000px;}
.y16b{bottom:513.975000px;}
.y46{bottom:518.295000px;}
.y10d{bottom:519.555000px;}
.yc9{bottom:519.915000px;}
.yee{bottom:522.255000px;}
.y193{bottom:522.795000px;}
.ya8{bottom:525.855000px;}
.y1e{bottom:526.395000px;}
.y147{bottom:527.475000px;}
.y8d{bottom:533.055000px;}
.y68{bottom:533.595000px;}
.y16a{bottom:534.675000px;}
.y10c{bottom:540.255000px;}
.yc8{bottom:541.335000px;}
.yed{bottom:542.955000px;}
.y192{bottom:543.495000px;}
.y1d{bottom:547.095000px;}
.y8c{bottom:553.755000px;}
.y45{bottom:554.835000px;}
.y169{bottom:555.375000px;}
.y10b{bottom:560.985000px;}
.yc7{bottom:562.785000px;}
.yec{bottom:563.685000px;}
.y146{bottom:563.865000px;}
.y191{bottom:564.225000px;}
.ya7{bottom:564.585000px;}
.y1c{bottom:567.825000px;}
.y67{bottom:570.165000px;}
.y8b{bottom:574.485000px;}
.y168{bottom:576.105000px;}
.y10a{bottom:581.685000px;}
.yc6{bottom:584.205000px;}
.yeb{bottom:584.385000px;}
.y145{bottom:584.565000px;}
.y190{bottom:584.925000px;}
.y1b{bottom:588.345000px;}
.y44{bottom:591.405000px;}
.y167{bottom:596.805000px;}
.y109{bottom:602.385000px;}
.ya6{bottom:603.285000px;}
.y144{bottom:605.265000px;}
.y18f{bottom:605.625000px;}
.yc5{bottom:605.805000px;}
.yea{bottom:606.165000px;}
.y66{bottom:606.705000px;}
.y1a{bottom:609.045000px;}
.y8a{bottom:613.185000px;}
.y166{bottom:617.505000px;}
.y108{bottom:623.085000px;}
.ya5{bottom:623.985000px;}
.y143{bottom:625.965000px;}
.y18e{bottom:626.325000px;}
.ye9{bottom:626.865000px;}
.yc3{bottom:627.225000px;}
.y65{bottom:627.405000px;}
.y43{bottom:627.945000px;}
.y19{bottom:629.745000px;}
.y89{bottom:633.885000px;}
.y165{bottom:638.205000px;}
.y107{bottom:643.785000px;}
.y142{bottom:646.665000px;}
.y18d{bottom:647.025000px;}
.ye8{bottom:647.565000px;}
.y64{bottom:648.105000px;}
.y42{bottom:648.645000px;}
.y18{bottom:650.445000px;}
.yc2{bottom:652.605000px;}
.y88{bottom:654.585000px;}
.ye6{bottom:657.645000px;}
.y164{bottom:658.905000px;}
.ya4{bottom:662.685000px;}
.ye5{bottom:664.485000px;}
.y141{bottom:667.365000px;}
.y18c{bottom:667.725000px;}
.y63{bottom:668.625000px;}
.y41{bottom:669.345000px;}
.y17{bottom:671.145000px;}
.y87{bottom:675.285000px;}
.y163{bottom:679.605000px;}
.ya3{bottom:683.385000px;}
.ye4{bottom:685.185000px;}
.y140{bottom:688.065000px;}
.y18b{bottom:688.425000px;}
.y62{bottom:689.325000px;}
.y40{bottom:690.045000px;}
.y16{bottom:691.845000px;}
.yc1{bottom:694.365000px;}
.y86{bottom:695.985000px;}
.y162{bottom:700.305000px;}
.ye3{bottom:705.885000px;}
.y13f{bottom:708.765000px;}
.y18a{bottom:709.125000px;}
.y3f{bottom:710.745000px;}
.y15{bottom:712.545000px;}
.y85{bottom:716.685000px;}
.y161{bottom:721.005000px;}
.ya2{bottom:722.085000px;}
.y61{bottom:725.865000px;}
.ye2{bottom:726.585000px;}
.y13e{bottom:729.465000px;}
.y189{bottom:729.825000px;}
.y106{bottom:731.085000px;}
.y3e{bottom:731.445000px;}
.y14{bottom:733.245000px;}
.yc0{bottom:735.945000px;}
.y84{bottom:737.385000px;}
.y160{bottom:741.705000px;}
.ya1{bottom:742.785000px;}
.y13d{bottom:750.165000px;}
.y188{bottom:750.525000px;}
.y105{bottom:751.785000px;}
.y3d{bottom:752.145000px;}
.y13{bottom:753.945000px;}
.y60{bottom:762.405000px;}
.y13c{bottom:770.865000px;}
.y187{bottom:771.225000px;}
.ye1{bottom:772.125000px;}
.y104{bottom:772.485000px;}
.y3c{bottom:772.845000px;}
.y12{bottom:774.645000px;}
.y83{bottom:776.085000px;}
.ybf{bottom:777.705000px;}
.ya0{bottom:781.485000px;}
.y5f{bottom:783.105000px;}
.y13b{bottom:791.565000px;}
.y186{bottom:791.925000px;}
.y103{bottom:793.185000px;}
.y3b{bottom:793.545000px;}
.y82{bottom:796.785000px;}
.ybe{bottom:798.405000px;}
.y15f{bottom:798.945000px;}
.y9f{bottom:802.185000px;}
.y5e{bottom:803.805000px;}
.y11{bottom:811.185000px;}
.y13a{bottom:812.310000px;}
.y185{bottom:812.670000px;}
.ye0{bottom:813.930000px;}
.y81{bottom:817.530000px;}
.y5d{bottom:824.550000px;}
.y139{bottom:833.010000px;}
.y184{bottom:833.370000px;}
.ydf{bottom:834.630000px;}
.y102{bottom:834.990000px;}
.y3a{bottom:835.170000px;}
.y15e{bottom:835.530000px;}
.y80{bottom:838.230000px;}
.ybd{bottom:840.210000px;}
.y9e{bottom:840.930000px;}
.y5c{bottom:845.250000px;}
.y10{bottom:847.770000px;}
.y138{bottom:853.710000px;}
.y183{bottom:854.070000px;}
.y101{bottom:855.690000px;}
.y39{bottom:855.870000px;}
.y15d{bottom:856.230000px;}
.y7f{bottom:858.930000px;}
.y9d{bottom:861.630000px;}
.yf{bottom:868.470000px;}
.y137{bottom:873.870000px;}
.y182{bottom:874.770000px;}
.yde{bottom:876.390000px;}
.y38{bottom:876.570000px;}
.y15c{bottom:876.930000px;}
.y7e{bottom:879.630000px;}
.y136{bottom:880.710000px;}
.y5b{bottom:881.790000px;}
.ye{bottom:889.170000px;}
.y181{bottom:895.470000px;}
.ydd{bottom:897.090000px;}
.y37{bottom:897.270000px;}
.y15b{bottom:897.630000px;}
.y7d{bottom:900.330000px;}
.y135{bottom:901.410000px;}
.y5a{bottom:902.490000px;}
.y180{bottom:916.170000px;}
.y36{bottom:917.970000px;}
.y15a{bottom:918.330000px;}
.y9c{bottom:921.030000px;}
.y134{bottom:922.110000px;}
.y59{bottom:923.190000px;}
.yd{bottom:925.710000px;}
.y133{bottom:932.190000px;}
.y17f{bottom:936.870000px;}
.y35{bottom:938.670000px;}
.y132{bottom:938.850000px;}
.y7c{bottom:939.030000px;}
.y9b{bottom:941.730000px;}
.y58{bottom:943.890000px;}
.y34{bottom:959.370000px;}
.y131{bottom:959.550000px;}
.y7b{bottom:959.730000px;}
.yc{bottom:962.610000px;}
.y57{bottom:964.590000px;}
.y130{bottom:969.810000px;}
.y17e{bottom:973.230000px;}
.y12f{bottom:976.470000px;}
.ybc{bottom:980.070000px;}
.y7a{bottom:980.430000px;}
.yb{bottom:984.930000px;}
.y12e{bottom:997.170000px;}
.ybb{bottom:1000.770000px;}
.y33{bottom:1001.130000px;}
.y17d{bottom:1009.770000px;}
.y12d{bottom:1017.870000px;}
.yba{bottom:1021.470000px;}
.y32{bottom:1021.830000px;}
.y4{bottom:1027.950000px;}
.y12c{bottom:1038.570000px;}
.y31{bottom:1042.530000px;}
.y12a{bottom:1059.270000px;}
.y30{bottom:1063.260000px;}
.y3{bottom:1070.460000px;}
.y2{bottom:1094.040000px;}
.y1{bottom:1115.100000px;}
.h10{height:6.660000px;}
.h11{height:6.696000px;}
.he{height:6.840000px;}
.h12{height:6.840150px;}
.hf{height:6.876000px;}
.hb{height:20.700000px;}
.hc{height:20.736000px;}
.h13{height:41.400000px;}
.h5{height:49.500000px;}
.h4{height:50.273438px;}
.hd{height:50.414062px;}
.h2{height:50.800781px;}
.ha{height:50.941406px;}
.h14{height:52.417969px;}
.h7{height:54.316406px;}
.h8{height:54.864844px;}
.h9{height:57.796523px;}
.h6{height:58.320000px;}
.h1{height:59.436914px;}
.h3{height:67.565039px;}
.h0{height:1188.000000px;}
.wf{width:74.700000px;}
.w14{width:82.836000px;}
.w15{width:90.360000px;}
.w11{width:90.756000px;}
.w4{width:97.740000px;}
.w3{width:97.776000px;}
.wd{width:98.136000px;}
.w9{width:98.280000px;}
.w7{width:98.460000px;}
.w6{width:98.496000px;}
.wb{width:98.676000px;}
.w2{width:111.060000px;}
.wc{width:135.000000px;}
.wa{width:135.360000px;}
.w13{width:151.200000px;}
.w16{width:173.190000px;}
.w17{width:181.110000px;}
.w8{width:234.030000px;}
.w10{width:324.390000px;}
.w5{width:332.310000px;}
.we{width:415.155000px;}
.w12{width:489.855000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x19{left:-1.080000px;}
.x0{left:0.000000px;}
.x30{left:1.260000px;}
.x3b{left:6.480000px;}
.x36{left:8.460000px;}
.x7{left:9.719986px;}
.x39{left:10.980000px;}
.x1a{left:12.240000px;}
.x34{left:14.400000px;}
.x15{left:15.840000px;}
.x3a{left:17.100000px;}
.x18{left:19.260000px;}
.x31{left:20.880000px;}
.x11{left:22.860000px;}
.x35{left:24.480000px;}
.x32{left:26.460000px;}
.x13{left:27.720000px;}
.x27{left:29.700000px;}
.x3c{left:30.960000px;}
.x24{left:32.220000px;}
.x2a{left:34.200000px;}
.x1c{left:37.080000px;}
.x8{left:38.339986px;}
.x26{left:39.600000px;}
.x2b{left:40.674000px;}
.x23{left:42.660000px;}
.x25{left:45.180000px;}
.x38{left:46.974000px;}
.x1b{left:48.240000px;}
.x37{left:50.934000px;}
.xf{left:55.074000px;}
.x29{left:62.685000px;}
.x28{left:66.954000px;}
.x33{left:68.934000px;}
.x2e{left:75.054000px;}
.x3d{left:80.850000px;}
.x6{left:106.955986px;}
.x40{left:108.035986px;}
.xe{left:111.096000px;}
.x3e{left:135.035986px;}
.xb{left:148.535986px;}
.x3f{left:162.029986px;}
.x41{left:168.869986px;}
.x1{left:176.249986px;}
.x3{left:204.329986px;}
.x10{left:222.870000px;}
.xc{left:228.089986px;}
.x4{left:236.549986px;}
.x22{left:245.730000px;}
.x2f{left:261.570000px;}
.x2{left:284.249986px;}
.x12{left:321.375000px;}
.xd{left:334.874986px;}
.x21{left:344.415000px;}
.xa{left:390.134986px;}
.x14{left:419.835000px;}
.x9{left:423.074986px;}
.x2d{left:434.775000px;}
.x1d{left:442.695000px;}
.x16{left:518.325000px;}
.x2c{left:525.525000px;}
.x1e{left:541.185000px;}
.x17{left:616.785000px;}
.x1f{left:639.645000px;}
.x20{left:738.150000px;}
.x5{left:792.149986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.303360pt;}
.ls1{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.640000pt;}
.lsa{letter-spacing:6.400000pt;}
.ls9{letter-spacing:30.186667pt;}
.ws5{word-spacing:-64.128000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-69.424427pt;}
._26{margin-left:-14.720000pt;}
._27{margin-left:-8.389120pt;}
._23{margin-left:-7.173120pt;}
._24{margin-left:-5.376000pt;}
._14{margin-left:-4.053333pt;}
._6{margin-left:-3.136000pt;}
._0{margin-left:-1.402880pt;}
._1{width:0.944427pt;}
._a{width:2.149333pt;}
._5{width:3.154560pt;}
._b{width:4.077440pt;}
._e{width:5.159467pt;}
._f{width:6.144000pt;}
._7{width:7.424000pt;}
._8{width:8.314240pt;}
._9{width:9.856000pt;}
._16{width:10.826667pt;}
._c{width:12.416000pt;}
._d{width:13.327573pt;}
._1f{width:14.576427pt;}
._15{width:17.344000pt;}
._13{width:18.250453pt;}
._12{width:19.264000pt;}
._1e{width:20.352000pt;}
._18{width:21.952000pt;}
._19{width:23.055573pt;}
._1a{width:24.768000pt;}
._1b{width:25.664000pt;}
._17{width:27.328000pt;}
._10{width:29.120000pt;}
._11{width:30.080000pt;}
._1c{width:30.976000pt;}
._1d{width:32.271573pt;}
._21{width:34.772480pt;}
._20{width:36.346880pt;}
._4{width:72.195627pt;}
._2{width:97.226667pt;}
._22{width:119.338667pt;}
._25{width:947.648000pt;}
.fs5{font-size:42.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:72.320000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.ya{bottom:-14.399960pt;}
.y11c{bottom:-9.000000pt;}
.y114{bottom:-8.960000pt;}
.ye7{bottom:-8.800000pt;}
.y0{bottom:0.000000pt;}
.yc4{bottom:3.520000pt;}
.y12b{bottom:3.546667pt;}
.yd4{bottom:3.560000pt;}
.y9{bottom:5.440000pt;}
.y2f{bottom:13.280000pt;}
.y7{bottom:15.360000pt;}
.y14e{bottom:21.920000pt;}
.y8{bottom:28.000000pt;}
.y6{bottom:51.360000pt;}
.y5{bottom:69.792000pt;}
.y2e{bottom:103.392000pt;}
.ydc{bottom:108.512000pt;}
.y56{bottom:110.112000pt;}
.yb9{bottom:112.512000pt;}
.y129{bottom:114.272000pt;}
.y17c{bottom:116.032000pt;}
.y79{bottom:117.312000pt;}
.y100{bottom:120.992000pt;}
.y2d{bottom:121.792000pt;}
.y128{bottom:123.232000pt;}
.ydb{bottom:126.912000pt;}
.y55{bottom:128.512000pt;}
.y127{bottom:129.152000pt;}
.y9a{bottom:131.392000pt;}
.y17b{bottom:134.426667pt;}
.y78{bottom:135.706667pt;}
.yff{bottom:139.386667pt;}
.y2c{bottom:140.186667pt;}
.yb8{bottom:144.986667pt;}
.yda{bottom:145.306667pt;}
.y159{bottom:147.226667pt;}
.y126{bottom:147.546667pt;}
.y99{bottom:149.786667pt;}
.y17a{bottom:152.826667pt;}
.y125{bottom:156.666667pt;}
.y2b{bottom:158.586667pt;}
.y54{bottom:160.986667pt;}
.y124{bottom:162.586667pt;}
.yb7{bottom:163.386667pt;}
.yd9{bottom:163.706667pt;}
.y158{bottom:165.626667pt;}
.y98{bottom:168.186667pt;}
.y77{bottom:170.106667pt;}
.y179{bottom:171.226667pt;}
.yfe{bottom:176.506667pt;}
.y2a{bottom:176.986667pt;}
.y53{bottom:179.386667pt;}
.y123{bottom:180.986667pt;}
.yb6{bottom:181.626667pt;}
.yd8{bottom:182.106667pt;}
.y157{bottom:184.026667pt;}
.y97{bottom:186.586667pt;}
.y178{bottom:189.626667pt;}
.yfd{bottom:194.906667pt;}
.y52{bottom:197.786667pt;}
.y122{bottom:199.386667pt;}
.yb5{bottom:200.026667pt;}
.yd7{bottom:200.506667pt;}
.y156{bottom:202.426667pt;}
.y76{bottom:202.586667pt;}
.y96{bottom:204.986667pt;}
.y177{bottom:208.026667pt;}
.y1a0{bottom:211.386667pt;}
.yfc{bottom:213.306667pt;}
.y29{bottom:213.946667pt;}
.y51{bottom:216.026667pt;}
.y121{bottom:217.786667pt;}
.yb4{bottom:218.426667pt;}
.yd6{bottom:218.906667pt;}
.y75{bottom:220.986667pt;}
.y176{bottom:226.426667pt;}
.y120{bottom:226.746667pt;}
.y28{bottom:232.346667pt;}
.y11f{bottom:232.826667pt;}
.y50{bottom:234.426667pt;}
.y74{bottom:239.386667pt;}
.y19f{bottom:243.866667pt;}
.y175{bottom:244.826667pt;}
.yfb{bottom:250.266667pt;}
.y27{bottom:250.746667pt;}
.yb3{bottom:250.906667pt;}
.y11e{bottom:251.226667pt;}
.yd5{bottom:255.866667pt;}
.y73{bottom:257.786667pt;}
.y19e{bottom:262.266667pt;}
.y174{bottom:263.226667pt;}
.yfa{bottom:265.146667pt;}
.y4f{bottom:266.906667pt;}
.y26{bottom:269.146667pt;}
.y11d{bottom:269.626667pt;}
.yd3{bottom:271.386667pt;}
.y155{bottom:272.986667pt;}
.yf9{bottom:274.106667pt;}
.y72{bottom:276.226667pt;}
.y11b{bottom:278.626667pt;}
.yf8{bottom:280.226667pt;}
.y19d{bottom:280.706667pt;}
.y173{bottom:281.666667pt;}
.y154{bottom:282.146667pt;}
.yb2{bottom:283.426667pt;}
.y11a{bottom:284.546667pt;}
.y25{bottom:287.586667pt;}
.y153{bottom:288.066667pt;}
.yd2{bottom:290.626667pt;}
.y95{bottom:294.626667pt;}
.yf7{bottom:298.626667pt;}
.y19c{bottom:299.106667pt;}
.y4e{bottom:299.426667pt;}
.y172{bottom:300.066667pt;}
.yb1{bottom:301.826667pt;}
.y119{bottom:302.946667pt;}
.y24{bottom:305.986667pt;}
.y152{bottom:306.466667pt;}
.y71{bottom:308.706667pt;}
.yd1{bottom:309.666667pt;}
.yf6{bottom:317.026667pt;}
.y19b{bottom:317.506667pt;}
.y4d{bottom:317.826667pt;}
.y171{bottom:318.466667pt;}
.yb0{bottom:320.226667pt;}
.y118{bottom:321.346667pt;}
.y23{bottom:324.386667pt;}
.y151{bottom:324.866667pt;}
.y70{bottom:327.106667pt;}
.yd0{bottom:328.706667pt;}
.y94{bottom:329.026667pt;}
.yf5{bottom:335.426667pt;}
.y19a{bottom:335.906667pt;}
.y4c{bottom:336.226667pt;}
.y170{bottom:336.866667pt;}
.yaf{bottom:338.626667pt;}
.y117{bottom:339.746667pt;}
.y150{bottom:343.266667pt;}
.y6f{bottom:345.506667pt;}
.y93{bottom:347.426667pt;}
.ycf{bottom:347.746667pt;}
.y14f{bottom:352.226667pt;}
.yf4{bottom:353.826667pt;}
.y199{bottom:354.306667pt;}
.y4b{bottom:354.626667pt;}
.y16f{bottom:355.266667pt;}
.y22{bottom:356.866667pt;}
.yae{bottom:357.026667pt;}
.y116{bottom:358.146667pt;}
.y14d{bottom:358.306667pt;}
.y6e{bottom:363.906667pt;}
.y92{bottom:365.826667pt;}
.yce{bottom:366.786667pt;}
.yf3{bottom:372.226667pt;}
.y198{bottom:372.706667pt;}
.yad{bottom:375.426667pt;}
.y115{bottom:376.546667pt;}
.y6d{bottom:382.306667pt;}
.y91{bottom:384.226667pt;}
.y113{bottom:385.666667pt;}
.ycd{bottom:385.826667pt;}
.y4a{bottom:387.106667pt;}
.y16e{bottom:387.746667pt;}
.yf2{bottom:390.626667pt;}
.y197{bottom:391.106667pt;}
.y112{bottom:391.586667pt;}
.yac{bottom:393.826667pt;}
.y21{bottom:393.986667pt;}
.y14c{bottom:395.106667pt;}
.y6c{bottom:400.706667pt;}
.y90{bottom:402.626667pt;}
.y14b{bottom:404.066667pt;}
.ycc{bottom:404.866667pt;}
.y49{bottom:405.506667pt;}
.yf1{bottom:409.026667pt;}
.y196{bottom:409.506667pt;}
.y111{bottom:409.986667pt;}
.y14a{bottom:410.146667pt;}
.yab{bottom:412.226667pt;}
.y110{bottom:418.946667pt;}
.y6b{bottom:419.106667pt;}
.y16d{bottom:420.066667pt;}
.y48{bottom:423.906667pt;}
.ycb{bottom:424.066667pt;}
.y10f{bottom:425.026667pt;}
.yf0{bottom:427.426667pt;}
.y195{bottom:427.906667pt;}
.y149{bottom:428.546667pt;}
.yaa{bottom:430.626667pt;}
.y20{bottom:431.106667pt;}
.y8f{bottom:437.026667pt;}
.y6a{bottom:437.506667pt;}
.y16c{bottom:438.466667pt;}
.y47{bottom:442.306667pt;}
.yca{bottom:443.106667pt;}
.y10e{bottom:443.426667pt;}
.yef{bottom:445.826667pt;}
.y194{bottom:446.306667pt;}
.y148{bottom:446.946667pt;}
.ya9{bottom:449.026667pt;}
.y1f{bottom:449.506667pt;}
.y8e{bottom:455.426667pt;}
.y69{bottom:455.906667pt;}
.y16b{bottom:456.866667pt;}
.y46{bottom:460.706667pt;}
.y10d{bottom:461.826667pt;}
.yc9{bottom:462.146667pt;}
.yee{bottom:464.226667pt;}
.y193{bottom:464.706667pt;}
.ya8{bottom:467.426667pt;}
.y1e{bottom:467.906667pt;}
.y147{bottom:468.866667pt;}
.y8d{bottom:473.826667pt;}
.y68{bottom:474.306667pt;}
.y16a{bottom:475.266667pt;}
.y10c{bottom:480.226667pt;}
.yc8{bottom:481.186667pt;}
.yed{bottom:482.626667pt;}
.y192{bottom:483.106667pt;}
.y1d{bottom:486.306667pt;}
.y8c{bottom:492.226667pt;}
.y45{bottom:493.186667pt;}
.y169{bottom:493.666667pt;}
.y10b{bottom:498.653333pt;}
.yc7{bottom:500.253333pt;}
.yec{bottom:501.053333pt;}
.y146{bottom:501.213333pt;}
.y191{bottom:501.533333pt;}
.ya7{bottom:501.853333pt;}
.y1c{bottom:504.733333pt;}
.y67{bottom:506.813333pt;}
.y8b{bottom:510.653333pt;}
.y168{bottom:512.093333pt;}
.y10a{bottom:517.053333pt;}
.yc6{bottom:519.293333pt;}
.yeb{bottom:519.453333pt;}
.y145{bottom:519.613333pt;}
.y190{bottom:519.933333pt;}
.y1b{bottom:522.973333pt;}
.y44{bottom:525.693333pt;}
.y167{bottom:530.493333pt;}
.y109{bottom:535.453333pt;}
.ya6{bottom:536.253333pt;}
.y144{bottom:538.013333pt;}
.y18f{bottom:538.333333pt;}
.yc5{bottom:538.493333pt;}
.yea{bottom:538.813333pt;}
.y66{bottom:539.293333pt;}
.y1a{bottom:541.373333pt;}
.y8a{bottom:545.053333pt;}
.y166{bottom:548.893333pt;}
.y108{bottom:553.853333pt;}
.ya5{bottom:554.653333pt;}
.y143{bottom:556.413333pt;}
.y18e{bottom:556.733333pt;}
.ye9{bottom:557.213333pt;}
.yc3{bottom:557.533333pt;}
.y65{bottom:557.693333pt;}
.y43{bottom:558.173333pt;}
.y19{bottom:559.773333pt;}
.y89{bottom:563.453333pt;}
.y165{bottom:567.293333pt;}
.y107{bottom:572.253333pt;}
.y142{bottom:574.813333pt;}
.y18d{bottom:575.133333pt;}
.ye8{bottom:575.613333pt;}
.y64{bottom:576.093333pt;}
.y42{bottom:576.573333pt;}
.y18{bottom:578.173333pt;}
.yc2{bottom:580.093333pt;}
.y88{bottom:581.853333pt;}
.ye6{bottom:584.573333pt;}
.y164{bottom:585.693333pt;}
.ya4{bottom:589.053333pt;}
.ye5{bottom:590.653333pt;}
.y141{bottom:593.213333pt;}
.y18c{bottom:593.533333pt;}
.y63{bottom:594.333333pt;}
.y41{bottom:594.973333pt;}
.y17{bottom:596.573333pt;}
.y87{bottom:600.253333pt;}
.y163{bottom:604.093333pt;}
.ya3{bottom:607.453333pt;}
.ye4{bottom:609.053333pt;}
.y140{bottom:611.613333pt;}
.y18b{bottom:611.933333pt;}
.y62{bottom:612.733333pt;}
.y40{bottom:613.373333pt;}
.y16{bottom:614.973333pt;}
.yc1{bottom:617.213333pt;}
.y86{bottom:618.653333pt;}
.y162{bottom:622.493333pt;}
.ye3{bottom:627.453333pt;}
.y13f{bottom:630.013333pt;}
.y18a{bottom:630.333333pt;}
.y3f{bottom:631.773333pt;}
.y15{bottom:633.373333pt;}
.y85{bottom:637.053333pt;}
.y161{bottom:640.893333pt;}
.ya2{bottom:641.853333pt;}
.y61{bottom:645.213333pt;}
.ye2{bottom:645.853333pt;}
.y13e{bottom:648.413333pt;}
.y189{bottom:648.733333pt;}
.y106{bottom:649.853333pt;}
.y3e{bottom:650.173333pt;}
.y14{bottom:651.773333pt;}
.yc0{bottom:654.173333pt;}
.y84{bottom:655.453333pt;}
.y160{bottom:659.293333pt;}
.ya1{bottom:660.253333pt;}
.y13d{bottom:666.813333pt;}
.y188{bottom:667.133333pt;}
.y105{bottom:668.253333pt;}
.y3d{bottom:668.573333pt;}
.y13{bottom:670.173333pt;}
.y60{bottom:677.693333pt;}
.y13c{bottom:685.213333pt;}
.y187{bottom:685.533333pt;}
.ye1{bottom:686.333333pt;}
.y104{bottom:686.653333pt;}
.y3c{bottom:686.973333pt;}
.y12{bottom:688.573333pt;}
.y83{bottom:689.853333pt;}
.ybf{bottom:691.293333pt;}
.ya0{bottom:694.653333pt;}
.y5f{bottom:696.093333pt;}
.y13b{bottom:703.613333pt;}
.y186{bottom:703.933333pt;}
.y103{bottom:705.053333pt;}
.y3b{bottom:705.373333pt;}
.y82{bottom:708.253333pt;}
.ybe{bottom:709.693333pt;}
.y15f{bottom:710.173333pt;}
.y9f{bottom:713.053333pt;}
.y5e{bottom:714.493333pt;}
.y11{bottom:721.053333pt;}
.y13a{bottom:722.053333pt;}
.y185{bottom:722.373333pt;}
.ye0{bottom:723.493333pt;}
.y81{bottom:726.693333pt;}
.y5d{bottom:732.933333pt;}
.y139{bottom:740.453333pt;}
.y184{bottom:740.773333pt;}
.ydf{bottom:741.893333pt;}
.y102{bottom:742.213333pt;}
.y3a{bottom:742.373333pt;}
.y15e{bottom:742.693333pt;}
.y80{bottom:745.093333pt;}
.ybd{bottom:746.853333pt;}
.y9e{bottom:747.493333pt;}
.y5c{bottom:751.333333pt;}
.y10{bottom:753.573333pt;}
.y138{bottom:758.853333pt;}
.y183{bottom:759.173333pt;}
.y101{bottom:760.613333pt;}
.y39{bottom:760.773333pt;}
.y15d{bottom:761.093333pt;}
.y7f{bottom:763.493333pt;}
.y9d{bottom:765.893333pt;}
.yf{bottom:771.973333pt;}
.y137{bottom:776.773333pt;}
.y182{bottom:777.573333pt;}
.yde{bottom:779.013333pt;}
.y38{bottom:779.173333pt;}
.y15c{bottom:779.493333pt;}
.y7e{bottom:781.893333pt;}
.y136{bottom:782.853333pt;}
.y5b{bottom:783.813333pt;}
.ye{bottom:790.373333pt;}
.y181{bottom:795.973333pt;}
.ydd{bottom:797.413333pt;}
.y37{bottom:797.573333pt;}
.y15b{bottom:797.893333pt;}
.y7d{bottom:800.293333pt;}
.y135{bottom:801.253333pt;}
.y5a{bottom:802.213333pt;}
.y180{bottom:814.373333pt;}
.y36{bottom:815.973333pt;}
.y15a{bottom:816.293333pt;}
.y9c{bottom:818.693333pt;}
.y134{bottom:819.653333pt;}
.y59{bottom:820.613333pt;}
.yd{bottom:822.853333pt;}
.y133{bottom:828.613333pt;}
.y17f{bottom:832.773333pt;}
.y35{bottom:834.373333pt;}
.y132{bottom:834.533333pt;}
.y7c{bottom:834.693333pt;}
.y9b{bottom:837.093333pt;}
.y58{bottom:839.013333pt;}
.y34{bottom:852.773333pt;}
.y131{bottom:852.933333pt;}
.y7b{bottom:853.093333pt;}
.yc{bottom:855.653333pt;}
.y57{bottom:857.413333pt;}
.y130{bottom:862.053333pt;}
.y17e{bottom:865.093333pt;}
.y12f{bottom:867.973333pt;}
.ybc{bottom:871.173333pt;}
.y7a{bottom:871.493333pt;}
.yb{bottom:875.493333pt;}
.y12e{bottom:886.373333pt;}
.ybb{bottom:889.573333pt;}
.y33{bottom:889.893333pt;}
.y17d{bottom:897.573333pt;}
.y12d{bottom:904.773333pt;}
.yba{bottom:907.973333pt;}
.y32{bottom:908.293333pt;}
.y4{bottom:913.733333pt;}
.y12c{bottom:923.173333pt;}
.y31{bottom:926.693333pt;}
.y12a{bottom:941.573333pt;}
.y30{bottom:945.120000pt;}
.y3{bottom:951.520000pt;}
.y2{bottom:972.480000pt;}
.y1{bottom:991.200000pt;}
.h10{height:5.920000pt;}
.h11{height:5.952000pt;}
.he{height:6.080000pt;}
.h12{height:6.080133pt;}
.hf{height:6.112000pt;}
.hb{height:18.400000pt;}
.hc{height:18.432000pt;}
.h13{height:36.800000pt;}
.h5{height:44.000000pt;}
.h4{height:44.687500pt;}
.hd{height:44.812500pt;}
.h2{height:45.156250pt;}
.ha{height:45.281250pt;}
.h14{height:46.593750pt;}
.h7{height:48.281250pt;}
.h8{height:48.768750pt;}
.h9{height:51.374688pt;}
.h6{height:51.840000pt;}
.h1{height:52.832812pt;}
.h3{height:60.057813pt;}
.h0{height:1056.000000pt;}
.wf{width:66.400000pt;}
.w14{width:73.632000pt;}
.w15{width:80.320000pt;}
.w11{width:80.672000pt;}
.w4{width:86.880000pt;}
.w3{width:86.912000pt;}
.wd{width:87.232000pt;}
.w9{width:87.360000pt;}
.w7{width:87.520000pt;}
.w6{width:87.552000pt;}
.wb{width:87.712000pt;}
.w2{width:98.720000pt;}
.wc{width:120.000000pt;}
.wa{width:120.320000pt;}
.w13{width:134.400000pt;}
.w16{width:153.946667pt;}
.w17{width:160.986667pt;}
.w8{width:208.026667pt;}
.w10{width:288.346667pt;}
.w5{width:295.386667pt;}
.we{width:369.026667pt;}
.w12{width:435.426667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x19{left:-0.960000pt;}
.x0{left:0.000000pt;}
.x30{left:1.120000pt;}
.x3b{left:5.760000pt;}
.x36{left:7.520000pt;}
.x7{left:8.639988pt;}
.x39{left:9.760000pt;}
.x1a{left:10.880000pt;}
.x34{left:12.800000pt;}
.x15{left:14.080000pt;}
.x3a{left:15.200000pt;}
.x18{left:17.120000pt;}
.x31{left:18.560000pt;}
.x11{left:20.320000pt;}
.x35{left:21.760000pt;}
.x32{left:23.520000pt;}
.x13{left:24.640000pt;}
.x27{left:26.400000pt;}
.x3c{left:27.520000pt;}
.x24{left:28.640000pt;}
.x2a{left:30.400000pt;}
.x1c{left:32.960000pt;}
.x8{left:34.079988pt;}
.x26{left:35.200000pt;}
.x2b{left:36.154667pt;}
.x23{left:37.920000pt;}
.x25{left:40.160000pt;}
.x38{left:41.754667pt;}
.x1b{left:42.880000pt;}
.x37{left:45.274667pt;}
.xf{left:48.954667pt;}
.x29{left:55.720000pt;}
.x28{left:59.514667pt;}
.x33{left:61.274667pt;}
.x2e{left:66.714667pt;}
.x3d{left:71.866667pt;}
.x6{left:95.071988pt;}
.x40{left:96.031988pt;}
.xe{left:98.752000pt;}
.x3e{left:120.031988pt;}
.xb{left:132.031988pt;}
.x3f{left:144.026655pt;}
.x41{left:150.106655pt;}
.x1{left:156.666655pt;}
.x3{left:181.626655pt;}
.x10{left:198.106667pt;}
.xc{left:202.746655pt;}
.x4{left:210.266655pt;}
.x22{left:218.426667pt;}
.x2f{left:232.506667pt;}
.x2{left:252.666655pt;}
.x12{left:285.666667pt;}
.xd{left:297.666655pt;}
.x21{left:306.146667pt;}
.xa{left:346.786655pt;}
.x14{left:373.186667pt;}
.x9{left:376.066655pt;}
.x2d{left:386.466667pt;}
.x1d{left:393.506667pt;}
.x16{left:460.733333pt;}
.x2c{left:467.133333pt;}
.x1e{left:481.053333pt;}
.x17{left:548.253333pt;}
.x1f{left:568.573333pt;}
.x20{left:656.133333pt;}
.x5{left:704.133321pt;}
}




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