
    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_67a824c60659d469c6a15274.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_28fd50e6303cc8e53e8eb094.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_f3ebfc983ce13c45916773d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.041992;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_f06be254030c364064e5d9a3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.032715;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_0df039db82a68a6797501153.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.026855;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_f8f4a963ff4f09b9e0eaeeb5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.011230;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_42fbc96202a49381832efda3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.031738;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_8b53e68024bfd51928bb9149.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.710938;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_e1ed4035482002fd5331a6e5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973633;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_060653e2494ee9a16308b793.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.964860;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_48fd5bbb203286bd3e269e78.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_881e94695ac980cdcaed17b9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.770020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b44dd6f858121bfdd4d081d7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.710938;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.984000px;}
.v4{vertical-align:17.982000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls9{letter-spacing:-1.200000px;}
.lse{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-1.020000px;}
.ls6{letter-spacing:-0.918000px;}
.ls5{letter-spacing:-0.691200px;}
.ls13{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.270000px;}
.ls4{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.002400px;}
.ls2{letter-spacing:0.012000px;}
.ls3{letter-spacing:0.025800px;}
.ls11{letter-spacing:0.600000px;}
.ls8{letter-spacing:0.682440px;}
.lsb{letter-spacing:0.683040px;}
.lsc{letter-spacing:1.182000px;}
.ls7{letter-spacing:1.200000px;}
.lsd{letter-spacing:1.203600px;}
.ls0{letter-spacing:43.181364px;}
.ls1{letter-spacing:43.181964px;}
.ls10{letter-spacing:289.210200px;}
.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;}
}
.ws6d{word-spacing:-54.000000px;}
.ws3{word-spacing:-17.928000px;}
.wsd0{word-spacing:-16.434000px;}
.ws3d{word-spacing:-16.080000px;}
.ws2{word-spacing:-14.940000px;}
.ws3b{word-spacing:-14.880000px;}
.ws5c{word-spacing:-14.700000px;}
.ws32{word-spacing:-13.392000px;}
.ws6c{word-spacing:-13.230000px;}
.wsd3{word-spacing:-13.122000px;}
.wsd4{word-spacing:-12.852000px;}
.ws7{word-spacing:-12.150000px;}
.ws4{word-spacing:-11.772000px;}
.ws6{word-spacing:-11.232000px;}
.ws0{word-spacing:-10.896000px;}
.ws5{word-spacing:-10.854000px;}
.ws19{word-spacing:-10.800000px;}
.ws8{word-spacing:-10.464000px;}
.ws1{word-spacing:-9.417600px;}
.ws3c{word-spacing:-8.675040px;}
.ws7d{word-spacing:-7.807536px;}
.ws74{word-spacing:-6.968016px;}
.ws37{word-spacing:-2.940000px;}
.ws33{word-spacing:-2.880000px;}
.wsc5{word-spacing:-2.820000px;}
.ws17{word-spacing:-2.520000px;}
.wsbc{word-spacing:-2.400000px;}
.wsca{word-spacing:-2.340000px;}
.wse6{word-spacing:-2.322000px;}
.wsc6{word-spacing:-2.280000px;}
.wsb5{word-spacing:-2.160000px;}
.ws16{word-spacing:-1.920000px;}
.wsab{word-spacing:-1.740000px;}
.wsbf{word-spacing:-1.680000px;}
.wsba{word-spacing:-1.560000px;}
.wsb6{word-spacing:-1.500000px;}
.wsec{word-spacing:-1.458000px;}
.ws12{word-spacing:-1.404000px;}
.wsb4{word-spacing:-1.320000px;}
.ws21{word-spacing:-1.260000px;}
.ws27{word-spacing:-1.200000px;}
.ws55{word-spacing:-1.140000px;}
.ws18{word-spacing:-1.026000px;}
.ws66{word-spacing:-1.020000px;}
.wsa5{word-spacing:-0.912000px;}
.wsb0{word-spacing:-0.756000px;}
.wscd{word-spacing:-0.720000px;}
.wse3{word-spacing:-0.702000px;}
.ws29{word-spacing:-0.660000px;}
.ws53{word-spacing:-0.600000px;}
.wsa4{word-spacing:-0.594000px;}
.ws2f{word-spacing:-0.540000px;}
.wsa6{word-spacing:-0.480000px;}
.ws10{word-spacing:-0.432000px;}
.ws1a{word-spacing:-0.420000px;}
.ws3a{word-spacing:-0.378000px;}
.ws2e{word-spacing:-0.360000px;}
.ws13{word-spacing:-0.270000px;}
.wsa{word-spacing:-0.216000px;}
.wsc8{word-spacing:-0.180000px;}
.ws24{word-spacing:-0.120000px;}
.ws47{word-spacing:-0.060000px;}
.wsc{word-spacing:-0.054000px;}
.ws81{word-spacing:-0.048000px;}
.ws9{word-spacing:0.000000px;}
.wsae{word-spacing:0.060000px;}
.wse4{word-spacing:0.108000px;}
.ws39{word-spacing:0.180000px;}
.ws72{word-spacing:0.216000px;}
.ws4f{word-spacing:0.240000px;}
.wsda{word-spacing:0.270000px;}
.wsb7{word-spacing:0.360000px;}
.ws71{word-spacing:0.432000px;}
.wsde{word-spacing:0.540000px;}
.wsb{word-spacing:0.691200px;}
.ws5b{word-spacing:0.702000px;}
.wsee{word-spacing:0.756000px;}
.wsbe{word-spacing:0.780000px;}
.wse0{word-spacing:0.810000px;}
.wsea{word-spacing:0.864000px;}
.ws4c{word-spacing:0.960000px;}
.ws35{word-spacing:1.020000px;}
.ws70{word-spacing:1.080000px;}
.ws41{word-spacing:1.200000px;}
.ws51{word-spacing:1.260000px;}
.wsef{word-spacing:1.296000px;}
.wscb{word-spacing:1.320000px;}
.ws62{word-spacing:1.380000px;}
.wsdf{word-spacing:1.458000px;}
.ws40{word-spacing:1.500000px;}
.ws44{word-spacing:1.560000px;}
.ws15{word-spacing:1.620000px;}
.wsb8{word-spacing:1.680000px;}
.ws6f{word-spacing:1.740000px;}
.ws57{word-spacing:1.800000px;}
.ws60{word-spacing:1.860000px;}
.wse2{word-spacing:1.890000px;}
.wsc9{word-spacing:1.920000px;}
.wse1{word-spacing:1.944000px;}
.ws45{word-spacing:1.980000px;}
.ws1f{word-spacing:2.040000px;}
.ws5a{word-spacing:2.052000px;}
.ws3f{word-spacing:2.160000px;}
.ws52{word-spacing:2.220000px;}
.wsc0{word-spacing:2.280000px;}
.ws5f{word-spacing:2.340000px;}
.ws22{word-spacing:2.460000px;}
.ws1e{word-spacing:2.520000px;}
.ws1b{word-spacing:2.580000px;}
.ws61{word-spacing:2.640000px;}
.ws30{word-spacing:2.700000px;}
.wsd8{word-spacing:2.754000px;}
.wsac{word-spacing:2.820000px;}
.wsd7{word-spacing:2.862000px;}
.wsaa{word-spacing:2.880000px;}
.ws38{word-spacing:2.940000px;}
.ws31{word-spacing:3.060000px;}
.ws4d{word-spacing:3.120000px;}
.ws6b{word-spacing:3.186000px;}
.wsc1{word-spacing:3.360000px;}
.wsf{word-spacing:3.402000px;}
.wsc2{word-spacing:3.420000px;}
.ws42{word-spacing:3.480000px;}
.ws50{word-spacing:3.540000px;}
.wsbd{word-spacing:3.600000px;}
.ws73{word-spacing:3.618000px;}
.wsaf{word-spacing:3.660000px;}
.ws3e{word-spacing:3.720000px;}
.ws2d{word-spacing:3.840000px;}
.ws2c{word-spacing:3.900000px;}
.ws2b{word-spacing:3.960000px;}
.wsd{word-spacing:3.996000px;}
.ws26{word-spacing:4.020000px;}
.ws20{word-spacing:4.080000px;}
.ws23{word-spacing:4.200000px;}
.ws11{word-spacing:4.212000px;}
.wsc7{word-spacing:4.260000px;}
.wsb1{word-spacing:4.320000px;}
.ws4a{word-spacing:4.380000px;}
.wsed{word-spacing:4.428000px;}
.wsb9{word-spacing:4.620000px;}
.wsd5{word-spacing:4.644000px;}
.ws14{word-spacing:4.698000px;}
.wsc4{word-spacing:4.860000px;}
.ws65{word-spacing:4.920000px;}
.ws58{word-spacing:4.980000px;}
.ws5d{word-spacing:5.040000px;}
.ws1d{word-spacing:5.100000px;}
.wsd2{word-spacing:5.160000px;}
.ws67{word-spacing:5.220000px;}
.ws5e{word-spacing:5.340000px;}
.wsb2{word-spacing:5.520000px;}
.wsc3{word-spacing:5.580000px;}
.wse{word-spacing:5.724000px;}
.ws2a{word-spacing:5.940000px;}
.wse7{word-spacing:5.994000px;}
.wsad{word-spacing:6.120000px;}
.ws54{word-spacing:6.180000px;}
.wse5{word-spacing:6.318000px;}
.wseb{word-spacing:6.372000px;}
.wsf1{word-spacing:6.534000px;}
.ws63{word-spacing:6.540000px;}
.ws43{word-spacing:6.660000px;}
.wsa9{word-spacing:6.780000px;}
.ws56{word-spacing:6.840000px;}
.wsa7{word-spacing:6.960000px;}
.wsdd{word-spacing:6.966000px;}
.wsd9{word-spacing:7.020000px;}
.wscf{word-spacing:7.260000px;}
.wsd1{word-spacing:7.320000px;}
.ws69{word-spacing:7.440000px;}
.wsce{word-spacing:7.500000px;}
.wsbb{word-spacing:7.680000px;}
.wsa8{word-spacing:7.860000px;}
.ws4b{word-spacing:7.980000px;}
.wscc{word-spacing:8.160000px;}
.ws36{word-spacing:8.280000px;}
.wsb3{word-spacing:8.520000px;}
.wsdc{word-spacing:8.586000px;}
.ws46{word-spacing:8.640000px;}
.ws1c{word-spacing:8.700000px;}
.ws34{word-spacing:9.180000px;}
.ws64{word-spacing:9.300000px;}
.ws28{word-spacing:9.540000px;}
.wsdb{word-spacing:10.044000px;}
.ws59{word-spacing:10.500000px;}
.ws49{word-spacing:10.620000px;}
.wse8{word-spacing:11.016000px;}
.wse9{word-spacing:11.124000px;}
.ws6a{word-spacing:11.280000px;}
.ws48{word-spacing:12.540000px;}
.ws4e{word-spacing:12.900000px;}
.ws6e{word-spacing:13.140000px;}
.ws25{word-spacing:14.040000px;}
.wsf0{word-spacing:14.634000px;}
.wsd6{word-spacing:15.228000px;}
.ws68{word-spacing:16.260000px;}
.ws8e{word-spacing:129.528000px;}
.ws84{word-spacing:129.737400px;}
.ws7f{word-spacing:131.029800px;}
.ws79{word-spacing:132.889800px;}
.ws77{word-spacing:136.153800px;}
.ws75{word-spacing:142.825800px;}
.ws7a{word-spacing:146.101800px;}
.ws7e{word-spacing:155.436600px;}
.ws86{word-spacing:156.493200px;}
.ws8a{word-spacing:169.980600px;}
.ws80{word-spacing:171.966000px;}
.ws8b{word-spacing:203.982600px;}
.ws87{word-spacing:204.019200px;}
.ws89{word-spacing:207.737400px;}
.ws82{word-spacing:219.171000px;}
.ws8c{word-spacing:221.202000px;}
.ws8f{word-spacing:221.214000px;}
.ws8d{word-spacing:221.250000px;}
.ws88{word-spacing:224.535600px;}
.ws7c{word-spacing:225.322200px;}
.ws76{word-spacing:225.345600px;}
.ws85{word-spacing:238.233000px;}
.wsa3{word-spacing:267.501000px;}
.ws91{word-spacing:267.525600px;}
.ws96{word-spacing:294.477600px;}
.ws83{word-spacing:303.050400px;}
.wsa1{word-spacing:307.942200px;}
.ws98{word-spacing:307.942800px;}
.ws9d{word-spacing:307.953600px;}
.ws9b{word-spacing:307.954200px;}
.wsa2{word-spacing:307.978200px;}
.wsa0{word-spacing:321.441600px;}
.ws90{word-spacing:324.619200px;}
.ws9a{word-spacing:334.941000px;}
.ws97{word-spacing:338.083200px;}
.ws95{word-spacing:338.083800px;}
.ws9c{word-spacing:351.583200px;}
.ws99{word-spacing:365.037000px;}
.ws9f{word-spacing:365.059800px;}
.ws94{word-spacing:383.388000px;}
.ws93{word-spacing:383.388600px;}
.ws9e{word-spacing:396.865200px;}
.ws78{word-spacing:416.815200px;}
.ws7b{word-spacing:416.827200px;}
.ws92{word-spacing:523.581000px;}
._c{margin-left:-10.190400px;}
._46{margin-left:-9.168600px;}
._3{margin-left:-7.782600px;}
._b{margin-left:-5.838600px;}
._4{margin-left:-4.131000px;}
._6{margin-left:-2.786400px;}
._1{margin-left:-1.509600px;}
._2{width:1.815600px;}
._0{width:3.315000px;}
._9{width:5.034000px;}
._d{width:6.193800px;}
._8{width:7.792200px;}
._f{width:8.893800px;}
._7{width:10.783800px;}
._a{width:12.162000px;}
._e{width:13.584000px;}
._45{width:15.256800px;}
._43{width:16.338000px;}
._47{width:25.833600px;}
._5{width:36.624000px;}
._44{width:43.041600px;}
._2a{width:58.454184px;}
._11{width:65.609184px;}
._29{width:72.791400px;}
._28{width:74.392200px;}
._27{width:75.985200px;}
._12{width:86.992800px;}
._13{width:104.481000px;}
._20{width:126.002400px;}
._1b{width:132.689400px;}
._10{width:141.589800px;}
._21{width:182.082600px;}
._23{width:187.186800px;}
._25{width:188.346600px;}
._1c{width:195.582000px;}
._19{width:202.169400px;}
._1a{width:212.686200px;}
._24{width:215.779800px;}
._22{width:219.689400px;}
._1d{width:229.597800px;}
._1f{width:233.118000px;}
._14{width:237.238200px;}
._18{width:238.585800px;}
._1e{width:250.136400px;}
._26{width:264.439200px;}
._38{width:279.393600px;}
._17{width:286.441800px;}
._41{width:290.647200px;}
._2e{width:307.425000px;}
._15{width:320.980800px;}
._39{width:331.809600px;}
._33{width:333.357600px;}
._37{width:336.511200px;}
._30{width:346.845600px;}
._3a{width:350.622000px;}
._32{width:363.464400px;}
._2f{width:376.988400px;}
._2d{width:395.292600px;}
._2c{width:408.792000px;}
._31{width:413.324400px;}
._16{width:428.731200px;}
._40{width:467.985600px;}
._34{width:478.449600px;}
._3c{width:484.700400px;}
._35{width:500.444400px;}
._3b{width:537.788400px;}
._42{width:541.820400px;}
._2b{width:576.753000px;}
._3d{width:579.741000px;}
._3e{width:583.580400px;}
._36{width:597.644400px;}
._3f{width:639.356400px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:27.984000px;}
.fsb{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y43{bottom:71.212050px;}
.y44{bottom:75.036150px;}
.y7d{bottom:113.078700px;}
.y9b{bottom:113.078850px;}
.y2b{bottom:117.212550px;}
.y10{bottom:117.875550px;}
.yf{bottom:132.275550px;}
.y75{bottom:134.078700px;}
.y9a{bottom:134.078850px;}
.y2a{bottom:138.212550px;}
.yd5{bottom:141.907050px;}
.ye{bottom:146.675550px;}
.y74{bottom:155.078700px;}
.y99{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.yd{bottom:161.075550px;}
.yd4{bottom:164.088150px;}
.y73{bottom:176.078700px;}
.y98{bottom:176.078850px;}
.y28{bottom:180.212550px;}
.yf3{bottom:181.529400px;}
.yd3{bottom:186.269250px;}
.y72{bottom:197.078700px;}
.y97{bottom:197.078850px;}
.y40{bottom:199.392600px;}
.yab{bottom:201.059100px;}
.y27{bottom:201.212550px;}
.yd2{bottom:208.450350px;}
.y7c{bottom:211.440900px;}
.ya1{bottom:216.678900px;}
.y3f{bottom:217.392600px;}
.y71{bottom:218.078700px;}
.y96{bottom:218.078850px;}
.yaa{bottom:220.859100px;}
.y26{bottom:222.212550px;}
.yd1{bottom:230.631450px;}
.y3e{bottom:235.392600px;}
.ya0{bottom:236.478900px;}
.y70{bottom:239.078700px;}
.y95{bottom:239.078850px;}
.ya9{bottom:240.659250px;}
.yd0{bottom:252.812550px;}
.y3d{bottom:253.392600px;}
.y25{bottom:255.144450px;}
.y6f{bottom:260.078700px;}
.y94{bottom:260.078850px;}
.ya8{bottom:260.459250px;}
.y3c{bottom:271.392600px;}
.ycf{bottom:274.993650px;}
.ya7{bottom:280.259250px;}
.y6e{bottom:281.078700px;}
.y93{bottom:281.078850px;}
.y3b{bottom:289.392600px;}
.yce{bottom:297.174750px;}
.y6d{bottom:302.078700px;}
.y92{bottom:302.078850px;}
.y3a{bottom:307.392600px;}
.ycd{bottom:319.355850px;}
.y6c{bottom:323.078700px;}
.y91{bottom:323.078850px;}
.y39{bottom:325.392600px;}
.y76{bottom:337.440900px;}
.ycc{bottom:341.536950px;}
.y38{bottom:343.392600px;}
.y6b{bottom:344.078700px;}
.y90{bottom:344.078850px;}
.y24{bottom:348.427950px;}
.yf2{bottom:349.529400px;}
.y37{bottom:361.392600px;}
.ycb{bottom:363.718050px;}
.y6a{bottom:365.078700px;}
.y8f{bottom:365.078850px;}
.y36{bottom:379.392600px;}
.yca{bottom:385.899150px;}
.y69{bottom:386.078700px;}
.y8e{bottom:386.078850px;}
.y23{bottom:389.487900px;}
.y35{bottom:397.392600px;}
.y68{bottom:407.078700px;}
.y8d{bottom:407.078850px;}
.yc9{bottom:408.080250px;}
.y22{bottom:409.287900px;}
.yf1{bottom:412.529400px;}
.y34{bottom:415.392600px;}
.y67{bottom:428.078700px;}
.y8c{bottom:428.078850px;}
.y21{bottom:429.087900px;}
.yc8{bottom:430.261350px;}
.y33{bottom:433.392600px;}
.y20{bottom:448.887750px;}
.y66{bottom:449.078700px;}
.y8b{bottom:449.078850px;}
.yc7{bottom:452.442450px;}
.y32{bottom:468.400500px;}
.y1f{bottom:468.687900px;}
.y65{bottom:470.078700px;}
.y8a{bottom:470.078850px;}
.yc6{bottom:474.623550px;}
.yf0{bottom:475.529400px;}
.y31{bottom:486.400500px;}
.y1e{bottom:488.487900px;}
.y64{bottom:491.078700px;}
.y89{bottom:491.078850px;}
.yc5{bottom:496.804650px;}
.y7b{bottom:501.984300px;}
.y30{bottom:504.400500px;}
.y1d{bottom:508.287900px;}
.y63{bottom:512.078700px;}
.y88{bottom:512.078850px;}
.yc4{bottom:518.985750px;}
.y7a{bottom:521.784300px;}
.y1c{bottom:528.087900px;}
.y62{bottom:533.078700px;}
.y87{bottom:533.078850px;}
.yef{bottom:538.529400px;}
.y2f{bottom:539.408400px;}
.y79{bottom:541.584300px;}
.y1b{bottom:547.887750px;}
.yc3{bottom:549.467700px;}
.y61{bottom:554.078700px;}
.y86{bottom:554.078850px;}
.y2e{bottom:557.408400px;}
.y78{bottom:561.384300px;}
.y1a{bottom:567.687900px;}
.yc2{bottom:569.267700px;}
.y60{bottom:575.078700px;}
.y85{bottom:575.078850px;}
.y2d{bottom:575.408400px;}
.y77{bottom:581.184300px;}
.y19{bottom:587.487900px;}
.y2c{bottom:593.408400px;}
.y5f{bottom:596.078700px;}
.y84{bottom:596.078850px;}
.yee{bottom:601.937100px;}
.y18{bottom:607.287900px;}
.y5e{bottom:617.078700px;}
.y83{bottom:617.078850px;}
.yc1{bottom:618.925650px;}
.y17{bottom:627.087900px;}
.yed{bottom:631.441050px;}
.y5d{bottom:638.078700px;}
.y82{bottom:638.078850px;}
.yc0{bottom:641.106750px;}
.y16{bottom:646.887750px;}
.y5c{bottom:659.078700px;}
.y81{bottom:659.078850px;}
.ybf{bottom:663.288000px;}
.y15{bottom:666.687750px;}
.y5b{bottom:680.078700px;}
.y80{bottom:680.078850px;}
.ybe{bottom:685.468950px;}
.y14{bottom:686.487750px;}
.y5a{bottom:701.078700px;}
.y7f{bottom:701.078850px;}
.y13{bottom:706.287750px;}
.ybd{bottom:707.650200px;}
.yd6{bottom:713.586600px;}
.y59{bottom:722.078700px;}
.y7e{bottom:722.078850px;}
.ya6{bottom:728.066250px;}
.ybc{bottom:729.831150px;}
.y12{bottom:737.385300px;}
.y58{bottom:743.078700px;}
.yeb{bottom:743.078850px;}
.ya5{bottom:747.866250px;}
.y9f{bottom:748.631700px;}
.ya3{bottom:749.657850px;}
.ybb{bottom:752.012400px;}
.yd8{bottom:758.420100px;}
.y57{bottom:764.078700px;}
.yea{bottom:764.078850px;}
.ya4{bottom:767.666250px;}
.y9e{bottom:768.431700px;}
.ya2{bottom:769.457850px;}
.y9d{bottom:770.748000px;}
.yba{bottom:774.193500px;}
.yd7{bottom:778.220100px;}
.y56{bottom:785.078700px;}
.ye9{bottom:785.078850px;}
.y9c{bottom:790.548000px;}
.yb9{bottom:796.374600px;}
.y55{bottom:806.078700px;}
.ye8{bottom:806.078850px;}
.yc{bottom:816.666900px;}
.yb8{bottom:826.856400px;}
.y54{bottom:827.078700px;}
.ye7{bottom:827.078850px;}
.yb{bottom:834.666900px;}
.yb7{bottom:846.656400px;}
.y53{bottom:848.078700px;}
.ye6{bottom:848.078850px;}
.ya{bottom:852.666900px;}
.yec{bottom:862.441050px;}
.yb6{bottom:866.456400px;}
.y52{bottom:869.078700px;}
.ye5{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.yb5{bottom:886.256400px;}
.y8{bottom:888.666900px;}
.y51{bottom:890.078700px;}
.ye4{bottom:890.078850px;}
.y7{bottom:906.666900px;}
.y50{bottom:911.078700px;}
.ye3{bottom:911.078850px;}
.y6{bottom:924.666900px;}
.y4f{bottom:932.078700px;}
.ye2{bottom:932.078850px;}
.yb4{bottom:935.914350px;}
.y4e{bottom:953.078700px;}
.ye1{bottom:953.078850px;}
.yb3{bottom:958.095450px;}
.y5{bottom:959.674650px;}
.y4d{bottom:974.078700px;}
.ye0{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.yb2{bottom:980.276550px;}
.y4c{bottom:995.078700px;}
.ydf{bottom:995.078850px;}
.yb1{bottom:1002.457650px;}
.y4b{bottom:1016.078700px;}
.yde{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.yb0{bottom:1024.638750px;}
.y4a{bottom:1037.078700px;}
.ydd{bottom:1037.078850px;}
.yaf{bottom:1046.819850px;}
.y2{bottom:1049.282550px;}
.y49{bottom:1058.078700px;}
.ydc{bottom:1058.078850px;}
.yae{bottom:1069.001100px;}
.y48{bottom:1079.078700px;}
.ydb{bottom:1079.078850px;}
.yad{bottom:1099.482900px;}
.y47{bottom:1100.078700px;}
.yda{bottom:1100.078850px;}
.y11{bottom:1109.815500px;}
.yf4{bottom:1111.570800px;}
.yac{bottom:1119.282900px;}
.y46{bottom:1121.078700px;}
.yd9{bottom:1121.078850px;}
.y42{bottom:1155.615300px;}
.y41{bottom:1175.115300px;}
.y45{bottom:1178.691750px;}
.h6{height:34.446094px;}
.h14{height:37.875000px;}
.h2{height:38.039062px;}
.h12{height:38.065125px;}
.h11{height:38.273438px;}
.h5{height:38.531250px;}
.h13{height:39.000000px;}
.h10{height:41.053711px;}
.hf{height:42.793945px;}
.h7{height:43.004883px;}
.he{height:43.057617px;}
.ha{height:43.321289px;}
.h9{height:43.875000px;}
.h8{height:47.343750px;}
.hd{height:48.134766px;}
.hc{height:48.750000px;}
.h15{height:50.176758px;}
.h16{height:52.078125px;}
.h4{height:53.625000px;}
.hb{height:56.812500px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.068950px;}
.xc{left:108.286950px;}
.x11{left:112.252050px;}
.x5{left:119.576400px;}
.x6{left:121.047600px;}
.x7{left:123.420750px;}
.x10{left:163.954350px;}
.x4{left:300.189000px;}
.xe{left:304.441050px;}
.xb{left:317.196900px;}
.xd{left:323.867850px;}
.xf{left:333.251700px;}
.x3{left:396.050700px;}
.x9{left:652.471650px;}
.x8{left:672.118200px;}
.x1{left:801.339150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.208000pt;}
.v4{vertical-align:15.984000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls9{letter-spacing:-1.066667pt;}
.lse{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.906667pt;}
.ls6{letter-spacing:-0.816000pt;}
.ls5{letter-spacing:-0.614400pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.002133pt;}
.ls2{letter-spacing:0.010667pt;}
.ls3{letter-spacing:0.022933pt;}
.ls11{letter-spacing:0.533333pt;}
.ls8{letter-spacing:0.606613pt;}
.lsb{letter-spacing:0.607147pt;}
.lsc{letter-spacing:1.050667pt;}
.ls7{letter-spacing:1.066667pt;}
.lsd{letter-spacing:1.069867pt;}
.ls0{letter-spacing:38.383435pt;}
.ls1{letter-spacing:38.383968pt;}
.ls10{letter-spacing:257.075733pt;}
.ws6d{word-spacing:-48.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.wsd0{word-spacing:-14.608000pt;}
.ws3d{word-spacing:-14.293333pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3b{word-spacing:-13.226667pt;}
.ws5c{word-spacing:-13.066667pt;}
.ws32{word-spacing:-11.904000pt;}
.ws6c{word-spacing:-11.760000pt;}
.wsd3{word-spacing:-11.664000pt;}
.wsd4{word-spacing:-11.424000pt;}
.ws7{word-spacing:-10.800000pt;}
.ws4{word-spacing:-10.464000pt;}
.ws6{word-spacing:-9.984000pt;}
.ws0{word-spacing:-9.685333pt;}
.ws5{word-spacing:-9.648000pt;}
.ws19{word-spacing:-9.600000pt;}
.ws8{word-spacing:-9.301333pt;}
.ws1{word-spacing:-8.371200pt;}
.ws3c{word-spacing:-7.711147pt;}
.ws7d{word-spacing:-6.940032pt;}
.ws74{word-spacing:-6.193792pt;}
.ws37{word-spacing:-2.613333pt;}
.ws33{word-spacing:-2.560000pt;}
.wsc5{word-spacing:-2.506667pt;}
.ws17{word-spacing:-2.240000pt;}
.wsbc{word-spacing:-2.133333pt;}
.wsca{word-spacing:-2.080000pt;}
.wse6{word-spacing:-2.064000pt;}
.wsc6{word-spacing:-2.026667pt;}
.wsb5{word-spacing:-1.920000pt;}
.ws16{word-spacing:-1.706667pt;}
.wsab{word-spacing:-1.546667pt;}
.wsbf{word-spacing:-1.493333pt;}
.wsba{word-spacing:-1.386667pt;}
.wsb6{word-spacing:-1.333333pt;}
.wsec{word-spacing:-1.296000pt;}
.ws12{word-spacing:-1.248000pt;}
.wsb4{word-spacing:-1.173333pt;}
.ws21{word-spacing:-1.120000pt;}
.ws27{word-spacing:-1.066667pt;}
.ws55{word-spacing:-1.013333pt;}
.ws18{word-spacing:-0.912000pt;}
.ws66{word-spacing:-0.906667pt;}
.wsa5{word-spacing:-0.810667pt;}
.wsb0{word-spacing:-0.672000pt;}
.wscd{word-spacing:-0.640000pt;}
.wse3{word-spacing:-0.624000pt;}
.ws29{word-spacing:-0.586667pt;}
.ws53{word-spacing:-0.533333pt;}
.wsa4{word-spacing:-0.528000pt;}
.ws2f{word-spacing:-0.480000pt;}
.wsa6{word-spacing:-0.426667pt;}
.ws10{word-spacing:-0.384000pt;}
.ws1a{word-spacing:-0.373333pt;}
.ws3a{word-spacing:-0.336000pt;}
.ws2e{word-spacing:-0.320000pt;}
.ws13{word-spacing:-0.240000pt;}
.wsa{word-spacing:-0.192000pt;}
.wsc8{word-spacing:-0.160000pt;}
.ws24{word-spacing:-0.106667pt;}
.ws47{word-spacing:-0.053333pt;}
.wsc{word-spacing:-0.048000pt;}
.ws81{word-spacing:-0.042667pt;}
.ws9{word-spacing:0.000000pt;}
.wsae{word-spacing:0.053333pt;}
.wse4{word-spacing:0.096000pt;}
.ws39{word-spacing:0.160000pt;}
.ws72{word-spacing:0.192000pt;}
.ws4f{word-spacing:0.213333pt;}
.wsda{word-spacing:0.240000pt;}
.wsb7{word-spacing:0.320000pt;}
.ws71{word-spacing:0.384000pt;}
.wsde{word-spacing:0.480000pt;}
.wsb{word-spacing:0.614400pt;}
.ws5b{word-spacing:0.624000pt;}
.wsee{word-spacing:0.672000pt;}
.wsbe{word-spacing:0.693333pt;}
.wse0{word-spacing:0.720000pt;}
.wsea{word-spacing:0.768000pt;}
.ws4c{word-spacing:0.853333pt;}
.ws35{word-spacing:0.906667pt;}
.ws70{word-spacing:0.960000pt;}
.ws41{word-spacing:1.066667pt;}
.ws51{word-spacing:1.120000pt;}
.wsef{word-spacing:1.152000pt;}
.wscb{word-spacing:1.173333pt;}
.ws62{word-spacing:1.226667pt;}
.wsdf{word-spacing:1.296000pt;}
.ws40{word-spacing:1.333333pt;}
.ws44{word-spacing:1.386667pt;}
.ws15{word-spacing:1.440000pt;}
.wsb8{word-spacing:1.493333pt;}
.ws6f{word-spacing:1.546667pt;}
.ws57{word-spacing:1.600000pt;}
.ws60{word-spacing:1.653333pt;}
.wse2{word-spacing:1.680000pt;}
.wsc9{word-spacing:1.706667pt;}
.wse1{word-spacing:1.728000pt;}
.ws45{word-spacing:1.760000pt;}
.ws1f{word-spacing:1.813333pt;}
.ws5a{word-spacing:1.824000pt;}
.ws3f{word-spacing:1.920000pt;}
.ws52{word-spacing:1.973333pt;}
.wsc0{word-spacing:2.026667pt;}
.ws5f{word-spacing:2.080000pt;}
.ws22{word-spacing:2.186667pt;}
.ws1e{word-spacing:2.240000pt;}
.ws1b{word-spacing:2.293333pt;}
.ws61{word-spacing:2.346667pt;}
.ws30{word-spacing:2.400000pt;}
.wsd8{word-spacing:2.448000pt;}
.wsac{word-spacing:2.506667pt;}
.wsd7{word-spacing:2.544000pt;}
.wsaa{word-spacing:2.560000pt;}
.ws38{word-spacing:2.613333pt;}
.ws31{word-spacing:2.720000pt;}
.ws4d{word-spacing:2.773333pt;}
.ws6b{word-spacing:2.832000pt;}
.wsc1{word-spacing:2.986667pt;}
.wsf{word-spacing:3.024000pt;}
.wsc2{word-spacing:3.040000pt;}
.ws42{word-spacing:3.093333pt;}
.ws50{word-spacing:3.146667pt;}
.wsbd{word-spacing:3.200000pt;}
.ws73{word-spacing:3.216000pt;}
.wsaf{word-spacing:3.253333pt;}
.ws3e{word-spacing:3.306667pt;}
.ws2d{word-spacing:3.413333pt;}
.ws2c{word-spacing:3.466667pt;}
.ws2b{word-spacing:3.520000pt;}
.wsd{word-spacing:3.552000pt;}
.ws26{word-spacing:3.573333pt;}
.ws20{word-spacing:3.626667pt;}
.ws23{word-spacing:3.733333pt;}
.ws11{word-spacing:3.744000pt;}
.wsc7{word-spacing:3.786667pt;}
.wsb1{word-spacing:3.840000pt;}
.ws4a{word-spacing:3.893333pt;}
.wsed{word-spacing:3.936000pt;}
.wsb9{word-spacing:4.106667pt;}
.wsd5{word-spacing:4.128000pt;}
.ws14{word-spacing:4.176000pt;}
.wsc4{word-spacing:4.320000pt;}
.ws65{word-spacing:4.373333pt;}
.ws58{word-spacing:4.426667pt;}
.ws5d{word-spacing:4.480000pt;}
.ws1d{word-spacing:4.533333pt;}
.wsd2{word-spacing:4.586667pt;}
.ws67{word-spacing:4.640000pt;}
.ws5e{word-spacing:4.746667pt;}
.wsb2{word-spacing:4.906667pt;}
.wsc3{word-spacing:4.960000pt;}
.wse{word-spacing:5.088000pt;}
.ws2a{word-spacing:5.280000pt;}
.wse7{word-spacing:5.328000pt;}
.wsad{word-spacing:5.440000pt;}
.ws54{word-spacing:5.493333pt;}
.wse5{word-spacing:5.616000pt;}
.wseb{word-spacing:5.664000pt;}
.wsf1{word-spacing:5.808000pt;}
.ws63{word-spacing:5.813333pt;}
.ws43{word-spacing:5.920000pt;}
.wsa9{word-spacing:6.026667pt;}
.ws56{word-spacing:6.080000pt;}
.wsa7{word-spacing:6.186667pt;}
.wsdd{word-spacing:6.192000pt;}
.wsd9{word-spacing:6.240000pt;}
.wscf{word-spacing:6.453333pt;}
.wsd1{word-spacing:6.506667pt;}
.ws69{word-spacing:6.613333pt;}
.wsce{word-spacing:6.666667pt;}
.wsbb{word-spacing:6.826667pt;}
.wsa8{word-spacing:6.986667pt;}
.ws4b{word-spacing:7.093333pt;}
.wscc{word-spacing:7.253333pt;}
.ws36{word-spacing:7.360000pt;}
.wsb3{word-spacing:7.573333pt;}
.wsdc{word-spacing:7.632000pt;}
.ws46{word-spacing:7.680000pt;}
.ws1c{word-spacing:7.733333pt;}
.ws34{word-spacing:8.160000pt;}
.ws64{word-spacing:8.266667pt;}
.ws28{word-spacing:8.480000pt;}
.wsdb{word-spacing:8.928000pt;}
.ws59{word-spacing:9.333333pt;}
.ws49{word-spacing:9.440000pt;}
.wse8{word-spacing:9.792000pt;}
.wse9{word-spacing:9.888000pt;}
.ws6a{word-spacing:10.026667pt;}
.ws48{word-spacing:11.146667pt;}
.ws4e{word-spacing:11.466667pt;}
.ws6e{word-spacing:11.680000pt;}
.ws25{word-spacing:12.480000pt;}
.wsf0{word-spacing:13.008000pt;}
.wsd6{word-spacing:13.536000pt;}
.ws68{word-spacing:14.453333pt;}
.ws8e{word-spacing:115.136000pt;}
.ws84{word-spacing:115.322133pt;}
.ws7f{word-spacing:116.470933pt;}
.ws79{word-spacing:118.124267pt;}
.ws77{word-spacing:121.025600pt;}
.ws75{word-spacing:126.956267pt;}
.ws7a{word-spacing:129.868267pt;}
.ws7e{word-spacing:138.165867pt;}
.ws86{word-spacing:139.105067pt;}
.ws8a{word-spacing:151.093867pt;}
.ws80{word-spacing:152.858667pt;}
.ws8b{word-spacing:181.317867pt;}
.ws87{word-spacing:181.350400pt;}
.ws89{word-spacing:184.655467pt;}
.ws82{word-spacing:194.818667pt;}
.ws8c{word-spacing:196.624000pt;}
.ws8f{word-spacing:196.634667pt;}
.ws8d{word-spacing:196.666667pt;}
.ws88{word-spacing:199.587200pt;}
.ws7c{word-spacing:200.286400pt;}
.ws76{word-spacing:200.307200pt;}
.ws85{word-spacing:211.762667pt;}
.wsa3{word-spacing:237.778667pt;}
.ws91{word-spacing:237.800533pt;}
.ws96{word-spacing:261.757867pt;}
.ws83{word-spacing:269.378133pt;}
.wsa1{word-spacing:273.726400pt;}
.ws98{word-spacing:273.726933pt;}
.ws9d{word-spacing:273.736533pt;}
.ws9b{word-spacing:273.737067pt;}
.wsa2{word-spacing:273.758400pt;}
.wsa0{word-spacing:285.725867pt;}
.ws90{word-spacing:288.550400pt;}
.ws9a{word-spacing:297.725333pt;}
.ws97{word-spacing:300.518400pt;}
.ws95{word-spacing:300.518933pt;}
.ws9c{word-spacing:312.518400pt;}
.ws99{word-spacing:324.477333pt;}
.ws9f{word-spacing:324.497600pt;}
.ws94{word-spacing:340.789333pt;}
.ws93{word-spacing:340.789867pt;}
.ws9e{word-spacing:352.769067pt;}
.ws78{word-spacing:370.502400pt;}
.ws7b{word-spacing:370.513067pt;}
.ws92{word-spacing:465.405333pt;}
._c{margin-left:-9.058133pt;}
._46{margin-left:-8.149867pt;}
._3{margin-left:-6.917867pt;}
._b{margin-left:-5.189867pt;}
._4{margin-left:-3.672000pt;}
._6{margin-left:-2.476800pt;}
._1{margin-left:-1.341867pt;}
._2{width:1.613867pt;}
._0{width:2.946667pt;}
._9{width:4.474667pt;}
._d{width:5.505600pt;}
._8{width:6.926400pt;}
._f{width:7.905600pt;}
._7{width:9.585600pt;}
._a{width:10.810667pt;}
._e{width:12.074667pt;}
._45{width:13.561600pt;}
._43{width:14.522667pt;}
._47{width:22.963200pt;}
._5{width:32.554667pt;}
._44{width:38.259200pt;}
._2a{width:51.959275pt;}
._11{width:58.319275pt;}
._29{width:64.703467pt;}
._28{width:66.126400pt;}
._27{width:67.542400pt;}
._12{width:77.326933pt;}
._13{width:92.872000pt;}
._20{width:112.002133pt;}
._1b{width:117.946133pt;}
._10{width:125.857600pt;}
._21{width:161.851200pt;}
._23{width:166.388267pt;}
._25{width:167.419200pt;}
._1c{width:173.850667pt;}
._19{width:179.706133pt;}
._1a{width:189.054400pt;}
._24{width:191.804267pt;}
._22{width:195.279467pt;}
._1d{width:204.086933pt;}
._1f{width:207.216000pt;}
._14{width:210.878400pt;}
._18{width:212.076267pt;}
._1e{width:222.343467pt;}
._26{width:235.057067pt;}
._38{width:248.349867pt;}
._17{width:254.614933pt;}
._41{width:258.353067pt;}
._2e{width:273.266667pt;}
._15{width:285.316267pt;}
._39{width:294.941867pt;}
._33{width:296.317867pt;}
._37{width:299.121067pt;}
._30{width:308.307200pt;}
._3a{width:311.664000pt;}
._32{width:323.079467pt;}
._2f{width:335.100800pt;}
._2d{width:351.371200pt;}
._2c{width:363.370667pt;}
._31{width:367.399467pt;}
._16{width:381.094400pt;}
._40{width:415.987200pt;}
._34{width:425.288533pt;}
._3c{width:430.844800pt;}
._35{width:444.839467pt;}
._3b{width:478.034133pt;}
._42{width:481.618133pt;}
._2b{width:512.669333pt;}
._3d{width:515.325333pt;}
._3e{width:518.738133pt;}
._36{width:531.239467pt;}
._3f{width:568.316800pt;}
.fsa{font-size:24.874667pt;}
.fsb{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y43{bottom:63.299600pt;}
.y44{bottom:66.698800pt;}
.y7d{bottom:100.514400pt;}
.y9b{bottom:100.514533pt;}
.y2b{bottom:104.188933pt;}
.y10{bottom:104.778267pt;}
.yf{bottom:117.578267pt;}
.y75{bottom:119.181067pt;}
.y9a{bottom:119.181200pt;}
.y2a{bottom:122.855600pt;}
.yd5{bottom:126.139600pt;}
.ye{bottom:130.378267pt;}
.y74{bottom:137.847733pt;}
.y99{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.yd{bottom:143.178267pt;}
.yd4{bottom:145.856133pt;}
.y73{bottom:156.514400pt;}
.y98{bottom:156.514533pt;}
.y28{bottom:160.188933pt;}
.yf3{bottom:161.359467pt;}
.yd3{bottom:165.572667pt;}
.y72{bottom:175.181067pt;}
.y97{bottom:175.181200pt;}
.y40{bottom:177.237867pt;}
.yab{bottom:178.719200pt;}
.y27{bottom:178.855600pt;}
.yd2{bottom:185.289200pt;}
.y7c{bottom:187.947467pt;}
.ya1{bottom:192.603467pt;}
.y3f{bottom:193.237867pt;}
.y71{bottom:193.847733pt;}
.y96{bottom:193.847867pt;}
.yaa{bottom:196.319200pt;}
.y26{bottom:197.522267pt;}
.yd1{bottom:205.005733pt;}
.y3e{bottom:209.237867pt;}
.ya0{bottom:210.203467pt;}
.y70{bottom:212.514400pt;}
.y95{bottom:212.514533pt;}
.ya9{bottom:213.919333pt;}
.yd0{bottom:224.722267pt;}
.y3d{bottom:225.237867pt;}
.y25{bottom:226.795067pt;}
.y6f{bottom:231.181067pt;}
.y94{bottom:231.181200pt;}
.ya8{bottom:231.519333pt;}
.y3c{bottom:241.237867pt;}
.ycf{bottom:244.438800pt;}
.ya7{bottom:249.119333pt;}
.y6e{bottom:249.847733pt;}
.y93{bottom:249.847867pt;}
.y3b{bottom:257.237867pt;}
.yce{bottom:264.155333pt;}
.y6d{bottom:268.514400pt;}
.y92{bottom:268.514533pt;}
.y3a{bottom:273.237867pt;}
.ycd{bottom:283.871867pt;}
.y6c{bottom:287.181067pt;}
.y91{bottom:287.181200pt;}
.y39{bottom:289.237867pt;}
.y76{bottom:299.947467pt;}
.ycc{bottom:303.588400pt;}
.y38{bottom:305.237867pt;}
.y6b{bottom:305.847733pt;}
.y90{bottom:305.847867pt;}
.y24{bottom:309.713733pt;}
.yf2{bottom:310.692800pt;}
.y37{bottom:321.237867pt;}
.ycb{bottom:323.304933pt;}
.y6a{bottom:324.514400pt;}
.y8f{bottom:324.514533pt;}
.y36{bottom:337.237867pt;}
.yca{bottom:343.021467pt;}
.y69{bottom:343.181067pt;}
.y8e{bottom:343.181200pt;}
.y23{bottom:346.211467pt;}
.y35{bottom:353.237867pt;}
.y68{bottom:361.847733pt;}
.y8d{bottom:361.847867pt;}
.yc9{bottom:362.738000pt;}
.y22{bottom:363.811467pt;}
.yf1{bottom:366.692800pt;}
.y34{bottom:369.237867pt;}
.y67{bottom:380.514400pt;}
.y8c{bottom:380.514533pt;}
.y21{bottom:381.411467pt;}
.yc8{bottom:382.454533pt;}
.y33{bottom:385.237867pt;}
.y20{bottom:399.011333pt;}
.y66{bottom:399.181067pt;}
.y8b{bottom:399.181200pt;}
.yc7{bottom:402.171067pt;}
.y32{bottom:416.356000pt;}
.y1f{bottom:416.611467pt;}
.y65{bottom:417.847733pt;}
.y8a{bottom:417.847867pt;}
.yc6{bottom:421.887600pt;}
.yf0{bottom:422.692800pt;}
.y31{bottom:432.356000pt;}
.y1e{bottom:434.211467pt;}
.y64{bottom:436.514400pt;}
.y89{bottom:436.514533pt;}
.yc5{bottom:441.604133pt;}
.y7b{bottom:446.208267pt;}
.y30{bottom:448.356000pt;}
.y1d{bottom:451.811467pt;}
.y63{bottom:455.181067pt;}
.y88{bottom:455.181200pt;}
.yc4{bottom:461.320667pt;}
.y7a{bottom:463.808267pt;}
.y1c{bottom:469.411467pt;}
.y62{bottom:473.847733pt;}
.y87{bottom:473.847867pt;}
.yef{bottom:478.692800pt;}
.y2f{bottom:479.474133pt;}
.y79{bottom:481.408267pt;}
.y1b{bottom:487.011333pt;}
.yc3{bottom:488.415733pt;}
.y61{bottom:492.514400pt;}
.y86{bottom:492.514533pt;}
.y2e{bottom:495.474133pt;}
.y78{bottom:499.008267pt;}
.y1a{bottom:504.611467pt;}
.yc2{bottom:506.015733pt;}
.y60{bottom:511.181067pt;}
.y85{bottom:511.181200pt;}
.y2d{bottom:511.474133pt;}
.y77{bottom:516.608267pt;}
.y19{bottom:522.211467pt;}
.y2c{bottom:527.474133pt;}
.y5f{bottom:529.847733pt;}
.y84{bottom:529.847867pt;}
.yee{bottom:535.055200pt;}
.y18{bottom:539.811467pt;}
.y5e{bottom:548.514400pt;}
.y83{bottom:548.514533pt;}
.yc1{bottom:550.156133pt;}
.y17{bottom:557.411467pt;}
.yed{bottom:561.280933pt;}
.y5d{bottom:567.181067pt;}
.y82{bottom:567.181200pt;}
.yc0{bottom:569.872667pt;}
.y16{bottom:575.011333pt;}
.y5c{bottom:585.847733pt;}
.y81{bottom:585.847867pt;}
.ybf{bottom:589.589333pt;}
.y15{bottom:592.611333pt;}
.y5b{bottom:604.514400pt;}
.y80{bottom:604.514533pt;}
.ybe{bottom:609.305733pt;}
.y14{bottom:610.211333pt;}
.y5a{bottom:623.181067pt;}
.y7f{bottom:623.181200pt;}
.y13{bottom:627.811333pt;}
.ybd{bottom:629.022400pt;}
.yd6{bottom:634.299200pt;}
.y59{bottom:641.847733pt;}
.y7e{bottom:641.847867pt;}
.ya6{bottom:647.170000pt;}
.ybc{bottom:648.738800pt;}
.y12{bottom:655.453600pt;}
.y58{bottom:660.514400pt;}
.yeb{bottom:660.514533pt;}
.ya5{bottom:664.770000pt;}
.y9f{bottom:665.450400pt;}
.ya3{bottom:666.362533pt;}
.ybb{bottom:668.455467pt;}
.yd8{bottom:674.151200pt;}
.y57{bottom:679.181067pt;}
.yea{bottom:679.181200pt;}
.ya4{bottom:682.370000pt;}
.y9e{bottom:683.050400pt;}
.ya2{bottom:683.962533pt;}
.y9d{bottom:685.109333pt;}
.yba{bottom:688.172000pt;}
.yd7{bottom:691.751200pt;}
.y56{bottom:697.847733pt;}
.ye9{bottom:697.847867pt;}
.y9c{bottom:702.709333pt;}
.yb9{bottom:707.888533pt;}
.y55{bottom:716.514400pt;}
.ye8{bottom:716.514533pt;}
.yc{bottom:725.926133pt;}
.yb8{bottom:734.983467pt;}
.y54{bottom:735.181067pt;}
.ye7{bottom:735.181200pt;}
.yb{bottom:741.926133pt;}
.yb7{bottom:752.583467pt;}
.y53{bottom:753.847733pt;}
.ye6{bottom:753.847867pt;}
.ya{bottom:757.926133pt;}
.yec{bottom:766.614267pt;}
.yb6{bottom:770.183467pt;}
.y52{bottom:772.514400pt;}
.ye5{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.yb5{bottom:787.783467pt;}
.y8{bottom:789.926133pt;}
.y51{bottom:791.181067pt;}
.ye4{bottom:791.181200pt;}
.y7{bottom:805.926133pt;}
.y50{bottom:809.847733pt;}
.ye3{bottom:809.847867pt;}
.y6{bottom:821.926133pt;}
.y4f{bottom:828.514400pt;}
.ye2{bottom:828.514533pt;}
.yb4{bottom:831.923867pt;}
.y4e{bottom:847.181067pt;}
.ye1{bottom:847.181200pt;}
.yb3{bottom:851.640400pt;}
.y5{bottom:853.044133pt;}
.y4d{bottom:865.847733pt;}
.ye0{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.yb2{bottom:871.356933pt;}
.y4c{bottom:884.514400pt;}
.ydf{bottom:884.514533pt;}
.yb1{bottom:891.073467pt;}
.y4b{bottom:903.181067pt;}
.yde{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.yb0{bottom:910.790000pt;}
.y4a{bottom:921.847733pt;}
.ydd{bottom:921.847867pt;}
.yaf{bottom:930.506533pt;}
.y2{bottom:932.695600pt;}
.y49{bottom:940.514400pt;}
.ydc{bottom:940.514533pt;}
.yae{bottom:950.223200pt;}
.y48{bottom:959.181067pt;}
.ydb{bottom:959.181200pt;}
.yad{bottom:977.318133pt;}
.y47{bottom:977.847733pt;}
.yda{bottom:977.847867pt;}
.y11{bottom:986.502667pt;}
.yf4{bottom:988.062933pt;}
.yac{bottom:994.918133pt;}
.y46{bottom:996.514400pt;}
.yd9{bottom:996.514533pt;}
.y42{bottom:1027.213600pt;}
.y41{bottom:1044.546933pt;}
.y45{bottom:1047.726000pt;}
.h6{height:30.618750pt;}
.h14{height:33.666667pt;}
.h2{height:33.812500pt;}
.h12{height:33.835667pt;}
.h11{height:34.020833pt;}
.h5{height:34.250000pt;}
.h13{height:34.666667pt;}
.h10{height:36.492188pt;}
.hf{height:38.039062pt;}
.h7{height:38.226562pt;}
.he{height:38.273438pt;}
.ha{height:38.507812pt;}
.h9{height:39.000000pt;}
.h8{height:42.083333pt;}
.hd{height:42.786458pt;}
.hc{height:43.333333pt;}
.h15{height:44.601562pt;}
.h16{height:46.291667pt;}
.h4{height:47.666667pt;}
.hb{height:50.500000pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.172400pt;}
.xc{left:96.255067pt;}
.x11{left:99.779600pt;}
.x5{left:106.290133pt;}
.x6{left:107.597867pt;}
.x7{left:109.707333pt;}
.x10{left:145.737200pt;}
.x4{left:266.834667pt;}
.xe{left:270.614267pt;}
.xb{left:281.952800pt;}
.xd{left:287.882533pt;}
.xf{left:296.223733pt;}
.x3{left:352.045067pt;}
.x9{left:579.974800pt;}
.x8{left:597.438400pt;}
.x1{left:712.301467pt;}
}




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