
    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_7e72d0e5413e2fab7f92f2c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196289;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_a51518b2c2c08505a184e925.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_42303ba047e0cb125758f3a0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073242;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_5efd12acc2a6fbf2a5f197f6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_8174573dbda30bfcaf1bdf91.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.lsa{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.119520px;}
.ls4{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.174000px;}
.lse{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.336000px;}
.ls2{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.080000px;}
.lsb{letter-spacing:10.944000px;}
.ls12{letter-spacing:13.680000px;}
.ls10{letter-spacing:14.400000px;}
.ls14{letter-spacing:17.424000px;}
.ls7{letter-spacing:25.200000px;}
.ls13{letter-spacing:53.424000px;}
.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;}
}
.wsd{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.784000px;}
.ws1{word-spacing:-16.488000px;}
.ws9{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.093600px;}
.wsb{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.140000px;}
.ws5{word-spacing:-12.420000px;}
.ws7{word-spacing:-11.700000px;}
.ws4{word-spacing:0.000000px;}
._e{margin-left:-4.717200px;}
._3{margin-left:-3.634800px;}
._2{margin-left:-2.400000px;}
._1{margin-left:-1.008000px;}
._0{width:1.090800px;}
._8{width:2.377200px;}
._5{width:3.960000px;}
._6{width:5.400000px;}
._7{width:6.829200px;}
._c{width:7.923600px;}
._9{width:9.072000px;}
._a{width:10.418400px;}
._12{width:11.541600px;}
._f{width:12.672000px;}
._b{width:14.328000px;}
._18{width:15.384000px;}
._d{width:16.560000px;}
._4{width:19.440000px;}
._14{width:20.592000px;}
._15{width:21.672000px;}
._13{width:23.112000px;}
._10{width:24.480000px;}
._11{width:25.705200px;}
._17{width:26.710800px;}
._1a{width:28.008000px;}
._16{width:29.592000px;}
._20{width:31.152000px;}
._1e{width:32.808000px;}
._1f{width:33.816000px;}
._1b{width:35.796240px;}
._19{width:41.112000px;}
._22{width:42.456000px;}
._23{width:43.812000px;}
._1d{width:62.089200px;}
._21{width:65.160000px;}
._1c{width:130.886640px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y7{bottom:-0.540000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.680000px;}
.y13f{bottom:11.880000px;}
.y11c{bottom:12.060000px;}
.y119{bottom:12.240000px;}
.y124{bottom:12.285000px;}
.ye{bottom:12.600000px;}
.y5{bottom:14.940000px;}
.y121{bottom:21.240000px;}
.y3{bottom:21.420000px;}
.y1{bottom:23.760000px;}
.y118{bottom:29.550000px;}
.y6{bottom:34.200000px;}
.y11b{bottom:38.340000px;}
.y11f{bottom:38.520000px;}
.y123{bottom:38.565000px;}
.y117{bottom:55.830000px;}
.yc{bottom:57.420000px;}
.yb{bottom:77.580000px;}
.ya{bottom:93.420000px;}
.yb2{bottom:112.860000px;}
.y39{bottom:117.360000px;}
.y13d{bottom:120.600000px;}
.y11a{bottom:121.860000px;}
.y165{bottom:122.220000px;}
.ye4{bottom:123.660000px;}
.y68{bottom:124.560000px;}
.y9e{bottom:127.260000px;}
.y188{bottom:130.860000px;}
.yb1{bottom:133.560000px;}
.yfa{bottom:135.720000px;}
.y38{bottom:138.060000px;}
.y1a4{bottom:140.760000px;}
.y172{bottom:142.560000px;}
.y164{bottom:142.920000px;}
.ye3{bottom:144.360000px;}
.y67{bottom:145.260000px;}
.y9d{bottom:147.960000px;}
.y13c{bottom:150.300000px;}
.yb0{bottom:154.260000px;}
.y37{bottom:158.760000px;}
.y187{bottom:160.560000px;}
.y1a3{bottom:161.460000px;}
.yc1{bottom:163.260000px;}
.y163{bottom:163.620000px;}
.ye2{bottom:165.060000px;}
.yf9{bottom:165.420000px;}
.y66{bottom:165.960000px;}
.y1bb{bottom:167.760000px;}
.y9c{bottom:168.660000px;}
.y13b{bottom:171.000000px;}
.yaf{bottom:174.960000px;}
.y36{bottom:179.460000px;}
.y116{bottom:183.960000px;}
.y162{bottom:184.320000px;}
.ye1{bottom:185.760000px;}
.y1ba{bottom:188.460000px;}
.y9b{bottom:189.360000px;}
.y186{bottom:190.260000px;}
.y1a2{bottom:191.160000px;}
.y13a{bottom:191.700000px;}
.yc0{bottom:192.960000px;}
.y1cf{bottom:194.760000px;}
.yf8{bottom:195.120000px;}
.y65{bottom:195.660000px;}
.y35{bottom:200.190000px;}
.yae{bottom:204.690000px;}
.ye0{bottom:206.490000px;}
.y139{bottom:212.430000px;}
.ybf{bottom:213.690000px;}
.y161{bottom:214.050000px;}
.y1c9{bottom:215.490000px;}
.y76{bottom:216.390000px;}
.y1b9{bottom:218.190000px;}
.y9a{bottom:219.090000px;}
.y185{bottom:219.990000px;}
.y34{bottom:220.890000px;}
.yf7{bottom:224.850000px;}
.y64{bottom:225.390000px;}
.ydf{bottom:227.190000px;}
.y138{bottom:233.130000px;}
.ybe{bottom:234.390000px;}
.y160{bottom:234.750000px;}
.y1c8{bottom:236.190000px;}
.y75{bottom:237.090000px;}
.y1b8{bottom:238.890000px;}
.y99{bottom:239.790000px;}
.y1a1{bottom:241.590000px;}
.y63{bottom:246.090000px;}
.y184{bottom:249.690000px;}
.y33{bottom:250.590000px;}
.y137{bottom:253.830000px;}
.yf6{bottom:254.550000px;}
.ybd{bottom:255.090000px;}
.y15f{bottom:255.450000px;}
.yde{bottom:256.890000px;}
.y74{bottom:257.790000px;}
.y1b7{bottom:259.590000px;}
.y98{bottom:260.490000px;}
.y1a0{bottom:262.290000px;}
.y1c7{bottom:265.890000px;}
.y62{bottom:266.790000px;}
.ybc{bottom:275.790000px;}
.y15e{bottom:276.150000px;}
.y183{bottom:279.390000px;}
.y32{bottom:280.290000px;}
.y97{bottom:281.190000px;}
.yf5{bottom:284.250000px;}
.ydd{bottom:286.590000px;}
.y61{bottom:287.490000px;}
.y19f{bottom:291.990000px;}
.ybb{bottom:296.490000px;}
.y15d{bottom:296.850000px;}
.y96{bottom:301.890000px;}
.y115{bottom:305.490000px;}
.ydc{bottom:307.290000px;}
.y60{bottom:308.190000px;}
.y182{bottom:309.090000px;}
.y31{bottom:309.990000px;}
.y19e{bottom:312.690000px;}
.yf4{bottom:313.950000px;}
.y136{bottom:316.290000px;}
.yba{bottom:317.190000px;}
.y15c{bottom:317.550000px;}
.y95{bottom:322.590000px;}
.ydb{bottom:327.990000px;}
.y5f{bottom:328.890000px;}
.y30{bottom:330.690000px;}
.y114{bottom:335.190000px;}
.y1c6{bottom:336.990000px;}
.yad{bottom:337.890000px;}
.y15b{bottom:338.250000px;}
.y181{bottom:338.790000px;}
.y1b6{bottom:339.690000px;}
.y19d{bottom:342.390000px;}
.y94{bottom:343.290000px;}
.yf3{bottom:343.650000px;}
.yda{bottom:348.690000px;}
.y5e{bottom:349.590000px;}
.y135{bottom:352.290000px;}
.y113{bottom:355.890000px;}
.y1c5{bottom:357.690000px;}
.yac{bottom:358.590000px;}
.y2f{bottom:360.390000px;}
.y93{bottom:363.990000px;}
.y1ce{bottom:366.690000px;}
.y15a{bottom:367.950000px;}
.y180{bottom:368.490000px;}
.yd9{bottom:369.390000px;}
.y5d{bottom:370.290000px;}
.y19c{bottom:372.090000px;}
.yf2{bottom:373.350000px;}
.y112{bottom:376.590000px;}
.y73{bottom:379.290000px;}
.y2e{bottom:381.090000px;}
.y92{bottom:384.690000px;}
.y1c4{bottom:387.390000px;}
.y159{bottom:388.650000px;}
.yd8{bottom:390.090000px;}
.y5c{bottom:390.990000px;}
.y19b{bottom:392.790000px;}
.y111{bottom:397.290000px;}
.y17f{bottom:398.190000px;}
.y72{bottom:399.990000px;}
.y134{bottom:401.250000px;}
.y2d{bottom:401.790000px;}
.yf1{bottom:403.050000px;}
.y91{bottom:405.390000px;}
.y1c3{bottom:408.090000px;}
.y158{bottom:409.350000px;}
.yd7{bottom:410.790000px;}
.y5b{bottom:411.690000px;}
.y1b5{bottom:419.790000px;}
.y71{bottom:420.690000px;}
.y2c{bottom:422.490000px;}
.y90{bottom:426.090000px;}
.y110{bottom:426.990000px;}
.y17e{bottom:427.890000px;}
.y1c2{bottom:428.790000px;}
.y171{bottom:429.690000px;}
.y157{bottom:429.870000px;}
.y133{bottom:430.950000px;}
.yf0{bottom:432.750000px;}
.y1cd{bottom:437.835000px;}
.yd6{bottom:440.535000px;}
.y5a{bottom:441.435000px;}
.y2b{bottom:443.235000px;}
.y8f{bottom:446.835000px;}
.y170{bottom:450.435000px;}
.y10f{bottom:456.735000px;}
.y17d{bottom:457.635000px;}
.y1c1{bottom:458.535000px;}
.y156{bottom:459.615000px;}
.y132{bottom:460.695000px;}
.y1b4{bottom:461.235000px;}
.y59{bottom:462.135000px;}
.yef{bottom:462.495000px;}
.y2a{bottom:463.935000px;}
.y8e{bottom:467.535000px;}
.yd5{bottom:470.235000px;}
.yb9{bottom:471.135000px;}
.y19a{bottom:472.935000px;}
.y1c0{bottom:479.235000px;}
.y131{bottom:481.395000px;}
.y58{bottom:482.835000px;}
.y29{bottom:484.635000px;}
.y10e{bottom:486.435000px;}
.y17c{bottom:487.335000px;}
.y1cc{bottom:488.235000px;}
.y155{bottom:489.315000px;}
.y1b3{bottom:490.935000px;}
.yb8{bottom:491.835000px;}
.yee{bottom:492.195000px;}
.y199{bottom:493.635000px;}
.y8d{bottom:497.235000px;}
.yd4{bottom:499.935000px;}
.y130{bottom:502.095000px;}
.y57{bottom:503.535000px;}
.y28{bottom:505.335000px;}
.y1cb{bottom:508.935000px;}
.y1b2{bottom:511.635000px;}
.yb7{bottom:512.535000px;}
.y10d{bottom:516.135000px;}
.y17b{bottom:517.035000px;}
.y8c{bottom:517.935000px;}
.y154{bottom:519.015000px;}
.yed{bottom:521.895000px;}
.y198{bottom:523.335000px;}
.y56{bottom:524.235000px;}
.y27{bottom:526.035000px;}
.yd3{bottom:529.635000px;}
.y12f{bottom:531.795000px;}
.y1b1{bottom:532.335000px;}
.yb6{bottom:533.235000px;}
.y8b{bottom:538.635000px;}
.y153{bottom:539.715000px;}
.y197{bottom:544.035000px;}
.y55{bottom:544.935000px;}
.y10c{bottom:545.835000px;}
.y26{bottom:546.735000px;}
.yd2{bottom:550.335000px;}
.yec{bottom:551.595000px;}
.y1b0{bottom:553.035000px;}
.yb5{bottom:553.935000px;}
.y12e{bottom:558.255000px;}
.y8a{bottom:559.335000px;}
.y152{bottom:560.415000px;}
.y196{bottom:564.735000px;}
.y54{bottom:565.635000px;}
.y25{bottom:567.435000px;}
.yd1{bottom:571.035000px;}
.yab{bottom:574.635000px;}
.y10b{bottom:575.535000px;}
.y17a{bottom:576.435000px;}
.y1ca{bottom:580.035000px;}
.y151{bottom:581.115000px;}
.yeb{bottom:581.295000px;}
.y1af{bottom:582.735000px;}
.y195{bottom:585.435000px;}
.y53{bottom:586.335000px;}
.y24{bottom:588.135000px;}
.y89{bottom:589.035000px;}
.y12d{bottom:594.255000px;}
.yaa{bottom:595.335000px;}
.yd0{bottom:600.735000px;}
.yea{bottom:601.995000px;}
.y1ae{bottom:603.435000px;}
.y10a{bottom:605.235000px;}
.y179{bottom:606.135000px;}
.y52{bottom:607.035000px;}
.y23{bottom:608.835000px;}
.y88{bottom:609.735000px;}
.y150{bottom:610.815000px;}
.y194{bottom:615.135000px;}
.ya9{bottom:616.035000px;}
.yd{bottom:617.475000px;}
.y1bf{bottom:621.435000px;}
.ye9{bottom:622.695000px;}
.y1ad{bottom:624.135000px;}
.y51{bottom:627.735000px;}
.y22{bottom:629.535000px;}
.y12c{bottom:630.255000px;}
.y87{bottom:630.435000px;}
.y14f{bottom:631.515000px;}
.y109{bottom:634.935000px;}
.y178{bottom:635.835000px;}
.ya8{bottom:636.735000px;}
.y1be{bottom:642.135000px;}
.ye8{bottom:643.395000px;}
.y50{bottom:648.435000px;}
.y21{bottom:650.235000px;}
.y86{bottom:651.135000px;}
.y14e{bottom:652.215000px;}
.y1ac{bottom:653.835000px;}
.ya7{bottom:657.435000px;}
.ycf{bottom:660.135000px;}
.ye7{bottom:664.095000px;}
.y108{bottom:664.635000px;}
.y177{bottom:665.535000px;}
.y16f{bottom:666.435000px;}
.y4f{bottom:669.135000px;}
.y20{bottom:670.935000px;}
.y85{bottom:671.835000px;}
.y1ab{bottom:674.565000px;}
.ya6{bottom:678.165000px;}
.y14d{bottom:678.885000px;}
.y12b{bottom:679.245000px;}
.yce{bottom:680.865000px;}
.y193{bottom:686.265000px;}
.y16e{bottom:687.165000px;}
.y4e{bottom:689.865000px;}
.y1f{bottom:691.665000px;}
.y1bd{bottom:692.565000px;}
.ye6{bottom:693.825000px;}
.y107{bottom:694.365000px;}
.y176{bottom:695.265000px;}
.ya5{bottom:698.865000px;}
.y84{bottom:701.565000px;}
.y16d{bottom:707.865000px;}
.y12a{bottom:708.945000px;}
.y4d{bottom:710.565000px;}
.y1e{bottom:712.365000px;}
.y1bc{bottom:713.265000px;}
.y14c{bottom:714.885000px;}
.y192{bottom:715.965000px;}
.ya4{bottom:719.565000px;}
.ycd{bottom:722.265000px;}
.y106{bottom:724.065000px;}
.y175{bottom:724.965000px;}
.y16c{bottom:728.565000px;}
.y4c{bottom:731.265000px;}
.y191{bottom:736.665000px;}
.y129{bottom:738.645000px;}
.y70{bottom:740.265000px;}
.y1d{bottom:742.065000px;}
.ycc{bottom:742.965000px;}
.y16b{bottom:749.265000px;}
.y14b{bottom:750.885000px;}
.y4b{bottom:751.965000px;}
.y105{bottom:753.765000px;}
.y174{bottom:754.665000px;}
.y190{bottom:757.365000px;}
.y128{bottom:759.345000px;}
.ya3{bottom:760.965000px;}
.ycb{bottom:763.665000px;}
.y6f{bottom:769.965000px;}
.y1c{bottom:771.765000px;}
.y4a{bottom:772.665000px;}
.y1aa{bottom:775.365000px;}
.ya2{bottom:781.665000px;}
.y104{bottom:783.465000px;}
.y173{bottom:784.365000px;}
.y18f{bottom:787.065000px;}
.y127{bottom:789.045000px;}
.y6e{bottom:790.665000px;}
.y49{bottom:793.365000px;}
.y14a{bottom:799.845000px;}
.y1b{bottom:801.465000px;}
.yb4{bottom:802.365000px;}
.y1a9{bottom:805.065000px;}
.y18e{bottom:807.765000px;}
.y6d{bottom:811.365000px;}
.y103{bottom:813.165000px;}
.y83{bottom:814.065000px;}
.y126{bottom:818.745000px;}
.y16a{bottom:820.365000px;}
.y48{bottom:823.065000px;}
.y1a8{bottom:825.765000px;}
.y18d{bottom:828.465000px;}
.y1a{bottom:829.005000px;}
.y149{bottom:829.545000px;}
.y6c{bottom:832.065000px;}
.y82{bottom:834.765000px;}
.y169{bottom:841.065000px;}
.y102{bottom:842.865000px;}
.yca{bottom:843.765000px;}
.y125{bottom:845.205000px;}
.y1a7{bottom:846.465000px;}
.y18c{bottom:849.165000px;}
.y19{bottom:851.865000px;}
.y47{bottom:852.765000px;}
.y81{bottom:855.465000px;}
.y148{bottom:859.245000px;}
.y168{bottom:861.765000px;}
.yc9{bottom:864.465000px;}
.y101{bottom:872.565000px;}
.ya1{bottom:873.465000px;}
.y1a6{bottom:876.165000px;}
.y18b{bottom:878.865000px;}
.y147{bottom:879.945000px;}
.y46{bottom:882.465000px;}
.y80{bottom:885.165000px;}
.y18{bottom:888.405000px;}
.ya0{bottom:894.165000px;}
.y1a5{bottom:896.865000px;}
.y146{bottom:900.465000px;}
.y100{bottom:902.265000px;}
.y45{bottom:903.165000px;}
.yc8{bottom:905.865000px;}
.y122{bottom:907.485000px;}
.y18a{bottom:908.565000px;}
.y17{bottom:911.265000px;}
.y7f{bottom:914.910000px;}
.y145{bottom:921.210000px;}
.y6b{bottom:923.910000px;}
.yc7{bottom:926.610000px;}
.yff{bottom:932.010000px;}
.y44{bottom:932.910000px;}
.y7e{bottom:935.610000px;}
.y189{bottom:938.310000px;}
.y6a{bottom:944.610000px;}
.yc6{bottom:947.310000px;}
.y16{bottom:947.850000px;}
.y144{bottom:950.910000px;}
.y43{bottom:953.610000px;}
.y7d{bottom:956.310000px;}
.yfe{bottom:961.710000px;}
.y69{bottom:965.310000px;}
.yc5{bottom:968.010000px;}
.y120{bottom:969.810000px;}
.y15{bottom:970.710000px;}
.y143{bottom:971.610000px;}
.y42{bottom:974.310000px;}
.y7c{bottom:977.010000px;}
.y9f{bottom:986.010000px;}
.yc4{bottom:988.710000px;}
.yfd{bottom:991.410000px;}
.y142{bottom:992.310000px;}
.y41{bottom:995.010000px;}
.y7b{bottom:997.710000px;}
.y14{bottom:998.250000px;}
.yb3{bottom:1006.710000px;}
.yc3{bottom:1009.410000px;}
.y40{bottom:1015.710000px;}
.y7a{bottom:1018.410000px;}
.y141{bottom:1018.950000px;}
.y13{bottom:1021.110000px;}
.y167{bottom:1027.410000px;}
.y11e{bottom:1032.090000px;}
.y3f{bottom:1036.410000px;}
.y79{bottom:1039.110000px;}
.y12{bottom:1041.810000px;}
.y166{bottom:1048.110000px;}
.yfc{bottom:1050.810000px;}
.y140{bottom:1054.950000px;}
.y3e{bottom:1057.110000px;}
.y78{bottom:1059.810000px;}
.yc2{bottom:1068.810000px;}
.y11{bottom:1071.510000px;}
.y3d{bottom:1077.810000px;}
.yfb{bottom:1080.510000px;}
.y77{bottom:1089.510000px;}
.y13e{bottom:1090.950000px;}
.y11d{bottom:1094.370000px;}
.y3c{bottom:1098.510000px;}
.y10{bottom:1101.210000px;}
.ye5{bottom:1110.210000px;}
.y3b{bottom:1119.210000px;}
.yf{bottom:1130.910000px;}
.y3a{bottom:1139.910000px;}
.y9{bottom:1193.220000px;}
.y8{bottom:1208.880000px;}
.y4{bottom:1212.840000px;}
.h2{height:18.000000px;}
.h9{height:28.260000px;}
.h4{height:29.700000px;}
.h18{height:35.100000px;}
.h15{height:35.280000px;}
.hc{height:43.246406px;}
.h6{height:48.960000px;}
.h16{height:51.239531px;}
.h7{height:53.573906px;}
.h17{height:54.293906px;}
.h3{height:61.189805px;}
.h11{height:61.380000px;}
.h12{height:61.416000px;}
.h13{height:61.560000px;}
.h14{height:61.596000px;}
.ha{height:61.734375px;}
.hb{height:64.546875px;}
.hd{height:65.122031px;}
.h8{height:65.884219px;}
.he{height:70.606406px;}
.hf{height:70.726406px;}
.h5{height:73.722656px;}
.h10{height:78.876000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:66.420000px;}
.w8{width:84.990000px;}
.w22{width:102.060000px;}
.w12{width:102.960000px;}
.wd{width:106.200000px;}
.w13{width:108.216000px;}
.w21{width:113.076000px;}
.w1f{width:114.660000px;}
.w1e{width:115.956000px;}
.w20{width:116.496000px;}
.w1d{width:118.260000px;}
.w17{width:118.296000px;}
.w1a{width:118.440000px;}
.w15{width:118.620000px;}
.w1b{width:119.556000px;}
.wc{width:127.656000px;}
.w16{width:128.916000px;}
.w1c{width:129.060000px;}
.w6{width:130.536000px;}
.w18{width:130.860000px;}
.w10{width:132.876000px;}
.wf{width:134.856000px;}
.w11{width:146.196000px;}
.we{width:153.180000px;}
.w2{width:165.810000px;}
.w4{width:167.970000px;}
.w14{width:170.850000px;}
.wb{width:180.750000px;}
.w19{width:183.810000px;}
.w3{width:184.530000px;}
.wa{width:191.370000px;}
.w5{width:667.770000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x1f{left:5.400000px;}
.x1a{left:8.100000px;}
.xc{left:10.800000px;}
.x27{left:12.060000px;}
.x5{left:20.340000px;}
.x8{left:21.780000px;}
.x9{left:26.640000px;}
.x3{left:61.380000px;}
.x6{left:83.556000px;}
.xa{left:106.235987px;}
.xd{left:108.755987px;}
.x16{left:111.095987px;}
.x19{left:114.336000px;}
.x17{left:127.475987px;}
.xe{left:129.635987px;}
.x2e{left:138.275987px;}
.x14{left:148.715987px;}
.x12{left:176.789987px;}
.x1b{left:180.750000px;}
.x11{left:220.889987px;}
.x25{left:224.850000px;}
.x20{left:259.410000px;}
.xf{left:315.074987px;}
.x13{left:337.934987px;}
.x15{left:340.274987px;}
.x26{left:353.775000px;}
.x1c{left:372.135000px;}
.x4{left:385.635000px;}
.x21{left:394.275000px;}
.x10{left:446.474987px;}
.x2b{left:455.115000px;}
.x28{left:472.065000px;}
.x2a{left:473.145000px;}
.x24{left:502.485000px;}
.x22{left:527.145000px;}
.x1d{left:552.885000px;}
.x2c{left:571.605000px;}
.x29{left:602.925000px;}
.x18{left:636.044987px;}
.x23{left:673.350000px;}
.x1e{left:680.550000px;}
.x2d{left:684.690000px;}
.x1{left:694.950000px;}
.x7{left:745.350000px;}
.xb{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.106240pt;}
.ls4{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.154667pt;}
.lse{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.298667pt;}
.ls2{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.960000pt;}
.lsb{letter-spacing:9.728000pt;}
.ls12{letter-spacing:12.160000pt;}
.ls10{letter-spacing:12.800000pt;}
.ls14{letter-spacing:15.488000pt;}
.ls7{letter-spacing:22.400000pt;}
.ls13{letter-spacing:47.488000pt;}
.wsd{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws1{word-spacing:-14.656000pt;}
.ws9{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.416533pt;}
.wsb{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.680000pt;}
.ws5{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.400000pt;}
.ws4{word-spacing:0.000000pt;}
._e{margin-left:-4.193067pt;}
._3{margin-left:-3.230933pt;}
._2{margin-left:-2.133333pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.969600pt;}
._8{width:2.113067pt;}
._5{width:3.520000pt;}
._6{width:4.800000pt;}
._7{width:6.070400pt;}
._c{width:7.043200pt;}
._9{width:8.064000pt;}
._a{width:9.260800pt;}
._12{width:10.259200pt;}
._f{width:11.264000pt;}
._b{width:12.736000pt;}
._18{width:13.674667pt;}
._d{width:14.720000pt;}
._4{width:17.280000pt;}
._14{width:18.304000pt;}
._15{width:19.264000pt;}
._13{width:20.544000pt;}
._10{width:21.760000pt;}
._11{width:22.849067pt;}
._17{width:23.742933pt;}
._1a{width:24.896000pt;}
._16{width:26.304000pt;}
._20{width:27.690667pt;}
._1e{width:29.162667pt;}
._1f{width:30.058667pt;}
._1b{width:31.818880pt;}
._19{width:36.544000pt;}
._22{width:37.738667pt;}
._23{width:38.944000pt;}
._1d{width:55.190400pt;}
._21{width:57.920000pt;}
._1c{width:116.343680pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y7{bottom:-0.480000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.160000pt;}
.y13f{bottom:10.560000pt;}
.y11c{bottom:10.720000pt;}
.y119{bottom:10.880000pt;}
.y124{bottom:10.920000pt;}
.ye{bottom:11.200000pt;}
.y5{bottom:13.280000pt;}
.y121{bottom:18.880000pt;}
.y3{bottom:19.040000pt;}
.y1{bottom:21.120000pt;}
.y118{bottom:26.266667pt;}
.y6{bottom:30.400000pt;}
.y11b{bottom:34.080000pt;}
.y11f{bottom:34.240000pt;}
.y123{bottom:34.280000pt;}
.y117{bottom:49.626667pt;}
.yc{bottom:51.040000pt;}
.yb{bottom:68.960000pt;}
.ya{bottom:83.040000pt;}
.yb2{bottom:100.320000pt;}
.y39{bottom:104.320000pt;}
.y13d{bottom:107.200000pt;}
.y11a{bottom:108.320000pt;}
.y165{bottom:108.640000pt;}
.ye4{bottom:109.920000pt;}
.y68{bottom:110.720000pt;}
.y9e{bottom:113.120000pt;}
.y188{bottom:116.320000pt;}
.yb1{bottom:118.720000pt;}
.yfa{bottom:120.640000pt;}
.y38{bottom:122.720000pt;}
.y1a4{bottom:125.120000pt;}
.y172{bottom:126.720000pt;}
.y164{bottom:127.040000pt;}
.ye3{bottom:128.320000pt;}
.y67{bottom:129.120000pt;}
.y9d{bottom:131.520000pt;}
.y13c{bottom:133.600000pt;}
.yb0{bottom:137.120000pt;}
.y37{bottom:141.120000pt;}
.y187{bottom:142.720000pt;}
.y1a3{bottom:143.520000pt;}
.yc1{bottom:145.120000pt;}
.y163{bottom:145.440000pt;}
.ye2{bottom:146.720000pt;}
.yf9{bottom:147.040000pt;}
.y66{bottom:147.520000pt;}
.y1bb{bottom:149.120000pt;}
.y9c{bottom:149.920000pt;}
.y13b{bottom:152.000000pt;}
.yaf{bottom:155.520000pt;}
.y36{bottom:159.520000pt;}
.y116{bottom:163.520000pt;}
.y162{bottom:163.840000pt;}
.ye1{bottom:165.120000pt;}
.y1ba{bottom:167.520000pt;}
.y9b{bottom:168.320000pt;}
.y186{bottom:169.120000pt;}
.y1a2{bottom:169.920000pt;}
.y13a{bottom:170.400000pt;}
.yc0{bottom:171.520000pt;}
.y1cf{bottom:173.120000pt;}
.yf8{bottom:173.440000pt;}
.y65{bottom:173.920000pt;}
.y35{bottom:177.946667pt;}
.yae{bottom:181.946667pt;}
.ye0{bottom:183.546667pt;}
.y139{bottom:188.826667pt;}
.ybf{bottom:189.946667pt;}
.y161{bottom:190.266667pt;}
.y1c9{bottom:191.546667pt;}
.y76{bottom:192.346667pt;}
.y1b9{bottom:193.946667pt;}
.y9a{bottom:194.746667pt;}
.y185{bottom:195.546667pt;}
.y34{bottom:196.346667pt;}
.yf7{bottom:199.866667pt;}
.y64{bottom:200.346667pt;}
.ydf{bottom:201.946667pt;}
.y138{bottom:207.226667pt;}
.ybe{bottom:208.346667pt;}
.y160{bottom:208.666667pt;}
.y1c8{bottom:209.946667pt;}
.y75{bottom:210.746667pt;}
.y1b8{bottom:212.346667pt;}
.y99{bottom:213.146667pt;}
.y1a1{bottom:214.746667pt;}
.y63{bottom:218.746667pt;}
.y184{bottom:221.946667pt;}
.y33{bottom:222.746667pt;}
.y137{bottom:225.626667pt;}
.yf6{bottom:226.266667pt;}
.ybd{bottom:226.746667pt;}
.y15f{bottom:227.066667pt;}
.yde{bottom:228.346667pt;}
.y74{bottom:229.146667pt;}
.y1b7{bottom:230.746667pt;}
.y98{bottom:231.546667pt;}
.y1a0{bottom:233.146667pt;}
.y1c7{bottom:236.346667pt;}
.y62{bottom:237.146667pt;}
.ybc{bottom:245.146667pt;}
.y15e{bottom:245.466667pt;}
.y183{bottom:248.346667pt;}
.y32{bottom:249.146667pt;}
.y97{bottom:249.946667pt;}
.yf5{bottom:252.666667pt;}
.ydd{bottom:254.746667pt;}
.y61{bottom:255.546667pt;}
.y19f{bottom:259.546667pt;}
.ybb{bottom:263.546667pt;}
.y15d{bottom:263.866667pt;}
.y96{bottom:268.346667pt;}
.y115{bottom:271.546667pt;}
.ydc{bottom:273.146667pt;}
.y60{bottom:273.946667pt;}
.y182{bottom:274.746667pt;}
.y31{bottom:275.546667pt;}
.y19e{bottom:277.946667pt;}
.yf4{bottom:279.066667pt;}
.y136{bottom:281.146667pt;}
.yba{bottom:281.946667pt;}
.y15c{bottom:282.266667pt;}
.y95{bottom:286.746667pt;}
.ydb{bottom:291.546667pt;}
.y5f{bottom:292.346667pt;}
.y30{bottom:293.946667pt;}
.y114{bottom:297.946667pt;}
.y1c6{bottom:299.546667pt;}
.yad{bottom:300.346667pt;}
.y15b{bottom:300.666667pt;}
.y181{bottom:301.146667pt;}
.y1b6{bottom:301.946667pt;}
.y19d{bottom:304.346667pt;}
.y94{bottom:305.146667pt;}
.yf3{bottom:305.466667pt;}
.yda{bottom:309.946667pt;}
.y5e{bottom:310.746667pt;}
.y135{bottom:313.146667pt;}
.y113{bottom:316.346667pt;}
.y1c5{bottom:317.946667pt;}
.yac{bottom:318.746667pt;}
.y2f{bottom:320.346667pt;}
.y93{bottom:323.546667pt;}
.y1ce{bottom:325.946667pt;}
.y15a{bottom:327.066667pt;}
.y180{bottom:327.546667pt;}
.yd9{bottom:328.346667pt;}
.y5d{bottom:329.146667pt;}
.y19c{bottom:330.746667pt;}
.yf2{bottom:331.866667pt;}
.y112{bottom:334.746667pt;}
.y73{bottom:337.146667pt;}
.y2e{bottom:338.746667pt;}
.y92{bottom:341.946667pt;}
.y1c4{bottom:344.346667pt;}
.y159{bottom:345.466667pt;}
.yd8{bottom:346.746667pt;}
.y5c{bottom:347.546667pt;}
.y19b{bottom:349.146667pt;}
.y111{bottom:353.146667pt;}
.y17f{bottom:353.946667pt;}
.y72{bottom:355.546667pt;}
.y134{bottom:356.666667pt;}
.y2d{bottom:357.146667pt;}
.yf1{bottom:358.266667pt;}
.y91{bottom:360.346667pt;}
.y1c3{bottom:362.746667pt;}
.y158{bottom:363.866667pt;}
.yd7{bottom:365.146667pt;}
.y5b{bottom:365.946667pt;}
.y1b5{bottom:373.146667pt;}
.y71{bottom:373.946667pt;}
.y2c{bottom:375.546667pt;}
.y90{bottom:378.746667pt;}
.y110{bottom:379.546667pt;}
.y17e{bottom:380.346667pt;}
.y1c2{bottom:381.146667pt;}
.y171{bottom:381.946667pt;}
.y157{bottom:382.106667pt;}
.y133{bottom:383.066667pt;}
.yf0{bottom:384.666667pt;}
.y1cd{bottom:389.186667pt;}
.yd6{bottom:391.586667pt;}
.y5a{bottom:392.386667pt;}
.y2b{bottom:393.986667pt;}
.y8f{bottom:397.186667pt;}
.y170{bottom:400.386667pt;}
.y10f{bottom:405.986667pt;}
.y17d{bottom:406.786667pt;}
.y1c1{bottom:407.586667pt;}
.y156{bottom:408.546667pt;}
.y132{bottom:409.506667pt;}
.y1b4{bottom:409.986667pt;}
.y59{bottom:410.786667pt;}
.yef{bottom:411.106667pt;}
.y2a{bottom:412.386667pt;}
.y8e{bottom:415.586667pt;}
.yd5{bottom:417.986667pt;}
.yb9{bottom:418.786667pt;}
.y19a{bottom:420.386667pt;}
.y1c0{bottom:425.986667pt;}
.y131{bottom:427.906667pt;}
.y58{bottom:429.186667pt;}
.y29{bottom:430.786667pt;}
.y10e{bottom:432.386667pt;}
.y17c{bottom:433.186667pt;}
.y1cc{bottom:433.986667pt;}
.y155{bottom:434.946667pt;}
.y1b3{bottom:436.386667pt;}
.yb8{bottom:437.186667pt;}
.yee{bottom:437.506667pt;}
.y199{bottom:438.786667pt;}
.y8d{bottom:441.986667pt;}
.yd4{bottom:444.386667pt;}
.y130{bottom:446.306667pt;}
.y57{bottom:447.586667pt;}
.y28{bottom:449.186667pt;}
.y1cb{bottom:452.386667pt;}
.y1b2{bottom:454.786667pt;}
.yb7{bottom:455.586667pt;}
.y10d{bottom:458.786667pt;}
.y17b{bottom:459.586667pt;}
.y8c{bottom:460.386667pt;}
.y154{bottom:461.346667pt;}
.yed{bottom:463.906667pt;}
.y198{bottom:465.186667pt;}
.y56{bottom:465.986667pt;}
.y27{bottom:467.586667pt;}
.yd3{bottom:470.786667pt;}
.y12f{bottom:472.706667pt;}
.y1b1{bottom:473.186667pt;}
.yb6{bottom:473.986667pt;}
.y8b{bottom:478.786667pt;}
.y153{bottom:479.746667pt;}
.y197{bottom:483.586667pt;}
.y55{bottom:484.386667pt;}
.y10c{bottom:485.186667pt;}
.y26{bottom:485.986667pt;}
.yd2{bottom:489.186667pt;}
.yec{bottom:490.306667pt;}
.y1b0{bottom:491.586667pt;}
.yb5{bottom:492.386667pt;}
.y12e{bottom:496.226667pt;}
.y8a{bottom:497.186667pt;}
.y152{bottom:498.146667pt;}
.y196{bottom:501.986667pt;}
.y54{bottom:502.786667pt;}
.y25{bottom:504.386667pt;}
.yd1{bottom:507.586667pt;}
.yab{bottom:510.786667pt;}
.y10b{bottom:511.586667pt;}
.y17a{bottom:512.386667pt;}
.y1ca{bottom:515.586667pt;}
.y151{bottom:516.546667pt;}
.yeb{bottom:516.706667pt;}
.y1af{bottom:517.986667pt;}
.y195{bottom:520.386667pt;}
.y53{bottom:521.186667pt;}
.y24{bottom:522.786667pt;}
.y89{bottom:523.586667pt;}
.y12d{bottom:528.226667pt;}
.yaa{bottom:529.186667pt;}
.yd0{bottom:533.986667pt;}
.yea{bottom:535.106667pt;}
.y1ae{bottom:536.386667pt;}
.y10a{bottom:537.986667pt;}
.y179{bottom:538.786667pt;}
.y52{bottom:539.586667pt;}
.y23{bottom:541.186667pt;}
.y88{bottom:541.986667pt;}
.y150{bottom:542.946667pt;}
.y194{bottom:546.786667pt;}
.ya9{bottom:547.586667pt;}
.yd{bottom:548.866667pt;}
.y1bf{bottom:552.386667pt;}
.ye9{bottom:553.506667pt;}
.y1ad{bottom:554.786667pt;}
.y51{bottom:557.986667pt;}
.y22{bottom:559.586667pt;}
.y12c{bottom:560.226667pt;}
.y87{bottom:560.386667pt;}
.y14f{bottom:561.346667pt;}
.y109{bottom:564.386667pt;}
.y178{bottom:565.186667pt;}
.ya8{bottom:565.986667pt;}
.y1be{bottom:570.786667pt;}
.ye8{bottom:571.906667pt;}
.y50{bottom:576.386667pt;}
.y21{bottom:577.986667pt;}
.y86{bottom:578.786667pt;}
.y14e{bottom:579.746667pt;}
.y1ac{bottom:581.186667pt;}
.ya7{bottom:584.386667pt;}
.ycf{bottom:586.786667pt;}
.ye7{bottom:590.306667pt;}
.y108{bottom:590.786667pt;}
.y177{bottom:591.586667pt;}
.y16f{bottom:592.386667pt;}
.y4f{bottom:594.786667pt;}
.y20{bottom:596.386667pt;}
.y85{bottom:597.186667pt;}
.y1ab{bottom:599.613333pt;}
.ya6{bottom:602.813333pt;}
.y14d{bottom:603.453333pt;}
.y12b{bottom:603.773333pt;}
.yce{bottom:605.213333pt;}
.y193{bottom:610.013333pt;}
.y16e{bottom:610.813333pt;}
.y4e{bottom:613.213333pt;}
.y1f{bottom:614.813333pt;}
.y1bd{bottom:615.613333pt;}
.ye6{bottom:616.733333pt;}
.y107{bottom:617.213333pt;}
.y176{bottom:618.013333pt;}
.ya5{bottom:621.213333pt;}
.y84{bottom:623.613333pt;}
.y16d{bottom:629.213333pt;}
.y12a{bottom:630.173333pt;}
.y4d{bottom:631.613333pt;}
.y1e{bottom:633.213333pt;}
.y1bc{bottom:634.013333pt;}
.y14c{bottom:635.453333pt;}
.y192{bottom:636.413333pt;}
.ya4{bottom:639.613333pt;}
.ycd{bottom:642.013333pt;}
.y106{bottom:643.613333pt;}
.y175{bottom:644.413333pt;}
.y16c{bottom:647.613333pt;}
.y4c{bottom:650.013333pt;}
.y191{bottom:654.813333pt;}
.y129{bottom:656.573333pt;}
.y70{bottom:658.013333pt;}
.y1d{bottom:659.613333pt;}
.ycc{bottom:660.413333pt;}
.y16b{bottom:666.013333pt;}
.y14b{bottom:667.453333pt;}
.y4b{bottom:668.413333pt;}
.y105{bottom:670.013333pt;}
.y174{bottom:670.813333pt;}
.y190{bottom:673.213333pt;}
.y128{bottom:674.973333pt;}
.ya3{bottom:676.413333pt;}
.ycb{bottom:678.813333pt;}
.y6f{bottom:684.413333pt;}
.y1c{bottom:686.013333pt;}
.y4a{bottom:686.813333pt;}
.y1aa{bottom:689.213333pt;}
.ya2{bottom:694.813333pt;}
.y104{bottom:696.413333pt;}
.y173{bottom:697.213333pt;}
.y18f{bottom:699.613333pt;}
.y127{bottom:701.373333pt;}
.y6e{bottom:702.813333pt;}
.y49{bottom:705.213333pt;}
.y14a{bottom:710.973333pt;}
.y1b{bottom:712.413333pt;}
.yb4{bottom:713.213333pt;}
.y1a9{bottom:715.613333pt;}
.y18e{bottom:718.013333pt;}
.y6d{bottom:721.213333pt;}
.y103{bottom:722.813333pt;}
.y83{bottom:723.613333pt;}
.y126{bottom:727.773333pt;}
.y16a{bottom:729.213333pt;}
.y48{bottom:731.613333pt;}
.y1a8{bottom:734.013333pt;}
.y18d{bottom:736.413333pt;}
.y1a{bottom:736.893333pt;}
.y149{bottom:737.373333pt;}
.y6c{bottom:739.613333pt;}
.y82{bottom:742.013333pt;}
.y169{bottom:747.613333pt;}
.y102{bottom:749.213333pt;}
.yca{bottom:750.013333pt;}
.y125{bottom:751.293333pt;}
.y1a7{bottom:752.413333pt;}
.y18c{bottom:754.813333pt;}
.y19{bottom:757.213333pt;}
.y47{bottom:758.013333pt;}
.y81{bottom:760.413333pt;}
.y148{bottom:763.773333pt;}
.y168{bottom:766.013333pt;}
.yc9{bottom:768.413333pt;}
.y101{bottom:775.613333pt;}
.ya1{bottom:776.413333pt;}
.y1a6{bottom:778.813333pt;}
.y18b{bottom:781.213333pt;}
.y147{bottom:782.173333pt;}
.y46{bottom:784.413333pt;}
.y80{bottom:786.813333pt;}
.y18{bottom:789.693333pt;}
.ya0{bottom:794.813333pt;}
.y1a5{bottom:797.213333pt;}
.y146{bottom:800.413333pt;}
.y100{bottom:802.013333pt;}
.y45{bottom:802.813333pt;}
.yc8{bottom:805.213333pt;}
.y122{bottom:806.653333pt;}
.y18a{bottom:807.613333pt;}
.y17{bottom:810.013333pt;}
.y7f{bottom:813.253333pt;}
.y145{bottom:818.853333pt;}
.y6b{bottom:821.253333pt;}
.yc7{bottom:823.653333pt;}
.yff{bottom:828.453333pt;}
.y44{bottom:829.253333pt;}
.y7e{bottom:831.653333pt;}
.y189{bottom:834.053333pt;}
.y6a{bottom:839.653333pt;}
.yc6{bottom:842.053333pt;}
.y16{bottom:842.533333pt;}
.y144{bottom:845.253333pt;}
.y43{bottom:847.653333pt;}
.y7d{bottom:850.053333pt;}
.yfe{bottom:854.853333pt;}
.y69{bottom:858.053333pt;}
.yc5{bottom:860.453333pt;}
.y120{bottom:862.053333pt;}
.y15{bottom:862.853333pt;}
.y143{bottom:863.653333pt;}
.y42{bottom:866.053333pt;}
.y7c{bottom:868.453333pt;}
.y9f{bottom:876.453333pt;}
.yc4{bottom:878.853333pt;}
.yfd{bottom:881.253333pt;}
.y142{bottom:882.053333pt;}
.y41{bottom:884.453333pt;}
.y7b{bottom:886.853333pt;}
.y14{bottom:887.333333pt;}
.yb3{bottom:894.853333pt;}
.yc3{bottom:897.253333pt;}
.y40{bottom:902.853333pt;}
.y7a{bottom:905.253333pt;}
.y141{bottom:905.733333pt;}
.y13{bottom:907.653333pt;}
.y167{bottom:913.253333pt;}
.y11e{bottom:917.413333pt;}
.y3f{bottom:921.253333pt;}
.y79{bottom:923.653333pt;}
.y12{bottom:926.053333pt;}
.y166{bottom:931.653333pt;}
.yfc{bottom:934.053333pt;}
.y140{bottom:937.733333pt;}
.y3e{bottom:939.653333pt;}
.y78{bottom:942.053333pt;}
.yc2{bottom:950.053333pt;}
.y11{bottom:952.453333pt;}
.y3d{bottom:958.053333pt;}
.yfb{bottom:960.453333pt;}
.y77{bottom:968.453333pt;}
.y13e{bottom:969.733333pt;}
.y11d{bottom:972.773333pt;}
.y3c{bottom:976.453333pt;}
.y10{bottom:978.853333pt;}
.ye5{bottom:986.853333pt;}
.y3b{bottom:994.853333pt;}
.yf{bottom:1005.253333pt;}
.y3a{bottom:1013.253333pt;}
.y9{bottom:1060.640000pt;}
.y8{bottom:1074.560000pt;}
.y4{bottom:1078.080000pt;}
.h2{height:16.000000pt;}
.h9{height:25.120000pt;}
.h4{height:26.400000pt;}
.h18{height:31.200000pt;}
.h15{height:31.360000pt;}
.hc{height:38.441250pt;}
.h6{height:43.520000pt;}
.h16{height:45.546250pt;}
.h7{height:47.621250pt;}
.h17{height:48.261250pt;}
.h3{height:54.390938pt;}
.h11{height:54.560000pt;}
.h12{height:54.592000pt;}
.h13{height:54.720000pt;}
.h14{height:54.752000pt;}
.ha{height:54.875000pt;}
.hb{height:57.375000pt;}
.hd{height:57.886250pt;}
.h8{height:58.563750pt;}
.he{height:62.761250pt;}
.hf{height:62.867917pt;}
.h5{height:65.531250pt;}
.h10{height:70.112000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:59.040000pt;}
.w8{width:75.546667pt;}
.w22{width:90.720000pt;}
.w12{width:91.520000pt;}
.wd{width:94.400000pt;}
.w13{width:96.192000pt;}
.w21{width:100.512000pt;}
.w1f{width:101.920000pt;}
.w1e{width:103.072000pt;}
.w20{width:103.552000pt;}
.w1d{width:105.120000pt;}
.w17{width:105.152000pt;}
.w1a{width:105.280000pt;}
.w15{width:105.440000pt;}
.w1b{width:106.272000pt;}
.wc{width:113.472000pt;}
.w16{width:114.592000pt;}
.w1c{width:114.720000pt;}
.w6{width:116.032000pt;}
.w18{width:116.320000pt;}
.w10{width:118.112000pt;}
.wf{width:119.872000pt;}
.w11{width:129.952000pt;}
.we{width:136.160000pt;}
.w2{width:147.386667pt;}
.w4{width:149.306667pt;}
.w14{width:151.866667pt;}
.wb{width:160.666667pt;}
.w19{width:163.386667pt;}
.w3{width:164.026667pt;}
.wa{width:170.106667pt;}
.w5{width:593.573333pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x1f{left:4.800000pt;}
.x1a{left:7.200000pt;}
.xc{left:9.600000pt;}
.x27{left:10.720000pt;}
.x5{left:18.080000pt;}
.x8{left:19.360000pt;}
.x9{left:23.680000pt;}
.x3{left:54.560000pt;}
.x6{left:74.272000pt;}
.xa{left:94.431988pt;}
.xd{left:96.671988pt;}
.x16{left:98.751988pt;}
.x19{left:101.632000pt;}
.x17{left:113.311988pt;}
.xe{left:115.231988pt;}
.x2e{left:122.911988pt;}
.x14{left:132.191988pt;}
.x12{left:157.146655pt;}
.x1b{left:160.666667pt;}
.x11{left:196.346655pt;}
.x25{left:199.866667pt;}
.x20{left:230.586667pt;}
.xf{left:280.066655pt;}
.x13{left:300.386655pt;}
.x15{left:302.466655pt;}
.x26{left:314.466667pt;}
.x1c{left:330.786667pt;}
.x4{left:342.786667pt;}
.x21{left:350.466667pt;}
.x10{left:396.866655pt;}
.x2b{left:404.546667pt;}
.x28{left:419.613333pt;}
.x2a{left:420.573333pt;}
.x24{left:446.653333pt;}
.x22{left:468.573333pt;}
.x1d{left:491.453333pt;}
.x2c{left:508.093333pt;}
.x29{left:535.933333pt;}
.x18{left:565.373322pt;}
.x23{left:598.533333pt;}
.x1e{left:604.933333pt;}
.x2d{left:608.613333pt;}
.x1{left:617.733333pt;}
.x7{left:662.533333pt;}
.xb{left:718.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; }
  