
    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_a08a5dc1c6cd2d921c45f245.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_5510bf3c37aa41f6c4f2caa2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_250df1396217e32abec0273b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940918;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_d8154620f25ffc0e4863395a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.967773;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_b3a6196972fe8135cc229d69.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.719727;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_b190d91b738b46fc7391cd42.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.737305;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_89612769843dbe339d512314.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_2d526dc68a7a981590172624.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.163086;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_ad3d0a1e65c43aae0cc3c4e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.949707;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_969cf3dea69c27bd139380c6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.930664;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_70261ba2dfbce445fb90d564.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.965332;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_8ca8465276d81a4e3df8de2a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940918;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_ccc95249eeead7c807485c1d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.951172;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);}
.m3{transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250033,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.853400px;}
.v3{vertical-align:6.000000px;}
.v2{vertical-align:24.299400px;}
.ls11{letter-spacing:-5.904000px;}
.ls17{letter-spacing:-5.544000px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000540px;}
.ls15{letter-spacing:0.000600px;}
.ls16{letter-spacing:0.067200px;}
.ls1c{letter-spacing:0.144000px;}
.ls1e{letter-spacing:1.008000px;}
.lsf{letter-spacing:2.448000px;}
.ls1b{letter-spacing:4.104000px;}
.ls1d{letter-spacing:4.464000px;}
.ls10{letter-spacing:4.536000px;}
.ls14{letter-spacing:11.302800px;}
.ls0{letter-spacing:11.388000px;}
.ls1{letter-spacing:11.389200px;}
.ls2{letter-spacing:11.389800px;}
.ls3{letter-spacing:11.419200px;}
.ls13{letter-spacing:12.579600px;}
.ls1a{letter-spacing:13.890000px;}
.ls18{letter-spacing:17.473200px;}
.ls19{letter-spacing:28.800000px;}
.ls5{letter-spacing:881.843880px;}
.lsc{letter-spacing:953.927880px;}
.ls9{letter-spacing:1596.480240px;}
.ls6{letter-spacing:1607.927880px;}
.ls8{letter-spacing:1776.576240px;}
.lsd{letter-spacing:1907.891880px;}
.lsb{letter-spacing:1926.684240px;}
.lse{letter-spacing:2027.771880px;}
.ls7{letter-spacing:2045.867880px;}
.lsa{letter-spacing:2202.624240px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-40.032000px;}
.ws0{word-spacing:-33.072000px;}
.ws9{word-spacing:-24.480000px;}
.ws8{word-spacing:-24.120000px;}
.ws3{word-spacing:-20.016000px;}
.ws5{word-spacing:-16.212484px;}
.ws4{word-spacing:-16.190324px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:398.584288px;}
.ws6{word-spacing:1010.786462px;}
._2c{margin-left:-20.772000px;}
._3{margin-left:-11.419200px;}
._1{margin-left:-8.760000px;}
._1f{margin-left:-7.704000px;}
._0{margin-left:-6.480000px;}
._2{margin-left:-4.680000px;}
._22{margin-left:-3.648000px;}
._7{margin-left:-2.592000px;}
._6{margin-left:-1.428000px;}
._9{width:1.008000px;}
._d{width:2.952000px;}
._12{width:4.452000px;}
._8{width:5.508000px;}
._11{width:6.804000px;}
._f{width:8.136000px;}
._e{width:9.792000px;}
._17{width:10.932000px;}
._13{width:11.964000px;}
._14{width:13.164000px;}
._10{width:14.568000px;}
._21{width:15.576000px;}
._15{width:16.608000px;}
._16{width:18.324000px;}
._2d{width:21.024000px;}
._18{width:22.188000px;}
._19{width:23.784000px;}
._23{width:25.068000px;}
._27{width:26.371680px;}
._1d{width:27.876000px;}
._28{width:28.924800px;}
._26{width:29.952000px;}
._1c{width:31.248000px;}
._1a{width:32.328000px;}
._1e{width:33.828000px;}
._1b{width:34.848000px;}
._2e{width:35.864640px;}
._25{width:36.936000px;}
._24{width:39.072000px;}
._20{width:40.104000px;}
._2f{width:46.512000px;}
._4{width:191.664000px;}
._32{width:196.560000px;}
._5{width:197.670000px;}
._31{width:231.048000px;}
._30{width:235.008000px;}
._29{width:360.593629px;}
._2b{width:1661.852522px;}
._2a{width:1668.325852px;}
._c{width:1740.936240px;}
._b{width:1883.664240px;}
._a{width:2203.188240px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:58.238575px;}
.fsd{font-size:58.318286px;}
.fs9{font-size:60.000000px;}
.fs2{font-size:62.400000px;}
.fs3{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs6{font-size:84.000000px;}
.fsb{font-size:87.357863px;}
.fsc{font-size:87.477430px;}
.fs5{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.fs4{font-size:144.000000px;}
.fs8{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y82{bottom:1.213260px;}
.y9f{bottom:1.214943px;}
.ya6{bottom:1.214992px;}
.y94{bottom:1.215050px;}
.y8a{bottom:2.429943px;}
.ya4{bottom:66.822993px;}
.y1e{bottom:67.500000px;}
.y80{bottom:84.749760px;}
.y72{bottom:85.963110px;}
.y5d{bottom:90.000000px;}
.y157{bottom:97.500000px;}
.y16e{bottom:105.000000px;}
.y100{bottom:112.500000px;}
.yf1{bottom:118.500000px;}
.y3a{bottom:120.000000px;}
.y58{bottom:121.500000px;}
.y14b{bottom:123.000000px;}
.y12e{bottom:126.000000px;}
.y138{bottom:127.500000px;}
.yf0{bottom:129.000000px;}
.yf{bottom:135.000000px;}
.yc9{bottom:136.500000px;}
.ya7{bottom:138.000000px;}
.ybc{bottom:142.500000px;}
.yff{bottom:144.000000px;}
.ya3{bottom:148.225692px;}
.y118{bottom:150.000000px;}
.y39{bottom:151.500000px;}
.y83{bottom:152.694810px;}
.y57{bottom:153.000000px;}
.y14a{bottom:154.500000px;}
.ye{bottom:156.000000px;}
.y11d{bottom:157.500000px;}
.yef{bottom:160.500000px;}
.ya2{bottom:165.235193px;}
.y16d{bottom:166.500000px;}
.yc8{bottom:168.000000px;}
.ybb{bottom:174.000000px;}
.yfe{bottom:175.500000px;}
.yd{bottom:177.000000px;}
.ya1{bottom:182.244693px;}
.y38{bottom:183.000000px;}
.y56{bottom:184.500000px;}
.y149{bottom:186.000000px;}
.y7b{bottom:186.667174px;}
.y133{bottom:187.500000px;}
.y11c{bottom:189.000000px;}
.yee{bottom:192.000000px;}
.yc7{bottom:199.500000px;}
.y7a{bottom:203.653425px;}
.y131{bottom:205.500000px;}
.y137{bottom:207.000000px;}
.ya5{bottom:207.673350px;}
.y117{bottom:213.000000px;}
.y37{bottom:214.500000px;}
.y55{bottom:216.000000px;}
.y148{bottom:217.500000px;}
.y132{bottom:219.000000px;}
.y79{bottom:220.639676px;}
.yed{bottom:223.500000px;}
.ycf{bottom:226.500000px;}
.y7f{bottom:226.706154px;}
.y174{bottom:229.500000px;}
.y16c{bottom:231.000000px;}
.y92{bottom:233.273092px;}
.yba{bottom:237.000000px;}
.y78{bottom:237.625927px;}
.yfd{bottom:238.500000px;}
.y84{bottom:243.000000px;}
.y116{bottom:244.500000px;}
.y36{bottom:246.000000px;}
.y54{bottom:247.500000px;}
.y147{bottom:249.000000px;}
.y91{bottom:250.282592px;}
.y11b{bottom:252.000000px;}
.y7e{bottom:253.398834px;}
.y77{bottom:254.612178px;}
.y128{bottom:255.000000px;}
.yce{bottom:258.000000px;}
.yc6{bottom:262.500000px;}
.y90{bottom:267.292092px;}
.yb9{bottom:268.500000px;}
.y71{bottom:270.000000px;}
.ybf{bottom:271.500000px;}
.y76{bottom:271.598430px;}
.ye2{bottom:274.500000px;}
.y115{bottom:276.000000px;}
.y35{bottom:277.500000px;}
.y53{bottom:279.000000px;}
.yc{bottom:282.000000px;}
.y12d{bottom:283.500000px;}
.y8f{bottom:284.301593px;}
.y127{bottom:286.500000px;}
.ycd{bottom:289.500000px;}
.y75{bottom:289.797984px;}
.y16b{bottom:292.500000px;}
.yc5{bottom:294.000000px;}
.y130{bottom:300.000000px;}
.y8e{bottom:301.311093px;}
.yfc{bottom:301.500000px;}
.yb{bottom:306.000000px;}
.y34{bottom:309.000000px;}
.y52{bottom:310.500000px;}
.y146{bottom:312.000000px;}
.y11a{bottom:315.000000px;}
.y126{bottom:318.000000px;}
.ycc{bottom:321.000000px;}
.y173{bottom:324.000000px;}
.y93{bottom:324.309900px;}
.yc4{bottom:325.500000px;}
.y74{bottom:329.837059px;}
.yb8{bottom:331.500000px;}
.ya{bottom:333.000000px;}
.y114{bottom:339.000000px;}
.y33{bottom:340.500000px;}
.y51{bottom:342.000000px;}
.y12c{bottom:346.500000px;}
.y73{bottom:346.823310px;}
.y125{bottom:349.500000px;}
.y81{bottom:352.323150px;}
.ycb{bottom:352.500000px;}
.yc3{bottom:357.000000px;}
.y109{bottom:360.000000px;}
.yb7{bottom:363.000000px;}
.y136{bottom:364.500000px;}
.y119{bottom:366.000000px;}
.ye1{bottom:369.000000px;}
.y32{bottom:372.000000px;}
.y50{bottom:373.500000px;}
.y145{bottom:375.000000px;}
.y12b{bottom:378.000000px;}
.y124{bottom:381.000000px;}
.yca{bottom:384.000000px;}
.y7d{bottom:385.649004px;}
.y16a{bottom:387.000000px;}
.ya0{bottom:387.488100px;}
.yc2{bottom:388.500000px;}
.y108{bottom:391.500000px;}
.yb6{bottom:394.500000px;}
.yfb{bottom:396.000000px;}
.ye0{bottom:400.500000px;}
.y113{bottom:402.000000px;}
.y159{bottom:403.500000px;}
.y4f{bottom:405.000000px;}
.y144{bottom:406.500000px;}
.y12a{bottom:409.500000px;}
.y7c{bottom:412.341684px;}
.y156{bottom:412.500000px;}
.y8c{bottom:419.162643px;}
.y6c{bottom:420.000000px;}
.y107{bottom:423.000000px;}
.y12f{bottom:426.000000px;}
.yfa{bottom:427.500000px;}
.ydf{bottom:432.000000px;}
.y112{bottom:433.500000px;}
.y31{bottom:435.000000px;}
.y5c{bottom:436.500000px;}
.y143{bottom:438.000000px;}
.y9{bottom:441.000000px;}
.y123{bottom:444.000000px;}
.y153{bottom:447.000000px;}
.y6b{bottom:451.500000px;}
.y8d{bottom:453.096150px;}
.y106{bottom:454.500000px;}
.yb5{bottom:457.500000px;}
.yf9{bottom:459.000000px;}
.y129{bottom:460.500000px;}
.yde{bottom:463.500000px;}
.y111{bottom:465.000000px;}
.y30{bottom:466.500000px;}
.y4e{bottom:468.000000px;}
.y142{bottom:469.500000px;}
.y1d{bottom:475.500000px;}
.y152{bottom:478.500000px;}
.y169{bottom:481.500000px;}
.y105{bottom:486.000000px;}
.yb4{bottom:489.000000px;}
.y135{bottom:490.500000px;}
.ydd{bottom:495.000000px;}
.y2f{bottom:498.000000px;}
.y4d{bottom:499.500000px;}
.y141{bottom:501.000000px;}
.y161{bottom:502.500000px;}
.y122{bottom:507.000000px;}
.yec{bottom:508.500000px;}
.y151{bottom:510.000000px;}
.y6a{bottom:514.500000px;}
.y1c{bottom:517.500000px;}
.y9e{bottom:518.704350px;}
.yb3{bottom:520.500000px;}
.yf8{bottom:522.000000px;}
.ydc{bottom:526.500000px;}
.y110{bottom:528.000000px;}
.y2e{bottom:529.500000px;}
.y4c{bottom:531.000000px;}
.y140{bottom:532.500000px;}
.y160{bottom:534.000000px;}
.y155{bottom:538.500000px;}
.yeb{bottom:540.000000px;}
.y150{bottom:541.500000px;}
.y168{bottom:544.500000px;}
.y69{bottom:546.000000px;}
.y8{bottom:550.500000px;}
.yb2{bottom:552.000000px;}
.yf7{bottom:553.500000px;}
.ydb{bottom:558.000000px;}
.y1b{bottom:559.500000px;}
.y2d{bottom:561.000000px;}
.y5b{bottom:562.500000px;}
.y13f{bottom:564.000000px;}
.y15f{bottom:565.500000px;}
.y97{bottom:566.173293px;}
.y121{bottom:570.000000px;}
.yea{bottom:571.500000px;}
.y14f{bottom:573.000000px;}
.y172{bottom:576.000000px;}
.yc1{bottom:577.500000px;}
.y104{bottom:580.500000px;}
.ye3{bottom:583.500000px;}
.yf6{bottom:585.000000px;}
.ybe{bottom:586.500000px;}
.yda{bottom:589.500000px;}
.y10f{bottom:591.000000px;}
.y7{bottom:592.500000px;}
.y4b{bottom:594.000000px;}
.y13e{bottom:595.500000px;}
.y15e{bottom:597.000000px;}
.y120{bottom:601.500000px;}
.y1a{bottom:603.000000px;}
.y14e{bottom:604.500000px;}
.y9b{bottom:605.052192px;}
.y68{bottom:609.000000px;}
.y103{bottom:612.000000px;}
.yb1{bottom:615.000000px;}
.yf5{bottom:616.500000px;}
.y96{bottom:620.846793px;}
.yd9{bottom:621.000000px;}
.y9a{bottom:622.061692px;}
.y10e{bottom:622.500000px;}
.y2c{bottom:624.000000px;}
.y4a{bottom:625.500000px;}
.y11f{bottom:633.000000px;}
.y6{bottom:634.500000px;}
.y14d{bottom:636.000000px;}
.y167{bottom:639.000000px;}
.y99{bottom:639.071193px;}
.y67{bottom:640.500000px;}
.y102{bottom:643.500000px;}
.y158{bottom:645.000000px;}
.yb0{bottom:646.500000px;}
.yf4{bottom:648.000000px;}
.yd8{bottom:652.500000px;}
.y19{bottom:654.000000px;}
.y2b{bottom:655.500000px;}
.y49{bottom:657.000000px;}
.y98{bottom:657.210150px;}
.y13d{bottom:658.500000px;}
.y15d{bottom:660.000000px;}
.ye9{bottom:666.000000px;}
.y134{bottom:667.500000px;}
.y171{bottom:670.500000px;}
.yc0{bottom:672.000000px;}
.y5{bottom:676.500000px;}
.yd7{bottom:684.000000px;}
.y10d{bottom:685.500000px;}
.y2a{bottom:687.000000px;}
.y48{bottom:688.500000px;}
.y15c{bottom:691.500000px;}
.y101{bottom:694.500000px;}
.y11e{bottom:696.000000px;}
.ye8{bottom:697.500000px;}
.y14c{bottom:699.000000px;}
.y15a{bottom:700.500000px;}
.y66{bottom:703.500000px;}
.y8b{bottom:705.894243px;}
.yaf{bottom:709.500000px;}
.yf3{bottom:711.000000px;}
.y18{bottom:715.500000px;}
.y10c{bottom:717.000000px;}
.y29{bottom:718.500000px;}
.y47{bottom:720.000000px;}
.y13c{bottom:721.500000px;}
.y9d{bottom:725.333692px;}
.ye7{bottom:729.000000px;}
.y166{bottom:733.500000px;}
.y65{bottom:735.000000px;}
.y9c{bottom:742.343193px;}
.y15b{bottom:744.000000px;}
.yd6{bottom:747.000000px;}
.y10b{bottom:748.500000px;}
.y28{bottom:750.000000px;}
.y46{bottom:751.500000px;}
.y13b{bottom:753.000000px;}
.ye6{bottom:760.500000px;}
.y95{bottom:761.782593px;}
.yf2{bottom:762.000000px;}
.y17{bottom:765.000000px;}
.y70{bottom:766.500000px;}
.y154{bottom:771.000000px;}
.y4{bottom:772.500000px;}
.y177{bottom:775.500000px;}
.y45{bottom:783.000000px;}
.y13a{bottom:784.500000px;}
.ye5{bottom:792.000000px;}
.y64{bottom:798.000000px;}
.y10a{bottom:799.500000px;}
.yae{bottom:804.000000px;}
.y16{bottom:808.500000px;}
.yd5{bottom:810.000000px;}
.y27{bottom:813.000000px;}
.y44{bottom:814.500000px;}
.y165{bottom:828.000000px;}
.y6f{bottom:829.500000px;}
.y87{bottom:835.895428px;}
.yd4{bottom:841.500000px;}
.ye4{bottom:843.000000px;}
.y26{bottom:844.500000px;}
.y43{bottom:846.000000px;}
.y139{bottom:847.500000px;}
.y15{bottom:852.000000px;}
.y86{bottom:852.904928px;}
.y63{bottom:861.000000px;}
.yad{bottom:867.000000px;}
.y85{bottom:871.129393px;}
.y25{bottom:876.000000px;}
.y42{bottom:877.500000px;}
.y62{bottom:892.500000px;}
.y14{bottom:895.500000px;}
.yac{bottom:898.500000px;}
.yd3{bottom:904.500000px;}
.y24{bottom:907.500000px;}
.y41{bottom:909.000000px;}
.y89{bottom:912.352650px;}
.y164{bottom:922.500000px;}
.y6e{bottom:924.000000px;}
.yab{bottom:930.000000px;}
.ybd{bottom:933.000000px;}
.yd2{bottom:936.000000px;}
.y23{bottom:939.000000px;}
.y40{bottom:940.500000px;}
.y13{bottom:951.000000px;}
.y88{bottom:952.532143px;}
.y61{bottom:955.500000px;}
.yd1{bottom:967.500000px;}
.y22{bottom:970.500000px;}
.y5a{bottom:972.000000px;}
.yaa{bottom:985.500000px;}
.y60{bottom:987.000000px;}
.yd0{bottom:999.000000px;}
.y21{bottom:1002.000000px;}
.y3f{bottom:1003.500000px;}
.y12{bottom:1012.500000px;}
.y163{bottom:1017.000000px;}
.y6d{bottom:1018.500000px;}
.y20{bottom:1033.500000px;}
.y3e{bottom:1035.000000px;}
.y5f{bottom:1050.000000px;}
.ya9{bottom:1056.000000px;}
.y11{bottom:1063.500000px;}
.y176{bottom:1065.000000px;}
.y3d{bottom:1066.500000px;}
.y3{bottom:1069.500000px;}
.y170{bottom:1074.000000px;}
.y162{bottom:1080.000000px;}
.y5e{bottom:1081.500000px;}
.ya8{bottom:1087.500000px;}
.y1f{bottom:1092.000000px;}
.y16f{bottom:1096.500000px;}
.y3c{bottom:1098.000000px;}
.y2{bottom:1110.000000px;}
.y3b{bottom:1129.500000px;}
.y10{bottom:1140.000000px;}
.y1{bottom:1150.500000px;}
.y175{bottom:1159.500000px;}
.y59{bottom:1161.000000px;}
.h14{height:14.559654px;}
.h1f{height:14.579499px;}
.h20{height:14.579590px;}
.h1c{height:15.794490px;}
.h1e{height:15.794535px;}
.h1a{height:15.794580px;}
.h1d{height:18.224460px;}
.h22{height:31.589085px;}
.h15{height:41.915850px;}
.h12{height:42.825827px;}
.h19{height:42.969870px;}
.hd{height:43.037109px;}
.h16{height:43.828125px;}
.h9{height:52.593750px;}
.h10{height:55.053653px;}
.h1b{height:55.129005px;}
.h3{height:56.336719px;}
.h4{height:59.167969px;}
.h13{height:59.907053px;}
.hc{height:63.000000px;}
.he{height:64.546875px;}
.h2{height:70.420898px;}
.h23{height:70.546875px;}
.h8{height:75.837891px;}
.h21{height:79.428405px;}
.hb{height:81.000000px;}
.h11{height:82.580480px;}
.h18{height:82.693508px;}
.h6{height:96.820312px;}
.h7{height:97.505859px;}
.h1{height:107.578125px;}
.h5{height:130.007812px;}
.ha{height:151.675781px;}
.hf{height:481.500000px;}
.h17{height:1023.000000px;}
.h0{height:1263.000000px;}
.w1{width:679.960650px;}
.w2{width:721.960650px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x18{left:42.289749px;}
.x29{left:46.350540px;}
.x28{left:54.856410px;}
.x17{left:58.480350px;}
.x19{left:66.999295px;}
.x16{left:69.259855px;}
.x1a{left:71.869289px;}
.x1b{left:73.481943px;}
.xf{left:85.039380px;}
.x13{left:95.994900px;}
.x4c{left:98.539380px;}
.x10{left:116.929140px;}
.x7{left:125.616195px;}
.x12{left:127.575000px;}
.x5{left:133.209945px;}
.x1{left:138.120090px;}
.x22{left:139.739550px;}
.x6{left:160.174800px;}
.x2{left:169.257000px;}
.x27{left:170.285640px;}
.x33{left:173.938770px;}
.x30{left:189.492356px;}
.x4{left:191.239350px;}
.x1c{left:199.976657px;}
.x3f{left:201.595500px;}
.x20{left:209.001750px;}
.x46{left:215.343000px;}
.x42{left:224.915700px;}
.x1d{left:229.510265px;}
.x40{left:236.627100px;}
.x3a{left:244.116150px;}
.x3{left:246.650550px;}
.x48{left:249.547050px;}
.x4b{left:254.113800px;}
.x32{left:257.782470px;}
.x37{left:259.134450px;}
.x26{left:270.019162px;}
.x44{left:271.197450px;}
.x4a{left:279.129600px;}
.xa{left:296.207550px;}
.x2f{left:301.372770px;}
.x49{left:302.863800px;}
.x39{left:304.995150px;}
.x24{left:307.604999px;}
.x23{left:309.129600px;}
.x43{left:310.675050px;}
.x3c{left:313.300800px;}
.x3e{left:314.981700px;}
.x41{left:319.837650px;}
.x9{left:321.711150px;}
.x36{left:325.360638px;}
.x3b{left:330.681150px;}
.x25{left:333.930753px;}
.x8{left:341.660100px;}
.x45{left:343.740150px;}
.x47{left:348.299550px;}
.x3d{left:355.817850px;}
.xb{left:384.029250px;}
.x31{left:403.597620px;}
.x14{left:408.683464px;}
.x15{left:417.330559px;}
.xd{left:468.343350px;}
.xc{left:496.002600px;}
.x35{left:497.951394px;}
.x34{left:516.708767px;}
.x2a{left:518.758083px;}
.x21{left:533.440350px;}
.x1e{left:541.746914px;}
.x2b{left:547.775145px;}
.x2e{left:551.826363px;}
.x2c{left:553.844845px;}
.x1f{left:570.664288px;}
.x2d{left:573.709312px;}
.xe{left:580.360050px;}
.x38{left:790.776000px;}
.x11{left:799.118250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.314133pt;}
.v3{vertical-align:5.333333pt;}
.v2{vertical-align:21.599467pt;}
.ls11{letter-spacing:-5.248000pt;}
.ls17{letter-spacing:-4.928000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000480pt;}
.ls15{letter-spacing:0.000533pt;}
.ls16{letter-spacing:0.059733pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.896000pt;}
.lsf{letter-spacing:2.176000pt;}
.ls1b{letter-spacing:3.648000pt;}
.ls1d{letter-spacing:3.968000pt;}
.ls10{letter-spacing:4.032000pt;}
.ls14{letter-spacing:10.046933pt;}
.ls0{letter-spacing:10.122667pt;}
.ls1{letter-spacing:10.123733pt;}
.ls2{letter-spacing:10.124267pt;}
.ls3{letter-spacing:10.150400pt;}
.ls13{letter-spacing:11.181867pt;}
.ls1a{letter-spacing:12.346667pt;}
.ls18{letter-spacing:15.531733pt;}
.ls19{letter-spacing:25.600000pt;}
.ls5{letter-spacing:783.861227pt;}
.lsc{letter-spacing:847.935893pt;}
.ls9{letter-spacing:1419.093547pt;}
.ls6{letter-spacing:1429.269227pt;}
.ls8{letter-spacing:1579.178880pt;}
.lsd{letter-spacing:1695.903893pt;}
.lsb{letter-spacing:1712.608213pt;}
.lse{letter-spacing:1802.463893pt;}
.ls7{letter-spacing:1818.549227pt;}
.lsa{letter-spacing:1957.888213pt;}
.ws1{word-spacing:-35.584000pt;}
.ws0{word-spacing:-29.397333pt;}
.ws9{word-spacing:-21.760000pt;}
.ws8{word-spacing:-21.440000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws5{word-spacing:-14.411097pt;}
.ws4{word-spacing:-14.391399pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:354.297145pt;}
.ws6{word-spacing:898.476855pt;}
._2c{margin-left:-18.464000pt;}
._3{margin-left:-10.150400pt;}
._1{margin-left:-7.786667pt;}
._1f{margin-left:-6.848000pt;}
._0{margin-left:-5.760000pt;}
._2{margin-left:-4.160000pt;}
._22{margin-left:-3.242667pt;}
._7{margin-left:-2.304000pt;}
._6{margin-left:-1.269333pt;}
._9{width:0.896000pt;}
._d{width:2.624000pt;}
._12{width:3.957333pt;}
._8{width:4.896000pt;}
._11{width:6.048000pt;}
._f{width:7.232000pt;}
._e{width:8.704000pt;}
._17{width:9.717333pt;}
._13{width:10.634667pt;}
._14{width:11.701333pt;}
._10{width:12.949333pt;}
._21{width:13.845333pt;}
._15{width:14.762667pt;}
._16{width:16.288000pt;}
._2d{width:18.688000pt;}
._18{width:19.722667pt;}
._19{width:21.141333pt;}
._23{width:22.282667pt;}
._27{width:23.441493pt;}
._1d{width:24.778667pt;}
._28{width:25.710933pt;}
._26{width:26.624000pt;}
._1c{width:27.776000pt;}
._1a{width:28.736000pt;}
._1e{width:30.069333pt;}
._1b{width:30.976000pt;}
._2e{width:31.879680pt;}
._25{width:32.832000pt;}
._24{width:34.730667pt;}
._20{width:35.648000pt;}
._2f{width:41.344000pt;}
._4{width:170.368000pt;}
._32{width:174.720000pt;}
._5{width:175.706667pt;}
._31{width:205.376000pt;}
._30{width:208.896000pt;}
._29{width:320.527670pt;}
._2b{width:1477.202242pt;}
._2a{width:1482.956313pt;}
._c{width:1547.498880pt;}
._b{width:1674.368213pt;}
._a{width:1958.389547pt;}
.fsa{font-size:51.767622pt;}
.fsd{font-size:51.838477pt;}
.fs9{font-size:53.333333pt;}
.fs2{font-size:55.466667pt;}
.fs3{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs6{font-size:74.666667pt;}
.fsb{font-size:77.651434pt;}
.fsc{font-size:77.757715pt;}
.fs5{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.fs4{font-size:128.000000pt;}
.fs8{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:1.078453pt;}
.y9f{bottom:1.079949pt;}
.ya6{bottom:1.079993pt;}
.y94{bottom:1.080044pt;}
.y8a{bottom:2.159949pt;}
.ya4{bottom:59.398216pt;}
.y1e{bottom:60.000000pt;}
.y80{bottom:75.333120pt;}
.y72{bottom:76.411653pt;}
.y5d{bottom:80.000000pt;}
.y157{bottom:86.666667pt;}
.y16e{bottom:93.333333pt;}
.y100{bottom:100.000000pt;}
.yf1{bottom:105.333333pt;}
.y3a{bottom:106.666667pt;}
.y58{bottom:108.000000pt;}
.y14b{bottom:109.333333pt;}
.y12e{bottom:112.000000pt;}
.y138{bottom:113.333333pt;}
.yf0{bottom:114.666667pt;}
.yf{bottom:120.000000pt;}
.yc9{bottom:121.333333pt;}
.ya7{bottom:122.666667pt;}
.ybc{bottom:126.666667pt;}
.yff{bottom:128.000000pt;}
.ya3{bottom:131.756171pt;}
.y118{bottom:133.333333pt;}
.y39{bottom:134.666667pt;}
.y83{bottom:135.728720pt;}
.y57{bottom:136.000000pt;}
.y14a{bottom:137.333333pt;}
.ye{bottom:138.666667pt;}
.y11d{bottom:140.000000pt;}
.yef{bottom:142.666667pt;}
.ya2{bottom:146.875727pt;}
.y16d{bottom:148.000000pt;}
.yc8{bottom:149.333333pt;}
.ybb{bottom:154.666667pt;}
.yfe{bottom:156.000000pt;}
.yd{bottom:157.333333pt;}
.ya1{bottom:161.995282pt;}
.y38{bottom:162.666667pt;}
.y56{bottom:164.000000pt;}
.y149{bottom:165.333333pt;}
.y7b{bottom:165.926377pt;}
.y133{bottom:166.666667pt;}
.y11c{bottom:168.000000pt;}
.yee{bottom:170.666667pt;}
.yc7{bottom:177.333333pt;}
.y7a{bottom:181.025267pt;}
.y131{bottom:182.666667pt;}
.y137{bottom:184.000000pt;}
.ya5{bottom:184.598533pt;}
.y117{bottom:189.333333pt;}
.y37{bottom:190.666667pt;}
.y55{bottom:192.000000pt;}
.y148{bottom:193.333333pt;}
.y132{bottom:194.666667pt;}
.y79{bottom:196.124157pt;}
.yed{bottom:198.666667pt;}
.ycf{bottom:201.333333pt;}
.y7f{bottom:201.516581pt;}
.y174{bottom:204.000000pt;}
.y16c{bottom:205.333333pt;}
.y92{bottom:207.353859pt;}
.yba{bottom:210.666667pt;}
.y78{bottom:211.223047pt;}
.yfd{bottom:212.000000pt;}
.y84{bottom:216.000000pt;}
.y116{bottom:217.333333pt;}
.y36{bottom:218.666667pt;}
.y54{bottom:220.000000pt;}
.y147{bottom:221.333333pt;}
.y91{bottom:222.473415pt;}
.y11b{bottom:224.000000pt;}
.y7e{bottom:225.243408pt;}
.y77{bottom:226.321936pt;}
.y128{bottom:226.666667pt;}
.yce{bottom:229.333333pt;}
.yc6{bottom:233.333333pt;}
.y90{bottom:237.592971pt;}
.yb9{bottom:238.666667pt;}
.y71{bottom:240.000000pt;}
.ybf{bottom:241.333333pt;}
.y76{bottom:241.420826pt;}
.ye2{bottom:244.000000pt;}
.y115{bottom:245.333333pt;}
.y35{bottom:246.666667pt;}
.y53{bottom:248.000000pt;}
.yc{bottom:250.666667pt;}
.y12d{bottom:252.000000pt;}
.y8f{bottom:252.712527pt;}
.y127{bottom:254.666667pt;}
.ycd{bottom:257.333333pt;}
.y75{bottom:257.598208pt;}
.y16b{bottom:260.000000pt;}
.yc5{bottom:261.333333pt;}
.y130{bottom:266.666667pt;}
.y8e{bottom:267.832082pt;}
.yfc{bottom:268.000000pt;}
.yb{bottom:272.000000pt;}
.y34{bottom:274.666667pt;}
.y52{bottom:276.000000pt;}
.y146{bottom:277.333333pt;}
.y11a{bottom:280.000000pt;}
.y126{bottom:282.666667pt;}
.ycc{bottom:285.333333pt;}
.y173{bottom:288.000000pt;}
.y93{bottom:288.275467pt;}
.yc4{bottom:289.333333pt;}
.y74{bottom:293.188497pt;}
.yb8{bottom:294.666667pt;}
.ya{bottom:296.000000pt;}
.y114{bottom:301.333333pt;}
.y33{bottom:302.666667pt;}
.y51{bottom:304.000000pt;}
.y12c{bottom:308.000000pt;}
.y73{bottom:308.287387pt;}
.y125{bottom:310.666667pt;}
.y81{bottom:313.176133pt;}
.ycb{bottom:313.333333pt;}
.yc3{bottom:317.333333pt;}
.y109{bottom:320.000000pt;}
.yb7{bottom:322.666667pt;}
.y136{bottom:324.000000pt;}
.y119{bottom:325.333333pt;}
.ye1{bottom:328.000000pt;}
.y32{bottom:330.666667pt;}
.y50{bottom:332.000000pt;}
.y145{bottom:333.333333pt;}
.y12b{bottom:336.000000pt;}
.y124{bottom:338.666667pt;}
.yca{bottom:341.333333pt;}
.y7d{bottom:342.799115pt;}
.y16a{bottom:344.000000pt;}
.ya0{bottom:344.433867pt;}
.yc2{bottom:345.333333pt;}
.y108{bottom:348.000000pt;}
.yb6{bottom:350.666667pt;}
.yfb{bottom:352.000000pt;}
.ye0{bottom:356.000000pt;}
.y113{bottom:357.333333pt;}
.y159{bottom:358.666667pt;}
.y4f{bottom:360.000000pt;}
.y144{bottom:361.333333pt;}
.y12a{bottom:364.000000pt;}
.y7c{bottom:366.525942pt;}
.y156{bottom:366.666667pt;}
.y8c{bottom:372.589016pt;}
.y6c{bottom:373.333333pt;}
.y107{bottom:376.000000pt;}
.y12f{bottom:378.666667pt;}
.yfa{bottom:380.000000pt;}
.ydf{bottom:384.000000pt;}
.y112{bottom:385.333333pt;}
.y31{bottom:386.666667pt;}
.y5c{bottom:388.000000pt;}
.y143{bottom:389.333333pt;}
.y9{bottom:392.000000pt;}
.y123{bottom:394.666667pt;}
.y153{bottom:397.333333pt;}
.y6b{bottom:401.333333pt;}
.y8d{bottom:402.752133pt;}
.y106{bottom:404.000000pt;}
.yb5{bottom:406.666667pt;}
.yf9{bottom:408.000000pt;}
.y129{bottom:409.333333pt;}
.yde{bottom:412.000000pt;}
.y111{bottom:413.333333pt;}
.y30{bottom:414.666667pt;}
.y4e{bottom:416.000000pt;}
.y142{bottom:417.333333pt;}
.y1d{bottom:422.666667pt;}
.y152{bottom:425.333333pt;}
.y169{bottom:428.000000pt;}
.y105{bottom:432.000000pt;}
.yb4{bottom:434.666667pt;}
.y135{bottom:436.000000pt;}
.ydd{bottom:440.000000pt;}
.y2f{bottom:442.666667pt;}
.y4d{bottom:444.000000pt;}
.y141{bottom:445.333333pt;}
.y161{bottom:446.666667pt;}
.y122{bottom:450.666667pt;}
.yec{bottom:452.000000pt;}
.y151{bottom:453.333333pt;}
.y6a{bottom:457.333333pt;}
.y1c{bottom:460.000000pt;}
.y9e{bottom:461.070533pt;}
.yb3{bottom:462.666667pt;}
.yf8{bottom:464.000000pt;}
.ydc{bottom:468.000000pt;}
.y110{bottom:469.333333pt;}
.y2e{bottom:470.666667pt;}
.y4c{bottom:472.000000pt;}
.y140{bottom:473.333333pt;}
.y160{bottom:474.666667pt;}
.y155{bottom:478.666667pt;}
.yeb{bottom:480.000000pt;}
.y150{bottom:481.333333pt;}
.y168{bottom:484.000000pt;}
.y69{bottom:485.333333pt;}
.y8{bottom:489.333333pt;}
.yb2{bottom:490.666667pt;}
.yf7{bottom:492.000000pt;}
.ydb{bottom:496.000000pt;}
.y1b{bottom:497.333333pt;}
.y2d{bottom:498.666667pt;}
.y5b{bottom:500.000000pt;}
.y13f{bottom:501.333333pt;}
.y15f{bottom:502.666667pt;}
.y97{bottom:503.265149pt;}
.y121{bottom:506.666667pt;}
.yea{bottom:508.000000pt;}
.y14f{bottom:509.333333pt;}
.y172{bottom:512.000000pt;}
.yc1{bottom:513.333333pt;}
.y104{bottom:516.000000pt;}
.ye3{bottom:518.666667pt;}
.yf6{bottom:520.000000pt;}
.ybe{bottom:521.333333pt;}
.yda{bottom:524.000000pt;}
.y10f{bottom:525.333333pt;}
.y7{bottom:526.666667pt;}
.y4b{bottom:528.000000pt;}
.y13e{bottom:529.333333pt;}
.y15e{bottom:530.666667pt;}
.y120{bottom:534.666667pt;}
.y1a{bottom:536.000000pt;}
.y14e{bottom:537.333333pt;}
.y9b{bottom:537.824171pt;}
.y68{bottom:541.333333pt;}
.y103{bottom:544.000000pt;}
.yb1{bottom:546.666667pt;}
.yf5{bottom:548.000000pt;}
.y96{bottom:551.863816pt;}
.yd9{bottom:552.000000pt;}
.y9a{bottom:552.943727pt;}
.y10e{bottom:553.333333pt;}
.y2c{bottom:554.666667pt;}
.y4a{bottom:556.000000pt;}
.y11f{bottom:562.666667pt;}
.y6{bottom:564.000000pt;}
.y14d{bottom:565.333333pt;}
.y167{bottom:568.000000pt;}
.y99{bottom:568.063282pt;}
.y67{bottom:569.333333pt;}
.y102{bottom:572.000000pt;}
.y158{bottom:573.333333pt;}
.yb0{bottom:574.666667pt;}
.yf4{bottom:576.000000pt;}
.yd8{bottom:580.000000pt;}
.y19{bottom:581.333333pt;}
.y2b{bottom:582.666667pt;}
.y49{bottom:584.000000pt;}
.y98{bottom:584.186800pt;}
.y13d{bottom:585.333333pt;}
.y15d{bottom:586.666667pt;}
.ye9{bottom:592.000000pt;}
.y134{bottom:593.333333pt;}
.y171{bottom:596.000000pt;}
.yc0{bottom:597.333333pt;}
.y5{bottom:601.333333pt;}
.yd7{bottom:608.000000pt;}
.y10d{bottom:609.333333pt;}
.y2a{bottom:610.666667pt;}
.y48{bottom:612.000000pt;}
.y15c{bottom:614.666667pt;}
.y101{bottom:617.333333pt;}
.y11e{bottom:618.666667pt;}
.ye8{bottom:620.000000pt;}
.y14c{bottom:621.333333pt;}
.y15a{bottom:622.666667pt;}
.y66{bottom:625.333333pt;}
.y8b{bottom:627.461549pt;}
.yaf{bottom:630.666667pt;}
.yf3{bottom:632.000000pt;}
.y18{bottom:636.000000pt;}
.y10c{bottom:637.333333pt;}
.y29{bottom:638.666667pt;}
.y47{bottom:640.000000pt;}
.y13c{bottom:641.333333pt;}
.y9d{bottom:644.741060pt;}
.ye7{bottom:648.000000pt;}
.y166{bottom:652.000000pt;}
.y65{bottom:653.333333pt;}
.y9c{bottom:659.860616pt;}
.y15b{bottom:661.333333pt;}
.yd6{bottom:664.000000pt;}
.y10b{bottom:665.333333pt;}
.y28{bottom:666.666667pt;}
.y46{bottom:668.000000pt;}
.y13b{bottom:669.333333pt;}
.ye6{bottom:676.000000pt;}
.y95{bottom:677.140082pt;}
.yf2{bottom:677.333333pt;}
.y17{bottom:680.000000pt;}
.y70{bottom:681.333333pt;}
.y154{bottom:685.333333pt;}
.y4{bottom:686.666667pt;}
.y177{bottom:689.333333pt;}
.y45{bottom:696.000000pt;}
.y13a{bottom:697.333333pt;}
.ye5{bottom:704.000000pt;}
.y64{bottom:709.333333pt;}
.y10a{bottom:710.666667pt;}
.yae{bottom:714.666667pt;}
.y16{bottom:718.666667pt;}
.yd5{bottom:720.000000pt;}
.y27{bottom:722.666667pt;}
.y44{bottom:724.000000pt;}
.y165{bottom:736.000000pt;}
.y6f{bottom:737.333333pt;}
.y87{bottom:743.018158pt;}
.yd4{bottom:748.000000pt;}
.ye4{bottom:749.333333pt;}
.y26{bottom:750.666667pt;}
.y43{bottom:752.000000pt;}
.y139{bottom:753.333333pt;}
.y15{bottom:757.333333pt;}
.y86{bottom:758.137714pt;}
.y63{bottom:765.333333pt;}
.yad{bottom:770.666667pt;}
.y85{bottom:774.337238pt;}
.y25{bottom:778.666667pt;}
.y42{bottom:780.000000pt;}
.y62{bottom:793.333333pt;}
.y14{bottom:796.000000pt;}
.yac{bottom:798.666667pt;}
.yd3{bottom:804.000000pt;}
.y24{bottom:806.666667pt;}
.y41{bottom:808.000000pt;}
.y89{bottom:810.980133pt;}
.y164{bottom:820.000000pt;}
.y6e{bottom:821.333333pt;}
.yab{bottom:826.666667pt;}
.ybd{bottom:829.333333pt;}
.yd2{bottom:832.000000pt;}
.y23{bottom:834.666667pt;}
.y40{bottom:836.000000pt;}
.y13{bottom:845.333333pt;}
.y88{bottom:846.695238pt;}
.y61{bottom:849.333333pt;}
.yd1{bottom:860.000000pt;}
.y22{bottom:862.666667pt;}
.y5a{bottom:864.000000pt;}
.yaa{bottom:876.000000pt;}
.y60{bottom:877.333333pt;}
.yd0{bottom:888.000000pt;}
.y21{bottom:890.666667pt;}
.y3f{bottom:892.000000pt;}
.y12{bottom:900.000000pt;}
.y163{bottom:904.000000pt;}
.y6d{bottom:905.333333pt;}
.y20{bottom:918.666667pt;}
.y3e{bottom:920.000000pt;}
.y5f{bottom:933.333333pt;}
.ya9{bottom:938.666667pt;}
.y11{bottom:945.333333pt;}
.y176{bottom:946.666667pt;}
.y3d{bottom:948.000000pt;}
.y3{bottom:950.666667pt;}
.y170{bottom:954.666667pt;}
.y162{bottom:960.000000pt;}
.y5e{bottom:961.333333pt;}
.ya8{bottom:966.666667pt;}
.y1f{bottom:970.666667pt;}
.y16f{bottom:974.666667pt;}
.y3c{bottom:976.000000pt;}
.y2{bottom:986.666667pt;}
.y3b{bottom:1004.000000pt;}
.y10{bottom:1013.333333pt;}
.y1{bottom:1022.666667pt;}
.y175{bottom:1030.666667pt;}
.y59{bottom:1032.000000pt;}
.h14{height:12.941915pt;}
.h1f{height:12.959555pt;}
.h20{height:12.959636pt;}
.h1c{height:14.039547pt;}
.h1e{height:14.039587pt;}
.h1a{height:14.039627pt;}
.h1d{height:16.199520pt;}
.h22{height:28.079187pt;}
.h15{height:37.258533pt;}
.h12{height:38.067402pt;}
.h19{height:38.195440pt;}
.hd{height:38.255208pt;}
.h16{height:38.958333pt;}
.h9{height:46.750000pt;}
.h10{height:48.936581pt;}
.h1b{height:49.003560pt;}
.h3{height:50.077083pt;}
.h4{height:52.593750pt;}
.h13{height:53.250714pt;}
.hc{height:56.000000pt;}
.he{height:57.375000pt;}
.h2{height:62.596354pt;}
.h23{height:62.708333pt;}
.h8{height:67.411458pt;}
.h21{height:70.603027pt;}
.hb{height:72.000000pt;}
.h11{height:73.404871pt;}
.h18{height:73.505340pt;}
.h6{height:86.062500pt;}
.h7{height:86.671875pt;}
.h1{height:95.625000pt;}
.h5{height:115.562500pt;}
.ha{height:134.822917pt;}
.hf{height:428.000000pt;}
.h17{height:909.333333pt;}
.h0{height:1122.666667pt;}
.w1{width:604.409467pt;}
.w2{width:641.742800pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x18{left:37.590888pt;}
.x29{left:41.200480pt;}
.x28{left:48.761253pt;}
.x17{left:51.982534pt;}
.x19{left:59.554929pt;}
.x16{left:61.564315pt;}
.x1a{left:63.883812pt;}
.x1b{left:65.317283pt;}
.xf{left:75.590560pt;}
.x13{left:85.328800pt;}
.x4c{left:87.590560pt;}
.x10{left:103.937013pt;}
.x7{left:111.658840pt;}
.x12{left:113.400000pt;}
.x5{left:118.408840pt;}
.x1{left:122.773413pt;}
.x22{left:124.212933pt;}
.x6{left:142.377600pt;}
.x2{left:150.450667pt;}
.x27{left:151.365013pt;}
.x33{left:154.612240pt;}
.x30{left:168.437650pt;}
.x4{left:169.990533pt;}
.x1c{left:177.757028pt;}
.x3f{left:179.196000pt;}
.x20{left:185.779333pt;}
.x46{left:191.416000pt;}
.x42{left:199.925067pt;}
.x1d{left:204.009124pt;}
.x40{left:210.335200pt;}
.x3a{left:216.992133pt;}
.x3{left:219.244933pt;}
.x48{left:221.819600pt;}
.x4b{left:225.878933pt;}
.x32{left:229.139973pt;}
.x37{left:230.341733pt;}
.x26{left:240.017033pt;}
.x44{left:241.064400pt;}
.x4a{left:248.115200pt;}
.xa{left:263.295600pt;}
.x2f{left:267.886907pt;}
.x49{left:269.212267pt;}
.x39{left:271.106800pt;}
.x24{left:273.426666pt;}
.x23{left:274.781867pt;}
.x43{left:276.155600pt;}
.x3c{left:278.489600pt;}
.x3e{left:279.983733pt;}
.x41{left:284.300133pt;}
.x9{left:285.965467pt;}
.x36{left:289.209456pt;}
.x3b{left:293.938800pt;}
.x25{left:296.827336pt;}
.x8{left:303.697867pt;}
.x45{left:305.546800pt;}
.x47{left:309.599600pt;}
.x3d{left:316.282533pt;}
.xb{left:341.359333pt;}
.x31{left:358.753440pt;}
.x14{left:363.274191pt;}
.x15{left:370.960497pt;}
.xd{left:416.305200pt;}
.xc{left:440.891200pt;}
.x35{left:442.623461pt;}
.x34{left:459.296681pt;}
.x2a{left:461.118296pt;}
.x21{left:474.169200pt;}
.x1e{left:481.552813pt;}
.x2b{left:486.911240pt;}
.x2e{left:490.512323pt;}
.x2c{left:492.306529pt;}
.x1f{left:507.257145pt;}
.x2d{left:509.963833pt;}
.xe{left:515.875600pt;}
.x38{left:702.912000pt;}
.x11{left:710.327333pt;}
}




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