
    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_47687c4066da11ffcfdbb0a1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.184570;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_878bb3c35bbd5f74ac556c16.woff')format("woff");}.ff2{font-family:ff2;line-height:1.050781;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_23b700edaf9d4621a79fcf77.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_3a4075e4813f8e2904ff727c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.050781;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_ba9721ba5039b897565edb57.woff')format("woff");}.ff5{font-family:ff5;line-height:0.913086;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_b41c6f1a327b022291ab86f4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.913086;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);}
.v4{vertical-align:-16.977000px;}
.v8{vertical-align:-14.976000px;}
.v5{vertical-align:-11.982000px;}
.v2{vertical-align:-10.926000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.980000px;}
.v7{vertical-align:15.081000px;}
.v3{vertical-align:17.210400px;}
.v1{vertical-align:81.000000px;}
.ls4b{letter-spacing:-5.865000px;}
.ls36{letter-spacing:-5.589000px;}
.ls4a{letter-spacing:-4.425000px;}
.ls64{letter-spacing:-4.347000px;}
.ls2c{letter-spacing:-4.140000px;}
.ls5f{letter-spacing:-3.465000px;}
.ls38{letter-spacing:-3.450000px;}
.ls33{letter-spacing:-2.967000px;}
.ls34{letter-spacing:-2.622000px;}
.ls6f{letter-spacing:-2.457000px;}
.ls6b{letter-spacing:-2.400000px;}
.ls6{letter-spacing:-2.268000px;}
.lsb{letter-spacing:-2.208000px;}
.ls7{letter-spacing:-2.160000px;}
.ls58{letter-spacing:-2.142000px;}
.ls37{letter-spacing:-2.139000px;}
.ls4c{letter-spacing:-2.001000px;}
.ls63{letter-spacing:-1.953000px;}
.ls40{letter-spacing:-1.863000px;}
.ls6d{letter-spacing:-1.827000px;}
.ls43{letter-spacing:-1.725000px;}
.ls51{letter-spacing:-1.701000px;}
.ls29{letter-spacing:-1.656000px;}
.ls54{letter-spacing:-1.638000px;}
.ls3d{letter-spacing:-1.587000px;}
.ls67{letter-spacing:-1.575000px;}
.ls23{letter-spacing:-1.518000px;}
.ls24{letter-spacing:-1.449000px;}
.ls68{letter-spacing:-1.386000px;}
.ls26{letter-spacing:-1.380000px;}
.lsf{letter-spacing:-1.350000px;}
.ls41{letter-spacing:-1.311000px;}
.ls42{letter-spacing:-1.242000px;}
.ls28{letter-spacing:-1.173000px;}
.ls4f{letter-spacing:-1.134000px;}
.ls3c{letter-spacing:-1.104000px;}
.ls62{letter-spacing:-1.071000px;}
.ls35{letter-spacing:-1.035000px;}
.ls2a{letter-spacing:-0.966000px;}
.ls73{letter-spacing:-0.960000px;}
.ls71{letter-spacing:-0.945000px;}
.ls25{letter-spacing:-0.897000px;}
.ls76{letter-spacing:-0.840000px;}
.ls8{letter-spacing:-0.828000px;}
.ls75{letter-spacing:-0.780000px;}
.lsa{letter-spacing:-0.759000px;}
.ls55{letter-spacing:-0.756000px;}
.ls5b{letter-spacing:-0.693000px;}
.lsc{letter-spacing:-0.690000px;}
.ls72{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.588000px;}
.ls5d{letter-spacing:-0.567000px;}
.ls9{letter-spacing:-0.552000px;}
.ls13{letter-spacing:-0.483000px;}
.ls74{letter-spacing:-0.480000px;}
.ls5c{letter-spacing:-0.441000px;}
.ls17{letter-spacing:-0.414000px;}
.ls14{letter-spacing:-0.345000px;}
.ls50{letter-spacing:-0.315000px;}
.ls21{letter-spacing:-0.300000px;}
.ls11{letter-spacing:-0.276000px;}
.ls3f{letter-spacing:-0.207000px;}
.ls5e{letter-spacing:-0.189000px;}
.ls32{letter-spacing:-0.069000px;}
.ls1{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.004500px;}
.ls57{letter-spacing:0.010137px;}
.ls5a{letter-spacing:0.063000px;}
.ls31{letter-spacing:0.138000px;}
.ls22{letter-spacing:0.345000px;}
.ls2d{letter-spacing:0.563178px;}
.ls61{letter-spacing:0.624393px;}
.ls66{letter-spacing:0.819000px;}
.ls19{letter-spacing:0.892500px;}
.ls1c{letter-spacing:0.896100px;}
.ls12{letter-spacing:0.897000px;}
.ls1e{letter-spacing:0.898500px;}
.ls6c{letter-spacing:0.945000px;}
.ls3e{letter-spacing:1.035000px;}
.ls2e{letter-spacing:1.104000px;}
.ls2b{letter-spacing:1.166583px;}
.ls60{letter-spacing:1.175328px;}
.ls52{letter-spacing:1.197000px;}
.ls4d{letter-spacing:1.242000px;}
.ls10{letter-spacing:1.260000px;}
.ls1a{letter-spacing:1.380000px;}
.ls27{letter-spacing:1.449000px;}
.ls15{letter-spacing:1.587000px;}
.ls46{letter-spacing:1.630500px;}
.ls48{letter-spacing:1.725000px;}
.ls49{letter-spacing:2.014500px;}
.ls16{letter-spacing:2.070000px;}
.ls6e{letter-spacing:2.079000px;}
.ls3b{letter-spacing:2.146500px;}
.ls1b{letter-spacing:2.346000px;}
.lse{letter-spacing:2.400000px;}
.ls6a{letter-spacing:2.520000px;}
.ls1d{letter-spacing:2.716500px;}
.ls47{letter-spacing:2.722500px;}
.ls44{letter-spacing:3.174000px;}
.ls4e{letter-spacing:4.284000px;}
.ls4{letter-spacing:5.700000px;}
.ls70{letter-spacing:5.733000px;}
.ls53{letter-spacing:5.859000px;}
.ls2{letter-spacing:5.940000px;}
.ls3{letter-spacing:6.000000px;}
.ls20{letter-spacing:6.120000px;}
.ls59{letter-spacing:6.300000px;}
.ls65{letter-spacing:6.426000px;}
.ls1f{letter-spacing:6.486000px;}
.ls39{letter-spacing:7.038000px;}
.ls2f{letter-spacing:470.066400px;}
.lsd{letter-spacing:470.441400px;}
.ls69{letter-spacing:471.686400px;}
.ls45{letter-spacing:473.734200px;}
.ls0{letter-spacing:936.906000px;}
.ls3a{letter-spacing:937.404000px;}
.ls56{letter-spacing:938.952000px;}
.ls18{letter-spacing:946.056000px;}
.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;}
}
.ws0{word-spacing:-55.978066px;}
.ws50{word-spacing:-21.987000px;}
.ws3f{word-spacing:-20.424000px;}
.ws73{word-spacing:-19.782000px;}
.ws12{word-spacing:-19.725000px;}
.ws1f{word-spacing:-19.389000px;}
.ws34{word-spacing:-18.906000px;}
.ws5d{word-spacing:-18.900000px;}
.ws72{word-spacing:-18.675000px;}
.ws66{word-spacing:-18.522000px;}
.ws4e{word-spacing:-18.285000px;}
.ws4f{word-spacing:-18.147000px;}
.ws20{word-spacing:-17.388000px;}
.ws76{word-spacing:-17.136000px;}
.ws1d{word-spacing:-17.043000px;}
.ws5e{word-spacing:-17.010000px;}
.ws40{word-spacing:-16.836000px;}
.ws1e{word-spacing:-16.698000px;}
.ws4c{word-spacing:-16.650000px;}
.ws42{word-spacing:-16.629000px;}
.ws1{word-spacing:-16.353000px;}
.ws3d{word-spacing:-16.284000px;}
.ws22{word-spacing:-16.215000px;}
.ws43{word-spacing:-16.146000px;}
.ws3c{word-spacing:-16.008000px;}
.ws26{word-spacing:-15.870000px;}
.ws44{word-spacing:-15.801000px;}
.ws24{word-spacing:-15.663000px;}
.ws5c{word-spacing:-15.624000px;}
.ws23{word-spacing:-15.594000px;}
.ws5f{word-spacing:-15.561000px;}
.ws21{word-spacing:-15.525000px;}
.ws3e{word-spacing:-15.456000px;}
.ws45{word-spacing:-15.387000px;}
.ws28{word-spacing:-15.249000px;}
.ws41{word-spacing:-15.180000px;}
.ws33{word-spacing:-14.904000px;}
.ws65{word-spacing:-14.868000px;}
.ws25{word-spacing:-14.835000px;}
.ws74{word-spacing:-14.490000px;}
.ws51{word-spacing:-14.427000px;}
.ws32{word-spacing:-14.421000px;}
.ws60{word-spacing:-14.238000px;}
.ws67{word-spacing:-14.175000px;}
.ws31{word-spacing:-14.076000px;}
.ws77{word-spacing:-13.980000px;}
.ws53{word-spacing:-13.923000px;}
.ws52{word-spacing:-13.860000px;}
.ws63{word-spacing:-13.608000px;}
.ws5b{word-spacing:-13.419000px;}
.ws64{word-spacing:-13.356000px;}
.ws46{word-spacing:-13.338000px;}
.ws75{word-spacing:-13.104000px;}
.ws13{word-spacing:-13.062000px;}
.ws27{word-spacing:-12.470370px;}
.ws29{word-spacing:-11.866965px;}
.ws61{word-spacing:-11.496177px;}
.ws35{word-spacing:-11.303787px;}
.ws4d{word-spacing:-11.178000px;}
.ws62{word-spacing:-10.945242px;}
.ws3b{word-spacing:-7.038000px;}
.ws69{word-spacing:-6.300000px;}
.ws6{word-spacing:-6.000000px;}
.ws5{word-spacing:-5.940000px;}
.ws7b{word-spacing:-5.733000px;}
.ws7{word-spacing:-5.700000px;}
.ws4b{word-spacing:-3.174000px;}
.wsc{word-spacing:-2.268000px;}
.ws1b{word-spacing:-2.070000px;}
.ws1a{word-spacing:-1.587000px;}
.ws7a{word-spacing:-1.575000px;}
.ws2d{word-spacing:-1.449000px;}
.ws78{word-spacing:-1.260000px;}
.ws30{word-spacing:-1.104000px;}
.ws79{word-spacing:-0.945000px;}
.ws17{word-spacing:-0.897000px;}
.ws6e{word-spacing:-0.882000px;}
.ws6a{word-spacing:-0.693000px;}
.ws8{word-spacing:-0.420000px;}
.ws55{word-spacing:-0.207000px;}
.ws2a{word-spacing:-0.120000px;}
.wsd{word-spacing:-0.084000px;}
.ws6c{word-spacing:-0.063000px;}
.ws2{word-spacing:0.000000px;}
.ws36{word-spacing:0.069000px;}
.ws18{word-spacing:0.138000px;}
.ws6d{word-spacing:0.189000px;}
.ws70{word-spacing:0.252000px;}
.ws16{word-spacing:0.276000px;}
.ws2b{word-spacing:0.300000px;}
.ws57{word-spacing:0.315000px;}
.ws19{word-spacing:0.345000px;}
.ws1c{word-spacing:0.414000px;}
.ws6b{word-spacing:0.441000px;}
.ws7f{word-spacing:0.480000px;}
.ws15{word-spacing:0.483000px;}
.ws4{word-spacing:0.540000px;}
.wsf{word-spacing:0.552000px;}
.ws3{word-spacing:0.567000px;}
.ws9{word-spacing:0.588000px;}
.ws7e{word-spacing:0.600000px;}
.ws7d{word-spacing:0.720000px;}
.ws5a{word-spacing:0.756000px;}
.ws10{word-spacing:0.759000px;}
.ws80{word-spacing:0.780000px;}
.ws59{word-spacing:0.819000px;}
.wse{word-spacing:0.828000px;}
.ws2c{word-spacing:0.897000px;}
.ws7c{word-spacing:0.945000px;}
.ws39{word-spacing:0.966000px;}
.ws14{word-spacing:1.008000px;}
.ws37{word-spacing:1.035000px;}
.ws6f{word-spacing:1.071000px;}
.ws47{word-spacing:1.104000px;}
.wsb{word-spacing:1.296000px;}
.ws49{word-spacing:1.311000px;}
.ws2f{word-spacing:1.449000px;}
.ws71{word-spacing:1.575000px;}
.ws48{word-spacing:1.587000px;}
.ws2e{word-spacing:1.656000px;}
.ws68{word-spacing:1.701000px;}
.ws4a{word-spacing:1.725000px;}
.ws54{word-spacing:2.001000px;}
.ws11{word-spacing:2.208000px;}
.wsa{word-spacing:3.132000px;}
.ws3a{word-spacing:3.450000px;}
.ws58{word-spacing:5.481000px;}
.ws38{word-spacing:5.589000px;}
.ws56{word-spacing:6.678000px;}
._c{margin-left:-9.675600px;}
._b{margin-left:-7.731000px;}
._8{margin-left:-6.229800px;}
._9{margin-left:-4.965300px;}
._a{margin-left:-3.816300px;}
._5{margin-left:-2.731800px;}
._2{margin-left:-1.038000px;}
._3{width:1.644300px;}
._4{width:3.540600px;}
._7{width:5.465700px;}
._6{width:6.725400px;}
._d{width:7.882249px;}
._e{width:9.010954px;}
._f{width:10.185300px;}
._10{width:11.202137px;}
._1{width:13.140000px;}
._11{width:14.712000px;}
._15{width:15.879300px;}
._13{width:22.355100px;}
._12{width:23.433900px;}
._14{width:43.445160px;}
._0{width:578.400000px;}
.fc0{color:rgb(36,31,31);}
.fsb{font-size:31.482000px;}
.fsd{font-size:36.729000px;}
.fsa{font-size:40.227000px;}
.fs9{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs4{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.fs6{font-size:199.210200px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.yf8{bottom:106.238250px;}
.y1f{bottom:106.245750px;}
.y47{bottom:106.269000px;}
.y70{bottom:106.295850px;}
.y94{bottom:109.294800px;}
.y6f{bottom:126.661500px;}
.y1e{bottom:127.032000px;}
.y46{bottom:127.227750px;}
.yf7{bottom:127.705500px;}
.y93{bottom:127.798200px;}
.yb8{bottom:130.796700px;}
.y6e{bottom:147.085500px;}
.y1d{bottom:147.818250px;}
.y92{bottom:148.046700px;}
.y45{bottom:148.186500px;}
.yb7{bottom:152.299500px;}
.yd8{bottom:153.261000px;}
.yf6{bottom:157.677750px;}
.y117{bottom:158.919000px;}
.y6d{bottom:167.509500px;}
.y1c{bottom:168.604500px;}
.y44{bottom:169.145250px;}
.yb6{bottom:170.802000px;}
.yd7{bottom:174.933000px;}
.yf5{bottom:179.145000px;}
.y116{bottom:179.169000px;}
.y6c{bottom:187.933500px;}
.y1b{bottom:189.390750px;}
.y43{bottom:190.104000px;}
.yb5{bottom:191.050500px;}
.y91{bottom:192.078000px;}
.yd6{bottom:196.605000px;}
.y115{bottom:199.419000px;}
.y6b{bottom:208.357500px;}
.yf4{bottom:209.117250px;}
.y1a{bottom:210.177000px;}
.y42{bottom:211.062750px;}
.y90{bottom:213.606000px;}
.yd5{bottom:218.277000px;}
.y114{bottom:219.669000px;}
.y6a{bottom:228.781500px;}
.yf3{bottom:230.584500px;}
.y19{bottom:230.963250px;}
.y41{bottom:232.021500px;}
.yb4{bottom:235.119000px;}
.y8f{bottom:235.218000px;}
.yd4{bottom:248.454000px;}
.y69{bottom:249.205500px;}
.y18{bottom:251.749500px;}
.y40{bottom:252.980250px;}
.yb3{bottom:255.974250px;}
.y8e{bottom:256.746000px;}
.y113{bottom:260.169000px;}
.yf2{bottom:260.556750px;}
.y68{bottom:269.629500px;}
.yd3{bottom:270.126000px;}
.y17{bottom:272.535750px;}
.y3f{bottom:273.939000px;}
.yb2{bottom:276.829500px;}
.y8d{bottom:278.274000px;}
.y112{bottom:280.419000px;}
.yf1{bottom:282.024000px;}
.y67{bottom:290.053500px;}
.yd2{bottom:291.798000px;}
.y16{bottom:293.322000px;}
.y15{bottom:293.323500px;}
.y3e{bottom:294.897750px;}
.yb1{bottom:297.684750px;}
.y8c{bottom:299.802000px;}
.y111{bottom:300.669000px;}
.yf0{bottom:303.491250px;}
.y66{bottom:310.477500px;}
.y3d{bottom:315.856500px;}
.yb0{bottom:318.540000px;}
.y110{bottom:320.919000px;}
.y8b{bottom:321.330000px;}
.yd1{bottom:321.975000px;}
.yef{bottom:324.958500px;}
.y65{bottom:330.901500px;}
.y3c{bottom:336.815250px;}
.yaf{bottom:339.395250px;}
.y10f{bottom:341.169000px;}
.y8a{bottom:342.858000px;}
.yd0{bottom:343.647000px;}
.y64{bottom:351.325500px;}
.yee{bottom:354.930750px;}
.y3b{bottom:357.774000px;}
.yae{bottom:360.341250px;}
.y14{bottom:364.129500px;}
.y89{bottom:364.386000px;}
.ycf{bottom:365.319000px;}
.y63{bottom:371.749500px;}
.yed{bottom:376.398000px;}
.y3a{bottom:378.732750px;}
.yad{bottom:381.196500px;}
.y10e{bottom:381.669000px;}
.y13{bottom:385.654500px;}
.y88{bottom:385.914000px;}
.yce{bottom:386.991000px;}
.y62{bottom:392.173500px;}
.yec{bottom:397.865250px;}
.y39{bottom:399.691500px;}
.y10d{bottom:401.919000px;}
.yac{bottom:402.051750px;}
.y12{bottom:407.179500px;}
.y87{bottom:407.442000px;}
.y61{bottom:412.597500px;}
.ycd{bottom:417.168000px;}
.y38{bottom:420.650250px;}
.y10c{bottom:422.169000px;}
.yab{bottom:422.907000px;}
.yeb{bottom:427.837500px;}
.y86{bottom:428.970000px;}
.y60{bottom:433.021500px;}
.y37{bottom:441.609000px;}
.y10b{bottom:442.419000px;}
.yaa{bottom:443.762250px;}
.yea{bottom:449.304750px;}
.y85{bottom:450.498000px;}
.y5f{bottom:453.445500px;}
.y11{bottom:458.473500px;}
.y36{bottom:462.567750px;}
.y10a{bottom:462.669000px;}
.ya9{bottom:464.617500px;}
.ycc{bottom:469.374000px;}
.ye9{bottom:470.772000px;}
.y84{bottom:472.026000px;}
.y5e{bottom:473.859000px;}
.y35{bottom:483.526500px;}
.ya8{bottom:485.472750px;}
.y10{bottom:490.546500px;}
.ycb{bottom:491.040000px;}
.y83{bottom:493.554000px;}
.y5d{bottom:494.283000px;}
.y109{bottom:495.669000px;}
.ye8{bottom:500.744250px;}
.y34{bottom:504.485250px;}
.ya7{bottom:506.328000px;}
.yca{bottom:512.706000px;}
.y5c{bottom:514.707000px;}
.y82{bottom:515.146500px;}
.ye7{bottom:522.204000px;}
.yf{bottom:522.568500px;}
.y33{bottom:525.444000px;}
.ya6{bottom:527.183250px;}
.yc9{bottom:534.372000px;}
.y5b{bottom:535.096500px;}
.y81{bottom:536.674500px;}
.y108{bottom:537.102000px;}
.y32{bottom:546.402750px;}
.ya5{bottom:548.038500px;}
.ye6{bottom:552.176250px;}
.ye{bottom:554.590500px;}
.y5a{bottom:555.520500px;}
.yc8{bottom:556.038000px;}
.y107{bottom:557.356500px;}
.y80{bottom:558.202500px;}
.y31{bottom:567.361500px;}
.ya4{bottom:568.893750px;}
.ye5{bottom:573.621000px;}
.y59{bottom:575.944500px;}
.y106{bottom:577.611000px;}
.yc7{bottom:577.704000px;}
.y7f{bottom:579.730500px;}
.yd{bottom:586.612500px;}
.y30{bottom:588.320250px;}
.ya3{bottom:589.765500px;}
.y58{bottom:596.368500px;}
.yc6{bottom:599.370000px;}
.y7e{bottom:601.258500px;}
.ye4{bottom:603.593250px;}
.y105{bottom:606.370500px;}
.y2f{bottom:609.279000px;}
.ya2{bottom:610.620750px;}
.y57{bottom:616.792500px;}
.yc{bottom:618.634500px;}
.yc5{bottom:621.036000px;}
.y7d{bottom:622.786500px;}
.ye3{bottom:625.060500px;}
.y104{bottom:626.625000px;}
.y2e{bottom:630.237750px;}
.ya1{bottom:631.542000px;}
.y56{bottom:637.216500px;}
.yc4{bottom:642.702000px;}
.y7c{bottom:644.314500px;}
.y103{bottom:646.879500px;}
.yb{bottom:650.656500px;}
.y2d{bottom:651.196500px;}
.ya0{bottom:652.397250px;}
.ye2{bottom:655.032750px;}
.y55{bottom:657.640500px;}
.yc3{bottom:664.368000px;}
.y7b{bottom:665.842500px;}
.y2c{bottom:672.155250px;}
.y9f{bottom:673.252500px;}
.y102{bottom:675.639000px;}
.ye1{bottom:676.500000px;}
.y54{bottom:678.064500px;}
.ya{bottom:682.687500px;}
.yc2{bottom:686.034000px;}
.y7a{bottom:687.370500px;}
.y2b{bottom:693.114000px;}
.y9e{bottom:694.107750px;}
.y101{bottom:695.893500px;}
.y53{bottom:698.488500px;}
.ye0{bottom:706.472250px;}
.yc1{bottom:707.700000px;}
.y79{bottom:708.898500px;}
.y2a{bottom:714.072750px;}
.y9d{bottom:714.963000px;}
.y52{bottom:718.912500px;}
.y100{bottom:724.653000px;}
.ydf{bottom:727.913250px;}
.yc0{bottom:729.366000px;}
.y78{bottom:730.477500px;}
.y29{bottom:735.031500px;}
.y9c{bottom:735.818250px;}
.y51{bottom:739.333500px;}
.y9{bottom:744.513000px;}
.yff{bottom:744.907500px;}
.yde{bottom:749.380500px;}
.ybf{bottom:751.032000px;}
.y77{bottom:752.005500px;}
.y28{bottom:755.990250px;}
.y9b{bottom:756.673500px;}
.y50{bottom:759.747000px;}
.y8{bottom:766.038000px;}
.ybe{bottom:772.698000px;}
.y76{bottom:773.533500px;}
.yfe{bottom:773.667000px;}
.y27{bottom:776.949000px;}
.y9a{bottom:777.528750px;}
.ydd{bottom:779.352750px;}
.y4f{bottom:780.171000px;}
.y7{bottom:787.563000px;}
.yfd{bottom:793.921500px;}
.ybd{bottom:794.364000px;}
.y75{bottom:795.061500px;}
.y26{bottom:797.907750px;}
.y99{bottom:798.392250px;}
.y4e{bottom:800.595000px;}
.ydc{bottom:800.820000px;}
.y6{bottom:809.088000px;}
.yfc{bottom:814.176000px;}
.ybc{bottom:816.033000px;}
.y74{bottom:816.589500px;}
.y25{bottom:818.866500px;}
.y98{bottom:819.280500px;}
.y4d{bottom:821.005500px;}
.ydb{bottom:830.792250px;}
.ybb{bottom:837.700500px;}
.y73{bottom:838.117500px;}
.y5{bottom:839.118000px;}
.y24{bottom:839.825250px;}
.y97{bottom:840.135750px;}
.y4c{bottom:841.429500px;}
.yfb{bottom:842.935500px;}
.yda{bottom:852.259500px;}
.yba{bottom:859.369500px;}
.y72{bottom:859.645500px;}
.y4{bottom:860.643000px;}
.y23{bottom:860.784000px;}
.y96{bottom:860.991000px;}
.y4b{bottom:861.853500px;}
.yfa{bottom:863.190000px;}
.yb9{bottom:881.035500px;}
.y71{bottom:881.173500px;}
.y22{bottom:881.742750px;}
.y95{bottom:881.846250px;}
.y3{bottom:882.168000px;}
.yd9{bottom:882.231750px;}
.y4a{bottom:882.277500px;}
.yf9{bottom:883.444500px;}
.y21{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y20{bottom:948.189000px;}
.y49{bottom:966.189000px;}
.y48{bottom:984.189000px;}
.h13{height:39.404648px;}
.h11{height:39.407648px;}
.hb{height:40.312500px;}
.h9{height:45.679688px;}
.ha{height:49.072266px;}
.h18{height:50.947266px;}
.h12{height:51.389648px;}
.h14{height:51.525879px;}
.h4{height:57.099609px;}
.h3{height:59.954590px;}
.h17{height:59.984590px;}
.h16{height:60.044590px;}
.h15{height:60.059590px;}
.h8{height:65.664551px;}
.he{height:65.676551px;}
.hd{height:65.706551px;}
.hc{height:65.718551px;}
.hf{height:65.802551px;}
.h10{height:65.897951px;}
.h2{height:71.374512px;}
.h5{height:79.939453px;}
.h6{height:102.779297px;}
.h7{height:189.580410px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x7{left:80.598000px;}
.x4{left:83.589450px;}
.x1{left:85.039350px;}
.x8{left:104.365500px;}
.x6{left:105.713250px;}
.x9{left:106.731000px;}
.x5{left:127.551750px;}
.x3{left:232.029000px;}
.x2{left:233.415000px;}
@media print{
.v4{vertical-align:-15.090667pt;}
.v8{vertical-align:-13.312000pt;}
.v5{vertical-align:-10.650667pt;}
.v2{vertical-align:-9.712000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.760000pt;}
.v7{vertical-align:13.405333pt;}
.v3{vertical-align:15.298133pt;}
.v1{vertical-align:72.000000pt;}
.ls4b{letter-spacing:-5.213333pt;}
.ls36{letter-spacing:-4.968000pt;}
.ls4a{letter-spacing:-3.933333pt;}
.ls64{letter-spacing:-3.864000pt;}
.ls2c{letter-spacing:-3.680000pt;}
.ls5f{letter-spacing:-3.080000pt;}
.ls38{letter-spacing:-3.066667pt;}
.ls33{letter-spacing:-2.637333pt;}
.ls34{letter-spacing:-2.330667pt;}
.ls6f{letter-spacing:-2.184000pt;}
.ls6b{letter-spacing:-2.133333pt;}
.ls6{letter-spacing:-2.016000pt;}
.lsb{letter-spacing:-1.962667pt;}
.ls7{letter-spacing:-1.920000pt;}
.ls58{letter-spacing:-1.904000pt;}
.ls37{letter-spacing:-1.901333pt;}
.ls4c{letter-spacing:-1.778667pt;}
.ls63{letter-spacing:-1.736000pt;}
.ls40{letter-spacing:-1.656000pt;}
.ls6d{letter-spacing:-1.624000pt;}
.ls43{letter-spacing:-1.533333pt;}
.ls51{letter-spacing:-1.512000pt;}
.ls29{letter-spacing:-1.472000pt;}
.ls54{letter-spacing:-1.456000pt;}
.ls3d{letter-spacing:-1.410667pt;}
.ls67{letter-spacing:-1.400000pt;}
.ls23{letter-spacing:-1.349333pt;}
.ls24{letter-spacing:-1.288000pt;}
.ls68{letter-spacing:-1.232000pt;}
.ls26{letter-spacing:-1.226667pt;}
.lsf{letter-spacing:-1.200000pt;}
.ls41{letter-spacing:-1.165333pt;}
.ls42{letter-spacing:-1.104000pt;}
.ls28{letter-spacing:-1.042667pt;}
.ls4f{letter-spacing:-1.008000pt;}
.ls3c{letter-spacing:-0.981333pt;}
.ls62{letter-spacing:-0.952000pt;}
.ls35{letter-spacing:-0.920000pt;}
.ls2a{letter-spacing:-0.858667pt;}
.ls73{letter-spacing:-0.853333pt;}
.ls71{letter-spacing:-0.840000pt;}
.ls25{letter-spacing:-0.797333pt;}
.ls76{letter-spacing:-0.746667pt;}
.ls8{letter-spacing:-0.736000pt;}
.ls75{letter-spacing:-0.693333pt;}
.lsa{letter-spacing:-0.674667pt;}
.ls55{letter-spacing:-0.672000pt;}
.ls5b{letter-spacing:-0.616000pt;}
.lsc{letter-spacing:-0.613333pt;}
.ls72{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.522667pt;}
.ls5d{letter-spacing:-0.504000pt;}
.ls9{letter-spacing:-0.490667pt;}
.ls13{letter-spacing:-0.429333pt;}
.ls74{letter-spacing:-0.426667pt;}
.ls5c{letter-spacing:-0.392000pt;}
.ls17{letter-spacing:-0.368000pt;}
.ls14{letter-spacing:-0.306667pt;}
.ls50{letter-spacing:-0.280000pt;}
.ls21{letter-spacing:-0.266667pt;}
.ls11{letter-spacing:-0.245333pt;}
.ls3f{letter-spacing:-0.184000pt;}
.ls5e{letter-spacing:-0.168000pt;}
.ls32{letter-spacing:-0.061333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.004000pt;}
.ls57{letter-spacing:0.009011pt;}
.ls5a{letter-spacing:0.056000pt;}
.ls31{letter-spacing:0.122667pt;}
.ls22{letter-spacing:0.306667pt;}
.ls2d{letter-spacing:0.500603pt;}
.ls61{letter-spacing:0.555016pt;}
.ls66{letter-spacing:0.728000pt;}
.ls19{letter-spacing:0.793333pt;}
.ls1c{letter-spacing:0.796533pt;}
.ls12{letter-spacing:0.797333pt;}
.ls1e{letter-spacing:0.798667pt;}
.ls6c{letter-spacing:0.840000pt;}
.ls3e{letter-spacing:0.920000pt;}
.ls2e{letter-spacing:0.981333pt;}
.ls2b{letter-spacing:1.036963pt;}
.ls60{letter-spacing:1.044736pt;}
.ls52{letter-spacing:1.064000pt;}
.ls4d{letter-spacing:1.104000pt;}
.ls10{letter-spacing:1.120000pt;}
.ls1a{letter-spacing:1.226667pt;}
.ls27{letter-spacing:1.288000pt;}
.ls15{letter-spacing:1.410667pt;}
.ls46{letter-spacing:1.449333pt;}
.ls48{letter-spacing:1.533333pt;}
.ls49{letter-spacing:1.790667pt;}
.ls16{letter-spacing:1.840000pt;}
.ls6e{letter-spacing:1.848000pt;}
.ls3b{letter-spacing:1.908000pt;}
.ls1b{letter-spacing:2.085333pt;}
.lse{letter-spacing:2.133333pt;}
.ls6a{letter-spacing:2.240000pt;}
.ls1d{letter-spacing:2.414667pt;}
.ls47{letter-spacing:2.420000pt;}
.ls44{letter-spacing:2.821333pt;}
.ls4e{letter-spacing:3.808000pt;}
.ls4{letter-spacing:5.066667pt;}
.ls70{letter-spacing:5.096000pt;}
.ls53{letter-spacing:5.208000pt;}
.ls2{letter-spacing:5.280000pt;}
.ls3{letter-spacing:5.333333pt;}
.ls20{letter-spacing:5.440000pt;}
.ls59{letter-spacing:5.600000pt;}
.ls65{letter-spacing:5.712000pt;}
.ls1f{letter-spacing:5.765333pt;}
.ls39{letter-spacing:6.256000pt;}
.ls2f{letter-spacing:417.836800pt;}
.lsd{letter-spacing:418.170133pt;}
.ls69{letter-spacing:419.276800pt;}
.ls45{letter-spacing:421.097067pt;}
.ls0{letter-spacing:832.805333pt;}
.ls3a{letter-spacing:833.248000pt;}
.ls56{letter-spacing:834.624000pt;}
.ls18{letter-spacing:840.938667pt;}
.ws0{word-spacing:-49.758281pt;}
.ws50{word-spacing:-19.544000pt;}
.ws3f{word-spacing:-18.154667pt;}
.ws73{word-spacing:-17.584000pt;}
.ws12{word-spacing:-17.533333pt;}
.ws1f{word-spacing:-17.234667pt;}
.ws34{word-spacing:-16.805333pt;}
.ws5d{word-spacing:-16.800000pt;}
.ws72{word-spacing:-16.600000pt;}
.ws66{word-spacing:-16.464000pt;}
.ws4e{word-spacing:-16.253333pt;}
.ws4f{word-spacing:-16.130667pt;}
.ws20{word-spacing:-15.456000pt;}
.ws76{word-spacing:-15.232000pt;}
.ws1d{word-spacing:-15.149333pt;}
.ws5e{word-spacing:-15.120000pt;}
.ws40{word-spacing:-14.965333pt;}
.ws1e{word-spacing:-14.842667pt;}
.ws4c{word-spacing:-14.800000pt;}
.ws42{word-spacing:-14.781333pt;}
.ws1{word-spacing:-14.536000pt;}
.ws3d{word-spacing:-14.474667pt;}
.ws22{word-spacing:-14.413333pt;}
.ws43{word-spacing:-14.352000pt;}
.ws3c{word-spacing:-14.229333pt;}
.ws26{word-spacing:-14.106667pt;}
.ws44{word-spacing:-14.045333pt;}
.ws24{word-spacing:-13.922667pt;}
.ws5c{word-spacing:-13.888000pt;}
.ws23{word-spacing:-13.861333pt;}
.ws5f{word-spacing:-13.832000pt;}
.ws21{word-spacing:-13.800000pt;}
.ws3e{word-spacing:-13.738667pt;}
.ws45{word-spacing:-13.677333pt;}
.ws28{word-spacing:-13.554667pt;}
.ws41{word-spacing:-13.493333pt;}
.ws33{word-spacing:-13.248000pt;}
.ws65{word-spacing:-13.216000pt;}
.ws25{word-spacing:-13.186667pt;}
.ws74{word-spacing:-12.880000pt;}
.ws51{word-spacing:-12.824000pt;}
.ws32{word-spacing:-12.818667pt;}
.ws60{word-spacing:-12.656000pt;}
.ws67{word-spacing:-12.600000pt;}
.ws31{word-spacing:-12.512000pt;}
.ws77{word-spacing:-12.426667pt;}
.ws53{word-spacing:-12.376000pt;}
.ws52{word-spacing:-12.320000pt;}
.ws63{word-spacing:-12.096000pt;}
.ws5b{word-spacing:-11.928000pt;}
.ws64{word-spacing:-11.872000pt;}
.ws46{word-spacing:-11.856000pt;}
.ws75{word-spacing:-11.648000pt;}
.ws13{word-spacing:-11.610667pt;}
.ws27{word-spacing:-11.084773pt;}
.ws29{word-spacing:-10.548413pt;}
.ws61{word-spacing:-10.218824pt;}
.ws35{word-spacing:-10.047811pt;}
.ws4d{word-spacing:-9.936000pt;}
.ws62{word-spacing:-9.729104pt;}
.ws3b{word-spacing:-6.256000pt;}
.ws69{word-spacing:-5.600000pt;}
.ws6{word-spacing:-5.333333pt;}
.ws5{word-spacing:-5.280000pt;}
.ws7b{word-spacing:-5.096000pt;}
.ws7{word-spacing:-5.066667pt;}
.ws4b{word-spacing:-2.821333pt;}
.wsc{word-spacing:-2.016000pt;}
.ws1b{word-spacing:-1.840000pt;}
.ws1a{word-spacing:-1.410667pt;}
.ws7a{word-spacing:-1.400000pt;}
.ws2d{word-spacing:-1.288000pt;}
.ws78{word-spacing:-1.120000pt;}
.ws30{word-spacing:-0.981333pt;}
.ws79{word-spacing:-0.840000pt;}
.ws17{word-spacing:-0.797333pt;}
.ws6e{word-spacing:-0.784000pt;}
.ws6a{word-spacing:-0.616000pt;}
.ws8{word-spacing:-0.373333pt;}
.ws55{word-spacing:-0.184000pt;}
.ws2a{word-spacing:-0.106667pt;}
.wsd{word-spacing:-0.074667pt;}
.ws6c{word-spacing:-0.056000pt;}
.ws2{word-spacing:0.000000pt;}
.ws36{word-spacing:0.061333pt;}
.ws18{word-spacing:0.122667pt;}
.ws6d{word-spacing:0.168000pt;}
.ws70{word-spacing:0.224000pt;}
.ws16{word-spacing:0.245333pt;}
.ws2b{word-spacing:0.266667pt;}
.ws57{word-spacing:0.280000pt;}
.ws19{word-spacing:0.306667pt;}
.ws1c{word-spacing:0.368000pt;}
.ws6b{word-spacing:0.392000pt;}
.ws7f{word-spacing:0.426667pt;}
.ws15{word-spacing:0.429333pt;}
.ws4{word-spacing:0.480000pt;}
.wsf{word-spacing:0.490667pt;}
.ws3{word-spacing:0.504000pt;}
.ws9{word-spacing:0.522667pt;}
.ws7e{word-spacing:0.533333pt;}
.ws7d{word-spacing:0.640000pt;}
.ws5a{word-spacing:0.672000pt;}
.ws10{word-spacing:0.674667pt;}
.ws80{word-spacing:0.693333pt;}
.ws59{word-spacing:0.728000pt;}
.wse{word-spacing:0.736000pt;}
.ws2c{word-spacing:0.797333pt;}
.ws7c{word-spacing:0.840000pt;}
.ws39{word-spacing:0.858667pt;}
.ws14{word-spacing:0.896000pt;}
.ws37{word-spacing:0.920000pt;}
.ws6f{word-spacing:0.952000pt;}
.ws47{word-spacing:0.981333pt;}
.wsb{word-spacing:1.152000pt;}
.ws49{word-spacing:1.165333pt;}
.ws2f{word-spacing:1.288000pt;}
.ws71{word-spacing:1.400000pt;}
.ws48{word-spacing:1.410667pt;}
.ws2e{word-spacing:1.472000pt;}
.ws68{word-spacing:1.512000pt;}
.ws4a{word-spacing:1.533333pt;}
.ws54{word-spacing:1.778667pt;}
.ws11{word-spacing:1.962667pt;}
.wsa{word-spacing:2.784000pt;}
.ws3a{word-spacing:3.066667pt;}
.ws58{word-spacing:4.872000pt;}
.ws38{word-spacing:4.968000pt;}
.ws56{word-spacing:5.936000pt;}
._c{margin-left:-8.600533pt;}
._b{margin-left:-6.872000pt;}
._8{margin-left:-5.537600pt;}
._9{margin-left:-4.413600pt;}
._a{margin-left:-3.392267pt;}
._5{margin-left:-2.428267pt;}
._2{margin-left:-0.922667pt;}
._3{width:1.461600pt;}
._4{width:3.147200pt;}
._7{width:4.858400pt;}
._6{width:5.978133pt;}
._d{width:7.006443pt;}
._e{width:8.009737pt;}
._f{width:9.053600pt;}
._10{width:9.957455pt;}
._1{width:11.680000pt;}
._11{width:13.077333pt;}
._15{width:14.114933pt;}
._13{width:19.871200pt;}
._12{width:20.830133pt;}
._14{width:38.617920pt;}
._0{width:514.133333pt;}
.fsb{font-size:27.984000pt;}
.fsd{font-size:32.648000pt;}
.fsa{font-size:35.757333pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs4{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.fs6{font-size:177.075733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.yf8{bottom:94.434000pt;}
.y1f{bottom:94.440667pt;}
.y47{bottom:94.461333pt;}
.y70{bottom:94.485200pt;}
.y94{bottom:97.150933pt;}
.y6f{bottom:112.588000pt;}
.y1e{bottom:112.917333pt;}
.y46{bottom:113.091333pt;}
.yf7{bottom:113.516000pt;}
.y93{bottom:113.598400pt;}
.yb8{bottom:116.263733pt;}
.y6e{bottom:130.742667pt;}
.y1d{bottom:131.394000pt;}
.y92{bottom:131.597067pt;}
.y45{bottom:131.721333pt;}
.yb7{bottom:135.377333pt;}
.yd8{bottom:136.232000pt;}
.yf6{bottom:140.158000pt;}
.y117{bottom:141.261333pt;}
.y6d{bottom:148.897333pt;}
.y1c{bottom:149.870667pt;}
.y44{bottom:150.351333pt;}
.yb6{bottom:151.824000pt;}
.yd7{bottom:155.496000pt;}
.yf5{bottom:159.240000pt;}
.y116{bottom:159.261333pt;}
.y6c{bottom:167.052000pt;}
.y1b{bottom:168.347333pt;}
.y43{bottom:168.981333pt;}
.yb5{bottom:169.822667pt;}
.y91{bottom:170.736000pt;}
.yd6{bottom:174.760000pt;}
.y115{bottom:177.261333pt;}
.y6b{bottom:185.206667pt;}
.yf4{bottom:185.882000pt;}
.y1a{bottom:186.824000pt;}
.y42{bottom:187.611333pt;}
.y90{bottom:189.872000pt;}
.yd5{bottom:194.024000pt;}
.y114{bottom:195.261333pt;}
.y6a{bottom:203.361333pt;}
.yf3{bottom:204.964000pt;}
.y19{bottom:205.300667pt;}
.y41{bottom:206.241333pt;}
.yb4{bottom:208.994667pt;}
.y8f{bottom:209.082667pt;}
.yd4{bottom:220.848000pt;}
.y69{bottom:221.516000pt;}
.y18{bottom:223.777333pt;}
.y40{bottom:224.871333pt;}
.yb3{bottom:227.532667pt;}
.y8e{bottom:228.218667pt;}
.y113{bottom:231.261333pt;}
.yf2{bottom:231.606000pt;}
.y68{bottom:239.670667pt;}
.yd3{bottom:240.112000pt;}
.y17{bottom:242.254000pt;}
.y3f{bottom:243.501333pt;}
.yb2{bottom:246.070667pt;}
.y8d{bottom:247.354667pt;}
.y112{bottom:249.261333pt;}
.yf1{bottom:250.688000pt;}
.y67{bottom:257.825333pt;}
.yd2{bottom:259.376000pt;}
.y16{bottom:260.730667pt;}
.y15{bottom:260.732000pt;}
.y3e{bottom:262.131333pt;}
.yb1{bottom:264.608667pt;}
.y8c{bottom:266.490667pt;}
.y111{bottom:267.261333pt;}
.yf0{bottom:269.770000pt;}
.y66{bottom:275.980000pt;}
.y3d{bottom:280.761333pt;}
.yb0{bottom:283.146667pt;}
.y110{bottom:285.261333pt;}
.y8b{bottom:285.626667pt;}
.yd1{bottom:286.200000pt;}
.yef{bottom:288.852000pt;}
.y65{bottom:294.134667pt;}
.y3c{bottom:299.391333pt;}
.yaf{bottom:301.684667pt;}
.y10f{bottom:303.261333pt;}
.y8a{bottom:304.762667pt;}
.yd0{bottom:305.464000pt;}
.y64{bottom:312.289333pt;}
.yee{bottom:315.494000pt;}
.y3b{bottom:318.021333pt;}
.yae{bottom:320.303333pt;}
.y14{bottom:323.670667pt;}
.y89{bottom:323.898667pt;}
.ycf{bottom:324.728000pt;}
.y63{bottom:330.444000pt;}
.yed{bottom:334.576000pt;}
.y3a{bottom:336.651333pt;}
.yad{bottom:338.841333pt;}
.y10e{bottom:339.261333pt;}
.y13{bottom:342.804000pt;}
.y88{bottom:343.034667pt;}
.yce{bottom:343.992000pt;}
.y62{bottom:348.598667pt;}
.yec{bottom:353.658000pt;}
.y39{bottom:355.281333pt;}
.y10d{bottom:357.261333pt;}
.yac{bottom:357.379333pt;}
.y12{bottom:361.937333pt;}
.y87{bottom:362.170667pt;}
.y61{bottom:366.753333pt;}
.ycd{bottom:370.816000pt;}
.y38{bottom:373.911333pt;}
.y10c{bottom:375.261333pt;}
.yab{bottom:375.917333pt;}
.yeb{bottom:380.300000pt;}
.y86{bottom:381.306667pt;}
.y60{bottom:384.908000pt;}
.y37{bottom:392.541333pt;}
.y10b{bottom:393.261333pt;}
.yaa{bottom:394.455333pt;}
.yea{bottom:399.382000pt;}
.y85{bottom:400.442667pt;}
.y5f{bottom:403.062667pt;}
.y11{bottom:407.532000pt;}
.y36{bottom:411.171333pt;}
.y10a{bottom:411.261333pt;}
.ya9{bottom:412.993333pt;}
.ycc{bottom:417.221333pt;}
.ye9{bottom:418.464000pt;}
.y84{bottom:419.578667pt;}
.y5e{bottom:421.208000pt;}
.y35{bottom:429.801333pt;}
.ya8{bottom:431.531333pt;}
.y10{bottom:436.041333pt;}
.ycb{bottom:436.480000pt;}
.y83{bottom:438.714667pt;}
.y5d{bottom:439.362667pt;}
.y109{bottom:440.594667pt;}
.ye8{bottom:445.106000pt;}
.y34{bottom:448.431333pt;}
.ya7{bottom:450.069333pt;}
.yca{bottom:455.738667pt;}
.y5c{bottom:457.517333pt;}
.y82{bottom:457.908000pt;}
.ye7{bottom:464.181333pt;}
.yf{bottom:464.505333pt;}
.y33{bottom:467.061333pt;}
.ya6{bottom:468.607333pt;}
.yc9{bottom:474.997333pt;}
.y5b{bottom:475.641333pt;}
.y81{bottom:477.044000pt;}
.y108{bottom:477.424000pt;}
.y32{bottom:485.691333pt;}
.ya5{bottom:487.145333pt;}
.ye6{bottom:490.823333pt;}
.ye{bottom:492.969333pt;}
.y5a{bottom:493.796000pt;}
.yc8{bottom:494.256000pt;}
.y107{bottom:495.428000pt;}
.y80{bottom:496.180000pt;}
.y31{bottom:504.321333pt;}
.ya4{bottom:505.683333pt;}
.ye5{bottom:509.885333pt;}
.y59{bottom:511.950667pt;}
.y106{bottom:513.432000pt;}
.yc7{bottom:513.514667pt;}
.y7f{bottom:515.316000pt;}
.yd{bottom:521.433333pt;}
.y30{bottom:522.951333pt;}
.ya3{bottom:524.236000pt;}
.y58{bottom:530.105333pt;}
.yc6{bottom:532.773333pt;}
.y7e{bottom:534.452000pt;}
.ye4{bottom:536.527333pt;}
.y105{bottom:538.996000pt;}
.y2f{bottom:541.581333pt;}
.ya2{bottom:542.774000pt;}
.y57{bottom:548.260000pt;}
.yc{bottom:549.897333pt;}
.yc5{bottom:552.032000pt;}
.y7d{bottom:553.588000pt;}
.ye3{bottom:555.609333pt;}
.y104{bottom:557.000000pt;}
.y2e{bottom:560.211333pt;}
.ya1{bottom:561.370667pt;}
.y56{bottom:566.414667pt;}
.yc4{bottom:571.290667pt;}
.y7c{bottom:572.724000pt;}
.y103{bottom:575.004000pt;}
.yb{bottom:578.361333pt;}
.y2d{bottom:578.841333pt;}
.ya0{bottom:579.908667pt;}
.ye2{bottom:582.251333pt;}
.y55{bottom:584.569333pt;}
.yc3{bottom:590.549333pt;}
.y7b{bottom:591.860000pt;}
.y2c{bottom:597.471333pt;}
.y9f{bottom:598.446667pt;}
.y102{bottom:600.568000pt;}
.ye1{bottom:601.333333pt;}
.y54{bottom:602.724000pt;}
.ya{bottom:606.833333pt;}
.yc2{bottom:609.808000pt;}
.y7a{bottom:610.996000pt;}
.y2b{bottom:616.101333pt;}
.y9e{bottom:616.984667pt;}
.y101{bottom:618.572000pt;}
.y53{bottom:620.878667pt;}
.ye0{bottom:627.975333pt;}
.yc1{bottom:629.066667pt;}
.y79{bottom:630.132000pt;}
.y2a{bottom:634.731333pt;}
.y9d{bottom:635.522667pt;}
.y52{bottom:639.033333pt;}
.y100{bottom:644.136000pt;}
.ydf{bottom:647.034000pt;}
.yc0{bottom:648.325333pt;}
.y78{bottom:649.313333pt;}
.y29{bottom:653.361333pt;}
.y9c{bottom:654.060667pt;}
.y51{bottom:657.185333pt;}
.y9{bottom:661.789333pt;}
.yff{bottom:662.140000pt;}
.yde{bottom:666.116000pt;}
.ybf{bottom:667.584000pt;}
.y77{bottom:668.449333pt;}
.y28{bottom:671.991333pt;}
.y9b{bottom:672.598667pt;}
.y50{bottom:675.330667pt;}
.y8{bottom:680.922667pt;}
.ybe{bottom:686.842667pt;}
.y76{bottom:687.585333pt;}
.yfe{bottom:687.704000pt;}
.y27{bottom:690.621333pt;}
.y9a{bottom:691.136667pt;}
.ydd{bottom:692.758000pt;}
.y4f{bottom:693.485333pt;}
.y7{bottom:700.056000pt;}
.yfd{bottom:705.708000pt;}
.ybd{bottom:706.101333pt;}
.y75{bottom:706.721333pt;}
.y26{bottom:709.251333pt;}
.y99{bottom:709.682000pt;}
.y4e{bottom:711.640000pt;}
.ydc{bottom:711.840000pt;}
.y6{bottom:719.189333pt;}
.yfc{bottom:723.712000pt;}
.ybc{bottom:725.362667pt;}
.y74{bottom:725.857333pt;}
.y25{bottom:727.881333pt;}
.y98{bottom:728.249333pt;}
.y4d{bottom:729.782667pt;}
.ydb{bottom:738.482000pt;}
.ybb{bottom:744.622667pt;}
.y73{bottom:744.993333pt;}
.y5{bottom:745.882667pt;}
.y24{bottom:746.511333pt;}
.y97{bottom:746.787333pt;}
.y4c{bottom:747.937333pt;}
.yfb{bottom:749.276000pt;}
.yda{bottom:757.564000pt;}
.yba{bottom:763.884000pt;}
.y72{bottom:764.129333pt;}
.y4{bottom:765.016000pt;}
.y23{bottom:765.141333pt;}
.y96{bottom:765.325333pt;}
.y4b{bottom:766.092000pt;}
.yfa{bottom:767.280000pt;}
.yb9{bottom:783.142667pt;}
.y71{bottom:783.265333pt;}
.y22{bottom:783.771333pt;}
.y95{bottom:783.863333pt;}
.y3{bottom:784.149333pt;}
.yd9{bottom:784.206000pt;}
.y4a{bottom:784.246667pt;}
.yf9{bottom:785.284000pt;}
.y21{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y20{bottom:842.834667pt;}
.y49{bottom:858.834667pt;}
.y48{bottom:874.834667pt;}
.h13{height:35.026354pt;}
.h11{height:35.029021pt;}
.hb{height:35.833333pt;}
.h9{height:40.604167pt;}
.ha{height:43.619792pt;}
.h18{height:45.286458pt;}
.h12{height:45.679688pt;}
.h14{height:45.800781pt;}
.h4{height:50.755208pt;}
.h3{height:53.292969pt;}
.h17{height:53.319635pt;}
.h16{height:53.372969pt;}
.h15{height:53.386302pt;}
.h8{height:58.368490pt;}
.he{height:58.379156pt;}
.hd{height:58.405823pt;}
.hc{height:58.416490pt;}
.hf{height:58.491156pt;}
.h10{height:58.575956pt;}
.h2{height:63.444010pt;}
.h5{height:71.057292pt;}
.h6{height:91.359375pt;}
.h7{height:168.515920pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x7{left:71.642667pt;}
.x4{left:74.301733pt;}
.x1{left:75.590533pt;}
.x8{left:92.769333pt;}
.x6{left:93.967333pt;}
.x9{left:94.872000pt;}
.x5{left:113.379333pt;}
.x3{left:206.248000pt;}
.x2{left:207.480000pt;}
}




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