
    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_49d82928be39eb1038c0198b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_da175d80b81b8ee745297024.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_4019af89dfccca9219323f53.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_2b68690127e67d0a5b4ded58.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_a6727cb6e9b88541224f94ae.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_a00152864996570863b3298c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_b56e1176a9b83bafe9cb0d53.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.686523;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_20913a3b5548a5124051112a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.766113;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_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_a7e04236306a90c24e0028cb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_f811a8240c4a6b89861eba92.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.866699;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_4dc55b7140fcc2b7746d59c4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;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_753a851632fc1df7de992079.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893066;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_ee6026a1cb3f66b41976e379.woff2')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_3f3fb4fda64cea18cb3db4b4.woff2')format("woff");}.fff{font-family:fff;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;}
.m0{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);}
.m1{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);}
.m3{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);}
.m2{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);}
.m5{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);}
.v1{vertical-align:-5.759998px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.009894px;}
.lsc{letter-spacing:0.009916px;}
.ls3{letter-spacing:0.010641px;}
.ls1{letter-spacing:0.018600px;}
.lsa{letter-spacing:0.166140px;}
.ls6{letter-spacing:0.284100px;}
.ls4{letter-spacing:0.284160px;}
.ls5{letter-spacing:0.316500px;}
.ls7{letter-spacing:33.097247px;}
.ls9{letter-spacing:33.980686px;}
.ls8{letter-spacing:34.015846px;}
.ls0{letter-spacing:1737.837244px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-35.855986px;}
.ws5{word-spacing:-32.418587px;}
.ws9{word-spacing:-17.999993px;}
.ws7{word-spacing:-16.559993px;}
.ws4{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws1{word-spacing:-14.939994px;}
.ws2{word-spacing:-14.374074px;}
.ws3{word-spacing:-10.612796px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-6.962250px;}
._13{margin-left:-5.170593px;}
._2{margin-left:-3.878670px;}
._3{margin-left:-2.846029px;}
._1{margin-left:-1.570801px;}
._0{width:1.003097px;}
._c{width:2.749239px;}
._5{width:4.490753px;}
._4{width:5.533318px;}
._7{width:7.256835px;}
._6{width:8.433478px;}
._8{width:10.179692px;}
._9{width:11.193123px;}
._a{width:12.646690px;}
._10{width:14.160105px;}
._b{width:16.039432px;}
._2b{width:18.011630px;}
._27{width:23.142932px;}
._28{width:24.203446px;}
._d{width:32.726564px;}
._2d{width:34.440831px;}
._15{width:48.300232px;}
._16{width:54.164949px;}
._1d{width:58.821401px;}
._1c{width:60.308687px;}
._e{width:61.734377px;}
._f{width:62.818103px;}
._1e{width:78.231832px;}
._1f{width:90.573175px;}
._21{width:91.931409px;}
._20{width:102.154660px;}
._2e{width:104.241797px;}
._1b{width:105.864154px;}
._22{width:146.336695px;}
._14{width:184.025390px;}
._24{width:207.494067px;}
._25{width:239.192544px;}
._26{width:262.246705px;}
._23{width:278.816634px;}
._11{width:1440.852659px;}
._18{width:1475.441013px;}
._17{width:1497.055043px;}
._2a{width:1790.272748px;}
._19{width:1840.086644px;}
._2c{width:1873.104610px;}
._29{width:1952.368851px;}
._1a{width:2172.077276px;}
.fcc{color:rgb(0,101,204);}
.fca{color:rgb(44,62,80);}
.fc9{color:rgb(0,32,96);}
.fc8{color:rgb(83,129,53);}
.fc7{color:rgb(5,99,193);}
.fc6{color:rgb(112,48,160);}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(192,0,0);}
.fcb{color:rgb(51,51,51);}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs4{font-size:81.359967px;}
.y6{bottom:-9.539991px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y4e{bottom:0.359281px;}
.y21{bottom:2.699065px;}
.y48{bottom:3.959292px;}
.y1e{bottom:4.319056px;}
.y18{bottom:4.498942px;}
.y1f{bottom:4.499056px;}
.y2d{bottom:4.499067px;}
.y79{bottom:4.499174px;}
.y7b{bottom:4.499183px;}
.y7e{bottom:4.499192px;}
.yb{bottom:4.500038px;}
.yc{bottom:33.240287px;}
.ya{bottom:51.060240px;}
.y8{bottom:55.560278px;}
.y9{bottom:57.000277px;}
.yfd{bottom:146.279941px;}
.y15{bottom:147.899941px;}
.y76{bottom:149.520240px;}
.yf3{bottom:153.839938px;}
.ycb{bottom:155.099938px;}
.y10c{bottom:159.239936px;}
.ya9{bottom:162.659935px;}
.yfc{bottom:166.259933px;}
.y14{bottom:166.799933px;}
.y75{bottom:169.859932px;}
.yf2{bottom:173.819930px;}
.yca{bottom:175.079930px;}
.ya8{bottom:182.099927px;}
.yfb{bottom:186.059926px;}
.y74{bottom:188.759924px;}
.yf1{bottom:193.799922px;}
.yc9{bottom:195.059922px;}
.ya7{bottom:201.539919px;}
.y13d{bottom:202.259919px;}
.yfa{bottom:206.039918px;}
.y13{bottom:207.119917px;}
.y73{bottom:207.659917px;}
.yf0{bottom:213.599915px;}
.yc8{bottom:214.859914px;}
.ya6{bottom:221.159912px;}
.y13c{bottom:224.039910px;}
.yf9{bottom:225.839910px;}
.y72{bottom:226.379909px;}
.yef{bottom:233.579907px;}
.y71{bottom:245.279902px;}
.yf8{bottom:245.819902px;}
.y12{bottom:249.239900px;}
.ya5{bottom:249.419900px;}
.yee{bottom:249.779900px;}
.y13b{bottom:253.379899px;}
.yc7{bottom:255.359898px;}
.y70{bottom:264.179894px;}
.yf7{bottom:265.619894px;}
.y47{bottom:265.620600px;}
.ya4{bottom:269.219892px;}
.y124{bottom:270.119892px;}
.y13a{bottom:275.159890px;}
.yc6{bottom:276.059890px;}
.y6f{bottom:282.899887px;}
.ya3{bottom:288.839884px;}
.y123{bottom:289.199884px;}
.y2b{bottom:292.079883px;}
.y139{bottom:296.939881px;}
.y4d{bottom:297.660600px;}
.y6e{bottom:301.799879px;}
.yf6{bottom:301.979879px;}
.ya2{bottom:308.279877px;}
.y4c{bottom:314.939874px;}
.yc5{bottom:317.639873px;}
.y138{bottom:318.719873px;}
.y6d{bottom:320.699872px;}
.y122{bottom:327.179869px;}
.ya1{bottom:327.899869px;}
.y4b{bottom:331.679867px;}
.yc4{bottom:338.339865px;}
.y6c{bottom:339.419864px;}
.ya0{bottom:347.339861px;}
.y137{bottom:348.059861px;}
.y4a{bottom:348.599861px;}
.y6b{bottom:358.319857px;}
.yc3{bottom:359.039856px;}
.yed{bottom:364.619854px;}
.y49{bottom:365.879854px;}
.y9f{bottom:366.959853px;}
.y136{bottom:370.019852px;}
.y6a{bottom:377.219849px;}
.yc2{bottom:379.739848px;}
.yec{bottom:380.819848px;}
.y121{bottom:386.219846px;}
.y9e{bottom:387.299845px;}
.y135{bottom:391.619843px;}
.y69{bottom:395.939842px;}
.y46{bottom:400.079840px;}
.yc1{bottom:400.439840px;}
.y9d{bottom:406.919837px;}
.y68{bottom:414.839834px;}
.y45{bottom:417.359833px;}
.y2a{bottom:420.419832px;}
.yc0{bottom:421.139832px;}
.y9c{bottom:425.459830px;}
.y120{bottom:425.999830px;}
.y67{bottom:433.559827px;}
.ybf{bottom:441.839823px;}
.y134{bottom:442.739823px;}
.y9b{bottom:444.899822px;}
.y44{bottom:455.519818px;}
.ybe{bottom:462.539815px;}
.y9a{bottom:464.519814px;}
.y11f{bottom:465.959814px;}
.y133{bottom:472.259811px;}
.y43{bottom:472.799811px;}
.y66{bottom:473.699811px;}
.y99{bottom:483.959806px;}
.y11e{bottom:485.039806px;}
.y42{bottom:490.079804px;}
.y132{bottom:494.039802px;}
.yeb{bottom:500.519800px;}
.y10b{bottom:501.059800px;}
.ybd{bottom:504.839798px;}
.y41{bottom:507.359797px;}
.y65{bottom:511.319795px;}
.y7d{bottom:514.920600px;}
.y7c{bottom:519.419792px;}
.y98{bottom:520.319792px;}
.yea{bottom:520.499792px;}
.y131{bottom:523.379791px;}
.y40{bottom:524.459790px;}
.y11d{bottom:524.819790px;}
.ybc{bottom:526.619789px;}
.y7a{bottom:537.420600px;}
.ye9{bottom:540.299784px;}
.y3f{bottom:541.739783px;}
.y29{bottom:543.359783px;}
.y130{bottom:545.159782px;}
.ybb{bottom:548.219781px;}
.y3e{bottom:559.019776px;}
.y10a{bottom:560.099776px;}
.ye8{bottom:560.279776px;}
.y78{bottom:560.460600px;}
.y11c{bottom:564.779774px;}
.y77{bottom:564.959774px;}
.yba{bottom:569.999772px;}
.y12f{bottom:574.499770px;}
.y3d{bottom:576.299769px;}
.ye7{bottom:580.079768px;}
.y11b{bottom:584.039766px;}
.yf5{bottom:590.519764px;}
.yb9{bottom:591.599763px;}
.y3c{bottom:593.579763px;}
.y12e{bottom:596.279761px;}
.ye6{bottom:600.059760px;}
.y11a{bottom:602.939759px;}
.yf4{bottom:606.899757px;}
.y3b{bottom:610.859756px;}
.yb8{bottom:613.199755px;}
.y28{bottom:614.099754px;}
.y97{bottom:615.899754px;}
.ye5{bottom:619.859752px;}
.y12d{bottom:625.619750px;}
.y3a{bottom:627.959749px;}
.y27{bottom:629.399748px;}
.y96{bottom:633.719747px;}
.yb7{bottom:634.979746px;}
.y109{bottom:636.419745px;}
.ye4{bottom:639.839744px;}
.y119{bottom:642.719743px;}
.y26{bottom:644.699742px;}
.y39{bottom:645.239742px;}
.y12c{bottom:652.259739px;}
.y95{bottom:652.619739px;}
.yb6{bottom:656.219738px;}
.y25{bottom:658.739737px;}
.ye3{bottom:659.819736px;}
.y38{bottom:662.519735px;}
.y94{bottom:671.519731px;}
.y64{bottom:676.019730px;}
.yb5{bottom:677.639729px;}
.ye2{bottom:679.619728px;}
.y37{bottom:679.799728px;}
.y118{bottom:682.679727px;}
.y12b{bottom:686.639725px;}
.y93{bottom:690.599724px;}
.y63{bottom:695.099722px;}
.y36{bottom:697.079721px;}
.yb4{bottom:698.879720px;}
.ye1{bottom:699.599720px;}
.y117{bottom:701.939719px;}
.y92{bottom:709.499716px;}
.y62{bottom:713.999714px;}
.y35{bottom:714.359714px;}
.ye0{bottom:719.399712px;}
.yb3{bottom:719.759712px;}
.y116{bottom:720.839712px;}
.y24{bottom:728.219709px;}
.y91{bottom:728.579709px;}
.y34{bottom:731.459707px;}
.y61{bottom:733.079707px;}
.yb2{bottom:737.399705px;}
.ydf{bottom:739.379704px;}
.y90{bottom:747.479701px;}
.y33{bottom:748.739701px;}
.y60{bottom:751.979699px;}
.y12a{bottom:754.499698px;}
.yb1{bottom:756.479697px;}
.yde{bottom:759.179696px;}
.y115{bottom:760.619696px;}
.y32{bottom:766.019694px;}
.y5f{bottom:771.059692px;}
.y129{bottom:776.279689px;}
.yb0{bottom:777.539689px;}
.ydd{bottom:779.159688px;}
.y31{bottom:783.299687px;}
.y8f{bottom:787.799685px;}
.y5e{bottom:789.959684px;}
.yaf{bottom:797.519681px;}
.y23{bottom:797.879681px;}
.y128{bottom:798.239681px;}
.ydc{bottom:799.139680px;}
.y30{bottom:800.579680px;}
.y8e{bottom:807.779677px;}
.y22{bottom:813.359675px;}
.yae{bottom:816.959673px;}
.y2f{bottom:817.679673px;}
.ydb{bottom:818.939672px;}
.y127{bottom:820.019672px;}
.y8d{bottom:827.219669px;}
.y2c{bottom:828.840600px;}
.y5d{bottom:829.739668px;}
.y2e{bottom:834.959666px;}
.y20{bottom:834.960600px;}
.yad{bottom:836.579665px;}
.yda{bottom:838.919664px;}
.y114{bottom:840.539664px;}
.y5c{bottom:848.819660px;}
.y8c{bottom:850.799660px;}
.y108{bottom:854.579658px;}
.y1d{bottom:854.940600px;}
.yac{bottom:856.019658px;}
.yd9{bottom:858.719657px;}
.y126{bottom:860.339656px;}
.y5b{bottom:867.899653px;}
.y107{bottom:873.659651px;}
.yd8{bottom:878.699649px;}
.y8b{bottom:879.059648px;}
.yab{bottom:879.599648px;}
.y113{bottom:880.679648px;}
.y5a{bottom:886.799645px;}
.y125{bottom:898.139641px;}
.yd7{bottom:898.499641px;}
.y8a{bottom:898.859640px;}
.y112{bottom:899.759640px;}
.y59{bottom:905.879638px;}
.yaa{bottom:907.679637px;}
.y11{bottom:909.119636px;}
.y106{bottom:913.979634px;}
.y89{bottom:918.479633px;}
.y111{bottom:918.659633px;}
.y58{bottom:924.779630px;}
.y10{bottom:926.399629px;}
.y105{bottom:933.959626px;}
.y88{bottom:937.919625px;}
.yd6{bottom:938.279625px;}
.yf{bottom:943.679623px;}
.y104{bottom:953.399619px;}
.y87{bottom:957.539617px;}
.yd5{bottom:958.259617px;}
.y110{bottom:958.439617px;}
.y57{bottom:964.559614px;}
.y103{bottom:973.379611px;}
.y86{bottom:976.979609px;}
.yd4{bottom:978.239609px;}
.ye{bottom:981.839607px;}
.y56{bottom:983.819606px;}
.y102{bottom:996.599601px;}
.y85{bottom:996.959601px;}
.yd3{bottom:998.039601px;}
.y10f{bottom:998.399601px;}
.y55{bottom:1002.719599px;}
.y84{bottom:1016.759593px;}
.yd2{bottom:1018.019593px;}
.y101{bottom:1021.079592px;}
.yd{bottom:1021.259591px;}
.y54{bottom:1021.619591px;}
.y83{bottom:1036.739585px;}
.yd1{bottom:1037.819585px;}
.y10e{bottom:1038.539585px;}
.y53{bottom:1040.699584px;}
.y100{bottom:1045.379582px;}
.y1c{bottom:1055.819578px;}
.y82{bottom:1056.719577px;}
.yd0{bottom:1057.799577px;}
.y52{bottom:1059.599576px;}
.y16{bottom:1061.219576px;}
.yff{bottom:1069.859572px;}
.y1b{bottom:1075.979570px;}
.y81{bottom:1076.159570px;}
.ycf{bottom:1077.599569px;}
.y10d{bottom:1078.499569px;}
.yfe{bottom:1094.159562px;}
.y80{bottom:1095.599562px;}
.y1a{bottom:1096.139562px;}
.yce{bottom:1097.579561px;}
.y51{bottom:1099.379560px;}
.ycd{bottom:1117.559553px;}
.y50{bottom:1118.639553px;}
.y19{bottom:1125.299550px;}
.y7f{bottom:1136.099546px;}
.ycc{bottom:1137.359545px;}
.y4f{bottom:1137.539545px;}
.y17{bottom:1140.960600px;}
.y4{bottom:1157.339537px;}
.y7{bottom:1185.059526px;}
.y3{bottom:1189.019524px;}
.y2{bottom:1206.299517px;}
.y1{bottom:1223.579511px;}
.h3{height:6.300000px;}
.h14{height:12.420000px;}
.h15{height:13.140000px;}
.he{height:14.040000px;}
.hb{height:20.160000px;}
.h6{height:20.340000px;}
.hf{height:33.706744px;}
.h5{height:34.625377px;}
.h11{height:36.624009px;}
.h4{height:36.703110px;}
.h16{height:38.759750px;}
.h13{height:39.313461px;}
.h10{height:39.339828px;}
.h1{height:41.522679px;}
.h7{height:42.894123px;}
.h18{height:43.506897px;}
.h19{height:43.536076px;}
.hd{height:44.149201px;}
.h17{height:44.860763px;}
.h1b{height:44.893107px;}
.hc{height:45.281232px;}
.ha{height:46.025138px;}
.h2{height:47.545293px;}
.h9{height:48.796855px;}
.h12{height:50.027324px;}
.h1a{height:52.453104px;}
.h8{height:55.140447px;}
.h0{height:1263.000000px;}
.w11{width:1.260000px;}
.w13{width:1.440000px;}
.w7{width:3.600000px;}
.w12{width:3.780000px;}
.w3{width:6.660000px;}
.wd{width:7.020000px;}
.w10{width:7.920000px;}
.w9{width:8.100000px;}
.w5{width:8.280000px;}
.we{width:9.000000px;}
.w2{width:9.720000px;}
.w8{width:33.660000px;}
.wb{width:55.440000px;}
.wc{width:58.140000px;}
.w6{width:58.500000px;}
.wa{width:70.200000px;}
.wf{width:264.240000px;}
.w4{width:382.860000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x31{left:47.159981px;}
.x4{left:64.619974px;}
.x27{left:66.779973px;}
.x2e{left:73.440587px;}
.x37{left:75.961192px;}
.x5{left:90.719964px;}
.x21{left:98.819960px;}
.x30{left:100.439960px;}
.x1f{left:104.759958px;}
.x2b{left:106.919509px;}
.x1{left:107.999957px;}
.x34{left:111.419955px;}
.x1b{left:118.980000px;}
.x1e{left:122.399993px;}
.x14{left:127.800000px;}
.x32{left:134.999946px;}
.x2c{left:144.899942px;}
.x22{left:159.479936px;}
.x20{left:161.459935px;}
.x8{left:162.899935px;}
.x1c{left:174.420000px;}
.x15{left:186.300000px;}
.x16{left:189.900000px;}
.x9{left:202.859919px;}
.x33{left:215.999914px;}
.x17{left:223.560000px;}
.x28{left:226.800000px;}
.x1d{left:232.560000px;}
.xc{left:235.440233px;}
.x23{left:245.519912px;}
.x24{left:246.599901px;}
.x18{left:271.620000px;}
.x2f{left:274.859890px;}
.xd{left:276.840000px;}
.x10{left:282.599887px;}
.xa{left:285.652467px;}
.x19{left:290.880000px;}
.x25{left:294.119882px;}
.x2{left:302.579879px;}
.x35{left:312.299875px;}
.x36{left:350.279860px;}
.x6{left:357.839857px;}
.x1a{left:360.900000px;}
.xb{left:381.411527px;}
.xf{left:402.839839px;}
.xe{left:405.359838px;}
.x11{left:413.639835px;}
.x29{left:456.659817px;}
.x2a{left:459.360000px;}
.x26{left:558.360000px;}
.x12{left:686.340000px;}
.x38{left:707.039717px;}
.x3{left:710.459716px;}
.x13{left:756.900000px;}
.x2d{left:786.419685px;}
.x7{left:820.800000px;}
@media print{
.v1{vertical-align:-5.119998pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.008794pt;}
.lsc{letter-spacing:0.008814pt;}
.ls3{letter-spacing:0.009459pt;}
.ls1{letter-spacing:0.016533pt;}
.lsa{letter-spacing:0.147680pt;}
.ls6{letter-spacing:0.252533pt;}
.ls4{letter-spacing:0.252587pt;}
.ls5{letter-spacing:0.281333pt;}
.ls7{letter-spacing:29.419775pt;}
.ls9{letter-spacing:30.205055pt;}
.ls8{letter-spacing:30.236308pt;}
.ls0{letter-spacing:1544.744217pt;}
.ws8{word-spacing:-31.871987pt;}
.ws5{word-spacing:-28.816521pt;}
.ws9{word-spacing:-15.999994pt;}
.ws7{word-spacing:-14.719994pt;}
.ws4{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws1{word-spacing:-13.279995pt;}
.ws2{word-spacing:-12.776955pt;}
.ws3{word-spacing:-9.433596pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-6.188667pt;}
._13{margin-left:-4.596083pt;}
._2{margin-left:-3.447707pt;}
._3{margin-left:-2.529803pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._c{width:2.443768pt;}
._5{width:3.991780pt;}
._4{width:4.918505pt;}
._7{width:6.450520pt;}
._6{width:7.496425pt;}
._8{width:9.048615pt;}
._9{width:9.949443pt;}
._a{width:11.241502pt;}
._10{width:12.586760pt;}
._b{width:14.257273pt;}
._2b{width:16.010338pt;}
._27{width:20.571495pt;}
._28{width:21.514174pt;}
._d{width:29.090279pt;}
._2d{width:30.614072pt;}
._15{width:42.933540pt;}
._16{width:48.146621pt;}
._1d{width:52.285690pt;}
._1c{width:53.607722pt;}
._e{width:54.875002pt;}
._f{width:55.838314pt;}
._1e{width:69.539407pt;}
._1f{width:80.509489pt;}
._21{width:81.716808pt;}
._20{width:90.804142pt;}
._2e{width:92.659375pt;}
._1b{width:94.101470pt;}
._22{width:130.077062pt;}
._14{width:163.578124pt;}
._24{width:184.439171pt;}
._25{width:212.615595pt;}
._26{width:233.108182pt;}
._23{width:247.837008pt;}
._11{width:1280.757919pt;}
._18{width:1311.503122pt;}
._17{width:1330.715593pt;}
._2a{width:1591.353554pt;}
._19{width:1635.632572pt;}
._2c{width:1664.981875pt;}
._29{width:1735.438979pt;}
._1a{width:1930.735357pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs4{font-size:72.319971pt;}
.y6{bottom:-8.479992pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y4e{bottom:0.319361pt;}
.y21{bottom:2.399169pt;}
.y48{bottom:3.519371pt;}
.y1e{bottom:3.839161pt;}
.y18{bottom:3.999059pt;}
.y1f{bottom:3.999161pt;}
.y2d{bottom:3.999170pt;}
.y79{bottom:3.999266pt;}
.y7b{bottom:3.999274pt;}
.y7e{bottom:3.999282pt;}
.yb{bottom:4.000034pt;}
.yc{bottom:29.546922pt;}
.ya{bottom:45.386880pt;}
.y8{bottom:49.386914pt;}
.y9{bottom:50.666913pt;}
.yfd{bottom:130.026615pt;}
.y15{bottom:131.466614pt;}
.y76{bottom:132.906880pt;}
.yf3{bottom:136.746612pt;}
.ycb{bottom:137.866612pt;}
.y10c{bottom:141.546610pt;}
.ya9{bottom:144.586609pt;}
.yfc{bottom:147.786608pt;}
.y14{bottom:148.266607pt;}
.y75{bottom:150.986606pt;}
.yf2{bottom:154.506605pt;}
.yca{bottom:155.626604pt;}
.ya8{bottom:161.866602pt;}
.yfb{bottom:165.386601pt;}
.y74{bottom:167.786600pt;}
.yf1{bottom:172.266598pt;}
.yc9{bottom:173.386597pt;}
.ya7{bottom:179.146595pt;}
.y13d{bottom:179.786595pt;}
.yfa{bottom:183.146593pt;}
.y13{bottom:184.106593pt;}
.y73{bottom:184.586593pt;}
.yf0{bottom:189.866591pt;}
.yc8{bottom:190.986590pt;}
.ya6{bottom:196.586588pt;}
.y13c{bottom:199.146587pt;}
.yf9{bottom:200.746586pt;}
.y72{bottom:201.226586pt;}
.yef{bottom:207.626584pt;}
.y71{bottom:218.026579pt;}
.yf8{bottom:218.506579pt;}
.y12{bottom:221.546578pt;}
.ya5{bottom:221.706578pt;}
.yee{bottom:222.026578pt;}
.y13b{bottom:225.226577pt;}
.yc7{bottom:226.986576pt;}
.y70{bottom:234.826573pt;}
.yf7{bottom:236.106572pt;}
.y47{bottom:236.107200pt;}
.ya4{bottom:239.306571pt;}
.y124{bottom:240.106571pt;}
.y13a{bottom:244.586569pt;}
.yc6{bottom:245.386569pt;}
.y6f{bottom:251.466566pt;}
.ya3{bottom:256.746564pt;}
.y123{bottom:257.066564pt;}
.y2b{bottom:259.626563pt;}
.y139{bottom:263.946561pt;}
.y4d{bottom:264.587200pt;}
.y6e{bottom:268.266559pt;}
.yf6{bottom:268.426559pt;}
.ya2{bottom:274.026557pt;}
.y4c{bottom:279.946555pt;}
.yc5{bottom:282.346554pt;}
.y138{bottom:283.306553pt;}
.y6d{bottom:285.066553pt;}
.y122{bottom:290.826550pt;}
.ya1{bottom:291.466550pt;}
.y4b{bottom:294.826549pt;}
.yc4{bottom:300.746546pt;}
.y6c{bottom:301.706546pt;}
.ya0{bottom:308.746543pt;}
.y137{bottom:309.386543pt;}
.y4a{bottom:309.866543pt;}
.y6b{bottom:318.506539pt;}
.yc3{bottom:319.146539pt;}
.yed{bottom:324.106537pt;}
.y49{bottom:325.226537pt;}
.y9f{bottom:326.186536pt;}
.y136{bottom:328.906535pt;}
.y6a{bottom:335.306533pt;}
.yc2{bottom:337.546532pt;}
.yec{bottom:338.506531pt;}
.y121{bottom:343.306529pt;}
.y9e{bottom:344.266529pt;}
.y135{bottom:348.106527pt;}
.y69{bottom:351.946526pt;}
.y46{bottom:355.626524pt;}
.yc1{bottom:355.946524pt;}
.y9d{bottom:361.706522pt;}
.y68{bottom:368.746519pt;}
.y45{bottom:370.986518pt;}
.y2a{bottom:373.706517pt;}
.yc0{bottom:374.346517pt;}
.y9c{bottom:378.186515pt;}
.y120{bottom:378.666515pt;}
.y67{bottom:385.386513pt;}
.ybf{bottom:392.746510pt;}
.y134{bottom:393.546509pt;}
.y9b{bottom:395.466508pt;}
.y44{bottom:404.906505pt;}
.ybe{bottom:411.146502pt;}
.y9a{bottom:412.906502pt;}
.y11f{bottom:414.186501pt;}
.y133{bottom:419.786499pt;}
.y43{bottom:420.266499pt;}
.y66{bottom:421.066498pt;}
.y99{bottom:430.186495pt;}
.y11e{bottom:431.146494pt;}
.y42{bottom:435.626492pt;}
.y132{bottom:439.146491pt;}
.yeb{bottom:444.906489pt;}
.y10b{bottom:445.386489pt;}
.ybd{bottom:448.746487pt;}
.y41{bottom:450.986486pt;}
.y65{bottom:454.506485pt;}
.y7d{bottom:457.707200pt;}
.y7c{bottom:461.706482pt;}
.y98{bottom:462.506482pt;}
.yea{bottom:462.666482pt;}
.y131{bottom:465.226481pt;}
.y40{bottom:466.186480pt;}
.y11d{bottom:466.506480pt;}
.ybc{bottom:468.106479pt;}
.y7a{bottom:477.707200pt;}
.ye9{bottom:480.266475pt;}
.y3f{bottom:481.546474pt;}
.y29{bottom:482.986473pt;}
.y130{bottom:484.586473pt;}
.ybb{bottom:487.306472pt;}
.y3e{bottom:496.906468pt;}
.y10a{bottom:497.866468pt;}
.ye8{bottom:498.026467pt;}
.y78{bottom:498.187200pt;}
.y11c{bottom:502.026466pt;}
.y77{bottom:502.186466pt;}
.yba{bottom:506.666464pt;}
.y12f{bottom:510.666462pt;}
.y3d{bottom:512.266462pt;}
.ye7{bottom:515.626460pt;}
.y11b{bottom:519.146459pt;}
.yf5{bottom:524.906457pt;}
.yb9{bottom:525.866456pt;}
.y3c{bottom:527.626456pt;}
.y12e{bottom:530.026455pt;}
.ye6{bottom:533.386453pt;}
.y11a{bottom:535.946452pt;}
.yf4{bottom:539.466451pt;}
.y3b{bottom:542.986449pt;}
.yb8{bottom:545.066449pt;}
.y28{bottom:545.866448pt;}
.y97{bottom:547.466448pt;}
.ye5{bottom:550.986446pt;}
.y12d{bottom:556.106444pt;}
.y3a{bottom:558.186443pt;}
.y27{bottom:559.466443pt;}
.y96{bottom:563.306441pt;}
.yb7{bottom:564.426441pt;}
.y109{bottom:565.706440pt;}
.ye4{bottom:568.746439pt;}
.y119{bottom:571.306438pt;}
.y26{bottom:573.066437pt;}
.y39{bottom:573.546437pt;}
.y12c{bottom:579.786435pt;}
.y95{bottom:580.106435pt;}
.yb6{bottom:583.306433pt;}
.y25{bottom:585.546432pt;}
.ye3{bottom:586.506432pt;}
.y38{bottom:588.906431pt;}
.y94{bottom:596.906428pt;}
.y64{bottom:600.906426pt;}
.yb5{bottom:602.346426pt;}
.ye2{bottom:604.106425pt;}
.y37{bottom:604.266425pt;}
.y118{bottom:606.826424pt;}
.y12b{bottom:610.346423pt;}
.y93{bottom:613.866421pt;}
.y63{bottom:617.866420pt;}
.y36{bottom:619.626419pt;}
.yb4{bottom:621.226418pt;}
.ye1{bottom:621.866418pt;}
.y117{bottom:623.946417pt;}
.y92{bottom:630.666414pt;}
.y62{bottom:634.666413pt;}
.y35{bottom:634.986413pt;}
.ye0{bottom:639.466411pt;}
.yb3{bottom:639.786411pt;}
.y116{bottom:640.746410pt;}
.y24{bottom:647.306408pt;}
.y91{bottom:647.626408pt;}
.y34{bottom:650.186407pt;}
.y61{bottom:651.626406pt;}
.yb2{bottom:655.466404pt;}
.ydf{bottom:657.226404pt;}
.y90{bottom:664.426401pt;}
.y33{bottom:665.546400pt;}
.y60{bottom:668.426399pt;}
.y12a{bottom:670.666398pt;}
.yb1{bottom:672.426398pt;}
.yde{bottom:674.826397pt;}
.y115{bottom:676.106396pt;}
.y32{bottom:680.906394pt;}
.y5f{bottom:685.386393pt;}
.y129{bottom:690.026391pt;}
.yb0{bottom:691.146390pt;}
.ydd{bottom:692.586390pt;}
.y31{bottom:696.266388pt;}
.y8f{bottom:700.266387pt;}
.y5e{bottom:702.186386pt;}
.yaf{bottom:708.906383pt;}
.y23{bottom:709.226383pt;}
.y128{bottom:709.546383pt;}
.ydc{bottom:710.346383pt;}
.y30{bottom:711.626382pt;}
.y8e{bottom:718.026379pt;}
.y22{bottom:722.986377pt;}
.yae{bottom:726.186376pt;}
.y2f{bottom:726.826376pt;}
.ydb{bottom:727.946375pt;}
.y127{bottom:728.906375pt;}
.y8d{bottom:735.306373pt;}
.y2c{bottom:736.747200pt;}
.y5d{bottom:737.546372pt;}
.y2e{bottom:742.186370pt;}
.y20{bottom:742.187200pt;}
.yad{bottom:743.626369pt;}
.yda{bottom:745.706368pt;}
.y114{bottom:747.146368pt;}
.y5c{bottom:754.506365pt;}
.y8c{bottom:756.266364pt;}
.y108{bottom:759.626363pt;}
.y1d{bottom:759.947200pt;}
.yac{bottom:760.906362pt;}
.yd9{bottom:763.306361pt;}
.y126{bottom:764.746361pt;}
.y5b{bottom:771.466358pt;}
.y107{bottom:776.586356pt;}
.yd8{bottom:781.066354pt;}
.y8b{bottom:781.386354pt;}
.yab{bottom:781.866354pt;}
.y113{bottom:782.826354pt;}
.y5a{bottom:788.266351pt;}
.y125{bottom:798.346347pt;}
.yd7{bottom:798.666347pt;}
.y8a{bottom:798.986347pt;}
.y112{bottom:799.786347pt;}
.y59{bottom:805.226345pt;}
.yaa{bottom:806.826344pt;}
.y11{bottom:808.106343pt;}
.y106{bottom:812.426342pt;}
.y89{bottom:816.426340pt;}
.y111{bottom:816.586340pt;}
.y58{bottom:822.026338pt;}
.y10{bottom:823.466337pt;}
.y105{bottom:830.186335pt;}
.y88{bottom:833.706333pt;}
.yd6{bottom:834.026333pt;}
.yf{bottom:838.826331pt;}
.y104{bottom:847.466328pt;}
.y87{bottom:851.146326pt;}
.yd5{bottom:851.786326pt;}
.y110{bottom:851.946326pt;}
.y57{bottom:857.386324pt;}
.y103{bottom:865.226321pt;}
.y86{bottom:868.426319pt;}
.yd4{bottom:869.546319pt;}
.ye{bottom:872.746318pt;}
.y56{bottom:874.506317pt;}
.y102{bottom:885.866312pt;}
.y85{bottom:886.186312pt;}
.yd3{bottom:887.146312pt;}
.y10f{bottom:887.466312pt;}
.y55{bottom:891.306310pt;}
.y84{bottom:903.786305pt;}
.yd2{bottom:904.906305pt;}
.y101{bottom:907.626304pt;}
.yd{bottom:907.786304pt;}
.y54{bottom:908.106303pt;}
.y83{bottom:921.546298pt;}
.yd1{bottom:922.506298pt;}
.y10e{bottom:923.146297pt;}
.y53{bottom:925.066297pt;}
.y100{bottom:929.226295pt;}
.y1c{bottom:938.506291pt;}
.y82{bottom:939.306291pt;}
.yd0{bottom:940.266291pt;}
.y52{bottom:941.866290pt;}
.y16{bottom:943.306289pt;}
.yff{bottom:950.986286pt;}
.y1b{bottom:956.426284pt;}
.y81{bottom:956.586284pt;}
.ycf{bottom:957.866284pt;}
.y10d{bottom:958.666283pt;}
.yfe{bottom:972.586278pt;}
.y80{bottom:973.866277pt;}
.y1a{bottom:974.346277pt;}
.yce{bottom:975.626276pt;}
.y51{bottom:977.226276pt;}
.ycd{bottom:993.386269pt;}
.y50{bottom:994.346269pt;}
.y19{bottom:1000.266267pt;}
.y7f{bottom:1009.866263pt;}
.ycc{bottom:1010.986262pt;}
.y4f{bottom:1011.146262pt;}
.y17{bottom:1014.187200pt;}
.y4{bottom:1028.746255pt;}
.y7{bottom:1053.386245pt;}
.y3{bottom:1056.906244pt;}
.y2{bottom:1072.266238pt;}
.y1{bottom:1087.626232pt;}
.h3{height:5.600000pt;}
.h14{height:11.040000pt;}
.h15{height:11.680000pt;}
.he{height:12.480000pt;}
.hb{height:17.920000pt;}
.h6{height:18.080000pt;}
.hf{height:29.961551pt;}
.h5{height:30.778113pt;}
.h11{height:32.554674pt;}
.h4{height:32.624987pt;}
.h16{height:34.453111pt;}
.h13{height:34.945299pt;}
.h10{height:34.968736pt;}
.h1{height:36.909048pt;}
.h7{height:38.128110pt;}
.h18{height:38.672797pt;}
.h19{height:38.698735pt;}
.hd{height:39.243734pt;}
.h17{height:39.876234pt;}
.h1b{height:39.904984pt;}
.hc{height:40.249984pt;}
.ha{height:40.911234pt;}
.h2{height:42.262483pt;}
.h9{height:43.374983pt;}
.h12{height:44.468732pt;}
.h1a{height:46.624981pt;}
.h8{height:49.013730pt;}
.h0{height:1122.666667pt;}
.w11{width:1.120000pt;}
.w13{width:1.280000pt;}
.w7{width:3.200000pt;}
.w12{width:3.360000pt;}
.w3{width:5.920000pt;}
.wd{width:6.240000pt;}
.w10{width:7.040000pt;}
.w9{width:7.200000pt;}
.w5{width:7.360000pt;}
.we{width:8.000000pt;}
.w2{width:8.640000pt;}
.w8{width:29.920000pt;}
.wb{width:49.280000pt;}
.wc{width:51.680000pt;}
.w6{width:52.000000pt;}
.wa{width:62.400000pt;}
.wf{width:234.880000pt;}
.w4{width:340.320000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x31{left:41.919983pt;}
.x4{left:57.439977pt;}
.x27{left:59.359976pt;}
.x2e{left:65.280522pt;}
.x37{left:67.521060pt;}
.x5{left:80.639968pt;}
.x21{left:87.839965pt;}
.x30{left:89.279964pt;}
.x1f{left:93.119963pt;}
.x2b{left:95.039563pt;}
.x1{left:95.999962pt;}
.x34{left:99.039960pt;}
.x1b{left:105.760000pt;}
.x1e{left:108.799994pt;}
.x14{left:113.600000pt;}
.x32{left:119.999952pt;}
.x2c{left:128.799948pt;}
.x22{left:141.759943pt;}
.x20{left:143.519943pt;}
.x8{left:144.799942pt;}
.x1c{left:155.040000pt;}
.x15{left:165.600000pt;}
.x16{left:168.800000pt;}
.x9{left:180.319928pt;}
.x33{left:191.999923pt;}
.x17{left:198.720000pt;}
.x28{left:201.600000pt;}
.x1d{left:206.720000pt;}
.xc{left:209.280207pt;}
.x23{left:218.239922pt;}
.x24{left:219.199912pt;}
.x18{left:241.440000pt;}
.x2f{left:244.319902pt;}
.xd{left:246.080000pt;}
.x10{left:251.199900pt;}
.xa{left:253.913304pt;}
.x19{left:258.560000pt;}
.x25{left:261.439895pt;}
.x2{left:268.959892pt;}
.x35{left:277.599889pt;}
.x36{left:311.359875pt;}
.x6{left:318.079873pt;}
.x1a{left:320.800000pt;}
.xb{left:339.032468pt;}
.xf{left:358.079857pt;}
.xe{left:360.319856pt;}
.x11{left:367.679853pt;}
.x29{left:405.919838pt;}
.x2a{left:408.320000pt;}
.x26{left:496.320000pt;}
.x12{left:610.080000pt;}
.x38{left:628.479749pt;}
.x3{left:631.519747pt;}
.x13{left:672.800000pt;}
.x2d{left:699.039720pt;}
.x7{left:729.600000pt;}
}




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