
    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_e0e77e13405f48035ab069b3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_5011ef06e6d65b8b4f39faf0.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_b6508771dde45aef232d2579.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a285752df9508f954dd1afe9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937012;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_752a73fb91a1877d97c93d0a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_87e99e71eda595896ff00f2f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.118652;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_216efedfee89470361034fbb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.118652;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c7c4c51c53a8f9ffd237b860.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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:ffc;src:url('chunks/assets/font_eeb536d42e6bc7fcb0f7663d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b9321b2e0f26ce8561ee23c3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.095703;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:ffe;src:url('chunks/assets/font_92c86a81a005977b09b3c643.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.095703;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);}
.v1{vertical-align:-93.600000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls8{letter-spacing:-1.440000px;}
.lse{letter-spacing:-1.206000px;}
.lsc{letter-spacing:-1.068000px;}
.lsf{letter-spacing:-0.966000px;}
.lsd{letter-spacing:-0.768000px;}
.ls10{letter-spacing:-0.732000px;}
.ls19{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.463800px;}
.ls17{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.454800px;}
.lsa{letter-spacing:-0.432000px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.152400px;}
.ls9{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.429000px;}
.ls1{letter-spacing:0.535680px;}
.ls0{letter-spacing:0.593280px;}
.ls11{letter-spacing:0.708000px;}
.ls12{letter-spacing:0.720000px;}
.ls2{letter-spacing:20.880000px;}
.ls16{letter-spacing:63.838560px;}
.ls3{letter-spacing:144.461280px;}
.ls14{letter-spacing:155.837280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14{word-spacing:-60.480000px;}
.ws15{word-spacing:-18.000000px;}
.ws16{word-spacing:-16.865400px;}
.ws13{word-spacing:-16.712400px;}
.ws8{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.488000px;}
.ws10{word-spacing:-15.948000px;}
.ws6{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.768000px;}
.ws0{word-spacing:-15.399240px;}
.ws11{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.515440px;}
.ws2{word-spacing:-14.506440px;}
.ws3{word-spacing:-13.680000px;}
.wsf{word-spacing:-13.074720px;}
.wse{word-spacing:-12.366720px;}
.ws4{word-spacing:-12.240000px;}
.wsd{word-spacing:-11.634720px;}
.wsa{word-spacing:-11.598720px;}
.wsc{word-spacing:-11.400720px;}
.ws9{word-spacing:-11.298720px;}
.wsb{word-spacing:-11.160720px;}
.ws12{word-spacing:0.000000px;}
._12{margin-left:-4.129920px;}
._3{margin-left:-2.931840px;}
._0{margin-left:-1.483200px;}
._1{width:1.112880px;}
._4{width:2.202960px;}
._a{width:3.297600px;}
._8{width:4.570560px;}
._9{width:5.846400px;}
._7{width:7.470720px;}
._5{width:8.677440px;}
._6{width:9.855360px;}
._13{width:10.942560px;}
._2{width:12.068640px;}
._11{width:13.406400px;}
._10{width:14.509440px;}
._b{width:18.241920px;}
._26{width:20.335680px;}
._37{width:21.729600px;}
._15{width:23.117760px;}
._14{width:24.203520px;}
._38{width:25.225920px;}
._16{width:26.256960px;}
._17{width:27.439440px;}
._18{width:29.767680px;}
._f{width:31.357440px;}
._e{width:32.364240px;}
._c{width:33.538080px;}
._d{width:34.716960px;}
._19{width:37.609920px;}
._2b{width:39.769920px;}
._33{width:42.750720px;}
._32{width:44.115840px;}
._31{width:45.838080px;}
._30{width:47.891520px;}
._1e{width:49.639680px;}
._1a{width:53.455680px;}
._1b{width:54.797760px;}
._2c{width:59.708160px;}
._29{width:61.669440px;}
._2a{width:63.112320px;}
._2f{width:72.889920px;}
._1d{width:80.507520px;}
._2e{width:81.672720px;}
._24{width:83.926080px;}
._25{width:85.847040px;}
._27{width:97.836480px;}
._28{width:98.922240px;}
._21{width:137.116800px;}
._20{width:138.309120px;}
._34{width:144.959040px;}
._2d{width:152.179200px;}
._1c{width:212.921280px;}
._1f{width:263.793600px;}
._22{width:276.246720px;}
._35{width:309.804480px;}
._23{width:333.743040px;}
._36{width:1059.508800px;}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(46,116,181);}
.fc5{color:transparent;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(192,0,0);}
.fs4{font-size:30.240000px;}
.fs6{font-size:41.760000px;}
.fs1{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.ybf{bottom:3.600000px;}
.yc5{bottom:3.630000px;}
.y4{bottom:4.320000px;}
.y2{bottom:5.040000px;}
.y143{bottom:22.320000px;}
.y149{bottom:22.680000px;}
.y14d{bottom:41.400000px;}
.y150{bottom:41.430000px;}
.y148{bottom:41.760000px;}
.y14c{bottom:60.480000px;}
.y14f{bottom:60.510000px;}
.y147{bottom:60.840000px;}
.y146{bottom:79.560000px;}
.y14b{bottom:79.605000px;}
.y3{bottom:82.116000px;}
.y6{bottom:97.596000px;}
.y145{bottom:98.640000px;}
.y173{bottom:113.076000px;}
.ydb{bottom:116.676000px;}
.y90{bottom:120.636000px;}
.y37{bottom:121.716000px;}
.y11d{bottom:123.516000px;}
.y65{bottom:124.236000px;}
.y172{bottom:132.156000px;}
.y15d{bottom:132.876000px;}
.yb4{bottom:133.596000px;}
.yda{bottom:135.756000px;}
.y8f{bottom:139.356000px;}
.y36{bottom:141.876000px;}
.y11c{bottom:142.596000px;}
.y64{bottom:144.756000px;}
.y15c{bottom:151.950000px;}
.yb3{bottom:152.670000px;}
.yd9{bottom:154.470000px;}
.y18b{bottom:155.550000px;}
.y35{bottom:161.310000px;}
.y11b{bottom:161.670000px;}
.y15b{bottom:170.670000px;}
.y171{bottom:171.750000px;}
.yd8{bottom:173.550000px;}
.y8e{bottom:179.310000px;}
.y34{bottom:180.030000px;}
.y11a{bottom:180.390000px;}
.y63{bottom:185.790000px;}
.y140{bottom:191.910000px;}
.yb2{bottom:192.630000px;}
.y18a{bottom:195.510000px;}
.y8d{bottom:198.435000px;}
.y33{bottom:199.155000px;}
.y119{bottom:199.515000px;}
.y62{bottom:204.915000px;}
.y15a{bottom:210.675000px;}
.y13f{bottom:211.035000px;}
.yd7{bottom:211.395000px;}
.yb1{bottom:211.755000px;}
.y8c{bottom:217.515000px;}
.y32{bottom:218.235000px;}
.y118{bottom:218.595000px;}
.y61{bottom:223.995000px;}
.y13e{bottom:229.755000px;}
.yd6{bottom:230.475000px;}
.yb0{bottom:230.835000px;}
.y189{bottom:235.515000px;}
.y8b{bottom:236.595000px;}
.y31{bottom:236.955000px;}
.y117{bottom:237.315000px;}
.y60{bottom:243.075000px;}
.y13d{bottom:248.835000px;}
.y100{bottom:249.195000px;}
.yd5{bottom:249.555000px;}
.y170{bottom:249.915000px;}
.y159{bottom:250.635000px;}
.y8a{bottom:255.315000px;}
.y30{bottom:256.035000px;}
.y116{bottom:256.395000px;}
.y5f{bottom:262.155000px;}
.y13c{bottom:267.915000px;}
.yd4{bottom:268.275000px;}
.yaf{bottom:270.795000px;}
.y2f{bottom:275.115000px;}
.y115{bottom:275.475000px;}
.yff{bottom:286.995000px;}
.yd3{bottom:287.355000px;}
.yae{bottom:289.875000px;}
.y158{bottom:290.595000px;}
.y2e{bottom:293.835000px;}
.y114{bottom:294.555000px;}
.y89{bottom:295.275000px;}
.y5e{bottom:301.755000px;}
.yfe{bottom:306.075000px;}
.y13b{bottom:307.875000px;}
.y157{bottom:309.675000px;}
.y2d{bottom:312.915000px;}
.y113{bottom:313.275000px;}
.y88{bottom:314.355000px;}
.y5d{bottom:320.835000px;}
.yfd{bottom:325.185000px;}
.yd2{bottom:327.705000px;}
.y156{bottom:328.785000px;}
.yad{bottom:329.505000px;}
.y16f{bottom:329.865000px;}
.y2c{bottom:332.025000px;}
.y112{bottom:332.385000px;}
.y87{bottom:333.465000px;}
.y188{bottom:334.545000px;}
.y5c{bottom:339.945000px;}
.yfc{bottom:344.265000px;}
.y155{bottom:347.505000px;}
.y13a{bottom:347.865000px;}
.yd1{bottom:348.585000px;}
.y16e{bottom:348.945000px;}
.y2b{bottom:351.105000px;}
.y111{bottom:351.465000px;}
.y86{bottom:352.185000px;}
.y187{bottom:353.625000px;}
.y5b{bottom:359.025000px;}
.yfb{bottom:362.985000px;}
.y154{bottom:366.585000px;}
.y139{bottom:366.945000px;}
.y16d{bottom:368.025000px;}
.yac{bottom:369.465000px;}
.y2a{bottom:369.825000px;}
.y110{bottom:370.185000px;}
.y85{bottom:371.265000px;}
.y5a{bottom:377.745000px;}
.yfa{bottom:382.065000px;}
.y138{bottom:385.665000px;}
.y16c{bottom:386.745000px;}
.yab{bottom:388.545000px;}
.y29{bottom:388.905000px;}
.y10f{bottom:389.265000px;}
.yd0{bottom:389.985000px;}
.y186{bottom:393.585000px;}
.y59{bottom:396.825000px;}
.yf9{bottom:401.145000px;}
.y137{bottom:404.745000px;}
.yaa{bottom:407.625000px;}
.y28{bottom:407.985000px;}
.y10e{bottom:408.345000px;}
.y84{bottom:411.225000px;}
.y58{bottom:415.905000px;}
.yf8{bottom:419.865000px;}
.y136{bottom:423.825000px;}
.y27{bottom:426.705000px;}
.y10d{bottom:427.065000px;}
.y19d{bottom:429.585000px;}
.y83{bottom:430.305000px;}
.ycf{bottom:431.385000px;}
.y185{bottom:433.545000px;}
.y57{bottom:434.985000px;}
.yf7{bottom:438.945000px;}
.y153{bottom:444.705000px;}
.y26{bottom:445.785000px;}
.y10c{bottom:446.145000px;}
.ya9{bottom:447.585000px;}
.y82{bottom:449.430000px;}
.yce{bottom:452.670000px;}
.yf6{bottom:458.070000px;}
.y135{bottom:463.830000px;}
.y25{bottom:464.910000px;}
.y10b{bottom:465.270000px;}
.y16b{bottom:466.710000px;}
.y81{bottom:468.150000px;}
.y19c{bottom:469.590000px;}
.ycd{bottom:473.190000px;}
.y184{bottom:473.550000px;}
.y56{bottom:474.630000px;}
.yf5{bottom:476.790000px;}
.y152{bottom:481.830000px;}
.y24{bottom:483.990000px;}
.y10a{bottom:484.350000px;}
.y16a{bottom:485.790000px;}
.y80{bottom:487.230000px;}
.ya8{bottom:487.590000px;}
.y19b{bottom:488.670000px;}
.y183{bottom:492.630000px;}
.y55{bottom:493.710000px;}
.ycc{bottom:494.070000px;}
.yf4{bottom:495.870000px;}
.y23{bottom:502.710000px;}
.y109{bottom:503.070000px;}
.y134{bottom:503.430000px;}
.y169{bottom:504.870000px;}
.ya7{bottom:506.670000px;}
.y54{bottom:512.790000px;}
.yf3{bottom:514.950000px;}
.y22{bottom:521.790000px;}
.y108{bottom:522.150000px;}
.y133{bottom:522.510000px;}
.y168{bottom:523.590000px;}
.y7f{bottom:527.190000px;}
.y19a{bottom:528.270000px;}
.y53{bottom:531.870000px;}
.y182{bottom:532.590000px;}
.yf2{bottom:534.030000px;}
.ycb{bottom:535.110000px;}
.y21{bottom:540.870000px;}
.y107{bottom:541.230000px;}
.y132{bottom:541.590000px;}
.y167{bottom:542.670000px;}
.y7e{bottom:546.270000px;}
.y199{bottom:547.350000px;}
.ya6{bottom:548.070000px;}
.y52{bottom:550.590000px;}
.y181{bottom:551.670000px;}
.yf1{bottom:552.750000px;}
.yca{bottom:556.350000px;}
.y20{bottom:559.590000px;}
.y106{bottom:559.950000px;}
.y131{bottom:560.670000px;}
.y166{bottom:561.750000px;}
.y7d{bottom:564.990000px;}
.y51{bottom:569.670000px;}
.yf0{bottom:571.830000px;}
.yc9{bottom:576.900000px;}
.y151{bottom:577.260000px;}
.y1f{bottom:578.700000px;}
.y105{bottom:579.060000px;}
.y130{bottom:579.780000px;}
.y7c{bottom:584.100000px;}
.y198{bottom:587.340000px;}
.ya5{bottom:588.060000px;}
.y50{bottom:588.780000px;}
.yef{bottom:590.940000px;}
.y180{bottom:591.300000px;}
.y1e{bottom:597.780000px;}
.y104{bottom:598.140000px;}
.y165{bottom:601.740000px;}
.y7b{bottom:603.180000px;}
.ya4{bottom:607.140000px;}
.y4f{bottom:607.860000px;}
.yee{bottom:609.660000px;}
.y1d{bottom:616.500000px;}
.y103{bottom:616.860000px;}
.yc8{bottom:618.300000px;}
.y12f{bottom:619.740000px;}
.ya3{bottom:626.220000px;}
.y197{bottom:627.300000px;}
.yed{bottom:628.740000px;}
.y17f{bottom:631.260000px;}
.y1c{bottom:635.580000px;}
.y102{bottom:635.940000px;}
.yc7{bottom:639.540000px;}
.y164{bottom:641.700000px;}
.y7a{bottom:643.140000px;}
.y196{bottom:646.380000px;}
.y4e{bottom:647.460000px;}
.yec{bottom:647.820000px;}
.y101{bottom:651.420000px;}
.y1b{bottom:654.660000px;}
.y12e{bottom:659.340000px;}
.yc6{bottom:660.060000px;}
.ya2{bottom:665.820000px;}
.y4d{bottom:666.540000px;}
.y17e{bottom:671.220000px;}
.y14e{bottom:673.020000px;}
.y12d{bottom:678.420000px;}
.y163{bottom:681.660000px;}
.y79{bottom:683.100000px;}
.ya1{bottom:684.900000px;}
.y4c{bottom:685.620000px;}
.y195{bottom:686.340000px;}
.y1a{bottom:688.500000px;}
.y17d{bottom:690.300000px;}
.y12c{bottom:697.500000px;}
.yc4{bottom:698.580000px;}
.ya0{bottom:704.010000px;}
.y78{bottom:704.370000px;}
.y4b{bottom:704.730000px;}
.y194{bottom:705.450000px;}
.y19{bottom:707.610000px;}
.y12b{bottom:716.610000px;}
.yc3{bottom:718.050000px;}
.y162{bottom:721.650000px;}
.y4a{bottom:723.450000px;}
.yeb{bottom:723.810000px;}
.y77{bottom:724.890000px;}
.y18{bottom:726.690000px;}
.y17c{bottom:730.290000px;}
.y12a{bottom:735.330000px;}
.yc2{bottom:737.850000px;}
.y161{bottom:740.730000px;}
.y49{bottom:742.530000px;}
.y9f{bottom:745.410000px;}
.y76{bottom:745.770000px;}
.y17{bottom:747.930000px;}
.y14a{bottom:749.730000px;}
.y129{bottom:754.410000px;}
.yc1{bottom:757.650000px;}
.y160{bottom:759.450000px;}
.y48{bottom:761.610000px;}
.y193{bottom:764.490000px;}
.y75{bottom:766.290000px;}
.y17b{bottom:770.250000px;}
.y16{bottom:773.490000px;}
.yc0{bottom:777.450000px;}
.y15f{bottom:778.530000px;}
.y47{bottom:780.330000px;}
.yea{bottom:780.690000px;}
.y9e{bottom:785.370000px;}
.y74{bottom:787.170000px;}
.y17a{bottom:789.330000px;}
.y128{bottom:794.370000px;}
.ybe{bottom:797.250000px;}
.y15e{bottom:797.610000px;}
.y46{bottom:799.410000px;}
.y192{bottom:804.090000px;}
.y9d{bottom:804.450000px;}
.y73{bottom:807.690000px;}
.y127{bottom:813.450000px;}
.ye9{bottom:818.490000px;}
.y15{bottom:822.450000px;}
.y191{bottom:823.170000px;}
.y179{bottom:829.335000px;}
.y126{bottom:832.575000px;}
.ye8{bottom:837.615000px;}
.y45{bottom:839.415000px;}
.y14{bottom:841.575000px;}
.y9c{bottom:844.455000px;}
.y144{bottom:845.175000px;}
.y178{bottom:848.415000px;}
.y72{bottom:849.135000px;}
.y125{bottom:851.295000px;}
.ye7{bottom:856.695000px;}
.y44{bottom:858.495000px;}
.y13{bottom:860.295000px;}
.ybd{bottom:862.815000px;}
.y190{bottom:863.175000px;}
.y9b{bottom:863.535000px;}
.y71{bottom:870.375000px;}
.ye6{bottom:875.415000px;}
.y43{bottom:877.575000px;}
.y9a{bottom:882.255000px;}
.y177{bottom:888.375000px;}
.y124{bottom:889.455000px;}
.y70{bottom:890.895000px;}
.y12{bottom:891.255000px;}
.ye5{bottom:894.495000px;}
.y42{bottom:896.295000px;}
.y99{bottom:901.335000px;}
.y18f{bottom:903.135000px;}
.ybc{bottom:903.855000px;}
.y176{bottom:907.455000px;}
.y6f{bottom:911.775000px;}
.ye4{bottom:913.575000px;}
.y41{bottom:915.375000px;}
.y98{bottom:920.415000px;}
.ybb{bottom:922.935000px;}
.y175{bottom:926.175000px;}
.y123{bottom:929.415000px;}
.y6e{bottom:932.295000px;}
.y40{bottom:934.455000px;}
.y18e{bottom:943.095000px;}
.ye3{bottom:951.375000px;}
.y11{bottom:951.735000px;}
.y6d{bottom:953.205000px;}
.y142{bottom:960.045000px;}
.y97{bottom:961.845000px;}
.y18d{bottom:962.205000px;}
.y10{bottom:962.925000px;}
.yba{bottom:964.365000px;}
.y174{bottom:966.165000px;}
.y122{bottom:969.405000px;}
.ye2{bottom:970.485000px;}
.y6c{bottom:973.725000px;}
.y3f{bottom:974.445000px;}
.y96{bottom:985.245000px;}
.y121{bottom:988.485000px;}
.yf{bottom:989.205000px;}
.y3e{bottom:993.165000px;}
.y18c{bottom:1002.165000px;}
.yb9{bottom:1004.325000px;}
.y120{bottom:1007.205000px;}
.ye1{bottom:1008.285000px;}
.ye{bottom:1012.245000px;}
.y6b{bottom:1015.125000px;}
.y141{bottom:1023.045000px;}
.yb8{bottom:1023.405000px;}
.y95{bottom:1025.205000px;}
.y11f{bottom:1026.285000px;}
.ye0{bottom:1027.365000px;}
.y3d{bottom:1031.325000px;}
.yd{bottom:1034.205000px;}
.yb7{bottom:1042.125000px;}
.y94{bottom:1044.285000px;}
.ydf{bottom:1046.445000px;}
.y3c{bottom:1050.405000px;}
.yc{bottom:1056.165000px;}
.y6a{bottom:1056.885000px;}
.yb6{bottom:1061.205000px;}
.y93{bottom:1063.365000px;}
.yde{bottom:1065.165000px;}
.y11e{bottom:1066.245000px;}
.y3b{bottom:1069.125000px;}
.yb{bottom:1073.445000px;}
.y69{bottom:1077.765000px;}
.y92{bottom:1082.130000px;}
.ydd{bottom:1084.290000px;}
.y3a{bottom:1088.250000px;}
.ya{bottom:1090.770000px;}
.y68{bottom:1098.690000px;}
.yb5{bottom:1101.210000px;}
.ydc{bottom:1103.370000px;}
.y39{bottom:1107.330000px;}
.y9{bottom:1108.050000px;}
.y67{bottom:1119.210000px;}
.y91{bottom:1122.090000px;}
.y8{bottom:1125.330000px;}
.y66{bottom:1140.090000px;}
.y38{bottom:1141.170000px;}
.y7{bottom:1142.610000px;}
.y1{bottom:1188.330000px;}
.y5{bottom:1206.000000px;}
.h4{height:18.000000px;}
.h12{height:18.720000px;}
.h14{height:18.756000px;}
.h13{height:19.080000px;}
.h2{height:19.836000px;}
.ha{height:22.960547px;}
.h16{height:37.800000px;}
.h9{height:41.547656px;}
.hb{height:45.921094px;}
.h5{height:48.013594px;}
.h6{height:53.067656px;}
.hf{height:58.121719px;}
.h1b{height:58.283437px;}
.hc{height:58.833281px;}
.h10{height:63.175781px;}
.h15{height:63.351562px;}
.h11{height:63.949219px;}
.h8{height:65.884219px;}
.he{height:67.330547px;}
.h3{height:67.824844px;}
.h7{height:73.722656px;}
.h19{height:75.996000px;}
.hd{height:79.523438px;}
.h18{height:94.716000px;}
.h1a{height:95.040000px;}
.h17{height:114.156000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:37.800000px;}
.w7{width:135.396000px;}
.wa{width:139.356000px;}
.w3{width:142.632000px;}
.w8{width:148.392000px;}
.w6{width:151.275000px;}
.w9{width:186.195000px;}
.wb{width:203.475000px;}
.w2{width:558.930000px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.x5{left:4.680000px;}
.xf{left:7.920000px;}
.x3{left:104.796000px;}
.x6{left:106.235987px;}
.xd{left:133.235987px;}
.xb{left:135.035987px;}
.xe{left:160.274987px;}
.x1{left:167.115000px;}
.x7{left:218.954987px;}
.x12{left:256.065000px;}
.x10{left:258.945000px;}
.xc{left:272.984987px;}
.xa{left:283.784987px;}
.x9{left:350.069987px;}
.x8{left:386.069987px;}
.x13{left:442.980000px;}
.x15{left:446.579987px;}
.x14{left:583.050000px;}
.x4{left:755.565000px;}
.x11{left:783.644987px;}
@media print{
.v1{vertical-align:-83.200000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls8{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-1.072000pt;}
.lsc{letter-spacing:-0.949333pt;}
.lsf{letter-spacing:-0.858667pt;}
.lsd{letter-spacing:-0.682667pt;}
.ls10{letter-spacing:-0.650667pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls17{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.404267pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.135467pt;}
.ls9{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.381333pt;}
.ls1{letter-spacing:0.476160pt;}
.ls0{letter-spacing:0.527360pt;}
.ls11{letter-spacing:0.629333pt;}
.ls12{letter-spacing:0.640000pt;}
.ls2{letter-spacing:18.560000pt;}
.ls16{letter-spacing:56.745387pt;}
.ls3{letter-spacing:128.410027pt;}
.ls14{letter-spacing:138.522027pt;}
.ws14{word-spacing:-53.760000pt;}
.ws15{word-spacing:-16.000000pt;}
.ws16{word-spacing:-14.991467pt;}
.ws13{word-spacing:-14.855467pt;}
.ws8{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.656000pt;}
.ws10{word-spacing:-14.176000pt;}
.ws6{word-spacing:-14.080000pt;}
.ws7{word-spacing:-14.016000pt;}
.ws0{word-spacing:-13.688213pt;}
.ws11{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.902613pt;}
.ws2{word-spacing:-12.894613pt;}
.ws3{word-spacing:-12.160000pt;}
.wsf{word-spacing:-11.621973pt;}
.wse{word-spacing:-10.992640pt;}
.ws4{word-spacing:-10.880000pt;}
.wsd{word-spacing:-10.341973pt;}
.wsa{word-spacing:-10.309973pt;}
.wsc{word-spacing:-10.133973pt;}
.ws9{word-spacing:-10.043307pt;}
.wsb{word-spacing:-9.920640pt;}
.ws12{word-spacing:0.000000pt;}
._12{margin-left:-3.671040pt;}
._3{margin-left:-2.606080pt;}
._0{margin-left:-1.318400pt;}
._1{width:0.989227pt;}
._4{width:1.958187pt;}
._a{width:2.931200pt;}
._8{width:4.062720pt;}
._9{width:5.196800pt;}
._7{width:6.640640pt;}
._5{width:7.713280pt;}
._6{width:8.760320pt;}
._13{width:9.726720pt;}
._2{width:10.727680pt;}
._11{width:11.916800pt;}
._10{width:12.897280pt;}
._b{width:16.215040pt;}
._26{width:18.076160pt;}
._37{width:19.315200pt;}
._15{width:20.549120pt;}
._14{width:21.514240pt;}
._38{width:22.423040pt;}
._16{width:23.339520pt;}
._17{width:24.390613pt;}
._18{width:26.460160pt;}
._f{width:27.873280pt;}
._e{width:28.768213pt;}
._c{width:29.811627pt;}
._d{width:30.859520pt;}
._19{width:33.431040pt;}
._2b{width:35.351040pt;}
._33{width:38.000640pt;}
._32{width:39.214080pt;}
._31{width:40.744960pt;}
._30{width:42.570240pt;}
._1e{width:44.124160pt;}
._1a{width:47.516160pt;}
._1b{width:48.709120pt;}
._2c{width:53.073920pt;}
._29{width:54.817280pt;}
._2a{width:56.099840pt;}
._2f{width:64.791040pt;}
._1d{width:71.562240pt;}
._2e{width:72.597973pt;}
._24{width:74.600960pt;}
._25{width:76.308480pt;}
._27{width:86.965760pt;}
._28{width:87.930880pt;}
._21{width:121.881600pt;}
._20{width:122.941440pt;}
._34{width:128.852480pt;}
._2d{width:135.270400pt;}
._1c{width:189.263360pt;}
._1f{width:234.483200pt;}
._22{width:245.552640pt;}
._35{width:275.381760pt;}
._23{width:296.660480pt;}
._36{width:941.785600pt;}
.fs4{font-size:26.880000pt;}
.fs6{font-size:37.120000pt;}
.fs1{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.ybf{bottom:3.200000pt;}
.yc5{bottom:3.226667pt;}
.y4{bottom:3.840000pt;}
.y2{bottom:4.480000pt;}
.y143{bottom:19.840000pt;}
.y149{bottom:20.160000pt;}
.y14d{bottom:36.800000pt;}
.y150{bottom:36.826667pt;}
.y148{bottom:37.120000pt;}
.y14c{bottom:53.760000pt;}
.y14f{bottom:53.786667pt;}
.y147{bottom:54.080000pt;}
.y146{bottom:70.720000pt;}
.y14b{bottom:70.760000pt;}
.y3{bottom:72.992000pt;}
.y6{bottom:86.752000pt;}
.y145{bottom:87.680000pt;}
.y173{bottom:100.512000pt;}
.ydb{bottom:103.712000pt;}
.y90{bottom:107.232000pt;}
.y37{bottom:108.192000pt;}
.y11d{bottom:109.792000pt;}
.y65{bottom:110.432000pt;}
.y172{bottom:117.472000pt;}
.y15d{bottom:118.112000pt;}
.yb4{bottom:118.752000pt;}
.yda{bottom:120.672000pt;}
.y8f{bottom:123.872000pt;}
.y36{bottom:126.112000pt;}
.y11c{bottom:126.752000pt;}
.y64{bottom:128.672000pt;}
.y15c{bottom:135.066667pt;}
.yb3{bottom:135.706667pt;}
.yd9{bottom:137.306667pt;}
.y18b{bottom:138.266667pt;}
.y35{bottom:143.386667pt;}
.y11b{bottom:143.706667pt;}
.y15b{bottom:151.706667pt;}
.y171{bottom:152.666667pt;}
.yd8{bottom:154.266667pt;}
.y8e{bottom:159.386667pt;}
.y34{bottom:160.026667pt;}
.y11a{bottom:160.346667pt;}
.y63{bottom:165.146667pt;}
.y140{bottom:170.586667pt;}
.yb2{bottom:171.226667pt;}
.y18a{bottom:173.786667pt;}
.y8d{bottom:176.386667pt;}
.y33{bottom:177.026667pt;}
.y119{bottom:177.346667pt;}
.y62{bottom:182.146667pt;}
.y15a{bottom:187.266667pt;}
.y13f{bottom:187.586667pt;}
.yd7{bottom:187.906667pt;}
.yb1{bottom:188.226667pt;}
.y8c{bottom:193.346667pt;}
.y32{bottom:193.986667pt;}
.y118{bottom:194.306667pt;}
.y61{bottom:199.106667pt;}
.y13e{bottom:204.226667pt;}
.yd6{bottom:204.866667pt;}
.yb0{bottom:205.186667pt;}
.y189{bottom:209.346667pt;}
.y8b{bottom:210.306667pt;}
.y31{bottom:210.626667pt;}
.y117{bottom:210.946667pt;}
.y60{bottom:216.066667pt;}
.y13d{bottom:221.186667pt;}
.y100{bottom:221.506667pt;}
.yd5{bottom:221.826667pt;}
.y170{bottom:222.146667pt;}
.y159{bottom:222.786667pt;}
.y8a{bottom:226.946667pt;}
.y30{bottom:227.586667pt;}
.y116{bottom:227.906667pt;}
.y5f{bottom:233.026667pt;}
.y13c{bottom:238.146667pt;}
.yd4{bottom:238.466667pt;}
.yaf{bottom:240.706667pt;}
.y2f{bottom:244.546667pt;}
.y115{bottom:244.866667pt;}
.yff{bottom:255.106667pt;}
.yd3{bottom:255.426667pt;}
.yae{bottom:257.666667pt;}
.y158{bottom:258.306667pt;}
.y2e{bottom:261.186667pt;}
.y114{bottom:261.826667pt;}
.y89{bottom:262.466667pt;}
.y5e{bottom:268.226667pt;}
.yfe{bottom:272.066667pt;}
.y13b{bottom:273.666667pt;}
.y157{bottom:275.266667pt;}
.y2d{bottom:278.146667pt;}
.y113{bottom:278.466667pt;}
.y88{bottom:279.426667pt;}
.y5d{bottom:285.186667pt;}
.yfd{bottom:289.053333pt;}
.yd2{bottom:291.293333pt;}
.y156{bottom:292.253333pt;}
.yad{bottom:292.893333pt;}
.y16f{bottom:293.213333pt;}
.y2c{bottom:295.133333pt;}
.y112{bottom:295.453333pt;}
.y87{bottom:296.413333pt;}
.y188{bottom:297.373333pt;}
.y5c{bottom:302.173333pt;}
.yfc{bottom:306.013333pt;}
.y155{bottom:308.893333pt;}
.y13a{bottom:309.213333pt;}
.yd1{bottom:309.853333pt;}
.y16e{bottom:310.173333pt;}
.y2b{bottom:312.093333pt;}
.y111{bottom:312.413333pt;}
.y86{bottom:313.053333pt;}
.y187{bottom:314.333333pt;}
.y5b{bottom:319.133333pt;}
.yfb{bottom:322.653333pt;}
.y154{bottom:325.853333pt;}
.y139{bottom:326.173333pt;}
.y16d{bottom:327.133333pt;}
.yac{bottom:328.413333pt;}
.y2a{bottom:328.733333pt;}
.y110{bottom:329.053333pt;}
.y85{bottom:330.013333pt;}
.y5a{bottom:335.773333pt;}
.yfa{bottom:339.613333pt;}
.y138{bottom:342.813333pt;}
.y16c{bottom:343.773333pt;}
.yab{bottom:345.373333pt;}
.y29{bottom:345.693333pt;}
.y10f{bottom:346.013333pt;}
.yd0{bottom:346.653333pt;}
.y186{bottom:349.853333pt;}
.y59{bottom:352.733333pt;}
.yf9{bottom:356.573333pt;}
.y137{bottom:359.773333pt;}
.yaa{bottom:362.333333pt;}
.y28{bottom:362.653333pt;}
.y10e{bottom:362.973333pt;}
.y84{bottom:365.533333pt;}
.y58{bottom:369.693333pt;}
.yf8{bottom:373.213333pt;}
.y136{bottom:376.733333pt;}
.y27{bottom:379.293333pt;}
.y10d{bottom:379.613333pt;}
.y19d{bottom:381.853333pt;}
.y83{bottom:382.493333pt;}
.ycf{bottom:383.453333pt;}
.y185{bottom:385.373333pt;}
.y57{bottom:386.653333pt;}
.yf7{bottom:390.173333pt;}
.y153{bottom:395.293333pt;}
.y26{bottom:396.253333pt;}
.y10c{bottom:396.573333pt;}
.ya9{bottom:397.853333pt;}
.y82{bottom:399.493333pt;}
.yce{bottom:402.373333pt;}
.yf6{bottom:407.173333pt;}
.y135{bottom:412.293333pt;}
.y25{bottom:413.253333pt;}
.y10b{bottom:413.573333pt;}
.y16b{bottom:414.853333pt;}
.y81{bottom:416.133333pt;}
.y19c{bottom:417.413333pt;}
.ycd{bottom:420.613333pt;}
.y184{bottom:420.933333pt;}
.y56{bottom:421.893333pt;}
.yf5{bottom:423.813333pt;}
.y152{bottom:428.293333pt;}
.y24{bottom:430.213333pt;}
.y10a{bottom:430.533333pt;}
.y16a{bottom:431.813333pt;}
.y80{bottom:433.093333pt;}
.ya8{bottom:433.413333pt;}
.y19b{bottom:434.373333pt;}
.y183{bottom:437.893333pt;}
.y55{bottom:438.853333pt;}
.ycc{bottom:439.173333pt;}
.yf4{bottom:440.773333pt;}
.y23{bottom:446.853333pt;}
.y109{bottom:447.173333pt;}
.y134{bottom:447.493333pt;}
.y169{bottom:448.773333pt;}
.ya7{bottom:450.373333pt;}
.y54{bottom:455.813333pt;}
.yf3{bottom:457.733333pt;}
.y22{bottom:463.813333pt;}
.y108{bottom:464.133333pt;}
.y133{bottom:464.453333pt;}
.y168{bottom:465.413333pt;}
.y7f{bottom:468.613333pt;}
.y19a{bottom:469.573333pt;}
.y53{bottom:472.773333pt;}
.y182{bottom:473.413333pt;}
.yf2{bottom:474.693333pt;}
.ycb{bottom:475.653333pt;}
.y21{bottom:480.773333pt;}
.y107{bottom:481.093333pt;}
.y132{bottom:481.413333pt;}
.y167{bottom:482.373333pt;}
.y7e{bottom:485.573333pt;}
.y199{bottom:486.533333pt;}
.ya6{bottom:487.173333pt;}
.y52{bottom:489.413333pt;}
.y181{bottom:490.373333pt;}
.yf1{bottom:491.333333pt;}
.yca{bottom:494.533333pt;}
.y20{bottom:497.413333pt;}
.y106{bottom:497.733333pt;}
.y131{bottom:498.373333pt;}
.y166{bottom:499.333333pt;}
.y7d{bottom:502.213333pt;}
.y51{bottom:506.373333pt;}
.yf0{bottom:508.293333pt;}
.yc9{bottom:512.800000pt;}
.y151{bottom:513.120000pt;}
.y1f{bottom:514.400000pt;}
.y105{bottom:514.720000pt;}
.y130{bottom:515.360000pt;}
.y7c{bottom:519.200000pt;}
.y198{bottom:522.080000pt;}
.ya5{bottom:522.720000pt;}
.y50{bottom:523.360000pt;}
.yef{bottom:525.280000pt;}
.y180{bottom:525.600000pt;}
.y1e{bottom:531.360000pt;}
.y104{bottom:531.680000pt;}
.y165{bottom:534.880000pt;}
.y7b{bottom:536.160000pt;}
.ya4{bottom:539.680000pt;}
.y4f{bottom:540.320000pt;}
.yee{bottom:541.920000pt;}
.y1d{bottom:548.000000pt;}
.y103{bottom:548.320000pt;}
.yc8{bottom:549.600000pt;}
.y12f{bottom:550.880000pt;}
.ya3{bottom:556.640000pt;}
.y197{bottom:557.600000pt;}
.yed{bottom:558.880000pt;}
.y17f{bottom:561.120000pt;}
.y1c{bottom:564.960000pt;}
.y102{bottom:565.280000pt;}
.yc7{bottom:568.480000pt;}
.y164{bottom:570.400000pt;}
.y7a{bottom:571.680000pt;}
.y196{bottom:574.560000pt;}
.y4e{bottom:575.520000pt;}
.yec{bottom:575.840000pt;}
.y101{bottom:579.040000pt;}
.y1b{bottom:581.920000pt;}
.y12e{bottom:586.080000pt;}
.yc6{bottom:586.720000pt;}
.ya2{bottom:591.840000pt;}
.y4d{bottom:592.480000pt;}
.y17e{bottom:596.640000pt;}
.y14e{bottom:598.240000pt;}
.y12d{bottom:603.040000pt;}
.y163{bottom:605.920000pt;}
.y79{bottom:607.200000pt;}
.ya1{bottom:608.800000pt;}
.y4c{bottom:609.440000pt;}
.y195{bottom:610.080000pt;}
.y1a{bottom:612.000000pt;}
.y17d{bottom:613.600000pt;}
.y12c{bottom:620.000000pt;}
.yc4{bottom:620.960000pt;}
.ya0{bottom:625.786667pt;}
.y78{bottom:626.106667pt;}
.y4b{bottom:626.426667pt;}
.y194{bottom:627.066667pt;}
.y19{bottom:628.986667pt;}
.y12b{bottom:636.986667pt;}
.yc3{bottom:638.266667pt;}
.y162{bottom:641.466667pt;}
.y4a{bottom:643.066667pt;}
.yeb{bottom:643.386667pt;}
.y77{bottom:644.346667pt;}
.y18{bottom:645.946667pt;}
.y17c{bottom:649.146667pt;}
.y12a{bottom:653.626667pt;}
.yc2{bottom:655.866667pt;}
.y161{bottom:658.426667pt;}
.y49{bottom:660.026667pt;}
.y9f{bottom:662.586667pt;}
.y76{bottom:662.906667pt;}
.y17{bottom:664.826667pt;}
.y14a{bottom:666.426667pt;}
.y129{bottom:670.586667pt;}
.yc1{bottom:673.466667pt;}
.y160{bottom:675.066667pt;}
.y48{bottom:676.986667pt;}
.y193{bottom:679.546667pt;}
.y75{bottom:681.146667pt;}
.y17b{bottom:684.666667pt;}
.y16{bottom:687.546667pt;}
.yc0{bottom:691.066667pt;}
.y15f{bottom:692.026667pt;}
.y47{bottom:693.626667pt;}
.yea{bottom:693.946667pt;}
.y9e{bottom:698.106667pt;}
.y74{bottom:699.706667pt;}
.y17a{bottom:701.626667pt;}
.y128{bottom:706.106667pt;}
.ybe{bottom:708.666667pt;}
.y15e{bottom:708.986667pt;}
.y46{bottom:710.586667pt;}
.y192{bottom:714.746667pt;}
.y9d{bottom:715.066667pt;}
.y73{bottom:717.946667pt;}
.y127{bottom:723.066667pt;}
.ye9{bottom:727.546667pt;}
.y15{bottom:731.066667pt;}
.y191{bottom:731.706667pt;}
.y179{bottom:737.186667pt;}
.y126{bottom:740.066667pt;}
.ye8{bottom:744.546667pt;}
.y45{bottom:746.146667pt;}
.y14{bottom:748.066667pt;}
.y9c{bottom:750.626667pt;}
.y144{bottom:751.266667pt;}
.y178{bottom:754.146667pt;}
.y72{bottom:754.786667pt;}
.y125{bottom:756.706667pt;}
.ye7{bottom:761.506667pt;}
.y44{bottom:763.106667pt;}
.y13{bottom:764.706667pt;}
.ybd{bottom:766.946667pt;}
.y190{bottom:767.266667pt;}
.y9b{bottom:767.586667pt;}
.y71{bottom:773.666667pt;}
.ye6{bottom:778.146667pt;}
.y43{bottom:780.066667pt;}
.y9a{bottom:784.226667pt;}
.y177{bottom:789.666667pt;}
.y124{bottom:790.626667pt;}
.y70{bottom:791.906667pt;}
.y12{bottom:792.226667pt;}
.ye5{bottom:795.106667pt;}
.y42{bottom:796.706667pt;}
.y99{bottom:801.186667pt;}
.y18f{bottom:802.786667pt;}
.ybc{bottom:803.426667pt;}
.y176{bottom:806.626667pt;}
.y6f{bottom:810.466667pt;}
.ye4{bottom:812.066667pt;}
.y41{bottom:813.666667pt;}
.y98{bottom:818.146667pt;}
.ybb{bottom:820.386667pt;}
.y175{bottom:823.266667pt;}
.y123{bottom:826.146667pt;}
.y6e{bottom:828.706667pt;}
.y40{bottom:830.626667pt;}
.y18e{bottom:838.306667pt;}
.ye3{bottom:845.666667pt;}
.y11{bottom:845.986667pt;}
.y6d{bottom:847.293333pt;}
.y142{bottom:853.373333pt;}
.y97{bottom:854.973333pt;}
.y18d{bottom:855.293333pt;}
.y10{bottom:855.933333pt;}
.yba{bottom:857.213333pt;}
.y174{bottom:858.813333pt;}
.y122{bottom:861.693333pt;}
.ye2{bottom:862.653333pt;}
.y6c{bottom:865.533333pt;}
.y3f{bottom:866.173333pt;}
.y96{bottom:875.773333pt;}
.y121{bottom:878.653333pt;}
.yf{bottom:879.293333pt;}
.y3e{bottom:882.813333pt;}
.y18c{bottom:890.813333pt;}
.yb9{bottom:892.733333pt;}
.y120{bottom:895.293333pt;}
.ye1{bottom:896.253333pt;}
.ye{bottom:899.773333pt;}
.y6b{bottom:902.333333pt;}
.y141{bottom:909.373333pt;}
.yb8{bottom:909.693333pt;}
.y95{bottom:911.293333pt;}
.y11f{bottom:912.253333pt;}
.ye0{bottom:913.213333pt;}
.y3d{bottom:916.733333pt;}
.yd{bottom:919.293333pt;}
.yb7{bottom:926.333333pt;}
.y94{bottom:928.253333pt;}
.ydf{bottom:930.173333pt;}
.y3c{bottom:933.693333pt;}
.yc{bottom:938.813333pt;}
.y6a{bottom:939.453333pt;}
.yb6{bottom:943.293333pt;}
.y93{bottom:945.213333pt;}
.yde{bottom:946.813333pt;}
.y11e{bottom:947.773333pt;}
.y3b{bottom:950.333333pt;}
.yb{bottom:954.173333pt;}
.y69{bottom:958.013333pt;}
.y92{bottom:961.893333pt;}
.ydd{bottom:963.813333pt;}
.y3a{bottom:967.333333pt;}
.ya{bottom:969.573333pt;}
.y68{bottom:976.613333pt;}
.yb5{bottom:978.853333pt;}
.ydc{bottom:980.773333pt;}
.y39{bottom:984.293333pt;}
.y9{bottom:984.933333pt;}
.y67{bottom:994.853333pt;}
.y91{bottom:997.413333pt;}
.y8{bottom:1000.293333pt;}
.y66{bottom:1013.413333pt;}
.y38{bottom:1014.373333pt;}
.y7{bottom:1015.653333pt;}
.y1{bottom:1056.293333pt;}
.y5{bottom:1072.000000pt;}
.h4{height:16.000000pt;}
.h12{height:16.640000pt;}
.h14{height:16.672000pt;}
.h13{height:16.960000pt;}
.h2{height:17.632000pt;}
.ha{height:20.409375pt;}
.h16{height:33.600000pt;}
.h9{height:36.931250pt;}
.hb{height:40.818750pt;}
.h5{height:42.678750pt;}
.h6{height:47.171250pt;}
.hf{height:51.663750pt;}
.h1b{height:51.807500pt;}
.hc{height:52.296250pt;}
.h10{height:56.156250pt;}
.h15{height:56.312500pt;}
.h11{height:56.843750pt;}
.h8{height:58.563750pt;}
.he{height:59.849375pt;}
.h3{height:60.288750pt;}
.h7{height:65.531250pt;}
.h19{height:67.552000pt;}
.hd{height:70.687500pt;}
.h18{height:84.192000pt;}
.h1a{height:84.480000pt;}
.h17{height:101.472000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:33.600000pt;}
.w7{width:120.352000pt;}
.wa{width:123.872000pt;}
.w3{width:126.784000pt;}
.w8{width:131.904000pt;}
.w6{width:134.466667pt;}
.w9{width:165.506667pt;}
.wb{width:180.866667pt;}
.w2{width:496.826667pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.x5{left:4.160000pt;}
.xf{left:7.040000pt;}
.x3{left:93.152000pt;}
.x6{left:94.431988pt;}
.xd{left:118.431988pt;}
.xb{left:120.031988pt;}
.xe{left:142.466655pt;}
.x1{left:148.546667pt;}
.x7{left:194.626655pt;}
.x12{left:227.613333pt;}
.x10{left:230.173333pt;}
.xc{left:242.653322pt;}
.xa{left:252.253322pt;}
.x9{left:311.173322pt;}
.x8{left:343.173322pt;}
.x13{left:393.760000pt;}
.x15{left:396.959988pt;}
.x14{left:518.266667pt;}
.x4{left:671.613333pt;}
.x11{left:696.573322pt;}
}




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