
    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_9609d3ceae7b808a6e7ca71f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_2b1c5cfe9ac6f32868eb0f46.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708000;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_07036e28897e0871d7868648.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.080000;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_248a3bae6c431cbcb6129169.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_e75ec2fcbe9a801151b4caf2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_08dcb13b99dc70cf4893fd89.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.094000;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_8cea80af5860d27d52295b01.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.041000;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_bf867b2fcc3eec9b093ff42f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.080000;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_f3747c38d1ac9ddb6788f5f6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.989000;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_297755472a89b8387e8d5830.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.944000;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_2b1c5cfe9ac6f32868eb0f46.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708000;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_3f1d6df5323209e18b31035f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.989000;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_b53bfa6d284b92637588d0fe.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.080000;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:ffe;src:url('chunks/assets/font_46ff1d8336a5b6e6f36bb3e5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.944000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls1a{letter-spacing:-3.180000px;}
.ls5{letter-spacing:-2.016000px;}
.lsf{letter-spacing:-0.900000px;}
.ls11{letter-spacing:-0.840000px;}
.ls14{letter-spacing:-0.780000px;}
.ls2{letter-spacing:-0.660000px;}
.ls3{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.576000px;}
.ls1{letter-spacing:-0.480000px;}
.ls10{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.300000px;}
.lsa{letter-spacing:-0.240000px;}
.ls8{letter-spacing:-0.192000px;}
.ls12{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.120000px;}
.lsd{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.349560px;}
.ls19{letter-spacing:0.420000px;}
.ls6{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.698820px;}
.lse{letter-spacing:0.840000px;}
.ls17{letter-spacing:0.900000px;}
.ls16{letter-spacing:0.960000px;}
.lsc{letter-spacing:1.080000px;}
.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;}
}
.wsaf{word-spacing:-16.980000px;}
.ws6c{word-spacing:-16.020000px;}
.ws39{word-spacing:-15.720000px;}
.wsc3{word-spacing:-15.480000px;}
.ws3{word-spacing:-15.282000px;}
.wsbd{word-spacing:-14.820000px;}
.ws4{word-spacing:-14.148000px;}
.ws61{word-spacing:-13.584000px;}
.ws4f{word-spacing:-13.392000px;}
.ws79{word-spacing:-13.344000px;}
.wsae{word-spacing:-13.008000px;}
.ws1{word-spacing:-12.576000px;}
.ws2{word-spacing:-12.096000px;}
.ws38{word-spacing:-11.568000px;}
.ws20{word-spacing:-9.164760px;}
.ws91{word-spacing:-4.860000px;}
.ws62{word-spacing:-4.080000px;}
.ws92{word-spacing:-3.300000px;}
.ws65{word-spacing:-3.000000px;}
.ws84{word-spacing:-2.940000px;}
.ws8d{word-spacing:-2.820000px;}
.ws66{word-spacing:-2.760000px;}
.ws93{word-spacing:-2.700000px;}
.wsb5{word-spacing:-2.580000px;}
.ws7f{word-spacing:-2.520000px;}
.ws46{word-spacing:-2.340000px;}
.ws42{word-spacing:-2.280000px;}
.ws73{word-spacing:-2.220000px;}
.ws2a{word-spacing:-2.100000px;}
.ws56{word-spacing:-2.040000px;}
.ws8c{word-spacing:-1.920000px;}
.wsb4{word-spacing:-1.800000px;}
.ws77{word-spacing:-1.680000px;}
.wsc1{word-spacing:-1.620000px;}
.wsc0{word-spacing:-1.560000px;}
.ws96{word-spacing:-1.260000px;}
.ws94{word-spacing:-1.140000px;}
.ws1f{word-spacing:-1.080000px;}
.ws86{word-spacing:-0.960000px;}
.wsc4{word-spacing:-0.900000px;}
.ws3a{word-spacing:-0.840000px;}
.wsb8{word-spacing:-0.780000px;}
.ws70{word-spacing:-0.720000px;}
.ws13{word-spacing:-0.702000px;}
.ws54{word-spacing:-0.660000px;}
.ws6a{word-spacing:-0.600000px;}
.ws16{word-spacing:-0.540000px;}
.ws5e{word-spacing:-0.528000px;}
.ws7{word-spacing:-0.480000px;}
.ws1a{word-spacing:-0.432000px;}
.wsc5{word-spacing:-0.420000px;}
.ws58{word-spacing:-0.300000px;}
.wsa2{word-spacing:-0.180000px;}
.ws71{word-spacing:-0.120000px;}
.ws0{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.ws60{word-spacing:0.048000px;}
.ws51{word-spacing:0.060000px;}
.ws15{word-spacing:0.162000px;}
.ws2c{word-spacing:0.180000px;}
.ws6d{word-spacing:0.240000px;}
.ws45{word-spacing:0.300000px;}
.ws69{word-spacing:0.336000px;}
.ws2b{word-spacing:0.360000px;}
.ws4e{word-spacing:0.420000px;}
.ws6{word-spacing:0.480000px;}
.wsbb{word-spacing:0.540000px;}
.ws3b{word-spacing:0.600000px;}
.ws1e{word-spacing:0.660000px;}
.ws17{word-spacing:0.702000px;}
.wsad{word-spacing:0.720000px;}
.wsa6{word-spacing:0.840000px;}
.ws1c{word-spacing:0.864000px;}
.ws52{word-spacing:0.960000px;}
.ws97{word-spacing:1.020000px;}
.ws88{word-spacing:1.200000px;}
.ws63{word-spacing:1.260000px;}
.ws19{word-spacing:1.296000px;}
.wsa9{word-spacing:1.380000px;}
.ws1b{word-spacing:1.404000px;}
.ws74{word-spacing:1.440000px;}
.ws28{word-spacing:1.500000px;}
.wsc2{word-spacing:1.560000px;}
.wsbf{word-spacing:1.620000px;}
.ws47{word-spacing:1.680000px;}
.ws83{word-spacing:1.740000px;}
.ws95{word-spacing:1.800000px;}
.ws9e{word-spacing:1.860000px;}
.ws8a{word-spacing:1.920000px;}
.ws99{word-spacing:1.980000px;}
.ws76{word-spacing:2.040000px;}
.ws5f{word-spacing:2.064000px;}
.wsa7{word-spacing:2.160000px;}
.ws35{word-spacing:2.220000px;}
.ws18{word-spacing:2.376000px;}
.wsb0{word-spacing:2.400000px;}
.ws89{word-spacing:2.460000px;}
.ws3f{word-spacing:2.580000px;}
.wsb7{word-spacing:2.640000px;}
.ws4a{word-spacing:2.700000px;}
.ws36{word-spacing:2.760000px;}
.ws7a{word-spacing:2.820000px;}
.ws6f{word-spacing:2.880000px;}
.ws8b{word-spacing:3.000000px;}
.wsd{word-spacing:3.024000px;}
.ws7c{word-spacing:3.060000px;}
.ws14{word-spacing:3.078000px;}
.wsc{word-spacing:3.132000px;}
.ws41{word-spacing:3.180000px;}
.ws8e{word-spacing:3.240000px;}
.ws9{word-spacing:3.294000px;}
.ws31{word-spacing:3.300000px;}
.ws4d{word-spacing:3.420000px;}
.wsa0{word-spacing:3.480000px;}
.ws5a{word-spacing:3.540000px;}
.wsa8{word-spacing:3.600000px;}
.ws8{word-spacing:3.618000px;}
.ws25{word-spacing:3.660000px;}
.ws5d{word-spacing:3.720000px;}
.ws3e{word-spacing:3.780000px;}
.ws64{word-spacing:3.840000px;}
.ws80{word-spacing:3.900000px;}
.ws5c{word-spacing:3.960000px;}
.ws50{word-spacing:4.020000px;}
.ws7e{word-spacing:4.080000px;}
.wsf{word-spacing:4.104000px;}
.wsa4{word-spacing:4.140000px;}
.ws6b{word-spacing:4.200000px;}
.ws67{word-spacing:4.320000px;}
.wsb3{word-spacing:4.380000px;}
.ws2e{word-spacing:4.440000px;}
.ws55{word-spacing:4.560000px;}
.ws9f{word-spacing:4.620000px;}
.ws9c{word-spacing:4.680000px;}
.ws40{word-spacing:4.740000px;}
.ws8f{word-spacing:4.752000px;}
.ws12{word-spacing:4.860000px;}
.ws24{word-spacing:4.980000px;}
.ws9b{word-spacing:5.100000px;}
.wsa1{word-spacing:5.160000px;}
.ws44{word-spacing:5.184000px;}
.ws7b{word-spacing:5.220000px;}
.ws85{word-spacing:5.280000px;}
.ws53{word-spacing:5.340000px;}
.ws90{word-spacing:5.520000px;}
.ws75{word-spacing:5.580000px;}
.ws43{word-spacing:5.616000px;}
.wsa{word-spacing:5.670000px;}
.ws2f{word-spacing:5.700000px;}
.wsb2{word-spacing:5.760000px;}
.ws9a{word-spacing:5.940000px;}
.ws29{word-spacing:6.000000px;}
.ws59{word-spacing:6.060000px;}
.ws72{word-spacing:6.120000px;}
.ws68{word-spacing:6.300000px;}
.ws78{word-spacing:6.360000px;}
.ws23{word-spacing:6.420000px;}
.wsb6{word-spacing:6.600000px;}
.ws87{word-spacing:6.660000px;}
.ws26{word-spacing:6.840000px;}
.wsbc{word-spacing:6.960000px;}
.wsb9{word-spacing:7.020000px;}
.ws7d{word-spacing:7.140000px;}
.ws4b{word-spacing:7.200000px;}
.ws49{word-spacing:7.248000px;}
.ws98{word-spacing:7.260000px;}
.ws3c{word-spacing:7.320000px;}
.ws82{word-spacing:7.380000px;}
.ws5b{word-spacing:7.500000px;}
.wsb1{word-spacing:7.620000px;}
.ws33{word-spacing:7.680000px;}
.ws10{word-spacing:7.722000px;}
.ws48{word-spacing:7.824000px;}
.ws9d{word-spacing:7.860000px;}
.ws81{word-spacing:7.920000px;}
.ws22{word-spacing:7.980000px;}
.wsa5{word-spacing:8.280000px;}
.ws1d{word-spacing:8.316000px;}
.ws27{word-spacing:8.340000px;}
.wsb{word-spacing:8.640000px;}
.ws57{word-spacing:8.820000px;}
.wsab{word-spacing:9.000000px;}
.ws6e{word-spacing:9.120000px;}
.wsac{word-spacing:9.300000px;}
.ws11{word-spacing:9.396000px;}
.ws34{word-spacing:9.660000px;}
.wse{word-spacing:9.666000px;}
.wsaa{word-spacing:9.720000px;}
.wsa3{word-spacing:9.960000px;}
.ws3d{word-spacing:10.020000px;}
.ws2d{word-spacing:10.320000px;}
.ws37{word-spacing:10.620000px;}
.wsbe{word-spacing:11.040000px;}
.ws4c{word-spacing:12.420000px;}
.ws21{word-spacing:12.660000px;}
.ws32{word-spacing:13.500000px;}
.wsba{word-spacing:14.820000px;}
.ws30{word-spacing:15.660000px;}
._0{margin-left:-1380.807600px;}
._f{margin-left:-1003.771800px;}
._d{margin-left:-999.307800px;}
._12{margin-left:-997.003800px;}
._1a{margin-left:-989.899800px;}
._10{margin-left:-987.883800px;}
._4{margin-left:-4.226400px;}
._3{margin-left:-3.120000px;}
._9{margin-left:-2.106000px;}
._1{margin-left:-1.012800px;}
._2{width:1.488000px;}
._5{width:3.108000px;}
._6{width:4.249800px;}
._7{width:5.321400px;}
._8{width:6.741000px;}
._b{width:8.677800px;}
._a{width:9.752400px;}
._c{width:11.511600px;}
._11{width:12.528000px;}
._e{width:14.286000px;}
._19{width:17.220000px;}
._17{width:19.620000px;}
._15{width:21.120000px;}
._16{width:23.280000px;}
._18{width:25.512000px;}
._14{width:36.360000px;}
._13{width:52.530000px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(87,87,86);}
.fc0{color:rgb(112,111,111);}
.fs4{font-size:34.980000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:40.977600px;}
.y7f{bottom:40.978200px;}
.y2{bottom:40.979550px;}
.yb5{bottom:55.377600px;}
.y7e{bottom:55.378200px;}
.y1{bottom:55.379550px;}
.y30{bottom:127.105350px;}
.yb1{bottom:129.078150px;}
.y5b{bottom:132.933150px;}
.ya6{bottom:134.336100px;}
.y78{bottom:138.425550px;}
.ye7{bottom:140.208150px;}
.y62{bottom:142.575600px;}
.y8e{bottom:142.631100px;}
.y75{bottom:143.133300px;}
.y2f{bottom:145.105350px;}
.yb0{bottom:147.078150px;}
.yb4{bottom:149.553600px;}
.y5a{bottom:150.933150px;}
.ya5{bottom:152.336100px;}
.y77{bottom:156.425550px;}
.ye6{bottom:158.208150px;}
.y61{bottom:160.575600px;}
.y8d{bottom:160.631100px;}
.y74{bottom:161.133300px;}
.y7d{bottom:162.718200px;}
.y2e{bottom:163.105350px;}
.yb3{bottom:163.953600px;}
.yaf{bottom:165.078150px;}
.ya7{bottom:168.933150px;}
.yc2{bottom:169.953150px;}
.ya4{bottom:170.336100px;}
.y76{bottom:170.825550px;}
.ye5{bottom:176.208150px;}
.yb2{bottom:178.353600px;}
.y8c{bottom:178.631100px;}
.y73{bottom:179.133300px;}
.y7c{bottom:180.718200px;}
.yae{bottom:183.078150px;}
.y59{bottom:186.933150px;}
.yc1{bottom:187.953150px;}
.ya3{bottom:188.336100px;}
.ye4{bottom:194.208150px;}
.y60{bottom:196.575600px;}
.y8b{bottom:196.631100px;}
.y72{bottom:197.133300px;}
.y2d{bottom:199.130850px;}
.yad{bottom:201.078150px;}
.y58{bottom:204.933150px;}
.yc0{bottom:205.953150px;}
.ya2{bottom:206.336100px;}
.ye3{bottom:212.208150px;}
.y2c{bottom:214.129350px;}
.y8a{bottom:214.631100px;}
.y71{bottom:215.133300px;}
.yac{bottom:219.078150px;}
.y57{bottom:222.933150px;}
.ybf{bottom:223.953150px;}
.ya1{bottom:224.336100px;}
.ye2{bottom:230.208150px;}
.y5f{bottom:232.575600px;}
.y89{bottom:232.631100px;}
.y70{bottom:233.133300px;}
.yab{bottom:237.078150px;}
.y56{bottom:240.933150px;}
.ya0{bottom:242.336100px;}
.y2b{bottom:244.126350px;}
.ybe{bottom:246.198150px;}
.y5e{bottom:246.975600px;}
.ye1{bottom:248.208150px;}
.y88{bottom:250.631100px;}
.y6f{bottom:251.133300px;}
.yaa{bottom:255.078150px;}
.y55{bottom:258.933150px;}
.y2a{bottom:259.124850px;}
.y9f{bottom:260.336100px;}
.y5d{bottom:261.375600px;}
.ybd{bottom:264.198150px;}
.ye0{bottom:266.208150px;}
.y87{bottom:268.631100px;}
.y6e{bottom:269.133300px;}
.y29{bottom:274.123350px;}
.y54{bottom:276.933150px;}
.y9e{bottom:278.336100px;}
.ydf{bottom:284.208150px;}
.ybc{bottom:286.443150px;}
.y86{bottom:286.631100px;}
.y6d{bottom:287.133300px;}
.y28{bottom:289.121850px;}
.ya9{bottom:291.078150px;}
.y53{bottom:294.933150px;}
.y9d{bottom:296.336100px;}
.y27{bottom:304.120350px;}
.ybb{bottom:304.443150px;}
.y85{bottom:304.631100px;}
.y6c{bottom:305.133300px;}
.ya8{bottom:309.078150px;}
.yde{bottom:310.713150px;}
.y52{bottom:312.933150px;}
.y9c{bottom:314.336100px;}
.y26{bottom:319.118850px;}
.yba{bottom:322.443150px;}
.y84{bottom:322.631100px;}
.y6b{bottom:323.133300px;}
.ydd{bottom:328.713150px;}
.y51{bottom:330.933150px;}
.y9b{bottom:332.336100px;}
.y25{bottom:334.117350px;}
.y83{bottom:340.631100px;}
.y6a{bottom:341.133300px;}
.yb9{bottom:344.688150px;}
.ydc{bottom:346.713150px;}
.y50{bottom:348.933150px;}
.y24{bottom:349.115850px;}
.y9a{bottom:350.336100px;}
.y82{bottom:358.631100px;}
.y69{bottom:359.133300px;}
.yb8{bottom:362.688150px;}
.y23{bottom:364.114350px;}
.ydb{bottom:364.713150px;}
.y4f{bottom:366.933150px;}
.y99{bottom:368.336100px;}
.y68{bottom:377.133300px;}
.y22{bottom:379.112850px;}
.yb7{bottom:380.688150px;}
.yda{bottom:382.713150px;}
.y4e{bottom:384.933150px;}
.y98{bottom:386.336100px;}
.y21{bottom:394.111350px;}
.y81{bottom:394.631100px;}
.y67{bottom:395.133300px;}
.y4d{bottom:402.933150px;}
.y97{bottom:404.336100px;}
.y80{bottom:409.031100px;}
.y20{bottom:409.109850px;}
.yd9{bottom:409.218150px;}
.y66{bottom:413.133300px;}
.y4c{bottom:420.933150px;}
.y96{bottom:422.336100px;}
.y1f{bottom:424.108350px;}
.yd8{bottom:427.218150px;}
.y4b{bottom:438.933150px;}
.y1e{bottom:439.106850px;}
.y95{bottom:440.336100px;}
.yd7{bottom:445.218150px;}
.y65{bottom:449.133300px;}
.y1d{bottom:454.105350px;}
.y4a{bottom:456.933150px;}
.y94{bottom:458.336100px;}
.yd6{bottom:463.218150px;}
.y64{bottom:463.533300px;}
.y49{bottom:474.933150px;}
.y93{bottom:476.336100px;}
.yf6{bottom:477.903150px;}
.y63{bottom:477.933300px;}
.yd5{bottom:481.218150px;}
.y1c{bottom:491.357400px;}
.y48{bottom:492.933150px;}
.y92{bottom:494.336100px;}
.yd4{bottom:499.218150px;}
.y47{bottom:510.933150px;}
.y1b{bottom:512.957400px;}
.yd3{bottom:517.218150px;}
.y46{bottom:528.933150px;}
.y91{bottom:530.336100px;}
.yd2{bottom:535.218150px;}
.y45{bottom:546.933150px;}
.y90{bottom:548.336100px;}
.y1a{bottom:549.582900px;}
.y7b{bottom:552.075600px;}
.y8f{bottom:562.736100px;}
.y19{bottom:564.581400px;}
.y44{bottom:564.933150px;}
.y7a{bottom:566.475600px;}
.y79{bottom:580.875600px;}
.y43{bottom:582.933150px;}
.yf5{bottom:585.903150px;}
.yd1{bottom:593.463150px;}
.y18{bottom:594.578400px;}
.y42{bottom:600.933150px;}
.y17{bottom:609.576900px;}
.yd0{bottom:611.463150px;}
.yf4{bottom:612.408150px;}
.y41{bottom:618.933150px;}
.y16{bottom:624.575400px;}
.ycf{bottom:629.463150px;}
.y40{bottom:636.933150px;}
.yf3{bottom:638.913150px;}
.y15{bottom:639.573900px;}
.yce{bottom:651.708150px;}
.y14{bottom:654.572400px;}
.y3f{bottom:654.933150px;}
.yf2{bottom:656.913150px;}
.y13{bottom:669.570900px;}
.ycd{bottom:669.708150px;}
.y3e{bottom:672.933150px;}
.yf1{bottom:674.913150px;}
.y12{bottom:684.569400px;}
.ycc{bottom:687.708150px;}
.y3d{bottom:690.933150px;}
.yf0{bottom:692.913150px;}
.y11{bottom:699.567900px;}
.y3c{bottom:708.933150px;}
.ycb{bottom:709.953150px;}
.yef{bottom:710.913150px;}
.y10{bottom:714.566400px;}
.y3b{bottom:726.933150px;}
.yca{bottom:727.953150px;}
.yf{bottom:729.564900px;}
.yee{bottom:737.418150px;}
.ye{bottom:744.563400px;}
.y3a{bottom:744.933150px;}
.yc9{bottom:750.198150px;}
.yd{bottom:759.561900px;}
.y39{bottom:762.933150px;}
.yed{bottom:763.923150px;}
.yc8{bottom:768.198150px;}
.yc{bottom:774.560400px;}
.y38{bottom:780.933150px;}
.yec{bottom:781.923150px;}
.yc7{bottom:786.198150px;}
.yb{bottom:789.558900px;}
.y37{bottom:798.933150px;}
.ya{bottom:804.557400px;}
.yeb{bottom:808.428150px;}
.yc6{bottom:808.443150px;}
.y36{bottom:816.933150px;}
.yea{bottom:826.428150px;}
.yc5{bottom:826.443150px;}
.y9{bottom:834.557400px;}
.y35{bottom:834.933150px;}
.ye9{bottom:844.428150px;}
.yc4{bottom:848.688150px;}
.y8{bottom:852.557400px;}
.y34{bottom:852.933150px;}
.ye8{bottom:862.428150px;}
.yc3{bottom:866.688150px;}
.y33{bottom:870.933150px;}
.y7{bottom:874.809300px;}
.y32{bottom:888.933150px;}
.y6{bottom:896.409300px;}
.y5c{bottom:906.933150px;}
.y5{bottom:918.009300px;}
.y31{bottom:924.933150px;}
.y4{bottom:967.007550px;}
.y3{bottom:980.507550px;}
.h2{height:37.776000px;}
.h3{height:42.288000px;}
.h7{height:42.498000px;}
.ha{height:44.760000px;}
.h9{height:45.468000px;}
.h5{height:47.220000px;}
.h8{height:47.574000px;}
.hb{height:50.520000px;}
.h6{height:52.860000px;}
.h4{height:66.024000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:57.372600px;}
.xc{left:59.124600px;}
.xb{left:83.810550px;}
.x5{left:85.045200px;}
.x9{left:95.669250px;}
.x7{left:106.275750px;}
.xa{left:123.329100px;}
.x8{left:127.958400px;}
.xe{left:134.930550px;}
.xd{left:136.175550px;}
.xf{left:163.915500px;}
.x2{left:414.865200px;}
.x4{left:531.685200px;}
.x3{left:543.133200px;}
.x1{left:649.175100px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls1a{letter-spacing:-2.826667pt;}
.ls5{letter-spacing:-1.792000pt;}
.lsf{letter-spacing:-0.800000pt;}
.ls11{letter-spacing:-0.746667pt;}
.ls14{letter-spacing:-0.693333pt;}
.ls2{letter-spacing:-0.586667pt;}
.ls3{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.512000pt;}
.ls1{letter-spacing:-0.426667pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.266667pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls8{letter-spacing:-0.170667pt;}
.ls12{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.106667pt;}
.lsd{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.310720pt;}
.ls19{letter-spacing:0.373333pt;}
.ls6{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.621173pt;}
.lse{letter-spacing:0.746667pt;}
.ls17{letter-spacing:0.800000pt;}
.ls16{letter-spacing:0.853333pt;}
.lsc{letter-spacing:0.960000pt;}
.wsaf{word-spacing:-15.093333pt;}
.ws6c{word-spacing:-14.240000pt;}
.ws39{word-spacing:-13.973333pt;}
.wsc3{word-spacing:-13.760000pt;}
.ws3{word-spacing:-13.584000pt;}
.wsbd{word-spacing:-13.173333pt;}
.ws4{word-spacing:-12.576000pt;}
.ws61{word-spacing:-12.074667pt;}
.ws4f{word-spacing:-11.904000pt;}
.ws79{word-spacing:-11.861333pt;}
.wsae{word-spacing:-11.562667pt;}
.ws1{word-spacing:-11.178667pt;}
.ws2{word-spacing:-10.752000pt;}
.ws38{word-spacing:-10.282667pt;}
.ws20{word-spacing:-8.146453pt;}
.ws91{word-spacing:-4.320000pt;}
.ws62{word-spacing:-3.626667pt;}
.ws92{word-spacing:-2.933333pt;}
.ws65{word-spacing:-2.666667pt;}
.ws84{word-spacing:-2.613333pt;}
.ws8d{word-spacing:-2.506667pt;}
.ws66{word-spacing:-2.453333pt;}
.ws93{word-spacing:-2.400000pt;}
.wsb5{word-spacing:-2.293333pt;}
.ws7f{word-spacing:-2.240000pt;}
.ws46{word-spacing:-2.080000pt;}
.ws42{word-spacing:-2.026667pt;}
.ws73{word-spacing:-1.973333pt;}
.ws2a{word-spacing:-1.866667pt;}
.ws56{word-spacing:-1.813333pt;}
.ws8c{word-spacing:-1.706667pt;}
.wsb4{word-spacing:-1.600000pt;}
.ws77{word-spacing:-1.493333pt;}
.wsc1{word-spacing:-1.440000pt;}
.wsc0{word-spacing:-1.386667pt;}
.ws96{word-spacing:-1.120000pt;}
.ws94{word-spacing:-1.013333pt;}
.ws1f{word-spacing:-0.960000pt;}
.ws86{word-spacing:-0.853333pt;}
.wsc4{word-spacing:-0.800000pt;}
.ws3a{word-spacing:-0.746667pt;}
.wsb8{word-spacing:-0.693333pt;}
.ws70{word-spacing:-0.640000pt;}
.ws13{word-spacing:-0.624000pt;}
.ws54{word-spacing:-0.586667pt;}
.ws6a{word-spacing:-0.533333pt;}
.ws16{word-spacing:-0.480000pt;}
.ws5e{word-spacing:-0.469333pt;}
.ws7{word-spacing:-0.426667pt;}
.ws1a{word-spacing:-0.384000pt;}
.wsc5{word-spacing:-0.373333pt;}
.ws58{word-spacing:-0.266667pt;}
.wsa2{word-spacing:-0.160000pt;}
.ws71{word-spacing:-0.106667pt;}
.ws0{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.ws60{word-spacing:0.042667pt;}
.ws51{word-spacing:0.053333pt;}
.ws15{word-spacing:0.144000pt;}
.ws2c{word-spacing:0.160000pt;}
.ws6d{word-spacing:0.213333pt;}
.ws45{word-spacing:0.266667pt;}
.ws69{word-spacing:0.298667pt;}
.ws2b{word-spacing:0.320000pt;}
.ws4e{word-spacing:0.373333pt;}
.ws6{word-spacing:0.426667pt;}
.wsbb{word-spacing:0.480000pt;}
.ws3b{word-spacing:0.533333pt;}
.ws1e{word-spacing:0.586667pt;}
.ws17{word-spacing:0.624000pt;}
.wsad{word-spacing:0.640000pt;}
.wsa6{word-spacing:0.746667pt;}
.ws1c{word-spacing:0.768000pt;}
.ws52{word-spacing:0.853333pt;}
.ws97{word-spacing:0.906667pt;}
.ws88{word-spacing:1.066667pt;}
.ws63{word-spacing:1.120000pt;}
.ws19{word-spacing:1.152000pt;}
.wsa9{word-spacing:1.226667pt;}
.ws1b{word-spacing:1.248000pt;}
.ws74{word-spacing:1.280000pt;}
.ws28{word-spacing:1.333333pt;}
.wsc2{word-spacing:1.386667pt;}
.wsbf{word-spacing:1.440000pt;}
.ws47{word-spacing:1.493333pt;}
.ws83{word-spacing:1.546667pt;}
.ws95{word-spacing:1.600000pt;}
.ws9e{word-spacing:1.653333pt;}
.ws8a{word-spacing:1.706667pt;}
.ws99{word-spacing:1.760000pt;}
.ws76{word-spacing:1.813333pt;}
.ws5f{word-spacing:1.834667pt;}
.wsa7{word-spacing:1.920000pt;}
.ws35{word-spacing:1.973333pt;}
.ws18{word-spacing:2.112000pt;}
.wsb0{word-spacing:2.133333pt;}
.ws89{word-spacing:2.186667pt;}
.ws3f{word-spacing:2.293333pt;}
.wsb7{word-spacing:2.346667pt;}
.ws4a{word-spacing:2.400000pt;}
.ws36{word-spacing:2.453333pt;}
.ws7a{word-spacing:2.506667pt;}
.ws6f{word-spacing:2.560000pt;}
.ws8b{word-spacing:2.666667pt;}
.wsd{word-spacing:2.688000pt;}
.ws7c{word-spacing:2.720000pt;}
.ws14{word-spacing:2.736000pt;}
.wsc{word-spacing:2.784000pt;}
.ws41{word-spacing:2.826667pt;}
.ws8e{word-spacing:2.880000pt;}
.ws9{word-spacing:2.928000pt;}
.ws31{word-spacing:2.933333pt;}
.ws4d{word-spacing:3.040000pt;}
.wsa0{word-spacing:3.093333pt;}
.ws5a{word-spacing:3.146667pt;}
.wsa8{word-spacing:3.200000pt;}
.ws8{word-spacing:3.216000pt;}
.ws25{word-spacing:3.253333pt;}
.ws5d{word-spacing:3.306667pt;}
.ws3e{word-spacing:3.360000pt;}
.ws64{word-spacing:3.413333pt;}
.ws80{word-spacing:3.466667pt;}
.ws5c{word-spacing:3.520000pt;}
.ws50{word-spacing:3.573333pt;}
.ws7e{word-spacing:3.626667pt;}
.wsf{word-spacing:3.648000pt;}
.wsa4{word-spacing:3.680000pt;}
.ws6b{word-spacing:3.733333pt;}
.ws67{word-spacing:3.840000pt;}
.wsb3{word-spacing:3.893333pt;}
.ws2e{word-spacing:3.946667pt;}
.ws55{word-spacing:4.053333pt;}
.ws9f{word-spacing:4.106667pt;}
.ws9c{word-spacing:4.160000pt;}
.ws40{word-spacing:4.213333pt;}
.ws8f{word-spacing:4.224000pt;}
.ws12{word-spacing:4.320000pt;}
.ws24{word-spacing:4.426667pt;}
.ws9b{word-spacing:4.533333pt;}
.wsa1{word-spacing:4.586667pt;}
.ws44{word-spacing:4.608000pt;}
.ws7b{word-spacing:4.640000pt;}
.ws85{word-spacing:4.693333pt;}
.ws53{word-spacing:4.746667pt;}
.ws90{word-spacing:4.906667pt;}
.ws75{word-spacing:4.960000pt;}
.ws43{word-spacing:4.992000pt;}
.wsa{word-spacing:5.040000pt;}
.ws2f{word-spacing:5.066667pt;}
.wsb2{word-spacing:5.120000pt;}
.ws9a{word-spacing:5.280000pt;}
.ws29{word-spacing:5.333333pt;}
.ws59{word-spacing:5.386667pt;}
.ws72{word-spacing:5.440000pt;}
.ws68{word-spacing:5.600000pt;}
.ws78{word-spacing:5.653333pt;}
.ws23{word-spacing:5.706667pt;}
.wsb6{word-spacing:5.866667pt;}
.ws87{word-spacing:5.920000pt;}
.ws26{word-spacing:6.080000pt;}
.wsbc{word-spacing:6.186667pt;}
.wsb9{word-spacing:6.240000pt;}
.ws7d{word-spacing:6.346667pt;}
.ws4b{word-spacing:6.400000pt;}
.ws49{word-spacing:6.442667pt;}
.ws98{word-spacing:6.453333pt;}
.ws3c{word-spacing:6.506667pt;}
.ws82{word-spacing:6.560000pt;}
.ws5b{word-spacing:6.666667pt;}
.wsb1{word-spacing:6.773333pt;}
.ws33{word-spacing:6.826667pt;}
.ws10{word-spacing:6.864000pt;}
.ws48{word-spacing:6.954667pt;}
.ws9d{word-spacing:6.986667pt;}
.ws81{word-spacing:7.040000pt;}
.ws22{word-spacing:7.093333pt;}
.wsa5{word-spacing:7.360000pt;}
.ws1d{word-spacing:7.392000pt;}
.ws27{word-spacing:7.413333pt;}
.wsb{word-spacing:7.680000pt;}
.ws57{word-spacing:7.840000pt;}
.wsab{word-spacing:8.000000pt;}
.ws6e{word-spacing:8.106667pt;}
.wsac{word-spacing:8.266667pt;}
.ws11{word-spacing:8.352000pt;}
.ws34{word-spacing:8.586667pt;}
.wse{word-spacing:8.592000pt;}
.wsaa{word-spacing:8.640000pt;}
.wsa3{word-spacing:8.853333pt;}
.ws3d{word-spacing:8.906667pt;}
.ws2d{word-spacing:9.173333pt;}
.ws37{word-spacing:9.440000pt;}
.wsbe{word-spacing:9.813333pt;}
.ws4c{word-spacing:11.040000pt;}
.ws21{word-spacing:11.253333pt;}
.ws32{word-spacing:12.000000pt;}
.wsba{word-spacing:13.173333pt;}
.ws30{word-spacing:13.920000pt;}
._0{margin-left:-1227.384533pt;}
._f{margin-left:-892.241600pt;}
._d{margin-left:-888.273600pt;}
._12{margin-left:-886.225600pt;}
._1a{margin-left:-879.910933pt;}
._10{margin-left:-878.118933pt;}
._4{margin-left:-3.756800pt;}
._3{margin-left:-2.773333pt;}
._9{margin-left:-1.872000pt;}
._1{margin-left:-0.900267pt;}
._2{width:1.322667pt;}
._5{width:2.762667pt;}
._6{width:3.777600pt;}
._7{width:4.730133pt;}
._8{width:5.992000pt;}
._b{width:7.713600pt;}
._a{width:8.668800pt;}
._c{width:10.232533pt;}
._11{width:11.136000pt;}
._e{width:12.698667pt;}
._19{width:15.306667pt;}
._17{width:17.440000pt;}
._15{width:18.773333pt;}
._16{width:20.693333pt;}
._18{width:22.677333pt;}
._14{width:32.320000pt;}
._13{width:46.693333pt;}
.fs4{font-size:31.093333pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:36.424533pt;}
.y7f{bottom:36.425067pt;}
.y2{bottom:36.426267pt;}
.yb5{bottom:49.224533pt;}
.y7e{bottom:49.225067pt;}
.y1{bottom:49.226267pt;}
.y30{bottom:112.982533pt;}
.yb1{bottom:114.736133pt;}
.y5b{bottom:118.162800pt;}
.ya6{bottom:119.409867pt;}
.y78{bottom:123.044933pt;}
.ye7{bottom:124.629467pt;}
.y62{bottom:126.733867pt;}
.y8e{bottom:126.783200pt;}
.y75{bottom:127.229600pt;}
.y2f{bottom:128.982533pt;}
.yb0{bottom:130.736133pt;}
.yb4{bottom:132.936533pt;}
.y5a{bottom:134.162800pt;}
.ya5{bottom:135.409867pt;}
.y77{bottom:139.044933pt;}
.ye6{bottom:140.629467pt;}
.y61{bottom:142.733867pt;}
.y8d{bottom:142.783200pt;}
.y74{bottom:143.229600pt;}
.y7d{bottom:144.638400pt;}
.y2e{bottom:144.982533pt;}
.yb3{bottom:145.736533pt;}
.yaf{bottom:146.736133pt;}
.ya7{bottom:150.162800pt;}
.yc2{bottom:151.069467pt;}
.ya4{bottom:151.409867pt;}
.y76{bottom:151.844933pt;}
.ye5{bottom:156.629467pt;}
.yb2{bottom:158.536533pt;}
.y8c{bottom:158.783200pt;}
.y73{bottom:159.229600pt;}
.y7c{bottom:160.638400pt;}
.yae{bottom:162.736133pt;}
.y59{bottom:166.162800pt;}
.yc1{bottom:167.069467pt;}
.ya3{bottom:167.409867pt;}
.ye4{bottom:172.629467pt;}
.y60{bottom:174.733867pt;}
.y8b{bottom:174.783200pt;}
.y72{bottom:175.229600pt;}
.y2d{bottom:177.005200pt;}
.yad{bottom:178.736133pt;}
.y58{bottom:182.162800pt;}
.yc0{bottom:183.069467pt;}
.ya2{bottom:183.409867pt;}
.ye3{bottom:188.629467pt;}
.y2c{bottom:190.337200pt;}
.y8a{bottom:190.783200pt;}
.y71{bottom:191.229600pt;}
.yac{bottom:194.736133pt;}
.y57{bottom:198.162800pt;}
.ybf{bottom:199.069467pt;}
.ya1{bottom:199.409867pt;}
.ye2{bottom:204.629467pt;}
.y5f{bottom:206.733867pt;}
.y89{bottom:206.783200pt;}
.y70{bottom:207.229600pt;}
.yab{bottom:210.736133pt;}
.y56{bottom:214.162800pt;}
.ya0{bottom:215.409867pt;}
.y2b{bottom:217.001200pt;}
.ybe{bottom:218.842800pt;}
.y5e{bottom:219.533867pt;}
.ye1{bottom:220.629467pt;}
.y88{bottom:222.783200pt;}
.y6f{bottom:223.229600pt;}
.yaa{bottom:226.736133pt;}
.y55{bottom:230.162800pt;}
.y2a{bottom:230.333200pt;}
.y9f{bottom:231.409867pt;}
.y5d{bottom:232.333867pt;}
.ybd{bottom:234.842800pt;}
.ye0{bottom:236.629467pt;}
.y87{bottom:238.783200pt;}
.y6e{bottom:239.229600pt;}
.y29{bottom:243.665200pt;}
.y54{bottom:246.162800pt;}
.y9e{bottom:247.409867pt;}
.ydf{bottom:252.629467pt;}
.ybc{bottom:254.616133pt;}
.y86{bottom:254.783200pt;}
.y6d{bottom:255.229600pt;}
.y28{bottom:256.997200pt;}
.ya9{bottom:258.736133pt;}
.y53{bottom:262.162800pt;}
.y9d{bottom:263.409867pt;}
.y27{bottom:270.329200pt;}
.ybb{bottom:270.616133pt;}
.y85{bottom:270.783200pt;}
.y6c{bottom:271.229600pt;}
.ya8{bottom:274.736133pt;}
.yde{bottom:276.189467pt;}
.y52{bottom:278.162800pt;}
.y9c{bottom:279.409867pt;}
.y26{bottom:283.661200pt;}
.yba{bottom:286.616133pt;}
.y84{bottom:286.783200pt;}
.y6b{bottom:287.229600pt;}
.ydd{bottom:292.189467pt;}
.y51{bottom:294.162800pt;}
.y9b{bottom:295.409867pt;}
.y25{bottom:296.993200pt;}
.y83{bottom:302.783200pt;}
.y6a{bottom:303.229600pt;}
.yb9{bottom:306.389467pt;}
.ydc{bottom:308.189467pt;}
.y50{bottom:310.162800pt;}
.y24{bottom:310.325200pt;}
.y9a{bottom:311.409867pt;}
.y82{bottom:318.783200pt;}
.y69{bottom:319.229600pt;}
.yb8{bottom:322.389467pt;}
.y23{bottom:323.657200pt;}
.ydb{bottom:324.189467pt;}
.y4f{bottom:326.162800pt;}
.y99{bottom:327.409867pt;}
.y68{bottom:335.229600pt;}
.y22{bottom:336.989200pt;}
.yb7{bottom:338.389467pt;}
.yda{bottom:340.189467pt;}
.y4e{bottom:342.162800pt;}
.y98{bottom:343.409867pt;}
.y21{bottom:350.321200pt;}
.y81{bottom:350.783200pt;}
.y67{bottom:351.229600pt;}
.y4d{bottom:358.162800pt;}
.y97{bottom:359.409867pt;}
.y80{bottom:363.583200pt;}
.y20{bottom:363.653200pt;}
.yd9{bottom:363.749467pt;}
.y66{bottom:367.229600pt;}
.y4c{bottom:374.162800pt;}
.y96{bottom:375.409867pt;}
.y1f{bottom:376.985200pt;}
.yd8{bottom:379.749467pt;}
.y4b{bottom:390.162800pt;}
.y1e{bottom:390.317200pt;}
.y95{bottom:391.409867pt;}
.yd7{bottom:395.749467pt;}
.y65{bottom:399.229600pt;}
.y1d{bottom:403.649200pt;}
.y4a{bottom:406.162800pt;}
.y94{bottom:407.409867pt;}
.yd6{bottom:411.749467pt;}
.y64{bottom:412.029600pt;}
.y49{bottom:422.162800pt;}
.y93{bottom:423.409867pt;}
.yf6{bottom:424.802800pt;}
.y63{bottom:424.829600pt;}
.yd5{bottom:427.749467pt;}
.y1c{bottom:436.762133pt;}
.y48{bottom:438.162800pt;}
.y92{bottom:439.409867pt;}
.yd4{bottom:443.749467pt;}
.y47{bottom:454.162800pt;}
.y1b{bottom:455.962133pt;}
.yd3{bottom:459.749467pt;}
.y46{bottom:470.162800pt;}
.y91{bottom:471.409867pt;}
.yd2{bottom:475.749467pt;}
.y45{bottom:486.162800pt;}
.y90{bottom:487.409867pt;}
.y1a{bottom:488.518133pt;}
.y7b{bottom:490.733867pt;}
.y8f{bottom:500.209867pt;}
.y19{bottom:501.850133pt;}
.y44{bottom:502.162800pt;}
.y7a{bottom:503.533867pt;}
.y79{bottom:516.333867pt;}
.y43{bottom:518.162800pt;}
.yf5{bottom:520.802800pt;}
.yd1{bottom:527.522800pt;}
.y18{bottom:528.514133pt;}
.y42{bottom:534.162800pt;}
.y17{bottom:541.846133pt;}
.yd0{bottom:543.522800pt;}
.yf4{bottom:544.362800pt;}
.y41{bottom:550.162800pt;}
.y16{bottom:555.178133pt;}
.ycf{bottom:559.522800pt;}
.y40{bottom:566.162800pt;}
.yf3{bottom:567.922800pt;}
.y15{bottom:568.510133pt;}
.yce{bottom:579.296133pt;}
.y14{bottom:581.842133pt;}
.y3f{bottom:582.162800pt;}
.yf2{bottom:583.922800pt;}
.y13{bottom:595.174133pt;}
.ycd{bottom:595.296133pt;}
.y3e{bottom:598.162800pt;}
.yf1{bottom:599.922800pt;}
.y12{bottom:608.506133pt;}
.ycc{bottom:611.296133pt;}
.y3d{bottom:614.162800pt;}
.yf0{bottom:615.922800pt;}
.y11{bottom:621.838133pt;}
.y3c{bottom:630.162800pt;}
.ycb{bottom:631.069467pt;}
.yef{bottom:631.922800pt;}
.y10{bottom:635.170133pt;}
.y3b{bottom:646.162800pt;}
.yca{bottom:647.069467pt;}
.yf{bottom:648.502133pt;}
.yee{bottom:655.482800pt;}
.ye{bottom:661.834133pt;}
.y3a{bottom:662.162800pt;}
.yc9{bottom:666.842800pt;}
.yd{bottom:675.166133pt;}
.y39{bottom:678.162800pt;}
.yed{bottom:679.042800pt;}
.yc8{bottom:682.842800pt;}
.yc{bottom:688.498133pt;}
.y38{bottom:694.162800pt;}
.yec{bottom:695.042800pt;}
.yc7{bottom:698.842800pt;}
.yb{bottom:701.830133pt;}
.y37{bottom:710.162800pt;}
.ya{bottom:715.162133pt;}
.yeb{bottom:718.602800pt;}
.yc6{bottom:718.616133pt;}
.y36{bottom:726.162800pt;}
.yea{bottom:734.602800pt;}
.yc5{bottom:734.616133pt;}
.y9{bottom:741.828800pt;}
.y35{bottom:742.162800pt;}
.ye9{bottom:750.602800pt;}
.yc4{bottom:754.389467pt;}
.y8{bottom:757.828800pt;}
.y34{bottom:758.162800pt;}
.ye8{bottom:766.602800pt;}
.yc3{bottom:770.389467pt;}
.y33{bottom:774.162800pt;}
.y7{bottom:777.608267pt;}
.y32{bottom:790.162800pt;}
.y6{bottom:796.808267pt;}
.y5c{bottom:806.162800pt;}
.y5{bottom:816.008267pt;}
.y31{bottom:822.162800pt;}
.y4{bottom:859.562267pt;}
.y3{bottom:871.562267pt;}
.h2{height:33.578667pt;}
.h3{height:37.589333pt;}
.h7{height:37.776000pt;}
.ha{height:39.786667pt;}
.h9{height:40.416000pt;}
.h5{height:41.973333pt;}
.h8{height:42.288000pt;}
.hb{height:44.906667pt;}
.h6{height:46.986667pt;}
.h4{height:58.688000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:50.997867pt;}
.xc{left:52.555200pt;}
.xb{left:74.498267pt;}
.x5{left:75.595733pt;}
.x9{left:85.039333pt;}
.x7{left:94.467333pt;}
.xa{left:109.625867pt;}
.x8{left:113.740800pt;}
.xe{left:119.938267pt;}
.xd{left:121.044933pt;}
.xf{left:145.702667pt;}
.x2{left:368.769067pt;}
.x4{left:472.609067pt;}
.x3{left:482.785067pt;}
.x1{left:577.044533pt;}
}




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