
    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_bf843667f283e5229fb87a09.woff')format("woff");}.ff1{font-family:ff1;line-height:1.365723;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_0bb178d6aa73c0af289de9c8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.365723;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_991c5f447287e21442e539a5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.072754;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_51cc11a552e4ea55e0b080d7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.072754;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_d49d5a88c45d28c533556a0f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_d9e56c2a7e3289b0ea21f35a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_59c517336c79b347652981a6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_556fd536d3758d1892620000.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_4b0eb9478324d51a4bf95237.woff')format("woff");}.ffb{font-family:ffb;line-height:0.960449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.lsc{letter-spacing:-0.726000px;}
.ls56{letter-spacing:-0.432000px;}
.ls35{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.ls31{letter-spacing:-0.216000px;}
.ls3d{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.072000px;}
.ls1a{letter-spacing:-0.000003px;}
.lsb{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000001px;}
.ls2a{letter-spacing:0.015840px;}
.ls1{letter-spacing:0.028080px;}
.ls18{letter-spacing:0.063600px;}
.ls24{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.106560px;}
.ls4e{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.128160px;}
.ls38{letter-spacing:0.144000px;}
.ls43{letter-spacing:0.160560px;}
.ls9{letter-spacing:0.216000px;}
.ls4b{letter-spacing:0.252000px;}
.ls2e{letter-spacing:0.259800px;}
.ls7{letter-spacing:0.288000px;}
.ls2c{letter-spacing:0.298800px;}
.ls57{letter-spacing:0.359280px;}
.ls12{letter-spacing:0.360000px;}
.ls47{letter-spacing:0.408000px;}
.ls3a{letter-spacing:0.424800px;}
.ls52{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.471600px;}
.ls19{letter-spacing:0.504000px;}
.ls54{letter-spacing:0.576000px;}
.ls39{letter-spacing:0.606000px;}
.ls14{letter-spacing:0.648000px;}
.ls40{letter-spacing:0.720000px;}
.ls58{letter-spacing:0.735840px;}
.ls30{letter-spacing:0.792000px;}
.ls4{letter-spacing:0.826560px;}
.ls34{letter-spacing:0.936000px;}
.ls66{letter-spacing:1.008000px;}
.ls20{letter-spacing:1.368000px;}
.ls17{letter-spacing:1.927440px;}
.ls3c{letter-spacing:2.088000px;}
.ls64{letter-spacing:2.376000px;}
.ls16{letter-spacing:2.647440px;}
.ls2f{letter-spacing:2.808000px;}
.ls2d{letter-spacing:3.367440px;}
.ls11{letter-spacing:3.528000px;}
.ls45{letter-spacing:3.708000px;}
.ls32{letter-spacing:4.248000px;}
.ls59{letter-spacing:4.807440px;}
.ls27{letter-spacing:4.968000px;}
.ls53{letter-spacing:5.688000px;}
.ls23{letter-spacing:6.247440px;}
.lsa{letter-spacing:6.408000px;}
.ls5e{letter-spacing:6.696000px;}
.ls29{letter-spacing:6.967440px;}
.ls22{letter-spacing:7.128000px;}
.ls2b{letter-spacing:7.687440px;}
.ls8{letter-spacing:7.848000px;}
.ls62{letter-spacing:8.136000px;}
.ls21{letter-spacing:8.568000px;}
.ls63{letter-spacing:8.856000px;}
.ls1f{letter-spacing:9.288000px;}
.ls25{letter-spacing:9.300000px;}
.ls1e{letter-spacing:10.008000px;}
.ls65{letter-spacing:10.296000px;}
.ls55{letter-spacing:10.567440px;}
.ls1d{letter-spacing:10.728000px;}
.ls50{letter-spacing:11.287440px;}
.ls33{letter-spacing:11.448000px;}
.ls4c{letter-spacing:11.736000px;}
.ls36{letter-spacing:12.168000px;}
.ls26{letter-spacing:12.888000px;}
.ls3b{letter-spacing:13.608000px;}
.ls41{letter-spacing:13.860000px;}
.ls3{letter-spacing:13.966560px;}
.ls51{letter-spacing:14.328000px;}
.lsf{letter-spacing:14.508000px;}
.ls3e{letter-spacing:15.048000px;}
.ls5c{letter-spacing:15.120000px;}
.ls37{letter-spacing:15.768000px;}
.ls15{letter-spacing:16.488000px;}
.ls10{letter-spacing:17.208000px;}
.ls3f{letter-spacing:18.108000px;}
.ls44{letter-spacing:18.648000px;}
.ls4a{letter-spacing:18.720000px;}
.ls5d{letter-spacing:19.368000px;}
.ls48{letter-spacing:20.808000px;}
.ls60{letter-spacing:21.528000px;}
.ls61{letter-spacing:21.708000px;}
.ls13{letter-spacing:22.248000px;}
.ls6{letter-spacing:22.426560px;}
.ls49{letter-spacing:22.968000px;}
.ls5b{letter-spacing:23.688000px;}
.ls46{letter-spacing:24.408000px;}
.ls42{letter-spacing:25.128000px;}
.ls4d{letter-spacing:27.576000px;}
.ls28{letter-spacing:30.888000px;}
.ls5f{letter-spacing:31.608000px;}
.ls5a{letter-spacing:37.368000px;}
.ls4f{letter-spacing:54.864000px;}
.ls0{letter-spacing:220.087440px;}
.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;}
}
.ws1e{word-spacing:-23.699520px;}
.ws18{word-spacing:-20.808000px;}
.wsa{word-spacing:-20.736000px;}
.wsb{word-spacing:-20.592000px;}
.ws19{word-spacing:-20.448000px;}
.wsd{word-spacing:-20.304000px;}
.ws9{word-spacing:-20.232001px;}
.ws3{word-spacing:-20.232000px;}
.ws8{word-spacing:-20.231997px;}
.ws5{word-spacing:-20.160000px;}
.ws16{word-spacing:-20.088000px;}
.ws10{word-spacing:-20.016000px;}
.ws4{word-spacing:-19.944000px;}
.ws11{word-spacing:-19.872000px;}
.ws17{word-spacing:-19.800000px;}
.ws14{word-spacing:-19.584000px;}
.ws13{word-spacing:-19.440000px;}
.ws0{word-spacing:-18.613440px;}
.ws1b{word-spacing:-18.000000px;}
.ws1d{word-spacing:-17.928000px;}
.ws1{word-spacing:-17.887440px;}
.ws12{word-spacing:-17.784000px;}
.ws15{word-spacing:-17.398560px;}
.ws1a{word-spacing:-17.352000px;}
.wsc{word-spacing:-17.264160px;}
.ws1c{word-spacing:-17.152560px;}
.wsf{word-spacing:-17.052360px;}
.ws7{word-spacing:-16.792560px;}
.ws2{word-spacing:-16.361280px;}
.wse{word-spacing:-14.760720px;}
.ws6{word-spacing:0.000000px;}
._1c{margin-left:-5.298720px;}
._f{margin-left:-3.608640px;}
._9{margin-left:-2.583360px;}
._2{margin-left:-1.010880px;}
._0{width:1.195200px;}
._e{width:2.206560px;}
._12{width:3.648000px;}
._10{width:5.112000px;}
._8{width:6.690240px;}
._d{width:7.704000px;}
._15{width:9.214320px;}
._13{width:10.224000px;}
._16{width:11.258400px;}
._7{width:12.453120px;}
._b{width:13.564320px;}
._a{width:14.572800px;}
._3{width:15.765120px;}
._4{width:16.831200px;}
._11{width:17.865600px;}
._22{width:19.003200px;}
._5{width:20.021760px;}
._6{width:21.218880px;}
._c{width:22.434240px;}
._17{width:23.460480px;}
._21{width:24.624000px;}
._25{width:25.968000px;}
._1a{width:27.144000px;}
._1b{width:28.524000px;}
._14{width:29.592000px;}
._1d{width:31.008000px;}
._23{width:32.548800px;}
._24{width:33.890400px;}
._26{width:35.066400px;}
._18{width:36.072000px;}
._19{width:37.752000px;}
._27{width:38.952000px;}
._28{width:40.132800px;}
._1e{width:45.000000px;}
._1f{width:46.224000px;}
._20{width:57.874080px;}
._29{width:72.576000px;}
._1{width:313.234080px;}
.fc6{color:rgb(46,116,181);}
.fc5{color:rgb(0,112,192);}
.fc2{color:rgb(112,48,160);}
.fc4{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc3{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:46.836000px;}
.y4{bottom:66.996000px;}
.y3{bottom:86.616000px;}
.y2{bottom:108.216000px;}
.y1{bottom:132.156000px;}
.y46{bottom:153.750000px;}
.y75{bottom:159.690000px;}
.y45{bottom:175.350000px;}
.y74{bottom:175.890000px;}
.y6c{bottom:181.290000px;}
.y5d{bottom:182.190000px;}
.y69{bottom:189.390000px;}
.y5a{bottom:190.830000px;}
.yb7{bottom:192.270000px;}
.y44{bottom:196.950000px;}
.y6b{bottom:197.490000px;}
.y1f{bottom:199.110000px;}
.ya9{bottom:199.470000px;}
.yc9{bottom:200.190000px;}
.y70{bottom:202.890000px;}
.y43{bottom:218.370000px;}
.y6f{bottom:218.910000px;}
.y9a{bottom:220.710000px;}
.y5c{bottom:220.890000px;}
.y4f{bottom:224.310000px;}
.y68{bottom:228.090000px;}
.y59{bottom:229.530000px;}
.yb6{bottom:230.970000px;}
.y1e{bottom:237.990000px;}
.ya8{bottom:238.170000px;}
.yc8{bottom:238.890000px;}
.y42{bottom:239.970000px;}
.y4e{bottom:240.510000px;}
.y72{bottom:245.910000px;}
.y99{bottom:259.410000px;}
.y5b{bottom:259.770000px;}
.y41{bottom:261.390000px;}
.y71{bottom:261.930000px;}
.y67{bottom:266.790000px;}
.y52{bottom:267.330000px;}
.y58{bottom:268.230000px;}
.yb5{bottom:269.670000px;}
.y1d{bottom:276.690000px;}
.ya7{bottom:276.870000px;}
.yc7{bottom:277.590000px;}
.y40{bottom:283.035000px;}
.y51{bottom:283.575000px;}
.y8d{bottom:288.975000px;}
.y98{bottom:298.335000px;}
.y4d{bottom:298.515000px;}
.y3f{bottom:304.455000px;}
.y66{bottom:305.535000px;}
.y57{bottom:306.975000px;}
.yb4{bottom:308.415000px;}
.y8c{bottom:310.395000px;}
.y1c{bottom:312.375000px;}
.ya6{bottom:315.615000px;}
.yc6{bottom:316.335000px;}
.y3e{bottom:326.055000px;}
.y8b{bottom:326.595000px;}
.y97{bottom:337.035000px;}
.y4c{bottom:337.215000px;}
.y87{bottom:342.975000px;}
.y65{bottom:344.235000px;}
.y56{bottom:345.675000px;}
.yb3{bottom:347.115000px;}
.y3d{bottom:347.475000px;}
.y1b{bottom:347.655000px;}
.y3c{bottom:353.415000px;}
.ya5{bottom:354.495000px;}
.yc5{bottom:355.035000px;}
.y3b{bottom:369.075000px;}
.y96{bottom:375.735000px;}
.y4b{bottom:375.915000px;}
.y86{bottom:381.675000px;}
.y64{bottom:382.935000px;}
.y8a{bottom:383.475000px;}
.y55{bottom:384.375000px;}
.yb2{bottom:385.995000px;}
.y1a{bottom:386.895000px;}
.y3a{bottom:390.495000px;}
.ya4{bottom:393.195000px;}
.yc4{bottom:393.915000px;}
.y39{bottom:412.095000px;}
.y95{bottom:414.435000px;}
.y4a{bottom:414.615000px;}
.y19{bottom:420.195000px;}
.y85{bottom:420.375000px;}
.y63{bottom:421.815000px;}
.y50{bottom:422.175000px;}
.y54{bottom:423.255000px;}
.yb1{bottom:424.695000px;}
.ya3{bottom:431.895000px;}
.yc3{bottom:432.615000px;}
.y38{bottom:433.695000px;}
.y94{bottom:453.135000px;}
.y49{bottom:453.315000px;}
.y37{bottom:455.115000px;}
.y18{bottom:457.275000px;}
.y53{bottom:458.715000px;}
.y83{bottom:459.255000px;}
.y62{bottom:460.515000px;}
.y36{bottom:461.055000px;}
.yb0{bottom:463.395000px;}
.y84{bottom:466.815000px;}
.ya2{bottom:470.595000px;}
.yc2{bottom:471.315000px;}
.y35{bottom:477.255000px;}
.y93{bottom:491.835000px;}
.y48{bottom:492.195000px;}
.y17{bottom:492.735000px;}
.y82{bottom:497.955000px;}
.y61{bottom:499.215000px;}
.yaf{bottom:502.095000px;}
.ya1{bottom:509.295000px;}
.yc1{bottom:510.015000px;}
.y16{bottom:528.375000px;}
.y92{bottom:530.715000px;}
.y34{bottom:530.895000px;}
.y81{bottom:536.655000px;}
.y60{bottom:537.915000px;}
.yae{bottom:540.795000px;}
.ya0{bottom:547.995000px;}
.yc0{bottom:548.715000px;}
.y15{bottom:563.835000px;}
.y91{bottom:569.445000px;}
.y33{bottom:569.625000px;}
.y80{bottom:575.385000px;}
.y5f{bottom:576.645000px;}
.y47{bottom:577.185000px;}
.yad{bottom:579.705000px;}
.y9f{bottom:586.905000px;}
.ybf{bottom:587.625000px;}
.y14{bottom:599.325000px;}
.y32{bottom:608.325000px;}
.y90{bottom:608.505000px;}
.y5e{bottom:612.285000px;}
.y7f{bottom:614.085000px;}
.yac{bottom:618.765000px;}
.y9e{bottom:625.605000px;}
.ybe{bottom:626.685000px;}
.y13{bottom:634.785000px;}
.y8f{bottom:645.225000px;}
.y31{bottom:647.025000px;}
.yab{bottom:652.065000px;}
.y7e{bottom:652.785000px;}
.ybd{bottom:659.985000px;}
.y9d{bottom:664.305000px;}
.y12{bottom:670.425000px;}
.y30{bottom:685.905000px;}
.yaa{bottom:691.305000px;}
.y7d{bottom:691.665000px;}
.ybc{bottom:698.685000px;}
.y9c{bottom:703.005000px;}
.y11{bottom:705.885000px;}
.y2f{bottom:724.605000px;}
.y9b{bottom:728.025000px;}
.y7c{bottom:730.365000px;}
.ybb{bottom:740.265000px;}
.y10{bottom:741.345000px;}
.y2e{bottom:763.305000px;}
.y7b{bottom:769.065000px;}
.y8e{bottom:770.865000px;}
.yf{bottom:776.805000px;}
.yba{bottom:785.445000px;}
.y2d{bottom:802.005000px;}
.y7a{bottom:807.765000px;}
.y6e{bottom:809.565000px;}
.ye{bottom:812.445000px;}
.yb9{bottom:830.625000px;}
.y2c{bottom:840.705000px;}
.y78{bottom:846.465000px;}
.yd{bottom:847.950000px;}
.y6d{bottom:848.310000px;}
.y79{bottom:854.070000px;}
.yb8{bottom:876.030000px;}
.y2a{bottom:879.630000px;}
.yc{bottom:883.410000px;}
.y77{bottom:885.390000px;}
.y2b{bottom:887.190000px;}
.y29{bottom:918.330000px;}
.yb{bottom:920.490000px;}
.y76{bottom:922.290000px;}
.y89{bottom:925.890000px;}
.y28{bottom:957.030000px;}
.ya{bottom:962.070000px;}
.y6a{bottom:964.590000px;}
.y26{bottom:995.730000px;}
.y27{bottom:1003.290000px;}
.y9{bottom:1007.250000px;}
.y25{bottom:1034.430000px;}
.y8{bottom:1046.670000px;}
.y24{bottom:1073.130000px;}
.y7{bottom:1078.890000px;}
.y73{bottom:1080.690000px;}
.y23{bottom:1112.010000px;}
.y6{bottom:1114.170000px;}
.y88{bottom:1119.570000px;}
.y22{bottom:1137.600000px;}
.y21{bottom:1170.360000px;}
.y20{bottom:1202.760000px;}
.h9{height:40.781250px;}
.h8{height:47.306250px;}
.h5{height:60.257812px;}
.ha{height:60.679688px;}
.hd{height:61.136719px;}
.h4{height:65.884219px;}
.h2{height:67.696875px;}
.hb{height:71.613281px;}
.h3{height:75.037500px;}
.h7{height:81.562500px;}
.hc{height:91.177734px;}
.h6{height:95.428125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:121.535987px;}
.x1b{left:141.875987px;}
.x2e{left:162.029987px;}
.x3{left:164.009987px;}
.x2d{left:166.709987px;}
.xb{left:168.509987px;}
.x1e{left:173.009987px;}
.x12{left:174.629973px;}
.x13{left:179.849987px;}
.x29{left:192.089973px;}
.x2a{left:202.529987px;}
.x14{left:206.489987px;}
.x4{left:214.049987px;}
.x31{left:243.029987px;}
.x17{left:258.509973px;}
.x18{left:263.729987px;}
.x10{left:289.154973px;}
.x2{left:290.414987px;}
.x11{left:294.374987px;}
.xc{left:298.154973px;}
.xd{left:303.374987px;}
.x8{left:323.174973px;}
.x9{left:328.394987px;}
.xa{left:337.574987px;}
.xe{left:351.614973px;}
.xf{left:356.834987px;}
.x19{left:425.234973px;}
.x1a{left:430.454987px;}
.x2b{left:499.244973px;}
.x33{left:502.844987px;}
.x2c{left:509.684987px;}
.x1f{left:511.484973px;}
.x20{left:521.924987px;}
.x6{left:533.084973px;}
.x7{left:538.304987px;}
.x5{left:551.084987px;}
.x32{left:593.024987px;}
.x15{left:618.044973px;}
.x27{left:620.384973px;}
.x16{left:623.264987px;}
.x34{left:628.844987px;}
.x28{left:630.824987px;}
.x30{left:635.324987px;}
.x2f{left:646.304987px;}
.x23{left:703.949973px;}
.x24{left:714.389987px;}
.x1c{left:719.069973px;}
.x25{left:723.929973px;}
.x1d{left:729.509987px;}
.x26{left:734.369987px;}
.x21{left:766.049973px;}
.x22{left:776.489987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.lsc{letter-spacing:-0.645333pt;}
.ls56{letter-spacing:-0.384000pt;}
.ls35{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls31{letter-spacing:-0.192000pt;}
.ls3d{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls1a{letter-spacing:-0.000003pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000001pt;}
.ls2a{letter-spacing:0.014080pt;}
.ls1{letter-spacing:0.024960pt;}
.ls18{letter-spacing:0.056533pt;}
.ls24{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.094720pt;}
.ls4e{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.113920pt;}
.ls38{letter-spacing:0.128000pt;}
.ls43{letter-spacing:0.142720pt;}
.ls9{letter-spacing:0.192000pt;}
.ls4b{letter-spacing:0.224000pt;}
.ls2e{letter-spacing:0.230933pt;}
.ls7{letter-spacing:0.256000pt;}
.ls2c{letter-spacing:0.265600pt;}
.ls57{letter-spacing:0.319360pt;}
.ls12{letter-spacing:0.320000pt;}
.ls47{letter-spacing:0.362667pt;}
.ls3a{letter-spacing:0.377600pt;}
.ls52{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.419200pt;}
.ls19{letter-spacing:0.448000pt;}
.ls54{letter-spacing:0.512000pt;}
.ls39{letter-spacing:0.538667pt;}
.ls14{letter-spacing:0.576000pt;}
.ls40{letter-spacing:0.640000pt;}
.ls58{letter-spacing:0.654080pt;}
.ls30{letter-spacing:0.704000pt;}
.ls4{letter-spacing:0.734720pt;}
.ls34{letter-spacing:0.832000pt;}
.ls66{letter-spacing:0.896000pt;}
.ls20{letter-spacing:1.216000pt;}
.ls17{letter-spacing:1.713280pt;}
.ls3c{letter-spacing:1.856000pt;}
.ls64{letter-spacing:2.112000pt;}
.ls16{letter-spacing:2.353280pt;}
.ls2f{letter-spacing:2.496000pt;}
.ls2d{letter-spacing:2.993280pt;}
.ls11{letter-spacing:3.136000pt;}
.ls45{letter-spacing:3.296000pt;}
.ls32{letter-spacing:3.776000pt;}
.ls59{letter-spacing:4.273280pt;}
.ls27{letter-spacing:4.416000pt;}
.ls53{letter-spacing:5.056000pt;}
.ls23{letter-spacing:5.553280pt;}
.lsa{letter-spacing:5.696000pt;}
.ls5e{letter-spacing:5.952000pt;}
.ls29{letter-spacing:6.193280pt;}
.ls22{letter-spacing:6.336000pt;}
.ls2b{letter-spacing:6.833280pt;}
.ls8{letter-spacing:6.976000pt;}
.ls62{letter-spacing:7.232000pt;}
.ls21{letter-spacing:7.616000pt;}
.ls63{letter-spacing:7.872000pt;}
.ls1f{letter-spacing:8.256000pt;}
.ls25{letter-spacing:8.266667pt;}
.ls1e{letter-spacing:8.896000pt;}
.ls65{letter-spacing:9.152000pt;}
.ls55{letter-spacing:9.393280pt;}
.ls1d{letter-spacing:9.536000pt;}
.ls50{letter-spacing:10.033280pt;}
.ls33{letter-spacing:10.176000pt;}
.ls4c{letter-spacing:10.432000pt;}
.ls36{letter-spacing:10.816000pt;}
.ls26{letter-spacing:11.456000pt;}
.ls3b{letter-spacing:12.096000pt;}
.ls41{letter-spacing:12.320000pt;}
.ls3{letter-spacing:12.414720pt;}
.ls51{letter-spacing:12.736000pt;}
.lsf{letter-spacing:12.896000pt;}
.ls3e{letter-spacing:13.376000pt;}
.ls5c{letter-spacing:13.440000pt;}
.ls37{letter-spacing:14.016000pt;}
.ls15{letter-spacing:14.656000pt;}
.ls10{letter-spacing:15.296000pt;}
.ls3f{letter-spacing:16.096000pt;}
.ls44{letter-spacing:16.576000pt;}
.ls4a{letter-spacing:16.640000pt;}
.ls5d{letter-spacing:17.216000pt;}
.ls48{letter-spacing:18.496000pt;}
.ls60{letter-spacing:19.136000pt;}
.ls61{letter-spacing:19.296000pt;}
.ls13{letter-spacing:19.776000pt;}
.ls6{letter-spacing:19.934720pt;}
.ls49{letter-spacing:20.416000pt;}
.ls5b{letter-spacing:21.056000pt;}
.ls46{letter-spacing:21.696000pt;}
.ls42{letter-spacing:22.336000pt;}
.ls4d{letter-spacing:24.512000pt;}
.ls28{letter-spacing:27.456000pt;}
.ls5f{letter-spacing:28.096000pt;}
.ls5a{letter-spacing:33.216000pt;}
.ls4f{letter-spacing:48.768000pt;}
.ls0{letter-spacing:195.633280pt;}
.ws1e{word-spacing:-21.066240pt;}
.ws18{word-spacing:-18.496000pt;}
.wsa{word-spacing:-18.432000pt;}
.wsb{word-spacing:-18.304000pt;}
.ws19{word-spacing:-18.176000pt;}
.wsd{word-spacing:-18.048000pt;}
.ws9{word-spacing:-17.984001pt;}
.ws3{word-spacing:-17.984000pt;}
.ws8{word-spacing:-17.983997pt;}
.ws5{word-spacing:-17.920000pt;}
.ws16{word-spacing:-17.856000pt;}
.ws10{word-spacing:-17.792000pt;}
.ws4{word-spacing:-17.728000pt;}
.ws11{word-spacing:-17.664000pt;}
.ws17{word-spacing:-17.600000pt;}
.ws14{word-spacing:-17.408000pt;}
.ws13{word-spacing:-17.280000pt;}
.ws0{word-spacing:-16.545280pt;}
.ws1b{word-spacing:-16.000000pt;}
.ws1d{word-spacing:-15.936000pt;}
.ws1{word-spacing:-15.899947pt;}
.ws12{word-spacing:-15.808000pt;}
.ws15{word-spacing:-15.465387pt;}
.ws1a{word-spacing:-15.424000pt;}
.wsc{word-spacing:-15.345920pt;}
.ws1c{word-spacing:-15.246720pt;}
.wsf{word-spacing:-15.157653pt;}
.ws7{word-spacing:-14.926720pt;}
.ws2{word-spacing:-14.543360pt;}
.wse{word-spacing:-13.120640pt;}
.ws6{word-spacing:0.000000pt;}
._1c{margin-left:-4.709973pt;}
._f{margin-left:-3.207680pt;}
._9{margin-left:-2.296320pt;}
._2{margin-left:-0.898560pt;}
._0{width:1.062400pt;}
._e{width:1.961387pt;}
._12{width:3.242667pt;}
._10{width:4.544000pt;}
._8{width:5.946880pt;}
._d{width:6.848000pt;}
._15{width:8.190507pt;}
._13{width:9.088000pt;}
._16{width:10.007467pt;}
._7{width:11.069440pt;}
._b{width:12.057173pt;}
._a{width:12.953600pt;}
._3{width:14.013440pt;}
._4{width:14.961067pt;}
._11{width:15.880533pt;}
._22{width:16.891733pt;}
._5{width:17.797120pt;}
._6{width:18.861227pt;}
._c{width:19.941547pt;}
._17{width:20.853760pt;}
._21{width:21.888000pt;}
._25{width:23.082667pt;}
._1a{width:24.128000pt;}
._1b{width:25.354667pt;}
._14{width:26.304000pt;}
._1d{width:27.562667pt;}
._23{width:28.932267pt;}
._24{width:30.124800pt;}
._26{width:31.170133pt;}
._18{width:32.064000pt;}
._19{width:33.557333pt;}
._27{width:34.624000pt;}
._28{width:35.673600pt;}
._1e{width:40.000000pt;}
._1f{width:41.088000pt;}
._20{width:51.443627pt;}
._29{width:64.512000pt;}
._1{width:278.430293pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:41.632000pt;}
.y4{bottom:59.552000pt;}
.y3{bottom:76.992000pt;}
.y2{bottom:96.192000pt;}
.y1{bottom:117.472000pt;}
.y46{bottom:136.666667pt;}
.y75{bottom:141.946667pt;}
.y45{bottom:155.866667pt;}
.y74{bottom:156.346667pt;}
.y6c{bottom:161.146667pt;}
.y5d{bottom:161.946667pt;}
.y69{bottom:168.346667pt;}
.y5a{bottom:169.626667pt;}
.yb7{bottom:170.906667pt;}
.y44{bottom:175.066667pt;}
.y6b{bottom:175.546667pt;}
.y1f{bottom:176.986667pt;}
.ya9{bottom:177.306667pt;}
.yc9{bottom:177.946667pt;}
.y70{bottom:180.346667pt;}
.y43{bottom:194.106667pt;}
.y6f{bottom:194.586667pt;}
.y9a{bottom:196.186667pt;}
.y5c{bottom:196.346667pt;}
.y4f{bottom:199.386667pt;}
.y68{bottom:202.746667pt;}
.y59{bottom:204.026667pt;}
.yb6{bottom:205.306667pt;}
.y1e{bottom:211.546667pt;}
.ya8{bottom:211.706667pt;}
.yc8{bottom:212.346667pt;}
.y42{bottom:213.306667pt;}
.y4e{bottom:213.786667pt;}
.y72{bottom:218.586667pt;}
.y99{bottom:230.586667pt;}
.y5b{bottom:230.906667pt;}
.y41{bottom:232.346667pt;}
.y71{bottom:232.826667pt;}
.y67{bottom:237.146667pt;}
.y52{bottom:237.626667pt;}
.y58{bottom:238.426667pt;}
.yb5{bottom:239.706667pt;}
.y1d{bottom:245.946667pt;}
.ya7{bottom:246.106667pt;}
.yc7{bottom:246.746667pt;}
.y40{bottom:251.586667pt;}
.y51{bottom:252.066667pt;}
.y8d{bottom:256.866667pt;}
.y98{bottom:265.186667pt;}
.y4d{bottom:265.346667pt;}
.y3f{bottom:270.626667pt;}
.y66{bottom:271.586667pt;}
.y57{bottom:272.866667pt;}
.yb4{bottom:274.146667pt;}
.y8c{bottom:275.906667pt;}
.y1c{bottom:277.666667pt;}
.ya6{bottom:280.546667pt;}
.yc6{bottom:281.186667pt;}
.y3e{bottom:289.826667pt;}
.y8b{bottom:290.306667pt;}
.y97{bottom:299.586667pt;}
.y4c{bottom:299.746667pt;}
.y87{bottom:304.866667pt;}
.y65{bottom:305.986667pt;}
.y56{bottom:307.266667pt;}
.yb3{bottom:308.546667pt;}
.y3d{bottom:308.866667pt;}
.y1b{bottom:309.026667pt;}
.y3c{bottom:314.146667pt;}
.ya5{bottom:315.106667pt;}
.yc5{bottom:315.586667pt;}
.y3b{bottom:328.066667pt;}
.y96{bottom:333.986667pt;}
.y4b{bottom:334.146667pt;}
.y86{bottom:339.266667pt;}
.y64{bottom:340.386667pt;}
.y8a{bottom:340.866667pt;}
.y55{bottom:341.666667pt;}
.yb2{bottom:343.106667pt;}
.y1a{bottom:343.906667pt;}
.y3a{bottom:347.106667pt;}
.ya4{bottom:349.506667pt;}
.yc4{bottom:350.146667pt;}
.y39{bottom:366.306667pt;}
.y95{bottom:368.386667pt;}
.y4a{bottom:368.546667pt;}
.y19{bottom:373.506667pt;}
.y85{bottom:373.666667pt;}
.y63{bottom:374.946667pt;}
.y50{bottom:375.266667pt;}
.y54{bottom:376.226667pt;}
.yb1{bottom:377.506667pt;}
.ya3{bottom:383.906667pt;}
.yc3{bottom:384.546667pt;}
.y38{bottom:385.506667pt;}
.y94{bottom:402.786667pt;}
.y49{bottom:402.946667pt;}
.y37{bottom:404.546667pt;}
.y18{bottom:406.466667pt;}
.y53{bottom:407.746667pt;}
.y83{bottom:408.226667pt;}
.y62{bottom:409.346667pt;}
.y36{bottom:409.826667pt;}
.yb0{bottom:411.906667pt;}
.y84{bottom:414.946667pt;}
.ya2{bottom:418.306667pt;}
.yc2{bottom:418.946667pt;}
.y35{bottom:424.226667pt;}
.y93{bottom:437.186667pt;}
.y48{bottom:437.506667pt;}
.y17{bottom:437.986667pt;}
.y82{bottom:442.626667pt;}
.y61{bottom:443.746667pt;}
.yaf{bottom:446.306667pt;}
.ya1{bottom:452.706667pt;}
.yc1{bottom:453.346667pt;}
.y16{bottom:469.666667pt;}
.y92{bottom:471.746667pt;}
.y34{bottom:471.906667pt;}
.y81{bottom:477.026667pt;}
.y60{bottom:478.146667pt;}
.yae{bottom:480.706667pt;}
.ya0{bottom:487.106667pt;}
.yc0{bottom:487.746667pt;}
.y15{bottom:501.186667pt;}
.y91{bottom:506.173333pt;}
.y33{bottom:506.333333pt;}
.y80{bottom:511.453333pt;}
.y5f{bottom:512.573333pt;}
.y47{bottom:513.053333pt;}
.yad{bottom:515.293333pt;}
.y9f{bottom:521.693333pt;}
.ybf{bottom:522.333333pt;}
.y14{bottom:532.733333pt;}
.y32{bottom:540.733333pt;}
.y90{bottom:540.893333pt;}
.y5e{bottom:544.253333pt;}
.y7f{bottom:545.853333pt;}
.yac{bottom:550.013333pt;}
.y9e{bottom:556.093333pt;}
.ybe{bottom:557.053333pt;}
.y13{bottom:564.253333pt;}
.y8f{bottom:573.533333pt;}
.y31{bottom:575.133333pt;}
.yab{bottom:579.613333pt;}
.y7e{bottom:580.253333pt;}
.ybd{bottom:586.653333pt;}
.y9d{bottom:590.493333pt;}
.y12{bottom:595.933333pt;}
.y30{bottom:609.693333pt;}
.yaa{bottom:614.493333pt;}
.y7d{bottom:614.813333pt;}
.ybc{bottom:621.053333pt;}
.y9c{bottom:624.893333pt;}
.y11{bottom:627.453333pt;}
.y2f{bottom:644.093333pt;}
.y9b{bottom:647.133333pt;}
.y7c{bottom:649.213333pt;}
.ybb{bottom:658.013333pt;}
.y10{bottom:658.973333pt;}
.y2e{bottom:678.493333pt;}
.y7b{bottom:683.613333pt;}
.y8e{bottom:685.213333pt;}
.yf{bottom:690.493333pt;}
.yba{bottom:698.173333pt;}
.y2d{bottom:712.893333pt;}
.y7a{bottom:718.013333pt;}
.y6e{bottom:719.613333pt;}
.ye{bottom:722.173333pt;}
.yb9{bottom:738.333333pt;}
.y2c{bottom:747.293333pt;}
.y78{bottom:752.413333pt;}
.yd{bottom:753.733333pt;}
.y6d{bottom:754.053333pt;}
.y79{bottom:759.173333pt;}
.yb8{bottom:778.693333pt;}
.y2a{bottom:781.893333pt;}
.yc{bottom:785.253333pt;}
.y77{bottom:787.013333pt;}
.y2b{bottom:788.613333pt;}
.y29{bottom:816.293333pt;}
.yb{bottom:818.213333pt;}
.y76{bottom:819.813333pt;}
.y89{bottom:823.013333pt;}
.y28{bottom:850.693333pt;}
.ya{bottom:855.173333pt;}
.y6a{bottom:857.413333pt;}
.y26{bottom:885.093333pt;}
.y27{bottom:891.813333pt;}
.y9{bottom:895.333333pt;}
.y25{bottom:919.493333pt;}
.y8{bottom:930.373333pt;}
.y24{bottom:953.893333pt;}
.y7{bottom:959.013333pt;}
.y73{bottom:960.613333pt;}
.y23{bottom:988.453333pt;}
.y6{bottom:990.373333pt;}
.y88{bottom:995.173333pt;}
.y22{bottom:1011.200000pt;}
.y21{bottom:1040.320000pt;}
.y20{bottom:1069.120000pt;}
.h9{height:36.250000pt;}
.h8{height:42.050000pt;}
.h5{height:53.562500pt;}
.ha{height:53.937500pt;}
.hd{height:54.343750pt;}
.h4{height:58.563750pt;}
.h2{height:60.175000pt;}
.hb{height:63.656250pt;}
.h3{height:66.700000pt;}
.h7{height:72.500000pt;}
.hc{height:81.046875pt;}
.h6{height:84.825000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:108.031988pt;}
.x1b{left:126.111988pt;}
.x2e{left:144.026655pt;}
.x3{left:145.786655pt;}
.x2d{left:148.186655pt;}
.xb{left:149.786655pt;}
.x1e{left:153.786655pt;}
.x12{left:155.226643pt;}
.x13{left:159.866655pt;}
.x29{left:170.746643pt;}
.x2a{left:180.026655pt;}
.x14{left:183.546655pt;}
.x4{left:190.266655pt;}
.x31{left:216.026655pt;}
.x17{left:229.786643pt;}
.x18{left:234.426655pt;}
.x10{left:257.026643pt;}
.x2{left:258.146655pt;}
.x11{left:261.666655pt;}
.xc{left:265.026643pt;}
.xd{left:269.666655pt;}
.x8{left:287.266643pt;}
.x9{left:291.906655pt;}
.xa{left:300.066655pt;}
.xe{left:312.546643pt;}
.xf{left:317.186655pt;}
.x19{left:377.986643pt;}
.x1a{left:382.626655pt;}
.x2b{left:443.773310pt;}
.x33{left:446.973322pt;}
.x2c{left:453.053322pt;}
.x1f{left:454.653310pt;}
.x20{left:463.933322pt;}
.x6{left:473.853310pt;}
.x7{left:478.493322pt;}
.x5{left:489.853322pt;}
.x32{left:527.133322pt;}
.x15{left:549.373310pt;}
.x27{left:551.453310pt;}
.x16{left:554.013322pt;}
.x34{left:558.973322pt;}
.x28{left:560.733322pt;}
.x30{left:564.733322pt;}
.x2f{left:574.493322pt;}
.x23{left:625.733310pt;}
.x24{left:635.013322pt;}
.x1c{left:639.173310pt;}
.x25{left:643.493310pt;}
.x1d{left:648.453322pt;}
.x26{left:652.773322pt;}
.x21{left:680.933310pt;}
.x22{left:690.213322pt;}
}




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