
    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_90c8f4fe35cf0508e9ef506c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.998000;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_6ca13e45661192138f16f19f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.975000;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_719e5633a09f59ef8b5cbf43.woff')format("woff");}.ff3{font-family:ff3;line-height:0.991699;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_5f4b6b9e14d442f4fa368d5a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.698242;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_8e82166b73460ec919b3cda3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.937990;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_dc6bb22756bbb8fc5d4fba61.woff')format("woff");}.ff6{font-family:ff6;line-height:0.959000;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_3cf35abe53902448d200f6fa.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942873;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);}
.v2{vertical-align:-3.001200px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.961200px;}
.v1{vertical-align:6.000000px;}
.v4{vertical-align:30.480000px;}
.v5{vertical-align:33.061200px;}
.ls3d{letter-spacing:-2.940000px;}
.ls3e{letter-spacing:-1.734000px;}
.ls3b{letter-spacing:-1.560000px;}
.ls3a{letter-spacing:-1.440000px;}
.ls39{letter-spacing:-1.380000px;}
.ls25{letter-spacing:-1.320000px;}
.ls28{letter-spacing:-1.260000px;}
.ls22{letter-spacing:-1.200000px;}
.ls21{letter-spacing:-1.140000px;}
.ls47{letter-spacing:-1.104000px;}
.ls24{letter-spacing:-1.080000px;}
.ls30{letter-spacing:-1.056000px;}
.ls27{letter-spacing:-1.020000px;}
.ls31{letter-spacing:-1.008000px;}
.ls3f{letter-spacing:-0.969000px;}
.ls26{letter-spacing:-0.960000px;}
.ls2e{letter-spacing:-0.900000px;}
.ls2f{letter-spacing:-0.840000px;}
.ls6{letter-spacing:-0.810000px;}
.ls20{letter-spacing:-0.780000px;}
.ls48{letter-spacing:-0.768000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls1f{letter-spacing:-0.684000px;}
.ls23{letter-spacing:-0.660000px;}
.ls32{letter-spacing:-0.624000px;}
.ls18{letter-spacing:-0.600000px;}
.ls29{letter-spacing:-0.570000px;}
.ls8{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.480000px;}
.ls9{letter-spacing:-0.432000px;}
.ls3{letter-spacing:-0.420000px;}
.ls4a{letter-spacing:-0.408000px;}
.ls11{letter-spacing:-0.360000px;}
.ls4c{letter-spacing:-0.342000px;}
.ls7{letter-spacing:-0.324000px;}
.ls42{letter-spacing:-0.306000px;}
.ls2a{letter-spacing:-0.300000px;}
.lsc{letter-spacing:-0.270000px;}
.lsd{letter-spacing:-0.255000px;}
.ls19{letter-spacing:-0.240000px;}
.ls43{letter-spacing:-0.228000px;}
.lsb{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.180000px;}
.ls37{letter-spacing:-0.171000px;}
.ls33{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.120000px;}
.lse{letter-spacing:-0.108000px;}
.ls1c{letter-spacing:-0.060000px;}
.lsa{letter-spacing:-0.054000px;}
.ls35{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.060000px;}
.ls41{letter-spacing:0.102000px;}
.lsf{letter-spacing:0.120000px;}
.ls34{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.180000px;}
.ls38{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.300000px;}
.ls49{letter-spacing:0.357000px;}
.ls36{letter-spacing:0.360000px;}
.ls46{letter-spacing:0.380400px;}
.ls40{letter-spacing:0.408000px;}
.ls14{letter-spacing:0.420000px;}
.ls12{letter-spacing:0.480000px;}
.ls4d{letter-spacing:0.540000px;}
.ls10{letter-spacing:0.600000px;}
.ls15{letter-spacing:0.660000px;}
.ls5{letter-spacing:0.702000px;}
.ls3c{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.780000px;}
.ls2d{letter-spacing:1.020000px;}
.ls4{letter-spacing:1.071000px;}
.ls2c{letter-spacing:1.632000px;}
.ls4f{letter-spacing:1.680000px;}
.ls4e{letter-spacing:2.040000px;}
.ls0{letter-spacing:2.640000px;}
.ls2b{letter-spacing:9.354600px;}
.ls44{letter-spacing:195.308400px;}
.ls45{letter-spacing:195.480600px;}
.ls4b{letter-spacing:479.745600px;}
.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;}
}
.ws29{word-spacing:-59.400000px;}
.ws3b{word-spacing:-59.280000px;}
.wsa2{word-spacing:-19.140000px;}
.ws9a{word-spacing:-15.540000px;}
.ws1b{word-spacing:-15.420000px;}
.ws69{word-spacing:-15.300000px;}
.ws9f{word-spacing:-15.120000px;}
.ws11{word-spacing:-15.000000px;}
.ws7c{word-spacing:-14.760000px;}
.ws2a{word-spacing:-14.640000px;}
.ws12{word-spacing:-14.580000px;}
.ws44{word-spacing:-14.520000px;}
.ws1a{word-spacing:-14.400000px;}
.ws58{word-spacing:-14.382000px;}
.ws2e{word-spacing:-14.340000px;}
.ws2c{word-spacing:-14.280000px;}
.ws2d{word-spacing:-14.220000px;}
.ws8e{word-spacing:-14.160000px;}
.ws43{word-spacing:-14.100000px;}
.ws5d{word-spacing:-14.079000px;}
.ws45{word-spacing:-14.040000px;}
.ws2{word-spacing:-13.821000px;}
.ws8d{word-spacing:-13.800000px;}
.ws59{word-spacing:-13.770000px;}
.ws5e{word-spacing:-13.740000px;}
.ws3a{word-spacing:-13.680000px;}
.ws5f{word-spacing:-13.440000px;}
.ws90{word-spacing:-12.750000px;}
.ws3{word-spacing:-12.495000px;}
.ws68{word-spacing:-12.060000px;}
.ws4b{word-spacing:-12.000000px;}
.ws4a{word-spacing:-11.376000px;}
.ws4e{word-spacing:-11.280000px;}
.ws0{word-spacing:-10.500000px;}
.ws1{word-spacing:-10.080000px;}
.ws9c{word-spacing:-6.375000px;}
.ws19{word-spacing:-3.504000px;}
.ws6d{word-spacing:-3.060000px;}
.ws35{word-spacing:-3.000000px;}
.ws30{word-spacing:-2.850000px;}
.ws3f{word-spacing:-2.400000px;}
.ws7e{word-spacing:-2.280000px;}
.ws6a{word-spacing:-2.100000px;}
.wsa0{word-spacing:-2.040000px;}
.wsa1{word-spacing:-1.680000px;}
.ws5c{word-spacing:-1.632000px;}
.ws9d{word-spacing:-1.560000px;}
.ws40{word-spacing:-1.260000px;}
.ws42{word-spacing:-1.071000px;}
.ws10{word-spacing:-0.780000px;}
.ws6b{word-spacing:-0.720000px;}
.ws7{word-spacing:-0.702000px;}
.ws22{word-spacing:-0.660000px;}
.ws16{word-spacing:-0.600000px;}
.ws9e{word-spacing:-0.540000px;}
.ws18{word-spacing:-0.480000px;}
.ws21{word-spacing:-0.420000px;}
.ws60{word-spacing:-0.360000px;}
.ws8b{word-spacing:-0.357000px;}
.ws24{word-spacing:-0.300000px;}
.ws61{word-spacing:-0.240000px;}
.ws1c{word-spacing:-0.180000px;}
.wsa3{word-spacing:-0.153000px;}
.ws15{word-spacing:-0.120000px;}
.ws25{word-spacing:-0.060000px;}
.ws7d{word-spacing:-0.051000px;}
.ws5{word-spacing:-0.042000px;}
.ws4{word-spacing:0.000000px;}
.wsc{word-spacing:0.054000px;}
.ws23{word-spacing:0.060000px;}
.wsf{word-spacing:0.108000px;}
.ws1f{word-spacing:0.120000px;}
.ws20{word-spacing:0.180000px;}
.wsd{word-spacing:0.216000px;}
.ws1e{word-spacing:0.240000px;}
.wse{word-spacing:0.270000px;}
.ws41{word-spacing:0.300000px;}
.ws9{word-spacing:0.324000px;}
.ws17{word-spacing:0.360000px;}
.ws8c{word-spacing:0.408000px;}
.ws6{word-spacing:0.420000px;}
.wsb{word-spacing:0.432000px;}
.ws26{word-spacing:0.480000px;}
.wsa{word-spacing:0.540000px;}
.ws1d{word-spacing:0.600000px;}
.ws34{word-spacing:0.660000px;}
.ws2f{word-spacing:0.720000px;}
.ws31{word-spacing:0.780000px;}
.ws8{word-spacing:0.810000px;}
.ws5b{word-spacing:0.840000px;}
.ws5a{word-spacing:0.900000px;}
.ws38{word-spacing:0.960000px;}
.ws39{word-spacing:1.020000px;}
.ws36{word-spacing:1.080000px;}
.ws32{word-spacing:1.140000px;}
.ws33{word-spacing:1.200000px;}
.ws3c{word-spacing:1.260000px;}
.ws37{word-spacing:1.320000px;}
.ws62{word-spacing:1.380000px;}
.ws63{word-spacing:1.440000px;}
.ws66{word-spacing:1.560000px;}
.ws6c{word-spacing:2.193000px;}
.ws67{word-spacing:2.508000px;}
.ws3e{word-spacing:2.640000px;}
.ws64{word-spacing:2.940000px;}
.ws65{word-spacing:3.900000px;}
.ws3d{word-spacing:4.380000px;}
.ws9b{word-spacing:4.674000px;}
.ws27{word-spacing:4.920000px;}
.ws2b{word-spacing:4.980000px;}
.ws13{word-spacing:12.000000px;}
.ws4d{word-spacing:22.351800px;}
.ws86{word-spacing:22.652400px;}
.ws50{word-spacing:23.451600px;}
.ws28{word-spacing:23.712000px;}
.ws7f{word-spacing:25.805400px;}
.ws83{word-spacing:25.842000px;}
.ws51{word-spacing:27.190800px;}
.ws81{word-spacing:27.867600px;}
.ws87{word-spacing:28.569000px;}
.ws89{word-spacing:29.548200px;}
.ws54{word-spacing:36.531600px;}
.ws49{word-spacing:39.714000px;}
.ws82{word-spacing:40.049400px;}
.ws85{word-spacing:42.052200px;}
.ws88{word-spacing:50.813400px;}
.ws46{word-spacing:53.878800px;}
.ws4f{word-spacing:54.700800px;}
.ws14{word-spacing:56.628000px;}
.ws8f{word-spacing:56.721600px;}
.ws6f{word-spacing:57.110100px;}
.ws80{word-spacing:62.726400px;}
.ws84{word-spacing:65.145000px;}
.ws55{word-spacing:65.537400px;}
.ws8a{word-spacing:86.284200px;}
.ws4c{word-spacing:90.915600px;}
.ws48{word-spacing:91.702800px;}
.ws52{word-spacing:92.710800px;}
.ws57{word-spacing:95.139000px;}
.ws47{word-spacing:102.915600px;}
.ws53{word-spacing:103.635000px;}
.ws99{word-spacing:103.642500px;}
.ws93{word-spacing:120.880500px;}
.ws97{word-spacing:123.782400px;}
.ws56{word-spacing:126.987000px;}
.ws98{word-spacing:158.700600px;}
.ws91{word-spacing:182.891400px;}
.ws95{word-spacing:221.651400px;}
.ws77{word-spacing:235.659900px;}
.ws72{word-spacing:236.113800px;}
.ws79{word-spacing:257.635800px;}
.ws6e{word-spacing:259.245600px;}
.ws73{word-spacing:260.547900px;}
.ws7b{word-spacing:268.039800px;}
.ws7a{word-spacing:268.345800px;}
.ws92{word-spacing:268.656600px;}
.ws94{word-spacing:284.007600px;}
.ws96{word-spacing:288.342600px;}
.ws78{word-spacing:293.488800px;}
.ws76{word-spacing:299.200800px;}
.ws70{word-spacing:332.554800px;}
.ws75{word-spacing:337.960800px;}
.ws71{word-spacing:351.271800px;}
.ws74{word-spacing:385.849800px;}
._c{margin-left:-12.750000px;}
._a{margin-left:-8.250000px;}
._3{margin-left:-5.670000px;}
._8{margin-left:-4.388400px;}
._6{margin-left:-3.161400px;}
._0{margin-left:-1.176000px;}
._1{width:1.045800px;}
._2{width:2.305800px;}
._5{width:4.222200px;}
._7{width:5.641800px;}
._e{width:6.904500px;}
._d{width:8.055900px;}
._b{width:9.336600px;}
._3c{width:12.660000px;}
._3b{width:16.374000px;}
._9{width:36.574200px;}
._4{width:46.587000px;}
._f{width:48.768600px;}
._17{width:51.714000px;}
._27{width:54.052200px;}
._19{width:56.177400px;}
._25{width:59.222400px;}
._2a{width:69.933000px;}
._34{width:72.607200px;}
._16{width:75.555600px;}
._29{width:82.761000px;}
._18{width:95.119200px;}
._2e{width:98.284200px;}
._31{width:104.917500px;}
._2d{width:106.093500px;}
._30{width:107.674200px;}
._1a{width:110.169600px;}
._12{width:119.403000px;}
._1b{width:122.986800px;}
._39{width:124.350300px;}
._2c{width:126.433500px;}
._13{width:128.087400px;}
._33{width:130.216800px;}
._36{width:131.487600px;}
._14{width:134.418000px;}
._2f{width:137.445000px;}
._10{width:142.131000px;}
._3a{width:144.578700px;}
._15{width:147.555000px;}
._38{width:151.507200px;}
._2b{width:155.112600px;}
._35{width:158.931000px;}
._11{width:161.850000px;}
._24{width:177.636600px;}
._37{width:179.190600px;}
._32{width:182.534400px;}
._1c{width:184.822500px;}
._28{width:186.524400px;}
._1d{width:210.856800px;}
._1e{width:257.474400px;}
._20{width:290.796600px;}
._21{width:322.864800px;}
._1f{width:324.180600px;}
._22{width:357.533100px;}
._23{width:390.194400px;}
._26{width:481.138200px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:27.144300px;}
.y2f{bottom:39.144300px;}
.y1{bottom:51.023700px;}
.y2e{bottom:51.144300px;}
.yc1{bottom:86.854500px;}
.y74{bottom:89.165550px;}
.y2d{bottom:93.354300px;}
.y15{bottom:93.354450px;}
.y52{bottom:93.543450px;}
.y10f{bottom:100.629900px;}
.y73{bottom:104.165550px;}
.y14{bottom:104.854350px;}
.yc0{bottom:106.106550px;}
.ye3{bottom:107.846400px;}
.y48{bottom:108.354450px;}
.y70{bottom:108.543450px;}
.y71{bottom:112.795500px;}
.y51{bottom:112.795650px;}
.y2c{bottom:112.854300px;}
.y10e{bottom:118.629900px;}
.y13{bottom:119.354400px;}
.ye2{bottom:125.846400px;}
.y47{bottom:127.606650px;}
.yac{bottom:127.795500px;}
.y6f{bottom:127.795650px;}
.y50{bottom:132.047700px;}
.y2b{bottom:132.354300px;}
.y12{bottom:132.354450px;}
.y10d{bottom:136.629900px;}
.y6e{bottom:142.795650px;}
.ye1{bottom:143.846400px;}
.y11{bottom:145.354350px;}
.y46{bottom:146.858700px;}
.yab{bottom:147.047550px;}
.y4f{bottom:151.299750px;}
.y72{bottom:151.854300px;}
.y10c{bottom:154.629900px;}
.y5c{bottom:158.354250px;}
.y10{bottom:158.354400px;}
.ye0{bottom:161.846400px;}
.y6d{bottom:162.047700px;}
.ybf{bottom:164.854350px;}
.y45{bottom:166.110900px;}
.y60{bottom:166.299750px;}
.y2a{bottom:171.354300px;}
.yf{bottom:171.354450px;}
.y10b{bottom:172.629900px;}
.y5b{bottom:177.854250px;}
.ydf{bottom:179.846400px;}
.y6c{bottom:181.299750px;}
.ye{bottom:184.354350px;}
.y44{bottom:185.362950px;}
.yaa{bottom:185.551800px;}
.y5f{bottom:185.551950px;}
.y10a{bottom:190.629900px;}
.y29{bottom:190.854300px;}
.y5a{bottom:197.354250px;}
.yd{bottom:197.354400px;}
.yde{bottom:197.846400px;}
.ya9{bottom:200.551800px;}
.y6b{bottom:200.551950px;}
.ybe{bottom:203.854350px;}
.y43{bottom:204.615150px;}
.y109{bottom:208.629900px;}
.y28{bottom:210.354300px;}
.ydd{bottom:215.846400px;}
.y59{bottom:216.854250px;}
.yc{bottom:216.854400px;}
.y6a{bottom:219.804000px;}
.ybd{bottom:223.354350px;}
.y108{bottom:226.629900px;}
.yb{bottom:228.354300px;}
.y27{bottom:229.854300px;}
.ydc{bottom:233.846400px;}
.y58{bottom:236.354250px;}
.ya8{bottom:239.056050px;}
.y69{bottom:239.056200px;}
.ya{bottom:242.854350px;}
.y107{bottom:244.629900px;}
.y26{bottom:249.354300px;}
.ydb{bottom:251.846400px;}
.y68{bottom:254.056200px;}
.y57{bottom:255.854250px;}
.y9{bottom:255.854400px;}
.ybc{bottom:262.354350px;}
.y106{bottom:262.629900px;}
.y8{bottom:268.854300px;}
.yda{bottom:269.846400px;}
.y67{bottom:273.308250px;}
.y56{bottom:275.354250px;}
.y105{bottom:280.629900px;}
.ya7{bottom:281.854200px;}
.y7{bottom:281.854350px;}
.yd9{bottom:287.846400px;}
.y25{bottom:288.354300px;}
.y55{bottom:294.854250px;}
.y6{bottom:294.854400px;}
.y104{bottom:298.629900px;}
.ya6{bottom:301.354200px;}
.ybb{bottom:301.354350px;}
.yd8{bottom:305.846400px;}
.y24{bottom:307.854300px;}
.y5{bottom:307.854450px;}
.y75{bottom:309.654300px;}
.y54{bottom:314.354250px;}
.y103{bottom:316.629900px;}
.ya5{bottom:320.854200px;}
.y4{bottom:320.854350px;}
.yd7{bottom:323.846400px;}
.y23{bottom:327.354300px;}
.y53{bottom:333.854250px;}
.y3{bottom:333.854400px;}
.y102{bottom:334.629900px;}
.ya4{bottom:340.354200px;}
.yd6{bottom:341.846400px;}
.y22{bottom:346.854300px;}
.y101{bottom:352.629900px;}
.y89{bottom:353.354250px;}
.y2{bottom:353.354400px;}
.y66{bottom:358.866450px;}
.yd5{bottom:359.846400px;}
.ya3{bottom:359.854200px;}
.yba{bottom:364.983150px;}
.y21{bottom:366.354300px;}
.y100{bottom:370.629900px;}
.y88{bottom:372.854250px;}
.yd4{bottom:377.846400px;}
.y65{bottom:378.484200px;}
.ya2{bottom:379.354200px;}
.y20{bottom:385.854300px;}
.yff{bottom:388.629900px;}
.y5e{bottom:389.919600px;}
.y87{bottom:392.354250px;}
.yb9{bottom:393.114000px;}
.yd3{bottom:395.846400px;}
.ya1{bottom:398.854200px;}
.y64{bottom:399.842700px;}
.y1f{bottom:405.354300px;}
.yfe{bottom:406.629900px;}
.y5d{bottom:407.619600px;}
.y86{bottom:411.854250px;}
.yd2{bottom:413.846400px;}
.ya0{bottom:418.354200px;}
.y63{bottom:419.460600px;}
.yb8{bottom:421.117350px;}
.yfd{bottom:424.629900px;}
.y1e{bottom:424.854300px;}
.y85{bottom:431.354250px;}
.yd1{bottom:431.846400px;}
.y9f{bottom:437.854200px;}
.yfc{bottom:442.629900px;}
.y1d{bottom:444.354300px;}
.y62{bottom:447.954300px;}
.yb7{bottom:449.120550px;}
.yd0{bottom:449.846400px;}
.y9e{bottom:457.354200px;}
.yfb{bottom:460.629900px;}
.y1c{bottom:463.854300px;}
.y61{bottom:465.654300px;}
.ycf{bottom:467.846400px;}
.y9d{bottom:476.854200px;}
.yb4{bottom:477.123900px;}
.yb6{bottom:477.889050px;}
.yfa{bottom:478.629900px;}
.y84{bottom:479.021700px;}
.y1b{bottom:483.354300px;}
.yce{bottom:485.846400px;}
.yb3{bottom:492.123900px;}
.yb5{bottom:492.889050px;}
.y9c{bottom:496.354200px;}
.yf9{bottom:496.629900px;}
.y1a{bottom:502.854300px;}
.ycd{bottom:503.846400px;}
.y83{bottom:508.665300px;}
.yf8{bottom:514.629900px;}
.y9b{bottom:515.854200px;}
.yb2{bottom:518.341200px;}
.ycc{bottom:521.846400px;}
.y42{bottom:522.354300px;}
.yf7{bottom:532.629900px;}
.yb1{bottom:533.341200px;}
.y9a{bottom:535.354200px;}
.y82{bottom:538.308750px;}
.ycb{bottom:539.846400px;}
.y41{bottom:541.854300px;}
.yf6{bottom:550.629900px;}
.y99{bottom:554.854200px;}
.yb0{bottom:557.772750px;}
.yca{bottom:557.846400px;}
.y40{bottom:561.354300px;}
.yaf{bottom:565.272750px;}
.y81{bottom:567.952200px;}
.yf5{bottom:568.629900px;}
.y98{bottom:574.354200px;}
.yc9{bottom:575.846400px;}
.y3f{bottom:580.854300px;}
.yf4{bottom:586.629900px;}
.yc8{bottom:593.846400px;}
.y97{bottom:593.854200px;}
.y80{bottom:597.595800px;}
.y3e{bottom:600.354300px;}
.yae{bottom:603.954300px;}
.yf3{bottom:604.629900px;}
.yc7{bottom:611.846400px;}
.y96{bottom:613.354200px;}
.y3d{bottom:619.854300px;}
.yad{bottom:621.654300px;}
.yf2{bottom:622.629900px;}
.y7f{bottom:627.239250px;}
.yc6{bottom:629.846400px;}
.y95{bottom:632.854200px;}
.y3c{bottom:639.354300px;}
.yf1{bottom:640.629900px;}
.yc5{bottom:647.846400px;}
.y94{bottom:652.354200px;}
.y7e{bottom:656.882700px;}
.yf0{bottom:658.629900px;}
.y3b{bottom:658.854300px;}
.yc4{bottom:665.846400px;}
.y93{bottom:671.854200px;}
.yef{bottom:676.629900px;}
.y3a{bottom:678.354300px;}
.yc3{bottom:683.846400px;}
.y7d{bottom:686.526150px;}
.y92{bottom:691.354200px;}
.yee{bottom:694.629900px;}
.y39{bottom:697.854300px;}
.yc2{bottom:701.846400px;}
.y91{bottom:710.854200px;}
.yed{bottom:712.629900px;}
.y7c{bottom:716.169750px;}
.y38{bottom:717.354300px;}
.yec{bottom:730.629900px;}
.y37{bottom:736.854300px;}
.y7b{bottom:745.813200px;}
.yeb{bottom:748.629900px;}
.y90{bottom:752.776500px;}
.y36{bottom:756.354300px;}
.yea{bottom:766.629900px;}
.y8f{bottom:770.268300px;}
.y7a{bottom:775.456650px;}
.y4e{bottom:775.854300px;}
.y35{bottom:775.854450px;}
.ye9{bottom:784.629900px;}
.y8e{bottom:785.268300px;}
.y4d{bottom:795.354300px;}
.y34{bottom:795.354450px;}
.y19{bottom:801.854400px;}
.ye8{bottom:802.629900px;}
.y8d{bottom:802.880250px;}
.y79{bottom:805.100250px;}
.y4c{bottom:814.854300px;}
.y33{bottom:814.854450px;}
.y8c{bottom:820.252050px;}
.ye7{bottom:820.629900px;}
.y78{bottom:832.246950px;}
.y4b{bottom:834.354300px;}
.y18{bottom:834.354450px;}
.y8b{bottom:835.252050px;}
.ye6{bottom:838.629900px;}
.y8a{bottom:852.743850px;}
.y4a{bottom:853.854300px;}
.ye5{bottom:856.629900px;}
.y77{bottom:863.537700px;}
.y17{bottom:866.854500px;}
.y49{bottom:873.354300px;}
.y32{bottom:873.354450px;}
.ye4{bottom:874.629900px;}
.y76{bottom:881.237700px;}
.y16{bottom:909.453600px;}
.y31{bottom:911.775900px;}
.ha{height:28.899000px;}
.h4{height:31.122000px;}
.h3{height:32.172000px;}
.h15{height:35.568000px;}
.h2{height:36.768000px;}
.h5{height:37.122000px;}
.h10{height:37.791000px;}
.he{height:38.449219px;}
.hf{height:39.066000px;}
.h9{height:40.710938px;}
.h1a{height:40.852200px;}
.h1b{height:41.617200px;}
.h12{height:44.240400px;}
.h13{height:44.241000px;}
.hc{height:45.234375px;}
.hd{height:45.960000px;}
.h11{height:48.114000px;}
.h6{height:48.906000px;}
.hb{height:50.556000px;}
.h14{height:66.048000px;}
.h16{height:66.768000px;}
.h19{height:68.556000px;}
.h17{height:69.066000px;}
.h18{height:70.852200px;}
.h8{height:88.920000px;}
.h7{height:91.920000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x5{left:73.346400px;}
.x2{left:85.039350px;}
.x9{left:90.041400px;}
.xa{left:94.293300px;}
.x3{left:95.564250px;}
.x7{left:106.299150px;}
.x6{left:112.677300px;}
.xb{left:160.624050px;}
.xd{left:188.899650px;}
.x4{left:268.015800px;}
.xf{left:340.157550px;}
.xe{left:361.417350px;}
.x8{left:370.716150px;}
.xc{left:517.364250px;}
.x1{left:553.604250px;}
@media print{
.v2{vertical-align:-2.667733pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.521067pt;}
.v1{vertical-align:5.333333pt;}
.v4{vertical-align:27.093333pt;}
.v5{vertical-align:29.387733pt;}
.ls3d{letter-spacing:-2.613333pt;}
.ls3e{letter-spacing:-1.541333pt;}
.ls3b{letter-spacing:-1.386667pt;}
.ls3a{letter-spacing:-1.280000pt;}
.ls39{letter-spacing:-1.226667pt;}
.ls25{letter-spacing:-1.173333pt;}
.ls28{letter-spacing:-1.120000pt;}
.ls22{letter-spacing:-1.066667pt;}
.ls21{letter-spacing:-1.013333pt;}
.ls47{letter-spacing:-0.981333pt;}
.ls24{letter-spacing:-0.960000pt;}
.ls30{letter-spacing:-0.938667pt;}
.ls27{letter-spacing:-0.906667pt;}
.ls31{letter-spacing:-0.896000pt;}
.ls3f{letter-spacing:-0.861333pt;}
.ls26{letter-spacing:-0.853333pt;}
.ls2e{letter-spacing:-0.800000pt;}
.ls2f{letter-spacing:-0.746667pt;}
.ls6{letter-spacing:-0.720000pt;}
.ls20{letter-spacing:-0.693333pt;}
.ls48{letter-spacing:-0.682667pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls1f{letter-spacing:-0.608000pt;}
.ls23{letter-spacing:-0.586667pt;}
.ls32{letter-spacing:-0.554667pt;}
.ls18{letter-spacing:-0.533333pt;}
.ls29{letter-spacing:-0.506667pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:-0.384000pt;}
.ls3{letter-spacing:-0.373333pt;}
.ls4a{letter-spacing:-0.362667pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls4c{letter-spacing:-0.304000pt;}
.ls7{letter-spacing:-0.288000pt;}
.ls42{letter-spacing:-0.272000pt;}
.ls2a{letter-spacing:-0.266667pt;}
.lsc{letter-spacing:-0.240000pt;}
.lsd{letter-spacing:-0.226667pt;}
.ls19{letter-spacing:-0.213333pt;}
.ls43{letter-spacing:-0.202667pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.160000pt;}
.ls37{letter-spacing:-0.152000pt;}
.ls33{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.106667pt;}
.lse{letter-spacing:-0.096000pt;}
.ls1c{letter-spacing:-0.053333pt;}
.lsa{letter-spacing:-0.048000pt;}
.ls35{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.053333pt;}
.ls41{letter-spacing:0.090667pt;}
.lsf{letter-spacing:0.106667pt;}
.ls34{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.160000pt;}
.ls38{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.266667pt;}
.ls49{letter-spacing:0.317333pt;}
.ls36{letter-spacing:0.320000pt;}
.ls46{letter-spacing:0.338133pt;}
.ls40{letter-spacing:0.362667pt;}
.ls14{letter-spacing:0.373333pt;}
.ls12{letter-spacing:0.426667pt;}
.ls4d{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.533333pt;}
.ls15{letter-spacing:0.586667pt;}
.ls5{letter-spacing:0.624000pt;}
.ls3c{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.693333pt;}
.ls2d{letter-spacing:0.906667pt;}
.ls4{letter-spacing:0.952000pt;}
.ls2c{letter-spacing:1.450667pt;}
.ls4f{letter-spacing:1.493333pt;}
.ls4e{letter-spacing:1.813333pt;}
.ls0{letter-spacing:2.346667pt;}
.ls2b{letter-spacing:8.315200pt;}
.ls44{letter-spacing:173.607467pt;}
.ls45{letter-spacing:173.760533pt;}
.ls4b{letter-spacing:426.440533pt;}
.ws29{word-spacing:-52.800000pt;}
.ws3b{word-spacing:-52.693333pt;}
.wsa2{word-spacing:-17.013333pt;}
.ws9a{word-spacing:-13.813333pt;}
.ws1b{word-spacing:-13.706667pt;}
.ws69{word-spacing:-13.600000pt;}
.ws9f{word-spacing:-13.440000pt;}
.ws11{word-spacing:-13.333333pt;}
.ws7c{word-spacing:-13.120000pt;}
.ws2a{word-spacing:-13.013333pt;}
.ws12{word-spacing:-12.960000pt;}
.ws44{word-spacing:-12.906667pt;}
.ws1a{word-spacing:-12.800000pt;}
.ws58{word-spacing:-12.784000pt;}
.ws2e{word-spacing:-12.746667pt;}
.ws2c{word-spacing:-12.693333pt;}
.ws2d{word-spacing:-12.640000pt;}
.ws8e{word-spacing:-12.586667pt;}
.ws43{word-spacing:-12.533333pt;}
.ws5d{word-spacing:-12.514667pt;}
.ws45{word-spacing:-12.480000pt;}
.ws2{word-spacing:-12.285333pt;}
.ws8d{word-spacing:-12.266667pt;}
.ws59{word-spacing:-12.240000pt;}
.ws5e{word-spacing:-12.213333pt;}
.ws3a{word-spacing:-12.160000pt;}
.ws5f{word-spacing:-11.946667pt;}
.ws90{word-spacing:-11.333333pt;}
.ws3{word-spacing:-11.106667pt;}
.ws68{word-spacing:-10.720000pt;}
.ws4b{word-spacing:-10.666667pt;}
.ws4a{word-spacing:-10.112000pt;}
.ws4e{word-spacing:-10.026667pt;}
.ws0{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.960000pt;}
.ws9c{word-spacing:-5.666667pt;}
.ws19{word-spacing:-3.114667pt;}
.ws6d{word-spacing:-2.720000pt;}
.ws35{word-spacing:-2.666667pt;}
.ws30{word-spacing:-2.533333pt;}
.ws3f{word-spacing:-2.133333pt;}
.ws7e{word-spacing:-2.026667pt;}
.ws6a{word-spacing:-1.866667pt;}
.wsa0{word-spacing:-1.813333pt;}
.wsa1{word-spacing:-1.493333pt;}
.ws5c{word-spacing:-1.450667pt;}
.ws9d{word-spacing:-1.386667pt;}
.ws40{word-spacing:-1.120000pt;}
.ws42{word-spacing:-0.952000pt;}
.ws10{word-spacing:-0.693333pt;}
.ws6b{word-spacing:-0.640000pt;}
.ws7{word-spacing:-0.624000pt;}
.ws22{word-spacing:-0.586667pt;}
.ws16{word-spacing:-0.533333pt;}
.ws9e{word-spacing:-0.480000pt;}
.ws18{word-spacing:-0.426667pt;}
.ws21{word-spacing:-0.373333pt;}
.ws60{word-spacing:-0.320000pt;}
.ws8b{word-spacing:-0.317333pt;}
.ws24{word-spacing:-0.266667pt;}
.ws61{word-spacing:-0.213333pt;}
.ws1c{word-spacing:-0.160000pt;}
.wsa3{word-spacing:-0.136000pt;}
.ws15{word-spacing:-0.106667pt;}
.ws25{word-spacing:-0.053333pt;}
.ws7d{word-spacing:-0.045333pt;}
.ws5{word-spacing:-0.037333pt;}
.ws4{word-spacing:0.000000pt;}
.wsc{word-spacing:0.048000pt;}
.ws23{word-spacing:0.053333pt;}
.wsf{word-spacing:0.096000pt;}
.ws1f{word-spacing:0.106667pt;}
.ws20{word-spacing:0.160000pt;}
.wsd{word-spacing:0.192000pt;}
.ws1e{word-spacing:0.213333pt;}
.wse{word-spacing:0.240000pt;}
.ws41{word-spacing:0.266667pt;}
.ws9{word-spacing:0.288000pt;}
.ws17{word-spacing:0.320000pt;}
.ws8c{word-spacing:0.362667pt;}
.ws6{word-spacing:0.373333pt;}
.wsb{word-spacing:0.384000pt;}
.ws26{word-spacing:0.426667pt;}
.wsa{word-spacing:0.480000pt;}
.ws1d{word-spacing:0.533333pt;}
.ws34{word-spacing:0.586667pt;}
.ws2f{word-spacing:0.640000pt;}
.ws31{word-spacing:0.693333pt;}
.ws8{word-spacing:0.720000pt;}
.ws5b{word-spacing:0.746667pt;}
.ws5a{word-spacing:0.800000pt;}
.ws38{word-spacing:0.853333pt;}
.ws39{word-spacing:0.906667pt;}
.ws36{word-spacing:0.960000pt;}
.ws32{word-spacing:1.013333pt;}
.ws33{word-spacing:1.066667pt;}
.ws3c{word-spacing:1.120000pt;}
.ws37{word-spacing:1.173333pt;}
.ws62{word-spacing:1.226667pt;}
.ws63{word-spacing:1.280000pt;}
.ws66{word-spacing:1.386667pt;}
.ws6c{word-spacing:1.949333pt;}
.ws67{word-spacing:2.229333pt;}
.ws3e{word-spacing:2.346667pt;}
.ws64{word-spacing:2.613333pt;}
.ws65{word-spacing:3.466667pt;}
.ws3d{word-spacing:3.893333pt;}
.ws9b{word-spacing:4.154667pt;}
.ws27{word-spacing:4.373333pt;}
.ws2b{word-spacing:4.426667pt;}
.ws13{word-spacing:10.666667pt;}
.ws4d{word-spacing:19.868267pt;}
.ws86{word-spacing:20.135467pt;}
.ws50{word-spacing:20.845867pt;}
.ws28{word-spacing:21.077333pt;}
.ws7f{word-spacing:22.938133pt;}
.ws83{word-spacing:22.970667pt;}
.ws51{word-spacing:24.169600pt;}
.ws81{word-spacing:24.771200pt;}
.ws87{word-spacing:25.394667pt;}
.ws89{word-spacing:26.265067pt;}
.ws54{word-spacing:32.472533pt;}
.ws49{word-spacing:35.301333pt;}
.ws82{word-spacing:35.599467pt;}
.ws85{word-spacing:37.379733pt;}
.ws88{word-spacing:45.167467pt;}
.ws46{word-spacing:47.892267pt;}
.ws4f{word-spacing:48.622933pt;}
.ws14{word-spacing:50.336000pt;}
.ws8f{word-spacing:50.419200pt;}
.ws6f{word-spacing:50.764533pt;}
.ws80{word-spacing:55.756800pt;}
.ws84{word-spacing:57.906667pt;}
.ws55{word-spacing:58.255467pt;}
.ws8a{word-spacing:76.697067pt;}
.ws4c{word-spacing:80.813867pt;}
.ws48{word-spacing:81.513600pt;}
.ws52{word-spacing:82.409600pt;}
.ws57{word-spacing:84.568000pt;}
.ws47{word-spacing:91.480533pt;}
.ws53{word-spacing:92.120000pt;}
.ws99{word-spacing:92.126667pt;}
.ws93{word-spacing:107.449333pt;}
.ws97{word-spacing:110.028800pt;}
.ws56{word-spacing:112.877333pt;}
.ws98{word-spacing:141.067200pt;}
.ws91{word-spacing:162.570133pt;}
.ws95{word-spacing:197.023467pt;}
.ws77{word-spacing:209.475467pt;}
.ws72{word-spacing:209.878933pt;}
.ws79{word-spacing:229.009600pt;}
.ws6e{word-spacing:230.440533pt;}
.ws73{word-spacing:231.598133pt;}
.ws7b{word-spacing:238.257600pt;}
.ws7a{word-spacing:238.529600pt;}
.ws92{word-spacing:238.805867pt;}
.ws94{word-spacing:252.451200pt;}
.ws96{word-spacing:256.304533pt;}
.ws78{word-spacing:260.878933pt;}
.ws76{word-spacing:265.956267pt;}
.ws70{word-spacing:295.604267pt;}
.ws75{word-spacing:300.409600pt;}
.ws71{word-spacing:312.241600pt;}
.ws74{word-spacing:342.977600pt;}
._c{margin-left:-11.333333pt;}
._a{margin-left:-7.333333pt;}
._3{margin-left:-5.040000pt;}
._8{margin-left:-3.900800pt;}
._6{margin-left:-2.810133pt;}
._0{margin-left:-1.045333pt;}
._1{width:0.929600pt;}
._2{width:2.049600pt;}
._5{width:3.753067pt;}
._7{width:5.014933pt;}
._e{width:6.137333pt;}
._d{width:7.160800pt;}
._b{width:8.299200pt;}
._3c{width:11.253333pt;}
._3b{width:14.554667pt;}
._9{width:32.510400pt;}
._4{width:41.410667pt;}
._f{width:43.349867pt;}
._17{width:45.968000pt;}
._27{width:48.046400pt;}
._19{width:49.935467pt;}
._25{width:52.642133pt;}
._2a{width:62.162667pt;}
._34{width:64.539733pt;}
._16{width:67.160533pt;}
._29{width:73.565333pt;}
._18{width:84.550400pt;}
._2e{width:87.363733pt;}
._31{width:93.260000pt;}
._2d{width:94.305333pt;}
._30{width:95.710400pt;}
._1a{width:97.928533pt;}
._12{width:106.136000pt;}
._1b{width:109.321600pt;}
._39{width:110.533600pt;}
._2c{width:112.385333pt;}
._13{width:113.855467pt;}
._33{width:115.748267pt;}
._36{width:116.877867pt;}
._14{width:119.482667pt;}
._2f{width:122.173333pt;}
._10{width:126.338667pt;}
._3a{width:128.514400pt;}
._15{width:131.160000pt;}
._38{width:134.673067pt;}
._2b{width:137.877867pt;}
._35{width:141.272000pt;}
._11{width:143.866667pt;}
._24{width:157.899200pt;}
._37{width:159.280533pt;}
._32{width:162.252800pt;}
._1c{width:164.286667pt;}
._28{width:165.799467pt;}
._1d{width:187.428267pt;}
._1e{width:228.866133pt;}
._20{width:258.485867pt;}
._21{width:286.990933pt;}
._1f{width:288.160533pt;}
._22{width:317.807200pt;}
._23{width:346.839467pt;}
._26{width:427.678400pt;}
.fs6{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:24.128267pt;}
.y2f{bottom:34.794933pt;}
.y1{bottom:45.354400pt;}
.y2e{bottom:45.461600pt;}
.yc1{bottom:77.204000pt;}
.y74{bottom:79.258267pt;}
.y2d{bottom:82.981600pt;}
.y15{bottom:82.981733pt;}
.y52{bottom:83.149733pt;}
.y10f{bottom:89.448800pt;}
.y73{bottom:92.591600pt;}
.y14{bottom:93.203867pt;}
.yc0{bottom:94.316933pt;}
.ye3{bottom:95.863467pt;}
.y48{bottom:96.315067pt;}
.y70{bottom:96.483067pt;}
.y71{bottom:100.262667pt;}
.y51{bottom:100.262800pt;}
.y2c{bottom:100.314933pt;}
.y10e{bottom:105.448800pt;}
.y13{bottom:106.092800pt;}
.ye2{bottom:111.863467pt;}
.y47{bottom:113.428133pt;}
.yac{bottom:113.596000pt;}
.y6f{bottom:113.596133pt;}
.y50{bottom:117.375733pt;}
.y2b{bottom:117.648267pt;}
.y12{bottom:117.648400pt;}
.y10d{bottom:121.448800pt;}
.y6e{bottom:126.929467pt;}
.ye1{bottom:127.863467pt;}
.y11{bottom:129.203867pt;}
.y46{bottom:130.541067pt;}
.yab{bottom:130.708933pt;}
.y4f{bottom:134.488667pt;}
.y72{bottom:134.981600pt;}
.y10c{bottom:137.448800pt;}
.y5c{bottom:140.759333pt;}
.y10{bottom:140.759467pt;}
.ye0{bottom:143.863467pt;}
.y6d{bottom:144.042400pt;}
.ybf{bottom:146.537200pt;}
.y45{bottom:147.654133pt;}
.y60{bottom:147.822000pt;}
.y2a{bottom:152.314933pt;}
.yf{bottom:152.315067pt;}
.y10b{bottom:153.448800pt;}
.y5b{bottom:158.092667pt;}
.ydf{bottom:159.863467pt;}
.y6c{bottom:161.155333pt;}
.ye{bottom:163.870533pt;}
.y44{bottom:164.767067pt;}
.yaa{bottom:164.934933pt;}
.y5f{bottom:164.935067pt;}
.y10a{bottom:169.448800pt;}
.y29{bottom:169.648267pt;}
.y5a{bottom:175.426000pt;}
.yd{bottom:175.426133pt;}
.yde{bottom:175.863467pt;}
.ya9{bottom:178.268267pt;}
.y6b{bottom:178.268400pt;}
.ybe{bottom:181.203867pt;}
.y43{bottom:181.880133pt;}
.y109{bottom:185.448800pt;}
.y28{bottom:186.981600pt;}
.ydd{bottom:191.863467pt;}
.y59{bottom:192.759333pt;}
.yc{bottom:192.759467pt;}
.y6a{bottom:195.381333pt;}
.ybd{bottom:198.537200pt;}
.y108{bottom:201.448800pt;}
.yb{bottom:202.981600pt;}
.y27{bottom:204.314933pt;}
.ydc{bottom:207.863467pt;}
.y58{bottom:210.092667pt;}
.ya8{bottom:212.494267pt;}
.y69{bottom:212.494400pt;}
.ya{bottom:215.870533pt;}
.y107{bottom:217.448800pt;}
.y26{bottom:221.648267pt;}
.ydb{bottom:223.863467pt;}
.y68{bottom:225.827733pt;}
.y57{bottom:227.426000pt;}
.y9{bottom:227.426133pt;}
.ybc{bottom:233.203867pt;}
.y106{bottom:233.448800pt;}
.y8{bottom:238.981600pt;}
.yda{bottom:239.863467pt;}
.y67{bottom:242.940667pt;}
.y56{bottom:244.759333pt;}
.y105{bottom:249.448800pt;}
.ya7{bottom:250.537067pt;}
.y7{bottom:250.537200pt;}
.yd9{bottom:255.863467pt;}
.y25{bottom:256.314933pt;}
.y55{bottom:262.092667pt;}
.y6{bottom:262.092800pt;}
.y104{bottom:265.448800pt;}
.ya6{bottom:267.870400pt;}
.ybb{bottom:267.870533pt;}
.yd8{bottom:271.863467pt;}
.y24{bottom:273.648267pt;}
.y5{bottom:273.648400pt;}
.y75{bottom:275.248267pt;}
.y54{bottom:279.426000pt;}
.y103{bottom:281.448800pt;}
.ya5{bottom:285.203733pt;}
.y4{bottom:285.203867pt;}
.yd7{bottom:287.863467pt;}
.y23{bottom:290.981600pt;}
.y53{bottom:296.759333pt;}
.y3{bottom:296.759467pt;}
.y102{bottom:297.448800pt;}
.ya4{bottom:302.537067pt;}
.yd6{bottom:303.863467pt;}
.y22{bottom:308.314933pt;}
.y101{bottom:313.448800pt;}
.y89{bottom:314.092667pt;}
.y2{bottom:314.092800pt;}
.y66{bottom:318.992400pt;}
.yd5{bottom:319.863467pt;}
.ya3{bottom:319.870400pt;}
.yba{bottom:324.429467pt;}
.y21{bottom:325.648267pt;}
.y100{bottom:329.448800pt;}
.y88{bottom:331.426000pt;}
.yd4{bottom:335.863467pt;}
.y65{bottom:336.430400pt;}
.ya2{bottom:337.203733pt;}
.y20{bottom:342.981600pt;}
.yff{bottom:345.448800pt;}
.y5e{bottom:346.595200pt;}
.y87{bottom:348.759333pt;}
.yb9{bottom:349.434667pt;}
.yd3{bottom:351.863467pt;}
.ya1{bottom:354.537067pt;}
.y64{bottom:355.415733pt;}
.y1f{bottom:360.314933pt;}
.yfe{bottom:361.448800pt;}
.y5d{bottom:362.328533pt;}
.y86{bottom:366.092667pt;}
.yd2{bottom:367.863467pt;}
.ya0{bottom:371.870400pt;}
.y63{bottom:372.853867pt;}
.yb8{bottom:374.326533pt;}
.yfd{bottom:377.448800pt;}
.y1e{bottom:377.648267pt;}
.y85{bottom:383.426000pt;}
.yd1{bottom:383.863467pt;}
.y9f{bottom:389.203733pt;}
.yfc{bottom:393.448800pt;}
.y1d{bottom:394.981600pt;}
.y62{bottom:398.181600pt;}
.yb7{bottom:399.218267pt;}
.yd0{bottom:399.863467pt;}
.y9e{bottom:406.537067pt;}
.yfb{bottom:409.448800pt;}
.y1c{bottom:412.314933pt;}
.y61{bottom:413.914933pt;}
.ycf{bottom:415.863467pt;}
.y9d{bottom:423.870400pt;}
.yb4{bottom:424.110133pt;}
.yb6{bottom:424.790267pt;}
.yfa{bottom:425.448800pt;}
.y84{bottom:425.797067pt;}
.y1b{bottom:429.648267pt;}
.yce{bottom:431.863467pt;}
.yb3{bottom:437.443467pt;}
.yb5{bottom:438.123600pt;}
.y9c{bottom:441.203733pt;}
.yf9{bottom:441.448800pt;}
.y1a{bottom:446.981600pt;}
.ycd{bottom:447.863467pt;}
.y83{bottom:452.146933pt;}
.yf8{bottom:457.448800pt;}
.y9b{bottom:458.537067pt;}
.yb2{bottom:460.747733pt;}
.ycc{bottom:463.863467pt;}
.y42{bottom:464.314933pt;}
.yf7{bottom:473.448800pt;}
.yb1{bottom:474.081067pt;}
.y9a{bottom:475.870400pt;}
.y82{bottom:478.496667pt;}
.ycb{bottom:479.863467pt;}
.y41{bottom:481.648267pt;}
.yf6{bottom:489.448800pt;}
.y99{bottom:493.203733pt;}
.yb0{bottom:495.798000pt;}
.yca{bottom:495.863467pt;}
.y40{bottom:498.981600pt;}
.yaf{bottom:502.464667pt;}
.y81{bottom:504.846400pt;}
.yf5{bottom:505.448800pt;}
.y98{bottom:510.537067pt;}
.yc9{bottom:511.863467pt;}
.y3f{bottom:516.314933pt;}
.yf4{bottom:521.448800pt;}
.yc8{bottom:527.863467pt;}
.y97{bottom:527.870400pt;}
.y80{bottom:531.196267pt;}
.y3e{bottom:533.648267pt;}
.yae{bottom:536.848267pt;}
.yf3{bottom:537.448800pt;}
.yc7{bottom:543.863467pt;}
.y96{bottom:545.203733pt;}
.y3d{bottom:550.981600pt;}
.yad{bottom:552.581600pt;}
.yf2{bottom:553.448800pt;}
.y7f{bottom:557.546000pt;}
.yc6{bottom:559.863467pt;}
.y95{bottom:562.537067pt;}
.y3c{bottom:568.314933pt;}
.yf1{bottom:569.448800pt;}
.yc5{bottom:575.863467pt;}
.y94{bottom:579.870400pt;}
.y7e{bottom:583.895733pt;}
.yf0{bottom:585.448800pt;}
.y3b{bottom:585.648267pt;}
.yc4{bottom:591.863467pt;}
.y93{bottom:597.203733pt;}
.yef{bottom:601.448800pt;}
.y3a{bottom:602.981600pt;}
.yc3{bottom:607.863467pt;}
.y7d{bottom:610.245467pt;}
.y92{bottom:614.537067pt;}
.yee{bottom:617.448800pt;}
.y39{bottom:620.314933pt;}
.yc2{bottom:623.863467pt;}
.y91{bottom:631.870400pt;}
.yed{bottom:633.448800pt;}
.y7c{bottom:636.595333pt;}
.y38{bottom:637.648267pt;}
.yec{bottom:649.448800pt;}
.y37{bottom:654.981600pt;}
.y7b{bottom:662.945067pt;}
.yeb{bottom:665.448800pt;}
.y90{bottom:669.134667pt;}
.y36{bottom:672.314933pt;}
.yea{bottom:681.448800pt;}
.y8f{bottom:684.682933pt;}
.y7a{bottom:689.294800pt;}
.y4e{bottom:689.648267pt;}
.y35{bottom:689.648400pt;}
.ye9{bottom:697.448800pt;}
.y8e{bottom:698.016267pt;}
.y4d{bottom:706.981600pt;}
.y34{bottom:706.981733pt;}
.y19{bottom:712.759467pt;}
.ye8{bottom:713.448800pt;}
.y8d{bottom:713.671333pt;}
.y79{bottom:715.644667pt;}
.y4c{bottom:724.314933pt;}
.y33{bottom:724.315067pt;}
.y8c{bottom:729.112933pt;}
.ye7{bottom:729.448800pt;}
.y78{bottom:739.775067pt;}
.y4b{bottom:741.648267pt;}
.y18{bottom:741.648400pt;}
.y8b{bottom:742.446267pt;}
.ye6{bottom:745.448800pt;}
.y8a{bottom:757.994533pt;}
.y4a{bottom:758.981600pt;}
.ye5{bottom:761.448800pt;}
.y77{bottom:767.589067pt;}
.y17{bottom:770.537333pt;}
.y49{bottom:776.314933pt;}
.y32{bottom:776.315067pt;}
.ye4{bottom:777.448800pt;}
.y76{bottom:783.322400pt;}
.y16{bottom:808.403200pt;}
.y31{bottom:810.467467pt;}
.ha{height:25.688000pt;}
.h4{height:27.664000pt;}
.h3{height:28.597333pt;}
.h15{height:31.616000pt;}
.h2{height:32.682667pt;}
.h5{height:32.997333pt;}
.h10{height:33.592000pt;}
.he{height:34.177083pt;}
.hf{height:34.725333pt;}
.h9{height:36.187500pt;}
.h1a{height:36.313067pt;}
.h1b{height:36.993067pt;}
.h12{height:39.324800pt;}
.h13{height:39.325333pt;}
.hc{height:40.208333pt;}
.hd{height:40.853333pt;}
.h11{height:42.768000pt;}
.h6{height:43.472000pt;}
.hb{height:44.938667pt;}
.h14{height:58.709333pt;}
.h16{height:59.349333pt;}
.h19{height:60.938667pt;}
.h17{height:61.392000pt;}
.h18{height:62.979733pt;}
.h8{height:79.040000pt;}
.h7{height:81.706667pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x5{left:65.196800pt;}
.x2{left:75.590533pt;}
.x9{left:80.036800pt;}
.xa{left:83.816267pt;}
.x3{left:84.946000pt;}
.x7{left:94.488133pt;}
.x6{left:100.157600pt;}
.xb{left:142.776933pt;}
.xd{left:167.910800pt;}
.x4{left:238.236267pt;}
.xf{left:302.362267pt;}
.xe{left:321.259867pt;}
.x8{left:329.525467pt;}
.xc{left:459.879333pt;}
.x1{left:492.092667pt;}
}




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