
    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_880f274890736ed43563dcf9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_552b576144f0cfdfb5db711e.woff')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_131c6249bea995441feffe20.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c04db21feb31f73564dd1f84.woff')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_f645bf1839842071d2fdd9d2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.691000;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_97ecd53bd1cb0cd65b0b8fa3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_96dc71c1d2a86dbc5ca5df84.woff')format("woff");}.ff7{font-family:ff7;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_22534297b92d007de805d6f8.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_76879f8601a5dd6011c65e12.woff')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_5b05d100b6b4a1da63f9e494.woff')format("woff");}.ffa{font-family:ffa;line-height:0.891000;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_03b8d6e34ccb93e960b6c2bd.woff')format("woff");}.ffb{font-family:ffb;line-height:0.383000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_93136ba4996ef967a568bdb9.woff')format("woff");}.ffc{font-family:ffc;line-height:2.399000;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_e0d48072a5ee6fdf5c0e383e.woff')format("woff");}.ffd{font-family:ffd;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-10.764000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.v5{vertical-align:26.028000px;}
.v4{vertical-align:29.616000px;}
.v3{vertical-align:48.522000px;}
.v8{vertical-align:78.822000px;}
.v6{vertical-align:101.142000px;}
.v7{vertical-align:150.348000px;}
.ls13{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.000472px;}
.lsc{letter-spacing:0.000760px;}
.lsf{letter-spacing:0.002759px;}
.ls33{letter-spacing:0.003848px;}
.lsd{letter-spacing:0.004391px;}
.lsb{letter-spacing:0.006760px;}
.ls25{letter-spacing:2.984915px;}
.lse{letter-spacing:2.985072px;}
.ls34{letter-spacing:4.205226px;}
.ls2b{letter-spacing:4.211226px;}
.ls29{letter-spacing:7.174664px;}
.ls4{letter-spacing:9.088332px;}
.ls1f{letter-spacing:9.749464px;}
.lsa{letter-spacing:9.755464px;}
.ls21{letter-spacing:10.042177px;}
.ls16{letter-spacing:11.951484px;}
.ls2a{letter-spacing:11.956664px;}
.ls15{letter-spacing:15.935518px;}
.ls14{letter-spacing:18.926915px;}
.ls24{letter-spacing:19.919518px;}
.ls11{letter-spacing:19.921473px;}
.ls1c{letter-spacing:19.922227px;}
.ls10{letter-spacing:19.922759px;}
.ls1a{letter-spacing:19.924800px;}
.ls38{letter-spacing:19.925518px;}
.ls17{letter-spacing:19.928759px;}
.ls7{letter-spacing:20.471412px;}
.ls2{letter-spacing:20.657412px;}
.ls18{letter-spacing:22.913236px;}
.ls2c{letter-spacing:23.111073px;}
.ls22{letter-spacing:23.408227px;}
.ls23{letter-spacing:24.131226px;}
.ls6{letter-spacing:24.251414px;}
.ls28{letter-spacing:24.383226px;}
.ls1{letter-spacing:24.425414px;}
.ls39{letter-spacing:26.066915px;}
.ls8{letter-spacing:26.180915px;}
.ls3{letter-spacing:26.288915px;}
.ls37{letter-spacing:26.763848px;}
.ls12{letter-spacing:27.089464px;}
.ls27{letter-spacing:27.095518px;}
.ls1d{letter-spacing:27.097473px;}
.ls2f{letter-spacing:27.299464px;}
.ls1e{letter-spacing:27.826177px;}
.ls0{letter-spacing:29.566332px;}
.ls19{letter-spacing:29.681464px;}
.ls35{letter-spacing:29.951464px;}
.ls2d{letter-spacing:30.650915px;}
.ls32{letter-spacing:30.653464px;}
.ls36{letter-spacing:32.678759px;}
.ls20{letter-spacing:35.117578px;}
.ls5{letter-spacing:38.536332px;}
.ls2e{letter-spacing:39.983464px;}
.ls30{letter-spacing:40.781464px;}
.ls1b{letter-spacing:41.015464px;}
.ls31{letter-spacing:42.761464px;}
.ls9{letter-spacing:46.206492px;}
.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;}
}
.ws26{word-spacing:-71.731200px;}
.ws25{word-spacing:-51.789926px;}
.ws24{word-spacing:-45.664082px;}
.ws5d{word-spacing:-25.494664px;}
.ws18{word-spacing:-19.510886px;}
.ws43{word-spacing:-19.434664px;}
.wsa6{word-spacing:-17.932800px;}
.ws29{word-spacing:-14.111859px;}
.ws8a{word-spacing:-6.145898px;}
.ws2e{word-spacing:-3.945216px;}
.ws39{word-spacing:-3.873485px;}
.ws28{word-spacing:-3.658291px;}
.ws79{word-spacing:-3.586560px;}
.ws7b{word-spacing:-3.407232px;}
.ws5b{word-spacing:-3.239069px;}
.ws7c{word-spacing:-3.012710px;}
.ws7d{word-spacing:-2.940979px;}
.ws38{word-spacing:-2.797517px;}
.ws6a{word-spacing:-2.223667px;}
.ws20{word-spacing:-2.151936px;}
.ws78{word-spacing:-2.080205px;}
.ws77{word-spacing:-1.936742px;}
.ws75{word-spacing:-1.900877px;}
.ws35{word-spacing:-1.721549px;}
.ws76{word-spacing:-1.649818px;}
.ws69{word-spacing:-1.434624px;}
.ws6c{word-spacing:-1.075968px;}
.ws68{word-spacing:-1.004237px;}
.wsa4{word-spacing:-0.645581px;}
.ws34{word-spacing:-0.606551px;}
.ws3c{word-spacing:-0.358656px;}
.ws13{word-spacing:-0.120058px;}
.ws74{word-spacing:-0.071731px;}
.ws7{word-spacing:-0.065455px;}
.ws14{word-spacing:-0.051646px;}
.ws22{word-spacing:0.000000px;}
.wsa1{word-spacing:0.390117px;}
.ws23{word-spacing:0.396117px;}
.ws64{word-spacing:0.573850px;}
.ws5e{word-spacing:0.645581px;}
.ws5c{word-spacing:0.656959px;}
.ws9f{word-spacing:0.671401px;}
.ws89{word-spacing:0.860774px;}
.ws2f{word-spacing:1.004237px;}
.ws5a{word-spacing:1.075968px;}
.ws49{word-spacing:1.147699px;}
.ws97{word-spacing:1.362893px;}
.wsbb{word-spacing:1.649818px;}
.wsbe{word-spacing:1.721549px;}
.ws8c{word-spacing:1.865011px;}
.ws4e{word-spacing:2.151936px;}
.ws62{word-spacing:2.186959px;}
.ws63{word-spacing:2.223667px;}
.ws5{word-spacing:2.304002px;}
.ws4{word-spacing:2.322889px;}
.ws21{word-spacing:2.438861px;}
.ws80{word-spacing:2.582323px;}
.ws19{word-spacing:2.654054px;}
.ws7e{word-spacing:2.725786px;}
.ws47{word-spacing:2.797517px;}
.ws36{word-spacing:2.940979px;}
.ws7f{word-spacing:2.976845px;}
.wsb4{word-spacing:3.227904px;}
.wsb3{word-spacing:3.299635px;}
.ws90{word-spacing:3.371366px;}
.ws40{word-spacing:3.443098px;}
.ws60{word-spacing:3.514829px;}
.wsc3{word-spacing:3.563543px;}
.wsc4{word-spacing:3.586560px;}
.ws12{word-spacing:3.613094px;}
.ws48{word-spacing:3.730022px;}
.wsb1{word-spacing:3.801754px;}
.ws56{word-spacing:3.866557px;}
.ws1c{word-spacing:3.873485px;}
.ws3a{word-spacing:3.945216px;}
.wsa0{word-spacing:4.088678px;}
.ws41{word-spacing:4.303872px;}
.ws9{word-spacing:4.333095px;}
.wsbc{word-spacing:4.334838px;}
.wsbd{word-spacing:4.339738px;}
.ws8e{word-spacing:4.375603px;}
.ws81{word-spacing:4.447334px;}
.ws1e{word-spacing:4.483200px;}
.wsaf{word-spacing:4.519066px;}
.wsb5{word-spacing:4.554931px;}
.wsbf{word-spacing:4.590797px;}
.ws10{word-spacing:4.594913px;}
.ws1{word-spacing:4.648169px;}
.wsb0{word-spacing:4.662528px;}
.wsa8{word-spacing:4.711845px;}
.wsa9{word-spacing:4.734259px;}
.ws33{word-spacing:4.805990px;}
.ws11{word-spacing:4.856731px;}
.ws3f{word-spacing:4.949453px;}
.wsf{word-spacing:4.987641px;}
.ws8d{word-spacing:5.057050px;}
.ws83{word-spacing:5.092915px;}
.ws6{word-spacing:5.118550px;}
.wsb2{word-spacing:5.236378px;}
.ws9d{word-spacing:5.308109px;}
.ws5f{word-spacing:5.379840px;}
.wsa7{word-spacing:5.415706px;}
.ws15{word-spacing:5.523302px;}
.ws1b{word-spacing:5.595034px;}
.ws3e{word-spacing:5.702630px;}
.wse{word-spacing:5.707641px;}
.wsad{word-spacing:5.738496px;}
.ws59{word-spacing:6.025421px;}
.ws8f{word-spacing:6.312346px;}
.ws9a{word-spacing:6.348211px;}
.wsc2{word-spacing:6.384077px;}
.ws2d{word-spacing:6.455775px;}
.ws6d{word-spacing:6.455808px;}
.ws52{word-spacing:6.599270px;}
.wsac{word-spacing:6.635136px;}
.ws31{word-spacing:6.671002px;}
.ws42{word-spacing:6.722298px;}
.ws27{word-spacing:6.742733px;}
.ws44{word-spacing:7.101389px;}
.ws51{word-spacing:7.173120px;}
.ws96{word-spacing:7.208986px;}
.ws6b{word-spacing:7.316582px;}
.ws37{word-spacing:7.388314px;}
.ws57{word-spacing:7.460045px;}
.ws9c{word-spacing:7.603507px;}
.ws8{word-spacing:7.605825px;}
.ws3{word-spacing:7.671279px;}
.ws94{word-spacing:7.746970px;}
.ws2c{word-spacing:7.818701px;}
.ws54{word-spacing:7.890432px;}
.ws1a{word-spacing:7.962163px;}
.ws9e{word-spacing:8.105626px;}
.ws66{word-spacing:8.156713px;}
.ws67{word-spacing:8.177357px;}
.ws98{word-spacing:8.249088px;}
.ws53{word-spacing:8.607744px;}
.wsa5{word-spacing:8.679475px;}
.ws3d{word-spacing:8.822938px;}
.wsb8{word-spacing:8.894669px;}
.ws4c{word-spacing:9.109862px;}
.ws95{word-spacing:9.181594px;}
.wsa3{word-spacing:9.253325px;}
.wsc1{word-spacing:9.325056px;}
.ws1f{word-spacing:9.540250px;}
.ws30{word-spacing:9.611981px;}
.ws4d{word-spacing:9.755443px;}
.wsb9{word-spacing:10.238832px;}
.wsba{word-spacing:10.293427px;}
.ws3b{word-spacing:10.401024px;}
.wsa2{word-spacing:10.577449px;}
.ws88{word-spacing:10.616218px;}
.ws73{word-spacing:10.687949px;}
.ws6f{word-spacing:10.710682px;}
.ws71{word-spacing:10.713972px;}
.ws2b{word-spacing:11.046605px;}
.wsc{word-spacing:11.240810px;}
.wsd{word-spacing:11.271282px;}
.ws16{word-spacing:11.476992px;}
.ws82{word-spacing:11.548723px;}
.ws93{word-spacing:11.620454px;}
.ws99{word-spacing:11.692186px;}
.ws2a{word-spacing:11.763917px;}
.wsb7{word-spacing:11.835648px;}
.ws17{word-spacing:12.122573px;}
.ws6e{word-spacing:12.337766px;}
.ws50{word-spacing:12.624691px;}
.ws8b{word-spacing:12.696422px;}
.ws4b{word-spacing:12.768154px;}
.ws65{word-spacing:12.839885px;}
.ws46{word-spacing:12.911616px;}
.ws32{word-spacing:13.126810px;}
.wsb6{word-spacing:13.234406px;}
.wsab{word-spacing:13.270272px;}
.wsaa{word-spacing:13.342003px;}
.wsc0{word-spacing:13.413734px;}
.ws7a{word-spacing:13.485466px;}
.ws86{word-spacing:13.491972px;}
.ws84{word-spacing:13.772390px;}
.wsae{word-spacing:13.808256px;}
.ws4f{word-spacing:14.453837px;}
.wsb{word-spacing:14.609467px;}
.ws9b{word-spacing:14.633165px;}
.ws4a{word-spacing:14.669030px;}
.ws92{word-spacing:14.704896px;}
.ws45{word-spacing:14.812493px;}
.ws58{word-spacing:15.278746px;}
.ws55{word-spacing:15.350477px;}
.ws1d{word-spacing:15.606632px;}
.ws91{word-spacing:16.892698px;}
.ws72{word-spacing:17.656560px;}
.ws70{word-spacing:17.662080px;}
.ws61{word-spacing:21.552931px;}
.ws87{word-spacing:22.512960px;}
.ws85{word-spacing:22.513680px;}
.ws2{word-spacing:37.172508px;}
.ws0{word-spacing:37.316475px;}
.wsa{word-spacing:50.997586px;}
._2{margin-left:-42.177828px;}
._7{margin-left:-39.469124px;}
._2b{margin-left:-37.088627px;}
._2a{margin-left:-34.147631px;}
._a{margin-left:-32.727300px;}
._2c{margin-left:-28.521577px;}
._c{margin-left:-25.461839px;}
._29{margin-left:-9.709486px;}
._b{margin-left:-7.186228px;}
._1c{margin-left:-6.018254px;}
._6{margin-left:-4.953044px;}
._3{margin-left:-3.665458px;}
._1{margin-left:-2.324084px;}
._5{margin-left:-1.079555px;}
._4{width:1.832729px;}
._8{width:3.665458px;}
._28{width:5.604418px;}
._21{width:9.781659px;}
._24{width:17.534695px;}
._22{width:19.539572px;}
._27{width:20.741064px;}
._20{width:21.867253px;}
._18{width:23.498741px;}
._26{width:26.211519px;}
._14{width:27.846768px;}
._13{width:29.049078px;}
._12{width:30.414029px;}
._9{width:31.874581px;}
._10{width:33.620968px;}
._17{width:35.598890px;}
._16{width:37.393475px;}
._1e{width:38.487372px;}
._19{width:40.526602px;}
._11{width:42.658538px;}
._1d{width:43.870090px;}
._1a{width:46.123162px;}
._e{width:48.237551px;}
._1b{width:49.328672px;}
._0{width:50.333850px;}
._23{width:51.464353px;}
._15{width:52.839956px;}
._f{width:54.361487px;}
._25{width:59.935001px;}
._1f{width:66.140833px;}
._d{width:116.203950px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs2{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y21{bottom:61.467000px;}
.y6a{bottom:106.299000px;}
.yb5{bottom:120.969000px;}
.y69{bottom:127.968000px;}
.yb4{bottom:142.638000px;}
.y20{bottom:145.621500px;}
.yfa{bottom:146.748000px;}
.y68{bottom:149.637000px;}
.yb3{bottom:164.307000px;}
.y1f{bottom:167.290500px;}
.yf9{bottom:168.417000px;}
.y67{bottom:171.306000px;}
.y1e{bottom:188.959500px;}
.y66{bottom:192.973500px;}
.yb2{bottom:200.919000px;}
.yf8{bottom:207.645000px;}
.y1d{bottom:210.628500px;}
.y43{bottom:211.356000px;}
.y8d{bottom:214.642500px;}
.yb1{bottom:222.588000px;}
.y65{bottom:224.173500px;}
.yd8{bottom:228.319500px;}
.y42{bottom:233.025000px;}
.yb0{bottom:244.257000px;}
.y8c{bottom:246.513000px;}
.yd7{bottom:249.988500px;}
.y1c{bottom:250.230000px;}
.y41{bottom:254.692500px;}
.yaf{bottom:265.924500px;}
.y64{bottom:267.510000px;}
.y8b{bottom:268.182000px;}
.yd6{bottom:271.657500px;}
.y40{bottom:276.361500px;}
.yf7{bottom:283.858500px;}
.yae{bottom:287.593500px;}
.y1b{bottom:289.831500px;}
.y8a{bottom:289.851000px;}
.yd5{bottom:293.326500px;}
.y3f{bottom:298.030500px;}
.yf6{bottom:305.527500px;}
.y63{bottom:306.937500px;}
.yad{bottom:309.262500px;}
.y89{bottom:311.520000px;}
.yd4{bottom:314.995500px;}
.y3e{bottom:319.699500px;}
.yf5{bottom:327.195000px;}
.y1a{bottom:330.927000px;}
.y88{bottom:333.187500px;}
.y3d{bottom:341.368500px;}
.yac{bottom:345.876000px;}
.yf4{bottom:348.864000px;}
.yd3{bottom:350.341500px;}
.y19{bottom:352.596000px;}
.y87{bottom:354.856500px;}
.y3c{bottom:365.029500px;}
.y62{bottom:366.774000px;}
.yab{bottom:367.543500px;}
.yf3{bottom:370.533000px;}
.yd2{bottom:372.010500px;}
.y18{bottom:374.265000px;}
.y86{bottom:376.525500px;}
.y3b{bottom:377.331000px;}
.y61{bottom:388.443000px;}
.yaa{bottom:389.212500px;}
.yf2{bottom:392.202000px;}
.yd1{bottom:393.678000px;}
.y17{bottom:395.932500px;}
.y60{bottom:410.112000px;}
.ya9{bottom:410.881500px;}
.yf1{bottom:413.871000px;}
.yd0{bottom:415.347000px;}
.y85{bottom:415.953000px;}
.y16{bottom:417.601500px;}
.y3a{bottom:425.079000px;}
.y5f{bottom:431.781000px;}
.ya8{bottom:432.550500px;}
.y15{bottom:439.270500px;}
.y39{bottom:446.746500px;}
.ycf{bottom:451.377000px;}
.yf0{bottom:454.966500px;}
.y14{bottom:460.939500px;}
.y5e{bottom:472.386000px;}
.yce{bottom:473.046000px;}
.ya7{bottom:473.646000px;}
.y84{bottom:474.661500px;}
.yef{bottom:476.635500px;}
.y38{bottom:478.129500px;}
.y5d{bottom:494.055000px;}
.ycd{bottom:494.713500px;}
.ya6{bottom:495.315000px;}
.y83{bottom:496.330500px;}
.yee{bottom:498.304500px;}
.y13{bottom:500.367000px;}
.y5c{bottom:515.724000px;}
.ycc{bottom:516.382500px;}
.ya5{bottom:516.984000px;}
.y82{bottom:517.999500px;}
.yed{bottom:519.972000px;}
.y37{bottom:521.467500px;}
.y12{bottom:533.242500px;}
.y5b{bottom:537.393000px;}
.ycb{bottom:538.051500px;}
.ya4{bottom:538.653000px;}
.y81{bottom:539.668500px;}
.y36{bottom:543.135000px;}
.yec{bottom:556.585500px;}
.y5a{bottom:559.062000px;}
.ya3{bottom:560.322000px;}
.yca{bottom:560.809500px;}
.y80{bottom:561.336000px;}
.y35{bottom:564.804000px;}
.yc9{bottom:573.109500px;}
.yeb{bottom:578.254500px;}
.ya2{bottom:581.989500px;}
.y34{bottom:586.473000px;}
.y11{bottom:593.143500px;}
.y7f{bottom:593.206500px;}
.y59{bottom:595.552500px;}
.yea{bottom:599.923500px;}
.ya1{bottom:603.658500px;}
.y33{bottom:608.142000px;}
.y10{bottom:613.467000px;}
.y7e{bottom:614.875500px;}
.y58{bottom:617.220000px;}
.yc8{bottom:621.855000px;}
.y32{bottom:629.811000px;}
.yf{bottom:633.790500px;}
.ye9{bottom:636.535500px;}
.y57{bottom:638.889000px;}
.ya0{bottom:643.086000px;}
.yc7{bottom:643.524000px;}
.y7d{bottom:649.182000px;}
.y31{bottom:651.480000px;}
.ye{bottom:654.115500px;}
.ye8{bottom:658.204500px;}
.y56{bottom:660.558000px;}
.yc6{bottom:665.191500px;}
.y30{bottom:673.147500px;}
.yd{bottom:674.439000px;}
.y9f{bottom:675.963000px;}
.ye7{bottom:679.873500px;}
.y55{bottom:682.227000px;}
.y7c{bottom:683.488500px;}
.yc5{bottom:686.860500px;}
.yc{bottom:694.762500px;}
.ye6{bottom:701.541000px;}
.y54{bottom:703.896000px;}
.yc4{bottom:708.529500px;}
.y2f{bottom:712.575000px;}
.y7b{bottom:715.359000px;}
.yc3{bottom:730.198500px;}
.yb{bottom:735.409500px;}
.y9e{bottom:735.862500px;}
.y7a{bottom:737.028000px;}
.ye5{bottom:738.154500px;}
.y53{bottom:740.385000px;}
.ya{bottom:755.734500px;}
.y9d{bottom:757.531500px;}
.y79{bottom:758.695500px;}
.ye4{bottom:759.823500px;}
.y52{bottom:762.054000px;}
.yc2{bottom:769.626000px;}
.y2e{bottom:772.476000px;}
.y9{bottom:776.058000px;}
.y9c{bottom:779.200500px;}
.y78{bottom:780.364500px;}
.ye3{bottom:781.492500px;}
.y51{bottom:783.723000px;}
.y2d{bottom:794.145000px;}
.y8{bottom:796.381500px;}
.y9b{bottom:800.869500px;}
.y77{bottom:802.033500px;}
.ye2{bottom:803.160000px;}
.y50{bottom:805.392000px;}
.y7{bottom:816.705000px;}
.y9a{bottom:822.538500px;}
.y76{bottom:823.231500px;}
.y4f{bottom:827.061000px;}
.yc1{bottom:828.871500px;}
.y2c{bottom:835.240500px;}
.y75{bottom:835.533000px;}
.y6{bottom:837.028500px;}
.y99{bottom:844.206000px;}
.ye1{bottom:844.257000px;}
.yc0{bottom:850.540500px;}
.y2b{bottom:856.909500px;}
.y4e{bottom:863.551500px;}
.ye0{bottom:865.924500px;}
.y5{bottom:867.370500px;}
.ybf{bottom:872.209500px;}
.y2a{bottom:878.577000px;}
.y74{bottom:884.277000px;}
.y4d{bottom:885.219000px;}
.y98{bottom:885.303000px;}
.ydf{bottom:887.593500px;}
.ybe{bottom:893.877000px;}
.y29{bottom:900.246000px;}
.y73{bottom:905.946000px;}
.y4c{bottom:906.888000px;}
.y97{bottom:906.972000px;}
.yde{bottom:909.262500px;}
.ybd{bottom:915.546000px;}
.y72{bottom:927.615000px;}
.y4b{bottom:928.557000px;}
.y96{bottom:928.639500px;}
.ydd{bottom:930.931500px;}
.y4{bottom:933.460500px;}
.ybc{bottom:937.215000px;}
.y28{bottom:939.847500px;}
.y71{bottom:949.282500px;}
.y4a{bottom:950.226000px;}
.y95{bottom:950.308500px;}
.ydc{bottom:952.600500px;}
.ybb{bottom:958.884000px;}
.y49{bottom:971.895000px;}
.y94{bottom:971.977500px;}
.y70{bottom:974.220000px;}
.ydb{bottom:974.269500px;}
.y3{bottom:975.528000px;}
.y27{bottom:979.449000px;}
.y6f{bottom:986.521500px;}
.y93{bottom:993.646500px;}
.yba{bottom:994.912500px;}
.yda{bottom:995.937000px;}
.y48{bottom:1012.500000px;}
.y26{bottom:1016.062500px;}
.yb9{bottom:1016.581500px;}
.y2{bottom:1028.764500px;}
.y92{bottom:1030.258500px;}
.y47{bottom:1034.169000px;}
.yd9{bottom:1035.364500px;}
.y6e{bottom:1035.687000px;}
.y25{bottom:1037.731500px;}
.yb8{bottom:1038.250500px;}
.y91{bottom:1051.927500px;}
.y46{bottom:1055.838000px;}
.y6d{bottom:1057.356000px;}
.y24{bottom:1059.399000px;}
.yb7{bottom:1059.919500px;}
.y1{bottom:1066.125000px;}
.y90{bottom:1073.596500px;}
.y45{bottom:1077.507000px;}
.y6c{bottom:1078.554000px;}
.yb6{bottom:1081.588500px;}
.y6b{bottom:1090.854000px;}
.y8f{bottom:1095.265500px;}
.y23{bottom:1099.000500px;}
.y44{bottom:1099.176000px;}
.y8e{bottom:1116.934500px;}
.y22{bottom:1138.602000px;}
.h4{height:45.687311px;}
.h5{height:46.145493px;}
.h12{height:51.216077px;}
.h8{height:53.798400px;}
.h6{height:57.419702px;}
.hb{height:59.693702px;}
.h11{height:59.699702px;}
.ha{height:63.281702px;}
.h3{height:64.557900px;}
.h7{height:77.469300px;}
.h2{height:87.650325px;}
.h9{height:102.320400px;}
.hc{height:102.326400px;}
.hd{height:102.998400px;}
.h10{height:103.004400px;}
.he{height:104.011248px;}
.hf{height:153.217248px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:106.299000px;}
.x1{left:122.506500px;}
.x9{left:127.759500px;}
.xe{left:132.637500px;}
.x7{left:150.196500px;}
.x6{left:174.742500px;}
.x19{left:180.472500px;}
.x1a{left:266.421000px;}
.x3{left:322.453500px;}
.xc{left:336.694500px;}
.x2{left:338.685000px;}
.x4{left:343.011000px;}
.x15{left:375.024000px;}
.x17{left:377.463000px;}
.x13{left:384.822000px;}
.xf{left:401.737500px;}
.xd{left:406.305000px;}
.x10{left:408.483000px;}
.x5{left:410.455500px;}
.xa{left:422.211000px;}
.xb{left:442.066500px;}
.x14{left:446.298000px;}
.x12{left:455.775000px;}
.x11{left:458.359500px;}
.x16{left:480.741000px;}
.x18{left:483.180000px;}
@media print{
.v2{vertical-align:-9.568000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.v5{vertical-align:23.136000pt;}
.v4{vertical-align:26.325333pt;}
.v3{vertical-align:43.130667pt;}
.v8{vertical-align:70.064000pt;}
.v6{vertical-align:89.904000pt;}
.v7{vertical-align:133.642667pt;}
.ls13{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.000420pt;}
.lsc{letter-spacing:0.000676pt;}
.lsf{letter-spacing:0.002452pt;}
.ls33{letter-spacing:0.003420pt;}
.lsd{letter-spacing:0.003903pt;}
.lsb{letter-spacing:0.006009pt;}
.ls25{letter-spacing:2.653258pt;}
.lse{letter-spacing:2.653398pt;}
.ls34{letter-spacing:3.737979pt;}
.ls2b{letter-spacing:3.743312pt;}
.ls29{letter-spacing:6.377479pt;}
.ls4{letter-spacing:8.078517pt;}
.ls1f{letter-spacing:8.666191pt;}
.lsa{letter-spacing:8.671524pt;}
.ls21{letter-spacing:8.926379pt;}
.ls16{letter-spacing:10.623541pt;}
.ls2a{letter-spacing:10.628145pt;}
.ls15{letter-spacing:14.164905pt;}
.ls14{letter-spacing:16.823925pt;}
.ls24{letter-spacing:17.706238pt;}
.ls11{letter-spacing:17.707976pt;}
.ls1c{letter-spacing:17.708646pt;}
.ls10{letter-spacing:17.709119pt;}
.ls1a{letter-spacing:17.710933pt;}
.ls38{letter-spacing:17.711572pt;}
.ls17{letter-spacing:17.714452pt;}
.ls7{letter-spacing:18.196811pt;}
.ls2{letter-spacing:18.362144pt;}
.ls18{letter-spacing:20.367321pt;}
.ls2c{letter-spacing:20.543176pt;}
.ls22{letter-spacing:20.807313pt;}
.ls23{letter-spacing:21.449979pt;}
.ls6{letter-spacing:21.556813pt;}
.ls28{letter-spacing:21.673979pt;}
.ls1{letter-spacing:21.711479pt;}
.ls39{letter-spacing:23.170591pt;}
.ls8{letter-spacing:23.271925pt;}
.ls3{letter-spacing:23.367925pt;}
.ls37{letter-spacing:23.790087pt;}
.ls12{letter-spacing:24.079524pt;}
.ls27{letter-spacing:24.084905pt;}
.ls1d{letter-spacing:24.086642pt;}
.ls2f{letter-spacing:24.266191pt;}
.ls1e{letter-spacing:24.734379pt;}
.ls0{letter-spacing:26.281184pt;}
.ls19{letter-spacing:26.383524pt;}
.ls35{letter-spacing:26.623524pt;}
.ls2d{letter-spacing:27.245258pt;}
.ls32{letter-spacing:27.247524pt;}
.ls36{letter-spacing:29.047786pt;}
.ls20{letter-spacing:31.215625pt;}
.ls5{letter-spacing:34.254517pt;}
.ls2e{letter-spacing:35.540857pt;}
.ls30{letter-spacing:36.250191pt;}
.ls1b{letter-spacing:36.458191pt;}
.ls31{letter-spacing:38.010191pt;}
.ls9{letter-spacing:41.072437pt;}
.ws26{word-spacing:-63.761067pt;}
.ws25{word-spacing:-46.035490pt;}
.ws24{word-spacing:-40.590295pt;}
.ws5d{word-spacing:-22.661924pt;}
.ws18{word-spacing:-17.343010pt;}
.ws43{word-spacing:-17.275257pt;}
.wsa6{word-spacing:-15.940267pt;}
.ws29{word-spacing:-12.543875pt;}
.ws8a{word-spacing:-5.463020pt;}
.ws2e{word-spacing:-3.506859pt;}
.ws39{word-spacing:-3.443098pt;}
.ws28{word-spacing:-3.251814pt;}
.ws79{word-spacing:-3.188053pt;}
.ws7b{word-spacing:-3.028651pt;}
.ws5b{word-spacing:-2.879172pt;}
.ws7c{word-spacing:-2.677965pt;}
.ws7d{word-spacing:-2.614204pt;}
.ws38{word-spacing:-2.486682pt;}
.ws6a{word-spacing:-1.976593pt;}
.ws20{word-spacing:-1.912832pt;}
.ws78{word-spacing:-1.849071pt;}
.ws77{word-spacing:-1.721549pt;}
.ws75{word-spacing:-1.689668pt;}
.ws35{word-spacing:-1.530266pt;}
.ws76{word-spacing:-1.466505pt;}
.ws69{word-spacing:-1.275221pt;}
.ws6c{word-spacing:-0.956416pt;}
.ws68{word-spacing:-0.892655pt;}
.wsa4{word-spacing:-0.573850pt;}
.ws34{word-spacing:-0.539156pt;}
.ws3c{word-spacing:-0.318805pt;}
.ws13{word-spacing:-0.106718pt;}
.ws74{word-spacing:-0.063761pt;}
.ws7{word-spacing:-0.058182pt;}
.ws14{word-spacing:-0.045908pt;}
.ws22{word-spacing:0.000000pt;}
.wsa1{word-spacing:0.346771pt;}
.ws23{word-spacing:0.352104pt;}
.ws64{word-spacing:0.510089pt;}
.ws5e{word-spacing:0.573850pt;}
.ws5c{word-spacing:0.583963pt;}
.ws9f{word-spacing:0.596801pt;}
.ws89{word-spacing:0.765133pt;}
.ws2f{word-spacing:0.892655pt;}
.ws5a{word-spacing:0.956416pt;}
.ws49{word-spacing:1.020177pt;}
.ws97{word-spacing:1.211460pt;}
.wsbb{word-spacing:1.466505pt;}
.wsbe{word-spacing:1.530266pt;}
.ws8c{word-spacing:1.657788pt;}
.ws4e{word-spacing:1.912832pt;}
.ws62{word-spacing:1.943963pt;}
.ws63{word-spacing:1.976593pt;}
.ws5{word-spacing:2.048002pt;}
.ws4{word-spacing:2.064790pt;}
.ws21{word-spacing:2.167876pt;}
.ws80{word-spacing:2.295398pt;}
.ws19{word-spacing:2.359159pt;}
.ws7e{word-spacing:2.422921pt;}
.ws47{word-spacing:2.486682pt;}
.ws36{word-spacing:2.614204pt;}
.ws7f{word-spacing:2.646084pt;}
.wsb4{word-spacing:2.869248pt;}
.wsb3{word-spacing:2.933009pt;}
.ws90{word-spacing:2.996770pt;}
.ws40{word-spacing:3.060531pt;}
.ws60{word-spacing:3.124292pt;}
.wsc3{word-spacing:3.167594pt;}
.wsc4{word-spacing:3.188053pt;}
.ws12{word-spacing:3.211639pt;}
.ws48{word-spacing:3.315575pt;}
.wsb1{word-spacing:3.379337pt;}
.ws56{word-spacing:3.436940pt;}
.ws1c{word-spacing:3.443098pt;}
.ws3a{word-spacing:3.506859pt;}
.wsa0{word-spacing:3.634381pt;}
.ws41{word-spacing:3.825664pt;}
.ws9{word-spacing:3.851640pt;}
.wsbc{word-spacing:3.853189pt;}
.wsbd{word-spacing:3.857545pt;}
.ws8e{word-spacing:3.889425pt;}
.ws81{word-spacing:3.953186pt;}
.ws1e{word-spacing:3.985067pt;}
.wsaf{word-spacing:4.016947pt;}
.wsb5{word-spacing:4.048828pt;}
.wsbf{word-spacing:4.080708pt;}
.ws10{word-spacing:4.084367pt;}
.ws1{word-spacing:4.131706pt;}
.wsb0{word-spacing:4.144469pt;}
.wsa8{word-spacing:4.188307pt;}
.wsa9{word-spacing:4.208230pt;}
.ws33{word-spacing:4.271991pt;}
.ws11{word-spacing:4.317095pt;}
.ws3f{word-spacing:4.399514pt;}
.wsf{word-spacing:4.433458pt;}
.ws8d{word-spacing:4.495155pt;}
.ws83{word-spacing:4.527036pt;}
.ws6{word-spacing:4.549822pt;}
.wsb2{word-spacing:4.654558pt;}
.ws9d{word-spacing:4.718319pt;}
.ws5f{word-spacing:4.782080pt;}
.wsa7{word-spacing:4.813961pt;}
.ws15{word-spacing:4.909602pt;}
.ws1b{word-spacing:4.973363pt;}
.ws3e{word-spacing:5.069005pt;}
.wse{word-spacing:5.073459pt;}
.wsad{word-spacing:5.100885pt;}
.ws59{word-spacing:5.355930pt;}
.ws8f{word-spacing:5.610974pt;}
.ws9a{word-spacing:5.642854pt;}
.wsc2{word-spacing:5.674735pt;}
.ws2d{word-spacing:5.738467pt;}
.ws6d{word-spacing:5.738496pt;}
.ws52{word-spacing:5.866018pt;}
.wsac{word-spacing:5.897899pt;}
.ws31{word-spacing:5.929779pt;}
.ws42{word-spacing:5.975376pt;}
.ws27{word-spacing:5.993540pt;}
.ws44{word-spacing:6.312346pt;}
.ws51{word-spacing:6.376107pt;}
.ws96{word-spacing:6.407987pt;}
.ws6b{word-spacing:6.503629pt;}
.ws37{word-spacing:6.567390pt;}
.ws57{word-spacing:6.631151pt;}
.ws9c{word-spacing:6.758673pt;}
.ws8{word-spacing:6.760733pt;}
.ws3{word-spacing:6.818915pt;}
.ws94{word-spacing:6.886195pt;}
.ws2c{word-spacing:6.949956pt;}
.ws54{word-spacing:7.013717pt;}
.ws1a{word-spacing:7.077478pt;}
.ws9e{word-spacing:7.205001pt;}
.ws66{word-spacing:7.250412pt;}
.ws67{word-spacing:7.268762pt;}
.ws98{word-spacing:7.332523pt;}
.ws53{word-spacing:7.651328pt;}
.wsa5{word-spacing:7.715089pt;}
.ws3d{word-spacing:7.842611pt;}
.wsb8{word-spacing:7.906372pt;}
.ws4c{word-spacing:8.097655pt;}
.ws95{word-spacing:8.161417pt;}
.wsa3{word-spacing:8.225178pt;}
.wsc1{word-spacing:8.288939pt;}
.ws1f{word-spacing:8.480222pt;}
.ws30{word-spacing:8.543983pt;}
.ws4d{word-spacing:8.671505pt;}
.wsb9{word-spacing:9.101184pt;}
.wsba{word-spacing:9.149713pt;}
.ws3b{word-spacing:9.245355pt;}
.wsa2{word-spacing:9.402177pt;}
.ws88{word-spacing:9.436638pt;}
.ws73{word-spacing:9.500399pt;}
.ws6f{word-spacing:9.520606pt;}
.ws71{word-spacing:9.523531pt;}
.ws2b{word-spacing:9.819204pt;}
.wsc{word-spacing:9.991831pt;}
.wsd{word-spacing:10.018917pt;}
.ws16{word-spacing:10.201771pt;}
.ws82{word-spacing:10.265532pt;}
.ws93{word-spacing:10.329293pt;}
.ws99{word-spacing:10.393054pt;}
.ws2a{word-spacing:10.456815pt;}
.wsb7{word-spacing:10.520576pt;}
.ws17{word-spacing:10.775620pt;}
.ws6e{word-spacing:10.966903pt;}
.ws50{word-spacing:11.221948pt;}
.ws8b{word-spacing:11.285709pt;}
.ws4b{word-spacing:11.349470pt;}
.ws65{word-spacing:11.413231pt;}
.ws46{word-spacing:11.476992pt;}
.ws32{word-spacing:11.668275pt;}
.wsb6{word-spacing:11.763917pt;}
.wsab{word-spacing:11.795797pt;}
.wsaa{word-spacing:11.859558pt;}
.wsc0{word-spacing:11.923319pt;}
.ws7a{word-spacing:11.987081pt;}
.ws86{word-spacing:11.992864pt;}
.ws84{word-spacing:12.242125pt;}
.wsae{word-spacing:12.274005pt;}
.ws4f{word-spacing:12.847855pt;}
.wsb{word-spacing:12.986193pt;}
.ws9b{word-spacing:13.007258pt;}
.ws4a{word-spacing:13.039138pt;}
.ws92{word-spacing:13.071019pt;}
.ws45{word-spacing:13.166660pt;}
.ws58{word-spacing:13.581107pt;}
.ws55{word-spacing:13.644868pt;}
.ws1d{word-spacing:13.872561pt;}
.ws91{word-spacing:15.015731pt;}
.ws72{word-spacing:15.694720pt;}
.ws70{word-spacing:15.699627pt;}
.ws61{word-spacing:19.158161pt;}
.ws87{word-spacing:20.011520pt;}
.ws85{word-spacing:20.012160pt;}
.ws2{word-spacing:33.042229pt;}
.ws0{word-spacing:33.170200pt;}
.wsa{word-spacing:45.331187pt;}
._2{margin-left:-37.491403pt;}
._7{margin-left:-35.083666pt;}
._2b{margin-left:-32.967668pt;}
._2a{margin-left:-30.353450pt;}
._a{margin-left:-29.090933pt;}
._2c{margin-left:-25.352513pt;}
._c{margin-left:-22.632746pt;}
._29{margin-left:-8.630654pt;}
._b{margin-left:-6.387758pt;}
._1c{margin-left:-5.349559pt;}
._6{margin-left:-4.402706pt;}
._3{margin-left:-3.258185pt;}
._1{margin-left:-2.065853pt;}
._5{margin-left:-0.959604pt;}
._4{width:1.629092pt;}
._8{width:3.258185pt;}
._28{width:4.981705pt;}
._21{width:8.694808pt;}
._24{width:15.586396pt;}
._22{width:17.368509pt;}
._27{width:18.436501pt;}
._20{width:19.437558pt;}
._18{width:20.887770pt;}
._26{width:23.299128pt;}
._14{width:24.752683pt;}
._13{width:25.821403pt;}
._12{width:27.034692pt;}
._9{width:28.332961pt;}
._10{width:29.885305pt;}
._17{width:31.643458pt;}
._16{width:33.238644pt;}
._1e{width:34.210997pt;}
._19{width:36.023646pt;}
._11{width:37.918701pt;}
._1d{width:38.995635pt;}
._1a{width:40.998366pt;}
._e{width:42.877823pt;}
._1b{width:43.847708pt;}
._0{width:44.741200pt;}
._23{width:45.746092pt;}
._15{width:46.968850pt;}
._f{width:48.321322pt;}
._25{width:53.275556pt;}
._1f{width:58.791852pt;}
._d{width:103.292400pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:54.637333pt;}
.y6a{bottom:94.488000pt;}
.yb5{bottom:107.528000pt;}
.y69{bottom:113.749333pt;}
.yb4{bottom:126.789333pt;}
.y20{bottom:129.441333pt;}
.yfa{bottom:130.442667pt;}
.y68{bottom:133.010667pt;}
.yb3{bottom:146.050667pt;}
.y1f{bottom:148.702667pt;}
.yf9{bottom:149.704000pt;}
.y67{bottom:152.272000pt;}
.y1e{bottom:167.964000pt;}
.y66{bottom:171.532000pt;}
.yb2{bottom:178.594667pt;}
.yf8{bottom:184.573333pt;}
.y1d{bottom:187.225333pt;}
.y43{bottom:187.872000pt;}
.y8d{bottom:190.793333pt;}
.yb1{bottom:197.856000pt;}
.y65{bottom:199.265333pt;}
.yd8{bottom:202.950667pt;}
.y42{bottom:207.133333pt;}
.yb0{bottom:217.117333pt;}
.y8c{bottom:219.122667pt;}
.yd7{bottom:222.212000pt;}
.y1c{bottom:222.426667pt;}
.y41{bottom:226.393333pt;}
.yaf{bottom:236.377333pt;}
.y64{bottom:237.786667pt;}
.y8b{bottom:238.384000pt;}
.yd6{bottom:241.473333pt;}
.y40{bottom:245.654667pt;}
.yf7{bottom:252.318667pt;}
.yae{bottom:255.638667pt;}
.y1b{bottom:257.628000pt;}
.y8a{bottom:257.645333pt;}
.yd5{bottom:260.734667pt;}
.y3f{bottom:264.916000pt;}
.yf6{bottom:271.580000pt;}
.y63{bottom:272.833333pt;}
.yad{bottom:274.900000pt;}
.y89{bottom:276.906667pt;}
.yd4{bottom:279.996000pt;}
.y3e{bottom:284.177333pt;}
.yf5{bottom:290.840000pt;}
.y1a{bottom:294.157333pt;}
.y88{bottom:296.166667pt;}
.y3d{bottom:303.438667pt;}
.yac{bottom:307.445333pt;}
.yf4{bottom:310.101333pt;}
.yd3{bottom:311.414667pt;}
.y19{bottom:313.418667pt;}
.y87{bottom:315.428000pt;}
.y3c{bottom:324.470667pt;}
.y62{bottom:326.021333pt;}
.yab{bottom:326.705333pt;}
.yf3{bottom:329.362667pt;}
.yd2{bottom:330.676000pt;}
.y18{bottom:332.680000pt;}
.y86{bottom:334.689333pt;}
.y3b{bottom:335.405333pt;}
.y61{bottom:345.282667pt;}
.yaa{bottom:345.966667pt;}
.yf2{bottom:348.624000pt;}
.yd1{bottom:349.936000pt;}
.y17{bottom:351.940000pt;}
.y60{bottom:364.544000pt;}
.ya9{bottom:365.228000pt;}
.yf1{bottom:367.885333pt;}
.yd0{bottom:369.197333pt;}
.y85{bottom:369.736000pt;}
.y16{bottom:371.201333pt;}
.y3a{bottom:377.848000pt;}
.y5f{bottom:383.805333pt;}
.ya8{bottom:384.489333pt;}
.y15{bottom:390.462667pt;}
.y39{bottom:397.108000pt;}
.ycf{bottom:401.224000pt;}
.yf0{bottom:404.414667pt;}
.y14{bottom:409.724000pt;}
.y5e{bottom:419.898667pt;}
.yce{bottom:420.485333pt;}
.ya7{bottom:421.018667pt;}
.y84{bottom:421.921333pt;}
.yef{bottom:423.676000pt;}
.y38{bottom:425.004000pt;}
.y5d{bottom:439.160000pt;}
.ycd{bottom:439.745333pt;}
.ya6{bottom:440.280000pt;}
.y83{bottom:441.182667pt;}
.yee{bottom:442.937333pt;}
.y13{bottom:444.770667pt;}
.y5c{bottom:458.421333pt;}
.ycc{bottom:459.006667pt;}
.ya5{bottom:459.541333pt;}
.y82{bottom:460.444000pt;}
.yed{bottom:462.197333pt;}
.y37{bottom:463.526667pt;}
.y12{bottom:473.993333pt;}
.y5b{bottom:477.682667pt;}
.ycb{bottom:478.268000pt;}
.ya4{bottom:478.802667pt;}
.y81{bottom:479.705333pt;}
.y36{bottom:482.786667pt;}
.yec{bottom:494.742667pt;}
.y5a{bottom:496.944000pt;}
.ya3{bottom:498.064000pt;}
.yca{bottom:498.497333pt;}
.y80{bottom:498.965333pt;}
.y35{bottom:502.048000pt;}
.yc9{bottom:509.430667pt;}
.yeb{bottom:514.004000pt;}
.ya2{bottom:517.324000pt;}
.y34{bottom:521.309333pt;}
.y11{bottom:527.238667pt;}
.y7f{bottom:527.294667pt;}
.y59{bottom:529.380000pt;}
.yea{bottom:533.265333pt;}
.ya1{bottom:536.585333pt;}
.y33{bottom:540.570667pt;}
.y10{bottom:545.304000pt;}
.y7e{bottom:546.556000pt;}
.y58{bottom:548.640000pt;}
.yc8{bottom:552.760000pt;}
.y32{bottom:559.832000pt;}
.yf{bottom:563.369333pt;}
.ye9{bottom:565.809333pt;}
.y57{bottom:567.901333pt;}
.ya0{bottom:571.632000pt;}
.yc7{bottom:572.021333pt;}
.y7d{bottom:577.050667pt;}
.y31{bottom:579.093333pt;}
.ye{bottom:581.436000pt;}
.ye8{bottom:585.070667pt;}
.y56{bottom:587.162667pt;}
.yc6{bottom:591.281333pt;}
.y30{bottom:598.353333pt;}
.yd{bottom:599.501333pt;}
.y9f{bottom:600.856000pt;}
.ye7{bottom:604.332000pt;}
.y55{bottom:606.424000pt;}
.y7c{bottom:607.545333pt;}
.yc5{bottom:610.542667pt;}
.yc{bottom:617.566667pt;}
.ye6{bottom:623.592000pt;}
.y54{bottom:625.685333pt;}
.yc4{bottom:629.804000pt;}
.y2f{bottom:633.400000pt;}
.y7b{bottom:635.874667pt;}
.yc3{bottom:649.065333pt;}
.yb{bottom:653.697333pt;}
.y9e{bottom:654.100000pt;}
.y7a{bottom:655.136000pt;}
.ye5{bottom:656.137333pt;}
.y53{bottom:658.120000pt;}
.ya{bottom:671.764000pt;}
.y9d{bottom:673.361333pt;}
.y79{bottom:674.396000pt;}
.ye4{bottom:675.398667pt;}
.y52{bottom:677.381333pt;}
.yc2{bottom:684.112000pt;}
.y2e{bottom:686.645333pt;}
.y9{bottom:689.829333pt;}
.y9c{bottom:692.622667pt;}
.y78{bottom:693.657333pt;}
.ye3{bottom:694.660000pt;}
.y51{bottom:696.642667pt;}
.y2d{bottom:705.906667pt;}
.y8{bottom:707.894667pt;}
.y9b{bottom:711.884000pt;}
.y77{bottom:712.918667pt;}
.ye2{bottom:713.920000pt;}
.y50{bottom:715.904000pt;}
.y7{bottom:725.960000pt;}
.y9a{bottom:731.145333pt;}
.y76{bottom:731.761333pt;}
.y4f{bottom:735.165333pt;}
.yc1{bottom:736.774667pt;}
.y2c{bottom:742.436000pt;}
.y75{bottom:742.696000pt;}
.y6{bottom:744.025333pt;}
.y99{bottom:750.405333pt;}
.ye1{bottom:750.450667pt;}
.yc0{bottom:756.036000pt;}
.y2b{bottom:761.697333pt;}
.y4e{bottom:767.601333pt;}
.ye0{bottom:769.710667pt;}
.y5{bottom:770.996000pt;}
.ybf{bottom:775.297333pt;}
.y2a{bottom:780.957333pt;}
.y74{bottom:786.024000pt;}
.y4d{bottom:786.861333pt;}
.y98{bottom:786.936000pt;}
.ydf{bottom:788.972000pt;}
.ybe{bottom:794.557333pt;}
.y29{bottom:800.218667pt;}
.y73{bottom:805.285333pt;}
.y4c{bottom:806.122667pt;}
.y97{bottom:806.197333pt;}
.yde{bottom:808.233333pt;}
.ybd{bottom:813.818667pt;}
.y72{bottom:824.546667pt;}
.y4b{bottom:825.384000pt;}
.y96{bottom:825.457333pt;}
.ydd{bottom:827.494667pt;}
.y4{bottom:829.742667pt;}
.ybc{bottom:833.080000pt;}
.y28{bottom:835.420000pt;}
.y71{bottom:843.806667pt;}
.y4a{bottom:844.645333pt;}
.y95{bottom:844.718667pt;}
.ydc{bottom:846.756000pt;}
.ybb{bottom:852.341333pt;}
.y49{bottom:863.906667pt;}
.y94{bottom:863.980000pt;}
.y70{bottom:865.973333pt;}
.ydb{bottom:866.017333pt;}
.y3{bottom:867.136000pt;}
.y27{bottom:870.621333pt;}
.y6f{bottom:876.908000pt;}
.y93{bottom:883.241333pt;}
.yba{bottom:884.366667pt;}
.yda{bottom:885.277333pt;}
.y48{bottom:900.000000pt;}
.y26{bottom:903.166667pt;}
.yb9{bottom:903.628000pt;}
.y2{bottom:914.457333pt;}
.y92{bottom:915.785333pt;}
.y47{bottom:919.261333pt;}
.yd9{bottom:920.324000pt;}
.y6e{bottom:920.610667pt;}
.y25{bottom:922.428000pt;}
.yb8{bottom:922.889333pt;}
.y91{bottom:935.046667pt;}
.y46{bottom:938.522667pt;}
.y6d{bottom:939.872000pt;}
.y24{bottom:941.688000pt;}
.yb7{bottom:942.150667pt;}
.y1{bottom:947.666667pt;}
.y90{bottom:954.308000pt;}
.y45{bottom:957.784000pt;}
.y6c{bottom:958.714667pt;}
.yb6{bottom:961.412000pt;}
.y6b{bottom:969.648000pt;}
.y8f{bottom:973.569333pt;}
.y23{bottom:976.889333pt;}
.y44{bottom:977.045333pt;}
.y8e{bottom:992.830667pt;}
.y22{bottom:1012.090667pt;}
.h4{height:40.610943pt;}
.h5{height:41.018216pt;}
.h12{height:45.525402pt;}
.h8{height:47.820800pt;}
.h6{height:51.039735pt;}
.hb{height:53.061069pt;}
.h11{height:53.066402pt;}
.ha{height:56.250402pt;}
.h3{height:57.384800pt;}
.h7{height:68.861600pt;}
.h2{height:77.911400pt;}
.h9{height:90.951467pt;}
.hc{height:90.956800pt;}
.hd{height:91.554133pt;}
.h10{height:91.559467pt;}
.he{height:92.454443pt;}
.hf{height:136.193109pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:94.488000pt;}
.x1{left:108.894667pt;}
.x9{left:113.564000pt;}
.xe{left:117.900000pt;}
.x7{left:133.508000pt;}
.x6{left:155.326667pt;}
.x19{left:160.420000pt;}
.x1a{left:236.818667pt;}
.x3{left:286.625333pt;}
.xc{left:299.284000pt;}
.x2{left:301.053333pt;}
.x4{left:304.898667pt;}
.x15{left:333.354667pt;}
.x17{left:335.522667pt;}
.x13{left:342.064000pt;}
.xf{left:357.100000pt;}
.xd{left:361.160000pt;}
.x10{left:363.096000pt;}
.x5{left:364.849333pt;}
.xa{left:375.298667pt;}
.xb{left:392.948000pt;}
.x14{left:396.709333pt;}
.x12{left:405.133333pt;}
.x11{left:407.430667pt;}
.x16{left:427.325333pt;}
.x18{left:429.493333pt;}
}




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