
    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_31c28001c25aa95d359b04d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.734863;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_8daca6158da39b8ae1b1556b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.062000;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_8a494a4a25724314842b0efa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.006000;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_7b7ce5c7ed9c08c8517776bc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.018000;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_915b4c2a7b60678950c82c1a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.713867;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.237498,-0.001035,0.001092,0.249998,0,0);-ms-transform:matrix(0.237498,-0.001035,0.001092,0.249998,0,0);-webkit-transform:matrix(0.237498,-0.001035,0.001092,0.249998,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249998,-0.001092,0.001092,0.249998,0,0);-ms-transform:matrix(0.249998,-0.001092,0.001092,0.249998,0,0);-webkit-transform:matrix(0.249998,-0.001092,0.001092,0.249998,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(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:-26.280000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:72.000000px;}
.ls1d{letter-spacing:-6.720000px;}
.ls2c{letter-spacing:-5.580000px;}
.ls1f{letter-spacing:-4.140000px;}
.ls17{letter-spacing:-4.080000px;}
.ls7{letter-spacing:-2.880000px;}
.lsc{letter-spacing:-2.820000px;}
.ls14{letter-spacing:-2.700000px;}
.ls2b{letter-spacing:-2.640000px;}
.ls29{letter-spacing:-2.460000px;}
.ls28{letter-spacing:-2.220000px;}
.ls12{letter-spacing:-2.160000px;}
.ls22{letter-spacing:-1.980000px;}
.ls23{letter-spacing:-1.944000px;}
.ls18{letter-spacing:-1.920000px;}
.ls19{letter-spacing:-1.860000px;}
.lsb{letter-spacing:-1.800000px;}
.ls1c{letter-spacing:-1.620000px;}
.lsf{letter-spacing:-1.320000px;}
.ls6{letter-spacing:-1.296000px;}
.ls15{letter-spacing:-1.200000px;}
.ls21{letter-spacing:-1.140000px;}
.ls20{letter-spacing:-1.080000px;}
.ls13{letter-spacing:-1.020000px;}
.ls2a{letter-spacing:-0.936001px;}
.ls3{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.900000px;}
.ls26{letter-spacing:-0.864000px;}
.ls1e{letter-spacing:-0.840000px;}
.ls9{letter-spacing:-0.780000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.660000px;}
.ls4{letter-spacing:-0.648000px;}
.ls0{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.480000px;}
.ls16{letter-spacing:-0.420000px;}
.ls27{letter-spacing:-0.384000px;}
.lsd{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.240000px;}
.ls24{letter-spacing:-0.180000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:5.760000px;}
.lsa{letter-spacing:395.040000px;}
.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;}
}
.ws2{word-spacing:-29.472000px;}
.ws8f{word-spacing:-26.676000px;}
.ws8d{word-spacing:-21.168025px;}
.ws4d{word-spacing:-21.168000px;}
.ws30{word-spacing:-20.592000px;}
.wsa2{word-spacing:-20.520000px;}
.ws92{word-spacing:-20.304000px;}
.ws4c{word-spacing:-19.224000px;}
.wsa5{word-spacing:-17.784000px;}
.ws26{word-spacing:-17.640000px;}
.ws5d{word-spacing:-17.460000px;}
.ws1f{word-spacing:-17.400000px;}
.ws16{word-spacing:-17.280000px;}
.ws52{word-spacing:-17.160000px;}
.wsbe{word-spacing:-17.100000px;}
.ws79{word-spacing:-16.920000px;}
.ws5c{word-spacing:-16.860000px;}
.ws18{word-spacing:-16.620000px;}
.ws13{word-spacing:-16.320000px;}
.ws10{word-spacing:-15.840000px;}
.ws19{word-spacing:-15.720000px;}
.ws15{word-spacing:-15.480000px;}
.ws6d{word-spacing:-15.420000px;}
.wsa9{word-spacing:-15.180000px;}
.ws98{word-spacing:-15.000000px;}
.ws17{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.820000px;}
.ws3c{word-spacing:-13.560000px;}
.ws63{word-spacing:-13.536000px;}
.ws3b{word-spacing:-13.500000px;}
.ws1{word-spacing:-6.480000px;}
.wsb{word-spacing:-0.144000px;}
.wsc3{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.wsc5{word-spacing:0.288000px;}
.ws31{word-spacing:0.360000px;}
.ws36{word-spacing:0.420000px;}
.ws32{word-spacing:0.480000px;}
.ws7{word-spacing:0.576000px;}
.ws33{word-spacing:0.660000px;}
.ws88{word-spacing:0.720000px;}
.wse{word-spacing:0.780000px;}
.ws4a{word-spacing:0.840000px;}
.wsc8{word-spacing:0.864000px;}
.ws38{word-spacing:0.900000px;}
.ws3{word-spacing:0.936000px;}
.ws8b{word-spacing:0.936001px;}
.ws34{word-spacing:1.020000px;}
.ws8a{word-spacing:1.080000px;}
.ws35{word-spacing:1.200000px;}
.ws8{word-spacing:1.296000px;}
.ws90{word-spacing:2.460000px;}
.ws37{word-spacing:4.080000px;}
.ws39{word-spacing:6.720000px;}
.ws14{word-spacing:44.040000px;}
.ws27{word-spacing:46.680000px;}
.ws11{word-spacing:59.760000px;}
.ws2f{word-spacing:66.360000px;}
.ws2a{word-spacing:66.660000px;}
.ws20{word-spacing:71.100000px;}
.ws1a{word-spacing:72.060000px;}
.ws28{word-spacing:72.420000px;}
.ws23{word-spacing:73.260000px;}
.ws24{word-spacing:75.540000px;}
.ws1c{word-spacing:86.100000px;}
.ws2c{word-spacing:90.600000px;}
.ws29{word-spacing:91.440000px;}
.ws97{word-spacing:107.460000px;}
.ws96{word-spacing:113.826000px;}
.ws25{word-spacing:140.340000px;}
.ws2b{word-spacing:166.740000px;}
.ws2d{word-spacing:168.240000px;}
.ws82{word-spacing:170.760000px;}
.ws1d{word-spacing:172.740000px;}
.ws80{word-spacing:174.720000px;}
.ws71{word-spacing:174.780000px;}
.ws7f{word-spacing:175.020000px;}
.ws6c{word-spacing:176.580000px;}
.ws84{word-spacing:178.140000px;}
.ws85{word-spacing:180.420000px;}
.ws7b{word-spacing:181.980000px;}
.ws1b{word-spacing:182.400000px;}
.ws95{word-spacing:184.320000px;}
.ws6e{word-spacing:184.440000px;}
.ws72{word-spacing:184.860000px;}
.ws94{word-spacing:185.514000px;}
.ws76{word-spacing:186.240000px;}
.ws6f{word-spacing:191.820000px;}
.ws5{word-spacing:194.832000px;}
.ws6{word-spacing:195.480000px;}
.ws4{word-spacing:195.768000px;}
.ws68{word-spacing:196.080000px;}
.ws77{word-spacing:196.140000px;}
.ws81{word-spacing:196.260000px;}
.ws9{word-spacing:197.712000px;}
.ws69{word-spacing:198.420000px;}
.ws73{word-spacing:199.980000px;}
.ws67{word-spacing:203.184000px;}
.ws62{word-spacing:204.288000px;}
.ws5f{word-spacing:204.912000px;}
.ws7c{word-spacing:213.780000px;}
.ws74{word-spacing:214.140000px;}
.ws83{word-spacing:216.420000px;}
.ws78{word-spacing:217.380000px;}
.ws7d{word-spacing:217.860000px;}
.ws70{word-spacing:220.740000px;}
.ws7a{word-spacing:222.060000px;}
.ws60{word-spacing:222.384000px;}
.ws64{word-spacing:227.520000px;}
.ws6a{word-spacing:231.720000px;}
.ws65{word-spacing:238.272000px;}
.ws86{word-spacing:241.920000px;}
.ws5e{word-spacing:242.784000px;}
.ws41{word-spacing:245.400000px;}
.ws61{word-spacing:246.096000px;}
.ws6b{word-spacing:246.180000px;}
.ws43{word-spacing:246.840000px;}
.ws3f{word-spacing:250.140000px;}
.wsa0{word-spacing:250.380000px;}
.ws3d{word-spacing:251.160000px;}
.ws7e{word-spacing:251.460000px;}
.ws21{word-spacing:255.060000px;}
.ws49{word-spacing:256.680000px;}
.ws75{word-spacing:262.800000px;}
.ws9a{word-spacing:263.400000px;}
.ws3e{word-spacing:265.800000px;}
.ws45{word-spacing:268.080000px;}
.ws47{word-spacing:270.840000px;}
.ws66{word-spacing:271.488000px;}
.ws1e{word-spacing:273.420000px;}
.ws2e{word-spacing:274.380000px;}
.ws99{word-spacing:282.900000px;}
.ws22{word-spacing:283.080000px;}
.ws9f{word-spacing:292.920000px;}
.ws9b{word-spacing:297.360000px;}
.ws9e{word-spacing:298.740000px;}
.ws9c{word-spacing:299.400000px;}
.wsa6{word-spacing:317.940000px;}
.wsb5{word-spacing:320.100000px;}
.ws42{word-spacing:320.640000px;}
.wsb2{word-spacing:322.440000px;}
.ws40{word-spacing:322.680000px;}
.wsb1{word-spacing:322.980000px;}
.wsb0{word-spacing:323.580000px;}
.wsae{word-spacing:323.640000px;}
.wsaf{word-spacing:323.700000px;}
.ws44{word-spacing:324.360000px;}
.wsb6{word-spacing:324.780000px;}
.ws46{word-spacing:325.140000px;}
.wsa8{word-spacing:325.560000px;}
.wsbb{word-spacing:325.980000px;}
.wsa7{word-spacing:326.160000px;}
.wsac{word-spacing:328.680000px;}
.wsb3{word-spacing:329.700000px;}
.ws48{word-spacing:329.940000px;}
.wsaa{word-spacing:334.260000px;}
.wsba{word-spacing:335.580000px;}
.ws9d{word-spacing:335.820000px;}
.wsad{word-spacing:336.120000px;}
.wsb9{word-spacing:337.020000px;}
.wsb4{word-spacing:338.100000px;}
.wsb7{word-spacing:338.400000px;}
.wsbd{word-spacing:339.720000px;}
.wsab{word-spacing:343.620000px;}
.wsbc{word-spacing:346.080000px;}
.wsc0{word-spacing:347.700000px;}
.wsbf{word-spacing:348.060000px;}
.wsc1{word-spacing:348.240000px;}
.wsb8{word-spacing:350.460000px;}
.wsc2{word-spacing:355.860000px;}
.ws50{word-spacing:436.380000px;}
.ws57{word-spacing:559.620000px;}
.ws54{word-spacing:567.240000px;}
.ws53{word-spacing:569.760000px;}
.ws51{word-spacing:607.020000px;}
.ws4f{word-spacing:607.320000px;}
.ws58{word-spacing:614.520000px;}
.ws55{word-spacing:614.700000px;}
.wsd{word-spacing:617.640000px;}
.ws56{word-spacing:629.760000px;}
.ws93{word-spacing:692.340000px;}
.ws5b{word-spacing:982.920000px;}
.wsc7{word-spacing:6783.840000px;}
.wsa1{word-spacing:6785.160000px;}
.wsa4{word-spacing:6785.580000px;}
.wsc4{word-spacing:6786.180000px;}
.ws8e{word-spacing:6790.260000px;}
.wsc6{word-spacing:6790.680000px;}
.ws89{word-spacing:6792.480000px;}
.ws91{word-spacing:6793.500000px;}
.ws8c{word-spacing:6795.960000px;}
.wsa3{word-spacing:6799.560000px;}
.wsc9{word-spacing:6799.680000px;}
.ws5a{word-spacing:6800.580000px;}
.ws59{word-spacing:6802.200000px;}
.ws87{word-spacing:6804.720000px;}
.ws4b{word-spacing:6808.440000px;}
.ws4e{word-spacing:6808.980000px;}
.wsf{word-spacing:6820.560000px;}
.wsc{word-spacing:6820.860000px;}
.ws3a{word-spacing:6824.340000px;}
.wsa{word-spacing:6828.960000px;}
._9{margin-left:-206.712000px;}
._13{margin-left:-203.918400px;}
._8{margin-left:-194.817600px;}
._d{margin-left:-163.461600px;}
._19{margin-left:-152.222400px;}
._17{margin-left:-105.285600px;}
._a{margin-left:-49.852800px;}
._16{margin-left:-40.536000px;}
._12{margin-left:-24.840000px;}
._18{margin-left:-18.295200px;}
._5{margin-left:-16.416000px;}
._1{margin-left:-14.277600px;}
._11{margin-left:-9.000000px;}
._0{margin-left:-7.128000px;}
._1b{margin-left:-5.551200px;}
._2{margin-left:-4.320000px;}
._4{margin-left:-3.024000px;}
._3{margin-left:-1.512000px;}
._6{width:1.576800px;}
._15{width:2.592000px;}
._88{width:3.649200px;}
._3f{width:4.788000px;}
._50{width:6.612000px;}
._1a{width:33.199200px;}
._1c{width:43.992000px;}
._1f{width:47.973600px;}
._22{width:67.032000px;}
._1e{width:68.832000px;}
._86{width:75.828000px;}
._4b{width:82.320000px;}
._21{width:87.998400px;}
._10{width:90.936000px;}
._e{width:96.840000px;}
._1d{width:101.167200px;}
._41{width:104.040000px;}
._4e{width:105.924000px;}
._40{width:107.700000px;}
._47{width:109.380000px;}
._23{width:111.160800px;}
._5a{width:119.796000px;}
._14{width:120.852000px;}
._44{width:124.334400px;}
._4f{width:125.460000px;}
._7e{width:131.076000px;}
._b{width:153.360000px;}
._20{width:157.197600px;}
._52{width:158.520000px;}
._42{width:169.123200px;}
._f{width:174.189600px;}
._51{width:177.264000px;}
._46{width:179.940000px;}
._45{width:188.040000px;}
._53{width:189.720000px;}
._4c{width:191.450400px;}
._c{width:194.112000px;}
._7{width:195.192000px;}
._82{width:196.608000px;}
._76{width:204.744000px;}
._7c{width:211.572000px;}
._80{width:214.320000px;}
._48{width:215.400000px;}
._83{width:219.588000px;}
._87{width:220.992000px;}
._55{width:230.064000px;}
._7d{width:234.060000px;}
._84{width:235.843200px;}
._7b{width:237.312000px;}
._7f{width:239.700000px;}
._81{width:245.520000px;}
._85{width:254.040000px;}
._8b{width:267.600000px;}
._59{width:274.243200px;}
._25{width:277.044000px;}
._5d{width:281.880000px;}
._7a{width:283.303200px;}
._4a{width:287.700000px;}
._54{width:290.880000px;}
._49{width:293.340000px;}
._4d{width:299.820000px;}
._43{width:301.260000px;}
._63{width:305.700000px;}
._8a{width:308.520000px;}
._6b{width:310.920000px;}
._8e{width:311.956200px;}
._61{width:314.064000px;}
._60{width:315.720000px;}
._62{width:318.480000px;}
._65{width:321.600000px;}
._57{width:323.280000px;}
._8d{width:330.564000px;}
._67{width:332.580000px;}
._56{width:334.800000px;}
._5c{width:336.120000px;}
._5b{width:339.060000px;}
._5f{width:340.200000px;}
._6d{width:341.400000px;}
._6a{width:343.440000px;}
._66{width:344.460000px;}
._58{width:348.960000px;}
._68{width:350.040000px;}
._92{width:351.643200px;}
._a0{width:355.320000px;}
._89{width:364.284000px;}
._a5{width:367.740000px;}
._94{width:369.576000px;}
._90{width:370.644000px;}
._ac{width:375.840000px;}
._6f{width:376.848000px;}
._a3{width:385.872000px;}
._72{width:397.020000px;}
._64{width:402.348000px;}
._36{width:404.100000px;}
._29{width:407.340000px;}
._70{width:420.108000px;}
._31{width:428.100000px;}
._2b{width:431.220000px;}
._2f{width:432.948000px;}
._2e{width:435.144000px;}
._28{width:444.732000px;}
._33{width:447.252000px;}
._26{width:455.450400px;}
._73{width:472.620000px;}
._2c{width:482.940000px;}
._69{width:497.628000px;}
._5e{width:517.152000px;}
._6c{width:520.608000px;}
._24{width:531.972000px;}
._6e{width:533.820000px;}
._35{width:535.860000px;}
._30{width:545.616000px;}
._27{width:549.000000px;}
._9d{width:557.808000px;}
._2d{width:563.760000px;}
._79{width:572.472000px;}
._74{width:573.480000px;}
._2a{width:580.800000px;}
._34{width:582.792000px;}
._8f{width:592.476000px;}
._97{width:618.787200px;}
._99{width:621.564000px;}
._78{width:626.724000px;}
._93{width:632.724000px;}
._77{width:634.860000px;}
._32{width:637.044000px;}
._75{width:638.563200px;}
._37{width:641.064000px;}
._71{width:649.658400px;}
._38{width:681.504000px;}
._8c{width:684.252000px;}
._95{width:691.171200px;}
._aa{width:698.412000px;}
._3e{width:707.844000px;}
._91{width:732.504000px;}
._3b{width:765.120000px;}
._3a{width:767.532000px;}
._ab{width:796.267200px;}
._a9{width:799.380000px;}
._9e{width:831.348000px;}
._96{width:844.178400px;}
._3d{width:846.600000px;}
._3c{width:848.100000px;}
._39{width:883.380000px;}
._9a{width:900.408000px;}
._9f{width:973.951200px;}
._a6{width:999.660000px;}
._9c{width:1008.127200px;}
._9b{width:1013.532000px;}
._98{width:1019.930400px;}
._a4{width:1108.963200px;}
._a7{width:1111.368000px;}
._ad{width:1144.716000px;}
._a2{width:1169.808000px;}
._a8{width:1212.924000px;}
._a1{width:1585.423200px;}
.fc5{color:rgb(48,88,159);}
.fc2{color:rgb(62,173,184);}
.fc6{color:transparent;}
.fc1{color:rgb(29,35,42);}
.fc4{color:rgb(35,31,32);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:72.000086px;}
.fs2{font-size:96.000000px;}
.fs4{font-size:108.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:29.788433px;}
.y65{bottom:41.834700px;}
.y20{bottom:49.792350px;}
.yab{bottom:50.834700px;}
.y7b{bottom:59.792100px;}
.y5b{bottom:59.834700px;}
.y7c{bottom:62.189400px;}
.y4d{bottom:77.834700px;}
.yaa{bottom:86.834700px;}
.y4c{bottom:95.834700px;}
.y31{bottom:104.834700px;}
.ya4{bottom:113.834550px;}
.y85{bottom:113.834700px;}
.y38{bottom:122.834700px;}
.y81{bottom:124.971900px;}
.y82{bottom:127.369650px;}
.y1{bottom:129.481950px;}
.y4b{bottom:131.834700px;}
.y88{bottom:137.834700px;}
.y30{bottom:140.834700px;}
.y7a{bottom:146.834700px;}
.ya3{bottom:157.927500px;}
.y1f{bottom:158.834700px;}
.y4a{bottom:167.834700px;}
.y2f{bottom:176.834700px;}
.y79{bottom:182.834700px;}
.y1e{bottom:185.834700px;}
.y37{bottom:194.834700px;}
.ya2{bottom:196.717500px;}
.y1d{bottom:212.834700px;}
.y87{bottom:218.834700px;}
.y36{bottom:230.834700px;}
.ya1{bottom:235.507500px;}
.y1c{bottom:239.834700px;}
.y5a{bottom:248.834700px;}
.y78{bottom:263.834700px;}
.y1b{bottom:266.834700px;}
.ya0{bottom:274.297500px;}
.y49{bottom:275.834700px;}
.y59{bottom:281.834700px;}
.y2e{bottom:284.834700px;}
.y1a{bottom:293.834700px;}
.y58{bottom:299.834700px;}
.y35{bottom:302.834700px;}
.y48{bottom:311.834700px;}
.y9f{bottom:313.087500px;}
.y19{bottom:320.834700px;}
.y57{bottom:335.834700px;}
.y34{bottom:338.834700px;}
.y18{bottom:347.834700px;}
.y9e{bottom:351.877500px;}
.y56{bottom:353.834700px;}
.y6d{bottom:356.834700px;}
.y77{bottom:371.834700px;}
.y17{bottom:374.834700px;}
.y86{bottom:380.834700px;}
.y55{bottom:389.834700px;}
.y9d{bottom:390.667500px;}
.y6c{bottom:392.834700px;}
.y16{bottom:401.834700px;}
.y47{bottom:407.834700px;}
.y2d{bottom:410.834700px;}
.y54{bottom:425.834700px;}
.y15{bottom:428.834700px;}
.y9c{bottom:429.457500px;}
.y76{bottom:434.834700px;}
.y46{bottom:443.834700px;}
.y2c{bottom:446.834700px;}
.y14{bottom:455.834700px;}
.y53{bottom:461.834700px;}
.y6b{bottom:464.834700px;}
.y9b{bottom:468.247500px;}
.y75{bottom:470.834700px;}
.y45{bottom:479.834700px;}
.y13{bottom:482.834700px;}
.y64{bottom:488.834700px;}
.y6a{bottom:500.834700px;}
.y74{bottom:506.834700px;}
.y9a{bottom:507.037500px;}
.y12{bottom:509.834700px;}
.y44{bottom:515.834700px;}
.y33{bottom:518.834700px;}
.y63{bottom:524.834700px;}
.y7e{bottom:527.834700px;}
.y52{bottom:533.834700px;}
.y11{bottom:536.834700px;}
.y73{bottom:542.834700px;}
.y99{bottom:545.827500px;}
.y43{bottom:551.834700px;}
.y2b{bottom:554.834700px;}
.y62{bottom:560.834700px;}
.y10{bottom:563.834700px;}
.y51{bottom:569.834700px;}
.y69{bottom:572.834700px;}
.y98{bottom:584.617500px;}
.y42{bottom:587.834700px;}
.yf{bottom:590.834700px;}
.y72{bottom:596.834700px;}
.y68{bottom:608.834700px;}
.y71{bottom:614.834700px;}
.ye{bottom:617.834700px;}
.y83{bottom:622.806450px;}
.y97{bottom:623.407500px;}
.y41{bottom:623.834700px;}
.y84{bottom:625.197450px;}
.y2a{bottom:626.834700px;}
.y7f{bottom:631.506750px;}
.y61{bottom:632.834700px;}
.y80{bottom:633.906150px;}
.y50{bottom:641.834700px;}
.yd{bottom:644.834700px;}
.y70{bottom:650.834700px;}
.y4f{bottom:659.834700px;}
.y96{bottom:662.197500px;}
.y29{bottom:662.834700px;}
.y6f{bottom:668.834700px;}
.yc{bottom:671.834700px;}
.y4e{bottom:677.834700px;}
.ya9{bottom:680.834700px;}
.yb{bottom:698.834700px;}
.y95{bottom:700.987500px;}
.y67{bottom:707.834700px;}
.y60{bottom:713.834700px;}
.ya8{bottom:716.834700px;}
.y6e{bottom:722.834700px;}
.y28{bottom:734.834700px;}
.y94{bottom:739.777500px;}
.y40{bottom:740.834700px;}
.y27{bottom:770.834700px;}
.y3f{bottom:776.834700px;}
.y93{bottom:778.567500px;}
.y66{bottom:785.834700px;}
.ya7{bottom:788.834700px;}
.y5f{bottom:794.834700px;}
.y26{bottom:806.834700px;}
.y92{bottom:817.357500px;}
.y3e{bottom:821.834700px;}
.ya6{bottom:824.834700px;}
.y5e{bottom:830.834700px;}
.y32{bottom:842.834700px;}
.y91{bottom:856.147500px;}
.y3d{bottom:866.834700px;}
.ya{bottom:869.834700px;}
.y25{bottom:878.834700px;}
.y5{bottom:878.888700px;}
.ya5{bottom:887.834700px;}
.y90{bottom:894.937500px;}
.y9{bottom:896.834700px;}
.y3c{bottom:911.834700px;}
.y24{bottom:914.834700px;}
.y8f{bottom:933.727500px;}
.y8{bottom:950.834700px;}
.y4{bottom:950.870700px;}
.y3b{bottom:956.834700px;}
.y8e{bottom:972.517500px;}
.y7{bottom:977.834700px;}
.y23{bottom:986.834700px;}
.y5d{bottom:992.834700px;}
.y8d{bottom:1001.834550px;}
.y3a{bottom:1001.834700px;}
.y8a{bottom:1019.834550px;}
.y22{bottom:1022.834700px;}
.y3{bottom:1022.852700px;}
.y89{bottom:1028.834550px;}
.y5c{bottom:1037.834700px;}
.y8b{bottom:1046.834550px;}
.y8c{bottom:1055.834550px;}
.y39{bottom:1055.834700px;}
.y6{bottom:1058.834700px;}
.y2{bottom:1094.834700px;}
.y21{bottom:1130.834700px;}
.ha{height:38.208000px;}
.h2{height:43.505859px;}
.h6{height:47.760000px;}
.h9{height:48.480000px;}
.h5{height:57.312000px;}
.hb{height:57.312069px;}
.h8{height:58.176000px;}
.hd{height:61.992000px;}
.h4{height:82.656000px;}
.h7{height:92.988000px;}
.hc{height:133.992000px;}
.h3{height:185.976000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x1{left:17.738550px;}
.x2{left:25.154850px;}
.x41{left:26.179200px;}
.x2b{left:27.304200px;}
.xd{left:29.734200px;}
.x9{left:31.646700px;}
.x20{left:64.486350px;}
.xa{left:67.500000px;}
.x2a{left:68.586600px;}
.x12{left:73.951800px;}
.x1e{left:76.951800px;}
.x29{left:78.338100px;}
.x13{left:177.121800px;}
.x1f{left:180.121800px;}
.x14{left:220.621800px;}
.x2d{left:234.424200px;}
.x34{left:237.413400px;}
.x15{left:268.621800px;}
.x28{left:284.108100px;}
.x16{left:312.121800px;}
.x2e{left:315.424200px;}
.x2c{left:361.969200px;}
.x17{left:386.701800px;}
.x2f{left:393.424200px;}
.x18{left:435.121800px;}
.x30{left:475.924200px;}
.x19{left:487.621800px;}
.x1a{left:552.121800px;}
.x31{left:564.004200px;}
.x37{left:615.548700px;}
.x35{left:616.918950px;}
.x1b{left:625.621800px;}
.x32{left:658.759200px;}
.x1c{left:719.701800px;}
.x33{left:736.759200px;}
.x1d{left:812.371800px;}
.xb{left:960.408000px;}
.x27{left:961.615200px;}
.xe{left:967.163250px;}
.xf{left:970.163250px;}
.x26{left:971.363400px;}
.xc{left:975.402000px;}
.x3a{left:1008.913200px;}
.x21{left:1203.788400px;}
.x11{left:1210.906200px;}
.x39{left:1219.111050px;}
.x10{left:1268.056200px;}
.x8{left:1300.904100px;}
.x22{left:1309.913400px;}
.x7{left:1326.212100px;}
.x6{left:1342.664100px;}
.x5{left:1346.498100px;}
.x4{left:1354.220100px;}
.x3{left:1403.758500px;}
.x3b{left:1409.269200px;}
.x23{left:1414.913400px;}
.x38{left:1467.132750px;}
.x3c{left:1502.095200px;}
.x36{left:1510.370250px;}
.x3d{left:1522.849200px;}
.x24{left:1528.508400px;}
.x25{left:1624.508400px;}
.x3f{left:1634.953200px;}
.x3e{left:1635.961200px;}
.x40{left:1642.585200px;}
@media print{
.v2{vertical-align:-23.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:64.000000pt;}
.ls1d{letter-spacing:-5.973333pt;}
.ls2c{letter-spacing:-4.960000pt;}
.ls1f{letter-spacing:-3.680000pt;}
.ls17{letter-spacing:-3.626667pt;}
.ls7{letter-spacing:-2.560000pt;}
.lsc{letter-spacing:-2.506667pt;}
.ls14{letter-spacing:-2.400000pt;}
.ls2b{letter-spacing:-2.346667pt;}
.ls29{letter-spacing:-2.186667pt;}
.ls28{letter-spacing:-1.973333pt;}
.ls12{letter-spacing:-1.920000pt;}
.ls22{letter-spacing:-1.760000pt;}
.ls23{letter-spacing:-1.728000pt;}
.ls18{letter-spacing:-1.706667pt;}
.ls19{letter-spacing:-1.653333pt;}
.lsb{letter-spacing:-1.600000pt;}
.ls1c{letter-spacing:-1.440000pt;}
.lsf{letter-spacing:-1.173333pt;}
.ls6{letter-spacing:-1.152000pt;}
.ls15{letter-spacing:-1.066667pt;}
.ls21{letter-spacing:-1.013333pt;}
.ls20{letter-spacing:-0.960000pt;}
.ls13{letter-spacing:-0.906667pt;}
.ls2a{letter-spacing:-0.832001pt;}
.ls3{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.800000pt;}
.ls26{letter-spacing:-0.768000pt;}
.ls1e{letter-spacing:-0.746667pt;}
.ls9{letter-spacing:-0.693333pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.586667pt;}
.ls4{letter-spacing:-0.576000pt;}
.ls0{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.426667pt;}
.ls16{letter-spacing:-0.373333pt;}
.ls27{letter-spacing:-0.341333pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls24{letter-spacing:-0.160000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:5.120000pt;}
.lsa{letter-spacing:351.146667pt;}
.ws2{word-spacing:-26.197333pt;}
.ws8f{word-spacing:-23.712000pt;}
.ws8d{word-spacing:-18.816023pt;}
.ws4d{word-spacing:-18.816000pt;}
.ws30{word-spacing:-18.304000pt;}
.wsa2{word-spacing:-18.240000pt;}
.ws92{word-spacing:-18.048000pt;}
.ws4c{word-spacing:-17.088000pt;}
.wsa5{word-spacing:-15.808000pt;}
.ws26{word-spacing:-15.680000pt;}
.ws5d{word-spacing:-15.520000pt;}
.ws1f{word-spacing:-15.466667pt;}
.ws16{word-spacing:-15.360000pt;}
.ws52{word-spacing:-15.253333pt;}
.wsbe{word-spacing:-15.200000pt;}
.ws79{word-spacing:-15.040000pt;}
.ws5c{word-spacing:-14.986667pt;}
.ws18{word-spacing:-14.773333pt;}
.ws13{word-spacing:-14.506667pt;}
.ws10{word-spacing:-14.080000pt;}
.ws19{word-spacing:-13.973333pt;}
.ws15{word-spacing:-13.760000pt;}
.ws6d{word-spacing:-13.706667pt;}
.wsa9{word-spacing:-13.493333pt;}
.ws98{word-spacing:-13.333333pt;}
.ws17{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.173333pt;}
.ws3c{word-spacing:-12.053333pt;}
.ws63{word-spacing:-12.032000pt;}
.ws3b{word-spacing:-12.000000pt;}
.ws1{word-spacing:-5.760000pt;}
.wsb{word-spacing:-0.128000pt;}
.wsc3{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.wsc5{word-spacing:0.256000pt;}
.ws31{word-spacing:0.320000pt;}
.ws36{word-spacing:0.373333pt;}
.ws32{word-spacing:0.426667pt;}
.ws7{word-spacing:0.512000pt;}
.ws33{word-spacing:0.586667pt;}
.ws88{word-spacing:0.640000pt;}
.wse{word-spacing:0.693333pt;}
.ws4a{word-spacing:0.746667pt;}
.wsc8{word-spacing:0.768000pt;}
.ws38{word-spacing:0.800000pt;}
.ws3{word-spacing:0.832000pt;}
.ws8b{word-spacing:0.832001pt;}
.ws34{word-spacing:0.906667pt;}
.ws8a{word-spacing:0.960000pt;}
.ws35{word-spacing:1.066667pt;}
.ws8{word-spacing:1.152000pt;}
.ws90{word-spacing:2.186667pt;}
.ws37{word-spacing:3.626667pt;}
.ws39{word-spacing:5.973333pt;}
.ws14{word-spacing:39.146667pt;}
.ws27{word-spacing:41.493333pt;}
.ws11{word-spacing:53.120000pt;}
.ws2f{word-spacing:58.986667pt;}
.ws2a{word-spacing:59.253333pt;}
.ws20{word-spacing:63.200000pt;}
.ws1a{word-spacing:64.053333pt;}
.ws28{word-spacing:64.373333pt;}
.ws23{word-spacing:65.120000pt;}
.ws24{word-spacing:67.146667pt;}
.ws1c{word-spacing:76.533333pt;}
.ws2c{word-spacing:80.533333pt;}
.ws29{word-spacing:81.280000pt;}
.ws97{word-spacing:95.520000pt;}
.ws96{word-spacing:101.178667pt;}
.ws25{word-spacing:124.746667pt;}
.ws2b{word-spacing:148.213333pt;}
.ws2d{word-spacing:149.546667pt;}
.ws82{word-spacing:151.786667pt;}
.ws1d{word-spacing:153.546667pt;}
.ws80{word-spacing:155.306667pt;}
.ws71{word-spacing:155.360000pt;}
.ws7f{word-spacing:155.573333pt;}
.ws6c{word-spacing:156.960000pt;}
.ws84{word-spacing:158.346667pt;}
.ws85{word-spacing:160.373333pt;}
.ws7b{word-spacing:161.760000pt;}
.ws1b{word-spacing:162.133333pt;}
.ws95{word-spacing:163.840000pt;}
.ws6e{word-spacing:163.946667pt;}
.ws72{word-spacing:164.320000pt;}
.ws94{word-spacing:164.901333pt;}
.ws76{word-spacing:165.546667pt;}
.ws6f{word-spacing:170.506667pt;}
.ws5{word-spacing:173.184000pt;}
.ws6{word-spacing:173.760000pt;}
.ws4{word-spacing:174.016000pt;}
.ws68{word-spacing:174.293333pt;}
.ws77{word-spacing:174.346667pt;}
.ws81{word-spacing:174.453333pt;}
.ws9{word-spacing:175.744000pt;}
.ws69{word-spacing:176.373333pt;}
.ws73{word-spacing:177.760000pt;}
.ws67{word-spacing:180.608000pt;}
.ws62{word-spacing:181.589333pt;}
.ws5f{word-spacing:182.144000pt;}
.ws7c{word-spacing:190.026667pt;}
.ws74{word-spacing:190.346667pt;}
.ws83{word-spacing:192.373333pt;}
.ws78{word-spacing:193.226667pt;}
.ws7d{word-spacing:193.653333pt;}
.ws70{word-spacing:196.213333pt;}
.ws7a{word-spacing:197.386667pt;}
.ws60{word-spacing:197.674667pt;}
.ws64{word-spacing:202.240000pt;}
.ws6a{word-spacing:205.973333pt;}
.ws65{word-spacing:211.797333pt;}
.ws86{word-spacing:215.040000pt;}
.ws5e{word-spacing:215.808000pt;}
.ws41{word-spacing:218.133333pt;}
.ws61{word-spacing:218.752000pt;}
.ws6b{word-spacing:218.826667pt;}
.ws43{word-spacing:219.413333pt;}
.ws3f{word-spacing:222.346667pt;}
.wsa0{word-spacing:222.560000pt;}
.ws3d{word-spacing:223.253333pt;}
.ws7e{word-spacing:223.520000pt;}
.ws21{word-spacing:226.720000pt;}
.ws49{word-spacing:228.160000pt;}
.ws75{word-spacing:233.600000pt;}
.ws9a{word-spacing:234.133333pt;}
.ws3e{word-spacing:236.266667pt;}
.ws45{word-spacing:238.293333pt;}
.ws47{word-spacing:240.746667pt;}
.ws66{word-spacing:241.322667pt;}
.ws1e{word-spacing:243.040000pt;}
.ws2e{word-spacing:243.893333pt;}
.ws99{word-spacing:251.466667pt;}
.ws22{word-spacing:251.626667pt;}
.ws9f{word-spacing:260.373333pt;}
.ws9b{word-spacing:264.320000pt;}
.ws9e{word-spacing:265.546667pt;}
.ws9c{word-spacing:266.133333pt;}
.wsa6{word-spacing:282.613333pt;}
.wsb5{word-spacing:284.533333pt;}
.ws42{word-spacing:285.013333pt;}
.wsb2{word-spacing:286.613333pt;}
.ws40{word-spacing:286.826667pt;}
.wsb1{word-spacing:287.093333pt;}
.wsb0{word-spacing:287.626667pt;}
.wsae{word-spacing:287.680000pt;}
.wsaf{word-spacing:287.733333pt;}
.ws44{word-spacing:288.320000pt;}
.wsb6{word-spacing:288.693333pt;}
.ws46{word-spacing:289.013333pt;}
.wsa8{word-spacing:289.386667pt;}
.wsbb{word-spacing:289.760000pt;}
.wsa7{word-spacing:289.920000pt;}
.wsac{word-spacing:292.160000pt;}
.wsb3{word-spacing:293.066667pt;}
.ws48{word-spacing:293.280000pt;}
.wsaa{word-spacing:297.120000pt;}
.wsba{word-spacing:298.293333pt;}
.ws9d{word-spacing:298.506667pt;}
.wsad{word-spacing:298.773333pt;}
.wsb9{word-spacing:299.573333pt;}
.wsb4{word-spacing:300.533333pt;}
.wsb7{word-spacing:300.800000pt;}
.wsbd{word-spacing:301.973333pt;}
.wsab{word-spacing:305.440000pt;}
.wsbc{word-spacing:307.626667pt;}
.wsc0{word-spacing:309.066667pt;}
.wsbf{word-spacing:309.386667pt;}
.wsc1{word-spacing:309.546667pt;}
.wsb8{word-spacing:311.520000pt;}
.wsc2{word-spacing:316.320000pt;}
.ws50{word-spacing:387.893333pt;}
.ws57{word-spacing:497.440000pt;}
.ws54{word-spacing:504.213333pt;}
.ws53{word-spacing:506.453333pt;}
.ws51{word-spacing:539.573333pt;}
.ws4f{word-spacing:539.840000pt;}
.ws58{word-spacing:546.240000pt;}
.ws55{word-spacing:546.400000pt;}
.wsd{word-spacing:549.013333pt;}
.ws56{word-spacing:559.786667pt;}
.ws93{word-spacing:615.413333pt;}
.ws5b{word-spacing:873.706667pt;}
.wsc7{word-spacing:6030.080000pt;}
.wsa1{word-spacing:6031.253333pt;}
.wsa4{word-spacing:6031.626667pt;}
.wsc4{word-spacing:6032.160000pt;}
.ws8e{word-spacing:6035.786667pt;}
.wsc6{word-spacing:6036.160000pt;}
.ws89{word-spacing:6037.760000pt;}
.ws91{word-spacing:6038.666667pt;}
.ws8c{word-spacing:6040.853333pt;}
.wsa3{word-spacing:6044.053333pt;}
.wsc9{word-spacing:6044.160000pt;}
.ws5a{word-spacing:6044.960000pt;}
.ws59{word-spacing:6046.400000pt;}
.ws87{word-spacing:6048.640000pt;}
.ws4b{word-spacing:6051.946667pt;}
.ws4e{word-spacing:6052.426667pt;}
.wsf{word-spacing:6062.720000pt;}
.wsc{word-spacing:6062.986667pt;}
.ws3a{word-spacing:6066.080000pt;}
.wsa{word-spacing:6070.186667pt;}
._9{margin-left:-183.744000pt;}
._13{margin-left:-181.260800pt;}
._8{margin-left:-173.171200pt;}
._d{margin-left:-145.299200pt;}
._19{margin-left:-135.308800pt;}
._17{margin-left:-93.587200pt;}
._a{margin-left:-44.313600pt;}
._16{margin-left:-36.032000pt;}
._12{margin-left:-22.080000pt;}
._18{margin-left:-16.262400pt;}
._5{margin-left:-14.592000pt;}
._1{margin-left:-12.691200pt;}
._11{margin-left:-8.000000pt;}
._0{margin-left:-6.336000pt;}
._1b{margin-left:-4.934400pt;}
._2{margin-left:-3.840000pt;}
._4{margin-left:-2.688000pt;}
._3{margin-left:-1.344000pt;}
._6{width:1.401600pt;}
._15{width:2.304000pt;}
._88{width:3.243733pt;}
._3f{width:4.256000pt;}
._50{width:5.877333pt;}
._1a{width:29.510400pt;}
._1c{width:39.104000pt;}
._1f{width:42.643200pt;}
._22{width:59.584000pt;}
._1e{width:61.184000pt;}
._86{width:67.402667pt;}
._4b{width:73.173333pt;}
._21{width:78.220800pt;}
._10{width:80.832000pt;}
._e{width:86.080000pt;}
._1d{width:89.926400pt;}
._41{width:92.480000pt;}
._4e{width:94.154667pt;}
._40{width:95.733333pt;}
._47{width:97.226667pt;}
._23{width:98.809600pt;}
._5a{width:106.485333pt;}
._14{width:107.424000pt;}
._44{width:110.519467pt;}
._4f{width:111.520000pt;}
._7e{width:116.512000pt;}
._b{width:136.320000pt;}
._20{width:139.731200pt;}
._52{width:140.906667pt;}
._42{width:150.331733pt;}
._f{width:154.835200pt;}
._51{width:157.568000pt;}
._46{width:159.946667pt;}
._45{width:167.146667pt;}
._53{width:168.640000pt;}
._4c{width:170.178133pt;}
._c{width:172.544000pt;}
._7{width:173.504000pt;}
._82{width:174.762667pt;}
._76{width:181.994667pt;}
._7c{width:188.064000pt;}
._80{width:190.506667pt;}
._48{width:191.466667pt;}
._83{width:195.189333pt;}
._87{width:196.437333pt;}
._55{width:204.501333pt;}
._7d{width:208.053333pt;}
._84{width:209.638400pt;}
._7b{width:210.944000pt;}
._7f{width:213.066667pt;}
._81{width:218.240000pt;}
._85{width:225.813333pt;}
._8b{width:237.866667pt;}
._59{width:243.771733pt;}
._25{width:246.261333pt;}
._5d{width:250.560000pt;}
._7a{width:251.825067pt;}
._4a{width:255.733333pt;}
._54{width:258.560000pt;}
._49{width:260.746667pt;}
._4d{width:266.506667pt;}
._43{width:267.786667pt;}
._63{width:271.733333pt;}
._8a{width:274.240000pt;}
._6b{width:276.373333pt;}
._8e{width:277.294400pt;}
._61{width:279.168000pt;}
._60{width:280.640000pt;}
._62{width:283.093333pt;}
._65{width:285.866667pt;}
._57{width:287.360000pt;}
._8d{width:293.834667pt;}
._67{width:295.626667pt;}
._56{width:297.600000pt;}
._5c{width:298.773333pt;}
._5b{width:301.386667pt;}
._5f{width:302.400000pt;}
._6d{width:303.466667pt;}
._6a{width:305.280000pt;}
._66{width:306.186667pt;}
._58{width:310.186667pt;}
._68{width:311.146667pt;}
._92{width:312.571733pt;}
._a0{width:315.840000pt;}
._89{width:323.808000pt;}
._a5{width:326.880000pt;}
._94{width:328.512000pt;}
._90{width:329.461333pt;}
._ac{width:334.080000pt;}
._6f{width:334.976000pt;}
._a3{width:342.997333pt;}
._72{width:352.906667pt;}
._64{width:357.642667pt;}
._36{width:359.200000pt;}
._29{width:362.080000pt;}
._70{width:373.429333pt;}
._31{width:380.533333pt;}
._2b{width:383.306667pt;}
._2f{width:384.842667pt;}
._2e{width:386.794667pt;}
._28{width:395.317333pt;}
._33{width:397.557333pt;}
._26{width:404.844800pt;}
._73{width:420.106667pt;}
._2c{width:429.280000pt;}
._69{width:442.336000pt;}
._5e{width:459.690667pt;}
._6c{width:462.762667pt;}
._24{width:472.864000pt;}
._6e{width:474.506667pt;}
._35{width:476.320000pt;}
._30{width:484.992000pt;}
._27{width:488.000000pt;}
._9d{width:495.829333pt;}
._2d{width:501.120000pt;}
._79{width:508.864000pt;}
._74{width:509.760000pt;}
._2a{width:516.266667pt;}
._34{width:518.037333pt;}
._8f{width:526.645333pt;}
._97{width:550.033067pt;}
._99{width:552.501333pt;}
._78{width:557.088000pt;}
._93{width:562.421333pt;}
._77{width:564.320000pt;}
._32{width:566.261333pt;}
._75{width:567.611733pt;}
._37{width:569.834667pt;}
._71{width:577.474133pt;}
._38{width:605.781333pt;}
._8c{width:608.224000pt;}
._95{width:614.374400pt;}
._aa{width:620.810667pt;}
._3e{width:629.194667pt;}
._91{width:651.114667pt;}
._3b{width:680.106667pt;}
._3a{width:682.250667pt;}
._ab{width:707.793067pt;}
._a9{width:710.560000pt;}
._9e{width:738.976000pt;}
._96{width:750.380800pt;}
._3d{width:752.533333pt;}
._3c{width:753.866667pt;}
._39{width:785.226667pt;}
._9a{width:800.362667pt;}
._9f{width:865.734400pt;}
._a6{width:888.586667pt;}
._9c{width:896.113067pt;}
._9b{width:900.917333pt;}
._98{width:906.604800pt;}
._a4{width:985.745067pt;}
._a7{width:987.882667pt;}
._ad{width:1017.525333pt;}
._a2{width:1039.829333pt;}
._a8{width:1078.154667pt;}
._a1{width:1409.265067pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:64.000077pt;}
.fs2{font-size:85.333333pt;}
.fs4{font-size:96.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:26.478607pt;}
.y65{bottom:37.186400pt;}
.y20{bottom:44.259867pt;}
.yab{bottom:45.186400pt;}
.y7b{bottom:53.148533pt;}
.y5b{bottom:53.186400pt;}
.y7c{bottom:55.279467pt;}
.y4d{bottom:69.186400pt;}
.yaa{bottom:77.186400pt;}
.y4c{bottom:85.186400pt;}
.y31{bottom:93.186400pt;}
.ya4{bottom:101.186267pt;}
.y85{bottom:101.186400pt;}
.y38{bottom:109.186400pt;}
.y81{bottom:111.086133pt;}
.y82{bottom:113.217467pt;}
.y1{bottom:115.095067pt;}
.y4b{bottom:117.186400pt;}
.y88{bottom:122.519733pt;}
.y30{bottom:125.186400pt;}
.y7a{bottom:130.519733pt;}
.ya3{bottom:140.380000pt;}
.y1f{bottom:141.186400pt;}
.y4a{bottom:149.186400pt;}
.y2f{bottom:157.186400pt;}
.y79{bottom:162.519733pt;}
.y1e{bottom:165.186400pt;}
.y37{bottom:173.186400pt;}
.ya2{bottom:174.860000pt;}
.y1d{bottom:189.186400pt;}
.y87{bottom:194.519733pt;}
.y36{bottom:205.186400pt;}
.ya1{bottom:209.340000pt;}
.y1c{bottom:213.186400pt;}
.y5a{bottom:221.186400pt;}
.y78{bottom:234.519733pt;}
.y1b{bottom:237.186400pt;}
.ya0{bottom:243.820000pt;}
.y49{bottom:245.186400pt;}
.y59{bottom:250.519733pt;}
.y2e{bottom:253.186400pt;}
.y1a{bottom:261.186400pt;}
.y58{bottom:266.519733pt;}
.y35{bottom:269.186400pt;}
.y48{bottom:277.186400pt;}
.y9f{bottom:278.300000pt;}
.y19{bottom:285.186400pt;}
.y57{bottom:298.519733pt;}
.y34{bottom:301.186400pt;}
.y18{bottom:309.186400pt;}
.y9e{bottom:312.780000pt;}
.y56{bottom:314.519733pt;}
.y6d{bottom:317.186400pt;}
.y77{bottom:330.519733pt;}
.y17{bottom:333.186400pt;}
.y86{bottom:338.519733pt;}
.y55{bottom:346.519733pt;}
.y9d{bottom:347.260000pt;}
.y6c{bottom:349.186400pt;}
.y16{bottom:357.186400pt;}
.y47{bottom:362.519733pt;}
.y2d{bottom:365.186400pt;}
.y54{bottom:378.519733pt;}
.y15{bottom:381.186400pt;}
.y9c{bottom:381.740000pt;}
.y76{bottom:386.519733pt;}
.y46{bottom:394.519733pt;}
.y2c{bottom:397.186400pt;}
.y14{bottom:405.186400pt;}
.y53{bottom:410.519733pt;}
.y6b{bottom:413.186400pt;}
.y9b{bottom:416.220000pt;}
.y75{bottom:418.519733pt;}
.y45{bottom:426.519733pt;}
.y13{bottom:429.186400pt;}
.y64{bottom:434.519733pt;}
.y6a{bottom:445.186400pt;}
.y74{bottom:450.519733pt;}
.y9a{bottom:450.700000pt;}
.y12{bottom:453.186400pt;}
.y44{bottom:458.519733pt;}
.y33{bottom:461.186400pt;}
.y63{bottom:466.519733pt;}
.y7e{bottom:469.186400pt;}
.y52{bottom:474.519733pt;}
.y11{bottom:477.186400pt;}
.y73{bottom:482.519733pt;}
.y99{bottom:485.180000pt;}
.y43{bottom:490.519733pt;}
.y2b{bottom:493.186400pt;}
.y62{bottom:498.519733pt;}
.y10{bottom:501.186400pt;}
.y51{bottom:506.519733pt;}
.y69{bottom:509.186400pt;}
.y98{bottom:519.660000pt;}
.y42{bottom:522.519733pt;}
.yf{bottom:525.186400pt;}
.y72{bottom:530.519733pt;}
.y68{bottom:541.186400pt;}
.y71{bottom:546.519733pt;}
.ye{bottom:549.186400pt;}
.y83{bottom:553.605733pt;}
.y97{bottom:554.140000pt;}
.y41{bottom:554.519733pt;}
.y84{bottom:555.731067pt;}
.y2a{bottom:557.186400pt;}
.y7f{bottom:561.339333pt;}
.y61{bottom:562.519733pt;}
.y80{bottom:563.472133pt;}
.y50{bottom:570.519733pt;}
.yd{bottom:573.186400pt;}
.y70{bottom:578.519733pt;}
.y4f{bottom:586.519733pt;}
.y96{bottom:588.620000pt;}
.y29{bottom:589.186400pt;}
.y6f{bottom:594.519733pt;}
.yc{bottom:597.186400pt;}
.y4e{bottom:602.519733pt;}
.ya9{bottom:605.186400pt;}
.yb{bottom:621.186400pt;}
.y95{bottom:623.100000pt;}
.y67{bottom:629.186400pt;}
.y60{bottom:634.519733pt;}
.ya8{bottom:637.186400pt;}
.y6e{bottom:642.519733pt;}
.y28{bottom:653.186400pt;}
.y94{bottom:657.580000pt;}
.y40{bottom:658.519733pt;}
.y27{bottom:685.186400pt;}
.y3f{bottom:690.519733pt;}
.y93{bottom:692.060000pt;}
.y66{bottom:698.519733pt;}
.ya7{bottom:701.186400pt;}
.y5f{bottom:706.519733pt;}
.y26{bottom:717.186400pt;}
.y92{bottom:726.540000pt;}
.y3e{bottom:730.519733pt;}
.ya6{bottom:733.186400pt;}
.y5e{bottom:738.519733pt;}
.y32{bottom:749.186400pt;}
.y91{bottom:761.020000pt;}
.y3d{bottom:770.519733pt;}
.ya{bottom:773.186400pt;}
.y25{bottom:781.186400pt;}
.y5{bottom:781.234400pt;}
.ya5{bottom:789.186400pt;}
.y90{bottom:795.500000pt;}
.y9{bottom:797.186400pt;}
.y3c{bottom:810.519733pt;}
.y24{bottom:813.186400pt;}
.y8f{bottom:829.980000pt;}
.y8{bottom:845.186400pt;}
.y4{bottom:845.218400pt;}
.y3b{bottom:850.519733pt;}
.y8e{bottom:864.460000pt;}
.y7{bottom:869.186400pt;}
.y23{bottom:877.186400pt;}
.y5d{bottom:882.519733pt;}
.y8d{bottom:890.519600pt;}
.y3a{bottom:890.519733pt;}
.y8a{bottom:906.519600pt;}
.y22{bottom:909.186400pt;}
.y3{bottom:909.202400pt;}
.y89{bottom:914.519600pt;}
.y5c{bottom:922.519733pt;}
.y8b{bottom:930.519600pt;}
.y8c{bottom:938.519600pt;}
.y39{bottom:938.519733pt;}
.y6{bottom:941.186400pt;}
.y2{bottom:973.186400pt;}
.y21{bottom:1005.186400pt;}
.ha{height:33.962667pt;}
.h2{height:38.671875pt;}
.h6{height:42.453333pt;}
.h9{height:43.093333pt;}
.h5{height:50.944000pt;}
.hb{height:50.944061pt;}
.h8{height:51.712000pt;}
.hd{height:55.104000pt;}
.h4{height:73.472000pt;}
.h7{height:82.656000pt;}
.hc{height:119.104000pt;}
.h3{height:165.312000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x1{left:15.767600pt;}
.x2{left:22.359867pt;}
.x41{left:23.270400pt;}
.x2b{left:24.270400pt;}
.xd{left:26.430400pt;}
.x9{left:28.130400pt;}
.x20{left:57.321200pt;}
.xa{left:60.000000pt;}
.x2a{left:60.965867pt;}
.x12{left:65.734933pt;}
.x1e{left:68.401600pt;}
.x29{left:69.633867pt;}
.x13{left:157.441600pt;}
.x1f{left:160.108267pt;}
.x14{left:196.108267pt;}
.x2d{left:208.377067pt;}
.x34{left:211.034133pt;}
.x15{left:238.774933pt;}
.x28{left:252.540533pt;}
.x16{left:277.441600pt;}
.x2e{left:280.377067pt;}
.x2c{left:321.750400pt;}
.x17{left:343.734933pt;}
.x2f{left:349.710400pt;}
.x18{left:386.774933pt;}
.x30{left:423.043733pt;}
.x19{left:433.441600pt;}
.x1a{left:490.774933pt;}
.x31{left:501.337067pt;}
.x37{left:547.154400pt;}
.x35{left:548.372400pt;}
.x1b{left:556.108267pt;}
.x32{left:585.563733pt;}
.x1c{left:639.734933pt;}
.x33{left:654.897067pt;}
.x1d{left:722.108267pt;}
.xb{left:853.696000pt;}
.x27{left:854.769067pt;}
.xe{left:859.700667pt;}
.xf{left:862.367333pt;}
.x26{left:863.434133pt;}
.xc{left:867.024000pt;}
.x3a{left:896.811733pt;}
.x21{left:1070.034133pt;}
.x11{left:1076.361067pt;}
.x39{left:1083.654267pt;}
.x10{left:1127.161067pt;}
.x8{left:1156.359200pt;}
.x22{left:1164.367467pt;}
.x7{left:1178.855200pt;}
.x6{left:1193.479200pt;}
.x5{left:1196.887200pt;}
.x4{left:1203.751200pt;}
.x3{left:1247.785333pt;}
.x3b{left:1252.683733pt;}
.x23{left:1257.700800pt;}
.x38{left:1304.118000pt;}
.x3c{left:1335.195733pt;}
.x36{left:1342.551333pt;}
.x3d{left:1353.643733pt;}
.x24{left:1358.674133pt;}
.x25{left:1444.007467pt;}
.x3f{left:1453.291733pt;}
.x3e{left:1454.187733pt;}
.x40{left:1460.075733pt;}
}




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