
    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_eaeb01ed7a3ea2ba3dd73634.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;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_841937ac42c595c0c45550c0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_491ee02127a4d82874fefb2f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_f4ec914c433753b6db0f74a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.049000;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_4910f4813f91ca57f9cb7c6e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.116000;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_2a6a297a7fef24db26e9549d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_53a976586cd4bd9b60598bad.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_1cd5e27f70b260f2e5896384.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.896000;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_b1b50cf5ca8c96a5fc944fbb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.806000;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_c64fb1b1d708cd4c91fae2b0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.932000;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_dfc487ec1202071081a43724.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932000;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_0e5b178b0b1045f6769b78a2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.853027;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_b82e8b00900de50e0399ed9c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.673000;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_619db343c4b82b9fb897b608.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.035000;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_2b0b5cc5f2078f640986e0eb.woff2')format("woff");}.fff{font-family:fff;line-height:0.728000;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);}
.v2{vertical-align:-10.633990px;}
.v3{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:9.924000px;}
.v5{vertical-align:11.028000px;}
.v6{vertical-align:13.596000px;}
.v4{vertical-align:15.108000px;}
.v1{vertical-align:21.690000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000300px;}
.ls0{letter-spacing:0.000564px;}
.ls8{letter-spacing:0.000993px;}
.ls13{letter-spacing:0.001670px;}
.ls2c{letter-spacing:0.002338px;}
.lsa{letter-spacing:0.003031px;}
.ls1f{letter-spacing:0.003415px;}
.ls9{letter-spacing:0.003723px;}
.ls15{letter-spacing:2.029309px;}
.lse{letter-spacing:2.265723px;}
.ls6{letter-spacing:2.983140px;}
.ls7{letter-spacing:2.989140px;}
.ls29{letter-spacing:2.990525px;}
.ls17{letter-spacing:7.678479px;}
.ls3{letter-spacing:9.966538px;}
.ls23{letter-spacing:12.306538px;}
.ls27{letter-spacing:14.184538px;}
.ls26{letter-spacing:14.194896px;}
.ls22{letter-spacing:15.290525px;}
.ls21{letter-spacing:16.604338px;}
.ls1e{letter-spacing:16.818538px;}
.ls4{letter-spacing:18.262200px;}
.ls12{letter-spacing:18.424771px;}
.ls19{letter-spacing:18.429414px;}
.ls28{letter-spacing:18.864538px;}
.ls18{letter-spacing:19.193937px;}
.ls11{letter-spacing:19.247937px;}
.ls20{letter-spacing:19.592525px;}
.ls1d{letter-spacing:19.814525px;}
.lsb{letter-spacing:19.880316px;}
.ls14{letter-spacing:20.951937px;}
.ls25{letter-spacing:21.503549px;}
.ls24{letter-spacing:21.579415px;}
.lsd{letter-spacing:21.818316px;}
.ls2a{letter-spacing:23.358300px;}
.ls1c{letter-spacing:25.454338px;}
.ls10{letter-spacing:27.329139px;}
.ls2{letter-spacing:28.084178px;}
.ls1b{letter-spacing:28.442525px;}
.ls16{letter-spacing:29.177937px;}
.ls2b{letter-spacing:29.883008px;}
.lsf{letter-spacing:30.680316px;}
.lsc{letter-spacing:38.954316px;}
.ls1a{letter-spacing:157.293573px;}
.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;}
}
.ws6f{word-spacing:-59.775600px;}
.ws57{word-spacing:-51.873120px;}
.ws3f{word-spacing:-38.937826px;}
.ws67{word-spacing:-36.071827px;}
.ws4{word-spacing:-29.881822px;}
.ws97{word-spacing:-27.641618px;}
.ws73{word-spacing:-20.091964px;}
.ws3e{word-spacing:-16.605662px;}
.ws8b{word-spacing:-16.133434px;}
.ws0{word-spacing:-15.829597px;}
.ws7d{word-spacing:-15.655230px;}
.ws26{word-spacing:-15.416127px;}
.ws55{word-spacing:-14.818371px;}
.wsa6{word-spacing:-14.622405px;}
.ws7c{word-spacing:-14.579269px;}
.ws5f{word-spacing:-14.399942px;}
.ws32{word-spacing:-14.340166px;}
.ws78{word-spacing:-14.160840px;}
.ws54{word-spacing:-14.041288px;}
.wsa4{word-spacing:-13.277445px;}
.ws25{word-spacing:-13.204430px;}
.ws4c{word-spacing:-13.144654px;}
.ws8e{word-spacing:-13.084879px;}
.ws31{word-spacing:-12.845776px;}
.ws46{word-spacing:-12.786001px;}
.ws44{word-spacing:-12.777134px;}
.ws75{word-spacing:-12.726225px;}
.ws74{word-spacing:-12.666450px;}
.ws53{word-spacing:-12.427347px;}
.ws92{word-spacing:-12.367572px;}
.ws86{word-spacing:-12.068694px;}
.ws2f{word-spacing:-11.769816px;}
.ws49{word-spacing:-11.650264px;}
.ws47{word-spacing:-11.590489px;}
.ws14{word-spacing:-11.555896px;}
.ws4b{word-spacing:-11.470938px;}
.ws9d{word-spacing:-11.394501px;}
.ws6b{word-spacing:-11.351386px;}
.wsa0{word-spacing:-11.286904px;}
.wsa5{word-spacing:-11.233106px;}
.ws1a{word-spacing:-11.172060px;}
.ws6a{word-spacing:-10.911771px;}
.ws64{word-spacing:-10.873182px;}
.ws77{word-spacing:-10.753630px;}
.ws12{word-spacing:-10.695122px;}
.ws36{word-spacing:-10.574304px;}
.wsa9{word-spacing:-10.479928px;}
.ws6e{word-spacing:-10.454752px;}
.ws71{word-spacing:-10.443897px;}
.ws10{word-spacing:-10.318533px;}
.ws56{word-spacing:-10.215650px;}
.ws2a{word-spacing:-10.155874px;}
.ws8a{word-spacing:-10.096099px;}
.ws59{word-spacing:-10.036323px;}
.ws65{word-spacing:-10.026381px;}
.ws1{word-spacing:-9.976548px;}
.ws1d{word-spacing:-9.856996px;}
.ws9e{word-spacing:-9.834348px;}
.ws39{word-spacing:-9.797221px;}
.ws30{word-spacing:-9.677670px;}
.ws2d{word-spacing:-9.617894px;}
.ws7e{word-spacing:-9.558118px;}
.ws13{word-spacing:-9.511557px;}
.ws91{word-spacing:-9.498343px;}
.ws52{word-spacing:-9.319016px;}
.ws6{word-spacing:-9.242565px;}
.ws9a{word-spacing:-9.221789px;}
.ws5{word-spacing:-9.188767px;}
.ws29{word-spacing:-9.139689px;}
.ws80{word-spacing:-9.079914px;}
.ws88{word-spacing:-8.840811px;}
.ws11{word-spacing:-8.704581px;}
.ws82{word-spacing:-8.661484px;}
.ws72{word-spacing:-8.601709px;}
.ws84{word-spacing:-8.482158px;}
.ws85{word-spacing:-8.422382px;}
.wsa8{word-spacing:-8.220396px;}
.ws5c{word-spacing:-8.183280px;}
.wsf{word-spacing:-8.166597px;}
.ws4d{word-spacing:-8.123504px;}
.ws28{word-spacing:-7.944177px;}
.ws23{word-spacing:-7.824626px;}
.ws8f{word-spacing:-7.764850px;}
.wsa7{word-spacing:-7.736210px;}
.ws83{word-spacing:-7.585524px;}
.ws34{word-spacing:-7.525748px;}
.wsd{word-spacing:-7.467218px;}
.ws1b{word-spacing:-7.465972px;}
.wsa2{word-spacing:-7.413420px;}
.ws18{word-spacing:-7.406197px;}
.ws89{word-spacing:-7.286646px;}
.ws9f{word-spacing:-7.252024px;}
.ws42{word-spacing:-7.226870px;}
.ws2b{word-spacing:-7.107319px;}
.ws1f{word-spacing:-7.047543px;}
.wsaa{word-spacing:-6.821637px;}
.ws4e{word-spacing:-6.748665px;}
.ws48{word-spacing:-6.640262px;}
.wsa1{word-spacing:-6.606444px;}
.ws87{word-spacing:-6.569338px;}
.ws7f{word-spacing:-6.509563px;}
.ws1c{word-spacing:-6.449787px;}
.ws8{word-spacing:-6.337452px;}
.ws20{word-spacing:-6.150909px;}
.ws2c{word-spacing:-5.732480px;}
.ws58{word-spacing:-5.553153px;}
.wsa3{word-spacing:-5.530476px;}
.ws3a{word-spacing:-5.433602px;}
.ws98{word-spacing:-5.422879px;}
.ws8d{word-spacing:-5.134724px;}
.ws21{word-spacing:-4.656519px;}
.wsa{word-spacing:-4.615903px;}
.ws22{word-spacing:-4.357641px;}
.ws9c{word-spacing:-4.024120px;}
.ws5e{word-spacing:-3.819661px;}
.ws8c{word-spacing:-3.759885px;}
.ws81{word-spacing:-3.700110px;}
.ws4a{word-spacing:-3.580558px;}
.ws95{word-spacing:-3.486136px;}
.ws38{word-spacing:-3.401232px;}
.ws27{word-spacing:-3.162129px;}
.ws76{word-spacing:-2.982802px;}
.ws9b{word-spacing:-2.894354px;}
.ws61{word-spacing:-2.863251px;}
.wse{word-spacing:-2.840556px;}
.ws50{word-spacing:-2.803476px;}
.ws9{word-spacing:-2.732959px;}
.ws51{word-spacing:-2.683924px;}
.ws16{word-spacing:-2.679160px;}
.ws33{word-spacing:-2.624149px;}
.ws1e{word-spacing:-2.504598px;}
.ws6c{word-spacing:-2.444822px;}
.ws19{word-spacing:-2.325271px;}
.ws3b{word-spacing:-2.265495px;}
.wsb{word-spacing:-2.141176px;}
.ws94{word-spacing:-1.818386px;}
.ws3d{word-spacing:-1.787290px;}
.ws5a{word-spacing:-1.727515px;}
.ws5b{word-spacing:-1.667739px;}
.wsab{word-spacing:-1.656991px;}
.ws63{word-spacing:-1.488412px;}
.ws62{word-spacing:-1.249310px;}
.ws2e{word-spacing:-1.010208px;}
.wsc{word-spacing:-0.796216px;}
.ws90{word-spacing:-0.532003px;}
.ws96{word-spacing:-0.527224px;}
.ws5d{word-spacing:-0.412452px;}
.ws99{word-spacing:-0.204434px;}
.ws68{word-spacing:-0.053798px;}
.ws2{word-spacing:-0.041843px;}
.ws24{word-spacing:0.000000px;}
.ws70{word-spacing:0.011955px;}
.ws45{word-spacing:0.493738px;}
.ws7a{word-spacing:1.045907px;}
.ws43{word-spacing:6.028738px;}
.ws41{word-spacing:6.034738px;}
.ws6d{word-spacing:8.610671px;}
.ws4f{word-spacing:10.544486px;}
.ws3c{word-spacing:11.486938px;}
.ws40{word-spacing:11.488738px;}
.ws7b{word-spacing:12.558764px;}
.ws66{word-spacing:18.371570px;}
.ws3{word-spacing:22.862297px;}
.ws60{word-spacing:26.755738px;}
.ws35{word-spacing:26.827469px;}
.ws15{word-spacing:27.606115px;}
.ws7{word-spacing:29.834008px;}
.ws37{word-spacing:34.376948px;}
.ws93{word-spacing:37.344584px;}
.ws17{word-spacing:80.625869px;}
.ws69{word-spacing:91.197571px;}
.ws79{word-spacing:202.006944px;}
._13{margin-left:-30.739800px;}
._15{margin-left:-28.471425px;}
._29{margin-left:-26.118447px;}
._1{margin-left:-10.329264px;}
._2{margin-left:-7.833025px;}
._6{margin-left:-6.631597px;}
._8{margin-left:-5.526874px;}
._4{margin-left:-3.966698px;}
._0{margin-left:-2.668393px;}
._3{margin-left:-1.613941px;}
._7{width:1.560154px;}
._9{width:2.668393px;}
._5{width:3.963823px;}
._a{width:10.471500px;}
._19{width:16.775435px;}
._d{width:19.142734px;}
._e{width:20.959727px;}
._28{width:22.454117px;}
._c{width:23.828956px;}
._1f{width:25.296691px;}
._27{width:28.073023px;}
._10{width:29.094607px;}
._14{width:33.319139px;}
._12{width:35.332347px;}
._16{width:36.919231px;}
._23{width:44.371847px;}
._1e{width:52.370732px;}
._25{width:56.323847px;}
._11{width:68.741940px;}
._22{width:72.007847px;}
._f{width:80.697600px;}
._24{width:99.649847px;}
._18{width:128.547896px;}
._26{width:143.934244px;}
._21{width:162.636382px;}
._b{width:170.648525px;}
._20{width:225.864869px;}
._1b{width:243.283670px;}
._1a{width:254.205573px;}
._1c{width:262.195309px;}
._1d{width:277.114479px;}
._17{width:294.303283px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:37.867378px;}
.fs2{font-size:41.842800px;}
.fs5{font-size:51.873120px;}
.fs3{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs4{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y58{bottom:80.922067px;}
.y5b{bottom:122.733963px;}
.y5a{bottom:157.099905px;}
.y59{bottom:177.330422px;}
.y4b{bottom:193.615500px;}
.y27{bottom:193.617000px;}
.yc0{bottom:210.054000px;}
.y26{bottom:211.549500px;}
.ybf{bottom:226.492500px;}
.y25{bottom:229.482000px;}
.y5c{bottom:231.739500px;}
.ybe{bottom:242.931000px;}
.y24{bottom:247.414500px;}
.y4a{bottom:259.185000px;}
.ybd{bottom:259.702500px;}
.y57{bottom:263.121000px;}
.y23{bottom:265.347000px;}
.ybc{bottom:276.141000px;}
.y22{bottom:283.281000px;}
.ybb{bottom:292.579500px;}
.y9b{bottom:299.970000px;}
.y21{bottom:301.213500px;}
.y78{bottom:302.140500px;}
.y49{bottom:303.834000px;}
.yba{bottom:309.351000px;}
.y9a{bottom:317.902500px;}
.y20{bottom:319.146000px;}
.y77{bottom:320.073000px;}
.y48{bottom:321.766500px;}
.yb9{bottom:325.789500px;}
.y99{bottom:335.524500px;}
.y1f{bottom:337.078500px;}
.y76{bottom:338.005500px;}
.y47{bottom:339.699000px;}
.yb8{bottom:342.228000px;}
.y98{bottom:353.457000px;}
.y1e{bottom:355.011000px;}
.y75{bottom:355.939500px;}
.y46{bottom:357.631500px;}
.yb7{bottom:358.999500px;}
.y97{bottom:371.389500px;}
.y1d{bottom:372.943500px;}
.y74{bottom:373.872000px;}
.yb6{bottom:375.438000px;}
.y45{bottom:375.564000px;}
.y96{bottom:389.011500px;}
.y1c{bottom:390.877500px;}
.y73{bottom:391.804500px;}
.yb5{bottom:391.876500px;}
.y44{bottom:393.498000px;}
.y95{bottom:406.944000px;}
.yb4{bottom:408.648000px;}
.y1b{bottom:408.810000px;}
.y72{bottom:409.737000px;}
.y43{bottom:411.430500px;}
.y94{bottom:424.876500px;}
.yb3{bottom:425.086500px;}
.y1a{bottom:426.742500px;}
.y71{bottom:427.669500px;}
.y42{bottom:429.363000px;}
.yb2{bottom:441.525000px;}
.y70{bottom:445.602000px;}
.y41{bottom:447.295500px;}
.y93{bottom:453.210000px;}
.yb1{bottom:458.296500px;}
.y19{bottom:459.619500px;}
.y6f{bottom:463.536000px;}
.y40{bottom:465.228000px;}
.y92{bottom:471.144000px;}
.yb0{bottom:474.735000px;}
.y6e{bottom:481.468500px;}
.y3f{bottom:483.160500px;}
.y91{bottom:489.076500px;}
.yaf{bottom:491.506500px;}
.y18{bottom:506.631000px;}
.y90{bottom:507.009000px;}
.yae{bottom:507.945000px;}
.y3e{bottom:512.865000px;}
.y17{bottom:523.069500px;}
.yad{bottom:524.383500px;}
.y8f{bottom:524.941500px;}
.y6d{bottom:534.012000px;}
.yac{bottom:541.155000px;}
.y8e{bottom:542.874000px;}
.y6c{bottom:550.450500px;}
.y16{bottom:555.198000px;}
.y3d{bottom:557.512500px;}
.yab{bottom:557.593500px;}
.y8d{bottom:560.806500px;}
.y6b{bottom:567.487500px;}
.y15{bottom:571.636500px;}
.yaa{bottom:574.032000px;}
.y3c{bottom:575.446500px;}
.y8c{bottom:578.740500px;}
.y6a{bottom:583.926000px;}
.y14{bottom:588.075000px;}
.y56{bottom:593.320500px;}
.y8b{bottom:596.673000px;}
.y66{bottom:600.961500px;}
.y69{bottom:603.444000px;}
.y67{bottom:604.360500px;}
.y68{bottom:604.510500px;}
.y13{bottom:604.513500px;}
.ya9{bottom:610.069500px;}
.y3b{bottom:611.127000px;}
.y55{bottom:611.253000px;}
.y12{bottom:620.952000px;}
.y54{bottom:629.185500px;}
.y8a{bottom:631.294500px;}
.y65{bottom:632.119500px;}
.y11{bottom:637.390500px;}
.y53{bottom:647.118000px;}
.y10{bottom:653.829000px;}
.y3a{bottom:658.764000px;}
.ya8{bottom:659.557500px;}
.y52{bottom:665.050500px;}
.yf{bottom:670.267500px;}
.y39{bottom:676.696500px;}
.ya7{bottom:677.490000px;}
.y89{bottom:677.872500px;}
.y64{bottom:680.635500px;}
.y51{bottom:682.983000px;}
.ye{bottom:686.706000px;}
.y38{bottom:694.629000px;}
.ya6{bottom:695.422500px;}
.y88{bottom:695.805000px;}
.y63{bottom:698.568000px;}
.y50{bottom:700.917000px;}
.yd{bottom:703.144500px;}
.y37{bottom:712.563000px;}
.ya5{bottom:713.356500px;}
.y87{bottom:713.737500px;}
.y62{bottom:716.500500px;}
.y4f{bottom:718.849500px;}
.yc{bottom:719.581500px;}
.y36{bottom:730.495500px;}
.ya4{bottom:731.289000px;}
.y86{bottom:731.670000px;}
.y61{bottom:734.433000px;}
.yb{bottom:736.020000px;}
.y4e{bottom:736.782000px;}
.y35{bottom:748.428000px;}
.y85{bottom:749.602500px;}
.y60{bottom:752.367000px;}
.ya{bottom:752.458500px;}
.y4d{bottom:754.714500px;}
.y34{bottom:766.360500px;}
.y84{bottom:767.536500px;}
.ya3{bottom:768.820500px;}
.y9{bottom:768.897000px;}
.y5f{bottom:770.299500px;}
.y33{bottom:784.293000px;}
.y8{bottom:785.335500px;}
.y83{bottom:785.469000px;}
.y4c{bottom:786.522000px;}
.ya2{bottom:786.753000px;}
.y5e{bottom:788.232000px;}
.y7{bottom:801.774000px;}
.y32{bottom:802.225500px;}
.ya1{bottom:804.687000px;}
.ya0{bottom:822.619500px;}
.y5d{bottom:825.025500px;}
.y31{bottom:837.907500px;}
.y82{bottom:838.714500px;}
.y9f{bottom:840.552000px;}
.y6{bottom:854.763000px;}
.y81{bottom:855.153000px;}
.y30{bottom:855.840000px;}
.y9e{bottom:858.484500px;}
.y5{bottom:871.201500px;}
.y80{bottom:872.188500px;}
.y2f{bottom:873.774000px;}
.y9d{bottom:876.417000px;}
.y7f{bottom:889.224000px;}
.y2e{bottom:891.706500px;}
.y4{bottom:902.521500px;}
.y7e{bottom:906.261000px;}
.y2d{bottom:909.639000px;}
.y9c{bottom:913.950000px;}
.y3{bottom:920.455500px;}
.y7d{bottom:923.296500px;}
.y2c{bottom:927.571500px;}
.y7c{bottom:940.333500px;}
.y2b{bottom:945.504000px;}
.y7b{bottom:957.369000px;}
.y2a{bottom:963.436500px;}
.yc2{bottom:966.426000px;}
.y2{bottom:972.403500px;}
.y7a{bottom:973.807500px;}
.y29{bottom:981.370500px;}
.yc1{bottom:982.864500px;}
.y1{bottom:999.303000px;}
.y79{bottom:1004.965500px;}
.y28{bottom:1038.157500px;}
.he{height:31.902451px;}
.hd{height:38.519654px;}
.h7{height:41.603818px;}
.h9{height:43.717288px;}
.h6{height:44.891476px;}
.h4{height:46.589414px;}
.h5{height:50.283571px;}
.h2{height:53.072100px;}
.h3{height:53.078100px;}
.hc{height:55.859700px;}
.ha{height:59.939700px;}
.h1{height:60.426194px;}
.hb{height:60.605700px;}
.h8{height:291.786300px;}
.h0{height:1188.000000px;}
.w1{width:518.731192px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:202.147500px;}
.x9{left:208.893000px;}
.x8{left:210.459000px;}
.x26{left:211.489500px;}
.xa{left:212.572500px;}
.x29{left:220.368000px;}
.x28{left:224.563500px;}
.x27{left:227.551500px;}
.xf{left:237.097975px;}
.x2{left:241.492500px;}
.x5{left:244.582500px;}
.x1b{left:252.765000px;}
.x1{left:254.956500px;}
.x3{left:263.074500px;}
.xc{left:273.501000px;}
.x25{left:286.516500px;}
.x16{left:289.663500px;}
.x22{left:298.018500px;}
.x24{left:317.878500px;}
.x10{left:320.964000px;}
.x23{left:339.567000px;}
.xe{left:364.965216px;}
.x4{left:370.956000px;}
.x6{left:383.239500px;}
.x1c{left:400.590000px;}
.xb{left:416.232000px;}
.xd{left:430.649554px;}
.x17{left:437.557500px;}
.x1e{left:499.555500px;}
.x1d{left:504.163500px;}
.x18{left:533.364000px;}
.x1f{left:542.760000px;}
.x19{left:553.329000px;}
.x1a{left:568.413000px;}
.x20{left:584.701500px;}
.x11{left:587.796000px;}
.x12{left:624.717000px;}
.x21{left:627.465000px;}
.x13{left:646.077000px;}
.x14{left:662.191500px;}
.x15{left:706.584000px;}
@media print{
.v2{vertical-align:-9.452435pt;}
.v3{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:8.821333pt;}
.v5{vertical-align:9.802667pt;}
.v6{vertical-align:12.085333pt;}
.v4{vertical-align:13.429333pt;}
.v1{vertical-align:19.280000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000267pt;}
.ls0{letter-spacing:0.000501pt;}
.ls8{letter-spacing:0.000882pt;}
.ls13{letter-spacing:0.001485pt;}
.ls2c{letter-spacing:0.002079pt;}
.lsa{letter-spacing:0.002694pt;}
.ls1f{letter-spacing:0.003035pt;}
.ls9{letter-spacing:0.003310pt;}
.ls15{letter-spacing:1.803831pt;}
.lse{letter-spacing:2.013976pt;}
.ls6{letter-spacing:2.651680pt;}
.ls7{letter-spacing:2.657014pt;}
.ls29{letter-spacing:2.658245pt;}
.ls17{letter-spacing:6.825315pt;}
.ls3{letter-spacing:8.859145pt;}
.ls23{letter-spacing:10.939145pt;}
.ls27{letter-spacing:12.608479pt;}
.ls26{letter-spacing:12.617685pt;}
.ls22{letter-spacing:13.591578pt;}
.ls21{letter-spacing:14.759412pt;}
.ls1e{letter-spacing:14.949812pt;}
.ls4{letter-spacing:16.233067pt;}
.ls12{letter-spacing:16.377574pt;}
.ls19{letter-spacing:16.381701pt;}
.ls28{letter-spacing:16.768479pt;}
.ls18{letter-spacing:17.061277pt;}
.ls11{letter-spacing:17.109277pt;}
.ls20{letter-spacing:17.415578pt;}
.ls1d{letter-spacing:17.612911pt;}
.lsb{letter-spacing:17.671392pt;}
.ls14{letter-spacing:18.623944pt;}
.ls25{letter-spacing:19.114265pt;}
.ls24{letter-spacing:19.181702pt;}
.lsd{letter-spacing:19.394059pt;}
.ls2a{letter-spacing:20.762933pt;}
.ls1c{letter-spacing:22.626079pt;}
.ls10{letter-spacing:24.292568pt;}
.ls2{letter-spacing:24.963713pt;}
.ls1b{letter-spacing:25.282245pt;}
.ls16{letter-spacing:25.935944pt;}
.ls2b{letter-spacing:26.562673pt;}
.lsf{letter-spacing:27.271392pt;}
.lsc{letter-spacing:34.626059pt;}
.ls1a{letter-spacing:139.816509pt;}
.ws6f{word-spacing:-53.133867pt;}
.ws57{word-spacing:-46.109440pt;}
.ws3f{word-spacing:-34.611401pt;}
.ws67{word-spacing:-32.063846pt;}
.ws4{word-spacing:-26.561620pt;}
.ws97{word-spacing:-24.570327pt;}
.ws73{word-spacing:-17.859524pt;}
.ws3e{word-spacing:-14.760588pt;}
.ws8b{word-spacing:-14.340831pt;}
.ws0{word-spacing:-14.070753pt;}
.ws7d{word-spacing:-13.915760pt;}
.ws26{word-spacing:-13.703224pt;}
.ws55{word-spacing:-13.171886pt;}
.wsa6{word-spacing:-12.997693pt;}
.ws7c{word-spacing:-12.959350pt;}
.ws5f{word-spacing:-12.799948pt;}
.ws32{word-spacing:-12.746815pt;}
.ws78{word-spacing:-12.587413pt;}
.ws54{word-spacing:-12.481145pt;}
.wsa4{word-spacing:-11.802173pt;}
.ws25{word-spacing:-11.737271pt;}
.ws4c{word-spacing:-11.684137pt;}
.ws8e{word-spacing:-11.631003pt;}
.ws31{word-spacing:-11.418468pt;}
.ws46{word-spacing:-11.365334pt;}
.ws44{word-spacing:-11.357452pt;}
.ws75{word-spacing:-11.312200pt;}
.ws74{word-spacing:-11.259066pt;}
.ws53{word-spacing:-11.046531pt;}
.ws92{word-spacing:-10.993397pt;}
.ws86{word-spacing:-10.727728pt;}
.ws2f{word-spacing:-10.462058pt;}
.ws49{word-spacing:-10.355791pt;}
.ws47{word-spacing:-10.302657pt;}
.ws14{word-spacing:-10.271908pt;}
.ws4b{word-spacing:-10.196389pt;}
.ws9d{word-spacing:-10.128445pt;}
.ws6b{word-spacing:-10.090121pt;}
.wsa0{word-spacing:-10.032804pt;}
.wsa5{word-spacing:-9.984983pt;}
.ws1a{word-spacing:-9.930720pt;}
.ws6a{word-spacing:-9.699352pt;}
.ws64{word-spacing:-9.665050pt;}
.ws77{word-spacing:-9.558783pt;}
.ws12{word-spacing:-9.506775pt;}
.ws36{word-spacing:-9.399381pt;}
.wsa9{word-spacing:-9.315492pt;}
.ws6e{word-spacing:-9.293113pt;}
.ws71{word-spacing:-9.283464pt;}
.ws10{word-spacing:-9.172029pt;}
.ws56{word-spacing:-9.080578pt;}
.ws2a{word-spacing:-9.027444pt;}
.ws8a{word-spacing:-8.974310pt;}
.ws59{word-spacing:-8.921176pt;}
.ws65{word-spacing:-8.912339pt;}
.ws1{word-spacing:-8.868042pt;}
.ws1d{word-spacing:-8.761775pt;}
.ws9e{word-spacing:-8.741642pt;}
.ws39{word-spacing:-8.708641pt;}
.ws30{word-spacing:-8.602373pt;}
.ws2d{word-spacing:-8.549239pt;}
.ws7e{word-spacing:-8.496105pt;}
.ws13{word-spacing:-8.454717pt;}
.ws91{word-spacing:-8.442971pt;}
.ws52{word-spacing:-8.283570pt;}
.ws6{word-spacing:-8.215613pt;}
.ws9a{word-spacing:-8.197146pt;}
.ws5{word-spacing:-8.167793pt;}
.ws29{word-spacing:-8.124168pt;}
.ws80{word-spacing:-8.071034pt;}
.ws88{word-spacing:-7.858499pt;}
.ws11{word-spacing:-7.737405pt;}
.ws82{word-spacing:-7.699097pt;}
.ws72{word-spacing:-7.645963pt;}
.ws84{word-spacing:-7.539696pt;}
.ws85{word-spacing:-7.486562pt;}
.wsa8{word-spacing:-7.307018pt;}
.ws5c{word-spacing:-7.274026pt;}
.wsf{word-spacing:-7.259197pt;}
.ws4d{word-spacing:-7.220892pt;}
.ws28{word-spacing:-7.061491pt;}
.ws23{word-spacing:-6.955223pt;}
.ws8f{word-spacing:-6.902089pt;}
.wsa7{word-spacing:-6.876631pt;}
.ws83{word-spacing:-6.742688pt;}
.ws34{word-spacing:-6.689554pt;}
.wsd{word-spacing:-6.637527pt;}
.ws1b{word-spacing:-6.636420pt;}
.wsa2{word-spacing:-6.589706pt;}
.ws18{word-spacing:-6.583286pt;}
.ws89{word-spacing:-6.477018pt;}
.ws9f{word-spacing:-6.446244pt;}
.ws42{word-spacing:-6.423884pt;}
.ws2b{word-spacing:-6.317617pt;}
.ws1f{word-spacing:-6.264483pt;}
.wsaa{word-spacing:-6.063677pt;}
.ws4e{word-spacing:-5.998814pt;}
.ws48{word-spacing:-5.902455pt;}
.wsa1{word-spacing:-5.872394pt;}
.ws87{word-spacing:-5.839412pt;}
.ws7f{word-spacing:-5.786278pt;}
.ws1c{word-spacing:-5.733144pt;}
.ws8{word-spacing:-5.633290pt;}
.ws20{word-spacing:-5.467475pt;}
.ws2c{word-spacing:-5.095538pt;}
.ws58{word-spacing:-4.936136pt;}
.wsa3{word-spacing:-4.915978pt;}
.ws3a{word-spacing:-4.829868pt;}
.ws98{word-spacing:-4.820337pt;}
.ws8d{word-spacing:-4.564199pt;}
.ws21{word-spacing:-4.139128pt;}
.wsa{word-spacing:-4.103025pt;}
.ws22{word-spacing:-3.873459pt;}
.ws9c{word-spacing:-3.576996pt;}
.ws5e{word-spacing:-3.395254pt;}
.ws8c{word-spacing:-3.342120pt;}
.ws81{word-spacing:-3.288986pt;}
.ws4a{word-spacing:-3.182719pt;}
.ws95{word-spacing:-3.098788pt;}
.ws38{word-spacing:-3.023317pt;}
.ws27{word-spacing:-2.810782pt;}
.ws76{word-spacing:-2.651380pt;}
.ws9b{word-spacing:-2.572759pt;}
.ws61{word-spacing:-2.545112pt;}
.wse{word-spacing:-2.524938pt;}
.ws50{word-spacing:-2.491978pt;}
.ws9{word-spacing:-2.429297pt;}
.ws51{word-spacing:-2.385711pt;}
.ws16{word-spacing:-2.381476pt;}
.ws33{word-spacing:-2.332577pt;}
.ws1e{word-spacing:-2.226309pt;}
.ws6c{word-spacing:-2.173175pt;}
.ws19{word-spacing:-2.066907pt;}
.ws3b{word-spacing:-2.013774pt;}
.wsb{word-spacing:-1.903268pt;}
.ws94{word-spacing:-1.616343pt;}
.ws3d{word-spacing:-1.588703pt;}
.ws5a{word-spacing:-1.535569pt;}
.ws5b{word-spacing:-1.482435pt;}
.wsab{word-spacing:-1.472881pt;}
.ws63{word-spacing:-1.323033pt;}
.ws62{word-spacing:-1.110498pt;}
.ws2e{word-spacing:-0.897962pt;}
.wsc{word-spacing:-0.707748pt;}
.ws90{word-spacing:-0.472891pt;}
.ws96{word-spacing:-0.468644pt;}
.ws5d{word-spacing:-0.366624pt;}
.ws99{word-spacing:-0.181719pt;}
.ws68{word-spacing:-0.047821pt;}
.ws2{word-spacing:-0.037194pt;}
.ws24{word-spacing:0.000000pt;}
.ws70{word-spacing:0.010627pt;}
.ws45{word-spacing:0.438879pt;}
.ws7a{word-spacing:0.929695pt;}
.ws43{word-spacing:5.358879pt;}
.ws41{word-spacing:5.364212pt;}
.ws6d{word-spacing:7.653930pt;}
.ws4f{word-spacing:9.372877pt;}
.ws3c{word-spacing:10.210612pt;}
.ws40{word-spacing:10.212212pt;}
.ws7b{word-spacing:11.163346pt;}
.ws66{word-spacing:16.330284pt;}
.ws3{word-spacing:20.322042pt;}
.ws60{word-spacing:23.782878pt;}
.ws35{word-spacing:23.846639pt;}
.ws15{word-spacing:24.538769pt;}
.ws7{word-spacing:26.519119pt;}
.ws37{word-spacing:30.557287pt;}
.ws93{word-spacing:33.195185pt;}
.ws17{word-spacing:71.667439pt;}
.ws69{word-spacing:81.064508pt;}
.ws79{word-spacing:179.561728pt;}
._13{margin-left:-27.324267pt;}
._15{margin-left:-25.307933pt;}
._29{margin-left:-23.216397pt;}
._1{margin-left:-9.181568pt;}
._2{margin-left:-6.962689pt;}
._6{margin-left:-5.894753pt;}
._8{margin-left:-4.912777pt;}
._4{margin-left:-3.525954pt;}
._0{margin-left:-2.371905pt;}
._3{margin-left:-1.434614pt;}
._7{width:1.386803pt;}
._9{width:2.371905pt;}
._5{width:3.523398pt;}
._a{width:9.308000pt;}
._19{width:14.911498pt;}
._d{width:17.015763pt;}
._e{width:18.630868pt;}
._28{width:19.959215pt;}
._c{width:21.181294pt;}
._1f{width:22.485947pt;}
._27{width:24.953798pt;}
._10{width:25.861873pt;}
._14{width:29.617012pt;}
._12{width:31.406531pt;}
._16{width:32.817094pt;}
._23{width:39.441642pt;}
._1e{width:46.551762pt;}
._25{width:50.065642pt;}
._11{width:61.103947pt;}
._22{width:64.006975pt;}
._f{width:71.731200pt;}
._24{width:88.577642pt;}
._18{width:114.264797pt;}
._26{width:127.941550pt;}
._21{width:144.565673pt;}
._b{width:151.687578pt;}
._20{width:200.768772pt;}
._1b{width:216.252151pt;}
._1a{width:225.960509pt;}
._1c{width:233.062497pt;}
._1d{width:246.323982pt;}
._17{width:261.602918pt;}
.fs6{font-size:33.659891pt;}
.fs2{font-size:37.193600pt;}
.fs5{font-size:46.109440pt;}
.fs3{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs4{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:71.930726pt;}
.y5b{bottom:109.096856pt;}
.y5a{bottom:139.644360pt;}
.y59{bottom:157.627042pt;}
.y4b{bottom:172.102667pt;}
.y27{bottom:172.104000pt;}
.yc0{bottom:186.714667pt;}
.y26{bottom:188.044000pt;}
.ybf{bottom:201.326667pt;}
.y25{bottom:203.984000pt;}
.y5c{bottom:205.990667pt;}
.ybe{bottom:215.938667pt;}
.y24{bottom:219.924000pt;}
.y4a{bottom:230.386667pt;}
.ybd{bottom:230.846667pt;}
.y57{bottom:233.885333pt;}
.y23{bottom:235.864000pt;}
.ybc{bottom:245.458667pt;}
.y22{bottom:251.805333pt;}
.ybb{bottom:260.070667pt;}
.y9b{bottom:266.640000pt;}
.y21{bottom:267.745333pt;}
.y78{bottom:268.569333pt;}
.y49{bottom:270.074667pt;}
.yba{bottom:274.978667pt;}
.y9a{bottom:282.580000pt;}
.y20{bottom:283.685333pt;}
.y77{bottom:284.509333pt;}
.y48{bottom:286.014667pt;}
.yb9{bottom:289.590667pt;}
.y99{bottom:298.244000pt;}
.y1f{bottom:299.625333pt;}
.y76{bottom:300.449333pt;}
.y47{bottom:301.954667pt;}
.yb8{bottom:304.202667pt;}
.y98{bottom:314.184000pt;}
.y1e{bottom:315.565333pt;}
.y75{bottom:316.390667pt;}
.y46{bottom:317.894667pt;}
.yb7{bottom:319.110667pt;}
.y97{bottom:330.124000pt;}
.y1d{bottom:331.505333pt;}
.y74{bottom:332.330667pt;}
.yb6{bottom:333.722667pt;}
.y45{bottom:333.834667pt;}
.y96{bottom:345.788000pt;}
.y1c{bottom:347.446667pt;}
.y73{bottom:348.270667pt;}
.yb5{bottom:348.334667pt;}
.y44{bottom:349.776000pt;}
.y95{bottom:361.728000pt;}
.yb4{bottom:363.242667pt;}
.y1b{bottom:363.386667pt;}
.y72{bottom:364.210667pt;}
.y43{bottom:365.716000pt;}
.y94{bottom:377.668000pt;}
.yb3{bottom:377.854667pt;}
.y1a{bottom:379.326667pt;}
.y71{bottom:380.150667pt;}
.y42{bottom:381.656000pt;}
.yb2{bottom:392.466667pt;}
.y70{bottom:396.090667pt;}
.y41{bottom:397.596000pt;}
.y93{bottom:402.853333pt;}
.yb1{bottom:407.374667pt;}
.y19{bottom:408.550667pt;}
.y6f{bottom:412.032000pt;}
.y40{bottom:413.536000pt;}
.y92{bottom:418.794667pt;}
.yb0{bottom:421.986667pt;}
.y6e{bottom:427.972000pt;}
.y3f{bottom:429.476000pt;}
.y91{bottom:434.734667pt;}
.yaf{bottom:436.894667pt;}
.y18{bottom:450.338667pt;}
.y90{bottom:450.674667pt;}
.yae{bottom:451.506667pt;}
.y3e{bottom:455.880000pt;}
.y17{bottom:464.950667pt;}
.yad{bottom:466.118667pt;}
.y8f{bottom:466.614667pt;}
.y6d{bottom:474.677333pt;}
.yac{bottom:481.026667pt;}
.y8e{bottom:482.554667pt;}
.y6c{bottom:489.289333pt;}
.y16{bottom:493.509333pt;}
.y3d{bottom:495.566667pt;}
.yab{bottom:495.638667pt;}
.y8d{bottom:498.494667pt;}
.y6b{bottom:504.433333pt;}
.y15{bottom:508.121333pt;}
.yaa{bottom:510.250667pt;}
.y3c{bottom:511.508000pt;}
.y8c{bottom:514.436000pt;}
.y6a{bottom:519.045333pt;}
.y14{bottom:522.733333pt;}
.y56{bottom:527.396000pt;}
.y8b{bottom:530.376000pt;}
.y66{bottom:534.188000pt;}
.y69{bottom:536.394667pt;}
.y67{bottom:537.209333pt;}
.y68{bottom:537.342667pt;}
.y13{bottom:537.345333pt;}
.ya9{bottom:542.284000pt;}
.y3b{bottom:543.224000pt;}
.y55{bottom:543.336000pt;}
.y12{bottom:551.957333pt;}
.y54{bottom:559.276000pt;}
.y8a{bottom:561.150667pt;}
.y65{bottom:561.884000pt;}
.y11{bottom:566.569333pt;}
.y53{bottom:575.216000pt;}
.y10{bottom:581.181333pt;}
.y3a{bottom:585.568000pt;}
.ya8{bottom:586.273333pt;}
.y52{bottom:591.156000pt;}
.yf{bottom:595.793333pt;}
.y39{bottom:601.508000pt;}
.ya7{bottom:602.213333pt;}
.y89{bottom:602.553333pt;}
.y64{bottom:605.009333pt;}
.y51{bottom:607.096000pt;}
.ye{bottom:610.405333pt;}
.y38{bottom:617.448000pt;}
.ya6{bottom:618.153333pt;}
.y88{bottom:618.493333pt;}
.y63{bottom:620.949333pt;}
.y50{bottom:623.037333pt;}
.yd{bottom:625.017333pt;}
.y37{bottom:633.389333pt;}
.ya5{bottom:634.094667pt;}
.y87{bottom:634.433333pt;}
.y62{bottom:636.889333pt;}
.y4f{bottom:638.977333pt;}
.yc{bottom:639.628000pt;}
.y36{bottom:649.329333pt;}
.ya4{bottom:650.034667pt;}
.y86{bottom:650.373333pt;}
.y61{bottom:652.829333pt;}
.yb{bottom:654.240000pt;}
.y4e{bottom:654.917333pt;}
.y35{bottom:665.269333pt;}
.y85{bottom:666.313333pt;}
.y60{bottom:668.770667pt;}
.ya{bottom:668.852000pt;}
.y4d{bottom:670.857333pt;}
.y34{bottom:681.209333pt;}
.y84{bottom:682.254667pt;}
.ya3{bottom:683.396000pt;}
.y9{bottom:683.464000pt;}
.y5f{bottom:684.710667pt;}
.y33{bottom:697.149333pt;}
.y8{bottom:698.076000pt;}
.y83{bottom:698.194667pt;}
.y4c{bottom:699.130667pt;}
.ya2{bottom:699.336000pt;}
.y5e{bottom:700.650667pt;}
.y7{bottom:712.688000pt;}
.y32{bottom:713.089333pt;}
.ya1{bottom:715.277333pt;}
.ya0{bottom:731.217333pt;}
.y5d{bottom:733.356000pt;}
.y31{bottom:744.806667pt;}
.y82{bottom:745.524000pt;}
.y9f{bottom:747.157333pt;}
.y6{bottom:759.789333pt;}
.y81{bottom:760.136000pt;}
.y30{bottom:760.746667pt;}
.y9e{bottom:763.097333pt;}
.y5{bottom:774.401333pt;}
.y80{bottom:775.278667pt;}
.y2f{bottom:776.688000pt;}
.y9d{bottom:779.037333pt;}
.y7f{bottom:790.421333pt;}
.y2e{bottom:792.628000pt;}
.y4{bottom:802.241333pt;}
.y7e{bottom:805.565333pt;}
.y2d{bottom:808.568000pt;}
.y9c{bottom:812.400000pt;}
.y3{bottom:818.182667pt;}
.y7d{bottom:820.708000pt;}
.y2c{bottom:824.508000pt;}
.y7c{bottom:835.852000pt;}
.y2b{bottom:840.448000pt;}
.y7b{bottom:850.994667pt;}
.y2a{bottom:856.388000pt;}
.yc2{bottom:859.045333pt;}
.y2{bottom:864.358667pt;}
.y7a{bottom:865.606667pt;}
.y29{bottom:872.329333pt;}
.yc1{bottom:873.657333pt;}
.y1{bottom:888.269333pt;}
.y79{bottom:893.302667pt;}
.y28{bottom:922.806667pt;}
.he{height:28.357734pt;}
.hd{height:34.239693pt;}
.h7{height:36.981171pt;}
.h9{height:38.859811pt;}
.h6{height:39.903534pt;}
.h4{height:41.412813pt;}
.h5{height:44.696508pt;}
.h2{height:47.175200pt;}
.h3{height:47.180533pt;}
.hc{height:49.653067pt;}
.ha{height:53.279733pt;}
.h1{height:53.712173pt;}
.hb{height:53.871733pt;}
.h8{height:259.365600pt;}
.h0{height:1056.000000pt;}
.w1{width:461.094393pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:179.686667pt;}
.x9{left:185.682667pt;}
.x8{left:187.074667pt;}
.x26{left:187.990667pt;}
.xa{left:188.953333pt;}
.x29{left:195.882667pt;}
.x28{left:199.612000pt;}
.x27{left:202.268000pt;}
.xf{left:210.753755pt;}
.x2{left:214.660000pt;}
.x5{left:217.406667pt;}
.x1b{left:224.680000pt;}
.x1{left:226.628000pt;}
.x3{left:233.844000pt;}
.xc{left:243.112000pt;}
.x25{left:254.681333pt;}
.x16{left:257.478667pt;}
.x22{left:264.905333pt;}
.x24{left:282.558667pt;}
.x10{left:285.301333pt;}
.x23{left:301.837333pt;}
.xe{left:324.413525pt;}
.x4{left:329.738667pt;}
.x6{left:340.657333pt;}
.x1c{left:356.080000pt;}
.xb{left:369.984000pt;}
.xd{left:382.799603pt;}
.x17{left:388.940000pt;}
.x1e{left:444.049333pt;}
.x1d{left:448.145333pt;}
.x18{left:474.101333pt;}
.x1f{left:482.453333pt;}
.x19{left:491.848000pt;}
.x1a{left:505.256000pt;}
.x20{left:519.734667pt;}
.x11{left:522.485333pt;}
.x12{left:555.304000pt;}
.x21{left:557.746667pt;}
.x13{left:574.290667pt;}
.x14{left:588.614667pt;}
.x15{left:628.074667pt;}
}




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