
    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_3f5df89f1d5472007b1d966a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_d93feb8c1476d755dbdc3b8b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_23f9b0556b1c594d448b165c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_e45351cf1ef8a2f76d9c8daa.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_f1aff0d13c8fc7e14273aa3c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_08ff17c39016b2ad4381fcbd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4b0e5e4d194ead75b12d2946.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d7979b6de18b0b9581e5d76f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.738770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5beff4e65aaed4aabeedf8b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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:ffb;src:url('chunks/assets/font_7b59876cc664a70b7e775d45.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.035156;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);}
.v7{vertical-align:-36.000000px;}
.v3{vertical-align:-33.120000px;}
.v5{vertical-align:-30.240000px;}
.v2{vertical-align:-21.600000px;}
.v8{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.880000px;}
.vb{vertical-align:18.720000px;}
.v1{vertical-align:21.600000px;}
.v6{vertical-align:24.480000px;}
.v4{vertical-align:33.120000px;}
.va{vertical-align:36.000000px;}
.lse{letter-spacing:-2.160000px;}
.ls24{letter-spacing:-1.938000px;}
.ls1b{letter-spacing:-1.614000px;}
.lsc{letter-spacing:-1.440000px;}
.ls21{letter-spacing:-1.254000px;}
.ls10{letter-spacing:-0.972000px;}
.ls18{letter-spacing:-0.810000px;}
.ls3{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.498000px;}
.lsb{letter-spacing:-0.486600px;}
.lsf{letter-spacing:-0.466800px;}
.ls23{letter-spacing:-0.313800px;}
.ls19{letter-spacing:-0.172800px;}
.ls6{letter-spacing:-0.037440px;}
.ls5{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.017280px;}
.ls1a{letter-spacing:0.172800px;}
.ls22{letter-spacing:0.184200px;}
.ls17{letter-spacing:0.311040px;}
.ls12{letter-spacing:0.345600px;}
.ls0{letter-spacing:0.498240px;}
.ls13{letter-spacing:0.630000px;}
.ls7{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.731520px;}
.ls9{letter-spacing:0.900000px;}
.lsd{letter-spacing:2.160000px;}
.ls20{letter-spacing:5.040000px;}
.ls1f{letter-spacing:6.480000px;}
.ls16{letter-spacing:7.505280px;}
.ls1e{letter-spacing:12.219840px;}
.ls8{letter-spacing:16.306560px;}
.ls1d{letter-spacing:39.591840px;}
.ls15{letter-spacing:40.637280px;}
.ls14{letter-spacing:106.381440px;}
.ls1c{letter-spacing:116.461440px;}
.ls11{letter-spacing:140.953440px;}
.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;}
}
.ws10{word-spacing:-21.510000px;}
.wsc{word-spacing:-20.070000px;}
.ws13{word-spacing:-18.000000px;}
.ws11{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.120000px;}
.ws1{word-spacing:-15.099840px;}
.wsd{word-spacing:-14.745600px;}
.ws9{word-spacing:-14.653200px;}
.ws5{word-spacing:-14.633400px;}
.wsf{word-spacing:-14.572800px;}
.ws12{word-spacing:-14.400000px;}
.ws16{word-spacing:-14.310000px;}
.wse{word-spacing:-14.227200px;}
.ws18{word-spacing:-13.864200px;}
.ws6{word-spacing:-13.680000px;}
.ws3{word-spacing:-13.631040px;}
.ws19{word-spacing:-13.366200px;}
.ws0{word-spacing:-13.182000px;}
.ws14{word-spacing:-12.870000px;}
.ws17{word-spacing:-12.426000px;}
.ws15{word-spacing:-12.240000px;}
.ws1a{word-spacing:-11.742000px;}
.wsa{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.737280px;}
.ws7{word-spacing:-9.720000px;}
.wsb{word-spacing:-9.000000px;}
.ws4{word-spacing:0.000000px;}
._1e{margin-left:-5.093760px;}
._10{margin-left:-3.951360px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._c{width:3.948480px;}
._8{width:5.641920px;}
._7{width:7.378560px;}
._9{width:8.398080px;}
._b{width:10.350720px;}
._a{width:12.156480px;}
._f{width:14.091840px;}
._13{width:16.234560px;}
._12{width:17.314560px;}
._e{width:18.524160px;}
._d{width:19.656000px;}
._1f{width:20.744640px;}
._1b{width:21.772800px;}
._1c{width:23.163840px;}
._1d{width:24.554880px;}
._1a{width:26.064000px;}
._16{width:27.406080px;}
._14{width:28.546560px;}
._15{width:30.369600px;}
._20{width:31.512000px;}
._18{width:120.329760px;}
._11{width:152.341440px;}
._19{width:198.000000px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._17{width:849.336000px;}
._3{width:1591.176000px;}
.fc7{color:rgb(255,0,0);}
.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);}
.fs9{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs2{font-size:54.720000px;}
.fs5{font-size:57.600000px;}
.fs0{font-size:60.480000px;}
.fs7{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs6{font-size:90.720000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y6a{bottom:3.240000px;}
.y77{bottom:16.920000px;}
.y93{bottom:20.160000px;}
.y90{bottom:20.520000px;}
.y2d{bottom:21.240000px;}
.y96{bottom:37.800000px;}
.ye{bottom:43.560000px;}
.y2c{bottom:59.070000px;}
.yc{bottom:68.400000px;}
.y2b{bottom:78.870000px;}
.ya{bottom:94.716000px;}
.y2a{bottom:98.670000px;}
.y29{bottom:118.470000px;}
.y3a{bottom:131.076000px;}
.yc0{bottom:132.156000px;}
.y39{bottom:136.476000px;}
.y28{bottom:138.270000px;}
.y137{bottom:149.076000px;}
.y38{bottom:149.436000px;}
.yd6{bottom:150.150000px;}
.y5d{bottom:152.310000px;}
.y157{bottom:152.670000px;}
.y10b{bottom:154.470000px;}
.y37{bottom:154.830000px;}
.y27{bottom:158.070000px;}
.yed{bottom:160.230000px;}
.y36{bottom:167.790000px;}
.ye1{bottom:168.150000px;}
.y11e{bottom:172.470000px;}
.y35{bottom:173.190000px;}
.y136{bottom:174.990000px;}
.y26{bottom:177.870000px;}
.y5c{bottom:178.230000px;}
.y10a{bottom:180.390000px;}
.ybf{bottom:183.630000px;}
.y34{bottom:186.150000px;}
.y156{bottom:187.590000px;}
.y33{bottom:191.550000px;}
.y86{bottom:193.350000px;}
.yd5{bottom:194.070000px;}
.y25{bottom:197.715000px;}
.y11d{bottom:198.435000px;}
.ya4{bottom:200.235000px;}
.y135{bottom:200.595000px;}
.y5b{bottom:204.195000px;}
.y32{bottom:204.555000px;}
.y101{bottom:206.355000px;}
.ybe{bottom:209.595000px;}
.y31{bottom:209.955000px;}
.ye0{bottom:212.115000px;}
.y24{bottom:217.515000px;}
.yd4{bottom:219.675000px;}
.y30{bottom:222.915000px;}
.y11c{bottom:224.355000px;}
.y155{bottom:225.435000px;}
.y85{bottom:226.155000px;}
.y134{bottom:226.515000px;}
.y2f{bottom:228.315000px;}
.y5a{bottom:230.115000px;}
.y100{bottom:232.275000px;}
.ybd{bottom:235.515000px;}
.y23{bottom:237.675000px;}
.y2e{bottom:240.555000px;}
.y84{bottom:244.155000px;}
.yd3{bottom:245.595000px;}
.y154{bottom:247.035000px;}
.y11b{bottom:250.275000px;}
.y133{bottom:252.435000px;}
.y22{bottom:257.475000px;}
.yff{bottom:258.195000px;}
.y83{bottom:262.155000px;}
.ydf{bottom:263.595000px;}
.ya3{bottom:270.075000px;}
.y20{bottom:271.155000px;}
.yd2{bottom:271.515000px;}
.y59{bottom:273.675000px;}
.y11a{bottom:276.195000px;}
.y153{bottom:276.915000px;}
.y132{bottom:278.355000px;}
.ybc{bottom:279.435000px;}
.y82{bottom:280.155000px;}
.yfe{bottom:284.115000px;}
.yde{bottom:289.515000px;}
.y21{bottom:292.755000px;}
.ya2{bottom:295.995000px;}
.yd1{bottom:297.435000px;}
.y81{bottom:298.155000px;}
.y58{bottom:299.595000px;}
.y109{bottom:302.115000px;}
.y131{bottom:304.275000px;}
.y152{bottom:306.435000px;}
.yfd{bottom:309.675000px;}
.ydd{bottom:315.435000px;}
.y80{bottom:316.155000px;}
.ya1{bottom:321.915000px;}
.ybb{bottom:323.385000px;}
.y57{bottom:325.545000px;}
.y108{bottom:327.705000px;}
.y130{bottom:330.225000px;}
.yec{bottom:333.465000px;}
.y7f{bottom:334.185000px;}
.yfc{bottom:335.625000px;}
.y151{bottom:336.345000px;}
.yd0{bottom:341.385000px;}
.yba{bottom:349.305000px;}
.y56{bottom:351.465000px;}
.y7e{bottom:352.185000px;}
.y107{bottom:353.625000px;}
.y12f{bottom:356.145000px;}
.ya0{bottom:365.865000px;}
.ydc{bottom:367.305000px;}
.y7d{bottom:370.185000px;}
.y119{bottom:371.625000px;}
.y150{bottom:374.505000px;}
.yb9{bottom:375.225000px;}
.yeb{bottom:377.385000px;}
.yfb{bottom:379.545000px;}
.y12e{bottom:381.705000px;}
.ycf{bottom:385.305000px;}
.y7c{bottom:388.185000px;}
.y55{bottom:395.385000px;}
.y14f{bottom:395.745000px;}
.y118{bottom:397.545000px;}
.yb8{bottom:401.145000px;}
.yfa{bottom:405.465000px;}
.y7b{bottom:406.185000px;}
.y12d{bottom:407.625000px;}
.y9f{bottom:409.785000px;}
.yce{bottom:411.225000px;}
.y54{bottom:421.305000px;}
.y117{bottom:423.465000px;}
.y7a{bottom:424.185000px;}
.yb7{bottom:426.705000px;}
.yf9{bottom:431.385000px;}
.y12c{bottom:433.545000px;}
.y14e{bottom:433.905000px;}
.y9e{bottom:435.345000px;}
.ycd{bottom:437.145000px;}
.y79{bottom:442.185000px;}
.yea{bottom:447.225000px;}
.y116{bottom:449.430000px;}
.ydb{bottom:455.190000px;}
.y14d{bottom:455.550000px;}
.yf8{bottom:457.350000px;}
.y12b{bottom:459.510000px;}
.y78{bottom:460.230000px;}
.y9d{bottom:461.310000px;}
.ycc{bottom:462.750000px;}
.y53{bottom:465.270000px;}
.yb6{bottom:470.670000px;}
.y173{bottom:472.110000px;}
.ye9{bottom:473.190000px;}
.y106{bottom:475.350000px;}
.y76{bottom:478.230000px;}
.yda{bottom:480.750000px;}
.yf7{bottom:483.270000px;}
.y14c{bottom:485.070000px;}
.y12a{bottom:485.430000px;}
.y9c{bottom:487.230000px;}
.y52{bottom:491.190000px;}
.y115{bottom:493.350000px;}
.y75{bottom:496.230000px;}
.y172{bottom:496.950000px;}
.ye8{bottom:498.750000px;}
.y105{bottom:501.270000px;}
.ycb{bottom:506.670000px;}
.y129{bottom:511.350000px;}
.y171{bottom:511.710000px;}
.y9b{bottom:513.150000px;}
.y74{bottom:514.230000px;}
.yb5{bottom:514.590000px;}
.y51{bottom:516.750000px;}
.y114{bottom:519.270000px;}
.y14b{bottom:523.230000px;}
.ye7{bottom:524.670000px;}
.yf6{bottom:527.190000px;}
.y73{bottom:532.230000px;}
.yd9{bottom:532.590000px;}
.y170{bottom:536.190000px;}
.y128{bottom:537.270000px;}
.y9a{bottom:539.070000px;}
.y50{bottom:542.670000px;}
.y14a{bottom:544.830000px;}
.y113{bottom:545.190000px;}
.y72{bottom:550.230000px;}
.yca{bottom:550.590000px;}
.y16f{bottom:550.950000px;}
.yf5{bottom:552.750000px;}
.yb4{bottom:558.510000px;}
.y127{bottom:563.190000px;}
.y99{bottom:564.990000px;}
.y71{bottom:568.230000px;}
.y112{bottom:570.750000px;}
.y16e{bottom:575.820000px;}
.yc9{bottom:576.540000px;}
.yf4{bottom:578.700000px;}
.y149{bottom:582.660000px;}
.yb3{bottom:584.460000px;}
.y70{bottom:586.260000px;}
.y4f{bottom:586.620000px;}
.y126{bottom:588.780000px;}
.y16d{bottom:590.580000px;}
.y98{bottom:590.940000px;}
.ye6{bottom:594.540000px;}
.y111{bottom:596.700000px;}
.yc8{bottom:602.460000px;}
.y6f{bottom:604.260000px;}
.yf3{bottom:604.620000px;}
.yb2{bottom:610.380000px;}
.y4e{bottom:612.540000px;}
.y16c{bottom:615.060000px;}
.y1f{bottom:619.380000px;}
.y6e{bottom:622.260000px;}
.y97{bottom:623.700000px;}
.yc7{bottom:628.380000px;}
.y16b{bottom:630.180000px;}
.yf2{bottom:630.540000px;}
.y125{bottom:632.700000px;}
.y148{bottom:633.780000px;}
.yb1{bottom:636.300000px;}
.y4d{bottom:638.460000px;}
.y6d{bottom:640.260000px;}
.y110{bottom:640.620000px;}
.y95{bottom:641.700000px;}
.y1e{bottom:654.660000px;}
.y104{bottom:656.460000px;}
.y6c{bottom:658.260000px;}
.y124{bottom:658.620000px;}
.y147{bottom:663.660000px;}
.y10f{bottom:666.540000px;}
.y16a{bottom:669.420000px;}
.yc6{bottom:672.300000px;}
.yf1{bottom:674.460000px;}
.y6b{bottom:676.260000px;}
.yb0{bottom:679.860000px;}
.y4c{bottom:682.380000px;}
.y123{bottom:684.540000px;}
.y1c{bottom:692.460000px;}
.y69{bottom:693.900000px;}
.y94{bottom:694.260000px;}
.yd8{bottom:697.860000px;}
.y1d{bottom:698.580000px;}
.yf0{bottom:700.380000px;}
.y146{bottom:701.850000px;}
.ye5{bottom:708.330000px;}
.y169{bottom:709.050000px;}
.y122{bottom:710.490000px;}
.y1a{bottom:712.290000px;}
.yc5{bottom:715.890000px;}
.y1b{bottom:718.410000px;}
.y145{bottom:723.090000px;}
.yaf{bottom:723.810000px;}
.y4b{bottom:726.330000px;}
.y92{bottom:730.290000px;}
.y18{bottom:732.090000px;}
.y168{bottom:733.530000px;}
.ye4{bottom:733.890000px;}
.y121{bottom:736.410000px;}
.y19{bottom:738.210000px;}
.y68{bottom:741.810000px;}
.y10e{bottom:744.330000px;}
.y167{bottom:748.290000px;}
.yae{bottom:749.730000px;}
.y16{bottom:751.890000px;}
.y17{bottom:758.010000px;}
.yc4{bottom:759.810000px;}
.y144{bottom:761.250000px;}
.y120{bottom:762.330000px;}
.y91{bottom:765.210000px;}
.y10d{bottom:769.890000px;}
.y14{bottom:771.690000px;}
.y166{bottom:773.130000px;}
.yad{bottom:775.650000px;}
.y15{bottom:777.810000px;}
.y143{bottom:782.850000px;}
.y67{bottom:785.730000px;}
.y11f{bottom:787.890000px;}
.y12{bottom:791.490000px;}
.y4a{bottom:795.810000px;}
.y13{bottom:797.610000px;}
.y8f{bottom:800.490000px;}
.yac{bottom:801.570000px;}
.yef{bottom:803.730000px;}
.yc3{bottom:811.650000px;}
.y142{bottom:812.370000px;}
.y10c{bottom:813.810000px;}
.yd7{bottom:819.570000px;}
.y138{bottom:821.730000px;}
.y66{bottom:829.695000px;}
.y11{bottom:835.455000px;}
.y165{bottom:836.535000px;}
.yc2{bottom:837.615000px;}
.y49{bottom:839.775000px;}
.y141{bottom:842.295000px;}
.yab{bottom:845.535000px;}
.yee{bottom:847.695000px;}
.y164{bottom:851.295000px;}
.y65{bottom:855.615000px;}
.yc1{bottom:863.535000px;}
.y48{bottom:865.695000px;}
.y10{bottom:870.735000px;}
.y140{bottom:872.175000px;}
.y103{bottom:873.615000px;}
.y163{bottom:875.775000px;}
.y64{bottom:881.535000px;}
.yaa{bottom:889.455000px;}
.y162{bottom:890.895000px;}
.y47{bottom:891.615000px;}
.y102{bottom:899.535000px;}
.yf{bottom:906.015000px;}
.y63{bottom:907.455000px;}
.y8e{bottom:909.615000px;}
.y13f{bottom:909.975000px;}
.y161{bottom:915.375000px;}
.y46{bottom:917.535000px;}
.ye3{bottom:925.455000px;}
.y13e{bottom:931.575000px;}
.ya9{bottom:933.375000px;}
.y8d{bottom:935.535000px;}
.y160{bottom:939.135000px;}
.y9{bottom:941.295000px;}
.y45{bottom:943.455000px;}
.y62{bottom:951.375000px;}
.y13d{bottom:958.245000px;}
.y8{bottom:958.605000px;}
.ya8{bottom:958.965000px;}
.y8c{bottom:961.485000px;}
.y15f{bottom:965.085000px;}
.y44{bottom:969.405000px;}
.y7{bottom:972.645000px;}
.y61{bottom:976.965000px;}
.y13c{bottom:978.045000px;}
.ya7{bottom:984.885000px;}
.y8b{bottom:987.405000px;}
.y15e{bottom:990.285000px;}
.y43{bottom:994.965000px;}
.y60{bottom:1002.885000px;}
.ya6{bottom:1010.805000px;}
.y8a{bottom:1012.965000px;}
.y15d{bottom:1016.925000px;}
.y42{bottom:1020.885000px;}
.y6{bottom:1027.365000px;}
.y5f{bottom:1028.805000px;}
.y13b{bottom:1032.765000px;}
.y89{bottom:1038.885000px;}
.y15c{bottom:1042.845000px;}
.y41{bottom:1046.805000px;}
.y5{bottom:1052.205000px;}
.ya5{bottom:1054.725000px;}
.y13a{bottom:1062.645000px;}
.y88{bottom:1064.805000px;}
.y15b{bottom:1068.045000px;}
.y4{bottom:1072.725000px;}
.y87{bottom:1090.770000px;}
.y3{bottom:1094.010000px;}
.y15a{bottom:1094.730000px;}
.y40{bottom:1098.690000px;}
.y139{bottom:1099.050000px;}
.y2{bottom:1114.530000px;}
.y5e{bottom:1116.690000px;}
.y159{bottom:1120.650000px;}
.y1{bottom:1131.450000px;}
.ye2{bottom:1142.250000px;}
.y3f{bottom:1142.610000px;}
.y158{bottom:1144.770000px;}
.y3e{bottom:1166.370000px;}
.y3d{bottom:1180.410000px;}
.y3c{bottom:1201.290000px;}
.y3b{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.hf{height:16.920000px;}
.h10{height:16.956000px;}
.h11{height:17.280000px;}
.he{height:17.316000px;}
.h15{height:34.200000px;}
.h9{height:34.532578px;}
.h13{height:34.560000px;}
.h12{height:34.596000px;}
.hb{height:38.671172px;}
.h17{height:40.959844px;}
.h5{height:45.101250px;}
.h7{height:48.013594px;}
.h1b{height:48.601406px;}
.h14{height:49.848750px;}
.h19{height:50.540625px;}
.h1e{height:50.694609px;}
.h1c{height:51.159375px;}
.h16{height:51.480000px;}
.h4{height:53.067656px;}
.h2{height:53.717344px;}
.h1d{height:54.039375px;}
.hd{height:55.714922px;}
.hc{height:60.155156px;}
.h3{height:63.949219px;}
.h18{height:74.181094px;}
.h1a{height:83.660625px;}
.ha{height:324.825000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:71.676000px;}
.wc{width:107.316000px;}
.w9{width:225.825000px;}
.wa{width:226.155000px;}
.w8{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w7{width:341.430000px;}
.wb{width:498.810000px;}
.w6{width:679.965000px;}
.w1{width:892.500000px;}
.w5{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x26{left:7.560000px;}
.x9{left:8.640000px;}
.x7{left:106.235987px;}
.x20{left:111.275987px;}
.x23{left:133.271987px;}
.x29{left:160.274987px;}
.xb{left:178.634987px;}
.x21{left:180.794987px;}
.x2{left:254.264987px;}
.x6{left:274.064987px;}
.xa{left:304.350000px;}
.x1b{left:320.549987px;}
.x1f{left:322.349987px;}
.x24{left:333.510000px;}
.x10{left:346.109987px;}
.x16{left:351.869987px;}
.x5{left:355.829987px;}
.x18{left:366.269987px;}
.x1e{left:369.869987px;}
.xc{left:376.349987px;}
.x13{left:378.509987px;}
.x4{left:379.949987px;}
.xd{left:381.029987px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.x22{left:447.660000px;}
.xe{left:506.729973px;}
.x14{left:509.249973px;}
.xf{left:511.769987px;}
.x15{left:514.289987px;}
.x19{left:521.489973px;}
.x1a{left:526.529987px;}
.x17{left:536.249973px;}
.x11{left:541.649973px;}
.x12{left:546.689987px;}
.x25{left:560.370000px;}
.x1c{left:567.569973px;}
.x1d{left:572.609987px;}
.x27{left:606.495000px;}
.x28{left:714.525000px;}
.x1{left:786.929987px;}
@media print{
.v7{vertical-align:-32.000000pt;}
.v3{vertical-align:-29.440000pt;}
.v5{vertical-align:-26.880000pt;}
.v2{vertical-align:-19.200000pt;}
.v8{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.560000pt;}
.vb{vertical-align:16.640000pt;}
.v1{vertical-align:19.200000pt;}
.v6{vertical-align:21.760000pt;}
.v4{vertical-align:29.440000pt;}
.va{vertical-align:32.000000pt;}
.lse{letter-spacing:-1.920000pt;}
.ls24{letter-spacing:-1.722667pt;}
.ls1b{letter-spacing:-1.434667pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls21{letter-spacing:-1.114667pt;}
.ls10{letter-spacing:-0.864000pt;}
.ls18{letter-spacing:-0.720000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.442667pt;}
.lsb{letter-spacing:-0.432533pt;}
.lsf{letter-spacing:-0.414933pt;}
.ls23{letter-spacing:-0.278933pt;}
.ls19{letter-spacing:-0.153600pt;}
.ls6{letter-spacing:-0.033280pt;}
.ls5{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.015360pt;}
.ls1a{letter-spacing:0.153600pt;}
.ls22{letter-spacing:0.163733pt;}
.ls17{letter-spacing:0.276480pt;}
.ls12{letter-spacing:0.307200pt;}
.ls0{letter-spacing:0.442880pt;}
.ls13{letter-spacing:0.560000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.650240pt;}
.ls9{letter-spacing:0.800000pt;}
.lsd{letter-spacing:1.920000pt;}
.ls20{letter-spacing:4.480000pt;}
.ls1f{letter-spacing:5.760000pt;}
.ls16{letter-spacing:6.671360pt;}
.ls1e{letter-spacing:10.862080pt;}
.ls8{letter-spacing:14.494720pt;}
.ls1d{letter-spacing:35.192747pt;}
.ls15{letter-spacing:36.122027pt;}
.ls14{letter-spacing:94.561280pt;}
.ls1c{letter-spacing:103.521280pt;}
.ls11{letter-spacing:125.291947pt;}
.ws10{word-spacing:-19.120000pt;}
.wsc{word-spacing:-17.840000pt;}
.ws13{word-spacing:-16.000000pt;}
.ws11{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.440000pt;}
.ws1{word-spacing:-13.422080pt;}
.wsd{word-spacing:-13.107200pt;}
.ws9{word-spacing:-13.025067pt;}
.ws5{word-spacing:-13.007467pt;}
.wsf{word-spacing:-12.953600pt;}
.ws12{word-spacing:-12.800000pt;}
.ws16{word-spacing:-12.720000pt;}
.wse{word-spacing:-12.646400pt;}
.ws18{word-spacing:-12.323733pt;}
.ws6{word-spacing:-12.160000pt;}
.ws3{word-spacing:-12.116480pt;}
.ws19{word-spacing:-11.881067pt;}
.ws0{word-spacing:-11.717333pt;}
.ws14{word-spacing:-11.440000pt;}
.ws17{word-spacing:-11.045333pt;}
.ws15{word-spacing:-10.880000pt;}
.ws1a{word-spacing:-10.437333pt;}
.wsa{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.655360pt;}
.ws7{word-spacing:-8.640000pt;}
.wsb{word-spacing:-8.000000pt;}
.ws4{word-spacing:0.000000pt;}
._1e{margin-left:-4.527787pt;}
._10{margin-left:-3.512320pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._c{width:3.509760pt;}
._8{width:5.015040pt;}
._7{width:6.558720pt;}
._9{width:7.464960pt;}
._b{width:9.200640pt;}
._a{width:10.805760pt;}
._f{width:12.526080pt;}
._13{width:14.430720pt;}
._12{width:15.390720pt;}
._e{width:16.465920pt;}
._d{width:17.472000pt;}
._1f{width:18.439680pt;}
._1b{width:19.353600pt;}
._1c{width:20.590080pt;}
._1d{width:21.826560pt;}
._1a{width:23.168000pt;}
._16{width:24.360960pt;}
._14{width:25.374720pt;}
._15{width:26.995200pt;}
._20{width:28.010667pt;}
._18{width:106.959787pt;}
._11{width:135.414613pt;}
._19{width:176.000000pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._17{width:754.965333pt;}
._3{width:1414.378667pt;}
.fs9{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs2{font-size:48.640000pt;}
.fs5{font-size:51.200000pt;}
.fs0{font-size:53.760000pt;}
.fs7{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs6{font-size:80.640000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y6a{bottom:2.880000pt;}
.y77{bottom:15.040000pt;}
.y93{bottom:17.920000pt;}
.y90{bottom:18.240000pt;}
.y2d{bottom:18.880000pt;}
.y96{bottom:33.600000pt;}
.ye{bottom:38.720000pt;}
.y2c{bottom:52.506667pt;}
.yc{bottom:60.800000pt;}
.y2b{bottom:70.106667pt;}
.ya{bottom:84.192000pt;}
.y2a{bottom:87.706667pt;}
.y29{bottom:105.306667pt;}
.y3a{bottom:116.512000pt;}
.yc0{bottom:117.472000pt;}
.y39{bottom:121.312000pt;}
.y28{bottom:122.906667pt;}
.y137{bottom:132.512000pt;}
.y38{bottom:132.832000pt;}
.yd6{bottom:133.466667pt;}
.y5d{bottom:135.386667pt;}
.y157{bottom:135.706667pt;}
.y10b{bottom:137.306667pt;}
.y37{bottom:137.626667pt;}
.y27{bottom:140.506667pt;}
.yed{bottom:142.426667pt;}
.y36{bottom:149.146667pt;}
.ye1{bottom:149.466667pt;}
.y11e{bottom:153.306667pt;}
.y35{bottom:153.946667pt;}
.y136{bottom:155.546667pt;}
.y26{bottom:158.106667pt;}
.y5c{bottom:158.426667pt;}
.y10a{bottom:160.346667pt;}
.ybf{bottom:163.226667pt;}
.y34{bottom:165.466667pt;}
.y156{bottom:166.746667pt;}
.y33{bottom:170.266667pt;}
.y86{bottom:171.866667pt;}
.yd5{bottom:172.506667pt;}
.y25{bottom:175.746667pt;}
.y11d{bottom:176.386667pt;}
.ya4{bottom:177.986667pt;}
.y135{bottom:178.306667pt;}
.y5b{bottom:181.506667pt;}
.y32{bottom:181.826667pt;}
.y101{bottom:183.426667pt;}
.ybe{bottom:186.306667pt;}
.y31{bottom:186.626667pt;}
.ye0{bottom:188.546667pt;}
.y24{bottom:193.346667pt;}
.yd4{bottom:195.266667pt;}
.y30{bottom:198.146667pt;}
.y11c{bottom:199.426667pt;}
.y155{bottom:200.386667pt;}
.y85{bottom:201.026667pt;}
.y134{bottom:201.346667pt;}
.y2f{bottom:202.946667pt;}
.y5a{bottom:204.546667pt;}
.y100{bottom:206.466667pt;}
.ybd{bottom:209.346667pt;}
.y23{bottom:211.266667pt;}
.y2e{bottom:213.826667pt;}
.y84{bottom:217.026667pt;}
.yd3{bottom:218.306667pt;}
.y154{bottom:219.586667pt;}
.y11b{bottom:222.466667pt;}
.y133{bottom:224.386667pt;}
.y22{bottom:228.866667pt;}
.yff{bottom:229.506667pt;}
.y83{bottom:233.026667pt;}
.ydf{bottom:234.306667pt;}
.ya3{bottom:240.066667pt;}
.y20{bottom:241.026667pt;}
.yd2{bottom:241.346667pt;}
.y59{bottom:243.266667pt;}
.y11a{bottom:245.506667pt;}
.y153{bottom:246.146667pt;}
.y132{bottom:247.426667pt;}
.ybc{bottom:248.386667pt;}
.y82{bottom:249.026667pt;}
.yfe{bottom:252.546667pt;}
.yde{bottom:257.346667pt;}
.y21{bottom:260.226667pt;}
.ya2{bottom:263.106667pt;}
.yd1{bottom:264.386667pt;}
.y81{bottom:265.026667pt;}
.y58{bottom:266.306667pt;}
.y109{bottom:268.546667pt;}
.y131{bottom:270.466667pt;}
.y152{bottom:272.386667pt;}
.yfd{bottom:275.266667pt;}
.ydd{bottom:280.386667pt;}
.y80{bottom:281.026667pt;}
.ya1{bottom:286.146667pt;}
.ybb{bottom:287.453333pt;}
.y57{bottom:289.373333pt;}
.y108{bottom:291.293333pt;}
.y130{bottom:293.533333pt;}
.yec{bottom:296.413333pt;}
.y7f{bottom:297.053333pt;}
.yfc{bottom:298.333333pt;}
.y151{bottom:298.973333pt;}
.yd0{bottom:303.453333pt;}
.yba{bottom:310.493333pt;}
.y56{bottom:312.413333pt;}
.y7e{bottom:313.053333pt;}
.y107{bottom:314.333333pt;}
.y12f{bottom:316.573333pt;}
.ya0{bottom:325.213333pt;}
.ydc{bottom:326.493333pt;}
.y7d{bottom:329.053333pt;}
.y119{bottom:330.333333pt;}
.y150{bottom:332.893333pt;}
.yb9{bottom:333.533333pt;}
.yeb{bottom:335.453333pt;}
.yfb{bottom:337.373333pt;}
.y12e{bottom:339.293333pt;}
.ycf{bottom:342.493333pt;}
.y7c{bottom:345.053333pt;}
.y55{bottom:351.453333pt;}
.y14f{bottom:351.773333pt;}
.y118{bottom:353.373333pt;}
.yb8{bottom:356.573333pt;}
.yfa{bottom:360.413333pt;}
.y7b{bottom:361.053333pt;}
.y12d{bottom:362.333333pt;}
.y9f{bottom:364.253333pt;}
.yce{bottom:365.533333pt;}
.y54{bottom:374.493333pt;}
.y117{bottom:376.413333pt;}
.y7a{bottom:377.053333pt;}
.yb7{bottom:379.293333pt;}
.yf9{bottom:383.453333pt;}
.y12c{bottom:385.373333pt;}
.y14e{bottom:385.693333pt;}
.y9e{bottom:386.973333pt;}
.ycd{bottom:388.573333pt;}
.y79{bottom:393.053333pt;}
.yea{bottom:397.533333pt;}
.y116{bottom:399.493333pt;}
.ydb{bottom:404.613333pt;}
.y14d{bottom:404.933333pt;}
.yf8{bottom:406.533333pt;}
.y12b{bottom:408.453333pt;}
.y78{bottom:409.093333pt;}
.y9d{bottom:410.053333pt;}
.ycc{bottom:411.333333pt;}
.y53{bottom:413.573333pt;}
.yb6{bottom:418.373333pt;}
.y173{bottom:419.653333pt;}
.ye9{bottom:420.613333pt;}
.y106{bottom:422.533333pt;}
.y76{bottom:425.093333pt;}
.yda{bottom:427.333333pt;}
.yf7{bottom:429.573333pt;}
.y14c{bottom:431.173333pt;}
.y12a{bottom:431.493333pt;}
.y9c{bottom:433.093333pt;}
.y52{bottom:436.613333pt;}
.y115{bottom:438.533333pt;}
.y75{bottom:441.093333pt;}
.y172{bottom:441.733333pt;}
.ye8{bottom:443.333333pt;}
.y105{bottom:445.573333pt;}
.ycb{bottom:450.373333pt;}
.y129{bottom:454.533333pt;}
.y171{bottom:454.853333pt;}
.y9b{bottom:456.133333pt;}
.y74{bottom:457.093333pt;}
.yb5{bottom:457.413333pt;}
.y51{bottom:459.333333pt;}
.y114{bottom:461.573333pt;}
.y14b{bottom:465.093333pt;}
.ye7{bottom:466.373333pt;}
.yf6{bottom:468.613333pt;}
.y73{bottom:473.093333pt;}
.yd9{bottom:473.413333pt;}
.y170{bottom:476.613333pt;}
.y128{bottom:477.573333pt;}
.y9a{bottom:479.173333pt;}
.y50{bottom:482.373333pt;}
.y14a{bottom:484.293333pt;}
.y113{bottom:484.613333pt;}
.y72{bottom:489.093333pt;}
.yca{bottom:489.413333pt;}
.y16f{bottom:489.733333pt;}
.yf5{bottom:491.333333pt;}
.yb4{bottom:496.453333pt;}
.y127{bottom:500.613333pt;}
.y99{bottom:502.213333pt;}
.y71{bottom:505.093333pt;}
.y112{bottom:507.333333pt;}
.y16e{bottom:511.840000pt;}
.yc9{bottom:512.480000pt;}
.yf4{bottom:514.400000pt;}
.y149{bottom:517.920000pt;}
.yb3{bottom:519.520000pt;}
.y70{bottom:521.120000pt;}
.y4f{bottom:521.440000pt;}
.y126{bottom:523.360000pt;}
.y16d{bottom:524.960000pt;}
.y98{bottom:525.280000pt;}
.ye6{bottom:528.480000pt;}
.y111{bottom:530.400000pt;}
.yc8{bottom:535.520000pt;}
.y6f{bottom:537.120000pt;}
.yf3{bottom:537.440000pt;}
.yb2{bottom:542.560000pt;}
.y4e{bottom:544.480000pt;}
.y16c{bottom:546.720000pt;}
.y1f{bottom:550.560000pt;}
.y6e{bottom:553.120000pt;}
.y97{bottom:554.400000pt;}
.yc7{bottom:558.560000pt;}
.y16b{bottom:560.160000pt;}
.yf2{bottom:560.480000pt;}
.y125{bottom:562.400000pt;}
.y148{bottom:563.360000pt;}
.yb1{bottom:565.600000pt;}
.y4d{bottom:567.520000pt;}
.y6d{bottom:569.120000pt;}
.y110{bottom:569.440000pt;}
.y95{bottom:570.400000pt;}
.y1e{bottom:581.920000pt;}
.y104{bottom:583.520000pt;}
.y6c{bottom:585.120000pt;}
.y124{bottom:585.440000pt;}
.y147{bottom:589.920000pt;}
.y10f{bottom:592.480000pt;}
.y16a{bottom:595.040000pt;}
.yc6{bottom:597.600000pt;}
.yf1{bottom:599.520000pt;}
.y6b{bottom:601.120000pt;}
.yb0{bottom:604.320000pt;}
.y4c{bottom:606.560000pt;}
.y123{bottom:608.480000pt;}
.y1c{bottom:615.520000pt;}
.y69{bottom:616.800000pt;}
.y94{bottom:617.120000pt;}
.yd8{bottom:620.320000pt;}
.y1d{bottom:620.960000pt;}
.yf0{bottom:622.560000pt;}
.y146{bottom:623.866667pt;}
.ye5{bottom:629.626667pt;}
.y169{bottom:630.266667pt;}
.y122{bottom:631.546667pt;}
.y1a{bottom:633.146667pt;}
.yc5{bottom:636.346667pt;}
.y1b{bottom:638.586667pt;}
.y145{bottom:642.746667pt;}
.yaf{bottom:643.386667pt;}
.y4b{bottom:645.626667pt;}
.y92{bottom:649.146667pt;}
.y18{bottom:650.746667pt;}
.y168{bottom:652.026667pt;}
.ye4{bottom:652.346667pt;}
.y121{bottom:654.586667pt;}
.y19{bottom:656.186667pt;}
.y68{bottom:659.386667pt;}
.y10e{bottom:661.626667pt;}
.y167{bottom:665.146667pt;}
.yae{bottom:666.426667pt;}
.y16{bottom:668.346667pt;}
.y17{bottom:673.786667pt;}
.yc4{bottom:675.386667pt;}
.y144{bottom:676.666667pt;}
.y120{bottom:677.626667pt;}
.y91{bottom:680.186667pt;}
.y10d{bottom:684.346667pt;}
.y14{bottom:685.946667pt;}
.y166{bottom:687.226667pt;}
.yad{bottom:689.466667pt;}
.y15{bottom:691.386667pt;}
.y143{bottom:695.866667pt;}
.y67{bottom:698.426667pt;}
.y11f{bottom:700.346667pt;}
.y12{bottom:703.546667pt;}
.y4a{bottom:707.386667pt;}
.y13{bottom:708.986667pt;}
.y8f{bottom:711.546667pt;}
.yac{bottom:712.506667pt;}
.yef{bottom:714.426667pt;}
.yc3{bottom:721.466667pt;}
.y142{bottom:722.106667pt;}
.y10c{bottom:723.386667pt;}
.yd7{bottom:728.506667pt;}
.y138{bottom:730.426667pt;}
.y66{bottom:737.506667pt;}
.y11{bottom:742.626667pt;}
.y165{bottom:743.586667pt;}
.yc2{bottom:744.546667pt;}
.y49{bottom:746.466667pt;}
.y141{bottom:748.706667pt;}
.yab{bottom:751.586667pt;}
.yee{bottom:753.506667pt;}
.y164{bottom:756.706667pt;}
.y65{bottom:760.546667pt;}
.yc1{bottom:767.586667pt;}
.y48{bottom:769.506667pt;}
.y10{bottom:773.986667pt;}
.y140{bottom:775.266667pt;}
.y103{bottom:776.546667pt;}
.y163{bottom:778.466667pt;}
.y64{bottom:783.586667pt;}
.yaa{bottom:790.626667pt;}
.y162{bottom:791.906667pt;}
.y47{bottom:792.546667pt;}
.y102{bottom:799.586667pt;}
.yf{bottom:805.346667pt;}
.y63{bottom:806.626667pt;}
.y8e{bottom:808.546667pt;}
.y13f{bottom:808.866667pt;}
.y161{bottom:813.666667pt;}
.y46{bottom:815.586667pt;}
.ye3{bottom:822.626667pt;}
.y13e{bottom:828.066667pt;}
.ya9{bottom:829.666667pt;}
.y8d{bottom:831.586667pt;}
.y160{bottom:834.786667pt;}
.y9{bottom:836.706667pt;}
.y45{bottom:838.626667pt;}
.y62{bottom:845.666667pt;}
.y13d{bottom:851.773333pt;}
.y8{bottom:852.093333pt;}
.ya8{bottom:852.413333pt;}
.y8c{bottom:854.653333pt;}
.y15f{bottom:857.853333pt;}
.y44{bottom:861.693333pt;}
.y7{bottom:864.573333pt;}
.y61{bottom:868.413333pt;}
.y13c{bottom:869.373333pt;}
.ya7{bottom:875.453333pt;}
.y8b{bottom:877.693333pt;}
.y15e{bottom:880.253333pt;}
.y43{bottom:884.413333pt;}
.y60{bottom:891.453333pt;}
.ya6{bottom:898.493333pt;}
.y8a{bottom:900.413333pt;}
.y15d{bottom:903.933333pt;}
.y42{bottom:907.453333pt;}
.y6{bottom:913.213333pt;}
.y5f{bottom:914.493333pt;}
.y13b{bottom:918.013333pt;}
.y89{bottom:923.453333pt;}
.y15c{bottom:926.973333pt;}
.y41{bottom:930.493333pt;}
.y5{bottom:935.293333pt;}
.ya5{bottom:937.533333pt;}
.y13a{bottom:944.573333pt;}
.y88{bottom:946.493333pt;}
.y15b{bottom:949.373333pt;}
.y4{bottom:953.533333pt;}
.y87{bottom:969.573333pt;}
.y3{bottom:972.453333pt;}
.y15a{bottom:973.093333pt;}
.y40{bottom:976.613333pt;}
.y139{bottom:976.933333pt;}
.y2{bottom:990.693333pt;}
.y5e{bottom:992.613333pt;}
.y159{bottom:996.133333pt;}
.y1{bottom:1005.733333pt;}
.ye2{bottom:1015.333333pt;}
.y3f{bottom:1015.653333pt;}
.y158{bottom:1017.573333pt;}
.y3e{bottom:1036.773333pt;}
.y3d{bottom:1049.253333pt;}
.y3c{bottom:1067.813333pt;}
.y3b{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.hf{height:15.040000pt;}
.h10{height:15.072000pt;}
.h11{height:15.360000pt;}
.he{height:15.392000pt;}
.h15{height:30.400000pt;}
.h9{height:30.695625pt;}
.h13{height:30.720000pt;}
.h12{height:30.752000pt;}
.hb{height:34.374375pt;}
.h17{height:36.408750pt;}
.h5{height:40.090000pt;}
.h7{height:42.678750pt;}
.h1b{height:43.201250pt;}
.h14{height:44.310000pt;}
.h19{height:44.925000pt;}
.h1e{height:45.061875pt;}
.h1c{height:45.475000pt;}
.h16{height:45.760000pt;}
.h4{height:47.171250pt;}
.h2{height:47.748750pt;}
.h1d{height:48.035000pt;}
.hd{height:49.524375pt;}
.hc{height:53.471250pt;}
.h3{height:56.843750pt;}
.h18{height:65.938750pt;}
.h1a{height:74.365000pt;}
.ha{height:288.733333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:63.712000pt;}
.wc{width:95.392000pt;}
.w9{width:200.733333pt;}
.wa{width:201.026667pt;}
.w8{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w7{width:303.493333pt;}
.wb{width:443.386667pt;}
.w6{width:604.413333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x26{left:6.720000pt;}
.x9{left:7.680000pt;}
.x7{left:94.431988pt;}
.x20{left:98.911988pt;}
.x23{left:118.463988pt;}
.x29{left:142.466655pt;}
.xb{left:158.786655pt;}
.x21{left:160.706655pt;}
.x2{left:226.013322pt;}
.x6{left:243.613322pt;}
.xa{left:270.533333pt;}
.x1b{left:284.933322pt;}
.x1f{left:286.533322pt;}
.x24{left:296.453333pt;}
.x10{left:307.653322pt;}
.x16{left:312.773322pt;}
.x5{left:316.293322pt;}
.x18{left:325.573322pt;}
.x1e{left:328.773322pt;}
.xc{left:334.533322pt;}
.x13{left:336.453322pt;}
.x4{left:337.733322pt;}
.xd{left:338.693322pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.x22{left:397.920000pt;}
.xe{left:450.426643pt;}
.x14{left:452.666643pt;}
.xf{left:454.906655pt;}
.x15{left:457.146655pt;}
.x19{left:463.546643pt;}
.x1a{left:468.026655pt;}
.x17{left:476.666643pt;}
.x11{left:481.466643pt;}
.x12{left:485.946655pt;}
.x25{left:498.106667pt;}
.x1c{left:504.506643pt;}
.x1d{left:508.986655pt;}
.x27{left:539.106667pt;}
.x28{left:635.133333pt;}
.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; }
  