
    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_2954c4f0d81b4cdadc27a64f.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_aef07e527622a20c4c039490.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_712011a12ba22562b8ad6811.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_3e84189d7e9ba70830b6757e.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;}
.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:-55.080000px;}
.v2{vertical-align:-8.921400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.573600px;}
.ls57{letter-spacing:-2.489760px;}
.ls42{letter-spacing:-2.346120px;}
.ls41{letter-spacing:-2.298240px;}
.ls2f{letter-spacing:-2.202480px;}
.ls59{letter-spacing:-2.154600px;}
.ls31{letter-spacing:-2.106720px;}
.ls34{letter-spacing:-1.963080px;}
.ls39{letter-spacing:-1.915200px;}
.ls35{letter-spacing:-1.867320px;}
.ls55{letter-spacing:-1.771560px;}
.ls46{letter-spacing:-1.723680px;}
.ls47{letter-spacing:-1.627920px;}
.ls5a{letter-spacing:-1.436400px;}
.ls1f{letter-spacing:-1.404000px;}
.ls43{letter-spacing:-1.340640px;}
.ls4e{letter-spacing:-1.305720px;}
.ls4c{letter-spacing:-1.221480px;}
.ls48{letter-spacing:-1.197000px;}
.ls3a{letter-spacing:-1.137240px;}
.ls5b{letter-spacing:-0.972000px;}
.ls3d{letter-spacing:-0.926640px;}
.ls38{letter-spacing:-0.909720px;}
.ls66{letter-spacing:-0.884520px;}
.ls2d{letter-spacing:-0.861840px;}
.ls1a{letter-spacing:-0.855000px;}
.ls28{letter-spacing:-0.828000px;}
.ls21{letter-spacing:-0.792000px;}
.ls40{letter-spacing:-0.718200px;}
.ls37{letter-spacing:-0.670320px;}
.ls5f{letter-spacing:-0.547560px;}
.ls20{letter-spacing:-0.540000px;}
.ls36{letter-spacing:-0.526680px;}
.ls2e{letter-spacing:-0.478800px;}
.ls65{letter-spacing:-0.430920px;}
.ls45{letter-spacing:-0.383040px;}
.ls52{letter-spacing:-0.379080px;}
.ls33{letter-spacing:-0.335160px;}
.ls1d{letter-spacing:-0.324000px;}
.ls30{letter-spacing:-0.287280px;}
.ls4a{letter-spacing:-0.270000px;}
.ls1e{letter-spacing:-0.252000px;}
.ls44{letter-spacing:-0.191520px;}
.ls4f{letter-spacing:-0.168480px;}
.ls49{letter-spacing:-0.143640px;}
.ls60{letter-spacing:-0.047880px;}
.ls1b{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.047880px;}
.ls19{letter-spacing:0.095760px;}
.ls16{letter-spacing:0.104040px;}
.ls5c{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.113760px;}
.ls53{letter-spacing:0.168480px;}
.ls58{letter-spacing:0.191520px;}
.ls4b{letter-spacing:0.210600px;}
.ls2{letter-spacing:0.252000px;}
.ls13{letter-spacing:0.299520px;}
.ls3f{letter-spacing:0.383040px;}
.ls1c{letter-spacing:0.450000px;}
.ls62{letter-spacing:0.478800px;}
.ls11{letter-spacing:0.505440px;}
.ls29{letter-spacing:0.612000px;}
.lse{letter-spacing:0.631800px;}
.ls2a{letter-spacing:0.684000px;}
.ls18{letter-spacing:0.718200px;}
.lsf{letter-spacing:0.756000px;}
.ls68{letter-spacing:0.766080px;}
.ls5{letter-spacing:0.792000px;}
.ls9{letter-spacing:0.828000px;}
.ls26{letter-spacing:0.864000px;}
.ls17{letter-spacing:0.884520px;}
.ls63{letter-spacing:0.895356px;}
.ls24{letter-spacing:0.900000px;}
.ls67{letter-spacing:0.909720px;}
.ls3c{letter-spacing:0.926640px;}
.ls69{letter-spacing:0.957600px;}
.ls15{letter-spacing:0.968760px;}
.ls23{letter-spacing:0.972000px;}
.ls10{letter-spacing:1.005480px;}
.ls3b{letter-spacing:1.010880px;}
.ls2b{letter-spacing:1.044000px;}
.ls5e{letter-spacing:1.053000px;}
.ls2c{letter-spacing:1.080000px;}
.ls5d{letter-spacing:1.134000px;}
.ls14{letter-spacing:1.137240px;}
.ls22{letter-spacing:1.152000px;}
.ls54{letter-spacing:1.179360px;}
.lsc{letter-spacing:1.197000px;}
.ls6{letter-spacing:1.224000px;}
.ls12{letter-spacing:1.263600px;}
.ls1{letter-spacing:1.332000px;}
.ls3{letter-spacing:1.440000px;}
.lsd{letter-spacing:1.558440px;}
.ls25{letter-spacing:1.584000px;}
.ls56{letter-spacing:1.675800px;}
.ls0{letter-spacing:1.692000px;}
.ls50{letter-spacing:1.728000px;}
.ls4d{letter-spacing:1.811160px;}
.ls3e{letter-spacing:1.836000px;}
.ls51{letter-spacing:1.979640px;}
.lsb{letter-spacing:1.980000px;}
.ls27{letter-spacing:2.016000px;}
.ls4{letter-spacing:2.232000px;}
.lsa{letter-spacing:2.304000px;}
.ls7{letter-spacing:2.592000px;}
.ls61{letter-spacing:21.687120px;}
.ls64{letter-spacing:167.599440px;}
.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;}
}
.ws24{word-spacing:-18.738000px;}
.ws33{word-spacing:-18.630000px;}
.ws3e{word-spacing:-18.036000px;}
.ws23{word-spacing:-16.902000px;}
.ws73{word-spacing:-16.665840px;}
.ws30{word-spacing:-16.632000px;}
.ws3d{word-spacing:-15.930000px;}
.ws7a{word-spacing:-15.896160px;}
.ws34{word-spacing:-15.163200px;}
.ws17{word-spacing:-15.034320px;}
.ws32{word-spacing:-14.994720px;}
.ws11{word-spacing:-14.986440px;}
.ws76{word-spacing:-14.938560px;}
.ws2f{word-spacing:-14.842800px;}
.ws14{word-spacing:-14.699160px;}
.ws74{word-spacing:-14.603400px;}
.ws16{word-spacing:-14.507640px;}
.ws37{word-spacing:-14.362920px;}
.ws25{word-spacing:-14.268240px;}
.ws21{word-spacing:-14.194440px;}
.ws36{word-spacing:-14.152320px;}
.ws12{word-spacing:-14.124600px;}
.ws2e{word-spacing:-13.789440px;}
.ws2{word-spacing:-13.635000px;}
.ws38{word-spacing:-13.310640px;}
.wsb{word-spacing:-13.284000px;}
.ws6{word-spacing:-13.248000px;}
.ws1{word-spacing:-13.185000px;}
.ws1f{word-spacing:-13.183560px;}
.ws1a{word-spacing:-13.119120px;}
.ws13{word-spacing:-12.783960px;}
.ws77{word-spacing:-12.762360px;}
.ws28{word-spacing:-12.640320px;}
.wsa{word-spacing:-12.492000px;}
.ws7{word-spacing:-12.420000px;}
.ws10{word-spacing:-12.348000px;}
.ws35{word-spacing:-12.341160px;}
.ws0{word-spacing:-12.330000px;}
.wse{word-spacing:-12.312000px;}
.ws22{word-spacing:-12.256920px;}
.wsf{word-spacing:-12.096000px;}
.ws8{word-spacing:-12.060000px;}
.ws20{word-spacing:-12.046320px;}
.ws31{word-spacing:-11.962080px;}
.wsd{word-spacing:-11.952000px;}
.wsc{word-spacing:-11.880000px;}
.ws3a{word-spacing:-11.874240px;}
.ws3f{word-spacing:-11.709360px;}
.ws3c{word-spacing:-11.539080px;}
.ws9{word-spacing:-11.268000px;}
.ws40{word-spacing:-11.161800px;}
.ws39{word-spacing:-11.156040px;}
.ws42{word-spacing:-11.012400px;}
.ws78{word-spacing:-10.824840px;}
.ws3b{word-spacing:-10.820880px;}
.ws41{word-spacing:-10.677240px;}
.ws3{word-spacing:-10.548000px;}
.ws4{word-spacing:-10.224000px;}
.ws5{word-spacing:-9.144000px;}
.ws7d{word-spacing:-4.399560px;}
.ws7c{word-spacing:-3.289320px;}
.ws2a{word-spacing:-1.757160px;}
.ws4a{word-spacing:-1.584000px;}
.ws4e{word-spacing:-1.440000px;}
.ws62{word-spacing:-1.263600px;}
.ws4d{word-spacing:-1.152000px;}
.ws6d{word-spacing:-1.149120px;}
.ws6c{word-spacing:-1.053000px;}
.ws48{word-spacing:-0.972000px;}
.ws72{word-spacing:-0.957600px;}
.ws57{word-spacing:-0.926640px;}
.ws49{word-spacing:-0.900000px;}
.ws6b{word-spacing:-0.884520px;}
.ws4b{word-spacing:-0.864000px;}
.ws1b{word-spacing:-0.751680px;}
.ws5e{word-spacing:-0.716040px;}
.ws50{word-spacing:-0.612000px;}
.ws56{word-spacing:-0.505440px;}
.ws70{word-spacing:-0.478800px;}
.ws71{word-spacing:-0.430920px;}
.ws58{word-spacing:-0.383040px;}
.ws4f{word-spacing:-0.324000px;}
.ws69{word-spacing:-0.294840px;}
.ws53{word-spacing:-0.239400px;}
.ws5d{word-spacing:-0.210600px;}
.ws65{word-spacing:-0.191520px;}
.ws61{word-spacing:-0.168480px;}
.ws7b{word-spacing:-0.129240px;}
.ws67{word-spacing:-0.108000px;}
.ws7f{word-spacing:-0.095760px;}
.ws19{word-spacing:-0.090360px;}
.ws6f{word-spacing:-0.047880px;}
.ws5c{word-spacing:-0.042120px;}
.ws43{word-spacing:0.000000px;}
.ws6e{word-spacing:0.047880px;}
.ws68{word-spacing:0.084240px;}
.ws52{word-spacing:0.143640px;}
.ws60{word-spacing:0.168480px;}
.ws44{word-spacing:0.252000px;}
.ws46{word-spacing:0.324000px;}
.ws55{word-spacing:0.335160px;}
.ws5b{word-spacing:0.383040px;}
.ws1d{word-spacing:0.397440px;}
.ws6a{word-spacing:0.421200px;}
.ws79{word-spacing:0.430920px;}
.ws51{word-spacing:0.478800px;}
.ws45{word-spacing:0.540000px;}
.ws47{word-spacing:0.792000px;}
.ws4c{word-spacing:0.828000px;}
.ws1c{word-spacing:1.019880px;}
.ws54{word-spacing:1.197000px;}
.ws5f{word-spacing:1.305720px;}
.ws59{word-spacing:1.340640px;}
.ws7e{word-spacing:1.580040px;}
.ws63{word-spacing:1.771560px;}
.ws5a{word-spacing:1.867320px;}
.ws66{word-spacing:2.154600px;}
.ws64{word-spacing:2.489760px;}
.ws2d{word-spacing:2.552040px;}
.ws18{word-spacing:3.557520px;}
.ws2c{word-spacing:4.179960px;}
.ws1e{word-spacing:4.218840px;}
.ws29{word-spacing:4.259880px;}
.ws26{word-spacing:5.329080px;}
.ws27{word-spacing:5.367960px;}
.ws2b{word-spacing:6.749640px;}
.ws75{word-spacing:6.797520px;}
.ws15{word-spacing:8.569080px;}
._6{margin-left:-5.938920px;}
._7{margin-left:-4.831560px;}
._4{margin-left:-3.125160px;}
._2{margin-left:-1.980000px;}
._1{width:1.125000px;}
._0{width:2.610000px;}
._3{width:3.708000px;}
._8{width:4.928040px;}
._a{width:10.835280px;}
._9{width:532.591200px;}
._5{width:1854.003240px;}
.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;}
.y157{bottom:25.797600px;}
.y89{bottom:25.800150px;}
.y97{bottom:40.190250px;}
.yf6{bottom:45.778500px;}
.y156{bottom:46.146600px;}
.ya4{bottom:48.513150px;}
.y12a{bottom:48.881400px;}
.y27{bottom:48.949350px;}
.ya3{bottom:60.213150px;}
.y129{bottom:60.581400px;}
.yf5{bottom:67.648500px;}
.y155{bottom:68.016600px;}
.y26{bottom:88.770390px;}
.yf4{bottom:89.608500px;}
.ya2{bottom:89.609550px;}
.y154{bottom:89.976600px;}
.y128{bottom:89.977800px;}
.y25{bottom:100.827240px;}
.ya1{bottom:101.309550px;}
.y127{bottom:101.677800px;}
.y1f{bottom:109.656750px;}
.yf3{bottom:111.478500px;}
.y153{bottom:111.846600px;}
.y12{bottom:113.284950px;}
.ya0{bottom:124.207500px;}
.y126{bottom:124.575450px;}
.y11{bottom:124.984800px;}
.y24{bottom:125.751750px;}
.yf2{bottom:128.848500px;}
.y152{bottom:129.216600px;}
.y1e{bottom:131.526750px;}
.y9f{bottom:142.207500px;}
.y125{bottom:142.575450px;}
.y23{bottom:151.307550px;}
.y1d{bottom:153.486750px;}
.y10{bottom:154.381200px;}
.y9e{bottom:160.117500px;}
.y124{bottom:160.485450px;}
.yf1{bottom:161.009370px;}
.y151{bottom:161.373450px;}
.y22{bottom:163.364400px;}
.yf{bottom:166.081200px;}
.y1c{bottom:175.356750px;}
.y21{bottom:182.929200px;}
.ye{bottom:187.005750px;}
.y1b{bottom:192.726750px;}
.y88{bottom:200.771550px;}
.yd{bottom:206.445750px;}
.yf0{bottom:214.611030px;}
.y150{bottom:214.999050px;}
.y87{bottom:215.981550px;}
.y123{bottom:217.733850px;}
.yc{bottom:223.995750px;}
.y1a{bottom:224.889150px;}
.y122{bottom:229.433850px;}
.y86{bottom:229.571550px;}
.yef{bottom:229.645350px;}
.y9d{bottom:231.660300px;}
.y14f{bottom:236.869050px;}
.yee{bottom:242.695350px;}
.y9c{bottom:243.360300px;}
.y85{bottom:246.851400px;}
.yed{bottom:250.795350px;}
.y14e{bottom:258.829050px;}
.y121{bottom:259.723800px;}
.y84{bottom:262.151400px;}
.y120{bottom:271.423800px;}
.yec{bottom:272.755350px;}
.y9b{bottom:273.649950px;}
.y83{bottom:275.741550px;}
.y19{bottom:277.391400px;}
.y14d{bottom:280.699200px;}
.y9a{bottom:285.349950px;}
.y82{bottom:289.781550px;}
.y11f{bottom:293.428200px;}
.yeb{bottom:294.625350px;}
.y14c{bottom:298.069200px;}
.y18{bottom:299.261400px;}
.y81{bottom:301.841400px;}
.yb4{bottom:306.274500px;}
.yb{bottom:310.726350px;}
.y11e{bottom:311.428200px;}
.yea{bottom:311.995350px;}
.y20{bottom:316.939200px;}
.ya{bottom:322.426350px;}
.y17{bottom:322.479690px;}
.y93{bottom:325.699050px;}
.yb3{bottom:325.714500px;}
.y11d{bottom:329.338200px;}
.y14b{bottom:330.226200px;}
.y80{bottom:335.203350px;}
.y16{bottom:336.161400px;}
.yb2{bottom:343.264350px;}
.ye9{bottom:344.152500px;}
.y7f{bottom:349.243200px;}
.y9{bottom:351.822600px;}
.y15{bottom:357.847080px;}
.y7e{bottom:361.303350px;}
.y8{bottom:363.522600px;}
.y90{bottom:367.729050px;}
.y14{bottom:372.881400px;}
.y7d{bottom:376.243200px;}
.y14a{bottom:383.851800px;}
.y2a{bottom:386.420550px;}
.y11c{bottom:386.586450px;}
.y7c{bottom:388.303350px;}
.y13{bottom:391.061400px;}
.y8e{bottom:392.389050px;}
.ye8{bottom:397.778100px;}
.y11b{bottom:398.286450px;}
.ycf{bottom:401.406300px;}
.y7b{bottom:403.243200px;}
.y29{bottom:404.420550px;}
.y149{bottom:405.721800px;}
.yce{bottom:413.108100px;}
.y7a{bottom:415.303200px;}
.ye7{bottom:419.648100px;}
.y28{bottom:422.330400px;}
.y5f{bottom:423.218550px;}
.y148{bottom:427.681800px;}
.y11a{bottom:428.576250px;}
.y79{bottom:435.761550px;}
.y119{bottom:440.276250px;}
.ye6{bottom:441.608100px;}
.ycd{bottom:442.502100px;}
.y147{bottom:449.551800px;}
.ycc{bottom:454.202100px;}
.y74{bottom:456.850350px;}
.y118{bottom:461.200650px;}
.ye5{bottom:463.478100px;}
.y146{bottom:466.921800px;}
.y73{bottom:468.907200px;}
.ycb{bottom:475.127100px;}
.y5e{bottom:476.844150px;}
.y46{bottom:479.578800px;}
.y117{bottom:480.640650px;}
.ye4{bottom:480.847950px;}
.y45{bottom:491.274150px;}
.yca{bottom:494.567100px;}
.y116{bottom:498.190650px;}
.y5d{bottom:498.714150px;}
.y145{bottom:499.086420px;}
.y72{bottom:505.476600px;}
.yc9{bottom:512.117100px;}
.ye3{bottom:513.012570px;}
.y5c{bottom:520.674150px;}
.y44{bottom:521.568150px;}
.y43{bottom:533.268150px;}
.y5b{bottom:542.544150px;}
.y71{bottom:544.756350px;}
.y144{bottom:553.597800px;}
.y42{bottom:554.193150px;}
.y115{bottom:556.332600px;}
.y5a{bottom:559.909110px;}
.y70{bottom:563.161950px;}
.ye2{bottom:567.523950px;}
.y114{bottom:568.032600px;}
.yc8{bottom:570.258750px;}
.y41{bottom:573.633150px;}
.y6f{bottom:575.219460px;}
.y143{bottom:575.467650px;}
.yc7{bottom:581.963100px;}
.ye1{bottom:589.393950px;}
.y40{bottom:591.183000px;}
.y59{bottom:592.072500px;}
.y78{bottom:594.612750px;}
.y142{bottom:597.427800px;}
.y113{bottom:597.429000px;}
.y77{bottom:606.582750px;}
.y112{bottom:609.129000px;}
.ye0{bottom:611.353950px;}
.yc6{bottom:611.357100px;}
.y76{bottom:618.552750px;}
.y141{bottom:619.297650px;}
.yc5{bottom:623.057100px;}
.y75{bottom:630.612750px;}
.y111{bottom:632.026650px;}
.ydf{bottom:633.223950px;}
.y140{bottom:636.667650px;}
.y8d{bottom:642.060000px;}
.y3f{bottom:642.177600px;}
.yc4{bottom:645.953100px;}
.y58{bottom:646.105080px;}
.y6e{bottom:649.466490px;}
.y110{bottom:650.026650px;}
.yde{bottom:650.593950px;}
.y3e{bottom:653.879550px;}
.y57{bottom:661.139400px;}
.y6d{bottom:661.439100px;}
.yc3{bottom:663.953100px;}
.y10f{bottom:667.936650px;}
.y13f{bottom:668.828820px;}
.y6c{bottom:673.495950px;}
.y56{bottom:674.279400px;}
.yc2{bottom:681.862950px;}
.y55{bottom:682.379400px;}
.ydd{bottom:682.750950px;}
.y3d{bottom:683.273550px;}
.y6b{bottom:691.273800px;}
.y3c{bottom:694.973550px;}
.y54{bottom:704.249400px;}
.y6a{bottom:710.217000px;}
.y3b{bottom:715.898550px;}
.y13e{bottom:719.809050px;}
.y53{bottom:721.618560px;}
.y69{bottom:722.187000px;}
.y68{bottom:734.248950px;}
.y3a{bottom:735.338550px;}
.ydc{bottom:736.376550px;}
.y13d{bottom:741.769050px;}
.y67{bottom:752.023590px;}
.y39{bottom:752.888550px;}
.yb1{bottom:753.405750px;}
.y100{bottom:753.773850px;}
.y52{bottom:753.781950px;}
.ydb{bottom:758.246700px;}
.y13c{bottom:763.460490px;}
.yb0{bottom:765.101100px;}
.yff{bottom:765.473850px;}
.y66{bottom:769.893000px;}
.y13b{bottom:778.399050px;}
.yda{bottom:780.206550px;}
.y65{bottom:788.572350px;}
.yfe{bottom:794.870400px;}
.yaf{bottom:795.395100px;}
.y13a{bottom:800.894580px;}
.y64{bottom:801.442350px;}
.yd9{bottom:802.076550px;}
.yfd{bottom:806.570400px;}
.yae{bottom:807.095100px;}
.y51{bottom:808.295400px;}
.y38{bottom:811.030200px;}
.y139{bottom:815.928900px;}
.y63{bottom:819.442350px;}
.yd8{bottom:819.446550px;}
.y37{bottom:822.734400px;}
.yad{bottom:828.020100px;}
.yfc{bottom:829.468200px;}
.y50{bottom:830.165400px;}
.y138{bottom:834.109050px;}
.y62{bottom:836.542350px;}
.yac{bottom:847.460100px;}
.yfb{bottom:847.468200px;}
.y61{bottom:848.602350px;}
.yd7{bottom:850.983330px;}
.y4f{bottom:852.125400px;}
.y36{bottom:852.128400px;}
.y35{bottom:863.828400px;}
.yab{bottom:865.010100px;}
.yfa{bottom:865.378200px;}
.yd6{bottom:866.017650px;}
.y137{bottom:866.265900px;}
.y4e{bottom:873.995400px;}
.y60{bottom:884.278350px;}
.y34{bottom:886.724400px;}
.y96{bottom:887.760000px;}
.y4d{bottom:891.367410px;}
.y33{bottom:904.724400px;}
.yd5{bottom:919.523550px;}
.y136{bottom:919.891500px;}
.y10e{bottom:922.626600px;}
.y32{bottom:922.634400px;}
.yc1{bottom:923.151900px;}
.y4c{bottom:923.530800px;}
.y95{bottom:927.950250px;}
.y10d{bottom:934.326450px;}
.yc0{bottom:934.853550px;}
.yd4{bottom:941.393700px;}
.y135{bottom:941.761650px;}
.y94{bottom:954.709050px;}
.yd3{bottom:963.353550px;}
.y134{bottom:963.721650px;}
.ybf{bottom:964.247550px;}
.y10c{bottom:964.616250px;}
.y31{bottom:970.948800px;}
.ybe{bottom:975.947550px;}
.y10b{bottom:976.316250px;}
.y92{bottom:977.835570px;}
.y30{bottom:982.653000px;}
.yd2{bottom:985.223550px;}
.y133{bottom:985.591650px;}
.y4b{bottom:990.084000px;}
.y91{bottom:996.378900px;}
.ybd{bottom:996.872550px;}
.y10a{bottom:997.240650px;}
.yd1{bottom:1002.593700px;}
.y132{bottom:1002.961650px;}
.y4a{bottom:1012.044000px;}
.y2f{bottom:1012.047000px;}
.ybc{bottom:1016.312550px;}
.y109{bottom:1016.680650px;}
.y8f{bottom:1021.039050px;}
.y2e{bottom:1023.747000px;}
.ybb{bottom:1033.862700px;}
.y49{bottom:1033.914150px;}
.y108{bottom:1034.230800px;}
.yd0{bottom:1034.755950px;}
.y131{bottom:1035.118650px;}
.y8c{bottom:1045.609050px;}
.y2d{bottom:1046.643000px;}
.y48{bottom:1051.283160px;}
.y2c{bottom:1064.643000px;}
.y8b{bottom:1066.908600px;}
.y2b{bottom:1082.552550px;}
.yba{bottom:1083.070350px;}
.y47{bottom:1083.446550px;}
.y8a{bottom:1083.918600px;}
.y130{bottom:1088.744250px;}
.yaa{bottom:1091.340000px;}
.y107{bottom:1092.372600px;}
.yb9{bottom:1094.773500px;}
.y106{bottom:1104.072450px;}
.y12f{bottom:1110.614250px;}
.ya9{bottom:1113.210000px;}
.y7{bottom:1120.800450px;}
.yb8{bottom:1124.167500px;}
.y12e{bottom:1132.574250px;}
.y6{bottom:1133.040450px;}
.y105{bottom:1133.468850px;}
.ya8{bottom:1135.080000px;}
.yb7{bottom:1135.867500px;}
.y104{bottom:1145.168850px;}
.y12d{bottom:1154.444250px;}
.ya7{bottom:1157.040000px;}
.yb6{bottom:1160.716500px;}
.y103{bottom:1167.173400px;}
.y5{bottom:1170.076200px;}
.y12c{bottom:1171.814250px;}
.y3{bottom:1172.554800px;}
.yb5{bottom:1178.536500px;}
.y2{bottom:1183.534950px;}
.y102{bottom:1185.173400px;}
.ya6{bottom:1188.180000px;}
.y4{bottom:1189.731000px;}
.y1{bottom:1195.504800px;}
.yf7{bottom:1196.485350px;}
.ya5{bottom:1196.550000px;}
.y101{bottom:1203.083400px;}
.y12b{bottom:1203.976800px;}
.y159{bottom:1217.842020px;}
.y99{bottom:1217.850240px;}
.yf9{bottom:1217.855490px;}
.y158{bottom:1232.241930px;}
.y98{bottom:1232.250150px;}
.yf8{bottom:1232.255400px;}
.h8{height:20.702988px;}
.hd{height:29.183730px;}
.hb{height:31.179199px;}
.h10{height:33.174668px;}
.h2{height:38.412000px;}
.he{height:43.929844px;}
.h5{height:44.942040px;}
.hc{height:44.955960px;}
.h1{height:48.015000px;}
.h9{height:49.937344px;}
.h4{height:51.087960px;}
.h11{height:51.769560px;}
.h6{height:57.618000px;}
.h3{height:60.690960px;}
.h7{height:60.693360px;}
.hf{height:88.200000px;}
.ha{height:622.440000px;}
.h0{height:1264.500000px;}
.w3{width:161.730000px;}
.w2{width:167.041500px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x13{left:39.030000px;}
.x15{left:47.970000px;}
.x4{left:51.612450px;}
.xe{left:53.469000px;}
.x14{left:57.867000px;}
.x16{left:60.707250px;}
.xb{left:72.230400px;}
.xc{left:78.484200px;}
.xf{left:86.530140px;}
.xa{left:88.311600px;}
.x18{left:90.000000px;}
.x12{left:97.776150px;}
.x10{left:100.819200px;}
.x11{left:115.113600px;}
.x17{left:159.347250px;}
.x1{left:175.152900px;}
.x6{left:232.916850px;}
.x5{left:251.636850px;}
.x1a{left:327.000000px;}
.x19{left:328.530000px;}
.x7{left:334.164150px;}
.x8{left:337.674150px;}
.x9{left:351.894150px;}
.xd{left:362.064150px;}
.x3{left:658.482300px;}
.x2{left:786.238500px;}
@media print{
.v1{vertical-align:-48.960000pt;}
.v2{vertical-align:-7.930133pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.176533pt;}
.ls57{letter-spacing:-2.213120pt;}
.ls42{letter-spacing:-2.085440pt;}
.ls41{letter-spacing:-2.042880pt;}
.ls2f{letter-spacing:-1.957760pt;}
.ls59{letter-spacing:-1.915200pt;}
.ls31{letter-spacing:-1.872640pt;}
.ls34{letter-spacing:-1.744960pt;}
.ls39{letter-spacing:-1.702400pt;}
.ls35{letter-spacing:-1.659840pt;}
.ls55{letter-spacing:-1.574720pt;}
.ls46{letter-spacing:-1.532160pt;}
.ls47{letter-spacing:-1.447040pt;}
.ls5a{letter-spacing:-1.276800pt;}
.ls1f{letter-spacing:-1.248000pt;}
.ls43{letter-spacing:-1.191680pt;}
.ls4e{letter-spacing:-1.160640pt;}
.ls4c{letter-spacing:-1.085760pt;}
.ls48{letter-spacing:-1.064000pt;}
.ls3a{letter-spacing:-1.010880pt;}
.ls5b{letter-spacing:-0.864000pt;}
.ls3d{letter-spacing:-0.823680pt;}
.ls38{letter-spacing:-0.808640pt;}
.ls66{letter-spacing:-0.786240pt;}
.ls2d{letter-spacing:-0.766080pt;}
.ls1a{letter-spacing:-0.760000pt;}
.ls28{letter-spacing:-0.736000pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls40{letter-spacing:-0.638400pt;}
.ls37{letter-spacing:-0.595840pt;}
.ls5f{letter-spacing:-0.486720pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls36{letter-spacing:-0.468160pt;}
.ls2e{letter-spacing:-0.425600pt;}
.ls65{letter-spacing:-0.383040pt;}
.ls45{letter-spacing:-0.340480pt;}
.ls52{letter-spacing:-0.336960pt;}
.ls33{letter-spacing:-0.297920pt;}
.ls1d{letter-spacing:-0.288000pt;}
.ls30{letter-spacing:-0.255360pt;}
.ls4a{letter-spacing:-0.240000pt;}
.ls1e{letter-spacing:-0.224000pt;}
.ls44{letter-spacing:-0.170240pt;}
.ls4f{letter-spacing:-0.149760pt;}
.ls49{letter-spacing:-0.127680pt;}
.ls60{letter-spacing:-0.042560pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.042560pt;}
.ls19{letter-spacing:0.085120pt;}
.ls16{letter-spacing:0.092480pt;}
.ls5c{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.101120pt;}
.ls53{letter-spacing:0.149760pt;}
.ls58{letter-spacing:0.170240pt;}
.ls4b{letter-spacing:0.187200pt;}
.ls2{letter-spacing:0.224000pt;}
.ls13{letter-spacing:0.266240pt;}
.ls3f{letter-spacing:0.340480pt;}
.ls1c{letter-spacing:0.400000pt;}
.ls62{letter-spacing:0.425600pt;}
.ls11{letter-spacing:0.449280pt;}
.ls29{letter-spacing:0.544000pt;}
.lse{letter-spacing:0.561600pt;}
.ls2a{letter-spacing:0.608000pt;}
.ls18{letter-spacing:0.638400pt;}
.lsf{letter-spacing:0.672000pt;}
.ls68{letter-spacing:0.680960pt;}
.ls5{letter-spacing:0.704000pt;}
.ls9{letter-spacing:0.736000pt;}
.ls26{letter-spacing:0.768000pt;}
.ls17{letter-spacing:0.786240pt;}
.ls63{letter-spacing:0.795872pt;}
.ls24{letter-spacing:0.800000pt;}
.ls67{letter-spacing:0.808640pt;}
.ls3c{letter-spacing:0.823680pt;}
.ls69{letter-spacing:0.851200pt;}
.ls15{letter-spacing:0.861120pt;}
.ls23{letter-spacing:0.864000pt;}
.ls10{letter-spacing:0.893760pt;}
.ls3b{letter-spacing:0.898560pt;}
.ls2b{letter-spacing:0.928000pt;}
.ls5e{letter-spacing:0.936000pt;}
.ls2c{letter-spacing:0.960000pt;}
.ls5d{letter-spacing:1.008000pt;}
.ls14{letter-spacing:1.010880pt;}
.ls22{letter-spacing:1.024000pt;}
.ls54{letter-spacing:1.048320pt;}
.lsc{letter-spacing:1.064000pt;}
.ls6{letter-spacing:1.088000pt;}
.ls12{letter-spacing:1.123200pt;}
.ls1{letter-spacing:1.184000pt;}
.ls3{letter-spacing:1.280000pt;}
.lsd{letter-spacing:1.385280pt;}
.ls25{letter-spacing:1.408000pt;}
.ls56{letter-spacing:1.489600pt;}
.ls0{letter-spacing:1.504000pt;}
.ls50{letter-spacing:1.536000pt;}
.ls4d{letter-spacing:1.609920pt;}
.ls3e{letter-spacing:1.632000pt;}
.ls51{letter-spacing:1.759680pt;}
.lsb{letter-spacing:1.760000pt;}
.ls27{letter-spacing:1.792000pt;}
.ls4{letter-spacing:1.984000pt;}
.lsa{letter-spacing:2.048000pt;}
.ls7{letter-spacing:2.304000pt;}
.ls61{letter-spacing:19.277440pt;}
.ls64{letter-spacing:148.977280pt;}
.ws24{word-spacing:-16.656000pt;}
.ws33{word-spacing:-16.560000pt;}
.ws3e{word-spacing:-16.032000pt;}
.ws23{word-spacing:-15.024000pt;}
.ws73{word-spacing:-14.814080pt;}
.ws30{word-spacing:-14.784000pt;}
.ws3d{word-spacing:-14.160000pt;}
.ws7a{word-spacing:-14.129920pt;}
.ws34{word-spacing:-13.478400pt;}
.ws17{word-spacing:-13.363840pt;}
.ws32{word-spacing:-13.328640pt;}
.ws11{word-spacing:-13.321280pt;}
.ws76{word-spacing:-13.278720pt;}
.ws2f{word-spacing:-13.193600pt;}
.ws14{word-spacing:-13.065920pt;}
.ws74{word-spacing:-12.980800pt;}
.ws16{word-spacing:-12.895680pt;}
.ws37{word-spacing:-12.767040pt;}
.ws25{word-spacing:-12.682880pt;}
.ws21{word-spacing:-12.617280pt;}
.ws36{word-spacing:-12.579840pt;}
.ws12{word-spacing:-12.555200pt;}
.ws2e{word-spacing:-12.257280pt;}
.ws2{word-spacing:-12.120000pt;}
.ws38{word-spacing:-11.831680pt;}
.wsb{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.776000pt;}
.ws1{word-spacing:-11.720000pt;}
.ws1f{word-spacing:-11.718720pt;}
.ws1a{word-spacing:-11.661440pt;}
.ws13{word-spacing:-11.363520pt;}
.ws77{word-spacing:-11.344320pt;}
.ws28{word-spacing:-11.235840pt;}
.wsa{word-spacing:-11.104000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws10{word-spacing:-10.976000pt;}
.ws35{word-spacing:-10.969920pt;}
.ws0{word-spacing:-10.960000pt;}
.wse{word-spacing:-10.944000pt;}
.ws22{word-spacing:-10.895040pt;}
.wsf{word-spacing:-10.752000pt;}
.ws8{word-spacing:-10.720000pt;}
.ws20{word-spacing:-10.707840pt;}
.ws31{word-spacing:-10.632960pt;}
.wsd{word-spacing:-10.624000pt;}
.wsc{word-spacing:-10.560000pt;}
.ws3a{word-spacing:-10.554880pt;}
.ws3f{word-spacing:-10.408320pt;}
.ws3c{word-spacing:-10.256960pt;}
.ws9{word-spacing:-10.016000pt;}
.ws40{word-spacing:-9.921600pt;}
.ws39{word-spacing:-9.916480pt;}
.ws42{word-spacing:-9.788800pt;}
.ws78{word-spacing:-9.622080pt;}
.ws3b{word-spacing:-9.618560pt;}
.ws41{word-spacing:-9.490880pt;}
.ws3{word-spacing:-9.376000pt;}
.ws4{word-spacing:-9.088000pt;}
.ws5{word-spacing:-8.128000pt;}
.ws7d{word-spacing:-3.910720pt;}
.ws7c{word-spacing:-2.923840pt;}
.ws2a{word-spacing:-1.561920pt;}
.ws4a{word-spacing:-1.408000pt;}
.ws4e{word-spacing:-1.280000pt;}
.ws62{word-spacing:-1.123200pt;}
.ws4d{word-spacing:-1.024000pt;}
.ws6d{word-spacing:-1.021440pt;}
.ws6c{word-spacing:-0.936000pt;}
.ws48{word-spacing:-0.864000pt;}
.ws72{word-spacing:-0.851200pt;}
.ws57{word-spacing:-0.823680pt;}
.ws49{word-spacing:-0.800000pt;}
.ws6b{word-spacing:-0.786240pt;}
.ws4b{word-spacing:-0.768000pt;}
.ws1b{word-spacing:-0.668160pt;}
.ws5e{word-spacing:-0.636480pt;}
.ws50{word-spacing:-0.544000pt;}
.ws56{word-spacing:-0.449280pt;}
.ws70{word-spacing:-0.425600pt;}
.ws71{word-spacing:-0.383040pt;}
.ws58{word-spacing:-0.340480pt;}
.ws4f{word-spacing:-0.288000pt;}
.ws69{word-spacing:-0.262080pt;}
.ws53{word-spacing:-0.212800pt;}
.ws5d{word-spacing:-0.187200pt;}
.ws65{word-spacing:-0.170240pt;}
.ws61{word-spacing:-0.149760pt;}
.ws7b{word-spacing:-0.114880pt;}
.ws67{word-spacing:-0.096000pt;}
.ws7f{word-spacing:-0.085120pt;}
.ws19{word-spacing:-0.080320pt;}
.ws6f{word-spacing:-0.042560pt;}
.ws5c{word-spacing:-0.037440pt;}
.ws43{word-spacing:0.000000pt;}
.ws6e{word-spacing:0.042560pt;}
.ws68{word-spacing:0.074880pt;}
.ws52{word-spacing:0.127680pt;}
.ws60{word-spacing:0.149760pt;}
.ws44{word-spacing:0.224000pt;}
.ws46{word-spacing:0.288000pt;}
.ws55{word-spacing:0.297920pt;}
.ws5b{word-spacing:0.340480pt;}
.ws1d{word-spacing:0.353280pt;}
.ws6a{word-spacing:0.374400pt;}
.ws79{word-spacing:0.383040pt;}
.ws51{word-spacing:0.425600pt;}
.ws45{word-spacing:0.480000pt;}
.ws47{word-spacing:0.704000pt;}
.ws4c{word-spacing:0.736000pt;}
.ws1c{word-spacing:0.906560pt;}
.ws54{word-spacing:1.064000pt;}
.ws5f{word-spacing:1.160640pt;}
.ws59{word-spacing:1.191680pt;}
.ws7e{word-spacing:1.404480pt;}
.ws63{word-spacing:1.574720pt;}
.ws5a{word-spacing:1.659840pt;}
.ws66{word-spacing:1.915200pt;}
.ws64{word-spacing:2.213120pt;}
.ws2d{word-spacing:2.268480pt;}
.ws18{word-spacing:3.162240pt;}
.ws2c{word-spacing:3.715520pt;}
.ws1e{word-spacing:3.750080pt;}
.ws29{word-spacing:3.786560pt;}
.ws26{word-spacing:4.736960pt;}
.ws27{word-spacing:4.771520pt;}
.ws2b{word-spacing:5.999680pt;}
.ws75{word-spacing:6.042240pt;}
.ws15{word-spacing:7.616960pt;}
._6{margin-left:-5.279040pt;}
._7{margin-left:-4.294720pt;}
._4{margin-left:-2.777920pt;}
._2{margin-left:-1.760000pt;}
._1{width:1.000000pt;}
._0{width:2.320000pt;}
._3{width:3.296000pt;}
._8{width:4.380480pt;}
._a{width:9.631360pt;}
._9{width:473.414400pt;}
._5{width:1648.002880pt;}
.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;}
.y157{bottom:22.931200pt;}
.y89{bottom:22.933467pt;}
.y97{bottom:35.724667pt;}
.yf6{bottom:40.692000pt;}
.y156{bottom:41.019200pt;}
.ya4{bottom:43.122800pt;}
.y12a{bottom:43.450133pt;}
.y27{bottom:43.510533pt;}
.ya3{bottom:53.522800pt;}
.y129{bottom:53.850133pt;}
.yf5{bottom:60.132000pt;}
.y155{bottom:60.459200pt;}
.y26{bottom:78.907013pt;}
.yf4{bottom:79.652000pt;}
.ya2{bottom:79.652933pt;}
.y154{bottom:79.979200pt;}
.y128{bottom:79.980267pt;}
.y25{bottom:89.624213pt;}
.ya1{bottom:90.052933pt;}
.y127{bottom:90.380267pt;}
.y1f{bottom:97.472667pt;}
.yf3{bottom:99.092000pt;}
.y153{bottom:99.419200pt;}
.y12{bottom:100.697733pt;}
.ya0{bottom:110.406667pt;}
.y126{bottom:110.733733pt;}
.y11{bottom:111.097600pt;}
.y24{bottom:111.779333pt;}
.yf2{bottom:114.532000pt;}
.y152{bottom:114.859200pt;}
.y1e{bottom:116.912667pt;}
.y9f{bottom:126.406667pt;}
.y125{bottom:126.733733pt;}
.y23{bottom:134.495600pt;}
.y1d{bottom:136.432667pt;}
.y10{bottom:137.227733pt;}
.y9e{bottom:142.326667pt;}
.y124{bottom:142.653733pt;}
.yf1{bottom:143.119440pt;}
.y151{bottom:143.443067pt;}
.y22{bottom:145.212800pt;}
.yf{bottom:147.627733pt;}
.y1c{bottom:155.872667pt;}
.y21{bottom:162.603733pt;}
.ye{bottom:166.227333pt;}
.y1b{bottom:171.312667pt;}
.y88{bottom:178.463600pt;}
.yd{bottom:183.507333pt;}
.yf0{bottom:190.765360pt;}
.y150{bottom:191.110267pt;}
.y87{bottom:191.983600pt;}
.y123{bottom:193.541200pt;}
.yc{bottom:199.107333pt;}
.y1a{bottom:199.901467pt;}
.y122{bottom:203.941200pt;}
.y86{bottom:204.063600pt;}
.yef{bottom:204.129200pt;}
.y9d{bottom:205.920267pt;}
.y14f{bottom:210.550267pt;}
.yee{bottom:215.729200pt;}
.y9c{bottom:216.320267pt;}
.y85{bottom:219.423467pt;}
.yed{bottom:222.929200pt;}
.y14e{bottom:230.070267pt;}
.y121{bottom:230.865600pt;}
.y84{bottom:233.023467pt;}
.y120{bottom:241.265600pt;}
.yec{bottom:242.449200pt;}
.y9b{bottom:243.244400pt;}
.y83{bottom:245.103600pt;}
.y19{bottom:246.570133pt;}
.y14d{bottom:249.510400pt;}
.y9a{bottom:253.644400pt;}
.y82{bottom:257.583600pt;}
.y11f{bottom:260.825067pt;}
.yeb{bottom:261.889200pt;}
.y14c{bottom:264.950400pt;}
.y18{bottom:266.010133pt;}
.y81{bottom:268.303467pt;}
.yb4{bottom:272.244000pt;}
.yb{bottom:276.201200pt;}
.y11e{bottom:276.825067pt;}
.yea{bottom:277.329200pt;}
.y20{bottom:281.723733pt;}
.ya{bottom:286.601200pt;}
.y17{bottom:286.648613pt;}
.y93{bottom:289.510267pt;}
.yb3{bottom:289.524000pt;}
.y11d{bottom:292.745067pt;}
.y14b{bottom:293.534400pt;}
.y80{bottom:297.958533pt;}
.y16{bottom:298.810133pt;}
.yb2{bottom:305.123867pt;}
.ye9{bottom:305.913333pt;}
.y7f{bottom:310.438400pt;}
.y9{bottom:312.731200pt;}
.y15{bottom:318.086293pt;}
.y7e{bottom:321.158533pt;}
.y8{bottom:323.131200pt;}
.y90{bottom:326.870267pt;}
.y14{bottom:331.450133pt;}
.y7d{bottom:334.438400pt;}
.y14a{bottom:341.201600pt;}
.y2a{bottom:343.484933pt;}
.y11c{bottom:343.632400pt;}
.y7c{bottom:345.158533pt;}
.y13{bottom:347.610133pt;}
.y8e{bottom:348.790267pt;}
.ye8{bottom:353.580533pt;}
.y11b{bottom:354.032400pt;}
.ycf{bottom:356.805600pt;}
.y7b{bottom:358.438400pt;}
.y29{bottom:359.484933pt;}
.y149{bottom:360.641600pt;}
.yce{bottom:367.207200pt;}
.y7a{bottom:369.158400pt;}
.ye7{bottom:373.020533pt;}
.y28{bottom:375.404800pt;}
.y5f{bottom:376.194267pt;}
.y148{bottom:380.161600pt;}
.y11a{bottom:380.956667pt;}
.y79{bottom:387.343600pt;}
.y119{bottom:391.356667pt;}
.ye6{bottom:392.540533pt;}
.ycd{bottom:393.335200pt;}
.y147{bottom:399.601600pt;}
.ycc{bottom:403.735200pt;}
.y74{bottom:406.089200pt;}
.y118{bottom:409.956133pt;}
.ye5{bottom:411.980533pt;}
.y146{bottom:415.041600pt;}
.y73{bottom:416.806400pt;}
.ycb{bottom:422.335200pt;}
.y5e{bottom:423.861467pt;}
.y46{bottom:426.292267pt;}
.y117{bottom:427.236133pt;}
.ye4{bottom:427.420400pt;}
.y45{bottom:436.688133pt;}
.yca{bottom:439.615200pt;}
.y116{bottom:442.836133pt;}
.y5d{bottom:443.301467pt;}
.y145{bottom:443.632373pt;}
.y72{bottom:449.312533pt;}
.yc9{bottom:455.215200pt;}
.ye3{bottom:456.011173pt;}
.y5c{bottom:462.821467pt;}
.y44{bottom:463.616133pt;}
.y43{bottom:474.016133pt;}
.y5b{bottom:482.261467pt;}
.y71{bottom:484.227867pt;}
.y144{bottom:492.086933pt;}
.y42{bottom:492.616133pt;}
.y115{bottom:494.517867pt;}
.y5a{bottom:497.696987pt;}
.y70{bottom:500.588400pt;}
.ye2{bottom:504.465733pt;}
.y114{bottom:504.917867pt;}
.yc8{bottom:506.896667pt;}
.y41{bottom:509.896133pt;}
.y6f{bottom:511.306187pt;}
.y143{bottom:511.526800pt;}
.yc7{bottom:517.300533pt;}
.ye1{bottom:523.905733pt;}
.y40{bottom:525.496000pt;}
.y59{bottom:526.286667pt;}
.y78{bottom:528.544667pt;}
.y142{bottom:531.046933pt;}
.y113{bottom:531.048000pt;}
.y77{bottom:539.184667pt;}
.y112{bottom:541.448000pt;}
.ye0{bottom:543.425733pt;}
.yc6{bottom:543.428533pt;}
.y76{bottom:549.824667pt;}
.y141{bottom:550.486800pt;}
.yc5{bottom:553.828533pt;}
.y75{bottom:560.544667pt;}
.y111{bottom:561.801467pt;}
.ydf{bottom:562.865733pt;}
.y140{bottom:565.926800pt;}
.y8d{bottom:570.720000pt;}
.y3f{bottom:570.824533pt;}
.yc4{bottom:574.180533pt;}
.y58{bottom:574.315627pt;}
.y6e{bottom:577.303547pt;}
.y110{bottom:577.801467pt;}
.yde{bottom:578.305733pt;}
.y3e{bottom:581.226267pt;}
.y57{bottom:587.679467pt;}
.y6d{bottom:587.945867pt;}
.yc3{bottom:590.180533pt;}
.y10f{bottom:593.721467pt;}
.y13f{bottom:594.514507pt;}
.y6c{bottom:598.663067pt;}
.y56{bottom:599.359467pt;}
.yc2{bottom:606.100400pt;}
.y55{bottom:606.559467pt;}
.ydd{bottom:606.889733pt;}
.y3d{bottom:607.354267pt;}
.y6b{bottom:614.465600pt;}
.y3c{bottom:617.754267pt;}
.y54{bottom:625.999467pt;}
.y6a{bottom:631.304000pt;}
.y3b{bottom:636.354267pt;}
.y13e{bottom:639.830267pt;}
.y53{bottom:641.438720pt;}
.y69{bottom:641.944000pt;}
.y68{bottom:652.665733pt;}
.y3a{bottom:653.634267pt;}
.ydc{bottom:654.556933pt;}
.y13d{bottom:659.350267pt;}
.y67{bottom:668.465413pt;}
.y39{bottom:669.234267pt;}
.yb1{bottom:669.694000pt;}
.y100{bottom:670.021200pt;}
.y52{bottom:670.028400pt;}
.ydb{bottom:673.997067pt;}
.y13c{bottom:678.631547pt;}
.yb0{bottom:680.089867pt;}
.yff{bottom:680.421200pt;}
.y66{bottom:684.349333pt;}
.y13b{bottom:691.910267pt;}
.yda{bottom:693.516933pt;}
.y65{bottom:700.953200pt;}
.yfe{bottom:706.551467pt;}
.yaf{bottom:707.017867pt;}
.y13a{bottom:711.906293pt;}
.y64{bottom:712.393200pt;}
.yd9{bottom:712.956933pt;}
.yfd{bottom:716.951467pt;}
.yae{bottom:717.417867pt;}
.y51{bottom:718.484800pt;}
.y38{bottom:720.915733pt;}
.y139{bottom:725.270133pt;}
.y63{bottom:728.393200pt;}
.yd8{bottom:728.396933pt;}
.y37{bottom:731.319467pt;}
.yad{bottom:736.017867pt;}
.yfc{bottom:737.305067pt;}
.y50{bottom:737.924800pt;}
.y138{bottom:741.430267pt;}
.y62{bottom:743.593200pt;}
.yac{bottom:753.297867pt;}
.yfb{bottom:753.305067pt;}
.y61{bottom:754.313200pt;}
.yd7{bottom:756.429627pt;}
.y4f{bottom:757.444800pt;}
.y36{bottom:757.447467pt;}
.y35{bottom:767.847467pt;}
.yab{bottom:768.897867pt;}
.yfa{bottom:769.225067pt;}
.yd6{bottom:769.793467pt;}
.y137{bottom:770.014133pt;}
.y4e{bottom:776.884800pt;}
.y60{bottom:786.025200pt;}
.y34{bottom:788.199467pt;}
.y96{bottom:789.120000pt;}
.y4d{bottom:792.326587pt;}
.y33{bottom:804.199467pt;}
.yd5{bottom:817.354267pt;}
.y136{bottom:817.681333pt;}
.y10e{bottom:820.112533pt;}
.y32{bottom:820.119467pt;}
.yc1{bottom:820.579467pt;}
.y4c{bottom:820.916267pt;}
.y95{bottom:824.844667pt;}
.y10d{bottom:830.512400pt;}
.yc0{bottom:830.980933pt;}
.yd4{bottom:836.794400pt;}
.y135{bottom:837.121467pt;}
.y94{bottom:848.630267pt;}
.yd3{bottom:856.314267pt;}
.y134{bottom:856.641467pt;}
.ybf{bottom:857.108933pt;}
.y10c{bottom:857.436667pt;}
.y31{bottom:863.065600pt;}
.ybe{bottom:867.508933pt;}
.y10b{bottom:867.836667pt;}
.y92{bottom:869.187173pt;}
.y30{bottom:873.469333pt;}
.yd2{bottom:875.754267pt;}
.y133{bottom:876.081467pt;}
.y4b{bottom:880.074667pt;}
.y91{bottom:885.670133pt;}
.ybd{bottom:886.108933pt;}
.y10a{bottom:886.436133pt;}
.yd1{bottom:891.194400pt;}
.y132{bottom:891.521467pt;}
.y4a{bottom:899.594667pt;}
.y2f{bottom:899.597333pt;}
.ybc{bottom:903.388933pt;}
.y109{bottom:903.716133pt;}
.y8f{bottom:907.590267pt;}
.y2e{bottom:909.997333pt;}
.ybb{bottom:918.989067pt;}
.y49{bottom:919.034800pt;}
.y108{bottom:919.316267pt;}
.yd0{bottom:919.783067pt;}
.y131{bottom:920.105467pt;}
.y8c{bottom:929.430267pt;}
.y2d{bottom:930.349333pt;}
.y48{bottom:934.473920pt;}
.y2c{bottom:946.349333pt;}
.y8b{bottom:948.363200pt;}
.y2b{bottom:962.268933pt;}
.yba{bottom:962.729200pt;}
.y47{bottom:963.063600pt;}
.y8a{bottom:963.483200pt;}
.y130{bottom:967.772667pt;}
.yaa{bottom:970.080000pt;}
.y107{bottom:970.997867pt;}
.yb9{bottom:973.132000pt;}
.y106{bottom:981.397733pt;}
.y12f{bottom:987.212667pt;}
.ya9{bottom:989.520000pt;}
.y7{bottom:996.267067pt;}
.yb8{bottom:999.260000pt;}
.y12e{bottom:1006.732667pt;}
.y6{bottom:1007.147067pt;}
.y105{bottom:1007.527867pt;}
.ya8{bottom:1008.960000pt;}
.yb7{bottom:1009.660000pt;}
.y104{bottom:1017.927867pt;}
.y12d{bottom:1026.172667pt;}
.ya7{bottom:1028.480000pt;}
.yb6{bottom:1031.748000pt;}
.y103{bottom:1037.487467pt;}
.y5{bottom:1040.067733pt;}
.y12c{bottom:1041.612667pt;}
.y3{bottom:1042.270933pt;}
.yb5{bottom:1047.588000pt;}
.y2{bottom:1052.031067pt;}
.y102{bottom:1053.487467pt;}
.ya6{bottom:1056.160000pt;}
.y4{bottom:1057.538667pt;}
.y1{bottom:1062.670933pt;}
.yf7{bottom:1063.542533pt;}
.ya5{bottom:1063.600000pt;}
.y101{bottom:1069.407467pt;}
.y12b{bottom:1070.201600pt;}
.y159{bottom:1082.526240pt;}
.y99{bottom:1082.533547pt;}
.yf9{bottom:1082.538213pt;}
.y158{bottom:1095.326160pt;}
.y98{bottom:1095.333467pt;}
.yf8{bottom:1095.338133pt;}
.h8{height:18.402656pt;}
.hd{height:25.941094pt;}
.hb{height:27.714844pt;}
.h10{height:29.488594pt;}
.h2{height:34.144000pt;}
.he{height:39.048750pt;}
.h5{height:39.948480pt;}
.hc{height:39.960853pt;}
.h1{height:42.680000pt;}
.h9{height:44.388750pt;}
.h4{height:45.411520pt;}
.h11{height:46.017387pt;}
.h6{height:51.216000pt;}
.h3{height:53.947520pt;}
.h7{height:53.949653pt;}
.hf{height:78.400000pt;}
.ha{height:553.280000pt;}
.h0{height:1124.000000pt;}
.w3{width:143.760000pt;}
.w2{width:148.481333pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x13{left:34.693333pt;}
.x15{left:42.640000pt;}
.x4{left:45.877733pt;}
.xe{left:47.528000pt;}
.x14{left:51.437333pt;}
.x16{left:53.962000pt;}
.xb{left:64.204800pt;}
.xc{left:69.763733pt;}
.xf{left:76.915680pt;}
.xa{left:78.499200pt;}
.x18{left:80.000000pt;}
.x12{left:86.912133pt;}
.x10{left:89.617067pt;}
.x11{left:102.323200pt;}
.x17{left:141.642000pt;}
.x1{left:155.691467pt;}
.x6{left:207.037200pt;}
.x5{left:223.677200pt;}
.x1a{left:290.666667pt;}
.x19{left:292.026667pt;}
.x7{left:297.034800pt;}
.x8{left:300.154800pt;}
.x9{left:312.794800pt;}
.xd{left:321.834800pt;}
.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; }
  