
    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_fdb169cedbe35b3796a4eb6d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_ab74fd1af647996fc69152f6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_bad3625ddafd4b7af9892853.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.899000;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_8048e064a163b4da36ae7f30.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.056641;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_41a743474e69e8538f46be2d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.109000;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_eecd87ed17bfe40134087f68.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.692000;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_72f0cf5e8ac3c4753371713c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911000;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_91b48df21b199bdd6051d04d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.694336;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v4{vertical-align:-21.707859px;}
.v2{vertical-align:-2.918701px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.918335px;}
.v5{vertical-align:19.547241px;}
.v1{vertical-align:21.708206px;}
.ls1a{letter-spacing:-7.252024px;}
.ls18{letter-spacing:-4.944073px;}
.ls21{letter-spacing:-0.081396px;}
.ls23{letter-spacing:-0.052668px;}
.ls10{letter-spacing:-0.023910px;}
.lsb{letter-spacing:-0.017943px;}
.lsf{letter-spacing:-0.017933px;}
.ls19{letter-spacing:-0.016140px;}
.ls4{letter-spacing:-0.011955px;}
.ls8{letter-spacing:-0.010760px;}
.lsa{letter-spacing:-0.008972px;}
.ls3{letter-spacing:-0.008608px;}
.ls5{letter-spacing:-0.005978px;}
.ls6{letter-spacing:-0.005380px;}
.ls9{letter-spacing:-0.004486px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.005380px;}
.ls1e{letter-spacing:0.006012px;}
.lsc{letter-spacing:0.007173px;}
.ls25{letter-spacing:0.010760px;}
.ls22{letter-spacing:0.010800px;}
.lsd{letter-spacing:0.017933px;}
.ls11{letter-spacing:0.020216px;}
.lse{letter-spacing:0.023910px;}
.ls1c{letter-spacing:0.027000px;}
.ls1d{letter-spacing:0.043200px;}
.ls1f{letter-spacing:0.047880px;}
.ls20{letter-spacing:0.067032px;}
.ls1b{letter-spacing:0.143640px;}
.ls24{letter-spacing:0.287280px;}
.ls1{letter-spacing:0.318650px;}
.ls16{letter-spacing:2.935346px;}
.ls13{letter-spacing:2.989179px;}
.ls12{letter-spacing:13.454980px;}
.ls0{letter-spacing:62.037966px;}
.ls15{letter-spacing:67.297108px;}
.ls14{letter-spacing:67.297199px;}
.ls17{letter-spacing:306.604889px;}
.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;}
}
.ws9{word-spacing:-13.508778px;}
.wsf{word-spacing:-0.189000px;}
.ws11{word-spacing:-0.178200px;}
.ws15{word-spacing:-0.167580px;}
.ws10{word-spacing:-0.156600px;}
.ws14{word-spacing:-0.143640px;}
.ws13{word-spacing:-0.096192px;}
.wse{word-spacing:-0.090180px;}
.ws1{word-spacing:-0.065873px;}
.ws5{word-spacing:-0.059776px;}
.wsa{word-spacing:-0.053798px;}
.ws16{word-spacing:-0.052668px;}
.ws17{word-spacing:-0.048419px;}
.ws0{word-spacing:-0.045430px;}
.ws8{word-spacing:-0.041843px;}
.ws2{word-spacing:-0.035887px;}
.ws7{word-spacing:-0.035865px;}
.ws12{word-spacing:-0.028728px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:13.460360px;}
.ws4{word-spacing:13.481879px;}
.wsd{word-spacing:224.887540px;}
.wsc{word-spacing:278.211634px;}
.wsb{word-spacing:300.511951px;}
._19{margin-left:-13.966179px;}
._5{margin-left:-12.309040px;}
._7{margin-left:-7.907973px;}
._1{margin-left:-6.386928px;}
._12{margin-left:-5.281945px;}
._3{margin-left:-3.460304px;}
._2{margin-left:-2.143322px;}
._11{margin-left:-1.032929px;}
._15{width:1.138343px;}
._1a{width:4.938693px;}
._17{width:8.143166px;}
._b{width:9.323263px;}
._c{width:10.985633px;}
._d{width:12.664143px;}
._6{width:14.415253px;}
._8{width:15.556232px;}
._10{width:16.860418px;}
._e{width:18.178479px;}
._f{width:19.245834px;}
._0{width:20.684351px;}
._4{width:22.509188px;}
._13{width:23.846789px;}
._16{width:24.864131px;}
._28{width:26.764704px;}
._a{width:29.847450px;}
._1b{width:41.215016px;}
._18{width:49.852849px;}
._24{width:54.512581px;}
._9{width:59.095507px;}
._1d{width:67.146785px;}
._1e{width:68.153428px;}
._23{width:78.385552px;}
._26{width:89.842030px;}
._22{width:91.331098px;}
._14{width:168.097387px;}
._25{width:171.643174px;}
._1c{width:180.032094px;}
._27{width:197.940926px;}
._21{width:278.260052px;}
._1f{width:283.930099px;}
._20{width:291.706219px;}
.fc2{color:rgb(19,20,19);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:44.832000px;}
.fs6{font-size:44.858399px;}
.fs2{font-size:45.429600px;}
.fs8{font-size:47.880000px;}
.fs4{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.775599px;}
.fs9{font-size:60.120000px;}
.fs3{font-size:65.872799px;}
.fs5{font-size:71.730600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y27{bottom:49.419014px;}
.y26{bottom:62.877907px;}
.y25{bottom:76.324212px;}
.y24{bottom:89.783974px;}
.y93{bottom:94.022461px;}
.y7e{bottom:94.022754px;}
.y53{bottom:98.706429px;}
.ye4{bottom:99.380149px;}
.y133{bottom:110.667575px;}
.y92{bottom:111.950661px;}
.y7d{bottom:111.950950px;}
.y52{bottom:116.634625px;}
.y145{bottom:116.634815px;}
.ye3{bottom:117.308346px;}
.yb0{bottom:122.614921px;}
.ybd{bottom:124.411652px;}
.y10f{bottom:125.491653px;}
.y23{bottom:127.475411px;}
.y132{bottom:128.595771px;}
.y91{bottom:129.878849px;}
.y7c{bottom:129.879147px;}
.y168{bottom:131.580150px;}
.y51{bottom:134.576271px;}
.y144{bottom:134.576461px;}
.ye2{bottom:135.249992px;}
.yaf{bottom:140.556567px;}
.yf1{bottom:144.594154px;}
.y22{bottom:145.403588px;}
.y131{bottom:146.523967px;}
.y90{bottom:147.820496px;}
.y167{bottom:148.022515px;}
.y50{bottom:152.504467px;}
.y143{bottom:152.504658px;}
.ye1{bottom:153.178188px;}
.y10e{bottom:155.314648px;}
.yae{bottom:158.484763px;}
.y7b{bottom:161.334000px;}
.y21{bottom:163.345223px;}
.y130{bottom:164.465613px;}
.y166{bottom:164.465995px;}
.y8f{bottom:165.748500px;}
.y4f{bottom:170.446113px;}
.y142{bottom:170.446304px;}
.ye0{bottom:171.106384px;}
.y10d{bottom:174.183150px;}
.yad{bottom:176.412960px;}
.y10c{bottom:179.376962px;}
.y165{bottom:180.895649px;}
.y20{bottom:181.273446px;}
.y12f{bottom:182.393810px;}
.y8e{bottom:183.690147px;}
.y4e{bottom:188.374310px;}
.y141{bottom:188.374500px;}
.ydf{bottom:189.048030px;}
.y106{bottom:193.471642px;}
.yac{bottom:194.354606px;}
.y164{bottom:197.338174px;}
.y1f{bottom:199.201622px;}
.y7a{bottom:200.321125px;}
.y12e{bottom:200.322006px;}
.y140{bottom:206.302111px;}
.y4d{bottom:206.302506px;}
.yde{bottom:206.976227px;}
.yab{bottom:212.282802px;}
.y163{bottom:213.781655px;}
.y12d{bottom:218.262378px;}
.y79{bottom:218.262771px;}
.y4c{bottom:224.242674px;}
.y13f{bottom:224.243757px;}
.ydd{bottom:224.904423px;}
.y8d{bottom:229.846504px;}
.yaa{bottom:230.210998px;}
.y107{bottom:233.249149px;}
.y1e{bottom:235.071160px;}
.y12c{bottom:236.190574px;}
.y78{bottom:236.190967px;}
.y4b{bottom:242.170870px;}
.y13e{bottom:242.171954px;}
.ydc{bottom:242.846069px;}
.y162{bottom:246.654144px;}
.ya9{bottom:248.152454px;}
.y12b{bottom:254.132220px;}
.y77{bottom:254.132613px;}
.y4a{bottom:260.099067px;}
.y13d{bottom:260.100150px;}
.ydb{bottom:260.774265px;}
.y161{bottom:263.096992px;}
.ya8{bottom:266.080162px;}
.y12a{bottom:272.060416px;}
.y76{bottom:272.060810px;}
.y108{bottom:273.026656px;}
.y49{bottom:278.040713px;}
.yda{bottom:278.702462px;}
.y160{bottom:279.526025px;}
.ya7{bottom:284.008359px;}
.y129{bottom:289.988613px;}
.y75{bottom:289.989006px;}
.y48{bottom:295.968909px;}
.y15f{bottom:295.969506px;}
.yd9{bottom:296.644108px;}
.y1d{bottom:298.629174px;}
.ya6{bottom:301.949058px;}
.y74{bottom:307.929420px;}
.y128{bottom:307.930259px;}
.y15e{bottom:312.411629px;}
.y109{bottom:312.804163px;}
.y47{bottom:313.897105px;}
.yd8{bottom:314.572304px;}
.y1c{bottom:315.071999px;}
.ya5{bottom:319.877255px;}
.y73{bottom:325.857616px;}
.y127{bottom:325.858455px;}
.y15d{bottom:328.841660px;}
.y46{bottom:331.838751px;}
.yd7{bottom:332.513950px;}
.ya4{bottom:337.818900px;}
.y72{bottom:343.785812px;}
.y126{bottom:343.786652px;}
.y15c{bottom:345.285141px;}
.y1b{bottom:347.940117px;}
.y45{bottom:349.766948px;}
.yd6{bottom:350.442146px;}
.y10a{bottom:352.581670px;}
.ya3{bottom:355.747097px;}
.y125{bottom:361.727394px;}
.y71{bottom:361.727458px;}
.y15b{bottom:361.727463px;}
.y1a{bottom:364.383584px;}
.y44{bottom:367.695144px;}
.ya2{bottom:373.675293px;}
.y15a{bottom:378.157494px;}
.y124{bottom:379.655590px;}
.y70{bottom:379.655655px;}
.y19{bottom:380.827095px;}
.y13c{bottom:385.635094px;}
.y43{bottom:385.635444px;}
.ya1{bottom:391.616939px;}
.y10b{bottom:392.359163px;}
.y159{bottom:394.599480px;}
.y18{bottom:397.257103px;}
.y123{bottom:397.583787px;}
.y6f{bottom:397.583851px;}
.yd5{bottom:397.935013px;}
.y13b{bottom:403.563290px;}
.y42{bottom:403.563640px;}
.ya0{bottom:409.545135px;}
.y158{bottom:411.042961px;}
.y17{bottom:413.700615px;}
.yd4{bottom:414.378021px;}
.y122{bottom:415.525433px;}
.y6e{bottom:415.525497px;}
.y13a{bottom:421.491487px;}
.y41{bottom:421.491836px;}
.y9f{bottom:427.472439px;}
.y157{bottom:427.472992px;}
.y16{bottom:430.144082px;}
.yd3{bottom:430.807480px;}
.y6d{bottom:433.452283px;}
.y121{bottom:433.453629px;}
.y139{bottom:439.433133px;}
.y40{bottom:439.433482px;}
.y105{bottom:442.350128px;}
.y156{bottom:443.916138px;}
.y9e{bottom:445.414085px;}
.y15{bottom:446.574112px;}
.yd2{bottom:447.250671px;}
.y120{bottom:451.380073px;}
.y6c{bottom:451.380479px;}
.y138{bottom:457.361329px;}
.y3f{bottom:457.361679px;}
.y155{bottom:460.358482px;}
.y14{bottom:463.017601px;}
.y9d{bottom:463.342281px;}
.y11f{bottom:469.321719px;}
.y6b{bottom:469.322125px;}
.yd1{bottom:470.457000px;}
.y104{bottom:473.974640px;}
.y137{bottom:475.302975px;}
.y3e{bottom:475.303325px;}
.y154{bottom:476.788514px;}
.y13{bottom:479.461068px;}
.y9c{bottom:481.270478px;}
.y11e{bottom:487.249915px;}
.y6a{bottom:487.250321px;}
.yd0{bottom:492.326981px;}
.y103{bottom:492.538650px;}
.y153{bottom:493.230660px;}
.y136{bottom:493.231171px;}
.y3d{bottom:493.231521px;}
.y102{bottom:494.500075px;}
.y12{bottom:495.891121px;}
.y11d{bottom:505.178112px;}
.y69{bottom:505.178518px;}
.yf9{bottom:508.636642px;}
.y152{bottom:509.674141px;}
.y135{bottom:511.159368px;}
.y9b{bottom:511.159515px;}
.y11{bottom:512.329529px;}
.ycf{bottom:514.210510px;}
.y11c{bottom:523.119757px;}
.y68{bottom:523.120164px;}
.y151{bottom:526.104172px;}
.y10{bottom:528.772995px;}
.y3c{bottom:529.101013px;}
.yfa{bottom:533.127262px;}
.yce{bottom:537.578690px;}
.y11b{bottom:541.047954px;}
.y67{bottom:541.048360px;}
.y150{bottom:542.545998px;}
.yf{bottom:545.203026px;}
.y9a{bottom:547.029007px;}
.ycd{bottom:554.022171px;}
.yfb{bottom:557.617882px;}
.y14f{bottom:558.989479px;}
.y11a{bottom:558.989600px;}
.y66{bottom:558.990006px;}
.ye{bottom:561.646515px;}
.y134{bottom:564.957138px;}
.y14e{bottom:575.419511px;}
.y65{bottom:576.916384px;}
.y3b{bottom:576.917629px;}
.y119{bottom:576.917796px;}
.yd{bottom:578.089982px;}
.yfc{bottom:582.108502px;}
.ycc{bottom:589.986008px;}
.y14d{bottom:591.861656px;}
.yc{bottom:594.520035px;}
.y64{bottom:594.844580px;}
.y3a{bottom:594.845826px;}
.y99{bottom:594.845982px;}
.y118{bottom:594.845992px;}
.yfd{bottom:606.599122px;}
.y14c{bottom:608.291687px;}
.yb{bottom:610.963524px;}
.y63{bottom:612.786226px;}
.y117{bottom:612.786781px;}
.y39{bottom:612.787472px;}
.y98{bottom:612.787627px;}
.y14b{bottom:624.735168px;}
.ya{bottom:627.407002px;}
.y62{bottom:630.714423px;}
.y8c{bottom:630.714615px;}
.y116{bottom:630.714977px;}
.y38{bottom:630.715668px;}
.yfe{bottom:631.089742px;}
.ybc{bottom:632.213470px;}
.ycb{bottom:636.693629px;}
.y14a{bottom:641.177994px;}
.y9{bottom:643.837033px;}
.y61{bottom:648.642619px;}
.y8b{bottom:648.642838px;}
.y37{bottom:648.642970px;}
.yf0{bottom:648.643158px;}
.y115{bottom:648.643173px;}
.ybb{bottom:650.155106px;}
.yca{bottom:654.621826px;}
.yff{bottom:655.580362px;}
.y149{bottom:657.607025px;}
.y8{bottom:660.280510px;}
.y60{bottom:666.584265px;}
.y8a{bottom:666.584473px;}
.y36{bottom:666.584616px;}
.y114{bottom:666.584819px;}
.yef{bottom:666.584839px;}
.yba{bottom:668.083282px;}
.yc9{bottom:672.550022px;}
.y148{bottom:674.050506px;}
.y100{bottom:680.070982px;}
.y5f{bottom:684.512461px;}
.y89{bottom:684.512650px;}
.y35{bottom:684.512813px;}
.yee{bottom:684.513016px;}
.yb9{bottom:686.011093px;}
.yc8{bottom:690.491668px;}
.yed{bottom:702.439774px;}
.y113{bottom:702.439903px;}
.y5e{bottom:702.440658px;}
.y88{bottom:702.440872px;}
.y34{bottom:702.441009px;}
.yb8{bottom:703.952728px;}
.y101{bottom:704.561602px;}
.yc7{bottom:708.419864px;}
.y147{bottom:708.421509px;}
.yec{bottom:720.381409px;}
.y33{bottom:720.381549px;}
.y87{bottom:720.381775px;}
.y5d{bottom:720.382304px;}
.y7{bottom:721.489195px;}
.yb7{bottom:721.880905px;}
.yc6{bottom:726.348061px;}
.yeb{bottom:738.309586px;}
.y32{bottom:738.309745px;}
.y86{bottom:738.309998px;}
.y5c{bottom:738.310500px;}
.y6{bottom:739.417510px;}
.yb6{bottom:739.808624px;}
.yc5{bottom:744.289707px;}
.y146{bottom:756.237388px;}
.y97{bottom:756.237637px;}
.yea{bottom:756.237808px;}
.y31{bottom:756.237942px;}
.y85{bottom:756.238174px;}
.y5b{bottom:756.238530px;}
.y5{bottom:757.359007px;}
.yf8{bottom:757.574916px;}
.yb5{bottom:757.750259px;}
.yc4{bottom:762.217903px;}
.y5a{bottom:774.179034px;}
.y96{bottom:774.179283px;}
.ye9{bottom:774.179443px;}
.y30{bottom:774.179588px;}
.y84{bottom:774.179810px;}
.yf7{bottom:775.502163px;}
.yb4{bottom:775.678436px;}
.yc3{bottom:780.159549px;}
.y4{bottom:787.396554px;}
.y59{bottom:792.107230px;}
.y95{bottom:792.107479px;}
.ye8{bottom:792.107666px;}
.y2f{bottom:792.107784px;}
.y83{bottom:792.108032px;}
.yf6{bottom:793.430359px;}
.yb3{bottom:793.620117px;}
.yc2{bottom:798.087745px;}
.y58{bottom:810.035427px;}
.y82{bottom:810.035431px;}
.y2e{bottom:810.035676px;}
.ye7{bottom:810.035797px;}
.y112{bottom:810.035981px;}
.yf5{bottom:811.372005px;}
.yc1{bottom:816.015942px;}
.yb2{bottom:821.254669px;}
.y111{bottom:827.976951px;}
.y57{bottom:827.977073px;}
.y81{bottom:827.977112px;}
.y2d{bottom:827.977322px;}
.ye6{bottom:827.977478px;}
.yf4{bottom:829.300202px;}
.yc0{bottom:833.957572px;}
.y110{bottom:845.905147px;}
.ye5{bottom:845.905151px;}
.y80{bottom:845.905243px;}
.y56{bottom:845.905269px;}
.y2c{bottom:845.905518px;}
.y3{bottom:845.931951px;}
.yf3{bottom:847.241848px;}
.ybf{bottom:851.885768px;}
.y2b{bottom:863.833161px;}
.y94{bottom:863.833344px;}
.yb1{bottom:863.833374px;}
.y55{bottom:863.833466px;}
.yf2{bottom:865.170044px;}
.ybe{bottom:869.813965px;}
.y2{bottom:872.824623px;}
.y2a{bottom:881.774807px;}
.y7f{bottom:881.774963px;}
.y54{bottom:881.774990px;}
.y29{bottom:899.703186px;}
.y1{bottom:899.730200px;}
.y28{bottom:934.519684px;}
.h9{height:30.862579px;}
.h1b{height:32.414760px;}
.h1e{height:33.276600px;}
.h4{height:37.013299px;}
.h23{height:37.014641px;}
.h1f{height:37.015193px;}
.h24{height:37.015236px;}
.h20{height:37.016748px;}
.h21{height:37.017844px;}
.h6{height:37.228493px;}
.h22{height:37.354163px;}
.h1d{height:37.530000px;}
.h8{height:41.125612px;}
.ha{height:41.126831px;}
.h16{height:41.127260px;}
.h14{height:41.127563px;}
.h15{height:41.127626px;}
.h11{height:41.128541px;}
.h13{height:41.129397px;}
.h1a{height:41.129411px;}
.hb{height:41.129855px;}
.h10{height:41.129951px;}
.hd{height:41.130178px;}
.hc{height:41.130928px;}
.hf{height:41.130997px;}
.he{height:41.132073px;}
.h17{height:41.135762px;}
.h12{height:41.364714px;}
.h1c{height:41.783400px;}
.h5{height:43.395975px;}
.h7{height:49.637575px;}
.h18{height:50.802806px;}
.h19{height:50.804879px;}
.h2{height:59.565422px;}
.h3{height:78.009151px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x9{left:59.103019px;}
.x4{left:64.300499px;}
.x16{left:67.000500px;}
.xb{left:80.365499px;}
.xd{left:81.512999px;}
.x1b{left:87.088497px;}
.x8{left:101.628028px;}
.xc{left:102.775497px;}
.x1c{left:104.651997px;}
.x3{left:111.752444px;}
.x6{left:124.794028px;}
.x19{left:129.916350px;}
.x15{left:131.417850px;}
.x2{left:136.039125px;}
.x13{left:139.437904px;}
.x17{left:145.788002px;}
.x1{left:148.324499px;}
.x7{left:173.219291px;}
.x14{left:180.447124px;}
.x18{left:186.665552px;}
.x1a{left:193.443008px;}
.xa{left:205.685989px;}
.x12{left:211.990494px;}
.x5{left:235.561507px;}
.xf{left:245.983498px;}
.xe{left:249.520500px;}
.x10{left:421.834488px;}
.x11{left:505.210510px;}
@media print{
.v4{vertical-align:-19.295875pt;}
.v2{vertical-align:-2.594401pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.594076pt;}
.v5{vertical-align:17.375326pt;}
.v1{vertical-align:19.296183pt;}
.ls1a{letter-spacing:-6.446244pt;}
.ls18{letter-spacing:-4.394732pt;}
.ls21{letter-spacing:-0.072352pt;}
.ls23{letter-spacing:-0.046816pt;}
.ls10{letter-spacing:-0.021254pt;}
.lsb{letter-spacing:-0.015950pt;}
.lsf{letter-spacing:-0.015940pt;}
.ls19{letter-spacing:-0.014346pt;}
.ls4{letter-spacing:-0.010627pt;}
.ls8{letter-spacing:-0.009564pt;}
.lsa{letter-spacing:-0.007975pt;}
.ls3{letter-spacing:-0.007651pt;}
.ls5{letter-spacing:-0.005313pt;}
.ls6{letter-spacing:-0.004782pt;}
.ls9{letter-spacing:-0.003987pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.004782pt;}
.ls1e{letter-spacing:0.005344pt;}
.lsc{letter-spacing:0.006376pt;}
.ls25{letter-spacing:0.009564pt;}
.ls22{letter-spacing:0.009600pt;}
.lsd{letter-spacing:0.015940pt;}
.ls11{letter-spacing:0.017970pt;}
.lse{letter-spacing:0.021254pt;}
.ls1c{letter-spacing:0.024000pt;}
.ls1d{letter-spacing:0.038400pt;}
.ls1f{letter-spacing:0.042560pt;}
.ls20{letter-spacing:0.059584pt;}
.ls1b{letter-spacing:0.127680pt;}
.ls24{letter-spacing:0.255360pt;}
.ls1{letter-spacing:0.283244pt;}
.ls16{letter-spacing:2.609197pt;}
.ls13{letter-spacing:2.657048pt;}
.ls12{letter-spacing:11.959982pt;}
.ls0{letter-spacing:55.144859pt;}
.ls15{letter-spacing:59.819651pt;}
.ls14{letter-spacing:59.819733pt;}
.ls17{letter-spacing:272.537679pt;}
.ws9{word-spacing:-12.007803pt;}
.wsf{word-spacing:-0.168000pt;}
.ws11{word-spacing:-0.158400pt;}
.ws15{word-spacing:-0.148960pt;}
.ws10{word-spacing:-0.139200pt;}
.ws14{word-spacing:-0.127680pt;}
.ws13{word-spacing:-0.085504pt;}
.wse{word-spacing:-0.080160pt;}
.ws1{word-spacing:-0.058554pt;}
.ws5{word-spacing:-0.053134pt;}
.wsa{word-spacing:-0.047821pt;}
.ws16{word-spacing:-0.046816pt;}
.ws17{word-spacing:-0.043039pt;}
.ws0{word-spacing:-0.040382pt;}
.ws8{word-spacing:-0.037194pt;}
.ws2{word-spacing:-0.031899pt;}
.ws7{word-spacing:-0.031880pt;}
.ws12{word-spacing:-0.025536pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:11.964764pt;}
.ws4{word-spacing:11.983892pt;}
.wsd{word-spacing:199.900035pt;}
.wsc{word-spacing:247.299230pt;}
.wsb{word-spacing:267.121734pt;}
._19{margin-left:-12.414381pt;}
._5{margin-left:-10.941369pt;}
._7{margin-left:-7.029309pt;}
._1{margin-left:-5.677269pt;}
._12{margin-left:-4.695062pt;}
._3{margin-left:-3.075826pt;}
._2{margin-left:-1.905175pt;}
._11{margin-left:-0.918159pt;}
._15{width:1.011860pt;}
._1a{width:4.389950pt;}
._17{width:7.238370pt;}
._b{width:8.287345pt;}
._c{width:9.765007pt;}
._d{width:11.257016pt;}
._6{width:12.813558pt;}
._8{width:13.827761pt;}
._10{width:14.987038pt;}
._e{width:16.158648pt;}
._f{width:17.107408pt;}
._0{width:18.386090pt;}
._4{width:20.008167pt;}
._13{width:21.197146pt;}
._16{width:22.101450pt;}
._28{width:23.790848pt;}
._a{width:26.531067pt;}
._1b{width:36.635570pt;}
._18{width:44.313644pt;}
._24{width:48.455628pt;}
._9{width:52.529339pt;}
._1d{width:59.686031pt;}
._1e{width:60.580824pt;}
._23{width:69.676046pt;}
._26{width:79.859582pt;}
._22{width:81.183198pt;}
._14{width:149.419900pt;}
._25{width:152.571710pt;}
._1c{width:160.028528pt;}
._27{width:175.947490pt;}
._21{width:247.342269pt;}
._1f{width:252.382310pt;}
._20{width:259.294417pt;}
.fs7{font-size:39.850667pt;}
.fs6{font-size:39.874133pt;}
.fs2{font-size:40.381867pt;}
.fs8{font-size:42.560000pt;}
.fs4{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.133865pt;}
.fs9{font-size:53.440000pt;}
.fs3{font-size:58.553599pt;}
.fs5{font-size:63.760533pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:43.928013pt;}
.y26{bottom:55.891473pt;}
.y25{bottom:67.843744pt;}
.y24{bottom:79.807977pt;}
.y93{bottom:83.575521pt;}
.y7e{bottom:83.575781pt;}
.y53{bottom:87.739048pt;}
.ye4{bottom:88.337911pt;}
.y133{bottom:98.371177pt;}
.y92{bottom:99.511698pt;}
.y7d{bottom:99.511956pt;}
.y52{bottom:103.675222pt;}
.y145{bottom:103.675391pt;}
.ye3{bottom:104.274085pt;}
.yb0{bottom:108.991041pt;}
.ybd{bottom:110.588135pt;}
.y10f{bottom:111.548136pt;}
.y23{bottom:113.311476pt;}
.y132{bottom:114.307352pt;}
.y91{bottom:115.447866pt;}
.y7c{bottom:115.448130pt;}
.y168{bottom:116.960133pt;}
.y51{bottom:119.623352pt;}
.y144{bottom:119.623521pt;}
.ye2{bottom:120.222215pt;}
.yaf{bottom:124.939171pt;}
.yf1{bottom:128.528137pt;}
.y22{bottom:129.247634pt;}
.y131{bottom:130.243527pt;}
.y90{bottom:131.395996pt;}
.y167{bottom:131.575568pt;}
.y50{bottom:135.559527pt;}
.y143{bottom:135.559696pt;}
.ye1{bottom:136.158389pt;}
.y10e{bottom:138.057465pt;}
.yae{bottom:140.875345pt;}
.y7b{bottom:143.408000pt;}
.y21{bottom:145.195754pt;}
.y130{bottom:146.191656pt;}
.y166{bottom:146.191996pt;}
.y8f{bottom:147.332000pt;}
.y4f{bottom:151.507656pt;}
.y142{bottom:151.507825pt;}
.ye0{bottom:152.094564pt;}
.y10d{bottom:154.829467pt;}
.yad{bottom:156.811520pt;}
.y10c{bottom:159.446189pt;}
.y165{bottom:160.796132pt;}
.y20{bottom:161.131952pt;}
.y12f{bottom:162.127831pt;}
.y8e{bottom:163.280131pt;}
.y4e{bottom:167.443831pt;}
.y141{bottom:167.444000pt;}
.ydf{bottom:168.042694pt;}
.y106{bottom:171.974792pt;}
.yac{bottom:172.759650pt;}
.y164{bottom:175.411710pt;}
.y1f{bottom:177.068109pt;}
.y7a{bottom:178.063222pt;}
.y12e{bottom:178.064005pt;}
.y140{bottom:183.379655pt;}
.y4d{bottom:183.380005pt;}
.yde{bottom:183.978868pt;}
.yab{bottom:188.695824pt;}
.y163{bottom:190.028137pt;}
.y12d{bottom:194.011002pt;}
.y79{bottom:194.011352pt;}
.y4c{bottom:199.326821pt;}
.y13f{bottom:199.327784pt;}
.ydd{bottom:199.915043pt;}
.y8d{bottom:204.308004pt;}
.yaa{bottom:204.631999pt;}
.y107{bottom:207.332576pt;}
.y1e{bottom:208.952142pt;}
.y12c{bottom:209.947177pt;}
.y78{bottom:209.947527pt;}
.y4b{bottom:215.262996pt;}
.y13e{bottom:215.263959pt;}
.ydc{bottom:215.863172pt;}
.y162{bottom:219.248128pt;}
.ya9{bottom:220.579959pt;}
.y12b{bottom:225.895307pt;}
.y77{bottom:225.895656pt;}
.y4a{bottom:231.199170pt;}
.y13d{bottom:231.200133pt;}
.ydb{bottom:231.799347pt;}
.y161{bottom:233.863993pt;}
.ya8{bottom:236.515700pt;}
.y12a{bottom:241.831481pt;}
.y76{bottom:241.831831pt;}
.y108{bottom:242.690360pt;}
.y49{bottom:247.147300pt;}
.yda{bottom:247.735522pt;}
.y160{bottom:248.467578pt;}
.ya7{bottom:252.451874pt;}
.y129{bottom:257.767656pt;}
.y75{bottom:257.768005pt;}
.y48{bottom:263.083475pt;}
.y15f{bottom:263.084005pt;}
.yd9{bottom:263.683651pt;}
.y1d{bottom:265.448154pt;}
.ya6{bottom:268.399163pt;}
.y74{bottom:273.715040pt;}
.y128{bottom:273.715786pt;}
.y15e{bottom:277.699225pt;}
.y109{bottom:278.048144pt;}
.y47{bottom:279.019649pt;}
.yd8{bottom:279.619826pt;}
.y1c{bottom:280.063999pt;}
.ya5{bottom:284.335337pt;}
.y73{bottom:289.651214pt;}
.y127{bottom:289.651960pt;}
.y15d{bottom:292.303698pt;}
.y46{bottom:294.967779pt;}
.yd7{bottom:295.567955pt;}
.ya4{bottom:300.283467pt;}
.y72{bottom:305.587389pt;}
.y126{bottom:305.588135pt;}
.y15c{bottom:306.920125pt;}
.y1b{bottom:309.280104pt;}
.y45{bottom:310.903953pt;}
.yd6{bottom:311.504130pt;}
.y10a{bottom:313.405928pt;}
.ya3{bottom:316.219642pt;}
.y125{bottom:321.535461pt;}
.y71{bottom:321.535519pt;}
.y15b{bottom:321.535522pt;}
.y1a{bottom:323.896519pt;}
.y44{bottom:326.840128pt;}
.ya2{bottom:332.155816pt;}
.y15a{bottom:336.139995pt;}
.y124{bottom:337.471636pt;}
.y70{bottom:337.471693pt;}
.y19{bottom:338.512974pt;}
.y13c{bottom:342.786750pt;}
.y43{bottom:342.787061pt;}
.ya1{bottom:348.103946pt;}
.y10b{bottom:348.763701pt;}
.y159{bottom:350.755093pt;}
.y18{bottom:353.117425pt;}
.y123{bottom:353.407810pt;}
.y6f{bottom:353.407868pt;}
.yd5{bottom:353.720011pt;}
.y13b{bottom:358.722925pt;}
.y42{bottom:358.723236pt;}
.ya0{bottom:364.040120pt;}
.y158{bottom:365.371521pt;}
.y17{bottom:367.733880pt;}
.yd4{bottom:368.336019pt;}
.y122{bottom:369.355940pt;}
.y6e{bottom:369.355997pt;}
.y13a{bottom:374.659099pt;}
.y41{bottom:374.659410pt;}
.y9f{bottom:379.975501pt;}
.y157{bottom:379.975993pt;}
.y16{bottom:382.350295pt;}
.yd3{bottom:382.939982pt;}
.y6d{bottom:385.290918pt;}
.y121{bottom:385.292115pt;}
.y139{bottom:390.607229pt;}
.y40{bottom:390.607540pt;}
.y105{bottom:393.200114pt;}
.y156{bottom:394.592123pt;}
.y9e{bottom:395.923631pt;}
.y15{bottom:396.954767pt;}
.yd2{bottom:397.556152pt;}
.y120{bottom:401.226731pt;}
.y6c{bottom:401.227093pt;}
.y138{bottom:406.543403pt;}
.y3f{bottom:406.543714pt;}
.y155{bottom:409.207540pt;}
.y14{bottom:411.571201pt;}
.y9d{bottom:411.859805pt;}
.y11f{bottom:417.174861pt;}
.y6b{bottom:417.175222pt;}
.yd1{bottom:418.184000pt;}
.y104{bottom:421.310791pt;}
.y137{bottom:422.491533pt;}
.y3e{bottom:422.491844pt;}
.y154{bottom:423.812012pt;}
.y13{bottom:426.187616pt;}
.y9c{bottom:427.795980pt;}
.y11e{bottom:433.111036pt;}
.y6a{bottom:433.111397pt;}
.yd0{bottom:437.623983pt;}
.y103{bottom:437.812133pt;}
.y153{bottom:438.427253pt;}
.y136{bottom:438.427708pt;}
.y3d{bottom:438.428019pt;}
.y102{bottom:439.555622pt;}
.y12{bottom:440.792108pt;}
.y11d{bottom:449.047210pt;}
.y69{bottom:449.047571pt;}
.yf9{bottom:452.121460pt;}
.y152{bottom:453.043681pt;}
.y135{bottom:454.363882pt;}
.y9b{bottom:454.364014pt;}
.y11{bottom:455.404026pt;}
.ycf{bottom:457.076009pt;}
.y11c{bottom:464.995340pt;}
.y68{bottom:464.995701pt;}
.y151{bottom:467.648153pt;}
.y10{bottom:470.020440pt;}
.y3c{bottom:470.312012pt;}
.yfa{bottom:473.890900pt;}
.yce{bottom:477.847724pt;}
.y11b{bottom:480.931515pt;}
.y67{bottom:480.931876pt;}
.y150{bottom:482.263109pt;}
.yf{bottom:484.624912pt;}
.y9a{bottom:486.248007pt;}
.ycd{bottom:492.464152pt;}
.yfb{bottom:495.660340pt;}
.y14f{bottom:496.879537pt;}
.y11a{bottom:496.879644pt;}
.y66{bottom:496.880005pt;}
.ye{bottom:499.241347pt;}
.y134{bottom:502.184123pt;}
.y14e{bottom:511.484009pt;}
.y65{bottom:512.814564pt;}
.y3b{bottom:512.815671pt;}
.y119{bottom:512.815819pt;}
.yd{bottom:513.857761pt;}
.yfc{bottom:517.429780pt;}
.ycc{bottom:524.432007pt;}
.y14d{bottom:526.099249pt;}
.yc{bottom:528.462254pt;}
.y64{bottom:528.750738pt;}
.y3a{bottom:528.751845pt;}
.y99{bottom:528.751984pt;}
.y118{bottom:528.751993pt;}
.yfd{bottom:539.199220pt;}
.y14c{bottom:540.703722pt;}
.yb{bottom:543.078688pt;}
.y63{bottom:544.698868pt;}
.y117{bottom:544.699361pt;}
.y39{bottom:544.699975pt;}
.y98{bottom:544.700113pt;}
.y14b{bottom:555.320149pt;}
.ya{bottom:557.695113pt;}
.y62{bottom:560.635042pt;}
.y8c{bottom:560.635213pt;}
.y116{bottom:560.635535pt;}
.y38{bottom:560.636149pt;}
.yfe{bottom:560.968660pt;}
.ybc{bottom:561.967529pt;}
.ycb{bottom:565.949893pt;}
.y14a{bottom:569.935995pt;}
.y9{bottom:572.299585pt;}
.y61{bottom:576.571217pt;}
.y8b{bottom:576.571411pt;}
.y37{bottom:576.571529pt;}
.yf0{bottom:576.571696pt;}
.y115{bottom:576.571710pt;}
.ybb{bottom:577.915649pt;}
.yca{bottom:581.886067pt;}
.yff{bottom:582.738100pt;}
.y149{bottom:584.539578pt;}
.y8{bottom:586.916009pt;}
.y60{bottom:592.519347pt;}
.y8a{bottom:592.519531pt;}
.y36{bottom:592.519659pt;}
.y114{bottom:592.519839pt;}
.yef{bottom:592.519857pt;}
.yba{bottom:593.851807pt;}
.yc9{bottom:597.822242pt;}
.y148{bottom:599.156005pt;}
.y100{bottom:604.507540pt;}
.y5f{bottom:608.455521pt;}
.y89{bottom:608.455688pt;}
.y35{bottom:608.455833pt;}
.yee{bottom:608.456014pt;}
.yb9{bottom:609.787638pt;}
.yc8{bottom:613.770372pt;}
.yed{bottom:624.390910pt;}
.y113{bottom:624.391025pt;}
.y5e{bottom:624.391696pt;}
.y88{bottom:624.391886pt;}
.y34{bottom:624.392008pt;}
.yb8{bottom:625.735758pt;}
.y101{bottom:626.276980pt;}
.yc7{bottom:629.706546pt;}
.y147{bottom:629.708008pt;}
.yec{bottom:640.339030pt;}
.y33{bottom:640.339155pt;}
.y87{bottom:640.339355pt;}
.y5d{bottom:640.339825pt;}
.y7{bottom:641.323729pt;}
.yb7{bottom:641.671916pt;}
.yc6{bottom:645.642721pt;}
.yeb{bottom:656.275187pt;}
.y32{bottom:656.275329pt;}
.y86{bottom:656.275553pt;}
.y5c{bottom:656.276000pt;}
.y6{bottom:657.260008pt;}
.yb6{bottom:657.607666pt;}
.yc5{bottom:661.590850pt;}
.y146{bottom:672.211012pt;}
.y97{bottom:672.211233pt;}
.yea{bottom:672.211385pt;}
.y31{bottom:672.211504pt;}
.y85{bottom:672.211711pt;}
.y5b{bottom:672.212026pt;}
.y5{bottom:673.208007pt;}
.yf8{bottom:673.399926pt;}
.yb5{bottom:673.555786pt;}
.yc4{bottom:677.527025pt;}
.y5a{bottom:688.159141pt;}
.y96{bottom:688.159363pt;}
.ye9{bottom:688.159505pt;}
.y30{bottom:688.159634pt;}
.y84{bottom:688.159831pt;}
.yf7{bottom:689.335256pt;}
.yb4{bottom:689.491943pt;}
.yc3{bottom:693.475155pt;}
.y4{bottom:699.908048pt;}
.y59{bottom:704.095316pt;}
.y95{bottom:704.095537pt;}
.ye8{bottom:704.095703pt;}
.y2f{bottom:704.095808pt;}
.y83{bottom:704.096029pt;}
.yf6{bottom:705.271431pt;}
.yb3{bottom:705.440104pt;}
.yc2{bottom:709.411329pt;}
.y58{bottom:720.031491pt;}
.y82{bottom:720.031494pt;}
.y2e{bottom:720.031712pt;}
.ye7{bottom:720.031820pt;}
.y112{bottom:720.031983pt;}
.yf5{bottom:721.219560pt;}
.yc1{bottom:725.347504pt;}
.yb2{bottom:730.004150pt;}
.y111{bottom:735.979512pt;}
.y57{bottom:735.979620pt;}
.y81{bottom:735.979655pt;}
.y2d{bottom:735.979841pt;}
.ye6{bottom:735.979980pt;}
.yf4{bottom:737.155735pt;}
.yc0{bottom:741.295620pt;}
.y110{bottom:751.915687pt;}
.ye5{bottom:751.915690pt;}
.y80{bottom:751.915771pt;}
.y56{bottom:751.915795pt;}
.y2c{bottom:751.916016pt;}
.y3{bottom:751.939512pt;}
.yf3{bottom:753.103864pt;}
.ybf{bottom:757.231794pt;}
.y2b{bottom:767.851698pt;}
.y94{bottom:767.851861pt;}
.yb1{bottom:767.851888pt;}
.y55{bottom:767.851969pt;}
.yf2{bottom:769.040039pt;}
.ybe{bottom:773.167969pt;}
.y2{bottom:775.844109pt;}
.y2a{bottom:783.799828pt;}
.y7f{bottom:783.799967pt;}
.y54{bottom:783.799991pt;}
.y29{bottom:799.736165pt;}
.y1{bottom:799.760178pt;}
.y28{bottom:830.684164pt;}
.h9{height:27.433403pt;}
.h1b{height:28.813120pt;}
.h1e{height:29.579200pt;}
.h4{height:32.900710pt;}
.h23{height:32.901903pt;}
.h1f{height:32.902394pt;}
.h24{height:32.902432pt;}
.h20{height:32.903776pt;}
.h21{height:32.904750pt;}
.h6{height:33.091994pt;}
.h22{height:33.203700pt;}
.h1d{height:33.360000pt;}
.h8{height:36.556099pt;}
.ha{height:36.557183pt;}
.h16{height:36.557564pt;}
.h14{height:36.557834pt;}
.h15{height:36.557890pt;}
.h11{height:36.558704pt;}
.h13{height:36.559464pt;}
.h1a{height:36.559476pt;}
.hb{height:36.559871pt;}
.h10{height:36.559957pt;}
.hd{height:36.560158pt;}
.hc{height:36.560825pt;}
.hf{height:36.560886pt;}
.he{height:36.561843pt;}
.h17{height:36.565122pt;}
.h12{height:36.768635pt;}
.h1c{height:37.140800pt;}
.h5{height:38.574200pt;}
.h7{height:44.122289pt;}
.h18{height:45.158050pt;}
.h19{height:45.159893pt;}
.h2{height:52.947042pt;}
.h3{height:69.341468pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x9{left:52.536017pt;}
.x4{left:57.155999pt;}
.x16{left:59.556000pt;}
.xb{left:71.436000pt;}
.xd{left:72.455999pt;}
.x1b{left:77.411997pt;}
.x8{left:90.336025pt;}
.xc{left:91.355998pt;}
.x1c{left:93.023997pt;}
.x3{left:99.335506pt;}
.x6{left:110.928025pt;}
.x19{left:115.481200pt;}
.x15{left:116.815867pt;}
.x2{left:120.923666pt;}
.x13{left:123.944804pt;}
.x17{left:129.589335pt;}
.x1{left:131.843999pt;}
.x7{left:153.972703pt;}
.x14{left:160.397444pt;}
.x18{left:165.924935pt;}
.x1a{left:171.949341pt;}
.xa{left:182.831991pt;}
.x12{left:188.435994pt;}
.x5{left:209.388006pt;}
.xf{left:218.651998pt;}
.xe{left:221.796000pt;}
.x10{left:374.963989pt;}
.x11{left:449.076009pt;}
}




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