
    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_cbe1fb5c571aba7130f0a3b1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_d51e23305df0b7013a2fd905.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_dc91c4980b032db29b70d121.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_55e4cecda708cbb4416ce5de.woff')format("woff");}.ff4{font-family:ff4;line-height:1.131836;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_ea2daf5d1e39fd475fd0df9e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.720703;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_1365c7c1aed9c28d9e85d47b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.101625;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_9ff8fd04cdc871f5a3883f19.woff')format("woff");}.ff7{font-family:ff7;line-height:1.026855;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_3cd632397b2ae015ced00be4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.710938;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_12024c84c21d584f43317ed8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.973633;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_f633678b7585ee018e4c577b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_bc2a7d6eeb0d5731efdd1150.woff')format("woff");}.ffb{font-family:ffb;line-height:0.976111;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2ec05a281fc1564936e1490f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.968262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_509deac1d4acf96e4a951cb7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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;}
.v2{vertical-align:17.982000px;}
.v1{vertical-align:21.978000px;}
.ls14{letter-spacing:-3.240000px;}
.lsd{letter-spacing:-1.200000px;}
.ls8{letter-spacing:-0.900000px;}
.ls13{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.691200px;}
.ls11{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.480000px;}
.ls10{letter-spacing:-0.420000px;}
.ls15{letter-spacing:-0.300000px;}
.lsa{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.180000px;}
.ls16{letter-spacing:-0.120000px;}
.ls5{letter-spacing:-0.102000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.025800px;}
.ls1b{letter-spacing:0.300000px;}
.lsb{letter-spacing:0.480000px;}
.ls1a{letter-spacing:0.594000px;}
.ls17{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.918000px;}
.ls18{letter-spacing:0.972000px;}
.lse{letter-spacing:1.200000px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.ls12{letter-spacing:436.013400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-48.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws42{word-spacing:-16.434000px;}
.ws1a{word-spacing:-16.080000px;}
.wsf{word-spacing:-15.360000px;}
.ws3{word-spacing:-14.940000px;}
.ws19{word-spacing:-14.880000px;}
.ws20{word-spacing:-14.700000px;}
.ws3d{word-spacing:-14.400000px;}
.ws44{word-spacing:-14.364000px;}
.ws46{word-spacing:-14.310000px;}
.ws10{word-spacing:-14.160000px;}
.ws47{word-spacing:-13.986000px;}
.ws21{word-spacing:-13.446000px;}
.ws43{word-spacing:-13.392000px;}
.ws4a{word-spacing:-12.852000px;}
.ws6{word-spacing:-12.150000px;}
.ws5{word-spacing:-11.772000px;}
.ws0{word-spacing:-11.371200px;}
.ws39{word-spacing:-10.206000px;}
.ws2{word-spacing:-9.417600px;}
.ws45{word-spacing:-7.807536px;}
.ws12{word-spacing:-3.780000px;}
.ws24{word-spacing:-2.220000px;}
.ws25{word-spacing:-1.680000px;}
.ws1d{word-spacing:-1.620000px;}
.ws3c{word-spacing:-1.380000px;}
.ws1b{word-spacing:-1.200000px;}
.ws2b{word-spacing:-0.972000px;}
.ws48{word-spacing:-0.918000px;}
.ws35{word-spacing:-0.840000px;}
.ws41{word-spacing:-0.720000px;}
.ws49{word-spacing:-0.594000px;}
.ws3b{word-spacing:-0.540000px;}
.ws11{word-spacing:-0.480000px;}
.ws4b{word-spacing:-0.300000px;}
.ws7{word-spacing:0.000000px;}
.ws8{word-spacing:0.102000px;}
.ws40{word-spacing:0.120000px;}
.ws17{word-spacing:0.180000px;}
.wsa{word-spacing:0.216000px;}
.wse{word-spacing:0.240000px;}
.ws3e{word-spacing:0.300000px;}
.ws1e{word-spacing:0.420000px;}
.ws16{word-spacing:0.480000px;}
.wsd{word-spacing:0.540000px;}
.ws2a{word-spacing:0.600000px;}
.ws9{word-spacing:0.691200px;}
.ws36{word-spacing:0.720000px;}
.wsc{word-spacing:0.900000px;}
.ws18{word-spacing:1.200000px;}
.ws1c{word-spacing:1.440000px;}
.wsb{word-spacing:1.836000px;}
.ws37{word-spacing:2.538000px;}
.ws23{word-spacing:3.000000px;}
.ws3a{word-spacing:3.402000px;}
.ws1f{word-spacing:5.280000px;}
.ws28{word-spacing:5.400000px;}
.ws29{word-spacing:5.880000px;}
.ws13{word-spacing:6.540000px;}
.ws15{word-spacing:6.660000px;}
.ws27{word-spacing:6.960000px;}
.ws26{word-spacing:8.160000px;}
.ws38{word-spacing:8.208000px;}
.ws22{word-spacing:9.060000px;}
.ws14{word-spacing:9.120000px;}
.ws3f{word-spacing:9.240000px;}
.ws31{word-spacing:174.676200px;}
.ws2c{word-spacing:310.353600px;}
.ws2d{word-spacing:323.829600px;}
.ws32{word-spacing:323.852400px;}
.ws33{word-spacing:337.329000px;}
.ws34{word-spacing:337.352400px;}
.ws2f{word-spacing:395.032200px;}
.ws30{word-spacing:415.672200px;}
.ws2e{word-spacing:556.467600px;}
._1a{margin-left:-12.060000px;}
._b{margin-left:-10.845600px;}
._31{margin-left:-9.061200px;}
._1d{margin-left:-7.498200px;}
._a{margin-left:-6.247800px;}
._9{margin-left:-4.701600px;}
._4{margin-left:-3.475200px;}
._0{margin-left:-2.152200px;}
._2{margin-left:-1.111800px;}
._3{width:1.071000px;}
._1{width:2.754000px;}
._c{width:4.056000px;}
._8{width:5.146200px;}
._7{width:6.382800px;}
._6{width:8.240400px;}
._5{width:9.244800px;}
._10{width:10.367400px;}
._17{width:12.339600px;}
._d{width:13.806000px;}
._32{width:14.862600px;}
._e{width:16.002000px;}
._f{width:17.511000px;}
._15{width:18.852000px;}
._14{width:20.178000px;}
._13{width:21.373800px;}
._2f{width:22.569600px;}
._2e{width:23.716200px;}
._1b{width:25.464000px;}
._1c{width:26.470200px;}
._18{width:27.990000px;}
._19{width:28.996200px;}
._33{width:31.460400px;}
._11{width:32.964000px;}
._12{width:36.252000px;}
._16{width:37.984200px;}
._30{width:43.042800px;}
._20{width:127.078200px;}
._21{width:130.888200px;}
._1f{width:203.948400px;}
._2d{width:257.829000px;}
._2a{width:341.356800px;}
._23{width:364.788600px;}
._1e{width:365.846400px;}
._26{width:378.276600px;}
._2b{width:391.753200px;}
._24{width:414.159000px;}
._2c{width:441.075600px;}
._28{width:449.456400px;}
._22{width:451.240200px;}
._29{width:454.681200px;}
._27{width:500.536200px;}
._25{width:555.296400px;}
.fc1{color:rgb(151,22,52);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y39{bottom:71.212050px;}
.y3a{bottom:75.036150px;}
.y9b{bottom:113.078550px;}
.yce{bottom:113.078700px;}
.y6c{bottom:113.078850px;}
.y2b{bottom:117.212550px;}
.yc{bottom:117.875550px;}
.ya2{bottom:120.500700px;}
.yb{bottom:132.275550px;}
.y9a{bottom:134.078550px;}
.ycd{bottom:134.078700px;}
.y6b{bottom:134.078850px;}
.y2a{bottom:138.212550px;}
.ya1{bottom:140.300700px;}
.ya{bottom:146.675550px;}
.y99{bottom:155.078550px;}
.ycc{bottom:155.078700px;}
.y6a{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.ya0{bottom:160.100700px;}
.y9{bottom:161.075550px;}
.y98{bottom:176.078550px;}
.ycb{bottom:176.078700px;}
.y69{bottom:176.078850px;}
.y28{bottom:180.212550px;}
.y6e{bottom:189.513600px;}
.y9f{bottom:190.441050px;}
.y97{bottom:197.078550px;}
.yca{bottom:197.078700px;}
.y68{bottom:197.078850px;}
.y36{bottom:199.392600px;}
.y27{bottom:201.212550px;}
.y35{bottom:217.392600px;}
.y96{bottom:218.078550px;}
.yc9{bottom:218.078700px;}
.y67{bottom:218.078850px;}
.y6d{bottom:221.811000px;}
.yf7{bottom:232.441050px;}
.y26{bottom:234.196500px;}
.y34{bottom:235.392600px;}
.y95{bottom:239.078550px;}
.yc8{bottom:239.078700px;}
.y66{bottom:239.078850px;}
.y33{bottom:253.392600px;}
.y94{bottom:260.078550px;}
.yc7{bottom:260.078700px;}
.y65{bottom:260.078850px;}
.y32{bottom:271.392600px;}
.y93{bottom:281.078550px;}
.yc6{bottom:281.078700px;}
.y64{bottom:281.078850px;}
.y31{bottom:289.392600px;}
.ye3{bottom:290.306400px;}
.yc5{bottom:302.078700px;}
.y63{bottom:302.078850px;}
.y30{bottom:307.392600px;}
.ye2{bottom:310.106400px;}
.y92{bottom:316.440900px;}
.yc4{bottom:323.078700px;}
.y62{bottom:323.078850px;}
.y25{bottom:323.227950px;}
.ye1{bottom:329.906400px;}
.ye6{bottom:336.513600px;}
.y2f{bottom:342.400500px;}
.y24{bottom:343.027950px;}
.yc3{bottom:344.078700px;}
.y61{bottom:344.078850px;}
.ye0{bottom:349.706400px;}
.ye5{bottom:357.513600px;}
.y2e{bottom:360.400500px;}
.y91{bottom:365.078550px;}
.yc2{bottom:365.078700px;}
.y60{bottom:365.078850px;}
.yf6{bottom:370.529400px;}
.y2d{bottom:378.400500px;}
.y23{bottom:384.087750px;}
.y90{bottom:386.078550px;}
.yc1{bottom:386.078700px;}
.y5f{bottom:386.078850px;}
.ye4{bottom:389.811150px;}
.y2c{bottom:396.400500px;}
.y22{bottom:403.887750px;}
.y8f{bottom:407.078550px;}
.yc0{bottom:407.078700px;}
.y5e{bottom:407.078850px;}
.y21{bottom:423.687750px;}
.y8e{bottom:428.078550px;}
.ybf{bottom:428.078700px;}
.y5d{bottom:428.078850px;}
.ye8{bottom:433.438500px;}
.y20{bottom:443.487750px;}
.y8d{bottom:449.078550px;}
.ybe{bottom:449.078700px;}
.y5c{bottom:449.078850px;}
.ye7{bottom:453.238500px;}
.y1f{bottom:463.287750px;}
.y9e{bottom:463.441050px;}
.y8c{bottom:470.078550px;}
.ybd{bottom:470.078700px;}
.y5b{bottom:470.078850px;}
.y1e{bottom:483.087750px;}
.y8b{bottom:491.078550px;}
.ybc{bottom:491.078700px;}
.y5a{bottom:491.078850px;}
.y1d{bottom:502.887750px;}
.y8a{bottom:512.078550px;}
.ybb{bottom:512.078700px;}
.y59{bottom:512.078850px;}
.yf5{bottom:517.529400px;}
.y1c{bottom:522.687750px;}
.yeb{bottom:526.441050px;}
.y89{bottom:533.078550px;}
.yba{bottom:533.078700px;}
.y58{bottom:533.078850px;}
.y1b{bottom:542.487750px;}
.yea{bottom:547.441050px;}
.y88{bottom:554.078550px;}
.yb9{bottom:554.078700px;}
.y57{bottom:554.078850px;}
.y1a{bottom:562.287750px;}
.y87{bottom:575.078550px;}
.ydc{bottom:575.078700px;}
.y56{bottom:575.078850px;}
.y19{bottom:582.087750px;}
.yb8{bottom:589.440900px;}
.y9d{bottom:589.441050px;}
.y86{bottom:596.078550px;}
.ydb{bottom:596.078700px;}
.y55{bottom:596.078850px;}
.y18{bottom:601.887750px;}
.ya9{bottom:609.513600px;}
.yb7{bottom:610.440900px;}
.y85{bottom:617.078550px;}
.yda{bottom:617.078700px;}
.y54{bottom:617.078850px;}
.y17{bottom:621.687750px;}
.ya8{bottom:630.513600px;}
.yed{bottom:631.441050px;}
.y84{bottom:638.078550px;}
.yd9{bottom:638.078700px;}
.y53{bottom:638.078850px;}
.y16{bottom:641.487750px;}
.yfa{bottom:641.811150px;}
.yf4{bottom:643.529400px;}
.y83{bottom:659.078550px;}
.yb6{bottom:659.078700px;}
.y52{bottom:659.078850px;}
.y15{bottom:661.287750px;}
.ya7{bottom:662.811150px;}
.y82{bottom:680.078550px;}
.yb5{bottom:680.078700px;}
.y51{bottom:680.078850px;}
.y14{bottom:681.087750px;}
.yee{bottom:694.441050px;}
.y13{bottom:700.887750px;}
.y81{bottom:701.078550px;}
.yb4{bottom:701.078700px;}
.y50{bottom:701.078850px;}
.ya5{bottom:715.441050px;}
.y12{bottom:720.687750px;}
.y80{bottom:722.078550px;}
.yb3{bottom:722.078700px;}
.y4f{bottom:722.078850px;}
.ya4{bottom:736.441050px;}
.y11{bottom:740.487750px;}
.y7f{bottom:743.078550px;}
.yb2{bottom:743.078700px;}
.y4e{bottom:743.078850px;}
.y10{bottom:760.287750px;}
.y7e{bottom:764.078550px;}
.yb1{bottom:764.078700px;}
.y4d{bottom:764.078850px;}
.y9c{bottom:778.441050px;}
.yf{bottom:780.087750px;}
.yb0{bottom:785.078700px;}
.y4c{bottom:785.078850px;}
.y7d{bottom:799.440900px;}
.yaf{bottom:806.078700px;}
.y4b{bottom:806.078850px;}
.ye{bottom:811.185300px;}
.yf3{bottom:811.529250px;}
.yae{bottom:827.078700px;}
.y4a{bottom:827.078850px;}
.y7c{bottom:848.078700px;}
.y49{bottom:848.078850px;}
.yad{bottom:851.985150px;}
.y7b{bottom:869.078700px;}
.y48{bottom:869.078850px;}
.ydf{bottom:871.162650px;}
.yac{bottom:871.785000px;}
.yf2{bottom:874.529250px;}
.y7a{bottom:890.078700px;}
.y47{bottom:890.078850px;}
.y8{bottom:890.466750px;}
.yde{bottom:890.962800px;}
.yab{bottom:891.585000px;}
.yf9{bottom:903.513600px;}
.y7{bottom:908.466750px;}
.ydd{bottom:910.762800px;}
.y79{bottom:911.078700px;}
.y46{bottom:911.078850px;}
.yaa{bottom:911.385000px;}
.ye9{bottom:925.441050px;}
.y6{bottom:926.466750px;}
.y78{bottom:932.078700px;}
.y45{bottom:932.078850px;}
.yd8{bottom:934.267950px;}
.yf8{bottom:935.811000px;}
.yf1{bottom:937.529250px;}
.y5{bottom:944.466750px;}
.y77{bottom:953.078700px;}
.y44{bottom:953.078850px;}
.yd7{bottom:953.472600px;}
.ya3{bottom:967.441050px;}
.yd6{bottom:972.677400px;}
.y76{bottom:974.078700px;}
.y43{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.yd5{bottom:991.882200px;}
.y75{bottom:995.078700px;}
.y42{bottom:995.078850px;}
.yf0{bottom:1000.937100px;}
.ya6{bottom:1009.441050px;}
.yd4{bottom:1011.086850px;}
.y74{bottom:1016.078700px;}
.y41{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.yd3{bottom:1030.291500px;}
.yef{bottom:1030.441050px;}
.y73{bottom:1037.078700px;}
.y40{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.yd2{bottom:1049.496300px;}
.y72{bottom:1058.078700px;}
.y3f{bottom:1058.078850px;}
.yd1{bottom:1069.001100px;}
.y71{bottom:1079.078700px;}
.y3e{bottom:1079.078850px;}
.yd0{bottom:1099.482900px;}
.y70{bottom:1100.078700px;}
.y3d{bottom:1100.078850px;}
.yd{bottom:1109.815500px;}
.yec{bottom:1114.821900px;}
.ycf{bottom:1119.282900px;}
.y6f{bottom:1121.078700px;}
.y3c{bottom:1121.078850px;}
.y38{bottom:1155.615300px;}
.y37{bottom:1175.115300px;}
.y3b{bottom:1178.691750px;}
.h7{height:34.446094px;}
.h11{height:36.000000px;}
.h2{height:38.039062px;}
.hf{height:38.273438px;}
.h8{height:40.500000px;}
.h6{height:41.838914px;}
.he{height:42.793945px;}
.hd{height:43.057617px;}
.h12{height:43.312500px;}
.h9{height:45.615234px;}
.ha{height:48.726562px;}
.h10{height:50.176758px;}
.hc{height:54.140625px;}
.hb{height:54.738281px;}
.h5{height:59.554688px;}
.h4{height:76.500000px;}
.h3{height:77.545898px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.992100px;}
.xb{left:107.068950px;}
.xd{left:108.286950px;}
.xf{left:112.251900px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.xe{left:163.817700px;}
.x5{left:300.189000px;}
.xc{left:317.196900px;}
.x4{left:396.050700px;}
.x9{left:568.512600px;}
.xa{left:678.252900px;}
.x1{left:801.350850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.984000pt;}
.v1{vertical-align:19.536000pt;}
.ls14{letter-spacing:-2.880000pt;}
.lsd{letter-spacing:-1.066667pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.614400pt;}
.ls11{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.426667pt;}
.ls10{letter-spacing:-0.373333pt;}
.ls15{letter-spacing:-0.266667pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls16{letter-spacing:-0.106667pt;}
.ls5{letter-spacing:-0.090667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.022933pt;}
.ls1b{letter-spacing:0.266667pt;}
.lsb{letter-spacing:0.426667pt;}
.ls1a{letter-spacing:0.528000pt;}
.ls17{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.816000pt;}
.ls18{letter-spacing:0.864000pt;}
.lse{letter-spacing:1.066667pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ls12{letter-spacing:387.567467pt;}
.ws1{word-spacing:-42.666667pt;}
.ws4{word-spacing:-15.936000pt;}
.ws42{word-spacing:-14.608000pt;}
.ws1a{word-spacing:-14.293333pt;}
.wsf{word-spacing:-13.653333pt;}
.ws3{word-spacing:-13.280000pt;}
.ws19{word-spacing:-13.226667pt;}
.ws20{word-spacing:-13.066667pt;}
.ws3d{word-spacing:-12.800000pt;}
.ws44{word-spacing:-12.768000pt;}
.ws46{word-spacing:-12.720000pt;}
.ws10{word-spacing:-12.586667pt;}
.ws47{word-spacing:-12.432000pt;}
.ws21{word-spacing:-11.952000pt;}
.ws43{word-spacing:-11.904000pt;}
.ws4a{word-spacing:-11.424000pt;}
.ws6{word-spacing:-10.800000pt;}
.ws5{word-spacing:-10.464000pt;}
.ws0{word-spacing:-10.107733pt;}
.ws39{word-spacing:-9.072000pt;}
.ws2{word-spacing:-8.371200pt;}
.ws45{word-spacing:-6.940032pt;}
.ws12{word-spacing:-3.360000pt;}
.ws24{word-spacing:-1.973333pt;}
.ws25{word-spacing:-1.493333pt;}
.ws1d{word-spacing:-1.440000pt;}
.ws3c{word-spacing:-1.226667pt;}
.ws1b{word-spacing:-1.066667pt;}
.ws2b{word-spacing:-0.864000pt;}
.ws48{word-spacing:-0.816000pt;}
.ws35{word-spacing:-0.746667pt;}
.ws41{word-spacing:-0.640000pt;}
.ws49{word-spacing:-0.528000pt;}
.ws3b{word-spacing:-0.480000pt;}
.ws11{word-spacing:-0.426667pt;}
.ws4b{word-spacing:-0.266667pt;}
.ws7{word-spacing:0.000000pt;}
.ws8{word-spacing:0.090667pt;}
.ws40{word-spacing:0.106667pt;}
.ws17{word-spacing:0.160000pt;}
.wsa{word-spacing:0.192000pt;}
.wse{word-spacing:0.213333pt;}
.ws3e{word-spacing:0.266667pt;}
.ws1e{word-spacing:0.373333pt;}
.ws16{word-spacing:0.426667pt;}
.wsd{word-spacing:0.480000pt;}
.ws2a{word-spacing:0.533333pt;}
.ws9{word-spacing:0.614400pt;}
.ws36{word-spacing:0.640000pt;}
.wsc{word-spacing:0.800000pt;}
.ws18{word-spacing:1.066667pt;}
.ws1c{word-spacing:1.280000pt;}
.wsb{word-spacing:1.632000pt;}
.ws37{word-spacing:2.256000pt;}
.ws23{word-spacing:2.666667pt;}
.ws3a{word-spacing:3.024000pt;}
.ws1f{word-spacing:4.693333pt;}
.ws28{word-spacing:4.800000pt;}
.ws29{word-spacing:5.226667pt;}
.ws13{word-spacing:5.813333pt;}
.ws15{word-spacing:5.920000pt;}
.ws27{word-spacing:6.186667pt;}
.ws26{word-spacing:7.253333pt;}
.ws38{word-spacing:7.296000pt;}
.ws22{word-spacing:8.053333pt;}
.ws14{word-spacing:8.106667pt;}
.ws3f{word-spacing:8.213333pt;}
.ws31{word-spacing:155.267733pt;}
.ws2c{word-spacing:275.869867pt;}
.ws2d{word-spacing:287.848533pt;}
.ws32{word-spacing:287.868800pt;}
.ws33{word-spacing:299.848000pt;}
.ws34{word-spacing:299.868800pt;}
.ws2f{word-spacing:351.139733pt;}
.ws30{word-spacing:369.486400pt;}
.ws2e{word-spacing:494.637867pt;}
._1a{margin-left:-10.720000pt;}
._b{margin-left:-9.640533pt;}
._31{margin-left:-8.054400pt;}
._1d{margin-left:-6.665067pt;}
._a{margin-left:-5.553600pt;}
._9{margin-left:-4.179200pt;}
._4{margin-left:-3.089067pt;}
._0{margin-left:-1.913067pt;}
._2{margin-left:-0.988267pt;}
._3{width:0.952000pt;}
._1{width:2.448000pt;}
._c{width:3.605333pt;}
._8{width:4.574400pt;}
._7{width:5.673600pt;}
._6{width:7.324800pt;}
._5{width:8.217600pt;}
._10{width:9.215467pt;}
._17{width:10.968533pt;}
._d{width:12.272000pt;}
._32{width:13.211200pt;}
._e{width:14.224000pt;}
._f{width:15.565333pt;}
._15{width:16.757333pt;}
._14{width:17.936000pt;}
._13{width:18.998933pt;}
._2f{width:20.061867pt;}
._2e{width:21.081067pt;}
._1b{width:22.634667pt;}
._1c{width:23.529067pt;}
._18{width:24.880000pt;}
._19{width:25.774400pt;}
._33{width:27.964800pt;}
._11{width:29.301333pt;}
._12{width:32.224000pt;}
._16{width:33.763733pt;}
._30{width:38.260267pt;}
._20{width:112.958400pt;}
._21{width:116.345067pt;}
._1f{width:181.287467pt;}
._2d{width:229.181333pt;}
._2a{width:303.428267pt;}
._23{width:324.256533pt;}
._1e{width:325.196800pt;}
._26{width:336.245867pt;}
._2b{width:348.225067pt;}
._24{width:368.141333pt;}
._2c{width:392.067200pt;}
._28{width:399.516800pt;}
._22{width:401.102400pt;}
._29{width:404.161067pt;}
._27{width:444.921067pt;}
._25{width:493.596800pt;}
.fs9{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y39{bottom:63.299600pt;}
.y3a{bottom:66.698800pt;}
.y9b{bottom:100.514267pt;}
.yce{bottom:100.514400pt;}
.y6c{bottom:100.514533pt;}
.y2b{bottom:104.188933pt;}
.yc{bottom:104.778267pt;}
.ya2{bottom:107.111733pt;}
.yb{bottom:117.578267pt;}
.y9a{bottom:119.180933pt;}
.ycd{bottom:119.181067pt;}
.y6b{bottom:119.181200pt;}
.y2a{bottom:122.855600pt;}
.ya1{bottom:124.711733pt;}
.ya{bottom:130.378267pt;}
.y99{bottom:137.847600pt;}
.ycc{bottom:137.847733pt;}
.y6a{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.ya0{bottom:142.311733pt;}
.y9{bottom:143.178267pt;}
.y98{bottom:156.514267pt;}
.ycb{bottom:156.514400pt;}
.y69{bottom:156.514533pt;}
.y28{bottom:160.188933pt;}
.y6e{bottom:168.456533pt;}
.y9f{bottom:169.280933pt;}
.y97{bottom:175.180933pt;}
.yca{bottom:175.181067pt;}
.y68{bottom:175.181200pt;}
.y36{bottom:177.237867pt;}
.y27{bottom:178.855600pt;}
.y35{bottom:193.237867pt;}
.y96{bottom:193.847600pt;}
.yc9{bottom:193.847733pt;}
.y67{bottom:193.847867pt;}
.y6d{bottom:197.165333pt;}
.yf7{bottom:206.614267pt;}
.y26{bottom:208.174667pt;}
.y34{bottom:209.237867pt;}
.y95{bottom:212.514267pt;}
.yc8{bottom:212.514400pt;}
.y66{bottom:212.514533pt;}
.y33{bottom:225.237867pt;}
.y94{bottom:231.180933pt;}
.yc7{bottom:231.181067pt;}
.y65{bottom:231.181200pt;}
.y32{bottom:241.237867pt;}
.y93{bottom:249.847600pt;}
.yc6{bottom:249.847733pt;}
.y64{bottom:249.847867pt;}
.y31{bottom:257.237867pt;}
.ye3{bottom:258.050133pt;}
.yc5{bottom:268.514400pt;}
.y63{bottom:268.514533pt;}
.y30{bottom:273.237867pt;}
.ye2{bottom:275.650133pt;}
.y92{bottom:281.280800pt;}
.yc4{bottom:287.181067pt;}
.y62{bottom:287.181200pt;}
.y25{bottom:287.313733pt;}
.ye1{bottom:293.250133pt;}
.ye6{bottom:299.123200pt;}
.y2f{bottom:304.356000pt;}
.y24{bottom:304.913733pt;}
.yc3{bottom:305.847733pt;}
.y61{bottom:305.847867pt;}
.ye0{bottom:310.850133pt;}
.ye5{bottom:317.789867pt;}
.y2e{bottom:320.356000pt;}
.y91{bottom:324.514267pt;}
.yc2{bottom:324.514400pt;}
.y60{bottom:324.514533pt;}
.yf6{bottom:329.359467pt;}
.y2d{bottom:336.356000pt;}
.y23{bottom:341.411333pt;}
.y90{bottom:343.180933pt;}
.yc1{bottom:343.181067pt;}
.y5f{bottom:343.181200pt;}
.ye4{bottom:346.498800pt;}
.y2c{bottom:352.356000pt;}
.y22{bottom:359.011333pt;}
.y8f{bottom:361.847600pt;}
.yc0{bottom:361.847733pt;}
.y5e{bottom:361.847867pt;}
.y21{bottom:376.611333pt;}
.y8e{bottom:380.514267pt;}
.ybf{bottom:380.514400pt;}
.y5d{bottom:380.514533pt;}
.ye8{bottom:385.278667pt;}
.y20{bottom:394.211333pt;}
.y8d{bottom:399.180933pt;}
.ybe{bottom:399.181067pt;}
.y5c{bottom:399.181200pt;}
.ye7{bottom:402.878667pt;}
.y1f{bottom:411.811333pt;}
.y9e{bottom:411.947600pt;}
.y8c{bottom:417.847600pt;}
.ybd{bottom:417.847733pt;}
.y5b{bottom:417.847867pt;}
.y1e{bottom:429.411333pt;}
.y8b{bottom:436.514267pt;}
.ybc{bottom:436.514400pt;}
.y5a{bottom:436.514533pt;}
.y1d{bottom:447.011333pt;}
.y8a{bottom:455.180933pt;}
.ybb{bottom:455.181067pt;}
.y59{bottom:455.181200pt;}
.yf5{bottom:460.026133pt;}
.y1c{bottom:464.611333pt;}
.yeb{bottom:467.947600pt;}
.y89{bottom:473.847600pt;}
.yba{bottom:473.847733pt;}
.y58{bottom:473.847867pt;}
.y1b{bottom:482.211333pt;}
.yea{bottom:486.614267pt;}
.y88{bottom:492.514267pt;}
.yb9{bottom:492.514400pt;}
.y57{bottom:492.514533pt;}
.y1a{bottom:499.811333pt;}
.y87{bottom:511.180933pt;}
.ydc{bottom:511.181067pt;}
.y56{bottom:511.181200pt;}
.y19{bottom:517.411333pt;}
.yb8{bottom:523.947467pt;}
.y9d{bottom:523.947600pt;}
.y86{bottom:529.847600pt;}
.ydb{bottom:529.847733pt;}
.y55{bottom:529.847867pt;}
.y18{bottom:535.011333pt;}
.ya9{bottom:541.789867pt;}
.yb7{bottom:542.614133pt;}
.y85{bottom:548.514267pt;}
.yda{bottom:548.514400pt;}
.y54{bottom:548.514533pt;}
.y17{bottom:552.611333pt;}
.ya8{bottom:560.456533pt;}
.yed{bottom:561.280933pt;}
.y84{bottom:567.180933pt;}
.yd9{bottom:567.181067pt;}
.y53{bottom:567.181200pt;}
.y16{bottom:570.211333pt;}
.yfa{bottom:570.498800pt;}
.yf4{bottom:572.026133pt;}
.y83{bottom:585.847600pt;}
.yb6{bottom:585.847733pt;}
.y52{bottom:585.847867pt;}
.y15{bottom:587.811333pt;}
.ya7{bottom:589.165467pt;}
.y82{bottom:604.514267pt;}
.yb5{bottom:604.514400pt;}
.y51{bottom:604.514533pt;}
.y14{bottom:605.411333pt;}
.yee{bottom:617.280933pt;}
.y13{bottom:623.011333pt;}
.y81{bottom:623.180933pt;}
.yb4{bottom:623.181067pt;}
.y50{bottom:623.181200pt;}
.ya5{bottom:635.947600pt;}
.y12{bottom:640.611333pt;}
.y80{bottom:641.847600pt;}
.yb3{bottom:641.847733pt;}
.y4f{bottom:641.847867pt;}
.ya4{bottom:654.614267pt;}
.y11{bottom:658.211333pt;}
.y7f{bottom:660.514267pt;}
.yb2{bottom:660.514400pt;}
.y4e{bottom:660.514533pt;}
.y10{bottom:675.811333pt;}
.y7e{bottom:679.180933pt;}
.yb1{bottom:679.181067pt;}
.y4d{bottom:679.181200pt;}
.y9c{bottom:691.947600pt;}
.yf{bottom:693.411333pt;}
.yb0{bottom:697.847733pt;}
.y4c{bottom:697.847867pt;}
.y7d{bottom:710.614133pt;}
.yaf{bottom:716.514400pt;}
.y4b{bottom:716.514533pt;}
.ye{bottom:721.053600pt;}
.yf3{bottom:721.359333pt;}
.yae{bottom:735.181067pt;}
.y4a{bottom:735.181200pt;}
.y7c{bottom:753.847733pt;}
.y49{bottom:753.847867pt;}
.yad{bottom:757.320133pt;}
.y7b{bottom:772.514400pt;}
.y48{bottom:772.514533pt;}
.ydf{bottom:774.366800pt;}
.yac{bottom:774.920000pt;}
.yf2{bottom:777.359333pt;}
.y7a{bottom:791.181067pt;}
.y47{bottom:791.181200pt;}
.y8{bottom:791.526000pt;}
.yde{bottom:791.966933pt;}
.yab{bottom:792.520000pt;}
.yf9{bottom:803.123200pt;}
.y7{bottom:807.526000pt;}
.ydd{bottom:809.566933pt;}
.y79{bottom:809.847733pt;}
.y46{bottom:809.847867pt;}
.yaa{bottom:810.120000pt;}
.ye9{bottom:822.614267pt;}
.y6{bottom:823.526000pt;}
.y78{bottom:828.514400pt;}
.y45{bottom:828.514533pt;}
.yd8{bottom:830.460400pt;}
.yf8{bottom:831.832000pt;}
.yf1{bottom:833.359333pt;}
.y5{bottom:839.526000pt;}
.y77{bottom:847.181067pt;}
.y44{bottom:847.181200pt;}
.yd7{bottom:847.531200pt;}
.ya3{bottom:859.947600pt;}
.yd6{bottom:864.602133pt;}
.y76{bottom:865.847733pt;}
.y43{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.yd5{bottom:881.673067pt;}
.y75{bottom:884.514400pt;}
.y42{bottom:884.514533pt;}
.yf0{bottom:889.721867pt;}
.ya6{bottom:897.280933pt;}
.yd4{bottom:898.743867pt;}
.y74{bottom:903.181067pt;}
.y41{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.yd3{bottom:915.814667pt;}
.yef{bottom:915.947600pt;}
.y73{bottom:921.847733pt;}
.y40{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.yd2{bottom:932.885600pt;}
.y72{bottom:940.514400pt;}
.y3f{bottom:940.514533pt;}
.yd1{bottom:950.223200pt;}
.y71{bottom:959.181067pt;}
.y3e{bottom:959.181200pt;}
.yd0{bottom:977.318133pt;}
.y70{bottom:977.847733pt;}
.y3d{bottom:977.847867pt;}
.yd{bottom:986.502667pt;}
.yec{bottom:990.952800pt;}
.ycf{bottom:994.918133pt;}
.y6f{bottom:996.514400pt;}
.y3c{bottom:996.514533pt;}
.y38{bottom:1027.213600pt;}
.y37{bottom:1044.546933pt;}
.y3b{bottom:1047.726000pt;}
.h7{height:30.618750pt;}
.h11{height:32.000000pt;}
.h2{height:33.812500pt;}
.hf{height:34.020833pt;}
.h8{height:36.000000pt;}
.h6{height:37.190146pt;}
.he{height:38.039062pt;}
.hd{height:38.273438pt;}
.h12{height:38.500000pt;}
.h9{height:40.546875pt;}
.ha{height:43.312500pt;}
.h10{height:44.601562pt;}
.hc{height:48.125000pt;}
.hb{height:48.656250pt;}
.h5{height:52.937500pt;}
.h4{height:68.000000pt;}
.h3{height:68.929688pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.881867pt;}
.xb{left:95.172400pt;}
.xd{left:96.255067pt;}
.xf{left:99.779467pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.xe{left:145.615733pt;}
.x5{left:266.834667pt;}
.xc{left:281.952800pt;}
.x4{left:352.045067pt;}
.x9{left:505.344533pt;}
.xa{left:602.891467pt;}
.x1{left:712.311867pt;}
}




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