
    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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_a83d875a653d0e6d4d46d4ef.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_626b19b37e37a16766e3aa72.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7017d31d241f7570555141e2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.331543;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_97d5d7a6f385c00b9cbe397a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.324707;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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_72fce2250da24ef34d3d2cef.woff')format("woff");}.ff8{font-family:ff8;line-height:1.331543;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_68bdce2674063b3c932d7cec.woff')format("woff");}.ff9{font-family:ff9;line-height:1.324707;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_7ffd22f7a899e62f7a1b0bca.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a597f9f13ca4680f623baef8.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f1721d0d86986c785e89d67c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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_c0c6d490b2930fe5a2af4e92.woff')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.ls64{letter-spacing:-1.494000px;}
.ls15{letter-spacing:-0.810000px;}
.ls65{letter-spacing:-0.774000px;}
.ls1a{letter-spacing:-0.645098px;}
.ls63{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.324000px;}
.ls67{letter-spacing:-0.316800px;}
.ls1d{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.280200px;}
.ls4b{letter-spacing:-0.259800px;}
.ls1f{letter-spacing:-0.229200px;}
.ls16{letter-spacing:-0.226200px;}
.ls21{letter-spacing:-0.108000px;}
.ls5d{letter-spacing:-0.106800px;}
.ls4d{letter-spacing:-0.097800px;}
.ls13{letter-spacing:-0.075000px;}
.ls20{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.053280px;}
.ls17{letter-spacing:-0.018000px;}
.ls5e{letter-spacing:-0.012240px;}
.lsf{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.036000px;}
.ls49{letter-spacing:0.042480px;}
.ls5c{letter-spacing:0.046080px;}
.ls1b{letter-spacing:0.054000px;}
.ls23{letter-spacing:0.056920px;}
.ls45{letter-spacing:0.075600px;}
.ls3{letter-spacing:0.090000px;}
.ls3e{letter-spacing:0.090720px;}
.ls4{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.113841px;}
.ls48{letter-spacing:0.144000px;}
.ls66{letter-spacing:0.164400px;}
.lsc{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.206400px;}
.ls54{letter-spacing:0.216000px;}
.ls4c{letter-spacing:0.229800px;}
.ls4a{letter-spacing:0.241200px;}
.ls3c{letter-spacing:0.259920px;}
.ls31{letter-spacing:0.274800px;}
.ls35{letter-spacing:0.298800px;}
.ls22{letter-spacing:0.303576px;}
.ls38{letter-spacing:0.320400px;}
.ls3f{letter-spacing:0.331800px;}
.ls2a{letter-spacing:0.338400px;}
.ls1{letter-spacing:0.341280px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.376800px;}
.ls53{letter-spacing:0.403920px;}
.ls26{letter-spacing:0.413280px;}
.ls47{letter-spacing:0.413400px;}
.ls3d{letter-spacing:0.439920px;}
.ls1e{letter-spacing:0.460200px;}
.ls46{letter-spacing:0.490800px;}
.ls60{letter-spacing:0.557280px;}
.ls36{letter-spacing:0.622080px;}
.ls5f{letter-spacing:0.666000px;}
.ls2{letter-spacing:0.666720px;}
.ls18{letter-spacing:0.756000px;}
.ls29{letter-spacing:0.786720px;}
.ls4e{letter-spacing:1.386000px;}
.ls28{letter-spacing:1.386720px;}
.lsa{letter-spacing:2.106720px;}
.ls9{letter-spacing:2.826720px;}
.ls40{letter-spacing:2.946720px;}
.ls2b{letter-spacing:3.006720px;}
.ls41{letter-spacing:3.522720px;}
.ls25{letter-spacing:3.546720px;}
.ls51{letter-spacing:3.726720px;}
.ls24{letter-spacing:4.266720px;}
.ls37{letter-spacing:4.386720px;}
.ls27{letter-spacing:4.446720px;}
.ls8{letter-spacing:4.986720px;}
.ls32{letter-spacing:5.166720px;}
.ls30{letter-spacing:5.706720px;}
.ls33{letter-spacing:5.826720px;}
.ls52{letter-spacing:6.426720px;}
.ls2d{letter-spacing:7.146720px;}
.ls2c{letter-spacing:7.866720px;}
.ls2e{letter-spacing:7.986720px;}
.ls2f{letter-spacing:8.046720px;}
.ls57{letter-spacing:8.586720px;}
.ls58{letter-spacing:8.706720px;}
.ls61{letter-spacing:9.306720px;}
.ls42{letter-spacing:10.026720px;}
.ls44{letter-spacing:10.146720px;}
.ls43{letter-spacing:10.206720px;}
.ls6{letter-spacing:10.746720px;}
.ls7{letter-spacing:11.466720px;}
.ls34{letter-spacing:12.186720px;}
.lse{letter-spacing:12.845802px;}
.ls55{letter-spacing:12.906720px;}
.lsd{letter-spacing:13.015805px;}
.ls56{letter-spacing:14.346720px;}
.ls5b{letter-spacing:15.066720px;}
.ls59{letter-spacing:15.786720px;}
.ls5a{letter-spacing:15.966720px;}
.ls4f{letter-spacing:16.506720px;}
.ls50{letter-spacing:17.226720px;}
.ls3a{letter-spacing:19.386720px;}
.ls3b{letter-spacing:19.566720px;}
.ls39{letter-spacing:20.106720px;}
.ls62{letter-spacing:41.706720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-17.511760px;}
.ws17{word-spacing:-17.104080px;}
.wse{word-spacing:-17.073480px;}
.ws6{word-spacing:-16.990080px;}
.ws1d{word-spacing:-16.951680px;}
.ws23{word-spacing:-16.945080px;}
.ws1a{word-spacing:-16.933680px;}
.ws20{word-spacing:-16.912080px;}
.ws1f{word-spacing:-16.888080px;}
.ws1b{word-spacing:-16.854480px;}
.ws21{word-spacing:-16.843080px;}
.ws4{word-spacing:-16.819680px;}
.ws27{word-spacing:-16.777680px;}
.ws18{word-spacing:-16.757280px;}
.ws1e{word-spacing:-16.688880px;}
.ws19{word-spacing:-16.655760px;}
.ws3{word-spacing:-16.613280px;}
.ws24{word-spacing:-16.601040px;}
.ws0{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.538280px;}
.ws22{word-spacing:-16.515480px;}
.ws29{word-spacing:-16.506480px;}
.wsf{word-spacing:-16.384080px;}
.ws1c{word-spacing:-16.353480px;}
.ws2{word-spacing:-16.333080px;}
.ws28{word-spacing:-16.296480px;}
.ws13{word-spacing:-16.127455px;}
.ws26{word-spacing:-16.037280px;}
.ws14{word-spacing:-15.880800px;}
.ws12{word-spacing:-15.823879px;}
.ws1{word-spacing:-15.300000px;}
.ws25{word-spacing:-15.228000px;}
.wsb{word-spacing:-15.102000px;}
.wsc{word-spacing:-15.048000px;}
.ws9{word-spacing:-15.012000px;}
.wsa{word-spacing:-14.994000px;}
.wsd{word-spacing:-14.724000px;}
.ws11{word-spacing:-13.392000px;}
.ws8{word-spacing:-10.440000px;}
.ws7{word-spacing:-10.213800px;}
.ws10{word-spacing:-8.928000px;}
.ws16{word-spacing:0.000000px;}
._2{margin-left:-12.788880px;}
._f{margin-left:-9.071520px;}
._7{margin-left:-7.938000px;}
._5{margin-left:-4.428000px;}
._9{margin-left:-2.853120px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._4{width:2.343600px;}
._6{width:4.266000px;}
._b{width:5.641680px;}
._a{width:6.714000px;}
._8{width:7.884000px;}
._d{width:9.410400px;}
._11{width:10.967760px;}
._3{width:12.130560px;}
._c{width:13.590000px;}
._14{width:15.318480px;}
._13{width:18.076080px;}
._15{width:19.141680px;}
._10{width:20.624640px;}
._12{width:166.410720px;}
._e{width:182.953440px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsc{font-size:12.240000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs9{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs7{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y44{bottom:2.700000px;}
.y5{bottom:4.140000px;}
.y50{bottom:5.010000px;}
.y38{bottom:7.005000px;}
.y8b{bottom:8.100000px;}
.y2{bottom:9.900000px;}
.y43{bottom:10.260000px;}
.y8e{bottom:17.100000px;}
.y4{bottom:23.070000px;}
.y4e{bottom:23.940000px;}
.y8a{bottom:31.680000px;}
.y37{bottom:33.105000px;}
.y42{bottom:40.320000px;}
.y87{bottom:40.500000px;}
.y8d{bottom:40.860000px;}
.y4d{bottom:44.460000px;}
.y3{bottom:48.090000px;}
.y41{bottom:51.480000px;}
.y89{bottom:52.560000px;}
.y36{bottom:56.325000px;}
.y7{bottom:57.600000px;}
.y40{bottom:62.640000px;}
.y8c{bottom:64.260000px;}
.y4c{bottom:68.760000px;}
.y88{bottom:73.440000px;}
.y3f{bottom:74.160000px;}
.y35{bottom:76.305000px;}
.y3e{bottom:87.300000px;}
.y4b{bottom:87.840000px;}
.y39{bottom:88.560000px;}
.y34{bottom:96.465000px;}
.y3d{bottom:100.260000px;}
.y79{bottom:102.600000px;}
.y4a{bottom:105.660000px;}
.y49{bottom:113.580000px;}
.y33{bottom:119.505000px;}
.y3c{bottom:122.070000px;}
.y78{bottom:125.820000px;}
.ya5{bottom:126.180000px;}
.y48{bottom:129.450000px;}
.y32{bottom:142.410000px;}
.y47{bottom:144.930000px;}
.y77{bottom:151.920000px;}
.ya4{bottom:152.280000px;}
.y31{bottom:160.410000px;}
.y46{bottom:176.070000px;}
.y76{bottom:178.020000px;}
.ya3{bottom:178.380000px;}
.y30{bottom:181.290000px;}
.y3b{bottom:184.350000px;}
.y45{bottom:191.190000px;}
.y3a{bottom:194.970000px;}
.y75{bottom:201.240000px;}
.ya2{bottom:204.660000px;}
.y2f{bottom:204.870000px;}
.yc7{bottom:207.210000px;}
.y74{bottom:221.250000px;}
.y2e{bottom:225.570000px;}
.yc6{bottom:227.370000px;}
.ya1{bottom:230.790000px;}
.y73{bottom:244.290000px;}
.y2d{bottom:246.450000px;}
.yc5{bottom:250.410000px;}
.ya0{bottom:256.890000px;}
.y72{bottom:267.510000px;}
.y2c{bottom:269.850000px;}
.yc4{bottom:276.510000px;}
.y9f{bottom:282.990000px;}
.y71{bottom:287.670000px;}
.y1d{bottom:289.470000px;}
.y2b{bottom:293.430000px;}
.yc3{bottom:302.610000px;}
.y9e{bottom:309.090000px;}
.y70{bottom:310.710000px;}
.yf{bottom:313.425000px;}
.y1c{bottom:313.590000px;}
.y2a{bottom:317.010000px;}
.yc2{bottom:328.890000px;}
.y9d{bottom:335.370000px;}
.y6f{bottom:336.810000px;}
.y1b{bottom:337.710000px;}
.y29{bottom:340.410000px;}
.yc1{bottom:354.990000px;}
.y9c{bottom:358.410000px;}
.y1a{bottom:361.830000px;}
.y6e{bottom:362.910000px;}
.y28{bottom:364.020000px;}
.yc0{bottom:381.090000px;}
.y9b{bottom:381.450000px;}
.y19{bottom:385.980000px;}
.y27{bottom:387.600000px;}
.y6d{bottom:389.010000px;}
.ybf{bottom:407.190000px;}
.y9a{bottom:407.730000px;}
.y18{bottom:410.100000px;}
.y26{bottom:411.000000px;}
.y6c{bottom:415.290000px;}
.y99{bottom:430.770000px;}
.ybe{bottom:433.290000px;}
.y17{bottom:434.400000px;}
.y25{bottom:434.580000px;}
.y6b{bottom:438.330000px;}
.y98{bottom:450.975000px;}
.y24{bottom:458.160000px;}
.y16{bottom:458.520000px;}
.ybd{bottom:459.435000px;}
.y6a{bottom:461.415000px;}
.y97{bottom:474.015000px;}
.y23{bottom:481.560000px;}
.y15{bottom:482.640000px;}
.y69{bottom:484.635000px;}
.ybc{bottom:485.715000px;}
.y96{bottom:500.115000px;}
.y22{bottom:505.140000px;}
.y14{bottom:506.760000px;}
.y68{bottom:507.675000px;}
.ybb{bottom:511.815000px;}
.y95{bottom:526.215000px;}
.y21{bottom:528.720000px;}
.y13{bottom:530.880000px;}
.y67{bottom:533.955000px;}
.yba{bottom:537.915000px;}
.y20{bottom:552.120000px;}
.y94{bottom:552.495000px;}
.y12{bottom:555.000000px;}
.y66{bottom:560.055000px;}
.yb9{bottom:564.015000px;}
.y1f{bottom:575.700000px;}
.y93{bottom:578.595000px;}
.y11{bottom:579.120000px;}
.y65{bottom:586.155000px;}
.yb8{bottom:590.115000px;}
.y1e{bottom:596.940000px;}
.y92{bottom:598.395000px;}
.y10{bottom:603.465000px;}
.y64{bottom:612.255000px;}
.yb7{bottom:616.395000px;}
.y91{bottom:624.495000px;}
.y63{bottom:638.355000px;}
.yb6{bottom:642.495000px;}
.y90{bottom:650.595000px;}
.y62{bottom:664.455000px;}
.yb5{bottom:668.595000px;}
.y8f{bottom:676.905000px;}
.y61{bottom:690.765000px;}
.yb4{bottom:694.725000px;}
.y86{bottom:703.005000px;}
.y60{bottom:713.805000px;}
.yb3{bottom:717.945000px;}
.y5f{bottom:736.845000px;}
.yb2{bottom:740.985000px;}
.y5e{bottom:763.125000px;}
.yb1{bottom:767.085000px;}
.y5d{bottom:789.225000px;}
.yb0{bottom:790.305000px;}
.y85{bottom:801.285000px;}
.yaf{bottom:810.285000px;}
.y5c{bottom:812.265000px;}
.y84{bottom:827.385000px;}
.yae{bottom:830.445000px;}
.y5b{bottom:835.485000px;}
.yad{bottom:850.605000px;}
.y83{bottom:853.485000px;}
.y5a{bottom:861.585000px;}
.yac{bottom:873.645000px;}
.y82{bottom:879.585000px;}
.y59{bottom:887.685000px;}
.yab{bottom:899.745000px;}
.y81{bottom:902.805000px;}
.y58{bottom:913.830000px;}
.y80{bottom:923.010000px;}
.ye{bottom:928.950000px;}
.yd{bottom:937.770000px;}
.y57{bottom:939.930000px;}
.y7f{bottom:942.990000px;}
.yaa{bottom:946.050000px;}
.y7e{bottom:963.150000px;}
.yc{bottom:963.870000px;}
.y56{bottom:966.210000px;}
.ya9{bottom:972.150000px;}
.y7d{bottom:986.190000px;}
.yb{bottom:989.970000px;}
.y55{bottom:992.310000px;}
.ya8{bottom:998.250000px;}
.y7c{bottom:1012.290000px;}
.y54{bottom:1015.350000px;}
.ya{bottom:1016.070000px;}
.ya7{bottom:1021.470000px;}
.y7b{bottom:1035.510000px;}
.y53{bottom:1038.570000px;}
.y9{bottom:1040.910000px;}
.ya6{bottom:1041.630000px;}
.y7a{bottom:1058.550000px;}
.y52{bottom:1061.610000px;}
.y8{bottom:1072.230000px;}
.y4f{bottom:1075.680000px;}
.y51{bottom:1084.650000px;}
.y6{bottom:1108.410000px;}
.y1{bottom:1123.890000px;}
.ha{height:4.165313px;}
.h16{height:12.006914px;}
.h1d{height:25.365000px;}
.h1b{height:25.380000px;}
.h1c{height:25.410000px;}
.h18{height:27.540000px;}
.h13{height:29.678906px;}
.h12{height:35.332031px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.h14{height:52.971680px;}
.h15{height:54.421875px;}
.hf{height:57.243164px;}
.h7{height:57.324375px;}
.h17{height:58.621992px;}
.h6{height:58.651172px;}
.h10{height:60.338990px;}
.h9{height:63.349102px;}
.h19{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.he{height:66.775148px;}
.h2{height:84.990000px;}
.h8{height:89.299336px;}
.h1a{height:90.540000px;}
.h4{height:117.180000px;}
.h11{height:224.130000px;}
.hb{height:612.990000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:50.565000px;}
.w2{width:104.074500px;}
.w8{width:130.701000px;}
.w4{width:132.694500px;}
.wa{width:161.295000px;}
.w9{width:161.310000px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc7{left:6.876000px;}
.x19{left:8.134500px;}
.x4{left:12.765000px;}
.x18{left:16.054500px;}
.xc3{left:18.214500px;}
.x16{left:19.654500px;}
.x17{left:26.134500px;}
.xc4{left:29.194500px;}
.x38{left:30.765000px;}
.xa1{left:32.025000px;}
.x10{left:33.334500px;}
.x6{left:35.985000px;}
.x39{left:38.145000px;}
.x3a{left:43.005000px;}
.x1b{left:44.985000px;}
.x68{left:46.290000px;}
.xac{left:47.370000px;}
.x95{left:49.530000px;}
.x11{left:50.794500px;}
.x8a{left:53.310000px;}
.xf{left:55.114500px;}
.x78{left:57.090000px;}
.x1c{left:59.430000px;}
.x79{left:63.750000px;}
.xc5{left:66.268500px;}
.x52{left:69.150000px;}
.x7a{left:71.850000px;}
.x14{left:73.288500px;}
.x53{left:75.090000px;}
.x1{left:78.301500px;}
.x15{left:79.588500px;}
.x13{left:82.468500px;}
.x7{left:86.400000px;}
.xb2{left:87.690000px;}
.x3b{left:89.490000px;}
.xad{left:90.570000px;}
.x3c{left:94.350000px;}
.x2{left:95.788500px;}
.x69{left:97.050000px;}
.x6a{left:100.830000px;}
.x54{left:103.350000px;}
.xc2{left:106.768500px;}
.x55{left:109.290000px;}
.xcb{left:113.436000px;}
.x1d{left:116.490000px;}
.xae{left:120.270000px;}
.x1e{left:121.350000px;}
.x12{left:124.588500px;}
.xb3{left:126.750000px;}
.x3d{left:130.530000px;}
.x6b{left:134.130000px;}
.x7b{left:135.930000px;}
.x56{left:138.450000px;}
.x5{left:141.330000px;}
.x7c{left:142.590000px;}
.x57{left:144.390000px;}
.xa2{left:147.630000px;}
.x8b{left:151.230000px;}
.x1f{left:154.650000px;}
.x20{left:159.330000px;}
.x96{left:169.770000px;}
.xaf{left:174.270000px;}
.x97{left:177.870000px;}
.xc6{left:180.390000px;}
.x3{left:182.385000px;}
.x7d{left:190.290000px;}
.x6c{left:191.910000px;}
.x21{left:193.710000px;}
.x6d{left:195.870000px;}
.x7e{left:196.950000px;}
.x22{left:198.390000px;}
.xa3{left:201.090000px;}
.x3e{left:204.690000px;}
.x58{left:207.750000px;}
.x3f{left:209.550000px;}
.xa4{left:210.810000px;}
.x59{left:213.690000px;}
.xb4{left:216.570000px;}
.x1a{left:219.105000px;}
.x6e{left:221.250000px;}
.x8c{left:223.800000px;}
.x6f{left:225.240000px;}
.x98{left:226.680000px;}
.x23{left:229.200000px;}
.x7f{left:231.720000px;}
.x24{left:233.880000px;}
.xb0{left:236.760000px;}
.x40{left:238.560000px;}
.x41{left:243.420000px;}
.xc8{left:244.845000px;}
.x5a{left:246.840000px;}
.x5b{left:252.780000px;}
.x80{left:254.400000px;}
.xa5{left:255.840000px;}
.x99{left:261.600000px;}
.x8d{left:263.040000px;}
.x81{left:264.840000px;}
.x70{left:267.360000px;}
.x9a{left:269.700000px;}
.x71{left:271.140000px;}
.x25{left:272.400000px;}
.xb1{left:275.640000px;}
.x26{left:277.260000px;}
.x42{left:279.240000px;}
.x43{left:284.100000px;}
.xa6{left:285.180000px;}
.xa7{left:294.720000px;}
.x5c{left:301.740000px;}
.x27{left:303.180000px;}
.x5d{left:307.680000px;}
.xb9{left:309.120000px;}
.x28{left:311.820000px;}
.x72{left:314.340000px;}
.xba{left:316.680000px;}
.x44{left:318.480000px;}
.x8e{left:320.100000px;}
.x45{left:323.340000px;}
.xc0{left:326.220000px;}
.xa8{left:327.300000px;}
.xb7{left:329.280000px;}
.x82{left:330.900000px;}
.xb8{left:333.060000px;}
.xc1{left:334.860000px;}
.x73{left:337.740000px;}
.x74{left:345.480000px;}
.x46{left:352.320000px;}
.x75{left:356.640000px;}
.x29{left:359.520000px;}
.x47{left:360.960000px;}
.xb5{left:362.220000px;}
.x2a{left:364.380000px;}
.x8f{left:365.460000px;}
.xbb{left:366.900000px;}
.x90{left:369.240000px;}
.x5e{left:371.220000px;}
.x9b{left:373.920000px;}
.xc9{left:376.275000px;}
.x5f{left:390.660000px;}
.x60{left:396.600000px;}
.xa9{left:398.265000px;}
.x48{left:400.245000px;}
.x76{left:401.505000px;}
.x83{left:404.025000px;}
.x49{left:405.105000px;}
.x91{left:408.525000px;}
.xbc{left:410.145000px;}
.xbd{left:417.705000px;}
.x2b{left:425.085000px;}
.x2c{left:429.945000px;}
.x4a{left:431.025000px;}
.x4b{left:435.885000px;}
.x84{left:437.865000px;}
.x9c{left:439.305000px;}
.x61{left:448.305000px;}
.xbe{left:450.105000px;}
.x2d{left:451.365000px;}
.x77{left:452.805000px;}
.x62{left:454.245000px;}
.x2e{left:456.225000px;}
.xbf{left:457.665000px;}
.x9d{left:458.925000px;}
.x4c{left:465.045000px;}
.x92{left:467.925000px;}
.x4d{left:469.905000px;}
.x93{left:471.705000px;}
.x2f{left:474.045000px;}
.xb6{left:479.805000px;}
.x30{left:482.505000px;}
.x63{left:489.345000px;}
.x85{left:493.125000px;}
.x9e{left:497.445000px;}
.x86{left:499.785000px;}
.x4e{left:501.585000px;}
.xaa{left:508.605000px;}
.x4f{left:510.225000px;}
.x31{left:513.105000px;}
.x32{left:517.785000px;}
.x64{left:519.225000px;}
.x65{left:525.165000px;}
.x87{left:528.045000px;}
.x33{left:535.605000px;}
.x94{left:537.045000px;}
.xca{left:538.320000px;}
.x34{left:540.465000px;}
.x50{left:541.545000px;}
.xc{left:544.065000px;}
.x9f{left:545.145000px;}
.x51{left:546.405000px;}
.x35{left:548.385000px;}
.xa0{left:549.465000px;}
.xab{left:551.265000px;}
.x36{left:553.245000px;}
.x88{left:554.865000px;}
.x66{left:558.825000px;}
.x89{left:561.525000px;}
.x67{left:584.775000px;}
.x37{left:588.375000px;}
.xd{left:589.605000px;}
.xb{left:607.605000px;}
.xa{left:660.390000px;}
.x9{left:766.050000px;}
.x8{left:784.230000px;}
.xe{left:806.760000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls64{letter-spacing:-1.328000pt;}
.ls15{letter-spacing:-0.720000pt;}
.ls65{letter-spacing:-0.688000pt;}
.ls1a{letter-spacing:-0.573421pt;}
.ls63{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.288000pt;}
.ls67{letter-spacing:-0.281600pt;}
.ls1d{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.249067pt;}
.ls4b{letter-spacing:-0.230933pt;}
.ls1f{letter-spacing:-0.203733pt;}
.ls16{letter-spacing:-0.201067pt;}
.ls21{letter-spacing:-0.096000pt;}
.ls5d{letter-spacing:-0.094933pt;}
.ls4d{letter-spacing:-0.086933pt;}
.ls13{letter-spacing:-0.066667pt;}
.ls20{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls17{letter-spacing:-0.016000pt;}
.ls5e{letter-spacing:-0.010880pt;}
.lsf{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.032000pt;}
.ls49{letter-spacing:0.037760pt;}
.ls5c{letter-spacing:0.040960pt;}
.ls1b{letter-spacing:0.048000pt;}
.ls23{letter-spacing:0.050596pt;}
.ls45{letter-spacing:0.067200pt;}
.ls3{letter-spacing:0.080000pt;}
.ls3e{letter-spacing:0.080640pt;}
.ls4{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.101192pt;}
.ls48{letter-spacing:0.128000pt;}
.ls66{letter-spacing:0.146133pt;}
.lsc{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.183467pt;}
.ls54{letter-spacing:0.192000pt;}
.ls4c{letter-spacing:0.204267pt;}
.ls4a{letter-spacing:0.214400pt;}
.ls3c{letter-spacing:0.231040pt;}
.ls31{letter-spacing:0.244267pt;}
.ls35{letter-spacing:0.265600pt;}
.ls22{letter-spacing:0.269845pt;}
.ls38{letter-spacing:0.284800pt;}
.ls3f{letter-spacing:0.294933pt;}
.ls2a{letter-spacing:0.300800pt;}
.ls1{letter-spacing:0.303360pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.334933pt;}
.ls53{letter-spacing:0.359040pt;}
.ls26{letter-spacing:0.367360pt;}
.ls47{letter-spacing:0.367467pt;}
.ls3d{letter-spacing:0.391040pt;}
.ls1e{letter-spacing:0.409067pt;}
.ls46{letter-spacing:0.436267pt;}
.ls60{letter-spacing:0.495360pt;}
.ls36{letter-spacing:0.552960pt;}
.ls5f{letter-spacing:0.592000pt;}
.ls2{letter-spacing:0.592640pt;}
.ls18{letter-spacing:0.672000pt;}
.ls29{letter-spacing:0.699307pt;}
.ls4e{letter-spacing:1.232000pt;}
.ls28{letter-spacing:1.232640pt;}
.lsa{letter-spacing:1.872640pt;}
.ls9{letter-spacing:2.512640pt;}
.ls40{letter-spacing:2.619307pt;}
.ls2b{letter-spacing:2.672640pt;}
.ls41{letter-spacing:3.131307pt;}
.ls25{letter-spacing:3.152640pt;}
.ls51{letter-spacing:3.312640pt;}
.ls24{letter-spacing:3.792640pt;}
.ls37{letter-spacing:3.899307pt;}
.ls27{letter-spacing:3.952640pt;}
.ls8{letter-spacing:4.432640pt;}
.ls32{letter-spacing:4.592640pt;}
.ls30{letter-spacing:5.072640pt;}
.ls33{letter-spacing:5.179307pt;}
.ls52{letter-spacing:5.712640pt;}
.ls2d{letter-spacing:6.352640pt;}
.ls2c{letter-spacing:6.992640pt;}
.ls2e{letter-spacing:7.099307pt;}
.ls2f{letter-spacing:7.152640pt;}
.ls57{letter-spacing:7.632640pt;}
.ls58{letter-spacing:7.739307pt;}
.ls61{letter-spacing:8.272640pt;}
.ls42{letter-spacing:8.912640pt;}
.ls44{letter-spacing:9.019307pt;}
.ls43{letter-spacing:9.072640pt;}
.ls6{letter-spacing:9.552640pt;}
.ls7{letter-spacing:10.192640pt;}
.ls34{letter-spacing:10.832640pt;}
.lse{letter-spacing:11.418491pt;}
.ls55{letter-spacing:11.472640pt;}
.lsd{letter-spacing:11.569604pt;}
.ls56{letter-spacing:12.752640pt;}
.ls5b{letter-spacing:13.392640pt;}
.ls59{letter-spacing:14.032640pt;}
.ls5a{letter-spacing:14.192640pt;}
.ls4f{letter-spacing:14.672640pt;}
.ls50{letter-spacing:15.312640pt;}
.ls3a{letter-spacing:17.232640pt;}
.ls3b{letter-spacing:17.392640pt;}
.ls39{letter-spacing:17.872640pt;}
.ls62{letter-spacing:37.072640pt;}
.ws15{word-spacing:-15.566009pt;}
.ws17{word-spacing:-15.203627pt;}
.wse{word-spacing:-15.176427pt;}
.ws6{word-spacing:-15.102293pt;}
.ws1d{word-spacing:-15.068160pt;}
.ws23{word-spacing:-15.062293pt;}
.ws1a{word-spacing:-15.052160pt;}
.ws20{word-spacing:-15.032960pt;}
.ws1f{word-spacing:-15.011627pt;}
.ws1b{word-spacing:-14.981760pt;}
.ws21{word-spacing:-14.971627pt;}
.ws4{word-spacing:-14.950827pt;}
.ws27{word-spacing:-14.913493pt;}
.ws18{word-spacing:-14.895360pt;}
.ws1e{word-spacing:-14.834560pt;}
.ws19{word-spacing:-14.805120pt;}
.ws3{word-spacing:-14.767360pt;}
.ws24{word-spacing:-14.756480pt;}
.ws0{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.700693pt;}
.ws22{word-spacing:-14.680427pt;}
.ws29{word-spacing:-14.672427pt;}
.wsf{word-spacing:-14.563627pt;}
.ws1c{word-spacing:-14.536427pt;}
.ws2{word-spacing:-14.518293pt;}
.ws28{word-spacing:-14.485760pt;}
.ws13{word-spacing:-14.335515pt;}
.ws26{word-spacing:-14.255360pt;}
.ws14{word-spacing:-14.116266pt;}
.ws12{word-spacing:-14.065670pt;}
.ws1{word-spacing:-13.600000pt;}
.ws25{word-spacing:-13.536000pt;}
.wsb{word-spacing:-13.424000pt;}
.wsc{word-spacing:-13.376000pt;}
.ws9{word-spacing:-13.344000pt;}
.wsa{word-spacing:-13.328000pt;}
.wsd{word-spacing:-13.088000pt;}
.ws11{word-spacing:-11.904000pt;}
.ws8{word-spacing:-9.280000pt;}
.ws7{word-spacing:-9.078933pt;}
.ws10{word-spacing:-7.936000pt;}
.ws16{word-spacing:0.000000pt;}
._2{margin-left:-11.367893pt;}
._f{margin-left:-8.063573pt;}
._7{margin-left:-7.056000pt;}
._5{margin-left:-3.936000pt;}
._9{margin-left:-2.536107pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._4{width:2.083200pt;}
._6{width:3.792000pt;}
._b{width:5.014827pt;}
._a{width:5.968000pt;}
._8{width:7.008000pt;}
._d{width:8.364800pt;}
._11{width:9.749120pt;}
._3{width:10.782720pt;}
._c{width:12.080000pt;}
._14{width:13.616427pt;}
._13{width:16.067627pt;}
._15{width:17.014827pt;}
._10{width:18.333013pt;}
._12{width:147.920640pt;}
._e{width:162.625280pt;}
.fs5{font-size:5.120000pt;}
.fsc{font-size:10.880000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs9{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs7{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:2.400000pt;}
.y5{bottom:3.680000pt;}
.y50{bottom:4.453333pt;}
.y38{bottom:6.226667pt;}
.y8b{bottom:7.200000pt;}
.y2{bottom:8.800000pt;}
.y43{bottom:9.120000pt;}
.y8e{bottom:15.200000pt;}
.y4{bottom:20.506667pt;}
.y4e{bottom:21.280000pt;}
.y8a{bottom:28.160000pt;}
.y37{bottom:29.426667pt;}
.y42{bottom:35.840000pt;}
.y87{bottom:36.000000pt;}
.y8d{bottom:36.320000pt;}
.y4d{bottom:39.520000pt;}
.y3{bottom:42.746667pt;}
.y41{bottom:45.760000pt;}
.y89{bottom:46.720000pt;}
.y36{bottom:50.066667pt;}
.y7{bottom:51.200000pt;}
.y40{bottom:55.680000pt;}
.y8c{bottom:57.120000pt;}
.y4c{bottom:61.120000pt;}
.y88{bottom:65.280000pt;}
.y3f{bottom:65.920000pt;}
.y35{bottom:67.826667pt;}
.y3e{bottom:77.600000pt;}
.y4b{bottom:78.080000pt;}
.y39{bottom:78.720000pt;}
.y34{bottom:85.746667pt;}
.y3d{bottom:89.120000pt;}
.y79{bottom:91.200000pt;}
.y4a{bottom:93.920000pt;}
.y49{bottom:100.960000pt;}
.y33{bottom:106.226667pt;}
.y3c{bottom:108.506667pt;}
.y78{bottom:111.840000pt;}
.ya5{bottom:112.160000pt;}
.y48{bottom:115.066667pt;}
.y32{bottom:126.586667pt;}
.y47{bottom:128.826667pt;}
.y77{bottom:135.040000pt;}
.ya4{bottom:135.360000pt;}
.y31{bottom:142.586667pt;}
.y46{bottom:156.506667pt;}
.y76{bottom:158.240000pt;}
.ya3{bottom:158.560000pt;}
.y30{bottom:161.146667pt;}
.y3b{bottom:163.866667pt;}
.y45{bottom:169.946667pt;}
.y3a{bottom:173.306667pt;}
.y75{bottom:178.880000pt;}
.ya2{bottom:181.920000pt;}
.y2f{bottom:182.106667pt;}
.yc7{bottom:184.186667pt;}
.y74{bottom:196.666667pt;}
.y2e{bottom:200.506667pt;}
.yc6{bottom:202.106667pt;}
.ya1{bottom:205.146667pt;}
.y73{bottom:217.146667pt;}
.y2d{bottom:219.066667pt;}
.yc5{bottom:222.586667pt;}
.ya0{bottom:228.346667pt;}
.y72{bottom:237.786667pt;}
.y2c{bottom:239.866667pt;}
.yc4{bottom:245.786667pt;}
.y9f{bottom:251.546667pt;}
.y71{bottom:255.706667pt;}
.y1d{bottom:257.306667pt;}
.y2b{bottom:260.826667pt;}
.yc3{bottom:268.986667pt;}
.y9e{bottom:274.746667pt;}
.y70{bottom:276.186667pt;}
.yf{bottom:278.600000pt;}
.y1c{bottom:278.746667pt;}
.y2a{bottom:281.786667pt;}
.yc2{bottom:292.346667pt;}
.y9d{bottom:298.106667pt;}
.y6f{bottom:299.386667pt;}
.y1b{bottom:300.186667pt;}
.y29{bottom:302.586667pt;}
.yc1{bottom:315.546667pt;}
.y9c{bottom:318.586667pt;}
.y1a{bottom:321.626667pt;}
.y6e{bottom:322.586667pt;}
.y28{bottom:323.573333pt;}
.yc0{bottom:338.746667pt;}
.y9b{bottom:339.066667pt;}
.y19{bottom:343.093333pt;}
.y27{bottom:344.533333pt;}
.y6d{bottom:345.786667pt;}
.ybf{bottom:361.946667pt;}
.y9a{bottom:362.426667pt;}
.y18{bottom:364.533333pt;}
.y26{bottom:365.333333pt;}
.y6c{bottom:369.146667pt;}
.y99{bottom:382.906667pt;}
.ybe{bottom:385.146667pt;}
.y17{bottom:386.133333pt;}
.y25{bottom:386.293333pt;}
.y6b{bottom:389.626667pt;}
.y98{bottom:400.866667pt;}
.y24{bottom:407.253333pt;}
.y16{bottom:407.573333pt;}
.ybd{bottom:408.386667pt;}
.y6a{bottom:410.146667pt;}
.y97{bottom:421.346667pt;}
.y23{bottom:428.053333pt;}
.y15{bottom:429.013333pt;}
.y69{bottom:430.786667pt;}
.ybc{bottom:431.746667pt;}
.y96{bottom:444.546667pt;}
.y22{bottom:449.013333pt;}
.y14{bottom:450.453333pt;}
.y68{bottom:451.266667pt;}
.ybb{bottom:454.946667pt;}
.y95{bottom:467.746667pt;}
.y21{bottom:469.973333pt;}
.y13{bottom:471.893333pt;}
.y67{bottom:474.626667pt;}
.yba{bottom:478.146667pt;}
.y20{bottom:490.773333pt;}
.y94{bottom:491.106667pt;}
.y12{bottom:493.333333pt;}
.y66{bottom:497.826667pt;}
.yb9{bottom:501.346667pt;}
.y1f{bottom:511.733333pt;}
.y93{bottom:514.306667pt;}
.y11{bottom:514.773333pt;}
.y65{bottom:521.026667pt;}
.yb8{bottom:524.546667pt;}
.y1e{bottom:530.613333pt;}
.y92{bottom:531.906667pt;}
.y10{bottom:536.413333pt;}
.y64{bottom:544.226667pt;}
.yb7{bottom:547.906667pt;}
.y91{bottom:555.106667pt;}
.y63{bottom:567.426667pt;}
.yb6{bottom:571.106667pt;}
.y90{bottom:578.306667pt;}
.y62{bottom:590.626667pt;}
.yb5{bottom:594.306667pt;}
.y8f{bottom:601.693333pt;}
.y61{bottom:614.013333pt;}
.yb4{bottom:617.533333pt;}
.y86{bottom:624.893333pt;}
.y60{bottom:634.493333pt;}
.yb3{bottom:638.173333pt;}
.y5f{bottom:654.973333pt;}
.yb2{bottom:658.653333pt;}
.y5e{bottom:678.333333pt;}
.yb1{bottom:681.853333pt;}
.y5d{bottom:701.533333pt;}
.yb0{bottom:702.493333pt;}
.y85{bottom:712.253333pt;}
.yaf{bottom:720.253333pt;}
.y5c{bottom:722.013333pt;}
.y84{bottom:735.453333pt;}
.yae{bottom:738.173333pt;}
.y5b{bottom:742.653333pt;}
.yad{bottom:756.093333pt;}
.y83{bottom:758.653333pt;}
.y5a{bottom:765.853333pt;}
.yac{bottom:776.573333pt;}
.y82{bottom:781.853333pt;}
.y59{bottom:789.053333pt;}
.yab{bottom:799.773333pt;}
.y81{bottom:802.493333pt;}
.y58{bottom:812.293333pt;}
.y80{bottom:820.453333pt;}
.ye{bottom:825.733333pt;}
.yd{bottom:833.573333pt;}
.y57{bottom:835.493333pt;}
.y7f{bottom:838.213333pt;}
.yaa{bottom:840.933333pt;}
.y7e{bottom:856.133333pt;}
.yc{bottom:856.773333pt;}
.y56{bottom:858.853333pt;}
.ya9{bottom:864.133333pt;}
.y7d{bottom:876.613333pt;}
.yb{bottom:879.973333pt;}
.y55{bottom:882.053333pt;}
.ya8{bottom:887.333333pt;}
.y7c{bottom:899.813333pt;}
.y54{bottom:902.533333pt;}
.ya{bottom:903.173333pt;}
.ya7{bottom:907.973333pt;}
.y7b{bottom:920.453333pt;}
.y53{bottom:923.173333pt;}
.y9{bottom:925.253333pt;}
.ya6{bottom:925.893333pt;}
.y7a{bottom:940.933333pt;}
.y52{bottom:943.653333pt;}
.y8{bottom:953.093333pt;}
.y4f{bottom:956.160000pt;}
.y51{bottom:964.133333pt;}
.y6{bottom:985.253333pt;}
.y1{bottom:999.013333pt;}
.ha{height:3.702500pt;}
.h16{height:10.672812pt;}
.h1d{height:22.546667pt;}
.h1b{height:22.560000pt;}
.h1c{height:22.586667pt;}
.h18{height:24.480000pt;}
.h13{height:26.381250pt;}
.h12{height:31.406250pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.h14{height:47.085938pt;}
.h15{height:48.375000pt;}
.hf{height:50.882812pt;}
.h7{height:50.955000pt;}
.h17{height:52.108438pt;}
.h6{height:52.134375pt;}
.h10{height:53.634657pt;}
.h9{height:56.310313pt;}
.h19{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.he{height:59.355688pt;}
.h2{height:75.546667pt;}
.h8{height:79.377187pt;}
.h1a{height:80.480000pt;}
.h4{height:104.160000pt;}
.h11{height:199.226667pt;}
.hb{height:544.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:44.946667pt;}
.w2{width:92.510667pt;}
.w8{width:116.178667pt;}
.w4{width:117.950667pt;}
.wa{width:143.373333pt;}
.w9{width:143.386667pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc7{left:6.112000pt;}
.x19{left:7.230667pt;}
.x4{left:11.346667pt;}
.x18{left:14.270667pt;}
.xc3{left:16.190667pt;}
.x16{left:17.470667pt;}
.x17{left:23.230667pt;}
.xc4{left:25.950667pt;}
.x38{left:27.346667pt;}
.xa1{left:28.466667pt;}
.x10{left:29.630667pt;}
.x6{left:31.986667pt;}
.x39{left:33.906667pt;}
.x3a{left:38.226667pt;}
.x1b{left:39.986667pt;}
.x68{left:41.146667pt;}
.xac{left:42.106667pt;}
.x95{left:44.026667pt;}
.x11{left:45.150667pt;}
.x8a{left:47.386667pt;}
.xf{left:48.990667pt;}
.x78{left:50.746667pt;}
.x1c{left:52.826667pt;}
.x79{left:56.666667pt;}
.xc5{left:58.905333pt;}
.x52{left:61.466667pt;}
.x7a{left:63.866667pt;}
.x14{left:65.145333pt;}
.x53{left:66.746667pt;}
.x1{left:69.601333pt;}
.x15{left:70.745333pt;}
.x13{left:73.305333pt;}
.x7{left:76.800000pt;}
.xb2{left:77.946667pt;}
.x3b{left:79.546667pt;}
.xad{left:80.506667pt;}
.x3c{left:83.866667pt;}
.x2{left:85.145333pt;}
.x69{left:86.266667pt;}
.x6a{left:89.626667pt;}
.x54{left:91.866667pt;}
.xc2{left:94.905333pt;}
.x55{left:97.146667pt;}
.xcb{left:100.832000pt;}
.x1d{left:103.546667pt;}
.xae{left:106.906667pt;}
.x1e{left:107.866667pt;}
.x12{left:110.745333pt;}
.xb3{left:112.666667pt;}
.x3d{left:116.026667pt;}
.x6b{left:119.226667pt;}
.x7b{left:120.826667pt;}
.x56{left:123.066667pt;}
.x5{left:125.626667pt;}
.x7c{left:126.746667pt;}
.x57{left:128.346667pt;}
.xa2{left:131.226667pt;}
.x8b{left:134.426667pt;}
.x1f{left:137.466667pt;}
.x20{left:141.626667pt;}
.x96{left:150.906667pt;}
.xaf{left:154.906667pt;}
.x97{left:158.106667pt;}
.xc6{left:160.346667pt;}
.x3{left:162.120000pt;}
.x7d{left:169.146667pt;}
.x6c{left:170.586667pt;}
.x21{left:172.186667pt;}
.x6d{left:174.106667pt;}
.x7e{left:175.066667pt;}
.x22{left:176.346667pt;}
.xa3{left:178.746667pt;}
.x3e{left:181.946667pt;}
.x58{left:184.666667pt;}
.x3f{left:186.266667pt;}
.xa4{left:187.386667pt;}
.x59{left:189.946667pt;}
.xb4{left:192.506667pt;}
.x1a{left:194.760000pt;}
.x6e{left:196.666667pt;}
.x8c{left:198.933333pt;}
.x6f{left:200.213333pt;}
.x98{left:201.493333pt;}
.x23{left:203.733333pt;}
.x7f{left:205.973333pt;}
.x24{left:207.893333pt;}
.xb0{left:210.453333pt;}
.x40{left:212.053333pt;}
.x41{left:216.373333pt;}
.xc8{left:217.640000pt;}
.x5a{left:219.413333pt;}
.x5b{left:224.693333pt;}
.x80{left:226.133333pt;}
.xa5{left:227.413333pt;}
.x99{left:232.533333pt;}
.x8d{left:233.813333pt;}
.x81{left:235.413333pt;}
.x70{left:237.653333pt;}
.x9a{left:239.733333pt;}
.x71{left:241.013333pt;}
.x25{left:242.133333pt;}
.xb1{left:245.013333pt;}
.x26{left:246.453333pt;}
.x42{left:248.213333pt;}
.x43{left:252.533333pt;}
.xa6{left:253.493333pt;}
.xa7{left:261.973333pt;}
.x5c{left:268.213333pt;}
.x27{left:269.493333pt;}
.x5d{left:273.493333pt;}
.xb9{left:274.773333pt;}
.x28{left:277.173333pt;}
.x72{left:279.413333pt;}
.xba{left:281.493333pt;}
.x44{left:283.093333pt;}
.x8e{left:284.533333pt;}
.x45{left:287.413333pt;}
.xc0{left:289.973333pt;}
.xa8{left:290.933333pt;}
.xb7{left:292.693333pt;}
.x82{left:294.133333pt;}
.xb8{left:296.053333pt;}
.xc1{left:297.653333pt;}
.x73{left:300.213333pt;}
.x74{left:307.093333pt;}
.x46{left:313.173333pt;}
.x75{left:317.013333pt;}
.x29{left:319.573333pt;}
.x47{left:320.853333pt;}
.xb5{left:321.973333pt;}
.x2a{left:323.893333pt;}
.x8f{left:324.853333pt;}
.xbb{left:326.133333pt;}
.x90{left:328.213333pt;}
.x5e{left:329.973333pt;}
.x9b{left:332.373333pt;}
.xc9{left:334.466667pt;}
.x5f{left:347.253333pt;}
.x60{left:352.533333pt;}
.xa9{left:354.013333pt;}
.x48{left:355.773333pt;}
.x76{left:356.893333pt;}
.x83{left:359.133333pt;}
.x49{left:360.093333pt;}
.x91{left:363.133333pt;}
.xbc{left:364.573333pt;}
.xbd{left:371.293333pt;}
.x2b{left:377.853333pt;}
.x2c{left:382.173333pt;}
.x4a{left:383.133333pt;}
.x4b{left:387.453333pt;}
.x84{left:389.213333pt;}
.x9c{left:390.493333pt;}
.x61{left:398.493333pt;}
.xbe{left:400.093333pt;}
.x2d{left:401.213333pt;}
.x77{left:402.493333pt;}
.x62{left:403.773333pt;}
.x2e{left:405.533333pt;}
.xbf{left:406.813333pt;}
.x9d{left:407.933333pt;}
.x4c{left:413.373333pt;}
.x92{left:415.933333pt;}
.x4d{left:417.693333pt;}
.x93{left:419.293333pt;}
.x2f{left:421.373333pt;}
.xb6{left:426.493333pt;}
.x30{left:428.893333pt;}
.x63{left:434.973333pt;}
.x85{left:438.333333pt;}
.x9e{left:442.173333pt;}
.x86{left:444.253333pt;}
.x4e{left:445.853333pt;}
.xaa{left:452.093333pt;}
.x4f{left:453.533333pt;}
.x31{left:456.093333pt;}
.x32{left:460.253333pt;}
.x64{left:461.533333pt;}
.x65{left:466.813333pt;}
.x87{left:469.373333pt;}
.x33{left:476.093333pt;}
.x94{left:477.373333pt;}
.xca{left:478.506667pt;}
.x34{left:480.413333pt;}
.x50{left:481.373333pt;}
.xc{left:483.613333pt;}
.x9f{left:484.573333pt;}
.x51{left:485.693333pt;}
.x35{left:487.453333pt;}
.xa0{left:488.413333pt;}
.xab{left:490.013333pt;}
.x36{left:491.773333pt;}
.x88{left:493.213333pt;}
.x66{left:496.733333pt;}
.x89{left:499.133333pt;}
.x67{left:519.800000pt;}
.x37{left:523.000000pt;}
.xd{left:524.093333pt;}
.xb{left:540.093333pt;}
.xa{left:587.013333pt;}
.x9{left:680.933333pt;}
.x8{left:697.093333pt;}
.xe{left:717.120000pt;}
}




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