
    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_66a399ec5fd364bb9093e8a7.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d8d456ace27d455860bdb253.woff')format("woff");}.ff2{font-family:ff2;line-height:0.767578;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_f77f6b644696897fd5a1d273.woff')format("woff");}.ff3{font-family:ff3;line-height:0.848145;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_a2816982d4812d4096d9987b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_33e751676ca838fd743412a7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5c3636a4d485abee8c1fe8fa.woff')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_160e9d5f74f0af38546e5e39.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_16d2e13c88bf3e2f064a3f20.woff')format("woff");}.ff8{font-family:ff8;line-height:0.692871;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v1{vertical-align:-76.296000px;}
.v5{vertical-align:-27.360000px;}
.v6{vertical-align:-21.600000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.v4{vertical-align:27.360000px;}
.ls18{letter-spacing:-2.052000px;}
.lsd{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-1.134000px;}
.lsf{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.501000px;}
.ls29{letter-spacing:-0.466800px;}
.lse{letter-spacing:-0.457800px;}
.ls21{letter-spacing:-0.366000px;}
.ls8{letter-spacing:-0.295200px;}
.ls9{letter-spacing:-0.092400px;}
.ls2b{letter-spacing:-0.020160px;}
.lsa{letter-spacing:-0.008640px;}
.ls7{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.015840px;}
.ls4{letter-spacing:0.020160px;}
.ls3{letter-spacing:0.118080px;}
.ls11{letter-spacing:0.178560px;}
.ls1d{letter-spacing:0.190560px;}
.ls0{letter-spacing:0.202080px;}
.ls20{letter-spacing:0.305280px;}
.ls1{letter-spacing:0.339840px;}
.ls2{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.457920px;}
.ls10{letter-spacing:0.464160px;}
.ls25{letter-spacing:0.466560px;}
.lsb{letter-spacing:0.466800px;}
.ls2a{letter-spacing:0.486600px;}
.ls28{letter-spacing:0.507000px;}
.ls1f{letter-spacing:0.610560px;}
.ls27{letter-spacing:0.622560px;}
.ls6{letter-spacing:0.642720px;}
.ls5{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.821280px;}
.ls15{letter-spacing:0.828000px;}
.ls1e{letter-spacing:0.840000px;}
.ls26{letter-spacing:0.900000px;}
.ls16{letter-spacing:0.984000px;}
.ls24{letter-spacing:1.188000px;}
.ls14{letter-spacing:1.290000px;}
.ls13{letter-spacing:1.746000px;}
.ls1a{letter-spacing:1.797120px;}
.ls12{letter-spacing:2.160000px;}
.ls1c{letter-spacing:7.920000px;}
.ls19{letter-spacing:199.596000px;}
.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;}
}
.ws1{word-spacing:-29.880000px;}
.ws2{word-spacing:-24.120000px;}
.ws3{word-spacing:-24.027600px;}
.ws8{word-spacing:-20.880000px;}
.ws4{word-spacing:-19.431360px;}
.wsd{word-spacing:-18.306000px;}
.ws18{word-spacing:-18.000000px;}
.wse{word-spacing:-17.850000px;}
.wsf{word-spacing:-17.388000px;}
.ws9{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.102200px;}
.ws5{word-spacing:-15.840000px;}
.ws1a{word-spacing:-15.627000px;}
.ws1b{word-spacing:-15.606600px;}
.ws6{word-spacing:-15.586800px;}
.wsa{word-spacing:-15.426000px;}
.ws7{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws1c{word-spacing:-15.099840px;}
.ws10{word-spacing:-14.508000px;}
.ws19{word-spacing:-14.400000px;}
.ws11{word-spacing:-13.680000px;}
.ws16{word-spacing:-13.068000px;}
.ws13{word-spacing:-11.895840px;}
.ws15{word-spacing:-11.880000px;}
.ws14{word-spacing:-11.379000px;}
.ws12{word-spacing:-10.440000px;}
.ws17{word-spacing:-9.720000px;}
.wsc{word-spacing:0.000000px;}
._19{margin-left:-3.575040px;}
._0{margin-left:-2.407680px;}
._2{margin-left:-1.313280px;}
._1{width:1.094400px;}
._3{width:2.999040px;}
._6{width:4.583520px;}
._4{width:5.987520px;}
._5{width:7.462560px;}
._a{width:9.181440px;}
._b{width:10.212960px;}
._12{width:11.319840px;}
._7{width:13.063680px;}
._e{width:14.355840px;}
._f{width:15.480480px;}
._9{width:16.825920px;}
._8{width:18.737280px;}
._15{width:19.934880px;}
._13{width:21.588480px;}
._14{width:22.735680px;}
._d{width:24.002400px;}
._c{width:25.128000px;}
._1a{width:27.100800px;}
._1b{width:28.754880px;}
._18{width:30.216000px;}
._16{width:31.559520px;}
._17{width:32.944320px;}
._10{width:34.799520px;}
._11{width:36.990720px;}
._1c{width:42.676320px;}
._1d{width:81.273600px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsa{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fsd{font-size:57.600000px;}
.fs1{font-size:60.480000px;}
.fs7{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs9{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.fs3{font-size:119.520000px;}
.y108{bottom:-11.205000px;}
.y10a{bottom:-10.845000px;}
.y10b{bottom:-10.125000px;}
.y10d{bottom:-5.040000px;}
.y10e{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:3.240000px;}
.ya9{bottom:3.600000px;}
.ya8{bottom:3.960000px;}
.yab{bottom:4.320000px;}
.ya2{bottom:4.680000px;}
.yee{bottom:6.480000px;}
.y9e{bottom:6.840000px;}
.ye3{bottom:7.200000px;}
.ye5{bottom:12.960000px;}
.ye7{bottom:13.320000px;}
.yea{bottom:14.040000px;}
.ya0{bottom:19.080000px;}
.yec{bottom:20.160000px;}
.y106{bottom:20.190000px;}
.yf8{bottom:20.205000px;}
.ye2{bottom:20.520000px;}
.ye9{bottom:25.200000px;}
.yf1{bottom:27.720000px;}
.ya5{bottom:38.160000px;}
.y2{bottom:95.076000px;}
.y37{bottom:95.796000px;}
.y36{bottom:115.236000px;}
.ye0{bottom:133.596000px;}
.y35{bottom:134.676000px;}
.y11d{bottom:144.396000px;}
.y17b{bottom:145.476000px;}
.y74{bottom:147.276000px;}
.y143{bottom:148.356000px;}
.ydf{bottom:152.670000px;}
.y34{bottom:153.750000px;}
.yd3{bottom:159.150000px;}
.y9c{bottom:162.030000px;}
.y11c{bottom:163.110000px;}
.y142{bottom:165.630000px;}
.y6a{bottom:165.990000px;}
.y17a{bottom:166.350000px;}
.yde{bottom:171.750000px;}
.y33{bottom:172.470000px;}
.yd2{bottom:178.230000px;}
.y9b{bottom:181.110000px;}
.y11b{bottom:182.190000px;}
.y141{bottom:182.910000px;}
.y69{bottom:185.070000px;}
.y179{bottom:186.870000px;}
.ydd{bottom:190.830000px;}
.y32{bottom:191.550000px;}
.yd1{bottom:197.355000px;}
.y9a{bottom:199.875000px;}
.y140{bottom:200.235000px;}
.y11a{bottom:201.315000px;}
.y68{bottom:204.195000px;}
.y178{bottom:207.075000px;}
.ydc{bottom:209.595000px;}
.y31{bottom:210.675000px;}
.yd0{bottom:216.075000px;}
.y13f{bottom:217.515000px;}
.y99{bottom:218.955000px;}
.y119{bottom:221.115000px;}
.y67{bottom:222.915000px;}
.y177{bottom:224.355000px;}
.ydb{bottom:228.675000px;}
.y30{bottom:229.395000px;}
.y13e{bottom:234.795000px;}
.ycf{bottom:235.155000px;}
.y98{bottom:238.035000px;}
.y176{bottom:241.635000px;}
.y66{bottom:241.995000px;}
.y118{bottom:244.515000px;}
.y2f{bottom:247.035000px;}
.yda{bottom:247.755000px;}
.y13d{bottom:252.075000px;}
.yce{bottom:254.235000px;}
.y97{bottom:257.115000px;}
.y175{bottom:258.915000px;}
.y2e{bottom:260.715000px;}
.y65{bottom:261.075000px;}
.y117{bottom:262.875000px;}
.yd9{bottom:266.475000px;}
.y13c{bottom:269.355000px;}
.ycd{bottom:272.955000px;}
.y96{bottom:275.835000px;}
.y174{bottom:276.195000px;}
.y2d{bottom:279.435000px;}
.y64{bottom:280.155000px;}
.yd8{bottom:285.555000px;}
.y13b{bottom:286.635000px;}
.ycc{bottom:292.035000px;}
.y173{bottom:293.475000px;}
.y95{bottom:294.915000px;}
.y116{bottom:297.435000px;}
.y2c{bottom:298.515000px;}
.y63{bottom:298.875000px;}
.y13a{bottom:303.915000px;}
.yd7{bottom:304.275000px;}
.y172{bottom:310.755000px;}
.ycb{bottom:311.115000px;}
.y94{bottom:313.995000px;}
.y115{bottom:314.715000px;}
.y2b{bottom:317.595000px;}
.y62{bottom:317.955000px;}
.y139{bottom:321.225000px;}
.yd6{bottom:321.585000px;}
.y171{bottom:328.065000px;}
.y114{bottom:328.425000px;}
.yca{bottom:330.225000px;}
.y93{bottom:332.745000px;}
.y2a{bottom:336.345000px;}
.y61{bottom:337.065000px;}
.y138{bottom:338.145000px;}
.yd5{bottom:338.865000px;}
.y170{bottom:345.345000px;}
.yc9{bottom:348.945000px;}
.y92{bottom:351.825000px;}
.yd4{bottom:352.185000px;}
.y29{bottom:355.425000px;}
.y60{bottom:355.785000px;}
.y16f{bottom:362.625000px;}
.yc8{bottom:368.025000px;}
.y91{bottom:370.905000px;}
.y137{bottom:372.705000px;}
.y28{bottom:374.505000px;}
.y5f{bottom:374.865000px;}
.y16e{bottom:379.545000px;}
.yc7{bottom:387.105000px;}
.y90{bottom:389.985000px;}
.y10c{bottom:392.145000px;}
.y27{bottom:393.585000px;}
.y5e{bottom:393.945000px;}
.y16d{bottom:396.825000px;}
.yc6{bottom:405.825000px;}
.y136{bottom:407.265000px;}
.y8f{bottom:410.145000px;}
.y26{bottom:410.505000px;}
.y5d{bottom:413.025000px;}
.y16c{bottom:414.105000px;}
.y25{bottom:422.745000px;}
.y135{bottom:424.545000px;}
.yc5{bottom:424.905000px;}
.y8e{bottom:425.625000px;}
.yaa{bottom:431.385000px;}
.y5c{bottom:431.745000px;}
.y24{bottom:441.825000px;}
.yc4{bottom:443.985000px;}
.y16b{bottom:448.710000px;}
.y109{bottom:449.070000px;}
.y107{bottom:449.430000px;}
.y5b{bottom:450.870000px;}
.y9d{bottom:458.070000px;}
.y134{bottom:459.150000px;}
.y23{bottom:460.590000px;}
.ya3{bottom:461.310000px;}
.yc3{bottom:462.750000px;}
.y16a{bottom:465.990000px;}
.y5a{bottom:469.950000px;}
.y133{bottom:476.430000px;}
.y22{bottom:479.670000px;}
.y100{bottom:480.030000px;}
.yef{bottom:480.750000px;}
.yf5{bottom:481.110000px;}
.yc2{bottom:481.830000px;}
.y169{bottom:483.270000px;}
.y59{bottom:488.670000px;}
.y132{bottom:493.710000px;}
.y21{bottom:498.750000px;}
.y168{bottom:500.550000px;}
.yc1{bottom:500.910000px;}
.y58{bottom:507.750000px;}
.y9f{bottom:508.110000px;}
.y131{bottom:510.990000px;}
.y20{bottom:517.470000px;}
.y167{bottom:517.830000px;}
.yc0{bottom:519.990000px;}
.y57{bottom:526.830000px;}
.y130{bottom:528.270000px;}
.y166{bottom:535.110000px;}
.y1f{bottom:536.550000px;}
.ybf{bottom:538.710000px;}
.ya7{bottom:539.070000px;}
.yf4{bottom:544.110000px;}
.yfe{bottom:544.470000px;}
.yed{bottom:545.190000px;}
.y56{bottom:545.550000px;}
.y165{bottom:552.390000px;}
.y1e{bottom:555.630000px;}
.ybe{bottom:557.790000px;}
.y12f{bottom:562.470000px;}
.y55{bottom:564.630000px;}
.y164{bottom:569.670000px;}
.y1d{bottom:573.660000px;}
.ybd{bottom:576.900000px;}
.y12e{bottom:579.780000px;}
.y54{bottom:583.740000px;}
.y163{bottom:586.620000px;}
.y1c{bottom:589.140000px;}
.ybc{bottom:595.620000px;}
.y12d{bottom:597.060000px;}
.y53{bottom:602.820000px;}
.ya6{bottom:603.540000px;}
.y162{bottom:603.900000px;}
.ya1{bottom:604.620000px;}
.yf3{bottom:607.860000px;}
.yfd{bottom:608.580000px;}
.y104{bottom:610.020000px;}
.yf9{bottom:610.380000px;}
.y1b{bottom:611.820000px;}
.y12c{bottom:614.340000px;}
.ybb{bottom:615.420000px;}
.y161{bottom:621.180000px;}
.y52{bottom:621.540000px;}
.y1a{bottom:627.660000px;}
.y12b{bottom:631.620000px;}
.y160{bottom:638.460000px;}
.yba{bottom:638.820000px;}
.y51{bottom:640.620000px;}
.y73{bottom:641.340000px;}
.y19{bottom:644.940000px;}
.y12a{bottom:648.900000px;}
.y15f{bottom:655.740000px;}
.yb9{bottom:657.900000px;}
.y50{bottom:659.700000px;}
.y8d{bottom:661.140000px;}
.y18{bottom:662.940000px;}
.y72{bottom:664.740000px;}
.y129{bottom:666.180000px;}
.y15e{bottom:673.020000px;}
.ye6{bottom:674.100000px;}
.yfb{bottom:674.820000px;}
.y102{bottom:676.260000px;}
.yb8{bottom:676.980000px;}
.y4f{bottom:678.420000px;}
.y8c{bottom:680.220000px;}
.y17{bottom:683.460000px;}
.y71{bottom:683.820000px;}
.y15d{bottom:690.300000px;}
.yb7{bottom:695.700000px;}
.y16{bottom:696.780000px;}
.y4e{bottom:697.500000px;}
.y8b{bottom:699.330000px;}
.y128{bottom:700.770000px;}
.y70{bottom:702.570000px;}
.y15c{bottom:707.610000px;}
.y113{bottom:712.290000px;}
.y15{bottom:714.090000px;}
.yb6{bottom:714.810000px;}
.y4d{bottom:716.610000px;}
.y127{bottom:718.050000px;}
.y8a{bottom:718.410000px;}
.y6f{bottom:721.650000px;}
.y15b{bottom:724.890000px;}
.y112{bottom:729.570000px;}
.y14{bottom:731.370000px;}
.yb5{bottom:733.890000px;}
.y126{bottom:734.970000px;}
.y4c{bottom:735.330000px;}
.y89{bottom:737.130000px;}
.ye4{bottom:738.930000px;}
.yfa{bottom:739.650000px;}
.y6e{bottom:740.730000px;}
.y101{bottom:741.090000px;}
.yf6{bottom:741.810000px;}
.y15a{bottom:742.170000px;}
.y111{bottom:746.850000px;}
.y13{bottom:748.650000px;}
.y125{bottom:752.250000px;}
.yb4{bottom:752.610000px;}
.y4b{bottom:754.410000px;}
.y88{bottom:756.210000px;}
.y159{bottom:759.450000px;}
.y6d{bottom:759.810000px;}
.y110{bottom:760.530000px;}
.y12{bottom:765.570000px;}
.y124{bottom:769.530000px;}
.yb3{bottom:771.690000px;}
.y4a{bottom:773.490000px;}
.y87{bottom:775.290000px;}
.y158{bottom:776.370000px;}
.y6c{bottom:778.530000px;}
.y11{bottom:782.850000px;}
.y123{bottom:786.810000px;}
.y18e{bottom:790.410000px;}
.yb2{bottom:790.770000px;}
.y49{bottom:793.290000px;}
.y157{bottom:793.650000px;}
.y86{bottom:794.010000px;}
.y6b{bottom:797.610000px;}
.y10{bottom:800.130000px;}
.y122{bottom:804.090000px;}
.yf2{bottom:804.450000px;}
.yfc{bottom:805.170000px;}
.y103{bottom:806.610000px;}
.yf7{bottom:807.330000px;}
.y18d{bottom:807.690000px;}
.yb1{bottom:809.490000px;}
.y156{bottom:810.930000px;}
.y85{bottom:813.090000px;}
.y48{bottom:816.690000px;}
.yf{bottom:817.410000px;}
.y121{bottom:821.370000px;}
.y18c{bottom:825.015000px;}
.y155{bottom:828.255000px;}
.yb0{bottom:828.615000px;}
.y84{bottom:832.215000px;}
.ye{bottom:834.735000px;}
.y47{bottom:835.455000px;}
.y120{bottom:838.695000px;}
.y18b{bottom:842.295000px;}
.y154{bottom:845.535000px;}
.yaf{bottom:847.695000px;}
.y83{bottom:850.935000px;}
.yd{bottom:852.735000px;}
.y46{bottom:854.535000px;}
.y11f{bottom:855.975000px;}
.y18a{bottom:859.215000px;}
.y153{bottom:862.815000px;}
.yae{bottom:867.495000px;}
.ye1{bottom:869.295000px;}
.yff{bottom:869.655000px;}
.y82{bottom:870.015000px;}
.ye8{bottom:870.375000px;}
.y11e{bottom:873.255000px;}
.y45{bottom:873.615000px;}
.yc{bottom:875.415000px;}
.y189{bottom:876.495000px;}
.y152{bottom:880.095000px;}
.y81{bottom:889.095000px;}
.yad{bottom:890.895000px;}
.y44{bottom:892.335000px;}
.y188{bottom:893.775000px;}
.y151{bottom:897.375000px;}
.yb{bottom:897.735000px;}
.y80{bottom:908.175000px;}
.yac{bottom:909.615000px;}
.y187{bottom:911.055000px;}
.y43{bottom:911.415000px;}
.y150{bottom:914.655000px;}
.ya{bottom:918.615000px;}
.y186{bottom:928.335000px;}
.y7f{bottom:928.695000px;}
.yeb{bottom:930.135000px;}
.y42{bottom:930.495000px;}
.y105{bottom:931.215000px;}
.y14f{bottom:931.935000px;}
.y10f{bottom:932.295000px;}
.y9{bottom:939.135000px;}
.y185{bottom:945.615000px;}
.y7e{bottom:947.775000px;}
.y14e{bottom:949.215000px;}
.y41{bottom:949.575000px;}
.y8{bottom:960.045000px;}
.y184{bottom:962.925000px;}
.y14d{bottom:966.165000px;}
.y7d{bottom:966.525000px;}
.y40{bottom:968.325000px;}
.y183{bottom:980.205000px;}
.y7{bottom:982.725000px;}
.y14c{bottom:983.445000px;}
.y7c{bottom:985.605000px;}
.y3f{bottom:987.405000px;}
.y182{bottom:997.485000px;}
.y14b{bottom:1000.725000px;}
.y7b{bottom:1004.685000px;}
.y3e{bottom:1006.485000px;}
.y6{bottom:1008.285000px;}
.y181{bottom:1014.765000px;}
.y14a{bottom:1018.005000px;}
.yf0{bottom:1019.085000px;}
.y7a{bottom:1023.765000px;}
.y3d{bottom:1025.205000px;}
.y180{bottom:1032.045000px;}
.y149{bottom:1035.285000px;}
.y5{bottom:1041.765000px;}
.y79{bottom:1042.485000px;}
.y3c{bottom:1044.285000px;}
.y17f{bottom:1049.325000px;}
.y148{bottom:1052.565000px;}
.y78{bottom:1061.565000px;}
.y3b{bottom:1063.365000px;}
.y17e{bottom:1066.245000px;}
.y147{bottom:1069.845000px;}
.y4{bottom:1075.605000px;}
.y77{bottom:1080.690000px;}
.y3a{bottom:1082.490000px;}
.y17d{bottom:1083.570000px;}
.y146{bottom:1087.170000px;}
.y76{bottom:1099.410000px;}
.y17c{bottom:1100.850000px;}
.y39{bottom:1101.210000px;}
.y145{bottom:1104.450000px;}
.y3{bottom:1109.490000px;}
.y75{bottom:1118.850000px;}
.y38{bottom:1120.290000px;}
.y144{bottom:1121.730000px;}
.y1{bottom:1154.850000px;}
.h24{height:4.680000px;}
.h25{height:5.040000px;}
.h27{height:10.800000px;}
.h17{height:15.480000px;}
.h1b{height:16.596000px;}
.h1c{height:16.956000px;}
.h1a{height:18.720000px;}
.h16{height:19.800000px;}
.h13{height:23.040000px;}
.h19{height:23.400000px;}
.h21{height:34.236000px;}
.h1f{height:34.560000px;}
.h20{height:34.596000px;}
.h1e{height:34.920000px;}
.h22{height:34.956000px;}
.hd{height:35.332031px;}
.h26{height:38.520000px;}
.h9{height:40.964766px;}
.he{height:40.985156px;}
.hb{height:46.638281px;}
.h29{height:48.761719px;}
.h23{height:49.320000px;}
.hf{height:50.229844px;}
.h2{height:53.704687px;}
.h8{height:59.328281px;}
.h3{height:59.357813px;}
.h15{height:59.357826px;}
.h28{height:59.758594px;}
.h2a{height:60.952500px;}
.h10{height:64.978594px;}
.hc{height:65.010937px;}
.h12{height:66.757500px;}
.h1d{height:68.345156px;}
.h6{height:70.664062px;}
.h11{height:72.562500px;}
.h7{height:76.279219px;}
.h5{height:76.317188px;}
.h4{height:80.944453px;}
.h14{height:83.916000px;}
.ha{height:84.172500px;}
.h18{height:121.716000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:21.600000px;}
.w11{width:21.636000px;}
.w7{width:24.480000px;}
.w4{width:25.560000px;}
.wc{width:46.440000px;}
.w13{width:46.476000px;}
.we{width:82.836000px;}
.wb{width:100.116000px;}
.wf{width:100.152000px;}
.wd{width:100.476000px;}
.w3{width:105.516000px;}
.w6{width:105.876000px;}
.w12{width:121.752000px;}
.w8{width:157.395000px;}
.wa{width:183.315000px;}
.w5{width:205.995000px;}
.w9{width:221.475000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:1.080000px;}
.x2a{left:2.520000px;}
.x1c{left:5.403000px;}
.x26{left:7.200000px;}
.x25{left:9.360000px;}
.x11{left:10.800000px;}
.x1f{left:11.883000px;}
.x22{left:15.840000px;}
.xf{left:22.320000px;}
.xd{left:24.120000px;}
.x29{left:28.800000px;}
.x1d{left:30.963000px;}
.x21{left:34.920000px;}
.x16{left:38.205000px;}
.x2b{left:39.960000px;}
.x2{left:127.475987px;}
.x1{left:141.191987px;}
.x9{left:142.991987px;}
.x13{left:145.512000px;}
.x1b{left:146.952000px;}
.x1e{left:148.752000px;}
.x3f{left:159.554987px;}
.x23{left:173.955000px;}
.x18{left:175.035000px;}
.x4{left:186.194987px;}
.x14{left:194.115000px;}
.x5{left:198.074987px;}
.x12{left:244.545000px;}
.x7{left:269.024987px;}
.x6{left:280.544987px;}
.x15{left:283.785000px;}
.x2d{left:286.305000px;}
.x2e{left:288.105000px;}
.x1a{left:293.144987px;}
.x32{left:313.350000px;}
.x8{left:314.429987px;}
.x3d{left:316.949987px;}
.x33{left:326.310000px;}
.x37{left:330.270000px;}
.x36{left:386.070000px;}
.x27{left:410.220000px;}
.x3{left:451.979987px;}
.xe{left:462.780000px;}
.x17{left:500.970000px;}
.x10{left:510.690000px;}
.x20{left:524.370000px;}
.x2c{left:525.810000px;}
.x24{left:526.890000px;}
.x3a{left:548.490000px;}
.xc{left:549.930000px;}
.x38{left:557.490000px;}
.x34{left:562.890000px;}
.x2f{left:653.295000px;}
.x31{left:655.095000px;}
.x30{left:656.175000px;}
.x3b{left:687.885000px;}
.x39{left:694.005000px;}
.x35{left:701.205000px;}
.xb{left:736.484987px;}
.x3e{left:740.084987px;}
.x3c{left:755.564987px;}
.x40{left:761.369987px;}
.xa{left:768.929987px;}
.x19{left:778.649987px;}
@media print{
.v1{vertical-align:-67.818667pt;}
.v5{vertical-align:-24.320000pt;}
.v6{vertical-align:-19.200000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.v4{vertical-align:24.320000pt;}
.ls18{letter-spacing:-1.824000pt;}
.lsd{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-1.008000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.445333pt;}
.ls29{letter-spacing:-0.414933pt;}
.lse{letter-spacing:-0.406933pt;}
.ls21{letter-spacing:-0.325333pt;}
.ls8{letter-spacing:-0.262400pt;}
.ls9{letter-spacing:-0.082133pt;}
.ls2b{letter-spacing:-0.017920pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls7{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.014080pt;}
.ls4{letter-spacing:0.017920pt;}
.ls3{letter-spacing:0.104960pt;}
.ls11{letter-spacing:0.158720pt;}
.ls1d{letter-spacing:0.169387pt;}
.ls0{letter-spacing:0.179627pt;}
.ls20{letter-spacing:0.271360pt;}
.ls1{letter-spacing:0.302080pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.407040pt;}
.ls10{letter-spacing:0.412587pt;}
.ls25{letter-spacing:0.414720pt;}
.lsb{letter-spacing:0.414933pt;}
.ls2a{letter-spacing:0.432533pt;}
.ls28{letter-spacing:0.450667pt;}
.ls1f{letter-spacing:0.542720pt;}
.ls27{letter-spacing:0.553387pt;}
.ls6{letter-spacing:0.571307pt;}
.ls5{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.730027pt;}
.ls15{letter-spacing:0.736000pt;}
.ls1e{letter-spacing:0.746667pt;}
.ls26{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.874667pt;}
.ls24{letter-spacing:1.056000pt;}
.ls14{letter-spacing:1.146667pt;}
.ls13{letter-spacing:1.552000pt;}
.ls1a{letter-spacing:1.597440pt;}
.ls12{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:7.040000pt;}
.ls19{letter-spacing:177.418667pt;}
.ws1{word-spacing:-26.560000pt;}
.ws2{word-spacing:-21.440000pt;}
.ws3{word-spacing:-21.357867pt;}
.ws8{word-spacing:-18.560000pt;}
.ws4{word-spacing:-17.272320pt;}
.wsd{word-spacing:-16.272000pt;}
.ws18{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.866667pt;}
.wsf{word-spacing:-15.456000pt;}
.ws9{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.313067pt;}
.ws5{word-spacing:-14.080000pt;}
.ws1a{word-spacing:-13.890667pt;}
.ws1b{word-spacing:-13.872533pt;}
.ws6{word-spacing:-13.854933pt;}
.wsa{word-spacing:-13.712000pt;}
.ws7{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws1c{word-spacing:-13.422080pt;}
.ws10{word-spacing:-12.896000pt;}
.ws19{word-spacing:-12.800000pt;}
.ws11{word-spacing:-12.160000pt;}
.ws16{word-spacing:-11.616000pt;}
.ws13{word-spacing:-10.574080pt;}
.ws15{word-spacing:-10.560000pt;}
.ws14{word-spacing:-10.114667pt;}
.ws12{word-spacing:-9.280000pt;}
.ws17{word-spacing:-8.640000pt;}
.wsc{word-spacing:0.000000pt;}
._19{margin-left:-3.177813pt;}
._0{margin-left:-2.140160pt;}
._2{margin-left:-1.167360pt;}
._1{width:0.972800pt;}
._3{width:2.665813pt;}
._6{width:4.074240pt;}
._4{width:5.322240pt;}
._5{width:6.633387pt;}
._a{width:8.161280pt;}
._b{width:9.078187pt;}
._12{width:10.062080pt;}
._7{width:11.612160pt;}
._e{width:12.760747pt;}
._f{width:13.760427pt;}
._9{width:14.956373pt;}
._8{width:16.655360pt;}
._15{width:17.719893pt;}
._13{width:19.189760pt;}
._14{width:20.209493pt;}
._d{width:21.335467pt;}
._c{width:22.336000pt;}
._1a{width:24.089600pt;}
._1b{width:25.559893pt;}
._18{width:26.858667pt;}
._16{width:28.052907pt;}
._17{width:29.283840pt;}
._10{width:30.932907pt;}
._11{width:32.880640pt;}
._1c{width:37.934507pt;}
._1d{width:72.243200pt;}
.fsb{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsa{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fsd{font-size:51.200000pt;}
.fs1{font-size:53.760000pt;}
.fs7{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs9{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.fs3{font-size:106.240000pt;}
.y108{bottom:-9.960000pt;}
.y10a{bottom:-9.640000pt;}
.y10b{bottom:-9.000000pt;}
.y10d{bottom:-4.480000pt;}
.y10e{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:2.880000pt;}
.ya9{bottom:3.200000pt;}
.ya8{bottom:3.520000pt;}
.yab{bottom:3.840000pt;}
.ya2{bottom:4.160000pt;}
.yee{bottom:5.760000pt;}
.y9e{bottom:6.080000pt;}
.ye3{bottom:6.400000pt;}
.ye5{bottom:11.520000pt;}
.ye7{bottom:11.840000pt;}
.yea{bottom:12.480000pt;}
.ya0{bottom:16.960000pt;}
.yec{bottom:17.920000pt;}
.y106{bottom:17.946667pt;}
.yf8{bottom:17.960000pt;}
.ye2{bottom:18.240000pt;}
.ye9{bottom:22.400000pt;}
.yf1{bottom:24.640000pt;}
.ya5{bottom:33.920000pt;}
.y2{bottom:84.512000pt;}
.y37{bottom:85.152000pt;}
.y36{bottom:102.432000pt;}
.ye0{bottom:118.752000pt;}
.y35{bottom:119.712000pt;}
.y11d{bottom:128.352000pt;}
.y17b{bottom:129.312000pt;}
.y74{bottom:130.912000pt;}
.y143{bottom:131.872000pt;}
.ydf{bottom:135.706667pt;}
.y34{bottom:136.666667pt;}
.yd3{bottom:141.466667pt;}
.y9c{bottom:144.026667pt;}
.y11c{bottom:144.986667pt;}
.y142{bottom:147.226667pt;}
.y6a{bottom:147.546667pt;}
.y17a{bottom:147.866667pt;}
.yde{bottom:152.666667pt;}
.y33{bottom:153.306667pt;}
.yd2{bottom:158.426667pt;}
.y9b{bottom:160.986667pt;}
.y11b{bottom:161.946667pt;}
.y141{bottom:162.586667pt;}
.y69{bottom:164.506667pt;}
.y179{bottom:166.106667pt;}
.ydd{bottom:169.626667pt;}
.y32{bottom:170.266667pt;}
.yd1{bottom:175.426667pt;}
.y9a{bottom:177.666667pt;}
.y140{bottom:177.986667pt;}
.y11a{bottom:178.946667pt;}
.y68{bottom:181.506667pt;}
.y178{bottom:184.066667pt;}
.ydc{bottom:186.306667pt;}
.y31{bottom:187.266667pt;}
.yd0{bottom:192.066667pt;}
.y13f{bottom:193.346667pt;}
.y99{bottom:194.626667pt;}
.y119{bottom:196.546667pt;}
.y67{bottom:198.146667pt;}
.y177{bottom:199.426667pt;}
.ydb{bottom:203.266667pt;}
.y30{bottom:203.906667pt;}
.y13e{bottom:208.706667pt;}
.ycf{bottom:209.026667pt;}
.y98{bottom:211.586667pt;}
.y176{bottom:214.786667pt;}
.y66{bottom:215.106667pt;}
.y118{bottom:217.346667pt;}
.y2f{bottom:219.586667pt;}
.yda{bottom:220.226667pt;}
.y13d{bottom:224.066667pt;}
.yce{bottom:225.986667pt;}
.y97{bottom:228.546667pt;}
.y175{bottom:230.146667pt;}
.y2e{bottom:231.746667pt;}
.y65{bottom:232.066667pt;}
.y117{bottom:233.666667pt;}
.yd9{bottom:236.866667pt;}
.y13c{bottom:239.426667pt;}
.ycd{bottom:242.626667pt;}
.y96{bottom:245.186667pt;}
.y174{bottom:245.506667pt;}
.y2d{bottom:248.386667pt;}
.y64{bottom:249.026667pt;}
.yd8{bottom:253.826667pt;}
.y13b{bottom:254.786667pt;}
.ycc{bottom:259.586667pt;}
.y173{bottom:260.866667pt;}
.y95{bottom:262.146667pt;}
.y116{bottom:264.386667pt;}
.y2c{bottom:265.346667pt;}
.y63{bottom:265.666667pt;}
.y13a{bottom:270.146667pt;}
.yd7{bottom:270.466667pt;}
.y172{bottom:276.226667pt;}
.ycb{bottom:276.546667pt;}
.y94{bottom:279.106667pt;}
.y115{bottom:279.746667pt;}
.y2b{bottom:282.306667pt;}
.y62{bottom:282.626667pt;}
.y139{bottom:285.533333pt;}
.yd6{bottom:285.853333pt;}
.y171{bottom:291.613333pt;}
.y114{bottom:291.933333pt;}
.yca{bottom:293.533333pt;}
.y93{bottom:295.773333pt;}
.y2a{bottom:298.973333pt;}
.y61{bottom:299.613333pt;}
.y138{bottom:300.573333pt;}
.yd5{bottom:301.213333pt;}
.y170{bottom:306.973333pt;}
.yc9{bottom:310.173333pt;}
.y92{bottom:312.733333pt;}
.yd4{bottom:313.053333pt;}
.y29{bottom:315.933333pt;}
.y60{bottom:316.253333pt;}
.y16f{bottom:322.333333pt;}
.yc8{bottom:327.133333pt;}
.y91{bottom:329.693333pt;}
.y137{bottom:331.293333pt;}
.y28{bottom:332.893333pt;}
.y5f{bottom:333.213333pt;}
.y16e{bottom:337.373333pt;}
.yc7{bottom:344.093333pt;}
.y90{bottom:346.653333pt;}
.y10c{bottom:348.573333pt;}
.y27{bottom:349.853333pt;}
.y5e{bottom:350.173333pt;}
.y16d{bottom:352.733333pt;}
.yc6{bottom:360.733333pt;}
.y136{bottom:362.013333pt;}
.y8f{bottom:364.573333pt;}
.y26{bottom:364.893333pt;}
.y5d{bottom:367.133333pt;}
.y16c{bottom:368.093333pt;}
.y25{bottom:375.773333pt;}
.y135{bottom:377.373333pt;}
.yc5{bottom:377.693333pt;}
.y8e{bottom:378.333333pt;}
.yaa{bottom:383.453333pt;}
.y5c{bottom:383.773333pt;}
.y24{bottom:392.733333pt;}
.yc4{bottom:394.653333pt;}
.y16b{bottom:398.853333pt;}
.y109{bottom:399.173333pt;}
.y107{bottom:399.493333pt;}
.y5b{bottom:400.773333pt;}
.y9d{bottom:407.173333pt;}
.y134{bottom:408.133333pt;}
.y23{bottom:409.413333pt;}
.ya3{bottom:410.053333pt;}
.yc3{bottom:411.333333pt;}
.y16a{bottom:414.213333pt;}
.y5a{bottom:417.733333pt;}
.y133{bottom:423.493333pt;}
.y22{bottom:426.373333pt;}
.y100{bottom:426.693333pt;}
.yef{bottom:427.333333pt;}
.yf5{bottom:427.653333pt;}
.yc2{bottom:428.293333pt;}
.y169{bottom:429.573333pt;}
.y59{bottom:434.373333pt;}
.y132{bottom:438.853333pt;}
.y21{bottom:443.333333pt;}
.y168{bottom:444.933333pt;}
.yc1{bottom:445.253333pt;}
.y58{bottom:451.333333pt;}
.y9f{bottom:451.653333pt;}
.y131{bottom:454.213333pt;}
.y20{bottom:459.973333pt;}
.y167{bottom:460.293333pt;}
.yc0{bottom:462.213333pt;}
.y57{bottom:468.293333pt;}
.y130{bottom:469.573333pt;}
.y166{bottom:475.653333pt;}
.y1f{bottom:476.933333pt;}
.ybf{bottom:478.853333pt;}
.ya7{bottom:479.173333pt;}
.yf4{bottom:483.653333pt;}
.yfe{bottom:483.973333pt;}
.yed{bottom:484.613333pt;}
.y56{bottom:484.933333pt;}
.y165{bottom:491.013333pt;}
.y1e{bottom:493.893333pt;}
.ybe{bottom:495.813333pt;}
.y12f{bottom:499.973333pt;}
.y55{bottom:501.893333pt;}
.y164{bottom:506.373333pt;}
.y1d{bottom:509.920000pt;}
.ybd{bottom:512.800000pt;}
.y12e{bottom:515.360000pt;}
.y54{bottom:518.880000pt;}
.y163{bottom:521.440000pt;}
.y1c{bottom:523.680000pt;}
.ybc{bottom:529.440000pt;}
.y12d{bottom:530.720000pt;}
.y53{bottom:535.840000pt;}
.ya6{bottom:536.480000pt;}
.y162{bottom:536.800000pt;}
.ya1{bottom:537.440000pt;}
.yf3{bottom:540.320000pt;}
.yfd{bottom:540.960000pt;}
.y104{bottom:542.240000pt;}
.yf9{bottom:542.560000pt;}
.y1b{bottom:543.840000pt;}
.y12c{bottom:546.080000pt;}
.ybb{bottom:547.040000pt;}
.y161{bottom:552.160000pt;}
.y52{bottom:552.480000pt;}
.y1a{bottom:557.920000pt;}
.y12b{bottom:561.440000pt;}
.y160{bottom:567.520000pt;}
.yba{bottom:567.840000pt;}
.y51{bottom:569.440000pt;}
.y73{bottom:570.080000pt;}
.y19{bottom:573.280000pt;}
.y12a{bottom:576.800000pt;}
.y15f{bottom:582.880000pt;}
.yb9{bottom:584.800000pt;}
.y50{bottom:586.400000pt;}
.y8d{bottom:587.680000pt;}
.y18{bottom:589.280000pt;}
.y72{bottom:590.880000pt;}
.y129{bottom:592.160000pt;}
.y15e{bottom:598.240000pt;}
.ye6{bottom:599.200000pt;}
.yfb{bottom:599.840000pt;}
.y102{bottom:601.120000pt;}
.yb8{bottom:601.760000pt;}
.y4f{bottom:603.040000pt;}
.y8c{bottom:604.640000pt;}
.y17{bottom:607.520000pt;}
.y71{bottom:607.840000pt;}
.y15d{bottom:613.600000pt;}
.yb7{bottom:618.400000pt;}
.y16{bottom:619.360000pt;}
.y4e{bottom:620.000000pt;}
.y8b{bottom:621.626667pt;}
.y128{bottom:622.906667pt;}
.y70{bottom:624.506667pt;}
.y15c{bottom:628.986667pt;}
.y113{bottom:633.146667pt;}
.y15{bottom:634.746667pt;}
.yb6{bottom:635.386667pt;}
.y4d{bottom:636.986667pt;}
.y127{bottom:638.266667pt;}
.y8a{bottom:638.586667pt;}
.y6f{bottom:641.466667pt;}
.y15b{bottom:644.346667pt;}
.y112{bottom:648.506667pt;}
.y14{bottom:650.106667pt;}
.yb5{bottom:652.346667pt;}
.y126{bottom:653.306667pt;}
.y4c{bottom:653.626667pt;}
.y89{bottom:655.226667pt;}
.ye4{bottom:656.826667pt;}
.yfa{bottom:657.466667pt;}
.y6e{bottom:658.426667pt;}
.y101{bottom:658.746667pt;}
.yf6{bottom:659.386667pt;}
.y15a{bottom:659.706667pt;}
.y111{bottom:663.866667pt;}
.y13{bottom:665.466667pt;}
.y125{bottom:668.666667pt;}
.yb4{bottom:668.986667pt;}
.y4b{bottom:670.586667pt;}
.y88{bottom:672.186667pt;}
.y159{bottom:675.066667pt;}
.y6d{bottom:675.386667pt;}
.y110{bottom:676.026667pt;}
.y12{bottom:680.506667pt;}
.y124{bottom:684.026667pt;}
.yb3{bottom:685.946667pt;}
.y4a{bottom:687.546667pt;}
.y87{bottom:689.146667pt;}
.y158{bottom:690.106667pt;}
.y6c{bottom:692.026667pt;}
.y11{bottom:695.866667pt;}
.y123{bottom:699.386667pt;}
.y18e{bottom:702.586667pt;}
.yb2{bottom:702.906667pt;}
.y49{bottom:705.146667pt;}
.y157{bottom:705.466667pt;}
.y86{bottom:705.786667pt;}
.y6b{bottom:708.986667pt;}
.y10{bottom:711.226667pt;}
.y122{bottom:714.746667pt;}
.yf2{bottom:715.066667pt;}
.yfc{bottom:715.706667pt;}
.y103{bottom:716.986667pt;}
.yf7{bottom:717.626667pt;}
.y18d{bottom:717.946667pt;}
.yb1{bottom:719.546667pt;}
.y156{bottom:720.826667pt;}
.y85{bottom:722.746667pt;}
.y48{bottom:725.946667pt;}
.yf{bottom:726.586667pt;}
.y121{bottom:730.106667pt;}
.y18c{bottom:733.346667pt;}
.y155{bottom:736.226667pt;}
.yb0{bottom:736.546667pt;}
.y84{bottom:739.746667pt;}
.ye{bottom:741.986667pt;}
.y47{bottom:742.626667pt;}
.y120{bottom:745.506667pt;}
.y18b{bottom:748.706667pt;}
.y154{bottom:751.586667pt;}
.yaf{bottom:753.506667pt;}
.y83{bottom:756.386667pt;}
.yd{bottom:757.986667pt;}
.y46{bottom:759.586667pt;}
.y11f{bottom:760.866667pt;}
.y18a{bottom:763.746667pt;}
.y153{bottom:766.946667pt;}
.yae{bottom:771.106667pt;}
.ye1{bottom:772.706667pt;}
.yff{bottom:773.026667pt;}
.y82{bottom:773.346667pt;}
.ye8{bottom:773.666667pt;}
.y11e{bottom:776.226667pt;}
.y45{bottom:776.546667pt;}
.yc{bottom:778.146667pt;}
.y189{bottom:779.106667pt;}
.y152{bottom:782.306667pt;}
.y81{bottom:790.306667pt;}
.yad{bottom:791.906667pt;}
.y44{bottom:793.186667pt;}
.y188{bottom:794.466667pt;}
.y151{bottom:797.666667pt;}
.yb{bottom:797.986667pt;}
.y80{bottom:807.266667pt;}
.yac{bottom:808.546667pt;}
.y187{bottom:809.826667pt;}
.y43{bottom:810.146667pt;}
.y150{bottom:813.026667pt;}
.ya{bottom:816.546667pt;}
.y186{bottom:825.186667pt;}
.y7f{bottom:825.506667pt;}
.yeb{bottom:826.786667pt;}
.y42{bottom:827.106667pt;}
.y105{bottom:827.746667pt;}
.y14f{bottom:828.386667pt;}
.y10f{bottom:828.706667pt;}
.y9{bottom:834.786667pt;}
.y185{bottom:840.546667pt;}
.y7e{bottom:842.466667pt;}
.y14e{bottom:843.746667pt;}
.y41{bottom:844.066667pt;}
.y8{bottom:853.373333pt;}
.y184{bottom:855.933333pt;}
.y14d{bottom:858.813333pt;}
.y7d{bottom:859.133333pt;}
.y40{bottom:860.733333pt;}
.y183{bottom:871.293333pt;}
.y7{bottom:873.533333pt;}
.y14c{bottom:874.173333pt;}
.y7c{bottom:876.093333pt;}
.y3f{bottom:877.693333pt;}
.y182{bottom:886.653333pt;}
.y14b{bottom:889.533333pt;}
.y7b{bottom:893.053333pt;}
.y3e{bottom:894.653333pt;}
.y6{bottom:896.253333pt;}
.y181{bottom:902.013333pt;}
.y14a{bottom:904.893333pt;}
.yf0{bottom:905.853333pt;}
.y7a{bottom:910.013333pt;}
.y3d{bottom:911.293333pt;}
.y180{bottom:917.373333pt;}
.y149{bottom:920.253333pt;}
.y5{bottom:926.013333pt;}
.y79{bottom:926.653333pt;}
.y3c{bottom:928.253333pt;}
.y17f{bottom:932.733333pt;}
.y148{bottom:935.613333pt;}
.y78{bottom:943.613333pt;}
.y3b{bottom:945.213333pt;}
.y17e{bottom:947.773333pt;}
.y147{bottom:950.973333pt;}
.y4{bottom:956.093333pt;}
.y77{bottom:960.613333pt;}
.y3a{bottom:962.213333pt;}
.y17d{bottom:963.173333pt;}
.y146{bottom:966.373333pt;}
.y76{bottom:977.253333pt;}
.y17c{bottom:978.533333pt;}
.y39{bottom:978.853333pt;}
.y145{bottom:981.733333pt;}
.y3{bottom:986.213333pt;}
.y75{bottom:994.533333pt;}
.y38{bottom:995.813333pt;}
.y144{bottom:997.093333pt;}
.y1{bottom:1026.533333pt;}
.h24{height:4.160000pt;}
.h25{height:4.480000pt;}
.h27{height:9.600000pt;}
.h17{height:13.760000pt;}
.h1b{height:14.752000pt;}
.h1c{height:15.072000pt;}
.h1a{height:16.640000pt;}
.h16{height:17.600000pt;}
.h13{height:20.480000pt;}
.h19{height:20.800000pt;}
.h21{height:30.432000pt;}
.h1f{height:30.720000pt;}
.h20{height:30.752000pt;}
.h1e{height:31.040000pt;}
.h22{height:31.072000pt;}
.hd{height:31.406250pt;}
.h26{height:34.240000pt;}
.h9{height:36.413125pt;}
.he{height:36.431250pt;}
.hb{height:41.456250pt;}
.h29{height:43.343750pt;}
.h23{height:43.840000pt;}
.hf{height:44.648750pt;}
.h2{height:47.737500pt;}
.h8{height:52.736250pt;}
.h3{height:52.762500pt;}
.h15{height:52.762512pt;}
.h28{height:53.118750pt;}
.h2a{height:54.180000pt;}
.h10{height:57.758750pt;}
.hc{height:57.787500pt;}
.h12{height:59.340000pt;}
.h1d{height:60.751250pt;}
.h6{height:62.812500pt;}
.h11{height:64.500000pt;}
.h7{height:67.803750pt;}
.h5{height:67.837500pt;}
.h4{height:71.950625pt;}
.h14{height:74.592000pt;}
.ha{height:74.820000pt;}
.h18{height:108.192000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:19.200000pt;}
.w11{width:19.232000pt;}
.w7{width:21.760000pt;}
.w4{width:22.720000pt;}
.wc{width:41.280000pt;}
.w13{width:41.312000pt;}
.we{width:73.632000pt;}
.wb{width:88.992000pt;}
.wf{width:89.024000pt;}
.wd{width:89.312000pt;}
.w3{width:93.792000pt;}
.w6{width:94.112000pt;}
.w12{width:108.224000pt;}
.w8{width:139.906667pt;}
.wa{width:162.946667pt;}
.w5{width:183.106667pt;}
.w9{width:196.866667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:0.960000pt;}
.x2a{left:2.240000pt;}
.x1c{left:4.802667pt;}
.x26{left:6.400000pt;}
.x25{left:8.320000pt;}
.x11{left:9.600000pt;}
.x1f{left:10.562667pt;}
.x22{left:14.080000pt;}
.xf{left:19.840000pt;}
.xd{left:21.440000pt;}
.x29{left:25.600000pt;}
.x1d{left:27.522667pt;}
.x21{left:31.040000pt;}
.x16{left:33.960000pt;}
.x2b{left:35.520000pt;}
.x2{left:113.311988pt;}
.x1{left:125.503988pt;}
.x9{left:127.103988pt;}
.x13{left:129.344000pt;}
.x1b{left:130.624000pt;}
.x1e{left:132.224000pt;}
.x3f{left:141.826655pt;}
.x23{left:154.626667pt;}
.x18{left:155.586667pt;}
.x4{left:165.506655pt;}
.x14{left:172.546667pt;}
.x5{left:176.066655pt;}
.x12{left:217.373333pt;}
.x7{left:239.133322pt;}
.x6{left:249.373322pt;}
.x15{left:252.253333pt;}
.x2d{left:254.493333pt;}
.x2e{left:256.093333pt;}
.x1a{left:260.573322pt;}
.x32{left:278.533333pt;}
.x8{left:279.493322pt;}
.x3d{left:281.733322pt;}
.x33{left:290.053333pt;}
.x37{left:293.573333pt;}
.x36{left:343.173333pt;}
.x27{left:364.640000pt;}
.x3{left:401.759988pt;}
.xe{left:411.360000pt;}
.x17{left:445.306667pt;}
.x10{left:453.946667pt;}
.x20{left:466.106667pt;}
.x2c{left:467.386667pt;}
.x24{left:468.346667pt;}
.x3a{left:487.546667pt;}
.xc{left:488.826667pt;}
.x38{left:495.546667pt;}
.x34{left:500.346667pt;}
.x2f{left:580.706667pt;}
.x31{left:582.306667pt;}
.x30{left:583.266667pt;}
.x3b{left:611.453333pt;}
.x39{left:616.893333pt;}
.x35{left:623.293333pt;}
.xb{left:654.653322pt;}
.x3e{left:657.853322pt;}
.x3c{left:671.613322pt;}
.x40{left:676.773322pt;}
.xa{left:683.493322pt;}
.x19{left:692.133322pt;}
}




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