
    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_d31245e78af4d49a0d15135f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_6e0bc4c6bb4c7b061b3bc068.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_b00caa4a545d1d9a90c99e87.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_17e9cefb727735e9fc024d3c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939941;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_462b2cb22e8f92faa72a7641.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.783691;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_6193fc93719873dbca485474.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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.972000px;}
.lsf{letter-spacing:-0.954000px;}
.lsd{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.507000px;}
.ls5{letter-spacing:-0.498000px;}
.lsa{letter-spacing:-0.486600px;}
.ls11{letter-spacing:-0.466800px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.020160px;}
.lsb{letter-spacing:0.466800px;}
.ls10{letter-spacing:0.486720px;}
.ls0{letter-spacing:0.498240px;}
.ls6{letter-spacing:0.507000px;}
.ls1{letter-spacing:0.720000px;}
.ls13{letter-spacing:7.920000px;}
.lsc{letter-spacing:9.360000px;}
.ls15{letter-spacing:42.077280px;}
.ls12{letter-spacing:43.678560px;}
.ls14{letter-spacing:75.197280px;}
.lse{letter-spacing:79.678560px;}
.ls9{letter-spacing:81.250560px;}
.ls2{letter-spacing:82.690560px;}
.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;}
}
.ws8{word-spacing:-60.480000px;}
.ws1{word-spacing:-24.120000px;}
.wsc{word-spacing:-16.560000px;}
.ws6{word-spacing:-15.627000px;}
.wsa{word-spacing:-15.586800px;}
.ws3{word-spacing:-15.140160px;}
.ws2{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.633400px;}
.wsd{word-spacing:-14.613000px;}
.ws7{word-spacing:-14.166000px;}
.wsb{word-spacing:-14.148000px;}
.ws9{word-spacing:-13.680000px;}
.ws0{word-spacing:-13.182000px;}
.ws4{word-spacing:0.000000px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._7{width:3.446400px;}
._c{width:4.476480px;}
._d{width:6.021120px;}
._e{width:7.895520px;}
._13{width:9.140160px;}
._1a{width:10.224960px;}
._f{width:11.378880px;}
._10{width:12.912960px;}
._a{width:14.091840px;}
._21{width:15.240960px;}
._b{width:16.671360px;}
._11{width:18.385920px;}
._12{width:19.733760px;}
._19{width:21.128160px;}
._18{width:22.222080px;}
._17{width:23.829120px;}
._16{width:25.638720px;}
._15{width:27.086400px;}
._14{width:28.192320px;}
._22{width:29.704320px;}
._23{width:30.864960px;}
._1b{width:32.857920px;}
._1c{width:34.482240px;}
._20{width:35.698080px;}
._1f{width:36.799680px;}
._1e{width:40.063680px;}
._1d{width:41.428800px;}
._5{width:393.960000px;}
._9{width:577.557600px;}
._4{width:833.340000px;}
._8{width:1121.496000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y28{bottom:3.240000px;}
.y11a{bottom:4.680000px;}
.y119{bottom:5.040000px;}
.y9d{bottom:5.760000px;}
.yf4{bottom:11.520000px;}
.yf6{bottom:11.565000px;}
.yee{bottom:11.880000px;}
.yfc{bottom:11.910000px;}
.y11e{bottom:13.680000px;}
.y120{bottom:18.720000px;}
.y27{bottom:20.565000px;}
.y11f{bottom:22.680000px;}
.y118{bottom:23.040000px;}
.y26{bottom:37.845000px;}
.ye{bottom:43.560000px;}
.y11c{bottom:45.360000px;}
.y25{bottom:55.125000px;}
.yc{bottom:68.400000px;}
.y24{bottom:81.405000px;}
.ya{bottom:94.716000px;}
.y23{bottom:98.685000px;}
.y22{bottom:115.965000px;}
.y105{bottom:130.716000px;}
.y21{bottom:133.245000px;}
.y97{bottom:135.756000px;}
.y35{bottom:136.476000px;}
.y13b{bottom:148.716000px;}
.ydd{bottom:149.076000px;}
.y167{bottom:149.796000px;}
.y104{bottom:150.510000px;}
.y96{bottom:155.550000px;}
.y34{bottom:156.630000px;}
.y20{bottom:159.195000px;}
.y191{bottom:162.030000px;}
.yb5{bottom:164.910000px;}
.y13a{bottom:168.510000px;}
.ydc{bottom:168.870000px;}
.y166{bottom:169.590000px;}
.y103{bottom:170.310000px;}
.y95{bottom:175.350000px;}
.y33{bottom:176.430000px;}
.y1f{bottom:176.475000px;}
.y190{bottom:181.830000px;}
.yb4{bottom:184.710000px;}
.y139{bottom:188.310000px;}
.ydb{bottom:188.670000px;}
.y102{bottom:190.110000px;}
.y165{bottom:190.830000px;}
.y1e{bottom:193.755000px;}
.y94{bottom:195.150000px;}
.y66{bottom:196.590000px;}
.y18f{bottom:203.115000px;}
.yb3{bottom:204.555000px;}
.y32{bottom:205.275000px;}
.y138{bottom:208.155000px;}
.yda{bottom:208.515000px;}
.y101{bottom:209.955000px;}
.y164{bottom:210.675000px;}
.y1d{bottom:211.035000px;}
.y93{bottom:214.995000px;}
.y65{bottom:216.435000px;}
.y137{bottom:222.915000px;}
.yb2{bottom:224.355000px;}
.y31{bottom:225.075000px;}
.y1c{bottom:228.315000px;}
.y100{bottom:229.755000px;}
.y163{bottom:231.915000px;}
.y92{bottom:234.795000px;}
.y64{bottom:236.235000px;}
.y136{bottom:242.715000px;}
.y18e{bottom:243.075000px;}
.y30{bottom:244.875000px;}
.yb1{bottom:245.955000px;}
.yd9{bottom:248.115000px;}
.yff{bottom:249.555000px;}
.y162{bottom:251.715000px;}
.y91{bottom:254.595000px;}
.y63{bottom:256.395000px;}
.y135{bottom:262.515000px;}
.yfe{bottom:264.315000px;}
.y2f{bottom:264.675000px;}
.yd8{bottom:267.915000px;}
.y161{bottom:271.515000px;}
.yb0{bottom:272.235000px;}
.y90{bottom:274.395000px;}
.y62{bottom:276.195000px;}
.y134{bottom:282.315000px;}
.y18d{bottom:284.115000px;}
.y2e{bottom:284.475000px;}
.yd7{bottom:287.715000px;}
.yfd{bottom:290.235000px;}
.yaf{bottom:292.035000px;}
.y160{bottom:292.755000px;}
.y8f{bottom:294.195000px;}
.y61{bottom:295.995000px;}
.y18c{bottom:303.915000px;}
.y2d{bottom:304.275000px;}
.yd6{bottom:307.875000px;}
.y133{bottom:308.955000px;}
.yae{bottom:311.835000px;}
.y15f{bottom:312.555000px;}
.y8e{bottom:314.355000px;}
.y60{bottom:315.795000px;}
.yfb{bottom:316.875000px;}
.y2c{bottom:324.105000px;}
.y18b{bottom:325.185000px;}
.y132{bottom:328.785000px;}
.yd5{bottom:329.505000px;}
.yad{bottom:332.025000px;}
.y15e{bottom:333.825000px;}
.y8d{bottom:334.185000px;}
.y5f{bottom:335.625000px;}
.yfa{bottom:342.825000px;}
.y2b{bottom:343.905000px;}
.y18a{bottom:344.985000px;}
.y131{bottom:348.585000px;}
.yac{bottom:351.825000px;}
.y15d{bottom:353.625000px;}
.y5e{bottom:355.425000px;}
.y8c{bottom:355.785000px;}
.yd4{bottom:358.305000px;}
.y189{bottom:366.225000px;}
.y130{bottom:368.385000px;}
.yf9{bottom:368.745000px;}
.yab{bottom:371.625000px;}
.y15c{bottom:374.865000px;}
.y5d{bottom:375.225000px;}
.yd3{bottom:378.105000px;}
.y2a{bottom:378.825000px;}
.y8b{bottom:384.585000px;}
.y188{bottom:386.025000px;}
.y12f{bottom:388.185000px;}
.yaa{bottom:391.425000px;}
.yf8{bottom:394.665000px;}
.y5c{bottom:395.025000px;}
.yd2{bottom:397.905000px;}
.y8a{bottom:404.385000px;}
.y187{bottom:405.825000px;}
.y29{bottom:406.905000px;}
.y12e{bottom:407.985000px;}
.ya9{bottom:411.225000px;}
.y5b{bottom:414.825000px;}
.yf7{bottom:420.585000px;}
.y89{bottom:424.185000px;}
.y15b{bottom:425.265000px;}
.y1a9{bottom:425.625000px;}
.y186{bottom:427.065000px;}
.y12d{bottom:427.785000px;}
.y1b{bottom:431.745000px;}
.ya8{bottom:432.825000px;}
.y5a{bottom:434.625000px;}
.y12c{bottom:442.545000px;}
.y88{bottom:443.985000px;}
.y15a{bottom:445.065000px;}
.y1a8{bottom:445.425000px;}
.yf5{bottom:446.505000px;}
.y185{bottom:446.865000px;}
.y59{bottom:454.830000px;}
.y12b{bottom:459.870000px;}
.yd1{bottom:461.670000px;}
.y87{bottom:464.190000px;}
.y159{bottom:464.910000px;}
.y1a7{bottom:465.270000px;}
.y184{bottom:468.150000px;}
.ya7{bottom:470.670000px;}
.yf3{bottom:473.190000px;}
.y58{bottom:474.630000px;}
.y12a{bottom:477.150000px;}
.yd0{bottom:481.470000px;}
.y86{bottom:483.990000px;}
.y158{bottom:484.710000px;}
.y1a6{bottom:486.510000px;}
.y183{bottom:487.950000px;}
.ya6{bottom:490.830000px;}
.y57{bottom:494.430000px;}
.yf2{bottom:498.750000px;}
.ycf{bottom:501.270000px;}
.y85{bottom:503.790000px;}
.y157{bottom:504.510000px;}
.y1a5{bottom:506.310000px;}
.y182{bottom:509.190000px;}
.ya5{bottom:510.630000px;}
.y129{bottom:511.710000px;}
.y56{bottom:514.230000px;}
.yce{bottom:521.430000px;}
.y84{bottom:523.590000px;}
.y156{bottom:524.310000px;}
.yf1{bottom:525.390000px;}
.y1a4{bottom:527.550000px;}
.y128{bottom:528.990000px;}
.ya4{bottom:530.430000px;}
.y55{bottom:535.830000px;}
.ycd{bottom:541.230000px;}
.y83{bottom:543.390000px;}
.y155{bottom:544.110000px;}
.y1a3{bottom:547.350000px;}
.y181{bottom:548.790000px;}
.ya3{bottom:550.230000px;}
.yf0{bottom:551.310000px;}
.y127{bottom:552.750000px;}
.ycc{bottom:561.030000px;}
.y82{bottom:563.190000px;}
.y154{bottom:563.910000px;}
.y54{bottom:564.630000px;}
.y180{bottom:568.590000px;}
.ya2{bottom:570.030000px;}
.y126{bottom:572.550000px;}
.yef{bottom:577.260000px;}
.ycb{bottom:580.860000px;}
.y153{bottom:583.740000px;}
.y53{bottom:584.460000px;}
.y81{bottom:584.820000px;}
.y1a2{bottom:588.420000px;}
.ya1{bottom:589.860000px;}
.y125{bottom:592.380000px;}
.yca{bottom:600.660000px;}
.yed{bottom:603.180000px;}
.y152{bottom:603.540000px;}
.ya0{bottom:609.660000px;}
.y1a1{bottom:610.020000px;}
.y124{bottom:612.180000px;}
.y80{bottom:613.980000px;}
.y52{bottom:619.380000px;}
.yc9{bottom:622.260000px;}
.y151{bottom:623.700000px;}
.y123{bottom:626.220000px;}
.y1a0{bottom:629.820000px;}
.y17f{bottom:631.260000px;}
.y9f{bottom:631.620000px;}
.y7f{bottom:633.780000px;}
.yec{bottom:635.580000px;}
.y150{bottom:643.500000px;}
.y11b{bottom:647.100000px;}
.y51{bottom:648.180000px;}
.y19f{bottom:649.620000px;}
.yc8{bottom:651.060000px;}
.y7e{bottom:653.580000px;}
.yeb{bottom:655.380000px;}
.y9e{bottom:657.900000px;}
.y14f{bottom:663.300000px;}
.y122{bottom:667.980000px;}
.y50{bottom:668.340000px;}
.y19e{bottom:670.860000px;}
.yc7{bottom:671.220000px;}
.y17e{bottom:672.300000px;}
.y9c{bottom:672.660000px;}
.y7d{bottom:673.380000px;}
.yea{bottom:675.180000px;}
.y14e{bottom:683.100000px;}
.y4f{bottom:688.140000px;}
.y1a{bottom:688.500000px;}
.y121{bottom:688.860000px;}
.y19d{bottom:690.660000px;}
.yc6{bottom:691.020000px;}
.y17d{bottom:692.100000px;}
.y7c{bottom:693.180000px;}
.ye9{bottom:694.980000px;}
.y14d{bottom:702.930000px;}
.y4e{bottom:707.970000px;}
.y11d{bottom:709.770000px;}
.y19c{bottom:710.490000px;}
.yc5{bottom:710.850000px;}
.y7b{bottom:713.010000px;}
.y17c{bottom:713.370000px;}
.y19{bottom:714.810000px;}
.y14c{bottom:722.730000px;}
.y4d{bottom:727.770000px;}
.yc4{bottom:730.650000px;}
.y18{bottom:731.370000px;}
.y19b{bottom:731.730000px;}
.y7a{bottom:732.810000px;}
.y17b{bottom:733.170000px;}
.ye8{bottom:734.610000px;}
.y14b{bottom:742.530000px;}
.y17{bottom:745.410000px;}
.y4c{bottom:747.570000px;}
.y116{bottom:748.650000px;}
.yc3{bottom:750.450000px;}
.y19a{bottom:751.530000px;}
.y79{bottom:752.610000px;}
.y17a{bottom:754.410000px;}
.ye7{bottom:754.770000px;}
.y16{bottom:759.090000px;}
.y14a{bottom:762.330000px;}
.y4b{bottom:767.370000px;}
.y117{bottom:769.170000px;}
.yc2{bottom:770.250000px;}
.y199{bottom:771.330000px;}
.y15{bottom:772.770000px;}
.y179{bottom:774.210000px;}
.y78{bottom:774.570000px;}
.y149{bottom:782.130000px;}
.y4a{bottom:787.170000px;}
.yc1{bottom:790.050000px;}
.y198{bottom:792.570000px;}
.y178{bottom:794.010000px;}
.ye6{bottom:794.370000px;}
.y14{bottom:796.170000px;}
.y148{bottom:801.930000px;}
.y77{bottom:803.370000px;}
.y49{bottom:806.970000px;}
.y115{bottom:808.050000px;}
.yc0{bottom:809.850000px;}
.y197{bottom:812.370000px;}
.y13{bottom:813.450000px;}
.y177{bottom:813.810000px;}
.ye5{bottom:814.170000px;}
.y147{bottom:822.090000px;}
.y76{bottom:823.170000px;}
.ybf{bottom:829.695000px;}
.y12{bottom:832.575000px;}
.y196{bottom:833.655000px;}
.ye4{bottom:834.015000px;}
.y176{bottom:835.095000px;}
.y48{bottom:835.815000px;}
.y146{bottom:841.935000px;}
.y75{bottom:843.015000px;}
.y114{bottom:848.775000px;}
.ybe{bottom:849.495000px;}
.y195{bottom:853.455000px;}
.ye3{bottom:853.815000px;}
.y175{bottom:854.895000px;}
.y47{bottom:855.615000px;}
.y11{bottom:860.295000px;}
.y145{bottom:861.735000px;}
.y74{bottom:862.815000px;}
.y113{bottom:868.575000px;}
.ybd{bottom:869.655000px;}
.y174{bottom:874.695000px;}
.y46{bottom:875.415000px;}
.y144{bottom:881.535000px;}
.y73{bottom:882.615000px;}
.y10{bottom:888.015000px;}
.y112{bottom:888.375000px;}
.ybc{bottom:891.255000px;}
.y173{bottom:894.495000px;}
.y45{bottom:895.575000px;}
.y143{bottom:901.335000px;}
.y72{bottom:902.415000px;}
.ye2{bottom:904.575000px;}
.y111{bottom:908.175000px;}
.yf{bottom:915.375000px;}
.y172{bottom:915.735000px;}
.ybb{bottom:920.055000px;}
.y142{bottom:921.135000px;}
.y71{bottom:922.215000px;}
.ye1{bottom:924.375000px;}
.y110{bottom:927.975000px;}
.y44{bottom:935.175000px;}
.y171{bottom:935.535000px;}
.yba{bottom:939.855000px;}
.y141{bottom:940.935000px;}
.y9{bottom:941.295000px;}
.y70{bottom:942.015000px;}
.ye0{bottom:944.175000px;}
.y10f{bottom:947.775000px;}
.y43{bottom:955.005000px;}
.y170{bottom:956.805000px;}
.y8{bottom:958.605000px;}
.y9b{bottom:959.685000px;}
.y140{bottom:960.765000px;}
.y6f{bottom:962.205000px;}
.ydf{bottom:964.005000px;}
.y10e{bottom:967.605000px;}
.y7{bottom:972.645000px;}
.y42{bottom:974.805000px;}
.y16f{bottom:976.605000px;}
.y194{bottom:976.965000px;}
.y9a{bottom:979.485000px;}
.y6e{bottom:982.005000px;}
.yde{bottom:983.805000px;}
.y10d{bottom:984.885000px;}
.y41{bottom:994.605000px;}
.y13f{bottom:995.685000px;}
.y193{bottom:996.765000px;}
.y16e{bottom:998.205000px;}
.y99{bottom:999.285000px;}
.y6d{bottom:1001.805000px;}
.y10c{bottom:1002.165000px;}
.yb9{bottom:1003.605000px;}
.y40{bottom:1014.405000px;}
.y10b{bottom:1016.925000px;}
.y16d{bottom:1018.005000px;}
.y98{bottom:1019.445000px;}
.y6c{bottom:1021.605000px;}
.y13e{bottom:1021.965000px;}
.yb8{bottom:1023.405000px;}
.y6{bottom:1027.365000px;}
.y3f{bottom:1034.205000px;}
.y13d{bottom:1036.725000px;}
.y192{bottom:1037.805000px;}
.y16c{bottom:1039.245000px;}
.y6b{bottom:1041.405000px;}
.yb7{bottom:1043.205000px;}
.y5{bottom:1052.205000px;}
.y3e{bottom:1054.005000px;}
.y13c{bottom:1056.525000px;}
.y16b{bottom:1059.045000px;}
.y6a{bottom:1061.205000px;}
.yb6{bottom:1063.005000px;}
.y10a{bottom:1069.485000px;}
.y4{bottom:1072.725000px;}
.y16a{bottom:1080.330000px;}
.y69{bottom:1081.050000px;}
.y3d{bottom:1082.850000px;}
.y109{bottom:1086.810000px;}
.y3{bottom:1094.010000px;}
.y169{bottom:1100.130000px;}
.y68{bottom:1100.850000px;}
.y3c{bottom:1103.010000px;}
.y108{bottom:1104.090000px;}
.y2{bottom:1114.530000px;}
.y67{bottom:1120.650000px;}
.y107{bottom:1121.370000px;}
.y3b{bottom:1122.810000px;}
.y1{bottom:1131.450000px;}
.y106{bottom:1138.650000px;}
.y168{bottom:1141.170000px;}
.y3a{bottom:1142.610000px;}
.y39{bottom:1166.370000px;}
.y38{bottom:1180.410000px;}
.y37{bottom:1201.290000px;}
.y36{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h14{height:17.280000px;}
.h15{height:17.316000px;}
.h1a{height:17.640000px;}
.h1f{height:18.000000px;}
.h1e{height:18.036000px;}
.hf{height:19.800000px;}
.h17{height:19.836000px;}
.h12{height:25.560000px;}
.h13{height:25.596000px;}
.h10{height:25.920000px;}
.h11{height:25.956000px;}
.ha{height:34.363828px;}
.h1c{height:35.640000px;}
.h19{height:36.000000px;}
.h7{height:39.570469px;}
.h5{height:39.997969px;}
.h4{height:43.735781px;}
.h2{height:43.794844px;}
.hc{height:44.031094px;}
.hd{height:44.208281px;}
.h16{height:46.305000px;}
.h20{height:48.224531px;}
.h1d{height:52.066406px;}
.h3{height:52.136719px;}
.h18{height:56.520000px;}
.h9{height:69.863203px;}
.h1b{height:98.316000px;}
.hb{height:251.355000px;}
.he{height:260.025000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w24{width:24.480000px;}
.wa{width:24.840000px;}
.w20{width:25.560000px;}
.w1c{width:50.040000px;}
.wf{width:50.076000px;}
.wb{width:50.760000px;}
.w19{width:54.036000px;}
.w25{width:59.796000px;}
.w17{width:61.596000px;}
.w18{width:72.396000px;}
.w16{width:72.756000px;}
.w15{width:104.796000px;}
.w26{width:105.516000px;}
.we{width:107.316000px;}
.w23{width:158.115000px;}
.w1b{width:159.555000px;}
.w27{width:165.315000px;}
.w1f{width:168.915000px;}
.w1d{width:175.035000px;}
.w14{width:178.635000px;}
.w10{width:190.875000px;}
.w1a{width:198.435000px;}
.wc{width:211.425000px;}
.w1e{width:225.075000px;}
.w11{width:240.945000px;}
.w13{width:252.465000px;}
.wd{width:262.185000px;}
.w7{width:347.910000px;}
.w4{width:348.630000px;}
.w3{width:349.350000px;}
.w6{width:350.070000px;}
.w21{width:368.460000px;}
.w9{width:371.700000px;}
.w22{width:418.500000px;}
.w5{width:679.965000px;}
.w12{width:680.685000px;}
.w8{width:696.165000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x26{left:4.680000px;}
.x1a{left:7.560000px;}
.xa{left:8.640000px;}
.x28{left:9.720000px;}
.x2f{left:10.800000px;}
.x2a{left:19.440000px;}
.x32{left:24.480000px;}
.x36{left:26.685000px;}
.x1e{left:32.040000px;}
.x38{left:33.165000px;}
.x2c{left:34.590000px;}
.x37{left:38.190000px;}
.x30{left:40.005000px;}
.x35{left:44.670000px;}
.x33{left:47.550000px;}
.x34{left:76.710000px;}
.x9{left:97.596000px;}
.x15{left:98.676000px;}
.x7{left:106.235987px;}
.x25{left:107.676000px;}
.x19{left:117.396000px;}
.x23{left:133.271987px;}
.x3d{left:140.112000px;}
.x18{left:149.471987px;}
.xc{left:152.354987px;}
.xd{left:158.474987px;}
.x24{left:160.274987px;}
.x31{left:161.715000px;}
.x13{left:180.794987px;}
.xf{left:189.794987px;}
.x10{left:224.744987px;}
.x39{left:242.025000px;}
.x2{left:254.264987px;}
.x17{left:257.874000px;}
.x1f{left:260.025000px;}
.x41{left:272.625000px;}
.x6{left:274.064987px;}
.x3e{left:309.030000px;}
.xb{left:312.990000px;}
.x3f{left:334.590000px;}
.x12{left:339.624000px;}
.x5{left:355.829987px;}
.x27{left:363.030000px;}
.x20{left:367.350000px;}
.x4{left:379.949987px;}
.x40{left:384.630000px;}
.xe{left:388.949987px;}
.x21{left:392.190000px;}
.x3{left:398.339987px;}
.x3a{left:401.580000px;}
.x3b{left:426.420000px;}
.x11{left:428.579987px;}
.x42{left:430.740000px;}
.x2e{left:436.860000px;}
.x22{left:442.260000px;}
.x8{left:446.579987px;}
.x14{left:447.660000px;}
.x43{left:455.220000px;}
.x3c{left:476.460000px;}
.x1b{left:489.090000px;}
.x1c{left:513.930000px;}
.x44{left:515.010000px;}
.x29{left:543.090000px;}
.x1d{left:564.690000px;}
.x2b{left:649.695000px;}
.x16{left:689.694000px;}
.x2d{left:723.885000px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.864000pt;}
.lsf{letter-spacing:-0.848000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.450667pt;}
.ls5{letter-spacing:-0.442667pt;}
.lsa{letter-spacing:-0.432533pt;}
.ls11{letter-spacing:-0.414933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.017920pt;}
.lsb{letter-spacing:0.414933pt;}
.ls10{letter-spacing:0.432640pt;}
.ls0{letter-spacing:0.442880pt;}
.ls6{letter-spacing:0.450667pt;}
.ls1{letter-spacing:0.640000pt;}
.ls13{letter-spacing:7.040000pt;}
.lsc{letter-spacing:8.320000pt;}
.ls15{letter-spacing:37.402027pt;}
.ls12{letter-spacing:38.825387pt;}
.ls14{letter-spacing:66.842027pt;}
.lse{letter-spacing:70.825387pt;}
.ls9{letter-spacing:72.222720pt;}
.ls2{letter-spacing:73.502720pt;}
.ws8{word-spacing:-53.760000pt;}
.ws1{word-spacing:-21.440000pt;}
.wsc{word-spacing:-14.720000pt;}
.ws6{word-spacing:-13.890667pt;}
.wsa{word-spacing:-13.854933pt;}
.ws3{word-spacing:-13.457920pt;}
.ws2{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.007467pt;}
.wsd{word-spacing:-12.989333pt;}
.ws7{word-spacing:-12.592000pt;}
.wsb{word-spacing:-12.576000pt;}
.ws9{word-spacing:-12.160000pt;}
.ws0{word-spacing:-11.717333pt;}
.ws4{word-spacing:0.000000pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._7{width:3.063467pt;}
._c{width:3.979093pt;}
._d{width:5.352107pt;}
._e{width:7.018240pt;}
._13{width:8.124587pt;}
._1a{width:9.088853pt;}
._f{width:10.114560pt;}
._10{width:11.478187pt;}
._a{width:12.526080pt;}
._21{width:13.547520pt;}
._b{width:14.818987pt;}
._11{width:16.343040pt;}
._12{width:17.541120pt;}
._19{width:18.780587pt;}
._18{width:19.752960pt;}
._17{width:21.181440pt;}
._16{width:22.789973pt;}
._15{width:24.076800pt;}
._14{width:25.059840pt;}
._22{width:26.403840pt;}
._23{width:27.435520pt;}
._1b{width:29.207040pt;}
._1c{width:30.650880pt;}
._20{width:31.731627pt;}
._1f{width:32.710827pt;}
._1e{width:35.612160pt;}
._1d{width:36.825600pt;}
._5{width:350.186667pt;}
._9{width:513.384533pt;}
._4{width:740.746667pt;}
._8{width:996.885333pt;}
._3{width:1414.378667pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y28{bottom:2.880000pt;}
.y11a{bottom:4.160000pt;}
.y119{bottom:4.480000pt;}
.y9d{bottom:5.120000pt;}
.yf4{bottom:10.240000pt;}
.yf6{bottom:10.280000pt;}
.yee{bottom:10.560000pt;}
.yfc{bottom:10.586667pt;}
.y11e{bottom:12.160000pt;}
.y120{bottom:16.640000pt;}
.y27{bottom:18.280000pt;}
.y11f{bottom:20.160000pt;}
.y118{bottom:20.480000pt;}
.y26{bottom:33.640000pt;}
.ye{bottom:38.720000pt;}
.y11c{bottom:40.320000pt;}
.y25{bottom:49.000000pt;}
.yc{bottom:60.800000pt;}
.y24{bottom:72.360000pt;}
.ya{bottom:84.192000pt;}
.y23{bottom:87.720000pt;}
.y22{bottom:103.080000pt;}
.y105{bottom:116.192000pt;}
.y21{bottom:118.440000pt;}
.y97{bottom:120.672000pt;}
.y35{bottom:121.312000pt;}
.y13b{bottom:132.192000pt;}
.ydd{bottom:132.512000pt;}
.y167{bottom:133.152000pt;}
.y104{bottom:133.786667pt;}
.y96{bottom:138.266667pt;}
.y34{bottom:139.226667pt;}
.y20{bottom:141.506667pt;}
.y191{bottom:144.026667pt;}
.yb5{bottom:146.586667pt;}
.y13a{bottom:149.786667pt;}
.ydc{bottom:150.106667pt;}
.y166{bottom:150.746667pt;}
.y103{bottom:151.386667pt;}
.y95{bottom:155.866667pt;}
.y33{bottom:156.826667pt;}
.y1f{bottom:156.866667pt;}
.y190{bottom:161.626667pt;}
.yb4{bottom:164.186667pt;}
.y139{bottom:167.386667pt;}
.ydb{bottom:167.706667pt;}
.y102{bottom:168.986667pt;}
.y165{bottom:169.626667pt;}
.y1e{bottom:172.226667pt;}
.y94{bottom:173.466667pt;}
.y66{bottom:174.746667pt;}
.y18f{bottom:180.546667pt;}
.yb3{bottom:181.826667pt;}
.y32{bottom:182.466667pt;}
.y138{bottom:185.026667pt;}
.yda{bottom:185.346667pt;}
.y101{bottom:186.626667pt;}
.y164{bottom:187.266667pt;}
.y1d{bottom:187.586667pt;}
.y93{bottom:191.106667pt;}
.y65{bottom:192.386667pt;}
.y137{bottom:198.146667pt;}
.yb2{bottom:199.426667pt;}
.y31{bottom:200.066667pt;}
.y1c{bottom:202.946667pt;}
.y100{bottom:204.226667pt;}
.y163{bottom:206.146667pt;}
.y92{bottom:208.706667pt;}
.y64{bottom:209.986667pt;}
.y136{bottom:215.746667pt;}
.y18e{bottom:216.066667pt;}
.y30{bottom:217.666667pt;}
.yb1{bottom:218.626667pt;}
.yd9{bottom:220.546667pt;}
.yff{bottom:221.826667pt;}
.y162{bottom:223.746667pt;}
.y91{bottom:226.306667pt;}
.y63{bottom:227.906667pt;}
.y135{bottom:233.346667pt;}
.yfe{bottom:234.946667pt;}
.y2f{bottom:235.266667pt;}
.yd8{bottom:238.146667pt;}
.y161{bottom:241.346667pt;}
.yb0{bottom:241.986667pt;}
.y90{bottom:243.906667pt;}
.y62{bottom:245.506667pt;}
.y134{bottom:250.946667pt;}
.y18d{bottom:252.546667pt;}
.y2e{bottom:252.866667pt;}
.yd7{bottom:255.746667pt;}
.yfd{bottom:257.986667pt;}
.yaf{bottom:259.586667pt;}
.y160{bottom:260.226667pt;}
.y8f{bottom:261.506667pt;}
.y61{bottom:263.106667pt;}
.y18c{bottom:270.146667pt;}
.y2d{bottom:270.466667pt;}
.yd6{bottom:273.666667pt;}
.y133{bottom:274.626667pt;}
.yae{bottom:277.186667pt;}
.y15f{bottom:277.826667pt;}
.y8e{bottom:279.426667pt;}
.y60{bottom:280.706667pt;}
.yfb{bottom:281.666667pt;}
.y2c{bottom:288.093333pt;}
.y18b{bottom:289.053333pt;}
.y132{bottom:292.253333pt;}
.yd5{bottom:292.893333pt;}
.yad{bottom:295.133333pt;}
.y15e{bottom:296.733333pt;}
.y8d{bottom:297.053333pt;}
.y5f{bottom:298.333333pt;}
.yfa{bottom:304.733333pt;}
.y2b{bottom:305.693333pt;}
.y18a{bottom:306.653333pt;}
.y131{bottom:309.853333pt;}
.yac{bottom:312.733333pt;}
.y15d{bottom:314.333333pt;}
.y5e{bottom:315.933333pt;}
.y8c{bottom:316.253333pt;}
.yd4{bottom:318.493333pt;}
.y189{bottom:325.533333pt;}
.y130{bottom:327.453333pt;}
.yf9{bottom:327.773333pt;}
.yab{bottom:330.333333pt;}
.y15c{bottom:333.213333pt;}
.y5d{bottom:333.533333pt;}
.yd3{bottom:336.093333pt;}
.y2a{bottom:336.733333pt;}
.y8b{bottom:341.853333pt;}
.y188{bottom:343.133333pt;}
.y12f{bottom:345.053333pt;}
.yaa{bottom:347.933333pt;}
.yf8{bottom:350.813333pt;}
.y5c{bottom:351.133333pt;}
.yd2{bottom:353.693333pt;}
.y8a{bottom:359.453333pt;}
.y187{bottom:360.733333pt;}
.y29{bottom:361.693333pt;}
.y12e{bottom:362.653333pt;}
.ya9{bottom:365.533333pt;}
.y5b{bottom:368.733333pt;}
.yf7{bottom:373.853333pt;}
.y89{bottom:377.053333pt;}
.y15b{bottom:378.013333pt;}
.y1a9{bottom:378.333333pt;}
.y186{bottom:379.613333pt;}
.y12d{bottom:380.253333pt;}
.y1b{bottom:383.773333pt;}
.ya8{bottom:384.733333pt;}
.y5a{bottom:386.333333pt;}
.y12c{bottom:393.373333pt;}
.y88{bottom:394.653333pt;}
.y15a{bottom:395.613333pt;}
.y1a8{bottom:395.933333pt;}
.yf5{bottom:396.893333pt;}
.y185{bottom:397.213333pt;}
.y59{bottom:404.293333pt;}
.y12b{bottom:408.773333pt;}
.yd1{bottom:410.373333pt;}
.y87{bottom:412.613333pt;}
.y159{bottom:413.253333pt;}
.y1a7{bottom:413.573333pt;}
.y184{bottom:416.133333pt;}
.ya7{bottom:418.373333pt;}
.yf3{bottom:420.613333pt;}
.y58{bottom:421.893333pt;}
.y12a{bottom:424.133333pt;}
.yd0{bottom:427.973333pt;}
.y86{bottom:430.213333pt;}
.y158{bottom:430.853333pt;}
.y1a6{bottom:432.453333pt;}
.y183{bottom:433.733333pt;}
.ya6{bottom:436.293333pt;}
.y57{bottom:439.493333pt;}
.yf2{bottom:443.333333pt;}
.ycf{bottom:445.573333pt;}
.y85{bottom:447.813333pt;}
.y157{bottom:448.453333pt;}
.y1a5{bottom:450.053333pt;}
.y182{bottom:452.613333pt;}
.ya5{bottom:453.893333pt;}
.y129{bottom:454.853333pt;}
.y56{bottom:457.093333pt;}
.yce{bottom:463.493333pt;}
.y84{bottom:465.413333pt;}
.y156{bottom:466.053333pt;}
.yf1{bottom:467.013333pt;}
.y1a4{bottom:468.933333pt;}
.y128{bottom:470.213333pt;}
.ya4{bottom:471.493333pt;}
.y55{bottom:476.293333pt;}
.ycd{bottom:481.093333pt;}
.y83{bottom:483.013333pt;}
.y155{bottom:483.653333pt;}
.y1a3{bottom:486.533333pt;}
.y181{bottom:487.813333pt;}
.ya3{bottom:489.093333pt;}
.yf0{bottom:490.053333pt;}
.y127{bottom:491.333333pt;}
.ycc{bottom:498.693333pt;}
.y82{bottom:500.613333pt;}
.y154{bottom:501.253333pt;}
.y54{bottom:501.893333pt;}
.y180{bottom:505.413333pt;}
.ya2{bottom:506.693333pt;}
.y126{bottom:508.933333pt;}
.yef{bottom:513.120000pt;}
.ycb{bottom:516.320000pt;}
.y153{bottom:518.880000pt;}
.y53{bottom:519.520000pt;}
.y81{bottom:519.840000pt;}
.y1a2{bottom:523.040000pt;}
.ya1{bottom:524.320000pt;}
.y125{bottom:526.560000pt;}
.yca{bottom:533.920000pt;}
.yed{bottom:536.160000pt;}
.y152{bottom:536.480000pt;}
.ya0{bottom:541.920000pt;}
.y1a1{bottom:542.240000pt;}
.y124{bottom:544.160000pt;}
.y80{bottom:545.760000pt;}
.y52{bottom:550.560000pt;}
.yc9{bottom:553.120000pt;}
.y151{bottom:554.400000pt;}
.y123{bottom:556.640000pt;}
.y1a0{bottom:559.840000pt;}
.y17f{bottom:561.120000pt;}
.y9f{bottom:561.440000pt;}
.y7f{bottom:563.360000pt;}
.yec{bottom:564.960000pt;}
.y150{bottom:572.000000pt;}
.y11b{bottom:575.200000pt;}
.y51{bottom:576.160000pt;}
.y19f{bottom:577.440000pt;}
.yc8{bottom:578.720000pt;}
.y7e{bottom:580.960000pt;}
.yeb{bottom:582.560000pt;}
.y9e{bottom:584.800000pt;}
.y14f{bottom:589.600000pt;}
.y122{bottom:593.760000pt;}
.y50{bottom:594.080000pt;}
.y19e{bottom:596.320000pt;}
.yc7{bottom:596.640000pt;}
.y17e{bottom:597.600000pt;}
.y9c{bottom:597.920000pt;}
.y7d{bottom:598.560000pt;}
.yea{bottom:600.160000pt;}
.y14e{bottom:607.200000pt;}
.y4f{bottom:611.680000pt;}
.y1a{bottom:612.000000pt;}
.y121{bottom:612.320000pt;}
.y19d{bottom:613.920000pt;}
.yc6{bottom:614.240000pt;}
.y17d{bottom:615.200000pt;}
.y7c{bottom:616.160000pt;}
.ye9{bottom:617.760000pt;}
.y14d{bottom:624.826667pt;}
.y4e{bottom:629.306667pt;}
.y11d{bottom:630.906667pt;}
.y19c{bottom:631.546667pt;}
.yc5{bottom:631.866667pt;}
.y7b{bottom:633.786667pt;}
.y17c{bottom:634.106667pt;}
.y19{bottom:635.386667pt;}
.y14c{bottom:642.426667pt;}
.y4d{bottom:646.906667pt;}
.yc4{bottom:649.466667pt;}
.y18{bottom:650.106667pt;}
.y19b{bottom:650.426667pt;}
.y7a{bottom:651.386667pt;}
.y17b{bottom:651.706667pt;}
.ye8{bottom:652.986667pt;}
.y14b{bottom:660.026667pt;}
.y17{bottom:662.586667pt;}
.y4c{bottom:664.506667pt;}
.y116{bottom:665.466667pt;}
.yc3{bottom:667.066667pt;}
.y19a{bottom:668.026667pt;}
.y79{bottom:668.986667pt;}
.y17a{bottom:670.586667pt;}
.ye7{bottom:670.906667pt;}
.y16{bottom:674.746667pt;}
.y14a{bottom:677.626667pt;}
.y4b{bottom:682.106667pt;}
.y117{bottom:683.706667pt;}
.yc2{bottom:684.666667pt;}
.y199{bottom:685.626667pt;}
.y15{bottom:686.906667pt;}
.y179{bottom:688.186667pt;}
.y78{bottom:688.506667pt;}
.y149{bottom:695.226667pt;}
.y4a{bottom:699.706667pt;}
.yc1{bottom:702.266667pt;}
.y198{bottom:704.506667pt;}
.y178{bottom:705.786667pt;}
.ye6{bottom:706.106667pt;}
.y14{bottom:707.706667pt;}
.y148{bottom:712.826667pt;}
.y77{bottom:714.106667pt;}
.y49{bottom:717.306667pt;}
.y115{bottom:718.266667pt;}
.yc0{bottom:719.866667pt;}
.y197{bottom:722.106667pt;}
.y13{bottom:723.066667pt;}
.y177{bottom:723.386667pt;}
.ye5{bottom:723.706667pt;}
.y147{bottom:730.746667pt;}
.y76{bottom:731.706667pt;}
.ybf{bottom:737.506667pt;}
.y12{bottom:740.066667pt;}
.y196{bottom:741.026667pt;}
.ye4{bottom:741.346667pt;}
.y176{bottom:742.306667pt;}
.y48{bottom:742.946667pt;}
.y146{bottom:748.386667pt;}
.y75{bottom:749.346667pt;}
.y114{bottom:754.466667pt;}
.ybe{bottom:755.106667pt;}
.y195{bottom:758.626667pt;}
.ye3{bottom:758.946667pt;}
.y175{bottom:759.906667pt;}
.y47{bottom:760.546667pt;}
.y11{bottom:764.706667pt;}
.y145{bottom:765.986667pt;}
.y74{bottom:766.946667pt;}
.y113{bottom:772.066667pt;}
.ybd{bottom:773.026667pt;}
.y174{bottom:777.506667pt;}
.y46{bottom:778.146667pt;}
.y144{bottom:783.586667pt;}
.y73{bottom:784.546667pt;}
.y10{bottom:789.346667pt;}
.y112{bottom:789.666667pt;}
.ybc{bottom:792.226667pt;}
.y173{bottom:795.106667pt;}
.y45{bottom:796.066667pt;}
.y143{bottom:801.186667pt;}
.y72{bottom:802.146667pt;}
.ye2{bottom:804.066667pt;}
.y111{bottom:807.266667pt;}
.yf{bottom:813.666667pt;}
.y172{bottom:813.986667pt;}
.ybb{bottom:817.826667pt;}
.y142{bottom:818.786667pt;}
.y71{bottom:819.746667pt;}
.ye1{bottom:821.666667pt;}
.y110{bottom:824.866667pt;}
.y44{bottom:831.266667pt;}
.y171{bottom:831.586667pt;}
.yba{bottom:835.426667pt;}
.y141{bottom:836.386667pt;}
.y9{bottom:836.706667pt;}
.y70{bottom:837.346667pt;}
.ye0{bottom:839.266667pt;}
.y10f{bottom:842.466667pt;}
.y43{bottom:848.893333pt;}
.y170{bottom:850.493333pt;}
.y8{bottom:852.093333pt;}
.y9b{bottom:853.053333pt;}
.y140{bottom:854.013333pt;}
.y6f{bottom:855.293333pt;}
.ydf{bottom:856.893333pt;}
.y10e{bottom:860.093333pt;}
.y7{bottom:864.573333pt;}
.y42{bottom:866.493333pt;}
.y16f{bottom:868.093333pt;}
.y194{bottom:868.413333pt;}
.y9a{bottom:870.653333pt;}
.y6e{bottom:872.893333pt;}
.yde{bottom:874.493333pt;}
.y10d{bottom:875.453333pt;}
.y41{bottom:884.093333pt;}
.y13f{bottom:885.053333pt;}
.y193{bottom:886.013333pt;}
.y16e{bottom:887.293333pt;}
.y99{bottom:888.253333pt;}
.y6d{bottom:890.493333pt;}
.y10c{bottom:890.813333pt;}
.yb9{bottom:892.093333pt;}
.y40{bottom:901.693333pt;}
.y10b{bottom:903.933333pt;}
.y16d{bottom:904.893333pt;}
.y98{bottom:906.173333pt;}
.y6c{bottom:908.093333pt;}
.y13e{bottom:908.413333pt;}
.yb8{bottom:909.693333pt;}
.y6{bottom:913.213333pt;}
.y3f{bottom:919.293333pt;}
.y13d{bottom:921.533333pt;}
.y192{bottom:922.493333pt;}
.y16c{bottom:923.773333pt;}
.y6b{bottom:925.693333pt;}
.yb7{bottom:927.293333pt;}
.y5{bottom:935.293333pt;}
.y3e{bottom:936.893333pt;}
.y13c{bottom:939.133333pt;}
.y16b{bottom:941.373333pt;}
.y6a{bottom:943.293333pt;}
.yb6{bottom:944.893333pt;}
.y10a{bottom:950.653333pt;}
.y4{bottom:953.533333pt;}
.y16a{bottom:960.293333pt;}
.y69{bottom:960.933333pt;}
.y3d{bottom:962.533333pt;}
.y109{bottom:966.053333pt;}
.y3{bottom:972.453333pt;}
.y169{bottom:977.893333pt;}
.y68{bottom:978.533333pt;}
.y3c{bottom:980.453333pt;}
.y108{bottom:981.413333pt;}
.y2{bottom:990.693333pt;}
.y67{bottom:996.133333pt;}
.y107{bottom:996.773333pt;}
.y3b{bottom:998.053333pt;}
.y1{bottom:1005.733333pt;}
.y106{bottom:1012.133333pt;}
.y168{bottom:1014.373333pt;}
.y3a{bottom:1015.653333pt;}
.y39{bottom:1036.773333pt;}
.y38{bottom:1049.253333pt;}
.y37{bottom:1067.813333pt;}
.y36{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h14{height:15.360000pt;}
.h15{height:15.392000pt;}
.h1a{height:15.680000pt;}
.h1f{height:16.000000pt;}
.h1e{height:16.032000pt;}
.hf{height:17.600000pt;}
.h17{height:17.632000pt;}
.h12{height:22.720000pt;}
.h13{height:22.752000pt;}
.h10{height:23.040000pt;}
.h11{height:23.072000pt;}
.ha{height:30.545625pt;}
.h1c{height:31.680000pt;}
.h19{height:32.000000pt;}
.h7{height:35.173750pt;}
.h5{height:35.553750pt;}
.h4{height:38.876250pt;}
.h2{height:38.928750pt;}
.hc{height:39.138750pt;}
.hd{height:39.296250pt;}
.h16{height:41.160000pt;}
.h20{height:42.866250pt;}
.h1d{height:46.281250pt;}
.h3{height:46.343750pt;}
.h18{height:50.240000pt;}
.h9{height:62.100625pt;}
.h1b{height:87.392000pt;}
.hb{height:223.426667pt;}
.he{height:231.133333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w24{width:21.760000pt;}
.wa{width:22.080000pt;}
.w20{width:22.720000pt;}
.w1c{width:44.480000pt;}
.wf{width:44.512000pt;}
.wb{width:45.120000pt;}
.w19{width:48.032000pt;}
.w25{width:53.152000pt;}
.w17{width:54.752000pt;}
.w18{width:64.352000pt;}
.w16{width:64.672000pt;}
.w15{width:93.152000pt;}
.w26{width:93.792000pt;}
.we{width:95.392000pt;}
.w23{width:140.546667pt;}
.w1b{width:141.826667pt;}
.w27{width:146.946667pt;}
.w1f{width:150.146667pt;}
.w1d{width:155.586667pt;}
.w14{width:158.786667pt;}
.w10{width:169.666667pt;}
.w1a{width:176.386667pt;}
.wc{width:187.933333pt;}
.w1e{width:200.066667pt;}
.w11{width:214.173333pt;}
.w13{width:224.413333pt;}
.wd{width:233.053333pt;}
.w7{width:309.253333pt;}
.w4{width:309.893333pt;}
.w3{width:310.533333pt;}
.w6{width:311.173333pt;}
.w21{width:327.520000pt;}
.w9{width:330.400000pt;}
.w22{width:372.000000pt;}
.w5{width:604.413333pt;}
.w12{width:605.053333pt;}
.w8{width:618.813333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x26{left:4.160000pt;}
.x1a{left:6.720000pt;}
.xa{left:7.680000pt;}
.x28{left:8.640000pt;}
.x2f{left:9.600000pt;}
.x2a{left:17.280000pt;}
.x32{left:21.760000pt;}
.x36{left:23.720000pt;}
.x1e{left:28.480000pt;}
.x38{left:29.480000pt;}
.x2c{left:30.746667pt;}
.x37{left:33.946667pt;}
.x30{left:35.560000pt;}
.x35{left:39.706667pt;}
.x33{left:42.266667pt;}
.x34{left:68.186667pt;}
.x9{left:86.752000pt;}
.x15{left:87.712000pt;}
.x7{left:94.431988pt;}
.x25{left:95.712000pt;}
.x19{left:104.352000pt;}
.x23{left:118.463988pt;}
.x3d{left:124.544000pt;}
.x18{left:132.863988pt;}
.xc{left:135.426655pt;}
.xd{left:140.866655pt;}
.x24{left:142.466655pt;}
.x31{left:143.746667pt;}
.x13{left:160.706655pt;}
.xf{left:168.706655pt;}
.x10{left:199.773322pt;}
.x39{left:215.133333pt;}
.x2{left:226.013322pt;}
.x17{left:229.221333pt;}
.x1f{left:231.133333pt;}
.x41{left:242.333333pt;}
.x6{left:243.613322pt;}
.x3e{left:274.693333pt;}
.xb{left:278.213333pt;}
.x3f{left:297.413333pt;}
.x12{left:301.888000pt;}
.x5{left:316.293322pt;}
.x27{left:322.693333pt;}
.x20{left:326.533333pt;}
.x4{left:337.733322pt;}
.x40{left:341.893333pt;}
.xe{left:345.733322pt;}
.x21{left:348.613333pt;}
.x3{left:354.079988pt;}
.x3a{left:356.960000pt;}
.x3b{left:379.040000pt;}
.x11{left:380.959988pt;}
.x42{left:382.880000pt;}
.x2e{left:388.320000pt;}
.x22{left:393.120000pt;}
.x8{left:396.959988pt;}
.x14{left:397.920000pt;}
.x43{left:404.640000pt;}
.x3c{left:423.520000pt;}
.x1b{left:434.746667pt;}
.x1c{left:456.826667pt;}
.x44{left:457.786667pt;}
.x29{left:482.746667pt;}
.x1d{left:501.946667pt;}
.x2b{left:577.506667pt;}
.x16{left:613.061333pt;}
.x2d{left:643.453333pt;}
.x1{left:699.493322pt;}
}




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