
    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_4204d981c259136cf3dc86da.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9eb4c8c3df9b6d2da18cc8fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_683d0acab3145c14dc4912f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.168000;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_a375ef7e78f87a46c9cc25e9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.166000;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_dad8e8ea26ec2ca9093b8364.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_48c97b0904ce64576cbe50d1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.169000;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_dad8e8ea26ec2ca9093b8364.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.698000;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_c5f905a41652bb4d7c79fb67.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.170000;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_4d0eb45cf33f1d8a9e41ffe6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.200000;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);}
.v0{vertical-align:0.000000px;}
.ls3d{letter-spacing:-3.120000px;}
.ls17{letter-spacing:-2.214000px;}
.ls3a{letter-spacing:-2.052000px;}
.lsb{letter-spacing:-1.444800px;}
.ls24{letter-spacing:-1.080000px;}
.ls39{letter-spacing:-0.948600px;}
.ls27{letter-spacing:-0.900000px;}
.ls25{letter-spacing:-0.840000px;}
.lsf{letter-spacing:-0.600000px;}
.ls38{letter-spacing:-0.510000px;}
.ls35{letter-spacing:-0.420000px;}
.ls7{letter-spacing:-0.408000px;}
.ls31{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.357000px;}
.lsa{letter-spacing:-0.306000px;}
.ls1c{letter-spacing:-0.300000px;}
.ls9{letter-spacing:-0.255000px;}
.ls2b{letter-spacing:-0.240000px;}
.ls26{letter-spacing:-0.180000px;}
.ls32{letter-spacing:-0.120000px;}
.lsd{letter-spacing:-0.102000px;}
.ls19{letter-spacing:-0.060000px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.022200px;}
.ls14{letter-spacing:0.060000px;}
.ls2c{letter-spacing:0.090000px;}
.ls2{letter-spacing:0.102000px;}
.ls3{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.153000px;}
.ls12{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.204000px;}
.ls29{letter-spacing:0.210000px;}
.ls13{letter-spacing:0.240000px;}
.ls2a{letter-spacing:0.270000px;}
.ls11{letter-spacing:0.300000px;}
.lsc{letter-spacing:0.309600px;}
.ls20{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.390000px;}
.ls1e{letter-spacing:0.420000px;}
.ls28{letter-spacing:0.480000px;}
.ls1d{letter-spacing:0.540000px;}
.ls2f{letter-spacing:0.570000px;}
.ls1f{letter-spacing:0.600000px;}
.ls33{letter-spacing:0.630000px;}
.ls21{letter-spacing:0.660000px;}
.ls36{letter-spacing:0.690000px;}
.ls2d{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.732600px;}
.ls3b{letter-spacing:0.780000px;}
.ls30{letter-spacing:0.840000px;}
.ls15{letter-spacing:0.900000px;}
.lse{letter-spacing:0.928800px;}
.ls3c{letter-spacing:0.960000px;}
.ls18{letter-spacing:1.080000px;}
.ls2e{letter-spacing:1.140000px;}
.ls1a{letter-spacing:1.200000px;}
.ls1b{letter-spacing:1.260000px;}
.ls37{letter-spacing:1.275000px;}
.ls3e{letter-spacing:1.341600px;}
.ls23{letter-spacing:1.860000px;}
.ls22{letter-spacing:1.944000px;}
.ls6{letter-spacing:2.373600px;}
.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;}
}
.ws1b{word-spacing:-15.480000px;}
.ws0{word-spacing:-12.693600px;}
.ws1c{word-spacing:-12.540000px;}
.ws9a{word-spacing:-11.550600px;}
.ws3{word-spacing:-11.400000px;}
.wsa4{word-spacing:-11.340000px;}
.wsb0{word-spacing:-11.094000px;}
.ws1{word-spacing:-10.965000px;}
.wsa0{word-spacing:-10.746000px;}
.ws2{word-spacing:-10.629600px;}
.ws99{word-spacing:-10.602000px;}
.ws1a{word-spacing:-10.584000px;}
.wsaa{word-spacing:-8.880000px;}
.ws36{word-spacing:-3.240000px;}
.ws73{word-spacing:-3.180000px;}
.ws6b{word-spacing:-2.400000px;}
.ws2d{word-spacing:-2.280000px;}
.ws38{word-spacing:-2.100000px;}
.ws84{word-spacing:-2.040000px;}
.ws7b{word-spacing:-1.980000px;}
.ws33{word-spacing:-1.944000px;}
.ws1f{word-spacing:-1.920000px;}
.ws29{word-spacing:-1.860000px;}
.ws2a{word-spacing:-1.800000px;}
.ws5e{word-spacing:-1.680000px;}
.ws7{word-spacing:-1.632000px;}
.wsae{word-spacing:-1.620000px;}
.ws86{word-spacing:-1.560000px;}
.ws76{word-spacing:-1.500000px;}
.ws35{word-spacing:-1.440000px;}
.ws5f{word-spacing:-1.380000px;}
.wsb2{word-spacing:-1.341600px;}
.ws68{word-spacing:-1.320000px;}
.ws44{word-spacing:-1.260000px;}
.ws25{word-spacing:-1.200000px;}
.ws19{word-spacing:-1.140000px;}
.ws5d{word-spacing:-1.080000px;}
.ws4f{word-spacing:-1.020000px;}
.wsc{word-spacing:-0.969000px;}
.ws1e{word-spacing:-0.960000px;}
.ws17{word-spacing:-0.928800px;}
.ws5c{word-spacing:-0.900000px;}
.ws7c{word-spacing:-0.840000px;}
.ws92{word-spacing:-0.781200px;}
.ws75{word-spacing:-0.780000px;}
.ws4{word-spacing:-0.754800px;}
.wsa6{word-spacing:-0.720000px;}
.ws4e{word-spacing:-0.660000px;}
.ws13{word-spacing:-0.612000px;}
.ws74{word-spacing:-0.600000px;}
.ws12{word-spacing:-0.561000px;}
.ws2c{word-spacing:-0.540000px;}
.ws66{word-spacing:-0.480000px;}
.ws90{word-spacing:-0.420000px;}
.ws59{word-spacing:-0.360000px;}
.wsa{word-spacing:-0.306000px;}
.wsac{word-spacing:-0.300000px;}
.wsb{word-spacing:-0.255000px;}
.ws23{word-spacing:-0.240000px;}
.ws91{word-spacing:-0.223200px;}
.wsb3{word-spacing:-0.206400px;}
.wsd{word-spacing:-0.204000px;}
.ws4c{word-spacing:-0.180000px;}
.ws10{word-spacing:-0.153000px;}
.ws2f{word-spacing:-0.120000px;}
.ws7a{word-spacing:-0.060000px;}
.ws5{word-spacing:-0.044400px;}
.ws6{word-spacing:0.000000px;}
.ws70{word-spacing:0.060000px;}
.ws8a{word-spacing:0.120000px;}
.ws21{word-spacing:0.180000px;}
.ws22{word-spacing:0.240000px;}
.ws32{word-spacing:0.300000px;}
.ws56{word-spacing:0.360000px;}
.ws9{word-spacing:0.408000px;}
.ws89{word-spacing:0.420000px;}
.ws61{word-spacing:0.480000px;}
.ws30{word-spacing:0.540000px;}
.ws6f{word-spacing:0.600000px;}
.ws87{word-spacing:0.660000px;}
.ws14{word-spacing:0.714000px;}
.ws4a{word-spacing:0.720000px;}
.ws8{word-spacing:0.765000px;}
.ws58{word-spacing:0.780000px;}
.ws71{word-spacing:0.840000px;}
.ws24{word-spacing:0.960000px;}
.ws67{word-spacing:1.020000px;}
.ws3b{word-spacing:1.080000px;}
.ws51{word-spacing:1.140000px;}
.ws63{word-spacing:1.200000px;}
.ws15{word-spacing:1.224000px;}
.ws57{word-spacing:1.260000px;}
.ws6a{word-spacing:1.320000px;}
.ws7d{word-spacing:1.380000px;}
.ws82{word-spacing:1.440000px;}
.wse{word-spacing:1.444800px;}
.ws78{word-spacing:1.500000px;}
.ws16{word-spacing:1.530000px;}
.ws88{word-spacing:1.560000px;}
.ws3d{word-spacing:1.620000px;}
.ws11{word-spacing:1.632000px;}
.ws4d{word-spacing:1.680000px;}
.wsf{word-spacing:1.683000px;}
.ws2e{word-spacing:1.740000px;}
.ws28{word-spacing:1.800000px;}
.ws26{word-spacing:1.860000px;}
.ws18{word-spacing:1.920000px;}
.ws2b{word-spacing:1.980000px;}
.ws4b{word-spacing:2.040000px;}
.ws20{word-spacing:2.100000px;}
.ws7e{word-spacing:2.160000px;}
.ws93{word-spacing:2.220000px;}
.ws60{word-spacing:2.280000px;}
.wsa2{word-spacing:2.340000px;}
.ws31{word-spacing:2.400000px;}
.ws3a{word-spacing:2.460000px;}
.ws43{word-spacing:2.520000px;}
.ws42{word-spacing:2.580000px;}
.ws81{word-spacing:2.640000px;}
.ws53{word-spacing:2.700000px;}
.ws52{word-spacing:2.760000px;}
.ws47{word-spacing:2.820000px;}
.wsa9{word-spacing:2.880000px;}
.ws64{word-spacing:2.940000px;}
.ws45{word-spacing:3.000000px;}
.ws37{word-spacing:3.060000px;}
.ws80{word-spacing:3.180000px;}
.ws40{word-spacing:3.240000px;}
.ws54{word-spacing:3.300000px;}
.ws50{word-spacing:3.360000px;}
.ws3c{word-spacing:3.420000px;}
.ws3f{word-spacing:3.480000px;}
.ws5a{word-spacing:3.660000px;}
.ws55{word-spacing:3.720000px;}
.wsad{word-spacing:3.780000px;}
.wsa8{word-spacing:3.840000px;}
.ws69{word-spacing:3.900000px;}
.ws49{word-spacing:4.020000px;}
.ws6c{word-spacing:4.140000px;}
.ws41{word-spacing:4.320000px;}
.ws65{word-spacing:4.380000px;}
.ws62{word-spacing:4.440000px;}
.ws39{word-spacing:4.500000px;}
.ws94{word-spacing:4.620000px;}
.ws6e{word-spacing:4.740000px;}
.ws3e{word-spacing:4.860000px;}
.ws72{word-spacing:4.980000px;}
.ws79{word-spacing:5.100000px;}
.ws46{word-spacing:5.460000px;}
.ws83{word-spacing:5.580000px;}
.wsa3{word-spacing:5.700000px;}
.wsa7{word-spacing:6.120000px;}
.ws27{word-spacing:7.380000px;}
.wsaf{word-spacing:7.980000px;}
.ws95{word-spacing:53.121600px;}
.ws96{word-spacing:83.365200px;}
.ws9c{word-spacing:89.280000px;}
.ws9e{word-spacing:90.507600px;}
.ws8b{word-spacing:94.581000px;}
.ws97{word-spacing:114.055200px;}
.ws9b{word-spacing:121.197600px;}
.ws8e{word-spacing:124.824600px;}
.ws98{word-spacing:144.745200px;}
.ws8c{word-spacing:155.514600px;}
.ws8d{word-spacing:156.742200px;}
.ws9d{word-spacing:184.586400px;}
.wsb4{word-spacing:1234.926000px;}
.ws6d{word-spacing:1235.412000px;}
.wsa1{word-spacing:1235.520000px;}
.ws1d{word-spacing:1235.736000px;}
.ws8f{word-spacing:1235.790000px;}
.ws7f{word-spacing:1235.898000px;}
.wsab{word-spacing:1237.086000px;}
.ws48{word-spacing:1237.842000px;}
.wsb1{word-spacing:1534.302000px;}
.ws5b{word-spacing:1535.166000px;}
.ws77{word-spacing:1535.382000px;}
.ws85{word-spacing:1535.922000px;}
.ws9f{word-spacing:1536.624000px;}
.ws34{word-spacing:1537.488000px;}
.wsa5{word-spacing:1538.352000px;}
._f{margin-left:-1238.094600px;}
._7{margin-left:-1236.459480px;}
._6{margin-left:-1235.022720px;}
._10{margin-left:-14.880240px;}
._b{margin-left:-8.258400px;}
._9{margin-left:-7.104000px;}
._2{margin-left:-5.270400px;}
._8{margin-left:-3.911520px;}
._1{margin-left:-2.889600px;}
._0{margin-left:-1.440000px;}
._3{width:1.109400px;}
._5{width:2.254920px;}
._4{width:3.895800px;}
._e{width:4.938000px;}
._d{width:6.900000px;}
._14{width:8.299800px;}
._a{width:9.900000px;}
._13{width:11.040000px;}
._12{width:13.080000px;}
._11{width:14.700000px;}
._c{width:16.380000px;}
._28{width:73.153800px;}
._33{width:87.382800px;}
._3b{width:89.503200px;}
._1f{width:91.679400px;}
._2a{width:96.589800px;}
._2e{width:97.817400px;}
._3f{width:102.504600px;}
._15{width:114.613200px;}
._29{width:126.052200px;}
._2c{width:127.279800px;}
._32{width:131.610000px;}
._1c{width:136.821600px;}
._1e{width:138.049200px;}
._40{width:153.896400px;}
._47{width:156.351600px;}
._31{width:157.969800px;}
._42{width:165.558600px;}
._43{width:166.786200px;}
._23{width:168.739200px;}
._30{width:172.143000px;}
._3c{width:173.538000px;}
._44{width:174.988800px;}
._3d{width:177.946200px;}
._36{width:184.921200px;}
._48{width:196.248600px;}
._3e{width:197.476200px;}
._49{width:204.172200px;}
._45{width:207.687600px;}
._39{width:208.971000px;}
._41{width:210.198600px;}
._46{width:211.593600px;}
._3a{width:215.689800px;}
._37{width:216.917400px;}
._17{width:224.144400px;}
._38{width:228.166200px;}
._34{width:244.705200px;}
._20{width:252.918600px;}
._35{width:263.599200px;}
._22{width:270.484800px;}
._2b{width:289.155600px;}
._24{width:295.148400px;}
._2f{width:355.892400px;}
._1b{width:359.959320px;}
._1d{width:429.325200px;}
._2d{width:453.587400px;}
._21{width:464.724600px;}
._16{width:541.263600px;}
._18{width:688.150800px;}
._25{width:819.797400px;}
._19{width:854.130600px;}
._27{width:918.276600px;}
._26{width:1395.646800px;}
._1a{width:1495.641600px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:22.200000px;}
.fs3{font-size:51.000000px;}
.fs2{font-size:51.600000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:55.800000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y71{bottom:64.842300px;}
.y25{bottom:64.842450px;}
.yce{bottom:68.312850px;}
.yb0{bottom:68.377350px;}
.y70{bottom:83.442300px;}
.y24{bottom:83.442450px;}
.ycd{bottom:85.714950px;}
.yaf{bottom:85.779450px;}
.y6f{bottom:102.042300px;}
.y4c{bottom:102.042450px;}
.ycc{bottom:103.117050px;}
.yae{bottom:103.181550px;}
.ycb{bottom:120.519150px;}
.yad{bottom:120.583650px;}
.y23{bottom:120.642450px;}
.yca{bottom:137.921250px;}
.yac{bottom:137.985750px;}
.y6e{bottom:139.242300px;}
.y4b{bottom:139.242450px;}
.yc9{bottom:155.323350px;}
.yab{bottom:155.387850px;}
.y4a{bottom:157.842450px;}
.yc8{bottom:172.725450px;}
.yaa{bottom:172.789950px;}
.y6d{bottom:176.442300px;}
.y49{bottom:176.442450px;}
.y22{bottom:184.091700px;}
.yc7{bottom:190.127550px;}
.ya9{bottom:190.192050px;}
.y6c{bottom:195.042300px;}
.y48{bottom:195.042450px;}
.y21{bottom:201.342450px;}
.yc6{bottom:207.529650px;}
.ya8{bottom:207.594150px;}
.y6b{bottom:213.642300px;}
.y47{bottom:213.642450px;}
.y20{bottom:218.592450px;}
.yc5{bottom:224.931750px;}
.ya7{bottom:224.996250px;}
.y6a{bottom:232.242300px;}
.y46{bottom:232.242450px;}
.yc4{bottom:242.333850px;}
.ya6{bottom:242.398350px;}
.y69{bottom:250.842300px;}
.y53{bottom:250.842450px;}
.y1f{bottom:253.384200px;}
.yc3{bottom:259.735950px;}
.ya5{bottom:259.800450px;}
.y91{bottom:267.910200px;}
.y68{bottom:269.442300px;}
.y45{bottom:269.442450px;}
.y1e{bottom:270.634950px;}
.yc2{bottom:277.138050px;}
.ya4{bottom:277.202550px;}
.y90{bottom:285.160950px;}
.y1d{bottom:287.885700px;}
.y67{bottom:288.042300px;}
.y44{bottom:288.042450px;}
.yc1{bottom:294.540150px;}
.ya3{bottom:294.604650px;}
.y8f{bottom:302.411700px;}
.y1c{bottom:305.136450px;}
.y66{bottom:306.642300px;}
.y43{bottom:306.642450px;}
.yc0{bottom:311.942250px;}
.ya2{bottom:312.006750px;}
.y1b{bottom:322.387200px;}
.y65{bottom:325.242300px;}
.y42{bottom:325.242450px;}
.y8e{bottom:327.606750px;}
.ybf{bottom:329.344350px;}
.ya1{bottom:329.408850px;}
.y1a{bottom:339.637950px;}
.y52{bottom:343.842450px;}
.y8d{bottom:346.578750px;}
.ybe{bottom:346.746450px;}
.ya0{bottom:346.810950px;}
.y19{bottom:356.888700px;}
.y41{bottom:362.442450px;}
.ybd{bottom:364.148550px;}
.y9f{bottom:364.213050px;}
.y8c{bottom:365.550750px;}
.y18{bottom:374.139450px;}
.y64{bottom:377.401350px;}
.y40{bottom:381.042450px;}
.ybc{bottom:381.550650px;}
.y9e{bottom:381.615150px;}
.y8b{bottom:384.522750px;}
.y17{bottom:391.390200px;}
.y63{bottom:394.652100px;}
.ybb{bottom:398.952750px;}
.y9d{bottom:399.017250px;}
.y3f{bottom:399.642450px;}
.y8a{bottom:403.494750px;}
.y16{bottom:408.640950px;}
.y62{bottom:411.902850px;}
.yba{bottom:416.354850px;}
.y9c{bottom:416.419350px;}
.y3e{bottom:418.242450px;}
.y89{bottom:422.466750px;}
.y15{bottom:425.891700px;}
.yb9{bottom:433.756950px;}
.y9b{bottom:433.821450px;}
.y3d{bottom:436.842450px;}
.y61{bottom:437.109000px;}
.y88{bottom:441.438750px;}
.y14{bottom:443.142450px;}
.yb8{bottom:451.159050px;}
.y9a{bottom:451.223550px;}
.y3c{bottom:455.442450px;}
.y60{bottom:456.081000px;}
.y13{bottom:460.392450px;}
.y87{bottom:460.410750px;}
.yb7{bottom:468.561150px;}
.y99{bottom:468.625650px;}
.y3b{bottom:474.042450px;}
.y5f{bottom:475.053000px;}
.y86{bottom:479.382750px;}
.yb6{bottom:485.963250px;}
.y98{bottom:486.027750px;}
.y3a{bottom:492.642450px;}
.y5e{bottom:494.025000px;}
.y12{bottom:495.191700px;}
.y85{bottom:498.354750px;}
.yb5{bottom:503.365350px;}
.y97{bottom:503.429850px;}
.y39{bottom:511.242450px;}
.y11{bottom:512.442450px;}
.y5d{bottom:512.997000px;}
.y84{bottom:517.326750px;}
.yb4{bottom:520.767450px;}
.y96{bottom:520.831950px;}
.y10{bottom:529.692450px;}
.y51{bottom:529.842450px;}
.y5c{bottom:531.969000px;}
.y83{bottom:536.298750px;}
.yb3{bottom:538.169550px;}
.y95{bottom:538.234050px;}
.y38{bottom:548.442450px;}
.y5b{bottom:550.941000px;}
.y82{bottom:555.270750px;}
.yb2{bottom:555.571650px;}
.y94{bottom:555.636150px;}
.yf{bottom:564.484950px;}
.y50{bottom:567.042450px;}
.y5a{bottom:569.913000px;}
.yb1{bottom:572.973750px;}
.y93{bottom:573.038250px;}
.y81{bottom:574.242750px;}
.ye{bottom:581.735700px;}
.y37{bottom:585.642450px;}
.y59{bottom:588.885000px;}
.y80{bottom:593.214750px;}
.yd{bottom:598.986450px;}
.y36{bottom:604.242450px;}
.y92{bottom:607.842450px;}
.y58{bottom:607.857000px;}
.yf2{bottom:608.623800px;}
.ye0{bottom:608.662500px;}
.y7f{bottom:612.186750px;}
.yc{bottom:616.237200px;}
.y35{bottom:622.842450px;}
.yf1{bottom:626.025900px;}
.ydf{bottom:626.064600px;}
.y57{bottom:626.829000px;}
.y7e{bottom:631.158750px;}
.yb{bottom:633.487950px;}
.y34{bottom:641.442450px;}
.yf0{bottom:643.428000px;}
.yde{bottom:643.466700px;}
.y56{bottom:645.801000px;}
.y7d{bottom:650.116800px;}
.ya{bottom:650.738700px;}
.y33{bottom:660.042450px;}
.yef{bottom:660.830100px;}
.ydd{bottom:660.868800px;}
.y55{bottom:664.773000px;}
.y7b{bottom:666.619650px;}
.y9{bottom:667.989450px;}
.yee{bottom:678.232200px;}
.ydc{bottom:678.270900px;}
.y4f{bottom:678.642450px;}
.y7c{bottom:683.122500px;}
.y54{bottom:683.745000px;}
.y8{bottom:685.240200px;}
.yed{bottom:695.634300px;}
.ydb{bottom:695.673000px;}
.y32{bottom:697.242450px;}
.y7{bottom:702.490950px;}
.yec{bottom:713.036400px;}
.yda{bottom:713.075100px;}
.y4e{bottom:715.842450px;}
.y6{bottom:719.741700px;}
.yeb{bottom:730.438500px;}
.yd9{bottom:730.477200px;}
.y4d{bottom:734.442450px;}
.y5{bottom:736.992450px;}
.y7a{bottom:745.222200px;}
.yea{bottom:747.840600px;}
.yd8{bottom:747.879300px;}
.y31{bottom:753.042450px;}
.y4{bottom:754.242450px;}
.y79{bottom:762.472950px;}
.ye9{bottom:765.242700px;}
.yd7{bottom:765.281400px;}
.y30{bottom:771.642450px;}
.ye8{bottom:782.644800px;}
.yd6{bottom:782.683500px;}
.y78{bottom:787.734900px;}
.y2f{bottom:790.242450px;}
.ye7{bottom:800.046900px;}
.yd5{bottom:800.085600px;}
.y77{bottom:806.706900px;}
.y2e{bottom:808.842450px;}
.ye6{bottom:817.449000px;}
.yd4{bottom:817.487700px;}
.y3{bottom:818.445300px;}
.y76{bottom:825.678900px;}
.y2d{bottom:827.442450px;}
.ye5{bottom:834.851100px;}
.yd3{bottom:834.889800px;}
.y75{bottom:844.650900px;}
.y2c{bottom:846.042450px;}
.ye4{bottom:852.253200px;}
.yd2{bottom:852.291900px;}
.y27{bottom:857.391000px;}
.y74{bottom:863.608950px;}
.y2b{bottom:864.642450px;}
.y26{bottom:864.889050px;}
.y2{bottom:865.453200px;}
.ye3{bottom:869.655300px;}
.yd1{bottom:869.694000px;}
.y73{bottom:880.111800px;}
.y2a{bottom:883.242450px;}
.ye2{bottom:887.057400px;}
.yd0{bottom:887.096100px;}
.y1{bottom:895.453200px;}
.y72{bottom:899.083800px;}
.y29{bottom:901.842450px;}
.ye1{bottom:904.459500px;}
.ycf{bottom:904.498200px;}
.y28{bottom:955.942350px;}
.h8{height:15.295800px;}
.h5{height:46.104000px;}
.he{height:46.308000px;}
.hf{height:46.646400px;}
.h4{height:48.762000px;}
.hd{height:50.443200px;}
.hc{height:50.666400px;}
.h9{height:50.868000px;}
.hb{height:53.880000px;}
.h7{height:54.000000px;}
.ha{height:56.520000px;}
.h6{height:56.700000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x7{left:25.546350px;}
.x6{left:28.615500px;}
.x4{left:72.283500px;}
.x1{left:80.787450px;}
.x1a{left:85.041600px;}
.x5{left:93.538500px;}
.x8{left:102.057450px;}
.xd{left:129.654150px;}
.xc{left:135.959550px;}
.xf{left:201.803550px;}
.xe{left:204.398250px;}
.xa{left:211.439100px;}
.xb{left:214.619700px;}
.x9{left:229.265100px;}
.x11{left:271.223100px;}
.x12{left:277.430850px;}
.x10{left:283.285500px;}
.x13{left:352.537650px;}
.x14{left:355.997250px;}
.x18{left:361.917150px;}
.x1b{left:366.171300px;}
.x19{left:374.675250px;}
.x15{left:416.623950px;}
.x16{left:487.517850px;}
.x17{left:566.028450px;}
.x3{left:651.223500px;}
.x2{left:654.292650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3d{letter-spacing:-2.773333pt;}
.ls17{letter-spacing:-1.968000pt;}
.ls3a{letter-spacing:-1.824000pt;}
.lsb{letter-spacing:-1.284267pt;}
.ls24{letter-spacing:-0.960000pt;}
.ls39{letter-spacing:-0.843200pt;}
.ls27{letter-spacing:-0.800000pt;}
.ls25{letter-spacing:-0.746667pt;}
.lsf{letter-spacing:-0.533333pt;}
.ls38{letter-spacing:-0.453333pt;}
.ls35{letter-spacing:-0.373333pt;}
.ls7{letter-spacing:-0.362667pt;}
.ls31{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.317333pt;}
.lsa{letter-spacing:-0.272000pt;}
.ls1c{letter-spacing:-0.266667pt;}
.ls9{letter-spacing:-0.226667pt;}
.ls2b{letter-spacing:-0.213333pt;}
.ls26{letter-spacing:-0.160000pt;}
.ls32{letter-spacing:-0.106667pt;}
.lsd{letter-spacing:-0.090667pt;}
.ls19{letter-spacing:-0.053333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.019733pt;}
.ls14{letter-spacing:0.053333pt;}
.ls2c{letter-spacing:0.080000pt;}
.ls2{letter-spacing:0.090667pt;}
.ls3{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.136000pt;}
.ls12{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.181333pt;}
.ls29{letter-spacing:0.186667pt;}
.ls13{letter-spacing:0.213333pt;}
.ls2a{letter-spacing:0.240000pt;}
.ls11{letter-spacing:0.266667pt;}
.lsc{letter-spacing:0.275200pt;}
.ls20{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.346667pt;}
.ls1e{letter-spacing:0.373333pt;}
.ls28{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls2f{letter-spacing:0.506667pt;}
.ls1f{letter-spacing:0.533333pt;}
.ls33{letter-spacing:0.560000pt;}
.ls21{letter-spacing:0.586667pt;}
.ls36{letter-spacing:0.613333pt;}
.ls2d{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.651200pt;}
.ls3b{letter-spacing:0.693333pt;}
.ls30{letter-spacing:0.746667pt;}
.ls15{letter-spacing:0.800000pt;}
.lse{letter-spacing:0.825600pt;}
.ls3c{letter-spacing:0.853333pt;}
.ls18{letter-spacing:0.960000pt;}
.ls2e{letter-spacing:1.013333pt;}
.ls1a{letter-spacing:1.066667pt;}
.ls1b{letter-spacing:1.120000pt;}
.ls37{letter-spacing:1.133333pt;}
.ls3e{letter-spacing:1.192533pt;}
.ls23{letter-spacing:1.653333pt;}
.ls22{letter-spacing:1.728000pt;}
.ls6{letter-spacing:2.109867pt;}
.ws1b{word-spacing:-13.760000pt;}
.ws0{word-spacing:-11.283200pt;}
.ws1c{word-spacing:-11.146667pt;}
.ws9a{word-spacing:-10.267200pt;}
.ws3{word-spacing:-10.133333pt;}
.wsa4{word-spacing:-10.080000pt;}
.wsb0{word-spacing:-9.861333pt;}
.ws1{word-spacing:-9.746667pt;}
.wsa0{word-spacing:-9.552000pt;}
.ws2{word-spacing:-9.448533pt;}
.ws99{word-spacing:-9.424000pt;}
.ws1a{word-spacing:-9.408000pt;}
.wsaa{word-spacing:-7.893333pt;}
.ws36{word-spacing:-2.880000pt;}
.ws73{word-spacing:-2.826667pt;}
.ws6b{word-spacing:-2.133333pt;}
.ws2d{word-spacing:-2.026667pt;}
.ws38{word-spacing:-1.866667pt;}
.ws84{word-spacing:-1.813333pt;}
.ws7b{word-spacing:-1.760000pt;}
.ws33{word-spacing:-1.728000pt;}
.ws1f{word-spacing:-1.706667pt;}
.ws29{word-spacing:-1.653333pt;}
.ws2a{word-spacing:-1.600000pt;}
.ws5e{word-spacing:-1.493333pt;}
.ws7{word-spacing:-1.450667pt;}
.wsae{word-spacing:-1.440000pt;}
.ws86{word-spacing:-1.386667pt;}
.ws76{word-spacing:-1.333333pt;}
.ws35{word-spacing:-1.280000pt;}
.ws5f{word-spacing:-1.226667pt;}
.wsb2{word-spacing:-1.192533pt;}
.ws68{word-spacing:-1.173333pt;}
.ws44{word-spacing:-1.120000pt;}
.ws25{word-spacing:-1.066667pt;}
.ws19{word-spacing:-1.013333pt;}
.ws5d{word-spacing:-0.960000pt;}
.ws4f{word-spacing:-0.906667pt;}
.wsc{word-spacing:-0.861333pt;}
.ws1e{word-spacing:-0.853333pt;}
.ws17{word-spacing:-0.825600pt;}
.ws5c{word-spacing:-0.800000pt;}
.ws7c{word-spacing:-0.746667pt;}
.ws92{word-spacing:-0.694400pt;}
.ws75{word-spacing:-0.693333pt;}
.ws4{word-spacing:-0.670933pt;}
.wsa6{word-spacing:-0.640000pt;}
.ws4e{word-spacing:-0.586667pt;}
.ws13{word-spacing:-0.544000pt;}
.ws74{word-spacing:-0.533333pt;}
.ws12{word-spacing:-0.498667pt;}
.ws2c{word-spacing:-0.480000pt;}
.ws66{word-spacing:-0.426667pt;}
.ws90{word-spacing:-0.373333pt;}
.ws59{word-spacing:-0.320000pt;}
.wsa{word-spacing:-0.272000pt;}
.wsac{word-spacing:-0.266667pt;}
.wsb{word-spacing:-0.226667pt;}
.ws23{word-spacing:-0.213333pt;}
.ws91{word-spacing:-0.198400pt;}
.wsb3{word-spacing:-0.183467pt;}
.wsd{word-spacing:-0.181333pt;}
.ws4c{word-spacing:-0.160000pt;}
.ws10{word-spacing:-0.136000pt;}
.ws2f{word-spacing:-0.106667pt;}
.ws7a{word-spacing:-0.053333pt;}
.ws5{word-spacing:-0.039467pt;}
.ws6{word-spacing:0.000000pt;}
.ws70{word-spacing:0.053333pt;}
.ws8a{word-spacing:0.106667pt;}
.ws21{word-spacing:0.160000pt;}
.ws22{word-spacing:0.213333pt;}
.ws32{word-spacing:0.266667pt;}
.ws56{word-spacing:0.320000pt;}
.ws9{word-spacing:0.362667pt;}
.ws89{word-spacing:0.373333pt;}
.ws61{word-spacing:0.426667pt;}
.ws30{word-spacing:0.480000pt;}
.ws6f{word-spacing:0.533333pt;}
.ws87{word-spacing:0.586667pt;}
.ws14{word-spacing:0.634667pt;}
.ws4a{word-spacing:0.640000pt;}
.ws8{word-spacing:0.680000pt;}
.ws58{word-spacing:0.693333pt;}
.ws71{word-spacing:0.746667pt;}
.ws24{word-spacing:0.853333pt;}
.ws67{word-spacing:0.906667pt;}
.ws3b{word-spacing:0.960000pt;}
.ws51{word-spacing:1.013333pt;}
.ws63{word-spacing:1.066667pt;}
.ws15{word-spacing:1.088000pt;}
.ws57{word-spacing:1.120000pt;}
.ws6a{word-spacing:1.173333pt;}
.ws7d{word-spacing:1.226667pt;}
.ws82{word-spacing:1.280000pt;}
.wse{word-spacing:1.284267pt;}
.ws78{word-spacing:1.333333pt;}
.ws16{word-spacing:1.360000pt;}
.ws88{word-spacing:1.386667pt;}
.ws3d{word-spacing:1.440000pt;}
.ws11{word-spacing:1.450667pt;}
.ws4d{word-spacing:1.493333pt;}
.wsf{word-spacing:1.496000pt;}
.ws2e{word-spacing:1.546667pt;}
.ws28{word-spacing:1.600000pt;}
.ws26{word-spacing:1.653333pt;}
.ws18{word-spacing:1.706667pt;}
.ws2b{word-spacing:1.760000pt;}
.ws4b{word-spacing:1.813333pt;}
.ws20{word-spacing:1.866667pt;}
.ws7e{word-spacing:1.920000pt;}
.ws93{word-spacing:1.973333pt;}
.ws60{word-spacing:2.026667pt;}
.wsa2{word-spacing:2.080000pt;}
.ws31{word-spacing:2.133333pt;}
.ws3a{word-spacing:2.186667pt;}
.ws43{word-spacing:2.240000pt;}
.ws42{word-spacing:2.293333pt;}
.ws81{word-spacing:2.346667pt;}
.ws53{word-spacing:2.400000pt;}
.ws52{word-spacing:2.453333pt;}
.ws47{word-spacing:2.506667pt;}
.wsa9{word-spacing:2.560000pt;}
.ws64{word-spacing:2.613333pt;}
.ws45{word-spacing:2.666667pt;}
.ws37{word-spacing:2.720000pt;}
.ws80{word-spacing:2.826667pt;}
.ws40{word-spacing:2.880000pt;}
.ws54{word-spacing:2.933333pt;}
.ws50{word-spacing:2.986667pt;}
.ws3c{word-spacing:3.040000pt;}
.ws3f{word-spacing:3.093333pt;}
.ws5a{word-spacing:3.253333pt;}
.ws55{word-spacing:3.306667pt;}
.wsad{word-spacing:3.360000pt;}
.wsa8{word-spacing:3.413333pt;}
.ws69{word-spacing:3.466667pt;}
.ws49{word-spacing:3.573333pt;}
.ws6c{word-spacing:3.680000pt;}
.ws41{word-spacing:3.840000pt;}
.ws65{word-spacing:3.893333pt;}
.ws62{word-spacing:3.946667pt;}
.ws39{word-spacing:4.000000pt;}
.ws94{word-spacing:4.106667pt;}
.ws6e{word-spacing:4.213333pt;}
.ws3e{word-spacing:4.320000pt;}
.ws72{word-spacing:4.426667pt;}
.ws79{word-spacing:4.533333pt;}
.ws46{word-spacing:4.853333pt;}
.ws83{word-spacing:4.960000pt;}
.wsa3{word-spacing:5.066667pt;}
.wsa7{word-spacing:5.440000pt;}
.ws27{word-spacing:6.560000pt;}
.wsaf{word-spacing:7.093333pt;}
.ws95{word-spacing:47.219200pt;}
.ws96{word-spacing:74.102400pt;}
.ws9c{word-spacing:79.360000pt;}
.ws9e{word-spacing:80.451200pt;}
.ws8b{word-spacing:84.072000pt;}
.ws97{word-spacing:101.382400pt;}
.ws9b{word-spacing:107.731200pt;}
.ws8e{word-spacing:110.955200pt;}
.ws98{word-spacing:128.662400pt;}
.ws8c{word-spacing:138.235200pt;}
.ws8d{word-spacing:139.326400pt;}
.ws9d{word-spacing:164.076800pt;}
.wsb4{word-spacing:1097.712000pt;}
.ws6d{word-spacing:1098.144000pt;}
.wsa1{word-spacing:1098.240000pt;}
.ws1d{word-spacing:1098.432000pt;}
.ws8f{word-spacing:1098.480000pt;}
.ws7f{word-spacing:1098.576000pt;}
.wsab{word-spacing:1099.632000pt;}
.ws48{word-spacing:1100.304000pt;}
.wsb1{word-spacing:1363.824000pt;}
.ws5b{word-spacing:1364.592000pt;}
.ws77{word-spacing:1364.784000pt;}
.ws85{word-spacing:1365.264000pt;}
.ws9f{word-spacing:1365.888000pt;}
.ws34{word-spacing:1366.656000pt;}
.wsa5{word-spacing:1367.424000pt;}
._f{margin-left:-1100.528533pt;}
._7{margin-left:-1099.075093pt;}
._6{margin-left:-1097.797973pt;}
._10{margin-left:-13.226880pt;}
._b{margin-left:-7.340800pt;}
._9{margin-left:-6.314667pt;}
._2{margin-left:-4.684800pt;}
._8{margin-left:-3.476907pt;}
._1{margin-left:-2.568533pt;}
._0{margin-left:-1.280000pt;}
._3{width:0.986133pt;}
._5{width:2.004373pt;}
._4{width:3.462933pt;}
._e{width:4.389333pt;}
._d{width:6.133333pt;}
._14{width:7.377600pt;}
._a{width:8.800000pt;}
._13{width:9.813333pt;}
._12{width:11.626667pt;}
._11{width:13.066667pt;}
._c{width:14.560000pt;}
._28{width:65.025600pt;}
._33{width:77.673600pt;}
._3b{width:79.558400pt;}
._1f{width:81.492800pt;}
._2a{width:85.857600pt;}
._2e{width:86.948800pt;}
._3f{width:91.115200pt;}
._15{width:101.878400pt;}
._29{width:112.046400pt;}
._2c{width:113.137600pt;}
._32{width:116.986667pt;}
._1c{width:121.619200pt;}
._1e{width:122.710400pt;}
._40{width:136.796800pt;}
._47{width:138.979200pt;}
._31{width:140.417600pt;}
._42{width:147.163200pt;}
._43{width:148.254400pt;}
._23{width:149.990400pt;}
._30{width:153.016000pt;}
._3c{width:154.256000pt;}
._44{width:155.545600pt;}
._3d{width:158.174400pt;}
._36{width:164.374400pt;}
._48{width:174.443200pt;}
._3e{width:175.534400pt;}
._49{width:181.486400pt;}
._45{width:184.611200pt;}
._39{width:185.752000pt;}
._41{width:186.843200pt;}
._46{width:188.083200pt;}
._3a{width:191.724267pt;}
._37{width:192.815467pt;}
._17{width:199.239467pt;}
._38{width:202.814400pt;}
._34{width:217.515733pt;}
._20{width:224.816533pt;}
._35{width:234.310400pt;}
._22{width:240.430933pt;}
._2b{width:257.027200pt;}
._24{width:262.354133pt;}
._2f{width:316.348800pt;}
._1b{width:319.963840pt;}
._1d{width:381.622400pt;}
._2d{width:403.188800pt;}
._21{width:413.088533pt;}
._16{width:481.123200pt;}
._18{width:611.689600pt;}
._25{width:728.708800pt;}
._19{width:759.227200pt;}
._27{width:816.245867pt;}
._26{width:1240.574933pt;}
._1a{width:1329.459200pt;}
.fs5{font-size:19.733333pt;}
.fs3{font-size:45.333333pt;}
.fs2{font-size:45.866667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:49.600000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:57.637600pt;}
.y25{bottom:57.637733pt;}
.yce{bottom:60.722533pt;}
.yb0{bottom:60.779867pt;}
.y70{bottom:74.170933pt;}
.y24{bottom:74.171067pt;}
.ycd{bottom:76.191067pt;}
.yaf{bottom:76.248400pt;}
.y6f{bottom:90.704267pt;}
.y4c{bottom:90.704400pt;}
.ycc{bottom:91.659600pt;}
.yae{bottom:91.716933pt;}
.ycb{bottom:107.128133pt;}
.yad{bottom:107.185467pt;}
.y23{bottom:107.237733pt;}
.yca{bottom:122.596667pt;}
.yac{bottom:122.654000pt;}
.y6e{bottom:123.770933pt;}
.y4b{bottom:123.771067pt;}
.yc9{bottom:138.065200pt;}
.yab{bottom:138.122533pt;}
.y4a{bottom:140.304400pt;}
.yc8{bottom:153.533733pt;}
.yaa{bottom:153.591067pt;}
.y6d{bottom:156.837600pt;}
.y49{bottom:156.837733pt;}
.y22{bottom:163.637067pt;}
.yc7{bottom:169.002267pt;}
.ya9{bottom:169.059600pt;}
.y6c{bottom:173.370933pt;}
.y48{bottom:173.371067pt;}
.y21{bottom:178.971067pt;}
.yc6{bottom:184.470800pt;}
.ya8{bottom:184.528133pt;}
.y6b{bottom:189.904267pt;}
.y47{bottom:189.904400pt;}
.y20{bottom:194.304400pt;}
.yc5{bottom:199.939333pt;}
.ya7{bottom:199.996667pt;}
.y6a{bottom:206.437600pt;}
.y46{bottom:206.437733pt;}
.yc4{bottom:215.407867pt;}
.ya6{bottom:215.465200pt;}
.y69{bottom:222.970933pt;}
.y53{bottom:222.971067pt;}
.y1f{bottom:225.230400pt;}
.yc3{bottom:230.876400pt;}
.ya5{bottom:230.933733pt;}
.y91{bottom:238.142400pt;}
.y68{bottom:239.504267pt;}
.y45{bottom:239.504400pt;}
.y1e{bottom:240.564400pt;}
.yc2{bottom:246.344933pt;}
.ya4{bottom:246.402267pt;}
.y90{bottom:253.476400pt;}
.y1d{bottom:255.898400pt;}
.y67{bottom:256.037600pt;}
.y44{bottom:256.037733pt;}
.yc1{bottom:261.813467pt;}
.ya3{bottom:261.870800pt;}
.y8f{bottom:268.810400pt;}
.y1c{bottom:271.232400pt;}
.y66{bottom:272.570933pt;}
.y43{bottom:272.571067pt;}
.yc0{bottom:277.282000pt;}
.ya2{bottom:277.339333pt;}
.y1b{bottom:286.566400pt;}
.y65{bottom:289.104267pt;}
.y42{bottom:289.104400pt;}
.y8e{bottom:291.206000pt;}
.ybf{bottom:292.750533pt;}
.ya1{bottom:292.807867pt;}
.y1a{bottom:301.900400pt;}
.y52{bottom:305.637733pt;}
.y8d{bottom:308.070000pt;}
.ybe{bottom:308.219067pt;}
.ya0{bottom:308.276400pt;}
.y19{bottom:317.234400pt;}
.y41{bottom:322.171067pt;}
.ybd{bottom:323.687600pt;}
.y9f{bottom:323.744933pt;}
.y8c{bottom:324.934000pt;}
.y18{bottom:332.568400pt;}
.y64{bottom:335.467867pt;}
.y40{bottom:338.704400pt;}
.ybc{bottom:339.156133pt;}
.y9e{bottom:339.213467pt;}
.y8b{bottom:341.798000pt;}
.y17{bottom:347.902400pt;}
.y63{bottom:350.801867pt;}
.ybb{bottom:354.624667pt;}
.y9d{bottom:354.682000pt;}
.y3f{bottom:355.237733pt;}
.y8a{bottom:358.662000pt;}
.y16{bottom:363.236400pt;}
.y62{bottom:366.135867pt;}
.yba{bottom:370.093200pt;}
.y9c{bottom:370.150533pt;}
.y3e{bottom:371.771067pt;}
.y89{bottom:375.526000pt;}
.y15{bottom:378.570400pt;}
.yb9{bottom:385.561733pt;}
.y9b{bottom:385.619067pt;}
.y3d{bottom:388.304400pt;}
.y61{bottom:388.541333pt;}
.y88{bottom:392.390000pt;}
.y14{bottom:393.904400pt;}
.yb8{bottom:401.030267pt;}
.y9a{bottom:401.087600pt;}
.y3c{bottom:404.837733pt;}
.y60{bottom:405.405333pt;}
.y13{bottom:409.237733pt;}
.y87{bottom:409.254000pt;}
.yb7{bottom:416.498800pt;}
.y99{bottom:416.556133pt;}
.y3b{bottom:421.371067pt;}
.y5f{bottom:422.269333pt;}
.y86{bottom:426.118000pt;}
.yb6{bottom:431.967333pt;}
.y98{bottom:432.024667pt;}
.y3a{bottom:437.904400pt;}
.y5e{bottom:439.133333pt;}
.y12{bottom:440.170400pt;}
.y85{bottom:442.982000pt;}
.yb5{bottom:447.435867pt;}
.y97{bottom:447.493200pt;}
.y39{bottom:454.437733pt;}
.y11{bottom:455.504400pt;}
.y5d{bottom:455.997333pt;}
.y84{bottom:459.846000pt;}
.yb4{bottom:462.904400pt;}
.y96{bottom:462.961733pt;}
.y10{bottom:470.837733pt;}
.y51{bottom:470.971067pt;}
.y5c{bottom:472.861333pt;}
.y83{bottom:476.710000pt;}
.yb3{bottom:478.372933pt;}
.y95{bottom:478.430267pt;}
.y38{bottom:487.504400pt;}
.y5b{bottom:489.725333pt;}
.y82{bottom:493.574000pt;}
.yb2{bottom:493.841467pt;}
.y94{bottom:493.898800pt;}
.yf{bottom:501.764400pt;}
.y50{bottom:504.037733pt;}
.y5a{bottom:506.589333pt;}
.yb1{bottom:509.310000pt;}
.y93{bottom:509.367333pt;}
.y81{bottom:510.438000pt;}
.ye{bottom:517.098400pt;}
.y37{bottom:520.571067pt;}
.y59{bottom:523.453333pt;}
.y80{bottom:527.302000pt;}
.yd{bottom:532.432400pt;}
.y36{bottom:537.104400pt;}
.y92{bottom:540.304400pt;}
.y58{bottom:540.317333pt;}
.yf2{bottom:540.998933pt;}
.ye0{bottom:541.033333pt;}
.y7f{bottom:544.166000pt;}
.yc{bottom:547.766400pt;}
.y35{bottom:553.637733pt;}
.yf1{bottom:556.467467pt;}
.ydf{bottom:556.501867pt;}
.y57{bottom:557.181333pt;}
.y7e{bottom:561.030000pt;}
.yb{bottom:563.100400pt;}
.y34{bottom:570.171067pt;}
.yf0{bottom:571.936000pt;}
.yde{bottom:571.970400pt;}
.y56{bottom:574.045333pt;}
.y7d{bottom:577.881600pt;}
.ya{bottom:578.434400pt;}
.y33{bottom:586.704400pt;}
.yef{bottom:587.404533pt;}
.ydd{bottom:587.438933pt;}
.y55{bottom:590.909333pt;}
.y7b{bottom:592.550800pt;}
.y9{bottom:593.768400pt;}
.yee{bottom:602.873067pt;}
.ydc{bottom:602.907467pt;}
.y4f{bottom:603.237733pt;}
.y7c{bottom:607.220000pt;}
.y54{bottom:607.773333pt;}
.y8{bottom:609.102400pt;}
.yed{bottom:618.341600pt;}
.ydb{bottom:618.376000pt;}
.y32{bottom:619.771067pt;}
.y7{bottom:624.436400pt;}
.yec{bottom:633.810133pt;}
.yda{bottom:633.844533pt;}
.y4e{bottom:636.304400pt;}
.y6{bottom:639.770400pt;}
.yeb{bottom:649.278667pt;}
.yd9{bottom:649.313067pt;}
.y4d{bottom:652.837733pt;}
.y5{bottom:655.104400pt;}
.y7a{bottom:662.419733pt;}
.yea{bottom:664.747200pt;}
.yd8{bottom:664.781600pt;}
.y31{bottom:669.371067pt;}
.y4{bottom:670.437733pt;}
.y79{bottom:677.753733pt;}
.ye9{bottom:680.215733pt;}
.yd7{bottom:680.250133pt;}
.y30{bottom:685.904400pt;}
.ye8{bottom:695.684267pt;}
.yd6{bottom:695.718667pt;}
.y78{bottom:700.208800pt;}
.y2f{bottom:702.437733pt;}
.ye7{bottom:711.152800pt;}
.yd5{bottom:711.187200pt;}
.y77{bottom:717.072800pt;}
.y2e{bottom:718.971067pt;}
.ye6{bottom:726.621333pt;}
.yd4{bottom:726.655733pt;}
.y3{bottom:727.506933pt;}
.y76{bottom:733.936800pt;}
.y2d{bottom:735.504400pt;}
.ye5{bottom:742.089867pt;}
.yd3{bottom:742.124267pt;}
.y75{bottom:750.800800pt;}
.y2c{bottom:752.037733pt;}
.ye4{bottom:757.558400pt;}
.yd2{bottom:757.592800pt;}
.y27{bottom:762.125333pt;}
.y74{bottom:767.652400pt;}
.y2b{bottom:768.571067pt;}
.y26{bottom:768.790267pt;}
.y2{bottom:769.291733pt;}
.ye3{bottom:773.026933pt;}
.yd1{bottom:773.061333pt;}
.y73{bottom:782.321600pt;}
.y2a{bottom:785.104400pt;}
.ye2{bottom:788.495467pt;}
.yd0{bottom:788.529867pt;}
.y1{bottom:795.958400pt;}
.y72{bottom:799.185600pt;}
.y29{bottom:801.637733pt;}
.ye1{bottom:803.964000pt;}
.ycf{bottom:803.998400pt;}
.y28{bottom:849.726533pt;}
.h8{height:13.596267pt;}
.h5{height:40.981333pt;}
.he{height:41.162667pt;}
.hf{height:41.463467pt;}
.h4{height:43.344000pt;}
.hd{height:44.838400pt;}
.hc{height:45.036800pt;}
.h9{height:45.216000pt;}
.hb{height:47.893333pt;}
.h7{height:48.000000pt;}
.ha{height:50.240000pt;}
.h6{height:50.400000pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x7{left:22.707867pt;}
.x6{left:25.436000pt;}
.x4{left:64.252000pt;}
.x1{left:71.811067pt;}
.x1a{left:75.592533pt;}
.x5{left:83.145333pt;}
.x8{left:90.717733pt;}
.xd{left:115.248133pt;}
.xc{left:120.852933pt;}
.xf{left:179.380933pt;}
.xe{left:181.687333pt;}
.xa{left:187.945867pt;}
.xb{left:190.773067pt;}
.x9{left:203.791200pt;}
.x11{left:241.087200pt;}
.x12{left:246.605200pt;}
.x10{left:251.809333pt;}
.x13{left:313.366800pt;}
.x14{left:316.442000pt;}
.x18{left:321.704133pt;}
.x1b{left:325.485600pt;}
.x19{left:333.044667pt;}
.x15{left:370.332400pt;}
.x16{left:433.349200pt;}
.x17{left:503.136400pt;}
.x3{left:578.865333pt;}
.x2{left:581.593467pt;}
}




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