
    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_5a00b75d32f4be01c6651e92.woff')format("woff");}.ff1{font-family:ff1;line-height:1.057617;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_2b502fbc45403e06bd9bc198.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909180;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_cfa4fec58c1417f5f6e8a7d3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_76ec1758ee4cd4ff9f4b01ed.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_954a24dd0b1656e792f287e1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.918945;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_4167821b77c9a5ac6a5570be.woff')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_e7852f56f0f4fb63a79ad5a4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.094727;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_14ae8f6df2c53391018dfd0c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.200195;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3336356306b6ea4b91c568cd.woff')format("woff");}.ff9{font-family:ff9;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_038175d4afcabdce55ef07ef.woff')format("woff");}.ffa{font-family:ffa;line-height:0.687500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0db77e29c8ce52d9a7ce84ae.woff')format("woff");}.ffb{font-family:ffb;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f77143c14bd4d2148fde270c.woff')format("woff");}.ffc{font-family:ffc;line-height:1.193359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bf17568ace8b61afba930022.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ea124afb812ce5f164b2fee6.woff')format("woff");}.ffe{font-family:ffe;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4f13c14903c5c36cba3c79d4.woff')format("woff");}.fff{font-family:fff;line-height:0.687500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ffe4c23e5d2a0cec95a25246.woff')format("woff");}.ff10{font-family:ff10;line-height:0.712402;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3657f9ba2cf69baf4516caf2.woff')format("woff");}.ff11{font-family:ff11;line-height:0.687500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_4d1cb2c0135ec08cf407bca0.woff')format("woff");}.ff12{font-family:ff12;line-height:0.710938;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:ff13;src:url('chunks/assets/font_a9b295b20b759254659c33c2.woff')format("woff");}.ff13{font-family:ff13;line-height:0.687500;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:ff14;src:url('chunks/assets/font_b953aa3d42700e0ef9d5c027.woff')format("woff");}.ff14{font-family:ff14;line-height:0.710938;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:ff15;src:url('chunks/assets/font_79afa7d6fe313c0830fde298.woff')format("woff");}.ff15{font-family:ff15;line-height:0.687500;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:ff16;src:url('chunks/assets/font_cb2759a8e364ad2929ddb8ae.woff')format("woff");}.ff16{font-family:ff16;line-height:0.710938;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:ff17;src:url('chunks/assets/font_91b915693f9198ee005176ad.woff')format("woff");}.ff17{font-family:ff17;line-height:0.687500;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:ff18;src:url('chunks/assets/font_75dea0a31c0ee1273b834d83.woff')format("woff");}.ff18{font-family:ff18;line-height:0.710938;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:ff19;src:url('chunks/assets/font_6d1bc58fe1a1219699541b7c.woff')format("woff");}.ff19{font-family:ff19;line-height:0.687500;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:ff1a;src:url('chunks/assets/font_0f42ea92ceb547351a9a097f.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.710938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls20{letter-spacing:-1.254960px;}
.ls39{letter-spacing:-1.242000px;}
.ls3e{letter-spacing:-0.864000px;}
.ls3f{letter-spacing:-0.756000px;}
.ls38{letter-spacing:-0.702000px;}
.ls3a{letter-spacing:-0.594000px;}
.ls3c{letter-spacing:-0.540000px;}
.ls25{letter-spacing:-0.537840px;}
.ls3b{letter-spacing:-0.486000px;}
.lsc{letter-spacing:-0.378000px;}
.ls3d{letter-spacing:-0.324000px;}
.ls12{letter-spacing:-0.287280px;}
.ls1e{letter-spacing:-0.240000px;}
.ls18{letter-spacing:-0.239040px;}
.lsd{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.125280px;}
.ls17{letter-spacing:-0.119520px;}
.ls16{letter-spacing:-0.108000px;}
.ls11{letter-spacing:-0.095760px;}
.ls1a{letter-spacing:-0.059760px;}
.ls10{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.054000px;}
.ls21{letter-spacing:0.059760px;}
.ls13{letter-spacing:0.072000px;}
.ls2a{letter-spacing:0.101592px;}
.ls1{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.119520px;}
.ls31{letter-spacing:0.129600px;}
.lsf{letter-spacing:0.162000px;}
.ls33{letter-spacing:0.178200px;}
.ls5{letter-spacing:0.179280px;}
.ls0{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.221112px;}
.ls6{letter-spacing:0.227088px;}
.lsa{letter-spacing:0.239040px;}
.ls24{letter-spacing:0.268920px;}
.ls37{letter-spacing:0.270000px;}
.ls7{letter-spacing:0.280872px;}
.ls28{letter-spacing:0.298800px;}
.ls22{letter-spacing:0.358560px;}
.ls2b{letter-spacing:0.364536px;}
.ls27{letter-spacing:0.370512px;}
.lse{letter-spacing:0.378000px;}
.ls2c{letter-spacing:0.496008px;}
.ls8{letter-spacing:0.579672px;}
.ls29{letter-spacing:0.836640px;}
.ls1f{letter-spacing:0.896400px;}
.ls1d{letter-spacing:1.613520px;}
.ls2e{letter-spacing:3.078000px;}
.ls30{letter-spacing:3.780000px;}
.ls2f{letter-spacing:3.904200px;}
.ls35{letter-spacing:6.642000px;}
.ls34{letter-spacing:7.398000px;}
.ls2{letter-spacing:8.100000px;}
.ls23{letter-spacing:10.278720px;}
.ls1c{letter-spacing:11.712960px;}
.ls36{letter-spacing:12.420000px;}
.ls2d{letter-spacing:13.122000px;}
.ls32{letter-spacing:13.878000px;}
.ls3{letter-spacing:23.922000px;}
.ls4{letter-spacing:27.540000px;}
.ls9{letter-spacing:33.280344px;}
.ls1b{letter-spacing:80.496720px;}
.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;}
}
.ws3d{word-spacing:-37.530720px;}
.ws5{word-spacing:-23.940000px;}
.ws3{word-spacing:-23.844240px;}
.ws4{word-spacing:-23.652720px;}
.ws7f{word-spacing:-15.298560px;}
.wsf{word-spacing:-15.179040px;}
.wsb{word-spacing:-15.119280px;}
.wsc{word-spacing:-15.059520px;}
.ws3f{word-spacing:-14.999760px;}
.ws3e{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.880240px;}
.wsa{word-spacing:-14.820480px;}
.ws6e{word-spacing:-14.700960px;}
.ws63{word-spacing:-14.402160px;}
.ws97{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.716000px;}
.ws96{word-spacing:-13.662000px;}
.ws2{word-spacing:-13.608000px;}
.ws94{word-spacing:-13.500000px;}
.ws9{word-spacing:-13.392000px;}
.ws93{word-spacing:-13.284000px;}
.ws9a{word-spacing:-13.176000px;}
.ws1{word-spacing:-13.122000px;}
.ws99{word-spacing:-13.014000px;}
.ws98{word-spacing:-12.906000px;}
.ws95{word-spacing:-12.798000px;}
.ws9c{word-spacing:-12.744000px;}
.ws9b{word-spacing:-12.636000px;}
.ws6{word-spacing:-10.440000px;}
.ws7{word-spacing:-10.314720px;}
.ws8{word-spacing:-9.000000px;}
.ws2a{word-spacing:-3.585600px;}
.ws29{word-spacing:-3.346560px;}
.ws7e{word-spacing:-2.868480px;}
.ws25{word-spacing:-2.569680px;}
.ws46{word-spacing:-2.151360px;}
.ws4b{word-spacing:-1.613520px;}
.ws2b{word-spacing:-1.434240px;}
.ws34{word-spacing:-1.135440px;}
.ws1a{word-spacing:-0.918000px;}
.ws47{word-spacing:-0.896400px;}
.ws41{word-spacing:-0.888000px;}
.ws76{word-spacing:-0.836640px;}
.ws1d{word-spacing:-0.792000px;}
.ws66{word-spacing:-0.717120px;}
.ws9f{word-spacing:-0.540000px;}
.ws6f{word-spacing:-0.478080px;}
.ws11{word-spacing:-0.450000px;}
.ws3b{word-spacing:-0.418320px;}
.ws40{word-spacing:-0.378000px;}
.ws77{word-spacing:-0.358560px;}
.ws45{word-spacing:-0.336000px;}
.wsa2{word-spacing:-0.270000px;}
.ws10{word-spacing:-0.216000px;}
.ws48{word-spacing:-0.179280px;}
.ws17{word-spacing:-0.162000px;}
.ws84{word-spacing:-0.119520px;}
.ws9e{word-spacing:-0.108000px;}
.ws69{word-spacing:-0.059760px;}
.wse{word-spacing:-0.000360px;}
.ws19{word-spacing:0.000000px;}
.ws78{word-spacing:0.059760px;}
.ws1c{word-spacing:0.095760px;}
.ws6d{word-spacing:0.108000px;}
.ws22{word-spacing:0.119520px;}
.ws1e{word-spacing:0.144000px;}
.ws20{word-spacing:0.216000px;}
.ws37{word-spacing:0.239040px;}
.ws43{word-spacing:0.240000px;}
.ws1f{word-spacing:0.270000px;}
.ws23{word-spacing:0.298800px;}
.ws12{word-spacing:0.378000px;}
.ws14{word-spacing:0.402000px;}
.ws21{word-spacing:0.418320px;}
.ws13{word-spacing:0.540000px;}
.wsa1{word-spacing:0.702000px;}
.ws4d{word-spacing:0.717120px;}
.ws79{word-spacing:0.956160px;}
.ws36{word-spacing:1.015920px;}
.ws15{word-spacing:1.098000px;}
.wsa0{word-spacing:1.242000px;}
.ws4a{word-spacing:1.254960px;}
.ws49{word-spacing:1.434240px;}
.ws5d{word-spacing:1.733040px;}
.ws85{word-spacing:2.151360px;}
.ws5a{word-spacing:2.450160px;}
.ws27{word-spacing:2.868480px;}
.ws26{word-spacing:3.167280px;}
.ws5b{word-spacing:3.585600px;}
.ws2c{word-spacing:3.884400px;}
.ws55{word-spacing:4.003920px;}
.ws32{word-spacing:4.302720px;}
.ws2d{word-spacing:4.601520px;}
.ws60{word-spacing:4.840560px;}
.ws52{word-spacing:5.019840px;}
.ws51{word-spacing:5.318640px;}
.ws6c{word-spacing:5.438160px;}
.ws28{word-spacing:5.736960px;}
.ws35{word-spacing:5.976000px;}
.ws24{word-spacing:6.035760px;}
.ws6a{word-spacing:6.454080px;}
.ws57{word-spacing:6.752880px;}
.ws74{word-spacing:7.230960px;}
.ws73{word-spacing:7.529760px;}
.ws1b{word-spacing:8.100000px;}
.ws33{word-spacing:8.246880px;}
.ws38{word-spacing:8.665200px;}
.ws8a{word-spacing:8.964000px;}
.ws86{word-spacing:9.083520px;}
.ws42{word-spacing:9.168000px;}
.ws16{word-spacing:9.180000px;}
.ws80{word-spacing:9.382320px;}
.ws68{word-spacing:9.681120px;}
.ws44{word-spacing:9.786000px;}
.ws18{word-spacing:9.882000px;}
.ws7a{word-spacing:10.099440px;}
.ws8f{word-spacing:10.398240px;}
.ws31{word-spacing:10.816560px;}
.ws75{word-spacing:11.115360px;}
.ws58{word-spacing:11.533680px;}
.ws59{word-spacing:11.832480px;}
.ws5f{word-spacing:12.549600px;}
.ws54{word-spacing:12.967920px;}
.ws53{word-spacing:13.266720px;}
.ws81{word-spacing:13.685040px;}
.ws5e{word-spacing:14.402160px;}
.ws56{word-spacing:14.700960px;}
.ws39{word-spacing:15.119280px;}
.ws3a{word-spacing:15.418080px;}
.ws89{word-spacing:16.135200px;}
.ws65{word-spacing:16.553520px;}
.ws64{word-spacing:16.852320px;}
.ws82{word-spacing:17.569440px;}
.ws71{word-spacing:17.987760px;}
.ws70{word-spacing:18.286560px;}
.ws30{word-spacing:18.406080px;}
.ws61{word-spacing:18.704880px;}
.ws6b{word-spacing:19.003680px;}
.ws7c{word-spacing:19.422000px;}
.ws4c{word-spacing:20.378160px;}
.ws5c{word-spacing:20.856240px;}
.ws4e{word-spacing:21.633120px;}
.ws4f{word-spacing:21.931920px;}
.ws87{word-spacing:22.350240px;}
.ws88{word-spacing:22.649040px;}
.ws50{word-spacing:23.366160px;}
.ws72{word-spacing:24.083280px;}
.ws8c{word-spacing:26.652960px;}
.ws8b{word-spacing:26.892000px;}
.ws8d{word-spacing:26.951760px;}
.ws67{word-spacing:27.668880px;}
.ws7d{word-spacing:31.971600px;}
.ws2f{word-spacing:32.389920px;}
.ws2e{word-spacing:32.628960px;}
.ws90{word-spacing:33.346080px;}
.ws8e{word-spacing:38.485440px;}
.ws9d{word-spacing:44.928000px;}
.ws7b{word-spacing:49.959360px;}
.ws92{word-spacing:72.306000px;}
.ws83{word-spacing:1587.275994px;}
.ws62{word-spacing:1593.275994px;}
.ws91{word-spacing:1599.275994px;}
.ws3c{word-spacing:1617.275994px;}
._b{margin-left:-3.584520px;}
._5{margin-left:-2.517480px;}
._1{margin-left:-1.458000px;}
._0{width:1.063800px;}
._4{width:2.139336px;}
._8{width:4.115880px;}
._3{width:6.035760px;}
._9{width:7.435800px;}
._a{width:8.694000px;}
._2{width:10.098000px;}
._7{width:11.688840px;}
._6{width:20.856168px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y4{bottom:45.535500px;}
.y3{bottom:61.020000px;}
.y5c{bottom:97.141320px;}
.y29{bottom:112.401900px;}
.y5b{bottom:117.474660px;}
.y9d{bottom:130.711500px;}
.y28{bottom:132.555960px;}
.y74{bottom:136.980000px;}
.y5a{bottom:137.628720px;}
.y9c{bottom:151.044840px;}
.y27{bottom:152.889300px;}
.y59{bottom:157.782780px;}
.yd5{bottom:162.249840px;}
.y9b{bottom:171.198900px;}
.y26{bottom:173.043360px;}
.yb2{bottom:178.056360px;}
.y58{bottom:178.116120px;}
.yd4{bottom:182.583180px;}
.y9a{bottom:191.352960px;}
.y25{bottom:193.376700px;}
.yb1{bottom:198.210420px;}
.y57{bottom:198.270180px;}
.yd3{bottom:202.737240px;}
.y99{bottom:211.686300px;}
.y24{bottom:213.530760px;}
.yb0{bottom:218.364480px;}
.y56{bottom:218.603520px;}
.yd2{bottom:223.070580px;}
.y98{bottom:231.840360px;}
.y23{bottom:233.684820px;}
.yaf{bottom:238.697820px;}
.y55{bottom:238.757580px;}
.yd1{bottom:243.224640px;}
.y97{bottom:252.173700px;}
.y22{bottom:254.018160px;}
.yae{bottom:258.851880px;}
.y54{bottom:259.090920px;}
.yd0{bottom:263.378700px;}
.y21{bottom:274.172220px;}
.yad{bottom:279.185220px;}
.y53{bottom:279.244980px;}
.y96{bottom:281.336580px;}
.ycf{bottom:283.712040px;}
.y20{bottom:294.505560px;}
.yac{bottom:299.339280px;}
.y52{bottom:299.399040px;}
.yce{bottom:303.866100px;}
.y1f{bottom:314.659620px;}
.y95{bottom:319.672620px;}
.y51{bottom:319.732380px;}
.ycd{bottom:324.199440px;}
.y1e{bottom:334.992960px;}
.y94{bottom:339.826680px;}
.y50{bottom:339.886440px;}
.ycc{bottom:344.353500px;}
.yab{bottom:348.835500px;}
.y1d{bottom:355.147020px;}
.y93{bottom:359.980740px;}
.y4f{bottom:360.219780px;}
.ycb{bottom:364.686840px;}
.y73{bottom:373.695660px;}
.y1c{bottom:375.301080px;}
.y92{bottom:380.314080px;}
.y4e{bottom:380.373840px;}
.yca{bottom:384.840900px;}
.yaa{bottom:386.992260px;}
.y72{bottom:393.849720px;}
.y91{bottom:400.468140px;}
.y4d{bottom:400.707180px;}
.y1b{bottom:404.643300px;}
.yc9{bottom:404.994960px;}
.ya9{bottom:407.325600px;}
.y71{bottom:414.003780px;}
.y90{bottom:420.801480px;}
.y4c{bottom:420.861240px;}
.yc8{bottom:425.328300px;}
.ya8{bottom:427.479660px;}
.y70{bottom:434.337120px;}
.y8f{bottom:440.955540px;}
.y4b{bottom:441.015300px;}
.yc7{bottom:445.482360px;}
.ya7{bottom:447.813000px;}
.y6f{bottom:454.491180px;}
.y4a{bottom:461.348640px;}
.yc6{bottom:465.815700px;}
.ya6{bottom:467.967060px;}
.y8e{bottom:470.297700px;}
.y6e{bottom:474.824520px;}
.y49{bottom:481.502700px;}
.yc5{bottom:485.969760px;}
.y1a{bottom:486.072720px;}
.ya5{bottom:488.300400px;}
.y6d{bottom:494.978580px;}
.y48{bottom:501.836040px;}
.y19{bottom:506.226780px;}
.y8d{bottom:508.454460px;}
.yef{bottom:513.544350px;}
.y6c{bottom:515.311920px;}
.y47{bottom:521.990100px;}
.y8c{bottom:528.608520px;}
.yee{bottom:532.984350px;}
.y6b{bottom:535.465980px;}
.y46{bottom:542.323440px;}
.y18{bottom:544.562820px;}
.y8b{bottom:548.941860px;}
.yc4{bottom:553.468680px;}
.y6a{bottom:555.620040px;}
.yed{bottom:557.108850px;}
.ya4{bottom:557.950680px;}
.y45{bottom:562.477500px;}
.y17{bottom:564.716880px;}
.y8a{bottom:569.095920px;}
.yc3{bottom:573.622740px;}
.y69{bottom:575.953380px;}
.yec{bottom:581.044350px;}
.y44{bottom:582.631560px;}
.y16{bottom:584.870940px;}
.y89{bottom:589.429260px;}
.yc2{bottom:593.956080px;}
.y68{bottom:596.107440px;}
.y43{bottom:602.964900px;}
.yeb{bottom:604.979850px;}
.y15{bottom:605.204280px;}
.y88{bottom:609.583320px;}
.yc1{bottom:614.110140px;}
.y67{bottom:616.440780px;}
.y42{bottom:623.118960px;}
.y14{bottom:625.358340px;}
.yea{bottom:629.104350px;}
.y87{bottom:629.916660px;}
.yc0{bottom:634.443480px;}
.y66{bottom:636.594840px;}
.y41{bottom:643.452300px;}
.y13{bottom:645.691680px;}
.ye9{bottom:653.039850px;}
.ybf{bottom:654.597540px;}
.y65{bottom:656.928180px;}
.y86{bottom:659.079540px;}
.y12{bottom:665.845740px;}
.ye8{bottom:672.479850px;}
.y40{bottom:672.615180px;}
.ybe{bottom:674.930880px;}
.y64{bottom:677.082240px;}
.y11{bottom:686.179080px;}
.ybd{bottom:695.084940px;}
.ye7{bottom:696.604350px;}
.y63{bottom:697.236300px;}
.y10{bottom:706.333140px;}
.y3f{bottom:710.951220px;}
.ybc{bottom:715.239000px;}
.ye6{bottom:716.044350px;}
.y62{bottom:717.569640px;}
.yf{bottom:726.487200px;}
.y3e{bottom:731.105280px;}
.y85{bottom:737.723700px;}
.ye5{bottom:739.979850px;}
.y61{bottom:746.732520px;}
.ye{bottom:746.820540px;}
.y3d{bottom:751.259340px;}
.ybb{bottom:755.726400px;}
.y84{bottom:758.057040px;}
.ye4{bottom:764.104350px;}
.yd{bottom:766.974600px;}
.y3c{bottom:771.592680px;}
.yba{bottom:776.059740px;}
.y83{bottom:778.211100px;}
.y60{bottom:785.068560px;}
.ya3{bottom:787.219920px;}
.ye3{bottom:788.039850px;}
.y3b{bottom:791.746740px;}
.yb9{bottom:796.213800px;}
.y82{bottom:798.544440px;}
.y5f{bottom:805.222620px;}
.ye2{bottom:807.479850px;}
.y3a{bottom:812.080080px;}
.yb8{bottom:816.547140px;}
.y81{bottom:818.698500px;}
.y5e{bottom:825.555960px;}
.ye1{bottom:831.609000px;}
.y39{bottom:832.234140px;}
.yc{bottom:832.860000px;}
.yb7{bottom:836.701200px;}
.y80{bottom:838.852560px;}
.ya2{bottom:845.710020px;}
.ye0{bottom:851.049000px;}
.y38{bottom:852.567450px;}
.y5d{bottom:854.718840px;}
.yb6{bottom:856.855260px;}
.y7f{bottom:868.194720px;}
.ydf{bottom:874.984500px;}
.yb5{bottom:877.188600px;}
.yb{bottom:878.764500px;}
.ya1{bottom:883.866780px;}
.y37{bottom:892.875600px;}
.yde{bottom:894.600000px;}
.yb4{bottom:897.342660px;}
.ya0{bottom:904.200120px;}
.y7e{bottom:906.351480px;}
.ya{bottom:912.240000px;}
.y36{bottom:913.208940px;}
.ydd{bottom:918.540000px;}
.y9f{bottom:924.354180px;}
.yb3{bottom:926.684820px;}
.y9{bottom:927.360000px;}
.y35{bottom:933.363000px;}
.ydc{bottom:937.980000px;}
.y7d{bottom:944.687520px;}
.y9e{bottom:944.687550px;}
.y8{bottom:949.500000px;}
.y34{bottom:953.696340px;}
.ydb{bottom:962.100000px;}
.y7c{bottom:964.841580px;}
.y33{bottom:973.850400px;}
.yda{bottom:981.540000px;}
.y7b{bottom:985.174920px;}
.y7{bottom:989.451360px;}
.y32{bottom:994.183740px;}
.y7a{bottom:1005.328980px;}
.yd9{bottom:1010.520000px;}
.y31{bottom:1014.337800px;}
.y6{bottom:1016.455680px;}
.y79{bottom:1025.483040px;}
.y30{bottom:1034.491860px;}
.y5{bottom:1043.460000px;}
.y78{bottom:1045.816380px;}
.y2f{bottom:1054.825200px;}
.y77{bottom:1065.970440px;}
.y2e{bottom:1074.979260px;}
.yd8{bottom:1075.504500px;}
.y76{bottom:1086.303780px;}
.y2d{bottom:1095.312600px;}
.yd7{bottom:1102.680000px;}
.y75{bottom:1106.457840px;}
.y2c{bottom:1115.466660px;}
.yd6{bottom:1132.920000px;}
.y2b{bottom:1135.800000px;}
.y2{bottom:1151.280000px;}
.y1{bottom:1172.160000px;}
.y2a{bottom:1173.780000px;}
.h6{height:32.953359px;}
.h3{height:37.494141px;}
.h2{height:41.897461px;}
.hd{height:43.623633px;}
.hb{height:44.612578px;}
.h7{height:45.193359px;}
.h10{height:49.939453px;}
.h8{height:50.013984px;}
.hf{height:50.229492px;}
.hc{height:54.536836px;}
.h5{height:55.193203px;}
.ha{height:55.266328px;}
.he{height:55.266448px;}
.h9{height:55.587305px;}
.h4{height:63.824414px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:114.840000px;}
.x4{left:123.296040px;}
.x5{left:146.677140px;}
.x6{left:173.696580px;}
.x7{left:200.693160px;}
.x8{left:270.900000px;}
.x1{left:545.040000px;}
.x2{left:620.100000px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls20{letter-spacing:-1.115520pt;}
.ls39{letter-spacing:-1.104000pt;}
.ls3e{letter-spacing:-0.768000pt;}
.ls3f{letter-spacing:-0.672000pt;}
.ls38{letter-spacing:-0.624000pt;}
.ls3a{letter-spacing:-0.528000pt;}
.ls3c{letter-spacing:-0.480000pt;}
.ls25{letter-spacing:-0.478080pt;}
.ls3b{letter-spacing:-0.432000pt;}
.lsc{letter-spacing:-0.336000pt;}
.ls3d{letter-spacing:-0.288000pt;}
.ls12{letter-spacing:-0.255360pt;}
.ls1e{letter-spacing:-0.213333pt;}
.ls18{letter-spacing:-0.212480pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.111360pt;}
.ls17{letter-spacing:-0.106240pt;}
.ls16{letter-spacing:-0.096000pt;}
.ls11{letter-spacing:-0.085120pt;}
.ls1a{letter-spacing:-0.053120pt;}
.ls10{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.048000pt;}
.ls21{letter-spacing:0.053120pt;}
.ls13{letter-spacing:0.064000pt;}
.ls2a{letter-spacing:0.090304pt;}
.ls1{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.106240pt;}
.ls31{letter-spacing:0.115200pt;}
.lsf{letter-spacing:0.144000pt;}
.ls33{letter-spacing:0.158400pt;}
.ls5{letter-spacing:0.159360pt;}
.ls0{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.196544pt;}
.ls6{letter-spacing:0.201856pt;}
.lsa{letter-spacing:0.212480pt;}
.ls24{letter-spacing:0.239040pt;}
.ls37{letter-spacing:0.240000pt;}
.ls7{letter-spacing:0.249664pt;}
.ls28{letter-spacing:0.265600pt;}
.ls22{letter-spacing:0.318720pt;}
.ls2b{letter-spacing:0.324032pt;}
.ls27{letter-spacing:0.329344pt;}
.lse{letter-spacing:0.336000pt;}
.ls2c{letter-spacing:0.440896pt;}
.ls8{letter-spacing:0.515264pt;}
.ls29{letter-spacing:0.743680pt;}
.ls1f{letter-spacing:0.796800pt;}
.ls1d{letter-spacing:1.434240pt;}
.ls2e{letter-spacing:2.736000pt;}
.ls30{letter-spacing:3.360000pt;}
.ls2f{letter-spacing:3.470400pt;}
.ls35{letter-spacing:5.904000pt;}
.ls34{letter-spacing:6.576000pt;}
.ls2{letter-spacing:7.200000pt;}
.ls23{letter-spacing:9.136640pt;}
.ls1c{letter-spacing:10.411520pt;}
.ls36{letter-spacing:11.040000pt;}
.ls2d{letter-spacing:11.664000pt;}
.ls32{letter-spacing:12.336000pt;}
.ls3{letter-spacing:21.264000pt;}
.ls4{letter-spacing:24.480000pt;}
.ls9{letter-spacing:29.582528pt;}
.ls1b{letter-spacing:71.552640pt;}
.ws3d{word-spacing:-33.360640pt;}
.ws5{word-spacing:-21.280000pt;}
.ws3{word-spacing:-21.194880pt;}
.ws4{word-spacing:-21.024640pt;}
.ws7f{word-spacing:-13.598720pt;}
.wsf{word-spacing:-13.492480pt;}
.wsb{word-spacing:-13.439360pt;}
.wsc{word-spacing:-13.386240pt;}
.ws3f{word-spacing:-13.333120pt;}
.ws3e{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.226880pt;}
.wsa{word-spacing:-13.173760pt;}
.ws6e{word-spacing:-13.067520pt;}
.ws63{word-spacing:-12.801920pt;}
.ws97{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.192000pt;}
.ws96{word-spacing:-12.144000pt;}
.ws2{word-spacing:-12.096000pt;}
.ws94{word-spacing:-12.000000pt;}
.ws9{word-spacing:-11.904000pt;}
.ws93{word-spacing:-11.808000pt;}
.ws9a{word-spacing:-11.712000pt;}
.ws1{word-spacing:-11.664000pt;}
.ws99{word-spacing:-11.568000pt;}
.ws98{word-spacing:-11.472000pt;}
.ws95{word-spacing:-11.376000pt;}
.ws9c{word-spacing:-11.328000pt;}
.ws9b{word-spacing:-11.232000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws7{word-spacing:-9.168640pt;}
.ws8{word-spacing:-8.000000pt;}
.ws2a{word-spacing:-3.187200pt;}
.ws29{word-spacing:-2.974720pt;}
.ws7e{word-spacing:-2.549760pt;}
.ws25{word-spacing:-2.284160pt;}
.ws46{word-spacing:-1.912320pt;}
.ws4b{word-spacing:-1.434240pt;}
.ws2b{word-spacing:-1.274880pt;}
.ws34{word-spacing:-1.009280pt;}
.ws1a{word-spacing:-0.816000pt;}
.ws47{word-spacing:-0.796800pt;}
.ws41{word-spacing:-0.789333pt;}
.ws76{word-spacing:-0.743680pt;}
.ws1d{word-spacing:-0.704000pt;}
.ws66{word-spacing:-0.637440pt;}
.ws9f{word-spacing:-0.480000pt;}
.ws6f{word-spacing:-0.424960pt;}
.ws11{word-spacing:-0.400000pt;}
.ws3b{word-spacing:-0.371840pt;}
.ws40{word-spacing:-0.336000pt;}
.ws77{word-spacing:-0.318720pt;}
.ws45{word-spacing:-0.298667pt;}
.wsa2{word-spacing:-0.240000pt;}
.ws10{word-spacing:-0.192000pt;}
.ws48{word-spacing:-0.159360pt;}
.ws17{word-spacing:-0.144000pt;}
.ws84{word-spacing:-0.106240pt;}
.ws9e{word-spacing:-0.096000pt;}
.ws69{word-spacing:-0.053120pt;}
.wse{word-spacing:-0.000320pt;}
.ws19{word-spacing:0.000000pt;}
.ws78{word-spacing:0.053120pt;}
.ws1c{word-spacing:0.085120pt;}
.ws6d{word-spacing:0.096000pt;}
.ws22{word-spacing:0.106240pt;}
.ws1e{word-spacing:0.128000pt;}
.ws20{word-spacing:0.192000pt;}
.ws37{word-spacing:0.212480pt;}
.ws43{word-spacing:0.213333pt;}
.ws1f{word-spacing:0.240000pt;}
.ws23{word-spacing:0.265600pt;}
.ws12{word-spacing:0.336000pt;}
.ws14{word-spacing:0.357333pt;}
.ws21{word-spacing:0.371840pt;}
.ws13{word-spacing:0.480000pt;}
.wsa1{word-spacing:0.624000pt;}
.ws4d{word-spacing:0.637440pt;}
.ws79{word-spacing:0.849920pt;}
.ws36{word-spacing:0.903040pt;}
.ws15{word-spacing:0.976000pt;}
.wsa0{word-spacing:1.104000pt;}
.ws4a{word-spacing:1.115520pt;}
.ws49{word-spacing:1.274880pt;}
.ws5d{word-spacing:1.540480pt;}
.ws85{word-spacing:1.912320pt;}
.ws5a{word-spacing:2.177920pt;}
.ws27{word-spacing:2.549760pt;}
.ws26{word-spacing:2.815360pt;}
.ws5b{word-spacing:3.187200pt;}
.ws2c{word-spacing:3.452800pt;}
.ws55{word-spacing:3.559040pt;}
.ws32{word-spacing:3.824640pt;}
.ws2d{word-spacing:4.090240pt;}
.ws60{word-spacing:4.302720pt;}
.ws52{word-spacing:4.462080pt;}
.ws51{word-spacing:4.727680pt;}
.ws6c{word-spacing:4.833920pt;}
.ws28{word-spacing:5.099520pt;}
.ws35{word-spacing:5.312000pt;}
.ws24{word-spacing:5.365120pt;}
.ws6a{word-spacing:5.736960pt;}
.ws57{word-spacing:6.002560pt;}
.ws74{word-spacing:6.427520pt;}
.ws73{word-spacing:6.693120pt;}
.ws1b{word-spacing:7.200000pt;}
.ws33{word-spacing:7.330560pt;}
.ws38{word-spacing:7.702400pt;}
.ws8a{word-spacing:7.968000pt;}
.ws86{word-spacing:8.074240pt;}
.ws42{word-spacing:8.149333pt;}
.ws16{word-spacing:8.160000pt;}
.ws80{word-spacing:8.339840pt;}
.ws68{word-spacing:8.605440pt;}
.ws44{word-spacing:8.698667pt;}
.ws18{word-spacing:8.784000pt;}
.ws7a{word-spacing:8.977280pt;}
.ws8f{word-spacing:9.242880pt;}
.ws31{word-spacing:9.614720pt;}
.ws75{word-spacing:9.880320pt;}
.ws58{word-spacing:10.252160pt;}
.ws59{word-spacing:10.517760pt;}
.ws5f{word-spacing:11.155200pt;}
.ws54{word-spacing:11.527040pt;}
.ws53{word-spacing:11.792640pt;}
.ws81{word-spacing:12.164480pt;}
.ws5e{word-spacing:12.801920pt;}
.ws56{word-spacing:13.067520pt;}
.ws39{word-spacing:13.439360pt;}
.ws3a{word-spacing:13.704960pt;}
.ws89{word-spacing:14.342400pt;}
.ws65{word-spacing:14.714240pt;}
.ws64{word-spacing:14.979840pt;}
.ws82{word-spacing:15.617280pt;}
.ws71{word-spacing:15.989120pt;}
.ws70{word-spacing:16.254720pt;}
.ws30{word-spacing:16.360960pt;}
.ws61{word-spacing:16.626560pt;}
.ws6b{word-spacing:16.892160pt;}
.ws7c{word-spacing:17.264000pt;}
.ws4c{word-spacing:18.113920pt;}
.ws5c{word-spacing:18.538880pt;}
.ws4e{word-spacing:19.229440pt;}
.ws4f{word-spacing:19.495040pt;}
.ws87{word-spacing:19.866880pt;}
.ws88{word-spacing:20.132480pt;}
.ws50{word-spacing:20.769920pt;}
.ws72{word-spacing:21.407360pt;}
.ws8c{word-spacing:23.691520pt;}
.ws8b{word-spacing:23.904000pt;}
.ws8d{word-spacing:23.957120pt;}
.ws67{word-spacing:24.594560pt;}
.ws7d{word-spacing:28.419200pt;}
.ws2f{word-spacing:28.791040pt;}
.ws2e{word-spacing:29.003520pt;}
.ws90{word-spacing:29.640960pt;}
.ws8e{word-spacing:34.209280pt;}
.ws9d{word-spacing:39.936000pt;}
.ws7b{word-spacing:44.408320pt;}
.ws92{word-spacing:64.272000pt;}
.ws83{word-spacing:1410.911995pt;}
.ws62{word-spacing:1416.245328pt;}
.ws91{word-spacing:1421.578661pt;}
.ws3c{word-spacing:1437.578661pt;}
._b{margin-left:-3.186240pt;}
._5{margin-left:-2.237760pt;}
._1{margin-left:-1.296000pt;}
._0{width:0.945600pt;}
._4{width:1.901632pt;}
._8{width:3.658560pt;}
._3{width:5.365120pt;}
._9{width:6.609600pt;}
._a{width:7.728000pt;}
._2{width:8.976000pt;}
._7{width:10.390080pt;}
._6{width:18.538816pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:40.476000pt;}
.y3{bottom:54.240000pt;}
.y5c{bottom:86.347840pt;}
.y29{bottom:99.912800pt;}
.y5b{bottom:104.421920pt;}
.y9d{bottom:116.188000pt;}
.y28{bottom:117.827520pt;}
.y74{bottom:121.760000pt;}
.y5a{bottom:122.336640pt;}
.y9c{bottom:134.262080pt;}
.y27{bottom:135.901600pt;}
.y59{bottom:140.251360pt;}
.yd5{bottom:144.222080pt;}
.y9b{bottom:152.176800pt;}
.y26{bottom:153.816320pt;}
.yb2{bottom:158.272320pt;}
.y58{bottom:158.325440pt;}
.yd4{bottom:162.296160pt;}
.y9a{bottom:170.091520pt;}
.y25{bottom:171.890400pt;}
.yb1{bottom:176.187040pt;}
.y57{bottom:176.240160pt;}
.yd3{bottom:180.210880pt;}
.y99{bottom:188.165600pt;}
.y24{bottom:189.805120pt;}
.yb0{bottom:194.101760pt;}
.y56{bottom:194.314240pt;}
.yd2{bottom:198.284960pt;}
.y98{bottom:206.080320pt;}
.y23{bottom:207.719840pt;}
.yaf{bottom:212.175840pt;}
.y55{bottom:212.228960pt;}
.yd1{bottom:216.199680pt;}
.y97{bottom:224.154400pt;}
.y22{bottom:225.793920pt;}
.yae{bottom:230.090560pt;}
.y54{bottom:230.303040pt;}
.yd0{bottom:234.114400pt;}
.y21{bottom:243.708640pt;}
.yad{bottom:248.164640pt;}
.y53{bottom:248.217760pt;}
.y96{bottom:250.076960pt;}
.ycf{bottom:252.188480pt;}
.y20{bottom:261.782720pt;}
.yac{bottom:266.079360pt;}
.y52{bottom:266.132480pt;}
.yce{bottom:270.103200pt;}
.y1f{bottom:279.697440pt;}
.y95{bottom:284.153440pt;}
.y51{bottom:284.206560pt;}
.ycd{bottom:288.177280pt;}
.y1e{bottom:297.771520pt;}
.y94{bottom:302.068160pt;}
.y50{bottom:302.121280pt;}
.ycc{bottom:306.092000pt;}
.yab{bottom:310.076000pt;}
.y1d{bottom:315.686240pt;}
.y93{bottom:319.982880pt;}
.y4f{bottom:320.195360pt;}
.ycb{bottom:324.166080pt;}
.y73{bottom:332.173920pt;}
.y1c{bottom:333.600960pt;}
.y92{bottom:338.056960pt;}
.y4e{bottom:338.110080pt;}
.yca{bottom:342.080800pt;}
.yaa{bottom:343.993120pt;}
.y72{bottom:350.088640pt;}
.y91{bottom:355.971680pt;}
.y4d{bottom:356.184160pt;}
.y1b{bottom:359.682933pt;}
.yc9{bottom:359.995520pt;}
.ya9{bottom:362.067200pt;}
.y71{bottom:368.003360pt;}
.y90{bottom:374.045760pt;}
.y4c{bottom:374.098880pt;}
.yc8{bottom:378.069600pt;}
.ya8{bottom:379.981920pt;}
.y70{bottom:386.077440pt;}
.y8f{bottom:391.960480pt;}
.y4b{bottom:392.013600pt;}
.yc7{bottom:395.984320pt;}
.ya7{bottom:398.056000pt;}
.y6f{bottom:403.992160pt;}
.y4a{bottom:410.087680pt;}
.yc6{bottom:414.058400pt;}
.ya6{bottom:415.970720pt;}
.y8e{bottom:418.042400pt;}
.y6e{bottom:422.066240pt;}
.y49{bottom:428.002400pt;}
.yc5{bottom:431.973120pt;}
.y1a{bottom:432.064640pt;}
.ya5{bottom:434.044800pt;}
.y6d{bottom:439.980960pt;}
.y48{bottom:446.076480pt;}
.y19{bottom:449.979360pt;}
.y8d{bottom:451.959520pt;}
.yef{bottom:456.483867pt;}
.y6c{bottom:458.055040pt;}
.y47{bottom:463.991200pt;}
.y8c{bottom:469.874240pt;}
.yee{bottom:473.763867pt;}
.y6b{bottom:475.969760pt;}
.y46{bottom:482.065280pt;}
.y18{bottom:484.055840pt;}
.y8b{bottom:487.948320pt;}
.yc4{bottom:491.972160pt;}
.y6a{bottom:493.884480pt;}
.yed{bottom:495.207867pt;}
.ya4{bottom:495.956160pt;}
.y45{bottom:499.980000pt;}
.y17{bottom:501.970560pt;}
.y8a{bottom:505.863040pt;}
.yc3{bottom:509.886880pt;}
.y69{bottom:511.958560pt;}
.yec{bottom:516.483867pt;}
.y44{bottom:517.894720pt;}
.y16{bottom:519.885280pt;}
.y89{bottom:523.937120pt;}
.yc2{bottom:527.960960pt;}
.y68{bottom:529.873280pt;}
.y43{bottom:535.968800pt;}
.yeb{bottom:537.759867pt;}
.y15{bottom:537.959360pt;}
.y88{bottom:541.851840pt;}
.yc1{bottom:545.875680pt;}
.y67{bottom:547.947360pt;}
.y42{bottom:553.883520pt;}
.y14{bottom:555.874080pt;}
.yea{bottom:559.203867pt;}
.y87{bottom:559.925920pt;}
.yc0{bottom:563.949760pt;}
.y66{bottom:565.862080pt;}
.y41{bottom:571.957600pt;}
.y13{bottom:573.948160pt;}
.ye9{bottom:580.479867pt;}
.ybf{bottom:581.864480pt;}
.y65{bottom:583.936160pt;}
.y86{bottom:585.848480pt;}
.y12{bottom:591.862880pt;}
.ye8{bottom:597.759867pt;}
.y40{bottom:597.880160pt;}
.ybe{bottom:599.938560pt;}
.y64{bottom:601.850880pt;}
.y11{bottom:609.936960pt;}
.ybd{bottom:617.853280pt;}
.ye7{bottom:619.203867pt;}
.y63{bottom:619.765600pt;}
.y10{bottom:627.851680pt;}
.y3f{bottom:631.956640pt;}
.ybc{bottom:635.768000pt;}
.ye6{bottom:636.483867pt;}
.y62{bottom:637.839680pt;}
.yf{bottom:645.766400pt;}
.y3e{bottom:649.871360pt;}
.y85{bottom:655.754400pt;}
.ye5{bottom:657.759867pt;}
.y61{bottom:663.762240pt;}
.ye{bottom:663.840480pt;}
.y3d{bottom:667.786080pt;}
.ybb{bottom:671.756800pt;}
.y84{bottom:673.828480pt;}
.ye4{bottom:679.203867pt;}
.yd{bottom:681.755200pt;}
.y3c{bottom:685.860160pt;}
.yba{bottom:689.830880pt;}
.y83{bottom:691.743200pt;}
.y60{bottom:697.838720pt;}
.ya3{bottom:699.751040pt;}
.ye3{bottom:700.479867pt;}
.y3b{bottom:703.774880pt;}
.yb9{bottom:707.745600pt;}
.y82{bottom:709.817280pt;}
.y5f{bottom:715.753440pt;}
.ye2{bottom:717.759867pt;}
.y3a{bottom:721.848960pt;}
.yb8{bottom:725.819680pt;}
.y81{bottom:727.732000pt;}
.y5e{bottom:733.827520pt;}
.ye1{bottom:739.208000pt;}
.y39{bottom:739.763680pt;}
.yc{bottom:740.320000pt;}
.yb7{bottom:743.734400pt;}
.y80{bottom:745.646720pt;}
.ya2{bottom:751.742240pt;}
.ye0{bottom:756.488000pt;}
.y38{bottom:757.837733pt;}
.y5d{bottom:759.750080pt;}
.yb6{bottom:761.649120pt;}
.y7f{bottom:771.728640pt;}
.ydf{bottom:777.764000pt;}
.yb5{bottom:779.723200pt;}
.yb{bottom:781.124000pt;}
.ya1{bottom:785.659360pt;}
.y37{bottom:793.667200pt;}
.yde{bottom:795.200000pt;}
.yb4{bottom:797.637920pt;}
.ya0{bottom:803.733440pt;}
.y7e{bottom:805.645760pt;}
.ya{bottom:810.880000pt;}
.y36{bottom:811.741280pt;}
.ydd{bottom:816.480000pt;}
.y9f{bottom:821.648160pt;}
.yb3{bottom:823.719840pt;}
.y9{bottom:824.320000pt;}
.y35{bottom:829.656000pt;}
.ydc{bottom:833.760000pt;}
.y7d{bottom:839.722240pt;}
.y9e{bottom:839.722267pt;}
.y8{bottom:844.000000pt;}
.y34{bottom:847.730080pt;}
.ydb{bottom:855.200000pt;}
.y7c{bottom:857.636960pt;}
.y33{bottom:865.644800pt;}
.yda{bottom:872.480000pt;}
.y7b{bottom:875.711040pt;}
.y7{bottom:879.512320pt;}
.y32{bottom:883.718880pt;}
.y7a{bottom:893.625760pt;}
.yd9{bottom:898.240000pt;}
.y31{bottom:901.633600pt;}
.y6{bottom:903.516160pt;}
.y79{bottom:911.540480pt;}
.y30{bottom:919.548320pt;}
.y5{bottom:927.520000pt;}
.y78{bottom:929.614560pt;}
.y2f{bottom:937.622400pt;}
.y77{bottom:947.529280pt;}
.y2e{bottom:955.537120pt;}
.yd8{bottom:956.004000pt;}
.y76{bottom:965.603360pt;}
.y2d{bottom:973.611200pt;}
.yd7{bottom:980.160000pt;}
.y75{bottom:983.518080pt;}
.y2c{bottom:991.525920pt;}
.yd6{bottom:1007.040000pt;}
.y2b{bottom:1009.600000pt;}
.y2{bottom:1023.360000pt;}
.y1{bottom:1041.920000pt;}
.y2a{bottom:1043.360000pt;}
.h6{height:29.291875pt;}
.h3{height:33.328125pt;}
.h2{height:37.242188pt;}
.hd{height:38.776563pt;}
.hb{height:39.655625pt;}
.h7{height:40.171875pt;}
.h10{height:44.390625pt;}
.h8{height:44.456875pt;}
.hf{height:44.648438pt;}
.hc{height:48.477187pt;}
.h5{height:49.060625pt;}
.ha{height:49.125625pt;}
.he{height:49.125732pt;}
.h9{height:49.410937pt;}
.h4{height:56.732813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:102.080000pt;}
.x4{left:109.596480pt;}
.x5{left:130.379680pt;}
.x6{left:154.396960pt;}
.x7{left:178.393920pt;}
.x8{left:240.800000pt;}
.x1{left:484.480000pt;}
.x2{left:551.200000pt;}
}




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