
    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_62335fe536a9919819657883.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.970000;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_221e6c0736e93fb4ac1424b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.068000;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_c7533571c7c819eec98c5957.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_ad4985c7ea65056ba79fc4c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.952148;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_0535e9f25f5cd8110c5dac6b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.068000;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_6699cf4c44f1c0514e8a7429.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970000;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_0846a4f278a6f788bcb5ce41.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942000;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_c7c23b04c342abe934e5fa26.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919434;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_c34530aa7fcd75d670c55794.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919434;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_284caf6a6d9558d6fe0415e7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.917480;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_1951225278868fd9039b23d1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.711000;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_1e218ed735c5658e4c79d61c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_99be87cb25306688a9795f45.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.942000;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_c5fb1703f792b24af328a78b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.757812;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_c7533571c7c819eec98c5957.woff2')format("woff");}.fff{font-family:fff;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_640fa1257421b8135300ae08.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c7533571c7c819eec98c5957.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_82d424081914ee9497c32472.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043413,0.246202,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-22.317055px;}
.v6{vertical-align:-1.807200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.607600px;}
.v5{vertical-align:6.855000px;}
.v3{vertical-align:20.979000px;}
.v1{vertical-align:23.976000px;}
.ls11{letter-spacing:-1.953000px;}
.ls7{letter-spacing:-1.575000px;}
.ls15{letter-spacing:-1.260000px;}
.ls1d{letter-spacing:-1.254000px;}
.ls1c{letter-spacing:-1.083000px;}
.ls8{letter-spacing:-1.071000px;}
.ls13{letter-spacing:-1.008000px;}
.ls18{letter-spacing:-0.912000px;}
.ls14{letter-spacing:-0.819000px;}
.ls12{letter-spacing:-0.756000px;}
.ls1e{letter-spacing:-0.741000px;}
.lsc{letter-spacing:-0.693000px;}
.ls19{letter-spacing:-0.684000px;}
.lsd{letter-spacing:-0.630000px;}
.ls16{letter-spacing:-0.627000px;}
.ls1a{letter-spacing:-0.570000px;}
.ls5{letter-spacing:-0.567000px;}
.ls1f{letter-spacing:-0.456000px;}
.lsb{letter-spacing:-0.441000px;}
.ls1b{letter-spacing:-0.399000px;}
.ls6{letter-spacing:-0.252000px;}
.ls17{letter-spacing:-0.228000px;}
.ls9{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.083952px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.012000px;}
.lse{letter-spacing:0.945000px;}
.ls1{letter-spacing:3.934883px;}
.ls2{letter-spacing:3.934991px;}
.ls3{letter-spacing:3.985200px;}
.lsf{letter-spacing:5.455800px;}
.ls10{letter-spacing:645.895800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(44,101,176),0 0.015em rgb(44,101,176),0.015em 0 rgb(44,101,176),0 -0.015em  rgb(44,101,176);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(44,101,176);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6c{word-spacing:-63.000000px;}
.ws2{word-spacing:-15.756000px;}
.ws43{word-spacing:-15.246000px;}
.ws7{word-spacing:-14.427000px;}
.ws6d{word-spacing:-14.301000px;}
.ws0{word-spacing:-14.175000px;}
.ws41{word-spacing:-13.797000px;}
.ws8{word-spacing:-13.734000px;}
.ws6f{word-spacing:-13.671000px;}
.wsa0{word-spacing:-13.482000px;}
.ws70{word-spacing:-13.419000px;}
.ws1{word-spacing:-13.356000px;}
.wsa2{word-spacing:-12.939000px;}
.ws4{word-spacing:-12.726000px;}
.wse3{word-spacing:-12.597000px;}
.ws3{word-spacing:-12.540000px;}
.wse1{word-spacing:-12.483000px;}
.ws6e{word-spacing:-12.474000px;}
.wsa1{word-spacing:-12.369000px;}
.wse0{word-spacing:-12.141000px;}
.wsdf{word-spacing:-11.970000px;}
.wse2{word-spacing:-11.799000px;}
.ws6{word-spacing:-8.395200px;}
.ws42{word-spacing:-8.337483px;}
.ws7f{word-spacing:-4.662000px;}
.ws4c{word-spacing:-4.347000px;}
.wsb5{word-spacing:-4.032000px;}
.wsb4{word-spacing:-3.969000px;}
.wsfb{word-spacing:-3.534000px;}
.ws9b{word-spacing:-3.465000px;}
.wsba{word-spacing:-3.276000px;}
.ws5f{word-spacing:-3.150000px;}
.ws28{word-spacing:-3.024000px;}
.wsfc{word-spacing:-3.021000px;}
.ws2e{word-spacing:-2.772000px;}
.ws26{word-spacing:-2.223000px;}
.ws5d{word-spacing:-2.142000px;}
.wsb1{word-spacing:-2.016000px;}
.wsea{word-spacing:-1.938000px;}
.ws23{word-spacing:-1.881000px;}
.wsff{word-spacing:-1.767000px;}
.ws2c{word-spacing:-1.764000px;}
.wsa7{word-spacing:-1.701000px;}
.wsde{word-spacing:-1.482000px;}
.wsc6{word-spacing:-1.386000px;}
.ws12{word-spacing:-1.323000px;}
.ws103{word-spacing:-1.311000px;}
.wsdb{word-spacing:-1.140000px;}
.ws74{word-spacing:-1.134000px;}
.wsb7{word-spacing:-1.071000px;}
.ws4b{word-spacing:-1.008000px;}
.wsdc{word-spacing:-0.912000px;}
.wsd3{word-spacing:-0.693000px;}
.ws25{word-spacing:-0.684000px;}
.ws8c{word-spacing:-0.567000px;}
.wsb9{word-spacing:-0.441000px;}
.ws5b{word-spacing:-0.378000px;}
.wsd2{word-spacing:-0.315000px;}
.ws27{word-spacing:-0.252000px;}
.ws10{word-spacing:-0.189000px;}
.wsf0{word-spacing:-0.171000px;}
.ws97{word-spacing:-0.126000px;}
.ws5{word-spacing:-0.063000px;}
.ws9{word-spacing:0.000000px;}
.wse6{word-spacing:0.057000px;}
.ws7e{word-spacing:0.063000px;}
.wsd4{word-spacing:0.126000px;}
.wsef{word-spacing:0.171000px;}
.ws102{word-spacing:0.228000px;}
.ws14{word-spacing:0.252000px;}
.wsf1{word-spacing:0.399000px;}
.ws3a{word-spacing:0.441000px;}
.ws13{word-spacing:0.567000px;}
.wse4{word-spacing:0.627000px;}
.wsa8{word-spacing:0.630000px;}
.wse5{word-spacing:0.684000px;}
.wscd{word-spacing:0.693000px;}
.wsfd{word-spacing:0.741000px;}
.ws9f{word-spacing:0.756000px;}
.ws36{word-spacing:0.819000px;}
.ws29{word-spacing:0.882000px;}
.wsdd{word-spacing:0.912000px;}
.ws7a{word-spacing:0.945000px;}
.wseb{word-spacing:0.969000px;}
.wsd9{word-spacing:1.026000px;}
.ws16{word-spacing:1.071000px;}
.wsf3{word-spacing:1.140000px;}
.wsd8{word-spacing:1.197000px;}
.ws2d{word-spacing:1.323000px;}
.wsee{word-spacing:1.368000px;}
.ws22{word-spacing:1.425000px;}
.wsd5{word-spacing:1.449000px;}
.wsec{word-spacing:1.539000px;}
.ws15{word-spacing:1.575000px;}
.wsbc{word-spacing:1.701000px;}
.wsda{word-spacing:1.710000px;}
.ws50{word-spacing:1.764000px;}
.ws85{word-spacing:1.827000px;}
.ws8b{word-spacing:1.890000px;}
.ws66{word-spacing:1.953000px;}
.ws21{word-spacing:2.052000px;}
.wsa6{word-spacing:2.268000px;}
.ws62{word-spacing:2.457000px;}
.ws86{word-spacing:2.520000px;}
.ws9c{word-spacing:2.646000px;}
.wsf4{word-spacing:2.850000px;}
.wsa{word-spacing:2.898000px;}
.wsf5{word-spacing:2.907000px;}
.ws72{word-spacing:2.961000px;}
.ws80{word-spacing:3.024000px;}
.ws105{word-spacing:3.078000px;}
.ws24{word-spacing:3.135000px;}
.ws20{word-spacing:3.192000px;}
.ws60{word-spacing:3.213000px;}
.wsce{word-spacing:3.339000px;}
.wsa5{word-spacing:3.465000px;}
.ws5a{word-spacing:3.591000px;}
.ws7b{word-spacing:3.654000px;}
.ws67{word-spacing:3.717000px;}
.wsd6{word-spacing:3.843000px;}
.wsc9{word-spacing:3.906000px;}
.ws35{word-spacing:3.969000px;}
.ws34{word-spacing:4.032000px;}
.wsf2{word-spacing:4.104000px;}
.wsc5{word-spacing:4.158000px;}
.wsd7{word-spacing:4.221000px;}
.wsfe{word-spacing:4.332000px;}
.ws7d{word-spacing:4.347000px;}
.ws100{word-spacing:4.446000px;}
.wsf8{word-spacing:4.503000px;}
.ws46{word-spacing:4.599000px;}
.ws93{word-spacing:4.662000px;}
.wsf9{word-spacing:4.731000px;}
.ws73{word-spacing:4.788000px;}
.ws98{word-spacing:5.040000px;}
.ws101{word-spacing:5.073000px;}
.ws11{word-spacing:5.103000px;}
.wsab{word-spacing:5.166000px;}
.ws104{word-spacing:5.187000px;}
.wsca{word-spacing:5.229000px;}
.wsac{word-spacing:5.292000px;}
.ws9e{word-spacing:5.418000px;}
.ws9d{word-spacing:5.481000px;}
.ws40{word-spacing:5.733000px;}
.ws3f{word-spacing:5.796000px;}
.ws84{word-spacing:5.859000px;}
.wsaf{word-spacing:5.922000px;}
.ws4f{word-spacing:6.111000px;}
.wse7{word-spacing:6.327000px;}
.wsfa{word-spacing:6.441000px;}
.wsb0{word-spacing:6.489000px;}
.ws55{word-spacing:6.552000px;}
.ws8e{word-spacing:6.615000px;}
.wsbb{word-spacing:6.678000px;}
.ws1b{word-spacing:6.741000px;}
.wse8{word-spacing:6.783000px;}
.ws5c{word-spacing:6.804000px;}
.ws96{word-spacing:6.867000px;}
.ws94{word-spacing:6.930000px;}
.wse9{word-spacing:6.954000px;}
.wscc{word-spacing:7.119000px;}
.wsaa{word-spacing:7.182000px;}
.ws45{word-spacing:7.245000px;}
.ws1c{word-spacing:7.308000px;}
.wsf{word-spacing:7.371000px;}
.ws1a{word-spacing:7.434000px;}
.wsf6{word-spacing:7.467000px;}
.ws75{word-spacing:7.497000px;}
.ws79{word-spacing:7.623000px;}
.wsa9{word-spacing:7.686000px;}
.ws7c{word-spacing:7.749000px;}
.wsed{word-spacing:7.809000px;}
.ws95{word-spacing:7.875000px;}
.wsf7{word-spacing:7.923000px;}
.ws19{word-spacing:8.190000px;}
.ws2f{word-spacing:8.253000px;}
.ws6b{word-spacing:8.379000px;}
.wsc7{word-spacing:8.442000px;}
.ws82{word-spacing:8.568000px;}
.ws4d{word-spacing:8.631000px;}
.wscf{word-spacing:8.694000px;}
.ws30{word-spacing:9.009000px;}
.ws31{word-spacing:9.135000px;}
.wsc8{word-spacing:9.198000px;}
.ws37{word-spacing:9.261000px;}
.ws63{word-spacing:9.387000px;}
.ws54{word-spacing:9.702000px;}
.ws92{word-spacing:9.765000px;}
.ws58{word-spacing:9.828000px;}
.wscb{word-spacing:9.891000px;}
.ws89{word-spacing:10.332000px;}
.ws47{word-spacing:10.395000px;}
.ws68{word-spacing:10.458000px;}
.ws8a{word-spacing:10.647000px;}
.wsbf{word-spacing:10.710000px;}
.ws88{word-spacing:10.773000px;}
.wsd0{word-spacing:10.836000px;}
.wsb{word-spacing:10.962000px;}
.ws99{word-spacing:11.277000px;}
.ws64{word-spacing:11.718000px;}
.ws3b{word-spacing:11.844000px;}
.ws3c{word-spacing:11.970000px;}
.wsc1{word-spacing:12.033000px;}
.wsc2{word-spacing:12.096000px;}
.wsd1{word-spacing:12.537000px;}
.wsc3{word-spacing:12.600000px;}
.ws65{word-spacing:12.663000px;}
.wsb3{word-spacing:12.726000px;}
.ws4a{word-spacing:12.789000px;}
.ws71{word-spacing:13.041000px;}
.wsc4{word-spacing:13.104000px;}
.ws59{word-spacing:13.167000px;}
.wsb8{word-spacing:13.293000px;}
.ws69{word-spacing:13.356000px;}
.ws1d{word-spacing:13.419000px;}
.wsd{word-spacing:13.482000px;}
.wsad{word-spacing:13.671000px;}
.ws78{word-spacing:13.797000px;}
.ws3e{word-spacing:14.301000px;}
.ws5e{word-spacing:14.553000px;}
.ws44{word-spacing:14.679000px;}
.ws49{word-spacing:14.742000px;}
.ws48{word-spacing:14.805000px;}
.ws76{word-spacing:15.183000px;}
.ws2b{word-spacing:15.246000px;}
.ws2a{word-spacing:15.372000px;}
.ws61{word-spacing:15.435000px;}
.ws87{word-spacing:15.876000px;}
.ws17{word-spacing:16.128000px;}
.ws4e{word-spacing:16.254000px;}
.wsc0{word-spacing:16.380000px;}
.ws83{word-spacing:17.136000px;}
.ws9a{word-spacing:17.199000px;}
.wsb6{word-spacing:17.451000px;}
.ws1e{word-spacing:17.514000px;}
.wsc{word-spacing:17.577000px;}
.ws1f{word-spacing:17.640000px;}
.ws56{word-spacing:18.774000px;}
.ws8d{word-spacing:18.963000px;}
.ws38{word-spacing:19.215000px;}
.ws39{word-spacing:19.341000px;}
.wse{word-spacing:19.467000px;}
.ws51{word-spacing:19.530000px;}
.wsa3{word-spacing:19.971000px;}
.ws3d{word-spacing:20.034000px;}
.wsa4{word-spacing:20.160000px;}
.ws77{word-spacing:20.286000px;}
.ws57{word-spacing:21.231000px;}
.ws91{word-spacing:21.483000px;}
.wsbe{word-spacing:21.609000px;}
.ws90{word-spacing:21.861000px;}
.ws6a{word-spacing:22.113000px;}
.ws8f{word-spacing:24.633000px;}
.ws18{word-spacing:25.578000px;}
.ws53{word-spacing:25.830000px;}
.wsb2{word-spacing:26.082000px;}
.ws32{word-spacing:26.271000px;}
.ws33{word-spacing:26.712000px;}
.wsae{word-spacing:29.547000px;}
.ws81{word-spacing:30.933000px;}
.wsbd{word-spacing:41.265000px;}
.ws52{word-spacing:53.739000px;}
._7{margin-left:-276.747300px;}
._8{margin-left:-15.552300px;}
._13{margin-left:-8.253600px;}
._2{margin-left:-6.391800px;}
._5{margin-left:-4.644900px;}
._1{margin-left:-2.730300px;}
._0{margin-left:-1.145700px;}
._3{width:1.026000px;}
._9{width:2.054833px;}
._6{width:3.073800px;}
._d{width:4.634100px;}
._10{width:6.394800px;}
._12{width:12.902700px;}
._4{width:14.768700px;}
._a{width:15.786600px;}
._11{width:17.322600px;}
._b{width:20.452800px;}
._f{width:77.449500px;}
._c{width:1704.421800px;}
._e{width:1708.980000px;}
.fc5{color:rgb(123,127,132);}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(46,117,170);}
.fc1{color:rgb(44,101,176);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:36.729000px;}
.fs6{font-size:39.071601px;}
.fs5{font-size:41.976000px;}
.fs8{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs2{font-size:63.000000px;}
.fs7{font-size:67.018160px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:35.871600px;}
.y6{bottom:35.895150px;}
.y78{bottom:52.724250px;}
.y3f{bottom:53.780100px;}
.y40{bottom:56.705700px;}
.yb5{bottom:94.385550px;}
.y77{bottom:101.061000px;}
.y9a{bottom:107.619450px;}
.yb4{bottom:111.485550px;}
.y97{bottom:115.520100px;}
.ye7{bottom:120.740400px;}
.y99{bottom:126.519450px;}
.yb3{bottom:133.085550px;}
.y96{bottom:134.420100px;}
.ye6{bottom:137.840400px;}
.y98{bottom:145.419450px;}
.yb2{bottom:150.185550px;}
.y3e{bottom:154.499850px;}
.y19{bottom:156.911850px;}
.ye5{bottom:159.440400px;}
.yb1{bottom:171.785550px;}
.y3d{bottom:175.518900px;}
.ye4{bottom:176.540400px;}
.y18{bottom:177.161850px;}
.yb0{bottom:193.385550px;}
.ye3{bottom:193.640400px;}
.y3c{bottom:196.538100px;}
.y17{bottom:197.411850px;}
.yaf{bottom:210.485550px;}
.ye2{bottom:215.240400px;}
.y3b{bottom:217.557150px;}
.y16{bottom:217.661850px;}
.yae{bottom:227.585550px;}
.ye1{bottom:232.340400px;}
.y15{bottom:237.911850px;}
.y3a{bottom:238.576200px;}
.ye0{bottom:249.440400px;}
.yad{bottom:257.689500px;}
.y14{bottom:258.161850px;}
.y39{bottom:259.595250px;}
.ydf{bottom:271.040400px;}
.y13{bottom:278.411850px;}
.y38{bottom:280.614300px;}
.yde{bottom:288.140400px;}
.ya7{bottom:296.124300px;}
.y12{bottom:298.661850px;}
.y37{bottom:301.633350px;}
.ydd{bottom:309.740400px;}
.ya6{bottom:316.374300px;}
.yac{bottom:316.374450px;}
.y11{bottom:318.911850px;}
.y36{bottom:322.652400px;}
.ydc{bottom:326.840400px;}
.ya5{bottom:336.624300px;}
.yab{bottom:336.624450px;}
.y10{bottom:339.161850px;}
.y35{bottom:343.671450px;}
.ydb{bottom:348.440400px;}
.ya4{bottom:356.874300px;}
.yaa{bottom:356.874450px;}
.yf{bottom:359.411850px;}
.y34{bottom:364.690500px;}
.yda{bottom:365.540400px;}
.ya9{bottom:377.124450px;}
.ye{bottom:379.661850px;}
.ya3{bottom:385.628250px;}
.y33{bottom:385.709550px;}
.yd9{bottom:387.140400px;}
.yd{bottom:399.911850px;}
.ya8{bottom:405.878400px;}
.y32{bottom:406.728600px;}
.yd8{bottom:408.740400px;}
.yc{bottom:420.161850px;}
.yd7{bottom:425.840400px;}
.y31{bottom:427.747650px;}
.ya2{bottom:428.799900px;}
.yb{bottom:440.411850px;}
.yd6{bottom:447.440400px;}
.y30{bottom:448.766850px;}
.ya1{bottom:449.049900px;}
.y9b{bottom:450.352200px;}
.y9d{bottom:452.788200px;}
.y9e{bottom:453.727200px;}
.ya{bottom:460.661850px;}
.yd5{bottom:464.540400px;}
.ya0{bottom:469.299900px;}
.y2f{bottom:469.785900px;}
.y9{bottom:480.911850px;}
.yd4{bottom:481.640400px;}
.y9c{bottom:487.477200px;}
.y9f{bottom:489.549900px;}
.y2e{bottom:490.804950px;}
.y8{bottom:501.161850px;}
.yd3{bottom:503.240400px;}
.y7a{bottom:509.799900px;}
.y2d{bottom:511.824000px;}
.y95{bottom:518.618700px;}
.yd2{bottom:520.340400px;}
.y5b{bottom:524.704350px;}
.y7{bottom:529.915800px;}
.y76{bottom:530.049900px;}
.y2c{bottom:532.843050px;}
.yd1{bottom:537.440400px;}
.y94{bottom:538.868700px;}
.y5a{bottom:544.954350px;}
.y75{bottom:550.299900px;}
.yd0{bottom:559.040400px;}
.y93{bottom:559.118700px;}
.y74{bottom:570.549900px;}
.y59{bottom:573.708300px;}
.ycf{bottom:576.140400px;}
.y92{bottom:579.368700px;}
.y73{bottom:590.799900px;}
.yce{bottom:593.240400px;}
.y23{bottom:595.907550px;}
.y91{bottom:599.618700px;}
.y58{bottom:610.608300px;}
.y72{bottom:611.049900px;}
.ycd{bottom:614.840400px;}
.y90{bottom:619.868700px;}
.y57{bottom:630.858300px;}
.y71{bottom:631.299900px;}
.ycc{bottom:631.940400px;}
.y22{bottom:635.217000px;}
.y8f{bottom:640.118700px;}
.y56{bottom:651.108300px;}
.y70{bottom:651.549900px;}
.ycb{bottom:653.540400px;}
.y21{bottom:653.967000px;}
.y8e{bottom:660.368700px;}
.y55{bottom:671.358300px;}
.y6f{bottom:671.799900px;}
.y20{bottom:672.717000px;}
.yca{bottom:675.140400px;}
.y8d{bottom:680.618700px;}
.y1f{bottom:691.467000px;}
.y54{bottom:691.608300px;}
.y6e{bottom:692.049900px;}
.yc9{bottom:692.240400px;}
.y8c{bottom:700.868550px;}
.y1e{bottom:710.217000px;}
.y53{bottom:711.858300px;}
.y6d{bottom:712.299900px;}
.yc8{bottom:713.840400px;}
.y8b{bottom:721.118550px;}
.y1d{bottom:728.967000px;}
.yc7{bottom:730.940400px;}
.y52{bottom:732.108300px;}
.y6c{bottom:732.549900px;}
.y8a{bottom:741.368550px;}
.y1c{bottom:747.717000px;}
.y51{bottom:752.358300px;}
.yc6{bottom:752.540400px;}
.y6b{bottom:752.799900px;}
.y89{bottom:761.618550px;}
.y1b{bottom:766.467000px;}
.yc5{bottom:769.640400px;}
.y50{bottom:772.608150px;}
.y6a{bottom:773.049900px;}
.y88{bottom:781.868550px;}
.yc4{bottom:791.240400px;}
.y4f{bottom:792.858150px;}
.y69{bottom:793.299900px;}
.y1a{bottom:793.720950px;}
.y87{bottom:802.118550px;}
.yc3{bottom:808.340400px;}
.y4e{bottom:813.108150px;}
.y68{bottom:813.549900px;}
.y86{bottom:822.368550px;}
.yc2{bottom:829.940400px;}
.y4d{bottom:833.358150px;}
.y67{bottom:833.799900px;}
.y85{bottom:842.618550px;}
.yc1{bottom:847.040400px;}
.y2b{bottom:852.787800px;}
.y4c{bottom:853.608150px;}
.y66{bottom:854.049900px;}
.y84{bottom:862.868550px;}
.yc0{bottom:868.640400px;}
.y2a{bottom:872.587800px;}
.y4b{bottom:873.858150px;}
.y65{bottom:874.299900px;}
.y83{bottom:883.118550px;}
.ybf{bottom:885.740400px;}
.y4a{bottom:894.108150px;}
.y64{bottom:894.549900px;}
.y29{bottom:897.882450px;}
.y82{bottom:903.368550px;}
.ybe{bottom:907.340400px;}
.y28{bottom:912.187800px;}
.y49{bottom:914.358150px;}
.y63{bottom:914.799900px;}
.y81{bottom:923.618550px;}
.ybd{bottom:924.440400px;}
.y48{bottom:934.608150px;}
.y62{bottom:935.049900px;}
.y27{bottom:937.482300px;}
.y80{bottom:943.868550px;}
.ybc{bottom:946.040400px;}
.y47{bottom:954.858150px;}
.y61{bottom:955.299900px;}
.y26{bottom:960.504300px;}
.ybb{bottom:963.140400px;}
.y7f{bottom:964.118550px;}
.y46{bottom:975.108150px;}
.y60{bottom:975.549900px;}
.y7e{bottom:984.368550px;}
.yba{bottom:984.740400px;}
.y45{bottom:995.358150px;}
.y5f{bottom:995.799900px;}
.yb9{bottom:1001.840400px;}
.y7d{bottom:1004.618550px;}
.y25{bottom:1009.742100px;}
.y44{bottom:1015.608150px;}
.y5e{bottom:1016.049900px;}
.yb8{bottom:1023.440400px;}
.y7c{bottom:1024.868550px;}
.y43{bottom:1035.858150px;}
.y5d{bottom:1036.299900px;}
.yb7{bottom:1040.540400px;}
.y24{bottom:1042.742100px;}
.y7b{bottom:1053.622500px;}
.y42{bottom:1056.108150px;}
.y5c{bottom:1056.549900px;}
.yb6{bottom:1057.640400px;}
.y4{bottom:1086.343500px;}
.y2{bottom:1086.445650px;}
.y3{bottom:1103.443500px;}
.y1{bottom:1103.545650px;}
.y79{bottom:1115.127450px;}
.y41{bottom:1115.185050px;}
.ha{height:28.170624px;}
.hc{height:38.931000px;}
.h6{height:39.966797px;}
.hd{height:40.500000px;}
.h2{height:41.097000px;}
.h7{height:45.423000px;}
.h1{height:46.227000px;}
.hb{height:48.320093px;}
.he{height:49.962600px;}
.h4{height:51.093000px;}
.h9{height:54.240696px;}
.h5{height:56.238000px;}
.h3{height:58.271484px;}
.hf{height:58.392000px;}
.h8{height:77.868000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:57.475950px;}
.x13{left:75.047250px;}
.x4{left:90.354300px;}
.xd{left:96.395100px;}
.x15{left:97.535400px;}
.x6{left:99.000000px;}
.x7{left:101.125950px;}
.x5{left:112.818900px;}
.xb{left:114.926100px;}
.x18{left:136.653600px;}
.x8{left:142.604850px;}
.x1{left:192.337800px;}
.x12{left:262.366950px;}
.x1b{left:302.687100px;}
.xc{left:305.604150px;}
.x16{left:469.500000px;}
.xf{left:484.830750px;}
.x17{left:492.035400px;}
.x11{left:507.035400px;}
.xa{left:512.247900px;}
.x19{left:531.106350px;}
.xe{left:567.190650px;}
.x3{left:657.000000px;}
.x9{left:660.162300px;}
.x2{left:677.125950px;}
.x14{left:716.437500px;}
.x1a{left:810.445800px;}
@media print{
.v2{vertical-align:-19.837382pt;}
.v6{vertical-align:-1.606400pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.317867pt;}
.v5{vertical-align:6.093333pt;}
.v3{vertical-align:18.648000pt;}
.v1{vertical-align:21.312000pt;}
.ls11{letter-spacing:-1.736000pt;}
.ls7{letter-spacing:-1.400000pt;}
.ls15{letter-spacing:-1.120000pt;}
.ls1d{letter-spacing:-1.114667pt;}
.ls1c{letter-spacing:-0.962667pt;}
.ls8{letter-spacing:-0.952000pt;}
.ls13{letter-spacing:-0.896000pt;}
.ls18{letter-spacing:-0.810667pt;}
.ls14{letter-spacing:-0.728000pt;}
.ls12{letter-spacing:-0.672000pt;}
.ls1e{letter-spacing:-0.658667pt;}
.lsc{letter-spacing:-0.616000pt;}
.ls19{letter-spacing:-0.608000pt;}
.lsd{letter-spacing:-0.560000pt;}
.ls16{letter-spacing:-0.557333pt;}
.ls1a{letter-spacing:-0.506667pt;}
.ls5{letter-spacing:-0.504000pt;}
.ls1f{letter-spacing:-0.405333pt;}
.lsb{letter-spacing:-0.392000pt;}
.ls1b{letter-spacing:-0.354667pt;}
.ls6{letter-spacing:-0.224000pt;}
.ls17{letter-spacing:-0.202667pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.074624pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.010667pt;}
.lse{letter-spacing:0.840000pt;}
.ls1{letter-spacing:3.497674pt;}
.ls2{letter-spacing:3.497770pt;}
.ls3{letter-spacing:3.542400pt;}
.lsf{letter-spacing:4.849600pt;}
.ls10{letter-spacing:574.129600pt;}
.ws6c{word-spacing:-56.000000pt;}
.ws2{word-spacing:-14.005333pt;}
.ws43{word-spacing:-13.552000pt;}
.ws7{word-spacing:-12.824000pt;}
.ws6d{word-spacing:-12.712000pt;}
.ws0{word-spacing:-12.600000pt;}
.ws41{word-spacing:-12.264000pt;}
.ws8{word-spacing:-12.208000pt;}
.ws6f{word-spacing:-12.152000pt;}
.wsa0{word-spacing:-11.984000pt;}
.ws70{word-spacing:-11.928000pt;}
.ws1{word-spacing:-11.872000pt;}
.wsa2{word-spacing:-11.501333pt;}
.ws4{word-spacing:-11.312000pt;}
.wse3{word-spacing:-11.197333pt;}
.ws3{word-spacing:-11.146667pt;}
.wse1{word-spacing:-11.096000pt;}
.ws6e{word-spacing:-11.088000pt;}
.wsa1{word-spacing:-10.994667pt;}
.wse0{word-spacing:-10.792000pt;}
.wsdf{word-spacing:-10.640000pt;}
.wse2{word-spacing:-10.488000pt;}
.ws6{word-spacing:-7.462400pt;}
.ws42{word-spacing:-7.411096pt;}
.ws7f{word-spacing:-4.144000pt;}
.ws4c{word-spacing:-3.864000pt;}
.wsb5{word-spacing:-3.584000pt;}
.wsb4{word-spacing:-3.528000pt;}
.wsfb{word-spacing:-3.141333pt;}
.ws9b{word-spacing:-3.080000pt;}
.wsba{word-spacing:-2.912000pt;}
.ws5f{word-spacing:-2.800000pt;}
.ws28{word-spacing:-2.688000pt;}
.wsfc{word-spacing:-2.685333pt;}
.ws2e{word-spacing:-2.464000pt;}
.ws26{word-spacing:-1.976000pt;}
.ws5d{word-spacing:-1.904000pt;}
.wsb1{word-spacing:-1.792000pt;}
.wsea{word-spacing:-1.722667pt;}
.ws23{word-spacing:-1.672000pt;}
.wsff{word-spacing:-1.570667pt;}
.ws2c{word-spacing:-1.568000pt;}
.wsa7{word-spacing:-1.512000pt;}
.wsde{word-spacing:-1.317333pt;}
.wsc6{word-spacing:-1.232000pt;}
.ws12{word-spacing:-1.176000pt;}
.ws103{word-spacing:-1.165333pt;}
.wsdb{word-spacing:-1.013333pt;}
.ws74{word-spacing:-1.008000pt;}
.wsb7{word-spacing:-0.952000pt;}
.ws4b{word-spacing:-0.896000pt;}
.wsdc{word-spacing:-0.810667pt;}
.wsd3{word-spacing:-0.616000pt;}
.ws25{word-spacing:-0.608000pt;}
.ws8c{word-spacing:-0.504000pt;}
.wsb9{word-spacing:-0.392000pt;}
.ws5b{word-spacing:-0.336000pt;}
.wsd2{word-spacing:-0.280000pt;}
.ws27{word-spacing:-0.224000pt;}
.ws10{word-spacing:-0.168000pt;}
.wsf0{word-spacing:-0.152000pt;}
.ws97{word-spacing:-0.112000pt;}
.ws5{word-spacing:-0.056000pt;}
.ws9{word-spacing:0.000000pt;}
.wse6{word-spacing:0.050667pt;}
.ws7e{word-spacing:0.056000pt;}
.wsd4{word-spacing:0.112000pt;}
.wsef{word-spacing:0.152000pt;}
.ws102{word-spacing:0.202667pt;}
.ws14{word-spacing:0.224000pt;}
.wsf1{word-spacing:0.354667pt;}
.ws3a{word-spacing:0.392000pt;}
.ws13{word-spacing:0.504000pt;}
.wse4{word-spacing:0.557333pt;}
.wsa8{word-spacing:0.560000pt;}
.wse5{word-spacing:0.608000pt;}
.wscd{word-spacing:0.616000pt;}
.wsfd{word-spacing:0.658667pt;}
.ws9f{word-spacing:0.672000pt;}
.ws36{word-spacing:0.728000pt;}
.ws29{word-spacing:0.784000pt;}
.wsdd{word-spacing:0.810667pt;}
.ws7a{word-spacing:0.840000pt;}
.wseb{word-spacing:0.861333pt;}
.wsd9{word-spacing:0.912000pt;}
.ws16{word-spacing:0.952000pt;}
.wsf3{word-spacing:1.013333pt;}
.wsd8{word-spacing:1.064000pt;}
.ws2d{word-spacing:1.176000pt;}
.wsee{word-spacing:1.216000pt;}
.ws22{word-spacing:1.266667pt;}
.wsd5{word-spacing:1.288000pt;}
.wsec{word-spacing:1.368000pt;}
.ws15{word-spacing:1.400000pt;}
.wsbc{word-spacing:1.512000pt;}
.wsda{word-spacing:1.520000pt;}
.ws50{word-spacing:1.568000pt;}
.ws85{word-spacing:1.624000pt;}
.ws8b{word-spacing:1.680000pt;}
.ws66{word-spacing:1.736000pt;}
.ws21{word-spacing:1.824000pt;}
.wsa6{word-spacing:2.016000pt;}
.ws62{word-spacing:2.184000pt;}
.ws86{word-spacing:2.240000pt;}
.ws9c{word-spacing:2.352000pt;}
.wsf4{word-spacing:2.533333pt;}
.wsa{word-spacing:2.576000pt;}
.wsf5{word-spacing:2.584000pt;}
.ws72{word-spacing:2.632000pt;}
.ws80{word-spacing:2.688000pt;}
.ws105{word-spacing:2.736000pt;}
.ws24{word-spacing:2.786667pt;}
.ws20{word-spacing:2.837333pt;}
.ws60{word-spacing:2.856000pt;}
.wsce{word-spacing:2.968000pt;}
.wsa5{word-spacing:3.080000pt;}
.ws5a{word-spacing:3.192000pt;}
.ws7b{word-spacing:3.248000pt;}
.ws67{word-spacing:3.304000pt;}
.wsd6{word-spacing:3.416000pt;}
.wsc9{word-spacing:3.472000pt;}
.ws35{word-spacing:3.528000pt;}
.ws34{word-spacing:3.584000pt;}
.wsf2{word-spacing:3.648000pt;}
.wsc5{word-spacing:3.696000pt;}
.wsd7{word-spacing:3.752000pt;}
.wsfe{word-spacing:3.850667pt;}
.ws7d{word-spacing:3.864000pt;}
.ws100{word-spacing:3.952000pt;}
.wsf8{word-spacing:4.002667pt;}
.ws46{word-spacing:4.088000pt;}
.ws93{word-spacing:4.144000pt;}
.wsf9{word-spacing:4.205333pt;}
.ws73{word-spacing:4.256000pt;}
.ws98{word-spacing:4.480000pt;}
.ws101{word-spacing:4.509333pt;}
.ws11{word-spacing:4.536000pt;}
.wsab{word-spacing:4.592000pt;}
.ws104{word-spacing:4.610667pt;}
.wsca{word-spacing:4.648000pt;}
.wsac{word-spacing:4.704000pt;}
.ws9e{word-spacing:4.816000pt;}
.ws9d{word-spacing:4.872000pt;}
.ws40{word-spacing:5.096000pt;}
.ws3f{word-spacing:5.152000pt;}
.ws84{word-spacing:5.208000pt;}
.wsaf{word-spacing:5.264000pt;}
.ws4f{word-spacing:5.432000pt;}
.wse7{word-spacing:5.624000pt;}
.wsfa{word-spacing:5.725333pt;}
.wsb0{word-spacing:5.768000pt;}
.ws55{word-spacing:5.824000pt;}
.ws8e{word-spacing:5.880000pt;}
.wsbb{word-spacing:5.936000pt;}
.ws1b{word-spacing:5.992000pt;}
.wse8{word-spacing:6.029333pt;}
.ws5c{word-spacing:6.048000pt;}
.ws96{word-spacing:6.104000pt;}
.ws94{word-spacing:6.160000pt;}
.wse9{word-spacing:6.181333pt;}
.wscc{word-spacing:6.328000pt;}
.wsaa{word-spacing:6.384000pt;}
.ws45{word-spacing:6.440000pt;}
.ws1c{word-spacing:6.496000pt;}
.wsf{word-spacing:6.552000pt;}
.ws1a{word-spacing:6.608000pt;}
.wsf6{word-spacing:6.637333pt;}
.ws75{word-spacing:6.664000pt;}
.ws79{word-spacing:6.776000pt;}
.wsa9{word-spacing:6.832000pt;}
.ws7c{word-spacing:6.888000pt;}
.wsed{word-spacing:6.941333pt;}
.ws95{word-spacing:7.000000pt;}
.wsf7{word-spacing:7.042667pt;}
.ws19{word-spacing:7.280000pt;}
.ws2f{word-spacing:7.336000pt;}
.ws6b{word-spacing:7.448000pt;}
.wsc7{word-spacing:7.504000pt;}
.ws82{word-spacing:7.616000pt;}
.ws4d{word-spacing:7.672000pt;}
.wscf{word-spacing:7.728000pt;}
.ws30{word-spacing:8.008000pt;}
.ws31{word-spacing:8.120000pt;}
.wsc8{word-spacing:8.176000pt;}
.ws37{word-spacing:8.232000pt;}
.ws63{word-spacing:8.344000pt;}
.ws54{word-spacing:8.624000pt;}
.ws92{word-spacing:8.680000pt;}
.ws58{word-spacing:8.736000pt;}
.wscb{word-spacing:8.792000pt;}
.ws89{word-spacing:9.184000pt;}
.ws47{word-spacing:9.240000pt;}
.ws68{word-spacing:9.296000pt;}
.ws8a{word-spacing:9.464000pt;}
.wsbf{word-spacing:9.520000pt;}
.ws88{word-spacing:9.576000pt;}
.wsd0{word-spacing:9.632000pt;}
.wsb{word-spacing:9.744000pt;}
.ws99{word-spacing:10.024000pt;}
.ws64{word-spacing:10.416000pt;}
.ws3b{word-spacing:10.528000pt;}
.ws3c{word-spacing:10.640000pt;}
.wsc1{word-spacing:10.696000pt;}
.wsc2{word-spacing:10.752000pt;}
.wsd1{word-spacing:11.144000pt;}
.wsc3{word-spacing:11.200000pt;}
.ws65{word-spacing:11.256000pt;}
.wsb3{word-spacing:11.312000pt;}
.ws4a{word-spacing:11.368000pt;}
.ws71{word-spacing:11.592000pt;}
.wsc4{word-spacing:11.648000pt;}
.ws59{word-spacing:11.704000pt;}
.wsb8{word-spacing:11.816000pt;}
.ws69{word-spacing:11.872000pt;}
.ws1d{word-spacing:11.928000pt;}
.wsd{word-spacing:11.984000pt;}
.wsad{word-spacing:12.152000pt;}
.ws78{word-spacing:12.264000pt;}
.ws3e{word-spacing:12.712000pt;}
.ws5e{word-spacing:12.936000pt;}
.ws44{word-spacing:13.048000pt;}
.ws49{word-spacing:13.104000pt;}
.ws48{word-spacing:13.160000pt;}
.ws76{word-spacing:13.496000pt;}
.ws2b{word-spacing:13.552000pt;}
.ws2a{word-spacing:13.664000pt;}
.ws61{word-spacing:13.720000pt;}
.ws87{word-spacing:14.112000pt;}
.ws17{word-spacing:14.336000pt;}
.ws4e{word-spacing:14.448000pt;}
.wsc0{word-spacing:14.560000pt;}
.ws83{word-spacing:15.232000pt;}
.ws9a{word-spacing:15.288000pt;}
.wsb6{word-spacing:15.512000pt;}
.ws1e{word-spacing:15.568000pt;}
.wsc{word-spacing:15.624000pt;}
.ws1f{word-spacing:15.680000pt;}
.ws56{word-spacing:16.688000pt;}
.ws8d{word-spacing:16.856000pt;}
.ws38{word-spacing:17.080000pt;}
.ws39{word-spacing:17.192000pt;}
.wse{word-spacing:17.304000pt;}
.ws51{word-spacing:17.360000pt;}
.wsa3{word-spacing:17.752000pt;}
.ws3d{word-spacing:17.808000pt;}
.wsa4{word-spacing:17.920000pt;}
.ws77{word-spacing:18.032000pt;}
.ws57{word-spacing:18.872000pt;}
.ws91{word-spacing:19.096000pt;}
.wsbe{word-spacing:19.208000pt;}
.ws90{word-spacing:19.432000pt;}
.ws6a{word-spacing:19.656000pt;}
.ws8f{word-spacing:21.896000pt;}
.ws18{word-spacing:22.736000pt;}
.ws53{word-spacing:22.960000pt;}
.wsb2{word-spacing:23.184000pt;}
.ws32{word-spacing:23.352000pt;}
.ws33{word-spacing:23.744000pt;}
.wsae{word-spacing:26.264000pt;}
.ws81{word-spacing:27.496000pt;}
.wsbd{word-spacing:36.680000pt;}
.ws52{word-spacing:47.768000pt;}
._7{margin-left:-245.997600pt;}
._8{margin-left:-13.824267pt;}
._13{margin-left:-7.336533pt;}
._2{margin-left:-5.681600pt;}
._5{margin-left:-4.128800pt;}
._1{margin-left:-2.426933pt;}
._0{margin-left:-1.018400pt;}
._3{width:0.912000pt;}
._9{width:1.826518pt;}
._6{width:2.732267pt;}
._d{width:4.119200pt;}
._10{width:5.684267pt;}
._12{width:11.469067pt;}
._4{width:13.127733pt;}
._a{width:14.032533pt;}
._11{width:15.397867pt;}
._b{width:18.180267pt;}
._f{width:68.844000pt;}
._c{width:1515.041600pt;}
._e{width:1519.093333pt;}
.fsa{font-size:32.648000pt;}
.fs6{font-size:34.730312pt;}
.fs5{font-size:37.312000pt;}
.fs8{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs2{font-size:56.000000pt;}
.fs7{font-size:59.571698pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:31.885867pt;}
.y6{bottom:31.906800pt;}
.y78{bottom:46.866000pt;}
.y3f{bottom:47.804533pt;}
.y40{bottom:50.405067pt;}
.yb5{bottom:83.898267pt;}
.y77{bottom:89.832000pt;}
.y9a{bottom:95.661733pt;}
.yb4{bottom:99.098267pt;}
.y97{bottom:102.684533pt;}
.ye7{bottom:107.324800pt;}
.y99{bottom:112.461733pt;}
.yb3{bottom:118.298267pt;}
.y96{bottom:119.484533pt;}
.ye6{bottom:122.524800pt;}
.y98{bottom:129.261733pt;}
.yb2{bottom:133.498267pt;}
.y3e{bottom:137.333200pt;}
.y19{bottom:139.477200pt;}
.ye5{bottom:141.724800pt;}
.yb1{bottom:152.698267pt;}
.y3d{bottom:156.016800pt;}
.ye4{bottom:156.924800pt;}
.y18{bottom:157.477200pt;}
.yb0{bottom:171.898267pt;}
.ye3{bottom:172.124800pt;}
.y3c{bottom:174.700533pt;}
.y17{bottom:175.477200pt;}
.yaf{bottom:187.098267pt;}
.ye2{bottom:191.324800pt;}
.y3b{bottom:193.384133pt;}
.y16{bottom:193.477200pt;}
.yae{bottom:202.298267pt;}
.ye1{bottom:206.524800pt;}
.y15{bottom:211.477200pt;}
.y3a{bottom:212.067733pt;}
.ye0{bottom:221.724800pt;}
.yad{bottom:229.057333pt;}
.y14{bottom:229.477200pt;}
.y39{bottom:230.751333pt;}
.ydf{bottom:240.924800pt;}
.y13{bottom:247.477200pt;}
.y38{bottom:249.434933pt;}
.yde{bottom:256.124800pt;}
.ya7{bottom:263.221600pt;}
.y12{bottom:265.477200pt;}
.y37{bottom:268.118533pt;}
.ydd{bottom:275.324800pt;}
.ya6{bottom:281.221600pt;}
.yac{bottom:281.221733pt;}
.y11{bottom:283.477200pt;}
.y36{bottom:286.802133pt;}
.ydc{bottom:290.524800pt;}
.ya5{bottom:299.221600pt;}
.yab{bottom:299.221733pt;}
.y10{bottom:301.477200pt;}
.y35{bottom:305.485733pt;}
.ydb{bottom:309.724800pt;}
.ya4{bottom:317.221600pt;}
.yaa{bottom:317.221733pt;}
.yf{bottom:319.477200pt;}
.y34{bottom:324.169333pt;}
.yda{bottom:324.924800pt;}
.ya9{bottom:335.221733pt;}
.ye{bottom:337.477200pt;}
.ya3{bottom:342.780667pt;}
.y33{bottom:342.852933pt;}
.yd9{bottom:344.124800pt;}
.yd{bottom:355.477200pt;}
.ya8{bottom:360.780800pt;}
.y32{bottom:361.536533pt;}
.yd8{bottom:363.324800pt;}
.yc{bottom:373.477200pt;}
.yd7{bottom:378.524800pt;}
.y31{bottom:380.220133pt;}
.ya2{bottom:381.155467pt;}
.yb{bottom:391.477200pt;}
.yd6{bottom:397.724800pt;}
.y30{bottom:398.903867pt;}
.ya1{bottom:399.155467pt;}
.y9b{bottom:400.313067pt;}
.y9d{bottom:402.478400pt;}
.y9e{bottom:403.313067pt;}
.ya{bottom:409.477200pt;}
.yd5{bottom:412.924800pt;}
.ya0{bottom:417.155467pt;}
.y2f{bottom:417.587467pt;}
.y9{bottom:427.477200pt;}
.yd4{bottom:428.124800pt;}
.y9c{bottom:433.313067pt;}
.y9f{bottom:435.155467pt;}
.y2e{bottom:436.271067pt;}
.y8{bottom:445.477200pt;}
.yd3{bottom:447.324800pt;}
.y7a{bottom:453.155467pt;}
.y2d{bottom:454.954667pt;}
.y95{bottom:460.994400pt;}
.yd2{bottom:462.524800pt;}
.y5b{bottom:466.403867pt;}
.y7{bottom:471.036267pt;}
.y76{bottom:471.155467pt;}
.y2c{bottom:473.638267pt;}
.yd1{bottom:477.724800pt;}
.y94{bottom:478.994400pt;}
.y5a{bottom:484.403867pt;}
.y75{bottom:489.155467pt;}
.yd0{bottom:496.924800pt;}
.y93{bottom:496.994400pt;}
.y74{bottom:507.155467pt;}
.y59{bottom:509.962933pt;}
.ycf{bottom:512.124800pt;}
.y92{bottom:514.994400pt;}
.y73{bottom:525.155467pt;}
.yce{bottom:527.324800pt;}
.y23{bottom:529.695600pt;}
.y91{bottom:532.994400pt;}
.y58{bottom:542.762933pt;}
.y72{bottom:543.155467pt;}
.ycd{bottom:546.524800pt;}
.y90{bottom:550.994400pt;}
.y57{bottom:560.762933pt;}
.y71{bottom:561.155467pt;}
.ycc{bottom:561.724800pt;}
.y22{bottom:564.637333pt;}
.y8f{bottom:568.994400pt;}
.y56{bottom:578.762933pt;}
.y70{bottom:579.155467pt;}
.ycb{bottom:580.924800pt;}
.y21{bottom:581.304000pt;}
.y8e{bottom:586.994400pt;}
.y55{bottom:596.762933pt;}
.y6f{bottom:597.155467pt;}
.y20{bottom:597.970667pt;}
.yca{bottom:600.124800pt;}
.y8d{bottom:604.994400pt;}
.y1f{bottom:614.637333pt;}
.y54{bottom:614.762933pt;}
.y6e{bottom:615.155467pt;}
.yc9{bottom:615.324800pt;}
.y8c{bottom:622.994267pt;}
.y1e{bottom:631.304000pt;}
.y53{bottom:632.762933pt;}
.y6d{bottom:633.155467pt;}
.yc8{bottom:634.524800pt;}
.y8b{bottom:640.994267pt;}
.y1d{bottom:647.970667pt;}
.yc7{bottom:649.724800pt;}
.y52{bottom:650.762933pt;}
.y6c{bottom:651.155467pt;}
.y8a{bottom:658.994267pt;}
.y1c{bottom:664.637333pt;}
.y51{bottom:668.762933pt;}
.yc6{bottom:668.924800pt;}
.y6b{bottom:669.155467pt;}
.y89{bottom:676.994267pt;}
.y1b{bottom:681.304000pt;}
.yc5{bottom:684.124800pt;}
.y50{bottom:686.762800pt;}
.y6a{bottom:687.155467pt;}
.y88{bottom:694.994267pt;}
.yc4{bottom:703.324800pt;}
.y4f{bottom:704.762800pt;}
.y69{bottom:705.155467pt;}
.y1a{bottom:705.529733pt;}
.y87{bottom:712.994267pt;}
.yc3{bottom:718.524800pt;}
.y4e{bottom:722.762800pt;}
.y68{bottom:723.155467pt;}
.y86{bottom:730.994267pt;}
.yc2{bottom:737.724800pt;}
.y4d{bottom:740.762800pt;}
.y67{bottom:741.155467pt;}
.y85{bottom:748.994267pt;}
.yc1{bottom:752.924800pt;}
.y2b{bottom:758.033600pt;}
.y4c{bottom:758.762800pt;}
.y66{bottom:759.155467pt;}
.y84{bottom:766.994267pt;}
.yc0{bottom:772.124800pt;}
.y2a{bottom:775.633600pt;}
.y4b{bottom:776.762800pt;}
.y65{bottom:777.155467pt;}
.y83{bottom:784.994267pt;}
.ybf{bottom:787.324800pt;}
.y4a{bottom:794.762800pt;}
.y64{bottom:795.155467pt;}
.y29{bottom:798.117733pt;}
.y82{bottom:802.994267pt;}
.ybe{bottom:806.524800pt;}
.y28{bottom:810.833600pt;}
.y49{bottom:812.762800pt;}
.y63{bottom:813.155467pt;}
.y81{bottom:820.994267pt;}
.ybd{bottom:821.724800pt;}
.y48{bottom:830.762800pt;}
.y62{bottom:831.155467pt;}
.y27{bottom:833.317600pt;}
.y80{bottom:838.994267pt;}
.ybc{bottom:840.924800pt;}
.y47{bottom:848.762800pt;}
.y61{bottom:849.155467pt;}
.y26{bottom:853.781600pt;}
.ybb{bottom:856.124800pt;}
.y7f{bottom:856.994267pt;}
.y46{bottom:866.762800pt;}
.y60{bottom:867.155467pt;}
.y7e{bottom:874.994267pt;}
.yba{bottom:875.324800pt;}
.y45{bottom:884.762800pt;}
.y5f{bottom:885.155467pt;}
.yb9{bottom:890.524800pt;}
.y7d{bottom:892.994267pt;}
.y25{bottom:897.548533pt;}
.y44{bottom:902.762800pt;}
.y5e{bottom:903.155467pt;}
.yb8{bottom:909.724800pt;}
.y7c{bottom:910.994267pt;}
.y43{bottom:920.762800pt;}
.y5d{bottom:921.155467pt;}
.yb7{bottom:924.924800pt;}
.y24{bottom:926.881867pt;}
.y7b{bottom:936.553333pt;}
.y42{bottom:938.762800pt;}
.y5c{bottom:939.155467pt;}
.yb6{bottom:940.124800pt;}
.y4{bottom:965.638667pt;}
.y2{bottom:965.729467pt;}
.y3{bottom:980.838667pt;}
.y1{bottom:980.929467pt;}
.y79{bottom:991.224400pt;}
.y41{bottom:991.275600pt;}
.ha{height:25.040555pt;}
.hc{height:34.605333pt;}
.h6{height:35.526042pt;}
.hd{height:36.000000pt;}
.h2{height:36.530667pt;}
.h7{height:40.376000pt;}
.h1{height:41.090667pt;}
.hb{height:42.951194pt;}
.he{height:44.411200pt;}
.h4{height:45.416000pt;}
.h9{height:48.213952pt;}
.h5{height:49.989333pt;}
.h3{height:51.796875pt;}
.hf{height:51.904000pt;}
.h8{height:69.216000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:51.089733pt;}
.x13{left:66.708667pt;}
.x4{left:80.314933pt;}
.xd{left:85.684533pt;}
.x15{left:86.698133pt;}
.x6{left:88.000000pt;}
.x7{left:89.889733pt;}
.x5{left:100.283467pt;}
.xb{left:102.156533pt;}
.x18{left:121.469867pt;}
.x8{left:126.759867pt;}
.x1{left:170.966933pt;}
.x12{left:233.215067pt;}
.x1b{left:269.055200pt;}
.xc{left:271.648133pt;}
.x16{left:417.333333pt;}
.xf{left:430.960667pt;}
.x17{left:437.364800pt;}
.x11{left:450.698133pt;}
.xa{left:455.331467pt;}
.x19{left:472.094533pt;}
.xe{left:504.169467pt;}
.x3{left:584.000000pt;}
.x9{left:586.810933pt;}
.x2{left:601.889733pt;}
.x14{left:636.833333pt;}
.x1a{left:720.396267pt;}
}




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