
    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_cf50eb5d3c2ad56c9eba3de2.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_1bc20bb99e47d2bb79cdabeb.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_2e3577b8be6aca3b80f3e6d7.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_a7be59bf046da733b3142f60.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_a0c61884e147bf2a8d38d4ab.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960938;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);}
.v3{vertical-align:-56.520000px;}
.v1{vertical-align:-9.687600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.720000px;}
.ls58{letter-spacing:-2.489760px;}
.ls67{letter-spacing:-2.346120px;}
.ls63{letter-spacing:-2.298240px;}
.ls31{letter-spacing:-2.202480px;}
.ls59{letter-spacing:-2.154600px;}
.ls48{letter-spacing:-2.106720px;}
.ls49{letter-spacing:-1.963080px;}
.ls66{letter-spacing:-1.915200px;}
.ls64{letter-spacing:-1.867320px;}
.ls56{letter-spacing:-1.771560px;}
.ls65{letter-spacing:-1.723680px;}
.ls47{letter-spacing:-1.627920px;}
.ls4a{letter-spacing:-1.580040px;}
.ls5a{letter-spacing:-1.436400px;}
.ls22{letter-spacing:-1.404000px;}
.ls3a{letter-spacing:-1.388520px;}
.ls50{letter-spacing:-1.305720px;}
.ls6b{letter-spacing:-1.292760px;}
.ls4d{letter-spacing:-1.221480px;}
.ls3c{letter-spacing:-1.137240px;}
.ls5b{letter-spacing:-0.972000px;}
.ls3f{letter-spacing:-0.926640px;}
.ls69{letter-spacing:-0.884520px;}
.ls33{letter-spacing:-0.861840px;}
.ls1d{letter-spacing:-0.855000px;}
.ls2b{letter-spacing:-0.828000px;}
.ls68{letter-spacing:-0.813960px;}
.ls24{letter-spacing:-0.792000px;}
.ls2f{letter-spacing:-0.756000px;}
.ls41{letter-spacing:-0.670320px;}
.ls5f{letter-spacing:-0.547560px;}
.ls23{letter-spacing:-0.540000px;}
.ls6c{letter-spacing:-0.526680px;}
.ls37{letter-spacing:-0.478800px;}
.ls46{letter-spacing:-0.430920px;}
.ls44{letter-spacing:-0.383040px;}
.ls54{letter-spacing:-0.379080px;}
.ls34{letter-spacing:-0.335160px;}
.ls20{letter-spacing:-0.324000px;}
.ls32{letter-spacing:-0.287280px;}
.ls4b{letter-spacing:-0.270000px;}
.ls21{letter-spacing:-0.252000px;}
.ls35{letter-spacing:-0.239400px;}
.ls62{letter-spacing:-0.191520px;}
.ls51{letter-spacing:-0.168480px;}
.ls45{letter-spacing:-0.143640px;}
.ls60{letter-spacing:-0.047880px;}
.ls1e{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.047880px;}
.ls4e{letter-spacing:0.084240px;}
.ls1c{letter-spacing:0.095760px;}
.ls5c{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.113760px;}
.ls19{letter-spacing:0.116280px;}
.ls1b{letter-spacing:0.143640px;}
.ls42{letter-spacing:0.191520px;}
.ls4c{letter-spacing:0.210600px;}
.ls43{letter-spacing:0.239400px;}
.ls2{letter-spacing:0.252000px;}
.ls16{letter-spacing:0.299520px;}
.lsc{letter-spacing:0.383040px;}
.ls6a{letter-spacing:0.430920px;}
.ls1f{letter-spacing:0.450000px;}
.ls14{letter-spacing:0.505440px;}
.ls2c{letter-spacing:0.612000px;}
.ls10{letter-spacing:0.622440px;}
.lse{letter-spacing:0.631800px;}
.ls2d{letter-spacing:0.684000px;}
.ls3b{letter-spacing:0.718200px;}
.lsf{letter-spacing:0.756000px;}
.ls11{letter-spacing:0.766080px;}
.ls5{letter-spacing:0.792000px;}
.ls9{letter-spacing:0.828000px;}
.ls61{letter-spacing:0.861840px;}
.ls29{letter-spacing:0.864000px;}
.ls1a{letter-spacing:0.884520px;}
.ls27{letter-spacing:0.900000px;}
.ls38{letter-spacing:0.909720px;}
.ls3e{letter-spacing:0.926640px;}
.ls39{letter-spacing:0.957600px;}
.ls18{letter-spacing:0.968760px;}
.ls26{letter-spacing:0.972000px;}
.ls3d{letter-spacing:1.010880px;}
.ls2e{letter-spacing:1.044000px;}
.ls5e{letter-spacing:1.053000px;}
.ls30{letter-spacing:1.080000px;}
.ls5d{letter-spacing:1.134000px;}
.ls17{letter-spacing:1.137240px;}
.ls25{letter-spacing:1.152000px;}
.ls55{letter-spacing:1.179360px;}
.ls6{letter-spacing:1.224000px;}
.ls15{letter-spacing:1.263600px;}
.ls1{letter-spacing:1.332000px;}
.ls3{letter-spacing:1.440000px;}
.lsd{letter-spacing:1.558440px;}
.ls28{letter-spacing:1.584000px;}
.ls57{letter-spacing:1.675800px;}
.ls0{letter-spacing:1.692000px;}
.ls52{letter-spacing:1.728000px;}
.ls4f{letter-spacing:1.811160px;}
.ls40{letter-spacing:1.836000px;}
.ls53{letter-spacing:1.979640px;}
.lsb{letter-spacing:1.980000px;}
.ls2a{letter-spacing:2.016000px;}
.ls4{letter-spacing:2.232000px;}
.lsa{letter-spacing:2.304000px;}
.ls7{letter-spacing:2.592000px;}
.ls12{letter-spacing:49.034880px;}
.ls13{letter-spacing:51.914880px;}
.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;}
}
.ws22{word-spacing:-18.738000px;}
.ws33{word-spacing:-18.630000px;}
.ws40{word-spacing:-18.036000px;}
.ws21{word-spacing:-16.902000px;}
.ws72{word-spacing:-16.665840px;}
.ws30{word-spacing:-16.632000px;}
.ws3f{word-spacing:-15.930000px;}
.ws1b{word-spacing:-15.896160px;}
.ws78{word-spacing:-15.225840px;}
.ws34{word-spacing:-15.163200px;}
.ws14{word-spacing:-15.034320px;}
.ws32{word-spacing:-14.994720px;}
.ws13{word-spacing:-14.986440px;}
.ws7c{word-spacing:-14.938560px;}
.ws27{word-spacing:-14.842800px;}
.ws1a{word-spacing:-14.747040px;}
.ws11{word-spacing:-14.699160px;}
.ws26{word-spacing:-14.603400px;}
.ws18{word-spacing:-14.507640px;}
.ws39{word-spacing:-14.362920px;}
.ws1f{word-spacing:-14.194440px;}
.ws38{word-spacing:-14.152320px;}
.ws12{word-spacing:-14.124600px;}
.ws2{word-spacing:-13.635000px;}
.ws3a{word-spacing:-13.310640px;}
.wsb{word-spacing:-13.284000px;}
.ws6{word-spacing:-13.248000px;}
.ws37{word-spacing:-13.225680px;}
.ws1{word-spacing:-13.185000px;}
.ws1d{word-spacing:-13.183560px;}
.ws7b{word-spacing:-13.119120px;}
.ws10{word-spacing:-12.783960px;}
.ws7d{word-spacing:-12.762360px;}
.ws79{word-spacing:-12.640320px;}
.wsa{word-spacing:-12.492000px;}
.ws7{word-spacing:-12.420000px;}
.wsf{word-spacing:-12.348000px;}
.ws35{word-spacing:-12.341160px;}
.ws0{word-spacing:-12.330000px;}
.wse{word-spacing:-12.312000px;}
.ws20{word-spacing:-12.256920px;}
.ws28{word-spacing:-12.169440px;}
.ws8{word-spacing:-12.060000px;}
.ws1e{word-spacing:-12.046320px;}
.ws31{word-spacing:-11.962080px;}
.wsd{word-spacing:-11.952000px;}
.wsc{word-spacing:-11.880000px;}
.ws3c{word-spacing:-11.874240px;}
.ws41{word-spacing:-11.709360px;}
.ws3e{word-spacing:-11.539080px;}
.ws9{word-spacing:-11.268000px;}
.ws42{word-spacing:-11.161800px;}
.ws3b{word-spacing:-11.156040px;}
.ws36{word-spacing:-11.035440px;}
.ws7e{word-spacing:-10.824840px;}
.ws3d{word-spacing:-10.820880px;}
.ws3{word-spacing:-10.548000px;}
.ws4{word-spacing:-10.224000px;}
.ws5{word-spacing:-9.144000px;}
.ws17{word-spacing:-4.399560px;}
.ws15{word-spacing:-3.289320px;}
.ws1c{word-spacing:-3.193560px;}
.ws24{word-spacing:-2.906280px;}
.ws74{word-spacing:-1.757160px;}
.ws4a{word-spacing:-1.584000px;}
.ws6b{word-spacing:-1.532160px;}
.ws4e{word-spacing:-1.440000px;}
.ws50{word-spacing:-1.152000px;}
.ws2a{word-spacing:-1.095840px;}
.ws6a{word-spacing:-1.053000px;}
.ws48{word-spacing:-0.972000px;}
.ws71{word-spacing:-0.957600px;}
.ws58{word-spacing:-0.926640px;}
.ws49{word-spacing:-0.900000px;}
.ws4b{word-spacing:-0.864000px;}
.ws87{word-spacing:-0.751680px;}
.ws5d{word-spacing:-0.716040px;}
.ws51{word-spacing:-0.612000px;}
.ws6d{word-spacing:-0.574560px;}
.ws6c{word-spacing:-0.526680px;}
.ws57{word-spacing:-0.505440px;}
.ws70{word-spacing:-0.478800px;}
.ws52{word-spacing:-0.383040px;}
.ws6e{word-spacing:-0.335160px;}
.ws4f{word-spacing:-0.324000px;}
.ws68{word-spacing:-0.294840px;}
.ws5c{word-spacing:-0.210600px;}
.ws64{word-spacing:-0.191520px;}
.ws29{word-spacing:-0.129240px;}
.ws66{word-spacing:-0.108000px;}
.ws6f{word-spacing:-0.095760px;}
.ws2c{word-spacing:-0.090360px;}
.ws5e{word-spacing:-0.084240px;}
.ws5b{word-spacing:-0.042120px;}
.ws43{word-spacing:0.000000px;}
.ws67{word-spacing:0.084240px;}
.ws60{word-spacing:0.168480px;}
.ws54{word-spacing:0.239400px;}
.ws44{word-spacing:0.252000px;}
.ws56{word-spacing:0.287280px;}
.ws46{word-spacing:0.324000px;}
.ws53{word-spacing:0.335160px;}
.ws61{word-spacing:0.379080px;}
.ws8a{word-spacing:0.383040px;}
.ws69{word-spacing:0.421200px;}
.ws5a{word-spacing:0.430920px;}
.ws55{word-spacing:0.478800px;}
.ws45{word-spacing:0.540000px;}
.ws4d{word-spacing:0.756000px;}
.ws47{word-spacing:0.792000px;}
.ws81{word-spacing:0.813960px;}
.ws4c{word-spacing:0.828000px;}
.ws82{word-spacing:0.956160px;}
.ws7a{word-spacing:1.019880px;}
.ws80{word-spacing:1.197000px;}
.ws89{word-spacing:1.292760px;}
.ws5f{word-spacing:1.305720px;}
.ws88{word-spacing:1.532160px;}
.ws62{word-spacing:1.771560px;}
.ws7f{word-spacing:1.867320px;}
.ws59{word-spacing:1.915200px;}
.ws65{word-spacing:2.154600px;}
.ws63{word-spacing:2.489760px;}
.ws2b{word-spacing:2.552040px;}
.ws19{word-spacing:3.174480px;}
.ws2e{word-spacing:3.557520px;}
.ws76{word-spacing:4.179960px;}
.ws77{word-spacing:4.218840px;}
.ws83{word-spacing:4.595040px;}
.ws73{word-spacing:5.329080px;}
.ws75{word-spacing:5.367960px;}
.ws86{word-spacing:5.373720px;}
.ws85{word-spacing:5.996160px;}
.ws23{word-spacing:9.299880px;}
.ws16{word-spacing:9.339120px;}
.ws25{word-spacing:9.635040px;}
.ws2d{word-spacing:13.609080px;}
.ws2f{word-spacing:15.093360px;}
.ws84{word-spacing:19.729080px;}
._7{margin-left:-5.938920px;}
._8{margin-left:-4.831560px;}
._4{margin-left:-3.031560px;}
._2{margin-left:-1.980000px;}
._1{width:1.125000px;}
._0{width:2.610000px;}
._3{width:3.843000px;}
._9{width:4.928040px;}
._5{width:10.835280px;}
._6{width:1852.934760px;}
.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;}
.fs8{font-size:33.120000px;}
.fs1{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.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;}
.y154{bottom:25.794690px;}
.y8a{bottom:25.800150px;}
.y14c{bottom:25.802220px;}
.y96{bottom:40.205400px;}
.y29{bottom:59.670000px;}
.yf4{bottom:84.602100px;}
.y21{bottom:94.933800px;}
.y28{bottom:99.491190px;}
.yf3{bottom:106.472100px;}
.y27{bottom:111.548040px;}
.ya0{bottom:115.925550px;}
.y20{bottom:116.803800px;}
.ye{bottom:119.538750px;}
.y9f{bottom:127.625550px;}
.yf2{bottom:128.432100px;}
.yd{bottom:131.238600px;}
.y26{bottom:136.472550px;}
.y1f{bottom:138.673800px;}
.yf1{bottom:150.302100px;}
.y9e{bottom:157.022100px;}
.y1e{bottom:160.633950px;}
.yc{bottom:160.635150px;}
.y25{bottom:162.028500px;}
.yf0{bottom:167.671950px;}
.y9d{bottom:168.722100px;}
.yb{bottom:172.335150px;}
.y24{bottom:174.085350px;}
.y1d{bottom:182.503800px;}
.y14b{bottom:182.836650px;}
.y122{bottom:185.571600px;}
.y9c{bottom:191.619900px;}
.y23{bottom:193.650150px;}
.ya{bottom:195.232800px;}
.y121{bottom:197.271450px;}
.yef{bottom:198.574020px;}
.y1c{bottom:199.873950px;}
.y14a{bottom:204.706650px;}
.y9b{bottom:209.619900px;}
.y89{bottom:211.492200px;}
.y9{bottom:213.232800px;}
.yee{bottom:213.512580px;}
.y149{bottom:226.666650px;}
.y88{bottom:226.702200px;}
.y9a{bottom:227.529900px;}
.y120{bottom:227.561400px;}
.yed{bottom:228.546900px;}
.y8{bottom:231.142800px;}
.y1b{bottom:232.039350px;}
.y11f{bottom:239.261400px;}
.y87{bottom:240.292200px;}
.y148{bottom:248.536650px;}
.y86{bottom:257.572200px;}
.y11e{bottom:260.185800px;}
.y147{bottom:265.906650px;}
.y85{bottom:272.872200px;}
.y91{bottom:275.299050px;}
.yca{bottom:277.630950px;}
.y15{bottom:279.457350px;}
.y11d{bottom:279.625800px;}
.yec{bottom:282.471750px;}
.y84{bottom:286.462200px;}
.yc9{bottom:289.330950px;}
.y14{bottom:291.157350px;}
.y11c{bottom:297.175800px;}
.y146{bottom:298.063650px;}
.y1a{bottom:298.592550px;}
.y8f{bottom:299.959050px;}
.y83{bottom:300.502200px;}
.yeb{bottom:304.431750px;}
.y82{bottom:312.562200px;}
.yc8{bottom:319.620900px;}
.y19{bottom:320.552550px;}
.y13{bottom:321.447000px;}
.yea{bottom:326.301750px;}
.y22{bottom:327.660150px;}
.yc7{bottom:331.320900px;}
.y12{bottom:333.147000px;}
.y18{bottom:342.422550px;}
.ye9{bottom:343.671750px;}
.y81{bottom:345.924000px;}
.y145{bottom:351.689250px;}
.yc6{bottom:352.245300px;}
.y11{bottom:355.151550px;}
.y11b{bottom:355.317600px;}
.y17{bottom:359.792550px;}
.y80{bottom:359.964000px;}
.y11a{bottom:367.017450px;}
.yc5{bottom:371.685300px;}
.y7f{bottom:372.024000px;}
.y10{bottom:373.151550px;}
.y144{bottom:373.559400px;}
.ye8{bottom:375.217080px;}
.y7e{bottom:386.964000px;}
.yc4{bottom:389.235150px;}
.ye7{bottom:390.251400px;}
.yf{bottom:391.061400px;}
.y16{bottom:391.954950px;}
.y143{bottom:395.519400px;}
.y119{bottom:396.413850px;}
.y7d{bottom:399.024000px;}
.y118{bottom:408.113850px;}
.y7c{bottom:413.964000px;}
.y142{bottom:417.389400px;}
.y7b{bottom:426.024000px;}
.y117{bottom:430.118400px;}
.y141{bottom:434.759400px;}
.yc3{bottom:437.549700px;}
.y45{bottom:441.162600px;}
.y5f{bottom:445.983630px;}
.y7a{bottom:446.482350px;}
.y116{bottom:448.118400px;}
.yc2{bottom:449.249700px;}
.y44{bottom:452.857950px;}
.ye6{bottom:456.684900px;}
.y5e{bottom:461.017950px;}
.y115{bottom:466.028400px;}
.y140{bottom:466.913970px;}
.y74{bottom:467.571150px;}
.y5d{bottom:474.157950px;}
.ye5{bottom:478.644900px;}
.yc1{bottom:479.539350px;}
.y73{bottom:479.628000px;}
.y5c{bottom:482.257950px;}
.y43{bottom:483.151950px;}
.yc0{bottom:491.239350px;}
.y42{bottom:494.851950px;}
.ye4{bottom:500.514750px;}
.y5b{bottom:504.127950px;}
.ybf{bottom:512.163750px;}
.y41{bottom:515.776950px;}
.y72{bottom:516.197550px;}
.y13f{bottom:517.762530px;}
.ye3{bottom:517.884750px;}
.y5a{bottom:521.493240px;}
.ybe{bottom:531.603750px;}
.y13e{bottom:532.796850px;}
.y40{bottom:535.216950px;}
.y10d{bottom:545.611800px;}
.ybd{bottom:549.153750px;}
.ye2{bottom:550.052190px;}
.y3f{bottom:552.766950px;}
.y59{bottom:553.656630px;}
.y71{bottom:554.583600px;}
.y13d{bottom:555.298440px;}
.y10c{bottom:557.311800px;}
.y13c{bottom:570.237000px;}
.y70{bottom:572.989350px;}
.y6f{bottom:585.044670px;}
.y10b{bottom:586.708200px;}
.y13b{bottom:592.732530px;}
.y10a{bottom:598.408200px;}
.ybc{bottom:600.148500px;}
.ye1{bottom:603.713700px;}
.y79{bottom:604.887600px;}
.y13a{bottom:607.766850px;}
.ybb{bottom:611.848500px;}
.y78{bottom:616.947600px;}
.y109{bottom:621.305850px;}
.y58{bottom:624.057600px;}
.ye0{bottom:625.583700px;}
.y139{bottom:625.946850px;}
.y77{bottom:628.917600px;}
.y30{bottom:637.710750px;}
.y108{bottom:639.305850px;}
.y76{bottom:640.887600px;}
.yba{bottom:641.244750px;}
.ydf{bottom:647.269380px;}
.y57{bottom:647.457600px;}
.y2f{bottom:649.405950px;}
.yb9{bottom:652.944750px;}
.y75{bottom:652.947600px;}
.y107{bottom:657.215850px;}
.y138{bottom:658.129470px;}
.yde{bottom:662.303700px;}
.y56{bottom:670.857600px;}
.y6e{bottom:671.801340px;}
.yb8{bottom:675.842700px;}
.y2e{bottom:679.699950px;}
.y55{bottom:680.127600px;}
.ydd{bottom:680.483700px;}
.y6d{bottom:683.773950px;}
.y2d{bottom:691.399950px;}
.yb7{bottom:693.842700px;}
.y6c{bottom:695.830800px;}
.y54{bottom:697.487070px;}
.yb6{bottom:711.752550px;}
.y2c{bottom:712.324950px;}
.ydc{bottom:712.640700px;}
.y6b{bottom:713.608800px;}
.y137{bottom:715.549560px;}
.y2b{bottom:731.764950px;}
.y6a{bottom:732.552000px;}
.y8e{bottom:734.490000px;}
.y106{bottom:735.905850px;}
.y136{bottom:736.963890px;}
.y69{bottom:744.522150px;}
.y105{bottom:747.605850px;}
.y2a{bottom:749.314800px;}
.y53{bottom:750.202950px;}
.y68{bottom:756.585210px;}
.y135{bottom:758.378220px;}
.ydb{bottom:766.266300px;}
.yb5{bottom:769.001100px;}
.y67{bottom:776.613270px;}
.y134{bottom:777.003540px;}
.y104{bottom:777.895800px;}
.yb4{bottom:780.701100px;}
.yda{bottom:788.136150px;}
.y103{bottom:789.595800px;}
.y66{bottom:794.524800px;}
.y133{bottom:798.872730px;}
.y52{bottom:803.828550px;}
.y3e{bottom:809.243550px;}
.yd9{bottom:810.096150px;}
.y102{bottom:810.520200px;}
.y65{bottom:810.907200px;}
.yb3{bottom:810.990750px;}
.y132{bottom:816.241200px;}
.y3d{bottom:820.945200px;}
.yb2{bottom:822.690750px;}
.y64{bottom:823.777200px;}
.y51{bottom:825.698400px;}
.y101{bottom:829.960200px;}
.yd8{bottom:831.966150px;}
.y63{bottom:841.777200px;}
.yb1{bottom:844.695150px;}
.y100{bottom:847.510200px;}
.y50{bottom:847.658550px;}
.y131{bottom:848.406450px;}
.yd7{bottom:849.336300px;}
.y3c{bottom:850.339200px;}
.y62{bottom:858.877200px;}
.y3b{bottom:862.039200px;}
.yb0{bottom:862.695150px;}
.y4f{bottom:869.528550px;}
.y61{bottom:870.937200px;}
.yaf{bottom:880.605300px;}
.yd6{bottom:881.502600px;}
.y3a{bottom:884.044200px;}
.y4e{bottom:886.900680px;}
.y114{bottom:895.824600px;}
.y39{bottom:902.044200px;}
.y60{bottom:907.506600px;}
.y113{bottom:907.524600px;}
.y95{bottom:910.080000px;}
.y130{bottom:914.959650px;}
.y38{bottom:919.954350px;}
.y4d{bottom:920.839500px;}
.yae{bottom:930.706350px;}
.yd5{bottom:935.547150px;}
.y12f{bottom:936.919800px;}
.y112{bottom:937.814250px;}
.yad{bottom:942.406350px;}
.y111{bottom:949.514250px;}
.y94{bottom:950.285400px;}
.yd4{bottom:957.507150px;}
.y12e{bottom:958.789650px;}
.y110{bottom:970.438650px;}
.y37{bottom:970.948800px;}
.yac{bottom:972.696300px;}
.y4c{bottom:975.769830px;}
.y12d{bottom:976.159800px;}
.y93{bottom:977.835570px;}
.yd3{bottom:979.377150px;}
.y36{bottom:982.653000px;}
.yab{bottom:984.396300px;}
.y10f{bottom:989.878650px;}
.y4b{bottom:990.804150px;}
.y92{bottom:996.378900px;}
.yd2{bottom:996.747300px;}
.y4a{bottom:1003.944150px;}
.yaa{bottom:1005.320550px;}
.y10e{bottom:1007.428650px;}
.y12c{bottom:1008.319740px;}
.y49{bottom:1012.044000px;}
.y35{bottom:1012.047000px;}
.y90{bottom:1021.039050px;}
.y34{bottom:1023.747000px;}
.ya9{bottom:1024.760550px;}
.yd1{bottom:1028.292330px;}
.y48{bottom:1033.914150px;}
.ya8{bottom:1042.310550px;}
.yd0{bottom:1043.326650px;}
.y8d{bottom:1045.609050px;}
.y33{bottom:1046.643000px;}
.y47{bottom:1051.283160px;}
.y12b{bottom:1061.981250px;}
.y32{bottom:1064.643000px;}
.y8c{bottom:1066.908600px;}
.y153{bottom:1067.460000px;}
.y151{bottom:1072.426050px;}
.y31{bottom:1082.553150px;}
.y46{bottom:1083.446550px;}
.y12a{bottom:1083.666930px;}
.y8b{bottom:1083.918600px;}
.y150{bottom:1084.126050px;}
.y152{bottom:1089.330000px;}
.ya7{bottom:1091.518500px;}
.yff{bottom:1095.946050px;}
.y129{bottom:1098.701250px;}
.ya6{bottom:1103.218350px;}
.yfe{bottom:1107.646050px;}
.ycf{bottom:1109.760150px;}
.y128{bottom:1112.201250px;}
.y15d{bottom:1114.521000px;}
.y159{bottom:1114.522200px;}
.y7{bottom:1120.800450px;}
.y127{bottom:1121.381250px;}
.y158{bottom:1126.222200px;}
.yce{bottom:1131.720300px;}
.ya5{bottom:1132.614750px;}
.y6{bottom:1133.040450px;}
.y15c{bottom:1136.391000px;}
.yfd{bottom:1137.042450px;}
.y126{bottom:1143.067080px;}
.ya4{bottom:1144.314750px;}
.yfc{bottom:1148.742450px;}
.y157{bottom:1149.120000px;}
.ycd{bottom:1153.590150px;}
.y15b{bottom:1153.761000px;}
.y125{bottom:1158.101400px;}
.ya3{bottom:1165.239150px;}
.y156{bottom:1167.120000px;}
.y5{bottom:1170.076200px;}
.ycc{bottom:1170.960300px;}
.yfb{bottom:1171.640250px;}
.y3{bottom:1172.554800px;}
.y124{bottom:1176.281400px;}
.y2{bottom:1183.534950px;}
.ya2{bottom:1184.679150px;}
.y155{bottom:1185.030000px;}
.y15a{bottom:1185.923400px;}
.yfa{bottom:1189.640250px;}
.y4{bottom:1189.731000px;}
.y1{bottom:1195.504800px;}
.ya1{bottom:1202.229150px;}
.ycb{bottom:1203.122550px;}
.yf5{bottom:1205.209500px;}
.yf9{bottom:1207.550400px;}
.y123{bottom:1208.443800px;}
.y99{bottom:1213.200180px;}
.yf8{bottom:1213.200210px;}
.y160{bottom:1213.201680px;}
.y14f{bottom:1213.202280px;}
.y98{bottom:1227.600090px;}
.yf7{bottom:1227.600120px;}
.y15f{bottom:1227.601590px;}
.y14e{bottom:1227.602190px;}
.y97{bottom:1242.000000px;}
.yf6{bottom:1242.000030px;}
.y15e{bottom:1242.001500px;}
.y14d{bottom:1242.002100px;}
.h7{height:24.642246px;}
.h9{height:27.314297px;}
.h11{height:29.689453px;}
.hc{height:37.111816px;}
.h2{height:38.412000px;}
.h10{height:39.486973px;}
.he{height:43.929844px;}
.h5{height:44.942040px;}
.hd{height:44.955960px;}
.h1{height:48.015000px;}
.ha{height:49.937344px;}
.h4{height:51.087960px;}
.h8{height:51.120360px;}
.h6{height:57.618000px;}
.h3{height:60.690960px;}
.hf{height:88.201500px;}
.hb{height:530.010000px;}
.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;}
.x4{left:51.612450px;}
.xf{left:53.469000px;}
.x15{left:57.867000px;}
.x17{left:60.707250px;}
.xb{left:72.230400px;}
.xc{left:78.484200px;}
.x10{left:86.530140px;}
.xa{left:88.311600px;}
.x19{left:92.414100px;}
.x13{left:97.776150px;}
.x11{left:100.819200px;}
.x12{left:115.113600px;}
.x18{left:159.347250px;}
.x1{left:175.152900px;}
.x5{left:232.916850px;}
.x6{left:251.636850px;}
.x7{left:334.164150px;}
.xd{left:337.674150px;}
.xe{left:339.024150px;}
.x9{left:351.894150px;}
.x8{left:353.154150px;}
.x1a{left:365.664150px;}
.x3{left:658.482300px;}
.x2{left:786.238500px;}
@media print{
.v3{vertical-align:-50.240000pt;}
.v1{vertical-align:-8.611200pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.640000pt;}
.ls58{letter-spacing:-2.213120pt;}
.ls67{letter-spacing:-2.085440pt;}
.ls63{letter-spacing:-2.042880pt;}
.ls31{letter-spacing:-1.957760pt;}
.ls59{letter-spacing:-1.915200pt;}
.ls48{letter-spacing:-1.872640pt;}
.ls49{letter-spacing:-1.744960pt;}
.ls66{letter-spacing:-1.702400pt;}
.ls64{letter-spacing:-1.659840pt;}
.ls56{letter-spacing:-1.574720pt;}
.ls65{letter-spacing:-1.532160pt;}
.ls47{letter-spacing:-1.447040pt;}
.ls4a{letter-spacing:-1.404480pt;}
.ls5a{letter-spacing:-1.276800pt;}
.ls22{letter-spacing:-1.248000pt;}
.ls3a{letter-spacing:-1.234240pt;}
.ls50{letter-spacing:-1.160640pt;}
.ls6b{letter-spacing:-1.149120pt;}
.ls4d{letter-spacing:-1.085760pt;}
.ls3c{letter-spacing:-1.010880pt;}
.ls5b{letter-spacing:-0.864000pt;}
.ls3f{letter-spacing:-0.823680pt;}
.ls69{letter-spacing:-0.786240pt;}
.ls33{letter-spacing:-0.766080pt;}
.ls1d{letter-spacing:-0.760000pt;}
.ls2b{letter-spacing:-0.736000pt;}
.ls68{letter-spacing:-0.723520pt;}
.ls24{letter-spacing:-0.704000pt;}
.ls2f{letter-spacing:-0.672000pt;}
.ls41{letter-spacing:-0.595840pt;}
.ls5f{letter-spacing:-0.486720pt;}
.ls23{letter-spacing:-0.480000pt;}
.ls6c{letter-spacing:-0.468160pt;}
.ls37{letter-spacing:-0.425600pt;}
.ls46{letter-spacing:-0.383040pt;}
.ls44{letter-spacing:-0.340480pt;}
.ls54{letter-spacing:-0.336960pt;}
.ls34{letter-spacing:-0.297920pt;}
.ls20{letter-spacing:-0.288000pt;}
.ls32{letter-spacing:-0.255360pt;}
.ls4b{letter-spacing:-0.240000pt;}
.ls21{letter-spacing:-0.224000pt;}
.ls35{letter-spacing:-0.212800pt;}
.ls62{letter-spacing:-0.170240pt;}
.ls51{letter-spacing:-0.149760pt;}
.ls45{letter-spacing:-0.127680pt;}
.ls60{letter-spacing:-0.042560pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.042560pt;}
.ls4e{letter-spacing:0.074880pt;}
.ls1c{letter-spacing:0.085120pt;}
.ls5c{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.101120pt;}
.ls19{letter-spacing:0.103360pt;}
.ls1b{letter-spacing:0.127680pt;}
.ls42{letter-spacing:0.170240pt;}
.ls4c{letter-spacing:0.187200pt;}
.ls43{letter-spacing:0.212800pt;}
.ls2{letter-spacing:0.224000pt;}
.ls16{letter-spacing:0.266240pt;}
.lsc{letter-spacing:0.340480pt;}
.ls6a{letter-spacing:0.383040pt;}
.ls1f{letter-spacing:0.400000pt;}
.ls14{letter-spacing:0.449280pt;}
.ls2c{letter-spacing:0.544000pt;}
.ls10{letter-spacing:0.553280pt;}
.lse{letter-spacing:0.561600pt;}
.ls2d{letter-spacing:0.608000pt;}
.ls3b{letter-spacing:0.638400pt;}
.lsf{letter-spacing:0.672000pt;}
.ls11{letter-spacing:0.680960pt;}
.ls5{letter-spacing:0.704000pt;}
.ls9{letter-spacing:0.736000pt;}
.ls61{letter-spacing:0.766080pt;}
.ls29{letter-spacing:0.768000pt;}
.ls1a{letter-spacing:0.786240pt;}
.ls27{letter-spacing:0.800000pt;}
.ls38{letter-spacing:0.808640pt;}
.ls3e{letter-spacing:0.823680pt;}
.ls39{letter-spacing:0.851200pt;}
.ls18{letter-spacing:0.861120pt;}
.ls26{letter-spacing:0.864000pt;}
.ls3d{letter-spacing:0.898560pt;}
.ls2e{letter-spacing:0.928000pt;}
.ls5e{letter-spacing:0.936000pt;}
.ls30{letter-spacing:0.960000pt;}
.ls5d{letter-spacing:1.008000pt;}
.ls17{letter-spacing:1.010880pt;}
.ls25{letter-spacing:1.024000pt;}
.ls55{letter-spacing:1.048320pt;}
.ls6{letter-spacing:1.088000pt;}
.ls15{letter-spacing:1.123200pt;}
.ls1{letter-spacing:1.184000pt;}
.ls3{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.385280pt;}
.ls28{letter-spacing:1.408000pt;}
.ls57{letter-spacing:1.489600pt;}
.ls0{letter-spacing:1.504000pt;}
.ls52{letter-spacing:1.536000pt;}
.ls4f{letter-spacing:1.609920pt;}
.ls40{letter-spacing:1.632000pt;}
.ls53{letter-spacing:1.759680pt;}
.lsb{letter-spacing:1.760000pt;}
.ls2a{letter-spacing:1.792000pt;}
.ls4{letter-spacing:1.984000pt;}
.lsa{letter-spacing:2.048000pt;}
.ls7{letter-spacing:2.304000pt;}
.ls12{letter-spacing:43.586560pt;}
.ls13{letter-spacing:46.146560pt;}
.ws22{word-spacing:-16.656000pt;}
.ws33{word-spacing:-16.560000pt;}
.ws40{word-spacing:-16.032000pt;}
.ws21{word-spacing:-15.024000pt;}
.ws72{word-spacing:-14.814080pt;}
.ws30{word-spacing:-14.784000pt;}
.ws3f{word-spacing:-14.160000pt;}
.ws1b{word-spacing:-14.129920pt;}
.ws78{word-spacing:-13.534080pt;}
.ws34{word-spacing:-13.478400pt;}
.ws14{word-spacing:-13.363840pt;}
.ws32{word-spacing:-13.328640pt;}
.ws13{word-spacing:-13.321280pt;}
.ws7c{word-spacing:-13.278720pt;}
.ws27{word-spacing:-13.193600pt;}
.ws1a{word-spacing:-13.108480pt;}
.ws11{word-spacing:-13.065920pt;}
.ws26{word-spacing:-12.980800pt;}
.ws18{word-spacing:-12.895680pt;}
.ws39{word-spacing:-12.767040pt;}
.ws1f{word-spacing:-12.617280pt;}
.ws38{word-spacing:-12.579840pt;}
.ws12{word-spacing:-12.555200pt;}
.ws2{word-spacing:-12.120000pt;}
.ws3a{word-spacing:-11.831680pt;}
.wsb{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.776000pt;}
.ws37{word-spacing:-11.756160pt;}
.ws1{word-spacing:-11.720000pt;}
.ws1d{word-spacing:-11.718720pt;}
.ws7b{word-spacing:-11.661440pt;}
.ws10{word-spacing:-11.363520pt;}
.ws7d{word-spacing:-11.344320pt;}
.ws79{word-spacing:-11.235840pt;}
.wsa{word-spacing:-11.104000pt;}
.ws7{word-spacing:-11.040000pt;}
.wsf{word-spacing:-10.976000pt;}
.ws35{word-spacing:-10.969920pt;}
.ws0{word-spacing:-10.960000pt;}
.wse{word-spacing:-10.944000pt;}
.ws20{word-spacing:-10.895040pt;}
.ws28{word-spacing:-10.817280pt;}
.ws8{word-spacing:-10.720000pt;}
.ws1e{word-spacing:-10.707840pt;}
.ws31{word-spacing:-10.632960pt;}
.wsd{word-spacing:-10.624000pt;}
.wsc{word-spacing:-10.560000pt;}
.ws3c{word-spacing:-10.554880pt;}
.ws41{word-spacing:-10.408320pt;}
.ws3e{word-spacing:-10.256960pt;}
.ws9{word-spacing:-10.016000pt;}
.ws42{word-spacing:-9.921600pt;}
.ws3b{word-spacing:-9.916480pt;}
.ws36{word-spacing:-9.809280pt;}
.ws7e{word-spacing:-9.622080pt;}
.ws3d{word-spacing:-9.618560pt;}
.ws3{word-spacing:-9.376000pt;}
.ws4{word-spacing:-9.088000pt;}
.ws5{word-spacing:-8.128000pt;}
.ws17{word-spacing:-3.910720pt;}
.ws15{word-spacing:-2.923840pt;}
.ws1c{word-spacing:-2.838720pt;}
.ws24{word-spacing:-2.583360pt;}
.ws74{word-spacing:-1.561920pt;}
.ws4a{word-spacing:-1.408000pt;}
.ws6b{word-spacing:-1.361920pt;}
.ws4e{word-spacing:-1.280000pt;}
.ws50{word-spacing:-1.024000pt;}
.ws2a{word-spacing:-0.974080pt;}
.ws6a{word-spacing:-0.936000pt;}
.ws48{word-spacing:-0.864000pt;}
.ws71{word-spacing:-0.851200pt;}
.ws58{word-spacing:-0.823680pt;}
.ws49{word-spacing:-0.800000pt;}
.ws4b{word-spacing:-0.768000pt;}
.ws87{word-spacing:-0.668160pt;}
.ws5d{word-spacing:-0.636480pt;}
.ws51{word-spacing:-0.544000pt;}
.ws6d{word-spacing:-0.510720pt;}
.ws6c{word-spacing:-0.468160pt;}
.ws57{word-spacing:-0.449280pt;}
.ws70{word-spacing:-0.425600pt;}
.ws52{word-spacing:-0.340480pt;}
.ws6e{word-spacing:-0.297920pt;}
.ws4f{word-spacing:-0.288000pt;}
.ws68{word-spacing:-0.262080pt;}
.ws5c{word-spacing:-0.187200pt;}
.ws64{word-spacing:-0.170240pt;}
.ws29{word-spacing:-0.114880pt;}
.ws66{word-spacing:-0.096000pt;}
.ws6f{word-spacing:-0.085120pt;}
.ws2c{word-spacing:-0.080320pt;}
.ws5e{word-spacing:-0.074880pt;}
.ws5b{word-spacing:-0.037440pt;}
.ws43{word-spacing:0.000000pt;}
.ws67{word-spacing:0.074880pt;}
.ws60{word-spacing:0.149760pt;}
.ws54{word-spacing:0.212800pt;}
.ws44{word-spacing:0.224000pt;}
.ws56{word-spacing:0.255360pt;}
.ws46{word-spacing:0.288000pt;}
.ws53{word-spacing:0.297920pt;}
.ws61{word-spacing:0.336960pt;}
.ws8a{word-spacing:0.340480pt;}
.ws69{word-spacing:0.374400pt;}
.ws5a{word-spacing:0.383040pt;}
.ws55{word-spacing:0.425600pt;}
.ws45{word-spacing:0.480000pt;}
.ws4d{word-spacing:0.672000pt;}
.ws47{word-spacing:0.704000pt;}
.ws81{word-spacing:0.723520pt;}
.ws4c{word-spacing:0.736000pt;}
.ws82{word-spacing:0.849920pt;}
.ws7a{word-spacing:0.906560pt;}
.ws80{word-spacing:1.064000pt;}
.ws89{word-spacing:1.149120pt;}
.ws5f{word-spacing:1.160640pt;}
.ws88{word-spacing:1.361920pt;}
.ws62{word-spacing:1.574720pt;}
.ws7f{word-spacing:1.659840pt;}
.ws59{word-spacing:1.702400pt;}
.ws65{word-spacing:1.915200pt;}
.ws63{word-spacing:2.213120pt;}
.ws2b{word-spacing:2.268480pt;}
.ws19{word-spacing:2.821760pt;}
.ws2e{word-spacing:3.162240pt;}
.ws76{word-spacing:3.715520pt;}
.ws77{word-spacing:3.750080pt;}
.ws83{word-spacing:4.084480pt;}
.ws73{word-spacing:4.736960pt;}
.ws75{word-spacing:4.771520pt;}
.ws86{word-spacing:4.776640pt;}
.ws85{word-spacing:5.329920pt;}
.ws23{word-spacing:8.266560pt;}
.ws16{word-spacing:8.301440pt;}
.ws25{word-spacing:8.564480pt;}
.ws2d{word-spacing:12.096960pt;}
.ws2f{word-spacing:13.416320pt;}
.ws84{word-spacing:17.536960pt;}
._7{margin-left:-5.279040pt;}
._8{margin-left:-4.294720pt;}
._4{margin-left:-2.694720pt;}
._2{margin-left:-1.760000pt;}
._1{width:1.000000pt;}
._0{width:2.320000pt;}
._3{width:3.416000pt;}
._9{width:4.380480pt;}
._5{width:9.631360pt;}
._6{width:1647.053120pt;}
.fs6{font-size:26.560000pt;}
.fs8{font-size:29.440000pt;}
.fs1{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.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;}
.y154{bottom:22.928613pt;}
.y8a{bottom:22.933467pt;}
.y14c{bottom:22.935307pt;}
.y96{bottom:35.738133pt;}
.y29{bottom:53.040000pt;}
.yf4{bottom:75.201867pt;}
.y21{bottom:84.385600pt;}
.y28{bottom:88.436613pt;}
.yf3{bottom:94.641867pt;}
.y27{bottom:99.153813pt;}
.ya0{bottom:103.044933pt;}
.y20{bottom:103.825600pt;}
.ye{bottom:106.256667pt;}
.y9f{bottom:113.444933pt;}
.yf2{bottom:114.161867pt;}
.yd{bottom:116.656533pt;}
.y26{bottom:121.308933pt;}
.y1f{bottom:123.265600pt;}
.yf1{bottom:133.601867pt;}
.y9e{bottom:139.575200pt;}
.y1e{bottom:142.785733pt;}
.yc{bottom:142.786800pt;}
.y25{bottom:144.025333pt;}
.yf0{bottom:149.041733pt;}
.y9d{bottom:149.975200pt;}
.yb{bottom:153.186800pt;}
.y24{bottom:154.742533pt;}
.y1d{bottom:162.225600pt;}
.y14b{bottom:162.521467pt;}
.y122{bottom:164.952533pt;}
.y9c{bottom:170.328800pt;}
.y23{bottom:172.133467pt;}
.ya{bottom:173.540267pt;}
.y121{bottom:175.352400pt;}
.yef{bottom:176.510240pt;}
.y1c{bottom:177.665733pt;}
.y14a{bottom:181.961467pt;}
.y9b{bottom:186.328800pt;}
.y89{bottom:187.993067pt;}
.y9{bottom:189.540267pt;}
.yee{bottom:189.788960pt;}
.y149{bottom:201.481467pt;}
.y88{bottom:201.513067pt;}
.y9a{bottom:202.248800pt;}
.y120{bottom:202.276800pt;}
.yed{bottom:203.152800pt;}
.y8{bottom:205.460267pt;}
.y1b{bottom:206.257200pt;}
.y11f{bottom:212.676800pt;}
.y87{bottom:213.593067pt;}
.y148{bottom:220.921467pt;}
.y86{bottom:228.953067pt;}
.y11e{bottom:231.276267pt;}
.y147{bottom:236.361467pt;}
.y85{bottom:242.553067pt;}
.y91{bottom:244.710267pt;}
.yca{bottom:246.783067pt;}
.y15{bottom:248.406533pt;}
.y11d{bottom:248.556267pt;}
.yec{bottom:251.086000pt;}
.y84{bottom:254.633067pt;}
.yc9{bottom:257.183067pt;}
.y14{bottom:258.806533pt;}
.y11c{bottom:264.156267pt;}
.y146{bottom:264.945467pt;}
.y1a{bottom:265.415600pt;}
.y8f{bottom:266.630267pt;}
.y83{bottom:267.113067pt;}
.yeb{bottom:270.606000pt;}
.y82{bottom:277.833067pt;}
.yc8{bottom:284.107467pt;}
.y19{bottom:284.935600pt;}
.y13{bottom:285.730667pt;}
.yea{bottom:290.046000pt;}
.y22{bottom:291.253467pt;}
.yc7{bottom:294.507467pt;}
.y12{bottom:296.130667pt;}
.y18{bottom:304.375600pt;}
.ye9{bottom:305.486000pt;}
.y81{bottom:307.488000pt;}
.y145{bottom:312.612667pt;}
.yc6{bottom:313.106933pt;}
.y11{bottom:315.690267pt;}
.y11b{bottom:315.837867pt;}
.y17{bottom:319.815600pt;}
.y80{bottom:319.968000pt;}
.y11a{bottom:326.237733pt;}
.yc5{bottom:330.386933pt;}
.y7f{bottom:330.688000pt;}
.y10{bottom:331.690267pt;}
.y144{bottom:332.052800pt;}
.ye8{bottom:333.526293pt;}
.y7e{bottom:343.968000pt;}
.yc4{bottom:345.986800pt;}
.ye7{bottom:346.890133pt;}
.yf{bottom:347.610133pt;}
.y16{bottom:348.404400pt;}
.y143{bottom:351.572800pt;}
.y119{bottom:352.367867pt;}
.y7d{bottom:354.688000pt;}
.y118{bottom:362.767867pt;}
.y7c{bottom:367.968000pt;}
.y142{bottom:371.012800pt;}
.y7b{bottom:378.688000pt;}
.y117{bottom:382.327467pt;}
.y141{bottom:386.452800pt;}
.yc3{bottom:388.933067pt;}
.y45{bottom:392.144533pt;}
.y5f{bottom:396.429893pt;}
.y7a{bottom:396.873200pt;}
.y116{bottom:398.327467pt;}
.yc2{bottom:399.333067pt;}
.y44{bottom:402.540400pt;}
.ye6{bottom:405.942133pt;}
.y5e{bottom:409.793733pt;}
.y115{bottom:414.247467pt;}
.y140{bottom:415.034640pt;}
.y74{bottom:415.618800pt;}
.y5d{bottom:421.473733pt;}
.ye5{bottom:425.462133pt;}
.yc1{bottom:426.257200pt;}
.y73{bottom:426.336000pt;}
.y5c{bottom:428.673733pt;}
.y43{bottom:429.468400pt;}
.yc0{bottom:436.657200pt;}
.y42{bottom:439.868400pt;}
.ye4{bottom:444.902000pt;}
.y5b{bottom:448.113733pt;}
.ybf{bottom:455.256667pt;}
.y41{bottom:458.468400pt;}
.y72{bottom:458.842267pt;}
.y13f{bottom:460.233360pt;}
.ye3{bottom:460.342000pt;}
.y5a{bottom:463.549547pt;}
.ybe{bottom:472.536667pt;}
.y13e{bottom:473.597200pt;}
.y40{bottom:475.748400pt;}
.y10d{bottom:484.988267pt;}
.ybd{bottom:488.136667pt;}
.ye2{bottom:488.935280pt;}
.y3f{bottom:491.348400pt;}
.y59{bottom:492.139227pt;}
.y71{bottom:492.963200pt;}
.y13d{bottom:493.598613pt;}
.y10c{bottom:495.388267pt;}
.y13c{bottom:506.877333pt;}
.y70{bottom:509.323867pt;}
.y6f{bottom:520.039707pt;}
.y10b{bottom:521.518400pt;}
.y13b{bottom:526.873360pt;}
.y10a{bottom:531.918400pt;}
.ybc{bottom:533.465333pt;}
.ye1{bottom:536.634400pt;}
.y79{bottom:537.677867pt;}
.y13a{bottom:540.237200pt;}
.ybb{bottom:543.865333pt;}
.y78{bottom:548.397867pt;}
.y109{bottom:552.271867pt;}
.y58{bottom:554.717867pt;}
.ye0{bottom:556.074400pt;}
.y139{bottom:556.397200pt;}
.y77{bottom:559.037867pt;}
.y30{bottom:566.854000pt;}
.y108{bottom:568.271867pt;}
.y76{bottom:569.677867pt;}
.yba{bottom:569.995333pt;}
.ydf{bottom:575.350560pt;}
.y57{bottom:575.517867pt;}
.y2f{bottom:577.249733pt;}
.yb9{bottom:580.395333pt;}
.y75{bottom:580.397867pt;}
.y107{bottom:584.191867pt;}
.y138{bottom:585.003973pt;}
.yde{bottom:588.714400pt;}
.y56{bottom:596.317867pt;}
.y6e{bottom:597.156747pt;}
.yb8{bottom:600.749067pt;}
.y2e{bottom:604.177733pt;}
.y55{bottom:604.557867pt;}
.ydd{bottom:604.874400pt;}
.y6d{bottom:607.799067pt;}
.y2d{bottom:614.577733pt;}
.yb7{bottom:616.749067pt;}
.y6c{bottom:618.516267pt;}
.y54{bottom:619.988507pt;}
.yb6{bottom:632.668933pt;}
.y2c{bottom:633.177733pt;}
.ydc{bottom:633.458400pt;}
.y6b{bottom:634.318933pt;}
.y137{bottom:636.044053pt;}
.y2b{bottom:650.457733pt;}
.y6a{bottom:651.157333pt;}
.y8e{bottom:652.880000pt;}
.y106{bottom:654.138533pt;}
.y136{bottom:655.079013pt;}
.y69{bottom:661.797467pt;}
.y105{bottom:664.538533pt;}
.y2a{bottom:666.057600pt;}
.y53{bottom:666.847067pt;}
.y68{bottom:672.520187pt;}
.y135{bottom:674.113973pt;}
.ydb{bottom:681.125600pt;}
.yb5{bottom:683.556533pt;}
.y67{bottom:690.322907pt;}
.y134{bottom:690.669813pt;}
.y104{bottom:691.462933pt;}
.yb4{bottom:693.956533pt;}
.yda{bottom:700.565467pt;}
.y103{bottom:701.862933pt;}
.y66{bottom:706.244267pt;}
.y133{bottom:710.109093pt;}
.y52{bottom:714.514267pt;}
.y3e{bottom:719.327600pt;}
.yd9{bottom:720.085467pt;}
.y102{bottom:720.462400pt;}
.y65{bottom:720.806400pt;}
.yb3{bottom:720.880667pt;}
.y132{bottom:725.547733pt;}
.y3d{bottom:729.729067pt;}
.yb2{bottom:731.280667pt;}
.y64{bottom:732.246400pt;}
.y51{bottom:733.954133pt;}
.y101{bottom:737.742400pt;}
.yd8{bottom:739.525467pt;}
.y63{bottom:748.246400pt;}
.yb1{bottom:750.840133pt;}
.y100{bottom:753.342400pt;}
.y50{bottom:753.474267pt;}
.y131{bottom:754.139067pt;}
.yd7{bottom:754.965600pt;}
.y3c{bottom:755.857067pt;}
.y62{bottom:763.446400pt;}
.y3b{bottom:766.257067pt;}
.yb0{bottom:766.840133pt;}
.y4f{bottom:772.914267pt;}
.y61{bottom:774.166400pt;}
.yaf{bottom:782.760267pt;}
.yd6{bottom:783.557867pt;}
.y3a{bottom:785.817067pt;}
.y4e{bottom:788.356160pt;}
.y114{bottom:796.288533pt;}
.y39{bottom:801.817067pt;}
.y60{bottom:806.672533pt;}
.y113{bottom:806.688533pt;}
.y95{bottom:808.960000pt;}
.y130{bottom:813.297467pt;}
.y38{bottom:817.737200pt;}
.y4d{bottom:818.524000pt;}
.yae{bottom:827.294533pt;}
.yd5{bottom:831.597467pt;}
.y12f{bottom:832.817600pt;}
.y112{bottom:833.612667pt;}
.yad{bottom:837.694533pt;}
.y111{bottom:844.012667pt;}
.y94{bottom:844.698133pt;}
.yd4{bottom:851.117467pt;}
.y12e{bottom:852.257467pt;}
.y110{bottom:862.612133pt;}
.y37{bottom:863.065600pt;}
.yac{bottom:864.618933pt;}
.y4c{bottom:867.350960pt;}
.y12d{bottom:867.697600pt;}
.y93{bottom:869.187173pt;}
.yd3{bottom:870.557467pt;}
.y36{bottom:873.469333pt;}
.yab{bottom:875.018933pt;}
.y10f{bottom:879.892133pt;}
.y4b{bottom:880.714800pt;}
.y92{bottom:885.670133pt;}
.yd2{bottom:885.997600pt;}
.y4a{bottom:892.394800pt;}
.yaa{bottom:893.618267pt;}
.y10e{bottom:895.492133pt;}
.y12c{bottom:896.284213pt;}
.y49{bottom:899.594667pt;}
.y35{bottom:899.597333pt;}
.y90{bottom:907.590267pt;}
.y34{bottom:909.997333pt;}
.ya9{bottom:910.898267pt;}
.yd1{bottom:914.037627pt;}
.y48{bottom:919.034800pt;}
.ya8{bottom:926.498267pt;}
.yd0{bottom:927.401467pt;}
.y8d{bottom:929.430267pt;}
.y33{bottom:930.349333pt;}
.y47{bottom:934.473920pt;}
.y12b{bottom:943.983333pt;}
.y32{bottom:946.349333pt;}
.y8c{bottom:948.363200pt;}
.y153{bottom:948.853333pt;}
.y151{bottom:953.267600pt;}
.y31{bottom:962.269467pt;}
.y46{bottom:963.063600pt;}
.y12a{bottom:963.259493pt;}
.y8b{bottom:963.483200pt;}
.y150{bottom:963.667600pt;}
.y152{bottom:968.293333pt;}
.ya7{bottom:970.238667pt;}
.yff{bottom:974.174267pt;}
.y129{bottom:976.623333pt;}
.ya6{bottom:980.638533pt;}
.yfe{bottom:984.574267pt;}
.ycf{bottom:986.453467pt;}
.y128{bottom:988.623333pt;}
.y15d{bottom:990.685333pt;}
.y159{bottom:990.686400pt;}
.y7{bottom:996.267067pt;}
.y127{bottom:996.783333pt;}
.y158{bottom:1001.086400pt;}
.yce{bottom:1005.973600pt;}
.ya5{bottom:1006.768667pt;}
.y6{bottom:1007.147067pt;}
.y15c{bottom:1010.125333pt;}
.yfd{bottom:1010.704400pt;}
.y126{bottom:1016.059627pt;}
.ya4{bottom:1017.168667pt;}
.yfc{bottom:1021.104400pt;}
.y157{bottom:1021.440000pt;}
.ycd{bottom:1025.413467pt;}
.y15b{bottom:1025.565333pt;}
.y125{bottom:1029.423467pt;}
.ya3{bottom:1035.768133pt;}
.y156{bottom:1037.440000pt;}
.y5{bottom:1040.067733pt;}
.ycc{bottom:1040.853600pt;}
.yfb{bottom:1041.458000pt;}
.y3{bottom:1042.270933pt;}
.y124{bottom:1045.583467pt;}
.y2{bottom:1052.031067pt;}
.ya2{bottom:1053.048133pt;}
.y155{bottom:1053.360000pt;}
.y15a{bottom:1054.154133pt;}
.yfa{bottom:1057.458000pt;}
.y4{bottom:1057.538667pt;}
.y1{bottom:1062.670933pt;}
.ya1{bottom:1068.648133pt;}
.ycb{bottom:1069.442267pt;}
.yf5{bottom:1071.297333pt;}
.yf9{bottom:1073.378133pt;}
.y123{bottom:1074.172267pt;}
.y99{bottom:1078.400160pt;}
.yf8{bottom:1078.400187pt;}
.y160{bottom:1078.401493pt;}
.y14f{bottom:1078.402027pt;}
.y98{bottom:1091.200080pt;}
.yf7{bottom:1091.200107pt;}
.y15f{bottom:1091.201413pt;}
.y14e{bottom:1091.201947pt;}
.y97{bottom:1104.000000pt;}
.yf6{bottom:1104.000027pt;}
.y15e{bottom:1104.001333pt;}
.y14d{bottom:1104.001867pt;}
.h7{height:21.904219pt;}
.h9{height:24.279375pt;}
.h11{height:26.390625pt;}
.hc{height:32.988281pt;}
.h2{height:34.144000pt;}
.h10{height:35.099531pt;}
.he{height:39.048750pt;}
.h5{height:39.948480pt;}
.hd{height:39.960853pt;}
.h1{height:42.680000pt;}
.ha{height:44.388750pt;}
.h4{height:45.411520pt;}
.h8{height:45.440320pt;}
.h6{height:51.216000pt;}
.h3{height:53.947520pt;}
.hf{height:78.401333pt;}
.hb{height:471.120000pt;}
.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;}
.x4{left:45.877733pt;}
.xf{left:47.528000pt;}
.x15{left:51.437333pt;}
.x17{left:53.962000pt;}
.xb{left:64.204800pt;}
.xc{left:69.763733pt;}
.x10{left:76.915680pt;}
.xa{left:78.499200pt;}
.x19{left:82.145867pt;}
.x13{left:86.912133pt;}
.x11{left:89.617067pt;}
.x12{left:102.323200pt;}
.x18{left:141.642000pt;}
.x1{left:155.691467pt;}
.x5{left:207.037200pt;}
.x6{left:223.677200pt;}
.x7{left:297.034800pt;}
.xd{left:300.154800pt;}
.xe{left:301.354800pt;}
.x9{left:312.794800pt;}
.x8{left:313.914800pt;}
.x1a{left:325.034800pt;}
.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; }
  