
    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_43e0d1d0070d5389171fc509.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105469;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_fe05aba5049d5f4d7bc98707.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_9a6782fa3638a24032ce4280.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_02b97fce232712791c2bce7a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.046000;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_0ed7114f9241a5e3980af35b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.183105;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_7fb09f31d9baab50be13dbbf.woff')format("woff");}.ff6{font-family:ff6;line-height:1.045000;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_a502428d2592a83ffeeab886.woff')format("woff");}.ff7{font-family:ff7;line-height:1.074707;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_f0b84aa54e4bb3971bc1cb3e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.074707;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_1850b2954e05217507d32b57.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ea170000dbf55b51cf707920.woff')format("woff");}.ffa{font-family:ffa;line-height:0.900000;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;}
.ls3f{letter-spacing:-5.832000px;}
.ls15{letter-spacing:-5.760000px;}
.ls32{letter-spacing:-4.200000px;}
.ls42{letter-spacing:-3.744000px;}
.ls4e{letter-spacing:-3.456000px;}
.ls21{letter-spacing:-3.312000px;}
.ls2b{letter-spacing:-2.736000px;}
.ls40{letter-spacing:-2.664000px;}
.ls36{letter-spacing:-2.520000px;}
.ls5f{letter-spacing:-2.496000px;}
.ls41{letter-spacing:-2.376000px;}
.ls18{letter-spacing:-2.340000px;}
.ls2a{letter-spacing:-2.232000px;}
.ls4b{letter-spacing:-2.220000px;}
.ls5c{letter-spacing:-2.208000px;}
.ls52{letter-spacing:-2.016000px;}
.ls29{letter-spacing:-1.944000px;}
.ls1c{letter-spacing:-1.872000px;}
.ls27{letter-spacing:-1.800000px;}
.ls3b{letter-spacing:-1.656000px;}
.ls34{letter-spacing:-1.620000px;}
.ls3e{letter-spacing:-1.584000px;}
.ls35{letter-spacing:-1.380000px;}
.ls3{letter-spacing:-1.296000px;}
.ls11{letter-spacing:-1.224000px;}
.ls2d{letter-spacing:-1.200000px;}
.ls20{letter-spacing:-1.152000px;}
.lsc{letter-spacing:-1.020000px;}
.ls13{letter-spacing:-1.008000px;}
.ls1e{letter-spacing:-0.936000px;}
.ls28{letter-spacing:-0.924000px;}
.ls3a{letter-spacing:-0.864000px;}
.ls14{letter-spacing:-0.792000px;}
.ls1f{letter-spacing:-0.780000px;}
.ls30{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.648000px;}
.ls61{letter-spacing:-0.624000px;}
.ls37{letter-spacing:-0.540000px;}
.ls47{letter-spacing:-0.504000px;}
.ls39{letter-spacing:-0.420000px;}
.lsf{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.300000px;}
.ls3d{letter-spacing:-0.288000px;}
.ls5b{letter-spacing:-0.240000px;}
.lsa{letter-spacing:-0.180000px;}
.ls38{letter-spacing:-0.120000px;}
.ls50{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls4d{letter-spacing:0.004800px;}
.ls22{letter-spacing:0.015000px;}
.ls5e{letter-spacing:0.048000px;}
.ls1{letter-spacing:0.054000px;}
.ls55{letter-spacing:0.096000px;}
.ls3c{letter-spacing:0.144000px;}
.ls54{letter-spacing:0.192000px;}
.ls19{letter-spacing:0.285000px;}
.ls56{letter-spacing:0.288000px;}
.ls4a{letter-spacing:0.360000px;}
.ls59{letter-spacing:0.480000px;}
.ls51{letter-spacing:0.504000px;}
.ls31{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.576000px;}
.ls33{letter-spacing:0.600000px;}
.ls10{letter-spacing:0.648000px;}
.ls60{letter-spacing:0.768000px;}
.lsd{letter-spacing:0.864000px;}
.ls1d{letter-spacing:1.008000px;}
.ls4c{letter-spacing:1.080000px;}
.ls23{letter-spacing:1.124400px;}
.ls2f{letter-spacing:1.260000px;}
.ls5d{letter-spacing:1.392000px;}
.ls1a{letter-spacing:1.440000px;}
.lse{letter-spacing:1.584000px;}
.ls58{letter-spacing:1.776000px;}
.ls4{letter-spacing:2.376000px;}
.ls2e{letter-spacing:2.377800px;}
.ls44{letter-spacing:2.616000px;}
.ls63{letter-spacing:3.780000px;}
.ls57{letter-spacing:4.080000px;}
.ls5a{letter-spacing:4.752000px;}
.ls53{letter-spacing:4.800000px;}
.ls62{letter-spacing:4.848000px;}
.ls49{letter-spacing:4.906200px;}
.ls16{letter-spacing:5.400000px;}
.ls45{letter-spacing:5.557800px;}
.ls9{letter-spacing:5.568000px;}
.ls6{letter-spacing:5.664000px;}
.lsb{letter-spacing:5.700000px;}
.ls17{letter-spacing:6.000000px;}
.ls48{letter-spacing:6.610800px;}
.ls46{letter-spacing:7.037400px;}
.ls25{letter-spacing:7.105800px;}
.ls2c{letter-spacing:7.326000px;}
.ls24{letter-spacing:7.345200px;}
.ls43{letter-spacing:8.019600px;}
.ls26{letter-spacing:8.555400px;}
.ls2{letter-spacing:10.560000px;}
.ls5{letter-spacing:10.962000px;}
.ls8{letter-spacing:12.474000px;}
.ls4f{letter-spacing:49.248000px;}
.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;}
}
.ws9{word-spacing:-27.648000px;}
.ws3{word-spacing:-26.136000px;}
.ws57{word-spacing:-21.240000px;}
.ws76{word-spacing:-20.640000px;}
.ws4a{word-spacing:-19.872000px;}
.ws5c{word-spacing:-19.728000px;}
.ws4c{word-spacing:-19.440000px;}
.ws4b{word-spacing:-19.368000px;}
.ws55{word-spacing:-19.296000px;}
.ws54{word-spacing:-19.224000px;}
.ws43{word-spacing:-18.576000px;}
.ws0{word-spacing:-18.546000px;}
.ws1a{word-spacing:-18.300000px;}
.ws36{word-spacing:-18.120000px;}
.ws21{word-spacing:-17.784000px;}
.ws14{word-spacing:-16.992000px;}
.ws28{word-spacing:-16.776000px;}
.ws4{word-spacing:-16.560000px;}
.ws34{word-spacing:-16.500000px;}
.ws41{word-spacing:-16.440000px;}
.ws26{word-spacing:-15.984000px;}
.wsa{word-spacing:-15.840000px;}
.ws25{word-spacing:-15.552000px;}
.ws67{word-spacing:-15.264000px;}
.ws1{word-spacing:-15.228000px;}
.ws27{word-spacing:-15.048000px;}
.ws6a{word-spacing:-14.880000px;}
.ws15{word-spacing:-14.472000px;}
.ws24{word-spacing:-14.400000px;}
.ws73{word-spacing:-14.352000px;}
.ws74{word-spacing:-14.256000px;}
.ws63{word-spacing:-14.064000px;}
.ws2{word-spacing:-13.878000px;}
.ws62{word-spacing:-13.776000px;}
.ws64{word-spacing:-13.680000px;}
.ws61{word-spacing:-13.584000px;}
.ws71{word-spacing:-13.536000px;}
.ws66{word-spacing:-13.488000px;}
.ws60{word-spacing:-12.384000px;}
.ws65{word-spacing:-12.336000px;}
.ws6e{word-spacing:-12.048000px;}
.ws70{word-spacing:-12.000000px;}
.ws6f{word-spacing:-11.904000px;}
.ws69{word-spacing:-11.568000px;}
.ws68{word-spacing:-11.280000px;}
.ws72{word-spacing:-10.992000px;}
.ws18{word-spacing:-6.000000px;}
.wsd{word-spacing:-5.700000px;}
.ws7{word-spacing:-5.664000px;}
.ws17{word-spacing:-5.400000px;}
.ws2f{word-spacing:-2.664000px;}
.ws6{word-spacing:-2.376000px;}
.ws6c{word-spacing:-1.776000px;}
.wsf{word-spacing:-1.584000px;}
.ws44{word-spacing:-1.260000px;}
.ws5a{word-spacing:-1.080000px;}
.ws1d{word-spacing:-1.008000px;}
.wse{word-spacing:-0.864000px;}
.wsb{word-spacing:-0.768000px;}
.ws11{word-spacing:-0.648000px;}
.ws1b{word-spacing:-0.576000px;}
.ws5e{word-spacing:-0.504000px;}
.ws58{word-spacing:-0.360000px;}
.ws6b{word-spacing:-0.192000px;}
.ws49{word-spacing:-0.144000px;}
.ws5{word-spacing:0.000000px;}
.ws5d{word-spacing:0.072000px;}
.wsc{word-spacing:0.180000px;}
.ws6d{word-spacing:0.240000px;}
.ws4d{word-spacing:0.288000px;}
.ws31{word-spacing:0.300000px;}
.ws10{word-spacing:0.360000px;}
.ws56{word-spacing:0.504000px;}
.ws75{word-spacing:0.624000px;}
.ws13{word-spacing:0.648000px;}
.ws47{word-spacing:0.720000px;}
.ws20{word-spacing:0.780000px;}
.ws46{word-spacing:0.792000px;}
.ws45{word-spacing:0.864000px;}
.ws29{word-spacing:0.924000px;}
.ws1e{word-spacing:0.936000px;}
.ws16{word-spacing:1.008000px;}
.ws22{word-spacing:1.152000px;}
.ws30{word-spacing:1.200000px;}
.ws12{word-spacing:1.224000px;}
.ws4e{word-spacing:1.584000px;}
.ws48{word-spacing:1.656000px;}
.ws53{word-spacing:1.800000px;}
.ws1c{word-spacing:1.872000px;}
.ws2a{word-spacing:1.944000px;}
.ws5f{word-spacing:2.016000px;}
.ws59{word-spacing:2.220000px;}
.ws19{word-spacing:2.340000px;}
.ws51{word-spacing:2.376000px;}
.ws50{word-spacing:2.664000px;}
.ws23{word-spacing:3.312000px;}
.ws52{word-spacing:3.744000px;}
.ws4f{word-spacing:5.832000px;}
.ws2c{word-spacing:28.246200px;}
.ws39{word-spacing:29.944200px;}
.ws35{word-spacing:30.022200px;}
.ws40{word-spacing:31.366200px;}
.ws32{word-spacing:31.708200px;}
.ws33{word-spacing:32.536200px;}
.ws2d{word-spacing:32.680200px;}
.ws2b{word-spacing:33.136200px;}
.ws3c{word-spacing:33.892200px;}
.ws42{word-spacing:33.898200px;}
.ws3b{word-spacing:34.342200px;}
.ws3e{word-spacing:36.184200px;}
.ws37{word-spacing:39.544200px;}
.ws38{word-spacing:413.634000px;}
.ws3d{word-spacing:454.608000px;}
.ws2e{word-spacing:458.076000px;}
.ws3a{word-spacing:480.420000px;}
.ws3f{word-spacing:535.152000px;}
.ws5b{word-spacing:697.386000px;}
.ws1f{word-spacing:699.504000px;}
.ws8{word-spacing:700.920000px;}
._19{margin-left:-867.331800px;}
._10{margin-left:-865.107600px;}
._0{margin-left:-862.784400px;}
._1c{margin-left:-861.583200px;}
._14{margin-left:-860.401800px;}
._9{margin-left:-706.954800px;}
._17{margin-left:-705.538800px;}
._28{margin-left:-703.420800px;}
._29{margin-left:-61.373400px;}
._5{margin-left:-10.836000px;}
._6{margin-left:-8.482800px;}
._7{margin-left:-6.890400px;}
._1{margin-left:-5.367600px;}
._13{margin-left:-4.344600px;}
._8{margin-left:-3.330600px;}
._3{margin-left:-1.857600px;}
._2{width:1.188000px;}
._a{width:2.188200px;}
._4{width:3.191400px;}
._e{width:4.263600px;}
._b{width:5.550000px;}
._c{width:7.538400px;}
._d{width:8.566800px;}
._11{width:9.619800px;}
._f{width:11.013000px;}
._12{width:12.163800px;}
._18{width:13.715400px;}
._27{width:14.830200px;}
._15{width:16.243200px;}
._16{width:17.604600px;}
._1b{width:22.035000px;}
._1a{width:23.421600px;}
._25{width:31.572000px;}
._23{width:32.760000px;}
._24{width:35.460000px;}
._26{width:38.874000px;}
._1d{width:48.585600px;}
._2a{width:49.608000px;}
._1e{width:265.327800px;}
._22{width:325.440000px;}
._20{width:337.128000px;}
._21{width:362.992800px;}
._1f{width:374.811600px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:33.000000px;}
.fs5{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:55.521900px;}
.y1{bottom:72.000000px;}
.y48{bottom:117.000000px;}
.ya9{bottom:136.500000px;}
.y47{bottom:139.500000px;}
.y66{bottom:150.297600px;}
.ya8{bottom:151.500000px;}
.y46{bottom:162.000000px;}
.ya7{bottom:166.500000px;}
.y65{bottom:172.273200px;}
.ya6{bottom:181.500000px;}
.y45{bottom:184.500000px;}
.y64{bottom:190.273200px;}
.y21{bottom:193.500000px;}
.ya5{bottom:196.500000px;}
.y44{bottom:207.000000px;}
.ya4{bottom:211.500000px;}
.y63{bottom:212.248800px;}
.y20{bottom:212.250000px;}
.ya3{bottom:226.500000px;}
.y43{bottom:229.500000px;}
.y62{bottom:230.248800px;}
.y1f{bottom:240.000000px;}
.ya2{bottom:241.500000px;}
.y61{bottom:248.248800px;}
.y42{bottom:252.000000px;}
.ya1{bottom:256.500000px;}
.y1e{bottom:258.750000px;}
.y60{bottom:266.248800px;}
.ya0{bottom:271.500000px;}
.y41{bottom:274.500000px;}
.y1d{bottom:277.500000px;}
.y5f{bottom:284.248800px;}
.y9f{bottom:286.500000px;}
.yc5{bottom:289.500000px;}
.y1c{bottom:296.250000px;}
.y40{bottom:297.000000px;}
.y9e{bottom:301.500000px;}
.y5e{bottom:302.248800px;}
.yc4{bottom:304.500000px;}
.y1b{bottom:315.000000px;}
.y9d{bottom:316.500000px;}
.y3f{bottom:319.500000px;}
.y5d{bottom:320.248800px;}
.y9c{bottom:331.500000px;}
.y1a{bottom:333.750000px;}
.yc3{bottom:334.500000px;}
.y3e{bottom:342.000000px;}
.y5c{bottom:342.224400px;}
.y9b{bottom:346.500000px;}
.y5b{bottom:348.000000px;}
.yc2{bottom:349.500000px;}
.y19{bottom:352.500000px;}
.y9a{bottom:361.500000px;}
.y3d{bottom:364.500000px;}
.y18{bottom:371.250000px;}
.y99{bottom:376.500000px;}
.yc1{bottom:379.500000px;}
.y3c{bottom:387.000000px;}
.y17{bottom:390.000000px;}
.y98{bottom:391.500000px;}
.yc0{bottom:394.500000px;}
.ydc{bottom:405.750000px;}
.y97{bottom:406.500000px;}
.y16{bottom:408.750000px;}
.y3b{bottom:409.500000px;}
.y96{bottom:421.500000px;}
.ybf{bottom:424.500000px;}
.y15{bottom:427.500000px;}
.y3a{bottom:432.000000px;}
.y95{bottom:436.500000px;}
.ybe{bottom:439.500000px;}
.ydb{bottom:443.250000px;}
.y14{bottom:446.250000px;}
.y94{bottom:451.500000px;}
.y5a{bottom:454.500000px;}
.y39{bottom:461.250000px;}
.yda{bottom:462.000000px;}
.y13{bottom:465.000000px;}
.y93{bottom:466.500000px;}
.ybd{bottom:469.500000px;}
.y59{bottom:477.000000px;}
.y92{bottom:481.500000px;}
.y12{bottom:483.750000px;}
.ybc{bottom:484.500000px;}
.yd9{bottom:491.250000px;}
.y58{bottom:499.500000px;}
.y11{bottom:502.500000px;}
.y91{bottom:504.000000px;}
.ybb{bottom:514.500000px;}
.y38{bottom:518.250000px;}
.y10{bottom:521.250000px;}
.y57{bottom:522.000000px;}
.yba{bottom:529.500000px;}
.yd8{bottom:532.500000px;}
.y37{bottom:537.000000px;}
.yf{bottom:540.000000px;}
.y56{bottom:544.500000px;}
.y90{bottom:546.000000px;}
.yd7{bottom:551.250000px;}
.ye{bottom:558.750000px;}
.yb9{bottom:559.500000px;}
.y8f{bottom:561.000000px;}
.y36{bottom:564.750000px;}
.y55{bottom:567.000000px;}
.yd6{bottom:570.000000px;}
.y79{bottom:573.444150px;}
.yb8{bottom:574.500000px;}
.y8e{bottom:576.000000px;}
.yd{bottom:577.500000px;}
.y35{bottom:583.500000px;}
.yd5{bottom:588.750000px;}
.y54{bottom:589.500000px;}
.y8d{bottom:591.000000px;}
.y78{bottom:591.444150px;}
.yc{bottom:596.250000px;}
.y34{bottom:602.250000px;}
.yb7{bottom:604.500000px;}
.y8c{bottom:606.000000px;}
.yd4{bottom:607.500000px;}
.y53{bottom:612.000000px;}
.y77{bottom:613.419750px;}
.yb{bottom:615.000000px;}
.yb6{bottom:619.500000px;}
.y33{bottom:621.000000px;}
.yd3{bottom:626.250000px;}
.y76{bottom:631.419750px;}
.ya{bottom:633.750000px;}
.y52{bottom:634.500000px;}
.y8b{bottom:636.000000px;}
.y32{bottom:639.750000px;}
.yd2{bottom:645.000000px;}
.yb5{bottom:649.500000px;}
.y8a{bottom:651.000000px;}
.y75{bottom:653.395350px;}
.y51{bottom:657.000000px;}
.y31{bottom:658.500000px;}
.y9{bottom:661.500000px;}
.yd1{bottom:663.750000px;}
.yb4{bottom:664.500000px;}
.y89{bottom:666.000000px;}
.y74{bottom:671.395350px;}
.y30{bottom:677.250000px;}
.y50{bottom:679.500000px;}
.yd0{bottom:682.500000px;}
.y88{bottom:688.500000px;}
.y73{bottom:693.370950px;}
.yb3{bottom:694.500000px;}
.y2f{bottom:696.000000px;}
.ycf{bottom:701.250000px;}
.y4f{bottom:702.000000px;}
.y8{bottom:705.000000px;}
.yb2{bottom:709.500000px;}
.y72{bottom:711.370950px;}
.y2e{bottom:714.750000px;}
.yce{bottom:720.000000px;}
.y7{bottom:724.500000px;}
.y87{bottom:729.000000px;}
.y71{bottom:733.346400px;}
.y2d{bottom:733.500000px;}
.ycd{bottom:738.750000px;}
.yb1{bottom:739.500000px;}
.y86{bottom:744.000000px;}
.y6{bottom:747.000000px;}
.y70{bottom:751.346400px;}
.y2c{bottom:752.250000px;}
.yb0{bottom:754.500000px;}
.ycc{bottom:757.500000px;}
.y85{bottom:759.000000px;}
.y4e{bottom:769.500000px;}
.y2b{bottom:771.000000px;}
.y6f{bottom:773.322000px;}
.y84{bottom:774.000000px;}
.ycb{bottom:776.250000px;}
.yaf{bottom:784.500000px;}
.y83{bottom:789.000000px;}
.y2a{bottom:789.750000px;}
.y6e{bottom:791.322000px;}
.y4d{bottom:792.000000px;}
.yca{bottom:795.000000px;}
.yae{bottom:799.500000px;}
.y82{bottom:804.000000px;}
.y29{bottom:808.500000px;}
.y6d{bottom:813.297600px;}
.yc9{bottom:813.750000px;}
.y5{bottom:814.500000px;}
.y81{bottom:819.000000px;}
.y28{bottom:827.250000px;}
.yad{bottom:829.500000px;}
.yc8{bottom:832.500000px;}
.y80{bottom:834.000000px;}
.y6c{bottom:835.273200px;}
.y4c{bottom:837.000000px;}
.y4{bottom:844.500000px;}
.y27{bottom:846.000000px;}
.y7f{bottom:849.000000px;}
.yc7{bottom:851.250000px;}
.y6b{bottom:853.273200px;}
.y4b{bottom:859.500000px;}
.y7e{bottom:864.000000px;}
.y26{bottom:864.750000px;}
.y3{bottom:874.500000px;}
.y6a{bottom:875.248800px;}
.y7d{bottom:879.000000px;}
.y4a{bottom:882.000000px;}
.y25{bottom:883.500000px;}
.yac{bottom:889.500000px;}
.y69{bottom:893.248800px;}
.y7c{bottom:894.000000px;}
.y24{bottom:902.250000px;}
.y49{bottom:904.500000px;}
.y7b{bottom:909.000000px;}
.yc6{bottom:913.500000px;}
.y68{bottom:915.224400px;}
.yab{bottom:919.500000px;}
.y2{bottom:927.000000px;}
.y23{bottom:930.000000px;}
.y7a{bottom:931.500000px;}
.y67{bottom:933.224400px;}
.yaa{bottom:934.500000px;}
.h6{height:37.256836px;}
.he{height:39.888000px;}
.h11{height:40.464000px;}
.hf{height:40.757812px;}
.hc{height:42.000000px;}
.h10{height:44.460938px;}
.ha{height:44.762695px;}
.h8{height:45.008789px;}
.hd{height:45.536133px;}
.h2{height:45.852539px;}
.hb{height:49.860000px;}
.h7{height:50.947266px;}
.h4{height:55.638000px;}
.h1{height:56.041992px;}
.h9{height:61.136719px;}
.h5{height:66.691406px;}
.h3{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x7{left:67.500000px;}
.x14{left:74.580450px;}
.x10{left:81.922950px;}
.xa{left:90.000000px;}
.x8{left:99.000000px;}
.x16{left:100.285350px;}
.x12{left:105.300000px;}
.x2{left:112.500000px;}
.x3{left:114.164850px;}
.xd{left:127.105950px;}
.x9{left:135.000000px;}
.x4{left:144.000000px;}
.x18{left:145.195350px;}
.xc{left:150.300000px;}
.x17{left:157.500000px;}
.x5{left:179.745600px;}
.x19{left:181.500000px;}
.x6{left:263.250000px;}
.x11{left:289.800000px;}
.x13{left:292.800000px;}
.x15{left:304.800000px;}
.xe{left:337.800000px;}
.xf{left:349.800000px;}
.x1{left:636.503250px;}
.xb{left:637.640100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3f{letter-spacing:-5.184000pt;}
.ls15{letter-spacing:-5.120000pt;}
.ls32{letter-spacing:-3.733333pt;}
.ls42{letter-spacing:-3.328000pt;}
.ls4e{letter-spacing:-3.072000pt;}
.ls21{letter-spacing:-2.944000pt;}
.ls2b{letter-spacing:-2.432000pt;}
.ls40{letter-spacing:-2.368000pt;}
.ls36{letter-spacing:-2.240000pt;}
.ls5f{letter-spacing:-2.218667pt;}
.ls41{letter-spacing:-2.112000pt;}
.ls18{letter-spacing:-2.080000pt;}
.ls2a{letter-spacing:-1.984000pt;}
.ls4b{letter-spacing:-1.973333pt;}
.ls5c{letter-spacing:-1.962667pt;}
.ls52{letter-spacing:-1.792000pt;}
.ls29{letter-spacing:-1.728000pt;}
.ls1c{letter-spacing:-1.664000pt;}
.ls27{letter-spacing:-1.600000pt;}
.ls3b{letter-spacing:-1.472000pt;}
.ls34{letter-spacing:-1.440000pt;}
.ls3e{letter-spacing:-1.408000pt;}
.ls35{letter-spacing:-1.226667pt;}
.ls3{letter-spacing:-1.152000pt;}
.ls11{letter-spacing:-1.088000pt;}
.ls2d{letter-spacing:-1.066667pt;}
.ls20{letter-spacing:-1.024000pt;}
.lsc{letter-spacing:-0.906667pt;}
.ls13{letter-spacing:-0.896000pt;}
.ls1e{letter-spacing:-0.832000pt;}
.ls28{letter-spacing:-0.821333pt;}
.ls3a{letter-spacing:-0.768000pt;}
.ls14{letter-spacing:-0.704000pt;}
.ls1f{letter-spacing:-0.693333pt;}
.ls30{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.576000pt;}
.ls61{letter-spacing:-0.554667pt;}
.ls37{letter-spacing:-0.480000pt;}
.ls47{letter-spacing:-0.448000pt;}
.ls39{letter-spacing:-0.373333pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.266667pt;}
.ls3d{letter-spacing:-0.256000pt;}
.ls5b{letter-spacing:-0.213333pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls38{letter-spacing:-0.106667pt;}
.ls50{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4d{letter-spacing:0.004267pt;}
.ls22{letter-spacing:0.013333pt;}
.ls5e{letter-spacing:0.042667pt;}
.ls1{letter-spacing:0.048000pt;}
.ls55{letter-spacing:0.085333pt;}
.ls3c{letter-spacing:0.128000pt;}
.ls54{letter-spacing:0.170667pt;}
.ls19{letter-spacing:0.253333pt;}
.ls56{letter-spacing:0.256000pt;}
.ls4a{letter-spacing:0.320000pt;}
.ls59{letter-spacing:0.426667pt;}
.ls51{letter-spacing:0.448000pt;}
.ls31{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.512000pt;}
.ls33{letter-spacing:0.533333pt;}
.ls10{letter-spacing:0.576000pt;}
.ls60{letter-spacing:0.682667pt;}
.lsd{letter-spacing:0.768000pt;}
.ls1d{letter-spacing:0.896000pt;}
.ls4c{letter-spacing:0.960000pt;}
.ls23{letter-spacing:0.999467pt;}
.ls2f{letter-spacing:1.120000pt;}
.ls5d{letter-spacing:1.237333pt;}
.ls1a{letter-spacing:1.280000pt;}
.lse{letter-spacing:1.408000pt;}
.ls58{letter-spacing:1.578667pt;}
.ls4{letter-spacing:2.112000pt;}
.ls2e{letter-spacing:2.113600pt;}
.ls44{letter-spacing:2.325333pt;}
.ls63{letter-spacing:3.360000pt;}
.ls57{letter-spacing:3.626667pt;}
.ls5a{letter-spacing:4.224000pt;}
.ls53{letter-spacing:4.266667pt;}
.ls62{letter-spacing:4.309333pt;}
.ls49{letter-spacing:4.361067pt;}
.ls16{letter-spacing:4.800000pt;}
.ls45{letter-spacing:4.940267pt;}
.ls9{letter-spacing:4.949333pt;}
.ls6{letter-spacing:5.034667pt;}
.lsb{letter-spacing:5.066667pt;}
.ls17{letter-spacing:5.333333pt;}
.ls48{letter-spacing:5.876267pt;}
.ls46{letter-spacing:6.255467pt;}
.ls25{letter-spacing:6.316267pt;}
.ls2c{letter-spacing:6.512000pt;}
.ls24{letter-spacing:6.529067pt;}
.ls43{letter-spacing:7.128533pt;}
.ls26{letter-spacing:7.604800pt;}
.ls2{letter-spacing:9.386667pt;}
.ls5{letter-spacing:9.744000pt;}
.ls8{letter-spacing:11.088000pt;}
.ls4f{letter-spacing:43.776000pt;}
.ws9{word-spacing:-24.576000pt;}
.ws3{word-spacing:-23.232000pt;}
.ws57{word-spacing:-18.880000pt;}
.ws76{word-spacing:-18.346667pt;}
.ws4a{word-spacing:-17.664000pt;}
.ws5c{word-spacing:-17.536000pt;}
.ws4c{word-spacing:-17.280000pt;}
.ws4b{word-spacing:-17.216000pt;}
.ws55{word-spacing:-17.152000pt;}
.ws54{word-spacing:-17.088000pt;}
.ws43{word-spacing:-16.512000pt;}
.ws0{word-spacing:-16.485333pt;}
.ws1a{word-spacing:-16.266667pt;}
.ws36{word-spacing:-16.106667pt;}
.ws21{word-spacing:-15.808000pt;}
.ws14{word-spacing:-15.104000pt;}
.ws28{word-spacing:-14.912000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws34{word-spacing:-14.666667pt;}
.ws41{word-spacing:-14.613333pt;}
.ws26{word-spacing:-14.208000pt;}
.wsa{word-spacing:-14.080000pt;}
.ws25{word-spacing:-13.824000pt;}
.ws67{word-spacing:-13.568000pt;}
.ws1{word-spacing:-13.536000pt;}
.ws27{word-spacing:-13.376000pt;}
.ws6a{word-spacing:-13.226667pt;}
.ws15{word-spacing:-12.864000pt;}
.ws24{word-spacing:-12.800000pt;}
.ws73{word-spacing:-12.757333pt;}
.ws74{word-spacing:-12.672000pt;}
.ws63{word-spacing:-12.501333pt;}
.ws2{word-spacing:-12.336000pt;}
.ws62{word-spacing:-12.245333pt;}
.ws64{word-spacing:-12.160000pt;}
.ws61{word-spacing:-12.074667pt;}
.ws71{word-spacing:-12.032000pt;}
.ws66{word-spacing:-11.989333pt;}
.ws60{word-spacing:-11.008000pt;}
.ws65{word-spacing:-10.965333pt;}
.ws6e{word-spacing:-10.709333pt;}
.ws70{word-spacing:-10.666667pt;}
.ws6f{word-spacing:-10.581333pt;}
.ws69{word-spacing:-10.282667pt;}
.ws68{word-spacing:-10.026667pt;}
.ws72{word-spacing:-9.770667pt;}
.ws18{word-spacing:-5.333333pt;}
.wsd{word-spacing:-5.066667pt;}
.ws7{word-spacing:-5.034667pt;}
.ws17{word-spacing:-4.800000pt;}
.ws2f{word-spacing:-2.368000pt;}
.ws6{word-spacing:-2.112000pt;}
.ws6c{word-spacing:-1.578667pt;}
.wsf{word-spacing:-1.408000pt;}
.ws44{word-spacing:-1.120000pt;}
.ws5a{word-spacing:-0.960000pt;}
.ws1d{word-spacing:-0.896000pt;}
.wse{word-spacing:-0.768000pt;}
.wsb{word-spacing:-0.682667pt;}
.ws11{word-spacing:-0.576000pt;}
.ws1b{word-spacing:-0.512000pt;}
.ws5e{word-spacing:-0.448000pt;}
.ws58{word-spacing:-0.320000pt;}
.ws6b{word-spacing:-0.170667pt;}
.ws49{word-spacing:-0.128000pt;}
.ws5{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.064000pt;}
.wsc{word-spacing:0.160000pt;}
.ws6d{word-spacing:0.213333pt;}
.ws4d{word-spacing:0.256000pt;}
.ws31{word-spacing:0.266667pt;}
.ws10{word-spacing:0.320000pt;}
.ws56{word-spacing:0.448000pt;}
.ws75{word-spacing:0.554667pt;}
.ws13{word-spacing:0.576000pt;}
.ws47{word-spacing:0.640000pt;}
.ws20{word-spacing:0.693333pt;}
.ws46{word-spacing:0.704000pt;}
.ws45{word-spacing:0.768000pt;}
.ws29{word-spacing:0.821333pt;}
.ws1e{word-spacing:0.832000pt;}
.ws16{word-spacing:0.896000pt;}
.ws22{word-spacing:1.024000pt;}
.ws30{word-spacing:1.066667pt;}
.ws12{word-spacing:1.088000pt;}
.ws4e{word-spacing:1.408000pt;}
.ws48{word-spacing:1.472000pt;}
.ws53{word-spacing:1.600000pt;}
.ws1c{word-spacing:1.664000pt;}
.ws2a{word-spacing:1.728000pt;}
.ws5f{word-spacing:1.792000pt;}
.ws59{word-spacing:1.973333pt;}
.ws19{word-spacing:2.080000pt;}
.ws51{word-spacing:2.112000pt;}
.ws50{word-spacing:2.368000pt;}
.ws23{word-spacing:2.944000pt;}
.ws52{word-spacing:3.328000pt;}
.ws4f{word-spacing:5.184000pt;}
.ws2c{word-spacing:25.107733pt;}
.ws39{word-spacing:26.617067pt;}
.ws35{word-spacing:26.686400pt;}
.ws40{word-spacing:27.881067pt;}
.ws32{word-spacing:28.185067pt;}
.ws33{word-spacing:28.921067pt;}
.ws2d{word-spacing:29.049067pt;}
.ws2b{word-spacing:29.454400pt;}
.ws3c{word-spacing:30.126400pt;}
.ws42{word-spacing:30.131733pt;}
.ws3b{word-spacing:30.526400pt;}
.ws3e{word-spacing:32.163733pt;}
.ws37{word-spacing:35.150400pt;}
.ws38{word-spacing:367.674667pt;}
.ws3d{word-spacing:404.096000pt;}
.ws2e{word-spacing:407.178667pt;}
.ws3a{word-spacing:427.040000pt;}
.ws3f{word-spacing:475.690667pt;}
.ws5b{word-spacing:619.898667pt;}
.ws1f{word-spacing:621.781333pt;}
.ws8{word-spacing:623.040000pt;}
._19{margin-left:-770.961600pt;}
._10{margin-left:-768.984533pt;}
._0{margin-left:-766.919467pt;}
._1c{margin-left:-765.851733pt;}
._14{margin-left:-764.801600pt;}
._9{margin-left:-628.404267pt;}
._17{margin-left:-627.145600pt;}
._28{margin-left:-625.262933pt;}
._29{margin-left:-54.554133pt;}
._5{margin-left:-9.632000pt;}
._6{margin-left:-7.540267pt;}
._7{margin-left:-6.124800pt;}
._1{margin-left:-4.771200pt;}
._13{margin-left:-3.861867pt;}
._8{margin-left:-2.960533pt;}
._3{margin-left:-1.651200pt;}
._2{width:1.056000pt;}
._a{width:1.945067pt;}
._4{width:2.836800pt;}
._e{width:3.789867pt;}
._b{width:4.933333pt;}
._c{width:6.700800pt;}
._d{width:7.614933pt;}
._11{width:8.550933pt;}
._f{width:9.789333pt;}
._12{width:10.812267pt;}
._18{width:12.191467pt;}
._27{width:13.182400pt;}
._15{width:14.438400pt;}
._16{width:15.648533pt;}
._1b{width:19.586667pt;}
._1a{width:20.819200pt;}
._25{width:28.064000pt;}
._23{width:29.120000pt;}
._24{width:31.520000pt;}
._26{width:34.554667pt;}
._1d{width:43.187200pt;}
._2a{width:44.096000pt;}
._1e{width:235.846933pt;}
._22{width:289.280000pt;}
._20{width:299.669333pt;}
._21{width:322.660267pt;}
._1f{width:333.165867pt;}
.fs6{font-size:29.333333pt;}
.fs5{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:49.352800pt;}
.y1{bottom:64.000000pt;}
.y48{bottom:104.000000pt;}
.ya9{bottom:121.333333pt;}
.y47{bottom:124.000000pt;}
.y66{bottom:133.597867pt;}
.ya8{bottom:134.666667pt;}
.y46{bottom:144.000000pt;}
.ya7{bottom:148.000000pt;}
.y65{bottom:153.131733pt;}
.ya6{bottom:161.333333pt;}
.y45{bottom:164.000000pt;}
.y64{bottom:169.131733pt;}
.y21{bottom:172.000000pt;}
.ya5{bottom:174.666667pt;}
.y44{bottom:184.000000pt;}
.ya4{bottom:188.000000pt;}
.y63{bottom:188.665600pt;}
.y20{bottom:188.666667pt;}
.ya3{bottom:201.333333pt;}
.y43{bottom:204.000000pt;}
.y62{bottom:204.665600pt;}
.y1f{bottom:213.333333pt;}
.ya2{bottom:214.666667pt;}
.y61{bottom:220.665600pt;}
.y42{bottom:224.000000pt;}
.ya1{bottom:228.000000pt;}
.y1e{bottom:230.000000pt;}
.y60{bottom:236.665600pt;}
.ya0{bottom:241.333333pt;}
.y41{bottom:244.000000pt;}
.y1d{bottom:246.666667pt;}
.y5f{bottom:252.665600pt;}
.y9f{bottom:254.666667pt;}
.yc5{bottom:257.333333pt;}
.y1c{bottom:263.333333pt;}
.y40{bottom:264.000000pt;}
.y9e{bottom:268.000000pt;}
.y5e{bottom:268.665600pt;}
.yc4{bottom:270.666667pt;}
.y1b{bottom:280.000000pt;}
.y9d{bottom:281.333333pt;}
.y3f{bottom:284.000000pt;}
.y5d{bottom:284.665600pt;}
.y9c{bottom:294.666667pt;}
.y1a{bottom:296.666667pt;}
.yc3{bottom:297.333333pt;}
.y3e{bottom:304.000000pt;}
.y5c{bottom:304.199467pt;}
.y9b{bottom:308.000000pt;}
.y5b{bottom:309.333333pt;}
.yc2{bottom:310.666667pt;}
.y19{bottom:313.333333pt;}
.y9a{bottom:321.333333pt;}
.y3d{bottom:324.000000pt;}
.y18{bottom:330.000000pt;}
.y99{bottom:334.666667pt;}
.yc1{bottom:337.333333pt;}
.y3c{bottom:344.000000pt;}
.y17{bottom:346.666667pt;}
.y98{bottom:348.000000pt;}
.yc0{bottom:350.666667pt;}
.ydc{bottom:360.666667pt;}
.y97{bottom:361.333333pt;}
.y16{bottom:363.333333pt;}
.y3b{bottom:364.000000pt;}
.y96{bottom:374.666667pt;}
.ybf{bottom:377.333333pt;}
.y15{bottom:380.000000pt;}
.y3a{bottom:384.000000pt;}
.y95{bottom:388.000000pt;}
.ybe{bottom:390.666667pt;}
.ydb{bottom:394.000000pt;}
.y14{bottom:396.666667pt;}
.y94{bottom:401.333333pt;}
.y5a{bottom:404.000000pt;}
.y39{bottom:410.000000pt;}
.yda{bottom:410.666667pt;}
.y13{bottom:413.333333pt;}
.y93{bottom:414.666667pt;}
.ybd{bottom:417.333333pt;}
.y59{bottom:424.000000pt;}
.y92{bottom:428.000000pt;}
.y12{bottom:430.000000pt;}
.ybc{bottom:430.666667pt;}
.yd9{bottom:436.666667pt;}
.y58{bottom:444.000000pt;}
.y11{bottom:446.666667pt;}
.y91{bottom:448.000000pt;}
.ybb{bottom:457.333333pt;}
.y38{bottom:460.666667pt;}
.y10{bottom:463.333333pt;}
.y57{bottom:464.000000pt;}
.yba{bottom:470.666667pt;}
.yd8{bottom:473.333333pt;}
.y37{bottom:477.333333pt;}
.yf{bottom:480.000000pt;}
.y56{bottom:484.000000pt;}
.y90{bottom:485.333333pt;}
.yd7{bottom:490.000000pt;}
.ye{bottom:496.666667pt;}
.yb9{bottom:497.333333pt;}
.y8f{bottom:498.666667pt;}
.y36{bottom:502.000000pt;}
.y55{bottom:504.000000pt;}
.yd6{bottom:506.666667pt;}
.y79{bottom:509.728133pt;}
.yb8{bottom:510.666667pt;}
.y8e{bottom:512.000000pt;}
.yd{bottom:513.333333pt;}
.y35{bottom:518.666667pt;}
.yd5{bottom:523.333333pt;}
.y54{bottom:524.000000pt;}
.y8d{bottom:525.333333pt;}
.y78{bottom:525.728133pt;}
.yc{bottom:530.000000pt;}
.y34{bottom:535.333333pt;}
.yb7{bottom:537.333333pt;}
.y8c{bottom:538.666667pt;}
.yd4{bottom:540.000000pt;}
.y53{bottom:544.000000pt;}
.y77{bottom:545.262000pt;}
.yb{bottom:546.666667pt;}
.yb6{bottom:550.666667pt;}
.y33{bottom:552.000000pt;}
.yd3{bottom:556.666667pt;}
.y76{bottom:561.262000pt;}
.ya{bottom:563.333333pt;}
.y52{bottom:564.000000pt;}
.y8b{bottom:565.333333pt;}
.y32{bottom:568.666667pt;}
.yd2{bottom:573.333333pt;}
.yb5{bottom:577.333333pt;}
.y8a{bottom:578.666667pt;}
.y75{bottom:580.795867pt;}
.y51{bottom:584.000000pt;}
.y31{bottom:585.333333pt;}
.y9{bottom:588.000000pt;}
.yd1{bottom:590.000000pt;}
.yb4{bottom:590.666667pt;}
.y89{bottom:592.000000pt;}
.y74{bottom:596.795867pt;}
.y30{bottom:602.000000pt;}
.y50{bottom:604.000000pt;}
.yd0{bottom:606.666667pt;}
.y88{bottom:612.000000pt;}
.y73{bottom:616.329733pt;}
.yb3{bottom:617.333333pt;}
.y2f{bottom:618.666667pt;}
.ycf{bottom:623.333333pt;}
.y4f{bottom:624.000000pt;}
.y8{bottom:626.666667pt;}
.yb2{bottom:630.666667pt;}
.y72{bottom:632.329733pt;}
.y2e{bottom:635.333333pt;}
.yce{bottom:640.000000pt;}
.y7{bottom:644.000000pt;}
.y87{bottom:648.000000pt;}
.y71{bottom:651.863467pt;}
.y2d{bottom:652.000000pt;}
.ycd{bottom:656.666667pt;}
.yb1{bottom:657.333333pt;}
.y86{bottom:661.333333pt;}
.y6{bottom:664.000000pt;}
.y70{bottom:667.863467pt;}
.y2c{bottom:668.666667pt;}
.yb0{bottom:670.666667pt;}
.ycc{bottom:673.333333pt;}
.y85{bottom:674.666667pt;}
.y4e{bottom:684.000000pt;}
.y2b{bottom:685.333333pt;}
.y6f{bottom:687.397333pt;}
.y84{bottom:688.000000pt;}
.ycb{bottom:690.000000pt;}
.yaf{bottom:697.333333pt;}
.y83{bottom:701.333333pt;}
.y2a{bottom:702.000000pt;}
.y6e{bottom:703.397333pt;}
.y4d{bottom:704.000000pt;}
.yca{bottom:706.666667pt;}
.yae{bottom:710.666667pt;}
.y82{bottom:714.666667pt;}
.y29{bottom:718.666667pt;}
.y6d{bottom:722.931200pt;}
.yc9{bottom:723.333333pt;}
.y5{bottom:724.000000pt;}
.y81{bottom:728.000000pt;}
.y28{bottom:735.333333pt;}
.yad{bottom:737.333333pt;}
.yc8{bottom:740.000000pt;}
.y80{bottom:741.333333pt;}
.y6c{bottom:742.465067pt;}
.y4c{bottom:744.000000pt;}
.y4{bottom:750.666667pt;}
.y27{bottom:752.000000pt;}
.y7f{bottom:754.666667pt;}
.yc7{bottom:756.666667pt;}
.y6b{bottom:758.465067pt;}
.y4b{bottom:764.000000pt;}
.y7e{bottom:768.000000pt;}
.y26{bottom:768.666667pt;}
.y3{bottom:777.333333pt;}
.y6a{bottom:777.998933pt;}
.y7d{bottom:781.333333pt;}
.y4a{bottom:784.000000pt;}
.y25{bottom:785.333333pt;}
.yac{bottom:790.666667pt;}
.y69{bottom:793.998933pt;}
.y7c{bottom:794.666667pt;}
.y24{bottom:802.000000pt;}
.y49{bottom:804.000000pt;}
.y7b{bottom:808.000000pt;}
.yc6{bottom:812.000000pt;}
.y68{bottom:813.532800pt;}
.yab{bottom:817.333333pt;}
.y2{bottom:824.000000pt;}
.y23{bottom:826.666667pt;}
.y7a{bottom:828.000000pt;}
.y67{bottom:829.532800pt;}
.yaa{bottom:830.666667pt;}
.h6{height:33.117188pt;}
.he{height:35.456000pt;}
.h11{height:35.968000pt;}
.hf{height:36.229167pt;}
.hc{height:37.333333pt;}
.h10{height:39.520833pt;}
.ha{height:39.789062pt;}
.h8{height:40.007812pt;}
.hd{height:40.476562pt;}
.h2{height:40.757812pt;}
.hb{height:44.320000pt;}
.h7{height:45.286458pt;}
.h4{height:49.456000pt;}
.h1{height:49.815104pt;}
.h9{height:54.343750pt;}
.h5{height:59.281250pt;}
.h3{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x7{left:60.000000pt;}
.x14{left:66.293733pt;}
.x10{left:72.820400pt;}
.xa{left:80.000000pt;}
.x8{left:88.000000pt;}
.x16{left:89.142533pt;}
.x12{left:93.600000pt;}
.x2{left:100.000000pt;}
.x3{left:101.479867pt;}
.xd{left:112.983067pt;}
.x9{left:120.000000pt;}
.x4{left:128.000000pt;}
.x18{left:129.062533pt;}
.xc{left:133.600000pt;}
.x17{left:140.000000pt;}
.x5{left:159.773867pt;}
.x19{left:161.333333pt;}
.x6{left:234.000000pt;}
.x11{left:257.600000pt;}
.x13{left:260.266667pt;}
.x15{left:270.933333pt;}
.xe{left:300.266667pt;}
.xf{left:310.933333pt;}
.x1{left:565.780667pt;}
.xb{left:566.791200pt;}
}




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