
    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_b78e9c16d1185704314912ca.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_285ba6f9235e85d7c1c2d189.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_02c277dae4850887d9343c3d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0d0df048a39cccaee8466df4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_62151008a94b6337d36eaa3a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.899000;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_dceabc11ac4ef832f8f86025.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;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_71d8ae5200f49c965cf7a416.woff2')format("woff");}.ff8{font-family:ff8;line-height:2.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_48e75a53693d52fa21d99841.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_29cb460d42d461a5079cefbc.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b3223806191f61299f2da168.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_637e1f1b29038cb234ccb250.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.710000;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_7b108b370bf6cbea1d404f34.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.414000;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_d77eb0582669ec77fc83a360.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.918000;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_ae9160267974c02f68263a0f.woff2')format("woff");}.fff{font-family:fff;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v13{vertical-align:-64.758000px;}
.vd{vertical-align:-44.688000px;}
.v3{vertical-align:-29.616000px;}
.v10{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:4.512000px;}
.vf{vertical-align:18.924000px;}
.v4{vertical-align:26.034000px;}
.v2{vertical-align:29.616000px;}
.v12{vertical-align:37.770000px;}
.v5{vertical-align:48.528000px;}
.v1{vertical-align:64.830000px;}
.v8{vertical-align:78.822000px;}
.v11{vertical-align:96.078000px;}
.v6{vertical-align:97.734000px;}
.va{vertical-align:101.346000px;}
.v7{vertical-align:123.762000px;}
.vb{vertical-align:127.374000px;}
.vc{vertical-align:146.040000px;}
.v9{vertical-align:150.348000px;}
.ls2{letter-spacing:0.000000px;}
.ls4d{letter-spacing:0.000440px;}
.ls40{letter-spacing:0.000472px;}
.ls26{letter-spacing:0.000760px;}
.ls32{letter-spacing:0.001288px;}
.ls19{letter-spacing:0.002759px;}
.ls7{letter-spacing:0.002915px;}
.ls1f{letter-spacing:0.003131px;}
.ls43{letter-spacing:0.003744px;}
.ls6{letter-spacing:0.004381px;}
.lsd{letter-spacing:0.004391px;}
.ls4{letter-spacing:0.004800px;}
.ls31{letter-spacing:0.006760px;}
.ls4a{letter-spacing:1.949053px;}
.ls37{letter-spacing:2.401300px;}
.ls3{letter-spacing:2.569918px;}
.ls4b{letter-spacing:2.574492px;}
.lsb{letter-spacing:2.984915px;}
.ls3a{letter-spacing:2.990367px;}
.ls12{letter-spacing:2.990915px;}
.ls3f{letter-spacing:3.189477px;}
.ls41{letter-spacing:3.195477px;}
.lsc{letter-spacing:4.173471px;}
.ls1a{letter-spacing:4.179471px;}
.ls3c{letter-spacing:5.344571px;}
.ls42{letter-spacing:7.168800px;}
.ls11{letter-spacing:7.172227px;}
.lse{letter-spacing:7.173633px;}
.ls15{letter-spacing:7.179744px;}
.ls4f{letter-spacing:13.073518px;}
.ls22{letter-spacing:14.348227px;}
.ls3b{letter-spacing:15.924326px;}
.ls14{letter-spacing:15.935518px;}
.ls2c{letter-spacing:15.941073px;}
.ls1c{letter-spacing:15.941518px;}
.ls33{letter-spacing:16.008760px;}
.ls24{letter-spacing:16.468454px;}
.ls13{letter-spacing:18.511918px;}
.ls4e{letter-spacing:18.926915px;}
.lsa{letter-spacing:19.919518px;}
.ls35{letter-spacing:19.921473px;}
.ls5{letter-spacing:19.922759px;}
.ls1e{letter-spacing:19.924454px;}
.ls17{letter-spacing:19.924664px;}
.ls45{letter-spacing:19.924800px;}
.lsf{letter-spacing:19.925518px;}
.ls36{letter-spacing:19.927288px;}
.ls9{letter-spacing:19.929744px;}
.ls2d{letter-spacing:21.502009px;}
.ls10{letter-spacing:21.871473px;}
.ls21{letter-spacing:21.877473px;}
.ls34{letter-spacing:22.333300px;}
.ls0{letter-spacing:22.894874px;}
.ls50{letter-spacing:22.910915px;}
.ls18{letter-spacing:23.111518px;}
.ls30{letter-spacing:23.405123px;}
.ls20{letter-spacing:23.410454px;}
.ls4c{letter-spacing:24.105471px;}
.ls25{letter-spacing:24.928454px;}
.ls3e{letter-spacing:25.357021px;}
.ls49{letter-spacing:26.402915px;}
.ls29{letter-spacing:27.095518px;}
.ls48{letter-spacing:27.098759px;}
.ls47{letter-spacing:27.939894px;}
.ls27{letter-spacing:29.695288px;}
.ls28{letter-spacing:29.695473px;}
.ls16{letter-spacing:30.026227px;}
.ls46{letter-spacing:31.425894px;}
.ls1d{letter-spacing:31.547831px;}
.ls1{letter-spacing:35.865600px;}
.ls2e{letter-spacing:37.595518px;}
.ls38{letter-spacing:39.850800px;}
.ls2b{letter-spacing:40.972145px;}
.ls1b{letter-spacing:69.914227px;}
.ls3d{letter-spacing:450.506400px;}
.ls39{letter-spacing:807.243633px;}
.ls8{letter-spacing:861.280530px;}
.ls44{letter-spacing:952.100759px;}
.ls2f{letter-spacing:1001.432227px;}
.ls23{letter-spacing:1057.683744px;}
.ls2a{letter-spacing:1152.415150px;}
.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;}
}
.ws4c{word-spacing:-87.655526px;}
.ws23{word-spacing:-71.731200px;}
.ws2a{word-spacing:-56.789591px;}
.ws53{word-spacing:-51.789926px;}
.ws14{word-spacing:-45.664082px;}
.ws20{word-spacing:-33.756703px;}
.wse{word-spacing:-32.278875px;}
.ws27{word-spacing:-30.026680px;}
.ws3c{word-spacing:-27.130188px;}
.ws39{word-spacing:-25.720813px;}
.ws24{word-spacing:-23.146188px;}
.ws1f{word-spacing:-19.510886px;}
.ws11{word-spacing:-19.439155px;}
.wsd{word-spacing:-18.183288px;}
.ws6d{word-spacing:-17.932800px;}
.ws29{word-spacing:-17.089576px;}
.ws2d{word-spacing:-11.521576px;}
.ws25{word-spacing:-7.105576px;}
.ws5c{word-spacing:-3.873485px;}
.ws47{word-spacing:-3.586560px;}
.ws40{word-spacing:-3.514829px;}
.ws2e{word-spacing:-3.478963px;}
.ws30{word-spacing:-3.084442px;}
.ws2f{word-spacing:-3.065318px;}
.ws76{word-spacing:-1.793280px;}
.wsb{word-spacing:-1.361456px;}
.ws1e{word-spacing:-0.717312px;}
.ws1b{word-spacing:-0.286925px;}
.ws26{word-spacing:-0.071731px;}
.ws22{word-spacing:-0.047821px;}
.ws12{word-spacing:0.000000px;}
.ws69{word-spacing:0.286925px;}
.ws19{word-spacing:0.358656px;}
.ws4b{word-spacing:0.386993px;}
.ws21{word-spacing:0.390117px;}
.ws3b{word-spacing:0.392210px;}
.ws2b{word-spacing:0.430387px;}
.ws28{word-spacing:0.717312px;}
.ws5d{word-spacing:1.578086px;}
.wsc{word-spacing:1.649456px;}
.wsa{word-spacing:1.714911px;}
.ws6f{word-spacing:1.802596px;}
.ws49{word-spacing:2.008474px;}
.ws8{word-spacing:2.369457px;}
.ws45{word-spacing:2.510592px;}
.ws63{word-spacing:3.299613px;}
.ws4f{word-spacing:3.371366px;}
.ws52{word-spacing:3.443098px;}
.ws54{word-spacing:3.864372px;}
.ws75{word-spacing:3.867882px;}
.ws13{word-spacing:3.873485px;}
.ws41{word-spacing:3.884569px;}
.ws1c{word-spacing:3.945216px;}
.ws31{word-spacing:4.016947px;}
.ws35{word-spacing:4.303872px;}
.ws1a{word-spacing:4.375603px;}
.wsf{word-spacing:4.483200px;}
.ws1{word-spacing:4.648169px;}
.ws48{word-spacing:4.805990px;}
.ws6e{word-spacing:5.236378px;}
.ws18{word-spacing:5.379825px;}
.ws33{word-spacing:5.379840px;}
.ws32{word-spacing:5.412090px;}
.ws6b{word-spacing:5.451571px;}
.ws5{word-spacing:5.904005px;}
.ws4d{word-spacing:6.097152px;}
.ws2c{word-spacing:6.312346px;}
.ws37{word-spacing:6.384077px;}
.ws17{word-spacing:6.455775px;}
.ws74{word-spacing:6.814464px;}
.ws44{word-spacing:7.029658px;}
.ws70{word-spacing:7.173120px;}
.ws0{word-spacing:7.748438px;}
.ws71{word-spacing:7.818701px;}
.ws6c{word-spacing:8.033894px;}
.ws4e{word-spacing:8.105626px;}
.ws7{word-spacing:8.129461px;}
.ws3d{word-spacing:8.177357px;}
.ws59{word-spacing:8.234276px;}
.ws51{word-spacing:8.240276px;}
.ws5a{word-spacing:8.249088px;}
.ws2{word-spacing:8.653098px;}
.ws3{word-spacing:8.784007px;}
.ws9{word-spacing:8.980371px;}
.ws50{word-spacing:9.253325px;}
.ws4a{word-spacing:9.468518px;}
.ws4{word-spacing:9.504008px;}
.ws36{word-spacing:9.611981px;}
.ws6{word-spacing:9.831281px;}
.ws1d{word-spacing:9.864424px;}
.ws46{word-spacing:9.898906px;}
.ws34{word-spacing:10.401024px;}
.ws3e{word-spacing:11.998078px;}
.ws3f{word-spacing:12.050842px;}
.ws3a{word-spacing:12.552960px;}
.ws5b{word-spacing:12.624691px;}
.ws6a{word-spacing:12.911616px;}
.ws5f{word-spacing:13.915853px;}
.ws57{word-spacing:14.561434px;}
.ws58{word-spacing:14.776627px;}
.ws43{word-spacing:15.110893px;}
.ws38{word-spacing:16.139520px;}
.ws10{word-spacing:16.354714px;}
.ws61{word-spacing:17.669667px;}
.ws73{word-spacing:20.228198px;}
.ws42{word-spacing:20.371661px;}
.ws72{word-spacing:22.164941px;}
.ws5e{word-spacing:22.864763px;}
.ws60{word-spacing:28.147179px;}
.ws56{word-spacing:30.062893px;}
.ws16{word-spacing:42.572467px;}
.ws15{word-spacing:52.005120px;}
.ws68{word-spacing:83.925075px;}
.ws65{word-spacing:316.407405px;}
.ws62{word-spacing:323.927175px;}
.ws67{word-spacing:325.851950px;}
.ws64{word-spacing:374.897829px;}
.ws66{word-spacing:599.289454px;}
.ws55{word-spacing:925.691136px;}
._26{margin-left:-70.942157px;}
._2e{margin-left:-58.190879px;}
._31{margin-left:-47.630941px;}
._16{margin-left:-40.888358px;}
._12{margin-left:-35.865600px;}
._18{margin-left:-34.301873px;}
._9{margin-left:-32.956837px;}
._41{margin-left:-31.312543px;}
._4a{margin-left:-29.887800px;}
._2f{margin-left:-25.502036px;}
._3b{margin-left:-16.216271px;}
._13{margin-left:-12.481229px;}
._3a{margin-left:-8.435566px;}
._14{margin-left:-7.244851px;}
._8{margin-left:-5.498186px;}
._1{margin-left:-3.843225px;}
._2{margin-left:-2.324084px;}
._4{margin-left:-1.046381px;}
._b{width:1.048166px;}
._3{width:2.324084px;}
._0{width:3.843225px;}
._1d{width:5.356010px;}
._3f{width:7.075594px;}
._33{width:15.954586px;}
._20{width:18.194609px;}
._2d{width:20.256001px;}
._30{width:21.490727px;}
._f{width:23.384371px;}
._3e{width:24.420259px;}
._37{width:25.922765px;}
._38{width:27.161009px;}
._a{width:28.252829px;}
._10{width:30.184476px;}
._1b{width:31.662145px;}
._6{width:33.447301px;}
._7{width:35.181401px;}
._28{width:36.549799px;}
._35{width:38.274201px;}
._1e{width:40.426137px;}
._3c{width:44.143374px;}
._5{width:45.328649px;}
._23{width:46.584921px;}
._3d{width:47.692479px;}
._39{width:48.710629px;}
._24{width:51.244763px;}
._21{width:54.471093px;}
._1c{width:56.121584px;}
._4c{width:58.776539px;}
._19{width:61.186714px;}
._40{width:63.439067px;}
._c{width:64.988467px;}
._27{width:67.927662px;}
._e{width:71.802931px;}
._1a{width:80.338944px;}
._43{width:95.029008px;}
._2c{width:96.836850px;}
._15{width:107.309875px;}
._2b{width:116.203950px;}
._11{width:143.175475px;}
._4b{width:157.194331px;}
._46{width:161.588146px;}
._48{width:166.587433px;}
._47{width:247.646405px;}
._49{width:284.464916px;}
._45{width:337.122272px;}
._44{width:363.256321px;}
._17{width:394.564645px;}
._29{width:697.786754px;}
._36{width:859.840299px;}
._32{width:889.047143px;}
._42{width:893.086985px;}
._34{width:922.750157px;}
._d{width:953.288894px;}
._22{width:999.770679px;}
._1f{width:1303.814977px;}
._25{width:1392.732979px;}
._2a{width:2175.965952px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.820600px;}
.fs6{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y17{bottom:63.168000px;}
.y3e{bottom:108.000000px;}
.yb5{bottom:109.002000px;}
.y6f{bottom:134.890500px;}
.yb4{bottom:135.894000px;}
.y58{bottom:144.115500px;}
.y3d{bottom:148.617000px;}
.y16{bottom:157.108500px;}
.y89{bottom:167.886000px;}
.y57{bottom:171.006000px;}
.yb3{bottom:177.727500px;}
.y87{bottom:180.186000px;}
.y6e{bottom:186.025500px;}
.y88{bottom:192.318000px;}
.y15{bottom:201.558000px;}
.y3c{bottom:204.358500px;}
.y56{bottom:212.841000px;}
.yb2{bottom:219.562500px;}
.y6d{bottom:225.106500px;}
.y86{bottom:232.006500px;}
.y14{bottom:246.009000px;}
.yb1{bottom:246.454500px;}
.y3b{bottom:253.504500px;}
.y85{bottom:258.898500px;}
.y55{bottom:272.235000px;}
.yb0{bottom:273.345000px;}
.y6c{bottom:276.240000px;}
.y84{bottom:291.898500px;}
.y29{bottom:293.460000px;}
.y54{bottom:299.125500px;}
.yaf{bottom:300.235500px;}
.y3a{bottom:302.649000px;}
.y6b{bottom:303.130500px;}
.y83{bottom:304.198500px;}
.y98{bottom:310.485000px;}
.y13{bottom:325.776000px;}
.y53{bottom:326.017500px;}
.y6a{bottom:330.022500px;}
.y82{bottom:331.090500px;}
.y97{bottom:337.375500px;}
.yae{bottom:342.070500px;}
.y28{bottom:355.468500px;}
.y81{bottom:357.981000px;}
.y39{bottom:358.681500px;}
.y51{bottom:368.262000px;}
.yad{bottom:368.961000px;}
.y96{bottom:376.321500px;}
.y52{bottom:379.434000px;}
.y50{bottom:380.562000px;}
.y80{bottom:384.871500px;}
.y69{bottom:386.053500px;}
.yac{bottom:395.851500px;}
.y95{bottom:403.212000px;}
.y12{bottom:411.159000px;}
.y27{bottom:417.477000px;}
.yab{bottom:422.743500px;}
.y94{bottom:430.104000px;}
.y38{bottom:434.086500px;}
.y4f{bottom:435.046500px;}
.y11{bottom:436.380000px;}
.y7f{bottom:440.902500px;}
.y68{bottom:460.665000px;}
.y37{bottom:460.977000px;}
.y10{bottom:461.602500px;}
.y26{bottom:461.928000px;}
.yaa{bottom:484.951500px;}
.y93{bottom:486.135000px;}
.yf{bottom:486.823500px;}
.y4e{bottom:491.077500px;}
.y67{bottom:500.008500px;}
.y25{bottom:506.377500px;}
.ye{bottom:512.046000px;}
.y66{bottom:512.310000px;}
.y7e{bottom:516.937500px;}
.y36{bottom:523.185000px;}
.yd{bottom:537.267000px;}
.y7d{bottom:543.828000px;}
.y92{bottom:562.168500px;}
.yc{bottom:562.489500px;}
.y35{bottom:563.985000px;}
.y65{bottom:565.126500px;}
.y4d{bottom:567.112500px;}
.y24{bottom:568.386000px;}
.ya9{bottom:570.333000px;}
.y7c{bottom:570.718500px;}
.yb{bottom:587.710500px;}
.y91{bottom:589.059000px;}
.y64{bottom:592.017000px;}
.y4c{bottom:593.757000px;}
.ya8{bottom:597.225000px;}
.y23{bottom:612.835500px;}
.ya{bottom:612.933000px;}
.y4b{bottom:618.189000px;}
.y7b{bottom:619.864500px;}
.y63{bottom:622.503000px;}
.ya7{bottom:624.115500px;}
.y62{bottom:634.803000px;}
.y9{bottom:638.154000px;}
.y90{bottom:648.453000px;}
.y34{bottom:648.739500px;}
.ya6{bottom:651.006000px;}
.y22{bottom:657.285000px;}
.y8{bottom:663.376500px;}
.y61{bottom:664.170000px;}
.y7a{bottom:669.009000px;}
.y4a{bottom:671.103000px;}
.ya5{bottom:677.896500px;}
.y7{bottom:688.597500px;}
.y33{bottom:689.356500px;}
.y8f{bottom:690.288000px;}
.y60{bottom:691.062000px;}
.y79{bottom:695.901000px;}
.y21{bottom:719.295000px;}
.y78{bottom:722.791500px;}
.y32{bottom:729.973500px;}
.y6{bottom:739.902000px;}
.ya4{bottom:740.106000px;}
.y49{bottom:740.646000px;}
.y5f{bottom:747.093000px;}
.y8e{bottom:749.682000px;}
.y20{bottom:763.744500px;}
.y48{bottom:767.538000px;}
.y8d{bottom:776.572500px;}
.y77{bottom:778.822500px;}
.y31{bottom:785.715000px;}
.y47{bottom:799.270500px;}
.y1f{bottom:808.194000px;}
.y30{bottom:812.605500px;}
.y5{bottom:821.536500px;}
.y5e{bottom:821.704500px;}
.y46{bottom:823.704000px;}
.ya3{bottom:829.258500px;}
.y8c{bottom:832.605000px;}
.ya2{bottom:847.191000px;}
.y5d{bottom:848.595000px;}
.y76{bottom:854.857500px;}
.ya1{bottom:865.123500px;}
.y2f{bottom:868.638000px;}
.y1e{bottom:870.202500px;}
.y5c{bottom:875.485500px;}
.y45{bottom:876.277500px;}
.y75{bottom:881.748000px;}
.ya0{bottom:883.057500px;}
.y4{bottom:883.546500px;}
.y9f{bottom:900.990000px;}
.y74{bottom:908.638500px;}
.y1d{bottom:914.653500px;}
.y9e{bottom:918.922500px;}
.y8b{bottom:935.529000px;}
.y9d{bottom:936.855000px;}
.y5b{bottom:937.695000px;}
.y2e{bottom:944.043000px;}
.y44{bottom:945.820500px;}
.y1c{bottom:959.103000px;}
.y3{bottom:960.825000px;}
.y9c{bottom:963.772500px;}
.y73{bottom:970.846500px;}
.y2d{bottom:970.933500px;}
.y43{bottom:972.711000px;}
.y9b{bottom:981.705000px;}
.y8a{bottom:997.737000px;}
.y2c{bottom:997.824000px;}
.y1b{bottom:1003.552500px;}
.y9a{bottom:1005.663000px;}
.y2{bottom:1007.188500px;}
.y42{bottom:1009.555500px;}
.y5a{bottom:1021.654500px;}
.y41{bottom:1021.857000px;}
.y1a{bottom:1048.002000px;}
.y59{bottom:1048.545000px;}
.y1{bottom:1053.552000px;}
.y2b{bottom:1053.856500px;}
.y72{bottom:1056.229500px;}
.y40{bottom:1075.435500px;}
.y71{bottom:1083.120000px;}
.y99{bottom:1085.475000px;}
.y19{bottom:1092.451500px;}
.y70{bottom:1110.010500px;}
.y2a{bottom:1126.275000px;}
.y3f{bottom:1131.468000px;}
.y18{bottom:1136.902500px;}
.h19{height:41.842920px;}
.h1a{height:44.831700px;}
.h4{height:45.818220px;}
.h5{height:49.090950px;}
.h1c{height:49.781453px;}
.h1b{height:51.216077px;}
.h7{height:53.798400px;}
.h13{height:58.310400px;}
.ha{height:61.899450px;}
.h3{height:64.557900px;}
.h18{height:65.481450px;}
.h9{height:67.699248px;}
.h8{height:68.144640px;}
.h6{height:77.469300px;}
.h2{height:92.981250px;}
.h14{height:100.501248px;}
.h17{height:100.507248px;}
.h15{height:102.320400px;}
.hb{height:102.326400px;}
.h10{height:102.998400px;}
.h16{height:103.004400px;}
.h11{height:110.427450px;}
.hd{height:114.687450px;}
.he{height:153.217248px;}
.hf{height:159.621450px;}
.hc{height:159.627450px;}
.h12{height:199.838400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.x25{left:116.779500px;}
.xa{left:134.338500px;}
.x26{left:144.093000px;}
.x8{left:151.897500px;}
.x3{left:159.210000px;}
.x23{left:173.406000px;}
.xc{left:174.724500px;}
.x7{left:176.443500px;}
.x1{left:177.819000px;}
.x2{left:205.342500px;}
.x1d{left:243.063000px;}
.x22{left:277.711500px;}
.x4{left:328.815000px;}
.x1c{left:332.247000px;}
.xd{left:345.010500px;}
.x13{left:347.185500px;}
.x14{left:349.936500px;}
.xe{left:352.063500px;}
.x11{left:362.929500px;}
.x5{left:364.663500px;}
.xf{left:372.394500px;}
.x1f{left:375.525000px;}
.x19{left:379.002000px;}
.x16{left:382.042500px;}
.x15{left:406.189500px;}
.x6{left:410.455500px;}
.x10{left:432.993000px;}
.x17{left:435.309000px;}
.xb{left:442.066500px;}
.x21{left:452.736000px;}
.x20{left:460.446000px;}
.x12{left:463.311000px;}
.x1a{left:465.721500px;}
.x18{left:474.055500px;}
.x1e{left:484.002000px;}
.x1b{left:496.759500px;}
.x24{left:549.429000px;}
@media print{
.v13{vertical-align:-57.562667pt;}
.vd{vertical-align:-39.722667pt;}
.v3{vertical-align:-26.325333pt;}
.v10{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:4.010667pt;}
.vf{vertical-align:16.821333pt;}
.v4{vertical-align:23.141333pt;}
.v2{vertical-align:26.325333pt;}
.v12{vertical-align:33.573333pt;}
.v5{vertical-align:43.136000pt;}
.v1{vertical-align:57.626667pt;}
.v8{vertical-align:70.064000pt;}
.v11{vertical-align:85.402667pt;}
.v6{vertical-align:86.874667pt;}
.va{vertical-align:90.085333pt;}
.v7{vertical-align:110.010667pt;}
.vb{vertical-align:113.221333pt;}
.vc{vertical-align:129.813333pt;}
.v9{vertical-align:133.642667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4d{letter-spacing:0.000391pt;}
.ls40{letter-spacing:0.000420pt;}
.ls26{letter-spacing:0.000676pt;}
.ls32{letter-spacing:0.001145pt;}
.ls19{letter-spacing:0.002452pt;}
.ls7{letter-spacing:0.002591pt;}
.ls1f{letter-spacing:0.002783pt;}
.ls43{letter-spacing:0.003328pt;}
.ls6{letter-spacing:0.003895pt;}
.lsd{letter-spacing:0.003903pt;}
.ls4{letter-spacing:0.004267pt;}
.ls31{letter-spacing:0.006009pt;}
.ls4a{letter-spacing:1.732492pt;}
.ls37{letter-spacing:2.134489pt;}
.ls3{letter-spacing:2.284372pt;}
.ls4b{letter-spacing:2.288437pt;}
.lsb{letter-spacing:2.653258pt;}
.ls3a{letter-spacing:2.658104pt;}
.ls12{letter-spacing:2.658591pt;}
.ls3f{letter-spacing:2.835091pt;}
.ls41{letter-spacing:2.840424pt;}
.lsc{letter-spacing:3.709752pt;}
.ls1a{letter-spacing:3.715086pt;}
.ls3c{letter-spacing:4.750730pt;}
.ls42{letter-spacing:6.372267pt;}
.ls11{letter-spacing:6.375313pt;}
.lse{letter-spacing:6.376562pt;}
.ls15{letter-spacing:6.381995pt;}
.ls4f{letter-spacing:11.620905pt;}
.ls22{letter-spacing:12.753980pt;}
.ls3b{letter-spacing:14.154957pt;}
.ls14{letter-spacing:14.164905pt;}
.ls2c{letter-spacing:14.169842pt;}
.ls1c{letter-spacing:14.170238pt;}
.ls33{letter-spacing:14.230009pt;}
.ls24{letter-spacing:14.638626pt;}
.ls13{letter-spacing:16.455038pt;}
.ls4e{letter-spacing:16.823925pt;}
.lsa{letter-spacing:17.706238pt;}
.ls35{letter-spacing:17.707976pt;}
.ls5{letter-spacing:17.709119pt;}
.ls1e{letter-spacing:17.710626pt;}
.ls17{letter-spacing:17.710812pt;}
.ls45{letter-spacing:17.710933pt;}
.lsf{letter-spacing:17.711572pt;}
.ls36{letter-spacing:17.713145pt;}
.ls9{letter-spacing:17.715328pt;}
.ls2d{letter-spacing:19.112897pt;}
.ls10{letter-spacing:19.441309pt;}
.ls21{letter-spacing:19.446642pt;}
.ls34{letter-spacing:19.851822pt;}
.ls0{letter-spacing:20.350999pt;}
.ls50{letter-spacing:20.365258pt;}
.ls18{letter-spacing:20.543572pt;}
.ls30{letter-spacing:20.804553pt;}
.ls20{letter-spacing:20.809293pt;}
.ls4c{letter-spacing:21.427086pt;}
.ls25{letter-spacing:22.158626pt;}
.ls3e{letter-spacing:22.539575pt;}
.ls49{letter-spacing:23.469258pt;}
.ls29{letter-spacing:24.084905pt;}
.ls48{letter-spacing:24.087786pt;}
.ls47{letter-spacing:24.835461pt;}
.ls27{letter-spacing:26.395812pt;}
.ls28{letter-spacing:26.395976pt;}
.ls16{letter-spacing:26.689980pt;}
.ls46{letter-spacing:27.934128pt;}
.ls1d{letter-spacing:28.042516pt;}
.ls1{letter-spacing:31.880533pt;}
.ls2e{letter-spacing:33.418238pt;}
.ls38{letter-spacing:35.422933pt;}
.ls2b{letter-spacing:36.419685pt;}
.ls1b{letter-spacing:62.145980pt;}
.ls3d{letter-spacing:400.450133pt;}
.ls39{letter-spacing:717.549896pt;}
.ls8{letter-spacing:765.582693pt;}
.ls44{letter-spacing:846.311786pt;}
.ls2f{letter-spacing:890.161980pt;}
.ls23{letter-spacing:940.163328pt;}
.ls2a{letter-spacing:1024.369022pt;}
.ws4c{word-spacing:-77.916023pt;}
.ws23{word-spacing:-63.761067pt;}
.ws2a{word-spacing:-50.479636pt;}
.ws53{word-spacing:-46.035490pt;}
.ws14{word-spacing:-40.590295pt;}
.ws20{word-spacing:-30.005958pt;}
.wse{word-spacing:-28.692333pt;}
.ws27{word-spacing:-26.690383pt;}
.ws3c{word-spacing:-24.115722pt;}
.ws39{word-spacing:-22.862945pt;}
.ws24{word-spacing:-20.574389pt;}
.ws1f{word-spacing:-17.343010pt;}
.ws11{word-spacing:-17.279249pt;}
.wsd{word-spacing:-16.162923pt;}
.ws6d{word-spacing:-15.940267pt;}
.ws29{word-spacing:-15.190735pt;}
.ws2d{word-spacing:-10.241401pt;}
.ws25{word-spacing:-6.316068pt;}
.ws5c{word-spacing:-3.443098pt;}
.ws47{word-spacing:-3.188053pt;}
.ws40{word-spacing:-3.124292pt;}
.ws2e{word-spacing:-3.092412pt;}
.ws30{word-spacing:-2.741726pt;}
.ws2f{word-spacing:-2.724727pt;}
.ws76{word-spacing:-1.594027pt;}
.wsb{word-spacing:-1.210183pt;}
.ws1e{word-spacing:-0.637611pt;}
.ws1b{word-spacing:-0.255044pt;}
.ws26{word-spacing:-0.063761pt;}
.ws22{word-spacing:-0.042507pt;}
.ws12{word-spacing:0.000000pt;}
.ws69{word-spacing:0.255044pt;}
.ws19{word-spacing:0.318805pt;}
.ws4b{word-spacing:0.343994pt;}
.ws21{word-spacing:0.346771pt;}
.ws3b{word-spacing:0.348631pt;}
.ws2b{word-spacing:0.382566pt;}
.ws28{word-spacing:0.637611pt;}
.ws5d{word-spacing:1.402743pt;}
.wsc{word-spacing:1.466183pt;}
.wsa{word-spacing:1.524365pt;}
.ws6f{word-spacing:1.602307pt;}
.ws49{word-spacing:1.785310pt;}
.ws8{word-spacing:2.106184pt;}
.ws45{word-spacing:2.231637pt;}
.ws63{word-spacing:2.932989pt;}
.ws4f{word-spacing:2.996770pt;}
.ws52{word-spacing:3.060531pt;}
.ws54{word-spacing:3.434998pt;}
.ws75{word-spacing:3.438118pt;}
.ws13{word-spacing:3.443098pt;}
.ws41{word-spacing:3.452950pt;}
.ws1c{word-spacing:3.506859pt;}
.ws31{word-spacing:3.570620pt;}
.ws35{word-spacing:3.825664pt;}
.ws1a{word-spacing:3.889425pt;}
.wsf{word-spacing:3.985067pt;}
.ws1{word-spacing:4.131706pt;}
.ws48{word-spacing:4.271991pt;}
.ws6e{word-spacing:4.654558pt;}
.ws18{word-spacing:4.782067pt;}
.ws33{word-spacing:4.782080pt;}
.ws32{word-spacing:4.810747pt;}
.ws6b{word-spacing:4.845841pt;}
.ws5{word-spacing:5.248004pt;}
.ws4d{word-spacing:5.419691pt;}
.ws2c{word-spacing:5.610974pt;}
.ws37{word-spacing:5.674735pt;}
.ws17{word-spacing:5.738467pt;}
.ws74{word-spacing:6.057301pt;}
.ws44{word-spacing:6.248585pt;}
.ws70{word-spacing:6.376107pt;}
.ws0{word-spacing:6.887500pt;}
.ws71{word-spacing:6.949956pt;}
.ws6c{word-spacing:7.141239pt;}
.ws4e{word-spacing:7.205001pt;}
.ws7{word-spacing:7.226188pt;}
.ws3d{word-spacing:7.268762pt;}
.ws59{word-spacing:7.319357pt;}
.ws51{word-spacing:7.324690pt;}
.ws5a{word-spacing:7.332523pt;}
.ws2{word-spacing:7.691643pt;}
.ws3{word-spacing:7.808007pt;}
.ws9{word-spacing:7.982552pt;}
.ws50{word-spacing:8.225178pt;}
.ws4a{word-spacing:8.416461pt;}
.ws4{word-spacing:8.448007pt;}
.ws36{word-spacing:8.543983pt;}
.ws6{word-spacing:8.738916pt;}
.ws1d{word-spacing:8.768377pt;}
.ws46{word-spacing:8.799027pt;}
.ws34{word-spacing:9.245355pt;}
.ws3e{word-spacing:10.664958pt;}
.ws3f{word-spacing:10.711859pt;}
.ws3a{word-spacing:11.158187pt;}
.ws5b{word-spacing:11.221948pt;}
.ws6a{word-spacing:11.476992pt;}
.ws5f{word-spacing:12.369647pt;}
.ws57{word-spacing:12.943497pt;}
.ws58{word-spacing:13.134780pt;}
.ws43{word-spacing:13.431905pt;}
.ws38{word-spacing:14.346240pt;}
.ws10{word-spacing:14.537523pt;}
.ws61{word-spacing:15.706371pt;}
.ws73{word-spacing:17.980621pt;}
.ws42{word-spacing:18.108143pt;}
.ws72{word-spacing:19.702170pt;}
.ws5e{word-spacing:20.324234pt;}
.ws60{word-spacing:25.019715pt;}
.ws56{word-spacing:26.722572pt;}
.ws16{word-spacing:37.842193pt;}
.ws15{word-spacing:46.226773pt;}
.ws68{word-spacing:74.600067pt;}
.ws65{word-spacing:281.251026pt;}
.ws62{word-spacing:287.935267pt;}
.ws67{word-spacing:289.646177pt;}
.ws64{word-spacing:333.242515pt;}
.ws66{word-spacing:532.701737pt;}
.ws55{word-spacing:822.836565pt;}
._26{margin-left:-63.059695pt;}
._2e{margin-left:-51.725226pt;}
._31{margin-left:-42.338614pt;}
._16{margin-left:-36.345207pt;}
._12{margin-left:-31.880533pt;}
._18{margin-left:-30.490554pt;}
._9{margin-left:-29.294966pt;}
._41{margin-left:-27.833372pt;}
._4a{margin-left:-26.566933pt;}
._2f{margin-left:-22.668477pt;}
._3b{margin-left:-14.414463pt;}
._13{margin-left:-11.094426pt;}
._3a{margin-left:-7.498281pt;}
._14{margin-left:-6.439868pt;}
._8{margin-left:-4.887277pt;}
._1{margin-left:-3.416200pt;}
._2{margin-left:-2.065853pt;}
._4{margin-left:-0.930117pt;}
._b{width:0.931703pt;}
._3{width:2.065853pt;}
._0{width:3.416200pt;}
._1d{width:4.760898pt;}
._3f{width:6.289417pt;}
._33{width:14.181854pt;}
._20{width:16.172986pt;}
._2d{width:18.005334pt;}
._30{width:19.102869pt;}
._f{width:20.786108pt;}
._3e{width:21.706897pt;}
._37{width:23.042458pt;}
._38{width:24.143119pt;}
._a{width:25.113626pt;}
._10{width:26.830645pt;}
._1b{width:28.144129pt;}
._6{width:29.730934pt;}
._7{width:31.272357pt;}
._28{width:32.488710pt;}
._35{width:34.021512pt;}
._1e{width:35.934344pt;}
._3c{width:39.238555pt;}
._5{width:40.292132pt;}
._23{width:41.408819pt;}
._3d{width:42.393315pt;}
._39{width:43.298337pt;}
._24{width:45.550900pt;}
._21{width:48.418749pt;}
._1c{width:49.885852pt;}
._4c{width:52.245812pt;}
._19{width:54.388190pt;}
._40{width:56.390282pt;}
._c{width:57.767526pt;}
._27{width:60.380144pt;}
._e{width:63.824828pt;}
._1a{width:71.412395pt;}
._43{width:84.470229pt;}
._2c{width:86.077200pt;}
._15{width:95.386556pt;}
._2b{width:103.292400pt;}
._11{width:127.267089pt;}
._4b{width:139.728294pt;}
._46{width:143.633908pt;}
._48{width:148.077718pt;}
._47{width:220.130138pt;}
._49{width:252.857703pt;}
._45{width:299.664242pt;}
._44{width:322.894508pt;}
._17{width:350.724129pt;}
._29{width:620.254893pt;}
._36{width:764.302488pt;}
._32{width:790.264127pt;}
._42{width:793.855098pt;}
._34{width:820.222362pt;}
._d{width:847.367906pt;}
._22{width:888.685048pt;}
._1f{width:1158.946646pt;}
._25{width:1237.984870pt;}
._2a{width:1934.191957pt;}
.fs5{font-size:42.507200pt;}
.fs6{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:56.149333pt;}
.y3e{bottom:96.000000pt;}
.yb5{bottom:96.890667pt;}
.y6f{bottom:119.902667pt;}
.yb4{bottom:120.794667pt;}
.y58{bottom:128.102667pt;}
.y3d{bottom:132.104000pt;}
.y16{bottom:139.652000pt;}
.y89{bottom:149.232000pt;}
.y57{bottom:152.005333pt;}
.yb3{bottom:157.980000pt;}
.y87{bottom:160.165333pt;}
.y6e{bottom:165.356000pt;}
.y88{bottom:170.949333pt;}
.y15{bottom:179.162667pt;}
.y3c{bottom:181.652000pt;}
.y56{bottom:189.192000pt;}
.yb2{bottom:195.166667pt;}
.y6d{bottom:200.094667pt;}
.y86{bottom:206.228000pt;}
.y14{bottom:218.674667pt;}
.yb1{bottom:219.070667pt;}
.y3b{bottom:225.337333pt;}
.y85{bottom:230.132000pt;}
.y55{bottom:241.986667pt;}
.yb0{bottom:242.973333pt;}
.y6c{bottom:245.546667pt;}
.y84{bottom:259.465333pt;}
.y29{bottom:260.853333pt;}
.y54{bottom:265.889333pt;}
.yaf{bottom:266.876000pt;}
.y3a{bottom:269.021333pt;}
.y6b{bottom:269.449333pt;}
.y83{bottom:270.398667pt;}
.y98{bottom:275.986667pt;}
.y13{bottom:289.578667pt;}
.y53{bottom:289.793333pt;}
.y6a{bottom:293.353333pt;}
.y82{bottom:294.302667pt;}
.y97{bottom:299.889333pt;}
.yae{bottom:304.062667pt;}
.y28{bottom:315.972000pt;}
.y81{bottom:318.205333pt;}
.y39{bottom:318.828000pt;}
.y51{bottom:327.344000pt;}
.yad{bottom:327.965333pt;}
.y96{bottom:334.508000pt;}
.y52{bottom:337.274667pt;}
.y50{bottom:338.277333pt;}
.y80{bottom:342.108000pt;}
.y69{bottom:343.158667pt;}
.yac{bottom:351.868000pt;}
.y95{bottom:358.410667pt;}
.y12{bottom:365.474667pt;}
.y27{bottom:371.090667pt;}
.yab{bottom:375.772000pt;}
.y94{bottom:382.314667pt;}
.y38{bottom:385.854667pt;}
.y4f{bottom:386.708000pt;}
.y11{bottom:387.893333pt;}
.y7f{bottom:391.913333pt;}
.y68{bottom:409.480000pt;}
.y37{bottom:409.757333pt;}
.y10{bottom:410.313333pt;}
.y26{bottom:410.602667pt;}
.yaa{bottom:431.068000pt;}
.y93{bottom:432.120000pt;}
.yf{bottom:432.732000pt;}
.y4e{bottom:436.513333pt;}
.y67{bottom:444.452000pt;}
.y25{bottom:450.113333pt;}
.ye{bottom:455.152000pt;}
.y66{bottom:455.386667pt;}
.y7e{bottom:459.500000pt;}
.y36{bottom:465.053333pt;}
.yd{bottom:477.570667pt;}
.y7d{bottom:483.402667pt;}
.y92{bottom:499.705333pt;}
.yc{bottom:499.990667pt;}
.y35{bottom:501.320000pt;}
.y65{bottom:502.334667pt;}
.y4d{bottom:504.100000pt;}
.y24{bottom:505.232000pt;}
.ya9{bottom:506.962667pt;}
.y7c{bottom:507.305333pt;}
.yb{bottom:522.409333pt;}
.y91{bottom:523.608000pt;}
.y64{bottom:526.237333pt;}
.y4c{bottom:527.784000pt;}
.ya8{bottom:530.866667pt;}
.y23{bottom:544.742667pt;}
.ya{bottom:544.829333pt;}
.y4b{bottom:549.501333pt;}
.y7b{bottom:550.990667pt;}
.y63{bottom:553.336000pt;}
.ya7{bottom:554.769333pt;}
.y62{bottom:564.269333pt;}
.y9{bottom:567.248000pt;}
.y90{bottom:576.402667pt;}
.y34{bottom:576.657333pt;}
.ya6{bottom:578.672000pt;}
.y22{bottom:584.253333pt;}
.y8{bottom:589.668000pt;}
.y61{bottom:590.373333pt;}
.y7a{bottom:594.674667pt;}
.y4a{bottom:596.536000pt;}
.ya5{bottom:602.574667pt;}
.y7{bottom:612.086667pt;}
.y33{bottom:612.761333pt;}
.y8f{bottom:613.589333pt;}
.y60{bottom:614.277333pt;}
.y79{bottom:618.578667pt;}
.y21{bottom:639.373333pt;}
.y78{bottom:642.481333pt;}
.y32{bottom:648.865333pt;}
.y6{bottom:657.690667pt;}
.ya4{bottom:657.872000pt;}
.y49{bottom:658.352000pt;}
.y5f{bottom:664.082667pt;}
.y8e{bottom:666.384000pt;}
.y20{bottom:678.884000pt;}
.y48{bottom:682.256000pt;}
.y8d{bottom:690.286667pt;}
.y77{bottom:692.286667pt;}
.y31{bottom:698.413333pt;}
.y47{bottom:710.462667pt;}
.y1f{bottom:718.394667pt;}
.y30{bottom:722.316000pt;}
.y5{bottom:730.254667pt;}
.y5e{bottom:730.404000pt;}
.y46{bottom:732.181333pt;}
.ya3{bottom:737.118667pt;}
.y8c{bottom:740.093333pt;}
.ya2{bottom:753.058667pt;}
.y5d{bottom:754.306667pt;}
.y76{bottom:759.873333pt;}
.ya1{bottom:768.998667pt;}
.y2f{bottom:772.122667pt;}
.y1e{bottom:773.513333pt;}
.y5c{bottom:778.209333pt;}
.y45{bottom:778.913333pt;}
.y75{bottom:783.776000pt;}
.ya0{bottom:784.940000pt;}
.y4{bottom:785.374667pt;}
.y9f{bottom:800.880000pt;}
.y74{bottom:807.678667pt;}
.y1d{bottom:813.025333pt;}
.y9e{bottom:816.820000pt;}
.y8b{bottom:831.581333pt;}
.y9d{bottom:832.760000pt;}
.y5b{bottom:833.506667pt;}
.y2e{bottom:839.149333pt;}
.y44{bottom:840.729333pt;}
.y1c{bottom:852.536000pt;}
.y3{bottom:854.066667pt;}
.y9c{bottom:856.686667pt;}
.y73{bottom:862.974667pt;}
.y2d{bottom:863.052000pt;}
.y43{bottom:864.632000pt;}
.y9b{bottom:872.626667pt;}
.y8a{bottom:886.877333pt;}
.y2c{bottom:886.954667pt;}
.y1b{bottom:892.046667pt;}
.y9a{bottom:893.922667pt;}
.y2{bottom:895.278667pt;}
.y42{bottom:897.382667pt;}
.y5a{bottom:908.137333pt;}
.y41{bottom:908.317333pt;}
.y1a{bottom:931.557333pt;}
.y59{bottom:932.040000pt;}
.y1{bottom:936.490667pt;}
.y2b{bottom:936.761333pt;}
.y72{bottom:938.870667pt;}
.y40{bottom:955.942667pt;}
.y71{bottom:962.773333pt;}
.y99{bottom:964.866667pt;}
.y19{bottom:971.068000pt;}
.y70{bottom:986.676000pt;}
.y2a{bottom:1001.133333pt;}
.y3f{bottom:1005.749333pt;}
.y18{bottom:1010.580000pt;}
.h19{height:37.193707pt;}
.h1a{height:39.850400pt;}
.h4{height:40.727307pt;}
.h5{height:43.636400pt;}
.h1c{height:44.250180pt;}
.h1b{height:45.525402pt;}
.h7{height:47.820800pt;}
.h13{height:51.831467pt;}
.ha{height:55.021733pt;}
.h3{height:57.384800pt;}
.h18{height:58.205733pt;}
.h9{height:60.177109pt;}
.h8{height:60.573013pt;}
.h6{height:68.861600pt;}
.h2{height:82.650000pt;}
.h14{height:89.334443pt;}
.h17{height:89.339776pt;}
.h15{height:90.951467pt;}
.hb{height:90.956800pt;}
.h10{height:91.554133pt;}
.h16{height:91.559467pt;}
.h11{height:98.157733pt;}
.hd{height:101.944400pt;}
.he{height:136.193109pt;}
.hf{height:141.885733pt;}
.hc{height:141.891067pt;}
.h12{height:177.634133pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.x25{left:103.804000pt;}
.xa{left:119.412000pt;}
.x26{left:128.082667pt;}
.x8{left:135.020000pt;}
.x3{left:141.520000pt;}
.x23{left:154.138667pt;}
.xc{left:155.310667pt;}
.x7{left:156.838667pt;}
.x1{left:158.061333pt;}
.x2{left:182.526667pt;}
.x1d{left:216.056000pt;}
.x22{left:246.854667pt;}
.x4{left:292.280000pt;}
.x1c{left:295.330667pt;}
.xd{left:306.676000pt;}
.x13{left:308.609333pt;}
.x14{left:311.054667pt;}
.xe{left:312.945333pt;}
.x11{left:322.604000pt;}
.x5{left:324.145333pt;}
.xf{left:331.017333pt;}
.x1f{left:333.800000pt;}
.x19{left:336.890667pt;}
.x16{left:339.593333pt;}
.x15{left:361.057333pt;}
.x6{left:364.849333pt;}
.x10{left:384.882667pt;}
.x17{left:386.941333pt;}
.xb{left:392.948000pt;}
.x21{left:402.432000pt;}
.x20{left:409.285333pt;}
.x12{left:411.832000pt;}
.x1a{left:413.974667pt;}
.x18{left:421.382667pt;}
.x1e{left:430.224000pt;}
.x1b{left:441.564000pt;}
.x24{left:488.381333pt;}
}




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