
    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_6a2caf8c3e476703d66a9232.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_6dc6f69931ef70acacac12ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.759000;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_0425270d79f2d67f89d02a84.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973000;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_a0eb15c6cb796a122fecec24.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_95e51bfe0fd3d8b893bf4c64.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.955000;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_8e54080e389906453bd153f6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.029000;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_a21b4c5c2d15e555ba1ea3b3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.966000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-20.979000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.042000px;}
.ls34{letter-spacing:-2.079000px;}
.ls43{letter-spacing:-0.330561px;}
.ls13{letter-spacing:0.000000px;}
.ls3d{letter-spacing:0.183645px;}
.ls44{letter-spacing:0.189000px;}
.ls1a{letter-spacing:0.504000px;}
.ls3c{letter-spacing:0.567000px;}
.ls2c{letter-spacing:0.630000px;}
.ls2f{letter-spacing:0.693000px;}
.ls24{letter-spacing:0.703080px;}
.ls10{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.734280px;}
.ls1b{letter-spacing:0.756000px;}
.ls5{letter-spacing:0.765000px;}
.ls45{letter-spacing:0.819000px;}
.ls1{letter-spacing:0.840000px;}
.ls37{letter-spacing:0.855000px;}
.ls2e{letter-spacing:0.881496px;}
.ls3a{letter-spacing:0.882000px;}
.ls3{letter-spacing:0.900000px;}
.lsf{letter-spacing:0.945000px;}
.ls1c{letter-spacing:1.008000px;}
.ls38{letter-spacing:1.035000px;}
.ls3e{letter-spacing:1.050000px;}
.ls32{letter-spacing:1.134000px;}
.ls6{letter-spacing:1.170000px;}
.ls30{letter-spacing:1.197000px;}
.ls14{letter-spacing:1.260000px;}
.ls28{letter-spacing:1.305000px;}
.ls1d{letter-spacing:1.323000px;}
.ls4{letter-spacing:1.350000px;}
.ls23{letter-spacing:1.386000px;}
.lsd{letter-spacing:1.395000px;}
.ls29{letter-spacing:1.417500px;}
.ls40{letter-spacing:1.440000px;}
.ls2a{letter-spacing:1.449000px;}
.lsb{letter-spacing:1.485000px;}
.ls1f{letter-spacing:1.512000px;}
.ls9{letter-spacing:1.530000px;}
.ls16{letter-spacing:1.575000px;}
.ls3f{letter-spacing:1.620000px;}
.ls12{letter-spacing:1.638000px;}
.ls2{letter-spacing:1.680000px;}
.ls18{letter-spacing:1.701000px;}
.lsc{letter-spacing:1.710000px;}
.ls36{letter-spacing:1.755000px;}
.ls1e{letter-spacing:1.764000px;}
.ls35{letter-spacing:1.788480px;}
.ls8{letter-spacing:1.800000px;}
.ls15{letter-spacing:1.827000px;}
.ls7{letter-spacing:1.845000px;}
.lsa{letter-spacing:1.890000px;}
.ls19{letter-spacing:1.953000px;}
.ls17{letter-spacing:2.016000px;}
.ls26{letter-spacing:2.070000px;}
.ls21{letter-spacing:2.079000px;}
.ls22{letter-spacing:2.142000px;}
.ls41{letter-spacing:2.160000px;}
.ls20{letter-spacing:2.205000px;}
.ls2d{letter-spacing:2.268000px;}
.ls27{letter-spacing:2.295000px;}
.ls42{letter-spacing:2.331000px;}
.lse{letter-spacing:2.340000px;}
.ls31{letter-spacing:2.394000px;}
.ls25{letter-spacing:2.430000px;}
.ls2b{letter-spacing:2.457000px;}
.ls33{letter-spacing:2.583000px;}
.ls3b{letter-spacing:2.646000px;}
.ls39{letter-spacing:2.925000px;}
.ls46{letter-spacing:3.087000px;}
.ls11{letter-spacing:8.100000px;}
.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;}
}
.ws44{word-spacing:-16.695000px;}
.ws0{word-spacing:-16.380000px;}
.ws45{word-spacing:-15.939000px;}
.ws3f{word-spacing:-15.876000px;}
.ws85{word-spacing:-15.813000px;}
.ws40{word-spacing:-15.750000px;}
.ws41{word-spacing:-15.687000px;}
.wsb0{word-spacing:-15.624000px;}
.ws86{word-spacing:-15.435000px;}
.ws88{word-spacing:-15.372000px;}
.ws1{word-spacing:-15.057000px;}
.ws43{word-spacing:-14.994000px;}
.ws84{word-spacing:-14.805000px;}
.ws42{word-spacing:-14.301000px;}
.ws46{word-spacing:-12.222000px;}
.ws87{word-spacing:-8.521128px;}
.wsb1{word-spacing:-8.006922px;}
.wsb5{word-spacing:-4.536000px;}
.wsc5{word-spacing:-4.473000px;}
.ws9f{word-spacing:-4.347000px;}
.ws16{word-spacing:-4.284000px;}
.ws4a{word-spacing:-3.969000px;}
.ws24{word-spacing:-3.780000px;}
.wsa9{word-spacing:-3.717000px;}
.wsd{word-spacing:-3.591000px;}
.ws49{word-spacing:-3.465000px;}
.wsa0{word-spacing:-3.402000px;}
.ws4f{word-spacing:-3.276000px;}
.ws90{word-spacing:-3.087000px;}
.ws9{word-spacing:-3.024000px;}
.ws8e{word-spacing:-2.961000px;}
.wsaf{word-spacing:-2.925000px;}
.ws77{word-spacing:-2.898000px;}
.ws50{word-spacing:-2.772000px;}
.ws51{word-spacing:-2.646000px;}
.ws6d{word-spacing:-2.583000px;}
.ws96{word-spacing:-2.520000px;}
.ws2c{word-spacing:-2.457000px;}
.ws67{word-spacing:-2.430000px;}
.ws63{word-spacing:-2.394000px;}
.ws3d{word-spacing:-2.340000px;}
.ws6a{word-spacing:-2.295000px;}
.ws95{word-spacing:-2.268000px;}
.ws68{word-spacing:-2.205000px;}
.wsc8{word-spacing:-2.160000px;}
.ws94{word-spacing:-2.079000px;}
.ws69{word-spacing:-2.070000px;}
.ws39{word-spacing:-1.890000px;}
.ws36{word-spacing:-1.845000px;}
.ws79{word-spacing:-1.827000px;}
.ws37{word-spacing:-1.800000px;}
.ws21{word-spacing:-1.764000px;}
.wsac{word-spacing:-1.755000px;}
.ws3b{word-spacing:-1.710000px;}
.ws32{word-spacing:-1.680000px;}
.ws91{word-spacing:-1.638000px;}
.wsc7{word-spacing:-1.620000px;}
.wsab{word-spacing:-1.575000px;}
.ws38{word-spacing:-1.530000px;}
.ws3a{word-spacing:-1.485000px;}
.wsc{word-spacing:-1.449000px;}
.ws6c{word-spacing:-1.440000px;}
.ws3c{word-spacing:-1.395000px;}
.ws1d{word-spacing:-1.386000px;}
.ws3{word-spacing:-1.350000px;}
.ws8d{word-spacing:-1.323000px;}
.ws6b{word-spacing:-1.305000px;}
.ws13{word-spacing:-1.260000px;}
.ws58{word-spacing:-1.197000px;}
.ws35{word-spacing:-1.170000px;}
.ws47{word-spacing:-1.071000px;}
.wsc6{word-spacing:-1.050000px;}
.wsae{word-spacing:-1.035000px;}
.ws23{word-spacing:-1.008000px;}
.ws3e{word-spacing:-0.945000px;}
.ws33{word-spacing:-0.900000px;}
.ws5a{word-spacing:-0.881496px;}
.wsad{word-spacing:-0.855000px;}
.ws1c{word-spacing:-0.840000px;}
.ws9e{word-spacing:-0.819000px;}
.ws34{word-spacing:-0.765000px;}
.ws14{word-spacing:-0.756000px;}
.ws2{word-spacing:-0.720000px;}
.wsa4{word-spacing:-0.567000px;}
.ws7d{word-spacing:-0.504000px;}
.wsb6{word-spacing:-0.441000px;}
.ws5f{word-spacing:-0.315000px;}
.ws18{word-spacing:-0.252000px;}
.wsc3{word-spacing:-0.189000px;}
.wsb{word-spacing:-0.063000px;}
.ws5{word-spacing:0.000000px;}
.ws9d{word-spacing:0.252000px;}
.ws92{word-spacing:0.315000px;}
.ws8{word-spacing:0.630000px;}
.wsa5{word-spacing:0.693000px;}
.ws71{word-spacing:0.756000px;}
.ws1f{word-spacing:0.819000px;}
.wsbf{word-spacing:0.882000px;}
.wsa3{word-spacing:1.071000px;}
.wsb9{word-spacing:1.134000px;}
.ws70{word-spacing:1.197000px;}
.wsaa{word-spacing:1.260000px;}
.ws60{word-spacing:1.323000px;}
.ws93{word-spacing:1.449000px;}
.wsa2{word-spacing:1.512000px;}
.ws6{word-spacing:1.575000px;}
.ws2f{word-spacing:1.638000px;}
.ws2d{word-spacing:1.764000px;}
.wsba{word-spacing:1.827000px;}
.wsa7{word-spacing:1.890000px;}
.ws72{word-spacing:1.953000px;}
.wsbb{word-spacing:2.016000px;}
.ws25{word-spacing:2.079000px;}
.ws1a{word-spacing:2.142000px;}
.wsbe{word-spacing:2.205000px;}
.ws5d{word-spacing:2.268000px;}
.ws1b{word-spacing:2.331000px;}
.ws19{word-spacing:2.394000px;}
.ws64{word-spacing:2.457000px;}
.wsa1{word-spacing:2.520000px;}
.ws9b{word-spacing:2.583000px;}
.ws97{word-spacing:2.709000px;}
.wse{word-spacing:2.835000px;}
.ws1e{word-spacing:2.898000px;}
.ws7a{word-spacing:2.961000px;}
.wsb8{word-spacing:3.024000px;}
.ws4e{word-spacing:3.150000px;}
.ws52{word-spacing:3.213000px;}
.ws2a{word-spacing:3.276000px;}
.ws5e{word-spacing:3.339000px;}
.ws15{word-spacing:3.402000px;}
.ws76{word-spacing:3.528000px;}
.wsc0{word-spacing:3.591000px;}
.ws7c{word-spacing:3.654000px;}
.wsb4{word-spacing:3.717000px;}
.ws4{word-spacing:3.780000px;}
.ws74{word-spacing:3.843000px;}
.ws75{word-spacing:3.906000px;}
.ws6f{word-spacing:4.095000px;}
.ws57{word-spacing:4.158000px;}
.ws2e{word-spacing:4.284000px;}
.ws5b{word-spacing:4.347000px;}
.ws48{word-spacing:4.410000px;}
.ws8c{word-spacing:4.536000px;}
.ws11{word-spacing:4.599000px;}
.wsa{word-spacing:4.662000px;}
.ws8a{word-spacing:4.788000px;}
.ws54{word-spacing:4.914000px;}
.wsb3{word-spacing:5.040000px;}
.ws5c{word-spacing:5.103000px;}
.ws10{word-spacing:5.355000px;}
.ws83{word-spacing:5.418000px;}
.wsc1{word-spacing:5.481000px;}
.ws20{word-spacing:5.607000px;}
.ws30{word-spacing:5.670000px;}
.ws12{word-spacing:5.733000px;}
.wsa6{word-spacing:5.922000px;}
.ws62{word-spacing:5.985000px;}
.ws89{word-spacing:6.111000px;}
.ws66{word-spacing:6.174000px;}
.ws4d{word-spacing:6.237000px;}
.ws56{word-spacing:6.300000px;}
.ws81{word-spacing:6.363000px;}
.ws8b{word-spacing:6.552000px;}
.ws82{word-spacing:6.615000px;}
.ws98{word-spacing:6.741000px;}
.ws55{word-spacing:6.867000px;}
.ws78{word-spacing:6.930000px;}
.ws6e{word-spacing:6.993000px;}
.wsa8{word-spacing:7.056000px;}
.ws7{word-spacing:7.182000px;}
.ws80{word-spacing:7.308000px;}
.wsc2{word-spacing:7.371000px;}
.wsb2{word-spacing:7.497000px;}
.ws65{word-spacing:7.560000px;}
.ws17{word-spacing:7.623000px;}
.wsbd{word-spacing:7.686000px;}
.ws26{word-spacing:7.749000px;}
.ws9c{word-spacing:8.127000px;}
.ws22{word-spacing:8.442000px;}
.ws73{word-spacing:8.568000px;}
.wsf{word-spacing:9.702000px;}
.ws29{word-spacing:9.765000px;}
.ws7b{word-spacing:9.891000px;}
.ws7e{word-spacing:9.954000px;}
.ws59{word-spacing:10.017000px;}
.ws61{word-spacing:10.080000px;}
.ws4b{word-spacing:10.584000px;}
.ws28{word-spacing:10.647000px;}
.ws2b{word-spacing:11.277000px;}
.ws99{word-spacing:11.781000px;}
.ws31{word-spacing:12.285000px;}
.ws27{word-spacing:12.915000px;}
.ws53{word-spacing:13.230000px;}
.ws8f{word-spacing:13.986000px;}
.wsb7{word-spacing:14.175000px;}
.wsbc{word-spacing:15.120000px;}
.ws4c{word-spacing:16.821000px;}
.ws7f{word-spacing:18.711000px;}
.ws9a{word-spacing:19.404000px;}
.wsc4{word-spacing:25.704000px;}
._23{margin-left:-43.491600px;}
._1c{margin-left:-35.451000px;}
._13{margin-left:-32.935500px;}
._22{margin-left:-30.995100px;}
._1d{margin-left:-29.845800px;}
._c{margin-left:-28.242600px;}
._a{margin-left:-26.057700px;}
._9{margin-left:-23.627700px;}
._15{margin-left:-22.057200px;}
._1b{margin-left:-19.954800px;}
._6{margin-left:-18.814500px;}
._b{margin-left:-16.718400px;}
._8{margin-left:-15.652800px;}
._14{margin-left:-13.493700px;}
._21{margin-left:-12.057300px;}
._7{margin-left:-5.486700px;}
._2{margin-left:-3.477600px;}
._4{margin-left:-2.398500px;}
._1{margin-left:-1.182600px;}
._0{width:1.776600px;}
._3{width:2.847600px;}
._5{width:4.617900px;}
._1e{width:5.742900px;}
._d{width:6.840000px;}
._11{width:8.649000px;}
._f{width:9.868500px;}
._1f{width:10.939500px;}
._1a{width:13.585500px;}
._e{width:14.661000px;}
._10{width:16.461000px;}
._18{width:18.549000px;}
._17{width:20.344500px;}
._19{width:21.532500px;}
._12{width:22.864500px;}
._16{width:24.088500px;}
._20{width:31.855500px;}
.fc1{color:rgb(57,53,54);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:36.000000px;}
.fs3{font-size:36.729000px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:63.000000px;}
.fs5{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:27.049650px;}
.y2{bottom:61.653450px;}
.yb8{bottom:62.190450px;}
.y10b{bottom:64.887450px;}
.y78{bottom:64.912200px;}
.yae{bottom:64.934700px;}
.ybc{bottom:64.941450px;}
.yf2{bottom:67.814550px;}
.y136{bottom:69.433200px;}
.yb7{bottom:75.690450px;}
.y33{bottom:76.504950px;}
.y1e{bottom:76.534200px;}
.ybb{bottom:82.849200px;}
.y10a{bottom:82.889700px;}
.y77{bottom:82.914450px;}
.yad{bottom:82.936950px;}
.y4d{bottom:86.855400px;}
.yb6{bottom:89.190450px;}
.y32{bottom:94.507200px;}
.y1d{bottom:94.536450px;}
.y135{bottom:96.428700px;}
.yf1{bottom:98.539500px;}
.y4c{bottom:100.355400px;}
.yba{bottom:100.851450px;}
.y109{bottom:100.891950px;}
.y76{bottom:100.916700px;}
.yac{bottom:100.939200px;}
.yb5{bottom:102.690450px;}
.y134{bottom:109.931700px;}
.yf0{bottom:112.039500px;}
.y31{bottom:112.509450px;}
.y1c{bottom:112.538700px;}
.y4b{bottom:113.855400px;}
.yb4{bottom:116.190450px;}
.yb9{bottom:118.853700px;}
.y108{bottom:118.894200px;}
.y75{bottom:118.918950px;}
.yab{bottom:118.941450px;}
.y133{bottom:123.434700px;}
.yef{bottom:125.539500px;}
.y4a{bottom:127.355400px;}
.yb3{bottom:129.690450px;}
.y30{bottom:130.511700px;}
.y1b{bottom:130.540950px;}
.yaa{bottom:136.855950px;}
.y107{bottom:136.896450px;}
.y74{bottom:136.921200px;}
.y132{bottom:136.937700px;}
.yee{bottom:139.039500px;}
.yb2{bottom:143.190450px;}
.y2f{bottom:148.513950px;}
.y1a{bottom:148.543200px;}
.y131{bottom:150.440700px;}
.yed{bottom:152.539500px;}
.ya9{bottom:154.858200px;}
.y106{bottom:154.898700px;}
.yda{bottom:154.923450px;}
.yb1{bottom:156.690450px;}
.y49{bottom:161.105400px;}
.y130{bottom:163.943700px;}
.yec{bottom:166.039500px;}
.y2e{bottom:166.516200px;}
.y19{bottom:166.545450px;}
.ya8{bottom:172.860450px;}
.y105{bottom:172.900950px;}
.y73{bottom:172.925700px;}
.y48{bottom:174.605400px;}
.y2d{bottom:184.518450px;}
.y18{bottom:184.547700px;}
.y47{bottom:188.105400px;}
.y12f{bottom:190.808700px;}
.ya7{bottom:190.862700px;}
.y104{bottom:190.903200px;}
.y72{bottom:190.927950px;}
.yeb{bottom:194.098050px;}
.y13c{bottom:196.662600px;}
.y46{bottom:201.605400px;}
.y2c{bottom:202.520700px;}
.y17{bottom:202.549950px;}
.yea{bottom:207.598050px;}
.y12e{bottom:208.810950px;}
.ya6{bottom:208.864950px;}
.y103{bottom:208.905450px;}
.y71{bottom:208.930200px;}
.y45{bottom:215.105400px;}
.y2b{bottom:220.522950px;}
.y16{bottom:220.552200px;}
.ye9{bottom:221.098050px;}
.y12d{bottom:226.813200px;}
.ya5{bottom:226.867200px;}
.y102{bottom:226.907700px;}
.y70{bottom:226.932450px;}
.y44{bottom:228.605400px;}
.ye8{bottom:234.598050px;}
.y2a{bottom:238.525200px;}
.y15{bottom:238.554450px;}
.y43{bottom:242.105400px;}
.y12c{bottom:244.815450px;}
.ya4{bottom:244.869450px;}
.y101{bottom:244.909950px;}
.y6f{bottom:244.934700px;}
.ye7{bottom:248.098050px;}
.y42{bottom:255.605400px;}
.y29{bottom:256.527450px;}
.y14{bottom:256.556700px;}
.y12b{bottom:262.817700px;}
.ya3{bottom:262.871700px;}
.y100{bottom:262.912200px;}
.y6e{bottom:262.936950px;}
.y41{bottom:269.105400px;}
.y28{bottom:274.529700px;}
.y13{bottom:274.558950px;}
.ye6{bottom:279.035550px;}
.y12a{bottom:280.819950px;}
.ya2{bottom:280.873950px;}
.yff{bottom:280.914450px;}
.y6d{bottom:280.939200px;}
.y40{bottom:282.605400px;}
.y85{bottom:286.910550px;}
.y27{bottom:292.531950px;}
.ye5{bottom:292.535550px;}
.y12{bottom:292.561200px;}
.y3f{bottom:296.105400px;}
.y129{bottom:298.822200px;}
.ya1{bottom:298.876200px;}
.yfe{bottom:298.916700px;}
.y6c{bottom:298.941450px;}
.y84{bottom:300.410550px;}
.ye4{bottom:306.035550px;}
.y3e{bottom:309.605400px;}
.y26{bottom:310.534200px;}
.y11{bottom:310.563450px;}
.y83{bottom:313.910550px;}
.y128{bottom:316.824450px;}
.ya0{bottom:316.878450px;}
.yfd{bottom:316.918950px;}
.y6b{bottom:316.934700px;}
.yd9{bottom:316.936950px;}
.ye3{bottom:319.535550px;}
.y3d{bottom:323.105400px;}
.y25{bottom:328.536450px;}
.y10{bottom:328.554450px;}
.ye2{bottom:333.035550px;}
.y127{bottom:334.826700px;}
.y9f{bottom:334.880700px;}
.yfc{bottom:334.921200px;}
.y6a{bottom:334.936950px;}
.yd8{bottom:334.939200px;}
.y3c{bottom:336.605400px;}
.y82{bottom:345.162600px;}
.ye1{bottom:346.535550px;}
.y24{bottom:346.538700px;}
.yf{bottom:346.556700px;}
.y3b{bottom:350.105400px;}
.y126{bottom:352.828950px;}
.y9e{bottom:352.882950px;}
.yfb{bottom:352.923450px;}
.y69{bottom:352.939200px;}
.yd7{bottom:352.941450px;}
.y81{bottom:358.662600px;}
.ye0{bottom:360.035550px;}
.y3a{bottom:363.605400px;}
.y23{bottom:364.540950px;}
.ye{bottom:364.558950px;}
.y125{bottom:370.831200px;}
.y9d{bottom:370.885200px;}
.yfa{bottom:370.925700px;}
.y68{bottom:370.941450px;}
.yd6{bottom:370.943700px;}
.y80{bottom:372.162600px;}
.ydf{bottom:373.535550px;}
.y39{bottom:377.105400px;}
.y22{bottom:382.543200px;}
.yd{bottom:382.561200px;}
.y7f{bottom:385.662600px;}
.y124{bottom:388.833450px;}
.y9c{bottom:388.887450px;}
.y67{bottom:388.891950px;}
.yd5{bottom:388.907700px;}
.yf9{bottom:388.927950px;}
.y38{bottom:390.605400px;}
.y21{bottom:400.545450px;}
.yc{bottom:400.563450px;}
.y37{bottom:404.105400px;}
.y123{bottom:406.835700px;}
.y9b{bottom:406.889700px;}
.y66{bottom:406.894200px;}
.yd4{bottom:406.909950px;}
.yf8{bottom:406.930200px;}
.yde{bottom:413.309250px;}
.y36{bottom:417.605400px;}
.y20{bottom:418.547700px;}
.yb{bottom:418.565700px;}
.yb0{bottom:424.249200px;}
.y122{bottom:424.837950px;}
.y9a{bottom:424.891950px;}
.y65{bottom:424.896450px;}
.yd3{bottom:424.912200px;}
.yf7{bottom:424.932450px;}
.ydd{bottom:426.809250px;}
.y35{bottom:431.105400px;}
.ya{bottom:436.549950px;}
.yaf{bottom:437.749200px;}
.ydc{bottom:440.309250px;}
.y121{bottom:442.840200px;}
.y99{bottom:442.894200px;}
.y64{bottom:442.898700px;}
.yd2{bottom:442.914450px;}
.yf6{bottom:442.934700px;}
.y9{bottom:454.552200px;}
.y13b{bottom:457.724400px;}
.y120{bottom:460.842450px;}
.y98{bottom:460.896450px;}
.y63{bottom:460.900950px;}
.yd1{bottom:460.916700px;}
.yf5{bottom:460.936950px;}
.y13a{bottom:471.224400px;}
.y8{bottom:472.554450px;}
.y11f{bottom:478.844700px;}
.y97{bottom:478.898700px;}
.y62{bottom:478.903200px;}
.yd0{bottom:478.918950px;}
.yf4{bottom:478.939200px;}
.y139{bottom:484.724400px;}
.y7{bottom:490.556700px;}
.y11e{bottom:496.846950px;}
.y96{bottom:496.900950px;}
.y61{bottom:496.905450px;}
.ycf{bottom:496.921200px;}
.yf3{bottom:496.941450px;}
.y138{bottom:498.224400px;}
.y6{bottom:508.558950px;}
.y137{bottom:511.724400px;}
.y11d{bottom:514.849200px;}
.y95{bottom:514.903200px;}
.y60{bottom:514.907700px;}
.yce{bottom:514.923450px;}
.y5{bottom:526.561200px;}
.y11c{bottom:532.851450px;}
.y94{bottom:532.905450px;}
.y5f{bottom:532.909950px;}
.ycd{bottom:532.925700px;}
.y4{bottom:544.563450px;}
.y11b{bottom:550.853700px;}
.y93{bottom:550.907700px;}
.y5e{bottom:550.912200px;}
.ycc{bottom:550.927950px;}
.y3{bottom:562.565700px;}
.y11a{bottom:568.855950px;}
.y92{bottom:568.909950px;}
.y5d{bottom:568.914450px;}
.ycb{bottom:568.930200px;}
.y119{bottom:586.858200px;}
.y91{bottom:586.912200px;}
.y5c{bottom:586.916700px;}
.yca{bottom:586.932450px;}
.y118{bottom:604.860450px;}
.y90{bottom:604.914450px;}
.y5b{bottom:604.918950px;}
.yc9{bottom:604.934700px;}
.y117{bottom:622.862700px;}
.y8f{bottom:622.916700px;}
.y5a{bottom:622.921200px;}
.yc8{bottom:622.936950px;}
.ydb{bottom:626.536500px;}
.y116{bottom:640.864950px;}
.y8e{bottom:640.918950px;}
.y59{bottom:640.923450px;}
.yc7{bottom:640.939200px;}
.y115{bottom:658.867200px;}
.y8d{bottom:658.921200px;}
.y58{bottom:658.925700px;}
.yc6{bottom:658.941450px;}
.y8c{bottom:676.923450px;}
.yc5{bottom:676.925700px;}
.y57{bottom:676.927950px;}
.y114{bottom:694.871700px;}
.y8b{bottom:694.925700px;}
.yc4{bottom:694.927950px;}
.y56{bottom:694.930200px;}
.y113{bottom:712.873950px;}
.y8a{bottom:712.927950px;}
.yc3{bottom:712.930200px;}
.y55{bottom:712.932450px;}
.y112{bottom:730.876200px;}
.y89{bottom:730.930200px;}
.yc2{bottom:730.932450px;}
.y54{bottom:730.934700px;}
.y7e{bottom:732.198000px;}
.y7d{bottom:745.698000px;}
.y111{bottom:748.878450px;}
.y88{bottom:748.932450px;}
.yc1{bottom:748.934700px;}
.y53{bottom:748.936950px;}
.y7c{bottom:759.198000px;}
.y110{bottom:766.880700px;}
.y87{bottom:766.934700px;}
.yc0{bottom:766.936950px;}
.y52{bottom:766.939200px;}
.y7b{bottom:772.698000px;}
.y10f{bottom:784.882950px;}
.y86{bottom:784.936950px;}
.ybf{bottom:784.939200px;}
.y51{bottom:784.941450px;}
.y7a{bottom:786.198000px;}
.y79{bottom:799.698000px;}
.y10e{bottom:802.885200px;}
.y50{bottom:802.939200px;}
.ybe{bottom:802.941450px;}
.y1f{bottom:816.754800px;}
.y10d{bottom:820.887450px;}
.y4f{bottom:820.941450px;}
.ybd{bottom:820.943700px;}
.y34{bottom:834.958950px;}
.y10c{bottom:838.889700px;}
.y4e{bottom:838.943700px;}
.h2{height:27.432000px;}
.h15{height:31.500000px;}
.h7{height:32.004000px;}
.ha{height:34.290000px;}
.h3{height:40.176000px;}
.h8{height:44.478000px;}
.h4{height:45.108000px;}
.h10{height:47.276964px;}
.hb{height:47.294964px;}
.h13{height:47.303964px;}
.hd{height:47.312964px;}
.h6{height:47.321964px;}
.h5{height:47.339964px;}
.h11{height:47.348964px;}
.h12{height:47.420964px;}
.h14{height:47.438964px;}
.hc{height:47.483964px;}
.he{height:47.627964px;}
.hf{height:47.654964px;}
.h9{height:63.336000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:1262.835000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:31.182150px;}
.xd{left:111.826800px;}
.xb{left:132.076800px;}
.xa{left:214.671300px;}
.x8{left:297.637800px;}
.x3{left:467.716500px;}
.x4{left:497.480400px;}
.x9{left:510.244650px;}
.x6{left:850.388400px;}
.x7{left:880.155900px;}
.x5{left:892.913400px;}
.xc{left:1025.527200px;}
.x1{left:1198.941000px;}
@media print{
.v2{vertical-align:-18.648000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.704000pt;}
.ls34{letter-spacing:-1.848000pt;}
.ls43{letter-spacing:-0.293832pt;}
.ls13{letter-spacing:0.000000pt;}
.ls3d{letter-spacing:0.163240pt;}
.ls44{letter-spacing:0.168000pt;}
.ls1a{letter-spacing:0.448000pt;}
.ls3c{letter-spacing:0.504000pt;}
.ls2c{letter-spacing:0.560000pt;}
.ls2f{letter-spacing:0.616000pt;}
.ls24{letter-spacing:0.624960pt;}
.ls10{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.652693pt;}
.ls1b{letter-spacing:0.672000pt;}
.ls5{letter-spacing:0.680000pt;}
.ls45{letter-spacing:0.728000pt;}
.ls1{letter-spacing:0.746667pt;}
.ls37{letter-spacing:0.760000pt;}
.ls2e{letter-spacing:0.783552pt;}
.ls3a{letter-spacing:0.784000pt;}
.ls3{letter-spacing:0.800000pt;}
.lsf{letter-spacing:0.840000pt;}
.ls1c{letter-spacing:0.896000pt;}
.ls38{letter-spacing:0.920000pt;}
.ls3e{letter-spacing:0.933333pt;}
.ls32{letter-spacing:1.008000pt;}
.ls6{letter-spacing:1.040000pt;}
.ls30{letter-spacing:1.064000pt;}
.ls14{letter-spacing:1.120000pt;}
.ls28{letter-spacing:1.160000pt;}
.ls1d{letter-spacing:1.176000pt;}
.ls4{letter-spacing:1.200000pt;}
.ls23{letter-spacing:1.232000pt;}
.lsd{letter-spacing:1.240000pt;}
.ls29{letter-spacing:1.260000pt;}
.ls40{letter-spacing:1.280000pt;}
.ls2a{letter-spacing:1.288000pt;}
.lsb{letter-spacing:1.320000pt;}
.ls1f{letter-spacing:1.344000pt;}
.ls9{letter-spacing:1.360000pt;}
.ls16{letter-spacing:1.400000pt;}
.ls3f{letter-spacing:1.440000pt;}
.ls12{letter-spacing:1.456000pt;}
.ls2{letter-spacing:1.493333pt;}
.ls18{letter-spacing:1.512000pt;}
.lsc{letter-spacing:1.520000pt;}
.ls36{letter-spacing:1.560000pt;}
.ls1e{letter-spacing:1.568000pt;}
.ls35{letter-spacing:1.589760pt;}
.ls8{letter-spacing:1.600000pt;}
.ls15{letter-spacing:1.624000pt;}
.ls7{letter-spacing:1.640000pt;}
.lsa{letter-spacing:1.680000pt;}
.ls19{letter-spacing:1.736000pt;}
.ls17{letter-spacing:1.792000pt;}
.ls26{letter-spacing:1.840000pt;}
.ls21{letter-spacing:1.848000pt;}
.ls22{letter-spacing:1.904000pt;}
.ls41{letter-spacing:1.920000pt;}
.ls20{letter-spacing:1.960000pt;}
.ls2d{letter-spacing:2.016000pt;}
.ls27{letter-spacing:2.040000pt;}
.ls42{letter-spacing:2.072000pt;}
.lse{letter-spacing:2.080000pt;}
.ls31{letter-spacing:2.128000pt;}
.ls25{letter-spacing:2.160000pt;}
.ls2b{letter-spacing:2.184000pt;}
.ls33{letter-spacing:2.296000pt;}
.ls3b{letter-spacing:2.352000pt;}
.ls39{letter-spacing:2.600000pt;}
.ls46{letter-spacing:2.744000pt;}
.ls11{letter-spacing:7.200000pt;}
.ws44{word-spacing:-14.840000pt;}
.ws0{word-spacing:-14.560000pt;}
.ws45{word-spacing:-14.168000pt;}
.ws3f{word-spacing:-14.112000pt;}
.ws85{word-spacing:-14.056000pt;}
.ws40{word-spacing:-14.000000pt;}
.ws41{word-spacing:-13.944000pt;}
.wsb0{word-spacing:-13.888000pt;}
.ws86{word-spacing:-13.720000pt;}
.ws88{word-spacing:-13.664000pt;}
.ws1{word-spacing:-13.384000pt;}
.ws43{word-spacing:-13.328000pt;}
.ws84{word-spacing:-13.160000pt;}
.ws42{word-spacing:-12.712000pt;}
.ws46{word-spacing:-10.864000pt;}
.ws87{word-spacing:-7.574336pt;}
.wsb1{word-spacing:-7.117264pt;}
.wsb5{word-spacing:-4.032000pt;}
.wsc5{word-spacing:-3.976000pt;}
.ws9f{word-spacing:-3.864000pt;}
.ws16{word-spacing:-3.808000pt;}
.ws4a{word-spacing:-3.528000pt;}
.ws24{word-spacing:-3.360000pt;}
.wsa9{word-spacing:-3.304000pt;}
.wsd{word-spacing:-3.192000pt;}
.ws49{word-spacing:-3.080000pt;}
.wsa0{word-spacing:-3.024000pt;}
.ws4f{word-spacing:-2.912000pt;}
.ws90{word-spacing:-2.744000pt;}
.ws9{word-spacing:-2.688000pt;}
.ws8e{word-spacing:-2.632000pt;}
.wsaf{word-spacing:-2.600000pt;}
.ws77{word-spacing:-2.576000pt;}
.ws50{word-spacing:-2.464000pt;}
.ws51{word-spacing:-2.352000pt;}
.ws6d{word-spacing:-2.296000pt;}
.ws96{word-spacing:-2.240000pt;}
.ws2c{word-spacing:-2.184000pt;}
.ws67{word-spacing:-2.160000pt;}
.ws63{word-spacing:-2.128000pt;}
.ws3d{word-spacing:-2.080000pt;}
.ws6a{word-spacing:-2.040000pt;}
.ws95{word-spacing:-2.016000pt;}
.ws68{word-spacing:-1.960000pt;}
.wsc8{word-spacing:-1.920000pt;}
.ws94{word-spacing:-1.848000pt;}
.ws69{word-spacing:-1.840000pt;}
.ws39{word-spacing:-1.680000pt;}
.ws36{word-spacing:-1.640000pt;}
.ws79{word-spacing:-1.624000pt;}
.ws37{word-spacing:-1.600000pt;}
.ws21{word-spacing:-1.568000pt;}
.wsac{word-spacing:-1.560000pt;}
.ws3b{word-spacing:-1.520000pt;}
.ws32{word-spacing:-1.493333pt;}
.ws91{word-spacing:-1.456000pt;}
.wsc7{word-spacing:-1.440000pt;}
.wsab{word-spacing:-1.400000pt;}
.ws38{word-spacing:-1.360000pt;}
.ws3a{word-spacing:-1.320000pt;}
.wsc{word-spacing:-1.288000pt;}
.ws6c{word-spacing:-1.280000pt;}
.ws3c{word-spacing:-1.240000pt;}
.ws1d{word-spacing:-1.232000pt;}
.ws3{word-spacing:-1.200000pt;}
.ws8d{word-spacing:-1.176000pt;}
.ws6b{word-spacing:-1.160000pt;}
.ws13{word-spacing:-1.120000pt;}
.ws58{word-spacing:-1.064000pt;}
.ws35{word-spacing:-1.040000pt;}
.ws47{word-spacing:-0.952000pt;}
.wsc6{word-spacing:-0.933333pt;}
.wsae{word-spacing:-0.920000pt;}
.ws23{word-spacing:-0.896000pt;}
.ws3e{word-spacing:-0.840000pt;}
.ws33{word-spacing:-0.800000pt;}
.ws5a{word-spacing:-0.783552pt;}
.wsad{word-spacing:-0.760000pt;}
.ws1c{word-spacing:-0.746667pt;}
.ws9e{word-spacing:-0.728000pt;}
.ws34{word-spacing:-0.680000pt;}
.ws14{word-spacing:-0.672000pt;}
.ws2{word-spacing:-0.640000pt;}
.wsa4{word-spacing:-0.504000pt;}
.ws7d{word-spacing:-0.448000pt;}
.wsb6{word-spacing:-0.392000pt;}
.ws5f{word-spacing:-0.280000pt;}
.ws18{word-spacing:-0.224000pt;}
.wsc3{word-spacing:-0.168000pt;}
.wsb{word-spacing:-0.056000pt;}
.ws5{word-spacing:0.000000pt;}
.ws9d{word-spacing:0.224000pt;}
.ws92{word-spacing:0.280000pt;}
.ws8{word-spacing:0.560000pt;}
.wsa5{word-spacing:0.616000pt;}
.ws71{word-spacing:0.672000pt;}
.ws1f{word-spacing:0.728000pt;}
.wsbf{word-spacing:0.784000pt;}
.wsa3{word-spacing:0.952000pt;}
.wsb9{word-spacing:1.008000pt;}
.ws70{word-spacing:1.064000pt;}
.wsaa{word-spacing:1.120000pt;}
.ws60{word-spacing:1.176000pt;}
.ws93{word-spacing:1.288000pt;}
.wsa2{word-spacing:1.344000pt;}
.ws6{word-spacing:1.400000pt;}
.ws2f{word-spacing:1.456000pt;}
.ws2d{word-spacing:1.568000pt;}
.wsba{word-spacing:1.624000pt;}
.wsa7{word-spacing:1.680000pt;}
.ws72{word-spacing:1.736000pt;}
.wsbb{word-spacing:1.792000pt;}
.ws25{word-spacing:1.848000pt;}
.ws1a{word-spacing:1.904000pt;}
.wsbe{word-spacing:1.960000pt;}
.ws5d{word-spacing:2.016000pt;}
.ws1b{word-spacing:2.072000pt;}
.ws19{word-spacing:2.128000pt;}
.ws64{word-spacing:2.184000pt;}
.wsa1{word-spacing:2.240000pt;}
.ws9b{word-spacing:2.296000pt;}
.ws97{word-spacing:2.408000pt;}
.wse{word-spacing:2.520000pt;}
.ws1e{word-spacing:2.576000pt;}
.ws7a{word-spacing:2.632000pt;}
.wsb8{word-spacing:2.688000pt;}
.ws4e{word-spacing:2.800000pt;}
.ws52{word-spacing:2.856000pt;}
.ws2a{word-spacing:2.912000pt;}
.ws5e{word-spacing:2.968000pt;}
.ws15{word-spacing:3.024000pt;}
.ws76{word-spacing:3.136000pt;}
.wsc0{word-spacing:3.192000pt;}
.ws7c{word-spacing:3.248000pt;}
.wsb4{word-spacing:3.304000pt;}
.ws4{word-spacing:3.360000pt;}
.ws74{word-spacing:3.416000pt;}
.ws75{word-spacing:3.472000pt;}
.ws6f{word-spacing:3.640000pt;}
.ws57{word-spacing:3.696000pt;}
.ws2e{word-spacing:3.808000pt;}
.ws5b{word-spacing:3.864000pt;}
.ws48{word-spacing:3.920000pt;}
.ws8c{word-spacing:4.032000pt;}
.ws11{word-spacing:4.088000pt;}
.wsa{word-spacing:4.144000pt;}
.ws8a{word-spacing:4.256000pt;}
.ws54{word-spacing:4.368000pt;}
.wsb3{word-spacing:4.480000pt;}
.ws5c{word-spacing:4.536000pt;}
.ws10{word-spacing:4.760000pt;}
.ws83{word-spacing:4.816000pt;}
.wsc1{word-spacing:4.872000pt;}
.ws20{word-spacing:4.984000pt;}
.ws30{word-spacing:5.040000pt;}
.ws12{word-spacing:5.096000pt;}
.wsa6{word-spacing:5.264000pt;}
.ws62{word-spacing:5.320000pt;}
.ws89{word-spacing:5.432000pt;}
.ws66{word-spacing:5.488000pt;}
.ws4d{word-spacing:5.544000pt;}
.ws56{word-spacing:5.600000pt;}
.ws81{word-spacing:5.656000pt;}
.ws8b{word-spacing:5.824000pt;}
.ws82{word-spacing:5.880000pt;}
.ws98{word-spacing:5.992000pt;}
.ws55{word-spacing:6.104000pt;}
.ws78{word-spacing:6.160000pt;}
.ws6e{word-spacing:6.216000pt;}
.wsa8{word-spacing:6.272000pt;}
.ws7{word-spacing:6.384000pt;}
.ws80{word-spacing:6.496000pt;}
.wsc2{word-spacing:6.552000pt;}
.wsb2{word-spacing:6.664000pt;}
.ws65{word-spacing:6.720000pt;}
.ws17{word-spacing:6.776000pt;}
.wsbd{word-spacing:6.832000pt;}
.ws26{word-spacing:6.888000pt;}
.ws9c{word-spacing:7.224000pt;}
.ws22{word-spacing:7.504000pt;}
.ws73{word-spacing:7.616000pt;}
.wsf{word-spacing:8.624000pt;}
.ws29{word-spacing:8.680000pt;}
.ws7b{word-spacing:8.792000pt;}
.ws7e{word-spacing:8.848000pt;}
.ws59{word-spacing:8.904000pt;}
.ws61{word-spacing:8.960000pt;}
.ws4b{word-spacing:9.408000pt;}
.ws28{word-spacing:9.464000pt;}
.ws2b{word-spacing:10.024000pt;}
.ws99{word-spacing:10.472000pt;}
.ws31{word-spacing:10.920000pt;}
.ws27{word-spacing:11.480000pt;}
.ws53{word-spacing:11.760000pt;}
.ws8f{word-spacing:12.432000pt;}
.wsb7{word-spacing:12.600000pt;}
.wsbc{word-spacing:13.440000pt;}
.ws4c{word-spacing:14.952000pt;}
.ws7f{word-spacing:16.632000pt;}
.ws9a{word-spacing:17.248000pt;}
.wsc4{word-spacing:22.848000pt;}
._23{margin-left:-38.659200pt;}
._1c{margin-left:-31.512000pt;}
._13{margin-left:-29.276000pt;}
._22{margin-left:-27.551200pt;}
._1d{margin-left:-26.529600pt;}
._c{margin-left:-25.104533pt;}
._a{margin-left:-23.162400pt;}
._9{margin-left:-21.002400pt;}
._15{margin-left:-19.606400pt;}
._1b{margin-left:-17.737600pt;}
._6{margin-left:-16.724000pt;}
._b{margin-left:-14.860800pt;}
._8{margin-left:-13.913600pt;}
._14{margin-left:-11.994400pt;}
._21{margin-left:-10.717600pt;}
._7{margin-left:-4.877067pt;}
._2{margin-left:-3.091200pt;}
._4{margin-left:-2.132000pt;}
._1{margin-left:-1.051200pt;}
._0{width:1.579200pt;}
._3{width:2.531200pt;}
._5{width:4.104800pt;}
._1e{width:5.104800pt;}
._d{width:6.080000pt;}
._11{width:7.688000pt;}
._f{width:8.772000pt;}
._1f{width:9.724000pt;}
._1a{width:12.076000pt;}
._e{width:13.032000pt;}
._10{width:14.632000pt;}
._18{width:16.488000pt;}
._17{width:18.084000pt;}
._19{width:19.140000pt;}
._12{width:20.324000pt;}
._16{width:21.412000pt;}
._20{width:28.316000pt;}
.fs0{font-size:32.000000pt;}
.fs3{font-size:32.648000pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:56.000000pt;}
.fs5{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.044133pt;}
.y2{bottom:54.803067pt;}
.yb8{bottom:55.280400pt;}
.y10b{bottom:57.677733pt;}
.y78{bottom:57.699733pt;}
.yae{bottom:57.719733pt;}
.ybc{bottom:57.725733pt;}
.yf2{bottom:60.279600pt;}
.y136{bottom:61.718400pt;}
.yb7{bottom:67.280400pt;}
.y33{bottom:68.004400pt;}
.y1e{bottom:68.030400pt;}
.ybb{bottom:73.643733pt;}
.y10a{bottom:73.679733pt;}
.y77{bottom:73.701733pt;}
.yad{bottom:73.721733pt;}
.y4d{bottom:77.204800pt;}
.yb6{bottom:79.280400pt;}
.y32{bottom:84.006400pt;}
.y1d{bottom:84.032400pt;}
.y135{bottom:85.714400pt;}
.yf1{bottom:87.590667pt;}
.y4c{bottom:89.204800pt;}
.yba{bottom:89.645733pt;}
.y109{bottom:89.681733pt;}
.y76{bottom:89.703733pt;}
.yac{bottom:89.723733pt;}
.yb5{bottom:91.280400pt;}
.y134{bottom:97.717067pt;}
.yf0{bottom:99.590667pt;}
.y31{bottom:100.008400pt;}
.y1c{bottom:100.034400pt;}
.y4b{bottom:101.204800pt;}
.yb4{bottom:103.280400pt;}
.yb9{bottom:105.647733pt;}
.y108{bottom:105.683733pt;}
.y75{bottom:105.705733pt;}
.yab{bottom:105.725733pt;}
.y133{bottom:109.719733pt;}
.yef{bottom:111.590667pt;}
.y4a{bottom:113.204800pt;}
.yb3{bottom:115.280400pt;}
.y30{bottom:116.010400pt;}
.y1b{bottom:116.036400pt;}
.yaa{bottom:121.649733pt;}
.y107{bottom:121.685733pt;}
.y74{bottom:121.707733pt;}
.y132{bottom:121.722400pt;}
.yee{bottom:123.590667pt;}
.yb2{bottom:127.280400pt;}
.y2f{bottom:132.012400pt;}
.y1a{bottom:132.038400pt;}
.y131{bottom:133.725067pt;}
.yed{bottom:135.590667pt;}
.ya9{bottom:137.651733pt;}
.y106{bottom:137.687733pt;}
.yda{bottom:137.709733pt;}
.yb1{bottom:139.280400pt;}
.y49{bottom:143.204800pt;}
.y130{bottom:145.727733pt;}
.yec{bottom:147.590667pt;}
.y2e{bottom:148.014400pt;}
.y19{bottom:148.040400pt;}
.ya8{bottom:153.653733pt;}
.y105{bottom:153.689733pt;}
.y73{bottom:153.711733pt;}
.y48{bottom:155.204800pt;}
.y2d{bottom:164.016400pt;}
.y18{bottom:164.042400pt;}
.y47{bottom:167.204800pt;}
.y12f{bottom:169.607733pt;}
.ya7{bottom:169.655733pt;}
.y104{bottom:169.691733pt;}
.y72{bottom:169.713733pt;}
.yeb{bottom:172.531600pt;}
.y13c{bottom:174.811200pt;}
.y46{bottom:179.204800pt;}
.y2c{bottom:180.018400pt;}
.y17{bottom:180.044400pt;}
.yea{bottom:184.531600pt;}
.y12e{bottom:185.609733pt;}
.ya6{bottom:185.657733pt;}
.y103{bottom:185.693733pt;}
.y71{bottom:185.715733pt;}
.y45{bottom:191.204800pt;}
.y2b{bottom:196.020400pt;}
.y16{bottom:196.046400pt;}
.ye9{bottom:196.531600pt;}
.y12d{bottom:201.611733pt;}
.ya5{bottom:201.659733pt;}
.y102{bottom:201.695733pt;}
.y70{bottom:201.717733pt;}
.y44{bottom:203.204800pt;}
.ye8{bottom:208.531600pt;}
.y2a{bottom:212.022400pt;}
.y15{bottom:212.048400pt;}
.y43{bottom:215.204800pt;}
.y12c{bottom:217.613733pt;}
.ya4{bottom:217.661733pt;}
.y101{bottom:217.697733pt;}
.y6f{bottom:217.719733pt;}
.ye7{bottom:220.531600pt;}
.y42{bottom:227.204800pt;}
.y29{bottom:228.024400pt;}
.y14{bottom:228.050400pt;}
.y12b{bottom:233.615733pt;}
.ya3{bottom:233.663733pt;}
.y100{bottom:233.699733pt;}
.y6e{bottom:233.721733pt;}
.y41{bottom:239.204800pt;}
.y28{bottom:244.026400pt;}
.y13{bottom:244.052400pt;}
.ye6{bottom:248.031600pt;}
.y12a{bottom:249.617733pt;}
.ya2{bottom:249.665733pt;}
.yff{bottom:249.701733pt;}
.y6d{bottom:249.723733pt;}
.y40{bottom:251.204800pt;}
.y85{bottom:255.031600pt;}
.y27{bottom:260.028400pt;}
.ye5{bottom:260.031600pt;}
.y12{bottom:260.054400pt;}
.y3f{bottom:263.204800pt;}
.y129{bottom:265.619733pt;}
.ya1{bottom:265.667733pt;}
.yfe{bottom:265.703733pt;}
.y6c{bottom:265.725733pt;}
.y84{bottom:267.031600pt;}
.ye4{bottom:272.031600pt;}
.y3e{bottom:275.204800pt;}
.y26{bottom:276.030400pt;}
.y11{bottom:276.056400pt;}
.y83{bottom:279.031600pt;}
.y128{bottom:281.621733pt;}
.ya0{bottom:281.669733pt;}
.yfd{bottom:281.705733pt;}
.y6b{bottom:281.719733pt;}
.yd9{bottom:281.721733pt;}
.ye3{bottom:284.031600pt;}
.y3d{bottom:287.204800pt;}
.y25{bottom:292.032400pt;}
.y10{bottom:292.048400pt;}
.ye2{bottom:296.031600pt;}
.y127{bottom:297.623733pt;}
.y9f{bottom:297.671733pt;}
.yfc{bottom:297.707733pt;}
.y6a{bottom:297.721733pt;}
.yd8{bottom:297.723733pt;}
.y3c{bottom:299.204800pt;}
.y82{bottom:306.811200pt;}
.ye1{bottom:308.031600pt;}
.y24{bottom:308.034400pt;}
.yf{bottom:308.050400pt;}
.y3b{bottom:311.204800pt;}
.y126{bottom:313.625733pt;}
.y9e{bottom:313.673733pt;}
.yfb{bottom:313.709733pt;}
.y69{bottom:313.723733pt;}
.yd7{bottom:313.725733pt;}
.y81{bottom:318.811200pt;}
.ye0{bottom:320.031600pt;}
.y3a{bottom:323.204800pt;}
.y23{bottom:324.036400pt;}
.ye{bottom:324.052400pt;}
.y125{bottom:329.627733pt;}
.y9d{bottom:329.675733pt;}
.yfa{bottom:329.711733pt;}
.y68{bottom:329.725733pt;}
.yd6{bottom:329.727733pt;}
.y80{bottom:330.811200pt;}
.ydf{bottom:332.031600pt;}
.y39{bottom:335.204800pt;}
.y22{bottom:340.038400pt;}
.yd{bottom:340.054400pt;}
.y7f{bottom:342.811200pt;}
.y124{bottom:345.629733pt;}
.y9c{bottom:345.677733pt;}
.y67{bottom:345.681733pt;}
.yd5{bottom:345.695733pt;}
.yf9{bottom:345.713733pt;}
.y38{bottom:347.204800pt;}
.y21{bottom:356.040400pt;}
.yc{bottom:356.056400pt;}
.y37{bottom:359.204800pt;}
.y123{bottom:361.631733pt;}
.y9b{bottom:361.679733pt;}
.y66{bottom:361.683733pt;}
.yd4{bottom:361.697733pt;}
.yf8{bottom:361.715733pt;}
.yde{bottom:367.386000pt;}
.y36{bottom:371.204800pt;}
.y20{bottom:372.042400pt;}
.yb{bottom:372.058400pt;}
.yb0{bottom:377.110400pt;}
.y122{bottom:377.633733pt;}
.y9a{bottom:377.681733pt;}
.y65{bottom:377.685733pt;}
.yd3{bottom:377.699733pt;}
.yf7{bottom:377.717733pt;}
.ydd{bottom:379.386000pt;}
.y35{bottom:383.204800pt;}
.ya{bottom:388.044400pt;}
.yaf{bottom:389.110400pt;}
.ydc{bottom:391.386000pt;}
.y121{bottom:393.635733pt;}
.y99{bottom:393.683733pt;}
.y64{bottom:393.687733pt;}
.yd2{bottom:393.701733pt;}
.yf6{bottom:393.719733pt;}
.y9{bottom:404.046400pt;}
.y13b{bottom:406.866133pt;}
.y120{bottom:409.637733pt;}
.y98{bottom:409.685733pt;}
.y63{bottom:409.689733pt;}
.yd1{bottom:409.703733pt;}
.yf5{bottom:409.721733pt;}
.y13a{bottom:418.866133pt;}
.y8{bottom:420.048400pt;}
.y11f{bottom:425.639733pt;}
.y97{bottom:425.687733pt;}
.y62{bottom:425.691733pt;}
.yd0{bottom:425.705733pt;}
.yf4{bottom:425.723733pt;}
.y139{bottom:430.866133pt;}
.y7{bottom:436.050400pt;}
.y11e{bottom:441.641733pt;}
.y96{bottom:441.689733pt;}
.y61{bottom:441.693733pt;}
.ycf{bottom:441.707733pt;}
.yf3{bottom:441.725733pt;}
.y138{bottom:442.866133pt;}
.y6{bottom:452.052400pt;}
.y137{bottom:454.866133pt;}
.y11d{bottom:457.643733pt;}
.y95{bottom:457.691733pt;}
.y60{bottom:457.695733pt;}
.yce{bottom:457.709733pt;}
.y5{bottom:468.054400pt;}
.y11c{bottom:473.645733pt;}
.y94{bottom:473.693733pt;}
.y5f{bottom:473.697733pt;}
.ycd{bottom:473.711733pt;}
.y4{bottom:484.056400pt;}
.y11b{bottom:489.647733pt;}
.y93{bottom:489.695733pt;}
.y5e{bottom:489.699733pt;}
.ycc{bottom:489.713733pt;}
.y3{bottom:500.058400pt;}
.y11a{bottom:505.649733pt;}
.y92{bottom:505.697733pt;}
.y5d{bottom:505.701733pt;}
.ycb{bottom:505.715733pt;}
.y119{bottom:521.651733pt;}
.y91{bottom:521.699733pt;}
.y5c{bottom:521.703733pt;}
.yca{bottom:521.717733pt;}
.y118{bottom:537.653733pt;}
.y90{bottom:537.701733pt;}
.y5b{bottom:537.705733pt;}
.yc9{bottom:537.719733pt;}
.y117{bottom:553.655733pt;}
.y8f{bottom:553.703733pt;}
.y5a{bottom:553.707733pt;}
.yc8{bottom:553.721733pt;}
.ydb{bottom:556.921333pt;}
.y116{bottom:569.657733pt;}
.y8e{bottom:569.705733pt;}
.y59{bottom:569.709733pt;}
.yc7{bottom:569.723733pt;}
.y115{bottom:585.659733pt;}
.y8d{bottom:585.707733pt;}
.y58{bottom:585.711733pt;}
.yc6{bottom:585.725733pt;}
.y8c{bottom:601.709733pt;}
.yc5{bottom:601.711733pt;}
.y57{bottom:601.713733pt;}
.y114{bottom:617.663733pt;}
.y8b{bottom:617.711733pt;}
.yc4{bottom:617.713733pt;}
.y56{bottom:617.715733pt;}
.y113{bottom:633.665733pt;}
.y8a{bottom:633.713733pt;}
.yc3{bottom:633.715733pt;}
.y55{bottom:633.717733pt;}
.y112{bottom:649.667733pt;}
.y89{bottom:649.715733pt;}
.yc2{bottom:649.717733pt;}
.y54{bottom:649.719733pt;}
.y7e{bottom:650.842667pt;}
.y7d{bottom:662.842667pt;}
.y111{bottom:665.669733pt;}
.y88{bottom:665.717733pt;}
.yc1{bottom:665.719733pt;}
.y53{bottom:665.721733pt;}
.y7c{bottom:674.842667pt;}
.y110{bottom:681.671733pt;}
.y87{bottom:681.719733pt;}
.yc0{bottom:681.721733pt;}
.y52{bottom:681.723733pt;}
.y7b{bottom:686.842667pt;}
.y10f{bottom:697.673733pt;}
.y86{bottom:697.721733pt;}
.ybf{bottom:697.723733pt;}
.y51{bottom:697.725733pt;}
.y7a{bottom:698.842667pt;}
.y79{bottom:710.842667pt;}
.y10e{bottom:713.675733pt;}
.y50{bottom:713.723733pt;}
.ybe{bottom:713.725733pt;}
.y1f{bottom:726.004267pt;}
.y10d{bottom:729.677733pt;}
.y4f{bottom:729.725733pt;}
.ybd{bottom:729.727733pt;}
.y34{bottom:742.185733pt;}
.y10c{bottom:745.679733pt;}
.y4e{bottom:745.727733pt;}
.h2{height:24.384000pt;}
.h15{height:28.000000pt;}
.h7{height:28.448000pt;}
.ha{height:30.480000pt;}
.h3{height:35.712000pt;}
.h8{height:39.536000pt;}
.h4{height:40.096000pt;}
.h10{height:42.023968pt;}
.hb{height:42.039968pt;}
.h13{height:42.047968pt;}
.hd{height:42.055968pt;}
.h6{height:42.063968pt;}
.h5{height:42.079968pt;}
.h11{height:42.087968pt;}
.h12{height:42.151968pt;}
.h14{height:42.167968pt;}
.hc{height:42.207968pt;}
.he{height:42.335968pt;}
.hf{height:42.359968pt;}
.h9{height:56.298667pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:1122.520000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:27.717467pt;}
.xd{left:99.401600pt;}
.xb{left:117.401600pt;}
.xa{left:190.818933pt;}
.x8{left:264.566933pt;}
.x3{left:415.748000pt;}
.x4{left:442.204800pt;}
.x9{left:453.550800pt;}
.x6{left:755.900800pt;}
.x7{left:782.360800pt;}
.x5{left:793.700800pt;}
.xc{left:911.579733pt;}
.x1{left:1065.725333pt;}
}




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