
    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_412093e230cf85ac3cacfe15.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_f2fcbc7873333d74df37a730.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_4e06302c70759fdd8d83b6ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.707031;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_00ec99c71ce0a91a6ff1fee0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_c80f309b10e9ff3b5aadbb5f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.870605;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_29936ad1d4beb8e02b124786.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-49.680000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:35.602080px;}
.ls58{letter-spacing:-2.489760px;}
.ls38{letter-spacing:-2.298240px;}
.ls33{letter-spacing:-2.202480px;}
.ls5a{letter-spacing:-2.154600px;}
.ls35{letter-spacing:-2.106720px;}
.ls37{letter-spacing:-1.963080px;}
.ls65{letter-spacing:-1.915200px;}
.ls44{letter-spacing:-1.867320px;}
.ls56{letter-spacing:-1.771560px;}
.ls66{letter-spacing:-1.723680px;}
.ls64{letter-spacing:-1.627920px;}
.ls5b{letter-spacing:-1.436400px;}
.ls22{letter-spacing:-1.404000px;}
.ls4f{letter-spacing:-1.305720px;}
.ls4e{letter-spacing:-1.221480px;}
.ls68{letter-spacing:-1.197000px;}
.ls47{letter-spacing:-1.149120px;}
.ls3b{letter-spacing:-1.137240px;}
.ls5c{letter-spacing:-0.972000px;}
.ls41{letter-spacing:-0.926640px;}
.ls67{letter-spacing:-0.909720px;}
.ls43{letter-spacing:-0.884520px;}
.ls31{letter-spacing:-0.861840px;}
.ls1d{letter-spacing:-0.855000px;}
.ls2a{letter-spacing:-0.828000px;}
.ls53{letter-spacing:-0.800280px;}
.ls24{letter-spacing:-0.792000px;}
.ls69{letter-spacing:-0.718200px;}
.ls39{letter-spacing:-0.670320px;}
.ls5f{letter-spacing:-0.547560px;}
.ls23{letter-spacing:-0.540000px;}
.ls3a{letter-spacing:-0.526680px;}
.ls32{letter-spacing:-0.478800px;}
.ls46{letter-spacing:-0.430920px;}
.ls4b{letter-spacing:-0.383040px;}
.ls52{letter-spacing:-0.379080px;}
.ls48{letter-spacing:-0.335160px;}
.ls20{letter-spacing:-0.324000px;}
.ls34{letter-spacing:-0.287280px;}
.ls4d{letter-spacing:-0.270000px;}
.ls21{letter-spacing:-0.252000px;}
.ls54{letter-spacing:-0.210600px;}
.ls50{letter-spacing:-0.168480px;}
.ls49{letter-spacing:-0.143640px;}
.ls60{letter-spacing:-0.047880px;}
.ls1e{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.047880px;}
.ls1c{letter-spacing:0.095760px;}
.ls19{letter-spacing:0.104040px;}
.ls5d{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.113760px;}
.ls62{letter-spacing:0.143640px;}
.ls59{letter-spacing:0.191520px;}
.ls3c{letter-spacing:0.210600px;}
.ls4c{letter-spacing:0.239400px;}
.ls2{letter-spacing:0.252000px;}
.ls18{letter-spacing:0.299520px;}
.ls30{letter-spacing:0.383040px;}
.ls6a{letter-spacing:0.430920px;}
.ls2e{letter-spacing:0.432000px;}
.ls1f{letter-spacing:0.450000px;}
.ls61{letter-spacing:0.478800px;}
.ls16{letter-spacing:0.505440px;}
.ls2b{letter-spacing:0.612000px;}
.ls14{letter-spacing:0.622440px;}
.ls10{letter-spacing:0.631800px;}
.ls2c{letter-spacing:0.684000px;}
.ls1b{letter-spacing:0.718200px;}
.ls11{letter-spacing:0.756000px;}
.ls5{letter-spacing:0.792000px;}
.ls15{letter-spacing:0.813960px;}
.lsa{letter-spacing:0.828000px;}
.ls28{letter-spacing:0.864000px;}
.ls1a{letter-spacing:0.884520px;}
.ls27{letter-spacing:0.900000px;}
.ls4a{letter-spacing:0.909720px;}
.ls40{letter-spacing:0.926640px;}
.ls63{letter-spacing:0.957600px;}
.lsf{letter-spacing:0.968760px;}
.ls26{letter-spacing:0.972000px;}
.ls3f{letter-spacing:1.010880px;}
.ls2d{letter-spacing:1.044000px;}
.ls13{letter-spacing:1.053000px;}
.ls2f{letter-spacing:1.080000px;}
.ls5e{letter-spacing:1.134000px;}
.lsd{letter-spacing:1.137240px;}
.ls25{letter-spacing:1.152000px;}
.ls45{letter-spacing:1.170000px;}
.ls55{letter-spacing:1.179360px;}
.ls6{letter-spacing:1.224000px;}
.ls17{letter-spacing:1.263600px;}
.ls1{letter-spacing:1.332000px;}
.ls3{letter-spacing:1.440000px;}
.lse{letter-spacing:1.558440px;}
.ls8{letter-spacing:1.584000px;}
.ls57{letter-spacing:1.675800px;}
.ls0{letter-spacing:1.692000px;}
.ls51{letter-spacing:1.728000px;}
.ls3d{letter-spacing:1.811160px;}
.ls42{letter-spacing:1.836000px;}
.ls3e{letter-spacing:1.979640px;}
.lsc{letter-spacing:1.980000px;}
.ls29{letter-spacing:2.016000px;}
.ls4{letter-spacing:2.232000px;}
.lsb{letter-spacing:2.304000px;}
.ls7{letter-spacing:2.592000px;}
.ls12{letter-spacing:21.744000px;}
.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;}
}
.ws25{word-spacing:-18.738000px;}
.ws31{word-spacing:-18.630000px;}
.ws3c{word-spacing:-18.036000px;}
.ws24{word-spacing:-16.902000px;}
.ws6f{word-spacing:-16.665840px;}
.ws2f{word-spacing:-16.632000px;}
.ws3b{word-spacing:-15.930000px;}
.ws72{word-spacing:-15.896160px;}
.ws2e{word-spacing:-15.225840px;}
.ws21{word-spacing:-15.163200px;}
.ws18{word-spacing:-15.034320px;}
.ws20{word-spacing:-14.994720px;}
.ws12{word-spacing:-14.986440px;}
.ws84{word-spacing:-14.938560px;}
.ws2b{word-spacing:-14.842800px;}
.ws15{word-spacing:-14.699160px;}
.ws7b{word-spacing:-14.603400px;}
.ws17{word-spacing:-14.507640px;}
.ws7d{word-spacing:-14.459760px;}
.ws35{word-spacing:-14.362920px;}
.ws79{word-spacing:-14.316120px;}
.ws85{word-spacing:-14.268240px;}
.ws22{word-spacing:-14.194440px;}
.ws34{word-spacing:-14.152320px;}
.ws13{word-spacing:-14.124600px;}
.ws7e{word-spacing:-13.789440px;}
.ws2{word-spacing:-13.635000px;}
.ws36{word-spacing:-13.310640px;}
.wsb{word-spacing:-13.284000px;}
.ws6{word-spacing:-13.248000px;}
.ws1{word-spacing:-13.185000px;}
.ws1e{word-spacing:-13.183560px;}
.ws28{word-spacing:-13.119120px;}
.ws10{word-spacing:-12.852000px;}
.ws14{word-spacing:-12.783960px;}
.ws26{word-spacing:-12.762360px;}
.ws29{word-spacing:-12.510000px;}
.wsa{word-spacing:-12.492000px;}
.ws7{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.348000px;}
.ws32{word-spacing:-12.341160px;}
.ws0{word-spacing:-12.330000px;}
.wse{word-spacing:-12.312000px;}
.ws23{word-spacing:-12.256920px;}
.ws8{word-spacing:-12.060000px;}
.ws1f{word-spacing:-12.046320px;}
.ws30{word-spacing:-11.962080px;}
.wsd{word-spacing:-11.952000px;}
.wsc{word-spacing:-11.880000px;}
.ws38{word-spacing:-11.874240px;}
.ws3d{word-spacing:-11.709360px;}
.wsf{word-spacing:-11.700000px;}
.ws33{word-spacing:-11.540880px;}
.ws3a{word-spacing:-11.539080px;}
.ws9{word-spacing:-11.268000px;}
.ws3e{word-spacing:-11.161800px;}
.ws37{word-spacing:-11.156040px;}
.ws40{word-spacing:-11.012400px;}
.ws27{word-spacing:-10.824840px;}
.ws39{word-spacing:-10.820880px;}
.ws3f{word-spacing:-10.677240px;}
.ws3{word-spacing:-10.548000px;}
.ws4{word-spacing:-10.224000px;}
.ws5{word-spacing:-9.144000px;}
.ws71{word-spacing:-4.399560px;}
.ws83{word-spacing:-2.906280px;}
.ws77{word-spacing:-2.244960px;}
.ws2c{word-spacing:-1.820880px;}
.ws48{word-spacing:-1.584000px;}
.ws4c{word-spacing:-1.440000px;}
.ws61{word-spacing:-1.263600px;}
.ws54{word-spacing:-1.170000px;}
.ws4b{word-spacing:-1.152000px;}
.ws6a{word-spacing:-1.053000px;}
.ws46{word-spacing:-0.972000px;}
.ws6e{word-spacing:-0.957600px;}
.ws53{word-spacing:-0.926640px;}
.ws47{word-spacing:-0.900000px;}
.ws49{word-spacing:-0.864000px;}
.ws1c{word-spacing:-0.751680px;}
.ws5d{word-spacing:-0.716040px;}
.ws4e{word-spacing:-0.612000px;}
.ws51{word-spacing:-0.505440px;}
.ws6d{word-spacing:-0.478800px;}
.ws4f{word-spacing:-0.383040px;}
.ws4d{word-spacing:-0.324000px;}
.ws68{word-spacing:-0.294840px;}
.ws80{word-spacing:-0.287280px;}
.ws52{word-spacing:-0.210600px;}
.ws64{word-spacing:-0.191520px;}
.ws73{word-spacing:-0.129240px;}
.ws66{word-spacing:-0.108000px;}
.ws87{word-spacing:-0.095760px;}
.ws1d{word-spacing:-0.090360px;}
.ws6c{word-spacing:-0.047880px;}
.ws5c{word-spacing:-0.042120px;}
.ws41{word-spacing:0.000000px;}
.ws6b{word-spacing:0.047880px;}
.ws67{word-spacing:0.084240px;}
.ws5b{word-spacing:0.143640px;}
.ws5f{word-spacing:0.168480px;}
.ws60{word-spacing:0.210600px;}
.ws42{word-spacing:0.252000px;}
.ws7f{word-spacing:0.287280px;}
.ws44{word-spacing:0.324000px;}
.ws70{word-spacing:0.333720px;}
.ws57{word-spacing:0.335160px;}
.ws58{word-spacing:0.383040px;}
.ws7c{word-spacing:0.397440px;}
.ws69{word-spacing:0.421200px;}
.ws55{word-spacing:0.430920px;}
.ws50{word-spacing:0.478800px;}
.ws43{word-spacing:0.540000px;}
.ws5a{word-spacing:0.622440px;}
.ws45{word-spacing:0.792000px;}
.ws4a{word-spacing:0.828000px;}
.ws86{word-spacing:0.956160px;}
.ws81{word-spacing:1.005480px;}
.ws1b{word-spacing:1.019880px;}
.ws56{word-spacing:1.149120px;}
.ws5e{word-spacing:1.305720px;}
.ws88{word-spacing:1.340640px;}
.ws62{word-spacing:1.771560px;}
.ws59{word-spacing:1.867320px;}
.ws82{word-spacing:1.963080px;}
.ws65{word-spacing:2.154600px;}
.ws63{word-spacing:2.489760px;}
.ws74{word-spacing:2.552040px;}
.ws19{word-spacing:3.557520px;}
.ws76{word-spacing:4.179960px;}
.ws75{word-spacing:4.218840px;}
.ws78{word-spacing:4.259880px;}
.ws16{word-spacing:5.329080px;}
.ws1a{word-spacing:5.367960px;}
.ws7a{word-spacing:7.898760px;}
.ws2a{word-spacing:8.569080px;}
.ws2d{word-spacing:12.207960px;}
._9{margin-left:-5.938920px;}
._a{margin-left:-4.831560px;}
._3{margin-left:-3.191040px;}
._2{margin-left:-1.980000px;}
._1{width:1.125000px;}
._0{width:2.610000px;}
._c{width:3.774600px;}
._b{width:4.928040px;}
._d{width:10.835280px;}
._4{width:419.445720px;}
._6{width:722.475720px;}
._7{width:752.797800px;}
._5{width:862.850160px;}
._8{width:1854.038520px;}
.fc7{color:rgb(12,100,171);}
.fc5{color:rgb(18,73,154);}
.fc6{color:rgb(51,51,51);}
.fc3{color:rgb(43,43,43);}
.fc2{color:rgb(171,171,171);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(0,153,204);}
.fc0{color:rgb(0,0,255);}
.fs6{font-size:29.880000px;}
.fs1{font-size:36.000000px;}
.fs4{font-size:42.120000px;}
.fs0{font-size:45.000000px;}
.fs3{font-size:47.880000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.y0{bottom:0.000000px;}
.yf3{bottom:21.530850px;}
.y87{bottom:25.800150px;}
.y14f{bottom:25.804110px;}
.yf4{bottom:25.804140px;}
.y93{bottom:40.205250px;}
.yf2{bottom:43.400040px;}
.yf1{bottom:57.800100px;}
.yaa{bottom:60.534900px;}
.y2e{bottom:62.637600px;}
.y153{bottom:70.053000px;}
.y2d{bottom:72.177600px;}
.ya9{bottom:72.234900px;}
.yf0{bottom:79.670100px;}
.y152{bottom:82.023000px;}
.y19{bottom:90.949800px;}
.y14e{bottom:93.279000px;}
.yef{bottom:101.630100px;}
.ya8{bottom:102.524700px;}
.y18{bottom:102.649800px;}
.y23{bottom:110.085000px;}
.y2c{bottom:111.998790px;}
.ya7{bottom:114.224700px;}
.y125{bottom:114.873000px;}
.y14d{bottom:115.149000px;}
.yee{bottom:123.500100px;}
.y2b{bottom:124.055640px;}
.y124{bottom:126.573000px;}
.y22{bottom:132.045150px;}
.y17{bottom:132.939750px;}
.ya6{bottom:135.149100px;}
.y14c{bottom:135.849000px;}
.yed{bottom:140.870100px;}
.y16{bottom:144.639750px;}
.y123{bottom:147.498000px;}
.y2a{bottom:148.980150px;}
.y14b{bottom:153.219000px;}
.y21{bottom:153.915000px;}
.ya5{bottom:154.589100px;}
.y15{bottom:165.564000px;}
.y122{bottom:166.938000px;}
.y20{bottom:171.285000px;}
.ya4{bottom:172.139100px;}
.yec{bottom:173.035890px;}
.y29{bottom:174.535950px;}
.y121{bottom:184.488000px;}
.y14{bottom:185.004000px;}
.y14a{bottom:185.375430px;}
.y28{bottom:186.592800px;}
.y13{bottom:202.554150px;}
.y1f{bottom:203.450550px;}
.y27{bottom:206.157750px;}
.y86{bottom:223.999950px;}
.yeb{bottom:226.817100px;}
.y120{bottom:233.695800px;}
.y85{bottom:239.209950px;}
.ya3{bottom:244.575300px;}
.y11f{bottom:245.397600px;}
.yea{bottom:248.502780px;}
.y12{bottom:251.761800px;}
.y84{bottom:252.799950px;}
.y149{bottom:253.197450px;}
.ya2{bottom:256.275300px;}
.y11{bottom:263.461950px;}
.ye9{bottom:263.537100px;}
.y1e{bottom:270.003750px;}
.y83{bottom:270.079950px;}
.y11e{bottom:274.791600px;}
.y148{bottom:275.067600px;}
.y8e{bottom:275.299050px;}
.ye8{bottom:276.677100px;}
.ye7{bottom:284.777100px;}
.y82{bottom:285.380100px;}
.ya1{bottom:285.671550px;}
.y11d{bottom:286.491600px;}
.y1d{bottom:291.963750px;}
.y10{bottom:292.858350px;}
.y147{bottom:297.027600px;}
.ya0{bottom:297.371550px;}
.y81{bottom:298.969950px;}
.y8c{bottom:299.959050px;}
.yf{bottom:304.558350px;}
.ye6{bottom:306.647100px;}
.y11c{bottom:308.496600px;}
.y80{bottom:313.009950px;}
.y146{bottom:313.137450px;}
.y1c{bottom:313.833750px;}
.y9f{bottom:318.295950px;}
.ye5{bottom:324.017100px;}
.y7f{bottom:325.070100px;}
.ye{bottom:325.482750px;}
.y11b{bottom:326.496600px;}
.y1b{bottom:331.203750px;}
.y9e{bottom:337.735950px;}
.y26{bottom:340.166790px;}
.y11a{bottom:344.406600px;}
.yd{bottom:344.922750px;}
.y145{bottom:345.298650px;}
.y9d{bottom:355.285950px;}
.ye4{bottom:356.181720px;}
.y7e{bottom:358.431600px;}
.yc{bottom:362.472600px;}
.y1a{bottom:363.366150px;}
.y7d{bottom:372.471600px;}
.y7c{bottom:384.531600px;}
.y119{bottom:393.614400px;}
.y7b{bottom:399.471600px;}
.y118{bottom:405.318600px;}
.ye3{bottom:410.693100px;}
.y7a{bottom:411.531600px;}
.y144{bottom:412.749600px;}
.yc6{bottom:413.427750px;}
.y5f{bottom:417.879750px;}
.yb{bottom:420.614400px;}
.yc5{bottom:425.127750px;}
.y79{bottom:426.471600px;}
.ya{bottom:432.314400px;}
.ye2{bottom:432.563100px;}
.y117{bottom:434.712600px;}
.y143{bottom:435.879600px;}
.y78{bottom:438.531600px;}
.y5e{bottom:439.749750px;}
.y116{bottom:446.412600px;}
.ye1{bottom:454.523100px;}
.yc4{bottom:454.524150px;}
.y142{bottom:457.839600px;}
.y77{bottom:458.989800px;}
.y5d{bottom:461.709750px;}
.y9{bottom:461.710950px;}
.yc3{bottom:466.224150px;}
.y115{bottom:469.308600px;}
.y8{bottom:473.410950px;}
.y141{bottom:473.949600px;}
.ye0{bottom:476.393100px;}
.y25{bottom:480.078900px;}
.y5c{bottom:483.579750px;}
.y114{bottom:487.308600px;}
.yc2{bottom:489.122100px;}
.y24{bottom:492.135750px;}
.ydf{bottom:493.763100px;}
.y46{bottom:496.308750px;}
.y5b{bottom:500.948760px;}
.y113{bottom:505.218450px;}
.y140{bottom:506.111790px;}
.yc1{bottom:507.122100px;}
.y45{bottom:514.308750px;}
.yc0{bottom:525.031950px;}
.yde{bottom:525.928350px;}
.y72{bottom:528.705150px;}
.y44{bottom:532.218600px;}
.y5a{bottom:533.112150px;}
.y13f{bottom:558.456600px;}
.y71{bottom:567.091350px;}
.ybf{bottom:573.346350px;}
.y104{bottom:576.761400px;}
.y13e{bottom:580.326600px;}
.y43{bottom:580.533150px;}
.ybe{bottom:585.046350px;}
.y70{bottom:585.496950px;}
.y103{bottom:588.456600px;}
.y42{bottom:592.237200px;}
.ydd{bottom:592.481550px;}
.y6f{bottom:597.554310px;}
.y13d{bottom:602.196600px;}
.y59{bottom:603.144390px;}
.ydc{bottom:614.441550px;}
.ybd{bottom:614.442900px;}
.y76{bottom:616.947600px;}
.y102{bottom:618.750600px;}
.y41{bottom:621.631200px;}
.y13c{bottom:623.882280px;}
.y58{bottom:624.474930px;}
.ybc{bottom:626.142900px;}
.y75{bottom:628.917600px;}
.y101{bottom:630.450600px;}
.y40{bottom:633.331200px;}
.ydb{bottom:636.311550px;}
.y13b{bottom:638.916600px;}
.y74{bottom:640.887600px;}
.y57{bottom:645.171060px;}
.ybb{bottom:649.040700px;}
.y100{bottom:652.455600px;}
.y73{bottom:652.947600px;}
.yda{bottom:653.681550px;}
.y3f{bottom:656.227200px;}
.y13a{bottom:657.096600px;}
.y56{bottom:662.898630px;}
.yba{bottom:667.040700px;}
.yff{bottom:670.455600px;}
.y6e{bottom:671.801340px;}
.y3e{bottom:674.227200px;}
.y6d{bottom:683.773950px;}
.yb9{bottom:684.950700px;}
.yd9{bottom:685.847100px;}
.yfe{bottom:688.365600px;}
.y139{bottom:689.262000px;}
.y3d{bottom:692.137200px;}
.y55{bottom:693.027120px;}
.y6c{bottom:695.830800px;}
.y6b{bottom:713.608800px;}
.y6a{bottom:732.552000px;}
.yb8{bottom:733.265100px;}
.y112{bottom:736.680000px;}
.y8b{bottom:738.090000px;}
.y54{bottom:742.977930px;}
.y69{bottom:744.522150px;}
.yb7{bottom:744.965100px;}
.y111{bottom:748.375200px;}
.yd8{bottom:752.400300px;}
.y138{bottom:755.815200px;}
.y68{bottom:756.583950px;}
.y53{bottom:758.012250px;}
.y3c{bottom:770.827200px;}
.y67{bottom:774.358590px;}
.yd7{bottom:774.360300px;}
.yb6{bottom:775.254750px;}
.y137{bottom:777.775200px;}
.y110{bottom:778.669200px;}
.y52{bottom:780.513840px;}
.y3b{bottom:782.522400px;}
.yb5{bottom:786.954750px;}
.y10f{bottom:790.369200px;}
.y66{bottom:792.228000px;}
.y51{bottom:795.452400px;}
.yd6{bottom:796.230150px;}
.y136{bottom:799.645050px;}
.yb4{bottom:808.959300px;}
.y65{bottom:810.907200px;}
.y10e{bottom:811.294200px;}
.y3a{bottom:812.816400px;}
.yd5{bottom:813.600150px;}
.y135{bottom:817.015200px;}
.y50{bottom:817.947930px;}
.y64{bottom:823.777200px;}
.y39{bottom:824.516400px;}
.yb3{bottom:826.959300px;}
.y10d{bottom:830.734200px;}
.y4f{bottom:832.982250px;}
.y63{bottom:841.777200px;}
.yb2{bottom:844.869300px;}
.y38{bottom:845.441400px;}
.yd4{bottom:847.022400px;}
.y10c{bottom:848.284200px;}
.y134{bottom:849.181650px;}
.y4e{bottom:851.161560px;}
.y62{bottom:858.877200px;}
.y37{bottom:864.881400px;}
.y61{bottom:870.937200px;}
.y36{bottom:882.431550px;}
.y4d{bottom:883.324950px;}
.yb1{bottom:893.183550px;}
.y10b{bottom:899.278800px;}
.y133{bottom:903.226200px;}
.yb0{bottom:904.883550px;}
.y60{bottom:907.506600px;}
.y10a{bottom:910.980450px;}
.yd3{bottom:912.318750px;}
.y92{bottom:913.680000px;}
.y132{bottom:925.186200px;}
.yd2{bottom:934.278750px;}
.yaf{bottom:935.173350px;}
.y109{bottom:940.374450px;}
.yae{bottom:946.873350px;}
.y131{bottom:947.056200px;}
.y4c{bottom:950.329800px;}
.y108{bottom:952.074450px;}
.y91{bottom:953.885250px;}
.yd1{bottom:956.148750px;}
.y130{bottom:964.426200px;}
.yad{bottom:967.797600px;}
.y35{bottom:970.948800px;}
.y107{bottom:972.999450px;}
.yd0{bottom:973.518900px;}
.y4b{bottom:975.618630px;}
.y90{bottom:981.435570px;}
.y34{bottom:982.653000px;}
.yac{bottom:987.237600px;}
.y4a{bottom:990.652950px;}
.y106{bottom:992.439450px;}
.y12f{bottom:995.962650px;}
.y8f{bottom:999.978900px;}
.yab{bottom:1004.787750px;}
.ycf{bottom:1006.941150px;}
.y105{bottom:1009.989600px;}
.y12e{bottom:1010.996970px;}
.y33{bottom:1012.047000px;}
.y49{bottom:1017.334950px;}
.y32{bottom:1023.747000px;}
.y8d{bottom:1024.639050px;}
.y48{bottom:1045.034820px;}
.y31{bottom:1046.643000px;}
.y8a{bottom:1049.209050px;}
.yce{bottom:1057.920300px;}
.y30{bottom:1064.643000px;}
.y12d{bottom:1065.376680px;}
.y89{bottom:1070.508750px;}
.ycd{bottom:1079.790300px;}
.y12c{bottom:1080.411000px;}
.yfd{bottom:1082.425650px;}
.y2f{bottom:1082.553150px;}
.y47{bottom:1083.446550px;}
.y88{bottom:1087.518750px;}
.y9c{bottom:1091.518500px;}
.y12b{bottom:1093.461000px;}
.yfc{bottom:1094.130000px;}
.ycc{bottom:1100.311740px;}
.y12a{bottom:1101.561000px;}
.y9b{bottom:1103.218350px;}
.ycb{bottom:1115.250300px;}
.y7{bottom:1120.800450px;}
.y129{bottom:1123.521000px;}
.yfb{bottom:1123.524000px;}
.y9a{bottom:1132.614750px;}
.y6{bottom:1133.040450px;}
.yfa{bottom:1135.224000px;}
.yca{bottom:1137.745830px;}
.y99{bottom:1144.314750px;}
.y128{bottom:1145.391000px;}
.yc9{bottom:1152.780150px;}
.yf9{bottom:1158.120000px;}
.y127{bottom:1162.761000px;}
.y98{bottom:1165.239150px;}
.y5{bottom:1170.076200px;}
.yc8{bottom:1170.960300px;}
.y3{bottom:1172.554800px;}
.yf8{bottom:1176.120000px;}
.y2{bottom:1183.534950px;}
.y97{bottom:1184.679150px;}
.y4{bottom:1189.731000px;}
.yf7{bottom:1194.030000px;}
.y126{bottom:1194.923400px;}
.y1{bottom:1195.504800px;}
.y96{bottom:1202.229150px;}
.yc7{bottom:1203.122550px;}
.y151{bottom:1217.848530px;}
.yf6{bottom:1217.848560px;}
.y95{bottom:1217.850240px;}
.y150{bottom:1232.248440px;}
.yf5{bottom:1232.248470px;}
.y94{bottom:1232.250150px;}
.h11{height:20.702988px;}
.h8{height:24.943359px;}
.hc{height:31.179199px;}
.h10{height:33.174668px;}
.h2{height:38.412000px;}
.he{height:43.929844px;}
.h5{height:44.942040px;}
.h6{height:44.945880px;}
.hd{height:44.955960px;}
.h1{height:48.015000px;}
.ha{height:49.937344px;}
.h4{height:51.087960px;}
.h7{height:57.618000px;}
.h3{height:60.690960px;}
.h9{height:82.535674px;}
.hf{height:88.200000px;}
.hb{height:526.410000px;}
.h0{height:1264.500000px;}
.w3{width:161.730000px;}
.w2{width:167.041500px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x14{left:39.030000px;}
.x16{left:47.970000px;}
.xc{left:50.333550px;}
.x4{left:51.612450px;}
.xf{left:53.469000px;}
.x15{left:57.867000px;}
.x17{left:60.707250px;}
.x9{left:72.230400px;}
.xb{left:78.484200px;}
.x10{left:86.530140px;}
.xa{left:88.288650px;}
.x19{left:90.000000px;}
.x13{left:97.776150px;}
.x11{left:100.819200px;}
.x12{left:115.113600px;}
.x18{left:159.347250px;}
.x1{left:175.152900px;}
.x6{left:232.916850px;}
.x5{left:251.636850px;}
.x7{left:334.164150px;}
.xe{left:337.674150px;}
.xd{left:339.538680px;}
.x8{left:351.894150px;}
.x1a{left:354.054150px;}
.x1c{left:362.285250px;}
.x1b{left:365.396160px;}
.x3{left:658.482300px;}
.x2{left:786.238500px;}
@media print{
.v1{vertical-align:-44.160000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:31.646293pt;}
.ls58{letter-spacing:-2.213120pt;}
.ls38{letter-spacing:-2.042880pt;}
.ls33{letter-spacing:-1.957760pt;}
.ls5a{letter-spacing:-1.915200pt;}
.ls35{letter-spacing:-1.872640pt;}
.ls37{letter-spacing:-1.744960pt;}
.ls65{letter-spacing:-1.702400pt;}
.ls44{letter-spacing:-1.659840pt;}
.ls56{letter-spacing:-1.574720pt;}
.ls66{letter-spacing:-1.532160pt;}
.ls64{letter-spacing:-1.447040pt;}
.ls5b{letter-spacing:-1.276800pt;}
.ls22{letter-spacing:-1.248000pt;}
.ls4f{letter-spacing:-1.160640pt;}
.ls4e{letter-spacing:-1.085760pt;}
.ls68{letter-spacing:-1.064000pt;}
.ls47{letter-spacing:-1.021440pt;}
.ls3b{letter-spacing:-1.010880pt;}
.ls5c{letter-spacing:-0.864000pt;}
.ls41{letter-spacing:-0.823680pt;}
.ls67{letter-spacing:-0.808640pt;}
.ls43{letter-spacing:-0.786240pt;}
.ls31{letter-spacing:-0.766080pt;}
.ls1d{letter-spacing:-0.760000pt;}
.ls2a{letter-spacing:-0.736000pt;}
.ls53{letter-spacing:-0.711360pt;}
.ls24{letter-spacing:-0.704000pt;}
.ls69{letter-spacing:-0.638400pt;}
.ls39{letter-spacing:-0.595840pt;}
.ls5f{letter-spacing:-0.486720pt;}
.ls23{letter-spacing:-0.480000pt;}
.ls3a{letter-spacing:-0.468160pt;}
.ls32{letter-spacing:-0.425600pt;}
.ls46{letter-spacing:-0.383040pt;}
.ls4b{letter-spacing:-0.340480pt;}
.ls52{letter-spacing:-0.336960pt;}
.ls48{letter-spacing:-0.297920pt;}
.ls20{letter-spacing:-0.288000pt;}
.ls34{letter-spacing:-0.255360pt;}
.ls4d{letter-spacing:-0.240000pt;}
.ls21{letter-spacing:-0.224000pt;}
.ls54{letter-spacing:-0.187200pt;}
.ls50{letter-spacing:-0.149760pt;}
.ls49{letter-spacing:-0.127680pt;}
.ls60{letter-spacing:-0.042560pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.042560pt;}
.ls1c{letter-spacing:0.085120pt;}
.ls19{letter-spacing:0.092480pt;}
.ls5d{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.101120pt;}
.ls62{letter-spacing:0.127680pt;}
.ls59{letter-spacing:0.170240pt;}
.ls3c{letter-spacing:0.187200pt;}
.ls4c{letter-spacing:0.212800pt;}
.ls2{letter-spacing:0.224000pt;}
.ls18{letter-spacing:0.266240pt;}
.ls30{letter-spacing:0.340480pt;}
.ls6a{letter-spacing:0.383040pt;}
.ls2e{letter-spacing:0.384000pt;}
.ls1f{letter-spacing:0.400000pt;}
.ls61{letter-spacing:0.425600pt;}
.ls16{letter-spacing:0.449280pt;}
.ls2b{letter-spacing:0.544000pt;}
.ls14{letter-spacing:0.553280pt;}
.ls10{letter-spacing:0.561600pt;}
.ls2c{letter-spacing:0.608000pt;}
.ls1b{letter-spacing:0.638400pt;}
.ls11{letter-spacing:0.672000pt;}
.ls5{letter-spacing:0.704000pt;}
.ls15{letter-spacing:0.723520pt;}
.lsa{letter-spacing:0.736000pt;}
.ls28{letter-spacing:0.768000pt;}
.ls1a{letter-spacing:0.786240pt;}
.ls27{letter-spacing:0.800000pt;}
.ls4a{letter-spacing:0.808640pt;}
.ls40{letter-spacing:0.823680pt;}
.ls63{letter-spacing:0.851200pt;}
.lsf{letter-spacing:0.861120pt;}
.ls26{letter-spacing:0.864000pt;}
.ls3f{letter-spacing:0.898560pt;}
.ls2d{letter-spacing:0.928000pt;}
.ls13{letter-spacing:0.936000pt;}
.ls2f{letter-spacing:0.960000pt;}
.ls5e{letter-spacing:1.008000pt;}
.lsd{letter-spacing:1.010880pt;}
.ls25{letter-spacing:1.024000pt;}
.ls45{letter-spacing:1.040000pt;}
.ls55{letter-spacing:1.048320pt;}
.ls6{letter-spacing:1.088000pt;}
.ls17{letter-spacing:1.123200pt;}
.ls1{letter-spacing:1.184000pt;}
.ls3{letter-spacing:1.280000pt;}
.lse{letter-spacing:1.385280pt;}
.ls8{letter-spacing:1.408000pt;}
.ls57{letter-spacing:1.489600pt;}
.ls0{letter-spacing:1.504000pt;}
.ls51{letter-spacing:1.536000pt;}
.ls3d{letter-spacing:1.609920pt;}
.ls42{letter-spacing:1.632000pt;}
.ls3e{letter-spacing:1.759680pt;}
.lsc{letter-spacing:1.760000pt;}
.ls29{letter-spacing:1.792000pt;}
.ls4{letter-spacing:1.984000pt;}
.lsb{letter-spacing:2.048000pt;}
.ls7{letter-spacing:2.304000pt;}
.ls12{letter-spacing:19.328000pt;}
.ws25{word-spacing:-16.656000pt;}
.ws31{word-spacing:-16.560000pt;}
.ws3c{word-spacing:-16.032000pt;}
.ws24{word-spacing:-15.024000pt;}
.ws6f{word-spacing:-14.814080pt;}
.ws2f{word-spacing:-14.784000pt;}
.ws3b{word-spacing:-14.160000pt;}
.ws72{word-spacing:-14.129920pt;}
.ws2e{word-spacing:-13.534080pt;}
.ws21{word-spacing:-13.478400pt;}
.ws18{word-spacing:-13.363840pt;}
.ws20{word-spacing:-13.328640pt;}
.ws12{word-spacing:-13.321280pt;}
.ws84{word-spacing:-13.278720pt;}
.ws2b{word-spacing:-13.193600pt;}
.ws15{word-spacing:-13.065920pt;}
.ws7b{word-spacing:-12.980800pt;}
.ws17{word-spacing:-12.895680pt;}
.ws7d{word-spacing:-12.853120pt;}
.ws35{word-spacing:-12.767040pt;}
.ws79{word-spacing:-12.725440pt;}
.ws85{word-spacing:-12.682880pt;}
.ws22{word-spacing:-12.617280pt;}
.ws34{word-spacing:-12.579840pt;}
.ws13{word-spacing:-12.555200pt;}
.ws7e{word-spacing:-12.257280pt;}
.ws2{word-spacing:-12.120000pt;}
.ws36{word-spacing:-11.831680pt;}
.wsb{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.776000pt;}
.ws1{word-spacing:-11.720000pt;}
.ws1e{word-spacing:-11.718720pt;}
.ws28{word-spacing:-11.661440pt;}
.ws10{word-spacing:-11.424000pt;}
.ws14{word-spacing:-11.363520pt;}
.ws26{word-spacing:-11.344320pt;}
.ws29{word-spacing:-11.120000pt;}
.wsa{word-spacing:-11.104000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.976000pt;}
.ws32{word-spacing:-10.969920pt;}
.ws0{word-spacing:-10.960000pt;}
.wse{word-spacing:-10.944000pt;}
.ws23{word-spacing:-10.895040pt;}
.ws8{word-spacing:-10.720000pt;}
.ws1f{word-spacing:-10.707840pt;}
.ws30{word-spacing:-10.632960pt;}
.wsd{word-spacing:-10.624000pt;}
.wsc{word-spacing:-10.560000pt;}
.ws38{word-spacing:-10.554880pt;}
.ws3d{word-spacing:-10.408320pt;}
.wsf{word-spacing:-10.400000pt;}
.ws33{word-spacing:-10.258560pt;}
.ws3a{word-spacing:-10.256960pt;}
.ws9{word-spacing:-10.016000pt;}
.ws3e{word-spacing:-9.921600pt;}
.ws37{word-spacing:-9.916480pt;}
.ws40{word-spacing:-9.788800pt;}
.ws27{word-spacing:-9.622080pt;}
.ws39{word-spacing:-9.618560pt;}
.ws3f{word-spacing:-9.490880pt;}
.ws3{word-spacing:-9.376000pt;}
.ws4{word-spacing:-9.088000pt;}
.ws5{word-spacing:-8.128000pt;}
.ws71{word-spacing:-3.910720pt;}
.ws83{word-spacing:-2.583360pt;}
.ws77{word-spacing:-1.995520pt;}
.ws2c{word-spacing:-1.618560pt;}
.ws48{word-spacing:-1.408000pt;}
.ws4c{word-spacing:-1.280000pt;}
.ws61{word-spacing:-1.123200pt;}
.ws54{word-spacing:-1.040000pt;}
.ws4b{word-spacing:-1.024000pt;}
.ws6a{word-spacing:-0.936000pt;}
.ws46{word-spacing:-0.864000pt;}
.ws6e{word-spacing:-0.851200pt;}
.ws53{word-spacing:-0.823680pt;}
.ws47{word-spacing:-0.800000pt;}
.ws49{word-spacing:-0.768000pt;}
.ws1c{word-spacing:-0.668160pt;}
.ws5d{word-spacing:-0.636480pt;}
.ws4e{word-spacing:-0.544000pt;}
.ws51{word-spacing:-0.449280pt;}
.ws6d{word-spacing:-0.425600pt;}
.ws4f{word-spacing:-0.340480pt;}
.ws4d{word-spacing:-0.288000pt;}
.ws68{word-spacing:-0.262080pt;}
.ws80{word-spacing:-0.255360pt;}
.ws52{word-spacing:-0.187200pt;}
.ws64{word-spacing:-0.170240pt;}
.ws73{word-spacing:-0.114880pt;}
.ws66{word-spacing:-0.096000pt;}
.ws87{word-spacing:-0.085120pt;}
.ws1d{word-spacing:-0.080320pt;}
.ws6c{word-spacing:-0.042560pt;}
.ws5c{word-spacing:-0.037440pt;}
.ws41{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.042560pt;}
.ws67{word-spacing:0.074880pt;}
.ws5b{word-spacing:0.127680pt;}
.ws5f{word-spacing:0.149760pt;}
.ws60{word-spacing:0.187200pt;}
.ws42{word-spacing:0.224000pt;}
.ws7f{word-spacing:0.255360pt;}
.ws44{word-spacing:0.288000pt;}
.ws70{word-spacing:0.296640pt;}
.ws57{word-spacing:0.297920pt;}
.ws58{word-spacing:0.340480pt;}
.ws7c{word-spacing:0.353280pt;}
.ws69{word-spacing:0.374400pt;}
.ws55{word-spacing:0.383040pt;}
.ws50{word-spacing:0.425600pt;}
.ws43{word-spacing:0.480000pt;}
.ws5a{word-spacing:0.553280pt;}
.ws45{word-spacing:0.704000pt;}
.ws4a{word-spacing:0.736000pt;}
.ws86{word-spacing:0.849920pt;}
.ws81{word-spacing:0.893760pt;}
.ws1b{word-spacing:0.906560pt;}
.ws56{word-spacing:1.021440pt;}
.ws5e{word-spacing:1.160640pt;}
.ws88{word-spacing:1.191680pt;}
.ws62{word-spacing:1.574720pt;}
.ws59{word-spacing:1.659840pt;}
.ws82{word-spacing:1.744960pt;}
.ws65{word-spacing:1.915200pt;}
.ws63{word-spacing:2.213120pt;}
.ws74{word-spacing:2.268480pt;}
.ws19{word-spacing:3.162240pt;}
.ws76{word-spacing:3.715520pt;}
.ws75{word-spacing:3.750080pt;}
.ws78{word-spacing:3.786560pt;}
.ws16{word-spacing:4.736960pt;}
.ws1a{word-spacing:4.771520pt;}
.ws7a{word-spacing:7.021120pt;}
.ws2a{word-spacing:7.616960pt;}
.ws2d{word-spacing:10.851520pt;}
._9{margin-left:-5.279040pt;}
._a{margin-left:-4.294720pt;}
._3{margin-left:-2.836480pt;}
._2{margin-left:-1.760000pt;}
._1{width:1.000000pt;}
._0{width:2.320000pt;}
._c{width:3.355200pt;}
._b{width:4.380480pt;}
._d{width:9.631360pt;}
._4{width:372.840640pt;}
._6{width:642.200640pt;}
._7{width:669.153600pt;}
._5{width:766.977920pt;}
._8{width:1648.034240pt;}
.fs6{font-size:26.560000pt;}
.fs1{font-size:32.000000pt;}
.fs4{font-size:37.440000pt;}
.fs0{font-size:40.000000pt;}
.fs3{font-size:42.560000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.y0{bottom:0.000000pt;}
.yf3{bottom:19.138533pt;}
.y87{bottom:22.933467pt;}
.y14f{bottom:22.936987pt;}
.yf4{bottom:22.937013pt;}
.y93{bottom:35.738000pt;}
.yf2{bottom:38.577813pt;}
.yf1{bottom:51.377867pt;}
.yaa{bottom:53.808800pt;}
.y2e{bottom:55.677867pt;}
.y153{bottom:62.269333pt;}
.y2d{bottom:64.157867pt;}
.ya9{bottom:64.208800pt;}
.yf0{bottom:70.817867pt;}
.y152{bottom:72.909333pt;}
.y19{bottom:80.844267pt;}
.y14e{bottom:82.914667pt;}
.yef{bottom:90.337867pt;}
.ya8{bottom:91.133067pt;}
.y18{bottom:91.244267pt;}
.y23{bottom:97.853333pt;}
.y2c{bottom:99.554480pt;}
.ya7{bottom:101.533067pt;}
.y125{bottom:102.109333pt;}
.y14d{bottom:102.354667pt;}
.yee{bottom:109.777867pt;}
.y2b{bottom:110.271680pt;}
.y124{bottom:112.509333pt;}
.y22{bottom:117.373467pt;}
.y17{bottom:118.168667pt;}
.ya6{bottom:120.132533pt;}
.y14c{bottom:120.754667pt;}
.yed{bottom:125.217867pt;}
.y16{bottom:128.568667pt;}
.y123{bottom:131.109333pt;}
.y2a{bottom:132.426800pt;}
.y14b{bottom:136.194667pt;}
.y21{bottom:136.813333pt;}
.ya5{bottom:137.412533pt;}
.y15{bottom:147.168000pt;}
.y122{bottom:148.389333pt;}
.y20{bottom:152.253333pt;}
.ya4{bottom:153.012533pt;}
.yec{bottom:153.809680pt;}
.y29{bottom:155.143067pt;}
.y121{bottom:163.989333pt;}
.y14{bottom:164.448000pt;}
.y14a{bottom:164.778160pt;}
.y28{bottom:165.860267pt;}
.y13{bottom:180.048133pt;}
.y1f{bottom:180.844933pt;}
.y27{bottom:183.251333pt;}
.y86{bottom:199.111067pt;}
.yeb{bottom:201.615200pt;}
.y120{bottom:207.729600pt;}
.y85{bottom:212.631067pt;}
.ya3{bottom:217.400267pt;}
.y11f{bottom:218.131200pt;}
.yea{bottom:220.891360pt;}
.y12{bottom:223.788267pt;}
.y84{bottom:224.711067pt;}
.y149{bottom:225.064400pt;}
.ya2{bottom:227.800267pt;}
.y11{bottom:234.188400pt;}
.ye9{bottom:234.255200pt;}
.y1e{bottom:240.003333pt;}
.y83{bottom:240.071067pt;}
.y11e{bottom:244.259200pt;}
.y148{bottom:244.504533pt;}
.y8e{bottom:244.710267pt;}
.ye8{bottom:245.935200pt;}
.ye7{bottom:253.135200pt;}
.y82{bottom:253.671200pt;}
.ya1{bottom:253.930267pt;}
.y11d{bottom:254.659200pt;}
.y1d{bottom:259.523333pt;}
.y10{bottom:260.318533pt;}
.y147{bottom:264.024533pt;}
.ya0{bottom:264.330267pt;}
.y81{bottom:265.751067pt;}
.y8c{bottom:266.630267pt;}
.yf{bottom:270.718533pt;}
.ye6{bottom:272.575200pt;}
.y11c{bottom:274.219200pt;}
.y80{bottom:278.231067pt;}
.y146{bottom:278.344400pt;}
.y1c{bottom:278.963333pt;}
.y9f{bottom:282.929733pt;}
.ye5{bottom:288.015200pt;}
.y7f{bottom:288.951200pt;}
.ye{bottom:289.318000pt;}
.y11b{bottom:290.219200pt;}
.y1b{bottom:294.403333pt;}
.y9e{bottom:300.209733pt;}
.y26{bottom:302.370480pt;}
.y11a{bottom:306.139200pt;}
.yd{bottom:306.598000pt;}
.y145{bottom:306.932133pt;}
.y9d{bottom:315.809733pt;}
.ye4{bottom:316.605973pt;}
.y7e{bottom:318.605867pt;}
.yc{bottom:322.197867pt;}
.y1a{bottom:322.992133pt;}
.y7d{bottom:331.085867pt;}
.y7c{bottom:341.805867pt;}
.y119{bottom:349.879467pt;}
.y7b{bottom:355.085867pt;}
.y118{bottom:360.283200pt;}
.ye3{bottom:365.060533pt;}
.y7a{bottom:365.805867pt;}
.y144{bottom:366.888533pt;}
.yc6{bottom:367.491333pt;}
.y5f{bottom:371.448667pt;}
.yb{bottom:373.879467pt;}
.yc5{bottom:377.891333pt;}
.y79{bottom:379.085867pt;}
.ya{bottom:384.279467pt;}
.ye2{bottom:384.500533pt;}
.y117{bottom:386.411200pt;}
.y143{bottom:387.448533pt;}
.y78{bottom:389.805867pt;}
.y5e{bottom:390.888667pt;}
.y116{bottom:396.811200pt;}
.ye1{bottom:404.020533pt;}
.yc4{bottom:404.021467pt;}
.y142{bottom:406.968533pt;}
.y77{bottom:407.990933pt;}
.y5d{bottom:410.408667pt;}
.y9{bottom:410.409733pt;}
.yc3{bottom:414.421467pt;}
.y115{bottom:417.163200pt;}
.y8{bottom:420.809733pt;}
.y141{bottom:421.288533pt;}
.ye0{bottom:423.460533pt;}
.y25{bottom:426.736800pt;}
.y5c{bottom:429.848667pt;}
.y114{bottom:433.163200pt;}
.yc2{bottom:434.775200pt;}
.y24{bottom:437.454000pt;}
.ydf{bottom:438.900533pt;}
.y46{bottom:441.163333pt;}
.y5b{bottom:445.287787pt;}
.y113{bottom:449.083067pt;}
.y140{bottom:449.877147pt;}
.yc1{bottom:450.775200pt;}
.y45{bottom:457.163333pt;}
.yc0{bottom:466.695067pt;}
.yde{bottom:467.491867pt;}
.y72{bottom:469.960133pt;}
.y44{bottom:473.083200pt;}
.y5a{bottom:473.877467pt;}
.y13f{bottom:496.405867pt;}
.y71{bottom:504.081200pt;}
.ybf{bottom:509.641200pt;}
.y104{bottom:512.676800pt;}
.y13e{bottom:515.845867pt;}
.y43{bottom:516.029467pt;}
.ybe{bottom:520.041200pt;}
.y70{bottom:520.441733pt;}
.y103{bottom:523.072533pt;}
.y42{bottom:526.433067pt;}
.ydd{bottom:526.650267pt;}
.y6f{bottom:531.159387pt;}
.y13d{bottom:535.285867pt;}
.y59{bottom:536.128347pt;}
.ydc{bottom:546.170267pt;}
.ybd{bottom:546.171467pt;}
.y76{bottom:548.397867pt;}
.y102{bottom:550.000533pt;}
.y41{bottom:552.561067pt;}
.y13c{bottom:554.562027pt;}
.y58{bottom:555.088827pt;}
.ybc{bottom:556.571467pt;}
.y75{bottom:559.037867pt;}
.y101{bottom:560.400533pt;}
.y40{bottom:562.961067pt;}
.ydb{bottom:565.610267pt;}
.y13b{bottom:567.925867pt;}
.y74{bottom:569.677867pt;}
.y57{bottom:573.485387pt;}
.ybb{bottom:576.925067pt;}
.y100{bottom:579.960533pt;}
.y73{bottom:580.397867pt;}
.yda{bottom:581.050267pt;}
.y3f{bottom:583.313067pt;}
.y13a{bottom:584.085867pt;}
.y56{bottom:589.243227pt;}
.yba{bottom:592.925067pt;}
.yff{bottom:595.960533pt;}
.y6e{bottom:597.156747pt;}
.y3e{bottom:599.313067pt;}
.y6d{bottom:607.799067pt;}
.yb9{bottom:608.845067pt;}
.yd9{bottom:609.641867pt;}
.yfe{bottom:611.880533pt;}
.y139{bottom:612.677333pt;}
.y3d{bottom:615.233067pt;}
.y55{bottom:616.024107pt;}
.y6c{bottom:618.516267pt;}
.y6b{bottom:634.318933pt;}
.y6a{bottom:651.157333pt;}
.yb8{bottom:651.791200pt;}
.y112{bottom:654.826667pt;}
.y8b{bottom:656.080000pt;}
.y54{bottom:660.424827pt;}
.y69{bottom:661.797467pt;}
.yb7{bottom:662.191200pt;}
.y111{bottom:665.222400pt;}
.yd8{bottom:668.800267pt;}
.y138{bottom:671.835733pt;}
.y68{bottom:672.519067pt;}
.y53{bottom:673.788667pt;}
.y3c{bottom:685.179733pt;}
.y67{bottom:688.318747pt;}
.yd7{bottom:688.320267pt;}
.yb6{bottom:689.115333pt;}
.y137{bottom:691.355733pt;}
.y110{bottom:692.150400pt;}
.y52{bottom:693.790080pt;}
.y3b{bottom:695.575467pt;}
.yb5{bottom:699.515333pt;}
.y10f{bottom:702.550400pt;}
.y66{bottom:704.202667pt;}
.y51{bottom:707.068800pt;}
.yd6{bottom:707.760133pt;}
.y136{bottom:710.795600pt;}
.yb4{bottom:719.074933pt;}
.y65{bottom:720.806400pt;}
.y10e{bottom:721.150400pt;}
.y3a{bottom:722.503467pt;}
.yd5{bottom:723.200133pt;}
.y135{bottom:726.235733pt;}
.y50{bottom:727.064827pt;}
.y64{bottom:732.246400pt;}
.y39{bottom:732.903467pt;}
.yb3{bottom:735.074933pt;}
.y10d{bottom:738.430400pt;}
.y4f{bottom:740.428667pt;}
.y63{bottom:748.246400pt;}
.yb2{bottom:750.994933pt;}
.y38{bottom:751.503467pt;}
.yd4{bottom:752.908800pt;}
.y10c{bottom:754.030400pt;}
.y134{bottom:754.828133pt;}
.y4e{bottom:756.588053pt;}
.y62{bottom:763.446400pt;}
.y37{bottom:768.783467pt;}
.y61{bottom:774.166400pt;}
.y36{bottom:784.383600pt;}
.y4d{bottom:785.177733pt;}
.yb1{bottom:793.940933pt;}
.y10b{bottom:799.358933pt;}
.y133{bottom:802.867733pt;}
.yb0{bottom:804.340933pt;}
.y60{bottom:806.672533pt;}
.y10a{bottom:809.760400pt;}
.yd3{bottom:810.950000pt;}
.y92{bottom:812.160000pt;}
.y132{bottom:822.387733pt;}
.yd2{bottom:830.470000pt;}
.yaf{bottom:831.265200pt;}
.y109{bottom:835.888400pt;}
.yae{bottom:841.665200pt;}
.y131{bottom:841.827733pt;}
.y4c{bottom:844.737600pt;}
.y108{bottom:846.288400pt;}
.y91{bottom:847.898000pt;}
.yd1{bottom:849.910000pt;}
.y130{bottom:857.267733pt;}
.yad{bottom:860.264533pt;}
.y35{bottom:863.065600pt;}
.y107{bottom:864.888400pt;}
.yd0{bottom:865.350133pt;}
.y4b{bottom:867.216560pt;}
.y90{bottom:872.387173pt;}
.y34{bottom:873.469333pt;}
.yac{bottom:877.544533pt;}
.y4a{bottom:880.580400pt;}
.y106{bottom:882.168400pt;}
.y12f{bottom:885.300133pt;}
.y8f{bottom:888.870133pt;}
.yab{bottom:893.144667pt;}
.ycf{bottom:895.058800pt;}
.y105{bottom:897.768533pt;}
.y12e{bottom:898.663973pt;}
.y33{bottom:899.597333pt;}
.y49{bottom:904.297733pt;}
.y32{bottom:909.997333pt;}
.y8d{bottom:910.790267pt;}
.y48{bottom:928.919840pt;}
.y31{bottom:930.349333pt;}
.y8a{bottom:932.630267pt;}
.yce{bottom:940.373600pt;}
.y30{bottom:946.349333pt;}
.y12d{bottom:947.001493pt;}
.y89{bottom:951.563333pt;}
.ycd{bottom:959.813600pt;}
.y12c{bottom:960.365333pt;}
.yfd{bottom:962.156133pt;}
.y2f{bottom:962.269467pt;}
.y47{bottom:963.063600pt;}
.y88{bottom:966.683333pt;}
.y9c{bottom:970.238667pt;}
.y12b{bottom:971.965333pt;}
.yfc{bottom:972.560000pt;}
.ycc{bottom:978.054880pt;}
.y12a{bottom:979.165333pt;}
.y9b{bottom:980.638533pt;}
.ycb{bottom:991.333600pt;}
.y7{bottom:996.267067pt;}
.y129{bottom:998.685333pt;}
.yfb{bottom:998.688000pt;}
.y9a{bottom:1006.768667pt;}
.y6{bottom:1007.147067pt;}
.yfa{bottom:1009.088000pt;}
.yca{bottom:1011.329627pt;}
.y99{bottom:1017.168667pt;}
.y128{bottom:1018.125333pt;}
.yc9{bottom:1024.693467pt;}
.yf9{bottom:1029.440000pt;}
.y127{bottom:1033.565333pt;}
.y98{bottom:1035.768133pt;}
.y5{bottom:1040.067733pt;}
.yc8{bottom:1040.853600pt;}
.y3{bottom:1042.270933pt;}
.yf8{bottom:1045.440000pt;}
.y2{bottom:1052.031067pt;}
.y97{bottom:1053.048133pt;}
.y4{bottom:1057.538667pt;}
.yf7{bottom:1061.360000pt;}
.y126{bottom:1062.154133pt;}
.y1{bottom:1062.670933pt;}
.y96{bottom:1068.648133pt;}
.yc7{bottom:1069.442267pt;}
.y151{bottom:1082.532027pt;}
.yf6{bottom:1082.532053pt;}
.y95{bottom:1082.533547pt;}
.y150{bottom:1095.331947pt;}
.yf5{bottom:1095.331973pt;}
.y94{bottom:1095.333467pt;}
.h11{height:18.402656pt;}
.h8{height:22.171875pt;}
.hc{height:27.714844pt;}
.h10{height:29.488594pt;}
.h2{height:34.144000pt;}
.he{height:39.048750pt;}
.h5{height:39.948480pt;}
.h6{height:39.951893pt;}
.hd{height:39.960853pt;}
.h1{height:42.680000pt;}
.ha{height:44.388750pt;}
.h4{height:45.411520pt;}
.h7{height:51.216000pt;}
.h3{height:53.947520pt;}
.h9{height:73.365043pt;}
.hf{height:78.400000pt;}
.hb{height:467.920000pt;}
.h0{height:1124.000000pt;}
.w3{width:143.760000pt;}
.w2{width:148.481333pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x14{left:34.693333pt;}
.x16{left:42.640000pt;}
.xc{left:44.740933pt;}
.x4{left:45.877733pt;}
.xf{left:47.528000pt;}
.x15{left:51.437333pt;}
.x17{left:53.962000pt;}
.x9{left:64.204800pt;}
.xb{left:69.763733pt;}
.x10{left:76.915680pt;}
.xa{left:78.478800pt;}
.x19{left:80.000000pt;}
.x13{left:86.912133pt;}
.x11{left:89.617067pt;}
.x12{left:102.323200pt;}
.x18{left:141.642000pt;}
.x1{left:155.691467pt;}
.x6{left:207.037200pt;}
.x5{left:223.677200pt;}
.x7{left:297.034800pt;}
.xe{left:300.154800pt;}
.xd{left:301.812160pt;}
.x8{left:312.794800pt;}
.x1a{left:314.714800pt;}
.x1c{left:322.031333pt;}
.x1b{left:324.796587pt;}
.x3{left:585.317600pt;}
.x2{left:698.878667pt;}
}




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