
    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_096a0f9d6ab27ed7d188f014.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.148000;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_a6539993e30927b1d29b2c7e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128000;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_0d9bdb46bd8c8d123cf0cf41.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.924000;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_00faae9c055ea30239599c7d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a713ac7e30e0f260760d42d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.094727;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_6da0e9a699dda00e4e21d45b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.147000;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_a6c06d67bb9233a648bc9ff0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_fd251745a21cdca855b298d7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.094727;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_6452f58e4960d607a515aaa3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005371;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_cd8ce336f29c1bddf64b475b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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_b81990f968a8760f5440be03.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005371;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_85a09099c187f055cf1cab47.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005371;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_f2d24c9bc6f3820957502c0f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005371;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_ac69cdfb0a691bd4a46d98e9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.150000;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_6b904324ea512081f9260cb5.woff2')format("woff");}.fff{font-family:fff;line-height:0.862000;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);}
.v8{vertical-align:-65.520000px;}
.v7{vertical-align:-36.000000px;}
.v4{vertical-align:-10.800000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:10.800000px;}
.v6{vertical-align:36.000000px;}
.v2{vertical-align:87.840000px;}
.v3{vertical-align:92.760000px;}
.lsb{letter-spacing:-34.920000px;}
.ls6{letter-spacing:-34.800000px;}
.ls7{letter-spacing:-33.840000px;}
.ls35{letter-spacing:-0.459600px;}
.ls2e{letter-spacing:-0.453600px;}
.ls1f{letter-spacing:-0.384600px;}
.ls1c{letter-spacing:-0.377400px;}
.ls2c{letter-spacing:-0.353400px;}
.ls2b{letter-spacing:-0.321600px;}
.ls18{letter-spacing:-0.306000px;}
.lsa{letter-spacing:-0.256200px;}
.ls5{letter-spacing:-0.254400px;}
.ls12{letter-spacing:-0.222600px;}
.ls33{letter-spacing:-0.219600px;}
.ls15{letter-spacing:-0.219000px;}
.ls21{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.214800px;}
.ls9{letter-spacing:-0.205200px;}
.ls1b{letter-spacing:-0.204600px;}
.ls20{letter-spacing:-0.204000px;}
.ls31{letter-spacing:-0.182400px;}
.ls2a{letter-spacing:-0.168600px;}
.ls30{letter-spacing:-0.160800px;}
.ls4{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.023640px;}
.ls0{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.019020px;}
.ls3b{letter-spacing:0.054720px;}
.ls1d{letter-spacing:0.056880px;}
.ls29{letter-spacing:0.066240px;}
.ls3d{letter-spacing:0.067800px;}
.ls38{letter-spacing:0.072000px;}
.ls2d{letter-spacing:0.082200px;}
.ls10{letter-spacing:0.098400px;}
.ls1e{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.111600px;}
.lsf{letter-spacing:0.114600px;}
.ls26{letter-spacing:0.125280px;}
.lsc{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.151800px;}
.lsd{letter-spacing:0.155400px;}
.ls25{letter-spacing:0.164400px;}
.lse{letter-spacing:0.171600px;}
.ls8{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.192000px;}
.ls1{letter-spacing:0.205200px;}
.ls3c{letter-spacing:0.234720px;}
.ls1a{letter-spacing:0.262200px;}
.ls34{letter-spacing:0.269400px;}
.ls2f{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.308400px;}
.ls28{letter-spacing:0.319200px;}
.ls3a{letter-spacing:0.333600px;}
.ls24{letter-spacing:0.344160px;}
.ls36{letter-spacing:0.348600px;}
.ls13{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.366600px;}
.ls3{letter-spacing:0.417600px;}
.ls37{letter-spacing:0.504000px;}
.ls39{letter-spacing:0.720000px;}
.ls17{letter-spacing:1.252800px;}
.ls16{letter-spacing:974.760000px;}
.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;}
}
.ws42{word-spacing:-69.073440px;}
.ws27{word-spacing:-68.854200px;}
.ws41{word-spacing:-68.739840px;}
.ws11{word-spacing:-56.534400px;}
.ws12{word-spacing:-49.982400px;}
.ws1c{word-spacing:-37.477440px;}
.ws1b{word-spacing:-37.440000px;}
.ws18{word-spacing:-35.394600px;}
.ws1a{word-spacing:-35.380800px;}
.ws19{word-spacing:-35.199240px;}
.ws38{word-spacing:-34.257600px;}
.ws3c{word-spacing:-31.611000px;}
.ws3a{word-spacing:-31.569240px;}
.wse{word-spacing:-31.487040px;}
.ws5{word-spacing:-31.467600px;}
.wsa{word-spacing:-31.417800px;}
.ws25{word-spacing:-31.369200px;}
.ws39{word-spacing:-31.299840px;}
.ws3{word-spacing:-31.262400px;}
.ws7{word-spacing:-31.057200px;}
.ws8{word-spacing:-31.043640px;}
.ws1{word-spacing:-31.008000px;}
.ws23{word-spacing:-30.885000px;}
.ws26{word-spacing:-30.877800px;}
.ws3b{word-spacing:-30.840240px;}
.ws1e{word-spacing:-28.267200px;}
.ws16{word-spacing:-28.117440px;}
.ws13{word-spacing:-28.080000px;}
.ws14{word-spacing:-27.902640px;}
.ws15{word-spacing:-27.894840px;}
.ws32{word-spacing:-25.264200px;}
.wsf{word-spacing:-24.897600px;}
.ws2c{word-spacing:-24.729000px;}
.ws34{word-spacing:-24.544200px;}
.ws43{word-spacing:-22.007640px;}
.ws44{word-spacing:-21.939840px;}
.ws45{word-spacing:-21.902400px;}
.ws20{word-spacing:-21.415800px;}
.ws1f{word-spacing:-21.345600px;}
.ws21{word-spacing:-21.153600px;}
.ws3d{word-spacing:-20.779200px;}
.ws22{word-spacing:-19.468800px;}
.ws3f{word-spacing:-19.224000px;}
.ws29{word-spacing:-19.215600px;}
.ws17{word-spacing:-19.080000px;}
.ws28{word-spacing:-19.071600px;}
.wsc{word-spacing:-19.021800px;}
.wsd{word-spacing:-19.005600px;}
.ws40{word-spacing:-18.864000px;}
.ws10{word-spacing:-18.720000px;}
.ws3e{word-spacing:-18.576000px;}
.ws33{word-spacing:-16.980000px;}
.ws31{word-spacing:-16.660800px;}
.ws24{word-spacing:-1.716240px;}
.ws2{word-spacing:-0.494880px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:70.242480px;}
.wsb{word-spacing:70.254480px;}
.ws4{word-spacing:72.879120px;}
.ws9{word-spacing:73.118592px;}
.ws1d{word-spacing:594.444000px;}
.ws2f{word-spacing:798.407040px;}
.ws2b{word-spacing:1452.789600px;}
.ws36{word-spacing:1507.687440px;}
.ws2a{word-spacing:1892.857920px;}
.ws2d{word-spacing:1999.242960px;}
.ws2e{word-spacing:2166.881280px;}
.ws37{word-spacing:2308.278840px;}
.ws35{word-spacing:2347.458144px;}
.ws30{word-spacing:2347.509840px;}
._4{margin-left:-3.052800px;}
._2{margin-left:-1.202400px;}
._0{width:1.202400px;}
._3{width:2.853600px;}
._6{width:3.895920px;}
._9{width:765.117360px;}
._a{width:956.056320px;}
._7{width:1012.727040px;}
._b{width:1023.605760px;}
._5{width:1274.877120px;}
._8{width:1394.255040px;}
._1{width:3488.424000px;}
.fca{color:rgb(0,0,140);}
.fc9{color:rgb(0,105,180);}
.fc8{color:rgb(33,118,125);}
.fc7{color:rgb(192,0,0);}
.fc6{color:rgb(203,35,68);}
.fc5{color:transparent;}
.fcb{color:rgb(0,48,93);}
.fc3{color:rgb(0,1,87);}
.fc4{color:rgb(154,197,251);}
.fc1{color:rgb(0,4,136);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs15{font-size:64.080000px;}
.fsc{font-size:67.680000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:72.720000px;}
.fs14{font-size:74.880000px;}
.fs17{font-size:79.920000px;}
.fsf{font-size:81.360000px;}
.fs1b{font-size:84.240000px;}
.fs1c{font-size:84.384000px;}
.fs7{font-size:95.760000px;}
.fs6{font-size:95.904000px;}
.fsa{font-size:108.000000px;}
.fsb{font-size:108.144000px;}
.fs12{font-size:108.720000px;}
.fs13{font-size:108.864000px;}
.fs1{font-size:120.240000px;}
.fs3{font-size:120.384000px;}
.fs8{font-size:121.104000px;}
.fs16{font-size:131.760000px;}
.fsd{font-size:136.080000px;}
.fse{font-size:136.224000px;}
.fs11{font-size:144.000000px;}
.fs10{font-size:144.144000px;}
.fs4{font-size:192.240000px;}
.fs19{font-size:216.000000px;}
.fs18{font-size:216.144000px;}
.fs9{font-size:217.440000px;}
.fs0{font-size:264.240000px;}
.fs1a{font-size:264.384000px;}
.y0{bottom:0.000000px;}
.y3{bottom:24.876000px;}
.y95{bottom:94.824000px;}
.yb4{bottom:103.176000px;}
.y9d{bottom:107.352000px;}
.y8d{bottom:109.908000px;}
.y4f{bottom:111.924000px;}
.y94{bottom:116.424000px;}
.y23{bottom:127.404000px;}
.y6a{bottom:131.400000px;}
.yb0{bottom:138.348000px;}
.yb2{bottom:140.688000px;}
.y8c{bottom:143.712000px;}
.y69{bottom:155.880000px;}
.y8b{bottom:176.070000px;}
.y68{bottom:180.360000px;}
.y4e{bottom:180.900000px;}
.y40{bottom:188.025000px;}
.y22{bottom:192.600000px;}
.y14{bottom:196.920000px;}
.y16{bottom:206.025000px;}
.y3f{bottom:208.365000px;}
.y8a{bottom:208.410000px;}
.y4d{bottom:221.580000px;}
.y57{bottom:228.135000px;}
.y3e{bottom:230.760000px;}
.y13{bottom:232.950000px;}
.y67{bottom:239.250000px;}
.y89{bottom:240.735000px;}
.y53{bottom:248.145000px;}
.y21{bottom:257.940000px;}
.y4c{bottom:262.440000px;}
.y12{bottom:268.950000px;}
.y56{bottom:271.335000px;}
.y66{bottom:272.010000px;}
.y88{bottom:273.060000px;}
.ya3{bottom:279.390000px;}
.yb3{bottom:285.375000px;}
.y3d{bottom:287.130000px;}
.y18{bottom:287.205000px;}
.y52{bottom:291.390000px;}
.ybb{bottom:299.370000px;}
.y2f{bottom:302.550000px;}
.y4b{bottom:303.330000px;}
.y65{bottom:304.590000px;}
.y11{bottom:304.950000px;}
.y87{bottom:305.385000px;}
.y3c{bottom:319.530000px;}
.yba{bottom:324.570000px;}
.y17{bottom:331.380000px;}
.yad{bottom:331.770000px;}
.y2e{bottom:334.950000px;}
.y64{bottom:337.350000px;}
.y86{bottom:337.710000px;}
.y10{bottom:340.950000px;}
.y75{bottom:341.850000px;}
.y9c{bottom:342.795000px;}
.y4a{bottom:344.190000px;}
.yb9{bottom:349.770000px;}
.y3b{bottom:351.930000px;}
.yac{bottom:357.015000px;}
.ya2{bottom:358.635000px;}
.y2d{bottom:367.380000px;}
.y63{bottom:369.975000px;}
.y85{bottom:370.050000px;}
.yb8{bottom:375.015000px;}
.yf{bottom:376.950000px;}
.yab{bottom:382.215000px;}
.y3a{bottom:384.330000px;}
.y49{bottom:385.050000px;}
.yc2{bottom:385.815000px;}
.y93{bottom:392.295000px;}
.y84{bottom:402.375000px;}
.y62{bottom:402.555000px;}
.y9b{bottom:407.595000px;}
.y6b{bottom:409.035000px;}
.yc1{bottom:411.015000px;}
.yae{bottom:412.305000px;}
.ye{bottom:412.995000px;}
.y92{bottom:413.895000px;}
.y39{bottom:416.730000px;}
.y7a{bottom:424.800000px;}
.yb7{bottom:425.415000px;}
.y48{bottom:425.730000px;}
.y2c{bottom:432.180000px;}
.y61{bottom:435.315000px;}
.yc0{bottom:436.215000px;}
.ya1{bottom:437.835000px;}
.y74{bottom:438.555000px;}
.y83{bottom:439.770000px;}
.yaf{bottom:444.600000px;}
.yd{bottom:448.995000px;}
.y38{bottom:449.175000px;}
.yb6{bottom:450.615000px;}
.y79{bottom:460.800000px;}
.ybf{bottom:461.415000px;}
.yaa{bottom:463.215000px;}
.y2b{bottom:464.580000px;}
.y47{bottom:466.635000px;}
.y60{bottom:467.895000px;}
.y82{bottom:468.570000px;}
.y9a{bottom:472.395000px;}
.y73{bottom:474.555000px;}
.yb5{bottom:475.815000px;}
.y55{bottom:480.990000px;}
.y37{bottom:481.575000px;}
.yc{bottom:484.995000px;}
.y91{bottom:496.800000px;}
.y2a{bottom:496.980000px;}
.y81{bottom:497.370000px;}
.y5f{bottom:500.655000px;}
.y51{bottom:502.230000px;}
.ya9{bottom:506.415000px;}
.y46{bottom:507.495000px;}
.y72{bottom:510.555000px;}
.ybe{bottom:511.815000px;}
.y36{bottom:513.975000px;}
.ya0{bottom:517.065000px;}
.yb{bottom:520.995000px;}
.y54{bottom:524.190000px;}
.yb1{bottom:524.910000px;}
.y80{bottom:529.710000px;}
.y90{bottom:532.800000px;}
.y5e{bottom:533.265000px;}
.ybd{bottom:537.045000px;}
.y99{bottom:537.225000px;}
.y1d{bottom:545.400000px;}
.y50{bottom:545.475000px;}
.y71{bottom:546.585000px;}
.y1b{bottom:546.660000px;}
.y45{bottom:548.355000px;}
.ya8{bottom:549.645000px;}
.ya{bottom:556.995000px;}
.y29{bottom:561.810000px;}
.ybc{bottom:562.245000px;}
.y5d{bottom:566.025000px;}
.y7f{bottom:566.310000px;}
.y8f{bottom:568.830000px;}
.y1c{bottom:574.200000px;}
.y1a{bottom:575.460000px;}
.y35{bottom:578.775000px;}
.y70{bottom:582.585000px;}
.y44{bottom:589.215000px;}
.ya7{bottom:592.845000px;}
.y9{bottom:593.025000px;}
.y28{bottom:594.210000px;}
.y9f{bottom:596.265000px;}
.y5c{bottom:598.605000px;}
.y7e{bottom:598.650000px;}
.y98{bottom:602.025000px;}
.y78{bottom:604.830000px;}
.y2{bottom:605.880000px;}
.y34{bottom:611.175000px;}
.y6f{bottom:618.585000px;}
.y27{bottom:626.610000px;}
.y8{bottom:629.025000px;}
.y43{bottom:629.895000px;}
.y5b{bottom:631.185000px;}
.y7d{bottom:633.495000px;}
.ya6{bottom:636.045000px;}
.y33{bottom:643.605000px;}
.y77{bottom:650.190000px;}
.y19{bottom:651.420000px;}
.y6e{bottom:654.585000px;}
.y26{bottom:659.010000px;}
.y7c{bottom:662.295000px;}
.y5a{bottom:663.945000px;}
.y7{bottom:665.025000px;}
.y97{bottom:666.870000px;}
.y42{bottom:670.785000px;}
.y9e{bottom:675.510000px;}
.y32{bottom:676.005000px;}
.ya5{bottom:679.245000px;}
.y8e{bottom:686.190000px;}
.y6d{bottom:690.630000px;}
.y25{bottom:691.410000px;}
.y7b{bottom:694.620000px;}
.y59{bottom:696.570000px;}
.y6{bottom:701.025000px;}
.y31{bottom:708.405000px;}
.y41{bottom:711.645000px;}
.y76{bottom:720.030000px;}
.ya4{bottom:722.490000px;}
.y6c{bottom:726.630000px;}
.y58{bottom:729.330000px;}
.y20{bottom:736.305000px;}
.y30{bottom:740.805000px;}
.y1f{bottom:757.905000px;}
.y5{bottom:773.070000px;}
.y1e{bottom:779.505000px;}
.y4{bottom:809.070000px;}
.y1{bottom:815.610000px;}
.y24{bottom:818.355000px;}
.y15{bottom:1007.100000px;}
.y96{bottom:1111.140000px;}
.h15{height:57.798984px;}
.h14{height:61.488281px;}
.h4{height:65.376000px;}
.h8{height:66.029760px;}
.h2e{height:69.481758px;}
.h30{height:71.941289px;}
.h31{height:72.064266px;}
.h25{height:73.269492px;}
.h1b{height:73.874880px;}
.h2c{height:76.489920px;}
.h2d{height:76.620672px;}
.ha{height:81.779414px;}
.h9{height:81.902391px;}
.h13{height:82.634766px;}
.hc{height:86.854320px;}
.h2f{height:91.983600px;}
.h11{height:92.232422px;}
.h12{height:92.355398px;}
.hf{height:98.064000px;}
.h10{height:98.194752px;}
.h20{height:98.717760px;}
.h21{height:98.848512px;}
.h22{height:102.685430px;}
.h23{height:102.808406px;}
.h5{height:106.773120px;}
.h6{height:106.900992px;}
.h3{height:109.177920px;}
.h27{height:109.308672px;}
.hb{height:109.962432px;}
.h1a{height:123.424560px;}
.h19{height:123.555168px;}
.h17{height:123.560640px;}
.h18{height:123.691392px;}
.h1d{height:130.752000px;}
.h1c{height:130.882752px;}
.h16{height:147.063600px;}
.hd{height:166.371328px;}
.h7{height:174.553920px;}
.he{height:185.694609px;}
.h29{height:196.560000px;}
.h28{height:196.691040px;}
.h26{height:203.464800px;}
.h1e{height:218.592000px;}
.h1f{height:223.512000px;}
.h24{height:234.645120px;}
.h2{height:239.929920px;}
.h2b{height:240.458400px;}
.h2a{height:240.589440px;}
.h1{height:918.000000px;}
.h0{height:918.360000px;}
.w1{width:1632.750000px;}
.w2{width:1632.779976px;}
.w0{width:1632.780000px;}
.x5{left:-1673.490024px;}
.x8{left:-1664.715024px;}
.x6{left:-1543.530024px;}
.x7{left:-1535.610024px;}
.x9{left:-1442.130024px;}
.xa{left:-1411.170024px;}
.xc{left:-1021.785024px;}
.xb{left:-980.385024px;}
.x10{left:-629.670024px;}
.x11{left:-608.430024px;}
.x12{left:-535.755024px;}
.x13{left:-508.215024px;}
.x0{left:0.000000px;}
.x1{left:31.931976px;}
.x4{left:34.127976px;}
.x2{left:37.043976px;}
.x20{left:41.183976px;}
.x2d{left:65.267976px;}
.x2f{left:83.087976px;}
.x2e{left:87.407976px;}
.x2b{left:91.007976px;}
.x22{left:105.407976px;}
.x2c{left:142.667976px;}
.x3{left:191.159976px;}
.x25{left:194.189976px;}
.x27{left:195.944976px;}
.x30{left:197.744976px;}
.x18{left:203.579976px;}
.x21{left:204.629976px;}
.x19{left:224.819976px;}
.x26{left:236.129976px;}
.x24{left:256.469976px;}
.x2a{left:281.309976px;}
.x31{left:284.909976px;}
.x1c{left:297.509976px;}
.x1d{left:325.049976px;}
.x32{left:480.989976px;}
.x34{left:496.289976px;}
.x1b{left:502.094976px;}
.x1a{left:569.234976px;}
.x28{left:652.859976px;}
.x1f{left:697.469976px;}
.x1e{left:726.089976px;}
.x29{left:802.649976px;}
.xd{left:819.539976px;}
.x23{left:842.609976px;}
.x33{left:903.629976px;}
.xf{left:1193.249976px;}
.x36{left:1246.244976px;}
.xe{left:1272.809976px;}
.x35{left:1507.499976px;}
.x14{left:1866.809976px;}
.x15{left:1933.994976px;}
.x16{left:2062.184976px;}
.x17{left:2090.804976px;}
@media print{
.v8{vertical-align:-58.240000pt;}
.v7{vertical-align:-32.000000pt;}
.v4{vertical-align:-9.600000pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:9.600000pt;}
.v6{vertical-align:32.000000pt;}
.v2{vertical-align:78.080000pt;}
.v3{vertical-align:82.453333pt;}
.lsb{letter-spacing:-31.040000pt;}
.ls6{letter-spacing:-30.933333pt;}
.ls7{letter-spacing:-30.080000pt;}
.ls35{letter-spacing:-0.408533pt;}
.ls2e{letter-spacing:-0.403200pt;}
.ls1f{letter-spacing:-0.341867pt;}
.ls1c{letter-spacing:-0.335467pt;}
.ls2c{letter-spacing:-0.314133pt;}
.ls2b{letter-spacing:-0.285867pt;}
.ls18{letter-spacing:-0.272000pt;}
.lsa{letter-spacing:-0.227733pt;}
.ls5{letter-spacing:-0.226133pt;}
.ls12{letter-spacing:-0.197867pt;}
.ls33{letter-spacing:-0.195200pt;}
.ls15{letter-spacing:-0.194667pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.190933pt;}
.ls9{letter-spacing:-0.182400pt;}
.ls1b{letter-spacing:-0.181867pt;}
.ls20{letter-spacing:-0.181333pt;}
.ls31{letter-spacing:-0.162133pt;}
.ls2a{letter-spacing:-0.149867pt;}
.ls30{letter-spacing:-0.142933pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.021013pt;}
.ls0{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.016907pt;}
.ls3b{letter-spacing:0.048640pt;}
.ls1d{letter-spacing:0.050560pt;}
.ls29{letter-spacing:0.058880pt;}
.ls3d{letter-spacing:0.060267pt;}
.ls38{letter-spacing:0.064000pt;}
.ls2d{letter-spacing:0.073067pt;}
.ls10{letter-spacing:0.087467pt;}
.ls1e{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.099200pt;}
.lsf{letter-spacing:0.101867pt;}
.ls26{letter-spacing:0.111360pt;}
.lsc{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.134933pt;}
.lsd{letter-spacing:0.138133pt;}
.ls25{letter-spacing:0.146133pt;}
.lse{letter-spacing:0.152533pt;}
.ls8{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.170667pt;}
.ls1{letter-spacing:0.182400pt;}
.ls3c{letter-spacing:0.208640pt;}
.ls1a{letter-spacing:0.233067pt;}
.ls34{letter-spacing:0.239467pt;}
.ls2f{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.274133pt;}
.ls28{letter-spacing:0.283733pt;}
.ls3a{letter-spacing:0.296533pt;}
.ls24{letter-spacing:0.305920pt;}
.ls36{letter-spacing:0.309867pt;}
.ls13{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.325867pt;}
.ls3{letter-spacing:0.371200pt;}
.ls37{letter-spacing:0.448000pt;}
.ls39{letter-spacing:0.640000pt;}
.ls17{letter-spacing:1.113600pt;}
.ls16{letter-spacing:866.453333pt;}
.ws42{word-spacing:-61.398613pt;}
.ws27{word-spacing:-61.203733pt;}
.ws41{word-spacing:-61.102080pt;}
.ws11{word-spacing:-50.252800pt;}
.ws12{word-spacing:-44.428800pt;}
.ws1c{word-spacing:-33.313280pt;}
.ws1b{word-spacing:-33.280000pt;}
.ws18{word-spacing:-31.461867pt;}
.ws1a{word-spacing:-31.449600pt;}
.ws19{word-spacing:-31.288213pt;}
.ws38{word-spacing:-30.451200pt;}
.ws3c{word-spacing:-28.098667pt;}
.ws3a{word-spacing:-28.061547pt;}
.wse{word-spacing:-27.988480pt;}
.ws5{word-spacing:-27.971200pt;}
.wsa{word-spacing:-27.926933pt;}
.ws25{word-spacing:-27.883733pt;}
.ws39{word-spacing:-27.822080pt;}
.ws3{word-spacing:-27.788800pt;}
.ws7{word-spacing:-27.606400pt;}
.ws8{word-spacing:-27.594347pt;}
.ws1{word-spacing:-27.562667pt;}
.ws23{word-spacing:-27.453333pt;}
.ws26{word-spacing:-27.446933pt;}
.ws3b{word-spacing:-27.413547pt;}
.ws1e{word-spacing:-25.126400pt;}
.ws16{word-spacing:-24.993280pt;}
.ws13{word-spacing:-24.960000pt;}
.ws14{word-spacing:-24.802347pt;}
.ws15{word-spacing:-24.795413pt;}
.ws32{word-spacing:-22.457067pt;}
.wsf{word-spacing:-22.131200pt;}
.ws2c{word-spacing:-21.981333pt;}
.ws34{word-spacing:-21.817067pt;}
.ws43{word-spacing:-19.562347pt;}
.ws44{word-spacing:-19.502080pt;}
.ws45{word-spacing:-19.468800pt;}
.ws20{word-spacing:-19.036267pt;}
.ws1f{word-spacing:-18.973867pt;}
.ws21{word-spacing:-18.803200pt;}
.ws3d{word-spacing:-18.470400pt;}
.ws22{word-spacing:-17.305600pt;}
.ws3f{word-spacing:-17.088000pt;}
.ws29{word-spacing:-17.080533pt;}
.ws17{word-spacing:-16.960000pt;}
.ws28{word-spacing:-16.952533pt;}
.wsc{word-spacing:-16.908267pt;}
.wsd{word-spacing:-16.893867pt;}
.ws40{word-spacing:-16.768000pt;}
.ws10{word-spacing:-16.640000pt;}
.ws3e{word-spacing:-16.512000pt;}
.ws33{word-spacing:-15.093333pt;}
.ws31{word-spacing:-14.809600pt;}
.ws24{word-spacing:-1.525547pt;}
.ws2{word-spacing:-0.439893pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:62.437760pt;}
.wsb{word-spacing:62.448427pt;}
.ws4{word-spacing:64.781440pt;}
.ws9{word-spacing:64.994304pt;}
.ws1d{word-spacing:528.394667pt;}
.ws2f{word-spacing:709.695147pt;}
.ws2b{word-spacing:1291.368533pt;}
.ws36{word-spacing:1340.166613pt;}
.ws2a{word-spacing:1682.540373pt;}
.ws2d{word-spacing:1777.104853pt;}
.ws2e{word-spacing:1926.116693pt;}
.ws37{word-spacing:2051.803413pt;}
.ws35{word-spacing:2086.629461pt;}
.ws30{word-spacing:2086.675413pt;}
._4{margin-left:-2.713600pt;}
._2{margin-left:-1.068800pt;}
._0{width:1.068800pt;}
._3{width:2.536533pt;}
._6{width:3.463040pt;}
._9{width:680.104320pt;}
._a{width:849.827840pt;}
._7{width:900.201813pt;}
._b{width:909.871787pt;}
._5{width:1133.224107pt;}
._8{width:1239.337813pt;}
._1{width:3100.821333pt;}
.fs15{font-size:56.960000pt;}
.fsc{font-size:60.160000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:64.640000pt;}
.fs14{font-size:66.560000pt;}
.fs17{font-size:71.040000pt;}
.fsf{font-size:72.320000pt;}
.fs1b{font-size:74.880000pt;}
.fs1c{font-size:75.008000pt;}
.fs7{font-size:85.120000pt;}
.fs6{font-size:85.248000pt;}
.fsa{font-size:96.000000pt;}
.fsb{font-size:96.128000pt;}
.fs12{font-size:96.640000pt;}
.fs13{font-size:96.768000pt;}
.fs1{font-size:106.880000pt;}
.fs3{font-size:107.008000pt;}
.fs8{font-size:107.648000pt;}
.fs16{font-size:117.120000pt;}
.fsd{font-size:120.960000pt;}
.fse{font-size:121.088000pt;}
.fs11{font-size:128.000000pt;}
.fs10{font-size:128.128000pt;}
.fs4{font-size:170.880000pt;}
.fs19{font-size:192.000000pt;}
.fs18{font-size:192.128000pt;}
.fs9{font-size:193.280000pt;}
.fs0{font-size:234.880000pt;}
.fs1a{font-size:235.008000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:22.112000pt;}
.y95{bottom:84.288000pt;}
.yb4{bottom:91.712000pt;}
.y9d{bottom:95.424000pt;}
.y8d{bottom:97.696000pt;}
.y4f{bottom:99.488000pt;}
.y94{bottom:103.488000pt;}
.y23{bottom:113.248000pt;}
.y6a{bottom:116.800000pt;}
.yb0{bottom:122.976000pt;}
.yb2{bottom:125.056000pt;}
.y8c{bottom:127.744000pt;}
.y69{bottom:138.560000pt;}
.y8b{bottom:156.506667pt;}
.y68{bottom:160.320000pt;}
.y4e{bottom:160.800000pt;}
.y40{bottom:167.133333pt;}
.y22{bottom:171.200000pt;}
.y14{bottom:175.040000pt;}
.y16{bottom:183.133333pt;}
.y3f{bottom:185.213333pt;}
.y8a{bottom:185.253333pt;}
.y4d{bottom:196.960000pt;}
.y57{bottom:202.786667pt;}
.y3e{bottom:205.120000pt;}
.y13{bottom:207.066667pt;}
.y67{bottom:212.666667pt;}
.y89{bottom:213.986667pt;}
.y53{bottom:220.573333pt;}
.y21{bottom:229.280000pt;}
.y4c{bottom:233.280000pt;}
.y12{bottom:239.066667pt;}
.y56{bottom:241.186667pt;}
.y66{bottom:241.786667pt;}
.y88{bottom:242.720000pt;}
.ya3{bottom:248.346667pt;}
.yb3{bottom:253.666667pt;}
.y3d{bottom:255.226667pt;}
.y18{bottom:255.293333pt;}
.y52{bottom:259.013333pt;}
.ybb{bottom:266.106667pt;}
.y2f{bottom:268.933333pt;}
.y4b{bottom:269.626667pt;}
.y65{bottom:270.746667pt;}
.y11{bottom:271.066667pt;}
.y87{bottom:271.453333pt;}
.y3c{bottom:284.026667pt;}
.yba{bottom:288.506667pt;}
.y17{bottom:294.560000pt;}
.yad{bottom:294.906667pt;}
.y2e{bottom:297.733333pt;}
.y64{bottom:299.866667pt;}
.y86{bottom:300.186667pt;}
.y10{bottom:303.066667pt;}
.y75{bottom:303.866667pt;}
.y9c{bottom:304.706667pt;}
.y4a{bottom:305.946667pt;}
.yb9{bottom:310.906667pt;}
.y3b{bottom:312.826667pt;}
.yac{bottom:317.346667pt;}
.ya2{bottom:318.786667pt;}
.y2d{bottom:326.560000pt;}
.y63{bottom:328.866667pt;}
.y85{bottom:328.933333pt;}
.yb8{bottom:333.346667pt;}
.yf{bottom:335.066667pt;}
.yab{bottom:339.746667pt;}
.y3a{bottom:341.626667pt;}
.y49{bottom:342.266667pt;}
.yc2{bottom:342.946667pt;}
.y93{bottom:348.706667pt;}
.y84{bottom:357.666667pt;}
.y62{bottom:357.826667pt;}
.y9b{bottom:362.306667pt;}
.y6b{bottom:363.586667pt;}
.yc1{bottom:365.346667pt;}
.yae{bottom:366.493333pt;}
.ye{bottom:367.106667pt;}
.y92{bottom:367.906667pt;}
.y39{bottom:370.426667pt;}
.y7a{bottom:377.600000pt;}
.yb7{bottom:378.146667pt;}
.y48{bottom:378.426667pt;}
.y2c{bottom:384.160000pt;}
.y61{bottom:386.946667pt;}
.yc0{bottom:387.746667pt;}
.ya1{bottom:389.186667pt;}
.y74{bottom:389.826667pt;}
.y83{bottom:390.906667pt;}
.yaf{bottom:395.200000pt;}
.yd{bottom:399.106667pt;}
.y38{bottom:399.266667pt;}
.yb6{bottom:400.546667pt;}
.y79{bottom:409.600000pt;}
.ybf{bottom:410.146667pt;}
.yaa{bottom:411.746667pt;}
.y2b{bottom:412.960000pt;}
.y47{bottom:414.786667pt;}
.y60{bottom:415.906667pt;}
.y82{bottom:416.506667pt;}
.y9a{bottom:419.906667pt;}
.y73{bottom:421.826667pt;}
.yb5{bottom:422.946667pt;}
.y55{bottom:427.546667pt;}
.y37{bottom:428.066667pt;}
.yc{bottom:431.106667pt;}
.y91{bottom:441.600000pt;}
.y2a{bottom:441.760000pt;}
.y81{bottom:442.106667pt;}
.y5f{bottom:445.026667pt;}
.y51{bottom:446.426667pt;}
.ya9{bottom:450.146667pt;}
.y46{bottom:451.106667pt;}
.y72{bottom:453.826667pt;}
.ybe{bottom:454.946667pt;}
.y36{bottom:456.866667pt;}
.ya0{bottom:459.613333pt;}
.yb{bottom:463.106667pt;}
.y54{bottom:465.946667pt;}
.yb1{bottom:466.586667pt;}
.y80{bottom:470.853333pt;}
.y90{bottom:473.600000pt;}
.y5e{bottom:474.013333pt;}
.ybd{bottom:477.373333pt;}
.y99{bottom:477.533333pt;}
.y1d{bottom:484.800000pt;}
.y50{bottom:484.866667pt;}
.y71{bottom:485.853333pt;}
.y1b{bottom:485.920000pt;}
.y45{bottom:487.426667pt;}
.ya8{bottom:488.573333pt;}
.ya{bottom:495.106667pt;}
.y29{bottom:499.386667pt;}
.ybc{bottom:499.773333pt;}
.y5d{bottom:503.133333pt;}
.y7f{bottom:503.386667pt;}
.y8f{bottom:505.626667pt;}
.y1c{bottom:510.400000pt;}
.y1a{bottom:511.520000pt;}
.y35{bottom:514.466667pt;}
.y70{bottom:517.853333pt;}
.y44{bottom:523.746667pt;}
.ya7{bottom:526.973333pt;}
.y9{bottom:527.133333pt;}
.y28{bottom:528.186667pt;}
.y9f{bottom:530.013333pt;}
.y5c{bottom:532.093333pt;}
.y7e{bottom:532.133333pt;}
.y98{bottom:535.133333pt;}
.y78{bottom:537.626667pt;}
.y2{bottom:538.560000pt;}
.y34{bottom:543.266667pt;}
.y6f{bottom:549.853333pt;}
.y27{bottom:556.986667pt;}
.y8{bottom:559.133333pt;}
.y43{bottom:559.906667pt;}
.y5b{bottom:561.053333pt;}
.y7d{bottom:563.106667pt;}
.ya6{bottom:565.373333pt;}
.y33{bottom:572.093333pt;}
.y77{bottom:577.946667pt;}
.y19{bottom:579.040000pt;}
.y6e{bottom:581.853333pt;}
.y26{bottom:585.786667pt;}
.y7c{bottom:588.706667pt;}
.y5a{bottom:590.173333pt;}
.y7{bottom:591.133333pt;}
.y97{bottom:592.773333pt;}
.y42{bottom:596.253333pt;}
.y9e{bottom:600.453333pt;}
.y32{bottom:600.893333pt;}
.ya5{bottom:603.773333pt;}
.y8e{bottom:609.946667pt;}
.y6d{bottom:613.893333pt;}
.y25{bottom:614.586667pt;}
.y7b{bottom:617.440000pt;}
.y59{bottom:619.173333pt;}
.y6{bottom:623.133333pt;}
.y31{bottom:629.693333pt;}
.y41{bottom:632.573333pt;}
.y76{bottom:640.026667pt;}
.ya4{bottom:642.213333pt;}
.y6c{bottom:645.893333pt;}
.y58{bottom:648.293333pt;}
.y20{bottom:654.493333pt;}
.y30{bottom:658.493333pt;}
.y1f{bottom:673.693333pt;}
.y5{bottom:687.173333pt;}
.y1e{bottom:692.893333pt;}
.y4{bottom:719.173333pt;}
.y1{bottom:724.986667pt;}
.y24{bottom:727.426667pt;}
.y15{bottom:895.200000pt;}
.y96{bottom:987.680000pt;}
.h15{height:51.376875pt;}
.h14{height:54.656250pt;}
.h4{height:58.112000pt;}
.h8{height:58.693120pt;}
.h2e{height:61.761562pt;}
.h30{height:63.947812pt;}
.h31{height:64.057125pt;}
.h25{height:65.128438pt;}
.h1b{height:65.666560pt;}
.h2c{height:67.991040pt;}
.h2d{height:68.107264pt;}
.ha{height:72.692813pt;}
.h9{height:72.802125pt;}
.h13{height:73.453125pt;}
.hc{height:77.203840pt;}
.h2f{height:81.763200pt;}
.h11{height:81.984375pt;}
.h12{height:82.093688pt;}
.hf{height:87.168000pt;}
.h10{height:87.284224pt;}
.h20{height:87.749120pt;}
.h21{height:87.865344pt;}
.h22{height:91.275937pt;}
.h23{height:91.385250pt;}
.h5{height:94.909440pt;}
.h6{height:95.023104pt;}
.h3{height:97.047040pt;}
.h27{height:97.163264pt;}
.hb{height:97.744384pt;}
.h1a{height:109.710720pt;}
.h19{height:109.826816pt;}
.h17{height:109.831680pt;}
.h18{height:109.947904pt;}
.h1d{height:116.224000pt;}
.h1c{height:116.340224pt;}
.h16{height:130.723200pt;}
.hd{height:147.885625pt;}
.h7{height:155.159040pt;}
.he{height:165.061875pt;}
.h29{height:174.720000pt;}
.h28{height:174.836480pt;}
.h26{height:180.857600pt;}
.h1e{height:194.304000pt;}
.h1f{height:198.677333pt;}
.h24{height:208.573440pt;}
.h2{height:213.271040pt;}
.h2b{height:213.740800pt;}
.h2a{height:213.857280pt;}
.h1{height:816.000000pt;}
.h0{height:816.320000pt;}
.w1{width:1451.333333pt;}
.w2{width:1451.359978pt;}
.w0{width:1451.360000pt;}
.x5{left:-1487.546688pt;}
.x8{left:-1479.746688pt;}
.x6{left:-1372.026688pt;}
.x7{left:-1364.986688pt;}
.x9{left:-1281.893355pt;}
.xa{left:-1254.373355pt;}
.xc{left:-908.253355pt;}
.xb{left:-871.453355pt;}
.x10{left:-559.706688pt;}
.x11{left:-540.826688pt;}
.x12{left:-476.226688pt;}
.x13{left:-451.746688pt;}
.x0{left:0.000000pt;}
.x1{left:28.383978pt;}
.x4{left:30.335978pt;}
.x2{left:32.927978pt;}
.x20{left:36.607978pt;}
.x2d{left:58.015978pt;}
.x2f{left:73.855978pt;}
.x2e{left:77.695978pt;}
.x2b{left:80.895978pt;}
.x22{left:93.695978pt;}
.x2c{left:126.815978pt;}
.x3{left:169.919978pt;}
.x25{left:172.613312pt;}
.x27{left:174.173312pt;}
.x30{left:175.773312pt;}
.x18{left:180.959978pt;}
.x21{left:181.893312pt;}
.x19{left:199.839978pt;}
.x26{left:209.893312pt;}
.x24{left:227.973312pt;}
.x2a{left:250.053312pt;}
.x31{left:253.253312pt;}
.x1c{left:264.453312pt;}
.x1d{left:288.933312pt;}
.x32{left:427.546645pt;}
.x34{left:441.146645pt;}
.x1b{left:446.306645pt;}
.x1a{left:505.986645pt;}
.x28{left:580.319978pt;}
.x1f{left:619.973312pt;}
.x1e{left:645.413312pt;}
.x29{left:713.466645pt;}
.xd{left:728.479978pt;}
.x23{left:748.986645pt;}
.x33{left:803.226645pt;}
.xf{left:1060.666645pt;}
.x36{left:1107.773312pt;}
.xe{left:1131.386645pt;}
.x35{left:1339.999978pt;}
.x14{left:1659.386645pt;}
.x15{left:1719.106645pt;}
.x16{left:1833.053312pt;}
.x17{left:1858.493312pt;}
}




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