
    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_3693b1686c8ed6b6c2779f0f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_fb354204a42ddfd5374a51b8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.920000;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_b3c4b11be8fdd90240b35b13.woff')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_396f82e55c4a9f2a43ff070e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.208000;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_04815b2bb157fa3b5ef2d3f1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_2610a26110aac8e1f6bc29d2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.894000;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_1efe9fd0b0f1d493d3264dad.woff')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_e362718257a1de6e6e93897f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.725000;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_7a5947af5603037fb65f7dbb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.909000;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_0231410c59a8141116dc7d56.woff')format("woff");}.ffa{font-family:ffa;line-height:1.400000;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_e97da1be1ff56e067019a87f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.866000;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_caa6beb2004cd92bdb05999b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.919000;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_c29dad4f41c58e039d8ee607.woff')format("woff");}.ffd{font-family:ffd;line-height:0.656000;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_4e7e04e648cbae93041e3f76.woff')format("woff");}.ffe{font-family:ffe;line-height:0.764000;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_42439ceeed6bb409e74c5714.woff')format("woff");}.fff{font-family:fff;line-height:0.383000;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);}
.v8{vertical-align:-12.912000px;}
.v2{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:12.684000px;}
.v4{vertical-align:17.736000px;}
.v6{vertical-align:18.930000px;}
.v7{vertical-align:26.034000px;}
.v3{vertical-align:29.616000px;}
.v1{vertical-align:31.236000px;}
.v5{vertical-align:48.528000px;}
.ls9{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000163px;}
.ls4{letter-spacing:0.000655px;}
.ls6{letter-spacing:0.001064px;}
.ls1f{letter-spacing:0.001240px;}
.ls1{letter-spacing:0.002338px;}
.ls1a{letter-spacing:0.002759px;}
.ls22{letter-spacing:0.003056px;}
.ls2{letter-spacing:0.003723px;}
.ls1e{letter-spacing:0.005831px;}
.ls5{letter-spacing:0.006655px;}
.lsd{letter-spacing:0.451809px;}
.ls26{letter-spacing:2.573587px;}
.ls24{letter-spacing:2.984915px;}
.ls25{letter-spacing:2.990915px;}
.ls10{letter-spacing:3.861543px;}
.ls13{letter-spacing:3.867543px;}
.lse{letter-spacing:3.972993px;}
.ls15{letter-spacing:5.276022px;}
.ls14{letter-spacing:5.579907px;}
.ls1c{letter-spacing:11.954759px;}
.ls1b{letter-spacing:15.937473px;}
.ls16{letter-spacing:18.925739px;}
.ls19{letter-spacing:19.919518px;}
.ls2a{letter-spacing:19.989736px;}
.ls11{letter-spacing:20.645907px;}
.lsa{letter-spacing:22.732404px;}
.ls12{letter-spacing:23.111518px;}
.ls29{letter-spacing:23.409736px;}
.lsb{letter-spacing:23.410404px;}
.ls7{letter-spacing:26.396915px;}
.ls17{letter-spacing:26.657518px;}
.ls21{letter-spacing:29.852915px;}
.lsc{letter-spacing:30.532404px;}
.ls3{letter-spacing:31.085131px;}
.ls0{letter-spacing:31.089723px;}
.ls27{letter-spacing:35.117578px;}
.ls28{letter-spacing:35.119200px;}
.ls23{letter-spacing:35.271030px;}
.ls8{letter-spacing:35.865600px;}
.ls18{letter-spacing:552.589114px;}
.ls20{letter-spacing:727.159114px;}
.ls1d{letter-spacing:805.975114px;}
.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;}
}
.ws15{word-spacing:-71.731200px;}
.ws2{word-spacing:-59.775600px;}
.ws17{word-spacing:-45.664082px;}
.ws26{word-spacing:-33.684972px;}
.ws7{word-spacing:-32.278875px;}
.wsb{word-spacing:-32.135578px;}
.ws64{word-spacing:-26.899125px;}
.ws19{word-spacing:-19.510886px;}
.ws1a{word-spacing:-14.111859px;}
.ws7b{word-spacing:-3.801754px;}
.ws44{word-spacing:-2.725786px;}
.ws3c{word-spacing:-2.654054px;}
.ws2a{word-spacing:-2.582323px;}
.ws8{word-spacing:-2.259533px;}
.ws83{word-spacing:-2.151936px;}
.ws45{word-spacing:-2.080205px;}
.ws42{word-spacing:-1.578086px;}
.ws3a{word-spacing:-1.434624px;}
.ws5d{word-spacing:-1.291162px;}
.ws43{word-spacing:-1.219430px;}
.ws41{word-spacing:-1.147699px;}
.ws3b{word-spacing:-1.075968px;}
.ws6b{word-spacing:-0.502118px;}
.ws3d{word-spacing:-0.215194px;}
.ws3{word-spacing:-0.059776px;}
.ws18{word-spacing:-0.047821px;}
.wsc{word-spacing:0.000000px;}
.ws66{word-spacing:0.143462px;}
.ws6c{word-spacing:0.215194px;}
.ws4a{word-spacing:0.286925px;}
.ws8c{word-spacing:0.470277px;}
.ws57{word-spacing:0.502118px;}
.ws70{word-spacing:0.573850px;}
.ws5f{word-spacing:0.932506px;}
.ws6d{word-spacing:1.219430px;}
.ws56{word-spacing:1.291162px;}
.ws53{word-spacing:1.362893px;}
.ws48{word-spacing:1.649818px;}
.ws6f{word-spacing:2.080205px;}
.ws51{word-spacing:2.223667px;}
.ws47{word-spacing:2.367130px;}
.ws49{word-spacing:2.582323px;}
.ws46{word-spacing:2.725786px;}
.ws4f{word-spacing:2.797517px;}
.ws6e{word-spacing:3.156173px;}
.ws11{word-spacing:3.227904px;}
.ws87{word-spacing:3.371366px;}
.ws10{word-spacing:3.694157px;}
.ws69{word-spacing:3.730022px;}
.ws58{word-spacing:3.801754px;}
.wsf{word-spacing:3.873485px;}
.wsa{word-spacing:3.945216px;}
.ws29{word-spacing:4.016947px;}
.ws9{word-spacing:4.483200px;}
.ws1b{word-spacing:4.598959px;}
.ws36{word-spacing:4.805990px;}
.ws59{word-spacing:4.877722px;}
.ws6a{word-spacing:4.949453px;}
.ws60{word-spacing:5.021184px;}
.ws4d{word-spacing:5.308109px;}
.ws63{word-spacing:5.379825px;}
.ws88{word-spacing:5.451571px;}
.ws38{word-spacing:5.523302px;}
.ws14{word-spacing:5.595034px;}
.ws84{word-spacing:5.738496px;}
.ws72{word-spacing:5.810227px;}
.ws55{word-spacing:6.025421px;}
.ws2b{word-spacing:6.097152px;}
.wsd{word-spacing:6.455775px;}
.ws4c{word-spacing:6.455808px;}
.ws5a{word-spacing:6.814464px;}
.ws54{word-spacing:7.029658px;}
.ws22{word-spacing:7.173120px;}
.ws20{word-spacing:7.202909px;}
.ws2c{word-spacing:7.244851px;}
.ws30{word-spacing:7.316582px;}
.ws50{word-spacing:7.388314px;}
.ws40{word-spacing:7.460045px;}
.ws3e{word-spacing:7.531776px;}
.ws67{word-spacing:7.675238px;}
.ws27{word-spacing:7.746970px;}
.ws25{word-spacing:7.818701px;}
.ws33{word-spacing:7.962163px;}
.ws3f{word-spacing:8.105626px;}
.ws4{word-spacing:8.237588px;}
.ws7a{word-spacing:8.249088px;}
.ws5e{word-spacing:8.320819px;}
.ws1{word-spacing:8.323665px;}
.ws32{word-spacing:8.392550px;}
.ws65{word-spacing:8.607744px;}
.ws62{word-spacing:8.751206px;}
.ws16{word-spacing:8.806046px;}
.ws35{word-spacing:9.109862px;}
.ws68{word-spacing:9.683712px;}
.ws5b{word-spacing:9.827174px;}
.ws31{word-spacing:10.185830px;}
.ws86{word-spacing:10.257562px;}
.ws4b{word-spacing:10.329293px;}
.ws8a{word-spacing:10.544486px;}
.ws39{word-spacing:10.759680px;}
.ws71{word-spacing:10.903142px;}
.ws13{word-spacing:11.046605px;}
.ws37{word-spacing:11.118336px;}
.wse{word-spacing:11.548723px;}
.ws2e{word-spacing:11.907379px;}
.ws2f{word-spacing:11.979110px;}
.ws52{word-spacing:12.194304px;}
.ws2d{word-spacing:12.481229px;}
.ws12{word-spacing:12.660557px;}
.ws5c{word-spacing:12.696422px;}
.ws34{word-spacing:13.485466px;}
.ws4e{word-spacing:13.700659px;}
.ws61{word-spacing:13.987584px;}
.ws28{word-spacing:14.059315px;}
.ws6{word-spacing:14.683377px;}
.ws1f{word-spacing:18.882666px;}
.ws23{word-spacing:18.884757px;}
.ws1e{word-spacing:20.595630px;}
.ws24{word-spacing:21.622139px;}
.ws89{word-spacing:23.194552px;}
.ws1d{word-spacing:24.585630px;}
.ws5{word-spacing:25.034189px;}
.ws85{word-spacing:25.162389px;}
.ws73{word-spacing:25.288552px;}
.ws1c{word-spacing:28.065630px;}
.ws8b{word-spacing:30.034552px;}
.ws21{word-spacing:31.377630px;}
.ws0{word-spacing:45.374850px;}
.ws75{word-spacing:52.220314px;}
.ws8d{word-spacing:54.157056px;}
.ws82{word-spacing:69.794458px;}
.ws80{word-spacing:103.866778px;}
.ws81{word-spacing:103.938509px;}
.ws79{word-spacing:110.681242px;}
.ws93{word-spacing:128.327117px;}
.ws7f{word-spacing:139.015066px;}
.ws78{word-spacing:144.897024px;}
.ws77{word-spacing:162.399437px;}
.ws7e{word-spacing:174.163354px;}
.ws7d{word-spacing:175.167590px;}
.ws76{word-spacing:179.973581px;}
.ws92{word-spacing:215.121869px;}
.ws91{word-spacing:298.473523px;}
.ws90{word-spacing:314.039194px;}
.ws8f{word-spacing:331.613338px;}
.ws8e{word-spacing:349.187482px;}
.ws74{word-spacing:438.779750px;}
.ws7c{word-spacing:462.235853px;}
._4{margin-left:-42.156069px;}
._1c{margin-left:-36.518645px;}
._f{margin-left:-35.472546px;}
._10{margin-left:-33.928858px;}
._29{margin-left:-9.709486px;}
._a{margin-left:-6.742733px;}
._5{margin-left:-5.379840px;}
._1{margin-left:-3.843225px;}
._3{margin-left:-2.410162px;}
._16{margin-left:-1.075968px;}
._26{width:1.305515px;}
._2{width:2.324084px;}
._0{width:3.843225px;}
._1b{width:5.582573px;}
._38{width:16.727702px;}
._1f{width:17.947133px;}
._27{width:18.966593px;}
._8{width:20.156467px;}
._2f{width:23.384371px;}
._19{width:24.444541px;}
._28{width:25.866264px;}
._6{width:27.085694px;}
._1d{width:29.021559px;}
._18{width:30.846455px;}
._e{width:32.781158px;}
._1e{width:34.703486px;}
._b{width:35.937331px;}
._20{width:37.472386px;}
._2d{width:39.075529px;}
._22{width:41.460634px;}
._1a{width:45.484068px;}
._2a{width:49.293667px;}
._45{width:50.685259px;}
._23{width:52.535917px;}
._17{width:53.913163px;}
._21{width:55.778174px;}
._25{width:57.571447px;}
._24{width:60.182477px;}
._2b{width:62.162251px;}
._3a{width:83.495117px;}
._41{width:88.372838px;}
._2c{width:96.836850px;}
._44{width:104.942746px;}
._40{width:106.879488px;}
._15{width:116.203950px;}
._3f{width:123.377664px;}
._43{width:140.951808px;}
._3c{width:141.956045px;}
._37{width:146.833766px;}
._42{width:157.593446px;}
._3b{width:159.458458px;}
._35{width:165.340416px;}
._3d{width:176.100096px;}
._3e{width:177.104333px;}
._32{width:182.914560px;}
._36{width:193.602509px;}
._33{width:194.678477px;}
._34{width:211.176653px;}
._30{width:212.180890px;}
._31{width:228.822528px;}
._2e{width:472.464715px;}
._39{width:495.920818px;}
._12{width:796.689739px;}
._9{width:1211.037850px;}
._c{width:1425.715004px;}
._13{width:1437.593658px;}
._14{width:1606.994074px;}
._7{width:1849.445530px;}
._11{width:1859.157941px;}
._d{width:1952.623694px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y12{bottom:63.168000px;}
.y44{bottom:111.904500px;}
.y74{bottom:114.606000px;}
.ycc{bottom:115.038000px;}
.y11{bottom:125.355000px;}
.y43{bottom:147.765000px;}
.y73{bottom:150.468000px;}
.ycb{bottom:150.900000px;}
.y10{bottom:178.776000px;}
.y42{bottom:183.627000px;}
.y72{bottom:186.330000px;}
.yd4{bottom:203.032500px;}
.yca{bottom:204.519000px;}
.y41{bottom:219.489000px;}
.yd3{bottom:224.701500px;}
.yf{bottom:232.195500px;}
.y8c{bottom:232.354500px;}
.y71{bottom:239.949000px;}
.yd2{bottom:246.369000px;}
.y8b{bottom:254.023500px;}
.y40{bottom:255.351000px;}
.yd1{bottom:268.038000px;}
.y34{bottom:268.879500px;}
.y8a{bottom:275.692500px;}
.ye{bottom:285.616500px;}
.yd0{bottom:289.707000px;}
.y84{bottom:289.893000px;}
.yc9{bottom:290.845500px;}
.y3f{bottom:291.213000px;}
.y7d{bottom:294.265500px;}
.y89{bottom:297.360000px;}
.ya3{bottom:303.618000px;}
.y33{bottom:304.741500px;}
.y63{bottom:305.520000px;}
.y83{bottom:311.562000px;}
.yc8{bottom:312.514500px;}
.y7c{bottom:315.933000px;}
.yad{bottom:317.566500px;}
.yd{bottom:321.478500px;}
.ya2{bottom:325.287000px;}
.y3e{bottom:327.075000px;}
.y70{bottom:327.885000px;}
.ya8{bottom:330.675000px;}
.y82{bottom:333.229500px;}
.yc7{bottom:334.183500px;}
.y7b{bottom:337.602000px;}
.y31{bottom:338.883000px;}
.yac{bottom:339.235500px;}
.y62{bottom:341.382000px;}
.ya1{bottom:346.956000px;}
.y32{bottom:347.337000px;}
.y6f{bottom:349.554000px;}
.ya7{bottom:352.344000px;}
.yc6{bottom:355.852500px;}
.y7a{bottom:359.271000px;}
.y2e{bottom:359.638500px;}
.y3d{bottom:362.935500px;}
.y2d{bottom:364.171500px;}
.y6e{bottom:371.223000px;}
.ye4{bottom:374.185500px;}
.yc{bottom:374.899500px;}
.y30{bottom:376.674000px;}
.y61{bottom:377.244000px;}
.yc5{bottom:377.520000px;}
.y79{bottom:380.940000px;}
.y2f{bottom:382.054500px;}
.y6d{bottom:392.890500px;}
.ye3{bottom:395.854500px;}
.y3c{bottom:398.797500px;}
.yc4{bottom:399.189000px;}
.y78{bottom:402.609000px;}
.y9e{bottom:404.974500px;}
.ycf{bottom:406.113000px;}
.y60{bottom:413.106000px;}
.y6c{bottom:414.559500px;}
.ye2{bottom:417.522000px;}
.yc3{bottom:420.858000px;}
.y52{bottom:424.119000px;}
.yce{bottom:427.782000px;}
.yb{bottom:428.320500px;}
.y2c{bottom:431.362500px;}
.y3b{bottom:434.659500px;}
.y6b{bottom:436.228500px;}
.ye1{bottom:439.191000px;}
.y9d{bottom:440.836500px;}
.yc2{bottom:442.527000px;}
.y51{bottom:445.788000px;}
.y5f{bottom:448.968000px;}
.ycd{bottom:449.451000px;}
.ye0{bottom:460.860000px;}
.y2b{bottom:467.223000px;}
.y50{bottom:467.457000px;}
.y3a{bottom:470.521500px;}
.yc1{bottom:473.181000px;}
.y9c{bottom:476.698500px;}
.ya{bottom:481.741500px;}
.ydf{bottom:482.529000px;}
.y5e{bottom:484.830000px;}
.y4f{bottom:489.124500px;}
.y2a{bottom:498.406500px;}
.yc0{bottom:503.482500px;}
.yde{bottom:504.795000px;}
.y39{bottom:506.383500px;}
.y4e{bottom:510.793500px;}
.y9b{bottom:512.560500px;}
.y27{bottom:519.162000px;}
.y5d{bottom:520.690500px;}
.y26{bottom:523.893000px;}
.y4d{bottom:532.462500px;}
.y9{bottom:535.360500px;}
.y29{bottom:536.197500px;}
.y28{bottom:541.578000px;}
.y38{bottom:542.244000px;}
.ydd{bottom:544.995000px;}
.ybf{bottom:546.519000px;}
.y9a{bottom:548.421000px;}
.y4c{bottom:554.131500px;}
.y5c{bottom:556.552500px;}
.ybe{bottom:568.188000px;}
.y37{bottom:578.106000px;}
.y99{bottom:584.283000px;}
.ybd{bottom:589.857000px;}
.y25{bottom:590.884500px;}
.y5b{bottom:592.414500px;}
.ydc{bottom:596.028000px;}
.y8{bottom:611.422500px;}
.ybc{bottom:611.524500px;}
.y36{bottom:613.968000px;}
.y98{bottom:620.145000px;}
.y5a{bottom:628.276500px;}
.y21{bottom:629.206500px;}
.ydb{bottom:631.890000px;}
.y24{bottom:637.528500px;}
.y23{bottom:645.396000px;}
.y1e{bottom:649.830000px;}
.y1d{bottom:654.363000px;}
.y22{bottom:654.562500px;}
.y97{bottom:656.007000px;}
.y59{bottom:664.138500px;}
.y7{bottom:664.842000px;}
.y20{bottom:666.865500px;}
.y1f{bottom:672.246000px;}
.ybb{bottom:681.024000px;}
.y88{bottom:681.976500px;}
.yda{bottom:682.695000px;}
.y35{bottom:685.692000px;}
.y81{bottom:686.346000px;}
.y96{bottom:691.869000px;}
.y58{bottom:700.000500px;}
.y6{bottom:700.704000px;}
.y77{bottom:700.710000px;}
.yba{bottom:702.693000px;}
.y87{bottom:703.645500px;}
.ya6{bottom:717.369000px;}
.yab{bottom:717.790500px;}
.y6a{bottom:718.987500px;}
.y1c{bottom:721.554000px;}
.ya0{bottom:721.777500px;}
.y76{bottom:722.379000px;}
.yb9{bottom:724.362000px;}
.y86{bottom:725.314500px;}
.y95{bottom:727.729500px;}
.yd9{bottom:733.501500px;}
.y5{bottom:736.566000px;}
.ya5{bottom:739.038000px;}
.yaa{bottom:739.459500px;}
.y69{bottom:740.655000px;}
.y9f{bottom:743.446500px;}
.y75{bottom:744.048000px;}
.yb8{bottom:746.031000px;}
.y85{bottom:746.983500px;}
.y1b{bottom:757.414500px;}
.ya4{bottom:760.707000px;}
.ya9{bottom:761.128500px;}
.y68{bottom:762.324000px;}
.y57{bottom:763.284000px;}
.y94{bottom:763.591500px;}
.yb7{bottom:767.700000px;}
.y80{bottom:774.280500px;}
.y67{bottom:783.993000px;}
.yd8{bottom:784.306500px;}
.y56{bottom:784.953000px;}
.yb6{bottom:789.367500px;}
.y4{bottom:789.987000px;}
.y1a{bottom:793.276500px;}
.y7f{bottom:795.949500px;}
.y93{bottom:799.453500px;}
.y66{bottom:805.662000px;}
.y55{bottom:806.622000px;}
.y4b{bottom:811.035000px;}
.yb5{bottom:811.036500px;}
.y7e{bottom:817.618500px;}
.y65{bottom:827.331000px;}
.yd7{bottom:827.640000px;}
.y54{bottom:828.289500px;}
.y19{bottom:829.138500px;}
.yb4{bottom:832.705500px;}
.y92{bottom:835.315500px;}
.y4a{bottom:846.897000px;}
.y64{bottom:848.998500px;}
.y53{bottom:849.958500px;}
.y3{bottom:860.844000px;}
.yb3{bottom:863.359500px;}
.y18{bottom:865.000500px;}
.yd6{bottom:870.973500px;}
.y91{bottom:871.177500px;}
.y49{bottom:882.759000px;}
.yb2{bottom:893.661000px;}
.y17{bottom:900.862500px;}
.y90{bottom:907.039500px;}
.y48{bottom:918.621000px;}
.yd5{bottom:921.780000px;}
.y2{bottom:922.674000px;}
.yb1{bottom:936.697500px;}
.y16{bottom:936.724500px;}
.y8f{bottom:942.900000px;}
.y47{bottom:954.483000px;}
.yb0{bottom:958.366500px;}
.y15{bottom:972.585000px;}
.y8e{bottom:978.762000px;}
.yaf{bottom:980.035500px;}
.y1{bottom:984.504000px;}
.y46{bottom:990.343500px;}
.yae{bottom:1001.704500px;}
.y14{bottom:1008.447000px;}
.y8d{bottom:1014.624000px;}
.y45{bottom:1026.205500px;}
.y13{bottom:1062.067500px;}
.h8{height:0.000000px;}
.h9{height:31.657237px;}
.h7{height:33.665702px;}
.h6{height:50.211840px;}
.h4{height:51.287808px;}
.h3{height:53.798400px;}
.h12{height:59.693702px;}
.h11{height:59.699702px;}
.h13{height:60.254040px;}
.ha{height:63.281702px;}
.h14{height:66.482400px;}
.hf{height:71.930400px;}
.h5{height:72.304680px;}
.he{height:72.728400px;}
.h2{height:76.067700px;}
.hc{height:81.017702px;}
.h1{height:88.766100px;}
.hd{height:89.666400px;}
.h10{height:102.326400px;}
.hb{height:120.062400px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.x2{left:116.805000px;}
.xa{left:134.338500px;}
.x6{left:146.037000px;}
.x7{left:152.002500px;}
.x2d{left:156.630000px;}
.x2a{left:165.427500px;}
.x2f{left:171.660000px;}
.x2e{left:174.189000px;}
.x2b{left:182.986500px;}
.x19{left:185.064000px;}
.x30{left:190.009500px;}
.x4{left:206.505000px;}
.x5{left:239.451000px;}
.x3{left:244.944000px;}
.x2c{left:266.874000px;}
.x29{left:272.739000px;}
.x1e{left:279.199500px;}
.xc{left:283.216500px;}
.x1{left:289.437000px;}
.x20{left:326.859000px;}
.x1f{left:329.538000px;}
.x8{left:334.056000px;}
.xe{left:335.782500px;}
.xd{left:340.266000px;}
.xf{left:342.487500px;}
.x1a{left:346.738500px;}
.x10{left:364.851000px;}
.x28{left:365.851500px;}
.x22{left:374.517000px;}
.x21{left:376.173000px;}
.x23{left:385.306500px;}
.x31{left:388.041000px;}
.x11{left:397.242000px;}
.x24{left:403.408500px;}
.x1c{left:438.507000px;}
.x1b{left:440.163000px;}
.x12{left:443.868000px;}
.x25{left:446.334000px;}
.xb{left:449.733000px;}
.x14{left:457.429500px;}
.x26{left:459.895500px;}
.x13{left:461.911500px;}
.x1d{left:467.398500px;}
.x15{left:486.321000px;}
.x27{left:488.787000px;}
.x16{left:529.146000px;}
.x17{left:545.505000px;}
.x18{left:605.868000px;}
@media print{
.v8{vertical-align:-11.477333pt;}
.v2{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:11.274667pt;}
.v4{vertical-align:15.765333pt;}
.v6{vertical-align:16.826667pt;}
.v7{vertical-align:23.141333pt;}
.v3{vertical-align:26.325333pt;}
.v1{vertical-align:27.765333pt;}
.v5{vertical-align:43.136000pt;}
.ls9{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000145pt;}
.ls4{letter-spacing:0.000582pt;}
.ls6{letter-spacing:0.000945pt;}
.ls1f{letter-spacing:0.001103pt;}
.ls1{letter-spacing:0.002079pt;}
.ls1a{letter-spacing:0.002452pt;}
.ls22{letter-spacing:0.002717pt;}
.ls2{letter-spacing:0.003310pt;}
.ls1e{letter-spacing:0.005183pt;}
.ls5{letter-spacing:0.005915pt;}
.lsd{letter-spacing:0.401608pt;}
.ls26{letter-spacing:2.287633pt;}
.ls24{letter-spacing:2.653258pt;}
.ls25{letter-spacing:2.658591pt;}
.ls10{letter-spacing:3.432483pt;}
.ls13{letter-spacing:3.437816pt;}
.lse{letter-spacing:3.531549pt;}
.ls15{letter-spacing:4.689798pt;}
.ls14{letter-spacing:4.959918pt;}
.ls1c{letter-spacing:10.626452pt;}
.ls1b{letter-spacing:14.166642pt;}
.ls16{letter-spacing:16.822879pt;}
.ls19{letter-spacing:17.706238pt;}
.ls2a{letter-spacing:17.768655pt;}
.ls11{letter-spacing:18.351918pt;}
.lsa{letter-spacing:20.206582pt;}
.ls12{letter-spacing:20.543572pt;}
.ls29{letter-spacing:20.808655pt;}
.lsb{letter-spacing:20.809248pt;}
.ls7{letter-spacing:23.463925pt;}
.ls17{letter-spacing:23.695572pt;}
.ls21{letter-spacing:26.535925pt;}
.lsc{letter-spacing:27.139915pt;}
.ls3{letter-spacing:27.631227pt;}
.ls0{letter-spacing:27.635310pt;}
.ls27{letter-spacing:31.215625pt;}
.ls28{letter-spacing:31.217067pt;}
.ls23{letter-spacing:31.352027pt;}
.ls8{letter-spacing:31.880533pt;}
.ls18{letter-spacing:491.190323pt;}
.ls20{letter-spacing:646.363657pt;}
.ls1d{letter-spacing:716.422323pt;}
.ws15{word-spacing:-63.761067pt;}
.ws2{word-spacing:-53.133867pt;}
.ws17{word-spacing:-40.590295pt;}
.ws26{word-spacing:-29.942197pt;}
.ws7{word-spacing:-28.692333pt;}
.wsb{word-spacing:-28.564958pt;}
.ws64{word-spacing:-23.910333pt;}
.ws19{word-spacing:-17.343010pt;}
.ws1a{word-spacing:-12.543875pt;}
.ws7b{word-spacing:-3.379337pt;}
.ws44{word-spacing:-2.422921pt;}
.ws3c{word-spacing:-2.359159pt;}
.ws2a{word-spacing:-2.295398pt;}
.ws8{word-spacing:-2.008474pt;}
.ws83{word-spacing:-1.912832pt;}
.ws45{word-spacing:-1.849071pt;}
.ws42{word-spacing:-1.402743pt;}
.ws3a{word-spacing:-1.275221pt;}
.ws5d{word-spacing:-1.147699pt;}
.ws43{word-spacing:-1.083938pt;}
.ws41{word-spacing:-1.020177pt;}
.ws3b{word-spacing:-0.956416pt;}
.ws6b{word-spacing:-0.446327pt;}
.ws3d{word-spacing:-0.191283pt;}
.ws3{word-spacing:-0.053134pt;}
.ws18{word-spacing:-0.042507pt;}
.wsc{word-spacing:0.000000pt;}
.ws66{word-spacing:0.127522pt;}
.ws6c{word-spacing:0.191283pt;}
.ws4a{word-spacing:0.255044pt;}
.ws8c{word-spacing:0.418024pt;}
.ws57{word-spacing:0.446327pt;}
.ws70{word-spacing:0.510089pt;}
.ws5f{word-spacing:0.828894pt;}
.ws6d{word-spacing:1.083938pt;}
.ws56{word-spacing:1.147699pt;}
.ws53{word-spacing:1.211460pt;}
.ws48{word-spacing:1.466505pt;}
.ws6f{word-spacing:1.849071pt;}
.ws51{word-spacing:1.976593pt;}
.ws47{word-spacing:2.104115pt;}
.ws49{word-spacing:2.295398pt;}
.ws46{word-spacing:2.422921pt;}
.ws4f{word-spacing:2.486682pt;}
.ws6e{word-spacing:2.805487pt;}
.ws11{word-spacing:2.869248pt;}
.ws87{word-spacing:2.996770pt;}
.ws10{word-spacing:3.283695pt;}
.ws69{word-spacing:3.315575pt;}
.ws58{word-spacing:3.379337pt;}
.wsf{word-spacing:3.443098pt;}
.wsa{word-spacing:3.506859pt;}
.ws29{word-spacing:3.570620pt;}
.ws9{word-spacing:3.985067pt;}
.ws1b{word-spacing:4.087963pt;}
.ws36{word-spacing:4.271991pt;}
.ws59{word-spacing:4.335753pt;}
.ws6a{word-spacing:4.399514pt;}
.ws60{word-spacing:4.463275pt;}
.ws4d{word-spacing:4.718319pt;}
.ws63{word-spacing:4.782067pt;}
.ws88{word-spacing:4.845841pt;}
.ws38{word-spacing:4.909602pt;}
.ws14{word-spacing:4.973363pt;}
.ws84{word-spacing:5.100885pt;}
.ws72{word-spacing:5.164646pt;}
.ws55{word-spacing:5.355930pt;}
.ws2b{word-spacing:5.419691pt;}
.wsd{word-spacing:5.738467pt;}
.ws4c{word-spacing:5.738496pt;}
.ws5a{word-spacing:6.057301pt;}
.ws54{word-spacing:6.248585pt;}
.ws22{word-spacing:6.376107pt;}
.ws20{word-spacing:6.402586pt;}
.ws2c{word-spacing:6.439868pt;}
.ws30{word-spacing:6.503629pt;}
.ws50{word-spacing:6.567390pt;}
.ws40{word-spacing:6.631151pt;}
.ws3e{word-spacing:6.694912pt;}
.ws67{word-spacing:6.822434pt;}
.ws27{word-spacing:6.886195pt;}
.ws25{word-spacing:6.949956pt;}
.ws33{word-spacing:7.077478pt;}
.ws3f{word-spacing:7.205001pt;}
.ws4{word-spacing:7.322300pt;}
.ws7a{word-spacing:7.332523pt;}
.ws5e{word-spacing:7.396284pt;}
.ws1{word-spacing:7.398814pt;}
.ws32{word-spacing:7.460045pt;}
.ws65{word-spacing:7.651328pt;}
.ws62{word-spacing:7.778850pt;}
.ws16{word-spacing:7.827596pt;}
.ws35{word-spacing:8.097655pt;}
.ws68{word-spacing:8.607744pt;}
.ws5b{word-spacing:8.735266pt;}
.ws31{word-spacing:9.054071pt;}
.ws86{word-spacing:9.117833pt;}
.ws4b{word-spacing:9.181594pt;}
.ws8a{word-spacing:9.372877pt;}
.ws39{word-spacing:9.564160pt;}
.ws71{word-spacing:9.691682pt;}
.ws13{word-spacing:9.819204pt;}
.ws37{word-spacing:9.882965pt;}
.wse{word-spacing:10.265532pt;}
.ws2e{word-spacing:10.584337pt;}
.ws2f{word-spacing:10.648098pt;}
.ws52{word-spacing:10.839381pt;}
.ws2d{word-spacing:11.094426pt;}
.ws12{word-spacing:11.253828pt;}
.ws5c{word-spacing:11.285709pt;}
.ws34{word-spacing:11.987081pt;}
.ws4e{word-spacing:12.178364pt;}
.ws61{word-spacing:12.433408pt;}
.ws28{word-spacing:12.497169pt;}
.ws6{word-spacing:13.051890pt;}
.ws1f{word-spacing:16.784592pt;}
.ws23{word-spacing:16.786451pt;}
.ws1e{word-spacing:18.307227pt;}
.ws24{word-spacing:19.219679pt;}
.ws89{word-spacing:20.617380pt;}
.ws1d{word-spacing:21.853893pt;}
.ws5{word-spacing:22.252612pt;}
.ws85{word-spacing:22.366568pt;}
.ws73{word-spacing:22.478713pt;}
.ws1c{word-spacing:24.947227pt;}
.ws8b{word-spacing:26.697380pt;}
.ws21{word-spacing:27.891227pt;}
.ws0{word-spacing:40.333200pt;}
.ws75{word-spacing:46.418057pt;}
.ws8d{word-spacing:48.139605pt;}
.ws82{word-spacing:62.039518pt;}
.ws80{word-spacing:92.326025pt;}
.ws81{word-spacing:92.389786pt;}
.ws79{word-spacing:98.383326pt;}
.ws93{word-spacing:114.068548pt;}
.ws7f{word-spacing:123.568947pt;}
.ws78{word-spacing:128.797355pt;}
.ws77{word-spacing:144.355055pt;}
.ws7e{word-spacing:154.811870pt;}
.ws7d{word-spacing:155.704525pt;}
.ws76{word-spacing:159.976516pt;}
.ws92{word-spacing:191.219439pt;}
.ws91{word-spacing:265.309798pt;}
.ws90{word-spacing:279.145950pt;}
.ws8f{word-spacing:294.767411pt;}
.ws8e{word-spacing:310.388873pt;}
.ws74{word-spacing:390.026445pt;}
.ws7c{word-spacing:410.876314pt;}
._4{margin-left:-37.472061pt;}
._1c{margin-left:-32.461018pt;}
._f{margin-left:-31.531152pt;}
._10{margin-left:-30.158985pt;}
._29{margin-left:-8.630654pt;}
._a{margin-left:-5.993540pt;}
._5{margin-left:-4.782080pt;}
._1{margin-left:-3.416200pt;}
._3{margin-left:-2.142366pt;}
._16{margin-left:-0.956416pt;}
._26{width:1.160458pt;}
._2{width:2.065853pt;}
._0{width:3.416200pt;}
._1b{width:4.962287pt;}
._38{width:14.869069pt;}
._1f{width:15.953007pt;}
._27{width:16.859194pt;}
._8{width:17.916860pt;}
._2f{width:20.786108pt;}
._19{width:21.728481pt;}
._28{width:22.992235pt;}
._6{width:24.076173pt;}
._1d{width:25.796942pt;}
._18{width:27.419071pt;}
._e{width:29.138807pt;}
._1e{width:30.847543pt;}
._b{width:31.944294pt;}
._20{width:33.308787pt;}
._2d{width:34.733804pt;}
._22{width:36.853897pt;}
._1a{width:40.430283pt;}
._2a{width:43.816593pt;}
._45{width:45.053564pt;}
._23{width:46.698593pt;}
._17{width:47.922812pt;}
._21{width:49.580599pt;}
._25{width:51.174620pt;}
._24{width:53.495535pt;}
._2b{width:55.255334pt;}
._3a{width:74.217882pt;}
._41{width:78.553634pt;}
._2c{width:86.077200pt;}
._44{width:93.282441pt;}
._40{width:95.003989pt;}
._15{width:103.292400pt;}
._3f{width:109.669035pt;}
._43{width:125.290496pt;}
._3c{width:126.183151pt;}
._37{width:130.518903pt;}
._42{width:140.083063pt;}
._3b{width:141.740851pt;}
._35{width:146.969259pt;}
._3d{width:156.533419pt;}
._3e{width:157.426074pt;}
._32{width:162.590720pt;}
._36{width:172.091119pt;}
._33{width:173.047535pt;}
._34{width:187.712580pt;}
._30{width:188.605235pt;}
._31{width:203.397803pt;}
._2e{width:419.968636pt;}
._39{width:440.818505pt;}
._12{width:708.168657pt;}
._9{width:1076.478089pt;}
._c{width:1267.302226pt;}
._13{width:1277.861029pt;}
._14{width:1428.439177pt;}
._7{width:1643.951582pt;}
._11{width:1652.584836pt;}
._d{width:1735.665506pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:56.149333pt;}
.y44{bottom:99.470667pt;}
.y74{bottom:101.872000pt;}
.ycc{bottom:102.256000pt;}
.y11{bottom:111.426667pt;}
.y43{bottom:131.346667pt;}
.y73{bottom:133.749333pt;}
.ycb{bottom:134.133333pt;}
.y10{bottom:158.912000pt;}
.y42{bottom:163.224000pt;}
.y72{bottom:165.626667pt;}
.yd4{bottom:180.473333pt;}
.yca{bottom:181.794667pt;}
.y41{bottom:195.101333pt;}
.yd3{bottom:199.734667pt;}
.yf{bottom:206.396000pt;}
.y8c{bottom:206.537333pt;}
.y71{bottom:213.288000pt;}
.yd2{bottom:218.994667pt;}
.y8b{bottom:225.798667pt;}
.y40{bottom:226.978667pt;}
.yd1{bottom:238.256000pt;}
.y34{bottom:239.004000pt;}
.y8a{bottom:245.060000pt;}
.ye{bottom:253.881333pt;}
.yd0{bottom:257.517333pt;}
.y84{bottom:257.682667pt;}
.yc9{bottom:258.529333pt;}
.y3f{bottom:258.856000pt;}
.y7d{bottom:261.569333pt;}
.y89{bottom:264.320000pt;}
.ya3{bottom:269.882667pt;}
.y33{bottom:270.881333pt;}
.y63{bottom:271.573333pt;}
.y83{bottom:276.944000pt;}
.yc8{bottom:277.790667pt;}
.y7c{bottom:280.829333pt;}
.yad{bottom:282.281333pt;}
.yd{bottom:285.758667pt;}
.ya2{bottom:289.144000pt;}
.y3e{bottom:290.733333pt;}
.y70{bottom:291.453333pt;}
.ya8{bottom:293.933333pt;}
.y82{bottom:296.204000pt;}
.yc7{bottom:297.052000pt;}
.y7b{bottom:300.090667pt;}
.y31{bottom:301.229333pt;}
.yac{bottom:301.542667pt;}
.y62{bottom:303.450667pt;}
.ya1{bottom:308.405333pt;}
.y32{bottom:308.744000pt;}
.y6f{bottom:310.714667pt;}
.ya7{bottom:313.194667pt;}
.yc6{bottom:316.313333pt;}
.y7a{bottom:319.352000pt;}
.y2e{bottom:319.678667pt;}
.y3d{bottom:322.609333pt;}
.y2d{bottom:323.708000pt;}
.y6e{bottom:329.976000pt;}
.ye4{bottom:332.609333pt;}
.yc{bottom:333.244000pt;}
.y30{bottom:334.821333pt;}
.y61{bottom:335.328000pt;}
.yc5{bottom:335.573333pt;}
.y79{bottom:338.613333pt;}
.y2f{bottom:339.604000pt;}
.y6d{bottom:349.236000pt;}
.ye3{bottom:351.870667pt;}
.y3c{bottom:354.486667pt;}
.yc4{bottom:354.834667pt;}
.y78{bottom:357.874667pt;}
.y9e{bottom:359.977333pt;}
.ycf{bottom:360.989333pt;}
.y60{bottom:367.205333pt;}
.y6c{bottom:368.497333pt;}
.ye2{bottom:371.130667pt;}
.yc3{bottom:374.096000pt;}
.y52{bottom:376.994667pt;}
.yce{bottom:380.250667pt;}
.yb{bottom:380.729333pt;}
.y2c{bottom:383.433333pt;}
.y3b{bottom:386.364000pt;}
.y6b{bottom:387.758667pt;}
.ye1{bottom:390.392000pt;}
.y9d{bottom:391.854667pt;}
.yc2{bottom:393.357333pt;}
.y51{bottom:396.256000pt;}
.y5f{bottom:399.082667pt;}
.ycd{bottom:399.512000pt;}
.ye0{bottom:409.653333pt;}
.y2b{bottom:415.309333pt;}
.y50{bottom:415.517333pt;}
.y3a{bottom:418.241333pt;}
.yc1{bottom:420.605333pt;}
.y9c{bottom:423.732000pt;}
.ya{bottom:428.214667pt;}
.ydf{bottom:428.914667pt;}
.y5e{bottom:430.960000pt;}
.y4f{bottom:434.777333pt;}
.y2a{bottom:443.028000pt;}
.yc0{bottom:447.540000pt;}
.yde{bottom:448.706667pt;}
.y39{bottom:450.118667pt;}
.y4e{bottom:454.038667pt;}
.y9b{bottom:455.609333pt;}
.y27{bottom:461.477333pt;}
.y5d{bottom:462.836000pt;}
.y26{bottom:465.682667pt;}
.y4d{bottom:473.300000pt;}
.y9{bottom:475.876000pt;}
.y29{bottom:476.620000pt;}
.y28{bottom:481.402667pt;}
.y38{bottom:481.994667pt;}
.ydd{bottom:484.440000pt;}
.ybf{bottom:485.794667pt;}
.y9a{bottom:487.485333pt;}
.y4c{bottom:492.561333pt;}
.y5c{bottom:494.713333pt;}
.ybe{bottom:505.056000pt;}
.y37{bottom:513.872000pt;}
.y99{bottom:519.362667pt;}
.ybd{bottom:524.317333pt;}
.y25{bottom:525.230667pt;}
.y5b{bottom:526.590667pt;}
.ydc{bottom:529.802667pt;}
.y8{bottom:543.486667pt;}
.ybc{bottom:543.577333pt;}
.y36{bottom:545.749333pt;}
.y98{bottom:551.240000pt;}
.y5a{bottom:558.468000pt;}
.y21{bottom:559.294667pt;}
.ydb{bottom:561.680000pt;}
.y24{bottom:566.692000pt;}
.y23{bottom:573.685333pt;}
.y1e{bottom:577.626667pt;}
.y1d{bottom:581.656000pt;}
.y22{bottom:581.833333pt;}
.y97{bottom:583.117333pt;}
.y59{bottom:590.345333pt;}
.y7{bottom:590.970667pt;}
.y20{bottom:592.769333pt;}
.y1f{bottom:597.552000pt;}
.ybb{bottom:605.354667pt;}
.y88{bottom:606.201333pt;}
.yda{bottom:606.840000pt;}
.y35{bottom:609.504000pt;}
.y81{bottom:610.085333pt;}
.y96{bottom:614.994667pt;}
.y58{bottom:622.222667pt;}
.y6{bottom:622.848000pt;}
.y77{bottom:622.853333pt;}
.yba{bottom:624.616000pt;}
.y87{bottom:625.462667pt;}
.ya6{bottom:637.661333pt;}
.yab{bottom:638.036000pt;}
.y6a{bottom:639.100000pt;}
.y1c{bottom:641.381333pt;}
.ya0{bottom:641.580000pt;}
.y76{bottom:642.114667pt;}
.yb9{bottom:643.877333pt;}
.y86{bottom:644.724000pt;}
.y95{bottom:646.870667pt;}
.yd9{bottom:652.001333pt;}
.y5{bottom:654.725333pt;}
.ya5{bottom:656.922667pt;}
.yaa{bottom:657.297333pt;}
.y69{bottom:658.360000pt;}
.y9f{bottom:660.841333pt;}
.y75{bottom:661.376000pt;}
.yb8{bottom:663.138667pt;}
.y85{bottom:663.985333pt;}
.y1b{bottom:673.257333pt;}
.ya4{bottom:676.184000pt;}
.ya9{bottom:676.558667pt;}
.y68{bottom:677.621333pt;}
.y57{bottom:678.474667pt;}
.y94{bottom:678.748000pt;}
.yb7{bottom:682.400000pt;}
.y80{bottom:688.249333pt;}
.y67{bottom:696.882667pt;}
.yd8{bottom:697.161333pt;}
.y56{bottom:697.736000pt;}
.yb6{bottom:701.660000pt;}
.y4{bottom:702.210667pt;}
.y1a{bottom:705.134667pt;}
.y7f{bottom:707.510667pt;}
.y93{bottom:710.625333pt;}
.y66{bottom:716.144000pt;}
.y55{bottom:716.997333pt;}
.y4b{bottom:720.920000pt;}
.yb5{bottom:720.921333pt;}
.y7e{bottom:726.772000pt;}
.y65{bottom:735.405333pt;}
.yd7{bottom:735.680000pt;}
.y54{bottom:736.257333pt;}
.y19{bottom:737.012000pt;}
.yb4{bottom:740.182667pt;}
.y92{bottom:742.502667pt;}
.y4a{bottom:752.797333pt;}
.y64{bottom:754.665333pt;}
.y53{bottom:755.518667pt;}
.y3{bottom:765.194667pt;}
.yb3{bottom:767.430667pt;}
.y18{bottom:768.889333pt;}
.yd6{bottom:774.198667pt;}
.y91{bottom:774.380000pt;}
.y49{bottom:784.674667pt;}
.yb2{bottom:794.365333pt;}
.y17{bottom:800.766667pt;}
.y90{bottom:806.257333pt;}
.y48{bottom:816.552000pt;}
.yd5{bottom:819.360000pt;}
.y2{bottom:820.154667pt;}
.yb1{bottom:832.620000pt;}
.y16{bottom:832.644000pt;}
.y8f{bottom:838.133333pt;}
.y47{bottom:848.429333pt;}
.yb0{bottom:851.881333pt;}
.y15{bottom:864.520000pt;}
.y8e{bottom:870.010667pt;}
.yaf{bottom:871.142667pt;}
.y1{bottom:875.114667pt;}
.y46{bottom:880.305333pt;}
.yae{bottom:890.404000pt;}
.y14{bottom:896.397333pt;}
.y8d{bottom:901.888000pt;}
.y45{bottom:912.182667pt;}
.y13{bottom:944.060000pt;}
.h8{height:0.000000pt;}
.h9{height:28.139766pt;}
.h7{height:29.925069pt;}
.h6{height:44.632747pt;}
.h4{height:45.589163pt;}
.h3{height:47.820800pt;}
.h12{height:53.061069pt;}
.h11{height:53.066402pt;}
.h13{height:53.559147pt;}
.ha{height:56.250402pt;}
.h14{height:59.095467pt;}
.hf{height:63.938133pt;}
.h5{height:64.270827pt;}
.he{height:64.647467pt;}
.h2{height:67.615733pt;}
.hc{height:72.015735pt;}
.h1{height:78.903200pt;}
.hd{height:79.703467pt;}
.h10{height:90.956800pt;}
.hb{height:106.722133pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.x2{left:103.826667pt;}
.xa{left:119.412000pt;}
.x6{left:129.810667pt;}
.x7{left:135.113333pt;}
.x2d{left:139.226667pt;}
.x2a{left:147.046667pt;}
.x2f{left:152.586667pt;}
.x2e{left:154.834667pt;}
.x2b{left:162.654667pt;}
.x19{left:164.501333pt;}
.x30{left:168.897333pt;}
.x4{left:183.560000pt;}
.x5{left:212.845333pt;}
.x3{left:217.728000pt;}
.x2c{left:237.221333pt;}
.x29{left:242.434667pt;}
.x1e{left:248.177333pt;}
.xc{left:251.748000pt;}
.x1{left:257.277333pt;}
.x20{left:290.541333pt;}
.x1f{left:292.922667pt;}
.x8{left:296.938667pt;}
.xe{left:298.473333pt;}
.xd{left:302.458667pt;}
.xf{left:304.433333pt;}
.x1a{left:308.212000pt;}
.x10{left:324.312000pt;}
.x28{left:325.201333pt;}
.x22{left:332.904000pt;}
.x21{left:334.376000pt;}
.x23{left:342.494667pt;}
.x31{left:344.925333pt;}
.x11{left:353.104000pt;}
.x24{left:358.585333pt;}
.x1c{left:389.784000pt;}
.x1b{left:391.256000pt;}
.x12{left:394.549333pt;}
.x25{left:396.741333pt;}
.xb{left:399.762667pt;}
.x14{left:406.604000pt;}
.x26{left:408.796000pt;}
.x13{left:410.588000pt;}
.x1d{left:415.465333pt;}
.x15{left:432.285333pt;}
.x27{left:434.477333pt;}
.x16{left:470.352000pt;}
.x17{left:484.893333pt;}
.x18{left:538.549333pt;}
}




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