
    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_4a910ff11c316d98d861cf85.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_69ac7eab99a29be35968c4c6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_9f41c9a20ae63625334d369f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.190918;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_d9b9907f2f675106aa23e576.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_e8d3e9b2d1aef197f883f03c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_c9e153fb73d433b808034e13.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.349000;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_9ad2cfa8be353b1827cc1560.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.384000;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_6e41965d2d020bad5bafb9d9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.392000;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_4701577aa8fc1c3db2366146.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.362000;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_1968735a5bcaa7b5e7263bd3.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-17.849995px;}
.v5{vertical-align:-10.805744px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.799744px;}
.v3{vertical-align:18.702117px;}
.v2{vertical-align:21.000000px;}
.ls2c{letter-spacing:-1.674000px;}
.ls21{letter-spacing:-1.404000px;}
.ls2a{letter-spacing:-1.242000px;}
.ls4f{letter-spacing:-1.170000px;}
.ls4e{letter-spacing:-1.080000px;}
.ls24{letter-spacing:-0.810000px;}
.ls59{letter-spacing:-0.765000px;}
.ls2d{letter-spacing:-0.756000px;}
.ls51{letter-spacing:-0.450000px;}
.ls18{letter-spacing:-0.378000px;}
.ls29{letter-spacing:-0.324000px;}
.ls25{letter-spacing:-0.270000px;}
.ls58{letter-spacing:-0.225000px;}
.ls15{letter-spacing:-0.216000px;}
.ls5b{letter-spacing:-0.180000px;}
.ls31{letter-spacing:-0.175500px;}
.ls2f{letter-spacing:-0.162000px;}
.ls2b{letter-spacing:-0.140400px;}
.ls4d{letter-spacing:-0.135000px;}
.ls30{letter-spacing:-0.108000px;}
.ls4b{letter-spacing:-0.105300px;}
.ls5a{letter-spacing:-0.090000px;}
.ls4a{letter-spacing:-0.070200px;}
.ls26{letter-spacing:-0.054000px;}
.lsd{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.013223px;}
.ls1{letter-spacing:0.013772px;}
.lsc{letter-spacing:0.018028px;}
.ls28{letter-spacing:0.035100px;}
.ls1b{letter-spacing:0.054000px;}
.ls27{letter-spacing:0.070200px;}
.ls50{letter-spacing:0.090000px;}
.ls1c{letter-spacing:0.108000px;}
.ls47{letter-spacing:0.112500px;}
.ls8{letter-spacing:0.125927px;}
.ls48{letter-spacing:0.135000px;}
.ls37{letter-spacing:0.140382px;}
.ls1f{letter-spacing:0.140400px;}
.ls35{letter-spacing:0.153271px;}
.ls34{letter-spacing:0.153816px;}
.ls6{letter-spacing:0.159568px;}
.ls3b{letter-spacing:0.160845px;}
.ls1a{letter-spacing:0.162000px;}
.ls7{letter-spacing:0.175500px;}
.ls39{letter-spacing:0.178193px;}
.ls46{letter-spacing:0.180000px;}
.ls3c{letter-spacing:0.185805px;}
.ls3d{letter-spacing:0.186668px;}
.ls44{letter-spacing:0.202500px;}
.ls22{letter-spacing:0.210600px;}
.ls3{letter-spacing:0.216000px;}
.ls3a{letter-spacing:0.216672px;}
.ls43{letter-spacing:0.225000px;}
.ls38{letter-spacing:0.232200px;}
.ls2e{letter-spacing:0.243000px;}
.ls23{letter-spacing:0.245700px;}
.ls3f{letter-spacing:0.253005px;}
.ls49{letter-spacing:0.260931px;}
.ls40{letter-spacing:0.264000px;}
.ls10{letter-spacing:0.270000px;}
.ls17{letter-spacing:0.315900px;}
.lsf{letter-spacing:0.324000px;}
.ls45{letter-spacing:0.328441px;}
.ls33{letter-spacing:0.328943px;}
.ls5d{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.372600px;}
.ls11{letter-spacing:0.378000px;}
.ls36{letter-spacing:0.383393px;}
.ls1e{letter-spacing:0.404380px;}
.ls4c{letter-spacing:0.405000px;}
.ls32{letter-spacing:0.406761px;}
.ls54{letter-spacing:0.427500px;}
.ls12{letter-spacing:0.432000px;}
.ls41{letter-spacing:0.450000px;}
.ls16{letter-spacing:0.486000px;}
.lsb{letter-spacing:0.491400px;}
.ls5c{letter-spacing:0.495000px;}
.ls5{letter-spacing:0.508201px;}
.lsa{letter-spacing:0.508950px;}
.ls14{letter-spacing:0.526500px;}
.ls20{letter-spacing:0.540000px;}
.ls13{letter-spacing:0.594000px;}
.ls19{letter-spacing:0.648000px;}
.ls4{letter-spacing:0.702000px;}
.ls1d{letter-spacing:0.756000px;}
.lse{letter-spacing:0.810000px;}
.ls52{letter-spacing:1.170000px;}
.ls56{letter-spacing:1.187988px;}
.ls57{letter-spacing:1.188000px;}
.ls55{letter-spacing:1.300562px;}
.ls42{letter-spacing:1.390500px;}
.ls53{letter-spacing:1.485000px;}
.ls3e{letter-spacing:1.620000px;}
.ls0{letter-spacing:3.000000px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.ws58{word-spacing:-13.878000px;}
.ws50{word-spacing:-13.860000px;}
.ws20{word-spacing:-13.014000px;}
.ws16{word-spacing:-12.852000px;}
.ws14{word-spacing:-12.528000px;}
.ws6a{word-spacing:-12.501000px;}
.ws4c{word-spacing:-12.366000px;}
.ws32{word-spacing:-12.312000px;}
.ws18{word-spacing:-12.258000px;}
.ws3c{word-spacing:-11.718000px;}
.ws22{word-spacing:-11.448000px;}
.ws3{word-spacing:-11.340000px;}
.ws3a{word-spacing:-11.016000px;}
.ws1d{word-spacing:-10.854000px;}
.ws3d{word-spacing:-10.584000px;}
.ws5c{word-spacing:-10.440000px;}
.ws68{word-spacing:-10.215000px;}
.ws69{word-spacing:-10.125000px;}
.ws67{word-spacing:-10.080000px;}
.ws53{word-spacing:-9.855000px;}
.ws0{word-spacing:-9.600000px;}
.ws51{word-spacing:-9.225000px;}
.ws52{word-spacing:-9.135000px;}
.ws6{word-spacing:-8.494200px;}
.ws21{word-spacing:-8.459100px;}
.ws7{word-spacing:-8.283600px;}
.ws1f{word-spacing:-8.213400px;}
.ws1e{word-spacing:-8.178300px;}
.ws5{word-spacing:-8.143200px;}
.ws1c{word-spacing:-8.108100px;}
.ws4d{word-spacing:-8.073000px;}
.ws2{word-spacing:-8.034000px;}
.ws39{word-spacing:-8.002800px;}
.ws4{word-spacing:-7.967700px;}
.ws4e{word-spacing:-7.932600px;}
.ws4f{word-spacing:-7.897500px;}
.ws3b{word-spacing:-7.827300px;}
.ws44{word-spacing:-7.792200px;}
.ws8{word-spacing:-6.630000px;}
.ws77{word-spacing:-6.345000px;}
.ws6d{word-spacing:-6.030000px;}
.ws75{word-spacing:-5.940000px;}
.ws2c{word-spacing:-5.508000px;}
.ws19{word-spacing:-1.242000px;}
.ws10{word-spacing:-1.188000px;}
.ws12{word-spacing:-1.134000px;}
.ws24{word-spacing:-1.080000px;}
.ws5d{word-spacing:-1.035000px;}
.ws6c{word-spacing:-0.990000px;}
.ws33{word-spacing:-0.972000px;}
.ws41{word-spacing:-0.918000px;}
.ws38{word-spacing:-0.864000px;}
.ws71{word-spacing:-0.765000px;}
.ws70{word-spacing:-0.720000px;}
.ws13{word-spacing:-0.648000px;}
.ws57{word-spacing:-0.540000px;}
.ws17{word-spacing:-0.526500px;}
.ws78{word-spacing:-0.495000px;}
.wse{word-spacing:-0.486000px;}
.ws74{word-spacing:-0.450000px;}
.ws28{word-spacing:-0.432000px;}
.ws5b{word-spacing:-0.405000px;}
.ws15{word-spacing:-0.378000px;}
.ws60{word-spacing:-0.360000px;}
.ws35{word-spacing:-0.324000px;}
.ws27{word-spacing:-0.270000px;}
.ws59{word-spacing:-0.264000px;}
.ws61{word-spacing:-0.225000px;}
.wsa{word-spacing:-0.216000px;}
.ws5e{word-spacing:-0.180000px;}
.ws56{word-spacing:-0.162000px;}
.ws76{word-spacing:-0.135000px;}
.ws2b{word-spacing:-0.108000px;}
.ws64{word-spacing:-0.090000px;}
.ws40{word-spacing:-0.035100px;}
.ws9{word-spacing:0.000000px;}
.ws25{word-spacing:0.054000px;}
.ws65{word-spacing:0.135000px;}
.ws49{word-spacing:0.162000px;}
.ws36{word-spacing:0.216000px;}
.ws6e{word-spacing:0.225000px;}
.ws2d{word-spacing:0.270000px;}
.ws66{word-spacing:0.315000px;}
.ws37{word-spacing:0.378000px;}
.ws54{word-spacing:0.432000px;}
.ws43{word-spacing:0.486000px;}
.ws5f{word-spacing:0.495000px;}
.wsf{word-spacing:0.540000px;}
.ws31{word-spacing:0.594000px;}
.ws6b{word-spacing:0.630000px;}
.ws34{word-spacing:0.648000px;}
.ws4a{word-spacing:0.702000px;}
.ws26{word-spacing:0.756000px;}
.ws63{word-spacing:0.765000px;}
.ws46{word-spacing:0.810000px;}
.ws3e{word-spacing:0.864000px;}
.ws11{word-spacing:0.918000px;}
.ws72{word-spacing:0.945000px;}
.ws79{word-spacing:0.990000px;}
.ws4b{word-spacing:1.026000px;}
.ws5a{word-spacing:1.035000px;}
.ws30{word-spacing:1.080000px;}
.ws45{word-spacing:1.134000px;}
.ws62{word-spacing:1.170000px;}
.ws23{word-spacing:1.188000px;}
.ws6f{word-spacing:1.215000px;}
.wsd{word-spacing:1.242000px;}
.ws1b{word-spacing:1.296000px;}
.ws2e{word-spacing:1.350000px;}
.ws47{word-spacing:1.404000px;}
.ws2a{word-spacing:1.458000px;}
.ws2f{word-spacing:1.512000px;}
.ws3f{word-spacing:1.620000px;}
.wsb{word-spacing:1.674000px;}
.ws48{word-spacing:1.782000px;}
.ws7a{word-spacing:1.836000px;}
.ws55{word-spacing:1.944000px;}
.wsc{word-spacing:2.052000px;}
.ws1a{word-spacing:2.106000px;}
.ws7c{word-spacing:2.160000px;}
.ws73{word-spacing:2.250000px;}
.ws29{word-spacing:2.808000px;}
.ws7f{word-spacing:3.024000px;}
.ws80{word-spacing:3.132000px;}
.ws7d{word-spacing:3.186000px;}
.ws7e{word-spacing:3.348000px;}
.ws7b{word-spacing:3.996000px;}
.ws83{word-spacing:5.670000px;}
.ws84{word-spacing:6.264000px;}
.ws81{word-spacing:6.480000px;}
.ws82{word-spacing:6.750000px;}
.ws42{word-spacing:15.282000px;}
._14{margin-left:-20.952007px;}
._5{margin-left:-14.683800px;}
._10{margin-left:-13.405200px;}
._7{margin-left:-11.562623px;}
._13{margin-left:-10.150800px;}
._9{margin-left:-8.182184px;}
._12{margin-left:-6.990209px;}
._6{margin-left:-5.892600px;}
._3{margin-left:-4.122000px;}
._2{margin-left:-3.057600px;}
._0{margin-left:-1.876800px;}
._4{width:1.115400px;}
._f{width:2.208599px;}
._11{width:4.456492px;}
._17{width:6.034500px;}
._18{width:7.785300px;}
._a{width:10.638000px;}
._8{width:12.204000px;}
._b{width:13.244825px;}
._c{width:14.723820px;}
._15{width:16.290000px;}
._16{width:18.045000px;}
._e{width:21.869245px;}
._d{width:23.508460px;}
._1{width:327.844800px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y90{bottom:3.199200px;}
.y35{bottom:3.199350px;}
.yb0{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y34{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.y91{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y33{bottom:68.037600px;}
.ya6{bottom:71.008648px;}
.y89{bottom:72.910499px;}
.y102{bottom:76.305148px;}
.yca{bottom:76.990648px;}
.y79{bottom:80.062052px;}
.y32{bottom:83.037600px;}
.ya5{bottom:86.007148px;}
.y88{bottom:87.922504px;}
.y101{bottom:89.051398px;}
.yc9{bottom:91.989148px;}
.y78{bottom:95.060552px;}
.y31{bottom:98.037600px;}
.ya4{bottom:101.005648px;}
.y100{bottom:101.797648px;}
.y87{bottom:102.921004px;}
.yc8{bottom:106.987648px;}
.y77{bottom:110.059052px;}
.yff{bottom:114.543898px;}
.ya3{bottom:116.004148px;}
.y30{bottom:117.494099px;}
.y86{bottom:117.919504px;}
.yc7{bottom:121.986148px;}
.y76{bottom:125.057552px;}
.yfe{bottom:127.290148px;}
.ya2{bottom:131.002648px;}
.y85{bottom:132.918004px;}
.yc6{bottom:136.984648px;}
.yfd{bottom:140.036398px;}
.y75{bottom:140.056052px;}
.ya1{bottom:146.001148px;}
.y84{bottom:147.916504px;}
.yc5{bottom:151.983148px;}
.yfc{bottom:152.782648px;}
.y74{bottom:155.054552px;}
.ya0{bottom:160.999648px;}
.y83{bottom:162.915004px;}
.yfb{bottom:165.528898px;}
.y2e{bottom:166.902307px;}
.yc4{bottom:166.981648px;}
.y73{bottom:170.053052px;}
.y9f{bottom:175.998148px;}
.y82{bottom:177.913504px;}
.yfa{bottom:178.275148px;}
.y2d{bottom:181.900807px;}
.yc3{bottom:181.983148px;}
.y72{bottom:185.051552px;}
.y9e{bottom:190.996648px;}
.yf9{bottom:191.021398px;}
.y81{bottom:192.912004px;}
.y2c{bottom:196.900807px;}
.yc2{bottom:196.981648px;}
.y71{bottom:200.050052px;}
.yf8{bottom:203.767648px;}
.yd4{bottom:205.418991px;}
.y9d{bottom:205.995148px;}
.y80{bottom:207.910504px;}
.y2b{bottom:211.902307px;}
.yc1{bottom:211.980148px;}
.y13c{bottom:214.412244px;}
.y70{bottom:215.048552px;}
.yf7{bottom:216.513898px;}
.yd3{bottom:220.417491px;}
.y9c{bottom:220.993648px;}
.y7f{bottom:222.915004px;}
.y2a{bottom:226.900807px;}
.yc0{bottom:226.980148px;}
.yf6{bottom:229.260148px;}
.y6f{bottom:230.047052px;}
.yd2{bottom:235.415991px;}
.y9b{bottom:235.992148px;}
.y7e{bottom:237.913504px;}
.y29{bottom:241.900807px;}
.yf5{bottom:242.006398px;}
.y13b{bottom:244.409243px;}
.y6e{bottom:245.045552px;}
.yd1{bottom:250.414491px;}
.y9a{bottom:250.990648px;}
.y7d{bottom:252.912004px;}
.yf4{bottom:254.752648px;}
.y28{bottom:256.900807px;}
.y13a{bottom:259.407743px;}
.ybf{bottom:259.990648px;}
.y6d{bottom:260.048552px;}
.yd0{bottom:265.412991px;}
.y99{bottom:265.989148px;}
.yf3{bottom:267.498898px;}
.y7c{bottom:267.910504px;}
.y27{bottom:271.903807px;}
.y139{bottom:274.406243px;}
.ybe{bottom:274.989148px;}
.y6c{bottom:275.047052px;}
.yf2{bottom:280.245148px;}
.ycf{bottom:280.411491px;}
.y98{bottom:280.987648px;}
.y7b{bottom:282.909004px;}
.y26{bottom:286.902307px;}
.y138{bottom:289.404743px;}
.ybd{bottom:289.987648px;}
.y6b{bottom:290.045552px;}
.yf1{bottom:292.991398px;}
.y97{bottom:295.986148px;}
.y25{bottom:301.900807px;}
.y137{bottom:304.403243px;}
.ybc{bottom:304.986148px;}
.y6a{bottom:305.045552px;}
.yf0{bottom:305.737648px;}
.y96{bottom:310.984648px;}
.y24{bottom:316.902307px;}
.yef{bottom:318.483898px;}
.y136{bottom:319.401743px;}
.ybb{bottom:319.984648px;}
.y69{bottom:320.072552px;}
.y95{bottom:325.983148px;}
.yee{bottom:331.230148px;}
.y23{bottom:331.900807px;}
.y8f{bottom:332.139168px;}
.y135{bottom:334.400243px;}
.yba{bottom:334.983148px;}
.y68{bottom:335.071052px;}
.y94{bottom:340.981648px;}
.yed{bottom:343.980148px;}
.y22{bottom:346.900807px;}
.y8e{bottom:347.137668px;}
.y134{bottom:349.398743px;}
.yb9{bottom:349.981648px;}
.y67{bottom:350.069552px;}
.y93{bottom:355.980148px;}
.y21{bottom:361.906807px;}
.y8d{bottom:362.136168px;}
.yb8{bottom:364.980148px;}
.y66{bottom:365.068052px;}
.y133{bottom:371.888243px;}
.y20{bottom:376.905307px;}
.y8c{bottom:377.134668px;}
.yb7{bottom:379.980148px;}
.y65{bottom:380.066552px;}
.y132{bottom:386.886743px;}
.y1f{bottom:391.903807px;}
.y8b{bottom:392.133168px;}
.yec{bottom:393.480148px;}
.y64{bottom:395.065052px;}
.yaf{bottom:396.352513px;}
.y1e{bottom:406.902307px;}
.y8a{bottom:407.131668px;}
.y131{bottom:409.391243px;}
.y63{bottom:410.063552px;}
.yae{bottom:411.352513px;}
.yb6{bottom:412.987648px;}
.y1d{bottom:421.900807px;}
.yeb{bottom:423.481648px;}
.y62{bottom:425.062052px;}
.yad{bottom:426.351013px;}
.yb5{bottom:427.986148px;}
.y130{bottom:431.895743px;}
.y1c{bottom:436.900807px;}
.yea{bottom:438.480148px;}
.y61{bottom:440.060552px;}
.yb4{bottom:442.984648px;}
.y1b{bottom:451.948769px;}
.ye9{bottom:453.480148px;}
.y12f{bottom:454.400243px;}
.y60{bottom:455.059052px;}
.yb3{bottom:457.983148px;}
.y12e{bottom:469.398743px;}
.y5f{bottom:470.057552px;}
.yb2{bottom:472.981648px;}
.ye8{bottom:483.483148px;}
.y12d{bottom:484.398743px;}
.y5e{bottom:485.056052px;}
.yb1{bottom:487.980148px;}
.ye7{bottom:498.481648px;}
.y5d{bottom:500.054552px;}
.y1a{bottom:511.767269px;}
.ye6{bottom:513.481648px;}
.y12c{bottom:514.398743px;}
.y5c{bottom:515.053052px;}
.y19{bottom:528.264269px;}
.ye5{bottom:528.483148px;}
.y12b{bottom:529.398743px;}
.y5b{bottom:530.051552px;}
.yce{bottom:537.636168px;}
.ye4{bottom:543.481648px;}
.y18{bottom:544.761269px;}
.y5a{bottom:545.050052px;}
.ycd{bottom:552.634668px;}
.ye3{bottom:558.484648px;}
.y59{bottom:560.048552px;}
.y12a{bottom:560.870238px;}
.y17{bottom:561.258269px;}
.ycc{bottom:567.633168px;}
.ye2{bottom:573.483148px;}
.y58{bottom:575.047052px;}
.y129{bottom:575.868738px;}
.y16{bottom:577.755269px;}
.ycb{bottom:582.631668px;}
.ye1{bottom:588.481648px;}
.y57{bottom:590.045552px;}
.y128{bottom:590.867238px;}
.y15{bottom:594.252269px;}
.ye0{bottom:603.481648px;}
.y56{bottom:605.050052px;}
.y127{bottom:605.865738px;}
.y14{bottom:610.749269px;}
.ydf{bottom:618.481648px;}
.y55{bottom:620.048552px;}
.y126{bottom:620.865738px;}
.y13{bottom:627.246269px;}
.yde{bottom:633.481648px;}
.y54{bottom:635.047052px;}
.y12{bottom:643.743269px;}
.ydd{bottom:648.481648px;}
.y53{bottom:650.045552px;}
.y125{bottom:650.873238px;}
.y11{bottom:660.240269px;}
.ydc{bottom:663.483148px;}
.y52{bottom:665.053052px;}
.y124{bottom:665.871738px;}
.y10{bottom:676.737269px;}
.ydb{bottom:678.481648px;}
.y51{bottom:680.051552px;}
.y123{bottom:680.870238px;}
.yf{bottom:693.234269px;}
.yda{bottom:693.481648px;}
.y50{bottom:695.050052px;}
.y122{bottom:695.868738px;}
.yd9{bottom:708.484648px;}
.ye{bottom:709.731269px;}
.y4f{bottom:710.048552px;}
.y121{bottom:710.867238px;}
.yd8{bottom:723.483148px;}
.y4e{bottom:725.047052px;}
.y120{bottom:725.865738px;}
.yd{bottom:726.228269px;}
.yd7{bottom:738.481648px;}
.y4d{bottom:740.045552px;}
.yac{bottom:740.374674px;}
.y11f{bottom:740.865738px;}
.yc{bottom:742.725269px;}
.yd6{bottom:753.481694px;}
.y4c{bottom:755.045506px;}
.yab{bottom:755.373174px;}
.yb{bottom:759.222269px;}
.yd5{bottom:768.480194px;}
.y4b{bottom:770.045506px;}
.yaa{bottom:770.373174px;}
.y11e{bottom:770.959534px;}
.ya{bottom:775.719269px;}
.y11d{bottom:783.705784px;}
.y4a{bottom:785.044006px;}
.ya9{bottom:785.374674px;}
.y11c{bottom:796.452034px;}
.y49{bottom:800.044006px;}
.ya8{bottom:800.373174px;}
.y104{bottom:805.052983px;}
.y9{bottom:805.719269px;}
.y11b{bottom:809.198284px;}
.ya7{bottom:815.371674px;}
.y103{bottom:820.051483px;}
.y11a{bottom:821.944534px;}
.y8{bottom:823.719269px;}
.y48{bottom:833.069506px;}
.y119{bottom:834.690784px;}
.y118{bottom:847.437034px;}
.y47{bottom:848.068006px;}
.y7{bottom:856.707269px;}
.y117{bottom:860.183284px;}
.y46{bottom:863.066506px;}
.y116{bottom:872.929534px;}
.y45{bottom:878.065006px;}
.y115{bottom:885.675784px;}
.y44{bottom:893.063506px;}
.y114{bottom:898.422034px;}
.y6{bottom:901.713269px;}
.y43{bottom:908.062006px;}
.y113{bottom:911.168284px;}
.y42{bottom:923.060506px;}
.y112{bottom:923.914534px;}
.y111{bottom:936.660784px;}
.y41{bottom:938.059006px;}
.y5{bottom:946.719269px;}
.y110{bottom:949.407034px;}
.y40{bottom:953.057506px;}
.y2f{bottom:954.366760px;}
.y10f{bottom:962.153284px;}
.y3f{bottom:968.056006px;}
.y10e{bottom:974.899534px;}
.y3e{bottom:983.054506px;}
.y10d{bottom:987.645784px;}
.y3d{bottom:998.053006px;}
.y10c{bottom:1000.392034px;}
.y3c{bottom:1013.051506px;}
.y10b{bottom:1013.138284px;}
.y10a{bottom:1025.884534px;}
.y3b{bottom:1028.050006px;}
.y109{bottom:1038.630784px;}
.y3a{bottom:1043.048506px;}
.y108{bottom:1051.377034px;}
.y39{bottom:1058.047006px;}
.y107{bottom:1064.123284px;}
.y38{bottom:1073.045506px;}
.y106{bottom:1076.869534px;}
.y37{bottom:1088.044006px;}
.y105{bottom:1089.615784px;}
.y7a{bottom:1140.640320px;}
.y92{bottom:1140.746521px;}
.y36{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h11{height:23.842749px;}
.h2{height:34.523438px;}
.h20{height:35.411133px;}
.h8{height:38.838867px;}
.h12{height:41.668744px;}
.h23{height:44.505000px;}
.h21{height:45.090000px;}
.h3{height:45.679688px;}
.h22{height:46.080000px;}
.h15{height:47.469727px;}
.h6{height:49.050293px;}
.h7{height:49.183594px;}
.h13{height:49.373529px;}
.h24{height:50.439000px;}
.hb{height:53.406000px;}
.h9{height:53.416017px;}
.h19{height:53.559883px;}
.h17{height:53.577863px;}
.hc{height:53.583863px;}
.h18{height:53.589863px;}
.hf{height:53.595863px;}
.hd{height:53.601863px;}
.h1b{height:53.601907px;}
.h1d{height:53.607680px;}
.ha{height:53.607863px;}
.h16{height:53.608046px;}
.h1c{height:53.613680px;}
.h14{height:53.614046px;}
.h1f{height:54.108000px;}
.h1a{height:55.290000px;}
.he{height:55.296000px;}
.h1e{height:55.728000px;}
.h4{height:57.099609px;}
.h10{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.228350px;}
.x3{left:61.653603px;}
.x7{left:141.395702px;}
.x5{left:233.858253px;}
.x6{left:251.858387px;}
.xa{left:254.108411px;}
.xb{left:302.498703px;}
.x4{left:586.814117px;}
.x9{left:797.390808px;}
.x2{left:798.901611px;}
.x1{left:825.001190px;}
@media print{
.v4{vertical-align:-15.866662pt;}
.v5{vertical-align:-9.605105pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.599772pt;}
.v3{vertical-align:16.624104pt;}
.v2{vertical-align:18.666667pt;}
.ls2c{letter-spacing:-1.488000pt;}
.ls21{letter-spacing:-1.248000pt;}
.ls2a{letter-spacing:-1.104000pt;}
.ls4f{letter-spacing:-1.040000pt;}
.ls4e{letter-spacing:-0.960000pt;}
.ls24{letter-spacing:-0.720000pt;}
.ls59{letter-spacing:-0.680000pt;}
.ls2d{letter-spacing:-0.672000pt;}
.ls51{letter-spacing:-0.400000pt;}
.ls18{letter-spacing:-0.336000pt;}
.ls29{letter-spacing:-0.288000pt;}
.ls25{letter-spacing:-0.240000pt;}
.ls58{letter-spacing:-0.200000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls5b{letter-spacing:-0.160000pt;}
.ls31{letter-spacing:-0.156000pt;}
.ls2f{letter-spacing:-0.144000pt;}
.ls2b{letter-spacing:-0.124800pt;}
.ls4d{letter-spacing:-0.120000pt;}
.ls30{letter-spacing:-0.096000pt;}
.ls4b{letter-spacing:-0.093600pt;}
.ls5a{letter-spacing:-0.080000pt;}
.ls4a{letter-spacing:-0.062400pt;}
.ls26{letter-spacing:-0.048000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011754pt;}
.ls1{letter-spacing:0.012242pt;}
.lsc{letter-spacing:0.016025pt;}
.ls28{letter-spacing:0.031200pt;}
.ls1b{letter-spacing:0.048000pt;}
.ls27{letter-spacing:0.062400pt;}
.ls50{letter-spacing:0.080000pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls47{letter-spacing:0.100000pt;}
.ls8{letter-spacing:0.111935pt;}
.ls48{letter-spacing:0.120000pt;}
.ls37{letter-spacing:0.124784pt;}
.ls1f{letter-spacing:0.124800pt;}
.ls35{letter-spacing:0.136241pt;}
.ls34{letter-spacing:0.136725pt;}
.ls6{letter-spacing:0.141839pt;}
.ls3b{letter-spacing:0.142974pt;}
.ls1a{letter-spacing:0.144000pt;}
.ls7{letter-spacing:0.156000pt;}
.ls39{letter-spacing:0.158393pt;}
.ls46{letter-spacing:0.160000pt;}
.ls3c{letter-spacing:0.165160pt;}
.ls3d{letter-spacing:0.165927pt;}
.ls44{letter-spacing:0.180000pt;}
.ls22{letter-spacing:0.187200pt;}
.ls3{letter-spacing:0.192000pt;}
.ls3a{letter-spacing:0.192597pt;}
.ls43{letter-spacing:0.200000pt;}
.ls38{letter-spacing:0.206400pt;}
.ls2e{letter-spacing:0.216000pt;}
.ls23{letter-spacing:0.218400pt;}
.ls3f{letter-spacing:0.224893pt;}
.ls49{letter-spacing:0.231939pt;}
.ls40{letter-spacing:0.234667pt;}
.ls10{letter-spacing:0.240000pt;}
.ls17{letter-spacing:0.280800pt;}
.lsf{letter-spacing:0.288000pt;}
.ls45{letter-spacing:0.291947pt;}
.ls33{letter-spacing:0.292394pt;}
.ls5d{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.331200pt;}
.ls11{letter-spacing:0.336000pt;}
.ls36{letter-spacing:0.340793pt;}
.ls1e{letter-spacing:0.359449pt;}
.ls4c{letter-spacing:0.360000pt;}
.ls32{letter-spacing:0.361565pt;}
.ls54{letter-spacing:0.380000pt;}
.ls12{letter-spacing:0.384000pt;}
.ls41{letter-spacing:0.400000pt;}
.ls16{letter-spacing:0.432000pt;}
.lsb{letter-spacing:0.436800pt;}
.ls5c{letter-spacing:0.440000pt;}
.ls5{letter-spacing:0.451734pt;}
.lsa{letter-spacing:0.452400pt;}
.ls14{letter-spacing:0.468000pt;}
.ls20{letter-spacing:0.480000pt;}
.ls13{letter-spacing:0.528000pt;}
.ls19{letter-spacing:0.576000pt;}
.ls4{letter-spacing:0.624000pt;}
.ls1d{letter-spacing:0.672000pt;}
.lse{letter-spacing:0.720000pt;}
.ls52{letter-spacing:1.040000pt;}
.ls56{letter-spacing:1.055989pt;}
.ls57{letter-spacing:1.056000pt;}
.ls55{letter-spacing:1.156055pt;}
.ls42{letter-spacing:1.236000pt;}
.ls53{letter-spacing:1.320000pt;}
.ls3e{letter-spacing:1.440000pt;}
.ls0{letter-spacing:2.666667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws58{word-spacing:-12.336000pt;}
.ws50{word-spacing:-12.320000pt;}
.ws20{word-spacing:-11.568000pt;}
.ws16{word-spacing:-11.424000pt;}
.ws14{word-spacing:-11.136000pt;}
.ws6a{word-spacing:-11.112000pt;}
.ws4c{word-spacing:-10.992000pt;}
.ws32{word-spacing:-10.944000pt;}
.ws18{word-spacing:-10.896000pt;}
.ws3c{word-spacing:-10.416000pt;}
.ws22{word-spacing:-10.176000pt;}
.ws3{word-spacing:-10.080000pt;}
.ws3a{word-spacing:-9.792000pt;}
.ws1d{word-spacing:-9.648000pt;}
.ws3d{word-spacing:-9.408000pt;}
.ws5c{word-spacing:-9.280000pt;}
.ws68{word-spacing:-9.080000pt;}
.ws69{word-spacing:-9.000000pt;}
.ws67{word-spacing:-8.960000pt;}
.ws53{word-spacing:-8.760000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws51{word-spacing:-8.200000pt;}
.ws52{word-spacing:-8.120000pt;}
.ws6{word-spacing:-7.550400pt;}
.ws21{word-spacing:-7.519200pt;}
.ws7{word-spacing:-7.363200pt;}
.ws1f{word-spacing:-7.300800pt;}
.ws1e{word-spacing:-7.269600pt;}
.ws5{word-spacing:-7.238400pt;}
.ws1c{word-spacing:-7.207200pt;}
.ws4d{word-spacing:-7.176000pt;}
.ws2{word-spacing:-7.141333pt;}
.ws39{word-spacing:-7.113600pt;}
.ws4{word-spacing:-7.082400pt;}
.ws4e{word-spacing:-7.051200pt;}
.ws4f{word-spacing:-7.020000pt;}
.ws3b{word-spacing:-6.957600pt;}
.ws44{word-spacing:-6.926400pt;}
.ws8{word-spacing:-5.893333pt;}
.ws77{word-spacing:-5.640000pt;}
.ws6d{word-spacing:-5.360000pt;}
.ws75{word-spacing:-5.280000pt;}
.ws2c{word-spacing:-4.896000pt;}
.ws19{word-spacing:-1.104000pt;}
.ws10{word-spacing:-1.056000pt;}
.ws12{word-spacing:-1.008000pt;}
.ws24{word-spacing:-0.960000pt;}
.ws5d{word-spacing:-0.920000pt;}
.ws6c{word-spacing:-0.880000pt;}
.ws33{word-spacing:-0.864000pt;}
.ws41{word-spacing:-0.816000pt;}
.ws38{word-spacing:-0.768000pt;}
.ws71{word-spacing:-0.680000pt;}
.ws70{word-spacing:-0.640000pt;}
.ws13{word-spacing:-0.576000pt;}
.ws57{word-spacing:-0.480000pt;}
.ws17{word-spacing:-0.468000pt;}
.ws78{word-spacing:-0.440000pt;}
.wse{word-spacing:-0.432000pt;}
.ws74{word-spacing:-0.400000pt;}
.ws28{word-spacing:-0.384000pt;}
.ws5b{word-spacing:-0.360000pt;}
.ws15{word-spacing:-0.336000pt;}
.ws60{word-spacing:-0.320000pt;}
.ws35{word-spacing:-0.288000pt;}
.ws27{word-spacing:-0.240000pt;}
.ws59{word-spacing:-0.234667pt;}
.ws61{word-spacing:-0.200000pt;}
.wsa{word-spacing:-0.192000pt;}
.ws5e{word-spacing:-0.160000pt;}
.ws56{word-spacing:-0.144000pt;}
.ws76{word-spacing:-0.120000pt;}
.ws2b{word-spacing:-0.096000pt;}
.ws64{word-spacing:-0.080000pt;}
.ws40{word-spacing:-0.031200pt;}
.ws9{word-spacing:0.000000pt;}
.ws25{word-spacing:0.048000pt;}
.ws65{word-spacing:0.120000pt;}
.ws49{word-spacing:0.144000pt;}
.ws36{word-spacing:0.192000pt;}
.ws6e{word-spacing:0.200000pt;}
.ws2d{word-spacing:0.240000pt;}
.ws66{word-spacing:0.280000pt;}
.ws37{word-spacing:0.336000pt;}
.ws54{word-spacing:0.384000pt;}
.ws43{word-spacing:0.432000pt;}
.ws5f{word-spacing:0.440000pt;}
.wsf{word-spacing:0.480000pt;}
.ws31{word-spacing:0.528000pt;}
.ws6b{word-spacing:0.560000pt;}
.ws34{word-spacing:0.576000pt;}
.ws4a{word-spacing:0.624000pt;}
.ws26{word-spacing:0.672000pt;}
.ws63{word-spacing:0.680000pt;}
.ws46{word-spacing:0.720000pt;}
.ws3e{word-spacing:0.768000pt;}
.ws11{word-spacing:0.816000pt;}
.ws72{word-spacing:0.840000pt;}
.ws79{word-spacing:0.880000pt;}
.ws4b{word-spacing:0.912000pt;}
.ws5a{word-spacing:0.920000pt;}
.ws30{word-spacing:0.960000pt;}
.ws45{word-spacing:1.008000pt;}
.ws62{word-spacing:1.040000pt;}
.ws23{word-spacing:1.056000pt;}
.ws6f{word-spacing:1.080000pt;}
.wsd{word-spacing:1.104000pt;}
.ws1b{word-spacing:1.152000pt;}
.ws2e{word-spacing:1.200000pt;}
.ws47{word-spacing:1.248000pt;}
.ws2a{word-spacing:1.296000pt;}
.ws2f{word-spacing:1.344000pt;}
.ws3f{word-spacing:1.440000pt;}
.wsb{word-spacing:1.488000pt;}
.ws48{word-spacing:1.584000pt;}
.ws7a{word-spacing:1.632000pt;}
.ws55{word-spacing:1.728000pt;}
.wsc{word-spacing:1.824000pt;}
.ws1a{word-spacing:1.872000pt;}
.ws7c{word-spacing:1.920000pt;}
.ws73{word-spacing:2.000000pt;}
.ws29{word-spacing:2.496000pt;}
.ws7f{word-spacing:2.688000pt;}
.ws80{word-spacing:2.784000pt;}
.ws7d{word-spacing:2.832000pt;}
.ws7e{word-spacing:2.976000pt;}
.ws7b{word-spacing:3.552000pt;}
.ws83{word-spacing:5.040000pt;}
.ws84{word-spacing:5.568000pt;}
.ws81{word-spacing:5.760000pt;}
.ws82{word-spacing:6.000000pt;}
.ws42{word-spacing:13.584000pt;}
._14{margin-left:-18.624006pt;}
._5{margin-left:-13.052267pt;}
._10{margin-left:-11.915733pt;}
._7{margin-left:-10.277888pt;}
._13{margin-left:-9.022934pt;}
._9{margin-left:-7.273052pt;}
._12{margin-left:-6.213519pt;}
._6{margin-left:-5.237867pt;}
._3{margin-left:-3.664000pt;}
._2{margin-left:-2.717867pt;}
._0{margin-left:-1.668267pt;}
._4{width:0.991467pt;}
._f{width:1.963200pt;}
._11{width:3.961326pt;}
._17{width:5.364000pt;}
._18{width:6.920267pt;}
._a{width:9.456000pt;}
._8{width:10.848000pt;}
._b{width:11.773178pt;}
._c{width:13.087840pt;}
._15{width:14.480000pt;}
._16{width:16.040000pt;}
._e{width:19.439329pt;}
._d{width:20.896409pt;}
._1{width:291.417600pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:2.843733pt;}
.y35{bottom:2.843867pt;}
.yb0{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y34{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.y91{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y33{bottom:60.477867pt;}
.ya6{bottom:63.118799pt;}
.y89{bottom:64.809332pt;}
.y102{bottom:67.826799pt;}
.yca{bottom:68.436132pt;}
.y79{bottom:71.166269pt;}
.y32{bottom:73.811200pt;}
.ya5{bottom:76.450799pt;}
.y88{bottom:78.153337pt;}
.y101{bottom:79.156799pt;}
.yc9{bottom:81.768132pt;}
.y78{bottom:84.498269pt;}
.y31{bottom:87.144533pt;}
.ya4{bottom:89.782799pt;}
.y100{bottom:90.486799pt;}
.y87{bottom:91.485337pt;}
.yc8{bottom:95.100132pt;}
.y77{bottom:97.830269pt;}
.yff{bottom:101.816799pt;}
.ya3{bottom:103.114799pt;}
.y30{bottom:104.439199pt;}
.y86{bottom:104.817337pt;}
.yc7{bottom:108.432132pt;}
.y76{bottom:111.162269pt;}
.yfe{bottom:113.146799pt;}
.ya2{bottom:116.446799pt;}
.y85{bottom:118.149337pt;}
.yc6{bottom:121.764132pt;}
.yfd{bottom:124.476799pt;}
.y75{bottom:124.494269pt;}
.ya1{bottom:129.778799pt;}
.y84{bottom:131.481337pt;}
.yc5{bottom:135.096132pt;}
.yfc{bottom:135.806799pt;}
.y74{bottom:137.826269pt;}
.ya0{bottom:143.110799pt;}
.y83{bottom:144.813337pt;}
.yfb{bottom:147.136799pt;}
.y2e{bottom:148.357606pt;}
.yc4{bottom:148.428132pt;}
.y73{bottom:151.158269pt;}
.y9f{bottom:156.442799pt;}
.y82{bottom:158.145337pt;}
.yfa{bottom:158.466799pt;}
.y2d{bottom:161.689606pt;}
.yc3{bottom:161.762799pt;}
.y72{bottom:164.490269pt;}
.y9e{bottom:169.774799pt;}
.yf9{bottom:169.796799pt;}
.y81{bottom:171.477337pt;}
.y2c{bottom:175.022940pt;}
.yc2{bottom:175.094799pt;}
.y71{bottom:177.822269pt;}
.yf8{bottom:181.126799pt;}
.yd4{bottom:182.594659pt;}
.y9d{bottom:183.106799pt;}
.y80{bottom:184.809337pt;}
.y2b{bottom:188.357606pt;}
.yc1{bottom:188.426799pt;}
.y13c{bottom:190.588662pt;}
.y70{bottom:191.154269pt;}
.yf7{bottom:192.456799pt;}
.yd3{bottom:195.926659pt;}
.y9c{bottom:196.438799pt;}
.y7f{bottom:198.146670pt;}
.y2a{bottom:201.689606pt;}
.yc0{bottom:201.760132pt;}
.yf6{bottom:203.786799pt;}
.y6f{bottom:204.486269pt;}
.yd2{bottom:209.258659pt;}
.y9b{bottom:209.770799pt;}
.y7e{bottom:211.478670pt;}
.y29{bottom:215.022940pt;}
.yf5{bottom:215.116799pt;}
.y13b{bottom:217.252660pt;}
.y6e{bottom:217.818269pt;}
.yd1{bottom:222.590659pt;}
.y9a{bottom:223.102799pt;}
.y7d{bottom:224.810670pt;}
.yf4{bottom:226.446799pt;}
.y28{bottom:228.356273pt;}
.y13a{bottom:230.584660pt;}
.ybf{bottom:231.102799pt;}
.y6d{bottom:231.154269pt;}
.yd0{bottom:235.922659pt;}
.y99{bottom:236.434799pt;}
.yf3{bottom:237.776799pt;}
.y7c{bottom:238.142670pt;}
.y27{bottom:241.692273pt;}
.y139{bottom:243.916660pt;}
.ybe{bottom:244.434799pt;}
.y6c{bottom:244.486269pt;}
.yf2{bottom:249.106799pt;}
.ycf{bottom:249.254659pt;}
.y98{bottom:249.766799pt;}
.y7b{bottom:251.474670pt;}
.y26{bottom:255.024273pt;}
.y138{bottom:257.248660pt;}
.ybd{bottom:257.766799pt;}
.y6b{bottom:257.818269pt;}
.yf1{bottom:260.436799pt;}
.y97{bottom:263.098799pt;}
.y25{bottom:268.356273pt;}
.y137{bottom:270.580660pt;}
.ybc{bottom:271.098799pt;}
.y6a{bottom:271.151602pt;}
.yf0{bottom:271.766799pt;}
.y96{bottom:276.430799pt;}
.y24{bottom:281.690940pt;}
.yef{bottom:283.096799pt;}
.y136{bottom:283.912660pt;}
.ybb{bottom:284.430799pt;}
.y69{bottom:284.508935pt;}
.y95{bottom:289.762799pt;}
.yee{bottom:294.426799pt;}
.y23{bottom:295.022940pt;}
.y8f{bottom:295.234816pt;}
.y135{bottom:297.244660pt;}
.yba{bottom:297.762799pt;}
.y68{bottom:297.840935pt;}
.y94{bottom:303.094799pt;}
.yed{bottom:305.760132pt;}
.y22{bottom:308.356273pt;}
.y8e{bottom:308.566816pt;}
.y134{bottom:310.576660pt;}
.yb9{bottom:311.094799pt;}
.y67{bottom:311.172935pt;}
.y93{bottom:316.426799pt;}
.y21{bottom:321.694940pt;}
.y8d{bottom:321.898816pt;}
.yb8{bottom:324.426799pt;}
.y66{bottom:324.504935pt;}
.y133{bottom:330.567327pt;}
.y20{bottom:335.026940pt;}
.y8c{bottom:335.230816pt;}
.yb7{bottom:337.760132pt;}
.y65{bottom:337.836935pt;}
.y132{bottom:343.899327pt;}
.y1f{bottom:348.358940pt;}
.y8b{bottom:348.562816pt;}
.yec{bottom:349.760132pt;}
.y64{bottom:351.168935pt;}
.yaf{bottom:352.313345pt;}
.y1e{bottom:361.690940pt;}
.y8a{bottom:361.894816pt;}
.y131{bottom:363.903327pt;}
.y63{bottom:364.500935pt;}
.yae{bottom:365.646678pt;}
.yb6{bottom:367.100132pt;}
.y1d{bottom:375.022940pt;}
.yeb{bottom:376.428132pt;}
.y62{bottom:377.832935pt;}
.yad{bottom:378.978678pt;}
.yb5{bottom:380.432132pt;}
.y130{bottom:383.907327pt;}
.y1c{bottom:388.356273pt;}
.yea{bottom:389.760132pt;}
.y61{bottom:391.164935pt;}
.yb4{bottom:393.764132pt;}
.y1b{bottom:401.732239pt;}
.ye9{bottom:403.093465pt;}
.y12f{bottom:403.911327pt;}
.y60{bottom:404.496935pt;}
.yb3{bottom:407.096132pt;}
.y12e{bottom:417.243327pt;}
.y5f{bottom:417.828935pt;}
.yb2{bottom:420.428132pt;}
.ye8{bottom:429.762799pt;}
.y12d{bottom:430.576660pt;}
.y5e{bottom:431.160935pt;}
.yb1{bottom:433.760132pt;}
.ye7{bottom:443.094799pt;}
.y5d{bottom:444.492935pt;}
.y1a{bottom:454.904239pt;}
.ye6{bottom:456.428132pt;}
.y12c{bottom:457.243327pt;}
.y5c{bottom:457.824935pt;}
.y19{bottom:469.568239pt;}
.ye5{bottom:469.762799pt;}
.y12b{bottom:470.576660pt;}
.y5b{bottom:471.156935pt;}
.yce{bottom:477.898816pt;}
.ye4{bottom:483.094799pt;}
.y18{bottom:484.232239pt;}
.y5a{bottom:484.488935pt;}
.ycd{bottom:491.230816pt;}
.ye3{bottom:496.430799pt;}
.y59{bottom:497.820935pt;}
.y12a{bottom:498.551323pt;}
.y17{bottom:498.896239pt;}
.ycc{bottom:504.562816pt;}
.ye2{bottom:509.762799pt;}
.y58{bottom:511.152935pt;}
.y129{bottom:511.883323pt;}
.y16{bottom:513.560239pt;}
.ycb{bottom:517.894816pt;}
.ye1{bottom:523.094799pt;}
.y57{bottom:524.484935pt;}
.y128{bottom:525.215323pt;}
.y15{bottom:528.224239pt;}
.ye0{bottom:536.428132pt;}
.y56{bottom:537.822269pt;}
.y127{bottom:538.547323pt;}
.y14{bottom:542.888239pt;}
.ydf{bottom:549.761465pt;}
.y55{bottom:551.154269pt;}
.y126{bottom:551.880656pt;}
.y13{bottom:557.552239pt;}
.yde{bottom:563.094799pt;}
.y54{bottom:564.486269pt;}
.y12{bottom:572.216239pt;}
.ydd{bottom:576.428132pt;}
.y53{bottom:577.818269pt;}
.y125{bottom:578.553989pt;}
.y11{bottom:586.880239pt;}
.ydc{bottom:589.762799pt;}
.y52{bottom:591.158269pt;}
.y124{bottom:591.885989pt;}
.y10{bottom:601.544239pt;}
.ydb{bottom:603.094799pt;}
.y51{bottom:604.490269pt;}
.y123{bottom:605.217989pt;}
.yf{bottom:616.208239pt;}
.yda{bottom:616.428132pt;}
.y50{bottom:617.822269pt;}
.y122{bottom:618.549989pt;}
.yd9{bottom:629.764132pt;}
.ye{bottom:630.872239pt;}
.y4f{bottom:631.154269pt;}
.y121{bottom:631.881989pt;}
.yd8{bottom:643.096132pt;}
.y4e{bottom:644.486269pt;}
.y120{bottom:645.213989pt;}
.yd{bottom:645.536239pt;}
.yd7{bottom:656.428132pt;}
.y4d{bottom:657.818269pt;}
.yac{bottom:658.110821pt;}
.y11f{bottom:658.547323pt;}
.yc{bottom:660.200239pt;}
.yd6{bottom:669.761506pt;}
.y4c{bottom:671.151561pt;}
.yab{bottom:671.442821pt;}
.yb{bottom:674.864239pt;}
.yd5{bottom:683.093506pt;}
.y4b{bottom:684.484895pt;}
.yaa{bottom:684.776154pt;}
.y11e{bottom:685.297363pt;}
.ya{bottom:689.528239pt;}
.y11d{bottom:696.627363pt;}
.y4a{bottom:697.816895pt;}
.ya9{bottom:698.110821pt;}
.y11c{bottom:707.957363pt;}
.y49{bottom:711.150228pt;}
.ya8{bottom:711.442821pt;}
.y104{bottom:715.602652pt;}
.y9{bottom:716.194906pt;}
.y11b{bottom:719.287363pt;}
.ya7{bottom:724.774821pt;}
.y103{bottom:728.934652pt;}
.y11a{bottom:730.617363pt;}
.y8{bottom:732.194906pt;}
.y48{bottom:740.506228pt;}
.y119{bottom:741.947363pt;}
.y118{bottom:753.277363pt;}
.y47{bottom:753.838228pt;}
.y7{bottom:761.517572pt;}
.y117{bottom:764.607363pt;}
.y46{bottom:767.170228pt;}
.y116{bottom:775.937363pt;}
.y45{bottom:780.502228pt;}
.y115{bottom:787.267363pt;}
.y44{bottom:793.834228pt;}
.y114{bottom:798.597363pt;}
.y6{bottom:801.522906pt;}
.y43{bottom:807.166228pt;}
.y113{bottom:809.927363pt;}
.y42{bottom:820.498228pt;}
.y112{bottom:821.257363pt;}
.y111{bottom:832.587363pt;}
.y41{bottom:833.830228pt;}
.y5{bottom:841.528239pt;}
.y110{bottom:843.917363pt;}
.y40{bottom:847.162228pt;}
.y2f{bottom:848.326009pt;}
.y10f{bottom:855.247363pt;}
.y3f{bottom:860.494228pt;}
.y10e{bottom:866.577363pt;}
.y3e{bottom:873.826228pt;}
.y10d{bottom:877.907363pt;}
.y3d{bottom:887.158228pt;}
.y10c{bottom:889.237363pt;}
.y3c{bottom:900.490228pt;}
.y10b{bottom:900.567363pt;}
.y10a{bottom:911.897363pt;}
.y3b{bottom:913.822228pt;}
.y109{bottom:923.227363pt;}
.y3a{bottom:927.154228pt;}
.y108{bottom:934.557363pt;}
.y39{bottom:940.486228pt;}
.y107{bottom:945.887363pt;}
.y38{bottom:953.818228pt;}
.y106{bottom:957.217363pt;}
.y37{bottom:967.150228pt;}
.y105{bottom:968.547363pt;}
.y7a{bottom:1013.902507pt;}
.y92{bottom:1013.996908pt;}
.y36{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h11{height:21.193555pt;}
.h2{height:30.687500pt;}
.h20{height:31.476562pt;}
.h8{height:34.523438pt;}
.h12{height:37.038883pt;}
.h23{height:39.560000pt;}
.h21{height:40.080000pt;}
.h3{height:40.604167pt;}
.h22{height:40.960000pt;}
.h15{height:42.195312pt;}
.h6{height:43.600260pt;}
.h7{height:43.718750pt;}
.h13{height:43.887581pt;}
.h24{height:44.834667pt;}
.hb{height:47.472000pt;}
.h9{height:47.480904pt;}
.h19{height:47.608785pt;}
.h17{height:47.624767pt;}
.hc{height:47.630101pt;}
.h18{height:47.635434pt;}
.hf{height:47.640767pt;}
.hd{height:47.646101pt;}
.h1b{height:47.646139pt;}
.h1d{height:47.651271pt;}
.ha{height:47.651434pt;}
.h16{height:47.651597pt;}
.h1c{height:47.656605pt;}
.h14{height:47.656930pt;}
.h1f{height:48.096000pt;}
.h1a{height:49.146667pt;}
.he{height:49.152000pt;}
.h1e{height:49.536000pt;}
.h4{height:50.755208pt;}
.h10{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.425200pt;}
.x3{left:54.803202pt;}
.x7{left:125.685069pt;}
.x5{left:207.874003pt;}
.x6{left:223.874121pt;}
.xa{left:225.874143pt;}
.xb{left:268.887736pt;}
.x4{left:521.612549pt;}
.x9{left:708.791829pt;}
.x2{left:710.134766pt;}
.x1{left:733.334391pt;}
}




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