
    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_002028e640e454d7f4661cf0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_20f5d516cddb7e54422c09e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.804000;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_fd5c9f0a26b0533cfe6f5f81.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_dceedd6147ce1bcd2e712e19.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.049805;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_63d5eab19aaf18c966fd9525.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_7ca69dabefac465d53e5a69d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_a884f8b9ed7d8a49b3ef56d3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_e15466722fb0ff92cc0cf336.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.049805;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_65ef5dc6e1b8bae1c640d12d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666992;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_fa38353e24422e2dce5bea61.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c9ee8b63717eb2082d309c7d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_c9ee8b63717eb2082d309c7d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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_8f443111e576cc03009b676c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.860000;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_3653d73747108daa7410e9ec.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.916000;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_e51349d0363d032fe23e1468.woff2')format("woff");}.fff{font-family:fff;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b7416197a6f893fade5351e4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893066;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:-21.600000px;}
.v6{vertical-align:-18.000000px;}
.v4{vertical-align:-16.200600px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:6.750000px;}
.v3{vertical-align:16.200600px;}
.v5{vertical-align:18.000000px;}
.v8{vertical-align:19.800000px;}
.v2{vertical-align:21.600000px;}
.va{vertical-align:39.375000px;}
.v7{vertical-align:54.000000px;}
.ls3{letter-spacing:-18.021312px;}
.ls2{letter-spacing:-6.757992px;}
.ls1b{letter-spacing:-2.760000px;}
.ls21{letter-spacing:-2.220000px;}
.lsa{letter-spacing:-1.080000px;}
.ls13{letter-spacing:-0.726000px;}
.ls1e{letter-spacing:-0.660000px;}
.ls1d{letter-spacing:-0.630000px;}
.ls23{letter-spacing:-0.594000px;}
.lsc{letter-spacing:-0.528000px;}
.ls1f{letter-spacing:-0.462000px;}
.lsd{letter-spacing:-0.396000px;}
.ls7{letter-spacing:-0.378000px;}
.ls8{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.330000px;}
.ls1c{letter-spacing:-0.315000px;}
.ls5{letter-spacing:-0.300000px;}
.lse{letter-spacing:-0.264000px;}
.ls6{letter-spacing:-0.240000px;}
.ls10{letter-spacing:-0.198000px;}
.ls11{letter-spacing:-0.132000px;}
.ls4{letter-spacing:-0.120000px;}
.lsb{letter-spacing:-0.066000px;}
.ls18{letter-spacing:-0.060000px;}
.ls1{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.007800px;}
.ls17{letter-spacing:0.010200px;}
.ls12{letter-spacing:0.563400px;}
.ls20{letter-spacing:0.785400px;}
.ls9{letter-spacing:1.737600px;}
.ls22{letter-spacing:3.033600px;}
.ls24{letter-spacing:9.541800px;}
.ls1a{letter-spacing:15.720000px;}
.ls16{letter-spacing:58.725000px;}
.ls14{letter-spacing:84.060000px;}
.ls15{letter-spacing:149.490000px;}
.ls19{letter-spacing:202.800000px;}
.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;}
}
.ws43{word-spacing:-202.860000px;}
.ws3{word-spacing:-66.000000px;}
.ws18{word-spacing:-65.934000px;}
.ws29{word-spacing:-65.868000px;}
.ws28{word-spacing:-65.802000px;}
.ws1b{word-spacing:-65.736000px;}
.ws27{word-spacing:-65.670000px;}
.ws1a{word-spacing:-65.604000px;}
.ws47{word-spacing:-65.538000px;}
.ws19{word-spacing:-65.472000px;}
.ws88{word-spacing:-65.406000px;}
.ws46{word-spacing:-65.340000px;}
.ws3f{word-spacing:-65.274000px;}
.ws8{word-spacing:-60.000000px;}
.wsa{word-spacing:-59.760000px;}
.ws9{word-spacing:-59.700000px;}
.wsd{word-spacing:-59.640000px;}
.ws8a{word-spacing:-55.506000px;}
.ws30{word-spacing:-54.000000px;}
.ws83{word-spacing:-53.262000px;}
.ws98{word-spacing:-52.998000px;}
.ws1c{word-spacing:-52.602000px;}
.ws8d{word-spacing:-51.282000px;}
.ws8c{word-spacing:-49.830000px;}
.ws4f{word-spacing:-48.000000px;}
.ws97{word-spacing:-46.596000px;}
.ws0{word-spacing:-44.892402px;}
.ws8f{word-spacing:-43.032000px;}
.wse{word-spacing:-42.000000px;}
.ws94{word-spacing:-36.786000px;}
.ws95{word-spacing:-36.696000px;}
.ws1{word-spacing:-28.158300px;}
.ws89{word-spacing:-21.000000px;}
.ws2{word-spacing:-16.894980px;}
.ws1d{word-spacing:-16.500000px;}
.ws8e{word-spacing:-16.434000px;}
.ws96{word-spacing:-16.104000px;}
.ws9c{word-spacing:-15.972000px;}
.ws5{word-spacing:-15.012000px;}
.ws6{word-spacing:-15.000000px;}
.wsb{word-spacing:-14.634000px;}
.ws4{word-spacing:-14.011200px;}
.ws17{word-spacing:-13.932000px;}
.ws4d{word-spacing:-13.500000px;}
.ws3e{word-spacing:-11.550000px;}
.wsc{word-spacing:-10.500000px;}
.ws37{word-spacing:-9.450000px;}
.ws12{word-spacing:-3.960000px;}
.ws2b{word-spacing:-3.300000px;}
.ws13{word-spacing:-3.024000px;}
.ws14{word-spacing:-3.000000px;}
.ws4c{word-spacing:-2.640000px;}
.ws7f{word-spacing:-2.310000px;}
.ws74{word-spacing:-2.106000px;}
.ws15{word-spacing:-2.040000px;}
.ws9b{word-spacing:-1.980000px;}
.ws1f{word-spacing:-1.848000px;}
.ws7b{word-spacing:-1.782000px;}
.ws22{word-spacing:-1.584000px;}
.ws2c{word-spacing:-1.452000px;}
.ws11{word-spacing:-1.296000px;}
.ws5e{word-spacing:-1.026000px;}
.ws7d{word-spacing:-0.864000px;}
.ws99{word-spacing:-0.792000px;}
.ws16{word-spacing:-0.600000px;}
.ws78{word-spacing:-0.540000px;}
.ws80{word-spacing:-0.528000px;}
.ws5f{word-spacing:-0.486000px;}
.ws9d{word-spacing:-0.462000px;}
.ws2f{word-spacing:-0.330000px;}
.ws55{word-spacing:-0.270000px;}
.ws20{word-spacing:-0.198000px;}
.ws2e{word-spacing:-0.132000px;}
.wsf{word-spacing:0.000000px;}
.ws56{word-spacing:0.054000px;}
.ws9a{word-spacing:0.066000px;}
.ws90{word-spacing:0.132000px;}
.ws25{word-spacing:0.264000px;}
.ws76{word-spacing:0.270000px;}
.ws48{word-spacing:0.315000px;}
.ws4b{word-spacing:0.462000px;}
.ws77{word-spacing:0.540000px;}
.ws49{word-spacing:0.630000px;}
.ws3d{word-spacing:0.810000px;}
.ws7e{word-spacing:0.864000px;}
.ws60{word-spacing:1.134000px;}
.ws7a{word-spacing:1.518000px;}
.ws54{word-spacing:1.620000px;}
.ws7c{word-spacing:1.674000px;}
.ws21{word-spacing:1.716000px;}
.ws61{word-spacing:1.890000px;}
.ws79{word-spacing:2.220000px;}
.ws40{word-spacing:2.244000px;}
.ws23{word-spacing:2.442000px;}
.ws85{word-spacing:2.574000px;}
.ws45{word-spacing:2.700000px;}
.ws75{word-spacing:2.862000px;}
.ws87{word-spacing:3.036000px;}
.ws53{word-spacing:3.564000px;}
.ws4a{word-spacing:3.762000px;}
.ws82{word-spacing:4.158000px;}
.ws91{word-spacing:4.620000px;}
.ws2a{word-spacing:4.818000px;}
.ws24{word-spacing:5.148000px;}
.ws3c{word-spacing:5.412000px;}
.ws2d{word-spacing:5.676000px;}
.ws86{word-spacing:5.742000px;}
.ws26{word-spacing:5.874000px;}
.ws81{word-spacing:5.940000px;}
.ws7{word-spacing:6.046800px;}
.ws10{word-spacing:6.757992px;}
.ws84{word-spacing:7.062000px;}
.ws92{word-spacing:8.646000px;}
.ws41{word-spacing:9.120000px;}
.ws38{word-spacing:9.232800px;}
.ws8b{word-spacing:10.494000px;}
.ws42{word-spacing:16.080000px;}
.ws3a{word-spacing:16.684800px;}
.ws93{word-spacing:22.968000px;}
.ws62{word-spacing:52.502400px;}
.ws31{word-spacing:52.569000px;}
.ws1e{word-spacing:56.028000px;}
.ws36{word-spacing:65.865000px;}
.ws35{word-spacing:68.889000px;}
.ws6f{word-spacing:85.350000px;}
.ws39{word-spacing:86.871000px;}
.ws3b{word-spacing:89.841000px;}
.ws72{word-spacing:90.909000px;}
.ws71{word-spacing:94.751400px;}
.ws64{word-spacing:98.850000px;}
.ws50{word-spacing:110.844000px;}
.ws6e{word-spacing:112.350000px;}
.ws32{word-spacing:113.871000px;}
.ws57{word-spacing:115.482600px;}
.ws69{word-spacing:117.909000px;}
.ws63{word-spacing:118.200000px;}
.ws6c{word-spacing:120.150000px;}
.ws6d{word-spacing:124.950000px;}
.ws68{word-spacing:125.850000px;}
.ws66{word-spacing:131.700000px;}
.ws67{word-spacing:133.650000px;}
.ws6b{word-spacing:138.450000px;}
.ws70{word-spacing:144.909000px;}
.ws5a{word-spacing:148.650600px;}
.ws5b{word-spacing:148.651200px;}
.ws6a{word-spacing:149.561400px;}
.ws33{word-spacing:158.853000px;}
.ws59{word-spacing:162.150600px;}
.ws58{word-spacing:162.151200px;}
.ws73{word-spacing:163.968000px;}
.ws5d{word-spacing:175.650600px;}
.ws5c{word-spacing:175.651200px;}
.ws65{word-spacing:178.775400px;}
.ws4e{word-spacing:253.396200px;}
.ws51{word-spacing:302.491800px;}
.ws52{word-spacing:431.443800px;}
.ws34{word-spacing:601.666800px;}
.ws44{word-spacing:1340.820000px;}
._13{margin-left:-173.460000px;}
._6{margin-left:-10.389000px;}
._0{margin-left:-8.688725px;}
._3{margin-left:-6.746812px;}
._b{margin-left:-5.661600px;}
._1{margin-left:-4.505328px;}
._8{margin-left:-3.174000px;}
._4{margin-left:-1.998000px;}
._5{width:1.296000px;}
._a{width:2.400000px;}
._7{width:3.960000px;}
._9{width:5.885328px;}
._c{width:7.524000px;}
._d{width:8.928000px;}
._2b{width:10.021392px;}
._2{width:11.263320px;}
._2c{width:15.840000px;}
._2d{width:18.348000px;}
._e{width:56.028000px;}
._22{width:109.849800px;}
._21{width:112.490400px;}
._20{width:113.838000px;}
._1f{width:119.209200px;}
._1e{width:120.688200px;}
._25{width:139.350000px;}
._27{width:153.750000px;}
._28{width:158.409000px;}
._17{width:164.844000px;}
._23{width:166.350000px;}
._1b{width:172.779600px;}
._2a{width:174.150000px;}
._26{width:177.468000px;}
._1c{width:182.140800px;}
._18{width:183.961800px;}
._24{width:187.650000px;}
._1a{width:203.500800px;}
._19{width:226.129800px;}
._14{width:277.350600px;}
._29{width:319.013400px;}
._16{width:362.094000px;}
._15{width:392.455800px;}
._12{width:427.732800px;}
._f{width:477.166800px;}
._10{width:495.070800px;}
._1d{width:662.887200px;}
._11{width:666.088800px;}
.fc6{color:rgb(183,82,47);}
.fc4{color:rgb(45,44,44);}
.fc2{color:rgb(198,45,45);}
.fc1{color:rgb(145,143,143);}
.fc8{color:rgb(26,26,26);}
.fc7{color:rgb(0,0,0);}
.fc5{color:rgb(38,38,38);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:37.800000px;}
.fs9{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fsc{font-size:46.200000px;}
.fsb{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs7{font-size:108.000000px;}
.fs2{font-size:112.633200px;}
.fs1{font-size:144.814200px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.631050px;}
.y33{bottom:127.564800px;}
.y63{bottom:128.314950px;}
.y7a{bottom:131.231850px;}
.y79{bottom:144.731850px;}
.y32{bottom:145.564800px;}
.y62{bottom:149.314950px;}
.yb6{bottom:156.460350px;}
.y78{bottom:158.231850px;}
.y8d{bottom:160.148250px;}
.y31{bottom:163.564800px;}
.yb5{bottom:169.960350px;}
.y61{bottom:170.314950px;}
.y77{bottom:176.096250px;}
.y30{bottom:181.564800px;}
.yb4{bottom:183.460350px;}
.y8c{bottom:186.516600px;}
.y76{bottom:189.596250px;}
.y60{bottom:191.314950px;}
.y97{bottom:191.315100px;}
.y2f{bottom:199.564800px;}
.y75{bottom:203.096250px;}
.y8b{bottom:204.380850px;}
.yb3{bottom:209.828700px;}
.y5f{bottom:212.314950px;}
.y96{bottom:212.315100px;}
.y2e{bottom:217.564800px;}
.y74{bottom:220.960500px;}
.y8a{bottom:222.245100px;}
.yb2{bottom:223.328700px;}
.y5e{bottom:233.314950px;}
.y95{bottom:233.315100px;}
.y73{bottom:234.460500px;}
.y2d{bottom:235.564800px;}
.yb1{bottom:236.828700px;}
.y72{bottom:247.960500px;}
.y89{bottom:248.206200px;}
.y2c{bottom:253.564800px;}
.y5d{bottom:254.314950px;}
.y94{bottom:254.315100px;}
.yae{bottom:262.480200px;}
.yb0{bottom:262.697850px;}
.y71{bottom:265.824750px;}
.y2b{bottom:271.564800px;}
.y88{bottom:274.574400px;}
.y5c{bottom:275.314950px;}
.y93{bottom:275.315100px;}
.yad{bottom:275.980200px;}
.yaf{bottom:276.197850px;}
.y70{bottom:279.324750px;}
.y2a{bottom:289.564800px;}
.y6f{bottom:292.824750px;}
.y5b{bottom:296.314950px;}
.y92{bottom:296.315100px;}
.y87{bottom:299.902650px;}
.yaa{bottom:304.999950px;}
.yac{bottom:305.217450px;}
.y6e{bottom:310.689000px;}
.y86{bottom:317.152650px;}
.y5a{bottom:317.314950px;}
.y91{bottom:317.315100px;}
.ya9{bottom:318.499950px;}
.yab{bottom:318.717450px;}
.y6d{bottom:324.189000px;}
.y29{bottom:325.564800px;}
.y85{bottom:334.402650px;}
.y6c{bottom:337.689000px;}
.y59{bottom:338.314950px;}
.y90{bottom:338.315100px;}
.y28{bottom:343.564800px;}
.ya7{bottom:347.519550px;}
.ya8{bottom:347.737200px;}
.y84{bottom:351.652650px;}
.y6b{bottom:355.553400px;}
.y58{bottom:359.314950px;}
.y8f{bottom:359.315100px;}
.ya6{bottom:361.019550px;}
.y27{bottom:361.564800px;}
.y83{bottom:368.902650px;}
.y6a{bottom:373.417650px;}
.y26{bottom:379.564800px;}
.y57{bottom:380.314950px;}
.y8e{bottom:380.315100px;}
.y82{bottom:386.152650px;}
.y69{bottom:386.917650px;}
.ya5{bottom:387.387900px;}
.y25{bottom:397.564800px;}
.y68{bottom:400.417650px;}
.y56{bottom:401.314950px;}
.y81{bottom:403.402650px;}
.ya4{bottom:404.212050px;}
.y24{bottom:415.564800px;}
.y55{bottom:422.314950px;}
.y67{bottom:426.785850px;}
.ya3{bottom:429.540300px;}
.y23{bottom:433.564800px;}
.y54{bottom:443.314950px;}
.ya2{bottom:446.790300px;}
.y22{bottom:451.564800px;}
.y66{bottom:452.114100px;}
.ya1{bottom:464.040300px;}
.y53{bottom:464.314950px;}
.y65{bottom:469.364100px;}
.y21{bottom:469.564800px;}
.ya0{bottom:481.290300px;}
.y52{bottom:485.314950px;}
.y20{bottom:487.564800px;}
.y9f{bottom:498.540300px;}
.yd2{bottom:505.496100px;}
.y1f{bottom:505.564800px;}
.y51{bottom:506.314950px;}
.y9e{bottom:515.790300px;}
.yd1{bottom:522.746100px;}
.y1e{bottom:523.564800px;}
.y50{bottom:527.314950px;}
.yd0{bottom:539.996100px;}
.y1d{bottom:541.564800px;}
.y4f{bottom:548.314950px;}
.ycf{bottom:557.246100px;}
.y1c{bottom:559.564800px;}
.y4e{bottom:569.314950px;}
.yce{bottom:574.496100px;}
.y1b{bottom:577.564800px;}
.y4d{bottom:590.314950px;}
.ycd{bottom:591.746100px;}
.y1a{bottom:595.564800px;}
.ycc{bottom:608.996100px;}
.y4c{bottom:611.314950px;}
.y19{bottom:613.564800px;}
.ycb{bottom:626.246100px;}
.y4b{bottom:632.314950px;}
.y9d{bottom:634.816950px;}
.y9c{bottom:652.066950px;}
.y18{bottom:652.824600px;}
.y4a{bottom:653.314950px;}
.y9b{bottom:669.316950px;}
.y17{bottom:670.824600px;}
.y49{bottom:674.314950px;}
.y9a{bottom:686.566950px;}
.y16{bottom:688.824600px;}
.y48{bottom:695.314950px;}
.y99{bottom:703.816950px;}
.y15{bottom:706.824600px;}
.y47{bottom:716.314950px;}
.y98{bottom:721.066950px;}
.y14{bottom:724.824600px;}
.y46{bottom:737.314950px;}
.y13{bottom:742.824600px;}
.y45{bottom:758.314950px;}
.y12{bottom:760.824600px;}
.yca{bottom:769.038450px;}
.y44{bottom:779.314950px;}
.yc9{bottom:782.538450px;}
.y11{bottom:800.084400px;}
.y43{bottom:800.314950px;}
.yc8{bottom:808.553100px;}
.y10{bottom:818.084400px;}
.y42{bottom:821.314950px;}
.yc7{bottom:829.812900px;}
.yf{bottom:836.084400px;}
.y41{bottom:842.314950px;}
.yc6{bottom:851.072850px;}
.y40{bottom:863.314950px;}
.yc5{bottom:874.629600px;}
.y3f{bottom:884.314950px;}
.ye{bottom:892.352250px;}
.yc4{bottom:900.997800px;}
.y3e{bottom:905.314950px;}
.yc3{bottom:908.574000px;}
.yc2{bottom:922.074000px;}
.yd{bottom:922.352250px;}
.y3d{bottom:926.314950px;}
.y3c{bottom:947.314950px;}
.yc1{bottom:947.402100px;}
.yc0{bottom:964.652100px;}
.y3b{bottom:968.314950px;}
.yb{bottom:973.612050px;}
.yc{bottom:979.012050px;}
.ybf{bottom:981.902100px;}
.y3a{bottom:989.314950px;}
.y9{bottom:994.612050px;}
.ybe{bottom:999.152100px;}
.ya{bottom:1000.012050px;}
.y39{bottom:1010.314950px;}
.ybd{bottom:1016.402100px;}
.y38{bottom:1031.314950px;}
.ybc{bottom:1033.652100px;}
.ybb{bottom:1050.902100px;}
.y37{bottom:1052.314950px;}
.yba{bottom:1068.152100px;}
.y36{bottom:1073.314950px;}
.y8{bottom:1080.719100px;}
.yb9{bottom:1085.402100px;}
.y64{bottom:1094.314950px;}
.y7{bottom:1098.719100px;}
.yb8{bottom:1102.652100px;}
.y7f{bottom:1106.117400px;}
.y7e{bottom:1107.804900px;}
.y7b{bottom:1109.867400px;}
.y7c{bottom:1111.461150px;}
.y35{bottom:1115.314950px;}
.y7d{bottom:1115.961150px;}
.y6{bottom:1116.719100px;}
.y80{bottom:1118.863650px;}
.yb7{bottom:1119.902100px;}
.y5{bottom:1134.719100px;}
.y2{bottom:1143.169950px;}
.y4{bottom:1164.223050px;}
.y3{bottom:1182.223050px;}
.y34{bottom:1189.226850px;}
.h1a{height:31.275000px;}
.h18{height:31.500000px;}
.h1b{height:33.351562px;}
.h16{height:33.840000px;}
.h1e{height:36.597656px;}
.h7{height:36.717188px;}
.h11{height:37.520508px;}
.ha{height:39.313477px;}
.h4{height:39.339844px;}
.h12{height:40.031250px;}
.h2{height:41.689453px;}
.h17{height:42.000000px;}
.h9{height:43.720034px;}
.h10{height:45.035156px;}
.h15{height:45.120000px;}
.h1f{height:45.826172px;}
.he{height:45.858398px;}
.hf{height:48.796875px;}
.hb{height:50.039062px;}
.h6{height:52.453125px;}
.hc{height:53.027344px;}
.h14{height:54.144000px;}
.h5{height:55.042969px;}
.h20{height:56.888672px;}
.hd{height:56.929688px;}
.h19{height:70.875000px;}
.h8{height:73.195312px;}
.h1d{height:91.468256px;}
.h1c{height:91.520508px;}
.h13{height:99.035156px;}
.h3{height:112.810262px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:128.209500px;}
.x15{left:129.949650px;}
.x37{left:157.322850px;}
.x10{left:170.078700px;}
.xd{left:191.338650px;}
.xb{left:197.862750px;}
.xe{left:199.842450px;}
.x1a{left:212.598600px;}
.xf{left:216.850350px;}
.x9{left:225.855900px;}
.x36{left:227.373450px;}
.x1c{left:255.206100px;}
.x1d{left:257.749050px;}
.x29{left:261.124050px;}
.x13{left:268.605900px;}
.x12{left:280.559100px;}
.x17{left:293.869650px;}
.x18{left:304.410900px;}
.x16{left:320.262150px;}
.x26{left:330.909450px;}
.x1e{left:332.036700px;}
.x30{left:335.411700px;}
.x2e{left:337.659450px;}
.x2f{left:341.034450px;}
.x14{left:345.150900px;}
.x33{left:370.419000px;}
.x19{left:377.676750px;}
.xc{left:401.225850px;}
.x27{left:407.444850px;}
.x1f{left:408.572100px;}
.x31{left:410.819850px;}
.x2a{left:414.194850px;}
.x11{left:416.293050px;}
.x32{left:438.956700px;}
.x1{left:442.706700px;}
.x1b{left:448.000800px;}
.x20{left:483.980250px;}
.x28{left:485.107500px;}
.x6{left:486.549000px;}
.x3{left:514.320300px;}
.x7{left:533.113500px;}
.x8{left:549.612750px;}
.x2c{left:560.515800px;}
.x22{left:561.642900px;}
.x21{left:563.890800px;}
.x2b{left:567.265800px;}
.x4{left:605.900100px;}
.x5{left:628.649850px;}
.x23{left:638.178300px;}
.x2d{left:643.801200px;}
.x34{left:647.113950px;}
.xa{left:688.305600px;}
.x35{left:709.224450px;}
.x25{left:714.713850px;}
.x24{left:716.961600px;}
@media print{
.v1{vertical-align:-19.200000pt;}
.v6{vertical-align:-16.000000pt;}
.v4{vertical-align:-14.400533pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:6.000000pt;}
.v3{vertical-align:14.400533pt;}
.v5{vertical-align:16.000000pt;}
.v8{vertical-align:17.600000pt;}
.v2{vertical-align:19.200000pt;}
.va{vertical-align:35.000000pt;}
.v7{vertical-align:48.000000pt;}
.ls3{letter-spacing:-16.018944pt;}
.ls2{letter-spacing:-6.007104pt;}
.ls1b{letter-spacing:-2.453333pt;}
.ls21{letter-spacing:-1.973333pt;}
.lsa{letter-spacing:-0.960000pt;}
.ls13{letter-spacing:-0.645333pt;}
.ls1e{letter-spacing:-0.586667pt;}
.ls1d{letter-spacing:-0.560000pt;}
.ls23{letter-spacing:-0.528000pt;}
.lsc{letter-spacing:-0.469333pt;}
.ls1f{letter-spacing:-0.410667pt;}
.lsd{letter-spacing:-0.352000pt;}
.ls7{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.293333pt;}
.ls1c{letter-spacing:-0.280000pt;}
.ls5{letter-spacing:-0.266667pt;}
.lse{letter-spacing:-0.234667pt;}
.ls6{letter-spacing:-0.213333pt;}
.ls10{letter-spacing:-0.176000pt;}
.ls11{letter-spacing:-0.117333pt;}
.ls4{letter-spacing:-0.106667pt;}
.lsb{letter-spacing:-0.058667pt;}
.ls18{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.006933pt;}
.ls17{letter-spacing:0.009067pt;}
.ls12{letter-spacing:0.500800pt;}
.ls20{letter-spacing:0.698133pt;}
.ls9{letter-spacing:1.544533pt;}
.ls22{letter-spacing:2.696533pt;}
.ls24{letter-spacing:8.481600pt;}
.ls1a{letter-spacing:13.973333pt;}
.ls16{letter-spacing:52.200000pt;}
.ls14{letter-spacing:74.720000pt;}
.ls15{letter-spacing:132.880000pt;}
.ls19{letter-spacing:180.266667pt;}
.ws43{word-spacing:-180.320000pt;}
.ws3{word-spacing:-58.666667pt;}
.ws18{word-spacing:-58.608000pt;}
.ws29{word-spacing:-58.549333pt;}
.ws28{word-spacing:-58.490667pt;}
.ws1b{word-spacing:-58.432000pt;}
.ws27{word-spacing:-58.373333pt;}
.ws1a{word-spacing:-58.314667pt;}
.ws47{word-spacing:-58.256000pt;}
.ws19{word-spacing:-58.197333pt;}
.ws88{word-spacing:-58.138667pt;}
.ws46{word-spacing:-58.080000pt;}
.ws3f{word-spacing:-58.021333pt;}
.ws8{word-spacing:-53.333333pt;}
.wsa{word-spacing:-53.120000pt;}
.ws9{word-spacing:-53.066667pt;}
.wsd{word-spacing:-53.013333pt;}
.ws8a{word-spacing:-49.338667pt;}
.ws30{word-spacing:-48.000000pt;}
.ws83{word-spacing:-47.344000pt;}
.ws98{word-spacing:-47.109333pt;}
.ws1c{word-spacing:-46.757333pt;}
.ws8d{word-spacing:-45.584000pt;}
.ws8c{word-spacing:-44.293333pt;}
.ws4f{word-spacing:-42.666667pt;}
.ws97{word-spacing:-41.418667pt;}
.ws0{word-spacing:-39.904357pt;}
.ws8f{word-spacing:-38.250667pt;}
.wse{word-spacing:-37.333333pt;}
.ws94{word-spacing:-32.698667pt;}
.ws95{word-spacing:-32.618667pt;}
.ws1{word-spacing:-25.029600pt;}
.ws89{word-spacing:-18.666667pt;}
.ws2{word-spacing:-15.017760pt;}
.ws1d{word-spacing:-14.666667pt;}
.ws8e{word-spacing:-14.608000pt;}
.ws96{word-spacing:-14.314667pt;}
.ws9c{word-spacing:-14.197333pt;}
.ws5{word-spacing:-13.344000pt;}
.ws6{word-spacing:-13.333333pt;}
.wsb{word-spacing:-13.008000pt;}
.ws4{word-spacing:-12.454400pt;}
.ws17{word-spacing:-12.384000pt;}
.ws4d{word-spacing:-12.000000pt;}
.ws3e{word-spacing:-10.266667pt;}
.wsc{word-spacing:-9.333333pt;}
.ws37{word-spacing:-8.400000pt;}
.ws12{word-spacing:-3.520000pt;}
.ws2b{word-spacing:-2.933333pt;}
.ws13{word-spacing:-2.688000pt;}
.ws14{word-spacing:-2.666667pt;}
.ws4c{word-spacing:-2.346667pt;}
.ws7f{word-spacing:-2.053333pt;}
.ws74{word-spacing:-1.872000pt;}
.ws15{word-spacing:-1.813333pt;}
.ws9b{word-spacing:-1.760000pt;}
.ws1f{word-spacing:-1.642667pt;}
.ws7b{word-spacing:-1.584000pt;}
.ws22{word-spacing:-1.408000pt;}
.ws2c{word-spacing:-1.290667pt;}
.ws11{word-spacing:-1.152000pt;}
.ws5e{word-spacing:-0.912000pt;}
.ws7d{word-spacing:-0.768000pt;}
.ws99{word-spacing:-0.704000pt;}
.ws16{word-spacing:-0.533333pt;}
.ws78{word-spacing:-0.480000pt;}
.ws80{word-spacing:-0.469333pt;}
.ws5f{word-spacing:-0.432000pt;}
.ws9d{word-spacing:-0.410667pt;}
.ws2f{word-spacing:-0.293333pt;}
.ws55{word-spacing:-0.240000pt;}
.ws20{word-spacing:-0.176000pt;}
.ws2e{word-spacing:-0.117333pt;}
.wsf{word-spacing:0.000000pt;}
.ws56{word-spacing:0.048000pt;}
.ws9a{word-spacing:0.058667pt;}
.ws90{word-spacing:0.117333pt;}
.ws25{word-spacing:0.234667pt;}
.ws76{word-spacing:0.240000pt;}
.ws48{word-spacing:0.280000pt;}
.ws4b{word-spacing:0.410667pt;}
.ws77{word-spacing:0.480000pt;}
.ws49{word-spacing:0.560000pt;}
.ws3d{word-spacing:0.720000pt;}
.ws7e{word-spacing:0.768000pt;}
.ws60{word-spacing:1.008000pt;}
.ws7a{word-spacing:1.349333pt;}
.ws54{word-spacing:1.440000pt;}
.ws7c{word-spacing:1.488000pt;}
.ws21{word-spacing:1.525333pt;}
.ws61{word-spacing:1.680000pt;}
.ws79{word-spacing:1.973333pt;}
.ws40{word-spacing:1.994667pt;}
.ws23{word-spacing:2.170667pt;}
.ws85{word-spacing:2.288000pt;}
.ws45{word-spacing:2.400000pt;}
.ws75{word-spacing:2.544000pt;}
.ws87{word-spacing:2.698667pt;}
.ws53{word-spacing:3.168000pt;}
.ws4a{word-spacing:3.344000pt;}
.ws82{word-spacing:3.696000pt;}
.ws91{word-spacing:4.106667pt;}
.ws2a{word-spacing:4.282667pt;}
.ws24{word-spacing:4.576000pt;}
.ws3c{word-spacing:4.810667pt;}
.ws2d{word-spacing:5.045333pt;}
.ws86{word-spacing:5.104000pt;}
.ws26{word-spacing:5.221333pt;}
.ws81{word-spacing:5.280000pt;}
.ws7{word-spacing:5.374933pt;}
.ws10{word-spacing:6.007104pt;}
.ws84{word-spacing:6.277333pt;}
.ws92{word-spacing:7.685333pt;}
.ws41{word-spacing:8.106667pt;}
.ws38{word-spacing:8.206933pt;}
.ws8b{word-spacing:9.328000pt;}
.ws42{word-spacing:14.293333pt;}
.ws3a{word-spacing:14.830933pt;}
.ws93{word-spacing:20.416000pt;}
.ws62{word-spacing:46.668800pt;}
.ws31{word-spacing:46.728000pt;}
.ws1e{word-spacing:49.802667pt;}
.ws36{word-spacing:58.546667pt;}
.ws35{word-spacing:61.234667pt;}
.ws6f{word-spacing:75.866667pt;}
.ws39{word-spacing:77.218667pt;}
.ws3b{word-spacing:79.858667pt;}
.ws72{word-spacing:80.808000pt;}
.ws71{word-spacing:84.223467pt;}
.ws64{word-spacing:87.866667pt;}
.ws50{word-spacing:98.528000pt;}
.ws6e{word-spacing:99.866667pt;}
.ws32{word-spacing:101.218667pt;}
.ws57{word-spacing:102.651200pt;}
.ws69{word-spacing:104.808000pt;}
.ws63{word-spacing:105.066667pt;}
.ws6c{word-spacing:106.800000pt;}
.ws6d{word-spacing:111.066667pt;}
.ws68{word-spacing:111.866667pt;}
.ws66{word-spacing:117.066667pt;}
.ws67{word-spacing:118.800000pt;}
.ws6b{word-spacing:123.066667pt;}
.ws70{word-spacing:128.808000pt;}
.ws5a{word-spacing:132.133867pt;}
.ws5b{word-spacing:132.134400pt;}
.ws6a{word-spacing:132.943467pt;}
.ws33{word-spacing:141.202667pt;}
.ws59{word-spacing:144.133867pt;}
.ws58{word-spacing:144.134400pt;}
.ws73{word-spacing:145.749333pt;}
.ws5d{word-spacing:156.133867pt;}
.ws5c{word-spacing:156.134400pt;}
.ws65{word-spacing:158.911467pt;}
.ws4e{word-spacing:225.241067pt;}
.ws51{word-spacing:268.881600pt;}
.ws52{word-spacing:383.505600pt;}
.ws34{word-spacing:534.814933pt;}
.ws44{word-spacing:1191.840000pt;}
._13{margin-left:-154.186667pt;}
._6{margin-left:-9.234667pt;}
._0{margin-left:-7.723311pt;}
._3{margin-left:-5.997166pt;}
._b{margin-left:-5.032533pt;}
._1{margin-left:-4.004736pt;}
._8{margin-left:-2.821333pt;}
._4{margin-left:-1.776000pt;}
._5{width:1.152000pt;}
._a{width:2.133333pt;}
._7{width:3.520000pt;}
._9{width:5.231403pt;}
._c{width:6.688000pt;}
._d{width:7.936000pt;}
._2b{width:8.907904pt;}
._2{width:10.011840pt;}
._2c{width:14.080000pt;}
._2d{width:16.309333pt;}
._e{width:49.802667pt;}
._22{width:97.644267pt;}
._21{width:99.991467pt;}
._20{width:101.189333pt;}
._1f{width:105.963733pt;}
._1e{width:107.278400pt;}
._25{width:123.866667pt;}
._27{width:136.666667pt;}
._28{width:140.808000pt;}
._17{width:146.528000pt;}
._23{width:147.866667pt;}
._1b{width:153.581867pt;}
._2a{width:154.800000pt;}
._26{width:157.749333pt;}
._1c{width:161.902933pt;}
._18{width:163.521600pt;}
._24{width:166.800000pt;}
._1a{width:180.889600pt;}
._19{width:201.004267pt;}
._14{width:246.533867pt;}
._29{width:283.567467pt;}
._16{width:321.861333pt;}
._15{width:348.849600pt;}
._12{width:380.206933pt;}
._f{width:424.148267pt;}
._10{width:440.062933pt;}
._1d{width:589.233067pt;}
._11{width:592.078933pt;}
.fs8{font-size:33.600000pt;}
.fs9{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fsc{font-size:41.066667pt;}
.fsb{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs7{font-size:96.000000pt;}
.fs2{font-size:100.118400pt;}
.fs1{font-size:128.723733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.227600pt;}
.y33{bottom:113.390933pt;}
.y63{bottom:114.057733pt;}
.y7a{bottom:116.650533pt;}
.y79{bottom:128.650533pt;}
.y32{bottom:129.390933pt;}
.y62{bottom:132.724400pt;}
.yb6{bottom:139.075867pt;}
.y78{bottom:140.650533pt;}
.y8d{bottom:142.354000pt;}
.y31{bottom:145.390933pt;}
.yb5{bottom:151.075867pt;}
.y61{bottom:151.391067pt;}
.y77{bottom:156.530000pt;}
.y30{bottom:161.390933pt;}
.yb4{bottom:163.075867pt;}
.y8c{bottom:165.792533pt;}
.y76{bottom:168.530000pt;}
.y60{bottom:170.057733pt;}
.y97{bottom:170.057867pt;}
.y2f{bottom:177.390933pt;}
.y75{bottom:180.530000pt;}
.y8b{bottom:181.671867pt;}
.yb3{bottom:186.514400pt;}
.y5f{bottom:188.724400pt;}
.y96{bottom:188.724533pt;}
.y2e{bottom:193.390933pt;}
.y74{bottom:196.409333pt;}
.y8a{bottom:197.551200pt;}
.yb2{bottom:198.514400pt;}
.y5e{bottom:207.391067pt;}
.y95{bottom:207.391200pt;}
.y73{bottom:208.409333pt;}
.y2d{bottom:209.390933pt;}
.yb1{bottom:210.514400pt;}
.y72{bottom:220.409333pt;}
.y89{bottom:220.627733pt;}
.y2c{bottom:225.390933pt;}
.y5d{bottom:226.057733pt;}
.y94{bottom:226.057867pt;}
.yae{bottom:233.315733pt;}
.yb0{bottom:233.509200pt;}
.y71{bottom:236.288667pt;}
.y2b{bottom:241.390933pt;}
.y88{bottom:244.066133pt;}
.y5c{bottom:244.724400pt;}
.y93{bottom:244.724533pt;}
.yad{bottom:245.315733pt;}
.yaf{bottom:245.509200pt;}
.y70{bottom:248.288667pt;}
.y2a{bottom:257.390933pt;}
.y6f{bottom:260.288667pt;}
.y5b{bottom:263.391067pt;}
.y92{bottom:263.391200pt;}
.y87{bottom:266.580133pt;}
.yaa{bottom:271.111067pt;}
.yac{bottom:271.304400pt;}
.y6e{bottom:276.168000pt;}
.y86{bottom:281.913467pt;}
.y5a{bottom:282.057733pt;}
.y91{bottom:282.057867pt;}
.ya9{bottom:283.111067pt;}
.yab{bottom:283.304400pt;}
.y6d{bottom:288.168000pt;}
.y29{bottom:289.390933pt;}
.y85{bottom:297.246800pt;}
.y6c{bottom:300.168000pt;}
.y59{bottom:300.724400pt;}
.y90{bottom:300.724533pt;}
.y28{bottom:305.390933pt;}
.ya7{bottom:308.906267pt;}
.ya8{bottom:309.099733pt;}
.y84{bottom:312.580133pt;}
.y6b{bottom:316.047467pt;}
.y58{bottom:319.391067pt;}
.y8f{bottom:319.391200pt;}
.ya6{bottom:320.906267pt;}
.y27{bottom:321.390933pt;}
.y83{bottom:327.913467pt;}
.y6a{bottom:331.926800pt;}
.y26{bottom:337.390933pt;}
.y57{bottom:338.057733pt;}
.y8e{bottom:338.057867pt;}
.y82{bottom:343.246800pt;}
.y69{bottom:343.926800pt;}
.ya5{bottom:344.344800pt;}
.y25{bottom:353.390933pt;}
.y68{bottom:355.926800pt;}
.y56{bottom:356.724400pt;}
.y81{bottom:358.580133pt;}
.ya4{bottom:359.299600pt;}
.y24{bottom:369.390933pt;}
.y55{bottom:375.391067pt;}
.y67{bottom:379.365200pt;}
.ya3{bottom:381.813600pt;}
.y23{bottom:385.390933pt;}
.y54{bottom:394.057733pt;}
.ya2{bottom:397.146933pt;}
.y22{bottom:401.390933pt;}
.y66{bottom:401.879200pt;}
.ya1{bottom:412.480267pt;}
.y53{bottom:412.724400pt;}
.y65{bottom:417.212533pt;}
.y21{bottom:417.390933pt;}
.ya0{bottom:427.813600pt;}
.y52{bottom:431.391067pt;}
.y20{bottom:433.390933pt;}
.y9f{bottom:443.146933pt;}
.yd2{bottom:449.329867pt;}
.y1f{bottom:449.390933pt;}
.y51{bottom:450.057733pt;}
.y9e{bottom:458.480267pt;}
.yd1{bottom:464.663200pt;}
.y1e{bottom:465.390933pt;}
.y50{bottom:468.724400pt;}
.yd0{bottom:479.996533pt;}
.y1d{bottom:481.390933pt;}
.y4f{bottom:487.391067pt;}
.ycf{bottom:495.329867pt;}
.y1c{bottom:497.390933pt;}
.y4e{bottom:506.057733pt;}
.yce{bottom:510.663200pt;}
.y1b{bottom:513.390933pt;}
.y4d{bottom:524.724400pt;}
.ycd{bottom:525.996533pt;}
.y1a{bottom:529.390933pt;}
.ycc{bottom:541.329867pt;}
.y4c{bottom:543.391067pt;}
.y19{bottom:545.390933pt;}
.ycb{bottom:556.663200pt;}
.y4b{bottom:562.057733pt;}
.y9d{bottom:564.281733pt;}
.y9c{bottom:579.615067pt;}
.y18{bottom:580.288533pt;}
.y4a{bottom:580.724400pt;}
.y9b{bottom:594.948400pt;}
.y17{bottom:596.288533pt;}
.y49{bottom:599.391067pt;}
.y9a{bottom:610.281733pt;}
.y16{bottom:612.288533pt;}
.y48{bottom:618.057733pt;}
.y99{bottom:625.615067pt;}
.y15{bottom:628.288533pt;}
.y47{bottom:636.724400pt;}
.y98{bottom:640.948400pt;}
.y14{bottom:644.288533pt;}
.y46{bottom:655.391067pt;}
.y13{bottom:660.288533pt;}
.y45{bottom:674.057733pt;}
.y12{bottom:676.288533pt;}
.yca{bottom:683.589733pt;}
.y44{bottom:692.724400pt;}
.yc9{bottom:695.589733pt;}
.y11{bottom:711.186133pt;}
.y43{bottom:711.391067pt;}
.yc8{bottom:718.713867pt;}
.y10{bottom:727.186133pt;}
.y42{bottom:730.057733pt;}
.yc7{bottom:737.611467pt;}
.yf{bottom:743.186133pt;}
.y41{bottom:748.724400pt;}
.yc6{bottom:756.509200pt;}
.y40{bottom:767.391067pt;}
.yc5{bottom:777.448533pt;}
.y3f{bottom:786.057733pt;}
.ye{bottom:793.202000pt;}
.yc4{bottom:800.886933pt;}
.y3e{bottom:804.724400pt;}
.yc3{bottom:807.621333pt;}
.yc2{bottom:819.621333pt;}
.yd{bottom:819.868667pt;}
.y3d{bottom:823.391067pt;}
.y3c{bottom:842.057733pt;}
.yc1{bottom:842.135200pt;}
.yc0{bottom:857.468533pt;}
.y3b{bottom:860.724400pt;}
.yb{bottom:865.432933pt;}
.yc{bottom:870.232933pt;}
.ybf{bottom:872.801867pt;}
.y3a{bottom:879.391067pt;}
.y9{bottom:884.099600pt;}
.ybe{bottom:888.135200pt;}
.ya{bottom:888.899600pt;}
.y39{bottom:898.057733pt;}
.ybd{bottom:903.468533pt;}
.y38{bottom:916.724400pt;}
.ybc{bottom:918.801867pt;}
.ybb{bottom:934.135200pt;}
.y37{bottom:935.391067pt;}
.yba{bottom:949.468533pt;}
.y36{bottom:954.057733pt;}
.y8{bottom:960.639200pt;}
.yb9{bottom:964.801867pt;}
.y64{bottom:972.724400pt;}
.y7{bottom:976.639200pt;}
.yb8{bottom:980.135200pt;}
.y7f{bottom:983.215467pt;}
.y7e{bottom:984.715467pt;}
.y7b{bottom:986.548800pt;}
.y7c{bottom:987.965467pt;}
.y35{bottom:991.391067pt;}
.y7d{bottom:991.965467pt;}
.y6{bottom:992.639200pt;}
.y80{bottom:994.545467pt;}
.yb7{bottom:995.468533pt;}
.y5{bottom:1008.639200pt;}
.y2{bottom:1016.151067pt;}
.y4{bottom:1034.864933pt;}
.y3{bottom:1050.864933pt;}
.y34{bottom:1057.090533pt;}
.h1a{height:27.800000pt;}
.h18{height:28.000000pt;}
.h1b{height:29.645833pt;}
.h16{height:30.080000pt;}
.h1e{height:32.531250pt;}
.h7{height:32.637500pt;}
.h11{height:33.351562pt;}
.ha{height:34.945312pt;}
.h4{height:34.968750pt;}
.h12{height:35.583333pt;}
.h2{height:37.057292pt;}
.h17{height:37.333333pt;}
.h9{height:38.862252pt;}
.h10{height:40.031250pt;}
.h15{height:40.106667pt;}
.h1f{height:40.734375pt;}
.he{height:40.763021pt;}
.hf{height:43.375000pt;}
.hb{height:44.479167pt;}
.h6{height:46.625000pt;}
.hc{height:47.135417pt;}
.h14{height:48.128000pt;}
.h5{height:48.927083pt;}
.h20{height:50.567708pt;}
.hd{height:50.604167pt;}
.h19{height:63.000000pt;}
.h8{height:65.062500pt;}
.h1d{height:81.305117pt;}
.h1c{height:81.351562pt;}
.h13{height:88.031250pt;}
.h3{height:100.275788pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.964000pt;}
.x15{left:115.510800pt;}
.x37{left:139.842533pt;}
.x10{left:151.181067pt;}
.xd{left:170.078800pt;}
.xb{left:175.878000pt;}
.xe{left:177.637733pt;}
.x1a{left:188.976533pt;}
.xf{left:192.755867pt;}
.x9{left:200.760800pt;}
.x36{left:202.109733pt;}
.x1c{left:226.849867pt;}
.x1d{left:229.110267pt;}
.x29{left:232.110267pt;}
.x13{left:238.760800pt;}
.x12{left:249.385867pt;}
.x17{left:261.217467pt;}
.x18{left:270.587467pt;}
.x16{left:284.677467pt;}
.x26{left:294.141733pt;}
.x1e{left:295.143733pt;}
.x30{left:298.143733pt;}
.x2e{left:300.141733pt;}
.x2f{left:303.141733pt;}
.x14{left:306.800800pt;}
.x33{left:329.261333pt;}
.x19{left:335.712667pt;}
.xc{left:356.645200pt;}
.x27{left:362.173200pt;}
.x1f{left:363.175200pt;}
.x31{left:365.173200pt;}
.x2a{left:368.173200pt;}
.x11{left:370.038267pt;}
.x32{left:390.183733pt;}
.x1{left:393.517067pt;}
.x1b{left:398.222933pt;}
.x20{left:430.204667pt;}
.x28{left:431.206667pt;}
.x6{left:432.488000pt;}
.x3{left:457.173600pt;}
.x7{left:473.878667pt;}
.x8{left:488.544667pt;}
.x2c{left:498.236267pt;}
.x22{left:499.238133pt;}
.x21{left:501.236267pt;}
.x2b{left:504.236267pt;}
.x4{left:538.577867pt;}
.x5{left:558.799867pt;}
.x23{left:567.269600pt;}
.x2d{left:572.267733pt;}
.x34{left:575.212400pt;}
.xa{left:611.827200pt;}
.x35{left:630.421733pt;}
.x25{left:635.301200pt;}
.x24{left:637.299200pt;}
}




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