
    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_e1dd769d815808001d24a203.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b6c26366912090a4a89a1950.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8f4c0abfcd7672dd96487fc5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fdbf590c4c8ecb477de71da1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;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_a33bac6e2b455822be8383a5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_332ede36a69c1397b937eaaf.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8dde71225020eccbaf81fa7b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908000;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_138478261b77c33e6e266f8c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.925000;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_a16c5057e988c86c1ec6410f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.696000;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_0217b522cfe968517d61c180.woff2')format("woff");}.ffa{font-family:ffa;line-height:3.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:ffb;src:url('chunks/assets/font_407c57e94c1796d867c158db.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677000;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_1bf4840714450f3e7c4b4dbe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.431000;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_728c7ee0ea63092eff6b6897.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.451000;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_5b82d11a1c042d5c225c5b13.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.431000;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_8e6b54fe061b99806380c236.woff2')format("woff");}.fff{font-family:fff;line-height:0.684000;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;}
.ff10{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff11;src:url('chunks/assets/font_35bf7211fc2ac1b51c3b1392.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.705000;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;}
.v1{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:18.654000px;}
.vd{vertical-align:20.724000px;}
.v9{vertical-align:26.034000px;}
.vb{vertical-align:37.764000px;}
.v4{vertical-align:48.522000px;}
.vf{vertical-align:55.008000px;}
.vc{vertical-align:69.246000px;}
.v11{vertical-align:74.556000px;}
.v10{vertical-align:81.036000px;}
.v3{vertical-align:101.142000px;}
.v2{vertical-align:122.658000px;}
.va{vertical-align:131.508000px;}
.v6{vertical-align:134.286000px;}
.v5{vertical-align:150.342000px;}
.v7{vertical-align:171.864000px;}
.ls3{letter-spacing:0.000000px;}
.ls40{letter-spacing:0.000440px;}
.ls0{letter-spacing:0.000511px;}
.ls24{letter-spacing:0.000564px;}
.ls1d{letter-spacing:0.000764px;}
.ls15{letter-spacing:0.001114px;}
.ls4{letter-spacing:0.001150px;}
.ls49{letter-spacing:0.001227px;}
.ls4e{letter-spacing:0.002207px;}
.ls30{letter-spacing:0.002523px;}
.ls21{letter-spacing:0.002685px;}
.ls8{letter-spacing:0.003191px;}
.ls39{letter-spacing:0.003633px;}
.ls2b{letter-spacing:0.004200px;}
.ls20{letter-spacing:0.004352px;}
.ls1c{letter-spacing:0.004381px;}
.ls26{letter-spacing:0.005023px;}
.lsc{letter-spacing:0.005487px;}
.ls42{letter-spacing:0.006440px;}
.ls13{letter-spacing:0.006731px;}
.ls2a{letter-spacing:2.149908px;}
.ls5{letter-spacing:2.573487px;}
.ls6{letter-spacing:2.579487px;}
.ls14{letter-spacing:2.983120px;}
.ls25{letter-spacing:2.984525px;}
.ls1b{letter-spacing:2.985226px;}
.ls1{letter-spacing:2.988960px;}
.ls22{letter-spacing:2.989202px;}
.ls27{letter-spacing:2.989409px;}
.lse{letter-spacing:2.990915px;}
.ls1e{letter-spacing:2.991226px;}
.ls29{letter-spacing:2.993251px;}
.ls4f{letter-spacing:3.615160px;}
.ls4d{letter-spacing:3.621160px;}
.ls41{letter-spacing:5.637295px;}
.ls52{letter-spacing:9.755464px;}
.lsd{letter-spacing:10.158960px;}
.ls46{letter-spacing:11.953114px;}
.ls45{letter-spacing:11.959114px;}
.ls2c{letter-spacing:13.278538px;}
.ls2d{letter-spacing:13.288200px;}
.ls7{letter-spacing:14.942915px;}
.ls44{letter-spacing:15.611831px;}
.ls9{letter-spacing:15.934404px;}
.ls34{letter-spacing:15.937200px;}
.ls3a{letter-spacing:15.937473px;}
.lsa{letter-spacing:15.943473px;}
.ls2e{letter-spacing:16.602538px;}
.ls1a{letter-spacing:18.004800px;}
.lsb{letter-spacing:18.382664px;}
.ls53{letter-spacing:19.557160px;}
.ls28{letter-spacing:19.595251px;}
.ls19{letter-spacing:19.919518px;}
.ls2f{letter-spacing:19.921114px;}
.ls37{letter-spacing:19.921473px;}
.ls23{letter-spacing:19.924352px;}
.ls51{letter-spacing:19.924800px;}
.ls47{letter-spacing:19.925518px;}
.ls33{letter-spacing:19.927473px;}
.ls3f{letter-spacing:22.297473px;}
.ls4a{letter-spacing:22.912834px;}
.ls18{letter-spacing:22.914960px;}
.ls35{letter-spacing:23.413200px;}
.ls3e{letter-spacing:24.984179px;}
.ls48{letter-spacing:25.406675px;}
.ls36{letter-spacing:26.100179px;}
.ls17{letter-spacing:26.396915px;}
.ls54{letter-spacing:26.933518px;}
.ls4b{letter-spacing:27.027160px;}
.ls38{letter-spacing:27.091473px;}
.ls16{letter-spacing:28.545226px;}
.ls50{letter-spacing:29.681464px;}
.ls32{letter-spacing:30.080915px;}
.ls3d{letter-spacing:30.457473px;}
.ls1f{letter-spacing:30.554915px;}
.ls3b{letter-spacing:32.206800px;}
.ls11{letter-spacing:35.647114px;}
.ls10{letter-spacing:35.783487px;}
.ls2{letter-spacing:35.865600px;}
.ls12{letter-spacing:36.592800px;}
.ls4c{letter-spacing:37.289518px;}
.ls3c{letter-spacing:38.114523px;}
.ls31{letter-spacing:46.603473px;}
.ls43{letter-spacing:47.635473px;}
.lsf{letter-spacing:849.207191px;}
.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;}
}
.ws22{word-spacing:-56.789591px;}
.ws49{word-spacing:-54.796746px;}
.ws10{word-spacing:-45.664082px;}
.ws2f{word-spacing:-38.937826px;}
.ws11{word-spacing:-34.502707px;}
.wsc{word-spacing:-32.278875px;}
.ws16{word-spacing:-25.751501px;}
.ws15{word-spacing:-25.321114px;}
.ws3e{word-spacing:-22.416000px;}
.ws5f{word-spacing:-22.273955px;}
.ws20{word-spacing:-19.510886px;}
.ws12{word-spacing:-19.439155px;}
.ws2e{word-spacing:-19.092327px;}
.ws2c{word-spacing:-16.605662px;}
.ws4c{word-spacing:-6.477600px;}
.ws5a{word-spacing:-3.579673px;}
.ws5c{word-spacing:-3.572077px;}
.ws32{word-spacing:-3.319262px;}
.ws30{word-spacing:-3.072466px;}
.ws1c{word-spacing:-2.582323px;}
.ws65{word-spacing:-2.510592px;}
.ws6a{word-spacing:-2.367130px;}
.ws4e{word-spacing:-1.291162px;}
.ws3{word-spacing:-0.510546px;}
.ws6f{word-spacing:-0.143462px;}
.ws14{word-spacing:-0.047821px;}
.ws13{word-spacing:0.000000px;}
.ws21{word-spacing:0.390117px;}
.ws7{word-spacing:0.405819px;}
.ws3c{word-spacing:0.430387px;}
.ws4d{word-spacing:0.998400px;}
.ws67{word-spacing:1.434624px;}
.ws9{word-spacing:1.453092px;}
.ws68{word-spacing:1.506355px;}
.ws41{word-spacing:2.008474px;}
.ws5{word-spacing:2.500366px;}
.ws54{word-spacing:2.510592px;}
.ws8{word-spacing:2.696730px;}
.ws38{word-spacing:2.725786px;}
.ws62{word-spacing:2.948362px;}
.ws34{word-spacing:3.299613px;}
.ws1e{word-spacing:3.299635px;}
.ws63{word-spacing:3.359389px;}
.wsb{word-spacing:3.613094px;}
.ws31{word-spacing:3.801728px;}
.ws35{word-spacing:3.861504px;}
.wsf{word-spacing:3.873485px;}
.wsa{word-spacing:3.874912px;}
.ws5e{word-spacing:3.893668px;}
.ws2a{word-spacing:3.945216px;}
.ws6{word-spacing:4.333095px;}
.ws3b{word-spacing:4.375603px;}
.wsd{word-spacing:4.483200px;}
.ws28{word-spacing:4.519066px;}
.ws2{word-spacing:4.648169px;}
.ws6d{word-spacing:4.949453px;}
.ws42{word-spacing:5.092915px;}
.ws52{word-spacing:5.308109px;}
.ws1b{word-spacing:5.379825px;}
.ws4a{word-spacing:5.523302px;}
.ws5d{word-spacing:5.881958px;}
.ws26{word-spacing:6.025421px;}
.ws27{word-spacing:6.097152px;}
.ws18{word-spacing:6.455775px;}
.ws48{word-spacing:6.599270px;}
.ws64{word-spacing:7.244851px;}
.ws2b{word-spacing:7.507815px;}
.ws3a{word-spacing:7.531776px;}
.ws0{word-spacing:7.748438px;}
.ws59{word-spacing:7.962163px;}
.ws1a{word-spacing:8.033894px;}
.ws1f{word-spacing:8.225871px;}
.ws40{word-spacing:8.536013px;}
.ws1{word-spacing:8.607720px;}
.ws6c{word-spacing:9.109862px;}
.ws43{word-spacing:10.004640px;}
.ws47{word-spacing:10.010640px;}
.ws46{word-spacing:10.114099px;}
.ws44{word-spacing:10.185830px;}
.ws50{word-spacing:10.759680px;}
.ws19{word-spacing:11.118336px;}
.ws4{word-spacing:11.336737px;}
.ws51{word-spacing:11.584589px;}
.ws69{word-spacing:11.692186px;}
.ws39{word-spacing:12.696422px;}
.ws23{word-spacing:13.700659px;}
.ws29{word-spacing:14.417971px;}
.ws53{word-spacing:14.489702px;}
.ws73{word-spacing:14.839384px;}
.wse{word-spacing:16.354714px;}
.ws74{word-spacing:17.287219px;}
.ws75{word-spacing:18.434918px;}
.ws45{word-spacing:18.562800px;}
.ws56{word-spacing:18.875073px;}
.ws77{word-spacing:20.873779px;}
.ws76{word-spacing:22.738790px;}
.ws4b{word-spacing:22.865208px;}
.ws6b{word-spacing:22.869196px;}
.ws66{word-spacing:22.882255px;}
.ws3d{word-spacing:22.884477px;}
.ws55{word-spacing:22.887229px;}
.ws61{word-spacing:24.586338px;}
.ws1d{word-spacing:25.163871px;}
.ws60{word-spacing:28.066338px;}
.ws57{word-spacing:29.930640px;}
.ws5b{word-spacing:29.936640px;}
.ws4f{word-spacing:35.125892px;}
.ws25{word-spacing:41.101978px;}
.ws17{word-spacing:42.572467px;}
.ws24{word-spacing:44.819871px;}
.ws6e{word-spacing:83.925075px;}
.ws71{word-spacing:83.925504px;}
.ws70{word-spacing:87.368602px;}
.ws72{word-spacing:87.440333px;}
.ws2d{word-spacing:249.300117px;}
.ws36{word-spacing:269.510961px;}
.ws33{word-spacing:295.163208px;}
.ws37{word-spacing:354.464066px;}
.ws58{word-spacing:549.471613px;}
.ws3f{word-spacing:789.473587px;}
._21{margin-left:-41.675827px;}
._12{margin-left:-37.802342px;}
._f{margin-left:-35.865600px;}
._11{margin-left:-12.481229px;}
._17{margin-left:-11.476992px;}
._13{margin-left:-9.396787px;}
._28{margin-left:-8.091257px;}
._2{margin-left:-6.455790px;}
._1{margin-left:-5.225130px;}
._0{margin-left:-3.843225px;}
._3{margin-left:-2.324084px;}
._6{margin-left:-1.048166px;}
._35{width:1.005718px;}
._4{width:2.324084px;}
._19{width:3.404192px;}
._48{width:4.445761px;}
._27{width:6.007329px;}
._3c{width:7.916126px;}
._44{width:18.162335px;}
._1b{width:20.142108px;}
._b{width:23.384371px;}
._18{width:24.991144px;}
._3a{width:27.084927px;}
._7{width:28.734569px;}
._5{width:30.665034px;}
._2b{width:31.759228px;}
._c{width:33.731102px;}
._36{width:34.800880px;}
._15{width:35.865600px;}
._29{width:37.156744px;}
._45{width:39.308698px;}
._1e{width:40.858098px;}
._34{width:42.177946px;}
._2a{width:43.456535px;}
._20{width:45.722980px;}
._37{width:50.006092px;}
._25{width:52.159830px;}
._14{width:53.726651px;}
._47{width:55.602892px;}
._33{width:58.059227px;}
._8{width:64.988467px;}
._22{width:67.240820px;}
._a{width:71.802931px;}
._1c{width:73.051931px;}
._3b{width:77.964468px;}
._43{width:82.388408px;}
._3d{width:83.611736px;}
._26{width:96.836850px;}
._e{width:107.965301px;}
._24{width:116.203950px;}
._30{width:117.518357px;}
._46{width:128.488018px;}
._d{width:143.175475px;}
._3f{width:155.195089px;}
._41{width:193.366902px;}
._2d{width:195.223032px;}
._2f{width:249.120318px;}
._31{width:269.744086px;}
._3e{width:307.067257px;}
._2c{width:325.119488px;}
._32{width:450.792452px;}
._42{width:540.603362px;}
._40{width:549.270824px;}
._38{width:596.301448px;}
._2e{width:645.754545px;}
._39{width:780.005069px;}
._10{width:1032.097174px;}
._1d{width:1068.866611px;}
._1f{width:1249.299265px;}
._16{width:1251.881588px;}
._9{width:1371.744424px;}
._1a{width:1418.054093px;}
._23{width:2175.965952px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs6{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y18{bottom:63.168000px;}
.y17{bottom:108.000000px;}
.yad{bottom:119.169000px;}
.y58{bottom:129.837000px;}
.y6f{bottom:134.890500px;}
.y87{bottom:146.503500px;}
.y16{bottom:152.449500px;}
.y57{bottom:156.727500px;}
.y6e{bottom:161.781000px;}
.yac{bottom:178.563000px;}
.y15{bottom:196.899000px;}
.yab{bottom:205.453500px;}
.y86{bottom:208.711500px;}
.y56{bottom:212.760000px;}
.y6d{bottom:217.813500px;}
.y3d{bottom:234.481500px;}
.y9a{bottom:250.560000px;}
.y14{bottom:258.909000px;}
.y3c{bottom:261.372000px;}
.yaa{bottom:261.486000px;}
.y99{bottom:277.450500px;}
.y55{bottom:288.793500px;}
.y6c{bottom:293.176500px;}
.y85{bottom:294.093000px;}
.y13{bottom:303.358500px;}
.y6b{bottom:320.067000px;}
.y84{bottom:320.985000px;}
.y3b{bottom:323.581500px;}
.y54{bottom:333.243000px;}
.ya9{bottom:337.519500px;}
.y12{bottom:347.808000px;}
.y83{bottom:350.473500px;}
.y98{bottom:352.695000px;}
.y82{bottom:362.775000px;}
.ya8{bottom:364.410000px;}
.y97{bottom:370.627500px;}
.y6a{bottom:382.275000px;}
.y96{bottom:388.560000px;}
.y81{bottom:389.665500px;}
.y53{bottom:395.451000px;}
.ya7{bottom:406.245000px;}
.y3a{bottom:408.963000px;}
.y95{bottom:415.479000px;}
.y11{bottom:427.575000px;}
.y39{bottom:435.855000px;}
.y80{bottom:438.805500px;}
.y94{bottom:439.435500px;}
.y27{bottom:444.369000px;}
.ya6{bottom:448.080000px;}
.y7e{bottom:451.107000px;}
.y7f{bottom:460.425000px;}
.y69{bottom:466.986000px;}
.y38{bottom:479.959500px;}
.y52{bottom:480.834000px;}
.y37{bottom:492.261000px;}
.y68{bottom:493.876500px;}
.y26{bottom:506.377500px;}
.y7d{bottom:507.303000px;}
.ya5{bottom:507.474000px;}
.y51{bottom:507.724500px;}
.y10{bottom:511.456500px;}
.y93{bottom:514.990500px;}
.y67{bottom:523.366500px;}
.y92{bottom:527.292000px;}
.yba{bottom:530.977500px;}
.ya4{bottom:534.364500px;}
.y66{bottom:535.666500px;}
.yf{bottom:536.679000px;}
.y50{bottom:544.569000px;}
.y7c{bottom:549.138000px;}
.y25{bottom:550.827000px;}
.y36{bottom:553.807500px;}
.y4f{bottom:556.870500px;}
.yb9{bottom:557.868000px;}
.ye{bottom:561.900000px;}
.y65{bottom:562.558500px;}
.y35{bottom:580.699500px;}
.y91{bottom:582.399000px;}
.yb8{bottom:584.758500px;}
.y7b{bottom:586.308000px;}
.yd{bottom:587.122500px;}
.y64{bottom:589.449000px;}
.ya3{bottom:590.397000px;}
.y7a{bottom:590.971500px;}
.y24{bottom:595.276500px;}
.y4e{bottom:608.691000px;}
.y90{bottom:609.289500px;}
.yb7{bottom:611.649000px;}
.yc{bottom:612.343500px;}
.y4d{bottom:635.581500px;}
.y34{bottom:636.730500px;}
.yb{bottom:637.566000px;}
.y23{bottom:639.727500px;}
.y63{bottom:645.480000px;}
.y79{bottom:650.365500px;}
.yb6{bottom:653.484000px;}
.y4c{bottom:662.473500px;}
.ya{bottom:662.787000px;}
.y8f{bottom:665.320500px;}
.ya2{bottom:666.430500px;}
.yb5{bottom:680.374500px;}
.y9{bottom:688.009500px;}
.y4b{bottom:689.364000px;}
.ya1{bottom:693.321000px;}
.y22{bottom:701.736000px;}
.y78{bottom:709.759500px;}
.y33{bottom:712.764000px;}
.y8{bottom:713.230500px;}
.y4a{bottom:716.254500px;}
.y62{bottom:720.843000px;}
.ya0{bottom:735.156000px;}
.y32{bottom:739.656000px;}
.y8e{bottom:741.355500px;}
.yb4{bottom:742.584000px;}
.y21{bottom:746.185500px;}
.y61{bottom:747.733500px;}
.y77{bottom:751.594500px;}
.y7{bottom:754.366500px;}
.y49{bottom:772.285500px;}
.y60{bottom:774.624000px;}
.y31{bottom:775.773000px;}
.y9f{bottom:776.991000px;}
.y8d{bottom:787.773000px;}
.y30{bottom:788.074500px;}
.y20{bottom:790.635000px;}
.y76{bottom:793.429500px;}
.y6{bottom:812.758500px;}
.y8c{bottom:814.663500px;}
.y5f{bottom:815.160000px;}
.y9e{bottom:818.826000px;}
.y2f{bottom:824.437500px;}
.yb3{bottom:827.965500px;}
.y8b{bottom:841.554000px;}
.y9d{bottom:845.716500px;}
.y2e{bottom:851.328000px;}
.y1f{bottom:852.643500px;}
.y75{bottom:852.823500px;}
.yb2{bottom:854.857500px;}
.y5e{bottom:855.696000px;}
.y48{bottom:858.193500px;}
.y5{bottom:874.767000px;}
.y47{bottom:876.126000px;}
.y2d{bottom:878.220000px;}
.yb1{bottom:881.748000px;}
.y46{bottom:894.058500px;}
.y1e{bottom:897.094500px;}
.y74{bottom:897.273000px;}
.y8a{bottom:898.171500px;}
.y9c{bottom:905.110500px;}
.yb0{bottom:908.638500px;}
.y5d{bottom:911.190000px;}
.y45{bottom:911.991000px;}
.y73{bottom:924.163500px;}
.y44{bottom:929.923500px;}
.y2c{bottom:934.251000px;}
.yaf{bottom:935.529000px;}
.y5c{bottom:938.082000px;}
.y1d{bottom:941.544000px;}
.y89{bottom:947.316000px;}
.y4{bottom:952.047000px;}
.y43{bottom:956.842500px;}
.y9b{bottom:961.141500px;}
.y42{bottom:974.775000px;}
.y72{bottom:980.194500px;}
.y3{bottom:985.428000px;}
.y88{bottom:989.151000px;}
.y5b{bottom:994.113000px;}
.yae{bottom:997.737000px;}
.y41{bottom:998.731500px;}
.y1c{bottom:1003.552500px;}
.y2b{bottom:1010.284500px;}
.y2{bottom:1018.810500px;}
.y2a{bottom:1037.176500px;}
.y1b{bottom:1048.002000px;}
.y40{bottom:1048.545000px;}
.y71{bottom:1056.229500px;}
.y29{bottom:1064.067000px;}
.y1{bottom:1065.174000px;}
.y5a{bottom:1069.476000px;}
.y3f{bottom:1075.435500px;}
.y70{bottom:1083.120000px;}
.y1a{bottom:1092.451500px;}
.y59{bottom:1110.010500px;}
.y28{bottom:1126.275000px;}
.y3e{bottom:1131.468000px;}
.y19{bottom:1136.902500px;}
.h15{height:33.665702px;}
.hb{height:44.831700px;}
.h4{height:49.090950px;}
.hc{height:49.473619px;}
.hd{height:49.479619px;}
.ha{height:50.929152px;}
.h6{height:53.798400px;}
.h12{height:58.306905px;}
.he{height:58.312905px;}
.h3{height:64.557900px;}
.h11{height:68.144640px;}
.h13{height:72.452400px;}
.h5{height:77.469300px;}
.h2{height:92.981250px;}
.hf{height:99.457152px;}
.h16{height:102.320400px;}
.h10{height:103.004400px;}
.h17{height:106.834905px;}
.h14{height:113.314905px;}
.h7{height:125.527248px;}
.h9{height:134.377248px;}
.h8{height:174.733248px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:108.000000px;}
.x25{left:116.779500px;}
.x12{left:121.920000px;}
.xb{left:134.338500px;}
.x26{left:144.093000px;}
.x9{left:151.897500px;}
.x3{left:158.344500px;}
.x24{left:173.406000px;}
.x8{left:176.443500px;}
.x1{left:233.959500px;}
.x23{left:245.856000px;}
.x1a{left:260.847000px;}
.x13{left:267.411000px;}
.x1e{left:273.409500px;}
.x17{left:279.372000px;}
.x4{left:319.618500px;}
.x2{left:323.989500px;}
.x5{left:328.815000px;}
.x16{left:332.688000px;}
.xd{left:342.738000px;}
.x18{left:357.018000px;}
.x1f{left:359.661000px;}
.x6{left:364.663500px;}
.x1b{left:369.330000px;}
.x20{left:386.614500px;}
.xf{left:396.409500px;}
.x21{left:401.371500px;}
.x19{left:405.922500px;}
.x7{left:410.455500px;}
.x14{left:412.903500px;}
.x1c{left:426.543000px;}
.xc{left:442.066500px;}
.x10{left:456.937500px;}
.x22{left:463.306500px;}
.x1d{left:489.052500px;}
.xe{left:500.439000px;}
.x15{left:600.915000px;}
.x11{left:762.477000px;}
@media print{
.v8{vertical-align:-11.477333pt;}
.v1{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:16.581333pt;}
.vd{vertical-align:18.421333pt;}
.v9{vertical-align:23.141333pt;}
.vb{vertical-align:33.568000pt;}
.v4{vertical-align:43.130667pt;}
.vf{vertical-align:48.896000pt;}
.vc{vertical-align:61.552000pt;}
.v11{vertical-align:66.272000pt;}
.v10{vertical-align:72.032000pt;}
.v3{vertical-align:89.904000pt;}
.v2{vertical-align:109.029333pt;}
.va{vertical-align:116.896000pt;}
.v6{vertical-align:119.365333pt;}
.v5{vertical-align:133.637333pt;}
.v7{vertical-align:152.768000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls40{letter-spacing:0.000391pt;}
.ls0{letter-spacing:0.000455pt;}
.ls24{letter-spacing:0.000501pt;}
.ls1d{letter-spacing:0.000679pt;}
.ls15{letter-spacing:0.000990pt;}
.ls4{letter-spacing:0.001022pt;}
.ls49{letter-spacing:0.001091pt;}
.ls4e{letter-spacing:0.001962pt;}
.ls30{letter-spacing:0.002243pt;}
.ls21{letter-spacing:0.002387pt;}
.ls8{letter-spacing:0.002836pt;}
.ls39{letter-spacing:0.003229pt;}
.ls2b{letter-spacing:0.003733pt;}
.ls20{letter-spacing:0.003868pt;}
.ls1c{letter-spacing:0.003895pt;}
.ls26{letter-spacing:0.004465pt;}
.lsc{letter-spacing:0.004878pt;}
.ls42{letter-spacing:0.005724pt;}
.ls13{letter-spacing:0.005983pt;}
.ls2a{letter-spacing:1.911029pt;}
.ls5{letter-spacing:2.287544pt;}
.ls6{letter-spacing:2.292878pt;}
.ls14{letter-spacing:2.651663pt;}
.ls25{letter-spacing:2.652911pt;}
.ls1b{letter-spacing:2.653534pt;}
.ls1{letter-spacing:2.656853pt;}
.ls22{letter-spacing:2.657069pt;}
.ls27{letter-spacing:2.657253pt;}
.lse{letter-spacing:2.658591pt;}
.ls1e{letter-spacing:2.658868pt;}
.ls29{letter-spacing:2.660667pt;}
.ls4f{letter-spacing:3.213476pt;}
.ls4d{letter-spacing:3.218809pt;}
.ls41{letter-spacing:5.010929pt;}
.ls52{letter-spacing:8.671524pt;}
.lsd{letter-spacing:9.030187pt;}
.ls46{letter-spacing:10.624990pt;}
.ls45{letter-spacing:10.630323pt;}
.ls2c{letter-spacing:11.803145pt;}
.ls2d{letter-spacing:11.811733pt;}
.ls7{letter-spacing:13.282591pt;}
.ls44{letter-spacing:13.877183pt;}
.ls9{letter-spacing:14.163915pt;}
.ls34{letter-spacing:14.166400pt;}
.ls3a{letter-spacing:14.166642pt;}
.lsa{letter-spacing:14.171976pt;}
.ls2e{letter-spacing:14.757812pt;}
.ls1a{letter-spacing:16.004267pt;}
.lsb{letter-spacing:16.340145pt;}
.ls53{letter-spacing:17.384143pt;}
.ls28{letter-spacing:17.418001pt;}
.ls19{letter-spacing:17.706238pt;}
.ls2f{letter-spacing:17.707657pt;}
.ls37{letter-spacing:17.707976pt;}
.ls23{letter-spacing:17.710535pt;}
.ls51{letter-spacing:17.710933pt;}
.ls47{letter-spacing:17.711572pt;}
.ls33{letter-spacing:17.713309pt;}
.ls3f{letter-spacing:19.819976pt;}
.ls4a{letter-spacing:20.366964pt;}
.ls18{letter-spacing:20.368853pt;}
.ls35{letter-spacing:20.811733pt;}
.ls3e{letter-spacing:22.208159pt;}
.ls48{letter-spacing:22.583711pt;}
.ls36{letter-spacing:23.200159pt;}
.ls17{letter-spacing:23.463925pt;}
.ls54{letter-spacing:23.940905pt;}
.ls4b{letter-spacing:24.024143pt;}
.ls38{letter-spacing:24.081309pt;}
.ls16{letter-spacing:25.373534pt;}
.ls50{letter-spacing:26.383524pt;}
.ls32{letter-spacing:26.738591pt;}
.ls3d{letter-spacing:27.073309pt;}
.ls1f{letter-spacing:27.159925pt;}
.ls3b{letter-spacing:28.628267pt;}
.ls11{letter-spacing:31.686323pt;}
.ls10{letter-spacing:31.807544pt;}
.ls2{letter-spacing:31.880533pt;}
.ls12{letter-spacing:32.526933pt;}
.ls4c{letter-spacing:33.146238pt;}
.ls3c{letter-spacing:33.879576pt;}
.ls31{letter-spacing:41.425309pt;}
.ls43{letter-spacing:42.342642pt;}
.lsf{letter-spacing:754.850836pt;}
.ws22{word-spacing:-50.479636pt;}
.ws49{word-spacing:-48.708218pt;}
.ws10{word-spacing:-40.590295pt;}
.ws2f{word-spacing:-34.611401pt;}
.ws11{word-spacing:-30.669073pt;}
.wsc{word-spacing:-28.692333pt;}
.ws16{word-spacing:-22.890223pt;}
.ws15{word-spacing:-22.507657pt;}
.ws3e{word-spacing:-19.925333pt;}
.ws5f{word-spacing:-19.799071pt;}
.ws20{word-spacing:-17.343010pt;}
.ws12{word-spacing:-17.279249pt;}
.ws2e{word-spacing:-16.970957pt;}
.ws2c{word-spacing:-14.760588pt;}
.ws4c{word-spacing:-5.757867pt;}
.ws5a{word-spacing:-3.181932pt;}
.ws5c{word-spacing:-3.175180pt;}
.ws32{word-spacing:-2.950455pt;}
.ws30{word-spacing:-2.731081pt;}
.ws1c{word-spacing:-2.295398pt;}
.ws65{word-spacing:-2.231637pt;}
.ws6a{word-spacing:-2.104115pt;}
.ws4e{word-spacing:-1.147699pt;}
.ws3{word-spacing:-0.453819pt;}
.ws6f{word-spacing:-0.127522pt;}
.ws14{word-spacing:-0.042507pt;}
.ws13{word-spacing:0.000000pt;}
.ws21{word-spacing:0.346771pt;}
.ws7{word-spacing:0.360728pt;}
.ws3c{word-spacing:0.382566pt;}
.ws4d{word-spacing:0.887467pt;}
.ws67{word-spacing:1.275221pt;}
.ws9{word-spacing:1.291637pt;}
.ws68{word-spacing:1.338982pt;}
.ws41{word-spacing:1.785310pt;}
.ws5{word-spacing:2.222547pt;}
.ws54{word-spacing:2.231637pt;}
.ws8{word-spacing:2.397093pt;}
.ws38{word-spacing:2.422921pt;}
.ws62{word-spacing:2.620766pt;}
.ws34{word-spacing:2.932989pt;}
.ws1e{word-spacing:2.933009pt;}
.ws63{word-spacing:2.986123pt;}
.wsb{word-spacing:3.211639pt;}
.ws31{word-spacing:3.379314pt;}
.ws35{word-spacing:3.432448pt;}
.wsf{word-spacing:3.443098pt;}
.wsa{word-spacing:3.444367pt;}
.ws5e{word-spacing:3.461038pt;}
.ws2a{word-spacing:3.506859pt;}
.ws6{word-spacing:3.851640pt;}
.ws3b{word-spacing:3.889425pt;}
.wsd{word-spacing:3.985067pt;}
.ws28{word-spacing:4.016947pt;}
.ws2{word-spacing:4.131706pt;}
.ws6d{word-spacing:4.399514pt;}
.ws42{word-spacing:4.527036pt;}
.ws52{word-spacing:4.718319pt;}
.ws1b{word-spacing:4.782067pt;}
.ws4a{word-spacing:4.909602pt;}
.ws5d{word-spacing:5.228407pt;}
.ws26{word-spacing:5.355930pt;}
.ws27{word-spacing:5.419691pt;}
.ws18{word-spacing:5.738467pt;}
.ws48{word-spacing:5.866018pt;}
.ws64{word-spacing:6.439868pt;}
.ws2b{word-spacing:6.673614pt;}
.ws3a{word-spacing:6.694912pt;}
.ws0{word-spacing:6.887500pt;}
.ws59{word-spacing:7.077478pt;}
.ws1a{word-spacing:7.141239pt;}
.ws1f{word-spacing:7.311885pt;}
.ws40{word-spacing:7.587567pt;}
.ws1{word-spacing:7.651307pt;}
.ws6c{word-spacing:8.097655pt;}
.ws43{word-spacing:8.893014pt;}
.ws47{word-spacing:8.898347pt;}
.ws46{word-spacing:8.990310pt;}
.ws44{word-spacing:9.054071pt;}
.ws50{word-spacing:9.564160pt;}
.ws19{word-spacing:9.882965pt;}
.ws4{word-spacing:10.077099pt;}
.ws51{word-spacing:10.297412pt;}
.ws69{word-spacing:10.393054pt;}
.ws39{word-spacing:11.285709pt;}
.ws23{word-spacing:12.178364pt;}
.ws29{word-spacing:12.815974pt;}
.ws53{word-spacing:12.879735pt;}
.ws73{word-spacing:13.190564pt;}
.wse{word-spacing:14.537523pt;}
.ws74{word-spacing:15.366417pt;}
.ws75{word-spacing:16.386594pt;}
.ws45{word-spacing:16.500267pt;}
.ws56{word-spacing:16.777843pt;}
.ws77{word-spacing:18.554470pt;}
.ws76{word-spacing:20.212258pt;}
.ws4b{word-spacing:20.324629pt;}
.ws6b{word-spacing:20.328175pt;}
.ws66{word-spacing:20.339783pt;}
.ws3d{word-spacing:20.341758pt;}
.ws55{word-spacing:20.344204pt;}
.ws61{word-spacing:21.854522pt;}
.ws1d{word-spacing:22.367885pt;}
.ws60{word-spacing:24.947856pt;}
.ws57{word-spacing:26.605014pt;}
.ws5b{word-spacing:26.610347pt;}
.ws4f{word-spacing:31.223015pt;}
.ws25{word-spacing:36.535091pt;}
.ws17{word-spacing:37.842193pt;}
.ws24{word-spacing:39.839885pt;}
.ws6e{word-spacing:74.600067pt;}
.ws71{word-spacing:74.600448pt;}
.ws70{word-spacing:77.660979pt;}
.ws72{word-spacing:77.724740pt;}
.ws2d{word-spacing:221.600104pt;}
.ws36{word-spacing:239.565299pt;}
.ws33{word-spacing:262.367296pt;}
.ws37{word-spacing:315.079170pt;}
.ws58{word-spacing:488.419212pt;}
.ws3f{word-spacing:701.754300pt;}
._21{margin-left:-37.045180pt;}
._12{margin-left:-33.602082pt;}
._f{margin-left:-31.880533pt;}
._11{margin-left:-11.094426pt;}
._17{margin-left:-10.201771pt;}
._13{margin-left:-8.352700pt;}
._28{margin-left:-7.192228pt;}
._2{margin-left:-5.738480pt;}
._1{margin-left:-4.644560pt;}
._0{margin-left:-3.416200pt;}
._3{margin-left:-2.065853pt;}
._6{margin-left:-0.931703pt;}
._35{width:0.893972pt;}
._4{width:2.065853pt;}
._19{width:3.025948pt;}
._48{width:3.951787pt;}
._27{width:5.339848pt;}
._3c{width:7.036557pt;}
._44{width:16.144298pt;}
._1b{width:17.904096pt;}
._b{width:20.786108pt;}
._18{width:22.214350pt;}
._3a{width:24.075491pt;}
._7{width:25.541839pt;}
._5{width:27.257808pt;}
._2b{width:28.230425pt;}
._c{width:29.983202pt;}
._36{width:30.934115pt;}
._15{width:31.880533pt;}
._29{width:33.028217pt;}
._45{width:34.941065pt;}
._1e{width:36.318309pt;}
._34{width:37.491507pt;}
._2a{width:38.628031pt;}
._20{width:40.642649pt;}
._37{width:44.449860pt;}
._25{width:46.364293pt;}
._14{width:47.757023pt;}
._47{width:49.424793pt;}
._33{width:51.608202pt;}
._8{width:57.767526pt;}
._22{width:59.769618pt;}
._a{width:63.824828pt;}
._1c{width:64.935050pt;}
._3b{width:69.301750pt;}
._43{width:73.234140pt;}
._3d{width:74.321543pt;}
._26{width:86.077200pt;}
._e{width:95.969156pt;}
._24{width:103.292400pt;}
._30{width:104.460761pt;}
._46{width:114.211571pt;}
._d{width:127.267089pt;}
._3f{width:137.951190pt;}
._41{width:171.881691pt;}
._2d{width:173.531584pt;}
._2f{width:221.440282pt;}
._31{width:239.772521pt;}
._3e{width:272.948673pt;}
._2c{width:288.995101pt;}
._32{width:400.704402pt;}
._42{width:480.536322pt;}
._40{width:488.240733pt;}
._38{width:530.045731pt;}
._2e{width:574.004040pt;}
._39{width:693.337839pt;}
._10{width:917.419710pt;}
._1d{width:950.103654pt;}
._1f{width:1110.488236pt;}
._16{width:1112.783634pt;}
._9{width:1219.328377pt;}
._1a{width:1260.492527pt;}
._23{width:1934.191957pt;}
.fs7{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:56.149333pt;}
.y17{bottom:96.000000pt;}
.yad{bottom:105.928000pt;}
.y58{bottom:115.410667pt;}
.y6f{bottom:119.902667pt;}
.y87{bottom:130.225333pt;}
.y16{bottom:135.510667pt;}
.y57{bottom:139.313333pt;}
.y6e{bottom:143.805333pt;}
.yac{bottom:158.722667pt;}
.y15{bottom:175.021333pt;}
.yab{bottom:182.625333pt;}
.y86{bottom:185.521333pt;}
.y56{bottom:189.120000pt;}
.y6d{bottom:193.612000pt;}
.y3d{bottom:208.428000pt;}
.y9a{bottom:222.720000pt;}
.y14{bottom:230.141333pt;}
.y3c{bottom:232.330667pt;}
.yaa{bottom:232.432000pt;}
.y99{bottom:246.622667pt;}
.y55{bottom:256.705333pt;}
.y6c{bottom:260.601333pt;}
.y85{bottom:261.416000pt;}
.y13{bottom:269.652000pt;}
.y6b{bottom:284.504000pt;}
.y84{bottom:285.320000pt;}
.y3b{bottom:287.628000pt;}
.y54{bottom:296.216000pt;}
.ya9{bottom:300.017333pt;}
.y12{bottom:309.162667pt;}
.y83{bottom:311.532000pt;}
.y98{bottom:313.506667pt;}
.y82{bottom:322.466667pt;}
.ya8{bottom:323.920000pt;}
.y97{bottom:329.446667pt;}
.y6a{bottom:339.800000pt;}
.y96{bottom:345.386667pt;}
.y81{bottom:346.369333pt;}
.y53{bottom:351.512000pt;}
.ya7{bottom:361.106667pt;}
.y3a{bottom:363.522667pt;}
.y95{bottom:369.314667pt;}
.y11{bottom:380.066667pt;}
.y39{bottom:387.426667pt;}
.y80{bottom:390.049333pt;}
.y94{bottom:390.609333pt;}
.y27{bottom:394.994667pt;}
.ya6{bottom:398.293333pt;}
.y7e{bottom:400.984000pt;}
.y7f{bottom:409.266667pt;}
.y69{bottom:415.098667pt;}
.y38{bottom:426.630667pt;}
.y52{bottom:427.408000pt;}
.y37{bottom:437.565333pt;}
.y68{bottom:439.001333pt;}
.y26{bottom:450.113333pt;}
.y7d{bottom:450.936000pt;}
.ya5{bottom:451.088000pt;}
.y51{bottom:451.310667pt;}
.y10{bottom:454.628000pt;}
.y93{bottom:457.769333pt;}
.y67{bottom:465.214667pt;}
.y92{bottom:468.704000pt;}
.yba{bottom:471.980000pt;}
.ya4{bottom:474.990667pt;}
.y66{bottom:476.148000pt;}
.yf{bottom:477.048000pt;}
.y50{bottom:484.061333pt;}
.y7c{bottom:488.122667pt;}
.y25{bottom:489.624000pt;}
.y36{bottom:492.273333pt;}
.y4f{bottom:494.996000pt;}
.yb9{bottom:495.882667pt;}
.ye{bottom:499.466667pt;}
.y65{bottom:500.052000pt;}
.y35{bottom:516.177333pt;}
.y91{bottom:517.688000pt;}
.yb8{bottom:519.785333pt;}
.y7b{bottom:521.162667pt;}
.yd{bottom:521.886667pt;}
.y64{bottom:523.954667pt;}
.ya3{bottom:524.797333pt;}
.y7a{bottom:525.308000pt;}
.y24{bottom:529.134667pt;}
.y4e{bottom:541.058667pt;}
.y90{bottom:541.590667pt;}
.yb7{bottom:543.688000pt;}
.yc{bottom:544.305333pt;}
.y4d{bottom:564.961333pt;}
.y34{bottom:565.982667pt;}
.yb{bottom:566.725333pt;}
.y23{bottom:568.646667pt;}
.y63{bottom:573.760000pt;}
.y79{bottom:578.102667pt;}
.yb6{bottom:580.874667pt;}
.y4c{bottom:588.865333pt;}
.ya{bottom:589.144000pt;}
.y8f{bottom:591.396000pt;}
.ya2{bottom:592.382667pt;}
.yb5{bottom:604.777333pt;}
.y9{bottom:611.564000pt;}
.y4b{bottom:612.768000pt;}
.ya1{bottom:616.285333pt;}
.y22{bottom:623.765333pt;}
.y78{bottom:630.897333pt;}
.y33{bottom:633.568000pt;}
.y8{bottom:633.982667pt;}
.y4a{bottom:636.670667pt;}
.y62{bottom:640.749333pt;}
.ya0{bottom:653.472000pt;}
.y32{bottom:657.472000pt;}
.y8e{bottom:658.982667pt;}
.yb4{bottom:660.074667pt;}
.y21{bottom:663.276000pt;}
.y61{bottom:664.652000pt;}
.y77{bottom:668.084000pt;}
.y7{bottom:670.548000pt;}
.y49{bottom:686.476000pt;}
.y60{bottom:688.554667pt;}
.y31{bottom:689.576000pt;}
.y9f{bottom:690.658667pt;}
.y8d{bottom:700.242667pt;}
.y30{bottom:700.510667pt;}
.y20{bottom:702.786667pt;}
.y76{bottom:705.270667pt;}
.y6{bottom:722.452000pt;}
.y8c{bottom:724.145333pt;}
.y5f{bottom:724.586667pt;}
.y9e{bottom:727.845333pt;}
.y2f{bottom:732.833333pt;}
.yb3{bottom:735.969333pt;}
.y8b{bottom:748.048000pt;}
.y9d{bottom:751.748000pt;}
.y2e{bottom:756.736000pt;}
.y1f{bottom:757.905333pt;}
.y75{bottom:758.065333pt;}
.yb2{bottom:759.873333pt;}
.y5e{bottom:760.618667pt;}
.y48{bottom:762.838667pt;}
.y5{bottom:777.570667pt;}
.y47{bottom:778.778667pt;}
.y2d{bottom:780.640000pt;}
.yb1{bottom:783.776000pt;}
.y46{bottom:794.718667pt;}
.y1e{bottom:797.417333pt;}
.y74{bottom:797.576000pt;}
.y8a{bottom:798.374667pt;}
.y9c{bottom:804.542667pt;}
.yb0{bottom:807.678667pt;}
.y5d{bottom:809.946667pt;}
.y45{bottom:810.658667pt;}
.y73{bottom:821.478667pt;}
.y44{bottom:826.598667pt;}
.y2c{bottom:830.445333pt;}
.yaf{bottom:831.581333pt;}
.y5c{bottom:833.850667pt;}
.y1d{bottom:836.928000pt;}
.y89{bottom:842.058667pt;}
.y4{bottom:846.264000pt;}
.y43{bottom:850.526667pt;}
.y9b{bottom:854.348000pt;}
.y42{bottom:866.466667pt;}
.y72{bottom:871.284000pt;}
.y3{bottom:875.936000pt;}
.y88{bottom:879.245333pt;}
.y5b{bottom:883.656000pt;}
.yae{bottom:886.877333pt;}
.y41{bottom:887.761333pt;}
.y1c{bottom:892.046667pt;}
.y2b{bottom:898.030667pt;}
.y2{bottom:905.609333pt;}
.y2a{bottom:921.934667pt;}
.y1b{bottom:931.557333pt;}
.y40{bottom:932.040000pt;}
.y71{bottom:938.870667pt;}
.y29{bottom:945.837333pt;}
.y1{bottom:946.821333pt;}
.y5a{bottom:950.645333pt;}
.y3f{bottom:955.942667pt;}
.y70{bottom:962.773333pt;}
.y1a{bottom:971.068000pt;}
.y59{bottom:986.676000pt;}
.y28{bottom:1001.133333pt;}
.y3e{bottom:1005.749333pt;}
.y19{bottom:1010.580000pt;}
.h15{height:29.925069pt;}
.hb{height:39.850400pt;}
.h4{height:43.636400pt;}
.hc{height:43.976550pt;}
.hd{height:43.981884pt;}
.ha{height:45.270357pt;}
.h6{height:47.820800pt;}
.h12{height:51.828360pt;}
.he{height:51.833693pt;}
.h3{height:57.384800pt;}
.h11{height:60.573013pt;}
.h13{height:64.402133pt;}
.h5{height:68.861600pt;}
.h2{height:82.650000pt;}
.hf{height:88.406357pt;}
.h16{height:90.951467pt;}
.h10{height:91.559467pt;}
.h17{height:94.964360pt;}
.h14{height:100.724360pt;}
.h7{height:111.579776pt;}
.h9{height:119.446443pt;}
.h8{height:155.318443pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:96.000000pt;}
.x25{left:103.804000pt;}
.x12{left:108.373333pt;}
.xb{left:119.412000pt;}
.x26{left:128.082667pt;}
.x9{left:135.020000pt;}
.x3{left:140.750667pt;}
.x24{left:154.138667pt;}
.x8{left:156.838667pt;}
.x1{left:207.964000pt;}
.x23{left:218.538667pt;}
.x1a{left:231.864000pt;}
.x13{left:237.698667pt;}
.x1e{left:243.030667pt;}
.x17{left:248.330667pt;}
.x4{left:284.105333pt;}
.x2{left:287.990667pt;}
.x5{left:292.280000pt;}
.x16{left:295.722667pt;}
.xd{left:304.656000pt;}
.x18{left:317.349333pt;}
.x1f{left:319.698667pt;}
.x6{left:324.145333pt;}
.x1b{left:328.293333pt;}
.x20{left:343.657333pt;}
.xf{left:352.364000pt;}
.x21{left:356.774667pt;}
.x19{left:360.820000pt;}
.x7{left:364.849333pt;}
.x14{left:367.025333pt;}
.x1c{left:379.149333pt;}
.xc{left:392.948000pt;}
.x10{left:406.166667pt;}
.x22{left:411.828000pt;}
.x1d{left:434.713333pt;}
.xe{left:444.834667pt;}
.x15{left:534.146667pt;}
.x11{left:677.757333pt;}
}




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