
    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_245f25196c30b3a91eb1a19f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ebe4ac014271248841de3318.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_5614a868a374ddc4ba3f0f13.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097656;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_94ac94854b4d66e6628efa35.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.102000;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_b963fa58c3c51feb4c1ade6a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.995000;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_886f4b392e70b3aff9b18e6d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966000;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_29ef3be50016dd8b0efc96b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.087891;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_5aabc57777a7c39f81bfa1e5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854004;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_1ffc9c4a1aed02fc918b4626.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966000;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_0a9c85e1d30f0aac28c32f0c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.665000;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_485da16c5f40b4daa0d06e55.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.989000;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:ffe;src:url('chunks/assets/font_4354e16deb2e9f392b459d18.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.970000;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);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls8{letter-spacing:-6.552000px;}
.lsa{letter-spacing:-3.738000px;}
.lsc{letter-spacing:-3.444000px;}
.ls7{letter-spacing:-2.940000px;}
.ls5{letter-spacing:-1.890000px;}
.lse{letter-spacing:-1.728000px;}
.ls4{letter-spacing:-1.674000px;}
.lsb{letter-spacing:-0.540000px;}
.ls1{letter-spacing:-0.420000px;}
.lsd{letter-spacing:-0.240000px;}
.lsf{letter-spacing:-0.015000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000108px;}
.ls9{letter-spacing:0.000234px;}
.ls3{letter-spacing:0.000300px;}
.ls2{letter-spacing:198.726000px;}
.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:-63.036000px;}
.wsb{word-spacing:-33.372000px;}
.ws1c{word-spacing:-32.832000px;}
.ws2{word-spacing:-18.540000px;}
.ws5{word-spacing:-13.500000px;}
.wsa{word-spacing:-12.978000px;}
.ws11{word-spacing:-11.826000px;}
.ws15{word-spacing:-11.610000px;}
.ws3{word-spacing:-11.124000px;}
.ws4{word-spacing:-11.088000px;}
.ws20{word-spacing:-10.944000px;}
.ws1f{word-spacing:-9.534000px;}
.ws22{word-spacing:-9.456000px;}
.ws25{word-spacing:-9.240000px;}
.wsc{word-spacing:-7.870500px;}
.ws1a{word-spacing:-6.426000px;}
.ws10{word-spacing:-1.674000px;}
.ws6{word-spacing:-1.080000px;}
.wsf{word-spacing:-0.810000px;}
.ws21{word-spacing:-0.699000px;}
.ws26{word-spacing:-0.684000px;}
.ws1d{word-spacing:-0.648000px;}
.wse{word-spacing:-0.540000px;}
.ws1e{word-spacing:-0.378000px;}
.ws24{word-spacing:-0.336000px;}
.ws19{word-spacing:-0.087450px;}
.ws0{word-spacing:0.000000px;}
.ws23{word-spacing:0.240000px;}
.wsd{word-spacing:0.420000px;}
.ws17{word-spacing:112.470000px;}
.ws14{word-spacing:112.956000px;}
.ws13{word-spacing:115.062000px;}
.ws12{word-spacing:136.392000px;}
.ws16{word-spacing:142.980000px;}
.ws8{word-spacing:165.834000px;}
.ws18{word-spacing:168.654000px;}
.ws1b{word-spacing:171.048000px;}
.ws9{word-spacing:181.380000px;}
.ws7{word-spacing:193.158000px;}
._e{margin-left:-1378.972200px;}
._1a{margin-left:-1375.510800px;}
._19{margin-left:-1372.411800px;}
._11{margin-left:-56.699400px;}
._5{margin-left:-7.849200px;}
._4{margin-left:-6.242400px;}
._6{margin-left:-4.492800px;}
._3{margin-left:-3.284400px;}
._0{margin-left:-1.972800px;}
._1{width:1.418400px;}
._2{width:2.448000px;}
._1b{width:3.456000px;}
._f{width:5.166000px;}
._12{width:28.800000px;}
._10{width:38.664000px;}
._14{width:107.136000px;}
._16{width:149.892000px;}
._d{width:165.023400px;}
._c{width:167.182800px;}
._7{width:169.072800px;}
._17{width:174.172800px;}
._b{width:183.546000px;}
._a{width:186.354000px;}
._9{width:188.513400px;}
._8{width:193.157400px;}
._15{width:392.332800px;}
._13{width:504.546000px;}
._18{width:688.764000px;}
.fc3{color:rgb(189,188,188);}
.fc1{color:rgb(235,0,69);}
.fc4{color:rgb(35,31,32);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:0.349800px;}
.fsc{font-size:3.000000px;}
.fs9{font-size:31.482000px;}
.fs7{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.fs5{font-size:204.000000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:54.000000px;}
.y5{bottom:66.525004px;}
.y163{bottom:90.000000px;}
.y4{bottom:97.125005px;}
.y12c{bottom:107.999850px;}
.y50{bottom:108.000000px;}
.yfb{bottom:117.000000px;}
.y4f{bottom:121.500000px;}
.y12b{bottom:125.999850px;}
.ybc{bottom:126.000000px;}
.ydf{bottom:130.500000px;}
.y4e{bottom:135.000000px;}
.y20{bottom:139.264499px;}
.yc9{bottom:139.500000px;}
.y12a{bottom:143.999850px;}
.ybb{bottom:144.000000px;}
.yde{bottom:148.500000px;}
.yfa{bottom:153.000000px;}
.y159{bottom:157.499850px;}
.yc8{bottom:157.500000px;}
.y4d{bottom:159.000000px;}
.y129{bottom:161.999850px;}
.yba{bottom:162.000000px;}
.y99{bottom:166.500000px;}
.yf9{bottom:171.000000px;}
.y4c{bottom:172.500000px;}
.y158{bottom:175.499850px;}
.yc7{bottom:175.500000px;}
.y128{bottom:179.999850px;}
.yb9{bottom:180.000000px;}
.ydd{bottom:184.500000px;}
.yf8{bottom:189.000000px;}
.y157{bottom:193.499850px;}
.yc6{bottom:193.500000px;}
.y17{bottom:196.933500px;}
.y127{bottom:197.999850px;}
.y4b{bottom:198.000000px;}
.y15d{bottom:202.500000px;}
.yf7{bottom:207.000000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y156{bottom:211.499850px;}
.yc5{bottom:211.500000px;}
.y126{bottom:215.999850px;}
.yad{bottom:216.000000px;}
.y4a{bottom:220.500000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.ydc{bottom:225.000000px;}
.y155{bottom:229.499850px;}
.y98{bottom:229.500000px;}
.y125{bottom:233.999850px;}
.y49{bottom:234.000000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y15c{bottom:238.500000px;}
.y154{bottom:247.499850px;}
.y48{bottom:247.500000px;}
.y124{bottom:251.999850px;}
.y7d{bottom:252.000000px;}
.yf6{bottom:256.500000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y47{bottom:261.000000px;}
.y153{bottom:265.499850px;}
.y97{bottom:265.500000px;}
.y123{bottom:269.999850px;}
.y7c{bottom:270.000000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.yf5{bottom:274.500000px;}
.y152{bottom:283.499850px;}
.y46{bottom:283.500000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y122{bottom:287.999850px;}
.y7b{bottom:288.000000px;}
.yf4{bottom:292.500000px;}
.y45{bottom:297.000000px;}
.y151{bottom:301.499850px;}
.y96{bottom:301.500000px;}
.y121{bottom:305.999850px;}
.y7a{bottom:306.000000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.yf3{bottom:310.500000px;}
.y150{bottom:319.499850px;}
.y95{bottom:319.500000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y120{bottom:323.999850px;}
.y79{bottom:324.000000px;}
.yf2{bottom:328.500000px;}
.yeb{bottom:333.000000px;}
.y14f{bottom:337.499850px;}
.y94{bottom:337.500000px;}
.y11f{bottom:341.999850px;}
.y78{bottom:342.000000px;}
.yf1{bottom:346.500000px;}
.ye{bottom:348.133500px;}
.yea{bottom:351.000000px;}
.y14e{bottom:355.499850px;}
.y93{bottom:355.500000px;}
.y11e{bottom:359.999850px;}
.yac{bottom:360.000000px;}
.y44{bottom:363.075000px;}
.yf0{bottom:364.500000px;}
.ye9{bottom:369.000000px;}
.y77{bottom:373.500000px;}
.y11d{bottom:377.999850px;}
.yab{bottom:378.000000px;}
.y43{bottom:381.825000px;}
.yef{bottom:382.500000px;}
.yd{bottom:386.785499px;}
.ydb{bottom:387.000000px;}
.y14d{bottom:391.499850px;}
.y76{bottom:391.500000px;}
.y42{bottom:393.825000px;}
.y11c{bottom:395.999850px;}
.yaa{bottom:396.000000px;}
.yee{bottom:400.500000px;}
.ycd{bottom:405.000000px;}
.y41{bottom:405.825000px;}
.yda{bottom:407.062500px;}
.yc{bottom:408.044999px;}
.y75{bottom:409.500000px;}
.y11b{bottom:413.999850px;}
.ya9{bottom:414.000000px;}
.yed{bottom:418.500000px;}
.yb8{bottom:423.000000px;}
.y40{bottom:424.575000px;}
.y74{bottom:427.500000px;}
.y11a{bottom:431.999850px;}
.ya8{bottom:432.000000px;}
.yec{bottom:436.500000px;}
.yb7{bottom:441.000000px;}
.y73{bottom:445.500000px;}
.y119{bottom:449.999850px;}
.ya7{bottom:450.000000px;}
.ye8{bottom:454.500000px;}
.yb6{bottom:459.000000px;}
.y72{bottom:463.500000px;}
.y118{bottom:467.999850px;}
.ya6{bottom:468.000000px;}
.ye7{bottom:472.500000px;}
.yb5{bottom:477.000000px;}
.y71{bottom:481.500000px;}
.y117{bottom:485.999850px;}
.ya5{bottom:486.000000px;}
.ye6{bottom:490.500000px;}
.y14c{bottom:494.999850px;}
.yb4{bottom:495.000000px;}
.y70{bottom:499.500000px;}
.y116{bottom:503.999850px;}
.ya4{bottom:504.000000px;}
.ye5{bottom:508.500000px;}
.y14b{bottom:512.999850px;}
.yb3{bottom:513.000000px;}
.y92{bottom:517.500000px;}
.yb{bottom:520.864502px;}
.y115{bottom:521.999850px;}
.ya3{bottom:522.000000px;}
.yd3{bottom:526.500000px;}
.y14a{bottom:530.999850px;}
.y6f{bottom:531.000000px;}
.y5a{bottom:535.500000px;}
.ya{bottom:538.864499px;}
.ya2{bottom:540.000000px;}
.yd2{bottom:544.500000px;}
.y149{bottom:548.999850px;}
.y6e{bottom:549.000000px;}
.y114{bottom:553.499850px;}
.y91{bottom:553.500000px;}
.y9{bottom:556.864499px;}
.ya1{bottom:558.000000px;}
.yd1{bottom:562.500000px;}
.y148{bottom:566.999850px;}
.y59{bottom:567.000000px;}
.y113{bottom:571.499850px;}
.y90{bottom:571.500000px;}
.ya0{bottom:576.000000px;}
.yb2{bottom:580.500000px;}
.y147{bottom:584.999850px;}
.ycc{bottom:585.000000px;}
.y112{bottom:589.499850px;}
.y8f{bottom:589.500000px;}
.y9f{bottom:594.000000px;}
.y58{bottom:598.500000px;}
.y146{bottom:602.999850px;}
.ycb{bottom:603.000000px;}
.y111{bottom:607.499850px;}
.y8e{bottom:607.500000px;}
.y6d{bottom:616.500000px;}
.y145{bottom:620.999850px;}
.yca{bottom:621.000000px;}
.y110{bottom:625.499850px;}
.y8d{bottom:625.500000px;}
.y57{bottom:630.000000px;}
.y6c{bottom:634.500000px;}
.y144{bottom:638.999850px;}
.yc4{bottom:639.000000px;}
.y10f{bottom:643.499850px;}
.y8c{bottom:643.500000px;}
.y8{bottom:645.510000px;}
.yd0{bottom:648.000000px;}
.y6b{bottom:652.500000px;}
.y143{bottom:656.999850px;}
.yc3{bottom:657.000000px;}
.y10e{bottom:661.499850px;}
.y56{bottom:661.500000px;}
.ycf{bottom:666.000000px;}
.y7{bottom:666.771000px;}
.y6a{bottom:670.500000px;}
.y142{bottom:674.999850px;}
.y2a{bottom:675.000000px;}
.y10d{bottom:679.499850px;}
.y8b{bottom:679.500000px;}
.yce{bottom:684.000000px;}
.y25{bottom:688.500000px;}
.y141{bottom:692.999850px;}
.y55{bottom:693.000000px;}
.y10c{bottom:697.499850px;}
.y8a{bottom:697.500000px;}
.ye4{bottom:702.000000px;}
.y69{bottom:706.500000px;}
.y140{bottom:710.999850px;}
.yc2{bottom:711.000000px;}
.y10b{bottom:715.499850px;}
.y89{bottom:715.500000px;}
.yb1{bottom:720.000000px;}
.y54{bottom:724.500000px;}
.y6{bottom:726.298500px;}
.y13f{bottom:728.999850px;}
.yc1{bottom:729.000000px;}
.y10a{bottom:733.499850px;}
.y88{bottom:733.500000px;}
.y29{bottom:738.000000px;}
.y15b{bottom:742.500000px;}
.y13e{bottom:746.999850px;}
.yc0{bottom:747.000000px;}
.y109{bottom:751.499850px;}
.y24{bottom:751.500000px;}
.y3{bottom:752.599495px;}
.y53{bottom:756.000000px;}
.y15a{bottom:760.500000px;}
.y13d{bottom:764.999850px;}
.ybf{bottom:765.000000px;}
.y108{bottom:769.499850px;}
.y9e{bottom:769.500000px;}
.y68{bottom:774.000000px;}
.y3b{bottom:777.000000px;}
.y13c{bottom:782.999850px;}
.ybe{bottom:783.000000px;}
.y107{bottom:787.499850px;}
.y52{bottom:787.500000px;}
.y3a{bottom:789.000000px;}
.y67{bottom:792.000000px;}
.y28{bottom:796.500000px;}
.y13b{bottom:800.999850px;}
.y39{bottom:801.000000px;}
.y106{bottom:805.499850px;}
.y9d{bottom:805.500000px;}
.y23{bottom:810.000000px;}
.y38{bottom:813.000000px;}
.yd9{bottom:814.500000px;}
.y13a{bottom:818.999850px;}
.y51{bottom:819.000000px;}
.y105{bottom:823.499850px;}
.y9c{bottom:823.500000px;}
.y37{bottom:825.000000px;}
.y66{bottom:828.000000px;}
.yd8{bottom:832.500000px;}
.y139{bottom:836.999850px;}
.y36{bottom:837.000000px;}
.y104{bottom:841.499850px;}
.y9b{bottom:841.500000px;}
.y65{bottom:846.000000px;}
.y35{bottom:849.000000px;}
.yd7{bottom:850.500000px;}
.y138{bottom:854.999850px;}
.y27{bottom:855.000000px;}
.y103{bottom:859.499850px;}
.y9a{bottom:859.500000px;}
.y34{bottom:861.000000px;}
.ye3{bottom:864.000000px;}
.y22{bottom:868.500000px;}
.y137{bottom:872.999850px;}
.ybd{bottom:873.000000px;}
.y102{bottom:877.499850px;}
.y64{bottom:877.500000px;}
.y2{bottom:879.369000px;}
.ye2{bottom:882.000000px;}
.y33{bottom:886.500000px;}
.y136{bottom:890.999850px;}
.y87{bottom:891.000000px;}
.y101{bottom:895.499850px;}
.y63{bottom:895.500000px;}
.ye1{bottom:900.000000px;}
.yd6{bottom:904.500000px;}
.y135{bottom:908.999850px;}
.y86{bottom:909.000000px;}
.y100{bottom:913.499850px;}
.y62{bottom:913.500000px;}
.ye0{bottom:918.000000px;}
.y26{bottom:922.500000px;}
.y134{bottom:926.999850px;}
.yb0{bottom:927.000000px;}
.yff{bottom:931.499850px;}
.y61{bottom:931.500000px;}
.y21{bottom:936.000000px;}
.y85{bottom:940.500000px;}
.y133{bottom:944.999850px;}
.yaf{bottom:945.000000px;}
.y60{bottom:949.500000px;}
.y84{bottom:958.500000px;}
.y32{bottom:960.000000px;}
.y132{bottom:962.999850px;}
.yae{bottom:963.000000px;}
.y1{bottom:966.726000px;}
.yfe{bottom:967.499850px;}
.y5f{bottom:967.500000px;}
.y3f{bottom:969.000000px;}
.y31{bottom:972.000000px;}
.y83{bottom:976.500000px;}
.yd4{bottom:981.000000px;}
.y30{bottom:984.000000px;}
.y5e{bottom:985.500000px;}
.y131{bottom:994.499850px;}
.y82{bottom:994.500000px;}
.y2f{bottom:996.000000px;}
.y3e{bottom:999.000000px;}
.y162{bottom:999.000150px;}
.yfd{bottom:1003.499850px;}
.y5d{bottom:1003.500000px;}
.y2e{bottom:1008.000000px;}
.y130{bottom:1012.499850px;}
.y81{bottom:1012.500000px;}
.y3d{bottom:1014.000000px;}
.yd5{bottom:1017.000000px;}
.y161{bottom:1017.000150px;}
.y2d{bottom:1020.000000px;}
.y3c{bottom:1029.000000px;}
.y12f{bottom:1030.499850px;}
.y80{bottom:1030.500000px;}
.y2c{bottom:1032.000000px;}
.y160{bottom:1035.000150px;}
.yfc{bottom:1039.499850px;}
.y5c{bottom:1039.500000px;}
.y12e{bottom:1048.499850px;}
.y7f{bottom:1048.500000px;}
.y15f{bottom:1053.000150px;}
.y2b{bottom:1057.500000px;}
.y12d{bottom:1066.499850px;}
.y7e{bottom:1066.500000px;}
.y15e{bottom:1071.000150px;}
.h19{height:29.689453px;}
.h14{height:30.164062px;}
.he{height:30.168000px;}
.h18{height:30.216797px;}
.h7{height:32.130000px;}
.h1b{height:35.520000px;}
.h1a{height:36.432000px;}
.hf{height:36.878906px;}
.h17{height:37.536000px;}
.h12{height:40.662000px;}
.h10{height:42.228000px;}
.h13{height:42.600924px;}
.h11{height:43.025391px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h16{height:49.171875px;}
.h2{height:55.080000px;}
.hd{height:61.464844px;}
.h9{height:73.757812px;}
.h5{height:78.030000px;}
.h15{height:90.492188px;}
.hc{height:110.636719px;}
.h4{height:119.055004px;}
.hb{height:170.929688px;}
.ha{height:208.980469px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:73.440000px;}
.x5{left:90.000000px;}
.x1a{left:98.464500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x18{left:128.580000px;}
.xa{left:129.600000px;}
.xf{left:140.399850px;}
.x10{left:147.600000px;}
.x19{left:155.580000px;}
.x16{left:156.600000px;}
.xc{left:158.100000px;}
.x6{left:166.500000px;}
.x4{left:203.484001px;}
.x8{left:255.375000px;}
.x3{left:454.959000px;}
.x14{left:465.750000px;}
.xd{left:468.000000px;}
.x12{left:474.451500px;}
.x11{left:478.799850px;}
.xe{left:486.000000px;}
.x17{left:495.000000px;}
.x7{left:511.062450px;}
.x13{left:681.600000px;}
.x15{left:831.076950px;}
.xb{left:835.919550px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls8{letter-spacing:-5.824000pt;}
.lsa{letter-spacing:-3.322667pt;}
.lsc{letter-spacing:-3.061333pt;}
.ls7{letter-spacing:-2.613333pt;}
.ls5{letter-spacing:-1.680000pt;}
.lse{letter-spacing:-1.536000pt;}
.ls4{letter-spacing:-1.488000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls1{letter-spacing:-0.373333pt;}
.lsd{letter-spacing:-0.213333pt;}
.lsf{letter-spacing:-0.013333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000096pt;}
.ls9{letter-spacing:0.000208pt;}
.ls3{letter-spacing:0.000267pt;}
.ls2{letter-spacing:176.645333pt;}
.ws1{word-spacing:-56.032000pt;}
.wsb{word-spacing:-29.664000pt;}
.ws1c{word-spacing:-29.184000pt;}
.ws2{word-spacing:-16.480000pt;}
.ws5{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.536000pt;}
.ws11{word-spacing:-10.512000pt;}
.ws15{word-spacing:-10.320000pt;}
.ws3{word-spacing:-9.888000pt;}
.ws4{word-spacing:-9.856000pt;}
.ws20{word-spacing:-9.728000pt;}
.ws1f{word-spacing:-8.474667pt;}
.ws22{word-spacing:-8.405333pt;}
.ws25{word-spacing:-8.213333pt;}
.wsc{word-spacing:-6.996000pt;}
.ws1a{word-spacing:-5.712000pt;}
.ws10{word-spacing:-1.488000pt;}
.ws6{word-spacing:-0.960000pt;}
.wsf{word-spacing:-0.720000pt;}
.ws21{word-spacing:-0.621333pt;}
.ws26{word-spacing:-0.608000pt;}
.ws1d{word-spacing:-0.576000pt;}
.wse{word-spacing:-0.480000pt;}
.ws1e{word-spacing:-0.336000pt;}
.ws24{word-spacing:-0.298667pt;}
.ws19{word-spacing:-0.077733pt;}
.ws0{word-spacing:0.000000pt;}
.ws23{word-spacing:0.213333pt;}
.wsd{word-spacing:0.373333pt;}
.ws17{word-spacing:99.973333pt;}
.ws14{word-spacing:100.405333pt;}
.ws13{word-spacing:102.277333pt;}
.ws12{word-spacing:121.237333pt;}
.ws16{word-spacing:127.093333pt;}
.ws8{word-spacing:147.408000pt;}
.ws18{word-spacing:149.914667pt;}
.ws1b{word-spacing:152.042667pt;}
.ws9{word-spacing:161.226667pt;}
.ws7{word-spacing:171.696000pt;}
._e{margin-left:-1225.753067pt;}
._1a{margin-left:-1222.676267pt;}
._19{margin-left:-1219.921600pt;}
._11{margin-left:-50.399467pt;}
._5{margin-left:-6.977067pt;}
._4{margin-left:-5.548800pt;}
._6{margin-left:-3.993600pt;}
._3{margin-left:-2.919467pt;}
._0{margin-left:-1.753600pt;}
._1{width:1.260800pt;}
._2{width:2.176000pt;}
._1b{width:3.072000pt;}
._f{width:4.592000pt;}
._12{width:25.600000pt;}
._10{width:34.368000pt;}
._14{width:95.232000pt;}
._16{width:133.237333pt;}
._d{width:146.687467pt;}
._c{width:148.606933pt;}
._7{width:150.286933pt;}
._17{width:154.820267pt;}
._b{width:163.152000pt;}
._a{width:165.648000pt;}
._9{width:167.567467pt;}
._8{width:171.695467pt;}
._15{width:348.740267pt;}
._13{width:448.485333pt;}
._18{width:612.234667pt;}
.fsb{font-size:0.310933pt;}
.fsc{font-size:2.666667pt;}
.fs9{font-size:27.984000pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.fs5{font-size:181.333333pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:48.000000pt;}
.y5{bottom:59.133337pt;}
.y163{bottom:80.000000pt;}
.y4{bottom:86.333337pt;}
.y12c{bottom:95.999867pt;}
.y50{bottom:96.000000pt;}
.yfb{bottom:104.000000pt;}
.y4f{bottom:108.000000pt;}
.y12b{bottom:111.999867pt;}
.ybc{bottom:112.000000pt;}
.ydf{bottom:116.000000pt;}
.y4e{bottom:120.000000pt;}
.y20{bottom:123.790666pt;}
.yc9{bottom:124.000000pt;}
.y12a{bottom:127.999867pt;}
.ybb{bottom:128.000000pt;}
.yde{bottom:132.000000pt;}
.yfa{bottom:136.000000pt;}
.y159{bottom:139.999867pt;}
.yc8{bottom:140.000000pt;}
.y4d{bottom:141.333333pt;}
.y129{bottom:143.999867pt;}
.yba{bottom:144.000000pt;}
.y99{bottom:148.000000pt;}
.yf9{bottom:152.000000pt;}
.y4c{bottom:153.333333pt;}
.y158{bottom:155.999867pt;}
.yc7{bottom:156.000000pt;}
.y128{bottom:159.999867pt;}
.yb9{bottom:160.000000pt;}
.ydd{bottom:164.000000pt;}
.yf8{bottom:168.000000pt;}
.y157{bottom:171.999867pt;}
.yc6{bottom:172.000000pt;}
.y17{bottom:175.052000pt;}
.y127{bottom:175.999867pt;}
.y4b{bottom:176.000000pt;}
.y15d{bottom:180.000000pt;}
.yf7{bottom:184.000000pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y156{bottom:187.999867pt;}
.yc5{bottom:188.000000pt;}
.y126{bottom:191.999867pt;}
.yad{bottom:192.000000pt;}
.y4a{bottom:196.000000pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.ydc{bottom:200.000000pt;}
.y155{bottom:203.999867pt;}
.y98{bottom:204.000000pt;}
.y125{bottom:207.999867pt;}
.y49{bottom:208.000000pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y15c{bottom:212.000000pt;}
.y154{bottom:219.999867pt;}
.y48{bottom:220.000000pt;}
.y124{bottom:223.999867pt;}
.y7d{bottom:224.000000pt;}
.yf6{bottom:228.000000pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y47{bottom:232.000000pt;}
.y153{bottom:235.999867pt;}
.y97{bottom:236.000000pt;}
.y123{bottom:239.999867pt;}
.y7c{bottom:240.000000pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.yf5{bottom:244.000000pt;}
.y152{bottom:251.999867pt;}
.y46{bottom:252.000000pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y122{bottom:255.999867pt;}
.y7b{bottom:256.000000pt;}
.yf4{bottom:260.000000pt;}
.y45{bottom:264.000000pt;}
.y151{bottom:267.999867pt;}
.y96{bottom:268.000000pt;}
.y121{bottom:271.999867pt;}
.y7a{bottom:272.000000pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.yf3{bottom:276.000000pt;}
.y150{bottom:283.999867pt;}
.y95{bottom:284.000000pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y120{bottom:287.999867pt;}
.y79{bottom:288.000000pt;}
.yf2{bottom:292.000000pt;}
.yeb{bottom:296.000000pt;}
.y14f{bottom:299.999867pt;}
.y94{bottom:300.000000pt;}
.y11f{bottom:303.999867pt;}
.y78{bottom:304.000000pt;}
.yf1{bottom:308.000000pt;}
.ye{bottom:309.452000pt;}
.yea{bottom:312.000000pt;}
.y14e{bottom:315.999867pt;}
.y93{bottom:316.000000pt;}
.y11e{bottom:319.999867pt;}
.yac{bottom:320.000000pt;}
.y44{bottom:322.733333pt;}
.yf0{bottom:324.000000pt;}
.ye9{bottom:328.000000pt;}
.y77{bottom:332.000000pt;}
.y11d{bottom:335.999867pt;}
.yab{bottom:336.000000pt;}
.y43{bottom:339.400000pt;}
.yef{bottom:340.000000pt;}
.yd{bottom:343.809333pt;}
.ydb{bottom:344.000000pt;}
.y14d{bottom:347.999867pt;}
.y76{bottom:348.000000pt;}
.y42{bottom:350.066667pt;}
.y11c{bottom:351.999867pt;}
.yaa{bottom:352.000000pt;}
.yee{bottom:356.000000pt;}
.ycd{bottom:360.000000pt;}
.y41{bottom:360.733333pt;}
.yda{bottom:361.833333pt;}
.yc{bottom:362.706666pt;}
.y75{bottom:364.000000pt;}
.y11b{bottom:367.999867pt;}
.ya9{bottom:368.000000pt;}
.yed{bottom:372.000000pt;}
.yb8{bottom:376.000000pt;}
.y40{bottom:377.400000pt;}
.y74{bottom:380.000000pt;}
.y11a{bottom:383.999867pt;}
.ya8{bottom:384.000000pt;}
.yec{bottom:388.000000pt;}
.yb7{bottom:392.000000pt;}
.y73{bottom:396.000000pt;}
.y119{bottom:399.999867pt;}
.ya7{bottom:400.000000pt;}
.ye8{bottom:404.000000pt;}
.yb6{bottom:408.000000pt;}
.y72{bottom:412.000000pt;}
.y118{bottom:415.999867pt;}
.ya6{bottom:416.000000pt;}
.ye7{bottom:420.000000pt;}
.yb5{bottom:424.000000pt;}
.y71{bottom:428.000000pt;}
.y117{bottom:431.999867pt;}
.ya5{bottom:432.000000pt;}
.ye6{bottom:436.000000pt;}
.y14c{bottom:439.999867pt;}
.yb4{bottom:440.000000pt;}
.y70{bottom:444.000000pt;}
.y116{bottom:447.999867pt;}
.ya4{bottom:448.000000pt;}
.ye5{bottom:452.000000pt;}
.y14b{bottom:455.999867pt;}
.yb3{bottom:456.000000pt;}
.y92{bottom:460.000000pt;}
.yb{bottom:462.990669pt;}
.y115{bottom:463.999867pt;}
.ya3{bottom:464.000000pt;}
.yd3{bottom:468.000000pt;}
.y14a{bottom:471.999867pt;}
.y6f{bottom:472.000000pt;}
.y5a{bottom:476.000000pt;}
.ya{bottom:478.990666pt;}
.ya2{bottom:480.000000pt;}
.yd2{bottom:484.000000pt;}
.y149{bottom:487.999867pt;}
.y6e{bottom:488.000000pt;}
.y114{bottom:491.999867pt;}
.y91{bottom:492.000000pt;}
.y9{bottom:494.990666pt;}
.ya1{bottom:496.000000pt;}
.yd1{bottom:500.000000pt;}
.y148{bottom:503.999867pt;}
.y59{bottom:504.000000pt;}
.y113{bottom:507.999867pt;}
.y90{bottom:508.000000pt;}
.ya0{bottom:512.000000pt;}
.yb2{bottom:516.000000pt;}
.y147{bottom:519.999867pt;}
.ycc{bottom:520.000000pt;}
.y112{bottom:523.999867pt;}
.y8f{bottom:524.000000pt;}
.y9f{bottom:528.000000pt;}
.y58{bottom:532.000000pt;}
.y146{bottom:535.999867pt;}
.ycb{bottom:536.000000pt;}
.y111{bottom:539.999867pt;}
.y8e{bottom:540.000000pt;}
.y6d{bottom:548.000000pt;}
.y145{bottom:551.999867pt;}
.yca{bottom:552.000000pt;}
.y110{bottom:555.999867pt;}
.y8d{bottom:556.000000pt;}
.y57{bottom:560.000000pt;}
.y6c{bottom:564.000000pt;}
.y144{bottom:567.999867pt;}
.yc4{bottom:568.000000pt;}
.y10f{bottom:571.999867pt;}
.y8c{bottom:572.000000pt;}
.y8{bottom:573.786667pt;}
.yd0{bottom:576.000000pt;}
.y6b{bottom:580.000000pt;}
.y143{bottom:583.999867pt;}
.yc3{bottom:584.000000pt;}
.y10e{bottom:587.999867pt;}
.y56{bottom:588.000000pt;}
.ycf{bottom:592.000000pt;}
.y7{bottom:592.685334pt;}
.y6a{bottom:596.000000pt;}
.y142{bottom:599.999867pt;}
.y2a{bottom:600.000000pt;}
.y10d{bottom:603.999867pt;}
.y8b{bottom:604.000000pt;}
.yce{bottom:608.000000pt;}
.y25{bottom:612.000000pt;}
.y141{bottom:615.999867pt;}
.y55{bottom:616.000000pt;}
.y10c{bottom:619.999867pt;}
.y8a{bottom:620.000000pt;}
.ye4{bottom:624.000000pt;}
.y69{bottom:628.000000pt;}
.y140{bottom:631.999867pt;}
.yc2{bottom:632.000000pt;}
.y10b{bottom:635.999867pt;}
.y89{bottom:636.000000pt;}
.yb1{bottom:640.000000pt;}
.y54{bottom:644.000000pt;}
.y6{bottom:645.598667pt;}
.y13f{bottom:647.999867pt;}
.yc1{bottom:648.000000pt;}
.y10a{bottom:651.999867pt;}
.y88{bottom:652.000000pt;}
.y29{bottom:656.000000pt;}
.y15b{bottom:660.000000pt;}
.y13e{bottom:663.999867pt;}
.yc0{bottom:664.000000pt;}
.y109{bottom:667.999867pt;}
.y24{bottom:668.000000pt;}
.y3{bottom:668.977329pt;}
.y53{bottom:672.000000pt;}
.y15a{bottom:676.000000pt;}
.y13d{bottom:679.999867pt;}
.ybf{bottom:680.000000pt;}
.y108{bottom:683.999867pt;}
.y9e{bottom:684.000000pt;}
.y68{bottom:688.000000pt;}
.y3b{bottom:690.666667pt;}
.y13c{bottom:695.999867pt;}
.ybe{bottom:696.000000pt;}
.y107{bottom:699.999867pt;}
.y52{bottom:700.000000pt;}
.y3a{bottom:701.333333pt;}
.y67{bottom:704.000000pt;}
.y28{bottom:708.000000pt;}
.y13b{bottom:711.999867pt;}
.y39{bottom:712.000000pt;}
.y106{bottom:715.999867pt;}
.y9d{bottom:716.000000pt;}
.y23{bottom:720.000000pt;}
.y38{bottom:722.666667pt;}
.yd9{bottom:724.000000pt;}
.y13a{bottom:727.999867pt;}
.y51{bottom:728.000000pt;}
.y105{bottom:731.999867pt;}
.y9c{bottom:732.000000pt;}
.y37{bottom:733.333333pt;}
.y66{bottom:736.000000pt;}
.yd8{bottom:740.000000pt;}
.y139{bottom:743.999867pt;}
.y36{bottom:744.000000pt;}
.y104{bottom:747.999867pt;}
.y9b{bottom:748.000000pt;}
.y65{bottom:752.000000pt;}
.y35{bottom:754.666667pt;}
.yd7{bottom:756.000000pt;}
.y138{bottom:759.999867pt;}
.y27{bottom:760.000000pt;}
.y103{bottom:763.999867pt;}
.y9a{bottom:764.000000pt;}
.y34{bottom:765.333333pt;}
.ye3{bottom:768.000000pt;}
.y22{bottom:772.000000pt;}
.y137{bottom:775.999867pt;}
.ybd{bottom:776.000000pt;}
.y102{bottom:779.999867pt;}
.y64{bottom:780.000000pt;}
.y2{bottom:781.661334pt;}
.ye2{bottom:784.000000pt;}
.y33{bottom:788.000000pt;}
.y136{bottom:791.999867pt;}
.y87{bottom:792.000000pt;}
.y101{bottom:795.999867pt;}
.y63{bottom:796.000000pt;}
.ye1{bottom:800.000000pt;}
.yd6{bottom:804.000000pt;}
.y135{bottom:807.999867pt;}
.y86{bottom:808.000000pt;}
.y100{bottom:811.999867pt;}
.y62{bottom:812.000000pt;}
.ye0{bottom:816.000000pt;}
.y26{bottom:820.000000pt;}
.y134{bottom:823.999867pt;}
.yb0{bottom:824.000000pt;}
.yff{bottom:827.999867pt;}
.y61{bottom:828.000000pt;}
.y21{bottom:832.000000pt;}
.y85{bottom:836.000000pt;}
.y133{bottom:839.999867pt;}
.yaf{bottom:840.000000pt;}
.y60{bottom:844.000000pt;}
.y84{bottom:852.000000pt;}
.y32{bottom:853.333333pt;}
.y132{bottom:855.999867pt;}
.yae{bottom:856.000000pt;}
.y1{bottom:859.312000pt;}
.yfe{bottom:859.999867pt;}
.y5f{bottom:860.000000pt;}
.y3f{bottom:861.333333pt;}
.y31{bottom:864.000000pt;}
.y83{bottom:868.000000pt;}
.yd4{bottom:872.000000pt;}
.y30{bottom:874.666667pt;}
.y5e{bottom:876.000000pt;}
.y131{bottom:883.999867pt;}
.y82{bottom:884.000000pt;}
.y2f{bottom:885.333333pt;}
.y3e{bottom:888.000000pt;}
.y162{bottom:888.000133pt;}
.yfd{bottom:891.999867pt;}
.y5d{bottom:892.000000pt;}
.y2e{bottom:896.000000pt;}
.y130{bottom:899.999867pt;}
.y81{bottom:900.000000pt;}
.y3d{bottom:901.333333pt;}
.yd5{bottom:904.000000pt;}
.y161{bottom:904.000133pt;}
.y2d{bottom:906.666667pt;}
.y3c{bottom:914.666667pt;}
.y12f{bottom:915.999867pt;}
.y80{bottom:916.000000pt;}
.y2c{bottom:917.333333pt;}
.y160{bottom:920.000133pt;}
.yfc{bottom:923.999867pt;}
.y5c{bottom:924.000000pt;}
.y12e{bottom:931.999867pt;}
.y7f{bottom:932.000000pt;}
.y15f{bottom:936.000133pt;}
.y2b{bottom:940.000000pt;}
.y12d{bottom:947.999867pt;}
.y7e{bottom:948.000000pt;}
.y15e{bottom:952.000133pt;}
.h19{height:26.390625pt;}
.h14{height:26.812500pt;}
.he{height:26.816000pt;}
.h18{height:26.859375pt;}
.h7{height:28.560000pt;}
.h1b{height:31.573333pt;}
.h1a{height:32.384000pt;}
.hf{height:32.781250pt;}
.h17{height:33.365333pt;}
.h12{height:36.144000pt;}
.h10{height:37.536000pt;}
.h13{height:37.867488pt;}
.h11{height:38.244792pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h16{height:43.708333pt;}
.h2{height:48.960000pt;}
.hd{height:54.635417pt;}
.h9{height:65.562500pt;}
.h5{height:69.360000pt;}
.h15{height:80.437500pt;}
.hc{height:98.343750pt;}
.h4{height:105.826671pt;}
.hb{height:151.937500pt;}
.ha{height:185.760417pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:65.280000pt;}
.x5{left:80.000000pt;}
.x1a{left:87.524000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x18{left:114.293333pt;}
.xa{left:115.200000pt;}
.xf{left:124.799867pt;}
.x10{left:131.200000pt;}
.x19{left:138.293333pt;}
.x16{left:139.200000pt;}
.xc{left:140.533333pt;}
.x6{left:148.000000pt;}
.x4{left:180.874667pt;}
.x8{left:227.000000pt;}
.x3{left:404.408000pt;}
.x14{left:414.000000pt;}
.xd{left:416.000000pt;}
.x12{left:421.734667pt;}
.x11{left:425.599867pt;}
.xe{left:432.000000pt;}
.x17{left:440.000000pt;}
.x7{left:454.277733pt;}
.x13{left:605.866667pt;}
.x15{left:738.735067pt;}
.xb{left:743.039600pt;}
}




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