
    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_2d36f3b75a40f7bf5a9f43d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_85a26ab29d57003086bdb0d7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_7b266c81365a8f8b92912a75.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_8d6627a7bbaa14a00989736b.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_2a2e13fb6c01ea64dc42748f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.767578;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_7c1f7cfebc6899f7e9fbc3df.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2a5905d8dd9158d9652a98d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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_5a3ca7828e5691a16e807cd2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_cd3e47cde39c53d1b1313986.woff2')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_325fbe8f5285e59195ed9cc5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.311035;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_275025dbced159241cba7d96.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.937012;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_68a5ea80a5678902438c3172.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_54d5eec4a3775556aadd7521.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b1125bbaa0ece9360579a25f.woff2')format("woff");}.fff{font-family:fff;line-height:1.052000;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:ff10;src:url('chunks/assets/font_c26f5649c61f73a13f8d9c7f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.895000;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:ff11;src:url('chunks/assets/font_c4a37dece015821aff39ff9c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.947000;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:ff12;src:url('chunks/assets/font_9064ef210968997f9cde30d7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.732000;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:ff13;src:url('chunks/assets/font_ec02d4b58f983bc6f940daa3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.916992;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:ff14;src:url('chunks/assets/font_987fcb2cdca0da997671f5ca.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.154000;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:ff15;src:url('chunks/assets/font_cc2a4271f2b236770e497683.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.911133;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,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);}
.v2{vertical-align:-30.240000px;}
.v4{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:17.999993px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls7{letter-spacing:-0.250800px;}
.lsc{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000001px;}
.ls9{letter-spacing:0.015840px;}
.lse{letter-spacing:0.021238px;}
.lsd{letter-spacing:0.021253px;}
.ls0{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.184200px;}
.ls4{letter-spacing:0.498000px;}
.ls6{letter-spacing:0.501000px;}
.ls5{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.lsa{letter-spacing:2.160000px;}
.ls8{letter-spacing:2.280000px;}
.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:-20.880000px;}
.wsd{word-spacing:-18.414713px;}
.ws3{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.999993px;}
.ws2{word-spacing:-14.178000px;}
.ws9{word-spacing:-14.040000px;}
.ws0{word-spacing:-13.864200px;}
.wsb{word-spacing:-13.499995px;}
.ws5{word-spacing:-12.381000px;}
.ws7{word-spacing:-11.895840px;}
.ws6{word-spacing:-11.629200px;}
.wsa{word-spacing:-8.999996px;}
.ws8{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._20{margin-left:-4.152480px;}
._3{margin-left:-2.929680px;}
._0{margin-left:-1.609200px;}
._1{width:1.586880px;}
._4{width:2.601600px;}
._2{width:3.696960px;}
._6{width:5.544000px;}
._7{width:6.724080px;}
._d{width:8.407920px;}
._e{width:9.640800px;}
._1b{width:10.981680px;}
._17{width:12.962640px;}
._a{width:14.219040px;}
._9{width:15.693120px;}
._8{width:16.725600px;}
._1c{width:19.077120px;}
._1f{width:20.608560px;}
._22{width:21.666409px;}
._21{width:22.759534px;}
._15{width:24.336000px;}
._1d{width:25.387200px;}
._16{width:26.842320px;}
._1e{width:27.925200px;}
._c{width:29.010240px;}
._b{width:30.209040px;}
._18{width:32.431680px;}
._14{width:34.640640px;}
._13{width:35.665200px;}
._11{width:38.858400px;}
._f{width:40.536000px;}
._10{width:41.854320px;}
._12{width:43.467600px;}
._1a{width:45.191520px;}
._19{width:47.160000px;}
._23{width:49.206174px;}
._5{width:198.156000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.999986px;}
.fs3{font-size:47.520000px;}
.fsc{font-size:48.239981px;}
.fs6{font-size:53.999978px;}
.fs2{font-size:54.720000px;}
.fsb{font-size:59.759976px;}
.fs8{font-size:66.239974px;}
.fs4{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs9{font-size:71.999971px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:81.359967px;}
.fs1{font-size:83.520000px;}
.yaa{bottom:-4.141056px;}
.y0{bottom:0.000000px;}
.y45{bottom:1.800000px;}
.ya5{bottom:1.978926px;}
.ya8{bottom:2.878937px;}
.yb2{bottom:3.600004px;}
.y1f{bottom:3.960000px;}
.yac{bottom:3.960004px;}
.y9b{bottom:4.320000px;}
.yaf{bottom:4.500004px;}
.y73{bottom:7.560000px;}
.ya1{bottom:7.596000px;}
.y43{bottom:10.080000px;}
.y28{bottom:14.400000px;}
.y22{bottom:14.430000px;}
.y2b{bottom:14.445000px;}
.y25{bottom:14.760000px;}
.y21{bottom:14.790000px;}
.y2c{bottom:14.805000px;}
.y26{bottom:15.120000px;}
.y3c{bottom:15.840000px;}
.y86{bottom:20.160000px;}
.y23{bottom:20.190000px;}
.y1e{bottom:24.840000px;}
.y72{bottom:30.960000px;}
.y94{bottom:31.005000px;}
.ya0{bottom:31.356000px;}
.y97{bottom:32.760000px;}
.y75{bottom:34.560000px;}
.y84{bottom:42.840000px;}
.y85{bottom:43.560000px;}
.y87{bottom:43.920000px;}
.y1d{bottom:45.360000px;}
.y30{bottom:45.720000px;}
.y36{bottom:45.750000px;}
.y3f{bottom:46.110000px;}
.y70{bottom:54.000000px;}
.y89{bottom:54.030000px;}
.y77{bottom:54.360000px;}
.y9e{bottom:54.399000px;}
.y92{bottom:54.405000px;}
.y71{bottom:54.720000px;}
.y7b{bottom:54.750000px;}
.y81{bottom:54.765000px;}
.y74{bottom:55.080000px;}
.y8a{bottom:55.110000px;}
.y9f{bottom:55.119000px;}
.y93{bottom:55.125000px;}
.y8c{bottom:55.440000px;}
.ya2{bottom:55.479000px;}
.y95{bottom:55.485000px;}
.y42{bottom:64.119000px;}
.y99{bottom:65.550000px;}
.y9a{bottom:66.270000px;}
.y9c{bottom:66.630000px;}
.y2e{bottom:76.680000px;}
.y35{bottom:76.710000px;}
.y2f{bottom:77.040000px;}
.y3e{bottom:77.070000px;}
.y8e{bottom:77.760000px;}
.y79{bottom:77.790000px;}
.y8f{bottom:78.480000px;}
.y7a{bottom:78.510000px;}
.y80{bottom:78.525000px;}
.y90{bottom:78.840000px;}
.y7c{bottom:78.870000px;}
.y7e{bottom:101.925000px;}
.y7f{bottom:102.285000px;}
.y82{bottom:102.645000px;}
.y33{bottom:107.670000px;}
.y34{bottom:108.030000px;}
.y41{bottom:109.476000px;}
.y65{bottom:115.596000px;}
.y9d{bottom:118.476000px;}
.yb0{bottom:119.280252px;}
.yae{bottom:136.200240px;}
.yab{bottom:136.740240px;}
.yb1{bottom:137.100240px;}
.yad{bottom:140.700244px;}
.yb4{bottom:144.659942px;}
.y64{bottom:145.512000px;}
.y19{bottom:147.672000px;}
.y150{bottom:163.019935px;}
.y119{bottom:164.819934px;}
.ye0{bottom:170.759932px;}
.y107{bottom:171.479931px;}
.y63{bottom:175.035000px;}
.y140{bottom:175.259930px;}
.y18{bottom:183.315000px;}
.y14f{bottom:186.779925px;}
.y118{bottom:188.579925px;}
.y40{bottom:190.155000px;}
.y98{bottom:190.875000px;}
.ydf{bottom:194.519922px;}
.y106{bottom:195.239922px;}
.y13f{bottom:199.019920px;}
.y62{bottom:204.915000px;}
.y117{bottom:212.339915px;}
.yde{bottom:218.459913px;}
.y105{bottom:219.179912px;}
.y17{bottom:219.315000px;}
.y3d{bottom:221.115000px;}
.y13e{bottom:222.959911px;}
.y14e{bottom:228.539909px;}
.y61{bottom:234.795000px;}
.y116{bottom:236.099906px;}
.ydd{bottom:242.219903px;}
.y104{bottom:242.939903px;}
.y13d{bottom:246.719901px;}
.y16{bottom:254.985000px;}
.y115{bottom:260.039896px;}
.y60{bottom:264.345000px;}
.ydc{bottom:265.979894px;}
.y103{bottom:266.699893px;}
.y14d{bottom:270.299892px;}
.y13c{bottom:270.479892px;}
.y96{bottom:274.425000px;}
.y114{bottom:283.799886px;}
.ydb{bottom:289.739884px;}
.y102{bottom:290.459884px;}
.y15{bottom:290.625000px;}
.y13b{bottom:294.239882px;}
.y5f{bottom:294.945000px;}
.y113{bottom:307.559877px;}
.y14c{bottom:312.239875px;}
.yda{bottom:313.679875px;}
.y3b{bottom:314.385000px;}
.y101{bottom:314.399874px;}
.y13a{bottom:318.179873px;}
.y5e{bottom:325.905000px;}
.y14{bottom:329.505000px;}
.y112{bottom:331.319867px;}
.yd9{bottom:337.439865px;}
.y100{bottom:338.159865px;}
.y139{bottom:341.939863px;}
.y3a{bottom:345.345000px;}
.y91{bottom:346.425000px;}
.y14b{bottom:353.999858px;}
.y111{bottom:355.259858px;}
.y5d{bottom:356.865000px;}
.yd8{bottom:361.199856px;}
.yff{bottom:361.919855px;}
.y138{bottom:365.699854px;}
.y13{bottom:368.025000px;}
.y39{bottom:376.710000px;}
.y110{bottom:378.659849px;}
.yd7{bottom:384.959846px;}
.yfe{bottom:385.679846px;}
.y5c{bottom:387.870000px;}
.y137{bottom:389.459844px;}
.y14a{bottom:395.759842px;}
.y12{bottom:406.950000px;}
.y38{bottom:407.670000px;}
.yd6{bottom:408.719837px;}
.yfd{bottom:409.619836px;}
.y136{bottom:413.219835px;}
.y8d{bottom:418.830000px;}
.y5b{bottom:419.190000px;}
.yd5{bottom:432.299827px;}
.yfc{bottom:433.379827px;}
.y135{bottom:437.159825px;}
.y149{bottom:437.519825px;}
.y11{bottom:445.830000px;}
.y5a{bottom:450.150000px;}
.yd4{bottom:456.419817px;}
.yfb{bottom:456.779817px;}
.y10f{bottom:457.139817px;}
.y134{bottom:460.919816px;}
.y37{bottom:469.590000px;}
.y148{bottom:479.459808px;}
.yd3{bottom:480.179808px;}
.yfa{bottom:480.539808px;}
.y10e{bottom:480.899808px;}
.y59{bottom:481.110000px;}
.y133{bottom:484.679806px;}
.y10{bottom:484.710000px;}
.y32{bottom:500.910000px;}
.yd2{bottom:503.939798px;}
.yf9{bottom:504.659798px;}
.y132{bottom:508.439797px;}
.y58{bottom:512.100000px;}
.y8b{bottom:514.620000px;}
.y147{bottom:521.219792px;}
.yf{bottom:523.620000px;}
.yd1{bottom:527.879789px;}
.yf8{bottom:528.599789px;}
.y131{bottom:532.379787px;}
.y57{bottom:543.060000px;}
.yd0{bottom:551.639779px;}
.yf7{bottom:552.359779px;}
.y130{bottom:556.139778px;}
.ye{bottom:562.140000px;}
.y146{bottom:562.979775px;}
.y56{bottom:574.380000px;}
.ycf{bottom:575.399770px;}
.yf6{bottom:576.119770px;}
.y12f{bottom:579.899768px;}
.y88{bottom:586.980000px;}
.yce{bottom:599.159760px;}
.yf5{bottom:599.879760px;}
.yd{bottom:600.660000px;}
.y12e{bottom:603.659759px;}
.y145{bottom:604.739758px;}
.y55{bottom:605.340000px;}
.ycd{bottom:623.099751px;}
.yf4{bottom:623.819750px;}
.y31{bottom:625.140000px;}
.y12d{bottom:627.239749px;}
.y54{bottom:636.330000px;}
.yc{bottom:639.930000px;}
.y144{bottom:646.679741px;}
.ycc{bottom:646.859741px;}
.yf3{bottom:647.579741px;}
.y2d{bottom:656.130000px;}
.y12c{bottom:657.839737px;}
.y83{bottom:659.010000px;}
.y53{bottom:667.290000px;}
.ycb{bottom:670.619732px;}
.yf2{bottom:671.339731px;}
.yb{bottom:678.810000px;}
.y12b{bottom:681.599727px;}
.y143{bottom:688.439725px;}
.yca{bottom:694.379722px;}
.yf1{bottom:694.739722px;}
.y10d{bottom:695.099722px;}
.y52{bottom:698.610000px;}
.y12a{bottom:705.539718px;}
.ya{bottom:717.330000px;}
.yc9{bottom:718.319713px;}
.yf0{bottom:719.039712px;}
.y7d{bottom:719.850000px;}
.y129{bottom:729.299708px;}
.y51{bottom:729.570000px;}
.y142{bottom:730.199708px;}
.yc8{bottom:742.079703px;}
.y10c{bottom:742.439703px;}
.yef{bottom:742.799703px;}
.y6e{bottom:746.130000px;}
.y2a{bottom:749.370000px;}
.y128{bottom:753.059699px;}
.y9{bottom:755.895000px;}
.y50{bottom:760.575000px;}
.yc7{bottom:765.839694px;}
.yee{bottom:766.559693px;}
.y141{bottom:772.139691px;}
.y127{bottom:776.639689px;}
.y29{bottom:780.375000px;}
.yc6{bottom:789.599684px;}
.yed{bottom:790.319684px;}
.y4f{bottom:791.535000px;}
.y6d{bottom:792.975000px;}
.y8{bottom:794.775000px;}
.y126{bottom:807.419677px;}
.y27{bottom:811.335000px;}
.yc5{bottom:813.539675px;}
.yec{bottom:814.259674px;}
.y125{bottom:831.179668px;}
.y6c{bottom:833.295000px;}
.y7{bottom:834.735000px;}
.yc4{bottom:837.299665px;}
.y4e{bottom:837.615000px;}
.yeb{bottom:838.019665px;}
.y78{bottom:839.775000px;}
.y24{bottom:842.295000px;}
.y124{bottom:855.119658px;}
.yc3{bottom:860.699656px;}
.yea{bottom:861.779655px;}
.y4d{bottom:868.935000px;}
.y20{bottom:873.615000px;}
.y6{bottom:877.575000px;}
.y123{bottom:878.879648px;}
.ye9{bottom:885.179646px;}
.y10b{bottom:885.539646px;}
.yc2{bottom:891.479643px;}
.y4c{bottom:899.925000px;}
.y122{bottom:902.639639px;}
.y1c{bottom:904.605000px;}
.y5{bottom:905.325000px;}
.ye8{bottom:909.479636px;}
.yc1{bottom:915.239634px;}
.y6b{bottom:915.765000px;}
.y121{bottom:926.399629px;}
.y4b{bottom:930.885000px;}
.ye7{bottom:933.239627px;}
.y76{bottom:935.565000px;}
.yc0{bottom:938.999624px;}
.y6a{bottom:945.285000px;}
.y4{bottom:947.085000px;}
.ybf{bottom:947.279621px;}
.y120{bottom:950.159620px;}
.ye6{bottom:956.999617px;}
.y4a{bottom:961.845000px;}
.ybe{bottom:962.759615px;}
.y11f{bottom:974.099610px;}
.y69{bottom:975.165000px;}
.ye5{bottom:980.759608px;}
.y3{bottom:985.605000px;}
.ybd{bottom:986.519605px;}
.y1b{bottom:988.845000px;}
.y49{bottom:993.165000px;}
.ybc{bottom:994.799602px;}
.y11e{bottom:997.859601px;}
.ye4{bottom:1004.519598px;}
.y68{bottom:1005.090000px;}
.y6f{bottom:1007.970000px;}
.ybb{bottom:1010.459596px;}
.y44{bottom:1018.770000px;}
.y11d{bottom:1021.619591px;}
.y48{bottom:1024.170000px;}
.y2{bottom:1024.890000px;}
.y1a{bottom:1027.770000px;}
.ye3{bottom:1028.459589px;}
.yba{bottom:1034.219586px;}
.y67{bottom:1034.610000px;}
.yb9{bottom:1042.499583px;}
.y47{bottom:1044.690000px;}
.y11c{bottom:1045.379582px;}
.ye2{bottom:1052.219579px;}
.yb7{bottom:1057.619577px;}
.y1{bottom:1063.770000px;}
.y46{bottom:1064.130000px;}
.y66{bottom:1064.490000px;}
.yb8{bottom:1065.899574px;}
.y11b{bottom:1069.319572px;}
.y10a{bottom:1075.619570px;}
.ye1{bottom:1075.979570px;}
.y11a{bottom:1092.719563px;}
.yb6{bottom:1099.379560px;}
.y109{bottom:1099.739560px;}
.yb5{bottom:1123.319551px;}
.y108{bottom:1123.679551px;}
.ya9{bottom:1144.740600px;}
.ya7{bottom:1155.720600px;}
.ya6{bottom:1158.599537px;}
.ya3{bottom:1178.579529px;}
.ya4{bottom:1182.540600px;}
.yb3{bottom:1214.939514px;}
.h23{height:8.640000px;}
.h27{height:10.620000px;}
.h26{height:15.120000px;}
.h14{height:18.360000px;}
.h30{height:19.260000px;}
.h29{height:19.980000px;}
.h2b{height:21.960000px;}
.h24{height:25.163990px;}
.hc{height:30.960000px;}
.h9{height:30.996000px;}
.hb{height:31.320000px;}
.h10{height:31.356000px;}
.h22{height:37.745985px;}
.h34{height:40.232144px;}
.h33{height:45.731502px;}
.h2f{height:46.283888px;}
.ha{height:46.638281px;}
.h2d{height:46.964141px;}
.h2a{height:49.391980px;}
.h31{height:49.839820px;}
.h1a{height:50.294531px;}
.h2e{height:50.327980px;}
.h28{height:55.244138px;}
.h25{height:55.745978px;}
.h2c{height:59.311416px;}
.h35{height:60.047976px;}
.h1e{height:60.120000px;}
.h17{height:60.679688px;}
.h7{height:61.920000px;}
.h11{height:65.010937px;}
.h16{height:67.837500px;}
.h32{height:68.255973px;}
.h15{height:69.660000px;}
.h6{height:70.628906px;}
.h2{height:70.664062px;}
.h18{height:71.280000px;}
.h1b{height:71.316000px;}
.h1f{height:71.640000px;}
.h20{height:71.676000px;}
.h3{height:72.562500px;}
.hd{height:73.998281px;}
.h19{height:74.004654px;}
.h8{height:75.251250px;}
.h13{height:80.676000px;}
.h21{height:82.836000px;}
.h5{height:84.172500px;}
.h4{height:85.387500px;}
.he{height:93.240000px;}
.h12{height:93.276000px;}
.h1c{height:95.076000px;}
.h1d{height:118.836000px;}
.hf{height:124.236000px;}
.h1{height:1188.000000px;}
.h0{height:1263.000000px;}
.wf{width:4.860000px;}
.we{width:5.580000px;}
.wc{width:7.380000px;}
.wa{width:8.460000px;}
.w4{width:22.320000px;}
.wb{width:31.320000px;}
.wd{width:39.600000px;}
.w7{width:75.276000px;}
.w9{width:100.476000px;}
.w3{width:145.872000px;}
.w6{width:282.345000px;}
.w8{width:559.650000px;}
.w5{width:562.530000px;}
.w0{width:892.500000px;}
.w2{width:917.999986px;}
.w1{width:918.000000px;}
.x0{left:0.000000px;}
.x1c{left:5.400000px;}
.xe{left:7.920000px;}
.x13{left:20.925000px;}
.x1a{left:27.000000px;}
.x1e{left:32.040000px;}
.x1f{left:50.040000px;}
.x26{left:86.400000px;}
.x2c{left:94.499962px;}
.x2d{left:96.840124px;}
.xd{left:100.116000px;}
.x15{left:108.035986px;}
.x25{left:111.240000px;}
.x37{left:116.279953px;}
.x7{left:121.715986px;}
.x27{left:124.379950px;}
.x28{left:130.320000px;}
.x2{left:135.395986px;}
.x3a{left:148.499862px;}
.x36{left:155.519938px;}
.x16{left:162.074986px;}
.x20{left:163.439935px;}
.x21{left:170.280000px;}
.x35{left:171.719931px;}
.x22{left:178.199929px;}
.x38{left:181.439573px;}
.x1b{left:184.035000px;}
.x9{left:236.594986px;}
.x8{left:242.024986px;}
.xf{left:245.985000px;}
.x10{left:268.305000px;}
.x29{left:277.379889px;}
.x2e{left:284.758612px;}
.x3{left:290.624986px;}
.xb{left:314.744986px;}
.x12{left:327.345000px;}
.xa{left:341.789986px;}
.x39{left:343.438373px;}
.x2f{left:353.699859px;}
.x30{left:359.819856px;}
.xc{left:360.869986px;}
.x11{left:378.150000px;}
.x4{left:381.389986px;}
.x6{left:384.269986px;}
.x5{left:411.989986px;}
.x14{left:425.309986px;}
.x3b{left:453.420116px;}
.x3c{left:455.580115px;}
.x1{left:466.019986px;}
.x19{left:469.259986px;}
.x31{left:479.879808px;}
.x32{left:485.999806px;}
.x18{left:540.209986px;}
.x33{left:620.279752px;}
.x34{left:626.399749px;}
.x23{left:684.540427px;}
.x2a{left:739.979704px;}
.x1d{left:744.405000px;}
.x24{left:763.920000px;}
.x2b{left:804.420000px;}
.x17{left:824.009986px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v4{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:15.999994pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls7{letter-spacing:-0.222933pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000001pt;}
.ls9{letter-spacing:0.014080pt;}
.lse{letter-spacing:0.018878pt;}
.lsd{letter-spacing:0.018891pt;}
.ls0{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.163733pt;}
.ls4{letter-spacing:0.442667pt;}
.ls6{letter-spacing:0.445333pt;}
.ls5{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.lsa{letter-spacing:1.920000pt;}
.ls8{letter-spacing:2.026667pt;}
.ws1{word-spacing:-18.560000pt;}
.wsd{word-spacing:-16.368633pt;}
.ws3{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.999994pt;}
.ws2{word-spacing:-12.602667pt;}
.ws9{word-spacing:-12.480000pt;}
.ws0{word-spacing:-12.323733pt;}
.wsb{word-spacing:-11.999995pt;}
.ws5{word-spacing:-11.005333pt;}
.ws7{word-spacing:-10.574080pt;}
.ws6{word-spacing:-10.337067pt;}
.wsa{word-spacing:-7.999997pt;}
.ws8{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._20{margin-left:-3.691093pt;}
._3{margin-left:-2.604160pt;}
._0{margin-left:-1.430400pt;}
._1{width:1.410560pt;}
._4{width:2.312533pt;}
._2{width:3.286187pt;}
._6{width:4.928000pt;}
._7{width:5.976960pt;}
._d{width:7.473707pt;}
._e{width:8.569600pt;}
._1b{width:9.761493pt;}
._17{width:11.522347pt;}
._a{width:12.639147pt;}
._9{width:13.949440pt;}
._8{width:14.867200pt;}
._1c{width:16.957440pt;}
._1f{width:18.318720pt;}
._22{width:19.259030pt;}
._21{width:20.230697pt;}
._15{width:21.632000pt;}
._1d{width:22.566400pt;}
._16{width:23.859840pt;}
._1e{width:24.822400pt;}
._c{width:25.786880pt;}
._b{width:26.852480pt;}
._18{width:28.828160pt;}
._14{width:30.791680pt;}
._13{width:31.702400pt;}
._11{width:34.540800pt;}
._f{width:36.032000pt;}
._10{width:37.203840pt;}
._12{width:38.637867pt;}
._1a{width:40.170240pt;}
._19{width:41.920000pt;}
._23{width:43.738821pt;}
._5{width:176.138667pt;}
.fs7{font-size:31.999987pt;}
.fs3{font-size:42.240000pt;}
.fsc{font-size:42.879983pt;}
.fs6{font-size:47.999981pt;}
.fs2{font-size:48.640000pt;}
.fsb{font-size:53.119979pt;}
.fs8{font-size:58.879976pt;}
.fs4{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs9{font-size:63.999974pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:72.319971pt;}
.fs1{font-size:74.240000pt;}
.yaa{bottom:-3.680939pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:1.600000pt;}
.ya5{bottom:1.759046pt;}
.ya8{bottom:2.559055pt;}
.yb2{bottom:3.200003pt;}
.y1f{bottom:3.520000pt;}
.yac{bottom:3.520003pt;}
.y9b{bottom:3.840000pt;}
.yaf{bottom:4.000003pt;}
.y73{bottom:6.720000pt;}
.ya1{bottom:6.752000pt;}
.y43{bottom:8.960000pt;}
.y28{bottom:12.800000pt;}
.y22{bottom:12.826667pt;}
.y2b{bottom:12.840000pt;}
.y25{bottom:13.120000pt;}
.y21{bottom:13.146667pt;}
.y2c{bottom:13.160000pt;}
.y26{bottom:13.440000pt;}
.y3c{bottom:14.080000pt;}
.y86{bottom:17.920000pt;}
.y23{bottom:17.946667pt;}
.y1e{bottom:22.080000pt;}
.y72{bottom:27.520000pt;}
.y94{bottom:27.560000pt;}
.ya0{bottom:27.872000pt;}
.y97{bottom:29.120000pt;}
.y75{bottom:30.720000pt;}
.y84{bottom:38.080000pt;}
.y85{bottom:38.720000pt;}
.y87{bottom:39.040000pt;}
.y1d{bottom:40.320000pt;}
.y30{bottom:40.640000pt;}
.y36{bottom:40.666667pt;}
.y3f{bottom:40.986667pt;}
.y70{bottom:48.000000pt;}
.y89{bottom:48.026667pt;}
.y77{bottom:48.320000pt;}
.y9e{bottom:48.354667pt;}
.y92{bottom:48.360000pt;}
.y71{bottom:48.640000pt;}
.y7b{bottom:48.666667pt;}
.y81{bottom:48.680000pt;}
.y74{bottom:48.960000pt;}
.y8a{bottom:48.986667pt;}
.y9f{bottom:48.994667pt;}
.y93{bottom:49.000000pt;}
.y8c{bottom:49.280000pt;}
.ya2{bottom:49.314667pt;}
.y95{bottom:49.320000pt;}
.y42{bottom:56.994667pt;}
.y99{bottom:58.266667pt;}
.y9a{bottom:58.906667pt;}
.y9c{bottom:59.226667pt;}
.y2e{bottom:68.160000pt;}
.y35{bottom:68.186667pt;}
.y2f{bottom:68.480000pt;}
.y3e{bottom:68.506667pt;}
.y8e{bottom:69.120000pt;}
.y79{bottom:69.146667pt;}
.y8f{bottom:69.760000pt;}
.y7a{bottom:69.786667pt;}
.y80{bottom:69.800000pt;}
.y90{bottom:70.080000pt;}
.y7c{bottom:70.106667pt;}
.y7e{bottom:90.600000pt;}
.y7f{bottom:90.920000pt;}
.y82{bottom:91.240000pt;}
.y33{bottom:95.706667pt;}
.y34{bottom:96.026667pt;}
.y41{bottom:97.312000pt;}
.y65{bottom:102.752000pt;}
.y9d{bottom:105.312000pt;}
.yb0{bottom:106.026891pt;}
.yae{bottom:121.066880pt;}
.yab{bottom:121.546880pt;}
.yb1{bottom:121.866880pt;}
.yad{bottom:125.066883pt;}
.yb4{bottom:128.586615pt;}
.y64{bottom:129.344000pt;}
.y19{bottom:131.264000pt;}
.y150{bottom:144.906609pt;}
.y119{bottom:146.506608pt;}
.ye0{bottom:151.786606pt;}
.y107{bottom:152.426606pt;}
.y63{bottom:155.586667pt;}
.y140{bottom:155.786604pt;}
.y18{bottom:162.946667pt;}
.y14f{bottom:166.026600pt;}
.y118{bottom:167.626600pt;}
.y40{bottom:169.026667pt;}
.y98{bottom:169.666667pt;}
.ydf{bottom:172.906598pt;}
.y106{bottom:173.546597pt;}
.y13f{bottom:176.906596pt;}
.y62{bottom:182.146667pt;}
.y117{bottom:188.746591pt;}
.yde{bottom:194.186589pt;}
.y105{bottom:194.826589pt;}
.y17{bottom:194.946667pt;}
.y3d{bottom:196.546667pt;}
.y13e{bottom:198.186587pt;}
.y14e{bottom:203.146585pt;}
.y61{bottom:208.706667pt;}
.y116{bottom:209.866583pt;}
.ydd{bottom:215.306581pt;}
.y104{bottom:215.946580pt;}
.y13d{bottom:219.306579pt;}
.y16{bottom:226.653333pt;}
.y115{bottom:231.146574pt;}
.y60{bottom:234.973333pt;}
.ydc{bottom:236.426572pt;}
.y103{bottom:237.066572pt;}
.y14d{bottom:240.266571pt;}
.y13c{bottom:240.426570pt;}
.y96{bottom:243.933333pt;}
.y114{bottom:252.266566pt;}
.ydb{bottom:257.546564pt;}
.y102{bottom:258.186563pt;}
.y15{bottom:258.333333pt;}
.y13b{bottom:261.546562pt;}
.y5f{bottom:262.173333pt;}
.y113{bottom:273.386557pt;}
.y14c{bottom:277.546556pt;}
.yda{bottom:278.826555pt;}
.y3b{bottom:279.453333pt;}
.y101{bottom:279.466555pt;}
.y13a{bottom:282.826554pt;}
.y5e{bottom:289.693333pt;}
.y14{bottom:292.893333pt;}
.y112{bottom:294.506549pt;}
.yd9{bottom:299.946547pt;}
.y100{bottom:300.586546pt;}
.y139{bottom:303.946545pt;}
.y3a{bottom:306.973333pt;}
.y91{bottom:307.933333pt;}
.y14b{bottom:314.666541pt;}
.y111{bottom:315.786540pt;}
.y5d{bottom:317.213333pt;}
.yd8{bottom:321.066538pt;}
.yff{bottom:321.706538pt;}
.y138{bottom:325.066537pt;}
.y13{bottom:327.133333pt;}
.y39{bottom:334.853333pt;}
.y110{bottom:336.586532pt;}
.yd7{bottom:342.186530pt;}
.yfe{bottom:342.826530pt;}
.y5c{bottom:344.773333pt;}
.y137{bottom:346.186528pt;}
.y14a{bottom:351.786526pt;}
.y12{bottom:361.733333pt;}
.y38{bottom:362.373333pt;}
.yd6{bottom:363.306521pt;}
.yfd{bottom:364.106521pt;}
.y136{bottom:367.306520pt;}
.y8d{bottom:372.293333pt;}
.y5b{bottom:372.613333pt;}
.yd5{bottom:384.266513pt;}
.yfc{bottom:385.226513pt;}
.y135{bottom:388.586511pt;}
.y149{bottom:388.906511pt;}
.y11{bottom:396.293333pt;}
.y5a{bottom:400.133333pt;}
.yd4{bottom:405.706504pt;}
.yfb{bottom:406.026504pt;}
.y10f{bottom:406.346504pt;}
.y134{bottom:409.706503pt;}
.y37{bottom:417.413333pt;}
.y148{bottom:426.186496pt;}
.yd3{bottom:426.826496pt;}
.yfa{bottom:427.146496pt;}
.y10e{bottom:427.466496pt;}
.y59{bottom:427.653333pt;}
.y133{bottom:430.826494pt;}
.y10{bottom:430.853333pt;}
.y32{bottom:445.253333pt;}
.yd2{bottom:447.946487pt;}
.yf9{bottom:448.586487pt;}
.y132{bottom:451.946486pt;}
.y58{bottom:455.200000pt;}
.y8b{bottom:457.440000pt;}
.y147{bottom:463.306481pt;}
.yf{bottom:465.440000pt;}
.yd1{bottom:469.226479pt;}
.yf8{bottom:469.866479pt;}
.y131{bottom:473.226477pt;}
.y57{bottom:482.720000pt;}
.yd0{bottom:490.346471pt;}
.yf7{bottom:490.986470pt;}
.y130{bottom:494.346469pt;}
.ye{bottom:499.680000pt;}
.y146{bottom:500.426466pt;}
.y56{bottom:510.560000pt;}
.ycf{bottom:511.466462pt;}
.yf6{bottom:512.106462pt;}
.y12f{bottom:515.466460pt;}
.y88{bottom:521.760000pt;}
.yce{bottom:532.586454pt;}
.yf5{bottom:533.226453pt;}
.yd{bottom:533.920000pt;}
.y12e{bottom:536.586452pt;}
.y145{bottom:537.546452pt;}
.y55{bottom:538.080000pt;}
.ycd{bottom:553.866445pt;}
.yf4{bottom:554.506445pt;}
.y31{bottom:555.680000pt;}
.y12d{bottom:557.546444pt;}
.y54{bottom:565.626667pt;}
.yc{bottom:568.826667pt;}
.y144{bottom:574.826437pt;}
.ycc{bottom:574.986437pt;}
.yf3{bottom:575.626436pt;}
.y2d{bottom:583.226667pt;}
.y12c{bottom:584.746433pt;}
.y83{bottom:585.786667pt;}
.y53{bottom:593.146667pt;}
.ycb{bottom:596.106428pt;}
.yf2{bottom:596.746428pt;}
.yb{bottom:603.386667pt;}
.y12b{bottom:605.866424pt;}
.y143{bottom:611.946422pt;}
.yca{bottom:617.226420pt;}
.yf1{bottom:617.546420pt;}
.y10d{bottom:617.866420pt;}
.y52{bottom:620.986667pt;}
.y12a{bottom:627.146416pt;}
.ya{bottom:637.626667pt;}
.yc9{bottom:638.506411pt;}
.yf0{bottom:639.146411pt;}
.y7d{bottom:639.866667pt;}
.y129{bottom:648.266407pt;}
.y51{bottom:648.506667pt;}
.y142{bottom:649.066407pt;}
.yc8{bottom:659.626403pt;}
.y10c{bottom:659.946403pt;}
.yef{bottom:660.266403pt;}
.y6e{bottom:663.226667pt;}
.y2a{bottom:666.106667pt;}
.y128{bottom:669.386399pt;}
.y9{bottom:671.906667pt;}
.y50{bottom:676.066667pt;}
.yc7{bottom:680.746394pt;}
.yee{bottom:681.386394pt;}
.y141{bottom:686.346392pt;}
.y127{bottom:690.346391pt;}
.y29{bottom:693.666667pt;}
.yc6{bottom:701.866386pt;}
.yed{bottom:702.506386pt;}
.y4f{bottom:703.586667pt;}
.y6d{bottom:704.866667pt;}
.y8{bottom:706.466667pt;}
.y126{bottom:717.706380pt;}
.y27{bottom:721.186667pt;}
.yc5{bottom:723.146377pt;}
.yec{bottom:723.786377pt;}
.y125{bottom:738.826371pt;}
.y6c{bottom:740.706667pt;}
.y7{bottom:741.986667pt;}
.yc4{bottom:744.266369pt;}
.y4e{bottom:744.546667pt;}
.yeb{bottom:744.906369pt;}
.y78{bottom:746.466667pt;}
.y24{bottom:748.706667pt;}
.y124{bottom:760.106363pt;}
.yc3{bottom:765.066361pt;}
.yea{bottom:766.026360pt;}
.y4d{bottom:772.386667pt;}
.y20{bottom:776.546667pt;}
.y6{bottom:780.066667pt;}
.y123{bottom:781.226354pt;}
.ye9{bottom:786.826352pt;}
.y10b{bottom:787.146352pt;}
.yc2{bottom:792.426350pt;}
.y4c{bottom:799.933333pt;}
.y122{bottom:802.346346pt;}
.y1c{bottom:804.093333pt;}
.y5{bottom:804.733333pt;}
.ye8{bottom:808.426343pt;}
.yc1{bottom:813.546341pt;}
.y6b{bottom:814.013333pt;}
.y121{bottom:823.466337pt;}
.y4b{bottom:827.453333pt;}
.ye7{bottom:829.546335pt;}
.y76{bottom:831.613333pt;}
.yc0{bottom:834.666333pt;}
.y6a{bottom:840.253333pt;}
.y4{bottom:841.853333pt;}
.ybf{bottom:842.026330pt;}
.y120{bottom:844.586329pt;}
.ye6{bottom:850.666326pt;}
.y4a{bottom:854.973333pt;}
.ybe{bottom:855.786324pt;}
.y11f{bottom:865.866320pt;}
.y69{bottom:866.813333pt;}
.ye5{bottom:871.786318pt;}
.y3{bottom:876.093333pt;}
.ybd{bottom:876.906316pt;}
.y1b{bottom:878.973333pt;}
.y49{bottom:882.813333pt;}
.ybc{bottom:884.266313pt;}
.y11e{bottom:886.986312pt;}
.ye4{bottom:892.906310pt;}
.y68{bottom:893.413333pt;}
.y6f{bottom:895.973333pt;}
.ybb{bottom:898.186307pt;}
.y44{bottom:905.573333pt;}
.y11d{bottom:908.106303pt;}
.y48{bottom:910.373333pt;}
.y2{bottom:911.013333pt;}
.y1a{bottom:913.573333pt;}
.ye3{bottom:914.186301pt;}
.yba{bottom:919.306299pt;}
.y67{bottom:919.653333pt;}
.yb9{bottom:926.666296pt;}
.y47{bottom:928.613333pt;}
.y11c{bottom:929.226295pt;}
.ye2{bottom:935.306293pt;}
.yb7{bottom:940.106291pt;}
.y1{bottom:945.573333pt;}
.y46{bottom:945.893333pt;}
.y66{bottom:946.213333pt;}
.yb8{bottom:947.466288pt;}
.y11b{bottom:950.506286pt;}
.y10a{bottom:956.106284pt;}
.ye1{bottom:956.426284pt;}
.y11a{bottom:971.306278pt;}
.yb6{bottom:977.226276pt;}
.y109{bottom:977.546276pt;}
.yb5{bottom:998.506267pt;}
.y108{bottom:998.826267pt;}
.ya9{bottom:1017.547200pt;}
.ya7{bottom:1027.307200pt;}
.ya6{bottom:1029.866255pt;}
.ya3{bottom:1047.626248pt;}
.ya4{bottom:1051.147200pt;}
.yb3{bottom:1079.946235pt;}
.h23{height:7.680000pt;}
.h27{height:9.440000pt;}
.h26{height:13.440000pt;}
.h14{height:16.320000pt;}
.h30{height:17.120000pt;}
.h29{height:17.760000pt;}
.h2b{height:19.520000pt;}
.h24{height:22.367991pt;}
.hc{height:27.520000pt;}
.h9{height:27.552000pt;}
.hb{height:27.840000pt;}
.h10{height:27.872000pt;}
.h22{height:33.551987pt;}
.h34{height:35.761906pt;}
.h33{height:40.650224pt;}
.h2f{height:41.141234pt;}
.ha{height:41.456250pt;}
.h2d{height:41.745903pt;}
.h2a{height:43.903982pt;}
.h31{height:44.302062pt;}
.h1a{height:44.706250pt;}
.h2e{height:44.735982pt;}
.h28{height:49.105900pt;}
.h25{height:49.551980pt;}
.h2c{height:52.721259pt;}
.h35{height:53.375979pt;}
.h1e{height:53.440000pt;}
.h17{height:53.937500pt;}
.h7{height:55.040000pt;}
.h11{height:57.787500pt;}
.h16{height:60.300000pt;}
.h32{height:60.671976pt;}
.h15{height:61.920000pt;}
.h6{height:62.781250pt;}
.h2{height:62.812500pt;}
.h18{height:63.360000pt;}
.h1b{height:63.392000pt;}
.h1f{height:63.680000pt;}
.h20{height:63.712000pt;}
.h3{height:64.500000pt;}
.hd{height:65.776250pt;}
.h19{height:65.781915pt;}
.h8{height:66.890000pt;}
.h13{height:71.712000pt;}
.h21{height:73.632000pt;}
.h5{height:74.820000pt;}
.h4{height:75.900000pt;}
.he{height:82.880000pt;}
.h12{height:82.912000pt;}
.h1c{height:84.512000pt;}
.h1d{height:105.632000pt;}
.hf{height:110.432000pt;}
.h1{height:1056.000000pt;}
.h0{height:1122.666667pt;}
.wf{width:4.320000pt;}
.we{width:4.960000pt;}
.wc{width:6.560000pt;}
.wa{width:7.520000pt;}
.w4{width:19.840000pt;}
.wb{width:27.840000pt;}
.wd{width:35.200000pt;}
.w7{width:66.912000pt;}
.w9{width:89.312000pt;}
.w3{width:129.664000pt;}
.w6{width:250.973333pt;}
.w8{width:497.466667pt;}
.w5{width:500.026667pt;}
.w0{width:793.333333pt;}
.w2{width:815.999988pt;}
.w1{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:4.800000pt;}
.xe{left:7.040000pt;}
.x13{left:18.600000pt;}
.x1a{left:24.000000pt;}
.x1e{left:28.480000pt;}
.x1f{left:44.480000pt;}
.x26{left:76.800000pt;}
.x2c{left:83.999966pt;}
.x2d{left:86.080111pt;}
.xd{left:88.992000pt;}
.x15{left:96.031988pt;}
.x25{left:98.880000pt;}
.x37{left:103.359959pt;}
.x7{left:108.191988pt;}
.x27{left:110.559956pt;}
.x28{left:115.840000pt;}
.x2{left:120.351988pt;}
.x3a{left:131.999877pt;}
.x36{left:138.239945pt;}
.x16{left:144.066655pt;}
.x20{left:145.279942pt;}
.x21{left:151.360000pt;}
.x35{left:152.639939pt;}
.x22{left:158.399937pt;}
.x38{left:161.279621pt;}
.x1b{left:163.586667pt;}
.x9{left:210.306655pt;}
.x8{left:215.133321pt;}
.xf{left:218.653333pt;}
.x10{left:238.493333pt;}
.x29{left:246.559901pt;}
.x2e{left:253.118766pt;}
.x3{left:258.333321pt;}
.xb{left:279.773321pt;}
.x12{left:290.973333pt;}
.xa{left:303.813321pt;}
.x39{left:305.278554pt;}
.x2f{left:314.399874pt;}
.x30{left:319.839872pt;}
.xc{left:320.773321pt;}
.x11{left:336.133333pt;}
.x4{left:339.013321pt;}
.x6{left:341.573321pt;}
.x5{left:366.213321pt;}
.x14{left:378.053321pt;}
.x3b{left:403.040103pt;}
.x3c{left:404.960103pt;}
.x1{left:414.239988pt;}
.x19{left:417.119988pt;}
.x31{left:426.559829pt;}
.x32{left:431.999827pt;}
.x18{left:480.186655pt;}
.x33{left:551.359779pt;}
.x34{left:556.799777pt;}
.x23{left:608.480379pt;}
.x2a{left:657.759737pt;}
.x1d{left:661.693333pt;}
.x24{left:679.040000pt;}
.x2b{left:715.040000pt;}
.x17{left:732.453321pt;}
}




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