
    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_178a9a5da57eea3e1b66c241.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916504;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_7ab0702266d025ad5cb868ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.970215;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_2cc76b05f333bcc2b5715187.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_29a11d05bf08b75f89ba9bdc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.843750;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_159423a42d81bd10590c9fef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.712000;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_88a9e5983abb1eb31a7fc205.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957000;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_4b7f7208bb28ad9a392663b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.980469;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_972b412b60bdbdaaddf26178.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_dd3c1cd072ba5df7f3598fdc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_4bb1faf2fd690473b30e9f53.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.898438;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_ddcfb718a8510e26b0c63930.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_97d7f3b4d4b56ea172259e4c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls2a{letter-spacing:-0.993600px;}
.ls2e{letter-spacing:-0.927360px;}
.ls32{letter-spacing:-0.861120px;}
.ls2d{letter-spacing:-0.728640px;}
.ls7{letter-spacing:-0.662400px;}
.ls26{letter-spacing:-0.633600px;}
.ls28{letter-spacing:-0.596160px;}
.ls1e{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.397440px;}
.ls20{letter-spacing:-0.378000px;}
.ls35{letter-spacing:-0.331200px;}
.ls23{letter-spacing:-0.324000px;}
.ls18{letter-spacing:-0.298800px;}
.ls1d{letter-spacing:-0.270000px;}
.ls29{letter-spacing:-0.264960px;}
.ls10{letter-spacing:-0.239040px;}
.lsa{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.198720px;}
.lsf{letter-spacing:-0.179280px;}
.ls22{letter-spacing:-0.162000px;}
.ls16{letter-spacing:-0.144000px;}
.ls27{letter-spacing:-0.132480px;}
.ls14{letter-spacing:-0.119520px;}
.ls13{letter-spacing:-0.072000px;}
.lse{letter-spacing:-0.066240px;}
.ls11{letter-spacing:-0.059760px;}
.ls21{letter-spacing:-0.054000px;}
.ls6{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.054000px;}
.ls2{letter-spacing:0.059760px;}
.ls2c{letter-spacing:0.063360px;}
.ls8{letter-spacing:0.066240px;}
.lsd{letter-spacing:0.095760px;}
.ls24{letter-spacing:0.108000px;}
.ls2f{letter-spacing:0.118080px;}
.ls1{letter-spacing:0.119520px;}
.lsc{letter-spacing:0.132480px;}
.ls3{letter-spacing:0.179280px;}
.ls12{letter-spacing:0.198720px;}
.ls17{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.239040px;}
.ls2b{letter-spacing:0.264960px;}
.ls25{letter-spacing:0.270000px;}
.ls1c{letter-spacing:0.270720px;}
.ls19{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.331200px;}
.ls1b{letter-spacing:0.378000px;}
.ls33{letter-spacing:0.380160px;}
.ls4{letter-spacing:0.836640px;}
.ls31{letter-spacing:5.299200px;}
.ls30{letter-spacing:59.351040px;}
.ls34{letter-spacing:108.964800px;}
.ls5{letter-spacing:848.956536px;}
.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;}
}
.ws8f{word-spacing:-66.240000px;}
.ws3d{word-spacing:-18.584640px;}
.ws7{word-spacing:-16.560000px;}
.ws90{word-spacing:-15.143040px;}
.wsf{word-spacing:-14.832000px;}
.ws3{word-spacing:-14.639040px;}
.ws4{word-spacing:-14.572800px;}
.ws3e{word-spacing:-14.509440px;}
.ws2{word-spacing:-14.175360px;}
.ws1{word-spacing:-13.910400px;}
.ws6b{word-spacing:-13.777920px;}
.ws3f{word-spacing:-13.711680px;}
.wsc{word-spacing:-13.645440px;}
.ws6{word-spacing:-13.579200px;}
.ws5{word-spacing:-13.446720px;}
.ws9f{word-spacing:-13.380480px;}
.ws6a{word-spacing:-13.314240px;}
.ws9c{word-spacing:-13.248000px;}
.ws80{word-spacing:-13.181760px;}
.ws9e{word-spacing:-13.115520px;}
.ws9d{word-spacing:-12.784320px;}
.wse{word-spacing:-12.370320px;}
.wsb{word-spacing:-12.310560px;}
.ws11{word-spacing:-12.250800px;}
.ws3b{word-spacing:-12.204000px;}
.wsa{word-spacing:-12.131280px;}
.ws9{word-spacing:-12.071520px;}
.wsd{word-spacing:-12.011760px;}
.ws8{word-spacing:-11.892240px;}
.ws37{word-spacing:-11.880000px;}
.ws10{word-spacing:-11.832480px;}
.ws3a{word-spacing:-11.826000px;}
.ws39{word-spacing:-11.610000px;}
.ws38{word-spacing:-11.502000px;}
.ws36{word-spacing:-11.448000px;}
.ws3c{word-spacing:-10.746000px;}
.ws65{word-spacing:-2.980800px;}
.ws5d{word-spacing:-2.782080px;}
.ws9b{word-spacing:-2.649600px;}
.ws76{word-spacing:-2.517120px;}
.ws5c{word-spacing:-2.384640px;}
.ws2e{word-spacing:-2.151360px;}
.ws89{word-spacing:-2.053440px;}
.ws2d{word-spacing:-1.972080px;}
.ws2f{word-spacing:-1.852560px;}
.ws52{word-spacing:-1.788480px;}
.ws64{word-spacing:-1.656000px;}
.ws7e{word-spacing:-1.523520px;}
.ws51{word-spacing:-1.324800px;}
.ws50{word-spacing:-1.059840px;}
.ws13{word-spacing:-0.957600px;}
.ws29{word-spacing:-0.836640px;}
.ws5e{word-spacing:-0.823680px;}
.ws72{word-spacing:-0.794880px;}
.ws1c{word-spacing:-0.728640px;}
.ws53{word-spacing:-0.596160px;}
.ws2a{word-spacing:-0.537840px;}
.ws45{word-spacing:-0.432000px;}
.ws4f{word-spacing:-0.397440px;}
.ws95{word-spacing:-0.380160px;}
.ws1d{word-spacing:-0.331200px;}
.ws41{word-spacing:-0.324000px;}
.ws14{word-spacing:-0.264960px;}
.ws42{word-spacing:-0.216000px;}
.ws16{word-spacing:-0.198720px;}
.ws1f{word-spacing:-0.179280px;}
.ws21{word-spacing:-0.144000px;}
.ws85{word-spacing:-0.132480px;}
.ws22{word-spacing:-0.119520px;}
.ws1a{word-spacing:-0.108000px;}
.ws1b{word-spacing:-0.095760px;}
.ws15{word-spacing:-0.066240px;}
.ws0{word-spacing:-0.059760px;}
.ws12{word-spacing:0.000000px;}
.ws33{word-spacing:0.059760px;}
.ws67{word-spacing:0.066240px;}
.ws4e{word-spacing:0.132480px;}
.ws23{word-spacing:0.144000px;}
.ws26{word-spacing:0.179280px;}
.ws20{word-spacing:0.198720px;}
.ws31{word-spacing:0.239040px;}
.ws5f{word-spacing:0.264960px;}
.ws1e{word-spacing:0.298800px;}
.ws44{word-spacing:0.324000px;}
.wsa1{word-spacing:0.331200px;}
.ws5a{word-spacing:0.397440px;}
.ws18{word-spacing:0.463680px;}
.ws54{word-spacing:0.529920px;}
.ws17{word-spacing:0.594000px;}
.ws77{word-spacing:0.596160px;}
.ws40{word-spacing:0.648000px;}
.ws43{word-spacing:0.702000px;}
.ws60{word-spacing:0.728640px;}
.ws57{word-spacing:0.794880px;}
.ws94{word-spacing:0.861120px;}
.ws2c{word-spacing:0.896400px;}
.ws69{word-spacing:0.927360px;}
.ws4d{word-spacing:0.993600px;}
.ws68{word-spacing:1.059840px;}
.ws56{word-spacing:1.192320px;}
.ws84{word-spacing:1.324800px;}
.ws62{word-spacing:1.523520px;}
.ws6e{word-spacing:1.788480px;}
.ws7a{word-spacing:1.920960px;}
.ws59{word-spacing:2.053440px;}
.wsa5{word-spacing:2.450880px;}
.ws66{word-spacing:2.517120px;}
.ws8a{word-spacing:2.649600px;}
.ws86{word-spacing:2.980800px;}
.ws7d{word-spacing:3.245760px;}
.ws6d{word-spacing:3.378240px;}
.ws4c{word-spacing:3.709440px;}
.ws78{word-spacing:3.974400px;}
.wsa0{word-spacing:4.438080px;}
.ws2b{word-spacing:4.541760px;}
.ws91{word-spacing:4.703040px;}
.ws7c{word-spacing:4.968000px;}
.ws30{word-spacing:5.019840px;}
.ws97{word-spacing:5.166720px;}
.ws8c{word-spacing:5.431680px;}
.ws8b{word-spacing:5.564160px;}
.ws25{word-spacing:5.617440px;}
.ws5b{word-spacing:5.895360px;}
.ws27{word-spacing:5.916240px;}
.ws7b{word-spacing:6.160320px;}
.ws93{word-spacing:6.292800px;}
.ws28{word-spacing:6.633360px;}
.ws79{word-spacing:6.822720px;}
.ws87{word-spacing:7.286400px;}
.ws4a{word-spacing:7.683840px;}
.ws75{word-spacing:7.816320px;}
.ws74{word-spacing:8.015040px;}
.ws63{word-spacing:8.280000px;}
.ws88{word-spacing:8.412480px;}
.ws73{word-spacing:9.141120px;}
.ws70{word-spacing:9.737280px;}
.ws55{word-spacing:9.869760px;}
.ws19{word-spacing:9.936000px;}
.ws82{word-spacing:10.465920px;}
.ws61{word-spacing:10.598400px;}
.ws24{word-spacing:10.697040px;}
.ws8e{word-spacing:11.327040px;}
.ws8d{word-spacing:11.393280px;}
.ws92{word-spacing:11.989440px;}
.ws71{word-spacing:12.055680px;}
.ws83{word-spacing:12.320640px;}
.ws4b{word-spacing:13.314240px;}
.ws6c{word-spacing:13.446720px;}
.ws58{word-spacing:14.175360px;}
.ws96{word-spacing:15.632640px;}
.ws46{word-spacing:16.692480px;}
.ws7f{word-spacing:17.089920px;}
.ws47{word-spacing:17.619840px;}
.ws49{word-spacing:18.083520px;}
.ws81{word-spacing:18.348480px;}
.ws48{word-spacing:18.812160px;}
.ws34{word-spacing:19.601280px;}
.ws32{word-spacing:19.780560px;}
.ws35{word-spacing:20.437920px;}
.ws6f{word-spacing:21.726720px;}
.ws98{word-spacing:35.372160px;}
.wsa3{word-spacing:108.832320px;}
.wsa4{word-spacing:109.693440px;}
.ws99{word-spacing:288.475200px;}
.ws9a{word-spacing:288.806400px;}
.wsa2{word-spacing:408.038400px;}
._0{margin-left:-1.225728px;}
._1{width:1.803168px;}
._4{width:5.112000px;}
._8{width:8.605440px;}
._3{width:12.308832px;}
._6{width:18.591408px;}
._5{width:20.528208px;}
._7{width:1262.401920px;}
._2{width:1593.821664px;}
.fc5{color:rgb(35,130,170);}
.fc3{color:rgb(0,112,192);}
.fc4{color:rgb(35,31,32);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(25,100,125);}
.fs3{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs0{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:0.900000px;}
.y7{bottom:4.680000px;}
.y9{bottom:10.620000px;}
.y38{bottom:57.960000px;}
.y5{bottom:60.664500px;}
.y8{bottom:63.720000px;}
.ya{bottom:74.340000px;}
.y4{bottom:76.500000px;}
.y39{bottom:77.040000px;}
.y37{bottom:77.940000px;}
.y3a{bottom:87.660000px;}
.y36{bottom:94.320000px;}
.y3{bottom:95.220000px;}
.y35{bottom:118.260000px;}
.y95{bottom:139.671360px;}
.y67{bottom:156.397680px;}
.y94{bottom:162.358560px;}
.ybf{bottom:163.596960px;}
.y66{bottom:179.084880px;}
.ye1{bottom:179.467200px;}
.y93{bottom:185.045760px;}
.ybe{bottom:186.284160px;}
.ye0{bottom:202.320000px;}
.y92{bottom:207.898560px;}
.ybd{bottom:209.136960px;}
.y65{bottom:210.946320px;}
.ybc{bottom:231.824160px;}
.y64{bottom:233.633520px;}
.ydf{bottom:234.000000px;}
.y91{bottom:239.577840px;}
.ybb{bottom:254.511360px;}
.y63{bottom:256.320720px;}
.yde{bottom:256.687200px;}
.y90{bottom:262.265040px;}
.y62{bottom:279.173520px;}
.ydd{bottom:279.540000px;}
.y8f{bottom:285.117840px;}
.yba{bottom:286.372800px;}
.yb9{bottom:309.060000px;}
.y61{bottom:310.852800px;}
.ydc{bottom:311.212800px;}
.y8e{bottom:316.797120px;}
.y60{bottom:333.540000px;}
.ydb{bottom:333.900000px;}
.y8d{bottom:339.484320px;}
.yb8{bottom:340.702560px;}
.y8c{bottom:362.337120px;}
.yb7{bottom:363.389760px;}
.y5f{bottom:365.400000px;}
.yda{bottom:368.280000px;}
.y8b{bottom:385.024320px;}
.yb6{bottom:386.242560px;}
.y5e{bottom:388.080000px;}
.y5d{bottom:410.767200px;}
.yd9{bottom:412.348320px;}
.y8a{bottom:416.703600px;}
.yb5{bottom:417.921840px;}
.y5c{bottom:433.620000px;}
.yd8{bottom:435.035520px;}
.y89{bottom:439.556400px;}
.yb4{bottom:440.609040px;}
.y88{bottom:462.243600px;}
.y5b{bottom:465.292800px;}
.yd7{bottom:466.896960px;}
.yb3{bottom:472.470480px;}
.y5a{bottom:487.980000px;}
.yd6{bottom:489.584160px;}
.y87{bottom:493.922880px;}
.yb2{bottom:495.157680px;}
.y31{bottom:499.496220px;}
.y59{bottom:510.833520px;}
.yd5{bottom:512.271360px;}
.y86{bottom:516.775680px;}
.yb1{bottom:517.844880px;}
.y30{bottom:524.693520px;}
.y85{bottom:539.462880px;}
.yb0{bottom:540.697680px;}
.y58{bottom:542.512800px;}
.yd4{bottom:544.132800px;}
.y2f{bottom:547.193160px;}
.y57{bottom:565.200000px;}
.yd3{bottom:566.820000px;}
.y2e{bottom:567.900000px;}
.y84{bottom:571.142160px;}
.yaf{bottom:572.376960px;}
.y56{bottom:588.052800px;}
.y2d{bottom:590.580000px;}
.y83{bottom:593.994960px;}
.yae{bottom:595.064160px;}
.yd2{bottom:601.020000px;}
.y55{bottom:610.740000px;}
.y2c{bottom:611.093160px;}
.y82{bottom:616.682160px;}
.yad{bottom:626.925600px;}
.y2b{bottom:631.800000px;}
.y54{bottom:642.427200px;}
.yd1{bottom:645.295680px;}
.y81{bottom:648.361440px;}
.yac{bottom:649.612800px;}
.y2a{bottom:663.840000px;}
.y53{bottom:665.280000px;}
.yd0{bottom:667.982880px;}
.y80{bottom:671.214240px;}
.yab{bottom:672.300000px;}
.ycf{bottom:690.670080px;}
.y7f{bottom:693.901440px;}
.y29{bottom:696.237120px;}
.y52{bottom:699.480000px;}
.y23{bottom:703.607190px;}
.yaa{bottom:704.152800px;}
.yce{bottom:713.522880px;}
.y28{bottom:718.378200px;}
.y7e{bottom:725.580720px;}
.ya9{bottom:726.840000px;}
.y22{bottom:732.411510px;}
.ycd{bottom:736.210080px;}
.y27{bottom:740.340000px;}
.y51{bottom:743.550480px;}
.y7d{bottom:748.433520px;}
.ya8{bottom:749.520000px;}
.y21{bottom:761.215830px;}
.y26{bottom:762.481080px;}
.y50{bottom:766.403280px;}
.ycc{bottom:767.889360px;}
.y7c{bottom:771.120720px;}
.ya7{bottom:772.344000px;}
.y25{bottom:784.442880px;}
.y4f{bottom:789.090480px;}
.y20{bottom:790.020150px;}
.ycb{bottom:790.742160px;}
.y7b{bottom:802.800000px;}
.ya6{bottom:804.023280px;}
.y24{bottom:806.404680px;}
.y4e{bottom:811.777680px;}
.yca{bottom:814.870080px;}
.y7a{bottom:825.652800px;}
.ya5{bottom:826.710480px;}
.y1f{bottom:829.980000px;}
.yc9{bottom:839.163600px;}
.y4d{bottom:843.639120px;}
.y79{bottom:848.340000px;}
.ya4{bottom:849.563280px;}
.y1e{bottom:863.999640px;}
.y4c{bottom:866.326320px;}
.yc8{bottom:872.283600px;}
.ya3{bottom:881.242560px;}
.y78{bottom:882.540000px;}
.y4b{bottom:889.013520px;}
.y1d{bottom:894.955320px;}
.yc7{bottom:894.970800px;}
.ya2{bottom:903.929760px;}
.y4a{bottom:911.866320px;}
.y1c{bottom:917.096400px;}
.yc6{bottom:917.823600px;}
.y16{bottom:924.466320px;}
.y77{bottom:926.782560px;}
.y49{bottom:934.553520px;}
.y1b{bottom:939.058200px;}
.y76{bottom:949.469760px;}
.yc5{bottom:949.502880px;}
.y15{bottom:953.091360px;}
.yec{bottom:954.180000px;}
.y1a{bottom:961.020000px;}
.y48{bottom:966.232800px;}
.y75{bottom:972.156960px;}
.yc4{bottom:972.190080px;}
.ya1{bottom:981.149040px;}
.y14{bottom:981.895680px;}
.y19{bottom:983.161080px;}
.yeb{bottom:985.852800px;}
.y47{bottom:989.085600px;}
.yc3{bottom:995.042880px;}
.ya0{bottom:1004.001840px;}
.y74{bottom:1004.018400px;}
.y18{bottom:1005.122880px;}
.yea{bottom:1008.540000px;}
.y13{bottom:1010.700000px;}
.y46{bottom:1011.772800px;}
.y73{bottom:1026.705600px;}
.yc2{bottom:1026.722160px;}
.y17{bottom:1027.084680px;}
.y45{bottom:1034.460000px;}
.y9f{bottom:1035.681120px;}
.ye9{bottom:1040.392800px;}
.y72{bottom:1049.392800px;}
.yc1{bottom:1049.409360px;}
.y12{bottom:1050.660000px;}
.y9e{bottom:1058.368320px;}
.ye8{bottom:1063.080000px;}
.y44{bottom:1066.320000px;}
.yc0{bottom:1072.262160px;}
.y9d{bottom:1081.221120px;}
.y71{bottom:1081.254240px;}
.y11{bottom:1083.960000px;}
.y43{bottom:1089.000000px;}
.ye7{bottom:1094.752080px;}
.y9c{bottom:1103.908320px;}
.y70{bottom:1103.941440px;}
.y42{bottom:1111.680000px;}
.y10{bottom:1113.302340px;}
.ye6{bottom:1117.604880px;}
.y9b{bottom:1126.595520px;}
.y6f{bottom:1126.628640px;}
.yf{bottom:1132.560000px;}
.ye5{bottom:1140.292080px;}
.y41{bottom:1143.352800px;}
.y6e{bottom:1149.481440px;}
.ye{bottom:1150.920000px;}
.y9a{bottom:1158.456960px;}
.y40{bottom:1166.205600px;}
.ye4{bottom:1172.153520px;}
.y99{bottom:1181.144160px;}
.y6d{bottom:1181.160720px;}
.y3f{bottom:1188.892800px;}
.yd{bottom:1195.560000px;}
.y98{bottom:1203.831360px;}
.ye3{bottom:1203.832800px;}
.y6c{bottom:1203.847920px;}
.y3e{bottom:1211.580000px;}
.ye2{bottom:1226.520000px;}
.y6b{bottom:1226.700720px;}
.y3d{bottom:1234.432800px;}
.y97{bottom:1235.692800px;}
.yc{bottom:1238.940000px;}
.y6a{bottom:1249.387920px;}
.y3c{bottom:1257.120000px;}
.y96{bottom:1258.380000px;}
.y32{bottom:1261.440000px;}
.yb{bottom:1276.200000px;}
.y69{bottom:1281.067200px;}
.y3b{bottom:1291.500000px;}
.y68{bottom:1303.920000px;}
.y6{bottom:1304.100000px;}
.y2{bottom:1306.980000px;}
.y1{bottom:1328.040000px;}
.y34{bottom:1335.780000px;}
.h6{height:19.800000px;}
.h13{height:34.918500px;}
.h7{height:34.920000px;}
.h5{height:38.206055px;}
.h12{height:39.240000px;}
.h4{height:40.500000px;}
.he{height:42.429600px;}
.h9{height:44.820000px;}
.h2{height:46.639687px;}
.h11{height:46.665608px;}
.hd{height:48.742031px;}
.h3{height:49.680000px;}
.h16{height:49.705920px;}
.h15{height:49.708800px;}
.h19{height:49.711680px;}
.h17{height:49.824000px;}
.h18{height:49.829760px;}
.h10{height:51.120000px;}
.hf{height:54.000000px;}
.h8{height:67.032000px;}
.h1{height:67.424766px;}
.hc{height:67.989600px;}
.h14{height:68.343750px;}
.ha{height:76.680000px;}
.hb{height:81.000000px;}
.h0{height:1404.000000px;}
.w2{width:48.418500px;}
.w3{width:130.680000px;}
.w1{width:142.918500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:10.800000px;}
.x2{left:84.960000px;}
.x1{left:102.960000px;}
.xf{left:106.020000px;}
.x12{left:111.969360px;}
.xd{left:118.800000px;}
.x9{left:127.440000px;}
.xa{left:138.615120px;}
.xb{left:263.520000px;}
.x11{left:342.720000px;}
.x3{left:525.240000px;}
.xc{left:715.320000px;}
.x5{left:719.100000px;}
.x10{left:741.240000px;}
.x4{left:828.720000px;}
.xe{left:832.860000px;}
.x7{left:842.760000px;}
.x8{left:853.920000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2a{letter-spacing:-0.883200pt;}
.ls2e{letter-spacing:-0.824320pt;}
.ls32{letter-spacing:-0.765440pt;}
.ls2d{letter-spacing:-0.647680pt;}
.ls7{letter-spacing:-0.588800pt;}
.ls26{letter-spacing:-0.563200pt;}
.ls28{letter-spacing:-0.529920pt;}
.ls1e{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.353280pt;}
.ls20{letter-spacing:-0.336000pt;}
.ls35{letter-spacing:-0.294400pt;}
.ls23{letter-spacing:-0.288000pt;}
.ls18{letter-spacing:-0.265600pt;}
.ls1d{letter-spacing:-0.240000pt;}
.ls29{letter-spacing:-0.235520pt;}
.ls10{letter-spacing:-0.212480pt;}
.lsa{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.176640pt;}
.lsf{letter-spacing:-0.159360pt;}
.ls22{letter-spacing:-0.144000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls27{letter-spacing:-0.117760pt;}
.ls14{letter-spacing:-0.106240pt;}
.ls13{letter-spacing:-0.064000pt;}
.lse{letter-spacing:-0.058880pt;}
.ls11{letter-spacing:-0.053120pt;}
.ls21{letter-spacing:-0.048000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.048000pt;}
.ls2{letter-spacing:0.053120pt;}
.ls2c{letter-spacing:0.056320pt;}
.ls8{letter-spacing:0.058880pt;}
.lsd{letter-spacing:0.085120pt;}
.ls24{letter-spacing:0.096000pt;}
.ls2f{letter-spacing:0.104960pt;}
.ls1{letter-spacing:0.106240pt;}
.lsc{letter-spacing:0.117760pt;}
.ls3{letter-spacing:0.159360pt;}
.ls12{letter-spacing:0.176640pt;}
.ls17{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.212480pt;}
.ls2b{letter-spacing:0.235520pt;}
.ls25{letter-spacing:0.240000pt;}
.ls1c{letter-spacing:0.240640pt;}
.ls19{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.294400pt;}
.ls1b{letter-spacing:0.336000pt;}
.ls33{letter-spacing:0.337920pt;}
.ls4{letter-spacing:0.743680pt;}
.ls31{letter-spacing:4.710400pt;}
.ls30{letter-spacing:52.756480pt;}
.ls34{letter-spacing:96.857600pt;}
.ls5{letter-spacing:754.628032pt;}
.ws8f{word-spacing:-58.880000pt;}
.ws3d{word-spacing:-16.519680pt;}
.ws7{word-spacing:-14.720000pt;}
.ws90{word-spacing:-13.460480pt;}
.wsf{word-spacing:-13.184000pt;}
.ws3{word-spacing:-13.012480pt;}
.ws4{word-spacing:-12.953600pt;}
.ws3e{word-spacing:-12.897280pt;}
.ws2{word-spacing:-12.600320pt;}
.ws1{word-spacing:-12.364800pt;}
.ws6b{word-spacing:-12.247040pt;}
.ws3f{word-spacing:-12.188160pt;}
.wsc{word-spacing:-12.129280pt;}
.ws6{word-spacing:-12.070400pt;}
.ws5{word-spacing:-11.952640pt;}
.ws9f{word-spacing:-11.893760pt;}
.ws6a{word-spacing:-11.834880pt;}
.ws9c{word-spacing:-11.776000pt;}
.ws80{word-spacing:-11.717120pt;}
.ws9e{word-spacing:-11.658240pt;}
.ws9d{word-spacing:-11.363840pt;}
.wse{word-spacing:-10.995840pt;}
.wsb{word-spacing:-10.942720pt;}
.ws11{word-spacing:-10.889600pt;}
.ws3b{word-spacing:-10.848000pt;}
.wsa{word-spacing:-10.783360pt;}
.ws9{word-spacing:-10.730240pt;}
.wsd{word-spacing:-10.677120pt;}
.ws8{word-spacing:-10.570880pt;}
.ws37{word-spacing:-10.560000pt;}
.ws10{word-spacing:-10.517760pt;}
.ws3a{word-spacing:-10.512000pt;}
.ws39{word-spacing:-10.320000pt;}
.ws38{word-spacing:-10.224000pt;}
.ws36{word-spacing:-10.176000pt;}
.ws3c{word-spacing:-9.552000pt;}
.ws65{word-spacing:-2.649600pt;}
.ws5d{word-spacing:-2.472960pt;}
.ws9b{word-spacing:-2.355200pt;}
.ws76{word-spacing:-2.237440pt;}
.ws5c{word-spacing:-2.119680pt;}
.ws2e{word-spacing:-1.912320pt;}
.ws89{word-spacing:-1.825280pt;}
.ws2d{word-spacing:-1.752960pt;}
.ws2f{word-spacing:-1.646720pt;}
.ws52{word-spacing:-1.589760pt;}
.ws64{word-spacing:-1.472000pt;}
.ws7e{word-spacing:-1.354240pt;}
.ws51{word-spacing:-1.177600pt;}
.ws50{word-spacing:-0.942080pt;}
.ws13{word-spacing:-0.851200pt;}
.ws29{word-spacing:-0.743680pt;}
.ws5e{word-spacing:-0.732160pt;}
.ws72{word-spacing:-0.706560pt;}
.ws1c{word-spacing:-0.647680pt;}
.ws53{word-spacing:-0.529920pt;}
.ws2a{word-spacing:-0.478080pt;}
.ws45{word-spacing:-0.384000pt;}
.ws4f{word-spacing:-0.353280pt;}
.ws95{word-spacing:-0.337920pt;}
.ws1d{word-spacing:-0.294400pt;}
.ws41{word-spacing:-0.288000pt;}
.ws14{word-spacing:-0.235520pt;}
.ws42{word-spacing:-0.192000pt;}
.ws16{word-spacing:-0.176640pt;}
.ws1f{word-spacing:-0.159360pt;}
.ws21{word-spacing:-0.128000pt;}
.ws85{word-spacing:-0.117760pt;}
.ws22{word-spacing:-0.106240pt;}
.ws1a{word-spacing:-0.096000pt;}
.ws1b{word-spacing:-0.085120pt;}
.ws15{word-spacing:-0.058880pt;}
.ws0{word-spacing:-0.053120pt;}
.ws12{word-spacing:0.000000pt;}
.ws33{word-spacing:0.053120pt;}
.ws67{word-spacing:0.058880pt;}
.ws4e{word-spacing:0.117760pt;}
.ws23{word-spacing:0.128000pt;}
.ws26{word-spacing:0.159360pt;}
.ws20{word-spacing:0.176640pt;}
.ws31{word-spacing:0.212480pt;}
.ws5f{word-spacing:0.235520pt;}
.ws1e{word-spacing:0.265600pt;}
.ws44{word-spacing:0.288000pt;}
.wsa1{word-spacing:0.294400pt;}
.ws5a{word-spacing:0.353280pt;}
.ws18{word-spacing:0.412160pt;}
.ws54{word-spacing:0.471040pt;}
.ws17{word-spacing:0.528000pt;}
.ws77{word-spacing:0.529920pt;}
.ws40{word-spacing:0.576000pt;}
.ws43{word-spacing:0.624000pt;}
.ws60{word-spacing:0.647680pt;}
.ws57{word-spacing:0.706560pt;}
.ws94{word-spacing:0.765440pt;}
.ws2c{word-spacing:0.796800pt;}
.ws69{word-spacing:0.824320pt;}
.ws4d{word-spacing:0.883200pt;}
.ws68{word-spacing:0.942080pt;}
.ws56{word-spacing:1.059840pt;}
.ws84{word-spacing:1.177600pt;}
.ws62{word-spacing:1.354240pt;}
.ws6e{word-spacing:1.589760pt;}
.ws7a{word-spacing:1.707520pt;}
.ws59{word-spacing:1.825280pt;}
.wsa5{word-spacing:2.178560pt;}
.ws66{word-spacing:2.237440pt;}
.ws8a{word-spacing:2.355200pt;}
.ws86{word-spacing:2.649600pt;}
.ws7d{word-spacing:2.885120pt;}
.ws6d{word-spacing:3.002880pt;}
.ws4c{word-spacing:3.297280pt;}
.ws78{word-spacing:3.532800pt;}
.wsa0{word-spacing:3.944960pt;}
.ws2b{word-spacing:4.037120pt;}
.ws91{word-spacing:4.180480pt;}
.ws7c{word-spacing:4.416000pt;}
.ws30{word-spacing:4.462080pt;}
.ws97{word-spacing:4.592640pt;}
.ws8c{word-spacing:4.828160pt;}
.ws8b{word-spacing:4.945920pt;}
.ws25{word-spacing:4.993280pt;}
.ws5b{word-spacing:5.240320pt;}
.ws27{word-spacing:5.258880pt;}
.ws7b{word-spacing:5.475840pt;}
.ws93{word-spacing:5.593600pt;}
.ws28{word-spacing:5.896320pt;}
.ws79{word-spacing:6.064640pt;}
.ws87{word-spacing:6.476800pt;}
.ws4a{word-spacing:6.830080pt;}
.ws75{word-spacing:6.947840pt;}
.ws74{word-spacing:7.124480pt;}
.ws63{word-spacing:7.360000pt;}
.ws88{word-spacing:7.477760pt;}
.ws73{word-spacing:8.125440pt;}
.ws70{word-spacing:8.655360pt;}
.ws55{word-spacing:8.773120pt;}
.ws19{word-spacing:8.832000pt;}
.ws82{word-spacing:9.303040pt;}
.ws61{word-spacing:9.420800pt;}
.ws24{word-spacing:9.508480pt;}
.ws8e{word-spacing:10.068480pt;}
.ws8d{word-spacing:10.127360pt;}
.ws92{word-spacing:10.657280pt;}
.ws71{word-spacing:10.716160pt;}
.ws83{word-spacing:10.951680pt;}
.ws4b{word-spacing:11.834880pt;}
.ws6c{word-spacing:11.952640pt;}
.ws58{word-spacing:12.600320pt;}
.ws96{word-spacing:13.895680pt;}
.ws46{word-spacing:14.837760pt;}
.ws7f{word-spacing:15.191040pt;}
.ws47{word-spacing:15.662080pt;}
.ws49{word-spacing:16.074240pt;}
.ws81{word-spacing:16.309760pt;}
.ws48{word-spacing:16.721920pt;}
.ws34{word-spacing:17.423360pt;}
.ws32{word-spacing:17.582720pt;}
.ws35{word-spacing:18.167040pt;}
.ws6f{word-spacing:19.312640pt;}
.ws98{word-spacing:31.441920pt;}
.wsa3{word-spacing:96.739840pt;}
.wsa4{word-spacing:97.505280pt;}
.ws99{word-spacing:256.422400pt;}
.ws9a{word-spacing:256.716800pt;}
.wsa2{word-spacing:362.700800pt;}
._0{margin-left:-1.089536pt;}
._1{width:1.602816pt;}
._4{width:4.544000pt;}
._8{width:7.649280pt;}
._3{width:10.941184pt;}
._6{width:16.525696pt;}
._5{width:18.247296pt;}
._7{width:1122.135040pt;}
._2{width:1416.730368pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs0{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:0.800000pt;}
.y7{bottom:4.160000pt;}
.y9{bottom:9.440000pt;}
.y38{bottom:51.520000pt;}
.y5{bottom:53.924000pt;}
.y8{bottom:56.640000pt;}
.ya{bottom:66.080000pt;}
.y4{bottom:68.000000pt;}
.y39{bottom:68.480000pt;}
.y37{bottom:69.280000pt;}
.y3a{bottom:77.920000pt;}
.y36{bottom:83.840000pt;}
.y3{bottom:84.640000pt;}
.y35{bottom:105.120000pt;}
.y95{bottom:124.152320pt;}
.y67{bottom:139.020160pt;}
.y94{bottom:144.318720pt;}
.ybf{bottom:145.419520pt;}
.y66{bottom:159.186560pt;}
.ye1{bottom:159.526400pt;}
.y93{bottom:164.485120pt;}
.ybe{bottom:165.585920pt;}
.ye0{bottom:179.840000pt;}
.y92{bottom:184.798720pt;}
.ybd{bottom:185.899520pt;}
.y65{bottom:187.507840pt;}
.ybc{bottom:206.065920pt;}
.y64{bottom:207.674240pt;}
.ydf{bottom:208.000000pt;}
.y91{bottom:212.958080pt;}
.ybb{bottom:226.232320pt;}
.y63{bottom:227.840640pt;}
.yde{bottom:228.166400pt;}
.y90{bottom:233.124480pt;}
.y62{bottom:248.154240pt;}
.ydd{bottom:248.480000pt;}
.y8f{bottom:253.438080pt;}
.yba{bottom:254.553600pt;}
.yb9{bottom:274.720000pt;}
.y61{bottom:276.313600pt;}
.ydc{bottom:276.633600pt;}
.y8e{bottom:281.597440pt;}
.y60{bottom:296.480000pt;}
.ydb{bottom:296.800000pt;}
.y8d{bottom:301.763840pt;}
.yb8{bottom:302.846720pt;}
.y8c{bottom:322.077440pt;}
.yb7{bottom:323.013120pt;}
.y5f{bottom:324.800000pt;}
.yda{bottom:327.360000pt;}
.y8b{bottom:342.243840pt;}
.yb6{bottom:343.326720pt;}
.y5e{bottom:344.960000pt;}
.y5d{bottom:365.126400pt;}
.yd9{bottom:366.531840pt;}
.y8a{bottom:370.403200pt;}
.yb5{bottom:371.486080pt;}
.y5c{bottom:385.440000pt;}
.yd8{bottom:386.698240pt;}
.y89{bottom:390.716800pt;}
.yb4{bottom:391.652480pt;}
.y88{bottom:410.883200pt;}
.y5b{bottom:413.593600pt;}
.yd7{bottom:415.019520pt;}
.yb3{bottom:419.973760pt;}
.y5a{bottom:433.760000pt;}
.yd6{bottom:435.185920pt;}
.y87{bottom:439.042560pt;}
.yb2{bottom:440.140160pt;}
.y31{bottom:443.996640pt;}
.y59{bottom:454.074240pt;}
.yd5{bottom:455.352320pt;}
.y86{bottom:459.356160pt;}
.yb1{bottom:460.306560pt;}
.y30{bottom:466.394240pt;}
.y85{bottom:479.522560pt;}
.yb0{bottom:480.620160pt;}
.y58{bottom:482.233600pt;}
.yd4{bottom:483.673600pt;}
.y2f{bottom:486.393920pt;}
.y57{bottom:502.400000pt;}
.yd3{bottom:503.840000pt;}
.y2e{bottom:504.800000pt;}
.y84{bottom:507.681920pt;}
.yaf{bottom:508.779520pt;}
.y56{bottom:522.713600pt;}
.y2d{bottom:524.960000pt;}
.y83{bottom:527.995520pt;}
.yae{bottom:528.945920pt;}
.yd2{bottom:534.240000pt;}
.y55{bottom:542.880000pt;}
.y2c{bottom:543.193920pt;}
.y82{bottom:548.161920pt;}
.yad{bottom:557.267200pt;}
.y2b{bottom:561.600000pt;}
.y54{bottom:571.046400pt;}
.yd1{bottom:573.596160pt;}
.y81{bottom:576.321280pt;}
.yac{bottom:577.433600pt;}
.y2a{bottom:590.080000pt;}
.y53{bottom:591.360000pt;}
.yd0{bottom:593.762560pt;}
.y80{bottom:596.634880pt;}
.yab{bottom:597.600000pt;}
.ycf{bottom:613.928960pt;}
.y7f{bottom:616.801280pt;}
.y29{bottom:618.877440pt;}
.y52{bottom:621.760000pt;}
.y23{bottom:625.428613pt;}
.yaa{bottom:625.913600pt;}
.yce{bottom:634.242560pt;}
.y28{bottom:638.558400pt;}
.y7e{bottom:644.960640pt;}
.ya9{bottom:646.080000pt;}
.y22{bottom:651.032453pt;}
.ycd{bottom:654.408960pt;}
.y27{bottom:658.080000pt;}
.y51{bottom:660.933760pt;}
.y7d{bottom:665.274240pt;}
.ya8{bottom:666.240000pt;}
.y21{bottom:676.636293pt;}
.y26{bottom:677.760960pt;}
.y50{bottom:681.247360pt;}
.ycc{bottom:682.568320pt;}
.y7c{bottom:685.440640pt;}
.ya7{bottom:686.528000pt;}
.y25{bottom:697.282560pt;}
.y4f{bottom:701.413760pt;}
.y20{bottom:702.240133pt;}
.ycb{bottom:702.881920pt;}
.y7b{bottom:713.600000pt;}
.ya6{bottom:714.687360pt;}
.y24{bottom:716.804160pt;}
.y4e{bottom:721.580160pt;}
.yca{bottom:724.328960pt;}
.y7a{bottom:733.913600pt;}
.ya5{bottom:734.853760pt;}
.y1f{bottom:737.760000pt;}
.yc9{bottom:745.923200pt;}
.y4d{bottom:749.901440pt;}
.y79{bottom:754.080000pt;}
.ya4{bottom:755.167360pt;}
.y1e{bottom:767.999680pt;}
.y4c{bottom:770.067840pt;}
.yc8{bottom:775.363200pt;}
.ya3{bottom:783.326720pt;}
.y78{bottom:784.480000pt;}
.y4b{bottom:790.234240pt;}
.y1d{bottom:795.515840pt;}
.yc7{bottom:795.529600pt;}
.ya2{bottom:803.493120pt;}
.y4a{bottom:810.547840pt;}
.y1c{bottom:815.196800pt;}
.yc6{bottom:815.843200pt;}
.y16{bottom:821.747840pt;}
.y77{bottom:823.806720pt;}
.y49{bottom:830.714240pt;}
.y1b{bottom:834.718400pt;}
.y76{bottom:843.973120pt;}
.yc5{bottom:844.002560pt;}
.y15{bottom:847.192320pt;}
.yec{bottom:848.160000pt;}
.y1a{bottom:854.240000pt;}
.y48{bottom:858.873600pt;}
.y75{bottom:864.139520pt;}
.yc4{bottom:864.168960pt;}
.ya1{bottom:872.132480pt;}
.y14{bottom:872.796160pt;}
.y19{bottom:873.920960pt;}
.yeb{bottom:876.313600pt;}
.y47{bottom:879.187200pt;}
.yc3{bottom:884.482560pt;}
.ya0{bottom:892.446080pt;}
.y74{bottom:892.460800pt;}
.y18{bottom:893.442560pt;}
.yea{bottom:896.480000pt;}
.y13{bottom:898.400000pt;}
.y46{bottom:899.353600pt;}
.y73{bottom:912.627200pt;}
.yc2{bottom:912.641920pt;}
.y17{bottom:912.964160pt;}
.y45{bottom:919.520000pt;}
.y9f{bottom:920.605440pt;}
.ye9{bottom:924.793600pt;}
.y72{bottom:932.793600pt;}
.yc1{bottom:932.808320pt;}
.y12{bottom:933.920000pt;}
.y9e{bottom:940.771840pt;}
.ye8{bottom:944.960000pt;}
.y44{bottom:947.840000pt;}
.yc0{bottom:953.121920pt;}
.y9d{bottom:961.085440pt;}
.y71{bottom:961.114880pt;}
.y11{bottom:963.520000pt;}
.y43{bottom:968.000000pt;}
.ye7{bottom:973.112960pt;}
.y9c{bottom:981.251840pt;}
.y70{bottom:981.281280pt;}
.y42{bottom:988.160000pt;}
.y10{bottom:989.602080pt;}
.ye6{bottom:993.426560pt;}
.y9b{bottom:1001.418240pt;}
.y6f{bottom:1001.447680pt;}
.yf{bottom:1006.720000pt;}
.ye5{bottom:1013.592960pt;}
.y41{bottom:1016.313600pt;}
.y6e{bottom:1021.761280pt;}
.ye{bottom:1023.040000pt;}
.y9a{bottom:1029.739520pt;}
.y40{bottom:1036.627200pt;}
.ye4{bottom:1041.914240pt;}
.y99{bottom:1049.905920pt;}
.y6d{bottom:1049.920640pt;}
.y3f{bottom:1056.793600pt;}
.yd{bottom:1062.720000pt;}
.y98{bottom:1070.072320pt;}
.ye3{bottom:1070.073600pt;}
.y6c{bottom:1070.087040pt;}
.y3e{bottom:1076.960000pt;}
.ye2{bottom:1090.240000pt;}
.y6b{bottom:1090.400640pt;}
.y3d{bottom:1097.273600pt;}
.y97{bottom:1098.393600pt;}
.yc{bottom:1101.280000pt;}
.y6a{bottom:1110.567040pt;}
.y3c{bottom:1117.440000pt;}
.y96{bottom:1118.560000pt;}
.y32{bottom:1121.280000pt;}
.yb{bottom:1134.400000pt;}
.y69{bottom:1138.726400pt;}
.y3b{bottom:1148.000000pt;}
.y68{bottom:1159.040000pt;}
.y6{bottom:1159.200000pt;}
.y2{bottom:1161.760000pt;}
.y1{bottom:1180.480000pt;}
.y34{bottom:1187.360000pt;}
.h6{height:17.600000pt;}
.h13{height:31.038667pt;}
.h7{height:31.040000pt;}
.h5{height:33.960938pt;}
.h12{height:34.880000pt;}
.h4{height:36.000000pt;}
.he{height:37.715200pt;}
.h9{height:39.840000pt;}
.h2{height:41.457500pt;}
.h11{height:41.480540pt;}
.hd{height:43.326250pt;}
.h3{height:44.160000pt;}
.h16{height:44.183040pt;}
.h15{height:44.185600pt;}
.h19{height:44.188160pt;}
.h17{height:44.288000pt;}
.h18{height:44.293120pt;}
.h10{height:45.440000pt;}
.hf{height:48.000000pt;}
.h8{height:59.584000pt;}
.h1{height:59.933125pt;}
.hc{height:60.435200pt;}
.h14{height:60.750000pt;}
.ha{height:68.160000pt;}
.hb{height:72.000000pt;}
.h0{height:1248.000000pt;}
.w2{width:43.038667pt;}
.w3{width:116.160000pt;}
.w1{width:127.038667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:9.600000pt;}
.x2{left:75.520000pt;}
.x1{left:91.520000pt;}
.xf{left:94.240000pt;}
.x12{left:99.528320pt;}
.xd{left:105.600000pt;}
.x9{left:113.280000pt;}
.xa{left:123.213440pt;}
.xb{left:234.240000pt;}
.x11{left:304.640000pt;}
.x3{left:466.880000pt;}
.xc{left:635.840000pt;}
.x5{left:639.200000pt;}
.x10{left:658.880000pt;}
.x4{left:736.640000pt;}
.xe{left:740.320000pt;}
.x7{left:749.120000pt;}
.x8{left:759.040000pt;}
}




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