
    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_43ac9fe6a187f958215c5407.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.222000;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_3eb4c912ffde406d59b9a714.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.197000;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_069753eba3e0dce2f09ad480.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_c12c74b031bf33a393c3082d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_3f3c6d508411198fbf5ec169.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_8a21cb88099c6f320efe05d6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9dabcb9f9ebdd1a6540e63d0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.213000;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_4c8ce57d667bdb3804e128eb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.880371;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_8036c362b50281760b3bd217.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.222000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.256000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bbd6bb5740df5e89a055dbc9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.197000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4653e87e2a8d804589d3f56a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.230000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_451fce770689b048b07c34b2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.256000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_bbd6bb5740df5e89a055dbc9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.197000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_451fce770689b048b07c34b2.woff2')format("woff");}.fff{font-family:fff;line-height:1.256000;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);}
.v1{vertical-align:-20.399962px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.000000px;}
.ls11{letter-spacing:-12.750000px;}
.ls5{letter-spacing:-1.500000px;}
.lsf{letter-spacing:-0.900000px;}
.ls10{letter-spacing:-0.765000px;}
.ls6{letter-spacing:-0.600000px;}
.ls12{letter-spacing:-0.510000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000582px;}
.lse{letter-spacing:0.000583px;}
.lsd{letter-spacing:0.000652px;}
.lsc{letter-spacing:0.007802px;}
.ls1{letter-spacing:0.009609px;}
.ls7{letter-spacing:0.300000px;}
.ls8{letter-spacing:0.300110px;}
.ls9{letter-spacing:0.309536px;}
.lsa{letter-spacing:0.309719px;}
.ls4{letter-spacing:0.600000px;}
.ls2{letter-spacing:3.990000px;}
.ls13{letter-spacing:15.708000px;}
.ls0{letter-spacing:27.307191px;}
.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;}
}
.ws16{word-spacing:-15.600000px;}
.ws2{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.544000px;}
.ws38{word-spacing:-14.400000px;}
.ws17{word-spacing:-13.500000px;}
.ws55{word-spacing:-12.750000px;}
.ws39{word-spacing:-12.474000px;}
.ws7{word-spacing:-12.420000px;}
.wsa0{word-spacing:-12.240000px;}
.ws4{word-spacing:-12.120000px;}
.ws6{word-spacing:-11.520000px;}
.ws0{word-spacing:-9.996000px;}
.ws92{word-spacing:-9.792000px;}
.ws93{word-spacing:-9.282000px;}
.ws3{word-spacing:-8.925000px;}
.ws8{word-spacing:-8.064000px;}
.ws76{word-spacing:-7.500000px;}
.ws69{word-spacing:-6.375000px;}
.ws9{word-spacing:-3.990000px;}
.ws3f{word-spacing:-3.180000px;}
.ws41{word-spacing:-2.820000px;}
.wsb6{word-spacing:-2.448000px;}
.ws15{word-spacing:-2.160000px;}
.ws40{word-spacing:-2.100000px;}
.ws19{word-spacing:-1.980000px;}
.wsac{word-spacing:-1.938000px;}
.ws22{word-spacing:-1.920000px;}
.ws4d{word-spacing:-1.560000px;}
.ws73{word-spacing:-1.500000px;}
.wsc{word-spacing:-1.260000px;}
.wsb5{word-spacing:-1.173000px;}
.ws43{word-spacing:-1.080000px;}
.ws85{word-spacing:-0.960000px;}
.ws90{word-spacing:-0.918000px;}
.ws4e{word-spacing:-0.900000px;}
.wsb4{word-spacing:-0.816000px;}
.ws51{word-spacing:-0.780000px;}
.ws1a{word-spacing:-0.600000px;}
.ws42{word-spacing:-0.540000px;}
.wsa6{word-spacing:-0.420000px;}
.ws6e{word-spacing:-0.300000px;}
.wsa3{word-spacing:-0.153000px;}
.ws5{word-spacing:-0.060000px;}
.ws3a{word-spacing:-0.051000px;}
.wsb{word-spacing:0.000000px;}
.wsb1{word-spacing:0.102000px;}
.wsb7{word-spacing:0.306000px;}
.ws9f{word-spacing:0.510000px;}
.ws3d{word-spacing:0.600000px;}
.ws96{word-spacing:0.660000px;}
.ws98{word-spacing:0.765000px;}
.ws94{word-spacing:0.900000px;}
.ws47{word-spacing:0.960000px;}
.ws99{word-spacing:0.969000px;}
.ws35{word-spacing:1.200000px;}
.wsa1{word-spacing:1.275000px;}
.ws45{word-spacing:1.440000px;}
.ws34{word-spacing:1.500000px;}
.ws4b{word-spacing:1.560000px;}
.ws8f{word-spacing:1.632000px;}
.wsa2{word-spacing:1.683000px;}
.ws4c{word-spacing:1.740000px;}
.ws26{word-spacing:1.920000px;}
.ws8d{word-spacing:1.980000px;}
.ws6a{word-spacing:1.989000px;}
.ws89{word-spacing:2.100000px;}
.ws10{word-spacing:2.400000px;}
.wsa9{word-spacing:2.460000px;}
.ws61{word-spacing:2.520000px;}
.wsab{word-spacing:2.640000px;}
.ws18{word-spacing:2.700000px;}
.wsb3{word-spacing:2.805000px;}
.wsa5{word-spacing:2.820000px;}
.ws53{word-spacing:2.880000px;}
.ws91{word-spacing:2.958000px;}
.ws37{word-spacing:3.180000px;}
.ws13{word-spacing:3.240000px;}
.ws46{word-spacing:3.360000px;}
.ws6d{word-spacing:3.420000px;}
.ws54{word-spacing:3.468000px;}
.wsf{word-spacing:3.480000px;}
.ws11{word-spacing:3.780000px;}
.ws14{word-spacing:3.900000px;}
.ws9c{word-spacing:3.978000px;}
.ws49{word-spacing:4.080000px;}
.ws3e{word-spacing:4.320000px;}
.ws66{word-spacing:4.539000px;}
.ws52{word-spacing:4.860000px;}
.ws21{word-spacing:5.100000px;}
.ws12{word-spacing:5.340000px;}
.ws2b{word-spacing:5.520000px;}
.ws1d{word-spacing:5.760000px;}
.ws48{word-spacing:5.814000px;}
.ws3c{word-spacing:6.000000px;}
.ws44{word-spacing:6.060000px;}
.ws70{word-spacing:6.240000px;}
.wse{word-spacing:6.300000px;}
.ws6b{word-spacing:6.420000px;}
.ws2f{word-spacing:6.480000px;}
.ws50{word-spacing:6.720000px;}
.ws62{word-spacing:6.780000px;}
.ws67{word-spacing:6.783000px;}
.ws72{word-spacing:6.960000px;}
.ws2e{word-spacing:7.020000px;}
.wsae{word-spacing:7.191000px;}
.ws32{word-spacing:7.260000px;}
.ws1f{word-spacing:7.380000px;}
.ws86{word-spacing:7.620000px;}
.ws2d{word-spacing:7.740000px;}
.ws4f{word-spacing:7.800000px;}
.ws9b{word-spacing:7.956000px;}
.ws9e{word-spacing:8.007000px;}
.ws23{word-spacing:8.160000px;}
.ws2c{word-spacing:8.220000px;}
.ws60{word-spacing:8.640000px;}
.ws4a{word-spacing:8.760000px;}
.wsa8{word-spacing:8.820000px;}
.wsaf{word-spacing:8.874000px;}
.wsaa{word-spacing:9.120000px;}
.ws74{word-spacing:9.240000px;}
.ws9d{word-spacing:9.333000px;}
.wsd{word-spacing:9.480000px;}
.ws2a{word-spacing:9.660000px;}
.ws5f{word-spacing:10.080000px;}
.ws24{word-spacing:10.800000px;}
.ws20{word-spacing:10.860000px;}
.wsb8{word-spacing:10.965000px;}
.ws31{word-spacing:11.220000px;}
.ws1b{word-spacing:11.760000px;}
.wsa4{word-spacing:11.820000px;}
.wsb2{word-spacing:12.291000px;}
.ws63{word-spacing:12.480000px;}
.ws1e{word-spacing:12.660000px;}
.ws25{word-spacing:12.720000px;}
.ws9a{word-spacing:12.750000px;}
.ws1c{word-spacing:13.020000px;}
.ws8a{word-spacing:13.140000px;}
.ws77{word-spacing:13.200000px;}
.ws95{word-spacing:13.260000px;}
.ws28{word-spacing:13.500000px;}
.ws6c{word-spacing:13.680000px;}
.ws68{word-spacing:14.382000px;}
.wsb0{word-spacing:14.484000px;}
.wsa7{word-spacing:14.640000px;}
.ws87{word-spacing:14.820000px;}
.ws33{word-spacing:15.360000px;}
.ws8b{word-spacing:15.420000px;}
.ws29{word-spacing:15.960000px;}
.ws8e{word-spacing:16.020000px;}
.wsad{word-spacing:16.116000px;}
.ws8c{word-spacing:16.860000px;}
.ws88{word-spacing:16.920000px;}
.ws27{word-spacing:17.100000px;}
.ws65{word-spacing:18.780000px;}
.ws83{word-spacing:19.320000px;}
.ws75{word-spacing:20.160000px;}
.ws6f{word-spacing:20.520000px;}
.ws97{word-spacing:22.380000px;}
.ws30{word-spacing:22.620000px;}
.ws64{word-spacing:22.800000px;}
.ws84{word-spacing:25.500000px;}
.ws36{word-spacing:26.820000px;}
.ws71{word-spacing:30.720000px;}
.ws57{word-spacing:38.303391px;}
.wsa{word-spacing:38.940000px;}
.ws5b{word-spacing:56.402435px;}
.ws59{word-spacing:56.402989px;}
.ws7a{word-spacing:67.162816px;}
.ws79{word-spacing:68.329747px;}
.ws7b{word-spacing:68.330480px;}
.ws78{word-spacing:79.938004px;}
.ws81{word-spacing:81.028747px;}
.ws5e{word-spacing:81.902989px;}
.ws5a{word-spacing:86.447391px;}
.ws58{word-spacing:94.703435px;}
.ws7d{word-spacing:106.528747px;}
.ws7f{word-spacing:106.528931px;}
.ws5d{word-spacing:120.464391px;}
.ws5c{word-spacing:160.091391px;}
.ws56{word-spacing:170.873387px;}
.ws7c{word-spacing:177.197426px;}
.ws80{word-spacing:177.199219px;}
.ws7e{word-spacing:191.822388px;}
.ws82{word-spacing:195.084595px;}
.ws3b{word-spacing:386.148580px;}
._9{margin-left:-70.498787px;}
._24{margin-left:-30.365303px;}
._37{margin-left:-12.880245px;}
._18{margin-left:-11.031040px;}
._7{margin-left:-7.845083px;}
._c{margin-left:-5.916000px;}
._16{margin-left:-4.788001px;}
._3{margin-left:-3.768000px;}
._10{margin-left:-2.680818px;}
._0{margin-left:-1.530000px;}
._4{width:1.440000px;}
._38{width:2.446200px;}
._6{width:3.456123px;}
._8{width:5.064000px;}
._b{width:6.305999px;}
._e{width:7.347129px;}
._d{width:8.402975px;}
._2{width:9.465103px;}
._13{width:10.850898px;}
._5{width:12.204000px;}
._12{width:13.566000px;}
._25{width:14.925987px;}
._14{width:16.464000px;}
._f{width:17.636976px;}
._1{width:18.696000px;}
._17{width:19.740000px;}
._19{width:20.976001px;}
._23{width:22.812001px;}
._21{width:24.432001px;}
._11{width:26.646000px;}
._2f{width:28.146001px;}
._2e{width:30.324156px;}
._2d{width:31.341861px;}
._22{width:32.622001px;}
._2a{width:34.015782px;}
._15{width:35.322001px;}
._a{width:54.416991px;}
._26{width:66.119387px;}
._2b{width:67.496387px;}
._34{width:78.994135px;}
._32{width:81.025178px;}
._29{width:94.652435px;}
._36{width:107.983846px;}
._28{width:120.152435px;}
._33{width:128.334639px;}
._30{width:144.298230px;}
._2c{width:145.652435px;}
._27{width:158.714391px;}
._31{width:214.806585px;}
._20{width:255.566398px;}
._1d{width:294.348580px;}
._35{width:298.624184px;}
._1c{width:346.470580px;}
._1f{width:347.898580px;}
._1e{width:439.080582px;}
._1b{width:442.860580px;}
._1a{width:605.652580px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs1{font-size:51.000000px;}
.fs0{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs5{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y37{bottom:60.997650px;}
.y89{bottom:111.418350px;}
.y6c{bottom:112.677155px;}
.y10{bottom:124.299145px;}
.y1b{bottom:124.370098px;}
.y88{bottom:126.418350px;}
.y6b{bottom:127.677155px;}
.yc3{bottom:128.049145px;}
.y6a{bottom:130.110294px;}
.y104{bottom:130.458904px;}
.y13e{bottom:135.924145px;}
.y1a{bottom:139.370098px;}
.y87{bottom:141.418350px;}
.yf{bottom:143.049145px;}
.y103{bottom:145.458904px;}
.y69{bottom:147.455097px;}
.y13d{bottom:150.924145px;}
.yc2{bottom:158.049145px;}
.y19{bottom:159.470100px;}
.y102{bottom:160.458904px;}
.ye{bottom:161.799145px;}
.y68{bottom:164.799900px;}
.y13c{bottom:165.924145px;}
.yc1{bottom:173.049145px;}
.y101{bottom:175.458904px;}
.y18{bottom:176.870098px;}
.yd{bottom:180.549145px;}
.y13b{bottom:180.924145px;}
.y67{bottom:182.144703px;}
.y100{bottom:190.458904px;}
.y13a{bottom:195.924156px;}
.y17{bottom:196.970100px;}
.yc{bottom:199.299156px;}
.y66{bottom:199.489494px;}
.yff{bottom:205.458893px;}
.yc0{bottom:206.049156px;}
.y139{bottom:210.924156px;}
.y16{bottom:214.370110px;}
.y65{bottom:214.489494px;}
.yb{bottom:218.049156px;}
.yfe{bottom:220.458893px;}
.ybf{bottom:221.049156px;}
.y138{bottom:225.924156px;}
.y64{bottom:231.834297px;}
.y15{bottom:234.470100px;}
.yfd{bottom:235.458893px;}
.ybe{bottom:236.049156px;}
.ya{bottom:236.799156px;}
.y137{bottom:240.924156px;}
.y63{bottom:249.179100px;}
.yfc{bottom:250.458893px;}
.ybd{bottom:251.049156px;}
.y9{bottom:255.549156px;}
.y136{bottom:255.924156px;}
.y14{bottom:259.370110px;}
.yfb{bottom:265.458893px;}
.ybc{bottom:266.049156px;}
.y62{bottom:267.267448px;}
.y135{bottom:270.924156px;}
.y8{bottom:274.299156px;}
.y13{bottom:274.370110px;}
.yfa{bottom:280.458893px;}
.ybb{bottom:281.049156px;}
.y61{bottom:284.611656px;}
.y134{bottom:285.924156px;}
.y7{bottom:293.049156px;}
.yf9{bottom:295.458893px;}
.yba{bottom:296.049156px;}
.y12{bottom:296.870110px;}
.y60{bottom:299.611656px;}
.y133{bottom:300.924156px;}
.yf8{bottom:310.458893px;}
.yb9{bottom:311.049156px;}
.y6{bottom:311.799156px;}
.y11{bottom:311.870110px;}
.y132{bottom:315.924156px;}
.y96{bottom:319.208702px;}
.yf7{bottom:325.458893px;}
.yb8{bottom:326.049156px;}
.y5{bottom:330.549156px;}
.y131{bottom:330.924156px;}
.y95{bottom:334.208702px;}
.yf6{bottom:340.458893px;}
.y130{bottom:345.924156px;}
.y94{bottom:349.208702px;}
.y5f{bottom:349.299156px;}
.yf5{bottom:355.458893px;}
.yb7{bottom:359.049156px;}
.y12f{bottom:360.924156px;}
.y93{bottom:364.208702px;}
.y4{bottom:368.049156px;}
.yf4{bottom:370.458893px;}
.yb6{bottom:374.049156px;}
.y12e{bottom:375.924156px;}
.y92{bottom:379.208702px;}
.yf3{bottom:385.458893px;}
.y5e{bottom:386.799133px;}
.yb5{bottom:389.049133px;}
.y12d{bottom:390.924133px;}
.y91{bottom:394.208679px;}
.yf2{bottom:400.458893px;}
.yb4{bottom:404.049133px;}
.y5d{bottom:405.549133px;}
.y12c{bottom:405.924133px;}
.y90{bottom:409.208679px;}
.yf1{bottom:415.458893px;}
.yb3{bottom:419.049133px;}
.y2f{bottom:420.612762px;}
.y12b{bottom:420.924133px;}
.y8f{bottom:424.208679px;}
.y5c{bottom:424.299133px;}
.yf0{bottom:430.458893px;}
.yb2{bottom:434.049133px;}
.y12a{bottom:435.924133px;}
.y8e{bottom:439.208679px;}
.y6d{bottom:441.199219px;}
.y5b{bottom:443.049133px;}
.yef{bottom:445.458893px;}
.y129{bottom:450.924133px;}
.y8d{bottom:454.208679px;}
.y2e{bottom:457.362762px;}
.yee{bottom:460.458893px;}
.y5a{bottom:461.799133px;}
.y128{bottom:465.924133px;}
.yb1{bottom:467.049133px;}
.y8c{bottom:469.208679px;}
.yed{bottom:475.458893px;}
.y2d{bottom:476.112762px;}
.y59{bottom:480.549133px;}
.y127{bottom:480.924133px;}
.y97{bottom:481.290756px;}
.yb0{bottom:482.049133px;}
.y8b{bottom:484.208679px;}
.yec{bottom:490.458893px;}
.y2c{bottom:494.862579px;}
.y126{bottom:495.924133px;}
.yaf{bottom:497.049133px;}
.y58{bottom:499.299133px;}
.y8a{bottom:503.541916px;}
.yeb{bottom:505.458893px;}
.y125{bottom:510.924133px;}
.yae{bottom:512.049133px;}
.y2b{bottom:513.612579px;}
.y57{bottom:518.049133px;}
.yea{bottom:520.458893px;}
.y124{bottom:525.924133px;}
.yad{bottom:527.049133px;}
.y2a{bottom:532.362579px;}
.ye9{bottom:535.458893px;}
.y56{bottom:536.799133px;}
.y123{bottom:540.924133px;}
.yac{bottom:542.049133px;}
.ye8{bottom:550.458893px;}
.y29{bottom:551.112579px;}
.y55{bottom:555.549133px;}
.y122{bottom:555.924133px;}
.yab{bottom:557.049133px;}
.ye7{bottom:565.458893px;}
.y28{bottom:569.862579px;}
.y121{bottom:570.924133px;}
.yaa{bottom:572.049133px;}
.y54{bottom:574.299133px;}
.ye6{bottom:580.458893px;}
.y120{bottom:585.924133px;}
.ya9{bottom:587.049133px;}
.y27{bottom:588.612579px;}
.y53{bottom:593.049133px;}
.ye5{bottom:595.458893px;}
.y11f{bottom:600.924133px;}
.ya8{bottom:602.049133px;}
.y26{bottom:607.362579px;}
.y9d{bottom:609.845718px;}
.ye4{bottom:610.458893px;}
.y52{bottom:611.799133px;}
.y11e{bottom:615.924133px;}
.ya7{bottom:617.049133px;}
.ye3{bottom:625.458893px;}
.y25{bottom:626.112579px;}
.y9c{bottom:627.190521px;}
.y51{bottom:630.549133px;}
.y11d{bottom:630.924133px;}
.ya6{bottom:632.049133px;}
.ye2{bottom:640.458893px;}
.y24{bottom:644.862579px;}
.y9b{bottom:645.291321px;}
.y11c{bottom:645.924133px;}
.ya5{bottom:647.049133px;}
.y50{bottom:649.299133px;}
.ye1{bottom:655.458893px;}
.y11b{bottom:660.924133px;}
.ya4{bottom:662.049133px;}
.y9a{bottom:662.635666px;}
.y23{bottom:663.612579px;}
.y4f{bottom:668.049133px;}
.ye0{bottom:670.458893px;}
.y11a{bottom:675.924133px;}
.y99{bottom:677.635666px;}
.y22{bottom:682.362579px;}
.ydf{bottom:685.458893px;}
.y4e{bottom:686.799133px;}
.y119{bottom:690.924133px;}
.y98{bottom:692.635666px;}
.ya3{bottom:695.049133px;}
.yde{bottom:700.458893px;}
.y21{bottom:701.112762px;}
.y4d{bottom:705.549133px;}
.y118{bottom:705.924133px;}
.y86{bottom:708.327621px;}
.ya2{bottom:710.049133px;}
.ydd{bottom:715.458893px;}
.y20{bottom:719.862762px;}
.y117{bottom:720.924133px;}
.y85{bottom:723.327621px;}
.y4c{bottom:724.299133px;}
.ydc{bottom:730.458893px;}
.y84{bottom:738.327621px;}
.y1f{bottom:738.612762px;}
.y4b{bottom:743.049133px;}
.ydb{bottom:745.458893px;}
.ya0{bottom:747.075165px;}
.y83{bottom:753.327621px;}
.y116{bottom:754.674133px;}
.y1e{bottom:757.362762px;}
.yda{bottom:760.458893px;}
.y4a{bottom:761.799133px;}
.y9f{bottom:762.075165px;}
.y82{bottom:770.672516px;}
.yd9{bottom:775.458893px;}
.y1d{bottom:776.112579px;}
.y9e{bottom:777.075165px;}
.y49{bottom:780.549133px;}
.y81{bottom:785.672516px;}
.yd8{bottom:790.458893px;}
.y1c{bottom:794.862579px;}
.y48{bottom:799.299133px;}
.y80{bottom:800.672516px;}
.yd7{bottom:805.458893px;}
.y115{bottom:810.924133px;}
.y7f{bottom:815.672516px;}
.y47{bottom:818.049133px;}
.yd6{bottom:820.458893px;}
.y114{bottom:825.924133px;}
.y7e{bottom:833.017181px;}
.yd5{bottom:835.458893px;}
.y46{bottom:836.799133px;}
.y31{bottom:840.128357px;}
.y113{bottom:840.924133px;}
.y7d{bottom:848.017181px;}
.yd4{bottom:850.458893px;}
.y30{bottom:855.128357px;}
.y45{bottom:855.549133px;}
.y112{bottom:855.924133px;}
.y7c{bottom:865.362122px;}
.yd3{bottom:865.458893px;}
.y111{bottom:870.924133px;}
.y44{bottom:874.299133px;}
.y7b{bottom:880.362122px;}
.yd2{bottom:880.458893px;}
.y110{bottom:885.924133px;}
.y43{bottom:893.049133px;}
.yd1{bottom:895.458893px;}
.y7a{bottom:897.706970px;}
.y36{bottom:898.706726px;}
.y10f{bottom:900.924133px;}
.y140{bottom:907.458893px;}
.yd0{bottom:910.458893px;}
.y42{bottom:911.799133px;}
.y79{bottom:912.706970px;}
.y10e{bottom:915.924133px;}
.y35{bottom:917.456726px;}
.y13f{bottom:922.458893px;}
.ycf{bottom:925.458893px;}
.y78{bottom:930.051636px;}
.y41{bottom:930.549133px;}
.y10d{bottom:930.924133px;}
.y34{bottom:936.206726px;}
.yce{bottom:940.458893px;}
.y77{bottom:945.051636px;}
.y10c{bottom:945.924133px;}
.y40{bottom:949.299133px;}
.ycd{bottom:955.458893px;}
.y10b{bottom:960.924133px;}
.y76{bottom:963.140076px;}
.y3f{bottom:968.049133px;}
.ycc{bottom:970.458893px;}
.y10a{bottom:975.924133px;}
.y75{bottom:978.140076px;}
.y33{bottom:980.043274px;}
.ycb{bottom:985.458893px;}
.y3e{bottom:986.799133px;}
.y109{bottom:990.924133px;}
.y74{bottom:995.484283px;}
.yca{bottom:1000.458893px;}
.y3d{bottom:1005.549133px;}
.y108{bottom:1005.924133px;}
.y32{bottom:1007.043274px;}
.y73{bottom:1010.484283px;}
.yc9{bottom:1015.458893px;}
.y107{bottom:1020.924133px;}
.y3c{bottom:1024.299133px;}
.y72{bottom:1025.484283px;}
.yc8{bottom:1030.458893px;}
.y71{bottom:1040.484283px;}
.y3b{bottom:1043.049133px;}
.yc7{bottom:1045.458893px;}
.y106{bottom:1053.924133px;}
.y70{bottom:1055.484283px;}
.yc6{bottom:1060.458893px;}
.y3a{bottom:1061.799133px;}
.y6f{bottom:1070.484283px;}
.y1{bottom:1075.294006px;}
.yc5{bottom:1075.458893px;}
.y39{bottom:1080.549133px;}
.y6e{bottom:1085.484283px;}
.ya1{bottom:1086.818665px;}
.y105{bottom:1086.924133px;}
.yc4{bottom:1090.458893px;}
.y3{bottom:1109.543884px;}
.y38{bottom:1125.713104px;}
.y2{bottom:1126.031982px;}
.ha{height:24.805224px;}
.hb{height:31.254931px;}
.h8{height:35.436035px;}
.h7{height:36.855469px;}
.h5{height:41.689453px;}
.h9{height:44.649902px;}
.h3{height:48.297000px;}
.h12{height:49.113000px;}
.h13{height:50.027344px;}
.h14{height:50.439000px;}
.h6{height:52.529297px;}
.h2{height:55.404000px;}
.hd{height:57.780000px;}
.hc{height:59.340000px;}
.hf{height:64.446000px;}
.h11{height:64.680000px;}
.h4{height:71.208000px;}
.h10{height:72.000000px;}
.he{height:92.448000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535402px;}
.x1{left:85.181849px;}
.x4{left:90.972599px;}
.x8{left:93.543303px;}
.x5{left:97.795200px;}
.x10{left:102.047253px;}
.xb{left:152.199749px;}
.xc{left:197.556152px;}
.xa{left:247.073547px;}
.xe{left:266.279250px;}
.xd{left:368.571304px;}
.x3{left:459.850342px;}
.x9{left:476.220428px;}
.xf{left:484.724396px;}
.x7{left:711.434418px;}
.x6{left:755.658737px;}
@media print{
.v1{vertical-align:-18.133299pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.333333pt;}
.ls11{letter-spacing:-11.333333pt;}
.ls5{letter-spacing:-1.333333pt;}
.lsf{letter-spacing:-0.800000pt;}
.ls10{letter-spacing:-0.680000pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls12{letter-spacing:-0.453333pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000517pt;}
.lse{letter-spacing:0.000518pt;}
.lsd{letter-spacing:0.000579pt;}
.lsc{letter-spacing:0.006935pt;}
.ls1{letter-spacing:0.008542pt;}
.ls7{letter-spacing:0.266667pt;}
.ls8{letter-spacing:0.266764pt;}
.ls9{letter-spacing:0.275143pt;}
.lsa{letter-spacing:0.275306pt;}
.ls4{letter-spacing:0.533333pt;}
.ls2{letter-spacing:3.546667pt;}
.ls13{letter-spacing:13.962667pt;}
.ls0{letter-spacing:24.273059pt;}
.ws16{word-spacing:-13.866667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.928000pt;}
.ws38{word-spacing:-12.800000pt;}
.ws17{word-spacing:-12.000000pt;}
.ws55{word-spacing:-11.333333pt;}
.ws39{word-spacing:-11.088000pt;}
.ws7{word-spacing:-11.040000pt;}
.wsa0{word-spacing:-10.880000pt;}
.ws4{word-spacing:-10.773333pt;}
.ws6{word-spacing:-10.240000pt;}
.ws0{word-spacing:-8.885333pt;}
.ws92{word-spacing:-8.704000pt;}
.ws93{word-spacing:-8.250667pt;}
.ws3{word-spacing:-7.933333pt;}
.ws8{word-spacing:-7.168000pt;}
.ws76{word-spacing:-6.666667pt;}
.ws69{word-spacing:-5.666667pt;}
.ws9{word-spacing:-3.546667pt;}
.ws3f{word-spacing:-2.826667pt;}
.ws41{word-spacing:-2.506667pt;}
.wsb6{word-spacing:-2.176000pt;}
.ws15{word-spacing:-1.920000pt;}
.ws40{word-spacing:-1.866667pt;}
.ws19{word-spacing:-1.760000pt;}
.wsac{word-spacing:-1.722667pt;}
.ws22{word-spacing:-1.706667pt;}
.ws4d{word-spacing:-1.386667pt;}
.ws73{word-spacing:-1.333333pt;}
.wsc{word-spacing:-1.120000pt;}
.wsb5{word-spacing:-1.042667pt;}
.ws43{word-spacing:-0.960000pt;}
.ws85{word-spacing:-0.853333pt;}
.ws90{word-spacing:-0.816000pt;}
.ws4e{word-spacing:-0.800000pt;}
.wsb4{word-spacing:-0.725333pt;}
.ws51{word-spacing:-0.693333pt;}
.ws1a{word-spacing:-0.533333pt;}
.ws42{word-spacing:-0.480000pt;}
.wsa6{word-spacing:-0.373333pt;}
.ws6e{word-spacing:-0.266667pt;}
.wsa3{word-spacing:-0.136000pt;}
.ws5{word-spacing:-0.053333pt;}
.ws3a{word-spacing:-0.045333pt;}
.wsb{word-spacing:0.000000pt;}
.wsb1{word-spacing:0.090667pt;}
.wsb7{word-spacing:0.272000pt;}
.ws9f{word-spacing:0.453333pt;}
.ws3d{word-spacing:0.533333pt;}
.ws96{word-spacing:0.586667pt;}
.ws98{word-spacing:0.680000pt;}
.ws94{word-spacing:0.800000pt;}
.ws47{word-spacing:0.853333pt;}
.ws99{word-spacing:0.861333pt;}
.ws35{word-spacing:1.066667pt;}
.wsa1{word-spacing:1.133333pt;}
.ws45{word-spacing:1.280000pt;}
.ws34{word-spacing:1.333333pt;}
.ws4b{word-spacing:1.386667pt;}
.ws8f{word-spacing:1.450667pt;}
.wsa2{word-spacing:1.496000pt;}
.ws4c{word-spacing:1.546667pt;}
.ws26{word-spacing:1.706667pt;}
.ws8d{word-spacing:1.760000pt;}
.ws6a{word-spacing:1.768000pt;}
.ws89{word-spacing:1.866667pt;}
.ws10{word-spacing:2.133333pt;}
.wsa9{word-spacing:2.186667pt;}
.ws61{word-spacing:2.240000pt;}
.wsab{word-spacing:2.346667pt;}
.ws18{word-spacing:2.400000pt;}
.wsb3{word-spacing:2.493333pt;}
.wsa5{word-spacing:2.506667pt;}
.ws53{word-spacing:2.560000pt;}
.ws91{word-spacing:2.629333pt;}
.ws37{word-spacing:2.826667pt;}
.ws13{word-spacing:2.880000pt;}
.ws46{word-spacing:2.986667pt;}
.ws6d{word-spacing:3.040000pt;}
.ws54{word-spacing:3.082667pt;}
.wsf{word-spacing:3.093333pt;}
.ws11{word-spacing:3.360000pt;}
.ws14{word-spacing:3.466667pt;}
.ws9c{word-spacing:3.536000pt;}
.ws49{word-spacing:3.626667pt;}
.ws3e{word-spacing:3.840000pt;}
.ws66{word-spacing:4.034667pt;}
.ws52{word-spacing:4.320000pt;}
.ws21{word-spacing:4.533333pt;}
.ws12{word-spacing:4.746667pt;}
.ws2b{word-spacing:4.906667pt;}
.ws1d{word-spacing:5.120000pt;}
.ws48{word-spacing:5.168000pt;}
.ws3c{word-spacing:5.333333pt;}
.ws44{word-spacing:5.386667pt;}
.ws70{word-spacing:5.546667pt;}
.wse{word-spacing:5.600000pt;}
.ws6b{word-spacing:5.706667pt;}
.ws2f{word-spacing:5.760000pt;}
.ws50{word-spacing:5.973333pt;}
.ws62{word-spacing:6.026667pt;}
.ws67{word-spacing:6.029333pt;}
.ws72{word-spacing:6.186667pt;}
.ws2e{word-spacing:6.240000pt;}
.wsae{word-spacing:6.392000pt;}
.ws32{word-spacing:6.453333pt;}
.ws1f{word-spacing:6.560000pt;}
.ws86{word-spacing:6.773333pt;}
.ws2d{word-spacing:6.880000pt;}
.ws4f{word-spacing:6.933333pt;}
.ws9b{word-spacing:7.072000pt;}
.ws9e{word-spacing:7.117333pt;}
.ws23{word-spacing:7.253333pt;}
.ws2c{word-spacing:7.306667pt;}
.ws60{word-spacing:7.680000pt;}
.ws4a{word-spacing:7.786667pt;}
.wsa8{word-spacing:7.840000pt;}
.wsaf{word-spacing:7.888000pt;}
.wsaa{word-spacing:8.106667pt;}
.ws74{word-spacing:8.213333pt;}
.ws9d{word-spacing:8.296000pt;}
.wsd{word-spacing:8.426667pt;}
.ws2a{word-spacing:8.586667pt;}
.ws5f{word-spacing:8.960000pt;}
.ws24{word-spacing:9.600000pt;}
.ws20{word-spacing:9.653333pt;}
.wsb8{word-spacing:9.746667pt;}
.ws31{word-spacing:9.973333pt;}
.ws1b{word-spacing:10.453333pt;}
.wsa4{word-spacing:10.506667pt;}
.wsb2{word-spacing:10.925333pt;}
.ws63{word-spacing:11.093333pt;}
.ws1e{word-spacing:11.253333pt;}
.ws25{word-spacing:11.306667pt;}
.ws9a{word-spacing:11.333333pt;}
.ws1c{word-spacing:11.573333pt;}
.ws8a{word-spacing:11.680000pt;}
.ws77{word-spacing:11.733333pt;}
.ws95{word-spacing:11.786667pt;}
.ws28{word-spacing:12.000000pt;}
.ws6c{word-spacing:12.160000pt;}
.ws68{word-spacing:12.784000pt;}
.wsb0{word-spacing:12.874667pt;}
.wsa7{word-spacing:13.013333pt;}
.ws87{word-spacing:13.173333pt;}
.ws33{word-spacing:13.653333pt;}
.ws8b{word-spacing:13.706667pt;}
.ws29{word-spacing:14.186667pt;}
.ws8e{word-spacing:14.240000pt;}
.wsad{word-spacing:14.325333pt;}
.ws8c{word-spacing:14.986667pt;}
.ws88{word-spacing:15.040000pt;}
.ws27{word-spacing:15.200000pt;}
.ws65{word-spacing:16.693333pt;}
.ws83{word-spacing:17.173333pt;}
.ws75{word-spacing:17.920000pt;}
.ws6f{word-spacing:18.240000pt;}
.ws97{word-spacing:19.893333pt;}
.ws30{word-spacing:20.106667pt;}
.ws64{word-spacing:20.266667pt;}
.ws84{word-spacing:22.666667pt;}
.ws36{word-spacing:23.840000pt;}
.ws71{word-spacing:27.306667pt;}
.ws57{word-spacing:34.047458pt;}
.wsa{word-spacing:34.613333pt;}
.ws5b{word-spacing:50.135498pt;}
.ws59{word-spacing:50.135990pt;}
.ws7a{word-spacing:59.700281pt;}
.ws79{word-spacing:60.737553pt;}
.ws7b{word-spacing:60.738204pt;}
.ws78{word-spacing:71.056003pt;}
.ws81{word-spacing:72.025553pt;}
.ws5e{word-spacing:72.802657pt;}
.ws5a{word-spacing:76.842125pt;}
.ws58{word-spacing:84.180831pt;}
.ws7d{word-spacing:94.692220pt;}
.ws7f{word-spacing:94.692383pt;}
.ws5d{word-spacing:107.079458pt;}
.ws5c{word-spacing:142.303458pt;}
.ws56{word-spacing:151.887455pt;}
.ws7c{word-spacing:157.508823pt;}
.ws80{word-spacing:157.510417pt;}
.ws7e{word-spacing:170.508789pt;}
.ws82{word-spacing:173.408529pt;}
.ws3b{word-spacing:343.243182pt;}
._9{margin-left:-62.665588pt;}
._24{margin-left:-26.991380pt;}
._37{margin-left:-11.449107pt;}
._18{margin-left:-9.805369pt;}
._7{margin-left:-6.973407pt;}
._c{margin-left:-5.258666pt;}
._16{margin-left:-4.256001pt;}
._3{margin-left:-3.349333pt;}
._10{margin-left:-2.382949pt;}
._0{margin-left:-1.360000pt;}
._4{width:1.280000pt;}
._38{width:2.174400pt;}
._6{width:3.072109pt;}
._8{width:4.501333pt;}
._b{width:5.605333pt;}
._e{width:6.530781pt;}
._d{width:7.469311pt;}
._2{width:8.413424pt;}
._13{width:9.645243pt;}
._5{width:10.848000pt;}
._12{width:12.058667pt;}
._25{width:13.267544pt;}
._14{width:14.634666pt;}
._f{width:15.677312pt;}
._1{width:16.618667pt;}
._17{width:17.546667pt;}
._19{width:18.645334pt;}
._23{width:20.277334pt;}
._21{width:21.717334pt;}
._11{width:23.685334pt;}
._2f{width:25.018668pt;}
._2e{width:26.954806pt;}
._2d{width:27.859432pt;}
._22{width:28.997334pt;}
._2a{width:30.236251pt;}
._15{width:31.397334pt;}
._a{width:48.370659pt;}
._26{width:58.772788pt;}
._2b{width:59.996788pt;}
._34{width:70.217008pt;}
._32{width:72.022380pt;}
._29{width:84.135498pt;}
._36{width:95.985641pt;}
._28{width:106.802165pt;}
._33{width:114.075235pt;}
._30{width:128.265093pt;}
._2c{width:129.468831pt;}
._27{width:141.079458pt;}
._31{width:190.939187pt;}
._20{width:227.170131pt;}
._1d{width:261.643182pt;}
._35{width:265.443719pt;}
._1c{width:307.973849pt;}
._1f{width:309.243182pt;}
._1e{width:390.293850pt;}
._1b{width:393.653849pt;}
._1a{width:538.357849pt;}
.fs4{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs1{font-size:45.333333pt;}
.fs0{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs5{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:54.220133pt;}
.y89{bottom:99.038533pt;}
.y6c{bottom:100.157471pt;}
.y10{bottom:110.488129pt;}
.y1b{bottom:110.551198pt;}
.y88{bottom:112.371867pt;}
.y6b{bottom:113.490804pt;}
.yc3{bottom:113.821462pt;}
.y6a{bottom:115.653595pt;}
.y104{bottom:115.963470pt;}
.y13e{bottom:120.821462pt;}
.y1a{bottom:123.884532pt;}
.y87{bottom:125.705200pt;}
.yf{bottom:127.154795pt;}
.y103{bottom:129.296804pt;}
.y69{bottom:131.071198pt;}
.y13d{bottom:134.154795pt;}
.yc2{bottom:140.488129pt;}
.y19{bottom:141.751200pt;}
.y102{bottom:142.630137pt;}
.ye{bottom:143.821462pt;}
.y68{bottom:146.488800pt;}
.y13c{bottom:147.488129pt;}
.yc1{bottom:153.821462pt;}
.y101{bottom:155.963470pt;}
.y18{bottom:157.217865pt;}
.yd{bottom:160.488129pt;}
.y13b{bottom:160.821462pt;}
.y67{bottom:161.906403pt;}
.y100{bottom:169.296804pt;}
.y13a{bottom:174.154805pt;}
.y17{bottom:175.084533pt;}
.yc{bottom:177.154805pt;}
.y66{bottom:177.323995pt;}
.yff{bottom:182.630127pt;}
.yc0{bottom:183.154805pt;}
.y139{bottom:187.488139pt;}
.y16{bottom:190.551208pt;}
.y65{bottom:190.657328pt;}
.yb{bottom:193.821472pt;}
.yfe{bottom:195.963460pt;}
.ybf{bottom:196.488139pt;}
.y138{bottom:200.821472pt;}
.y64{bottom:206.074931pt;}
.y15{bottom:208.417867pt;}
.yfd{bottom:209.296794pt;}
.ybe{bottom:209.821472pt;}
.ya{bottom:210.488139pt;}
.y137{bottom:214.154805pt;}
.y63{bottom:221.492533pt;}
.yfc{bottom:222.630127pt;}
.ybd{bottom:223.154805pt;}
.y9{bottom:227.154805pt;}
.y136{bottom:227.488139pt;}
.y14{bottom:230.551208pt;}
.yfb{bottom:235.963460pt;}
.ybc{bottom:236.488139pt;}
.y62{bottom:237.571065pt;}
.y135{bottom:240.821472pt;}
.y8{bottom:243.821472pt;}
.y13{bottom:243.884542pt;}
.yfa{bottom:249.296794pt;}
.ybb{bottom:249.821472pt;}
.y61{bottom:252.988139pt;}
.y134{bottom:254.154805pt;}
.y7{bottom:260.488139pt;}
.yf9{bottom:262.630127pt;}
.yba{bottom:263.154805pt;}
.y12{bottom:263.884542pt;}
.y60{bottom:266.321472pt;}
.y133{bottom:267.488139pt;}
.yf8{bottom:275.963460pt;}
.yb9{bottom:276.488139pt;}
.y6{bottom:277.154805pt;}
.y11{bottom:277.217875pt;}
.y132{bottom:280.821472pt;}
.y96{bottom:283.741069pt;}
.yf7{bottom:289.296794pt;}
.yb8{bottom:289.821472pt;}
.y5{bottom:293.821472pt;}
.y131{bottom:294.154805pt;}
.y95{bottom:297.074402pt;}
.yf6{bottom:302.630127pt;}
.y130{bottom:307.488139pt;}
.y94{bottom:310.407735pt;}
.y5f{bottom:310.488139pt;}
.yf5{bottom:315.963460pt;}
.yb7{bottom:319.154805pt;}
.y12f{bottom:320.821472pt;}
.y93{bottom:323.741069pt;}
.y4{bottom:327.154805pt;}
.yf4{bottom:329.296794pt;}
.yb6{bottom:332.488139pt;}
.y12e{bottom:334.154805pt;}
.y92{bottom:337.074402pt;}
.yf3{bottom:342.630127pt;}
.y5e{bottom:343.821452pt;}
.yb5{bottom:345.821452pt;}
.y12d{bottom:347.488118pt;}
.y91{bottom:350.407715pt;}
.yf2{bottom:355.963460pt;}
.yb4{bottom:359.154785pt;}
.y5d{bottom:360.488118pt;}
.y12c{bottom:360.821452pt;}
.y90{bottom:363.741048pt;}
.yf1{bottom:369.296794pt;}
.yb3{bottom:372.488118pt;}
.y2f{bottom:373.878011pt;}
.y12b{bottom:374.154785pt;}
.y8f{bottom:377.074382pt;}
.y5c{bottom:377.154785pt;}
.yf0{bottom:382.630127pt;}
.yb2{bottom:385.821452pt;}
.y12a{bottom:387.488118pt;}
.y8e{bottom:390.407715pt;}
.y6d{bottom:392.177083pt;}
.y5b{bottom:393.821452pt;}
.yef{bottom:395.963460pt;}
.y129{bottom:400.821452pt;}
.y8d{bottom:403.741048pt;}
.y2e{bottom:406.544678pt;}
.yee{bottom:409.296794pt;}
.y5a{bottom:410.488118pt;}
.y128{bottom:414.154785pt;}
.yb1{bottom:415.154785pt;}
.y8c{bottom:417.074382pt;}
.yed{bottom:422.630127pt;}
.y2d{bottom:423.211344pt;}
.y59{bottom:427.154785pt;}
.y127{bottom:427.488118pt;}
.y97{bottom:427.814006pt;}
.yb0{bottom:428.488118pt;}
.y8b{bottom:430.407715pt;}
.yec{bottom:435.963460pt;}
.y2c{bottom:439.877848pt;}
.y126{bottom:440.821452pt;}
.yaf{bottom:441.821452pt;}
.y58{bottom:443.821452pt;}
.y8a{bottom:447.592814pt;}
.yeb{bottom:449.296794pt;}
.y125{bottom:454.154785pt;}
.yae{bottom:455.154785pt;}
.y2b{bottom:456.544515pt;}
.y57{bottom:460.488118pt;}
.yea{bottom:462.630127pt;}
.y124{bottom:467.488118pt;}
.yad{bottom:468.488118pt;}
.y2a{bottom:473.211182pt;}
.ye9{bottom:475.963460pt;}
.y56{bottom:477.154785pt;}
.y123{bottom:480.821452pt;}
.yac{bottom:481.821452pt;}
.ye8{bottom:489.296794pt;}
.y29{bottom:489.877848pt;}
.y55{bottom:493.821452pt;}
.y122{bottom:494.154785pt;}
.yab{bottom:495.154785pt;}
.ye7{bottom:502.630127pt;}
.y28{bottom:506.544515pt;}
.y121{bottom:507.488118pt;}
.yaa{bottom:508.488118pt;}
.y54{bottom:510.488118pt;}
.ye6{bottom:515.963460pt;}
.y120{bottom:520.821452pt;}
.ya9{bottom:521.821452pt;}
.y27{bottom:523.211182pt;}
.y53{bottom:527.154785pt;}
.ye5{bottom:529.296794pt;}
.y11f{bottom:534.154785pt;}
.ya8{bottom:535.154785pt;}
.y26{bottom:539.877848pt;}
.y9d{bottom:542.085083pt;}
.ye4{bottom:542.630127pt;}
.y52{bottom:543.821452pt;}
.y11e{bottom:547.488118pt;}
.ya7{bottom:548.488118pt;}
.ye3{bottom:555.963460pt;}
.y25{bottom:556.544515pt;}
.y9c{bottom:557.502686pt;}
.y51{bottom:560.488118pt;}
.y11d{bottom:560.821452pt;}
.ya6{bottom:561.821452pt;}
.ye2{bottom:569.296794pt;}
.y24{bottom:573.211182pt;}
.y9b{bottom:573.592285pt;}
.y11c{bottom:574.154785pt;}
.ya5{bottom:575.154785pt;}
.y50{bottom:577.154785pt;}
.ye1{bottom:582.630127pt;}
.y11b{bottom:587.488118pt;}
.ya4{bottom:588.488118pt;}
.y9a{bottom:589.009481pt;}
.y23{bottom:589.877848pt;}
.y4f{bottom:593.821452pt;}
.ye0{bottom:595.963460pt;}
.y11a{bottom:600.821452pt;}
.y99{bottom:602.342814pt;}
.y22{bottom:606.544515pt;}
.ydf{bottom:609.296794pt;}
.y4e{bottom:610.488118pt;}
.y119{bottom:614.154785pt;}
.y98{bottom:615.676147pt;}
.ya3{bottom:617.821452pt;}
.yde{bottom:622.630127pt;}
.y21{bottom:623.211344pt;}
.y4d{bottom:627.154785pt;}
.y118{bottom:627.488118pt;}
.y86{bottom:629.624552pt;}
.ya2{bottom:631.154785pt;}
.ydd{bottom:635.963460pt;}
.y20{bottom:639.878011pt;}
.y117{bottom:640.821452pt;}
.y85{bottom:642.957886pt;}
.y4c{bottom:643.821452pt;}
.ydc{bottom:649.296794pt;}
.y84{bottom:656.291219pt;}
.y1f{bottom:656.544678pt;}
.y4b{bottom:660.488118pt;}
.ydb{bottom:662.630127pt;}
.ya0{bottom:664.066813pt;}
.y83{bottom:669.624552pt;}
.y116{bottom:670.821452pt;}
.y1e{bottom:673.211344pt;}
.yda{bottom:675.963460pt;}
.y4a{bottom:677.154785pt;}
.y9f{bottom:677.400146pt;}
.y82{bottom:685.042236pt;}
.yd9{bottom:689.296794pt;}
.y1d{bottom:689.877848pt;}
.y9e{bottom:690.733480pt;}
.y49{bottom:693.821452pt;}
.y81{bottom:698.375570pt;}
.yd8{bottom:702.630127pt;}
.y1c{bottom:706.544515pt;}
.y48{bottom:710.488118pt;}
.y80{bottom:711.708903pt;}
.yd7{bottom:715.963460pt;}
.y115{bottom:720.821452pt;}
.y7f{bottom:725.042236pt;}
.y47{bottom:727.154785pt;}
.yd6{bottom:729.296794pt;}
.y114{bottom:734.154785pt;}
.y7e{bottom:740.459717pt;}
.yd5{bottom:742.630127pt;}
.y46{bottom:743.821452pt;}
.y31{bottom:746.780762pt;}
.y113{bottom:747.488118pt;}
.y7d{bottom:753.793050pt;}
.yd4{bottom:755.963460pt;}
.y30{bottom:760.114095pt;}
.y45{bottom:760.488118pt;}
.y112{bottom:760.821452pt;}
.y7c{bottom:769.210775pt;}
.yd3{bottom:769.296794pt;}
.y111{bottom:774.154785pt;}
.y44{bottom:777.154785pt;}
.y7b{bottom:782.544108pt;}
.yd2{bottom:782.630127pt;}
.y110{bottom:787.488118pt;}
.y43{bottom:793.821452pt;}
.yd1{bottom:795.963460pt;}
.y7a{bottom:797.961751pt;}
.y36{bottom:798.850423pt;}
.y10f{bottom:800.821452pt;}
.y140{bottom:806.630127pt;}
.yd0{bottom:809.296794pt;}
.y42{bottom:810.488118pt;}
.y79{bottom:811.295085pt;}
.y10e{bottom:814.154785pt;}
.y35{bottom:815.517090pt;}
.y13f{bottom:819.963460pt;}
.ycf{bottom:822.630127pt;}
.y78{bottom:826.712565pt;}
.y41{bottom:827.154785pt;}
.y10d{bottom:827.488118pt;}
.y34{bottom:832.183757pt;}
.yce{bottom:835.963460pt;}
.y77{bottom:840.045898pt;}
.y10c{bottom:840.821452pt;}
.y40{bottom:843.821452pt;}
.ycd{bottom:849.296794pt;}
.y10b{bottom:854.154785pt;}
.y76{bottom:856.124512pt;}
.y3f{bottom:860.488118pt;}
.ycc{bottom:862.630127pt;}
.y10a{bottom:867.488118pt;}
.y75{bottom:869.457845pt;}
.y33{bottom:871.149577pt;}
.ycb{bottom:875.963460pt;}
.y3e{bottom:877.154785pt;}
.y109{bottom:880.821452pt;}
.y74{bottom:884.874919pt;}
.yca{bottom:889.296794pt;}
.y3d{bottom:893.821452pt;}
.y108{bottom:894.154785pt;}
.y32{bottom:895.149577pt;}
.y73{bottom:898.208252pt;}
.yc9{bottom:902.630127pt;}
.y107{bottom:907.488118pt;}
.y3c{bottom:910.488118pt;}
.y72{bottom:911.541585pt;}
.yc8{bottom:915.963460pt;}
.y71{bottom:924.874919pt;}
.y3b{bottom:927.154785pt;}
.yc7{bottom:929.296794pt;}
.y106{bottom:936.821452pt;}
.y70{bottom:938.208252pt;}
.yc6{bottom:942.630127pt;}
.y3a{bottom:943.821452pt;}
.y6f{bottom:951.541585pt;}
.y1{bottom:955.816895pt;}
.yc5{bottom:955.963460pt;}
.y39{bottom:960.488118pt;}
.y6e{bottom:964.874919pt;}
.ya1{bottom:966.061035pt;}
.y105{bottom:966.154785pt;}
.yc4{bottom:969.296794pt;}
.y3{bottom:986.261230pt;}
.y38{bottom:1000.633870pt;}
.y2{bottom:1000.917318pt;}
.ha{height:22.049088pt;}
.hb{height:27.782161pt;}
.h8{height:31.498698pt;}
.h7{height:32.760417pt;}
.h5{height:37.057292pt;}
.h9{height:39.688802pt;}
.h3{height:42.930667pt;}
.h12{height:43.656000pt;}
.h13{height:44.468750pt;}
.h14{height:44.834667pt;}
.h6{height:46.692708pt;}
.h2{height:49.248000pt;}
.hd{height:51.360000pt;}
.hc{height:52.746667pt;}
.hf{height:57.285333pt;}
.h11{height:57.493333pt;}
.h4{height:63.296000pt;}
.h10{height:64.000000pt;}
.he{height:82.176000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031469pt;}
.x1{left:75.717199pt;}
.x4{left:80.864532pt;}
.x8{left:83.149602pt;}
.x5{left:86.929067pt;}
.x10{left:90.708669pt;}
.xb{left:135.288666pt;}
.xc{left:175.605469pt;}
.xa{left:219.620931pt;}
.xe{left:236.692667pt;}
.xd{left:327.618937pt;}
.x3{left:408.755859pt;}
.x9{left:423.307048pt;}
.xf{left:430.866130pt;}
.x7{left:632.386149pt;}
.x6{left:671.696655pt;}
}




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