
    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_d073e324b702194b9bb6f45b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.991699;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_ed3be81eeca53e529d34ecab.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.997559;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_7b6363b388d3a537ba7b8ff6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.115000;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_acd7524e8ed8e745cda5cb10.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991699;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_0d0603e40b07619ee60f4387.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.155000;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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;}
.m1{transform:matrix(0.241849,0.000000,-0.063316,0.241849,0,0);-ms-transform:matrix(0.241849,0.000000,-0.063316,0.241849,0,0);-webkit-transform:matrix(0.241849,0.000000,-0.063316,0.241849,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);}
.m2{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;}
.ls0{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.012000px;}
.ls31{letter-spacing:0.042000px;}
.ls35{letter-spacing:0.048000px;}
.ls6{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.078000px;}
.ls33{letter-spacing:0.084000px;}
.ls1c{letter-spacing:0.120000px;}
.ls43{letter-spacing:0.156000px;}
.ls19{letter-spacing:0.186000px;}
.ls38{letter-spacing:0.228000px;}
.ls3b{letter-spacing:0.258000px;}
.ls2{letter-spacing:0.294000px;}
.ls7{letter-spacing:0.300000px;}
.ls2a{letter-spacing:0.306000px;}
.ls1{letter-spacing:0.324000px;}
.lsc{letter-spacing:0.348000px;}
.ls3f{letter-spacing:0.366000px;}
.ls22{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.468000px;}
.ls2c{letter-spacing:0.516000px;}
.ls2d{letter-spacing:0.552000px;}
.ls28{letter-spacing:0.564000px;}
.ls3e{letter-spacing:0.612000px;}
.ls29{letter-spacing:0.636000px;}
.ls3a{letter-spacing:0.684000px;}
.ls2f{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.762000px;}
.ls36{letter-spacing:0.780000px;}
.ls24{letter-spacing:0.816000px;}
.ls15{letter-spacing:0.864000px;}
.ls2b{letter-spacing:0.894000px;}
.ls42{letter-spacing:0.906000px;}
.ls37{letter-spacing:0.936000px;}
.ls39{letter-spacing:0.978000px;}
.ls1d{letter-spacing:1.044000px;}
.ls10{letter-spacing:1.062000px;}
.ls27{letter-spacing:1.092000px;}
.ls1b{letter-spacing:1.158000px;}
.ls46{letter-spacing:1.200000px;}
.ls45{letter-spacing:1.206000px;}
.ls4{letter-spacing:1.212000px;}
.lsf{letter-spacing:1.296000px;}
.ls23{letter-spacing:1.308000px;}
.ls30{letter-spacing:1.314000px;}
.ls20{letter-spacing:1.590000px;}
.ls26{letter-spacing:1.632000px;}
.ls17{letter-spacing:1.698000px;}
.ls21{letter-spacing:1.818000px;}
.ls8{letter-spacing:1.866000px;}
.ls14{letter-spacing:1.884000px;}
.ls3c{letter-spacing:1.890000px;}
.ls11{letter-spacing:1.944000px;}
.ls9{letter-spacing:2.010000px;}
.ls2e{letter-spacing:2.064000px;}
.lsb{letter-spacing:2.082000px;}
.ls1a{letter-spacing:2.184000px;}
.ls40{letter-spacing:2.280000px;}
.ls1e{letter-spacing:2.304000px;}
.ls12{letter-spacing:2.364000px;}
.lsd{letter-spacing:2.574000px;}
.ls1f{letter-spacing:2.604000px;}
.ls34{letter-spacing:2.616000px;}
.ls13{letter-spacing:2.712000px;}
.lse{letter-spacing:2.832000px;}
.ls41{letter-spacing:2.904000px;}
.ls18{letter-spacing:3.558000px;}
.ls25{letter-spacing:4.110000px;}
.ls16{letter-spacing:4.818000px;}
.ls44{letter-spacing:10.074000px;}
.ls3d{letter-spacing:10.872000px;}
.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;}
}
.ws45{word-spacing:-17.574000px;}
.ws1{word-spacing:0.000000px;}
.ws35{word-spacing:0.012000px;}
.ws39{word-spacing:0.018000px;}
.ws38{word-spacing:0.078000px;}
.ws3c{word-spacing:0.126000px;}
.ws7{word-spacing:0.186000px;}
.ws6{word-spacing:0.204000px;}
.ws3{word-spacing:0.240000px;}
.ws3a{word-spacing:0.246000px;}
.ws42{word-spacing:0.378000px;}
.ws4d{word-spacing:0.396000px;}
.ws43{word-spacing:0.420000px;}
.ws1f{word-spacing:0.426000px;}
.ws2d{word-spacing:0.438000px;}
.ws3f{word-spacing:0.486000px;}
.ws1c{word-spacing:0.558000px;}
.ws36{word-spacing:0.732000px;}
.ws2{word-spacing:0.810000px;}
.ws30{word-spacing:0.852000px;}
.ws2f{word-spacing:0.882000px;}
.ws2b{word-spacing:1.014000px;}
.wsd{word-spacing:1.020000px;}
.ws8{word-spacing:1.110000px;}
.ws25{word-spacing:1.266000px;}
.ws47{word-spacing:1.290000px;}
.ws41{word-spacing:1.296000px;}
.ws40{word-spacing:1.386000px;}
.ws34{word-spacing:1.572000px;}
.ws5{word-spacing:1.584000px;}
.ws2e{word-spacing:1.620000px;}
.ws2c{word-spacing:1.626000px;}
.ws3d{word-spacing:1.740000px;}
.ws3e{word-spacing:1.872000px;}
.ws2a{word-spacing:1.914000px;}
.wsb{word-spacing:2.142000px;}
.ws33{word-spacing:2.376000px;}
.ws4a{word-spacing:2.418000px;}
.ws50{word-spacing:2.538000px;}
.ws20{word-spacing:2.946000px;}
.ws27{word-spacing:2.988000px;}
.ws11{word-spacing:2.994000px;}
.ws23{word-spacing:3.030000px;}
.ws31{word-spacing:3.252000px;}
.ws17{word-spacing:3.360000px;}
.ws37{word-spacing:3.624000px;}
.ws1e{word-spacing:3.858000px;}
.ws24{word-spacing:3.864000px;}
.ws32{word-spacing:3.876000px;}
.ws1a{word-spacing:4.050000px;}
.ws26{word-spacing:4.188000px;}
.ws3b{word-spacing:4.230000px;}
.ws4{word-spacing:4.530000px;}
.ws44{word-spacing:4.752000px;}
.ws10{word-spacing:4.860000px;}
.ws29{word-spacing:5.118000px;}
.ws48{word-spacing:5.196000px;}
.wsa{word-spacing:5.412000px;}
.ws16{word-spacing:5.430000px;}
.wsc{word-spacing:5.484000px;}
.ws15{word-spacing:6.324000px;}
.ws9{word-spacing:6.990000px;}
.wsf{word-spacing:7.128000px;}
.ws4f{word-spacing:7.638000px;}
.ws1d{word-spacing:7.680000px;}
.ws22{word-spacing:7.980000px;}
.ws21{word-spacing:8.118000px;}
.ws13{word-spacing:8.586000px;}
.ws12{word-spacing:8.682000px;}
.wse{word-spacing:9.054000px;}
.ws49{word-spacing:9.996000px;}
.ws14{word-spacing:11.598000px;}
.ws1b{word-spacing:11.994000px;}
.ws19{word-spacing:12.000000px;}
.ws18{word-spacing:12.522000px;}
.ws28{word-spacing:15.072000px;}
.ws46{word-spacing:24.564000px;}
.ws4e{word-spacing:45.582000px;}
.ws4b{word-spacing:409.498800px;}
.ws4c{word-spacing:412.645200px;}
.ws0{word-spacing:425.226000px;}
._1b{margin-left:-45.582000px;}
._18{margin-left:-24.564000px;}
._15{margin-left:-15.072000px;}
._f{margin-left:-11.598000px;}
._b{margin-left:-9.054000px;}
._12{margin-left:-8.010000px;}
._8{margin-left:-6.990000px;}
._10{margin-left:-5.550000px;}
._4{margin-left:-4.530000px;}
._d{margin-left:-2.994000px;}
._6{margin-left:-1.584000px;}
._5{width:1.584000px;}
._c{width:2.970000px;}
._3{width:4.488000px;}
._9{width:5.496000px;}
._7{width:6.930000px;}
._11{width:7.944000px;}
._a{width:9.042000px;}
._e{width:11.550000px;}
._14{width:15.048000px;}
._17{width:24.552000px;}
._1a{width:45.552000px;}
._1{width:291.882000px;}
._13{width:1559.934000px;}
._16{width:1561.086000px;}
._2{width:1562.430000px;}
._19{width:1565.550000px;}
._0{width:1571.358000px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:45.600000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:49.617670px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:74.426505px;}
.fs1{font-size:84.000000px;}
.fs2{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:41.934000px;}
.y4a{bottom:110.851500px;}
.y2e{bottom:120.354000px;}
.y9d{bottom:122.649000px;}
.y9c{bottom:142.899000px;}
.y2d{bottom:142.908000px;}
.y49{bottom:153.205500px;}
.y71{bottom:155.161500px;}
.y9b{bottom:163.149000px;}
.y2c{bottom:165.460500px;}
.y70{bottom:168.661500px;}
.y48{bottom:175.758000px;}
.yc4{bottom:177.993000px;}
.y6f{bottom:182.161500px;}
.y9a{bottom:183.399000px;}
.y2b{bottom:188.014500px;}
.y6e{bottom:195.661500px;}
.yc3{bottom:198.243000px;}
.y47{bottom:198.312000px;}
.y74{bottom:201.628500px;}
.y99{bottom:203.649000px;}
.y6d{bottom:209.734500px;}
.y2a{bottom:210.567000px;}
.y73{bottom:215.128500px;}
.yc2{bottom:218.493000px;}
.y72{bottom:228.628500px;}
.y6c{bottom:232.287000px;}
.y29{bottom:233.121000px;}
.y98{bottom:245.499000px;}
.y6b{bottom:254.841000px;}
.y28{bottom:255.673500px;}
.yc1{bottom:260.343000px;}
.y97{bottom:265.749000px;}
.y46{bottom:269.695500px;}
.y6a{bottom:277.393500px;}
.y27{bottom:278.227500px;}
.y45{bottom:283.195500px;}
.y96{bottom:285.999000px;}
.y44{bottom:296.695500px;}
.y69{bottom:299.947500px;}
.y26{bottom:300.780000px;}
.yc0{bottom:302.193000px;}
.y95{bottom:306.249000px;}
.ybf{bottom:322.443000px;}
.y68{bottom:322.500000px;}
.y25{bottom:343.134000px;}
.y67{bottom:345.054000px;}
.y94{bottom:348.099000px;}
.ybe{bottom:364.293000px;}
.y24{bottom:365.686500px;}
.y66{bottom:367.606500px;}
.y93{bottom:368.349000px;}
.ybd{bottom:384.543000px;}
.y23{bottom:388.239000px;}
.y92{bottom:388.599000px;}
.ybc{bottom:404.793000px;}
.y91{bottom:408.849000px;}
.y65{bottom:409.960500px;}
.ybb{bottom:425.043000px;}
.y90{bottom:429.099000px;}
.y22{bottom:430.593000px;}
.y64{bottom:432.513000px;}
.y8f{bottom:449.349000px;}
.y21{bottom:453.145500px;}
.y63{bottom:455.065500px;}
.y1a{bottom:459.118500px;}
.yba{bottom:466.893000px;}
.y8e{bottom:469.599000px;}
.y20{bottom:475.699500px;}
.y62{bottom:477.619500px;}
.y19{bottom:478.618500px;}
.y18{bottom:498.118500px;}
.y1f{bottom:498.252000px;}
.y61{bottom:500.172000px;}
.yb9{bottom:508.743000px;}
.y8d{bottom:511.449000px;}
.y17{bottom:517.618500px;}
.y1e{bottom:520.806000px;}
.y60{bottom:522.726000px;}
.yb8{bottom:528.993000px;}
.y8c{bottom:531.699000px;}
.y16{bottom:537.118500px;}
.y1d{bottom:543.358500px;}
.y5f{bottom:545.278500px;}
.yb7{bottom:549.243000px;}
.y8b{bottom:551.949000px;}
.y15{bottom:556.618500px;}
.y5e{bottom:567.832500px;}
.yb6{bottom:569.493000px;}
.y8a{bottom:572.199000px;}
.y14{bottom:576.118500px;}
.yb5{bottom:589.743000px;}
.y5d{bottom:590.385000px;}
.y89{bottom:614.049000px;}
.y1c{bottom:614.743500px;}
.y13{bottom:622.573500px;}
.y1b{bottom:628.243500px;}
.y43{bottom:630.004500px;}
.yb4{bottom:631.593000px;}
.y5c{bottom:632.739000px;}
.y88{bottom:634.299000px;}
.y12{bottom:649.873500px;}
.yb3{bottom:651.843000px;}
.y42{bottom:652.557000px;}
.y87{bottom:654.549000px;}
.y5b{bottom:655.291500px;}
.yb2{bottom:672.093000px;}
.y86{bottom:674.799000px;}
.y41{bottom:675.111000px;}
.y11{bottom:677.173500px;}
.y5a{bottom:677.845500px;}
.yb1{bottom:692.343000px;}
.y40{bottom:697.663500px;}
.y59{bottom:700.398000px;}
.y10{bottom:704.473500px;}
.yb0{bottom:712.593000px;}
.y85{bottom:716.649000px;}
.y3f{bottom:720.217500px;}
.y58{bottom:722.952000px;}
.yf{bottom:731.773500px;}
.y84{bottom:736.899000px;}
.y3e{bottom:742.770000px;}
.y57{bottom:745.504500px;}
.yaf{bottom:754.443000px;}
.y83{bottom:757.149000px;}
.ye{bottom:759.073500px;}
.y3d{bottom:765.324000px;}
.y56{bottom:768.057000px;}
.yae{bottom:774.693000px;}
.y82{bottom:777.399000px;}
.yd{bottom:786.373500px;}
.yad{bottom:794.943000px;}
.y81{bottom:797.649000px;}
.y3c{bottom:807.676500px;}
.y55{bottom:810.411000px;}
.yc{bottom:813.673500px;}
.yac{bottom:815.193000px;}
.y80{bottom:817.899000px;}
.y3b{bottom:830.229000px;}
.y54{bottom:832.963500px;}
.yab{bottom:835.443000px;}
.yb{bottom:840.973500px;}
.yd4{bottom:841.773000px;}
.y3a{bottom:852.783000px;}
.y53{bottom:855.517500px;}
.yd3{bottom:855.759000px;}
.y7f{bottom:859.749000px;}
.ya{bottom:868.273500px;}
.yd2{bottom:869.259000px;}
.y39{bottom:875.335500px;}
.yaa{bottom:877.293000px;}
.y52{bottom:878.070000px;}
.y7e{bottom:879.999000px;}
.yd1{bottom:882.759000px;}
.y9{bottom:895.573500px;}
.yd0{bottom:896.259000px;}
.ya9{bottom:897.543000px;}
.y51{bottom:900.624000px;}
.ycf{bottom:909.759000px;}
.y38{bottom:917.689500px;}
.ya8{bottom:917.793000px;}
.y7d{bottom:921.849000px;}
.y8{bottom:922.873500px;}
.y50{bottom:923.176500px;}
.yce{bottom:923.259000px;}
.ycd{bottom:936.759000px;}
.ya7{bottom:938.043000px;}
.y37{bottom:940.242000px;}
.y4f{bottom:945.730500px;}
.y7{bottom:950.173500px;}
.ycc{bottom:950.451000px;}
.ya6{bottom:958.293000px;}
.y7c{bottom:962.776500px;}
.y36{bottom:962.796000px;}
.ya5{bottom:978.543000px;}
.y7b{bottom:985.330500px;}
.y35{bottom:985.348500px;}
.y4e{bottom:988.101000px;}
.ya4{bottom:998.793000px;}
.y6{bottom:1000.489500px;}
.ycb{bottom:1000.530000px;}
.y7a{bottom:1007.883000px;}
.y34{bottom:1007.902500px;}
.yca{bottom:1014.222000px;}
.ya3{bottom:1019.043000px;}
.y79{bottom:1030.437000px;}
.y33{bottom:1030.455000px;}
.ya2{bottom:1039.293000px;}
.y4d{bottom:1050.255000px;}
.y78{bottom:1052.989500px;}
.y32{bottom:1053.009000px;}
.ya1{bottom:1059.543000px;}
.y5{bottom:1060.489500px;}
.y4c{bottom:1072.809000px;}
.y77{bottom:1075.543500px;}
.y31{bottom:1075.561500px;}
.ya0{bottom:1079.793000px;}
.yc9{bottom:1092.549000px;}
.y4b{bottom:1095.361500px;}
.y76{bottom:1098.096000px;}
.yc8{bottom:1106.049000px;}
.y30{bottom:1117.915500px;}
.yc7{bottom:1119.603000px;}
.y9f{bottom:1121.643000px;}
.y4{bottom:1122.985500px;}
.yc6{bottom:1133.103000px;}
.y75{bottom:1140.466500px;}
.y2f{bottom:1140.468000px;}
.y9e{bottom:1141.893000px;}
.yc5{bottom:1146.603000px;}
.y2{bottom:1198.827000px;}
.y1{bottom:1212.327000px;}
.h2{height:38.601562px;}
.h3{height:38.718750px;}
.hf{height:42.672000px;}
.h7{height:42.720000px;}
.h8{height:44.159727px;}
.h6{height:48.251953px;}
.he{height:50.062500px;}
.h9{height:53.077148px;}
.ha{height:53.238281px;}
.hc{height:64.080000px;}
.hd{height:66.239590px;}
.h4{height:67.552734px;}
.hb{height:68.835938px;}
.h5{height:204.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:63.780000px;}
.x1{left:64.980000px;}
.x13{left:133.936500px;}
.x5{left:140.640000px;}
.x6{left:185.760000px;}
.x15{left:189.070500px;}
.x3{left:216.850500px;}
.x2{left:218.050500px;}
.xa{left:260.724000px;}
.x12{left:267.819000px;}
.x16{left:298.168500px;}
.xd{left:324.567000px;}
.x17{left:339.208500px;}
.xe{left:401.427000px;}
.x7{left:454.960500px;}
.xb{left:464.088000px;}
.xf{left:477.603000px;}
.x8{left:531.820500px;}
.xc{left:540.264000px;}
.x9{left:576.940500px;}
.x14{left:613.600500px;}
.x10{left:724.875000px;}
.x11{left:801.051000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.010667pt;}
.ls31{letter-spacing:0.037333pt;}
.ls35{letter-spacing:0.042667pt;}
.ls6{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.069333pt;}
.ls33{letter-spacing:0.074667pt;}
.ls1c{letter-spacing:0.106667pt;}
.ls43{letter-spacing:0.138667pt;}
.ls19{letter-spacing:0.165333pt;}
.ls38{letter-spacing:0.202667pt;}
.ls3b{letter-spacing:0.229333pt;}
.ls2{letter-spacing:0.261333pt;}
.ls7{letter-spacing:0.266667pt;}
.ls2a{letter-spacing:0.272000pt;}
.ls1{letter-spacing:0.288000pt;}
.lsc{letter-spacing:0.309333pt;}
.ls3f{letter-spacing:0.325333pt;}
.ls22{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.416000pt;}
.ls2c{letter-spacing:0.458667pt;}
.ls2d{letter-spacing:0.490667pt;}
.ls28{letter-spacing:0.501333pt;}
.ls3e{letter-spacing:0.544000pt;}
.ls29{letter-spacing:0.565333pt;}
.ls3a{letter-spacing:0.608000pt;}
.ls2f{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.677333pt;}
.ls36{letter-spacing:0.693333pt;}
.ls24{letter-spacing:0.725333pt;}
.ls15{letter-spacing:0.768000pt;}
.ls2b{letter-spacing:0.794667pt;}
.ls42{letter-spacing:0.805333pt;}
.ls37{letter-spacing:0.832000pt;}
.ls39{letter-spacing:0.869333pt;}
.ls1d{letter-spacing:0.928000pt;}
.ls10{letter-spacing:0.944000pt;}
.ls27{letter-spacing:0.970667pt;}
.ls1b{letter-spacing:1.029333pt;}
.ls46{letter-spacing:1.066667pt;}
.ls45{letter-spacing:1.072000pt;}
.ls4{letter-spacing:1.077333pt;}
.lsf{letter-spacing:1.152000pt;}
.ls23{letter-spacing:1.162667pt;}
.ls30{letter-spacing:1.168000pt;}
.ls20{letter-spacing:1.413333pt;}
.ls26{letter-spacing:1.450667pt;}
.ls17{letter-spacing:1.509333pt;}
.ls21{letter-spacing:1.616000pt;}
.ls8{letter-spacing:1.658667pt;}
.ls14{letter-spacing:1.674667pt;}
.ls3c{letter-spacing:1.680000pt;}
.ls11{letter-spacing:1.728000pt;}
.ls9{letter-spacing:1.786667pt;}
.ls2e{letter-spacing:1.834667pt;}
.lsb{letter-spacing:1.850667pt;}
.ls1a{letter-spacing:1.941333pt;}
.ls40{letter-spacing:2.026667pt;}
.ls1e{letter-spacing:2.048000pt;}
.ls12{letter-spacing:2.101333pt;}
.lsd{letter-spacing:2.288000pt;}
.ls1f{letter-spacing:2.314667pt;}
.ls34{letter-spacing:2.325333pt;}
.ls13{letter-spacing:2.410667pt;}
.lse{letter-spacing:2.517333pt;}
.ls41{letter-spacing:2.581333pt;}
.ls18{letter-spacing:3.162667pt;}
.ls25{letter-spacing:3.653333pt;}
.ls16{letter-spacing:4.282667pt;}
.ls44{letter-spacing:8.954667pt;}
.ls3d{letter-spacing:9.664000pt;}
.ws45{word-spacing:-15.621333pt;}
.ws1{word-spacing:0.000000pt;}
.ws35{word-spacing:0.010667pt;}
.ws39{word-spacing:0.016000pt;}
.ws38{word-spacing:0.069333pt;}
.ws3c{word-spacing:0.112000pt;}
.ws7{word-spacing:0.165333pt;}
.ws6{word-spacing:0.181333pt;}
.ws3{word-spacing:0.213333pt;}
.ws3a{word-spacing:0.218667pt;}
.ws42{word-spacing:0.336000pt;}
.ws4d{word-spacing:0.352000pt;}
.ws43{word-spacing:0.373333pt;}
.ws1f{word-spacing:0.378667pt;}
.ws2d{word-spacing:0.389333pt;}
.ws3f{word-spacing:0.432000pt;}
.ws1c{word-spacing:0.496000pt;}
.ws36{word-spacing:0.650667pt;}
.ws2{word-spacing:0.720000pt;}
.ws30{word-spacing:0.757333pt;}
.ws2f{word-spacing:0.784000pt;}
.ws2b{word-spacing:0.901333pt;}
.wsd{word-spacing:0.906667pt;}
.ws8{word-spacing:0.986667pt;}
.ws25{word-spacing:1.125333pt;}
.ws47{word-spacing:1.146667pt;}
.ws41{word-spacing:1.152000pt;}
.ws40{word-spacing:1.232000pt;}
.ws34{word-spacing:1.397333pt;}
.ws5{word-spacing:1.408000pt;}
.ws2e{word-spacing:1.440000pt;}
.ws2c{word-spacing:1.445333pt;}
.ws3d{word-spacing:1.546667pt;}
.ws3e{word-spacing:1.664000pt;}
.ws2a{word-spacing:1.701333pt;}
.wsb{word-spacing:1.904000pt;}
.ws33{word-spacing:2.112000pt;}
.ws4a{word-spacing:2.149333pt;}
.ws50{word-spacing:2.256000pt;}
.ws20{word-spacing:2.618667pt;}
.ws27{word-spacing:2.656000pt;}
.ws11{word-spacing:2.661333pt;}
.ws23{word-spacing:2.693333pt;}
.ws31{word-spacing:2.890667pt;}
.ws17{word-spacing:2.986667pt;}
.ws37{word-spacing:3.221333pt;}
.ws1e{word-spacing:3.429333pt;}
.ws24{word-spacing:3.434667pt;}
.ws32{word-spacing:3.445333pt;}
.ws1a{word-spacing:3.600000pt;}
.ws26{word-spacing:3.722667pt;}
.ws3b{word-spacing:3.760000pt;}
.ws4{word-spacing:4.026667pt;}
.ws44{word-spacing:4.224000pt;}
.ws10{word-spacing:4.320000pt;}
.ws29{word-spacing:4.549333pt;}
.ws48{word-spacing:4.618667pt;}
.wsa{word-spacing:4.810667pt;}
.ws16{word-spacing:4.826667pt;}
.wsc{word-spacing:4.874667pt;}
.ws15{word-spacing:5.621333pt;}
.ws9{word-spacing:6.213333pt;}
.wsf{word-spacing:6.336000pt;}
.ws4f{word-spacing:6.789333pt;}
.ws1d{word-spacing:6.826667pt;}
.ws22{word-spacing:7.093333pt;}
.ws21{word-spacing:7.216000pt;}
.ws13{word-spacing:7.632000pt;}
.ws12{word-spacing:7.717333pt;}
.wse{word-spacing:8.048000pt;}
.ws49{word-spacing:8.885333pt;}
.ws14{word-spacing:10.309333pt;}
.ws1b{word-spacing:10.661333pt;}
.ws19{word-spacing:10.666667pt;}
.ws18{word-spacing:11.130667pt;}
.ws28{word-spacing:13.397333pt;}
.ws46{word-spacing:21.834667pt;}
.ws4e{word-spacing:40.517333pt;}
.ws4b{word-spacing:363.998933pt;}
.ws4c{word-spacing:366.795733pt;}
.ws0{word-spacing:377.978667pt;}
._1b{margin-left:-40.517333pt;}
._18{margin-left:-21.834667pt;}
._15{margin-left:-13.397333pt;}
._f{margin-left:-10.309333pt;}
._b{margin-left:-8.048000pt;}
._12{margin-left:-7.120000pt;}
._8{margin-left:-6.213333pt;}
._10{margin-left:-4.933333pt;}
._4{margin-left:-4.026667pt;}
._d{margin-left:-2.661333pt;}
._6{margin-left:-1.408000pt;}
._5{width:1.408000pt;}
._c{width:2.640000pt;}
._3{width:3.989333pt;}
._9{width:4.885333pt;}
._7{width:6.160000pt;}
._11{width:7.061333pt;}
._a{width:8.037333pt;}
._e{width:10.266667pt;}
._14{width:13.376000pt;}
._17{width:21.824000pt;}
._1a{width:40.490667pt;}
._1{width:259.450667pt;}
._13{width:1386.608000pt;}
._16{width:1387.632000pt;}
._2{width:1388.826667pt;}
._19{width:1391.600000pt;}
._0{width:1396.762667pt;}
.fs8{font-size:40.533333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:44.104596pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:66.156894pt;}
.fs1{font-size:74.666667pt;}
.fs2{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:37.274667pt;}
.y4a{bottom:98.534667pt;}
.y2e{bottom:106.981333pt;}
.y9d{bottom:109.021333pt;}
.y9c{bottom:127.021333pt;}
.y2d{bottom:127.029333pt;}
.y49{bottom:136.182667pt;}
.y71{bottom:137.921333pt;}
.y9b{bottom:145.021333pt;}
.y2c{bottom:147.076000pt;}
.y70{bottom:149.921333pt;}
.y48{bottom:156.229333pt;}
.yc4{bottom:158.216000pt;}
.y6f{bottom:161.921333pt;}
.y9a{bottom:163.021333pt;}
.y2b{bottom:167.124000pt;}
.y6e{bottom:173.921333pt;}
.yc3{bottom:176.216000pt;}
.y47{bottom:176.277333pt;}
.y74{bottom:179.225333pt;}
.y99{bottom:181.021333pt;}
.y6d{bottom:186.430667pt;}
.y2a{bottom:187.170667pt;}
.y73{bottom:191.225333pt;}
.yc2{bottom:194.216000pt;}
.y72{bottom:203.225333pt;}
.y6c{bottom:206.477333pt;}
.y29{bottom:207.218667pt;}
.y98{bottom:218.221333pt;}
.y6b{bottom:226.525333pt;}
.y28{bottom:227.265333pt;}
.yc1{bottom:231.416000pt;}
.y97{bottom:236.221333pt;}
.y46{bottom:239.729333pt;}
.y6a{bottom:246.572000pt;}
.y27{bottom:247.313333pt;}
.y45{bottom:251.729333pt;}
.y96{bottom:254.221333pt;}
.y44{bottom:263.729333pt;}
.y69{bottom:266.620000pt;}
.y26{bottom:267.360000pt;}
.yc0{bottom:268.616000pt;}
.y95{bottom:272.221333pt;}
.ybf{bottom:286.616000pt;}
.y68{bottom:286.666667pt;}
.y25{bottom:305.008000pt;}
.y67{bottom:306.714667pt;}
.y94{bottom:309.421333pt;}
.ybe{bottom:323.816000pt;}
.y24{bottom:325.054667pt;}
.y66{bottom:326.761333pt;}
.y93{bottom:327.421333pt;}
.ybd{bottom:341.816000pt;}
.y23{bottom:345.101333pt;}
.y92{bottom:345.421333pt;}
.ybc{bottom:359.816000pt;}
.y91{bottom:363.421333pt;}
.y65{bottom:364.409333pt;}
.ybb{bottom:377.816000pt;}
.y90{bottom:381.421333pt;}
.y22{bottom:382.749333pt;}
.y64{bottom:384.456000pt;}
.y8f{bottom:399.421333pt;}
.y21{bottom:402.796000pt;}
.y63{bottom:404.502667pt;}
.y1a{bottom:408.105333pt;}
.yba{bottom:415.016000pt;}
.y8e{bottom:417.421333pt;}
.y20{bottom:422.844000pt;}
.y62{bottom:424.550667pt;}
.y19{bottom:425.438667pt;}
.y18{bottom:442.772000pt;}
.y1f{bottom:442.890667pt;}
.y61{bottom:444.597333pt;}
.yb9{bottom:452.216000pt;}
.y8d{bottom:454.621333pt;}
.y17{bottom:460.105333pt;}
.y1e{bottom:462.938667pt;}
.y60{bottom:464.645333pt;}
.yb8{bottom:470.216000pt;}
.y8c{bottom:472.621333pt;}
.y16{bottom:477.438667pt;}
.y1d{bottom:482.985333pt;}
.y5f{bottom:484.692000pt;}
.yb7{bottom:488.216000pt;}
.y8b{bottom:490.621333pt;}
.y15{bottom:494.772000pt;}
.y5e{bottom:504.740000pt;}
.yb6{bottom:506.216000pt;}
.y8a{bottom:508.621333pt;}
.y14{bottom:512.105333pt;}
.yb5{bottom:524.216000pt;}
.y5d{bottom:524.786667pt;}
.y89{bottom:545.821333pt;}
.y1c{bottom:546.438667pt;}
.y13{bottom:553.398667pt;}
.y1b{bottom:558.438667pt;}
.y43{bottom:560.004000pt;}
.yb4{bottom:561.416000pt;}
.y5c{bottom:562.434667pt;}
.y88{bottom:563.821333pt;}
.y12{bottom:577.665333pt;}
.yb3{bottom:579.416000pt;}
.y42{bottom:580.050667pt;}
.y87{bottom:581.821333pt;}
.y5b{bottom:582.481333pt;}
.yb2{bottom:597.416000pt;}
.y86{bottom:599.821333pt;}
.y41{bottom:600.098667pt;}
.y11{bottom:601.932000pt;}
.y5a{bottom:602.529333pt;}
.yb1{bottom:615.416000pt;}
.y40{bottom:620.145333pt;}
.y59{bottom:622.576000pt;}
.y10{bottom:626.198667pt;}
.yb0{bottom:633.416000pt;}
.y85{bottom:637.021333pt;}
.y3f{bottom:640.193333pt;}
.y58{bottom:642.624000pt;}
.yf{bottom:650.465333pt;}
.y84{bottom:655.021333pt;}
.y3e{bottom:660.240000pt;}
.y57{bottom:662.670667pt;}
.yaf{bottom:670.616000pt;}
.y83{bottom:673.021333pt;}
.ye{bottom:674.732000pt;}
.y3d{bottom:680.288000pt;}
.y56{bottom:682.717333pt;}
.yae{bottom:688.616000pt;}
.y82{bottom:691.021333pt;}
.yd{bottom:698.998667pt;}
.yad{bottom:706.616000pt;}
.y81{bottom:709.021333pt;}
.y3c{bottom:717.934667pt;}
.y55{bottom:720.365333pt;}
.yc{bottom:723.265333pt;}
.yac{bottom:724.616000pt;}
.y80{bottom:727.021333pt;}
.y3b{bottom:737.981333pt;}
.y54{bottom:740.412000pt;}
.yab{bottom:742.616000pt;}
.yb{bottom:747.532000pt;}
.yd4{bottom:748.242667pt;}
.y3a{bottom:758.029333pt;}
.y53{bottom:760.460000pt;}
.yd3{bottom:760.674667pt;}
.y7f{bottom:764.221333pt;}
.ya{bottom:771.798667pt;}
.yd2{bottom:772.674667pt;}
.y39{bottom:778.076000pt;}
.yaa{bottom:779.816000pt;}
.y52{bottom:780.506667pt;}
.y7e{bottom:782.221333pt;}
.yd1{bottom:784.674667pt;}
.y9{bottom:796.065333pt;}
.yd0{bottom:796.674667pt;}
.ya9{bottom:797.816000pt;}
.y51{bottom:800.554667pt;}
.ycf{bottom:808.674667pt;}
.y38{bottom:815.724000pt;}
.ya8{bottom:815.816000pt;}
.y7d{bottom:819.421333pt;}
.y8{bottom:820.332000pt;}
.y50{bottom:820.601333pt;}
.yce{bottom:820.674667pt;}
.ycd{bottom:832.674667pt;}
.ya7{bottom:833.816000pt;}
.y37{bottom:835.770667pt;}
.y4f{bottom:840.649333pt;}
.y7{bottom:844.598667pt;}
.ycc{bottom:844.845333pt;}
.ya6{bottom:851.816000pt;}
.y7c{bottom:855.801333pt;}
.y36{bottom:855.818667pt;}
.ya5{bottom:869.816000pt;}
.y7b{bottom:875.849333pt;}
.y35{bottom:875.865333pt;}
.y4e{bottom:878.312000pt;}
.ya4{bottom:887.816000pt;}
.y6{bottom:889.324000pt;}
.ycb{bottom:889.360000pt;}
.y7a{bottom:895.896000pt;}
.y34{bottom:895.913333pt;}
.yca{bottom:901.530667pt;}
.ya3{bottom:905.816000pt;}
.y79{bottom:915.944000pt;}
.y33{bottom:915.960000pt;}
.ya2{bottom:923.816000pt;}
.y4d{bottom:933.560000pt;}
.y78{bottom:935.990667pt;}
.y32{bottom:936.008000pt;}
.ya1{bottom:941.816000pt;}
.y5{bottom:942.657333pt;}
.y4c{bottom:953.608000pt;}
.y77{bottom:956.038667pt;}
.y31{bottom:956.054667pt;}
.ya0{bottom:959.816000pt;}
.yc9{bottom:971.154667pt;}
.y4b{bottom:973.654667pt;}
.y76{bottom:976.085333pt;}
.yc8{bottom:983.154667pt;}
.y30{bottom:993.702667pt;}
.yc7{bottom:995.202667pt;}
.y9f{bottom:997.016000pt;}
.y4{bottom:998.209333pt;}
.yc6{bottom:1007.202667pt;}
.y75{bottom:1013.748000pt;}
.y2f{bottom:1013.749333pt;}
.y9e{bottom:1015.016000pt;}
.yc5{bottom:1019.202667pt;}
.y2{bottom:1065.624000pt;}
.y1{bottom:1077.624000pt;}
.h2{height:34.312500pt;}
.h3{height:34.416667pt;}
.hf{height:37.930667pt;}
.h7{height:37.973333pt;}
.h8{height:39.253090pt;}
.h6{height:42.890625pt;}
.he{height:44.500000pt;}
.h9{height:47.179688pt;}
.ha{height:47.322917pt;}
.hc{height:56.960000pt;}
.hd{height:58.879635pt;}
.h4{height:60.046875pt;}
.hb{height:61.187500pt;}
.h5{height:181.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:56.693333pt;}
.x1{left:57.760000pt;}
.x13{left:119.054667pt;}
.x5{left:125.013333pt;}
.x6{left:165.120000pt;}
.x15{left:168.062667pt;}
.x3{left:192.756000pt;}
.x2{left:193.822667pt;}
.xa{left:231.754667pt;}
.x12{left:238.061333pt;}
.x16{left:265.038667pt;}
.xd{left:288.504000pt;}
.x17{left:301.518667pt;}
.xe{left:356.824000pt;}
.x7{left:404.409333pt;}
.xb{left:412.522667pt;}
.xf{left:424.536000pt;}
.x8{left:472.729333pt;}
.xc{left:480.234667pt;}
.x9{left:512.836000pt;}
.x14{left:545.422667pt;}
.x10{left:644.333333pt;}
.x11{left:712.045333pt;}
}




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