
    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_e2e39488dd10a843230a142a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_1a280fdd3b960a2d5fde13a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.008789;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_d03906cd5725fff779a1890e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005859;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_d9ac8e0e60ae04fefaa9a24b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.982422;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_9f513191d155a6da5060b371.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8dfe2d27eda5d85bcf6cd846.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_b99f98e260691d8ec6e4e14b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1bd98f88795bd4bf15725616.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.007812;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_2eda51a463ba22458ab3020b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_70387c7ba4daa5c07ff03247.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.762207;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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.767578;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_c9f134d0ef24930db78fa923.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.978027;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_e07a9c6af5951cd5855868a9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.959961;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_ff3c12d8478fc6e1462859c6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;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:fff;src:url('chunks/assets/font_ab23c3e53ab28d9d55e101ff.woff2')format("woff");}.fff{font-family:fff;line-height:0.936035;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:ff10;src:url('chunks/assets/font_0aef8b1a3e0c7fbf99a90b04.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.932617;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v7{vertical-align:-91.440000px;}
.vb{vertical-align:-64.800000px;}
.v6{vertical-align:-50.400000px;}
.v3{vertical-align:-41.040000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.040000px;}
.v4{vertical-align:41.040000px;}
.va{vertical-align:43.200000px;}
.v5{vertical-align:50.400000px;}
.v9{vertical-align:64.800000px;}
.v8{vertical-align:72.000000px;}
.v1{vertical-align:87.840000px;}
.ls4e{letter-spacing:-19.800000px;}
.ls3e{letter-spacing:-11.880000px;}
.ls5c{letter-spacing:-6.840000px;}
.ls56{letter-spacing:-4.524000px;}
.ls4f{letter-spacing:-3.804000px;}
.ls61{letter-spacing:-2.940000px;}
.ls33{letter-spacing:-1.560000px;}
.ls32{letter-spacing:-0.840000px;}
.ls5f{letter-spacing:-0.648000px;}
.ls47{letter-spacing:-0.597600px;}
.ls5d{letter-spacing:-0.432000px;}
.ls5b{letter-spacing:-0.349800px;}
.ls3c{letter-spacing:-0.309000px;}
.ls3a{letter-spacing:-0.301800px;}
.ls3f{letter-spacing:-0.289200px;}
.ls5e{letter-spacing:-0.288000px;}
.ls43{letter-spacing:-0.270000px;}
.ls63{letter-spacing:-0.222600px;}
.ls30{letter-spacing:-0.216000px;}
.ls45{letter-spacing:-0.205800px;}
.ls34{letter-spacing:-0.186600px;}
.ls4d{letter-spacing:-0.184800px;}
.ls4c{letter-spacing:-0.169800px;}
.ls49{letter-spacing:-0.144000px;}
.ls46{letter-spacing:-0.142800px;}
.ls5a{letter-spacing:-0.137400px;}
.ls31{letter-spacing:-0.122400px;}
.ls38{letter-spacing:-0.103200px;}
.ls57{letter-spacing:-0.070800px;}
.ls64{letter-spacing:-0.015120px;}
.ls2f{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.017040px;}
.lsf{letter-spacing:0.020160px;}
.ls2{letter-spacing:0.024480px;}
.ls36{letter-spacing:0.025920px;}
.ls19{letter-spacing:0.057600px;}
.ls1{letter-spacing:0.066960px;}
.ls60{letter-spacing:0.072000px;}
.ls21{letter-spacing:0.090000px;}
.ls1a{letter-spacing:0.122400px;}
.ls27{letter-spacing:0.144000px;}
.ls4b{letter-spacing:0.157800px;}
.ls59{letter-spacing:0.169800px;}
.ls58{letter-spacing:0.202200px;}
.ls29{letter-spacing:0.216000px;}
.ls3d{letter-spacing:0.263400px;}
.lsa{letter-spacing:0.263520px;}
.ls62{letter-spacing:0.267600px;}
.ls3{letter-spacing:0.279360px;}
.ls26{letter-spacing:0.288000px;}
.ls20{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.325440px;}
.ls55{letter-spacing:0.346800px;}
.ls6{letter-spacing:0.347040px;}
.ls48{letter-spacing:0.349800px;}
.ls9{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.366480px;}
.ls5{letter-spacing:0.366600px;}
.ls37{letter-spacing:0.379200px;}
.ls4{letter-spacing:0.403200px;}
.ls41{letter-spacing:0.411000px;}
.lsc{letter-spacing:0.450000px;}
.ls35{letter-spacing:0.514200px;}
.ls12{letter-spacing:0.597600px;}
.ls52{letter-spacing:0.618000px;}
.ls16{letter-spacing:0.658800px;}
.ls40{letter-spacing:0.660000px;}
.ls22{letter-spacing:0.717600px;}
.ls4a{letter-spacing:0.720000px;}
.ls3b{letter-spacing:0.744000px;}
.ls15{letter-spacing:0.800640px;}
.ls51{letter-spacing:0.918000px;}
.ls54{letter-spacing:1.068000px;}
.ls42{letter-spacing:1.134000px;}
.ls24{letter-spacing:1.159200px;}
.ls39{letter-spacing:1.380000px;}
.ls11{letter-spacing:2.098800px;}
.ls8{letter-spacing:2.818800px;}
.lsb{letter-spacing:4.258800px;}
.lse{letter-spacing:4.378800px;}
.lsd{letter-spacing:4.978800px;}
.ls53{letter-spacing:6.420000px;}
.ls18{letter-spacing:8.578800px;}
.ls44{letter-spacing:8.580000px;}
.ls1b{letter-spacing:15.901200px;}
.ls14{letter-spacing:20.818800px;}
.ls13{letter-spacing:21.538800px;}
.ls28{letter-spacing:21.600000px;}
.ls1d{letter-spacing:23.698800px;}
.ls1e{letter-spacing:24.418800px;}
.ls17{letter-spacing:25.138800px;}
.ls1c{letter-spacing:33.178800px;}
.ls23{letter-spacing:43.498800px;}
.ls50{letter-spacing:48.900000px;}
.ls2a{letter-spacing:101.844000px;}
.ls25{letter-spacing:194.698800px;}
.ls2c{letter-spacing:425.581200px;}
.ls2e{letter-spacing:425.701200px;}
.ls2d{letter-spacing:425.761200px;}
.ls2b{letter-spacing:455.281200px;}
.ls1f{letter-spacing:7928.580000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-167.760000px;}
.ws15{word-spacing:-112.320000px;}
.ws30{word-spacing:-88.200000px;}
.ws31{word-spacing:-88.164480px;}
.ws37{word-spacing:-59.338800px;}
.ws33{word-spacing:-58.943400px;}
.ws34{word-spacing:-58.911000px;}
.ws32{word-spacing:-58.831200px;}
.ws36{word-spacing:-58.741200px;}
.ws35{word-spacing:-58.618800px;}
.ws38{word-spacing:-58.603800px;}
.ws39{word-spacing:-58.391400px;}
.ws40{word-spacing:-53.640000px;}
.ws43{word-spacing:-52.992000px;}
.ws1{word-spacing:-52.920000px;}
.ws41{word-spacing:-52.704000px;}
.ws42{word-spacing:-52.272000px;}
.ws3a{word-spacing:-51.901200px;}
.ws1a{word-spacing:-42.235200px;}
.ws2c{word-spacing:-42.169200px;}
.ws29{word-spacing:-42.019200px;}
.ws12{word-spacing:-41.845200px;}
.ws18{word-spacing:-41.761200px;}
.ws2a{word-spacing:-41.719200px;}
.wsb{word-spacing:-41.698800px;}
.wsc{word-spacing:-41.615400px;}
.wsf{word-spacing:-41.551200px;}
.ws19{word-spacing:-41.512200px;}
.wse{word-spacing:-41.480400px;}
.ws5{word-spacing:-41.467800px;}
.ws2b{word-spacing:-41.461200px;}
.ws2d{word-spacing:-41.448000px;}
.ws14{word-spacing:-41.364600px;}
.wsd{word-spacing:-41.127120px;}
.ws2{word-spacing:-41.101200px;}
.ws10{word-spacing:-40.998000px;}
.ws3{word-spacing:-40.978800px;}
.wsa{word-spacing:-40.914600px;}
.ws1c{word-spacing:-40.895400px;}
.ws1b{word-spacing:-40.831200px;}
.ws17{word-spacing:-40.812000px;}
.ws11{word-spacing:-40.799400px;}
.ws13{word-spacing:-40.792200px;}
.ws8{word-spacing:-40.261200px;}
.ws9{word-spacing:-39.541200px;}
.ws28{word-spacing:-37.297200px;}
.ws2f{word-spacing:-36.577200px;}
.ws3f{word-spacing:-36.000000px;}
.ws23{word-spacing:-35.568000px;}
.ws0{word-spacing:-35.280000px;}
.ws22{word-spacing:-35.136000px;}
.ws3e{word-spacing:-34.992000px;}
.ws3d{word-spacing:-34.848000px;}
.ws20{word-spacing:-29.818800px;}
.ws21{word-spacing:-29.808600px;}
.ws24{word-spacing:-29.616600px;}
.ws1e{word-spacing:-29.581200px;}
.ws48{word-spacing:-29.458800px;}
.ws1d{word-spacing:-29.316000px;}
.ws25{word-spacing:-29.289000px;}
.ws26{word-spacing:-29.274000px;}
.ws49{word-spacing:-29.236200px;}
.ws16{word-spacing:-29.221200px;}
.ws1f{word-spacing:-28.861200px;}
.ws6{word-spacing:-27.518400px;}
.ws47{word-spacing:-23.461200px;}
.ws46{word-spacing:-23.338800px;}
.ws3b{word-spacing:-21.458880px;}
.ws27{word-spacing:-21.301200px;}
.ws44{word-spacing:-20.521200px;}
.ws2e{word-spacing:-15.161040px;}
.ws7{word-spacing:-15.122880px;}
.ws45{word-spacing:-8.786880px;}
.ws4a{word-spacing:-0.105120px;}
.ws4b{word-spacing:0.000000px;}
.ws3c{word-spacing:98.496000px;}
._38{margin-left:-29.271840px;}
._3d{margin-left:-28.015560px;}
._12{margin-left:-24.625080px;}
._7{margin-left:-20.904000px;}
._e{margin-left:-16.827120px;}
._22{margin-left:-15.390600px;}
._20{margin-left:-14.112000px;}
._1e{margin-left:-11.906640px;}
._33{margin-left:-10.166640px;}
._27{margin-left:-8.651160px;}
._9{margin-left:-7.411680px;}
._f{margin-left:-5.857080px;}
._0{margin-left:-4.320000px;}
._3{margin-left:-2.376000px;}
._5{margin-left:-1.008000px;}
._4{width:1.008000px;}
._8{width:2.207520px;}
._a{width:3.503160px;}
._2{width:4.536000px;}
._d{width:5.542200px;}
._25{width:6.705480px;}
._26{width:7.860000px;}
._1a{width:8.932320px;}
._1b{width:10.119360px;}
._15{width:11.744640px;}
._b{width:16.408080px;}
._c{width:17.418960px;}
._1d{width:18.776880px;}
._1c{width:20.151840px;}
._14{width:21.171120px;}
._16{width:22.258800px;}
._17{width:23.707200px;}
._13{width:24.942720px;}
._10{width:26.041440px;}
._11{width:28.044000px;}
._3c{width:29.400840px;}
._3e{width:31.265040px;}
._1{width:32.400000px;}
._6{width:33.696000px;}
._3a{width:40.176000px;}
._3b{width:41.713080px;}
._2f{width:42.907200px;}
._2e{width:44.436000px;}
._24{width:46.314720px;}
._23{width:49.322880px;}
._37{width:50.641080px;}
._18{width:52.050960px;}
._19{width:53.051040px;}
._39{width:68.112000px;}
._30{width:69.766080px;}
._21{width:85.080000px;}
._2c{width:104.959200px;}
._36{width:122.352480px;}
._2d{width:126.277200px;}
._35{width:128.160000px;}
._34{width:133.776000px;}
._29{width:152.906880px;}
._1f{width:194.974320px;}
._32{width:231.481440px;}
._31{width:232.871520px;}
._2b{width:245.005680px;}
._2a{width:246.281520px;}
._28{width:332.093280px;}
._3f{width:514.383600px;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:95.760000px;}
.fse{font-size:108.000000px;}
.fs4{font-size:112.320000px;}
.fs6{font-size:113.760000px;}
.fs5{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.fsc{font-size:151.920000px;}
.fsb{font-size:159.840000px;}
.fs3{font-size:167.760000px;}
.fs1{font-size:216.000000px;}
.fsa{font-size:239.760000px;}
.fs0{font-size:264.240000px;}
.fs7{font-size:360.000000px;}
.fs8{font-size:360.144000px;}
.fs9{font-size:396.000000px;}
.y0{bottom:0.000000px;}
.ya5{bottom:8.715000px;}
.yb6{bottom:17.820000px;}
.ya7{bottom:17.925000px;}
.yd{bottom:21.780000px;}
.yf{bottom:28.335000px;}
.y15{bottom:28.365000px;}
.y1c{bottom:28.410000px;}
.y8{bottom:41.550000px;}
.y11{bottom:41.655000px;}
.y9d{bottom:48.705000px;}
.yb7{bottom:60.045000px;}
.y4{bottom:68.550000px;}
.y1e{bottom:75.030000px;}
.y25{bottom:75.420000px;}
.y13{bottom:85.605000px;}
.y17{bottom:94.425000px;}
.y1a{bottom:94.470000px;}
.y2f{bottom:97.770000px;}
.ya9{bottom:99.390000px;}
.y94{bottom:101.448000px;}
.yb4{bottom:101.625000px;}
.y2{bottom:113.145000px;}
.y34{bottom:122.115000px;}
.y9e{bottom:127.440000px;}
.y93{bottom:130.248000px;}
.yac{bottom:139.425000px;}
.ybb{bottom:148.470000px;}
.yb9{bottom:148.530000px;}
.y32{bottom:197.715000px;}
.y9f{bottom:206.175000px;}
.y2b{bottom:209.910000px;}
.yad{bottom:211.830000px;}
.y2d{bottom:232.590000px;}
.y92{bottom:233.535000px;}
.y9b{bottom:238.500000px;}
.y28{bottom:244.470000px;}
.y31{bottom:261.255000px;}
.y9a{bottom:271.620000px;}
.y2a{bottom:274.710000px;}
.yae{bottom:284.220000px;}
.ya0{bottom:284.910000px;}
.y23{bottom:296.460000px;}
.y6{bottom:296.610000px;}
.yb{bottom:297.720000px;}
.y91{bottom:298.335000px;}
.y99{bottom:304.740000px;}
.y27{bottom:309.270000px;}
.y30{bottom:322.020000px;}
.y98{bottom:349.920000px;}
.yaf{bottom:356.580000px;}
.y22{bottom:361.260000px;}
.ya{bottom:362.520000px;}
.y90{bottom:363.135000px;}
.ya1{bottom:363.630000px;}
.y97{bottom:383.040000px;}
.yb0{bottom:428.970000px;}
.y33{bottom:430.020000px;}
.ya2{bottom:442.365000px;}
.y2c{bottom:443.340000px;}
.y77{bottom:461.235000px;}
.yb1{bottom:501.375000px;}
.ya3{bottom:521.100000px;}
.y26{bottom:543.780000px;}
.y51{bottom:569.910000px;}
.yb2{bottom:573.735000px;}
.y2e{bottom:578.160000px;}
.y29{bottom:578.340000px;}
.y88{bottom:583.350000px;}
.y50{bottom:605.910000px;}
.y87{bottom:626.550000px;}
.yb3{bottom:646.125000px;}
.yab{bottom:649.800000px;}
.y21{bottom:668.160000px;}
.y86{bottom:669.750000px;}
.y85{bottom:712.950000px;}
.y84{bottom:756.150000px;}
.y83{bottom:799.350000px;}
.y82{bottom:842.550000px;}
.y81{bottom:885.390000px;}
.y96{bottom:891.645000px;}
.yb5{bottom:898.020000px;}
.ybd{bottom:907.740000px;}
.y24{bottom:921.600000px;}
.y95{bottom:924.045000px;}
.y80{bottom:928.590000px;}
.ybc{bottom:940.140000px;}
.y7f{bottom:972.150000px;}
.y7e{bottom:1015.350000px;}
.yba{bottom:1043.280000px;}
.y1d{bottom:1053.360000px;}
.y7d{bottom:1058.550000px;}
.y20{bottom:1086.840000px;}
.y1f{bottom:1099.980000px;}
.y19{bottom:1120.320000px;}
.yb8{bottom:1131.300000px;}
.y76{bottom:1145.670000px;}
.y1b{bottom:1186.380000px;}
.y16{bottom:1206.720000px;}
.y9{bottom:1270.260000px;}
.y18{bottom:1272.780000px;}
.y12{bottom:1301.940000px;}
.y4a{bottom:1341.645000px;}
.y75{bottom:1353.270000px;}
.y14{bottom:1359.180000px;}
.y49{bottom:1376.205000px;}
.y48{bottom:1412.205000px;}
.y74{bottom:1425.270000px;}
.y10{bottom:1432.260000px;}
.ye{bottom:1445.580000px;}
.y5{bottom:1447.200000px;}
.y9c{bottom:1464.660000px;}
.ya4{bottom:1466.820000px;}
.y73{bottom:1497.270000px;}
.y72{bottom:1569.270000px;}
.yc{bottom:1578.600000px;}
.ya6{bottom:1604.880000px;}
.y71{bottom:1641.270000px;}
.y7{bottom:1702.260000px;}
.y70{bottom:1713.270000px;}
.y3{bottom:1778.580000px;}
.y6f{bottom:1785.270000px;}
.yaa{bottom:1815.480000px;}
.y1{bottom:1829.520000px;}
.y4f{bottom:1835.565000px;}
.y6e{bottom:1857.270000px;}
.y4e{bottom:1878.765000px;}
.ya8{bottom:1879.020000px;}
.y4d{bottom:1921.965000px;}
.y6d{bottom:1929.270000px;}
.y4c{bottom:1965.165000px;}
.y6c{bottom:2001.315000px;}
.y4b{bottom:2008.365000px;}
.y8f{bottom:2032.560000px;}
.y6b{bottom:2073.315000px;}
.y8e{bottom:2075.760000px;}
.y8b{bottom:2084.070000px;}
.y8d{bottom:2118.960000px;}
.y8a{bottom:2127.270000px;}
.y6a{bottom:2145.315000px;}
.y8c{bottom:2162.160000px;}
.y89{bottom:2170.470000px;}
.y65{bottom:2267.790000px;}
.y3d{bottom:2408.790000px;}
.y3c{bottom:2459.190000px;}
.y3b{bottom:2509.590000px;}
.y3a{bottom:2559.450000px;}
.y39{bottom:2610.390000px;}
.y38{bottom:2660.790000px;}
.y37{bottom:2710.650000px;}
.y36{bottom:2761.050000px;}
.y35{bottom:2811.450000px;}
.y47{bottom:2932.815000px;}
.y5b{bottom:2935.725000px;}
.y46{bottom:2983.215000px;}
.y5a{bottom:2986.125000px;}
.y45{bottom:3033.615000px;}
.y59{bottom:3036.525000px;}
.y44{bottom:3084.015000px;}
.y58{bottom:3086.925000px;}
.y43{bottom:3134.415000px;}
.y57{bottom:3137.325000px;}
.y42{bottom:3184.815000px;}
.y56{bottom:3187.725000px;}
.y41{bottom:3234.675000px;}
.y55{bottom:3238.125000px;}
.y40{bottom:3285.615000px;}
.y54{bottom:3288.525000px;}
.y3f{bottom:3336.015000px;}
.y53{bottom:3338.925000px;}
.y3e{bottom:3386.415000px;}
.y52{bottom:3389.325000px;}
.y64{bottom:3503.490000px;}
.y62{bottom:3725.715000px;}
.y61{bottom:3776.325000px;}
.y60{bottom:3826.725000px;}
.y5f{bottom:3877.125000px;}
.y5e{bottom:3927.525000px;}
.y5d{bottom:3977.925000px;}
.y5c{bottom:4028.325000px;}
.y63{bottom:4119.870000px;}
.y7c{bottom:4282.770000px;}
.y7b{bottom:4345.770000px;}
.y7a{bottom:4399.410000px;}
.y79{bottom:4432.530000px;}
.y78{bottom:4497.330000px;}
.y69{bottom:4593.420000px;}
.y68{bottom:4712.220000px;}
.y67{bottom:4831.020000px;}
.y66{bottom:4949.820000px;}
.h2e{height:36.360000px;}
.h2a{height:71.820000px;}
.h9{height:78.120000px;}
.h2b{height:81.000000px;}
.h2c{height:81.896484px;}
.h28{height:84.240000px;}
.h1e{height:85.320000px;}
.h1d{height:90.180000px;}
.h33{height:90.825820px;}
.h32{height:91.080000px;}
.ha{height:91.260000px;}
.h1f{height:108.000000px;}
.h27{height:113.940000px;}
.h29{height:115.020000px;}
.h7{height:117.540000px;}
.hb{height:117.720000px;}
.h1b{height:125.820000px;}
.h30{height:127.080000px;}
.h20{height:127.212539px;}
.h1c{height:134.640000px;}
.h5{height:162.000000px;}
.h4{height:171.540000px;}
.h26{height:172.800000px;}
.h34{height:176.220000px;}
.h24{height:179.820000px;}
.h10{height:184.500000px;}
.h12{height:185.220000px;}
.h25{height:191.880000px;}
.hd{height:195.840000px;}
.h3{height:198.180000px;}
.h18{height:200.880000px;}
.hc{height:205.740000px;}
.he{height:223.200000px;}
.hf{height:223.380000px;}
.h16{height:230.040000px;}
.h2{height:268.380000px;}
.h21{height:270.000000px;}
.h22{height:270.108000px;}
.h19{height:278.820000px;}
.h23{height:297.000000px;}
.h2f{height:305.640000px;}
.h17{height:494.640000px;}
.h15{height:499.500000px;}
.h14{height:519.120000px;}
.h2d{height:558.000000px;}
.h13{height:588.240000px;}
.h6{height:627.660000px;}
.h31{height:689.760000px;}
.h11{height:692.100000px;}
.h8{height:694.620000px;}
.h1{height:5102.250000px;}
.h1a{height:5102.459634px;}
.h0{height:5102.460000px;}
.w8{width:107.640000px;}
.wf{width:127.980000px;}
.w9{width:151.200000px;}
.w4{width:199.260000px;}
.wa{width:201.600000px;}
.w3{width:202.500000px;}
.w10{width:209.880000px;}
.wb{width:210.060000px;}
.wc{width:217.620000px;}
.we{width:231.120000px;}
.w2{width:401.760000px;}
.w5{width:611.100000px;}
.w7{width:1008.360000px;}
.wd{width:1155.420000px;}
.w1{width:3826.500000px;}
.w6{width:3826.619997px;}
.w0{width:3826.620000px;}
.x0{left:0.000000px;}
.x18{left:6.120000px;}
.x3e{left:17.970000px;}
.x7{left:23.910000px;}
.x41{left:29.775000px;}
.x15{left:39.390000px;}
.x14{left:41.070000px;}
.x13{left:42.270000px;}
.x19{left:45.180000px;}
.x5{left:46.410000px;}
.x3{left:47.910000px;}
.x9{left:73.230000px;}
.x8{left:74.730000px;}
.x16{left:76.110000px;}
.xe{left:86.370000px;}
.x10{left:88.050000px;}
.x17{left:91.050000px;}
.xc{left:93.030000px;}
.xb{left:94.710000px;}
.x3c{left:97.200000px;}
.x2{left:106.200000px;}
.x1a{left:118.080000px;}
.x1b{left:123.090000px;}
.x37{left:137.159997px;}
.x35{left:141.335997px;}
.x6{left:149.040000px;}
.x44{left:151.920000px;}
.x22{left:154.514997px;}
.x27{left:159.374997px;}
.x1c{left:162.870000px;}
.x1d{left:172.724997px;}
.xa{left:174.030000px;}
.x20{left:177.374997px;}
.x30{left:207.749997px;}
.x11{left:226.230000px;}
.xf{left:235.050000px;}
.x12{left:245.670000px;}
.xd{left:292.290000px;}
.x1e{left:337.034997px;}
.x28{left:562.064997px;}
.x29{left:684.284997px;}
.x2a{left:734.504997px;}
.x1f{left:753.404997px;}
.x1{left:760.140000px;}
.x4{left:962.640000px;}
.x36{left:1212.734997px;}
.x23{left:1249.844997px;}
.x21{left:1259.354997px;}
.x43{left:1380.240000px;}
.x3b{left:1404.540000px;}
.x45{left:1432.080000px;}
.x40{left:1436.220000px;}
.x26{left:1451.129997px;}
.x31{left:1474.634997px;}
.x2b{left:1487.669997px;}
.x3d{left:1693.800000px;}
.x24{left:1822.289997px;}
.x38{left:1901.804997px;}
.x46{left:1949.760000px;}
.x25{left:2051.639997px;}
.x3f{left:2080.080000px;}
.x42{left:2185.920000px;}
.x47{left:2296.800000px;}
.x48{left:2394.029997px;}
.x49{left:2396.009997px;}
.x33{left:2767.064997px;}
.x2c{left:2772.149997px;}
.x2d{left:2793.209997px;}
.x39{left:2801.879997px;}
.x34{left:2827.904997px;}
.x3a{left:2835.719997px;}
.x2f{left:2901.419997px;}
.x2e{left:3010.169997px;}
.x32{left:3696.479997px;}
@media print{
.v7{vertical-align:-81.280000pt;}
.vb{vertical-align:-57.600000pt;}
.v6{vertical-align:-44.800000pt;}
.v3{vertical-align:-36.480000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.480000pt;}
.v4{vertical-align:36.480000pt;}
.va{vertical-align:38.400000pt;}
.v5{vertical-align:44.800000pt;}
.v9{vertical-align:57.600000pt;}
.v8{vertical-align:64.000000pt;}
.v1{vertical-align:78.080000pt;}
.ls4e{letter-spacing:-17.600000pt;}
.ls3e{letter-spacing:-10.560000pt;}
.ls5c{letter-spacing:-6.080000pt;}
.ls56{letter-spacing:-4.021333pt;}
.ls4f{letter-spacing:-3.381333pt;}
.ls61{letter-spacing:-2.613333pt;}
.ls33{letter-spacing:-1.386667pt;}
.ls32{letter-spacing:-0.746667pt;}
.ls5f{letter-spacing:-0.576000pt;}
.ls47{letter-spacing:-0.531200pt;}
.ls5d{letter-spacing:-0.384000pt;}
.ls5b{letter-spacing:-0.310933pt;}
.ls3c{letter-spacing:-0.274667pt;}
.ls3a{letter-spacing:-0.268267pt;}
.ls3f{letter-spacing:-0.257067pt;}
.ls5e{letter-spacing:-0.256000pt;}
.ls43{letter-spacing:-0.240000pt;}
.ls63{letter-spacing:-0.197867pt;}
.ls30{letter-spacing:-0.192000pt;}
.ls45{letter-spacing:-0.182933pt;}
.ls34{letter-spacing:-0.165867pt;}
.ls4d{letter-spacing:-0.164267pt;}
.ls4c{letter-spacing:-0.150933pt;}
.ls49{letter-spacing:-0.128000pt;}
.ls46{letter-spacing:-0.126933pt;}
.ls5a{letter-spacing:-0.122133pt;}
.ls31{letter-spacing:-0.108800pt;}
.ls38{letter-spacing:-0.091733pt;}
.ls57{letter-spacing:-0.062933pt;}
.ls64{letter-spacing:-0.013440pt;}
.ls2f{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.015147pt;}
.lsf{letter-spacing:0.017920pt;}
.ls2{letter-spacing:0.021760pt;}
.ls36{letter-spacing:0.023040pt;}
.ls19{letter-spacing:0.051200pt;}
.ls1{letter-spacing:0.059520pt;}
.ls60{letter-spacing:0.064000pt;}
.ls21{letter-spacing:0.080000pt;}
.ls1a{letter-spacing:0.108800pt;}
.ls27{letter-spacing:0.128000pt;}
.ls4b{letter-spacing:0.140267pt;}
.ls59{letter-spacing:0.150933pt;}
.ls58{letter-spacing:0.179733pt;}
.ls29{letter-spacing:0.192000pt;}
.ls3d{letter-spacing:0.234133pt;}
.lsa{letter-spacing:0.234240pt;}
.ls62{letter-spacing:0.237867pt;}
.ls3{letter-spacing:0.248320pt;}
.ls26{letter-spacing:0.256000pt;}
.ls20{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.289280pt;}
.ls55{letter-spacing:0.308267pt;}
.ls6{letter-spacing:0.308480pt;}
.ls48{letter-spacing:0.310933pt;}
.ls9{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.325760pt;}
.ls5{letter-spacing:0.325867pt;}
.ls37{letter-spacing:0.337067pt;}
.ls4{letter-spacing:0.358400pt;}
.ls41{letter-spacing:0.365333pt;}
.lsc{letter-spacing:0.400000pt;}
.ls35{letter-spacing:0.457067pt;}
.ls12{letter-spacing:0.531200pt;}
.ls52{letter-spacing:0.549333pt;}
.ls16{letter-spacing:0.585600pt;}
.ls40{letter-spacing:0.586667pt;}
.ls22{letter-spacing:0.637867pt;}
.ls4a{letter-spacing:0.640000pt;}
.ls3b{letter-spacing:0.661333pt;}
.ls15{letter-spacing:0.711680pt;}
.ls51{letter-spacing:0.816000pt;}
.ls54{letter-spacing:0.949333pt;}
.ls42{letter-spacing:1.008000pt;}
.ls24{letter-spacing:1.030400pt;}
.ls39{letter-spacing:1.226667pt;}
.ls11{letter-spacing:1.865600pt;}
.ls8{letter-spacing:2.505600pt;}
.lsb{letter-spacing:3.785600pt;}
.lse{letter-spacing:3.892267pt;}
.lsd{letter-spacing:4.425600pt;}
.ls53{letter-spacing:5.706667pt;}
.ls18{letter-spacing:7.625600pt;}
.ls44{letter-spacing:7.626667pt;}
.ls1b{letter-spacing:14.134400pt;}
.ls14{letter-spacing:18.505600pt;}
.ls13{letter-spacing:19.145600pt;}
.ls28{letter-spacing:19.200000pt;}
.ls1d{letter-spacing:21.065600pt;}
.ls1e{letter-spacing:21.705600pt;}
.ls17{letter-spacing:22.345600pt;}
.ls1c{letter-spacing:29.492267pt;}
.ls23{letter-spacing:38.665600pt;}
.ls50{letter-spacing:43.466667pt;}
.ls2a{letter-spacing:90.528000pt;}
.ls25{letter-spacing:173.065600pt;}
.ls2c{letter-spacing:378.294400pt;}
.ls2e{letter-spacing:378.401067pt;}
.ls2d{letter-spacing:378.454400pt;}
.ls2b{letter-spacing:404.694400pt;}
.ls1f{letter-spacing:7047.626667pt;}
.ws4{word-spacing:-149.120000pt;}
.ws15{word-spacing:-99.840000pt;}
.ws30{word-spacing:-78.400000pt;}
.ws31{word-spacing:-78.368427pt;}
.ws37{word-spacing:-52.745600pt;}
.ws33{word-spacing:-52.394133pt;}
.ws34{word-spacing:-52.365333pt;}
.ws32{word-spacing:-52.294400pt;}
.ws36{word-spacing:-52.214400pt;}
.ws35{word-spacing:-52.105600pt;}
.ws38{word-spacing:-52.092267pt;}
.ws39{word-spacing:-51.903467pt;}
.ws40{word-spacing:-47.680000pt;}
.ws43{word-spacing:-47.104000pt;}
.ws1{word-spacing:-47.040000pt;}
.ws41{word-spacing:-46.848000pt;}
.ws42{word-spacing:-46.464000pt;}
.ws3a{word-spacing:-46.134400pt;}
.ws1a{word-spacing:-37.542400pt;}
.ws2c{word-spacing:-37.483733pt;}
.ws29{word-spacing:-37.350400pt;}
.ws12{word-spacing:-37.195733pt;}
.ws18{word-spacing:-37.121067pt;}
.ws2a{word-spacing:-37.083733pt;}
.wsb{word-spacing:-37.065600pt;}
.wsc{word-spacing:-36.991467pt;}
.wsf{word-spacing:-36.934400pt;}
.ws19{word-spacing:-36.899733pt;}
.wse{word-spacing:-36.871467pt;}
.ws5{word-spacing:-36.860267pt;}
.ws2b{word-spacing:-36.854400pt;}
.ws2d{word-spacing:-36.842667pt;}
.ws14{word-spacing:-36.768533pt;}
.wsd{word-spacing:-36.557440pt;}
.ws2{word-spacing:-36.534400pt;}
.ws10{word-spacing:-36.442667pt;}
.ws3{word-spacing:-36.425600pt;}
.wsa{word-spacing:-36.368533pt;}
.ws1c{word-spacing:-36.351467pt;}
.ws1b{word-spacing:-36.294400pt;}
.ws17{word-spacing:-36.277333pt;}
.ws11{word-spacing:-36.266133pt;}
.ws13{word-spacing:-36.259733pt;}
.ws8{word-spacing:-35.787733pt;}
.ws9{word-spacing:-35.147733pt;}
.ws28{word-spacing:-33.153067pt;}
.ws2f{word-spacing:-32.513067pt;}
.ws3f{word-spacing:-32.000000pt;}
.ws23{word-spacing:-31.616000pt;}
.ws0{word-spacing:-31.360000pt;}
.ws22{word-spacing:-31.232000pt;}
.ws3e{word-spacing:-31.104000pt;}
.ws3d{word-spacing:-30.976000pt;}
.ws20{word-spacing:-26.505600pt;}
.ws21{word-spacing:-26.496533pt;}
.ws24{word-spacing:-26.325867pt;}
.ws1e{word-spacing:-26.294400pt;}
.ws48{word-spacing:-26.185600pt;}
.ws1d{word-spacing:-26.058667pt;}
.ws25{word-spacing:-26.034667pt;}
.ws26{word-spacing:-26.021333pt;}
.ws49{word-spacing:-25.987733pt;}
.ws16{word-spacing:-25.974400pt;}
.ws1f{word-spacing:-25.654400pt;}
.ws6{word-spacing:-24.460800pt;}
.ws47{word-spacing:-20.854400pt;}
.ws46{word-spacing:-20.745600pt;}
.ws3b{word-spacing:-19.074560pt;}
.ws27{word-spacing:-18.934400pt;}
.ws44{word-spacing:-18.241067pt;}
.ws2e{word-spacing:-13.476480pt;}
.ws7{word-spacing:-13.442560pt;}
.ws45{word-spacing:-7.810560pt;}
.ws4a{word-spacing:-0.093440pt;}
.ws4b{word-spacing:0.000000pt;}
.ws3c{word-spacing:87.552000pt;}
._38{margin-left:-26.019413pt;}
._3d{margin-left:-24.902720pt;}
._12{margin-left:-21.888960pt;}
._7{margin-left:-18.581333pt;}
._e{margin-left:-14.957440pt;}
._22{margin-left:-13.680533pt;}
._20{margin-left:-12.544000pt;}
._1e{margin-left:-10.583680pt;}
._33{margin-left:-9.037013pt;}
._27{margin-left:-7.689920pt;}
._9{margin-left:-6.588160pt;}
._f{margin-left:-5.206293pt;}
._0{margin-left:-3.840000pt;}
._3{margin-left:-2.112000pt;}
._5{margin-left:-0.896000pt;}
._4{width:0.896000pt;}
._8{width:1.962240pt;}
._a{width:3.113920pt;}
._2{width:4.032000pt;}
._d{width:4.926400pt;}
._25{width:5.960427pt;}
._26{width:6.986667pt;}
._1a{width:7.939840pt;}
._1b{width:8.994987pt;}
._15{width:10.439680pt;}
._b{width:14.584960pt;}
._c{width:15.483520pt;}
._1d{width:16.690560pt;}
._1c{width:17.912747pt;}
._14{width:18.818773pt;}
._16{width:19.785600pt;}
._17{width:21.073067pt;}
._13{width:22.171307pt;}
._10{width:23.147947pt;}
._11{width:24.928000pt;}
._3c{width:26.134080pt;}
._3e{width:27.791147pt;}
._1{width:28.800000pt;}
._6{width:29.952000pt;}
._3a{width:35.712000pt;}
._3b{width:37.078293pt;}
._2f{width:38.139733pt;}
._2e{width:39.498667pt;}
._24{width:41.168640pt;}
._23{width:43.842560pt;}
._37{width:45.014293pt;}
._18{width:46.267520pt;}
._19{width:47.156480pt;}
._39{width:60.544000pt;}
._30{width:62.014293pt;}
._21{width:75.626667pt;}
._2c{width:93.297067pt;}
._36{width:108.757760pt;}
._2d{width:112.246400pt;}
._35{width:113.920000pt;}
._34{width:118.912000pt;}
._29{width:135.917227pt;}
._1f{width:173.310507pt;}
._32{width:205.761280pt;}
._31{width:206.996907pt;}
._2b{width:217.782827pt;}
._2a{width:218.916907pt;}
._28{width:295.194027pt;}
._3f{width:457.229867pt;}
.fsd{font-size:85.120000pt;}
.fse{font-size:96.000000pt;}
.fs4{font-size:99.840000pt;}
.fs6{font-size:101.120000pt;}
.fs5{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.fsc{font-size:135.040000pt;}
.fsb{font-size:142.080000pt;}
.fs3{font-size:149.120000pt;}
.fs1{font-size:192.000000pt;}
.fsa{font-size:213.120000pt;}
.fs0{font-size:234.880000pt;}
.fs7{font-size:320.000000pt;}
.fs8{font-size:320.128000pt;}
.fs9{font-size:352.000000pt;}
.y0{bottom:0.000000pt;}
.ya5{bottom:7.746667pt;}
.yb6{bottom:15.840000pt;}
.ya7{bottom:15.933333pt;}
.yd{bottom:19.360000pt;}
.yf{bottom:25.186667pt;}
.y15{bottom:25.213333pt;}
.y1c{bottom:25.253333pt;}
.y8{bottom:36.933333pt;}
.y11{bottom:37.026667pt;}
.y9d{bottom:43.293333pt;}
.yb7{bottom:53.373333pt;}
.y4{bottom:60.933333pt;}
.y1e{bottom:66.693333pt;}
.y25{bottom:67.040000pt;}
.y13{bottom:76.093333pt;}
.y17{bottom:83.933333pt;}
.y1a{bottom:83.973333pt;}
.y2f{bottom:86.906667pt;}
.ya9{bottom:88.346667pt;}
.y94{bottom:90.176000pt;}
.yb4{bottom:90.333333pt;}
.y2{bottom:100.573333pt;}
.y34{bottom:108.546667pt;}
.y9e{bottom:113.280000pt;}
.y93{bottom:115.776000pt;}
.yac{bottom:123.933333pt;}
.ybb{bottom:131.973333pt;}
.yb9{bottom:132.026667pt;}
.y32{bottom:175.746667pt;}
.y9f{bottom:183.266667pt;}
.y2b{bottom:186.586667pt;}
.yad{bottom:188.293333pt;}
.y2d{bottom:206.746667pt;}
.y92{bottom:207.586667pt;}
.y9b{bottom:212.000000pt;}
.y28{bottom:217.306667pt;}
.y31{bottom:232.226667pt;}
.y9a{bottom:241.440000pt;}
.y2a{bottom:244.186667pt;}
.yae{bottom:252.640000pt;}
.ya0{bottom:253.253333pt;}
.y23{bottom:263.520000pt;}
.y6{bottom:263.653333pt;}
.yb{bottom:264.640000pt;}
.y91{bottom:265.186667pt;}
.y99{bottom:270.880000pt;}
.y27{bottom:274.906667pt;}
.y30{bottom:286.240000pt;}
.y98{bottom:311.040000pt;}
.yaf{bottom:316.960000pt;}
.y22{bottom:321.120000pt;}
.ya{bottom:322.240000pt;}
.y90{bottom:322.786667pt;}
.ya1{bottom:323.226667pt;}
.y97{bottom:340.480000pt;}
.yb0{bottom:381.306667pt;}
.y33{bottom:382.240000pt;}
.ya2{bottom:393.213333pt;}
.y2c{bottom:394.080000pt;}
.y77{bottom:409.986667pt;}
.yb1{bottom:445.666667pt;}
.ya3{bottom:463.200000pt;}
.y26{bottom:483.360000pt;}
.y51{bottom:506.586667pt;}
.yb2{bottom:509.986667pt;}
.y2e{bottom:513.920000pt;}
.y29{bottom:514.080000pt;}
.y88{bottom:518.533333pt;}
.y50{bottom:538.586667pt;}
.y87{bottom:556.933333pt;}
.yb3{bottom:574.333333pt;}
.yab{bottom:577.600000pt;}
.y21{bottom:593.920000pt;}
.y86{bottom:595.333333pt;}
.y85{bottom:633.733333pt;}
.y84{bottom:672.133333pt;}
.y83{bottom:710.533333pt;}
.y82{bottom:748.933333pt;}
.y81{bottom:787.013333pt;}
.y96{bottom:792.573333pt;}
.yb5{bottom:798.240000pt;}
.ybd{bottom:806.880000pt;}
.y24{bottom:819.200000pt;}
.y95{bottom:821.373333pt;}
.y80{bottom:825.413333pt;}
.ybc{bottom:835.680000pt;}
.y7f{bottom:864.133333pt;}
.y7e{bottom:902.533333pt;}
.yba{bottom:927.360000pt;}
.y1d{bottom:936.320000pt;}
.y7d{bottom:940.933333pt;}
.y20{bottom:966.080000pt;}
.y1f{bottom:977.760000pt;}
.y19{bottom:995.840000pt;}
.yb8{bottom:1005.600000pt;}
.y76{bottom:1018.373333pt;}
.y1b{bottom:1054.560000pt;}
.y16{bottom:1072.640000pt;}
.y9{bottom:1129.120000pt;}
.y18{bottom:1131.360000pt;}
.y12{bottom:1157.280000pt;}
.y4a{bottom:1192.573333pt;}
.y75{bottom:1202.906667pt;}
.y14{bottom:1208.160000pt;}
.y49{bottom:1223.293333pt;}
.y48{bottom:1255.293333pt;}
.y74{bottom:1266.906667pt;}
.y10{bottom:1273.120000pt;}
.ye{bottom:1284.960000pt;}
.y5{bottom:1286.400000pt;}
.y9c{bottom:1301.920000pt;}
.ya4{bottom:1303.840000pt;}
.y73{bottom:1330.906667pt;}
.y72{bottom:1394.906667pt;}
.yc{bottom:1403.200000pt;}
.ya6{bottom:1426.560000pt;}
.y71{bottom:1458.906667pt;}
.y7{bottom:1513.120000pt;}
.y70{bottom:1522.906667pt;}
.y3{bottom:1580.960000pt;}
.y6f{bottom:1586.906667pt;}
.yaa{bottom:1613.760000pt;}
.y1{bottom:1626.240000pt;}
.y4f{bottom:1631.613333pt;}
.y6e{bottom:1650.906667pt;}
.y4e{bottom:1670.013333pt;}
.ya8{bottom:1670.240000pt;}
.y4d{bottom:1708.413333pt;}
.y6d{bottom:1714.906667pt;}
.y4c{bottom:1746.813333pt;}
.y6c{bottom:1778.946667pt;}
.y4b{bottom:1785.213333pt;}
.y8f{bottom:1806.720000pt;}
.y6b{bottom:1842.946667pt;}
.y8e{bottom:1845.120000pt;}
.y8b{bottom:1852.506667pt;}
.y8d{bottom:1883.520000pt;}
.y8a{bottom:1890.906667pt;}
.y6a{bottom:1906.946667pt;}
.y8c{bottom:1921.920000pt;}
.y89{bottom:1929.306667pt;}
.y65{bottom:2015.813333pt;}
.y3d{bottom:2141.146667pt;}
.y3c{bottom:2185.946667pt;}
.y3b{bottom:2230.746667pt;}
.y3a{bottom:2275.066667pt;}
.y39{bottom:2320.346667pt;}
.y38{bottom:2365.146667pt;}
.y37{bottom:2409.466667pt;}
.y36{bottom:2454.266667pt;}
.y35{bottom:2499.066667pt;}
.y47{bottom:2606.946667pt;}
.y5b{bottom:2609.533333pt;}
.y46{bottom:2651.746667pt;}
.y5a{bottom:2654.333333pt;}
.y45{bottom:2696.546667pt;}
.y59{bottom:2699.133333pt;}
.y44{bottom:2741.346667pt;}
.y58{bottom:2743.933333pt;}
.y43{bottom:2786.146667pt;}
.y57{bottom:2788.733333pt;}
.y42{bottom:2830.946667pt;}
.y56{bottom:2833.533333pt;}
.y41{bottom:2875.266667pt;}
.y55{bottom:2878.333333pt;}
.y40{bottom:2920.546667pt;}
.y54{bottom:2923.133333pt;}
.y3f{bottom:2965.346667pt;}
.y53{bottom:2967.933333pt;}
.y3e{bottom:3010.146667pt;}
.y52{bottom:3012.733333pt;}
.y64{bottom:3114.213333pt;}
.y62{bottom:3311.746667pt;}
.y61{bottom:3356.733333pt;}
.y60{bottom:3401.533333pt;}
.y5f{bottom:3446.333333pt;}
.y5e{bottom:3491.133333pt;}
.y5d{bottom:3535.933333pt;}
.y5c{bottom:3580.733333pt;}
.y63{bottom:3662.106667pt;}
.y7c{bottom:3806.906667pt;}
.y7b{bottom:3862.906667pt;}
.y7a{bottom:3910.586667pt;}
.y79{bottom:3940.026667pt;}
.y78{bottom:3997.626667pt;}
.y69{bottom:4083.040000pt;}
.y68{bottom:4188.640000pt;}
.y67{bottom:4294.240000pt;}
.y66{bottom:4399.840000pt;}
.h2e{height:32.320000pt;}
.h2a{height:63.840000pt;}
.h9{height:69.440000pt;}
.h2b{height:72.000000pt;}
.h2c{height:72.796875pt;}
.h28{height:74.880000pt;}
.h1e{height:75.840000pt;}
.h1d{height:80.160000pt;}
.h33{height:80.734062pt;}
.h32{height:80.960000pt;}
.ha{height:81.120000pt;}
.h1f{height:96.000000pt;}
.h27{height:101.280000pt;}
.h29{height:102.240000pt;}
.h7{height:104.480000pt;}
.hb{height:104.640000pt;}
.h1b{height:111.840000pt;}
.h30{height:112.960000pt;}
.h20{height:113.077812pt;}
.h1c{height:119.680000pt;}
.h5{height:144.000000pt;}
.h4{height:152.480000pt;}
.h26{height:153.600000pt;}
.h34{height:156.640000pt;}
.h24{height:159.840000pt;}
.h10{height:164.000000pt;}
.h12{height:164.640000pt;}
.h25{height:170.560000pt;}
.hd{height:174.080000pt;}
.h3{height:176.160000pt;}
.h18{height:178.560000pt;}
.hc{height:182.880000pt;}
.he{height:198.400000pt;}
.hf{height:198.560000pt;}
.h16{height:204.480000pt;}
.h2{height:238.560000pt;}
.h21{height:240.000000pt;}
.h22{height:240.096000pt;}
.h19{height:247.840000pt;}
.h23{height:264.000000pt;}
.h2f{height:271.680000pt;}
.h17{height:439.680000pt;}
.h15{height:444.000000pt;}
.h14{height:461.440000pt;}
.h2d{height:496.000000pt;}
.h13{height:522.880000pt;}
.h6{height:557.920000pt;}
.h31{height:613.120000pt;}
.h11{height:615.200000pt;}
.h8{height:617.440000pt;}
.h1{height:4535.333333pt;}
.h1a{height:4535.519674pt;}
.h0{height:4535.520000pt;}
.w8{width:95.680000pt;}
.wf{width:113.760000pt;}
.w9{width:134.400000pt;}
.w4{width:177.120000pt;}
.wa{width:179.200000pt;}
.w3{width:180.000000pt;}
.w10{width:186.560000pt;}
.wb{width:186.720000pt;}
.wc{width:193.440000pt;}
.we{width:205.440000pt;}
.w2{width:357.120000pt;}
.w5{width:543.200000pt;}
.w7{width:896.320000pt;}
.wd{width:1027.040000pt;}
.w1{width:3401.333333pt;}
.w6{width:3401.439997pt;}
.w0{width:3401.440000pt;}
.x0{left:0.000000pt;}
.x18{left:5.440000pt;}
.x3e{left:15.973333pt;}
.x7{left:21.253333pt;}
.x41{left:26.466667pt;}
.x15{left:35.013333pt;}
.x14{left:36.506667pt;}
.x13{left:37.573333pt;}
.x19{left:40.160000pt;}
.x5{left:41.253333pt;}
.x3{left:42.586667pt;}
.x9{left:65.093333pt;}
.x8{left:66.426667pt;}
.x16{left:67.653333pt;}
.xe{left:76.773333pt;}
.x10{left:78.266667pt;}
.x17{left:80.933333pt;}
.xc{left:82.693333pt;}
.xb{left:84.186667pt;}
.x3c{left:86.400000pt;}
.x2{left:94.400000pt;}
.x1a{left:104.960000pt;}
.x1b{left:109.413333pt;}
.x37{left:121.919997pt;}
.x35{left:125.631997pt;}
.x6{left:132.480000pt;}
.x44{left:135.040000pt;}
.x22{left:137.346664pt;}
.x27{left:141.666664pt;}
.x1c{left:144.773333pt;}
.x1d{left:153.533331pt;}
.xa{left:154.693333pt;}
.x20{left:157.666664pt;}
.x30{left:184.666664pt;}
.x11{left:201.093333pt;}
.xf{left:208.933333pt;}
.x12{left:218.373333pt;}
.xd{left:259.813333pt;}
.x1e{left:299.586664pt;}
.x28{left:499.613331pt;}
.x29{left:608.253331pt;}
.x2a{left:652.893331pt;}
.x1f{left:669.693331pt;}
.x1{left:675.680000pt;}
.x4{left:855.680000pt;}
.x36{left:1077.986664pt;}
.x23{left:1110.973331pt;}
.x21{left:1119.426664pt;}
.x43{left:1226.880000pt;}
.x3b{left:1248.480000pt;}
.x45{left:1272.960000pt;}
.x40{left:1276.640000pt;}
.x26{left:1289.893331pt;}
.x31{left:1310.786664pt;}
.x2b{left:1322.373331pt;}
.x3d{left:1505.600000pt;}
.x24{left:1619.813331pt;}
.x38{left:1690.493331pt;}
.x46{left:1733.120000pt;}
.x25{left:1823.679997pt;}
.x3f{left:1848.960000pt;}
.x42{left:1943.040000pt;}
.x47{left:2041.600000pt;}
.x48{left:2128.026664pt;}
.x49{left:2129.786664pt;}
.x33{left:2459.613331pt;}
.x2c{left:2464.133331pt;}
.x2d{left:2482.853331pt;}
.x39{left:2490.559997pt;}
.x34{left:2513.693331pt;}
.x3a{left:2520.639997pt;}
.x2f{left:2579.039997pt;}
.x2e{left:2675.706664pt;}
.x32{left:3285.759997pt;}
}




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