
    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_4b439de4b8b64c9ab426ecf1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_ae5a57cd7e08fd53ec910bba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.049805;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_b1588caf75bfda1e724ae4c4.woff2')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_db9219d534deacd23be8d002.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.072266;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_63675da9207fa7a623ea5a06.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_10d823021a16b5f6fffec53d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3e98bcca9af0b20f624e4cf6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9f0e8635c34c817e63612569.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.364258;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_6605057ec80fb9d745d6e360.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_90060bae93b2c3e67bfb2b19.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_3561fded5f3e51b5046c42f4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.191406;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_400181d1cac0257f49e4e7ee.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172363;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_3b2dd9b28d7d4d8f39a743bb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8e9d3b4790079ef6d72cbf2b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.977051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_dcaaf8163a25c66f93a25c2b.woff2')format("woff");}.fff{font-family:fff;line-height:0.977051;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_597845ecfe19dbc9047478c1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_790d4d096273ef5519e859a3.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_4f23de710b4aba722298df92.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.912109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_9de3594203f1ec438ebff55f.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_84c73ce984503b8c3029b385.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_07da9046403b502d4e432e7a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_10d0aebb176078956cd39642.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_8311c789da4d44a8589d5e96.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_3e87207967696685c122b9ef.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.877441;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:ff19;src:url('chunks/assets/font_6c4015cc536265cd3a20b652.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.880371;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:ff1a;src:url('chunks/assets/font_73eb0f3a05d6315b60fec409.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.000000px;}
.v4{vertical-align:-6.120000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v5{vertical-align:6.120000px;}
.v1{vertical-align:27.000000px;}
.ls16{letter-spacing:-0.840000px;}
.ls3c{letter-spacing:-0.329400px;}
.ls3e{letter-spacing:-0.263520px;}
.ls3d{letter-spacing:-0.197640px;}
.ls7{letter-spacing:-0.144000px;}
.ls3a{letter-spacing:-0.131760px;}
.ls9{letter-spacing:-0.072000px;}
.ls39{letter-spacing:-0.065880px;}
.ls14{letter-spacing:-0.036000px;}
.ls8{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.021960px;}
.ls33{letter-spacing:0.039528px;}
.ls1d{letter-spacing:0.046116px;}
.ls31{letter-spacing:0.052704px;}
.ls32{letter-spacing:0.059292px;}
.ls1c{letter-spacing:0.065880px;}
.lsd{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.090000px;}
.ls22{letter-spacing:0.105408px;}
.ls26{letter-spacing:0.111996px;}
.ls34{letter-spacing:0.131760px;}
.ls1{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.151524px;}
.lsb{letter-spacing:0.153600px;}
.ls2d{letter-spacing:0.158112px;}
.ls0{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.184464px;}
.ls1a{letter-spacing:0.197640px;}
.ls3b{letter-spacing:0.263520px;}
.ls15{letter-spacing:0.341400px;}
.ls5{letter-spacing:0.360000px;}
.ls3f{letter-spacing:0.395280px;}
.ls1e{letter-spacing:0.461160px;}
.ls2f{letter-spacing:0.757620px;}
.ls23{letter-spacing:0.790560px;}
.ls20{letter-spacing:1.910520px;}
.ls1b{letter-spacing:2.239920px;}
.ls24{letter-spacing:3.274236px;}
.ls25{letter-spacing:3.359880px;}
.ls17{letter-spacing:3.600000px;}
.ls27{letter-spacing:3.689280px;}
.ls21{letter-spacing:4.130676px;}
.lse{letter-spacing:4.680000px;}
.ls30{letter-spacing:4.743360px;}
.ls18{letter-spacing:5.863320px;}
.ls38{letter-spacing:5.883084px;}
.ls36{letter-spacing:6.917400px;}
.lsc{letter-spacing:7.200000px;}
.ls11{letter-spacing:7.290000px;}
.ls19{letter-spacing:8.037360px;}
.ls29{letter-spacing:8.762040px;}
.ls37{letter-spacing:9.091440px;}
.ls3{letter-spacing:9.720000px;}
.ls13{letter-spacing:10.530000px;}
.lsf{letter-spacing:11.520000px;}
.ls35{letter-spacing:18.446400px;}
.ls4{letter-spacing:19.080000px;}
.ls2e{letter-spacing:19.619064px;}
.ls2b{letter-spacing:21.588876px;}
.ls2c{letter-spacing:21.674520px;}
.lsa{letter-spacing:23.760000px;}
.ls6{letter-spacing:30.960000px;}
.ls10{letter-spacing:59.805360px;}
.ls1f{letter-spacing:195.927120px;}
.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;}
}
.wsd{word-spacing:-84.180000px;}
.wsa{word-spacing:-28.621200px;}
.wsc{word-spacing:-24.372000px;}
.wsf{word-spacing:-24.300000px;}
.wsb{word-spacing:-23.940000px;}
.ws11{word-spacing:-23.130000px;}
.ws13{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.928000px;}
.ws12{word-spacing:-17.856000px;}
.ws1e{word-spacing:-16.865280px;}
.ws17{word-spacing:-16.733520px;}
.ws18{word-spacing:-16.667640px;}
.ws9{word-spacing:-16.650000px;}
.ws1b{word-spacing:-16.601760px;}
.ws19{word-spacing:-16.535880px;}
.ws8{word-spacing:-16.470000px;}
.ws15{word-spacing:-16.404120px;}
.ws16{word-spacing:-16.338240px;}
.ws1a{word-spacing:-16.272360px;}
.ws0{word-spacing:-16.128000px;}
.ws6{word-spacing:-15.183600px;}
.ws3{word-spacing:-12.150000px;}
.ws7{word-spacing:-11.970000px;}
.wse{word-spacing:-1.905000px;}
.ws1f{word-spacing:-1.530000px;}
.ws28{word-spacing:-0.461160px;}
.ws1d{word-spacing:-0.263520px;}
.ws23{word-spacing:-0.197640px;}
.ws21{word-spacing:-0.144000px;}
.ws14{word-spacing:-0.072000px;}
.ws1c{word-spacing:-0.065880px;}
.ws4{word-spacing:0.000000px;}
.ws24{word-spacing:0.065880px;}
.ws20{word-spacing:0.072000px;}
.ws25{word-spacing:0.131760px;}
.ws22{word-spacing:0.144000px;}
.ws27{word-spacing:0.263520px;}
.ws26{word-spacing:0.329400px;}
.ws10{word-spacing:4.320000px;}
._2a{margin-left:-9.480048px;}
._27{margin-left:-6.724752px;}
._29{margin-left:-5.554176px;}
._26{margin-left:-4.219152px;}
._28{margin-left:-2.352048px;}
._3{margin-left:-1.032000px;}
._8{width:1.224000px;}
._e{width:2.880000px;}
._4{width:4.176000px;}
._16{width:5.616000px;}
._10{width:7.056000px;}
._0{width:8.712000px;}
._21{width:9.720000px;}
._2{width:10.728000px;}
._23{width:11.736000px;}
._1b{width:13.320000px;}
._a{width:15.264000px;}
._b{width:16.392000px;}
._24{width:18.356400px;}
._d{width:19.656000px;}
._f{width:20.736000px;}
._1f{width:21.744000px;}
._1a{width:22.752000px;}
._17{width:23.976000px;}
._13{width:25.056000px;}
._1d{width:26.568000px;}
._25{width:27.975012px;}
._1e{width:29.376000px;}
._19{width:30.672000px;}
._14{width:32.544000px;}
._1c{width:33.768000px;}
._1{width:36.360000px;}
._20{width:37.368000px;}
._6{width:39.528000px;}
._5{width:40.536000px;}
._7{width:44.856000px;}
._c{width:45.936000px;}
._18{width:49.176000px;}
._12{width:54.864000px;}
._11{width:55.872000px;}
._22{width:64.440000px;}
._15{width:73.800000px;}
._9{width:80.208000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:6.120000px;}
.fs10{font-size:11.880000px;}
.fs11{font-size:18.000000px;}
.fsd{font-size:24.120000px;}
.fsf{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:47.880000px;}
.fs4{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.180000px;}
.fs7{font-size:95.760000px;}
.fs6{font-size:95.880000px;}
.fsb{font-size:108.000000px;}
.fsc{font-size:120.240000px;}
.fs8{font-size:180.000000px;}
.fs9{font-size:180.120000px;}
.y0{bottom:0.000000px;}
.y59{bottom:3.240000px;}
.y35{bottom:3.472500px;}
.yf1{bottom:3.600000px;}
.y5f{bottom:3.690000px;}
.y58{bottom:3.780000px;}
.y44{bottom:3.870000px;}
.y5e{bottom:4.140000px;}
.y57{bottom:4.320000px;}
.y5b{bottom:4.410000px;}
.y3f{bottom:18.630000px;}
.y43{bottom:24.570000px;}
.y45{bottom:29.700000px;}
.y42{bottom:45.270000px;}
.y51{bottom:48.240000px;}
.y49{bottom:48.330000px;}
.y36{bottom:57.420000px;}
.y41{bottom:65.970000px;}
.y50{bottom:68.970000px;}
.y48{bottom:69.030000px;}
.y1{bottom:78.030000px;}
.y4f{bottom:89.670000px;}
.y47{bottom:89.730000px;}
.ybd{bottom:95.670000px;}
.y9f{bottom:97.054500px;}
.ya1{bottom:103.606500px;}
.yf2{bottom:104.670000px;}
.y33{bottom:105.840000px;}
.ye9{bottom:106.020000px;}
.y83{bottom:112.500000px;}
.yea{bottom:119.430000px;}
.y32{bottom:126.540000px;}
.y72{bottom:126.630000px;}
.yf0{bottom:128.610000px;}
.y82{bottom:131.400000px;}
.y31{bottom:147.240000px;}
.y71{bottom:147.330000px;}
.yef{bottom:147.592530px;}
.y81{bottom:150.390000px;}
.yee{bottom:166.500090px;}
.y30{bottom:167.940000px;}
.y70{bottom:168.030000px;}
.y80{bottom:169.380000px;}
.yec{bottom:184.050000px;}
.yed{bottom:185.490000px;}
.y7f{bottom:188.370000px;}
.y2f{bottom:188.640000px;}
.y6f{bottom:188.730000px;}
.yeb{bottom:204.750000px;}
.y7e{bottom:207.360000px;}
.y2e{bottom:209.340000px;}
.y6e{bottom:209.430000px;}
.y7d{bottom:226.290000px;}
.y2d{bottom:230.070000px;}
.y6d{bottom:230.160000px;}
.ye8{bottom:244.260000px;}
.y7c{bottom:245.280000px;}
.y2c{bottom:250.770000px;}
.y6c{bottom:250.860000px;}
.ye7{bottom:260.730090px;}
.y7b{bottom:264.270000px;}
.y2b{bottom:271.470000px;}
.y6b{bottom:271.560000px;}
.ye6{bottom:279.720000px;}
.y7a{bottom:283.260000px;}
.y2a{bottom:292.170000px;}
.y6a{bottom:292.260000px;}
.ye5{bottom:300.600000px;}
.y79{bottom:302.250000px;}
.yaf{bottom:303.825000px;}
.ye4{bottom:312.840090px;}
.y29{bottom:312.870000px;}
.y69{bottom:312.960000px;}
.y78{bottom:321.150000px;}
.ye3{bottom:331.830000px;}
.yae{bottom:332.655000px;}
.y28{bottom:333.570000px;}
.y68{bottom:333.660000px;}
.y77{bottom:340.140000px;}
.ye2{bottom:352.350000px;}
.y27{bottom:354.270000px;}
.y67{bottom:354.360000px;}
.y76{bottom:359.130000px;}
.yad{bottom:361.455000px;}
.ye1{bottom:363.240090px;}
.y26{bottom:374.970000px;}
.y66{bottom:375.060000px;}
.y75{bottom:378.120000px;}
.ye0{bottom:382.230000px;}
.y25{bottom:395.670000px;}
.y65{bottom:395.760000px;}
.y74{bottom:397.110000px;}
.ydf{bottom:402.749010px;}
.yde{bottom:413.643960px;}
.yac{bottom:414.915000px;}
.y24{bottom:416.370000px;}
.y64{bottom:416.460000px;}
.ydd{bottom:432.633870px;}
.y23{bottom:437.070000px;}
.y63{bottom:437.160000px;}
.yab{bottom:440.115000px;}
.ydc{bottom:456.120090px;}
.y22{bottom:457.770000px;}
.y62{bottom:457.860000px;}
.ydb{bottom:475.027650px;}
.y21{bottom:478.470000px;}
.y61{bottom:478.560000px;}
.yaa{bottom:492.495000px;}
.yda{bottom:498.513870px;}
.y20{bottom:499.080000px;}
.y60{bottom:499.260000px;}
.y5d{bottom:516.810000px;}
.yd9{bottom:517.503780px;}
.y1f{bottom:519.780000px;}
.ya9{bottom:528.495000px;}
.y5c{bottom:535.710000px;}
.y1e{bottom:540.480000px;}
.yd8{bottom:540.990000px;}
.y5a{bottom:554.880000px;}
.y1d{bottom:561.180000px;}
.yd7{bottom:562.860000px;}
.y56{bottom:574.050000px;}
.yd6{bottom:579.330000px;}
.y1c{bottom:581.880000px;}
.y4e{bottom:593.220000px;}
.yd5{bottom:598.590000px;}
.y1b{bottom:602.580000px;}
.y55{bottom:614.640000px;}
.yd4{bottom:618.930000px;}
.y1a{bottom:623.280000px;}
.y9e{bottom:625.755000px;}
.y54{bottom:636.060000px;}
.yd3{bottom:637.920000px;}
.ya8{bottom:639.705000px;}
.y19{bottom:643.980000px;}
.y9d{bottom:654.015000px;}
.yd2{bottom:656.910000px;}
.y53{bottom:657.600000px;}
.y18{bottom:664.710000px;}
.ya7{bottom:668.505000px;}
.yd1{bottom:675.900000px;}
.y52{bottom:679.020000px;}
.y17{bottom:685.410000px;}
.yd0{bottom:694.890000px;}
.y9c{bottom:696.660000px;}
.ya6{bottom:697.305000px;}
.y46{bottom:700.440000px;}
.y16{bottom:706.110000px;}
.ycf{bottom:713.880000px;}
.y9b{bottom:721.875000px;}
.y4d{bottom:721.950000px;}
.y15{bottom:726.810000px;}
.yce{bottom:732.780000px;}
.y4c{bottom:743.370000px;}
.y14{bottom:747.510000px;}
.ya5{bottom:750.765000px;}
.ycd{bottom:751.770000px;}
.y4b{bottom:764.790000px;}
.y13{bottom:768.210000px;}
.y9a{bottom:770.655000px;}
.ycc{bottom:770.756490px;}
.ya4{bottom:775.980000px;}
.y4a{bottom:786.300000px;}
.y12{bottom:788.910000px;}
.ycb{bottom:789.746400px;}
.y40{bottom:807.720000px;}
.y11{bottom:809.610000px;}
.yca{bottom:813.232620px;}
.y99{bottom:824.685000px;}
.ya3{bottom:828.390000px;}
.y10{bottom:830.310000px;}
.yc9{bottom:832.140180px;}
.yf{bottom:851.010000px;}
.yc8{bottom:851.130090px;}
.y3e{bottom:855.060000px;}
.ya2{bottom:864.390000px;}
.yc7{bottom:870.120000px;}
.ye{bottom:871.710000px;}
.y98{bottom:878.685000px;}
.yc6{bottom:890.370000px;}
.yd{bottom:892.410000px;}
.y3d{bottom:904.110000px;}
.yc5{bottom:904.320270px;}
.y73{bottom:913.110000px;}
.yc4{bottom:923.310180px;}
.y3c{bottom:924.810000px;}
.yc{bottom:933.810000px;}
.yc3{bottom:942.300090px;}
.y3b{bottom:945.510000px;}
.yb{bottom:954.510000px;}
.y97{bottom:955.980000px;}
.yc2{bottom:961.290000px;}
.y8f{bottom:974.940000px;}
.y3a{bottom:975.210000px;}
.y96{bottom:984.780000px;}
.yc1{bottom:985.950000px;}
.yb7{bottom:988.410000px;}
.y8e{bottom:993.930000px;}
.ya{bottom:995.910000px;}
.ybc{bottom:996.300000px;}
.y8d{bottom:1012.920000px;}
.y95{bottom:1013.580000px;}
.y9{bottom:1016.610000px;}
.yb6{bottom:1017.195000px;}
.yc0{bottom:1029.870000px;}
.y8c{bottom:1031.820000px;}
.y8{bottom:1037.310000px;}
.y94{bottom:1042.380000px;}
.yb5{bottom:1045.995000px;}
.ybf{bottom:1050.570000px;}
.y8b{bottom:1050.810000px;}
.y39{bottom:1058.010000px;}
.y8a{bottom:1069.830000px;}
.y93{bottom:1071.165000px;}
.ybe{bottom:1071.270000px;}
.yb4{bottom:1074.795000px;}
.y7{bottom:1078.740000px;}
.y89{bottom:1088.820000px;}
.y38{bottom:1099.440000px;}
.y92{bottom:1099.980000px;}
.yb3{bottom:1103.595000px;}
.y6{bottom:1106.190000px;}
.y88{bottom:1107.810000px;}
.ybb{bottom:1110.060000px;}
.yba{bottom:1119.600000px;}
.y37{bottom:1120.140000px;}
.y87{bottom:1126.800000px;}
.y5{bottom:1126.890000px;}
.y91{bottom:1128.780000px;}
.yb2{bottom:1132.455000px;}
.yb9{bottom:1140.300000px;}
.y4{bottom:1140.840000px;}
.y86{bottom:1145.700000px;}
.y90{bottom:1157.595000px;}
.yb8{bottom:1161.000000px;}
.yb1{bottom:1161.240000px;}
.y3{bottom:1161.540000px;}
.y85{bottom:1164.690000px;}
.y2{bottom:1182.240000px;}
.y84{bottom:1183.680000px;}
.yb0{bottom:1190.040000px;}
.y34{bottom:1208.879791px;}
.ya0{bottom:1209.044861px;}
.h2c{height:4.249336px;}
.h30{height:8.248711px;}
.h31{height:12.498047px;}
.h29{height:16.747383px;}
.h9{height:18.150105px;}
.h16{height:18.180000px;}
.h13{height:18.360000px;}
.h15{height:18.450000px;}
.h10{height:20.700000px;}
.h12{height:20.730000px;}
.h2f{height:24.996094px;}
.hc{height:35.460000px;}
.h2e{height:44.649141px;}
.h2d{height:45.742852px;}
.he{height:46.530000px;}
.h4{height:46.991602px;}
.h28{height:48.796875px;}
.h2b{height:49.992188px;}
.h19{height:54.942891px;}
.h14{height:59.004492px;}
.h8{height:60.046875px;}
.h6{height:61.664062px;}
.h21{height:63.176104px;}
.h1a{height:64.657617px;}
.hb{height:65.526152px;}
.h17{height:66.394687px;}
.h22{height:67.565039px;}
.h18{height:67.714259px;}
.ha{height:68.610352px;}
.h5{height:70.664062px;}
.h2{height:71.613281px;}
.h7{height:72.562500px;}
.h3{height:73.991602px;}
.h25{height:82.618066px;}
.hd{height:82.800000px;}
.h26{height:90.238711px;}
.h1e{height:95.245664px;}
.h23{height:96.508125px;}
.h27{height:96.629062px;}
.h1d{height:98.051133px;}
.h1c{height:98.174004px;}
.h11{height:106.500000px;}
.hf{height:106.560000px;}
.h24{height:107.419922px;}
.h2a{height:112.500000px;}
.h1f{height:135.087891px;}
.h20{height:135.177949px;}
.h32{height:136.261500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.h1b{height:1263.045000px;}
.wb{width:74.430000px;}
.w4{width:91.170000px;}
.w6{width:96.870000px;}
.wa{width:97.320000px;}
.w8{width:108.270000px;}
.w7{width:111.330000px;}
.w5{width:113.400000px;}
.w9{width:128.340000px;}
.w3{width:237.330000px;}
.wd{width:257.760000px;}
.w2{width:300.916500px;}
.we{width:424.800000px;}
.wc{width:605.970000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x44{left:2.160000px;}
.x9{left:7.740000px;}
.x16{left:13.950000px;}
.xc{left:16.110000px;}
.xb{left:18.270000px;}
.x15{left:20.790000px;}
.x12{left:21.960000px;}
.xf{left:23.490000px;}
.x13{left:24.750000px;}
.x1a{left:28.530000px;}
.x18{left:29.790000px;}
.x1d{left:31.500000px;}
.x10{left:33.030000px;}
.xd{left:35.820000px;}
.x19{left:40.950000px;}
.x1b{left:44.370000px;}
.x1e{left:46.260000px;}
.x1c{left:47.340000px;}
.x43{left:104.220000px;}
.x41{left:106.380000px;}
.x8{left:119.910000px;}
.x27{left:125.712000px;}
.x2{left:127.650000px;}
.x40{left:130.606500px;}
.x24{left:134.892000px;}
.x3d{left:139.786500px;}
.x36{left:142.846500px;}
.x5{left:149.340000px;}
.x6{left:154.560000px;}
.x1f{left:159.600000px;}
.x28{left:165.675000px;}
.x29{left:175.740000px;}
.x38{left:179.745000px;}
.x3{left:180.840000px;}
.x42{left:188.910000px;}
.x2b{left:189.990000px;}
.x31{left:194.895000px;}
.x2e{left:200.805000px;}
.x34{left:205.695000px;}
.x23{left:209.070000px;}
.x30{left:211.290000px;}
.x25{left:212.505000px;}
.x22{left:214.830000px;}
.x3e{left:217.350000px;}
.x17{left:228.900000px;}
.x2a{left:233.025000px;}
.x21{left:264.330000px;}
.x3b{left:267.405000px;}
.x3c{left:269.205000px;}
.x20{left:270.450000px;}
.x3a{left:275.325000px;}
.x26{left:292.785000px;}
.x4{left:296.031784px;}
.x3f{left:297.675000px;}
.x35{left:309.030000px;}
.x39{left:353.655000px;}
.xa{left:358.080000px;}
.x45{left:361.980000px;}
.x7{left:363.750000px;}
.x2c{left:402.075000px;}
.x32{left:406.965000px;}
.x37{left:408.210000px;}
.x2f{left:412.410000px;}
.x2d{left:420.990000px;}
.x33{left:425.865000px;}
.x1{left:437.460000px;}
.xe{left:449.970000px;}
.x11{left:564.180000px;}
.x14{left:661.860000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v4{vertical-align:-5.440000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v5{vertical-align:5.440000pt;}
.v1{vertical-align:24.000000pt;}
.ls16{letter-spacing:-0.746667pt;}
.ls3c{letter-spacing:-0.292800pt;}
.ls3e{letter-spacing:-0.234240pt;}
.ls3d{letter-spacing:-0.175680pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls3a{letter-spacing:-0.117120pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls39{letter-spacing:-0.058560pt;}
.ls14{letter-spacing:-0.032000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.019520pt;}
.ls33{letter-spacing:0.035136pt;}
.ls1d{letter-spacing:0.040992pt;}
.ls31{letter-spacing:0.046848pt;}
.ls32{letter-spacing:0.052704pt;}
.ls1c{letter-spacing:0.058560pt;}
.lsd{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.080000pt;}
.ls22{letter-spacing:0.093696pt;}
.ls26{letter-spacing:0.099552pt;}
.ls34{letter-spacing:0.117120pt;}
.ls1{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.134688pt;}
.lsb{letter-spacing:0.136533pt;}
.ls2d{letter-spacing:0.140544pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.163968pt;}
.ls1a{letter-spacing:0.175680pt;}
.ls3b{letter-spacing:0.234240pt;}
.ls15{letter-spacing:0.303467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls3f{letter-spacing:0.351360pt;}
.ls1e{letter-spacing:0.409920pt;}
.ls2f{letter-spacing:0.673440pt;}
.ls23{letter-spacing:0.702720pt;}
.ls20{letter-spacing:1.698240pt;}
.ls1b{letter-spacing:1.991040pt;}
.ls24{letter-spacing:2.910432pt;}
.ls25{letter-spacing:2.986560pt;}
.ls17{letter-spacing:3.200000pt;}
.ls27{letter-spacing:3.279360pt;}
.ls21{letter-spacing:3.671712pt;}
.lse{letter-spacing:4.160000pt;}
.ls30{letter-spacing:4.216320pt;}
.ls18{letter-spacing:5.211840pt;}
.ls38{letter-spacing:5.229408pt;}
.ls36{letter-spacing:6.148800pt;}
.lsc{letter-spacing:6.400000pt;}
.ls11{letter-spacing:6.480000pt;}
.ls19{letter-spacing:7.144320pt;}
.ls29{letter-spacing:7.788480pt;}
.ls37{letter-spacing:8.081280pt;}
.ls3{letter-spacing:8.640000pt;}
.ls13{letter-spacing:9.360000pt;}
.lsf{letter-spacing:10.240000pt;}
.ls35{letter-spacing:16.396800pt;}
.ls4{letter-spacing:16.960000pt;}
.ls2e{letter-spacing:17.439168pt;}
.ls2b{letter-spacing:19.190112pt;}
.ls2c{letter-spacing:19.266240pt;}
.lsa{letter-spacing:21.120000pt;}
.ls6{letter-spacing:27.520000pt;}
.ls10{letter-spacing:53.160320pt;}
.ls1f{letter-spacing:174.157440pt;}
.wsd{word-spacing:-74.826667pt;}
.wsa{word-spacing:-25.441067pt;}
.wsc{word-spacing:-21.664000pt;}
.wsf{word-spacing:-21.600000pt;}
.wsb{word-spacing:-21.280000pt;}
.ws11{word-spacing:-20.560000pt;}
.ws13{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.936000pt;}
.ws12{word-spacing:-15.872000pt;}
.ws1e{word-spacing:-14.991360pt;}
.ws17{word-spacing:-14.874240pt;}
.ws18{word-spacing:-14.815680pt;}
.ws9{word-spacing:-14.800000pt;}
.ws1b{word-spacing:-14.757120pt;}
.ws19{word-spacing:-14.698560pt;}
.ws8{word-spacing:-14.640000pt;}
.ws15{word-spacing:-14.581440pt;}
.ws16{word-spacing:-14.522880pt;}
.ws1a{word-spacing:-14.464320pt;}
.ws0{word-spacing:-14.336000pt;}
.ws6{word-spacing:-13.496533pt;}
.ws3{word-spacing:-10.800000pt;}
.ws7{word-spacing:-10.640000pt;}
.wse{word-spacing:-1.693333pt;}
.ws1f{word-spacing:-1.360000pt;}
.ws28{word-spacing:-0.409920pt;}
.ws1d{word-spacing:-0.234240pt;}
.ws23{word-spacing:-0.175680pt;}
.ws21{word-spacing:-0.128000pt;}
.ws14{word-spacing:-0.064000pt;}
.ws1c{word-spacing:-0.058560pt;}
.ws4{word-spacing:0.000000pt;}
.ws24{word-spacing:0.058560pt;}
.ws20{word-spacing:0.064000pt;}
.ws25{word-spacing:0.117120pt;}
.ws22{word-spacing:0.128000pt;}
.ws27{word-spacing:0.234240pt;}
.ws26{word-spacing:0.292800pt;}
.ws10{word-spacing:3.840000pt;}
._2a{margin-left:-8.426710pt;}
._27{margin-left:-5.977557pt;}
._29{margin-left:-4.937045pt;}
._26{margin-left:-3.750357pt;}
._28{margin-left:-2.090710pt;}
._3{margin-left:-0.917333pt;}
._8{width:1.088000pt;}
._e{width:2.560000pt;}
._4{width:3.712000pt;}
._16{width:4.992000pt;}
._10{width:6.272000pt;}
._0{width:7.744000pt;}
._21{width:8.640000pt;}
._2{width:9.536000pt;}
._23{width:10.432000pt;}
._1b{width:11.840000pt;}
._a{width:13.568000pt;}
._b{width:14.570667pt;}
._24{width:16.316800pt;}
._d{width:17.472000pt;}
._f{width:18.432000pt;}
._1f{width:19.328000pt;}
._1a{width:20.224000pt;}
._17{width:21.312000pt;}
._13{width:22.272000pt;}
._1d{width:23.616000pt;}
._25{width:24.866677pt;}
._1e{width:26.112000pt;}
._19{width:27.264000pt;}
._14{width:28.928000pt;}
._1c{width:30.016000pt;}
._1{width:32.320000pt;}
._20{width:33.216000pt;}
._6{width:35.136000pt;}
._5{width:36.032000pt;}
._7{width:39.872000pt;}
._c{width:40.832000pt;}
._18{width:43.712000pt;}
._12{width:48.768000pt;}
._11{width:49.664000pt;}
._22{width:57.280000pt;}
._15{width:65.600000pt;}
._9{width:71.296000pt;}
.fse{font-size:5.440000pt;}
.fs10{font-size:10.560000pt;}
.fs11{font-size:16.000000pt;}
.fsd{font-size:21.440000pt;}
.fsf{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:42.560000pt;}
.fs4{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.826667pt;}
.fs7{font-size:85.120000pt;}
.fs6{font-size:85.226667pt;}
.fsb{font-size:96.000000pt;}
.fsc{font-size:106.880000pt;}
.fs8{font-size:160.000000pt;}
.fs9{font-size:160.106667pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:2.880000pt;}
.y35{bottom:3.086667pt;}
.yf1{bottom:3.200000pt;}
.y5f{bottom:3.280000pt;}
.y58{bottom:3.360000pt;}
.y44{bottom:3.440000pt;}
.y5e{bottom:3.680000pt;}
.y57{bottom:3.840000pt;}
.y5b{bottom:3.920000pt;}
.y3f{bottom:16.560000pt;}
.y43{bottom:21.840000pt;}
.y45{bottom:26.400000pt;}
.y42{bottom:40.240000pt;}
.y51{bottom:42.880000pt;}
.y49{bottom:42.960000pt;}
.y36{bottom:51.040000pt;}
.y41{bottom:58.640000pt;}
.y50{bottom:61.306667pt;}
.y48{bottom:61.360000pt;}
.y1{bottom:69.360000pt;}
.y4f{bottom:79.706667pt;}
.y47{bottom:79.760000pt;}
.ybd{bottom:85.040000pt;}
.y9f{bottom:86.270667pt;}
.ya1{bottom:92.094667pt;}
.yf2{bottom:93.040000pt;}
.y33{bottom:94.080000pt;}
.ye9{bottom:94.240000pt;}
.y83{bottom:100.000000pt;}
.yea{bottom:106.160000pt;}
.y32{bottom:112.480000pt;}
.y72{bottom:112.560000pt;}
.yf0{bottom:114.320000pt;}
.y82{bottom:116.800000pt;}
.y31{bottom:130.880000pt;}
.y71{bottom:130.960000pt;}
.yef{bottom:131.193360pt;}
.y81{bottom:133.680000pt;}
.yee{bottom:148.000080pt;}
.y30{bottom:149.280000pt;}
.y70{bottom:149.360000pt;}
.y80{bottom:150.560000pt;}
.yec{bottom:163.600000pt;}
.yed{bottom:164.880000pt;}
.y7f{bottom:167.440000pt;}
.y2f{bottom:167.680000pt;}
.y6f{bottom:167.760000pt;}
.yeb{bottom:182.000000pt;}
.y7e{bottom:184.320000pt;}
.y2e{bottom:186.080000pt;}
.y6e{bottom:186.160000pt;}
.y7d{bottom:201.146667pt;}
.y2d{bottom:204.506667pt;}
.y6d{bottom:204.586667pt;}
.ye8{bottom:217.120000pt;}
.y7c{bottom:218.026667pt;}
.y2c{bottom:222.906667pt;}
.y6c{bottom:222.986667pt;}
.ye7{bottom:231.760080pt;}
.y7b{bottom:234.906667pt;}
.y2b{bottom:241.306667pt;}
.y6b{bottom:241.386667pt;}
.ye6{bottom:248.640000pt;}
.y7a{bottom:251.786667pt;}
.y2a{bottom:259.706667pt;}
.y6a{bottom:259.786667pt;}
.ye5{bottom:267.200000pt;}
.y79{bottom:268.666667pt;}
.yaf{bottom:270.066667pt;}
.ye4{bottom:278.080080pt;}
.y29{bottom:278.106667pt;}
.y69{bottom:278.186667pt;}
.y78{bottom:285.466667pt;}
.ye3{bottom:294.960000pt;}
.yae{bottom:295.693333pt;}
.y28{bottom:296.506667pt;}
.y68{bottom:296.586667pt;}
.y77{bottom:302.346667pt;}
.ye2{bottom:313.200000pt;}
.y27{bottom:314.906667pt;}
.y67{bottom:314.986667pt;}
.y76{bottom:319.226667pt;}
.yad{bottom:321.293333pt;}
.ye1{bottom:322.880080pt;}
.y26{bottom:333.306667pt;}
.y66{bottom:333.386667pt;}
.y75{bottom:336.106667pt;}
.ye0{bottom:339.760000pt;}
.y25{bottom:351.706667pt;}
.y65{bottom:351.786667pt;}
.y74{bottom:352.986667pt;}
.ydf{bottom:357.999120pt;}
.yde{bottom:367.683520pt;}
.yac{bottom:368.813333pt;}
.y24{bottom:370.106667pt;}
.y64{bottom:370.186667pt;}
.ydd{bottom:384.563440pt;}
.y23{bottom:388.506667pt;}
.y63{bottom:388.586667pt;}
.yab{bottom:391.213333pt;}
.ydc{bottom:405.440080pt;}
.y22{bottom:406.906667pt;}
.y62{bottom:406.986667pt;}
.ydb{bottom:422.246800pt;}
.y21{bottom:425.306667pt;}
.y61{bottom:425.386667pt;}
.yaa{bottom:437.773333pt;}
.yda{bottom:443.123440pt;}
.y20{bottom:443.626667pt;}
.y60{bottom:443.786667pt;}
.y5d{bottom:459.386667pt;}
.yd9{bottom:460.003360pt;}
.y1f{bottom:462.026667pt;}
.ya9{bottom:469.773333pt;}
.y5c{bottom:476.186667pt;}
.y1e{bottom:480.426667pt;}
.yd8{bottom:480.880000pt;}
.y5a{bottom:493.226667pt;}
.y1d{bottom:498.826667pt;}
.yd7{bottom:500.320000pt;}
.y56{bottom:510.266667pt;}
.yd6{bottom:514.960000pt;}
.y1c{bottom:517.226667pt;}
.y4e{bottom:527.306667pt;}
.yd5{bottom:532.080000pt;}
.y1b{bottom:535.626667pt;}
.y55{bottom:546.346667pt;}
.yd4{bottom:550.160000pt;}
.y1a{bottom:554.026667pt;}
.y9e{bottom:556.226667pt;}
.y54{bottom:565.386667pt;}
.yd3{bottom:567.040000pt;}
.ya8{bottom:568.626667pt;}
.y19{bottom:572.426667pt;}
.y9d{bottom:581.346667pt;}
.yd2{bottom:583.920000pt;}
.y53{bottom:584.533333pt;}
.y18{bottom:590.853333pt;}
.ya7{bottom:594.226667pt;}
.yd1{bottom:600.800000pt;}
.y52{bottom:603.573333pt;}
.y17{bottom:609.253333pt;}
.yd0{bottom:617.680000pt;}
.y9c{bottom:619.253333pt;}
.ya6{bottom:619.826667pt;}
.y46{bottom:622.613333pt;}
.y16{bottom:627.653333pt;}
.ycf{bottom:634.560000pt;}
.y9b{bottom:641.666667pt;}
.y4d{bottom:641.733333pt;}
.y15{bottom:646.053333pt;}
.yce{bottom:651.360000pt;}
.y4c{bottom:660.773333pt;}
.y14{bottom:664.453333pt;}
.ya5{bottom:667.346667pt;}
.ycd{bottom:668.240000pt;}
.y4b{bottom:679.813333pt;}
.y13{bottom:682.853333pt;}
.y9a{bottom:685.026667pt;}
.ycc{bottom:685.116880pt;}
.ya4{bottom:689.760000pt;}
.y4a{bottom:698.933333pt;}
.y12{bottom:701.253333pt;}
.ycb{bottom:701.996800pt;}
.y40{bottom:717.973333pt;}
.y11{bottom:719.653333pt;}
.yca{bottom:722.873440pt;}
.y99{bottom:733.053333pt;}
.ya3{bottom:736.346667pt;}
.y10{bottom:738.053333pt;}
.yc9{bottom:739.680160pt;}
.yf{bottom:756.453333pt;}
.yc8{bottom:756.560080pt;}
.y3e{bottom:760.053333pt;}
.ya2{bottom:768.346667pt;}
.yc7{bottom:773.440000pt;}
.ye{bottom:774.853333pt;}
.y98{bottom:781.053333pt;}
.yc6{bottom:791.440000pt;}
.yd{bottom:793.253333pt;}
.y3d{bottom:803.653333pt;}
.yc5{bottom:803.840240pt;}
.y73{bottom:811.653333pt;}
.yc4{bottom:820.720160pt;}
.y3c{bottom:822.053333pt;}
.yc{bottom:830.053333pt;}
.yc3{bottom:837.600080pt;}
.y3b{bottom:840.453333pt;}
.yb{bottom:848.453333pt;}
.y97{bottom:849.760000pt;}
.yc2{bottom:854.480000pt;}
.y8f{bottom:866.613333pt;}
.y3a{bottom:866.853333pt;}
.y96{bottom:875.360000pt;}
.yc1{bottom:876.400000pt;}
.yb7{bottom:878.586667pt;}
.y8e{bottom:883.493333pt;}
.ya{bottom:885.253333pt;}
.ybc{bottom:885.600000pt;}
.y8d{bottom:900.373333pt;}
.y95{bottom:900.960000pt;}
.y9{bottom:903.653333pt;}
.yb6{bottom:904.173333pt;}
.yc0{bottom:915.440000pt;}
.y8c{bottom:917.173333pt;}
.y8{bottom:922.053333pt;}
.y94{bottom:926.560000pt;}
.yb5{bottom:929.773333pt;}
.ybf{bottom:933.840000pt;}
.y8b{bottom:934.053333pt;}
.y39{bottom:940.453333pt;}
.y8a{bottom:950.960000pt;}
.y93{bottom:952.146667pt;}
.ybe{bottom:952.240000pt;}
.yb4{bottom:955.373333pt;}
.y7{bottom:958.880000pt;}
.y89{bottom:967.840000pt;}
.y38{bottom:977.280000pt;}
.y92{bottom:977.760000pt;}
.yb3{bottom:980.973333pt;}
.y6{bottom:983.280000pt;}
.y88{bottom:984.720000pt;}
.ybb{bottom:986.720000pt;}
.yba{bottom:995.200000pt;}
.y37{bottom:995.680000pt;}
.y87{bottom:1001.600000pt;}
.y5{bottom:1001.680000pt;}
.y91{bottom:1003.360000pt;}
.yb2{bottom:1006.626667pt;}
.yb9{bottom:1013.600000pt;}
.y4{bottom:1014.080000pt;}
.y86{bottom:1018.400000pt;}
.y90{bottom:1028.973333pt;}
.yb8{bottom:1032.000000pt;}
.yb1{bottom:1032.213333pt;}
.y3{bottom:1032.480000pt;}
.y85{bottom:1035.280000pt;}
.y2{bottom:1050.880000pt;}
.y84{bottom:1052.160000pt;}
.yb0{bottom:1057.813333pt;}
.y34{bottom:1074.559814pt;}
.ya0{bottom:1074.706543pt;}
.h2c{height:3.777187pt;}
.h30{height:7.332187pt;}
.h31{height:11.109375pt;}
.h29{height:14.886562pt;}
.h9{height:16.133427pt;}
.h16{height:16.160000pt;}
.h13{height:16.320000pt;}
.h15{height:16.400000pt;}
.h10{height:18.400000pt;}
.h12{height:18.426667pt;}
.h2f{height:22.218750pt;}
.hc{height:31.520000pt;}
.h2e{height:39.688125pt;}
.h2d{height:40.660312pt;}
.he{height:41.360000pt;}
.h4{height:41.770312pt;}
.h28{height:43.375000pt;}
.h2b{height:44.437500pt;}
.h19{height:48.838125pt;}
.h14{height:52.448437pt;}
.h8{height:53.375000pt;}
.h6{height:54.812500pt;}
.h21{height:56.156536pt;}
.h1a{height:57.473437pt;}
.hb{height:58.245469pt;}
.h17{height:59.017500pt;}
.h22{height:60.057813pt;}
.h18{height:60.190452pt;}
.ha{height:60.986979pt;}
.h5{height:62.812500pt;}
.h2{height:63.656250pt;}
.h7{height:64.500000pt;}
.h3{height:65.770312pt;}
.h25{height:73.438281pt;}
.hd{height:73.600000pt;}
.h26{height:80.212187pt;}
.h1e{height:84.662813pt;}
.h23{height:85.785000pt;}
.h27{height:85.892500pt;}
.h1d{height:87.156562pt;}
.h1c{height:87.265781pt;}
.h11{height:94.666667pt;}
.hf{height:94.720000pt;}
.h24{height:95.484375pt;}
.h2a{height:100.000000pt;}
.h1f{height:120.078125pt;}
.h20{height:120.158177pt;}
.h32{height:121.121333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h1b{height:1122.706667pt;}
.wb{width:66.160000pt;}
.w4{width:81.040000pt;}
.w6{width:86.106667pt;}
.wa{width:86.506667pt;}
.w8{width:96.240000pt;}
.w7{width:98.960000pt;}
.w5{width:100.800000pt;}
.w9{width:114.080000pt;}
.w3{width:210.960000pt;}
.wd{width:229.120000pt;}
.w2{width:267.481333pt;}
.we{width:377.600000pt;}
.wc{width:538.640000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x44{left:1.920000pt;}
.x9{left:6.880000pt;}
.x16{left:12.400000pt;}
.xc{left:14.320000pt;}
.xb{left:16.240000pt;}
.x15{left:18.480000pt;}
.x12{left:19.520000pt;}
.xf{left:20.880000pt;}
.x13{left:22.000000pt;}
.x1a{left:25.360000pt;}
.x18{left:26.480000pt;}
.x1d{left:28.000000pt;}
.x10{left:29.360000pt;}
.xd{left:31.840000pt;}
.x19{left:36.400000pt;}
.x1b{left:39.440000pt;}
.x1e{left:41.120000pt;}
.x1c{left:42.080000pt;}
.x43{left:92.640000pt;}
.x41{left:94.560000pt;}
.x8{left:106.586667pt;}
.x27{left:111.744000pt;}
.x2{left:113.466667pt;}
.x40{left:116.094667pt;}
.x24{left:119.904000pt;}
.x3d{left:124.254667pt;}
.x36{left:126.974667pt;}
.x5{left:132.746667pt;}
.x6{left:137.386667pt;}
.x1f{left:141.866667pt;}
.x28{left:147.266667pt;}
.x29{left:156.213333pt;}
.x38{left:159.773333pt;}
.x3{left:160.746667pt;}
.x42{left:167.920000pt;}
.x2b{left:168.880000pt;}
.x31{left:173.240000pt;}
.x2e{left:178.493333pt;}
.x34{left:182.840000pt;}
.x23{left:185.840000pt;}
.x30{left:187.813333pt;}
.x25{left:188.893333pt;}
.x22{left:190.960000pt;}
.x3e{left:193.200000pt;}
.x17{left:203.466667pt;}
.x2a{left:207.133333pt;}
.x21{left:234.960000pt;}
.x3b{left:237.693333pt;}
.x3c{left:239.293333pt;}
.x20{left:240.400000pt;}
.x3a{left:244.733333pt;}
.x26{left:260.253333pt;}
.x4{left:263.139364pt;}
.x3f{left:264.600000pt;}
.x35{left:274.693333pt;}
.x39{left:314.360000pt;}
.xa{left:318.293333pt;}
.x45{left:321.760000pt;}
.x7{left:323.333333pt;}
.x2c{left:357.400000pt;}
.x32{left:361.746667pt;}
.x37{left:362.853333pt;}
.x2f{left:366.586667pt;}
.x2d{left:374.213333pt;}
.x33{left:378.546667pt;}
.x1{left:388.853333pt;}
.xe{left:399.973333pt;}
.x11{left:501.493333pt;}
.x14{left:588.320000pt;}
}




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