
    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_61613f6450e675883e8b2eab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.114258;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_688ad5b8adf7522e7a4c30c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.762000;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_856aaf49a4af07cc887ebdbe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.744000;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_eef97fbc2ffdf9ca9410e8b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_5e0c0df000fe7aa12c6a1124.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_7c44071e3e4ef108998698eb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_8a37605bdd8dd4cbe253688e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_0d5e218d9ca258aeac6a138f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901855;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_8bf58c8f125a4ae8a3144a5d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8eda340cadeb62220ec57e0d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.705078;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_8e1d1fb7fc5ea1cd06d12d68.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.918457;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_9db9201b7615cee168ddefad.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.715000;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_7a6502d05c5f9d65b24c7fcb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.039551;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.v0{vertical-align:0.000000px;}
.ls46{letter-spacing:-13.320000px;}
.ls43{letter-spacing:-10.845000px;}
.ls58{letter-spacing:-10.530000px;}
.ls48{letter-spacing:-10.440000px;}
.ls41{letter-spacing:-10.080000px;}
.ls56{letter-spacing:-9.990000px;}
.ls57{letter-spacing:-9.720000px;}
.ls44{letter-spacing:-9.180000px;}
.ls49{letter-spacing:-8.775000px;}
.ls45{letter-spacing:-4.995000px;}
.ls8{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000600px;}
.ls39{letter-spacing:0.007200px;}
.ls38{letter-spacing:0.007800px;}
.ls3a{letter-spacing:0.009000px;}
.ls52{letter-spacing:0.009600px;}
.ls31{letter-spacing:0.010200px;}
.ls4f{letter-spacing:0.045000px;}
.ls9{letter-spacing:0.048000px;}
.ls4e{letter-spacing:0.049800px;}
.ls10{letter-spacing:0.060000px;}
.lsb{letter-spacing:0.066000px;}
.ls47{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.132000px;}
.ls6{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.192000px;}
.ls14{letter-spacing:0.198000px;}
.ls54{letter-spacing:0.225000px;}
.ls55{letter-spacing:0.239400px;}
.ls1e{letter-spacing:0.240000px;}
.ls53{letter-spacing:0.241800px;}
.ls13{letter-spacing:0.264000px;}
.ls1d{letter-spacing:0.300000px;}
.ls22{letter-spacing:0.311400px;}
.lsf{letter-spacing:0.330000px;}
.ls7{letter-spacing:0.336000px;}
.ls35{letter-spacing:0.336600px;}
.ls36{letter-spacing:0.339600px;}
.ls37{letter-spacing:0.360000px;}
.ls3c{letter-spacing:0.367800px;}
.ls3d{letter-spacing:0.387000px;}
.lse{letter-spacing:0.396000px;}
.ls3e{letter-spacing:0.405000px;}
.ls2b{letter-spacing:0.420000px;}
.ls2{letter-spacing:0.462000px;}
.ls4d{letter-spacing:0.480000px;}
.lsc{letter-spacing:0.528000px;}
.ls21{letter-spacing:0.540000px;}
.ls3b{letter-spacing:0.582600px;}
.ls33{letter-spacing:0.585000px;}
.ls23{letter-spacing:0.594000px;}
.ls32{letter-spacing:0.599400px;}
.ls34{letter-spacing:0.600000px;}
.ls1f{letter-spacing:0.660000px;}
.ls51{letter-spacing:0.720000px;}
.ls50{letter-spacing:0.722400px;}
.ls19{letter-spacing:0.726000px;}
.ls2e{letter-spacing:0.765000px;}
.ls30{letter-spacing:0.774000px;}
.ls2d{letter-spacing:0.775800px;}
.ls2f{letter-spacing:0.780000px;}
.ls1a{letter-spacing:0.792000px;}
.ls40{letter-spacing:0.810000px;}
.ls3f{letter-spacing:0.819000px;}
.ls4b{letter-spacing:0.840000px;}
.ls20{letter-spacing:0.858000px;}
.ls2a{letter-spacing:0.900000px;}
.ls25{letter-spacing:0.924000px;}
.ls26{letter-spacing:0.949200px;}
.lsd{letter-spacing:0.990000px;}
.ls16{letter-spacing:1.056000px;}
.ls15{letter-spacing:1.122000px;}
.ls17{letter-spacing:1.188000px;}
.ls3{letter-spacing:1.218000px;}
.ls12{letter-spacing:1.254000px;}
.ls1c{letter-spacing:1.386000px;}
.ls11{letter-spacing:1.650000px;}
.ls24{letter-spacing:1.848000px;}
.ls27{letter-spacing:1.980000px;}
.ls28{letter-spacing:2.046000px;}
.ls2c{letter-spacing:2.772000px;}
.ls4a{letter-spacing:7.920000px;}
.ls42{letter-spacing:8.280000px;}
.ls1{letter-spacing:10.656000px;}
.ls4{letter-spacing:12.510000px;}
.ls4c{letter-spacing:1367.229600px;}
.lsa{letter-spacing:1397.229600px;}
.ls0{letter-spacing:1920.921600px;}
.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;}
}
.ws8{word-spacing:-66.000000px;}
.wsb{word-spacing:-18.546000px;}
.ws4{word-spacing:-17.886000px;}
.ws9{word-spacing:-17.754000px;}
.ws7{word-spacing:-16.896000px;}
.ws5{word-spacing:-16.632000px;}
.ws3{word-spacing:-16.500000px;}
.ws23{word-spacing:-15.720000px;}
.ws11{word-spacing:-15.600000px;}
.ws6{word-spacing:-15.540000px;}
.ws1f{word-spacing:-15.480000px;}
.ws12{word-spacing:-15.360000px;}
.ws27{word-spacing:-15.300000px;}
.ws25{word-spacing:-15.240000px;}
.ws16{word-spacing:-15.120000px;}
.wsa{word-spacing:-15.060000px;}
.ws2{word-spacing:-15.000000px;}
.ws1d{word-spacing:-12.060000px;}
.wsc{word-spacing:-12.015000px;}
.ws22{word-spacing:-11.970000px;}
.ws10{word-spacing:-11.835000px;}
.ws1b{word-spacing:-11.655000px;}
.ws13{word-spacing:-11.610000px;}
.ws24{word-spacing:-11.475000px;}
.ws20{word-spacing:-11.295000px;}
.ws21{word-spacing:-11.250000px;}
.ws0{word-spacing:-10.542000px;}
.ws14{word-spacing:-6.255000px;}
.ws1{word-spacing:0.000000px;}
.ws19{word-spacing:6.660000px;}
.ws17{word-spacing:7.095600px;}
.wsf{word-spacing:7.110000px;}
.ws26{word-spacing:8.460000px;}
.ws1e{word-spacing:8.730000px;}
.wsd{word-spacing:9.675000px;}
.ws18{word-spacing:9.990000px;}
.ws1a{word-spacing:10.015200px;}
.ws1c{word-spacing:10.035000px;}
.ws28{word-spacing:10.080000px;}
.wse{word-spacing:10.440000px;}
.ws15{word-spacing:15.390000px;}
._1b{margin-left:-1828.877495px;}
._17{margin-left:-1801.057642px;}
._16{margin-left:-1792.959095px;}
._19{margin-left:-1761.973674px;}
._14{margin-left:-1553.107200px;}
._1a{margin-left:-1475.025695px;}
._18{margin-left:-18.546000px;}
._15{margin-left:-17.412821px;}
._7{margin-left:-15.146400px;}
._b{margin-left:-12.144000px;}
._1{margin-left:-10.662600px;}
._6{margin-left:-9.324000px;}
._12{margin-left:-8.103000px;}
._11{margin-left:-5.940000px;}
._13{margin-left:-2.163000px;}
._5{margin-left:-1.137000px;}
._c{width:1.100842px;}
._8{width:2.113579px;}
._3{width:3.402000px;}
._4{width:4.662000px;}
._9{width:5.760000px;}
._a{width:7.239474px;}
._d{width:8.250000px;}
._10{width:9.498947px;}
._2{width:11.676000px;}
._0{width:13.344000px;}
._1c{width:29.607000px;}
._e{width:45.396126px;}
._f{width:1187.565600px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:27.000000px;}
.fs0{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fsc{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:139.800000px;}
.y0{bottom:0.000000px;}
.y17e{bottom:85.038900px;}
.y155{bottom:85.039050px;}
.y1{bottom:85.039350px;}
.y32{bottom:85.039500px;}
.y116{bottom:85.039650px;}
.yff{bottom:85.039800px;}
.y10{bottom:119.055150px;}
.yc0{bottom:119.287200px;}
.y48{bottom:119.368500px;}
.yd4{bottom:119.920500px;}
.y115{bottom:120.102600px;}
.y1a8{bottom:120.168750px;}
.y154{bottom:120.374100px;}
.yfe{bottom:120.443700px;}
.y89{bottom:120.510150px;}
.yeb{bottom:120.801750px;}
.y72{bottom:120.805500px;}
.y134{bottom:120.807750px;}
.yf{bottom:131.055150px;}
.y47{bottom:135.355500px;}
.y153{bottom:136.361100px;}
.ybf{bottom:136.883700px;}
.yb2{bottom:136.902600px;}
.yd3{bottom:137.517000px;}
.y114{bottom:137.699100px;}
.y1a7{bottom:137.984250px;}
.yfd{bottom:138.040350px;}
.y88{bottom:138.106800px;}
.yea{bottom:138.398250px;}
.y14c{bottom:138.398550px;}
.y71{bottom:138.402000px;}
.y133{bottom:138.404100px;}
.y17d{bottom:146.970750px;}
.ye{bottom:149.433000px;}
.y46{bottom:151.342500px;}
.y152{bottom:152.348100px;}
.ybe{bottom:154.480200px;}
.yb1{bottom:154.750200px;}
.yd2{bottom:155.113500px;}
.y113{bottom:155.295600px;}
.yfc{bottom:155.636700px;}
.y87{bottom:155.703150px;}
.y1a6{bottom:155.799750px;}
.ye9{bottom:155.994750px;}
.y14b{bottom:155.995050px;}
.y70{bottom:155.998500px;}
.y132{bottom:156.000600px;}
.y17c{bottom:164.567250px;}
.yd{bottom:167.811000px;}
.y151{bottom:168.335100px;}
.ybd{bottom:172.076700px;}
.yb0{bottom:172.597800px;}
.yd1{bottom:172.710000px;}
.yfb{bottom:173.233200px;}
.y86{bottom:173.299650px;}
.ye8{bottom:173.591250px;}
.y14a{bottom:173.591550px;}
.y6f{bottom:173.595000px;}
.y131{bottom:173.597100px;}
.y1a5{bottom:173.615250px;}
.y17b{bottom:182.163750px;}
.yc{bottom:184.062900px;}
.y150{bottom:184.322100px;}
.ybc{bottom:189.673200px;}
.yd0{bottom:190.306500px;}
.yaf{bottom:190.445400px;}
.yfa{bottom:190.829700px;}
.y85{bottom:190.896150px;}
.ye7{bottom:191.187750px;}
.y149{bottom:191.188050px;}
.y6e{bottom:191.191500px;}
.y130{bottom:191.193600px;}
.y1a4{bottom:191.430750px;}
.yb{bottom:195.243900px;}
.y17a{bottom:199.760250px;}
.ya{bottom:206.424900px;}
.ybb{bottom:207.269700px;}
.ycf{bottom:207.903000px;}
.y112{bottom:208.081350px;}
.yf9{bottom:208.426350px;}
.y84{bottom:208.492650px;}
.ye6{bottom:208.784250px;}
.y148{bottom:208.784550px;}
.y6d{bottom:208.788000px;}
.y12f{bottom:208.790250px;}
.y1a3{bottom:209.246250px;}
.yae{bottom:217.090350px;}
.y179{bottom:217.356750px;}
.y9{bottom:223.983900px;}
.y111{bottom:224.068350px;}
.yba{bottom:224.866200px;}
.yf8{bottom:226.022850px;}
.y83{bottom:226.089300px;}
.ye5{bottom:226.380750px;}
.y147{bottom:226.381050px;}
.y12e{bottom:226.386600px;}
.y1a2{bottom:227.061750px;}
.yad{bottom:234.937950px;}
.y8{bottom:235.164900px;}
.y110{bottom:240.055350px;}
.yb9{bottom:242.462700px;}
.yf7{bottom:243.619200px;}
.y82{bottom:243.685800px;}
.ye4{bottom:243.977250px;}
.y146{bottom:243.977550px;}
.y6c{bottom:243.979050px;}
.y12d{bottom:243.983100px;}
.y1a1{bottom:244.877250px;}
.y178{bottom:252.547800px;}
.yac{bottom:252.785550px;}
.y10f{bottom:256.042350px;}
.yce{bottom:260.688750px;}
.yf6{bottom:261.215700px;}
.y81{bottom:261.282150px;}
.ye3{bottom:261.573750px;}
.y145{bottom:261.574200px;}
.y6b{bottom:261.575550px;}
.y12c{bottom:261.579600px;}
.y1a0{bottom:262.692750px;}
.yb8{bottom:268.856550px;}
.yab{bottom:270.633150px;}
.y31{bottom:274.085700px;}
.ycd{bottom:276.675750px;}
.yf5{bottom:278.812200px;}
.y80{bottom:278.878650px;}
.ye2{bottom:279.170250px;}
.y144{bottom:279.170550px;}
.y6a{bottom:279.172050px;}
.y12b{bottom:279.176100px;}
.y19f{bottom:280.508250px;}
.y1cb{bottom:281.514450px;}
.yaa{bottom:288.480750px;}
.ycc{bottom:292.662750px;}
.y30{bottom:292.730250px;}
.yf4{bottom:296.408850px;}
.y7f{bottom:296.475150px;}
.ye1{bottom:296.766750px;}
.y143{bottom:296.767050px;}
.y69{bottom:296.768550px;}
.y12a{bottom:296.772600px;}
.y19e{bottom:298.323750px;}
.y1ca{bottom:299.329950px;}
.yb7{bottom:304.047600px;}
.y177{bottom:305.333700px;}
.ya9{bottom:306.328350px;}
.y2f{bottom:307.122750px;}
.ycb{bottom:308.649750px;}
.yf3{bottom:314.005350px;}
.y7e{bottom:314.071650px;}
.ye0{bottom:314.363250px;}
.y142{bottom:314.363550px;}
.y68{bottom:314.365050px;}
.y129{bottom:314.369100px;}
.y19d{bottom:316.139250px;}
.y1c9{bottom:317.145450px;}
.y2e{bottom:321.515250px;}
.y176{bottom:322.930200px;}
.ya8{bottom:324.175950px;}
.yf2{bottom:331.601700px;}
.ydf{bottom:331.959750px;}
.y141{bottom:331.960050px;}
.y67{bottom:331.961550px;}
.y128{bottom:331.965750px;}
.y19c{bottom:333.954750px;}
.y1c8{bottom:334.960950px;}
.y2d{bottom:335.907750px;}
.y175{bottom:340.526700px;}
.ya7{bottom:342.023550px;}
.y7d{bottom:345.010950px;}
.yde{bottom:349.556250px;}
.y140{bottom:349.556700px;}
.y66{bottom:349.558050px;}
.y2c{bottom:350.300250px;}
.y19b{bottom:351.770250px;}
.y1c7{bottom:352.776300px;}
.yf1{bottom:357.995550px;}
.y174{bottom:358.123200px;}
.ya6{bottom:359.871150px;}
.y7c{bottom:362.607450px;}
.y2b{bottom:364.692750px;}
.ydd{bottom:367.152750px;}
.y13f{bottom:367.153050px;}
.y65{bottom:367.154550px;}
.y127{bottom:367.156800px;}
.y19a{bottom:369.585750px;}
.yb6{bottom:369.589350px;}
.y1c6{bottom:370.591800px;}
.y173{bottom:375.719700px;}
.y2a{bottom:379.085250px;}
.y7b{bottom:380.203950px;}
.ydc{bottom:384.749250px;}
.y13e{bottom:384.749700px;}
.y64{bottom:384.751050px;}
.yb5{bottom:385.576350px;}
.ya5{bottom:386.515950px;}
.y199{bottom:387.401250px;}
.y1c5{bottom:388.407300px;}
.y172{bottom:393.316200px;}
.y29{bottom:393.477750px;}
.y7a{bottom:397.800450px;}
.yb4{bottom:401.563350px;}
.ydb{bottom:402.345750px;}
.y13d{bottom:402.346050px;}
.y63{bottom:402.347700px;}
.ya4{bottom:404.363550px;}
.y198{bottom:405.216750px;}
.y1c4{bottom:406.222800px;}
.y28{bottom:407.870250px;}
.y171{bottom:410.912700px;}
.y79{bottom:415.396950px;}
.yb3{bottom:417.550350px;}
.yda{bottom:419.942250px;}
.y126{bottom:419.942550px;}
.y62{bottom:419.944050px;}
.ya3{bottom:422.211150px;}
.y27{bottom:422.262750px;}
.y197{bottom:423.032250px;}
.y1c3{bottom:424.038450px;}
.yf0{bottom:428.376000px;}
.y170{bottom:428.509200px;}
.y78{bottom:432.993450px;}
.y26{bottom:436.655250px;}
.yd9{bottom:437.538750px;}
.y125{bottom:437.539050px;}
.ya2{bottom:440.058750px;}
.y196{bottom:440.847750px;}
.y1c2{bottom:441.853800px;}
.yef{bottom:444.363000px;}
.y14f{bottom:445.777950px;}
.y16f{bottom:446.105700px;}
.y77{bottom:450.589800px;}
.y25{bottom:451.047750px;}
.y61{bottom:455.135250px;}
.y124{bottom:455.135550px;}
.ya1{bottom:457.906350px;}
.y195{bottom:458.663250px;}
.y1c1{bottom:459.669450px;}
.yee{bottom:460.350000px;}
.y14e{bottom:461.764950px;}
.y76{bottom:468.186450px;}
.y16e{bottom:472.499550px;}
.y60{bottom:472.731750px;}
.y123{bottom:472.732200px;}
.ya0{bottom:475.753950px;}
.yed{bottom:476.337000px;}
.y194{bottom:476.478750px;}
.y1c0{bottom:477.484800px;}
.y14d{bottom:477.751950px;}
.y24{bottom:478.196100px;}
.y75{bottom:485.782950px;}
.y16d{bottom:490.096050px;}
.y5f{bottom:490.328250px;}
.y122{bottom:490.328550px;}
.yec{bottom:492.324000px;}
.y9f{bottom:493.601550px;}
.y193{bottom:494.294250px;}
.y1bf{bottom:495.300450px;}
.y23{bottom:496.840650px;}
.y74{bottom:503.379450px;}
.y16c{bottom:507.692550px;}
.y5e{bottom:507.924750px;}
.y121{bottom:507.925050px;}
.y22{bottom:511.233150px;}
.y9e{bottom:511.449150px;}
.y192{bottom:512.109750px;}
.y1be{bottom:513.115800px;}
.y73{bottom:520.975950px;}
.y16b{bottom:525.289050px;}
.y5d{bottom:525.521250px;}
.y120{bottom:525.521550px;}
.y21{bottom:525.625650px;}
.y9d{bottom:529.296750px;}
.y191{bottom:529.925250px;}
.y1bd{bottom:530.931450px;}
.y13c{bottom:534.318900px;}
.y20{bottom:540.018150px;}
.y16a{bottom:542.885550px;}
.yd8{bottom:543.117750px;}
.y11f{bottom:543.118050px;}
.y9c{bottom:547.144350px;}
.y190{bottom:547.740750px;}
.y1bc{bottom:548.746800px;}
.y5c{bottom:551.915100px;}
.y13b{bottom:551.915400px;}
.y1f{bottom:554.410650px;}
.y169{bottom:560.482050px;}
.yd7{bottom:560.714250px;}
.y11e{bottom:560.714700px;}
.y9b{bottom:564.991950px;}
.y18f{bottom:565.556250px;}
.y1bb{bottom:566.562450px;}
.y1e{bottom:568.803150px;}
.y5b{bottom:569.511600px;}
.y13a{bottom:569.511900px;}
.y168{bottom:578.078550px;}
.yd6{bottom:578.310750px;}
.y11d{bottom:578.311050px;}
.y9a{bottom:582.839550px;}
.y1d{bottom:583.195650px;}
.y18e{bottom:583.371750px;}
.y1ba{bottom:584.377800px;}
.y45{bottom:586.876200px;}
.y5a{bottom:587.108100px;}
.y139{bottom:587.108400px;}
.y167{bottom:595.675050px;}
.yd5{bottom:595.907250px;}
.y11c{bottom:595.907550px;}
.y1c{bottom:597.588000px;}
.y99{bottom:600.687150px;}
.y18d{bottom:601.187250px;}
.y1b9{bottom:602.193300px;}
.y44{bottom:604.472700px;}
.y59{bottom:604.704600px;}
.y138{bottom:604.704900px;}
.y1b{bottom:611.980650px;}
.yca{bottom:613.503750px;}
.y11b{bottom:613.504050px;}
.y98{bottom:618.534750px;}
.y18c{bottom:619.002750px;}
.y1b8{bottom:620.008800px;}
.y166{bottom:622.068900px;}
.y43{bottom:622.069200px;}
.y58{bottom:622.301100px;}
.y137{bottom:622.301400px;}
.y1a{bottom:626.373000px;}
.yc9{bottom:631.100250px;}
.y11a{bottom:631.100550px;}
.y97{bottom:636.382350px;}
.y18b{bottom:636.818250px;}
.y1b7{bottom:637.824300px;}
.y165{bottom:639.665250px;}
.y42{bottom:639.665700px;}
.y57{bottom:639.897600px;}
.y136{bottom:639.897900px;}
.y19{bottom:640.765650px;}
.yc8{bottom:648.696750px;}
.y119{bottom:648.697200px;}
.y96{bottom:654.229950px;}
.y18a{bottom:654.633750px;}
.y18{bottom:655.158150px;}
.y1b6{bottom:655.639950px;}
.y164{bottom:657.261900px;}
.y41{bottom:657.262200px;}
.y56{bottom:657.494100px;}
.y135{bottom:657.494400px;}
.yc7{bottom:666.293250px;}
.y118{bottom:666.293550px;}
.y17{bottom:669.550650px;}
.y95{bottom:672.077400px;}
.y189{bottom:672.449250px;}
.y1b5{bottom:673.455300px;}
.y163{bottom:674.858250px;}
.y40{bottom:674.858700px;}
.y55{bottom:675.090600px;}
.y10e{bottom:675.090900px;}
.yc6{bottom:683.889750px;}
.y117{bottom:683.890200px;}
.y16{bottom:683.943150px;}
.y94{bottom:689.925000px;}
.y188{bottom:690.264750px;}
.y1b4{bottom:691.270800px;}
.y162{bottom:692.454750px;}
.y3f{bottom:692.455200px;}
.y54{bottom:692.687100px;}
.y10d{bottom:692.687400px;}
.yc5{bottom:701.486250px;}
.y93{bottom:707.772600px;}
.y187{bottom:708.080250px;}
.y1b3{bottom:709.086300px;}
.y161{bottom:710.051400px;}
.y3e{bottom:710.051700px;}
.y53{bottom:710.283600px;}
.y10c{bottom:710.283900px;}
.yc4{bottom:719.082750px;}
.y92{bottom:725.620200px;}
.y186{bottom:725.895750px;}
.y1b2{bottom:726.901950px;}
.y160{bottom:727.647900px;}
.y3d{bottom:727.648200px;}
.y52{bottom:727.880100px;}
.y10b{bottom:727.880400px;}
.yc3{bottom:736.679250px;}
.y91{bottom:743.467800px;}
.y185{bottom:743.711250px;}
.y1b1{bottom:744.717300px;}
.y15f{bottom:745.244250px;}
.y3c{bottom:745.244700px;}
.y51{bottom:745.476600px;}
.y10a{bottom:745.476900px;}
.yc2{bottom:754.275750px;}
.y90{bottom:761.315400px;}
.y184{bottom:761.526750px;}
.y1b0{bottom:762.532800px;}
.y15e{bottom:762.840750px;}
.y3b{bottom:762.841200px;}
.y50{bottom:763.073100px;}
.y109{bottom:763.073400px;}
.yc1{bottom:771.872250px;}
.y15{bottom:779.122950px;}
.y8f{bottom:779.163000px;}
.y183{bottom:779.342250px;}
.y1af{bottom:780.348300px;}
.y15d{bottom:780.437400px;}
.y3a{bottom:780.437700px;}
.y4f{bottom:780.669600px;}
.y108{bottom:780.670050px;}
.y8e{bottom:797.010600px;}
.y182{bottom:797.157750px;}
.y15c{bottom:798.033900px;}
.y39{bottom:798.034200px;}
.y1ae{bottom:798.163950px;}
.y4e{bottom:798.266100px;}
.y107{bottom:798.266400px;}
.y14{bottom:803.907300px;}
.y8d{bottom:814.858200px;}
.y181{bottom:814.973400px;}
.y15b{bottom:815.630400px;}
.y38{bottom:815.630700px;}
.y4d{bottom:815.862600px;}
.y106{bottom:815.862900px;}
.y1ad{bottom:815.979450px;}
.y13{bottom:821.503950px;}
.y8c{bottom:832.705800px;}
.y180{bottom:832.788900px;}
.y15a{bottom:833.226900px;}
.y37{bottom:833.227350px;}
.y4c{bottom:833.459100px;}
.y105{bottom:833.459400px;}
.y1ac{bottom:833.794950px;}
.y8b{bottom:850.553400px;}
.y17f{bottom:850.604400px;}
.y159{bottom:850.823400px;}
.y36{bottom:850.823700px;}
.y4b{bottom:851.055600px;}
.y104{bottom:851.055900px;}
.y1ab{bottom:851.610300px;}
.y12{bottom:856.108200px;}
.y8a{bottom:868.401000px;}
.y4a{bottom:868.652100px;}
.y103{bottom:868.652400px;}
.y1aa{bottom:869.425800px;}
.y11{bottom:881.960250px;}
.y158{bottom:886.014600px;}
.y35{bottom:886.014900px;}
.y49{bottom:886.248600px;}
.y102{bottom:886.248900px;}
.y1a9{bottom:887.241450px;}
.y5{bottom:920.367150px;}
.y157{bottom:931.877700px;}
.y34{bottom:931.878150px;}
.y101{bottom:931.878450px;}
.y4{bottom:939.027750px;}
.y3{bottom:945.477750px;}
.y156{bottom:949.474200px;}
.y33{bottom:949.474650px;}
.y100{bottom:949.474950px;}
.y2{bottom:953.272050px;}
.y7{bottom:957.890700px;}
.y6{bottom:971.390700px;}
.h4{height:19.602000px;}
.h6{height:31.206000px;}
.hd{height:32.882812px;}
.h7{height:33.435000px;}
.h5{height:35.328000px;}
.ha{height:41.103516px;}
.hc{height:42.984375px;}
.he{height:45.213867px;}
.h10{height:45.826172px;}
.hb{height:48.357422px;}
.h2{height:53.730469px;}
.h11{height:53.818359px;}
.hf{height:59.103516px;}
.h8{height:62.490234px;}
.h9{height:64.476562px;}
.h3{height:104.850000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:110.551200px;}
.x1{left:113.476500px;}
.x10{left:117.728400px;}
.xf{left:123.307050px;}
.xb{left:136.063050px;}
.x4{left:138.988350px;}
.x12{left:146.692950px;}
.x11{left:149.618250px;}
.xe{left:155.196900px;}
.xd{left:158.122200px;}
.x5{left:173.632800px;}
.x6{left:179.257800px;}
.x7{left:199.820100px;}
.x9{left:232.879350px;}
.x8{left:255.264450px;}
.xc{left:321.763800px;}
.x3{left:441.045750px;}
.x2{left:521.280900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls46{letter-spacing:-11.840000pt;}
.ls43{letter-spacing:-9.640000pt;}
.ls58{letter-spacing:-9.360000pt;}
.ls48{letter-spacing:-9.280000pt;}
.ls41{letter-spacing:-8.960000pt;}
.ls56{letter-spacing:-8.880000pt;}
.ls57{letter-spacing:-8.640000pt;}
.ls44{letter-spacing:-8.160000pt;}
.ls49{letter-spacing:-7.800000pt;}
.ls45{letter-spacing:-4.440000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000533pt;}
.ls39{letter-spacing:0.006400pt;}
.ls38{letter-spacing:0.006933pt;}
.ls3a{letter-spacing:0.008000pt;}
.ls52{letter-spacing:0.008533pt;}
.ls31{letter-spacing:0.009067pt;}
.ls4f{letter-spacing:0.040000pt;}
.ls9{letter-spacing:0.042667pt;}
.ls4e{letter-spacing:0.044267pt;}
.ls10{letter-spacing:0.053333pt;}
.lsb{letter-spacing:0.058667pt;}
.ls47{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.117333pt;}
.ls6{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.170667pt;}
.ls14{letter-spacing:0.176000pt;}
.ls54{letter-spacing:0.200000pt;}
.ls55{letter-spacing:0.212800pt;}
.ls1e{letter-spacing:0.213333pt;}
.ls53{letter-spacing:0.214933pt;}
.ls13{letter-spacing:0.234667pt;}
.ls1d{letter-spacing:0.266667pt;}
.ls22{letter-spacing:0.276800pt;}
.lsf{letter-spacing:0.293333pt;}
.ls7{letter-spacing:0.298667pt;}
.ls35{letter-spacing:0.299200pt;}
.ls36{letter-spacing:0.301867pt;}
.ls37{letter-spacing:0.320000pt;}
.ls3c{letter-spacing:0.326933pt;}
.ls3d{letter-spacing:0.344000pt;}
.lse{letter-spacing:0.352000pt;}
.ls3e{letter-spacing:0.360000pt;}
.ls2b{letter-spacing:0.373333pt;}
.ls2{letter-spacing:0.410667pt;}
.ls4d{letter-spacing:0.426667pt;}
.lsc{letter-spacing:0.469333pt;}
.ls21{letter-spacing:0.480000pt;}
.ls3b{letter-spacing:0.517867pt;}
.ls33{letter-spacing:0.520000pt;}
.ls23{letter-spacing:0.528000pt;}
.ls32{letter-spacing:0.532800pt;}
.ls34{letter-spacing:0.533333pt;}
.ls1f{letter-spacing:0.586667pt;}
.ls51{letter-spacing:0.640000pt;}
.ls50{letter-spacing:0.642133pt;}
.ls19{letter-spacing:0.645333pt;}
.ls2e{letter-spacing:0.680000pt;}
.ls30{letter-spacing:0.688000pt;}
.ls2d{letter-spacing:0.689600pt;}
.ls2f{letter-spacing:0.693333pt;}
.ls1a{letter-spacing:0.704000pt;}
.ls40{letter-spacing:0.720000pt;}
.ls3f{letter-spacing:0.728000pt;}
.ls4b{letter-spacing:0.746667pt;}
.ls20{letter-spacing:0.762667pt;}
.ls2a{letter-spacing:0.800000pt;}
.ls25{letter-spacing:0.821333pt;}
.ls26{letter-spacing:0.843733pt;}
.lsd{letter-spacing:0.880000pt;}
.ls16{letter-spacing:0.938667pt;}
.ls15{letter-spacing:0.997333pt;}
.ls17{letter-spacing:1.056000pt;}
.ls3{letter-spacing:1.082667pt;}
.ls12{letter-spacing:1.114667pt;}
.ls1c{letter-spacing:1.232000pt;}
.ls11{letter-spacing:1.466667pt;}
.ls24{letter-spacing:1.642667pt;}
.ls27{letter-spacing:1.760000pt;}
.ls28{letter-spacing:1.818667pt;}
.ls2c{letter-spacing:2.464000pt;}
.ls4a{letter-spacing:7.040000pt;}
.ls42{letter-spacing:7.360000pt;}
.ls1{letter-spacing:9.472000pt;}
.ls4{letter-spacing:11.120000pt;}
.ls4c{letter-spacing:1215.315200pt;}
.lsa{letter-spacing:1241.981867pt;}
.ls0{letter-spacing:1707.485867pt;}
.ws8{word-spacing:-58.666667pt;}
.wsb{word-spacing:-16.485333pt;}
.ws4{word-spacing:-15.898667pt;}
.ws9{word-spacing:-15.781333pt;}
.ws7{word-spacing:-15.018667pt;}
.ws5{word-spacing:-14.784000pt;}
.ws3{word-spacing:-14.666667pt;}
.ws23{word-spacing:-13.973333pt;}
.ws11{word-spacing:-13.866667pt;}
.ws6{word-spacing:-13.813333pt;}
.ws1f{word-spacing:-13.760000pt;}
.ws12{word-spacing:-13.653333pt;}
.ws27{word-spacing:-13.600000pt;}
.ws25{word-spacing:-13.546667pt;}
.ws16{word-spacing:-13.440000pt;}
.wsa{word-spacing:-13.386667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1d{word-spacing:-10.720000pt;}
.wsc{word-spacing:-10.680000pt;}
.ws22{word-spacing:-10.640000pt;}
.ws10{word-spacing:-10.520000pt;}
.ws1b{word-spacing:-10.360000pt;}
.ws13{word-spacing:-10.320000pt;}
.ws24{word-spacing:-10.200000pt;}
.ws20{word-spacing:-10.040000pt;}
.ws21{word-spacing:-10.000000pt;}
.ws0{word-spacing:-9.370667pt;}
.ws14{word-spacing:-5.560000pt;}
.ws1{word-spacing:0.000000pt;}
.ws19{word-spacing:5.920000pt;}
.ws17{word-spacing:6.307200pt;}
.wsf{word-spacing:6.320000pt;}
.ws26{word-spacing:7.520000pt;}
.ws1e{word-spacing:7.760000pt;}
.wsd{word-spacing:8.600000pt;}
.ws18{word-spacing:8.880000pt;}
.ws1a{word-spacing:8.902400pt;}
.ws1c{word-spacing:8.920000pt;}
.ws28{word-spacing:8.960000pt;}
.wse{word-spacing:9.280000pt;}
.ws15{word-spacing:13.680000pt;}
._1b{margin-left:-1625.668884pt;}
._17{margin-left:-1600.940126pt;}
._16{margin-left:-1593.741418pt;}
._19{margin-left:-1566.198821pt;}
._14{margin-left:-1380.539733pt;}
._1a{margin-left:-1311.133951pt;}
._18{margin-left:-16.485333pt;}
._15{margin-left:-15.478063pt;}
._7{margin-left:-13.463467pt;}
._b{margin-left:-10.794667pt;}
._1{margin-left:-9.477867pt;}
._6{margin-left:-8.288000pt;}
._12{margin-left:-7.202667pt;}
._11{margin-left:-5.280000pt;}
._13{margin-left:-1.922667pt;}
._5{margin-left:-1.010667pt;}
._c{width:0.978526pt;}
._8{width:1.878737pt;}
._3{width:3.024000pt;}
._4{width:4.144000pt;}
._9{width:5.120000pt;}
._a{width:6.435088pt;}
._d{width:7.333333pt;}
._10{width:8.443509pt;}
._2{width:10.378667pt;}
._0{width:11.861333pt;}
._1c{width:26.317333pt;}
._e{width:40.352112pt;}
._f{width:1055.613867pt;}
.fs3{font-size:24.000000pt;}
.fs0{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fsc{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:124.266667pt;}
.y0{bottom:0.000000pt;}
.y17e{bottom:75.590133pt;}
.y155{bottom:75.590267pt;}
.y1{bottom:75.590533pt;}
.y32{bottom:75.590667pt;}
.y116{bottom:75.590800pt;}
.yff{bottom:75.590933pt;}
.y10{bottom:105.826800pt;}
.yc0{bottom:106.033067pt;}
.y48{bottom:106.105333pt;}
.yd4{bottom:106.596000pt;}
.y115{bottom:106.757867pt;}
.y1a8{bottom:106.816667pt;}
.y154{bottom:106.999200pt;}
.yfe{bottom:107.061067pt;}
.y89{bottom:107.120133pt;}
.yeb{bottom:107.379333pt;}
.y72{bottom:107.382667pt;}
.y134{bottom:107.384667pt;}
.yf{bottom:116.493467pt;}
.y47{bottom:120.316000pt;}
.y153{bottom:121.209867pt;}
.ybf{bottom:121.674400pt;}
.yb2{bottom:121.691200pt;}
.yd3{bottom:122.237333pt;}
.y114{bottom:122.399200pt;}
.y1a7{bottom:122.652667pt;}
.yfd{bottom:122.702533pt;}
.y88{bottom:122.761600pt;}
.yea{bottom:123.020667pt;}
.y14c{bottom:123.020933pt;}
.y71{bottom:123.024000pt;}
.y133{bottom:123.025867pt;}
.y17d{bottom:130.640667pt;}
.ye{bottom:132.829333pt;}
.y46{bottom:134.526667pt;}
.y152{bottom:135.420533pt;}
.ybe{bottom:137.315733pt;}
.yb1{bottom:137.555733pt;}
.yd2{bottom:137.878667pt;}
.y113{bottom:138.040533pt;}
.yfc{bottom:138.343733pt;}
.y87{bottom:138.402800pt;}
.y1a6{bottom:138.488667pt;}
.ye9{bottom:138.662000pt;}
.y14b{bottom:138.662267pt;}
.y70{bottom:138.665333pt;}
.y132{bottom:138.667200pt;}
.y17c{bottom:146.282000pt;}
.yd{bottom:149.165333pt;}
.y151{bottom:149.631200pt;}
.ybd{bottom:152.957067pt;}
.yb0{bottom:153.420267pt;}
.yd1{bottom:153.520000pt;}
.yfb{bottom:153.985067pt;}
.y86{bottom:154.044133pt;}
.ye8{bottom:154.303333pt;}
.y14a{bottom:154.303600pt;}
.y6f{bottom:154.306667pt;}
.y131{bottom:154.308533pt;}
.y1a5{bottom:154.324667pt;}
.y17b{bottom:161.923333pt;}
.yc{bottom:163.611467pt;}
.y150{bottom:163.841867pt;}
.ybc{bottom:168.598400pt;}
.yd0{bottom:169.161333pt;}
.yaf{bottom:169.284800pt;}
.yfa{bottom:169.626400pt;}
.y85{bottom:169.685467pt;}
.ye7{bottom:169.944667pt;}
.y149{bottom:169.944933pt;}
.y6e{bottom:169.948000pt;}
.y130{bottom:169.949867pt;}
.y1a4{bottom:170.160667pt;}
.yb{bottom:173.550133pt;}
.y17a{bottom:177.564667pt;}
.ya{bottom:183.488800pt;}
.ybb{bottom:184.239733pt;}
.ycf{bottom:184.802667pt;}
.y112{bottom:184.961200pt;}
.yf9{bottom:185.267867pt;}
.y84{bottom:185.326800pt;}
.ye6{bottom:185.586000pt;}
.y148{bottom:185.586267pt;}
.y6d{bottom:185.589333pt;}
.y12f{bottom:185.591333pt;}
.y1a3{bottom:185.996667pt;}
.yae{bottom:192.969200pt;}
.y179{bottom:193.206000pt;}
.y9{bottom:199.096800pt;}
.y111{bottom:199.171867pt;}
.yba{bottom:199.881067pt;}
.yf8{bottom:200.909200pt;}
.y83{bottom:200.968267pt;}
.ye5{bottom:201.227333pt;}
.y147{bottom:201.227600pt;}
.y12e{bottom:201.232533pt;}
.y1a2{bottom:201.832667pt;}
.yad{bottom:208.833733pt;}
.y8{bottom:209.035467pt;}
.y110{bottom:213.382533pt;}
.yb9{bottom:215.522400pt;}
.yf7{bottom:216.550400pt;}
.y82{bottom:216.609600pt;}
.ye4{bottom:216.868667pt;}
.y146{bottom:216.868933pt;}
.y6c{bottom:216.870267pt;}
.y12d{bottom:216.873867pt;}
.y1a1{bottom:217.668667pt;}
.y178{bottom:224.486933pt;}
.yac{bottom:224.698267pt;}
.y10f{bottom:227.593200pt;}
.yce{bottom:231.723333pt;}
.yf6{bottom:232.191733pt;}
.y81{bottom:232.250800pt;}
.ye3{bottom:232.510000pt;}
.y145{bottom:232.510400pt;}
.y6b{bottom:232.511600pt;}
.y12c{bottom:232.515200pt;}
.y1a0{bottom:233.504667pt;}
.yb8{bottom:238.983600pt;}
.yab{bottom:240.562800pt;}
.y31{bottom:243.631733pt;}
.ycd{bottom:245.934000pt;}
.yf5{bottom:247.833067pt;}
.y80{bottom:247.892133pt;}
.ye2{bottom:248.151333pt;}
.y144{bottom:248.151600pt;}
.y6a{bottom:248.152933pt;}
.y12b{bottom:248.156533pt;}
.y19f{bottom:249.340667pt;}
.y1cb{bottom:250.235067pt;}
.yaa{bottom:256.427333pt;}
.ycc{bottom:260.144667pt;}
.y30{bottom:260.204667pt;}
.yf4{bottom:263.474533pt;}
.y7f{bottom:263.533467pt;}
.ye1{bottom:263.792667pt;}
.y143{bottom:263.792933pt;}
.y69{bottom:263.794267pt;}
.y12a{bottom:263.797867pt;}
.y19e{bottom:265.176667pt;}
.y1ca{bottom:266.071067pt;}
.yb7{bottom:270.264533pt;}
.y177{bottom:271.407733pt;}
.ya9{bottom:272.291867pt;}
.y2f{bottom:272.998000pt;}
.ycb{bottom:274.355333pt;}
.yf3{bottom:279.115867pt;}
.y7e{bottom:279.174800pt;}
.ye0{bottom:279.434000pt;}
.y142{bottom:279.434267pt;}
.y68{bottom:279.435600pt;}
.y129{bottom:279.439200pt;}
.y19d{bottom:281.012667pt;}
.y1c9{bottom:281.907067pt;}
.y2e{bottom:285.791333pt;}
.y176{bottom:287.049067pt;}
.ya8{bottom:288.156400pt;}
.yf2{bottom:294.757067pt;}
.ydf{bottom:295.075333pt;}
.y141{bottom:295.075600pt;}
.y67{bottom:295.076933pt;}
.y128{bottom:295.080667pt;}
.y19c{bottom:296.848667pt;}
.y1c8{bottom:297.743067pt;}
.y2d{bottom:298.584667pt;}
.y175{bottom:302.690400pt;}
.ya7{bottom:304.020933pt;}
.y7d{bottom:306.676400pt;}
.yde{bottom:310.716667pt;}
.y140{bottom:310.717067pt;}
.y66{bottom:310.718267pt;}
.y2c{bottom:311.378000pt;}
.y19b{bottom:312.684667pt;}
.y1c7{bottom:313.578933pt;}
.yf1{bottom:318.218267pt;}
.y174{bottom:318.331733pt;}
.ya6{bottom:319.885467pt;}
.y7c{bottom:322.317733pt;}
.y2b{bottom:324.171333pt;}
.ydd{bottom:326.358000pt;}
.y13f{bottom:326.358267pt;}
.y65{bottom:326.359600pt;}
.y127{bottom:326.361600pt;}
.y19a{bottom:328.520667pt;}
.yb6{bottom:328.523867pt;}
.y1c6{bottom:329.414933pt;}
.y173{bottom:333.973067pt;}
.y2a{bottom:336.964667pt;}
.y7b{bottom:337.959067pt;}
.ydc{bottom:341.999333pt;}
.y13e{bottom:341.999733pt;}
.y64{bottom:342.000933pt;}
.yb5{bottom:342.734533pt;}
.ya5{bottom:343.569733pt;}
.y199{bottom:344.356667pt;}
.y1c5{bottom:345.250933pt;}
.y172{bottom:349.614400pt;}
.y29{bottom:349.758000pt;}
.y7a{bottom:353.600400pt;}
.yb4{bottom:356.945200pt;}
.ydb{bottom:357.640667pt;}
.y13d{bottom:357.640933pt;}
.y63{bottom:357.642400pt;}
.ya4{bottom:359.434267pt;}
.y198{bottom:360.192667pt;}
.y1c4{bottom:361.086933pt;}
.y28{bottom:362.551333pt;}
.y171{bottom:365.255733pt;}
.y79{bottom:369.241733pt;}
.yb3{bottom:371.155867pt;}
.yda{bottom:373.282000pt;}
.y126{bottom:373.282267pt;}
.y62{bottom:373.283600pt;}
.ya3{bottom:375.298800pt;}
.y27{bottom:375.344667pt;}
.y197{bottom:376.028667pt;}
.y1c3{bottom:376.923067pt;}
.yf0{bottom:380.778667pt;}
.y170{bottom:380.897067pt;}
.y78{bottom:384.883067pt;}
.y26{bottom:388.138000pt;}
.yd9{bottom:388.923333pt;}
.y125{bottom:388.923600pt;}
.ya2{bottom:391.163333pt;}
.y196{bottom:391.864667pt;}
.y1c2{bottom:392.758933pt;}
.yef{bottom:394.989333pt;}
.y14f{bottom:396.247067pt;}
.y16f{bottom:396.538400pt;}
.y77{bottom:400.524267pt;}
.y25{bottom:400.931333pt;}
.y61{bottom:404.564667pt;}
.y124{bottom:404.564933pt;}
.ya1{bottom:407.027867pt;}
.y195{bottom:407.700667pt;}
.y1c1{bottom:408.595067pt;}
.yee{bottom:409.200000pt;}
.y14e{bottom:410.457733pt;}
.y76{bottom:416.165733pt;}
.y16e{bottom:419.999600pt;}
.y60{bottom:420.206000pt;}
.y123{bottom:420.206400pt;}
.ya0{bottom:422.892400pt;}
.yed{bottom:423.410667pt;}
.y194{bottom:423.536667pt;}
.y1c0{bottom:424.430933pt;}
.y14d{bottom:424.668400pt;}
.y24{bottom:425.063200pt;}
.y75{bottom:431.807067pt;}
.y16d{bottom:435.640933pt;}
.y5f{bottom:435.847333pt;}
.y122{bottom:435.847600pt;}
.yec{bottom:437.621333pt;}
.y9f{bottom:438.756933pt;}
.y193{bottom:439.372667pt;}
.y1bf{bottom:440.267067pt;}
.y23{bottom:441.636133pt;}
.y74{bottom:447.448400pt;}
.y16c{bottom:451.282267pt;}
.y5e{bottom:451.488667pt;}
.y121{bottom:451.488933pt;}
.y22{bottom:454.429467pt;}
.y9e{bottom:454.621467pt;}
.y192{bottom:455.208667pt;}
.y1be{bottom:456.102933pt;}
.y73{bottom:463.089733pt;}
.y16b{bottom:466.923600pt;}
.y5d{bottom:467.130000pt;}
.y120{bottom:467.130267pt;}
.y21{bottom:467.222800pt;}
.y9d{bottom:470.486000pt;}
.y191{bottom:471.044667pt;}
.y1bd{bottom:471.939067pt;}
.y13c{bottom:474.950133pt;}
.y20{bottom:480.016133pt;}
.y16a{bottom:482.564933pt;}
.yd8{bottom:482.771333pt;}
.y11f{bottom:482.771600pt;}
.y9c{bottom:486.350533pt;}
.y190{bottom:486.880667pt;}
.y1bc{bottom:487.774933pt;}
.y5c{bottom:490.591200pt;}
.y13b{bottom:490.591467pt;}
.y1f{bottom:492.809467pt;}
.y169{bottom:498.206267pt;}
.yd7{bottom:498.412667pt;}
.y11e{bottom:498.413067pt;}
.y9b{bottom:502.215067pt;}
.y18f{bottom:502.716667pt;}
.y1bb{bottom:503.611067pt;}
.y1e{bottom:505.602800pt;}
.y5b{bottom:506.232533pt;}
.y13a{bottom:506.232800pt;}
.y168{bottom:513.847600pt;}
.yd6{bottom:514.054000pt;}
.y11d{bottom:514.054267pt;}
.y9a{bottom:518.079600pt;}
.y1d{bottom:518.396133pt;}
.y18e{bottom:518.552667pt;}
.y1ba{bottom:519.446933pt;}
.y45{bottom:521.667733pt;}
.y5a{bottom:521.873867pt;}
.y139{bottom:521.874133pt;}
.y167{bottom:529.488933pt;}
.yd5{bottom:529.695333pt;}
.y11c{bottom:529.695600pt;}
.y1c{bottom:531.189333pt;}
.y99{bottom:533.944133pt;}
.y18d{bottom:534.388667pt;}
.y1b9{bottom:535.282933pt;}
.y44{bottom:537.309067pt;}
.y59{bottom:537.515200pt;}
.y138{bottom:537.515467pt;}
.y1b{bottom:543.982800pt;}
.yca{bottom:545.336667pt;}
.y11b{bottom:545.336933pt;}
.y98{bottom:549.808667pt;}
.y18c{bottom:550.224667pt;}
.y1b8{bottom:551.118933pt;}
.y166{bottom:552.950133pt;}
.y43{bottom:552.950400pt;}
.y58{bottom:553.156533pt;}
.y137{bottom:553.156800pt;}
.y1a{bottom:556.776000pt;}
.yc9{bottom:560.978000pt;}
.y11a{bottom:560.978267pt;}
.y97{bottom:565.673200pt;}
.y18b{bottom:566.060667pt;}
.y1b7{bottom:566.954933pt;}
.y165{bottom:568.591333pt;}
.y42{bottom:568.591733pt;}
.y57{bottom:568.797867pt;}
.y136{bottom:568.798133pt;}
.y19{bottom:569.569467pt;}
.yc8{bottom:576.619333pt;}
.y119{bottom:576.619733pt;}
.y96{bottom:581.537733pt;}
.y18a{bottom:581.896667pt;}
.y18{bottom:582.362800pt;}
.y1b6{bottom:582.791067pt;}
.y164{bottom:584.232800pt;}
.y41{bottom:584.233067pt;}
.y56{bottom:584.439200pt;}
.y135{bottom:584.439467pt;}
.yc7{bottom:592.260667pt;}
.y118{bottom:592.260933pt;}
.y17{bottom:595.156133pt;}
.y95{bottom:597.402133pt;}
.y189{bottom:597.732667pt;}
.y1b5{bottom:598.626933pt;}
.y163{bottom:599.874000pt;}
.y40{bottom:599.874400pt;}
.y55{bottom:600.080533pt;}
.y10e{bottom:600.080800pt;}
.yc6{bottom:607.902000pt;}
.y117{bottom:607.902400pt;}
.y16{bottom:607.949467pt;}
.y94{bottom:613.266667pt;}
.y188{bottom:613.568667pt;}
.y1b4{bottom:614.462933pt;}
.y162{bottom:615.515333pt;}
.y3f{bottom:615.515733pt;}
.y54{bottom:615.721867pt;}
.y10d{bottom:615.722133pt;}
.yc5{bottom:623.543333pt;}
.y93{bottom:629.131200pt;}
.y187{bottom:629.404667pt;}
.y1b3{bottom:630.298933pt;}
.y161{bottom:631.156800pt;}
.y3e{bottom:631.157067pt;}
.y53{bottom:631.363200pt;}
.y10c{bottom:631.363467pt;}
.yc4{bottom:639.184667pt;}
.y92{bottom:644.995733pt;}
.y186{bottom:645.240667pt;}
.y1b2{bottom:646.135067pt;}
.y160{bottom:646.798133pt;}
.y3d{bottom:646.798400pt;}
.y52{bottom:647.004533pt;}
.y10b{bottom:647.004800pt;}
.yc3{bottom:654.826000pt;}
.y91{bottom:660.860267pt;}
.y185{bottom:661.076667pt;}
.y1b1{bottom:661.970933pt;}
.y15f{bottom:662.439333pt;}
.y3c{bottom:662.439733pt;}
.y51{bottom:662.645867pt;}
.y10a{bottom:662.646133pt;}
.yc2{bottom:670.467333pt;}
.y90{bottom:676.724800pt;}
.y184{bottom:676.912667pt;}
.y1b0{bottom:677.806933pt;}
.y15e{bottom:678.080667pt;}
.y3b{bottom:678.081067pt;}
.y50{bottom:678.287200pt;}
.y109{bottom:678.287467pt;}
.yc1{bottom:686.108667pt;}
.y15{bottom:692.553733pt;}
.y8f{bottom:692.589333pt;}
.y183{bottom:692.748667pt;}
.y1af{bottom:693.642933pt;}
.y15d{bottom:693.722133pt;}
.y3a{bottom:693.722400pt;}
.y4f{bottom:693.928533pt;}
.y108{bottom:693.928933pt;}
.y8e{bottom:708.453867pt;}
.y182{bottom:708.584667pt;}
.y15c{bottom:709.363467pt;}
.y39{bottom:709.363733pt;}
.y1ae{bottom:709.479067pt;}
.y4e{bottom:709.569867pt;}
.y107{bottom:709.570133pt;}
.y14{bottom:714.584267pt;}
.y8d{bottom:724.318400pt;}
.y181{bottom:724.420800pt;}
.y15b{bottom:725.004800pt;}
.y38{bottom:725.005067pt;}
.y4d{bottom:725.211200pt;}
.y106{bottom:725.211467pt;}
.y1ad{bottom:725.315067pt;}
.y13{bottom:730.225733pt;}
.y8c{bottom:740.182933pt;}
.y180{bottom:740.256800pt;}
.y15a{bottom:740.646133pt;}
.y37{bottom:740.646533pt;}
.y4c{bottom:740.852533pt;}
.y105{bottom:740.852800pt;}
.y1ac{bottom:741.151067pt;}
.y8b{bottom:756.047467pt;}
.y17f{bottom:756.092800pt;}
.y159{bottom:756.287467pt;}
.y36{bottom:756.287733pt;}
.y4b{bottom:756.493867pt;}
.y104{bottom:756.494133pt;}
.y1ab{bottom:756.986933pt;}
.y12{bottom:760.985067pt;}
.y8a{bottom:771.912000pt;}
.y4a{bottom:772.135200pt;}
.y103{bottom:772.135467pt;}
.y1aa{bottom:772.822933pt;}
.y11{bottom:783.964667pt;}
.y158{bottom:787.568533pt;}
.y35{bottom:787.568800pt;}
.y49{bottom:787.776533pt;}
.y102{bottom:787.776800pt;}
.y1a9{bottom:788.659067pt;}
.y5{bottom:818.104133pt;}
.y157{bottom:828.335733pt;}
.y34{bottom:828.336133pt;}
.y101{bottom:828.336400pt;}
.y4{bottom:834.691333pt;}
.y3{bottom:840.424667pt;}
.y156{bottom:843.977067pt;}
.y33{bottom:843.977467pt;}
.y100{bottom:843.977733pt;}
.y2{bottom:847.352933pt;}
.y7{bottom:851.458400pt;}
.y6{bottom:863.458400pt;}
.h4{height:17.424000pt;}
.h6{height:27.738667pt;}
.hd{height:29.229167pt;}
.h7{height:29.720000pt;}
.h5{height:31.402667pt;}
.ha{height:36.536458pt;}
.hc{height:38.208333pt;}
.he{height:40.190104pt;}
.h10{height:40.734375pt;}
.hb{height:42.984375pt;}
.h2{height:47.760417pt;}
.h11{height:47.838542pt;}
.hf{height:52.536458pt;}
.h8{height:55.546875pt;}
.h9{height:57.312500pt;}
.h3{height:93.200000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:98.267733pt;}
.x1{left:100.868000pt;}
.x10{left:104.647467pt;}
.xf{left:109.606267pt;}
.xb{left:120.944933pt;}
.x4{left:123.545200pt;}
.x12{left:130.393733pt;}
.x11{left:132.994000pt;}
.xe{left:137.952800pt;}
.xd{left:140.553067pt;}
.x5{left:154.340267pt;}
.x6{left:159.340267pt;}
.x7{left:177.617867pt;}
.x9{left:207.003867pt;}
.x8{left:226.901733pt;}
.xc{left:286.012267pt;}
.x3{left:392.040667pt;}
.x2{left:463.360800pt;}
}




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