
    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_0ae58b8d04524feb7317ea66.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.165000;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_3c2c3956d83471e7fcd08efe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_54a709a49f9136504a714894.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.167000;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_992afb92241b936787874fe0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.243000;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_a99122a48f352577527e6b6a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.200900;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_c0c9ffb7edaf3cf6ff6b4eeb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.235000;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_31963cd1c36303c4d7a3593f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.274000;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_666724b8556000e40711ac98.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.031000;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_6ab245111d8878fdc50499d3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.184000;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);}
.m2{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,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);}
.v2{vertical-align:-19.979400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls45{letter-spacing:-7.599000px;}
.ls3d{letter-spacing:-4.073400px;}
.ls28{letter-spacing:-1.620000px;}
.ls46{letter-spacing:-1.530000px;}
.lsd{letter-spacing:-1.428000px;}
.ls30{letter-spacing:-0.414000px;}
.ls3a{letter-spacing:-0.378000px;}
.ls2d{letter-spacing:-0.349800px;}
.ls29{letter-spacing:-0.300000px;}
.lsc{letter-spacing:-0.255000px;}
.ls1f{letter-spacing:-0.240000px;}
.ls1e{letter-spacing:-0.216000px;}
.ls47{letter-spacing:-0.204000px;}
.ls33{letter-spacing:-0.180000px;}
.ls2b{letter-spacing:-0.174900px;}
.ls2e{letter-spacing:-0.120000px;}
.ls42{letter-spacing:-0.069960px;}
.ls21{letter-spacing:-0.060000px;}
.ls41{letter-spacing:-0.054000px;}
.lsa{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.051000px;}
.ls26{letter-spacing:0.055800px;}
.ls1c{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.102000px;}
.ls34{letter-spacing:0.104940px;}
.ls7{letter-spacing:0.111600px;}
.ls6{letter-spacing:0.120000px;}
.ls24{letter-spacing:0.132360px;}
.ls43{letter-spacing:0.139920px;}
.ls2a{letter-spacing:0.174900px;}
.ls19{letter-spacing:0.180000px;}
.ls3c{letter-spacing:0.209880px;}
.ls22{letter-spacing:0.211080px;}
.ls8{letter-spacing:0.223200px;}
.ls4{letter-spacing:0.225600px;}
.ls1a{letter-spacing:0.240000px;}
.ls27{letter-spacing:0.270000px;}
.ls2f{letter-spacing:0.279840px;}
.ls20{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.306000px;}
.ls2c{letter-spacing:0.330000px;}
.ls25{letter-spacing:0.334800px;}
.ls3b{letter-spacing:0.349800px;}
.ls17{letter-spacing:0.353926px;}
.ls5{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.390600px;}
.lsf{letter-spacing:0.420000px;}
.ls1d{letter-spacing:0.446400px;}
.ls35{letter-spacing:0.450000px;}
.ls16{letter-spacing:0.460794px;}
.ls23{letter-spacing:0.480000px;}
.ls39{letter-spacing:0.495600px;}
.ls32{letter-spacing:0.502200px;}
.ls40{letter-spacing:0.510000px;}
.ls1b{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.600000px;}
.ls18{letter-spacing:0.630000px;}
.ls36{letter-spacing:0.660000px;}
.ls3e{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.780000px;}
.ls10{letter-spacing:0.840000px;}
.ls14{letter-spacing:0.900000px;}
.ls13{letter-spacing:0.960000px;}
.ls37{letter-spacing:0.990000px;}
.ls12{letter-spacing:1.020000px;}
.ls9{letter-spacing:1.080000px;}
.lse{letter-spacing:1.200000px;}
.lsb{letter-spacing:1.326000px;}
.ls3f{letter-spacing:1.440000px;}
.ls3{letter-spacing:2.295000px;}
.ls48{letter-spacing:2.397000px;}
.ls44{letter-spacing:3.315000px;}
.ls38{letter-spacing:4.020000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-13.566000px;}
.ws9c{word-spacing:-13.200000px;}
.ws3{word-spacing:-13.020000px;}
.ws3c{word-spacing:-12.600000px;}
.ws22{word-spacing:-12.582000px;}
.wsaa{word-spacing:-12.480000px;}
.ws99{word-spacing:-12.420000px;}
.ws9a{word-spacing:-12.240000px;}
.ws53{word-spacing:-11.997000px;}
.ws9b{word-spacing:-11.880000px;}
.ws3b{word-spacing:-11.640000px;}
.ws6{word-spacing:-11.610000px;}
.ws9e{word-spacing:-11.580000px;}
.ws4{word-spacing:-11.400000px;}
.ws5{word-spacing:-11.280000px;}
.wsa9{word-spacing:-11.220000px;}
.wsb3{word-spacing:-10.965000px;}
.ws1{word-spacing:-10.710000px;}
.wsb5{word-spacing:-9.435000px;}
.ws7{word-spacing:-8.901000px;}
.ws7d{word-spacing:-8.487000px;}
.ws9d{word-spacing:-7.695600px;}
.ws7c{word-spacing:-7.625640px;}
.ws9f{word-spacing:-7.555680px;}
.ws66{word-spacing:-7.520700px;}
.wsb2{word-spacing:-7.485720px;}
.ws8e{word-spacing:-7.450740px;}
.ws2{word-spacing:-7.345800px;}
.wsab{word-spacing:-7.275840px;}
.ws67{word-spacing:-7.170900px;}
.ws7b{word-spacing:-6.996000px;}
.wsb4{word-spacing:-3.366000px;}
.wsb8{word-spacing:-3.315000px;}
.wsc0{word-spacing:-2.397000px;}
.ws72{word-spacing:-2.340000px;}
.ws69{word-spacing:-2.160000px;}
.ws80{word-spacing:-2.100000px;}
.ws2e{word-spacing:-2.040000px;}
.ws2f{word-spacing:-1.980000px;}
.ws2b{word-spacing:-1.920000px;}
.ws32{word-spacing:-1.860000px;}
.ws64{word-spacing:-1.841400px;}
.ws3f{word-spacing:-1.800000px;}
.ws65{word-spacing:-1.785600px;}
.ws55{word-spacing:-1.740000px;}
.wsf{word-spacing:-1.734000px;}
.wsba{word-spacing:-1.729800px;}
.ws44{word-spacing:-1.680000px;}
.ws6d{word-spacing:-1.620000px;}
.ws8a{word-spacing:-1.618200px;}
.ws15{word-spacing:-1.560000px;}
.wsb0{word-spacing:-1.500000px;}
.ws4a{word-spacing:-1.440000px;}
.ws8b{word-spacing:-1.395000px;}
.ws4b{word-spacing:-1.380000px;}
.wsb{word-spacing:-1.326000px;}
.ws31{word-spacing:-1.320000px;}
.ws61{word-spacing:-1.283400px;}
.ws35{word-spacing:-1.260000px;}
.ws14{word-spacing:-1.200000px;}
.ws60{word-spacing:-1.171800px;}
.ws93{word-spacing:-1.140000px;}
.ws5e{word-spacing:-1.116000px;}
.ws9{word-spacing:-1.080000px;}
.ws11{word-spacing:-1.071000px;}
.ws79{word-spacing:-1.060200px;}
.wsa3{word-spacing:-1.020000px;}
.ws36{word-spacing:-0.960000px;}
.wsb1{word-spacing:-0.900000px;}
.ws26{word-spacing:-0.840000px;}
.ws5f{word-spacing:-0.781200px;}
.ws4f{word-spacing:-0.720000px;}
.wsbc{word-spacing:-0.714000px;}
.wsa4{word-spacing:-0.660000px;}
.ws76{word-spacing:-0.613800px;}
.ws6f{word-spacing:-0.600000px;}
.ws6c{word-spacing:-0.540000px;}
.ws39{word-spacing:-0.480000px;}
.ws48{word-spacing:-0.420000px;}
.wsbe{word-spacing:-0.306000px;}
.ws70{word-spacing:-0.300000px;}
.wsbf{word-spacing:-0.255000px;}
.ws1e{word-spacing:-0.240000px;}
.ws1f{word-spacing:-0.223200px;}
.ws12{word-spacing:-0.204000px;}
.ws4d{word-spacing:-0.180000px;}
.ws88{word-spacing:-0.174900px;}
.ws5d{word-spacing:-0.167400px;}
.ws1a{word-spacing:-0.120000px;}
.ws8c{word-spacing:-0.111600px;}
.ws38{word-spacing:-0.060000px;}
.ws62{word-spacing:-0.055800px;}
.wsa{word-spacing:0.000000px;}
.ws84{word-spacing:0.060000px;}
.ws6e{word-spacing:0.120000px;}
.ws7f{word-spacing:0.180000px;}
.wsbb{word-spacing:0.204000px;}
.ws16{word-spacing:0.240000px;}
.ws78{word-spacing:0.279000px;}
.ws74{word-spacing:0.300000px;}
.ws75{word-spacing:0.334800px;}
.ws8d{word-spacing:0.390600px;}
.ws10{word-spacing:0.408000px;}
.ws57{word-spacing:0.420000px;}
.wsa1{word-spacing:0.480000px;}
.ws42{word-spacing:0.540000px;}
.ws97{word-spacing:0.558000px;}
.wsa6{word-spacing:0.600000px;}
.ws86{word-spacing:0.660000px;}
.ws51{word-spacing:0.669600px;}
.ws58{word-spacing:0.720000px;}
.ws77{word-spacing:0.725400px;}
.ws4e{word-spacing:0.780000px;}
.wsad{word-spacing:0.840000px;}
.ws1d{word-spacing:0.900000px;}
.ws1c{word-spacing:0.960000px;}
.ws50{word-spacing:1.004400px;}
.ws92{word-spacing:1.020000px;}
.ws17{word-spacing:1.080000px;}
.ws2c{word-spacing:1.140000px;}
.ws91{word-spacing:1.200000px;}
.ws73{word-spacing:1.260000px;}
.ws46{word-spacing:1.320000px;}
.ws20{word-spacing:1.339200px;}
.ws2a{word-spacing:1.380000px;}
.ws13{word-spacing:1.428000px;}
.ws6a{word-spacing:1.440000px;}
.ws81{word-spacing:1.500000px;}
.ws41{word-spacing:1.560000px;}
.wsd{word-spacing:1.581000px;}
.wsc{word-spacing:1.632000px;}
.ws40{word-spacing:1.680000px;}
.ws90{word-spacing:1.740000px;}
.ws21{word-spacing:1.785600px;}
.ws30{word-spacing:1.800000px;}
.ws25{word-spacing:1.860000px;}
.ws1b{word-spacing:1.920000px;}
.ws29{word-spacing:1.980000px;}
.ws4c{word-spacing:2.040000px;}
.wsa2{word-spacing:2.160000px;}
.ws85{word-spacing:2.220000px;}
.ws87{word-spacing:2.280000px;}
.ws6b{word-spacing:2.340000px;}
.ws49{word-spacing:2.400000px;}
.wse{word-spacing:2.448000px;}
.ws28{word-spacing:2.460000px;}
.ws5c{word-spacing:2.511000px;}
.ws3e{word-spacing:2.520000px;}
.ws83{word-spacing:2.580000px;}
.ws71{word-spacing:2.640000px;}
.ws19{word-spacing:2.700000px;}
.ws27{word-spacing:2.760000px;}
.ws37{word-spacing:2.820000px;}
.ws43{word-spacing:2.880000px;}
.ws82{word-spacing:2.940000px;}
.ws18{word-spacing:3.000000px;}
.wsb9{word-spacing:3.013200px;}
.ws47{word-spacing:3.060000px;}
.ws96{word-spacing:3.069000px;}
.ws89{word-spacing:3.180000px;}
.ws59{word-spacing:3.240000px;}
.ws95{word-spacing:3.292200px;}
.ws24{word-spacing:3.300000px;}
.ws3a{word-spacing:3.403800px;}
.ws33{word-spacing:3.420000px;}
.wsa7{word-spacing:3.480000px;}
.ws5b{word-spacing:3.540000px;}
.wsa5{word-spacing:3.840000px;}
.ws45{word-spacing:3.900000px;}
.wsb7{word-spacing:3.960000px;}
.ws98{word-spacing:3.961800px;}
.ws94{word-spacing:4.020000px;}
.wsa8{word-spacing:4.073400px;}
.ws34{word-spacing:4.380000px;}
.ws56{word-spacing:4.560000px;}
.wsb6{word-spacing:4.620000px;}
.ws5a{word-spacing:4.860000px;}
.ws2d{word-spacing:5.040000px;}
.wsae{word-spacing:5.820000px;}
.wsaf{word-spacing:7.020000px;}
.ws7a{word-spacing:35.767800px;}
.ws63{word-spacing:41.738400px;}
.ws52{word-spacing:54.851400px;}
.ws23{word-spacing:792.180000px;}
.ws7e{word-spacing:792.558000px;}
.ws54{word-spacing:792.612000px;}
.wsa0{word-spacing:794.556000px;}
.ws8{word-spacing:800.766000px;}
.ws3d{word-spacing:1594.026000px;}
.wsbd{word-spacing:1594.620000px;}
.ws8f{word-spacing:1595.106000px;}
.wsac{word-spacing:1595.322000px;}
.ws68{word-spacing:1598.562000px;}
._1{margin-left:-800.334000px;}
._19{margin-left:-794.939400px;}
._11{margin-left:-793.324800px;}
._b{margin-left:-791.893800px;}
._13{margin-left:-43.728600px;}
._e{margin-left:-11.773800px;}
._1d{margin-left:-8.547900px;}
._d{margin-left:-6.668400px;}
._9{margin-left:-5.398200px;}
._6{margin-left:-4.340100px;}
._4{margin-left:-3.137400px;}
._3{margin-left:-1.749600px;}
._2{width:1.150200px;}
._0{width:2.305800px;}
._5{width:4.197600px;}
._c{width:5.267400px;}
._1e{width:7.599000px;}
._1c{width:25.834800px;}
._17{width:26.950200px;}
._18{width:27.954600px;}
._1a{width:30.521400px;}
._1b{width:31.748400px;}
._12{width:33.590400px;}
._15{width:34.818600px;}
._14{width:36.380400px;}
._16{width:41.649600px;}
._f{width:47.318400px;}
._10{width:50.554800px;}
._a{width:52.005000px;}
._7{width:53.288400px;}
._8{width:56.078400px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:34.980000px;}
.fs7{font-size:41.400000px;}
.fs3{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:55.800000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:40.394100px;}
.y50{bottom:90.567000px;}
.y22{bottom:90.567150px;}
.y46{bottom:90.571350px;}
.y7e{bottom:90.571500px;}
.y45{bottom:107.967000px;}
.y4f{bottom:107.967150px;}
.y7a{bottom:107.967300px;}
.y8e{bottom:107.971350px;}
.y21{bottom:107.976000px;}
.y88{bottom:125.367000px;}
.y44{bottom:125.367150px;}
.y79{bottom:125.367300px;}
.y6a{bottom:125.371500px;}
.y20{bottom:125.371650px;}
.y69{bottom:142.767150px;}
.y1f{bottom:142.767300px;}
.y4e{bottom:142.767450px;}
.y8d{bottom:142.771500px;}
.y78{bottom:142.771800px;}
.y87{bottom:146.668050px;}
.y68{bottom:160.167150px;}
.y1e{bottom:160.167300px;}
.y77{bottom:160.167450px;}
.y4d{bottom:160.171800px;}
.y86{bottom:160.180500px;}
.y43{bottom:165.118050px;}
.y1d{bottom:177.567300px;}
.y4c{bottom:177.567450px;}
.y7d{bottom:177.567600px;}
.y67{bottom:177.576000px;}
.y85{bottom:177.576150px;}
.y42{bottom:183.568050px;}
.y76{bottom:194.967450px;}
.y66{bottom:194.971650px;}
.y84{bottom:194.971800px;}
.y41{bottom:202.018050px;}
.y65{bottom:212.367300px;}
.y83{bottom:212.367450px;}
.y75{bottom:212.367600px;}
.y7c{bottom:212.367750px;}
.y40{bottom:220.468050px;}
.yac{bottom:224.935350px;}
.y9d{bottom:224.948100px;}
.y74{bottom:229.767600px;}
.y7b{bottom:229.767750px;}
.y64{bottom:229.776150px;}
.y3f{bottom:238.918050px;}
.yab{bottom:242.186100px;}
.y9c{bottom:242.198850px;}
.y73{bottom:247.167600px;}
.y63{bottom:247.171800px;}
.y3e{bottom:257.368050px;}
.y1c{bottom:257.368200px;}
.yaa{bottom:259.436850px;}
.y9b{bottom:259.449600px;}
.y62{bottom:264.567450px;}
.y72{bottom:264.567750px;}
.y1b{bottom:275.818050px;}
.ya9{bottom:276.687600px;}
.y9a{bottom:276.700350px;}
.y61{bottom:281.967450px;}
.ya8{bottom:293.938350px;}
.y99{bottom:293.951100px;}
.y1a{bottom:294.268050px;}
.y60{bottom:299.367600px;}
.ya7{bottom:311.189100px;}
.y98{bottom:311.201850px;}
.y19{bottom:312.718050px;}
.y82{bottom:312.718200px;}
.y5f{bottom:316.767600px;}
.ya6{bottom:328.439850px;}
.y97{bottom:328.452600px;}
.y18{bottom:331.168050px;}
.y81{bottom:331.168200px;}
.y5e{bottom:334.167600px;}
.ya5{bottom:345.690600px;}
.y96{bottom:345.703350px;}
.y17{bottom:349.618050px;}
.y80{bottom:349.618200px;}
.ya4{bottom:362.941350px;}
.y95{bottom:362.954100px;}
.y16{bottom:368.068050px;}
.y7f{bottom:368.068200px;}
.ya3{bottom:380.192100px;}
.y94{bottom:380.204850px;}
.y3d{bottom:386.518050px;}
.y5d{bottom:386.518200px;}
.yd7{bottom:387.925800px;}
.ya2{bottom:397.442850px;}
.y93{bottom:397.455600px;}
.y15{bottom:404.968050px;}
.y5c{bottom:404.968200px;}
.yd6{bottom:405.176550px;}
.ya1{bottom:414.693600px;}
.y92{bottom:414.706350px;}
.yd5{bottom:422.427300px;}
.y3c{bottom:423.418050px;}
.y5b{bottom:423.418200px;}
.ya0{bottom:431.944350px;}
.y91{bottom:431.957100px;}
.yd4{bottom:439.678050px;}
.y3b{bottom:441.868050px;}
.y5a{bottom:441.868200px;}
.y9f{bottom:449.195100px;}
.y90{bottom:449.207850px;}
.y3a{bottom:460.318050px;}
.y59{bottom:460.318200px;}
.y14{bottom:463.455300px;}
.y9e{bottom:466.445850px;}
.y8f{bottom:466.458600px;}
.y39{bottom:478.768050px;}
.y58{bottom:478.768200px;}
.y13{bottom:480.706050px;}
.yd3{bottom:491.430300px;}
.y38{bottom:497.218050px;}
.y57{bottom:497.218200px;}
.y8c{bottom:500.818200px;}
.yd2{bottom:508.681050px;}
.y12{bottom:515.207550px;}
.y37{bottom:515.668050px;}
.y71{bottom:515.668200px;}
.yd1{bottom:525.931800px;}
.y11{bottom:532.458300px;}
.y36{bottom:534.118050px;}
.y56{bottom:534.118200px;}
.yd0{bottom:543.182550px;}
.y35{bottom:552.568050px;}
.y70{bottom:552.568200px;}
.ycf{bottom:560.433300px;}
.y10{bottom:566.959800px;}
.y34{bottom:571.018050px;}
.y6f{bottom:571.018200px;}
.yce{bottom:577.684050px;}
.yf{bottom:584.210550px;}
.y33{bottom:589.468050px;}
.y55{bottom:589.468200px;}
.y32{bottom:607.918050px;}
.y54{bottom:607.918200px;}
.ycd{bottom:612.185550px;}
.ye{bottom:618.712050px;}
.y31{bottom:626.368050px;}
.y53{bottom:626.368200px;}
.yd{bottom:635.962800px;}
.y30{bottom:644.818050px;}
.y52{bottom:644.818200px;}
.ycc{bottom:646.687050px;}
.ybc{bottom:646.699800px;}
.yc{bottom:653.213550px;}
.y2f{bottom:663.268050px;}
.y51{bottom:663.268200px;}
.ycb{bottom:663.937800px;}
.ybb{bottom:663.950550px;}
.yb{bottom:670.464300px;}
.yca{bottom:681.188550px;}
.yba{bottom:681.201300px;}
.y4b{bottom:681.718050px;}
.y2e{bottom:681.718200px;}
.ya{bottom:687.715050px;}
.yc9{bottom:698.439300px;}
.yb9{bottom:698.452050px;}
.y2d{bottom:700.168050px;}
.y6e{bottom:700.168200px;}
.y9{bottom:704.965800px;}
.yc8{bottom:715.690050px;}
.yb8{bottom:715.702800px;}
.y2c{bottom:718.618050px;}
.y6d{bottom:718.618200px;}
.y8{bottom:722.216550px;}
.yc7{bottom:732.940800px;}
.yb7{bottom:732.953550px;}
.y2b{bottom:737.068050px;}
.y6c{bottom:737.068200px;}
.y7{bottom:739.467300px;}
.yc6{bottom:750.191550px;}
.yb6{bottom:750.204300px;}
.y2a{bottom:755.518050px;}
.y6b{bottom:755.518200px;}
.y6{bottom:756.718050px;}
.yc5{bottom:767.442300px;}
.yb5{bottom:767.455050px;}
.y29{bottom:773.968050px;}
.y8b{bottom:773.968200px;}
.yc4{bottom:784.693050px;}
.yb4{bottom:784.705800px;}
.y28{bottom:792.418050px;}
.y8a{bottom:792.418200px;}
.yc3{bottom:801.943800px;}
.yb3{bottom:801.956550px;}
.y27{bottom:810.868050px;}
.y89{bottom:810.868200px;}
.yc2{bottom:819.194550px;}
.yb2{bottom:819.207300px;}
.y5{bottom:828.203550px;}
.y4a{bottom:829.318050px;}
.y26{bottom:829.318200px;}
.yc1{bottom:836.445300px;}
.yb1{bottom:836.458050px;}
.y49{bottom:847.768050px;}
.y25{bottom:847.768200px;}
.yc0{bottom:853.696050px;}
.yb0{bottom:853.708800px;}
.y48{bottom:866.218050px;}
.y24{bottom:866.218200px;}
.y4{bottom:870.815700px;}
.ybf{bottom:870.946800px;}
.yaf{bottom:870.959550px;}
.y47{bottom:884.668050px;}
.ybe{bottom:888.197550px;}
.yae{bottom:888.210300px;}
.y3{bottom:896.303700px;}
.y23{bottom:903.118050px;}
.ybd{bottom:905.448300px;}
.yad{bottom:905.461050px;}
.y2{bottom:955.942350px;}
.h5{height:48.195000px;}
.hc{height:49.521000px;}
.h6{height:49.827000px;}
.h2{height:50.868000px;}
.hb{height:53.880000px;}
.ha{height:54.181800px;}
.h7{height:56.700000px;}
.h8{height:58.620000px;}
.h9{height:58.620600px;}
.h4{height:67.824000px;}
.h3{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x3{left:72.283500px;}
.x1{left:80.787450px;}
.x5{left:85.033500px;}
.x4{left:93.543300px;}
.x2{left:102.047250px;}
.x7{left:353.421000px;}
.x8{left:361.924950px;}
.x6{left:366.171000px;}
.x9{left:374.674950px;}
@media print{
.v2{vertical-align:-17.759467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls45{letter-spacing:-6.754667pt;}
.ls3d{letter-spacing:-3.620800pt;}
.ls28{letter-spacing:-1.440000pt;}
.ls46{letter-spacing:-1.360000pt;}
.lsd{letter-spacing:-1.269333pt;}
.ls30{letter-spacing:-0.368000pt;}
.ls3a{letter-spacing:-0.336000pt;}
.ls2d{letter-spacing:-0.310933pt;}
.ls29{letter-spacing:-0.266667pt;}
.lsc{letter-spacing:-0.226667pt;}
.ls1f{letter-spacing:-0.213333pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls47{letter-spacing:-0.181333pt;}
.ls33{letter-spacing:-0.160000pt;}
.ls2b{letter-spacing:-0.155467pt;}
.ls2e{letter-spacing:-0.106667pt;}
.ls42{letter-spacing:-0.062187pt;}
.ls21{letter-spacing:-0.053333pt;}
.ls41{letter-spacing:-0.048000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.045333pt;}
.ls26{letter-spacing:0.049600pt;}
.ls1c{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.090667pt;}
.ls34{letter-spacing:0.093280pt;}
.ls7{letter-spacing:0.099200pt;}
.ls6{letter-spacing:0.106667pt;}
.ls24{letter-spacing:0.117653pt;}
.ls43{letter-spacing:0.124373pt;}
.ls2a{letter-spacing:0.155467pt;}
.ls19{letter-spacing:0.160000pt;}
.ls3c{letter-spacing:0.186560pt;}
.ls22{letter-spacing:0.187627pt;}
.ls8{letter-spacing:0.198400pt;}
.ls4{letter-spacing:0.200533pt;}
.ls1a{letter-spacing:0.213333pt;}
.ls27{letter-spacing:0.240000pt;}
.ls2f{letter-spacing:0.248747pt;}
.ls20{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.272000pt;}
.ls2c{letter-spacing:0.293333pt;}
.ls25{letter-spacing:0.297600pt;}
.ls3b{letter-spacing:0.310933pt;}
.ls17{letter-spacing:0.314601pt;}
.ls5{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.347200pt;}
.lsf{letter-spacing:0.373333pt;}
.ls1d{letter-spacing:0.396800pt;}
.ls35{letter-spacing:0.400000pt;}
.ls16{letter-spacing:0.409595pt;}
.ls23{letter-spacing:0.426667pt;}
.ls39{letter-spacing:0.440533pt;}
.ls32{letter-spacing:0.446400pt;}
.ls40{letter-spacing:0.453333pt;}
.ls1b{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.533333pt;}
.ls18{letter-spacing:0.560000pt;}
.ls36{letter-spacing:0.586667pt;}
.ls3e{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.693333pt;}
.ls10{letter-spacing:0.746667pt;}
.ls14{letter-spacing:0.800000pt;}
.ls13{letter-spacing:0.853333pt;}
.ls37{letter-spacing:0.880000pt;}
.ls12{letter-spacing:0.906667pt;}
.ls9{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.066667pt;}
.lsb{letter-spacing:1.178667pt;}
.ls3f{letter-spacing:1.280000pt;}
.ls3{letter-spacing:2.040000pt;}
.ls48{letter-spacing:2.130667pt;}
.ls44{letter-spacing:2.946667pt;}
.ls38{letter-spacing:3.573333pt;}
.ws0{word-spacing:-12.058667pt;}
.ws9c{word-spacing:-11.733333pt;}
.ws3{word-spacing:-11.573333pt;}
.ws3c{word-spacing:-11.200000pt;}
.ws22{word-spacing:-11.184000pt;}
.wsaa{word-spacing:-11.093333pt;}
.ws99{word-spacing:-11.040000pt;}
.ws9a{word-spacing:-10.880000pt;}
.ws53{word-spacing:-10.664000pt;}
.ws9b{word-spacing:-10.560000pt;}
.ws3b{word-spacing:-10.346667pt;}
.ws6{word-spacing:-10.320000pt;}
.ws9e{word-spacing:-10.293333pt;}
.ws4{word-spacing:-10.133333pt;}
.ws5{word-spacing:-10.026667pt;}
.wsa9{word-spacing:-9.973333pt;}
.wsb3{word-spacing:-9.746667pt;}
.ws1{word-spacing:-9.520000pt;}
.wsb5{word-spacing:-8.386667pt;}
.ws7{word-spacing:-7.912000pt;}
.ws7d{word-spacing:-7.544000pt;}
.ws9d{word-spacing:-6.840533pt;}
.ws7c{word-spacing:-6.778347pt;}
.ws9f{word-spacing:-6.716160pt;}
.ws66{word-spacing:-6.685067pt;}
.wsb2{word-spacing:-6.653973pt;}
.ws8e{word-spacing:-6.622880pt;}
.ws2{word-spacing:-6.529600pt;}
.wsab{word-spacing:-6.467413pt;}
.ws67{word-spacing:-6.374133pt;}
.ws7b{word-spacing:-6.218667pt;}
.wsb4{word-spacing:-2.992000pt;}
.wsb8{word-spacing:-2.946667pt;}
.wsc0{word-spacing:-2.130667pt;}
.ws72{word-spacing:-2.080000pt;}
.ws69{word-spacing:-1.920000pt;}
.ws80{word-spacing:-1.866667pt;}
.ws2e{word-spacing:-1.813333pt;}
.ws2f{word-spacing:-1.760000pt;}
.ws2b{word-spacing:-1.706667pt;}
.ws32{word-spacing:-1.653333pt;}
.ws64{word-spacing:-1.636800pt;}
.ws3f{word-spacing:-1.600000pt;}
.ws65{word-spacing:-1.587200pt;}
.ws55{word-spacing:-1.546667pt;}
.wsf{word-spacing:-1.541333pt;}
.wsba{word-spacing:-1.537600pt;}
.ws44{word-spacing:-1.493333pt;}
.ws6d{word-spacing:-1.440000pt;}
.ws8a{word-spacing:-1.438400pt;}
.ws15{word-spacing:-1.386667pt;}
.wsb0{word-spacing:-1.333333pt;}
.ws4a{word-spacing:-1.280000pt;}
.ws8b{word-spacing:-1.240000pt;}
.ws4b{word-spacing:-1.226667pt;}
.wsb{word-spacing:-1.178667pt;}
.ws31{word-spacing:-1.173333pt;}
.ws61{word-spacing:-1.140800pt;}
.ws35{word-spacing:-1.120000pt;}
.ws14{word-spacing:-1.066667pt;}
.ws60{word-spacing:-1.041600pt;}
.ws93{word-spacing:-1.013333pt;}
.ws5e{word-spacing:-0.992000pt;}
.ws9{word-spacing:-0.960000pt;}
.ws11{word-spacing:-0.952000pt;}
.ws79{word-spacing:-0.942400pt;}
.wsa3{word-spacing:-0.906667pt;}
.ws36{word-spacing:-0.853333pt;}
.wsb1{word-spacing:-0.800000pt;}
.ws26{word-spacing:-0.746667pt;}
.ws5f{word-spacing:-0.694400pt;}
.ws4f{word-spacing:-0.640000pt;}
.wsbc{word-spacing:-0.634667pt;}
.wsa4{word-spacing:-0.586667pt;}
.ws76{word-spacing:-0.545600pt;}
.ws6f{word-spacing:-0.533333pt;}
.ws6c{word-spacing:-0.480000pt;}
.ws39{word-spacing:-0.426667pt;}
.ws48{word-spacing:-0.373333pt;}
.wsbe{word-spacing:-0.272000pt;}
.ws70{word-spacing:-0.266667pt;}
.wsbf{word-spacing:-0.226667pt;}
.ws1e{word-spacing:-0.213333pt;}
.ws1f{word-spacing:-0.198400pt;}
.ws12{word-spacing:-0.181333pt;}
.ws4d{word-spacing:-0.160000pt;}
.ws88{word-spacing:-0.155467pt;}
.ws5d{word-spacing:-0.148800pt;}
.ws1a{word-spacing:-0.106667pt;}
.ws8c{word-spacing:-0.099200pt;}
.ws38{word-spacing:-0.053333pt;}
.ws62{word-spacing:-0.049600pt;}
.wsa{word-spacing:0.000000pt;}
.ws84{word-spacing:0.053333pt;}
.ws6e{word-spacing:0.106667pt;}
.ws7f{word-spacing:0.160000pt;}
.wsbb{word-spacing:0.181333pt;}
.ws16{word-spacing:0.213333pt;}
.ws78{word-spacing:0.248000pt;}
.ws74{word-spacing:0.266667pt;}
.ws75{word-spacing:0.297600pt;}
.ws8d{word-spacing:0.347200pt;}
.ws10{word-spacing:0.362667pt;}
.ws57{word-spacing:0.373333pt;}
.wsa1{word-spacing:0.426667pt;}
.ws42{word-spacing:0.480000pt;}
.ws97{word-spacing:0.496000pt;}
.wsa6{word-spacing:0.533333pt;}
.ws86{word-spacing:0.586667pt;}
.ws51{word-spacing:0.595200pt;}
.ws58{word-spacing:0.640000pt;}
.ws77{word-spacing:0.644800pt;}
.ws4e{word-spacing:0.693333pt;}
.wsad{word-spacing:0.746667pt;}
.ws1d{word-spacing:0.800000pt;}
.ws1c{word-spacing:0.853333pt;}
.ws50{word-spacing:0.892800pt;}
.ws92{word-spacing:0.906667pt;}
.ws17{word-spacing:0.960000pt;}
.ws2c{word-spacing:1.013333pt;}
.ws91{word-spacing:1.066667pt;}
.ws73{word-spacing:1.120000pt;}
.ws46{word-spacing:1.173333pt;}
.ws20{word-spacing:1.190400pt;}
.ws2a{word-spacing:1.226667pt;}
.ws13{word-spacing:1.269333pt;}
.ws6a{word-spacing:1.280000pt;}
.ws81{word-spacing:1.333333pt;}
.ws41{word-spacing:1.386667pt;}
.wsd{word-spacing:1.405333pt;}
.wsc{word-spacing:1.450667pt;}
.ws40{word-spacing:1.493333pt;}
.ws90{word-spacing:1.546667pt;}
.ws21{word-spacing:1.587200pt;}
.ws30{word-spacing:1.600000pt;}
.ws25{word-spacing:1.653333pt;}
.ws1b{word-spacing:1.706667pt;}
.ws29{word-spacing:1.760000pt;}
.ws4c{word-spacing:1.813333pt;}
.wsa2{word-spacing:1.920000pt;}
.ws85{word-spacing:1.973333pt;}
.ws87{word-spacing:2.026667pt;}
.ws6b{word-spacing:2.080000pt;}
.ws49{word-spacing:2.133333pt;}
.wse{word-spacing:2.176000pt;}
.ws28{word-spacing:2.186667pt;}
.ws5c{word-spacing:2.232000pt;}
.ws3e{word-spacing:2.240000pt;}
.ws83{word-spacing:2.293333pt;}
.ws71{word-spacing:2.346667pt;}
.ws19{word-spacing:2.400000pt;}
.ws27{word-spacing:2.453333pt;}
.ws37{word-spacing:2.506667pt;}
.ws43{word-spacing:2.560000pt;}
.ws82{word-spacing:2.613333pt;}
.ws18{word-spacing:2.666667pt;}
.wsb9{word-spacing:2.678400pt;}
.ws47{word-spacing:2.720000pt;}
.ws96{word-spacing:2.728000pt;}
.ws89{word-spacing:2.826667pt;}
.ws59{word-spacing:2.880000pt;}
.ws95{word-spacing:2.926400pt;}
.ws24{word-spacing:2.933333pt;}
.ws3a{word-spacing:3.025600pt;}
.ws33{word-spacing:3.040000pt;}
.wsa7{word-spacing:3.093333pt;}
.ws5b{word-spacing:3.146667pt;}
.wsa5{word-spacing:3.413333pt;}
.ws45{word-spacing:3.466667pt;}
.wsb7{word-spacing:3.520000pt;}
.ws98{word-spacing:3.521600pt;}
.ws94{word-spacing:3.573333pt;}
.wsa8{word-spacing:3.620800pt;}
.ws34{word-spacing:3.893333pt;}
.ws56{word-spacing:4.053333pt;}
.wsb6{word-spacing:4.106667pt;}
.ws5a{word-spacing:4.320000pt;}
.ws2d{word-spacing:4.480000pt;}
.wsae{word-spacing:5.173333pt;}
.wsaf{word-spacing:6.240000pt;}
.ws7a{word-spacing:31.793600pt;}
.ws63{word-spacing:37.100800pt;}
.ws52{word-spacing:48.756800pt;}
.ws23{word-spacing:704.160000pt;}
.ws7e{word-spacing:704.496000pt;}
.ws54{word-spacing:704.544000pt;}
.wsa0{word-spacing:706.272000pt;}
.ws8{word-spacing:711.792000pt;}
.ws3d{word-spacing:1416.912000pt;}
.wsbd{word-spacing:1417.440000pt;}
.ws8f{word-spacing:1417.872000pt;}
.wsac{word-spacing:1418.064000pt;}
.ws68{word-spacing:1420.944000pt;}
._1{margin-left:-711.408000pt;}
._19{margin-left:-706.612800pt;}
._11{margin-left:-705.177600pt;}
._b{margin-left:-703.905600pt;}
._13{margin-left:-38.869867pt;}
._e{margin-left:-10.465600pt;}
._1d{margin-left:-7.598133pt;}
._d{margin-left:-5.927467pt;}
._9{margin-left:-4.798400pt;}
._6{margin-left:-3.857867pt;}
._4{margin-left:-2.788800pt;}
._3{margin-left:-1.555200pt;}
._2{width:1.022400pt;}
._0{width:2.049600pt;}
._5{width:3.731200pt;}
._c{width:4.682133pt;}
._1e{width:6.754667pt;}
._1c{width:22.964267pt;}
._17{width:23.955733pt;}
._18{width:24.848533pt;}
._1a{width:27.130133pt;}
._1b{width:28.220800pt;}
._12{width:29.858133pt;}
._15{width:30.949867pt;}
._14{width:32.338133pt;}
._16{width:37.021867pt;}
._f{width:42.060800pt;}
._10{width:44.937600pt;}
._a{width:46.226667pt;}
._7{width:47.367467pt;}
._8{width:49.847467pt;}
.fs5{font-size:31.093333pt;}
.fs7{font-size:36.800000pt;}
.fs3{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:49.600000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:35.905867pt;}
.y50{bottom:80.504000pt;}
.y22{bottom:80.504133pt;}
.y46{bottom:80.507867pt;}
.y7e{bottom:80.508000pt;}
.y45{bottom:95.970667pt;}
.y4f{bottom:95.970800pt;}
.y7a{bottom:95.970933pt;}
.y8e{bottom:95.974533pt;}
.y21{bottom:95.978667pt;}
.y88{bottom:111.437333pt;}
.y44{bottom:111.437467pt;}
.y79{bottom:111.437600pt;}
.y6a{bottom:111.441333pt;}
.y20{bottom:111.441467pt;}
.y69{bottom:126.904133pt;}
.y1f{bottom:126.904267pt;}
.y4e{bottom:126.904400pt;}
.y8d{bottom:126.908000pt;}
.y78{bottom:126.908267pt;}
.y87{bottom:130.371600pt;}
.y68{bottom:142.370800pt;}
.y1e{bottom:142.370933pt;}
.y77{bottom:142.371067pt;}
.y4d{bottom:142.374933pt;}
.y86{bottom:142.382667pt;}
.y43{bottom:146.771600pt;}
.y1d{bottom:157.837600pt;}
.y4c{bottom:157.837733pt;}
.y7d{bottom:157.837867pt;}
.y67{bottom:157.845333pt;}
.y85{bottom:157.845467pt;}
.y42{bottom:163.171600pt;}
.y76{bottom:173.304400pt;}
.y66{bottom:173.308133pt;}
.y84{bottom:173.308267pt;}
.y41{bottom:179.571600pt;}
.y65{bottom:188.770933pt;}
.y83{bottom:188.771067pt;}
.y75{bottom:188.771200pt;}
.y7c{bottom:188.771333pt;}
.y40{bottom:195.971600pt;}
.yac{bottom:199.942533pt;}
.y9d{bottom:199.953867pt;}
.y74{bottom:204.237867pt;}
.y7b{bottom:204.238000pt;}
.y64{bottom:204.245467pt;}
.y3f{bottom:212.371600pt;}
.yab{bottom:215.276533pt;}
.y9c{bottom:215.287867pt;}
.y73{bottom:219.704533pt;}
.y63{bottom:219.708267pt;}
.y3e{bottom:228.771600pt;}
.y1c{bottom:228.771733pt;}
.yaa{bottom:230.610533pt;}
.y9b{bottom:230.621867pt;}
.y62{bottom:235.171067pt;}
.y72{bottom:235.171333pt;}
.y1b{bottom:245.171600pt;}
.ya9{bottom:245.944533pt;}
.y9a{bottom:245.955867pt;}
.y61{bottom:250.637733pt;}
.ya8{bottom:261.278533pt;}
.y99{bottom:261.289867pt;}
.y1a{bottom:261.571600pt;}
.y60{bottom:266.104533pt;}
.ya7{bottom:276.612533pt;}
.y98{bottom:276.623867pt;}
.y19{bottom:277.971600pt;}
.y82{bottom:277.971733pt;}
.y5f{bottom:281.571200pt;}
.ya6{bottom:291.946533pt;}
.y97{bottom:291.957867pt;}
.y18{bottom:294.371600pt;}
.y81{bottom:294.371733pt;}
.y5e{bottom:297.037867pt;}
.ya5{bottom:307.280533pt;}
.y96{bottom:307.291867pt;}
.y17{bottom:310.771600pt;}
.y80{bottom:310.771733pt;}
.ya4{bottom:322.614533pt;}
.y95{bottom:322.625867pt;}
.y16{bottom:327.171600pt;}
.y7f{bottom:327.171733pt;}
.ya3{bottom:337.948533pt;}
.y94{bottom:337.959867pt;}
.y3d{bottom:343.571600pt;}
.y5d{bottom:343.571733pt;}
.yd7{bottom:344.822933pt;}
.ya2{bottom:353.282533pt;}
.y93{bottom:353.293867pt;}
.y15{bottom:359.971600pt;}
.y5c{bottom:359.971733pt;}
.yd6{bottom:360.156933pt;}
.ya1{bottom:368.616533pt;}
.y92{bottom:368.627867pt;}
.yd5{bottom:375.490933pt;}
.y3c{bottom:376.371600pt;}
.y5b{bottom:376.371733pt;}
.ya0{bottom:383.950533pt;}
.y91{bottom:383.961867pt;}
.yd4{bottom:390.824933pt;}
.y3b{bottom:392.771600pt;}
.y5a{bottom:392.771733pt;}
.y9f{bottom:399.284533pt;}
.y90{bottom:399.295867pt;}
.y3a{bottom:409.171600pt;}
.y59{bottom:409.171733pt;}
.y14{bottom:411.960267pt;}
.y9e{bottom:414.618533pt;}
.y8f{bottom:414.629867pt;}
.y39{bottom:425.571600pt;}
.y58{bottom:425.571733pt;}
.y13{bottom:427.294267pt;}
.yd3{bottom:436.826933pt;}
.y38{bottom:441.971600pt;}
.y57{bottom:441.971733pt;}
.y8c{bottom:445.171733pt;}
.yd2{bottom:452.160933pt;}
.y12{bottom:457.962267pt;}
.y37{bottom:458.371600pt;}
.y71{bottom:458.371733pt;}
.yd1{bottom:467.494933pt;}
.y11{bottom:473.296267pt;}
.y36{bottom:474.771600pt;}
.y56{bottom:474.771733pt;}
.yd0{bottom:482.828933pt;}
.y35{bottom:491.171600pt;}
.y70{bottom:491.171733pt;}
.ycf{bottom:498.162933pt;}
.y10{bottom:503.964267pt;}
.y34{bottom:507.571600pt;}
.y6f{bottom:507.571733pt;}
.yce{bottom:513.496933pt;}
.yf{bottom:519.298267pt;}
.y33{bottom:523.971600pt;}
.y55{bottom:523.971733pt;}
.y32{bottom:540.371600pt;}
.y54{bottom:540.371733pt;}
.ycd{bottom:544.164933pt;}
.ye{bottom:549.966267pt;}
.y31{bottom:556.771600pt;}
.y53{bottom:556.771733pt;}
.yd{bottom:565.300267pt;}
.y30{bottom:573.171600pt;}
.y52{bottom:573.171733pt;}
.ycc{bottom:574.832933pt;}
.ybc{bottom:574.844267pt;}
.yc{bottom:580.634267pt;}
.y2f{bottom:589.571600pt;}
.y51{bottom:589.571733pt;}
.ycb{bottom:590.166933pt;}
.ybb{bottom:590.178267pt;}
.yb{bottom:595.968267pt;}
.yca{bottom:605.500933pt;}
.yba{bottom:605.512267pt;}
.y4b{bottom:605.971600pt;}
.y2e{bottom:605.971733pt;}
.ya{bottom:611.302267pt;}
.yc9{bottom:620.834933pt;}
.yb9{bottom:620.846267pt;}
.y2d{bottom:622.371600pt;}
.y6e{bottom:622.371733pt;}
.y9{bottom:626.636267pt;}
.yc8{bottom:636.168933pt;}
.yb8{bottom:636.180267pt;}
.y2c{bottom:638.771600pt;}
.y6d{bottom:638.771733pt;}
.y8{bottom:641.970267pt;}
.yc7{bottom:651.502933pt;}
.yb7{bottom:651.514267pt;}
.y2b{bottom:655.171600pt;}
.y6c{bottom:655.171733pt;}
.y7{bottom:657.304267pt;}
.yc6{bottom:666.836933pt;}
.yb6{bottom:666.848267pt;}
.y2a{bottom:671.571600pt;}
.y6b{bottom:671.571733pt;}
.y6{bottom:672.638267pt;}
.yc5{bottom:682.170933pt;}
.yb5{bottom:682.182267pt;}
.y29{bottom:687.971600pt;}
.y8b{bottom:687.971733pt;}
.yc4{bottom:697.504933pt;}
.yb4{bottom:697.516267pt;}
.y28{bottom:704.371600pt;}
.y8a{bottom:704.371733pt;}
.yc3{bottom:712.838933pt;}
.yb3{bottom:712.850267pt;}
.y27{bottom:720.771600pt;}
.y89{bottom:720.771733pt;}
.yc2{bottom:728.172933pt;}
.yb2{bottom:728.184267pt;}
.y5{bottom:736.180933pt;}
.y4a{bottom:737.171600pt;}
.y26{bottom:737.171733pt;}
.yc1{bottom:743.506933pt;}
.yb1{bottom:743.518267pt;}
.y49{bottom:753.571600pt;}
.y25{bottom:753.571733pt;}
.yc0{bottom:758.840933pt;}
.yb0{bottom:758.852267pt;}
.y48{bottom:769.971600pt;}
.y24{bottom:769.971733pt;}
.y4{bottom:774.058400pt;}
.ybf{bottom:774.174933pt;}
.yaf{bottom:774.186267pt;}
.y47{bottom:786.371600pt;}
.ybe{bottom:789.508933pt;}
.yae{bottom:789.520267pt;}
.y3{bottom:796.714400pt;}
.y23{bottom:802.771600pt;}
.ybd{bottom:804.842933pt;}
.yad{bottom:804.854267pt;}
.y2{bottom:849.726533pt;}
.h5{height:42.840000pt;}
.hc{height:44.018667pt;}
.h6{height:44.290667pt;}
.h2{height:45.216000pt;}
.hb{height:47.893333pt;}
.ha{height:48.161600pt;}
.h7{height:50.400000pt;}
.h8{height:52.106667pt;}
.h9{height:52.107200pt;}
.h4{height:60.288000pt;}
.h3{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x3{left:64.252000pt;}
.x1{left:71.811067pt;}
.x5{left:75.585333pt;}
.x4{left:83.149600pt;}
.x2{left:90.708667pt;}
.x7{left:314.152000pt;}
.x8{left:321.711067pt;}
.x6{left:325.485333pt;}
.x9{left:333.044400pt;}
}




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