
    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_74ab6f80f27ecdf70ec2e792.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_49a37641f86536dfc10ad1a0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b9db5961d8dbe8d2b17d1a08.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.953125;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_1bc22531748a75f7813d2121.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.022461;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_93dd747c326af6b08d043745.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a7ced1e2fe178ad6714b529f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.041992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5404f0e7a2d96bc0447dcb1b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.032715;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_60cb38836688399202ed9bf0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.026855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_eb4f78177e0fe14931e206fd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e8e06c999a2d9eaa8b3ae2f3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958631;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_017be0d5b2885f6f593dc0ab.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.710938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5528c0ad1534f1dee8127fea.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.026855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fcb2082bc685c40e9b45c210.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.953125;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_41548aaf0b53bddff7190979.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.964844;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_79fb4d35dafceea35fe85566.woff2')format("woff");}.fff{font-family:fff;line-height:0.770020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3ee9d034724661a3c2f9410a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.980600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls13{letter-spacing:-7.620000px;}
.ls12{letter-spacing:-7.380000px;}
.ls2e{letter-spacing:-7.320000px;}
.ls15{letter-spacing:-6.600000px;}
.lsc{letter-spacing:-6.372000px;}
.ls1b{letter-spacing:-6.360000px;}
.lsb{letter-spacing:-6.156000px;}
.ls29{letter-spacing:-5.640000px;}
.ls32{letter-spacing:-5.580000px;}
.ls2a{letter-spacing:-5.400000px;}
.ls33{letter-spacing:-5.340000px;}
.lsd{letter-spacing:-5.220000px;}
.ls19{letter-spacing:-1.140000px;}
.ls11{letter-spacing:-1.020000px;}
.lse{letter-spacing:-0.918000px;}
.ls2d{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.691200px;}
.ls16{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.510000px;}
.lsa{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.204000px;}
.ls1c{letter-spacing:-0.162000px;}
.ls25{letter-spacing:-0.120000px;}
.ls26{letter-spacing:-0.069960px;}
.ls8{letter-spacing:-0.048000px;}
.ls5{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.300000px;}
.ls35{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.420000px;}
.ls2f{letter-spacing:0.437640px;}
.ls30{letter-spacing:0.454740px;}
.ls10{letter-spacing:0.480000px;}
.ls1f{letter-spacing:0.683040px;}
.ls21{letter-spacing:0.699600px;}
.ls18{letter-spacing:0.720000px;}
.ls2c{letter-spacing:0.780000px;}
.ls3{letter-spacing:0.840000px;}
.ls27{letter-spacing:0.960000px;}
.ls31{letter-spacing:1.020000px;}
.ls4{letter-spacing:1.080000px;}
.ls22{letter-spacing:1.122000px;}
.ls2{letter-spacing:1.140000px;}
.ls1e{letter-spacing:1.200000px;}
.ls23{letter-spacing:1.548000px;}
.ls34{letter-spacing:1.860000px;}
.ls1d{letter-spacing:4.620000px;}
.ls14{letter-spacing:5.160000px;}
.ls1a{letter-spacing:7.260000px;}
.ls20{letter-spacing:8.280000px;}
.ls36{letter-spacing:8.520000px;}
.ls24{letter-spacing:8.820000px;}
.ls28{letter-spacing:19.260000px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.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:-17.928000px;}
.ws59{word-spacing:-17.424000px;}
.ws2d{word-spacing:-16.434000px;}
.ws50{word-spacing:-16.020000px;}
.ws8c{word-spacing:-15.960000px;}
.ws6d{word-spacing:-15.900000px;}
.wsb{word-spacing:-15.840000px;}
.ws8d{word-spacing:-15.720000px;}
.ws6f{word-spacing:-15.660000px;}
.ws83{word-spacing:-15.600000px;}
.wsc{word-spacing:-15.540000px;}
.ws2c{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.940000px;}
.ws27{word-spacing:-14.880000px;}
.ws2e{word-spacing:-14.820000px;}
.ws33{word-spacing:-14.700000px;}
.ws35{word-spacing:-14.580000px;}
.ws80{word-spacing:-14.220000px;}
.ws82{word-spacing:-13.980000px;}
.ws2b{word-spacing:-13.680000px;}
.ws42{word-spacing:-13.446000px;}
.ws43{word-spacing:-13.392000px;}
.ws36{word-spacing:-13.230000px;}
.ws41{word-spacing:-13.068000px;}
.ws6{word-spacing:-12.798000px;}
.wsd{word-spacing:-12.366000px;}
.ws11{word-spacing:-12.150000px;}
.wse{word-spacing:-11.448000px;}
.wsf{word-spacing:-11.232000px;}
.ws61{word-spacing:-11.100000px;}
.ws12{word-spacing:-10.992000px;}
.ws3{word-spacing:-10.896000px;}
.ws60{word-spacing:-10.860000px;}
.ws25{word-spacing:-10.800000px;}
.ws4{word-spacing:-9.892800px;}
.ws5e{word-spacing:-9.840000px;}
.ws2{word-spacing:-9.618000px;}
.wsa{word-spacing:-9.480000px;}
.ws51{word-spacing:-9.374640px;}
.ws8f{word-spacing:-9.360000px;}
.ws70{word-spacing:-9.300000px;}
.ws89{word-spacing:-9.129780px;}
.ws8e{word-spacing:-9.120000px;}
.ws6e{word-spacing:-9.060000px;}
.ws5b{word-spacing:-8.880000px;}
.ws5c{word-spacing:-8.820000px;}
.ws28{word-spacing:-8.675040px;}
.ws64{word-spacing:-8.605080px;}
.ws40{word-spacing:-8.340000px;}
.ws34{word-spacing:-8.100000px;}
.ws81{word-spacing:-7.380000px;}
.ws29{word-spacing:-7.320000px;}
.ws5f{word-spacing:-7.260000px;}
.ws2a{word-spacing:-7.080000px;}
.ws7{word-spacing:-7.074000px;}
.ws8{word-spacing:-6.858000px;}
.ws5d{word-spacing:-6.480000px;}
.ws5a{word-spacing:-6.060000px;}
.ws85{word-spacing:-5.340000px;}
.wsa1{word-spacing:-3.294000px;}
.ws47{word-spacing:-2.970000px;}
.ws1c{word-spacing:-2.700000px;}
.ws62{word-spacing:-2.640000px;}
.ws9d{word-spacing:-2.430000px;}
.ws52{word-spacing:-2.400000px;}
.ws78{word-spacing:-2.376000px;}
.ws1b{word-spacing:-2.268000px;}
.ws8a{word-spacing:-2.052000px;}
.wsa3{word-spacing:-1.998000px;}
.ws65{word-spacing:-1.980000px;}
.ws3e{word-spacing:-1.944000px;}
.ws87{word-spacing:-1.836000px;}
.ws1a{word-spacing:-1.782000px;}
.ws7f{word-spacing:-1.674000px;}
.ws96{word-spacing:-1.560000px;}
.ws9c{word-spacing:-1.404000px;}
.ws19{word-spacing:-1.350000px;}
.ws4d{word-spacing:-1.320000px;}
.wsa8{word-spacing:-1.242000px;}
.ws4e{word-spacing:-1.200000px;}
.ws1e{word-spacing:-1.140000px;}
.ws24{word-spacing:-1.080000px;}
.ws30{word-spacing:-1.020000px;}
.ws71{word-spacing:-0.960000px;}
.ws9b{word-spacing:-0.918000px;}
.ws44{word-spacing:-0.900000px;}
.ws21{word-spacing:-0.840000px;}
.ws86{word-spacing:-0.780000px;}
.ws3f{word-spacing:-0.720000px;}
.ws57{word-spacing:-0.594000px;}
.ws1d{word-spacing:-0.432000px;}
.ws31{word-spacing:-0.420000px;}
.ws38{word-spacing:-0.240000px;}
.ws14{word-spacing:-0.216000px;}
.ws10{word-spacing:-0.054000px;}
.ws26{word-spacing:-0.048000px;}
.ws13{word-spacing:0.000000px;}
.ws0{word-spacing:0.102000px;}
.ws3d{word-spacing:0.108000px;}
.ws6b{word-spacing:0.120000px;}
.ws46{word-spacing:0.162000px;}
.ws3c{word-spacing:0.240000px;}
.ws1{word-spacing:0.408000px;}
.ws16{word-spacing:0.432000px;}
.wsa7{word-spacing:0.594000px;}
.ws3b{word-spacing:0.600000px;}
.ws15{word-spacing:0.691200px;}
.ws84{word-spacing:0.720000px;}
.ws91{word-spacing:0.780000px;}
.ws17{word-spacing:0.918000px;}
.ws7a{word-spacing:0.960000px;}
.ws2f{word-spacing:1.020000px;}
.ws37{word-spacing:1.140000px;}
.ws49{word-spacing:1.200000px;}
.ws79{word-spacing:1.260000px;}
.ws18{word-spacing:1.350000px;}
.wsa2{word-spacing:1.458000px;}
.ws92{word-spacing:1.500000px;}
.wsa4{word-spacing:1.566000px;}
.ws67{word-spacing:1.620000px;}
.ws9f{word-spacing:1.782000px;}
.ws68{word-spacing:1.800000px;}
.ws6c{word-spacing:2.100000px;}
.ws95{word-spacing:2.220000px;}
.ws9a{word-spacing:2.268000px;}
.ws94{word-spacing:2.640000px;}
.ws7e{word-spacing:3.240000px;}
.ws54{word-spacing:3.360000px;}
.ws4f{word-spacing:3.402000px;}
.ws77{word-spacing:3.420000px;}
.wsa0{word-spacing:3.564000px;}
.ws93{word-spacing:3.660000px;}
.ws66{word-spacing:3.960000px;}
.ws56{word-spacing:4.020000px;}
.ws76{word-spacing:4.380000px;}
.ws58{word-spacing:4.482000px;}
.ws63{word-spacing:4.590000px;}
.ws4c{word-spacing:4.620000px;}
.ws4a{word-spacing:5.040000px;}
.ws39{word-spacing:5.160000px;}
.ws4b{word-spacing:5.940000px;}
.ws9e{word-spacing:6.102000px;}
.ws8b{word-spacing:6.264000px;}
.ws55{word-spacing:6.420000px;}
.ws7c{word-spacing:6.540000px;}
.ws7b{word-spacing:6.600000px;}
.ws48{word-spacing:7.080000px;}
.ws45{word-spacing:7.260000px;}
.ws20{word-spacing:7.320000px;}
.ws1f{word-spacing:7.560000px;}
.ws90{word-spacing:8.040000px;}
.ws53{word-spacing:8.280000px;}
.ws23{word-spacing:8.400000px;}
.ws99{word-spacing:8.520000px;}
.wsa6{word-spacing:8.640000px;}
.ws69{word-spacing:8.820000px;}
.ws73{word-spacing:9.180000px;}
.ws22{word-spacing:9.300000px;}
.ws75{word-spacing:9.960000px;}
.ws74{word-spacing:10.080000px;}
.wsa5{word-spacing:10.422000px;}
.ws98{word-spacing:10.680000px;}
.ws97{word-spacing:10.740000px;}
.ws32{word-spacing:10.800000px;}
.ws88{word-spacing:10.854000px;}
.ws3a{word-spacing:11.580000px;}
.ws7d{word-spacing:14.580000px;}
.ws72{word-spacing:19.320000px;}
.ws6a{word-spacing:34.320000px;}
._13{margin-left:-11.525400px;}
._d{margin-left:-9.912000px;}
._4{margin-left:-8.292600px;}
._1d{margin-left:-6.618000px;}
._3{margin-left:-5.212200px;}
._2{margin-left:-4.192200px;}
._1e{margin-left:-3.173400px;}
._5{margin-left:-2.166600px;}
._0{margin-left:-1.050600px;}
._1{width:1.101600px;}
._9{width:2.187000px;}
._14{width:3.208200px;}
._8{width:4.819200px;}
._7{width:6.108600px;}
._a{width:7.536000px;}
._c{width:9.168000px;}
._b{width:10.338000px;}
._11{width:12.114000px;}
._f{width:13.296000px;}
._22{width:16.527600px;}
._1f{width:17.958000px;}
._10{width:18.996000px;}
._e{width:20.754000px;}
._12{width:22.494000px;}
._16{width:25.489200px;}
._15{width:26.550000px;}
._25{width:27.906000px;}
._23{width:34.038000px;}
._6{width:36.369600px;}
._24{width:40.140000px;}
._26{width:42.292200px;}
._18{width:76.380000px;}
._21{width:81.840000px;}
._20{width:87.480000px;}
._1b{width:119.940000px;}
._1a{width:121.140000px;}
._17{width:132.900000px;}
._19{width:171.360000px;}
._1c{width:195.060000px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.040050px;}
.y139{bottom:112.790850px;}
.y10b{bottom:112.898700px;}
.ye0{bottom:113.072850px;}
.y67{bottom:113.078700px;}
.y97{bottom:113.078850px;}
.yc{bottom:117.205050px;}
.y28{bottom:117.212550px;}
.yb5{bottom:120.482850px;}
.yd5{bottom:120.487200px;}
.yae{bottom:120.491850px;}
.y86{bottom:120.496350px;}
.yb{bottom:131.601450px;}
.y138{bottom:133.796850px;}
.y10a{bottom:133.904700px;}
.y66{bottom:134.078700px;}
.y96{bottom:134.078850px;}
.y27{bottom:138.212550px;}
.yb4{bottom:140.287350px;}
.yd4{bottom:140.291700px;}
.yad{bottom:140.296350px;}
.y85{bottom:140.300850px;}
.ya{bottom:145.997850px;}
.y137{bottom:154.802850px;}
.y109{bottom:154.910700px;}
.y65{bottom:155.078700px;}
.y95{bottom:155.078850px;}
.y26{bottom:159.212550px;}
.yb3{bottom:160.091850px;}
.yd3{bottom:160.096200px;}
.yac{bottom:160.100850px;}
.y9{bottom:160.397850px;}
.ydf{bottom:160.529400px;}
.y136{bottom:175.808850px;}
.y108{bottom:175.916700px;}
.y64{bottom:176.078700px;}
.y94{bottom:176.078850px;}
.yb2{bottom:179.896350px;}
.yd2{bottom:179.900700px;}
.y25{bottom:180.212550px;}
.y135{bottom:196.814850px;}
.y107{bottom:196.922700px;}
.y63{bottom:197.078700px;}
.y93{bottom:197.078850px;}
.yb1{bottom:199.700850px;}
.y37{bottom:203.458800px;}
.yc2{bottom:205.730250px;}
.y24{bottom:215.574750px;}
.y134{bottom:217.820850px;}
.yda{bottom:217.861800px;}
.y106{bottom:217.928700px;}
.y62{bottom:218.078700px;}
.y92{bottom:218.078850px;}
.y36{bottom:221.454300px;}
.yde{bottom:223.529400px;}
.yc1{bottom:225.534750px;}
.yd9{bottom:237.666300px;}
.y133{bottom:238.826850px;}
.y105{bottom:238.934700px;}
.y8f{bottom:239.078700px;}
.y91{bottom:239.078850px;}
.y35{bottom:239.449800px;}
.yc0{bottom:245.339250px;}
.y61{bottom:252.513450px;}
.y34{bottom:257.445300px;}
.yd8{bottom:257.470800px;}
.y132{bottom:259.832850px;}
.y104{bottom:259.940700px;}
.y8e{bottom:260.078700px;}
.y90{bottom:260.078850px;}
.y23{bottom:264.212550px;}
.ybf{bottom:265.143750px;}
.y33{bottom:275.440800px;}
.yd7{bottom:277.275300px;}
.y131{bottom:280.838850px;}
.y103{bottom:280.946700px;}
.y8d{bottom:281.078700px;}
.yab{bottom:281.078850px;}
.y60{bottom:284.811000px;}
.ybe{bottom:284.948250px;}
.y22{bottom:285.212550px;}
.ydd{bottom:286.937100px;}
.y32{bottom:293.436300px;}
.yd6{bottom:297.079800px;}
.y130{bottom:301.844850px;}
.y102{bottom:301.952700px;}
.y8c{bottom:302.078700px;}
.yaa{bottom:302.078850px;}
.ybd{bottom:304.752750px;}
.y21{bottom:306.212550px;}
.y31{bottom:311.431800px;}
.y9d{bottom:313.179300px;}
.ydc{bottom:316.441050px;}
.y12f{bottom:322.850850px;}
.y101{bottom:322.958700px;}
.y8b{bottom:323.078700px;}
.ya9{bottom:323.078850px;}
.y20{bottom:327.212550px;}
.y30{bottom:329.427300px;}
.y9c{bottom:332.983800px;}
.y12e{bottom:343.856850px;}
.y100{bottom:343.964700px;}
.y5f{bottom:344.078700px;}
.ya8{bottom:344.078850px;}
.y1f{bottom:348.212550px;}
.y9b{bottom:352.788300px;}
.y2f{bottom:364.432800px;}
.y12d{bottom:364.862850px;}
.yff{bottom:364.970700px;}
.y5e{bottom:365.078700px;}
.ya7{bottom:365.078850px;}
.y1e{bottom:369.212550px;}
.y9a{bottom:372.592800px;}
.y2e{bottom:382.428300px;}
.y12c{bottom:385.868850px;}
.yfe{bottom:385.976700px;}
.y5d{bottom:386.078700px;}
.ya6{bottom:386.078850px;}
.ycf{bottom:388.819800px;}
.y1d{bottom:390.212550px;}
.y99{bottom:392.397300px;}
.y2d{bottom:400.423800px;}
.y12b{bottom:406.874850px;}
.yfd{bottom:406.982700px;}
.y5c{bottom:407.078700px;}
.ya5{bottom:407.078850px;}
.yce{bottom:408.624300px;}
.y1c{bottom:411.212550px;}
.y98{bottom:412.201800px;}
.yc4{bottom:425.100450px;}
.y12a{bottom:427.880850px;}
.yfc{bottom:427.988700px;}
.y5b{bottom:428.078700px;}
.ya4{bottom:428.078850px;}
.ycd{bottom:428.428800px;}
.y1b{bottom:432.212550px;}
.y2c{bottom:435.429300px;}
.ydb{bottom:442.441050px;}
.yc3{bottom:444.904950px;}
.ycc{bottom:448.233300px;}
.y129{bottom:448.886850px;}
.yfb{bottom:448.994700px;}
.y5a{bottom:449.078700px;}
.ya3{bottom:449.078850px;}
.y1a{bottom:453.212550px;}
.y2b{bottom:453.429300px;}
.ycb{bottom:468.037800px;}
.y128{bottom:469.892850px;}
.yfa{bottom:470.000700px;}
.y59{bottom:470.078700px;}
.ya2{bottom:470.078850px;}
.y2a{bottom:471.429300px;}
.y19{bottom:474.212550px;}
.yca{bottom:487.842300px;}
.y29{bottom:489.429300px;}
.y127{bottom:490.898850px;}
.yf9{bottom:491.006700px;}
.y58{bottom:491.078700px;}
.ya1{bottom:491.078850px;}
.y18{bottom:495.212550px;}
.yc7{bottom:506.505450px;}
.y126{bottom:511.904850px;}
.yf8{bottom:512.012700px;}
.y57{bottom:512.078700px;}
.y84{bottom:512.078850px;}
.yb0{bottom:512.740350px;}
.y17{bottom:516.212550px;}
.yc9{bottom:518.008950px;}
.yaf{bottom:532.544850px;}
.y125{bottom:532.910850px;}
.yf7{bottom:533.018700px;}
.y8a{bottom:533.078700px;}
.y83{bottom:533.078850px;}
.y16{bottom:537.212550px;}
.yc8{bottom:537.813450px;}
.y124{bottom:553.916850px;}
.yf6{bottom:554.024700px;}
.y56{bottom:554.078700px;}
.y82{bottom:554.078850px;}
.yb7{bottom:565.805550px;}
.y123{bottom:574.922850px;}
.yf5{bottom:575.030700px;}
.y15{bottom:575.048400px;}
.y55{bottom:575.078700px;}
.y81{bottom:575.078850px;}
.yb6{bottom:586.810050px;}
.y122{bottom:595.928850px;}
.yf4{bottom:596.036700px;}
.y54{bottom:596.078700px;}
.y80{bottom:596.078850px;}
.y121{bottom:616.934850px;}
.yf3{bottom:617.042700px;}
.y53{bottom:617.078700px;}
.y7f{bottom:617.078850px;}
.y120{bottom:637.940850px;}
.yf2{bottom:638.048700px;}
.y52{bottom:638.078700px;}
.y7e{bottom:638.078850px;}
.yba{bottom:646.474800px;}
.ye4{bottom:649.126350px;}
.y11f{bottom:658.946850px;}
.yf1{bottom:659.054700px;}
.y51{bottom:659.078700px;}
.y7d{bottom:659.078850px;}
.y14{bottom:659.827950px;}
.yb9{bottom:666.279300px;}
.ye3{bottom:668.930850px;}
.y11e{bottom:679.952850px;}
.yf0{bottom:680.060700px;}
.y50{bottom:680.078700px;}
.y7c{bottom:680.078850px;}
.yb8{bottom:686.083800px;}
.ye2{bottom:688.735350px;}
.y13{bottom:700.869750px;}
.y11d{bottom:700.958850px;}
.yef{bottom:701.066700px;}
.y4f{bottom:701.078700px;}
.y7b{bottom:701.078850px;}
.ye1{bottom:708.539850px;}
.y12{bottom:720.674250px;}
.y11c{bottom:721.964850px;}
.yee{bottom:722.072700px;}
.y4e{bottom:722.078700px;}
.y7a{bottom:722.078850px;}
.y11{bottom:740.478750px;}
.y11b{bottom:742.970850px;}
.y4d{bottom:743.078700px;}
.y79{bottom:743.078850px;}
.y89{bottom:749.021550px;}
.y10{bottom:760.283250px;}
.y11a{bottom:763.976850px;}
.y4c{bottom:764.078700px;}
.y78{bottom:764.078850px;}
.y88{bottom:768.826050px;}
.y9f{bottom:776.178900px;}
.yed{bottom:778.440900px;}
.yf{bottom:780.087750px;}
.y119{bottom:784.982850px;}
.y4b{bottom:785.078700px;}
.y77{bottom:785.078850px;}
.yc6{bottom:785.799300px;}
.y87{bottom:788.630550px;}
.y9e{bottom:795.983400px;}
.yc5{bottom:805.603800px;}
.y118{bottom:805.988850px;}
.y4a{bottom:806.078700px;}
.y76{bottom:806.078850px;}
.ybc{bottom:808.692600px;}
.ye{bottom:811.185300px;}
.y117{bottom:826.994850px;}
.y49{bottom:827.078700px;}
.y75{bottom:827.078850px;}
.ybb{bottom:828.497100px;}
.y116{bottom:848.000850px;}
.y74{bottom:848.078850px;}
.yec{bottom:853.529250px;}
.y115{bottom:869.006850px;}
.y48{bottom:869.078700px;}
.y73{bottom:869.078850px;}
.yd1{bottom:871.275300px;}
.y114{bottom:890.012850px;}
.yeb{bottom:890.072850px;}
.y47{bottom:890.078700px;}
.y72{bottom:890.078850px;}
.y8{bottom:890.466750px;}
.yd0{bottom:891.079800px;}
.y7{bottom:908.466750px;}
.y113{bottom:911.018850px;}
.yea{bottom:911.072850px;}
.y46{bottom:911.078700px;}
.y71{bottom:911.078850px;}
.y6{bottom:926.466750px;}
.y112{bottom:932.024850px;}
.ye9{bottom:932.072850px;}
.y45{bottom:932.078700px;}
.y70{bottom:932.078850px;}
.y5{bottom:944.466750px;}
.y111{bottom:953.030850px;}
.y44{bottom:953.078700px;}
.y6f{bottom:953.078850px;}
.y110{bottom:974.036850px;}
.y43{bottom:974.078700px;}
.y6e{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.ye8{bottom:979.529250px;}
.y10f{bottom:995.042850px;}
.y42{bottom:995.078700px;}
.y6d{bottom:995.078850px;}
.y10e{bottom:1016.048850px;}
.y41{bottom:1016.078700px;}
.y6c{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y10d{bottom:1037.054850px;}
.y40{bottom:1037.078700px;}
.y6b{bottom:1037.078850px;}
.ye7{bottom:1042.529250px;}
.y2{bottom:1049.282550px;}
.y10c{bottom:1058.060850px;}
.ya0{bottom:1058.078850px;}
.ye6{bottom:1079.066850px;}
.y3f{bottom:1079.078700px;}
.y6a{bottom:1079.078850px;}
.ye5{bottom:1100.072850px;}
.y3e{bottom:1100.078700px;}
.y69{bottom:1100.078850px;}
.yd{bottom:1109.815500px;}
.y3d{bottom:1121.078700px;}
.y68{bottom:1121.078850px;}
.y39{bottom:1159.189500px;}
.y38{bottom:1178.689500px;}
.y3c{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h8{height:43.004883px;}
.he{height:43.057617px;}
.hb{height:43.321289px;}
.ha{height:43.875000px;}
.h13{height:43.899000px;}
.h9{height:47.343750px;}
.h11{height:48.134766px;}
.hd{height:48.750000px;}
.h12{height:50.176758px;}
.h10{height:52.078125px;}
.h4{height:53.625000px;}
.hc{height:56.812500px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.989100px;}
.xc{left:107.063850px;}
.xf{left:108.289650px;}
.x7{left:119.878950px;}
.x8{left:122.032500px;}
.x9{left:124.102950px;}
.x5{left:300.189000px;}
.x6{left:317.169000px;}
.xd{left:334.209000px;}
.xe{left:376.666500px;}
.x4{left:396.050700px;}
.xb{left:648.907500px;}
.xa{left:669.727500px;}
.x1{left:801.157500px;}
@media print{
.v3{vertical-align:-17.760533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls13{letter-spacing:-6.773333pt;}
.ls12{letter-spacing:-6.560000pt;}
.ls2e{letter-spacing:-6.506667pt;}
.ls15{letter-spacing:-5.866667pt;}
.lsc{letter-spacing:-5.664000pt;}
.ls1b{letter-spacing:-5.653333pt;}
.lsb{letter-spacing:-5.472000pt;}
.ls29{letter-spacing:-5.013333pt;}
.ls32{letter-spacing:-4.960000pt;}
.ls2a{letter-spacing:-4.800000pt;}
.ls33{letter-spacing:-4.746667pt;}
.lsd{letter-spacing:-4.640000pt;}
.ls19{letter-spacing:-1.013333pt;}
.ls11{letter-spacing:-0.906667pt;}
.lse{letter-spacing:-0.816000pt;}
.ls2d{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.614400pt;}
.ls16{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.453333pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.181333pt;}
.ls1c{letter-spacing:-0.144000pt;}
.ls25{letter-spacing:-0.106667pt;}
.ls26{letter-spacing:-0.062187pt;}
.ls8{letter-spacing:-0.042667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.266667pt;}
.ls35{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.373333pt;}
.ls2f{letter-spacing:0.389013pt;}
.ls30{letter-spacing:0.404213pt;}
.ls10{letter-spacing:0.426667pt;}
.ls1f{letter-spacing:0.607147pt;}
.ls21{letter-spacing:0.621867pt;}
.ls18{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:0.693333pt;}
.ls3{letter-spacing:0.746667pt;}
.ls27{letter-spacing:0.853333pt;}
.ls31{letter-spacing:0.906667pt;}
.ls4{letter-spacing:0.960000pt;}
.ls22{letter-spacing:0.997333pt;}
.ls2{letter-spacing:1.013333pt;}
.ls1e{letter-spacing:1.066667pt;}
.ls23{letter-spacing:1.376000pt;}
.ls34{letter-spacing:1.653333pt;}
.ls1d{letter-spacing:4.106667pt;}
.ls14{letter-spacing:4.586667pt;}
.ls1a{letter-spacing:6.453333pt;}
.ls20{letter-spacing:7.360000pt;}
.ls36{letter-spacing:7.573333pt;}
.ls24{letter-spacing:7.840000pt;}
.ls28{letter-spacing:17.120000pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ws9{word-spacing:-15.936000pt;}
.ws59{word-spacing:-15.488000pt;}
.ws2d{word-spacing:-14.608000pt;}
.ws50{word-spacing:-14.240000pt;}
.ws8c{word-spacing:-14.186667pt;}
.ws6d{word-spacing:-14.133333pt;}
.wsb{word-spacing:-14.080000pt;}
.ws8d{word-spacing:-13.973333pt;}
.ws6f{word-spacing:-13.920000pt;}
.ws83{word-spacing:-13.866667pt;}
.wsc{word-spacing:-13.813333pt;}
.ws2c{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws27{word-spacing:-13.226667pt;}
.ws2e{word-spacing:-13.173333pt;}
.ws33{word-spacing:-13.066667pt;}
.ws35{word-spacing:-12.960000pt;}
.ws80{word-spacing:-12.640000pt;}
.ws82{word-spacing:-12.426667pt;}
.ws2b{word-spacing:-12.160000pt;}
.ws42{word-spacing:-11.952000pt;}
.ws43{word-spacing:-11.904000pt;}
.ws36{word-spacing:-11.760000pt;}
.ws41{word-spacing:-11.616000pt;}
.ws6{word-spacing:-11.376000pt;}
.wsd{word-spacing:-10.992000pt;}
.ws11{word-spacing:-10.800000pt;}
.wse{word-spacing:-10.176000pt;}
.wsf{word-spacing:-9.984000pt;}
.ws61{word-spacing:-9.866667pt;}
.ws12{word-spacing:-9.770667pt;}
.ws3{word-spacing:-9.685333pt;}
.ws60{word-spacing:-9.653333pt;}
.ws25{word-spacing:-9.600000pt;}
.ws4{word-spacing:-8.793600pt;}
.ws5e{word-spacing:-8.746667pt;}
.ws2{word-spacing:-8.549333pt;}
.wsa{word-spacing:-8.426667pt;}
.ws51{word-spacing:-8.333013pt;}
.ws8f{word-spacing:-8.320000pt;}
.ws70{word-spacing:-8.266667pt;}
.ws89{word-spacing:-8.115360pt;}
.ws8e{word-spacing:-8.106667pt;}
.ws6e{word-spacing:-8.053333pt;}
.ws5b{word-spacing:-7.893333pt;}
.ws5c{word-spacing:-7.840000pt;}
.ws28{word-spacing:-7.711147pt;}
.ws64{word-spacing:-7.648960pt;}
.ws40{word-spacing:-7.413333pt;}
.ws34{word-spacing:-7.200000pt;}
.ws81{word-spacing:-6.560000pt;}
.ws29{word-spacing:-6.506667pt;}
.ws5f{word-spacing:-6.453333pt;}
.ws2a{word-spacing:-6.293333pt;}
.ws7{word-spacing:-6.288000pt;}
.ws8{word-spacing:-6.096000pt;}
.ws5d{word-spacing:-5.760000pt;}
.ws5a{word-spacing:-5.386667pt;}
.ws85{word-spacing:-4.746667pt;}
.wsa1{word-spacing:-2.928000pt;}
.ws47{word-spacing:-2.640000pt;}
.ws1c{word-spacing:-2.400000pt;}
.ws62{word-spacing:-2.346667pt;}
.ws9d{word-spacing:-2.160000pt;}
.ws52{word-spacing:-2.133333pt;}
.ws78{word-spacing:-2.112000pt;}
.ws1b{word-spacing:-2.016000pt;}
.ws8a{word-spacing:-1.824000pt;}
.wsa3{word-spacing:-1.776000pt;}
.ws65{word-spacing:-1.760000pt;}
.ws3e{word-spacing:-1.728000pt;}
.ws87{word-spacing:-1.632000pt;}
.ws1a{word-spacing:-1.584000pt;}
.ws7f{word-spacing:-1.488000pt;}
.ws96{word-spacing:-1.386667pt;}
.ws9c{word-spacing:-1.248000pt;}
.ws19{word-spacing:-1.200000pt;}
.ws4d{word-spacing:-1.173333pt;}
.wsa8{word-spacing:-1.104000pt;}
.ws4e{word-spacing:-1.066667pt;}
.ws1e{word-spacing:-1.013333pt;}
.ws24{word-spacing:-0.960000pt;}
.ws30{word-spacing:-0.906667pt;}
.ws71{word-spacing:-0.853333pt;}
.ws9b{word-spacing:-0.816000pt;}
.ws44{word-spacing:-0.800000pt;}
.ws21{word-spacing:-0.746667pt;}
.ws86{word-spacing:-0.693333pt;}
.ws3f{word-spacing:-0.640000pt;}
.ws57{word-spacing:-0.528000pt;}
.ws1d{word-spacing:-0.384000pt;}
.ws31{word-spacing:-0.373333pt;}
.ws38{word-spacing:-0.213333pt;}
.ws14{word-spacing:-0.192000pt;}
.ws10{word-spacing:-0.048000pt;}
.ws26{word-spacing:-0.042667pt;}
.ws13{word-spacing:0.000000pt;}
.ws0{word-spacing:0.090667pt;}
.ws3d{word-spacing:0.096000pt;}
.ws6b{word-spacing:0.106667pt;}
.ws46{word-spacing:0.144000pt;}
.ws3c{word-spacing:0.213333pt;}
.ws1{word-spacing:0.362667pt;}
.ws16{word-spacing:0.384000pt;}
.wsa7{word-spacing:0.528000pt;}
.ws3b{word-spacing:0.533333pt;}
.ws15{word-spacing:0.614400pt;}
.ws84{word-spacing:0.640000pt;}
.ws91{word-spacing:0.693333pt;}
.ws17{word-spacing:0.816000pt;}
.ws7a{word-spacing:0.853333pt;}
.ws2f{word-spacing:0.906667pt;}
.ws37{word-spacing:1.013333pt;}
.ws49{word-spacing:1.066667pt;}
.ws79{word-spacing:1.120000pt;}
.ws18{word-spacing:1.200000pt;}
.wsa2{word-spacing:1.296000pt;}
.ws92{word-spacing:1.333333pt;}
.wsa4{word-spacing:1.392000pt;}
.ws67{word-spacing:1.440000pt;}
.ws9f{word-spacing:1.584000pt;}
.ws68{word-spacing:1.600000pt;}
.ws6c{word-spacing:1.866667pt;}
.ws95{word-spacing:1.973333pt;}
.ws9a{word-spacing:2.016000pt;}
.ws94{word-spacing:2.346667pt;}
.ws7e{word-spacing:2.880000pt;}
.ws54{word-spacing:2.986667pt;}
.ws4f{word-spacing:3.024000pt;}
.ws77{word-spacing:3.040000pt;}
.wsa0{word-spacing:3.168000pt;}
.ws93{word-spacing:3.253333pt;}
.ws66{word-spacing:3.520000pt;}
.ws56{word-spacing:3.573333pt;}
.ws76{word-spacing:3.893333pt;}
.ws58{word-spacing:3.984000pt;}
.ws63{word-spacing:4.080000pt;}
.ws4c{word-spacing:4.106667pt;}
.ws4a{word-spacing:4.480000pt;}
.ws39{word-spacing:4.586667pt;}
.ws4b{word-spacing:5.280000pt;}
.ws9e{word-spacing:5.424000pt;}
.ws8b{word-spacing:5.568000pt;}
.ws55{word-spacing:5.706667pt;}
.ws7c{word-spacing:5.813333pt;}
.ws7b{word-spacing:5.866667pt;}
.ws48{word-spacing:6.293333pt;}
.ws45{word-spacing:6.453333pt;}
.ws20{word-spacing:6.506667pt;}
.ws1f{word-spacing:6.720000pt;}
.ws90{word-spacing:7.146667pt;}
.ws53{word-spacing:7.360000pt;}
.ws23{word-spacing:7.466667pt;}
.ws99{word-spacing:7.573333pt;}
.wsa6{word-spacing:7.680000pt;}
.ws69{word-spacing:7.840000pt;}
.ws73{word-spacing:8.160000pt;}
.ws22{word-spacing:8.266667pt;}
.ws75{word-spacing:8.853333pt;}
.ws74{word-spacing:8.960000pt;}
.wsa5{word-spacing:9.264000pt;}
.ws98{word-spacing:9.493333pt;}
.ws97{word-spacing:9.546667pt;}
.ws32{word-spacing:9.600000pt;}
.ws88{word-spacing:9.648000pt;}
.ws3a{word-spacing:10.293333pt;}
.ws7d{word-spacing:12.960000pt;}
.ws72{word-spacing:17.173333pt;}
.ws6a{word-spacing:30.506667pt;}
._13{margin-left:-10.244800pt;}
._d{margin-left:-8.810667pt;}
._4{margin-left:-7.371200pt;}
._1d{margin-left:-5.882667pt;}
._3{margin-left:-4.633067pt;}
._2{margin-left:-3.726400pt;}
._1e{margin-left:-2.820800pt;}
._5{margin-left:-1.925867pt;}
._0{margin-left:-0.933867pt;}
._1{width:0.979200pt;}
._9{width:1.944000pt;}
._14{width:2.851733pt;}
._8{width:4.283733pt;}
._7{width:5.429867pt;}
._a{width:6.698667pt;}
._c{width:8.149333pt;}
._b{width:9.189333pt;}
._11{width:10.768000pt;}
._f{width:11.818667pt;}
._22{width:14.691200pt;}
._1f{width:15.962667pt;}
._10{width:16.885333pt;}
._e{width:18.448000pt;}
._12{width:19.994667pt;}
._16{width:22.657067pt;}
._15{width:23.600000pt;}
._25{width:24.805333pt;}
._23{width:30.256000pt;}
._6{width:32.328533pt;}
._24{width:35.680000pt;}
._26{width:37.593067pt;}
._18{width:67.893333pt;}
._21{width:72.746667pt;}
._20{width:77.760000pt;}
._1b{width:106.613333pt;}
._1a{width:107.680000pt;}
._17{width:118.133333pt;}
._19{width:152.320000pt;}
._1c{width:173.386667pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.702267pt;}
.y139{bottom:100.258533pt;}
.y10b{bottom:100.354400pt;}
.ye0{bottom:100.509200pt;}
.y67{bottom:100.514400pt;}
.y97{bottom:100.514533pt;}
.yc{bottom:104.182267pt;}
.y28{bottom:104.188933pt;}
.yb5{bottom:107.095867pt;}
.yd5{bottom:107.099733pt;}
.yae{bottom:107.103867pt;}
.y86{bottom:107.107867pt;}
.yb{bottom:116.979067pt;}
.y138{bottom:118.930533pt;}
.y10a{bottom:119.026400pt;}
.y66{bottom:119.181067pt;}
.y96{bottom:119.181200pt;}
.y27{bottom:122.855600pt;}
.yb4{bottom:124.699867pt;}
.yd4{bottom:124.703733pt;}
.yad{bottom:124.707867pt;}
.y85{bottom:124.711867pt;}
.ya{bottom:129.775867pt;}
.y137{bottom:137.602533pt;}
.y109{bottom:137.698400pt;}
.y65{bottom:137.847733pt;}
.y95{bottom:137.847867pt;}
.y26{bottom:141.522267pt;}
.yb3{bottom:142.303867pt;}
.yd3{bottom:142.307733pt;}
.yac{bottom:142.311867pt;}
.y9{bottom:142.575867pt;}
.ydf{bottom:142.692800pt;}
.y136{bottom:156.274533pt;}
.y108{bottom:156.370400pt;}
.y64{bottom:156.514400pt;}
.y94{bottom:156.514533pt;}
.yb2{bottom:159.907867pt;}
.yd2{bottom:159.911733pt;}
.y25{bottom:160.188933pt;}
.y135{bottom:174.946533pt;}
.y107{bottom:175.042400pt;}
.y63{bottom:175.181067pt;}
.y93{bottom:175.181200pt;}
.yb1{bottom:177.511867pt;}
.y37{bottom:180.852267pt;}
.yc2{bottom:182.871333pt;}
.y24{bottom:191.622000pt;}
.y134{bottom:193.618533pt;}
.yda{bottom:193.654933pt;}
.y106{bottom:193.714400pt;}
.y62{bottom:193.847733pt;}
.y92{bottom:193.847867pt;}
.y36{bottom:196.848267pt;}
.yde{bottom:198.692800pt;}
.yc1{bottom:200.475333pt;}
.yd9{bottom:211.258933pt;}
.y133{bottom:212.290533pt;}
.y105{bottom:212.386400pt;}
.y8f{bottom:212.514400pt;}
.y91{bottom:212.514533pt;}
.y35{bottom:212.844267pt;}
.yc0{bottom:218.079333pt;}
.y61{bottom:224.456400pt;}
.y34{bottom:228.840267pt;}
.yd8{bottom:228.862933pt;}
.y132{bottom:230.962533pt;}
.y104{bottom:231.058400pt;}
.y8e{bottom:231.181067pt;}
.y90{bottom:231.181200pt;}
.y23{bottom:234.855600pt;}
.ybf{bottom:235.683333pt;}
.y33{bottom:244.836267pt;}
.yd7{bottom:246.466933pt;}
.y131{bottom:249.634533pt;}
.y103{bottom:249.730400pt;}
.y8d{bottom:249.847733pt;}
.yab{bottom:249.847867pt;}
.y60{bottom:253.165333pt;}
.ybe{bottom:253.287333pt;}
.y22{bottom:253.522267pt;}
.ydd{bottom:255.055200pt;}
.y32{bottom:260.832267pt;}
.yd6{bottom:264.070933pt;}
.y130{bottom:268.306533pt;}
.y102{bottom:268.402400pt;}
.y8c{bottom:268.514400pt;}
.yaa{bottom:268.514533pt;}
.ybd{bottom:270.891333pt;}
.y21{bottom:272.188933pt;}
.y31{bottom:276.828267pt;}
.y9d{bottom:278.381600pt;}
.ydc{bottom:281.280933pt;}
.y12f{bottom:286.978533pt;}
.y101{bottom:287.074400pt;}
.y8b{bottom:287.181067pt;}
.ya9{bottom:287.181200pt;}
.y20{bottom:290.855600pt;}
.y30{bottom:292.824267pt;}
.y9c{bottom:295.985600pt;}
.y12e{bottom:305.650533pt;}
.y100{bottom:305.746400pt;}
.y5f{bottom:305.847733pt;}
.ya8{bottom:305.847867pt;}
.y1f{bottom:309.522267pt;}
.y9b{bottom:313.589600pt;}
.y2f{bottom:323.940267pt;}
.y12d{bottom:324.322533pt;}
.yff{bottom:324.418400pt;}
.y5e{bottom:324.514400pt;}
.ya7{bottom:324.514533pt;}
.y1e{bottom:328.188933pt;}
.y9a{bottom:331.193600pt;}
.y2e{bottom:339.936267pt;}
.y12c{bottom:342.994533pt;}
.yfe{bottom:343.090400pt;}
.y5d{bottom:343.181067pt;}
.ya6{bottom:343.181200pt;}
.ycf{bottom:345.617600pt;}
.y1d{bottom:346.855600pt;}
.y99{bottom:348.797600pt;}
.y2d{bottom:355.932267pt;}
.y12b{bottom:361.666533pt;}
.yfd{bottom:361.762400pt;}
.y5c{bottom:361.847733pt;}
.ya5{bottom:361.847867pt;}
.yce{bottom:363.221600pt;}
.y1c{bottom:365.522267pt;}
.y98{bottom:366.401600pt;}
.yc4{bottom:377.867067pt;}
.y12a{bottom:380.338533pt;}
.yfc{bottom:380.434400pt;}
.y5b{bottom:380.514400pt;}
.ya4{bottom:380.514533pt;}
.ycd{bottom:380.825600pt;}
.y1b{bottom:384.188933pt;}
.y2c{bottom:387.048267pt;}
.ydb{bottom:393.280933pt;}
.yc3{bottom:395.471067pt;}
.ycc{bottom:398.429600pt;}
.y129{bottom:399.010533pt;}
.yfb{bottom:399.106400pt;}
.y5a{bottom:399.181067pt;}
.ya3{bottom:399.181200pt;}
.y1a{bottom:402.855600pt;}
.y2b{bottom:403.048267pt;}
.ycb{bottom:416.033600pt;}
.y128{bottom:417.682533pt;}
.yfa{bottom:417.778400pt;}
.y59{bottom:417.847733pt;}
.ya2{bottom:417.847867pt;}
.y2a{bottom:419.048267pt;}
.y19{bottom:421.522267pt;}
.yca{bottom:433.637600pt;}
.y29{bottom:435.048267pt;}
.y127{bottom:436.354533pt;}
.yf9{bottom:436.450400pt;}
.y58{bottom:436.514400pt;}
.ya1{bottom:436.514533pt;}
.y18{bottom:440.188933pt;}
.yc7{bottom:450.227067pt;}
.y126{bottom:455.026533pt;}
.yf8{bottom:455.122400pt;}
.y57{bottom:455.181067pt;}
.y84{bottom:455.181200pt;}
.yb0{bottom:455.769200pt;}
.y17{bottom:458.855600pt;}
.yc9{bottom:460.452400pt;}
.yaf{bottom:473.373200pt;}
.y125{bottom:473.698533pt;}
.yf7{bottom:473.794400pt;}
.y8a{bottom:473.847733pt;}
.y83{bottom:473.847867pt;}
.y16{bottom:477.522267pt;}
.yc8{bottom:478.056400pt;}
.y124{bottom:492.370533pt;}
.yf6{bottom:492.466400pt;}
.y56{bottom:492.514400pt;}
.y82{bottom:492.514533pt;}
.yb7{bottom:502.938267pt;}
.y123{bottom:511.042533pt;}
.yf5{bottom:511.138400pt;}
.y15{bottom:511.154133pt;}
.y55{bottom:511.181067pt;}
.y81{bottom:511.181200pt;}
.yb6{bottom:521.608933pt;}
.y122{bottom:529.714533pt;}
.yf4{bottom:529.810400pt;}
.y54{bottom:529.847733pt;}
.y80{bottom:529.847867pt;}
.y121{bottom:548.386533pt;}
.yf3{bottom:548.482400pt;}
.y53{bottom:548.514400pt;}
.y7f{bottom:548.514533pt;}
.y120{bottom:567.058533pt;}
.yf2{bottom:567.154400pt;}
.y52{bottom:567.181067pt;}
.y7e{bottom:567.181200pt;}
.yba{bottom:574.644267pt;}
.ye4{bottom:577.001200pt;}
.y11f{bottom:585.730533pt;}
.yf1{bottom:585.826400pt;}
.y51{bottom:585.847733pt;}
.y7d{bottom:585.847867pt;}
.y14{bottom:586.513733pt;}
.yb9{bottom:592.248267pt;}
.ye3{bottom:594.605200pt;}
.y11e{bottom:604.402533pt;}
.yf0{bottom:604.498400pt;}
.y50{bottom:604.514400pt;}
.y7c{bottom:604.514533pt;}
.yb8{bottom:609.852267pt;}
.ye2{bottom:612.209200pt;}
.y13{bottom:622.995333pt;}
.y11d{bottom:623.074533pt;}
.yef{bottom:623.170400pt;}
.y4f{bottom:623.181067pt;}
.y7b{bottom:623.181200pt;}
.ye1{bottom:629.813200pt;}
.y12{bottom:640.599333pt;}
.y11c{bottom:641.746533pt;}
.yee{bottom:641.842400pt;}
.y4e{bottom:641.847733pt;}
.y7a{bottom:641.847867pt;}
.y11{bottom:658.203333pt;}
.y11b{bottom:660.418533pt;}
.y4d{bottom:660.514400pt;}
.y79{bottom:660.514533pt;}
.y89{bottom:665.796933pt;}
.y10{bottom:675.807333pt;}
.y11a{bottom:679.090533pt;}
.y4c{bottom:679.181067pt;}
.y78{bottom:679.181200pt;}
.y88{bottom:683.400933pt;}
.y9f{bottom:689.936800pt;}
.yed{bottom:691.947467pt;}
.yf{bottom:693.411333pt;}
.y119{bottom:697.762533pt;}
.y4b{bottom:697.847733pt;}
.y77{bottom:697.847867pt;}
.yc6{bottom:698.488267pt;}
.y87{bottom:701.004933pt;}
.y9e{bottom:707.540800pt;}
.yc5{bottom:716.092267pt;}
.y118{bottom:716.434533pt;}
.y4a{bottom:716.514400pt;}
.y76{bottom:716.514533pt;}
.ybc{bottom:718.837867pt;}
.ye{bottom:721.053600pt;}
.y117{bottom:735.106533pt;}
.y49{bottom:735.181067pt;}
.y75{bottom:735.181200pt;}
.ybb{bottom:736.441867pt;}
.y116{bottom:753.778533pt;}
.y74{bottom:753.847867pt;}
.yec{bottom:758.692667pt;}
.y115{bottom:772.450533pt;}
.y48{bottom:772.514400pt;}
.y73{bottom:772.514533pt;}
.yd1{bottom:774.466933pt;}
.y114{bottom:791.122533pt;}
.yeb{bottom:791.175867pt;}
.y47{bottom:791.181067pt;}
.y72{bottom:791.181200pt;}
.y8{bottom:791.526000pt;}
.yd0{bottom:792.070933pt;}
.y7{bottom:807.526000pt;}
.y113{bottom:809.794533pt;}
.yea{bottom:809.842533pt;}
.y46{bottom:809.847733pt;}
.y71{bottom:809.847867pt;}
.y6{bottom:823.526000pt;}
.y112{bottom:828.466533pt;}
.ye9{bottom:828.509200pt;}
.y45{bottom:828.514400pt;}
.y70{bottom:828.514533pt;}
.y5{bottom:839.526000pt;}
.y111{bottom:847.138533pt;}
.y44{bottom:847.181067pt;}
.y6f{bottom:847.181200pt;}
.y110{bottom:865.810533pt;}
.y43{bottom:865.847733pt;}
.y6e{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.ye8{bottom:870.692667pt;}
.y10f{bottom:884.482533pt;}
.y42{bottom:884.514400pt;}
.y6d{bottom:884.514533pt;}
.y10e{bottom:903.154533pt;}
.y41{bottom:903.181067pt;}
.y6c{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y10d{bottom:921.826533pt;}
.y40{bottom:921.847733pt;}
.y6b{bottom:921.847867pt;}
.ye7{bottom:926.692667pt;}
.y2{bottom:932.695600pt;}
.y10c{bottom:940.498533pt;}
.ya0{bottom:940.514533pt;}
.ye6{bottom:959.170533pt;}
.y3f{bottom:959.181067pt;}
.y6a{bottom:959.181200pt;}
.ye5{bottom:977.842533pt;}
.y3e{bottom:977.847733pt;}
.y69{bottom:977.847867pt;}
.yd{bottom:986.502667pt;}
.y3d{bottom:996.514400pt;}
.y68{bottom:996.514533pt;}
.y39{bottom:1030.390667pt;}
.y38{bottom:1047.724000pt;}
.y3c{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h8{height:38.226562pt;}
.he{height:38.273438pt;}
.hb{height:38.507812pt;}
.ha{height:39.000000pt;}
.h13{height:39.021333pt;}
.h9{height:42.083333pt;}
.h11{height:42.786458pt;}
.hd{height:43.333333pt;}
.h12{height:44.601562pt;}
.h10{height:46.291667pt;}
.h4{height:47.666667pt;}
.hc{height:50.500000pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.879200pt;}
.xc{left:95.167867pt;}
.xf{left:96.257467pt;}
.x7{left:106.559067pt;}
.x8{left:108.473333pt;}
.x9{left:110.313733pt;}
.x5{left:266.834667pt;}
.x6{left:281.928000pt;}
.xd{left:297.074667pt;}
.xe{left:334.814667pt;}
.x4{left:352.045067pt;}
.xb{left:576.806667pt;}
.xa{left:595.313333pt;}
.x1{left:712.140000pt;}
}




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