
    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_25426895d4b1df46433900e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900391;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_e583e6cf9cdc873b921ca089.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_a281c66a5c6b25a48e11f5d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_d31a8081dc35f328bde1a58b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_b6920897fd366d7205b27b08.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_4b914941edb5304e2695f97e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_d3080caa4cdcf4b99ff02edb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_da1f5848d9e1b3417bd4a51c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_afd9aa8ba4ae01fd50fd2626.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6455ecc75696af3cb3e52d3e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0f60fc974f474d0b7368d143.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.911133;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-2.220000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.300000px;}
.ls6{letter-spacing:0.523800px;}
.ls2{letter-spacing:0.600000px;}
.ls1{letter-spacing:1.500000px;}
.ls8{letter-spacing:1.976400px;}
.ls5{letter-spacing:9.720000px;}
.ls7{letter-spacing:10.837800px;}
.lsa{letter-spacing:14.018400px;}
.ls9{letter-spacing:14.094000px;}
.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;}
}
.ws4{word-spacing:-25.500000px;}
.ws2{word-spacing:-15.000000px;}
.wsb1{word-spacing:-13.500000px;}
.ws2e{word-spacing:-6.720000px;}
.ws3e{word-spacing:-4.800000px;}
.ws52{word-spacing:-4.680000px;}
.ws9a{word-spacing:-4.560000px;}
.ws46{word-spacing:-4.140000px;}
.wscb{word-spacing:-4.050000px;}
.ws38{word-spacing:-3.840000px;}
.ws1e{word-spacing:-3.300000px;}
.ws97{word-spacing:-3.120000px;}
.wsca{word-spacing:-3.078000px;}
.ws96{word-spacing:-3.060000px;}
.ws59{word-spacing:-2.700000px;}
.wsb9{word-spacing:-2.646000px;}
.ws84{word-spacing:-2.640000px;}
.wsae{word-spacing:-2.580000px;}
.wsd2{word-spacing:-2.430000px;}
.ws68{word-spacing:-2.400000px;}
.ws2f{word-spacing:-2.340000px;}
.ws11{word-spacing:-2.280000px;}
.ws30{word-spacing:-2.220000px;}
.ws75{word-spacing:-2.160000px;}
.ws29{word-spacing:-2.100000px;}
.ws6d{word-spacing:-2.040000px;}
.ws13{word-spacing:-1.980000px;}
.ws67{word-spacing:-1.920000px;}
.wsc7{word-spacing:-1.890000px;}
.wsa8{word-spacing:-1.800000px;}
.wsa2{word-spacing:-1.620000px;}
.ws24{word-spacing:-1.560000px;}
.ws3{word-spacing:-1.500000px;}
.ws44{word-spacing:-1.380000px;}
.wse{word-spacing:-1.320000px;}
.ws36{word-spacing:-1.260000px;}
.wsd0{word-spacing:-1.188000px;}
.ws64{word-spacing:-1.140000px;}
.wsbc{word-spacing:-1.134000px;}
.ws82{word-spacing:-1.080000px;}
.ws10{word-spacing:-1.020000px;}
.ws70{word-spacing:-0.960000px;}
.ws9e{word-spacing:-0.900000px;}
.ws99{word-spacing:-0.840000px;}
.wsc3{word-spacing:-0.810000px;}
.wsac{word-spacing:-0.780000px;}
.ws4d{word-spacing:-0.720000px;}
.ws72{word-spacing:-0.600000px;}
.wsbb{word-spacing:-0.594000px;}
.ws7f{word-spacing:-0.540000px;}
.wsbf{word-spacing:-0.486000px;}
.ws5e{word-spacing:-0.420000px;}
.wsd4{word-spacing:-0.378000px;}
.ws5b{word-spacing:-0.360000px;}
.ws9f{word-spacing:-0.300000px;}
.ws63{word-spacing:-0.120000px;}
.ws94{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.wsc5{word-spacing:0.108000px;}
.ws80{word-spacing:0.180000px;}
.ws81{word-spacing:0.240000px;}
.ws4c{word-spacing:0.480000px;}
.wsb8{word-spacing:0.486000px;}
.ws12{word-spacing:0.540000px;}
.ws87{word-spacing:0.600000px;}
.ws14{word-spacing:0.660000px;}
.ws41{word-spacing:0.840000px;}
.ws2b{word-spacing:0.900000px;}
.ws43{word-spacing:0.960000px;}
.wsa4{word-spacing:1.020000px;}
.ws76{word-spacing:1.080000px;}
.ws88{word-spacing:1.140000px;}
.ws47{word-spacing:1.200000px;}
.ws57{word-spacing:1.260000px;}
.ws9{word-spacing:1.320000px;}
.ws7{word-spacing:1.380000px;}
.ws25{word-spacing:1.440000px;}
.ws8f{word-spacing:1.500000px;}
.ws6a{word-spacing:1.620000px;}
.ws6f{word-spacing:1.680000px;}
.ws1f{word-spacing:1.800000px;}
.ws49{word-spacing:1.980000px;}
.ws16{word-spacing:2.040000px;}
.wsc9{word-spacing:2.052000px;}
.ws2a{word-spacing:2.100000px;}
.ws55{word-spacing:2.160000px;}
.ws23{word-spacing:2.220000px;}
.wsb2{word-spacing:2.268000px;}
.ws39{word-spacing:2.280000px;}
.wsc4{word-spacing:2.322000px;}
.ws51{word-spacing:2.400000px;}
.ws69{word-spacing:2.460000px;}
.ws18{word-spacing:2.520000px;}
.ws92{word-spacing:2.580000px;}
.ws8a{word-spacing:2.640000px;}
.ws22{word-spacing:2.700000px;}
.ws17{word-spacing:2.880000px;}
.ws42{word-spacing:2.940000px;}
.ws6{word-spacing:3.000000px;}
.ws93{word-spacing:3.060000px;}
.wscf{word-spacing:3.186000px;}
.ws50{word-spacing:3.300000px;}
.wsf{word-spacing:3.360000px;}
.ws78{word-spacing:3.420000px;}
.ws98{word-spacing:3.480000px;}
.ws71{word-spacing:3.540000px;}
.wscd{word-spacing:3.618000px;}
.ws5c{word-spacing:3.660000px;}
.ws5d{word-spacing:3.780000px;}
.wsba{word-spacing:3.834000px;}
.ws66{word-spacing:3.840000px;}
.wsbd{word-spacing:3.996000px;}
.ws77{word-spacing:4.020000px;}
.wsab{word-spacing:4.080000px;}
.wsd1{word-spacing:4.158000px;}
.wsaa{word-spacing:4.200000px;}
.ws89{word-spacing:4.260000px;}
.ws62{word-spacing:4.320000px;}
.ws2c{word-spacing:4.380000px;}
.ws15{word-spacing:4.440000px;}
.wsb6{word-spacing:4.590000px;}
.ws32{word-spacing:4.620000px;}
.ws8c{word-spacing:4.680000px;}
.ws6c{word-spacing:4.740000px;}
.ws26{word-spacing:4.800000px;}
.ws95{word-spacing:4.860000px;}
.wsb5{word-spacing:5.022000px;}
.ws7e{word-spacing:5.040000px;}
.ws8e{word-spacing:5.160000px;}
.ws4e{word-spacing:5.280000px;}
.wsd{word-spacing:5.340000px;}
.ws83{word-spacing:5.460000px;}
.wsd5{word-spacing:5.562000px;}
.ws27{word-spacing:5.580000px;}
.ws1b{word-spacing:5.640000px;}
.ws35{word-spacing:5.760000px;}
.ws8b{word-spacing:5.880000px;}
.ws5f{word-spacing:5.940000px;}
.ws5a{word-spacing:6.000000px;}
.ws1d{word-spacing:6.060000px;}
.ws5{word-spacing:6.180000px;}
.ws8d{word-spacing:6.300000px;}
.wsa5{word-spacing:6.360000px;}
.ws37{word-spacing:6.420000px;}
.ws40{word-spacing:6.480000px;}
.ws4a{word-spacing:6.540000px;}
.ws48{word-spacing:6.600000px;}
.ws91{word-spacing:6.660000px;}
.ws9c{word-spacing:6.780000px;}
.ws3a{word-spacing:6.840000px;}
.ws21{word-spacing:6.900000px;}
.ws85{word-spacing:7.020000px;}
.ws56{word-spacing:7.140000px;}
.ws60{word-spacing:7.260000px;}
.wsad{word-spacing:7.320000px;}
.ws28{word-spacing:7.500000px;}
.ws6e{word-spacing:7.560000px;}
.wsa{word-spacing:7.680000px;}
.ws33{word-spacing:7.800000px;}
.wsa0{word-spacing:7.860000px;}
.ws3b{word-spacing:8.040000px;}
.wsaf{word-spacing:8.220000px;}
.ws7d{word-spacing:8.280000px;}
.wsa3{word-spacing:8.400000px;}
.wsa6{word-spacing:8.580000px;}
.ws54{word-spacing:8.640000px;}
.ws20{word-spacing:8.820000px;}
.ws31{word-spacing:8.880000px;}
.wsa7{word-spacing:9.000000px;}
.ws79{word-spacing:9.120000px;}
.wsb0{word-spacing:9.240000px;}
.wsb7{word-spacing:9.342000px;}
.wsa1{word-spacing:9.360000px;}
.ws8{word-spacing:9.420000px;}
.ws3d{word-spacing:9.480000px;}
.ws90{word-spacing:9.540000px;}
.wsb3{word-spacing:9.720000px;}
.wsbe{word-spacing:9.882000px;}
.ws73{word-spacing:9.900000px;}
.ws7a{word-spacing:10.020000px;}
.wsd3{word-spacing:10.098000px;}
.ws3f{word-spacing:10.200000px;}
.wsc1{word-spacing:10.206000px;}
.ws65{word-spacing:10.380000px;}
.ws1c{word-spacing:10.680000px;}
.wsc8{word-spacing:10.854000px;}
.wsb4{word-spacing:10.908000px;}
.ws2d{word-spacing:11.040000px;}
.wsc6{word-spacing:11.340000px;}
.ws1a{word-spacing:11.820000px;}
.ws9b{word-spacing:12.240000px;}
.ws7b{word-spacing:12.480000px;}
.ws9d{word-spacing:12.540000px;}
.ws34{word-spacing:12.960000px;}
.ws4b{word-spacing:13.320000px;}
.wsc2{word-spacing:13.608000px;}
.wsc{word-spacing:13.740000px;}
.wsc0{word-spacing:13.932000px;}
.wsce{word-spacing:14.040000px;}
.wscc{word-spacing:14.094000px;}
.ws86{word-spacing:14.520000px;}
.ws53{word-spacing:14.640000px;}
.ws3c{word-spacing:14.880000px;}
.ws74{word-spacing:15.300000px;}
.wsb{word-spacing:15.600000px;}
.ws61{word-spacing:15.660000px;}
.ws7c{word-spacing:15.780000px;}
.ws4f{word-spacing:16.740000px;}
.ws45{word-spacing:17.520000px;}
.ws6b{word-spacing:17.640000px;}
.ws58{word-spacing:18.660000px;}
.wsa9{word-spacing:19.080000px;}
.ws19{word-spacing:23.100000px;}
.ws1{word-spacing:103.530000px;}
._15{margin-left:-38.280000px;}
._e{margin-left:-30.600000px;}
._f{margin-left:-29.160000px;}
._18{margin-left:-26.460000px;}
._c{margin-left:-24.360000px;}
._17{margin-left:-22.500000px;}
._19{margin-left:-20.520000px;}
._12{margin-left:-18.660000px;}
._16{margin-left:-16.312800px;}
._3{margin-left:-15.000000px;}
._1b{margin-left:-13.440000px;}
._1a{margin-left:-12.172800px;}
._0{margin-left:-6.080400px;}
._10{margin-left:-4.944000px;}
._2{margin-left:-3.812400px;}
._1{margin-left:-1.987200px;}
._b{width:1.152000px;}
._4{width:2.556000px;}
._6{width:3.558000px;}
._a{width:5.358000px;}
._d{width:6.582000px;}
._13{width:7.878000px;}
._9{width:9.546000px;}
._8{width:10.692000px;}
._14{width:12.000000px;}
._7{width:13.170000px;}
._1e{width:14.964000px;}
._1d{width:16.428000px;}
._1f{width:17.508000px;}
._1c{width:19.782000px;}
._21{width:31.017600px;}
._22{width:33.355800px;}
._20{width:34.608600px;}
._11{width:45.000000px;}
._5{width:128.999400px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:90.000000px;}
.fs3{font-size:102.000000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y12{bottom:54.018600px;}
.y11{bottom:72.018600px;}
.y63{bottom:95.083800px;}
.y93{bottom:96.583800px;}
.y62{bottom:113.083800px;}
.y91{bottom:114.583800px;}
.y89{bottom:116.083800px;}
.y35{bottom:117.291150px;}
.ybf{bottom:117.936600px;}
.yee{bottom:129.261900px;}
.y61{bottom:131.083800px;}
.y90{bottom:132.583800px;}
.y88{bottom:134.083800px;}
.ybe{bottom:134.433600px;}
.y34{bottom:135.291150px;}
.y66{bottom:140.083800px;}
.yed{bottom:145.758900px;}
.y60{bottom:149.083800px;}
.y8f{bottom:150.583800px;}
.ybd{bottom:150.930600px;}
.y87{bottom:152.083800px;}
.y33{bottom:153.291150px;}
.yec{bottom:162.255900px;}
.y5f{bottom:167.083800px;}
.ybc{bottom:167.427600px;}
.y8e{bottom:168.583800px;}
.y86{bottom:170.083800px;}
.y32{bottom:171.291150px;}
.yeb{bottom:178.752900px;}
.ybb{bottom:183.924600px;}
.y5e{bottom:185.083800px;}
.y8d{bottom:186.583800px;}
.y31{bottom:189.291150px;}
.yea{bottom:195.249900px;}
.y85{bottom:197.083800px;}
.yba{bottom:200.421600px;}
.y5d{bottom:203.083800px;}
.y8c{bottom:204.583800px;}
.y30{bottom:207.291150px;}
.ye9{bottom:211.746900px;}
.yb9{bottom:216.918600px;}
.y5c{bottom:221.083800px;}
.y8b{bottom:222.583800px;}
.y2f{bottom:225.291150px;}
.y10{bottom:226.431900px;}
.ye8{bottom:228.243900px;}
.yb8{bottom:233.415600px;}
.y5b{bottom:239.083800px;}
.y84{bottom:240.583800px;}
.y2e{bottom:243.291150px;}
.ye7{bottom:244.740900px;}
.yb7{bottom:249.912600px;}
.y5a{bottom:257.083800px;}
.y83{bottom:258.583800px;}
.ye6{bottom:261.237900px;}
.y2d{bottom:261.291150px;}
.yf{bottom:262.431900px;}
.y65{bottom:266.083800px;}
.yb6{bottom:266.409600px;}
.y59{bottom:275.083800px;}
.y82{bottom:276.583800px;}
.ye5{bottom:277.734900px;}
.y2c{bottom:279.291150px;}
.yb5{bottom:282.906600px;}
.y64{bottom:284.083800px;}
.y58{bottom:293.083800px;}
.ye4{bottom:294.231900px;}
.y81{bottom:294.583800px;}
.y2b{bottom:297.291150px;}
.ye{bottom:298.431900px;}
.yb4{bottom:299.403600px;}
.ye3{bottom:310.728900px;}
.y57{bottom:311.083800px;}
.y80{bottom:312.583800px;}
.y2a{bottom:315.291150px;}
.yb3{bottom:315.900600px;}
.y8a{bottom:321.583800px;}
.ye2{bottom:327.225900px;}
.y56{bottom:329.083800px;}
.y7f{bottom:330.583800px;}
.yb2{bottom:332.397600px;}
.y29{bottom:333.291150px;}
.yd{bottom:343.431900px;}
.ye1{bottom:343.722900px;}
.y55{bottom:347.083800px;}
.y7e{bottom:348.583800px;}
.yb1{bottom:348.894600px;}
.y28{bottom:351.291150px;}
.ye0{bottom:360.219900px;}
.y54{bottom:365.083800px;}
.yb0{bottom:365.391600px;}
.y7d{bottom:366.583800px;}
.y27{bottom:369.291150px;}
.ydf{bottom:376.716900px;}
.yaf{bottom:381.888600px;}
.y53{bottom:383.083800px;}
.y7c{bottom:384.583800px;}
.y26{bottom:387.291150px;}
.yc{bottom:388.439400px;}
.yde{bottom:393.213900px;}
.yae{bottom:398.385600px;}
.y52{bottom:401.083800px;}
.y7b{bottom:402.583800px;}
.y25{bottom:405.291150px;}
.ydd{bottom:409.710900px;}
.y67{bottom:410.083800px;}
.yb{bottom:413.931900px;}
.yad{bottom:414.882600px;}
.y51{bottom:419.083800px;}
.y7a{bottom:420.583800px;}
.y24{bottom:423.291150px;}
.ydc{bottom:426.207900px;}
.yac{bottom:431.379600px;}
.y50{bottom:437.083800px;}
.y79{bottom:438.583800px;}
.y23{bottom:441.291150px;}
.ydb{bottom:442.704900px;}
.yab{bottom:447.876600px;}
.ya{bottom:448.431900px;}
.y4f{bottom:455.083800px;}
.y78{bottom:456.583800px;}
.yda{bottom:459.201900px;}
.y22{bottom:459.291150px;}
.yaa{bottom:464.373600px;}
.y4e{bottom:473.083800px;}
.y77{bottom:474.583800px;}
.yd9{bottom:475.698900px;}
.y21{bottom:477.291150px;}
.ya9{bottom:480.870600px;}
.y4d{bottom:491.083800px;}
.yd8{bottom:492.195900px;}
.y76{bottom:492.583800px;}
.y20{bottom:495.291150px;}
.ya8{bottom:497.367600px;}
.y106{bottom:508.679700px;}
.yd7{bottom:508.692900px;}
.y4c{bottom:509.083800px;}
.y75{bottom:510.583800px;}
.y1f{bottom:513.291150px;}
.ya7{bottom:513.864600px;}
.y9{bottom:514.431750px;}
.y105{bottom:525.176700px;}
.yd6{bottom:525.189900px;}
.y4b{bottom:527.083800px;}
.y74{bottom:528.583800px;}
.ya6{bottom:530.361600px;}
.y1e{bottom:531.291150px;}
.y8{bottom:532.431750px;}
.y104{bottom:541.673700px;}
.yd5{bottom:541.686900px;}
.y4a{bottom:545.083800px;}
.y73{bottom:546.583800px;}
.ya5{bottom:546.858600px;}
.y1d{bottom:549.291150px;}
.y7{bottom:550.431750px;}
.y103{bottom:558.170700px;}
.yd4{bottom:558.183900px;}
.y49{bottom:563.083800px;}
.ya4{bottom:563.355600px;}
.y72{bottom:564.583800px;}
.y1c{bottom:567.291150px;}
.y102{bottom:574.667700px;}
.yd3{bottom:574.680900px;}
.ya3{bottom:579.852600px;}
.y48{bottom:581.083800px;}
.y71{bottom:582.583800px;}
.y1b{bottom:585.291150px;}
.y6{bottom:586.431750px;}
.y101{bottom:591.164700px;}
.yd2{bottom:591.177900px;}
.ya2{bottom:596.349600px;}
.y47{bottom:599.083800px;}
.y70{bottom:600.583800px;}
.y1a{bottom:603.291150px;}
.y100{bottom:607.661700px;}
.yd1{bottom:607.674900px;}
.ya1{bottom:612.846600px;}
.y46{bottom:617.083800px;}
.y6f{bottom:618.583800px;}
.y19{bottom:621.291150px;}
.yff{bottom:624.158700px;}
.yd0{bottom:624.171900px;}
.ya0{bottom:629.343600px;}
.y45{bottom:635.083800px;}
.y6e{bottom:636.583800px;}
.y18{bottom:639.291150px;}
.y5{bottom:640.433250px;}
.yfe{bottom:640.655700px;}
.ycf{bottom:640.668900px;}
.y9f{bottom:645.840600px;}
.y44{bottom:653.083800px;}
.y6d{bottom:654.583800px;}
.yfd{bottom:657.152700px;}
.yce{bottom:657.165900px;}
.y9e{bottom:662.337600px;}
.y17{bottom:666.291150px;}
.y43{bottom:671.083800px;}
.y6c{bottom:672.583800px;}
.yfc{bottom:673.649700px;}
.ycd{bottom:673.662900px;}
.y9d{bottom:678.834600px;}
.y42{bottom:689.083800px;}
.yfb{bottom:690.146700px;}
.ycc{bottom:690.159900px;}
.y6b{bottom:690.583800px;}
.y9c{bottom:695.331600px;}
.y68{bottom:698.083800px;}
.y92{bottom:699.583800px;}
.yfa{bottom:706.643700px;}
.ycb{bottom:706.656900px;}
.y41{bottom:707.083800px;}
.y6a{bottom:708.583800px;}
.y9b{bottom:711.828600px;}
.yf9{bottom:723.140700px;}
.yca{bottom:723.153900px;}
.y40{bottom:725.083800px;}
.y9a{bottom:728.325600px;}
.y69{bottom:735.583800px;}
.yf8{bottom:739.637700px;}
.yc9{bottom:739.650900px;}
.y3f{bottom:743.083800px;}
.y99{bottom:753.825600px;}
.yf7{bottom:756.134700px;}
.yc8{bottom:756.147900px;}
.y3e{bottom:761.083800px;}
.y4{bottom:761.474250px;}
.y16{bottom:764.087100px;}
.yf6{bottom:772.631700px;}
.yc7{bottom:772.644900px;}
.y3d{bottom:779.083800px;}
.yf5{bottom:789.128700px;}
.yc6{bottom:789.141900px;}
.y3{bottom:791.471250px;}
.y3c{bottom:797.083800px;}
.y98{bottom:797.325600px;}
.yf4{bottom:805.625700px;}
.yc5{bottom:805.638900px;}
.y15{bottom:809.094600px;}
.y3b{bottom:815.083800px;}
.y97{bottom:815.325600px;}
.yf3{bottom:822.122700px;}
.yc4{bottom:822.135900px;}
.y2{bottom:828.983250px;}
.y3a{bottom:833.083800px;}
.y96{bottom:833.325600px;}
.y14{bottom:834.587100px;}
.yf2{bottom:838.619700px;}
.yc3{bottom:838.632900px;}
.y39{bottom:851.083800px;}
.y95{bottom:851.325600px;}
.yf1{bottom:855.116700px;}
.yc2{bottom:855.129900px;}
.y1{bottom:867.971250px;}
.y38{bottom:869.083800px;}
.y13{bottom:869.087100px;}
.yf0{bottom:871.613700px;}
.yc1{bottom:871.626900px;}
.y94{bottom:878.325600px;}
.y37{bottom:887.083800px;}
.yef{bottom:888.110700px;}
.yc0{bottom:888.123900px;}
.y36{bottom:920.583600px;}
.hc{height:36.571289px;}
.hb{height:40.664062px;}
.h9{height:41.074219px;}
.he{height:47.381836px;}
.hd{height:47.513672px;}
.h5{height:52.646484px;}
.ha{height:52.792969px;}
.h6{height:69.826172px;}
.h8{height:73.910156px;}
.h4{height:73.933594px;}
.h7{height:78.969727px;}
.h3{height:94.763672px;}
.h2{height:98.578125px;}
.h0{height:994.960500px;}
.h1{height:995.250000px;}
.w1{width:663.000000px;}
.w0{width:663.307500px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x8{left:98.539350px;}
.x5{left:103.039350px;}
.x2{left:130.039350px;}
.x4{left:155.905500px;}
.x3{left:364.945500px;}
.x7{left:474.388350px;}
.x6{left:481.331700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-1.973333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls6{letter-spacing:0.465600pt;}
.ls2{letter-spacing:0.533333pt;}
.ls1{letter-spacing:1.333333pt;}
.ls8{letter-spacing:1.756800pt;}
.ls5{letter-spacing:8.640000pt;}
.ls7{letter-spacing:9.633600pt;}
.lsa{letter-spacing:12.460800pt;}
.ls9{letter-spacing:12.528000pt;}
.ws4{word-spacing:-22.666667pt;}
.ws2{word-spacing:-13.333333pt;}
.wsb1{word-spacing:-12.000000pt;}
.ws2e{word-spacing:-5.973333pt;}
.ws3e{word-spacing:-4.266667pt;}
.ws52{word-spacing:-4.160000pt;}
.ws9a{word-spacing:-4.053333pt;}
.ws46{word-spacing:-3.680000pt;}
.wscb{word-spacing:-3.600000pt;}
.ws38{word-spacing:-3.413333pt;}
.ws1e{word-spacing:-2.933333pt;}
.ws97{word-spacing:-2.773333pt;}
.wsca{word-spacing:-2.736000pt;}
.ws96{word-spacing:-2.720000pt;}
.ws59{word-spacing:-2.400000pt;}
.wsb9{word-spacing:-2.352000pt;}
.ws84{word-spacing:-2.346667pt;}
.wsae{word-spacing:-2.293333pt;}
.wsd2{word-spacing:-2.160000pt;}
.ws68{word-spacing:-2.133333pt;}
.ws2f{word-spacing:-2.080000pt;}
.ws11{word-spacing:-2.026667pt;}
.ws30{word-spacing:-1.973333pt;}
.ws75{word-spacing:-1.920000pt;}
.ws29{word-spacing:-1.866667pt;}
.ws6d{word-spacing:-1.813333pt;}
.ws13{word-spacing:-1.760000pt;}
.ws67{word-spacing:-1.706667pt;}
.wsc7{word-spacing:-1.680000pt;}
.wsa8{word-spacing:-1.600000pt;}
.wsa2{word-spacing:-1.440000pt;}
.ws24{word-spacing:-1.386667pt;}
.ws3{word-spacing:-1.333333pt;}
.ws44{word-spacing:-1.226667pt;}
.wse{word-spacing:-1.173333pt;}
.ws36{word-spacing:-1.120000pt;}
.wsd0{word-spacing:-1.056000pt;}
.ws64{word-spacing:-1.013333pt;}
.wsbc{word-spacing:-1.008000pt;}
.ws82{word-spacing:-0.960000pt;}
.ws10{word-spacing:-0.906667pt;}
.ws70{word-spacing:-0.853333pt;}
.ws9e{word-spacing:-0.800000pt;}
.ws99{word-spacing:-0.746667pt;}
.wsc3{word-spacing:-0.720000pt;}
.wsac{word-spacing:-0.693333pt;}
.ws4d{word-spacing:-0.640000pt;}
.ws72{word-spacing:-0.533333pt;}
.wsbb{word-spacing:-0.528000pt;}
.ws7f{word-spacing:-0.480000pt;}
.wsbf{word-spacing:-0.432000pt;}
.ws5e{word-spacing:-0.373333pt;}
.wsd4{word-spacing:-0.336000pt;}
.ws5b{word-spacing:-0.320000pt;}
.ws9f{word-spacing:-0.266667pt;}
.ws63{word-spacing:-0.106667pt;}
.ws94{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.wsc5{word-spacing:0.096000pt;}
.ws80{word-spacing:0.160000pt;}
.ws81{word-spacing:0.213333pt;}
.ws4c{word-spacing:0.426667pt;}
.wsb8{word-spacing:0.432000pt;}
.ws12{word-spacing:0.480000pt;}
.ws87{word-spacing:0.533333pt;}
.ws14{word-spacing:0.586667pt;}
.ws41{word-spacing:0.746667pt;}
.ws2b{word-spacing:0.800000pt;}
.ws43{word-spacing:0.853333pt;}
.wsa4{word-spacing:0.906667pt;}
.ws76{word-spacing:0.960000pt;}
.ws88{word-spacing:1.013333pt;}
.ws47{word-spacing:1.066667pt;}
.ws57{word-spacing:1.120000pt;}
.ws9{word-spacing:1.173333pt;}
.ws7{word-spacing:1.226667pt;}
.ws25{word-spacing:1.280000pt;}
.ws8f{word-spacing:1.333333pt;}
.ws6a{word-spacing:1.440000pt;}
.ws6f{word-spacing:1.493333pt;}
.ws1f{word-spacing:1.600000pt;}
.ws49{word-spacing:1.760000pt;}
.ws16{word-spacing:1.813333pt;}
.wsc9{word-spacing:1.824000pt;}
.ws2a{word-spacing:1.866667pt;}
.ws55{word-spacing:1.920000pt;}
.ws23{word-spacing:1.973333pt;}
.wsb2{word-spacing:2.016000pt;}
.ws39{word-spacing:2.026667pt;}
.wsc4{word-spacing:2.064000pt;}
.ws51{word-spacing:2.133333pt;}
.ws69{word-spacing:2.186667pt;}
.ws18{word-spacing:2.240000pt;}
.ws92{word-spacing:2.293333pt;}
.ws8a{word-spacing:2.346667pt;}
.ws22{word-spacing:2.400000pt;}
.ws17{word-spacing:2.560000pt;}
.ws42{word-spacing:2.613333pt;}
.ws6{word-spacing:2.666667pt;}
.ws93{word-spacing:2.720000pt;}
.wscf{word-spacing:2.832000pt;}
.ws50{word-spacing:2.933333pt;}
.wsf{word-spacing:2.986667pt;}
.ws78{word-spacing:3.040000pt;}
.ws98{word-spacing:3.093333pt;}
.ws71{word-spacing:3.146667pt;}
.wscd{word-spacing:3.216000pt;}
.ws5c{word-spacing:3.253333pt;}
.ws5d{word-spacing:3.360000pt;}
.wsba{word-spacing:3.408000pt;}
.ws66{word-spacing:3.413333pt;}
.wsbd{word-spacing:3.552000pt;}
.ws77{word-spacing:3.573333pt;}
.wsab{word-spacing:3.626667pt;}
.wsd1{word-spacing:3.696000pt;}
.wsaa{word-spacing:3.733333pt;}
.ws89{word-spacing:3.786667pt;}
.ws62{word-spacing:3.840000pt;}
.ws2c{word-spacing:3.893333pt;}
.ws15{word-spacing:3.946667pt;}
.wsb6{word-spacing:4.080000pt;}
.ws32{word-spacing:4.106667pt;}
.ws8c{word-spacing:4.160000pt;}
.ws6c{word-spacing:4.213333pt;}
.ws26{word-spacing:4.266667pt;}
.ws95{word-spacing:4.320000pt;}
.wsb5{word-spacing:4.464000pt;}
.ws7e{word-spacing:4.480000pt;}
.ws8e{word-spacing:4.586667pt;}
.ws4e{word-spacing:4.693333pt;}
.wsd{word-spacing:4.746667pt;}
.ws83{word-spacing:4.853333pt;}
.wsd5{word-spacing:4.944000pt;}
.ws27{word-spacing:4.960000pt;}
.ws1b{word-spacing:5.013333pt;}
.ws35{word-spacing:5.120000pt;}
.ws8b{word-spacing:5.226667pt;}
.ws5f{word-spacing:5.280000pt;}
.ws5a{word-spacing:5.333333pt;}
.ws1d{word-spacing:5.386667pt;}
.ws5{word-spacing:5.493333pt;}
.ws8d{word-spacing:5.600000pt;}
.wsa5{word-spacing:5.653333pt;}
.ws37{word-spacing:5.706667pt;}
.ws40{word-spacing:5.760000pt;}
.ws4a{word-spacing:5.813333pt;}
.ws48{word-spacing:5.866667pt;}
.ws91{word-spacing:5.920000pt;}
.ws9c{word-spacing:6.026667pt;}
.ws3a{word-spacing:6.080000pt;}
.ws21{word-spacing:6.133333pt;}
.ws85{word-spacing:6.240000pt;}
.ws56{word-spacing:6.346667pt;}
.ws60{word-spacing:6.453333pt;}
.wsad{word-spacing:6.506667pt;}
.ws28{word-spacing:6.666667pt;}
.ws6e{word-spacing:6.720000pt;}
.wsa{word-spacing:6.826667pt;}
.ws33{word-spacing:6.933333pt;}
.wsa0{word-spacing:6.986667pt;}
.ws3b{word-spacing:7.146667pt;}
.wsaf{word-spacing:7.306667pt;}
.ws7d{word-spacing:7.360000pt;}
.wsa3{word-spacing:7.466667pt;}
.wsa6{word-spacing:7.626667pt;}
.ws54{word-spacing:7.680000pt;}
.ws20{word-spacing:7.840000pt;}
.ws31{word-spacing:7.893333pt;}
.wsa7{word-spacing:8.000000pt;}
.ws79{word-spacing:8.106667pt;}
.wsb0{word-spacing:8.213333pt;}
.wsb7{word-spacing:8.304000pt;}
.wsa1{word-spacing:8.320000pt;}
.ws8{word-spacing:8.373333pt;}
.ws3d{word-spacing:8.426667pt;}
.ws90{word-spacing:8.480000pt;}
.wsb3{word-spacing:8.640000pt;}
.wsbe{word-spacing:8.784000pt;}
.ws73{word-spacing:8.800000pt;}
.ws7a{word-spacing:8.906667pt;}
.wsd3{word-spacing:8.976000pt;}
.ws3f{word-spacing:9.066667pt;}
.wsc1{word-spacing:9.072000pt;}
.ws65{word-spacing:9.226667pt;}
.ws1c{word-spacing:9.493333pt;}
.wsc8{word-spacing:9.648000pt;}
.wsb4{word-spacing:9.696000pt;}
.ws2d{word-spacing:9.813333pt;}
.wsc6{word-spacing:10.080000pt;}
.ws1a{word-spacing:10.506667pt;}
.ws9b{word-spacing:10.880000pt;}
.ws7b{word-spacing:11.093333pt;}
.ws9d{word-spacing:11.146667pt;}
.ws34{word-spacing:11.520000pt;}
.ws4b{word-spacing:11.840000pt;}
.wsc2{word-spacing:12.096000pt;}
.wsc{word-spacing:12.213333pt;}
.wsc0{word-spacing:12.384000pt;}
.wsce{word-spacing:12.480000pt;}
.wscc{word-spacing:12.528000pt;}
.ws86{word-spacing:12.906667pt;}
.ws53{word-spacing:13.013333pt;}
.ws3c{word-spacing:13.226667pt;}
.ws74{word-spacing:13.600000pt;}
.wsb{word-spacing:13.866667pt;}
.ws61{word-spacing:13.920000pt;}
.ws7c{word-spacing:14.026667pt;}
.ws4f{word-spacing:14.880000pt;}
.ws45{word-spacing:15.573333pt;}
.ws6b{word-spacing:15.680000pt;}
.ws58{word-spacing:16.586667pt;}
.wsa9{word-spacing:16.960000pt;}
.ws19{word-spacing:20.533333pt;}
.ws1{word-spacing:92.026667pt;}
._15{margin-left:-34.026667pt;}
._e{margin-left:-27.200000pt;}
._f{margin-left:-25.920000pt;}
._18{margin-left:-23.520000pt;}
._c{margin-left:-21.653333pt;}
._17{margin-left:-20.000000pt;}
._19{margin-left:-18.240000pt;}
._12{margin-left:-16.586667pt;}
._16{margin-left:-14.500267pt;}
._3{margin-left:-13.333333pt;}
._1b{margin-left:-11.946667pt;}
._1a{margin-left:-10.820267pt;}
._0{margin-left:-5.404800pt;}
._10{margin-left:-4.394667pt;}
._2{margin-left:-3.388800pt;}
._1{margin-left:-1.766400pt;}
._b{width:1.024000pt;}
._4{width:2.272000pt;}
._6{width:3.162667pt;}
._a{width:4.762667pt;}
._d{width:5.850667pt;}
._13{width:7.002667pt;}
._9{width:8.485333pt;}
._8{width:9.504000pt;}
._14{width:10.666667pt;}
._7{width:11.706667pt;}
._1e{width:13.301333pt;}
._1d{width:14.602667pt;}
._1f{width:15.562667pt;}
._1c{width:17.584000pt;}
._21{width:27.571200pt;}
._22{width:29.649600pt;}
._20{width:30.763200pt;}
._11{width:40.000000pt;}
._5{width:114.666133pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:80.000000pt;}
.fs3{font-size:90.666667pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:48.016533pt;}
.y11{bottom:64.016533pt;}
.y63{bottom:84.518933pt;}
.y93{bottom:85.852267pt;}
.y62{bottom:100.518933pt;}
.y91{bottom:101.852267pt;}
.y89{bottom:103.185600pt;}
.y35{bottom:104.258800pt;}
.ybf{bottom:104.832533pt;}
.yee{bottom:114.899467pt;}
.y61{bottom:116.518933pt;}
.y90{bottom:117.852267pt;}
.y88{bottom:119.185600pt;}
.ybe{bottom:119.496533pt;}
.y34{bottom:120.258800pt;}
.y66{bottom:124.518933pt;}
.yed{bottom:129.563467pt;}
.y60{bottom:132.518933pt;}
.y8f{bottom:133.852267pt;}
.ybd{bottom:134.160533pt;}
.y87{bottom:135.185600pt;}
.y33{bottom:136.258800pt;}
.yec{bottom:144.227467pt;}
.y5f{bottom:148.518933pt;}
.ybc{bottom:148.824533pt;}
.y8e{bottom:149.852267pt;}
.y86{bottom:151.185600pt;}
.y32{bottom:152.258800pt;}
.yeb{bottom:158.891467pt;}
.ybb{bottom:163.488533pt;}
.y5e{bottom:164.518933pt;}
.y8d{bottom:165.852267pt;}
.y31{bottom:168.258800pt;}
.yea{bottom:173.555467pt;}
.y85{bottom:175.185600pt;}
.yba{bottom:178.152533pt;}
.y5d{bottom:180.518933pt;}
.y8c{bottom:181.852267pt;}
.y30{bottom:184.258800pt;}
.ye9{bottom:188.219467pt;}
.yb9{bottom:192.816533pt;}
.y5c{bottom:196.518933pt;}
.y8b{bottom:197.852267pt;}
.y2f{bottom:200.258800pt;}
.y10{bottom:201.272800pt;}
.ye8{bottom:202.883467pt;}
.yb8{bottom:207.480533pt;}
.y5b{bottom:212.518933pt;}
.y84{bottom:213.852267pt;}
.y2e{bottom:216.258800pt;}
.ye7{bottom:217.547467pt;}
.yb7{bottom:222.144533pt;}
.y5a{bottom:228.518933pt;}
.y83{bottom:229.852267pt;}
.ye6{bottom:232.211467pt;}
.y2d{bottom:232.258800pt;}
.yf{bottom:233.272800pt;}
.y65{bottom:236.518933pt;}
.yb6{bottom:236.808533pt;}
.y59{bottom:244.518933pt;}
.y82{bottom:245.852267pt;}
.ye5{bottom:246.875467pt;}
.y2c{bottom:248.258800pt;}
.yb5{bottom:251.472533pt;}
.y64{bottom:252.518933pt;}
.y58{bottom:260.518933pt;}
.ye4{bottom:261.539467pt;}
.y81{bottom:261.852267pt;}
.y2b{bottom:264.258800pt;}
.ye{bottom:265.272800pt;}
.yb4{bottom:266.136533pt;}
.ye3{bottom:276.203467pt;}
.y57{bottom:276.518933pt;}
.y80{bottom:277.852267pt;}
.y2a{bottom:280.258800pt;}
.yb3{bottom:280.800533pt;}
.y8a{bottom:285.852267pt;}
.ye2{bottom:290.867467pt;}
.y56{bottom:292.518933pt;}
.y7f{bottom:293.852267pt;}
.yb2{bottom:295.464533pt;}
.y29{bottom:296.258800pt;}
.yd{bottom:305.272800pt;}
.ye1{bottom:305.531467pt;}
.y55{bottom:308.518933pt;}
.y7e{bottom:309.852267pt;}
.yb1{bottom:310.128533pt;}
.y28{bottom:312.258800pt;}
.ye0{bottom:320.195467pt;}
.y54{bottom:324.518933pt;}
.yb0{bottom:324.792533pt;}
.y7d{bottom:325.852267pt;}
.y27{bottom:328.258800pt;}
.ydf{bottom:334.859467pt;}
.yaf{bottom:339.456533pt;}
.y53{bottom:340.518933pt;}
.y7c{bottom:341.852267pt;}
.y26{bottom:344.258800pt;}
.yc{bottom:345.279467pt;}
.yde{bottom:349.523467pt;}
.yae{bottom:354.120533pt;}
.y52{bottom:356.518933pt;}
.y7b{bottom:357.852267pt;}
.y25{bottom:360.258800pt;}
.ydd{bottom:364.187467pt;}
.y67{bottom:364.518933pt;}
.yb{bottom:367.939467pt;}
.yad{bottom:368.784533pt;}
.y51{bottom:372.518933pt;}
.y7a{bottom:373.852267pt;}
.y24{bottom:376.258800pt;}
.ydc{bottom:378.851467pt;}
.yac{bottom:383.448533pt;}
.y50{bottom:388.518933pt;}
.y79{bottom:389.852267pt;}
.y23{bottom:392.258800pt;}
.ydb{bottom:393.515467pt;}
.yab{bottom:398.112533pt;}
.ya{bottom:398.606133pt;}
.y4f{bottom:404.518933pt;}
.y78{bottom:405.852267pt;}
.yda{bottom:408.179467pt;}
.y22{bottom:408.258800pt;}
.yaa{bottom:412.776533pt;}
.y4e{bottom:420.518933pt;}
.y77{bottom:421.852267pt;}
.yd9{bottom:422.843467pt;}
.y21{bottom:424.258800pt;}
.ya9{bottom:427.440533pt;}
.y4d{bottom:436.518933pt;}
.yd8{bottom:437.507467pt;}
.y76{bottom:437.852267pt;}
.y20{bottom:440.258800pt;}
.ya8{bottom:442.104533pt;}
.y106{bottom:452.159733pt;}
.yd7{bottom:452.171467pt;}
.y4c{bottom:452.518933pt;}
.y75{bottom:453.852267pt;}
.y1f{bottom:456.258800pt;}
.ya7{bottom:456.768533pt;}
.y9{bottom:457.272667pt;}
.y105{bottom:466.823733pt;}
.yd6{bottom:466.835467pt;}
.y4b{bottom:468.518933pt;}
.y74{bottom:469.852267pt;}
.ya6{bottom:471.432533pt;}
.y1e{bottom:472.258800pt;}
.y8{bottom:473.272667pt;}
.y104{bottom:481.487733pt;}
.yd5{bottom:481.499467pt;}
.y4a{bottom:484.518933pt;}
.y73{bottom:485.852267pt;}
.ya5{bottom:486.096533pt;}
.y1d{bottom:488.258800pt;}
.y7{bottom:489.272667pt;}
.y103{bottom:496.151733pt;}
.yd4{bottom:496.163467pt;}
.y49{bottom:500.518933pt;}
.ya4{bottom:500.760533pt;}
.y72{bottom:501.852267pt;}
.y1c{bottom:504.258800pt;}
.y102{bottom:510.815733pt;}
.yd3{bottom:510.827467pt;}
.ya3{bottom:515.424533pt;}
.y48{bottom:516.518933pt;}
.y71{bottom:517.852267pt;}
.y1b{bottom:520.258800pt;}
.y6{bottom:521.272667pt;}
.y101{bottom:525.479733pt;}
.yd2{bottom:525.491467pt;}
.ya2{bottom:530.088533pt;}
.y47{bottom:532.518933pt;}
.y70{bottom:533.852267pt;}
.y1a{bottom:536.258800pt;}
.y100{bottom:540.143733pt;}
.yd1{bottom:540.155467pt;}
.ya1{bottom:544.752533pt;}
.y46{bottom:548.518933pt;}
.y6f{bottom:549.852267pt;}
.y19{bottom:552.258800pt;}
.yff{bottom:554.807733pt;}
.yd0{bottom:554.819467pt;}
.ya0{bottom:559.416533pt;}
.y45{bottom:564.518933pt;}
.y6e{bottom:565.852267pt;}
.y18{bottom:568.258800pt;}
.y5{bottom:569.274000pt;}
.yfe{bottom:569.471733pt;}
.ycf{bottom:569.483467pt;}
.y9f{bottom:574.080533pt;}
.y44{bottom:580.518933pt;}
.y6d{bottom:581.852267pt;}
.yfd{bottom:584.135733pt;}
.yce{bottom:584.147467pt;}
.y9e{bottom:588.744533pt;}
.y17{bottom:592.258800pt;}
.y43{bottom:596.518933pt;}
.y6c{bottom:597.852267pt;}
.yfc{bottom:598.799733pt;}
.ycd{bottom:598.811467pt;}
.y9d{bottom:603.408533pt;}
.y42{bottom:612.518933pt;}
.yfb{bottom:613.463733pt;}
.ycc{bottom:613.475467pt;}
.y6b{bottom:613.852267pt;}
.y9c{bottom:618.072533pt;}
.y68{bottom:620.518933pt;}
.y92{bottom:621.852267pt;}
.yfa{bottom:628.127733pt;}
.ycb{bottom:628.139467pt;}
.y41{bottom:628.518933pt;}
.y6a{bottom:629.852267pt;}
.y9b{bottom:632.736533pt;}
.yf9{bottom:642.791733pt;}
.yca{bottom:642.803467pt;}
.y40{bottom:644.518933pt;}
.y9a{bottom:647.400533pt;}
.y69{bottom:653.852267pt;}
.yf8{bottom:657.455733pt;}
.yc9{bottom:657.467467pt;}
.y3f{bottom:660.518933pt;}
.y99{bottom:670.067200pt;}
.yf7{bottom:672.119733pt;}
.yc8{bottom:672.131467pt;}
.y3e{bottom:676.518933pt;}
.y4{bottom:676.866000pt;}
.y16{bottom:679.188533pt;}
.yf6{bottom:686.783733pt;}
.yc7{bottom:686.795467pt;}
.y3d{bottom:692.518933pt;}
.yf5{bottom:701.447733pt;}
.yc6{bottom:701.459467pt;}
.y3{bottom:703.530000pt;}
.y3c{bottom:708.518933pt;}
.y98{bottom:708.733867pt;}
.yf4{bottom:716.111733pt;}
.yc5{bottom:716.123467pt;}
.y15{bottom:719.195200pt;}
.y3b{bottom:724.518933pt;}
.y97{bottom:724.733867pt;}
.yf3{bottom:730.775733pt;}
.yc4{bottom:730.787467pt;}
.y2{bottom:736.874000pt;}
.y3a{bottom:740.518933pt;}
.y96{bottom:740.733867pt;}
.y14{bottom:741.855200pt;}
.yf2{bottom:745.439733pt;}
.yc3{bottom:745.451467pt;}
.y39{bottom:756.518933pt;}
.y95{bottom:756.733867pt;}
.yf1{bottom:760.103733pt;}
.yc2{bottom:760.115467pt;}
.y1{bottom:771.530000pt;}
.y38{bottom:772.518933pt;}
.y13{bottom:772.521867pt;}
.yf0{bottom:774.767733pt;}
.yc1{bottom:774.779467pt;}
.y94{bottom:780.733867pt;}
.y37{bottom:788.518933pt;}
.yef{bottom:789.431733pt;}
.yc0{bottom:789.443467pt;}
.y36{bottom:818.296533pt;}
.hc{height:32.507812pt;}
.hb{height:36.145833pt;}
.h9{height:36.510417pt;}
.he{height:42.117188pt;}
.hd{height:42.234375pt;}
.h5{height:46.796875pt;}
.ha{height:46.927083pt;}
.h6{height:62.067708pt;}
.h8{height:65.697917pt;}
.h4{height:65.718750pt;}
.h7{height:70.195312pt;}
.h3{height:84.234375pt;}
.h2{height:87.625000pt;}
.h0{height:884.409333pt;}
.h1{height:884.666667pt;}
.w1{width:589.333333pt;}
.w0{width:589.606667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x8{left:87.590533pt;}
.x5{left:91.590533pt;}
.x2{left:115.590533pt;}
.x4{left:138.582667pt;}
.x3{left:324.396000pt;}
.x7{left:421.678533pt;}
.x6{left:427.850400pt;}
}




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