
    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_8a24efa83b3715aa62be3748.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_aad5d4d4aa0dc4ce1f642f83.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_3a16fa0764d0e4f7b0526980.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_fc1ece71fb9e27be2a62e6d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.870605;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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);}
.v2{vertical-align:-56.880000px;}
.v1{vertical-align:-52.560000px;}
.v0{vertical-align:0.000000px;}
.ls53{letter-spacing:-2.489760px;}
.ls3e{letter-spacing:-2.346120px;}
.ls32{letter-spacing:-2.202480px;}
.ls55{letter-spacing:-2.154600px;}
.ls63{letter-spacing:-2.058840px;}
.ls3d{letter-spacing:-1.867320px;}
.ls51{letter-spacing:-1.771560px;}
.ls66{letter-spacing:-1.627920px;}
.ls56{letter-spacing:-1.436400px;}
.ls4e{letter-spacing:-1.432080px;}
.ls24{letter-spacing:-1.404000px;}
.ls46{letter-spacing:-1.305720px;}
.ls36{letter-spacing:-1.292760px;}
.ls42{letter-spacing:-1.221480px;}
.ls48{letter-spacing:-1.137240px;}
.ls57{letter-spacing:-0.972000px;}
.ls43{letter-spacing:-0.926640px;}
.ls4c{letter-spacing:-0.884520px;}
.ls33{letter-spacing:-0.861840px;}
.ls1f{letter-spacing:-0.855000px;}
.ls2c{letter-spacing:-0.828000px;}
.ls26{letter-spacing:-0.792000px;}
.ls35{letter-spacing:-0.766080px;}
.ls3c{letter-spacing:-0.718200px;}
.ls65{letter-spacing:-0.670320px;}
.ls5a{letter-spacing:-0.547560px;}
.ls25{letter-spacing:-0.540000px;}
.ls38{letter-spacing:-0.478800px;}
.ls31{letter-spacing:-0.430920px;}
.ls3b{letter-spacing:-0.383040px;}
.ls4d{letter-spacing:-0.379080px;}
.ls39{letter-spacing:-0.335160px;}
.ls22{letter-spacing:-0.324000px;}
.ls37{letter-spacing:-0.287280px;}
.ls3f{letter-spacing:-0.270000px;}
.ls23{letter-spacing:-0.252000px;}
.ls34{letter-spacing:-0.239400px;}
.ls62{letter-spacing:-0.191520px;}
.ls47{letter-spacing:-0.168480px;}
.ls5b{letter-spacing:-0.143640px;}
.ls3a{letter-spacing:-0.047880px;}
.ls20{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.047880px;}
.ls1e{letter-spacing:0.095760px;}
.ls19{letter-spacing:0.104040px;}
.ls58{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.113760px;}
.lsd{letter-spacing:0.143640px;}
.ls4f{letter-spacing:0.168480px;}
.ls54{letter-spacing:0.191520px;}
.ls41{letter-spacing:0.210600px;}
.ls2{letter-spacing:0.252000px;}
.ls13{letter-spacing:0.299520px;}
.ls1c{letter-spacing:0.335160px;}
.ls60{letter-spacing:0.383040px;}
.ls21{letter-spacing:0.450000px;}
.lse{letter-spacing:0.478800px;}
.ls11{letter-spacing:0.505440px;}
.ls2d{letter-spacing:0.612000px;}
.ls16{letter-spacing:0.631800px;}
.ls61{letter-spacing:0.670320px;}
.ls2e{letter-spacing:0.684000px;}
.ls17{letter-spacing:0.756000px;}
.ls5{letter-spacing:0.792000px;}
.lsa{letter-spacing:0.828000px;}
.ls5f{letter-spacing:0.861840px;}
.ls2a{letter-spacing:0.864000px;}
.ls1a{letter-spacing:0.884520px;}
.ls29{letter-spacing:0.900000px;}
.ls45{letter-spacing:0.926640px;}
.ls5d{letter-spacing:0.957600px;}
.ls15{letter-spacing:0.968760px;}
.ls28{letter-spacing:0.972000px;}
.ls40{letter-spacing:1.010880px;}
.ls2f{letter-spacing:1.044000px;}
.ls18{letter-spacing:1.053000px;}
.ls1b{letter-spacing:1.053360px;}
.ls30{letter-spacing:1.080000px;}
.ls59{letter-spacing:1.134000px;}
.ls14{letter-spacing:1.137240px;}
.ls27{letter-spacing:1.152000px;}
.ls50{letter-spacing:1.179360px;}
.ls5e{letter-spacing:1.197000px;}
.ls6{letter-spacing:1.224000px;}
.ls12{letter-spacing:1.263600px;}
.ls1{letter-spacing:1.332000px;}
.ls3{letter-spacing:1.440000px;}
.ls10{letter-spacing:1.558440px;}
.ls8{letter-spacing:1.584000px;}
.ls52{letter-spacing:1.675800px;}
.ls0{letter-spacing:1.692000px;}
.ls49{letter-spacing:1.728000px;}
.ls44{letter-spacing:1.811160px;}
.ls4b{letter-spacing:1.836000px;}
.ls4a{letter-spacing:1.979640px;}
.lsc{letter-spacing:1.980000px;}
.ls2b{letter-spacing:2.016000px;}
.ls4{letter-spacing:2.232000px;}
.lsb{letter-spacing:2.304000px;}
.ls64{letter-spacing:2.489760px;}
.ls7{letter-spacing:2.592000px;}
.lsf{letter-spacing:56.247120px;}
.ls5c{letter-spacing:402.624000px;}
.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;}
}
.ws28{word-spacing:-18.738000px;}
.ws26{word-spacing:-18.630000px;}
.ws35{word-spacing:-18.036000px;}
.ws1e{word-spacing:-16.902000px;}
.ws6c{word-spacing:-16.665840px;}
.ws1f{word-spacing:-16.632000px;}
.ws34{word-spacing:-15.930000px;}
.ws6d{word-spacing:-15.465240px;}
.ws27{word-spacing:-15.163200px;}
.ws14{word-spacing:-15.034320px;}
.ws24{word-spacing:-14.994720px;}
.ws17{word-spacing:-14.986440px;}
.ws1a{word-spacing:-14.938560px;}
.ws6e{word-spacing:-14.842800px;}
.ws18{word-spacing:-14.699160px;}
.ws1b{word-spacing:-14.603400px;}
.ws19{word-spacing:-14.507640px;}
.ws2e{word-spacing:-14.362920px;}
.ws77{word-spacing:-14.316120px;}
.ws1c{word-spacing:-14.268240px;}
.ws21{word-spacing:-14.194440px;}
.ws2d{word-spacing:-14.152320px;}
.ws13{word-spacing:-14.124600px;}
.ws15{word-spacing:-14.028840px;}
.ws78{word-spacing:-13.885200px;}
.ws16{word-spacing:-13.789440px;}
.ws2{word-spacing:-13.635000px;}
.ws2f{word-spacing:-13.310640px;}
.wsb{word-spacing:-13.284000px;}
.ws6{word-spacing:-13.248000px;}
.ws1{word-spacing:-13.185000px;}
.ws20{word-spacing:-13.183560px;}
.ws6f{word-spacing:-13.119120px;}
.ws10{word-spacing:-12.852000px;}
.ws12{word-spacing:-12.783960px;}
.ws29{word-spacing:-12.762360px;}
.ws1d{word-spacing:-12.640320px;}
.wsa{word-spacing:-12.492000px;}
.ws7{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.348000px;}
.ws2b{word-spacing:-12.341160px;}
.ws0{word-spacing:-12.330000px;}
.wse{word-spacing:-12.312000px;}
.ws23{word-spacing:-12.256920px;}
.wsf{word-spacing:-12.096000px;}
.ws8{word-spacing:-12.060000px;}
.ws25{word-spacing:-12.046320px;}
.ws22{word-spacing:-11.962080px;}
.wsd{word-spacing:-11.952000px;}
.wsc{word-spacing:-11.880000px;}
.ws31{word-spacing:-11.874240px;}
.ws36{word-spacing:-11.709360px;}
.ws33{word-spacing:-11.539080px;}
.ws9{word-spacing:-11.268000px;}
.ws37{word-spacing:-11.161800px;}
.ws30{word-spacing:-11.156040px;}
.ws39{word-spacing:-11.012400px;}
.ws2c{word-spacing:-10.909080px;}
.ws2a{word-spacing:-10.824840px;}
.ws32{word-spacing:-10.820880px;}
.ws38{word-spacing:-10.677240px;}
.ws3{word-spacing:-10.548000px;}
.ws4{word-spacing:-10.224000px;}
.ws5{word-spacing:-9.144000px;}
.ws41{word-spacing:-1.584000px;}
.ws67{word-spacing:-1.484280px;}
.ws44{word-spacing:-1.440000px;}
.ws5c{word-spacing:-1.263600px;}
.ws46{word-spacing:-1.152000px;}
.ws66{word-spacing:-1.101240px;}
.ws65{word-spacing:-1.053000px;}
.ws3f{word-spacing:-0.972000px;}
.ws6b{word-spacing:-0.957600px;}
.ws57{word-spacing:-0.926640px;}
.ws40{word-spacing:-0.900000px;}
.ws42{word-spacing:-0.864000px;}
.ws56{word-spacing:-0.716040px;}
.ws72{word-spacing:-0.670320px;}
.ws47{word-spacing:-0.612000px;}
.ws5a{word-spacing:-0.505440px;}
.ws6a{word-spacing:-0.478800px;}
.ws45{word-spacing:-0.324000px;}
.ws63{word-spacing:-0.294840px;}
.ws71{word-spacing:-0.239400px;}
.ws55{word-spacing:-0.210600px;}
.ws5f{word-spacing:-0.191520px;}
.ws5b{word-spacing:-0.168480px;}
.ws61{word-spacing:-0.108000px;}
.ws69{word-spacing:-0.047880px;}
.ws54{word-spacing:-0.042120px;}
.ws3a{word-spacing:0.000000px;}
.ws68{word-spacing:0.047880px;}
.ws62{word-spacing:0.084240px;}
.ws59{word-spacing:0.168480px;}
.ws73{word-spacing:0.191520px;}
.ws4f{word-spacing:0.239400px;}
.ws3b{word-spacing:0.252000px;}
.ws74{word-spacing:0.287280px;}
.ws3d{word-spacing:0.324000px;}
.ws4e{word-spacing:0.335160px;}
.ws50{word-spacing:0.383040px;}
.ws64{word-spacing:0.421200px;}
.ws48{word-spacing:0.430920px;}
.ws4b{word-spacing:0.478800px;}
.ws3c{word-spacing:0.540000px;}
.ws51{word-spacing:0.574560px;}
.ws70{word-spacing:0.622440px;}
.ws75{word-spacing:0.718200px;}
.ws49{word-spacing:0.766080px;}
.ws3e{word-spacing:0.792000px;}
.ws4c{word-spacing:0.813960px;}
.ws43{word-spacing:0.828000px;}
.ws4d{word-spacing:0.861840px;}
.ws4a{word-spacing:1.292760px;}
.ws58{word-spacing:1.305720px;}
.ws52{word-spacing:1.580040px;}
.ws79{word-spacing:1.627920px;}
.ws5d{word-spacing:1.771560px;}
.ws53{word-spacing:1.867320px;}
.ws76{word-spacing:2.058840px;}
.ws60{word-spacing:2.154600px;}
.ws5e{word-spacing:2.489760px;}
._5{margin-left:-5.938920px;}
._6{margin-left:-4.831560px;}
._3{margin-left:-3.148920px;}
._2{margin-left:-1.980000px;}
._1{width:1.125000px;}
._0{width:2.610000px;}
._8{width:3.774600px;}
._7{width:4.928040px;}
._4{width:1853.829720px;}
.fc6{color:rgb(18,73,154);}
.fc5{color:rgb(12,100,171);}
.fc7{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);}
.fs4{font-size:29.880000px;}
.fs1{font-size:36.000000px;}
.fs6{font-size:42.120000px;}
.fs7{font-size:42.840000px;}
.fs0{font-size:45.000000px;}
.fs3{font-size:47.880000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:25.800150px;}
.y89{bottom:40.201050px;}
.y136{bottom:41.871030px;}
.y68{bottom:50.082750px;}
.y113{bottom:51.778200px;}
.y112{bottom:63.480000px;}
.y67{bottom:72.177600px;}
.y135{bottom:72.406500px;}
.ya8{bottom:83.416350px;}
.y134{bottom:87.440820px;}
.ya7{bottom:93.046350px;}
.yf4{bottom:93.768000px;}
.ya6{bottom:104.746350px;}
.yf3{bottom:105.468000px;}
.y133{bottom:111.105510px;}
.y66{bottom:111.998280px;}
.y4a{bottom:116.704800px;}
.ydb{bottom:120.152910px;}
.y65{bottom:124.055130px;}
.yf2{bottom:127.472550px;}
.y132{bottom:130.820100px;}
.ya5{bottom:135.036000px;}
.y49{bottom:138.214890px;}
.yda{bottom:141.124350px;}
.yf1{bottom:145.472550px;}
.ya4{bottom:146.736000px;}
.y64{bottom:148.979640px;}
.y131{bottom:149.361630px;}
.y48{bottom:159.629220px;}
.yd9{bottom:160.659390px;}
.yf0{bottom:163.382550px;}
.y130{bottom:164.395950px;}
.ya3{bottom:167.660400px;}
.y15{bottom:172.864200px;}
.y63{bottom:174.535950px;}
.yd8{bottom:175.693710px;}
.y47{bottom:181.043550px;}
.y14{bottom:184.559400px;}
.y62{bottom:186.592800px;}
.ya2{bottom:187.100400px;}
.yd7{bottom:190.632270px;}
.y46{bottom:199.668870px;}
.ya1{bottom:204.650400px;}
.yd6{bottom:205.666590px;}
.y61{bottom:206.157750px;}
.yef{bottom:211.696950px;}
.y13{bottom:214.853400px;}
.y45{bottom:221.538060px;}
.yee{bottom:223.396950px;}
.y7c{bottom:223.999950px;}
.y12{bottom:226.553400px;}
.y44{bottom:238.906530px;}
.y7b{bottom:239.209950px;}
.y11{bottom:247.478400px;}
.y7a{bottom:252.799950px;}
.yed{bottom:253.686600px;}
.y12f{bottom:256.288890px;}
.yd5{bottom:256.993950px;}
.yec{bottom:265.386600px;}
.y10{bottom:266.918400px;}
.y79{bottom:270.079950px;}
.y43{bottom:270.447480px;}
.y84{bottom:275.294850px;}
.yd4{bottom:278.670450px;}
.yf{bottom:284.468400px;}
.y78{bottom:285.380100px;}
.y42{bottom:285.481800px;}
.y111{bottom:286.311000px;}
.y12e{bottom:287.590440px;}
.yd3{bottom:293.704770px;}
.y77{bottom:298.969950px;}
.y82{bottom:299.954850px;}
.y110{bottom:305.751000px;}
.y12d{bottom:309.280080px;}
.y76{bottom:313.009950px;}
.yd2{bottom:316.208370px;}
.y10f{bottom:323.301000px;}
.y12c{bottom:324.314400px;}
.y75{bottom:325.070100px;}
.yd1{bottom:337.179810px;}
.y41{bottom:338.624160px;}
.y60{bottom:340.166790px;}
.ya0{bottom:348.558600px;}
.y40{bottom:353.658480px;}
.yd0{bottom:358.235040px;}
.y74{bottom:358.431600px;}
.y9f{bottom:360.258600px;}
.y10e{bottom:371.615550px;}
.y73{bottom:372.471600px;}
.ycf{bottom:373.173600px;}
.y3f{bottom:381.832800px;}
.y10d{bottom:383.310600px;}
.y72{bottom:384.531600px;}
.y9e{bottom:389.655150px;}
.y3e{bottom:392.815320px;}
.yce{bottom:395.677200px;}
.y71{bottom:399.471600px;}
.y9d{bottom:401.355150px;}
.ycd{bottom:410.711520px;}
.y70{bottom:411.531600px;}
.y10c{bottom:413.604600px;}
.y3d{bottom:414.229650px;}
.y9c{bottom:424.252950px;}
.y10b{bottom:425.304600px;}
.y6f{bottom:426.471600px;}
.ycc{bottom:428.893950px;}
.y12b{bottom:431.409420px;}
.y6e{bottom:438.531600px;}
.y9b{bottom:442.252950px;}
.y10a{bottom:446.229600px;}
.y6d{bottom:458.989800px;}
.y9a{bottom:460.162800px;}
.ycb{bottom:461.079750px;}
.y109{bottom:465.669600px;}
.y12a{bottom:466.780770px;}
.ye{bottom:466.792800px;}
.yd{bottom:478.494600px;}
.y5f{bottom:480.078900px;}
.y108{bottom:483.219750px;}
.y129{bottom:486.579150px;}
.y5e{bottom:492.135750px;}
.y3c{bottom:498.725880px;}
.yc{bottom:507.888600px;}
.y3b{bottom:513.760200px;}
.yca{bottom:518.428020px;}
.yb{bottom:519.588600px;}
.y5d{bottom:528.705150px;}
.y107{bottom:529.873950px;}
.y3a{bottom:531.933390px;}
.yc9{bottom:539.938110px;}
.ya{bottom:540.513600px;}
.y106{bottom:541.573950px;}
.y105{bottom:552.823950px;}
.y9{bottom:559.953600px;}
.y99{bottom:560.294550px;}
.yc8{bottom:561.352440px;}
.y39{bottom:563.474340px;}
.y104{bottom:564.973950px;}
.y5c{bottom:567.091350px;}
.y98{bottom:571.994550px;}
.y103{bottom:573.523200px;}
.y8{bottom:577.503450px;}
.y38{bottom:578.508660px;}
.yc7{bottom:582.766770px;}
.y102{bottom:585.223200px;}
.y5b{bottom:585.496950px;}
.y128{bottom:596.692830px;}
.y5a{bottom:597.554310px;}
.y97{bottom:601.390800px;}
.yc6{bottom:601.392090px;}
.y101{bottom:606.148200px;}
.y96{bottom:613.090800px;}
.y6c{bottom:616.947600px;}
.yc5{bottom:623.261280px;}
.y100{bottom:625.588200px;}
.y2a{bottom:626.711400px;}
.y6b{bottom:628.917600px;}
.y127{bottom:629.131530px;}
.y95{bottom:635.988750px;}
.y29{bottom:638.415600px;}
.yc4{bottom:640.629750px;}
.y6a{bottom:640.887600px;}
.yff{bottom:643.138200px;}
.y126{bottom:644.165850px;}
.y69{bottom:652.947600px;}
.y94{bottom:653.988750px;}
.y37{bottom:657.007920px;}
.y28{bottom:667.809600px;}
.y59{bottom:671.801340px;}
.y93{bottom:671.898600px;}
.yc3{bottom:672.792000px;}
.y27{bottom:679.509600px;}
.y58{bottom:683.773950px;}
.y36{bottom:687.663090px;}
.y57{bottom:695.830800px;}
.y125{bottom:702.340050px;}
.y26{bottom:702.405600px;}
.y35{bottom:709.352730px;}
.y56{bottom:713.608800px;}
.yb6{bottom:718.552950px;}
.y25{bottom:720.405600px;}
.y124{bottom:723.754380px;}
.y34{bottom:724.291290px;}
.yb5{bottom:730.252950px;}
.y55{bottom:732.552000px;}
.y24{bottom:738.315600px;}
.y81{bottom:739.080000px;}
.y33{bottom:739.325610px;}
.yb4{bottom:741.502950px;}
.y54{bottom:744.522150px;}
.y123{bottom:745.168710px;}
.yb3{bottom:753.652950px;}
.y53{bottom:756.583950px;}
.yb2{bottom:762.202200px;}
.y122{bottom:766.678800px;}
.ye9{bottom:772.752000px;}
.yb1{bottom:773.902200px;}
.y52{bottom:774.358590px;}
.ye8{bottom:784.452000px;}
.yc2{bottom:785.357730px;}
.y23{bottom:786.630000px;}
.y121{bottom:788.093130px;}
.y51{bottom:792.228000px;}
.yb0{bottom:795.907200px;}
.y32{bottom:796.386600px;}
.y22{bottom:798.334200px;}
.y120{bottom:808.705470px;}
.y50{bottom:810.907200px;}
.ye7{bottom:813.848250px;}
.yaf{bottom:813.907200px;}
.yc1{bottom:817.796430px;}
.y4f{bottom:823.777200px;}
.ye6{bottom:825.548250px;}
.y11f{bottom:826.528800px;}
.y21{bottom:827.728200px;}
.y31{bottom:829.437660px;}
.yae{bottom:831.817200px;}
.yc0{bottom:832.830750px;}
.y20{bottom:839.428200px;}
.y4e{bottom:841.777200px;}
.ye5{bottom:848.446050px;}
.y11e{bottom:855.396720px;}
.y4d{bottom:858.877200px;}
.y1f{bottom:862.324200px;}
.ye4{bottom:866.446050px;}
.y30{bottom:869.273820px;}
.y11d{bottom:870.335280px;}
.y4c{bottom:870.937200px;}
.y1e{bottom:880.324200px;}
.y2f{bottom:884.212380px;}
.ye3{bottom:884.356200px;}
.y11c{bottom:885.369600px;}
.ybf{bottom:885.421350px;}
.y14c{bottom:888.419850px;}
.y1d{bottom:898.234200px;}
.y2e{bottom:899.246700px;}
.y14b{bottom:900.119850px;}
.y4b{bottom:907.506600px;}
.y92{bottom:909.613800px;}
.y88{bottom:914.670000px;}
.ybe{bottom:915.758400px;}
.y154{bottom:919.617510px;}
.y91{bottom:921.313800px;}
.y147{bottom:930.409650px;}
.ybd{bottom:930.696960px;}
.y11b{bottom:937.957590px;}
.yfe{bottom:941.604750px;}
.y146{bottom:942.109650px;}
.y1c{bottom:946.548450px;}
.y153{bottom:950.811330px;}
.y90{bottom:951.603750px;}
.ybc{bottom:951.752190px;}
.yfd{bottom:953.299800px;}
.y87{bottom:954.871050px;}
.y1b{bottom:958.252800px;}
.y145{bottom:963.034050px;}
.y8f{bottom:963.303750px;}
.y11a{bottom:967.822740px;}
.y152{bottom:971.064570px;}
.ybb{bottom:972.723630px;}
.y86{bottom:982.421520px;}
.y144{bottom:982.474050px;}
.y119{bottom:982.857060px;}
.yfc{bottom:983.593800px;}
.y8e{bottom:984.228000px;}
.y2d{bottom:984.892050px;}
.y151{bottom:986.003130px;}
.y1a{bottom:987.646800px;}
.yba{bottom:992.258670px;}
.yfb{bottom:995.293800px;}
.y118{bottom:997.795620px;}
.y19{bottom:999.346800px;}
.y143{bottom:1000.024050px;}
.y85{bottom:1000.964850px;}
.y150{bottom:1001.037450px;}
.y8d{bottom:1003.668000px;}
.yb9{bottom:1007.197230px;}
.yfa{bottom:1016.218800px;}
.y2c{bottom:1017.953190px;}
.y117{bottom:1019.030400px;}
.y8c{bottom:1021.218150px;}
.y18{bottom:1021.495800px;}
.yb8{bottom:1022.231550px;}
.y83{bottom:1025.624850px;}
.yf9{bottom:1035.658800px;}
.y17{bottom:1038.802800px;}
.y116{bottom:1039.187880px;}
.y14a{bottom:1048.892850px;}
.y80{bottom:1050.194850px;}
.yf8{bottom:1053.208800px;}
.y115{bottom:1054.222200px;}
.y16{bottom:1058.152800px;}
.y2b{bottom:1059.046200px;}
.y149{bottom:1060.592700px;}
.yad{bottom:1068.396750px;}
.y7f{bottom:1071.494550px;}
.y148{bottom:1073.282850px;}
.yac{bottom:1080.726750px;}
.y7e{bottom:1088.504550px;}
.y142{bottom:1090.328250px;}
.yab{bottom:1091.796750px;}
.yf7{bottom:1100.387400px;}
.y141{bottom:1102.028250px;}
.y14f{bottom:1106.337090px;}
.yaa{bottom:1111.522200px;}
.yf6{bottom:1112.717400px;}
.y7{bottom:1120.800450px;}
.yde{bottom:1122.120000px;}
.y140{bottom:1122.952650px;}
.ya9{bottom:1123.222200px;}
.yf5{bottom:1123.787550px;}
.yb7{bottom:1124.852550px;}
.y6{bottom:1133.040450px;}
.ydd{bottom:1140.120000px;}
.y13f{bottom:1142.392650px;}
.yeb{bottom:1143.513000px;}
.y14e{bottom:1145.921880px;}
.ye0{bottom:1148.215680px;}
.yea{bottom:1155.213000px;}
.y114{bottom:1156.843200px;}
.ydc{bottom:1158.030000px;}
.y139{bottom:1158.120000px;}
.y13e{bottom:1159.942800px;}
.y14d{bottom:1160.956200px;}
.ydf{bottom:1163.250000px;}
.y5{bottom:1170.076200px;}
.y3{bottom:1172.554800px;}
.y138{bottom:1176.120000px;}
.y13b{bottom:1180.009080px;}
.y2{bottom:1183.534950px;}
.y4{bottom:1189.731000px;}
.y137{bottom:1194.030000px;}
.y13a{bottom:1195.043400px;}
.y1{bottom:1195.504800px;}
.y156{bottom:1217.844570px;}
.ye2{bottom:1217.845170px;}
.y13d{bottom:1217.846250px;}
.y8b{bottom:1217.850240px;}
.y155{bottom:1232.244480px;}
.ye1{bottom:1232.245080px;}
.y13c{bottom:1232.246160px;}
.y8a{bottom:1232.250150px;}
.h5{height:20.702988px;}
.h10{height:24.943359px;}
.hc{height:31.179199px;}
.hf{height:33.174668px;}
.h2{height:38.412000px;}
.h11{height:42.045117px;}
.h9{height:43.929844px;}
.h7{height:44.942040px;}
.h8{height:44.945880px;}
.hd{height:44.955960px;}
.h1{height:48.015000px;}
.ha{height:49.937344px;}
.h4{height:51.087960px;}
.h6{height:57.618000px;}
.h3{height:60.690960px;}
.he{height:88.201500px;}
.hb{height:525.420000px;}
.h0{height:1264.500000px;}
.w3{width:161.730000px;}
.w2{width:167.041500px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x15{left:39.030000px;}
.x16{left:47.970000px;}
.x4{left:51.612450px;}
.xc{left:53.469000px;}
.x12{left:57.936000px;}
.x17{left:60.707250px;}
.xd{left:72.189000px;}
.x11{left:78.474690px;}
.xe{left:86.530140px;}
.x10{left:88.288650px;}
.x19{left:90.000000px;}
.x14{left:97.776150px;}
.xf{left:100.819200px;}
.x13{left:115.113600px;}
.x18{left:159.347250px;}
.x1{left:175.152900px;}
.x1a{left:231.386850px;}
.x5{left:232.916850px;}
.x6{left:251.636850px;}
.x7{left:334.164150px;}
.xa{left:336.207750px;}
.x9{left:337.757580px;}
.x8{left:351.894150px;}
.xb{left:353.268270px;}
.x3{left:658.482300px;}
.x2{left:786.238500px;}
@media print{
.v2{vertical-align:-50.560000pt;}
.v1{vertical-align:-46.720000pt;}
.v0{vertical-align:0.000000pt;}
.ls53{letter-spacing:-2.213120pt;}
.ls3e{letter-spacing:-2.085440pt;}
.ls32{letter-spacing:-1.957760pt;}
.ls55{letter-spacing:-1.915200pt;}
.ls63{letter-spacing:-1.830080pt;}
.ls3d{letter-spacing:-1.659840pt;}
.ls51{letter-spacing:-1.574720pt;}
.ls66{letter-spacing:-1.447040pt;}
.ls56{letter-spacing:-1.276800pt;}
.ls4e{letter-spacing:-1.272960pt;}
.ls24{letter-spacing:-1.248000pt;}
.ls46{letter-spacing:-1.160640pt;}
.ls36{letter-spacing:-1.149120pt;}
.ls42{letter-spacing:-1.085760pt;}
.ls48{letter-spacing:-1.010880pt;}
.ls57{letter-spacing:-0.864000pt;}
.ls43{letter-spacing:-0.823680pt;}
.ls4c{letter-spacing:-0.786240pt;}
.ls33{letter-spacing:-0.766080pt;}
.ls1f{letter-spacing:-0.760000pt;}
.ls2c{letter-spacing:-0.736000pt;}
.ls26{letter-spacing:-0.704000pt;}
.ls35{letter-spacing:-0.680960pt;}
.ls3c{letter-spacing:-0.638400pt;}
.ls65{letter-spacing:-0.595840pt;}
.ls5a{letter-spacing:-0.486720pt;}
.ls25{letter-spacing:-0.480000pt;}
.ls38{letter-spacing:-0.425600pt;}
.ls31{letter-spacing:-0.383040pt;}
.ls3b{letter-spacing:-0.340480pt;}
.ls4d{letter-spacing:-0.336960pt;}
.ls39{letter-spacing:-0.297920pt;}
.ls22{letter-spacing:-0.288000pt;}
.ls37{letter-spacing:-0.255360pt;}
.ls3f{letter-spacing:-0.240000pt;}
.ls23{letter-spacing:-0.224000pt;}
.ls34{letter-spacing:-0.212800pt;}
.ls62{letter-spacing:-0.170240pt;}
.ls47{letter-spacing:-0.149760pt;}
.ls5b{letter-spacing:-0.127680pt;}
.ls3a{letter-spacing:-0.042560pt;}
.ls20{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.042560pt;}
.ls1e{letter-spacing:0.085120pt;}
.ls19{letter-spacing:0.092480pt;}
.ls58{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.101120pt;}
.lsd{letter-spacing:0.127680pt;}
.ls4f{letter-spacing:0.149760pt;}
.ls54{letter-spacing:0.170240pt;}
.ls41{letter-spacing:0.187200pt;}
.ls2{letter-spacing:0.224000pt;}
.ls13{letter-spacing:0.266240pt;}
.ls1c{letter-spacing:0.297920pt;}
.ls60{letter-spacing:0.340480pt;}
.ls21{letter-spacing:0.400000pt;}
.lse{letter-spacing:0.425600pt;}
.ls11{letter-spacing:0.449280pt;}
.ls2d{letter-spacing:0.544000pt;}
.ls16{letter-spacing:0.561600pt;}
.ls61{letter-spacing:0.595840pt;}
.ls2e{letter-spacing:0.608000pt;}
.ls17{letter-spacing:0.672000pt;}
.ls5{letter-spacing:0.704000pt;}
.lsa{letter-spacing:0.736000pt;}
.ls5f{letter-spacing:0.766080pt;}
.ls2a{letter-spacing:0.768000pt;}
.ls1a{letter-spacing:0.786240pt;}
.ls29{letter-spacing:0.800000pt;}
.ls45{letter-spacing:0.823680pt;}
.ls5d{letter-spacing:0.851200pt;}
.ls15{letter-spacing:0.861120pt;}
.ls28{letter-spacing:0.864000pt;}
.ls40{letter-spacing:0.898560pt;}
.ls2f{letter-spacing:0.928000pt;}
.ls18{letter-spacing:0.936000pt;}
.ls1b{letter-spacing:0.936320pt;}
.ls30{letter-spacing:0.960000pt;}
.ls59{letter-spacing:1.008000pt;}
.ls14{letter-spacing:1.010880pt;}
.ls27{letter-spacing:1.024000pt;}
.ls50{letter-spacing:1.048320pt;}
.ls5e{letter-spacing:1.064000pt;}
.ls6{letter-spacing:1.088000pt;}
.ls12{letter-spacing:1.123200pt;}
.ls1{letter-spacing:1.184000pt;}
.ls3{letter-spacing:1.280000pt;}
.ls10{letter-spacing:1.385280pt;}
.ls8{letter-spacing:1.408000pt;}
.ls52{letter-spacing:1.489600pt;}
.ls0{letter-spacing:1.504000pt;}
.ls49{letter-spacing:1.536000pt;}
.ls44{letter-spacing:1.609920pt;}
.ls4b{letter-spacing:1.632000pt;}
.ls4a{letter-spacing:1.759680pt;}
.lsc{letter-spacing:1.760000pt;}
.ls2b{letter-spacing:1.792000pt;}
.ls4{letter-spacing:1.984000pt;}
.lsb{letter-spacing:2.048000pt;}
.ls64{letter-spacing:2.213120pt;}
.ls7{letter-spacing:2.304000pt;}
.lsf{letter-spacing:49.997440pt;}
.ls5c{letter-spacing:357.888000pt;}
.ws28{word-spacing:-16.656000pt;}
.ws26{word-spacing:-16.560000pt;}
.ws35{word-spacing:-16.032000pt;}
.ws1e{word-spacing:-15.024000pt;}
.ws6c{word-spacing:-14.814080pt;}
.ws1f{word-spacing:-14.784000pt;}
.ws34{word-spacing:-14.160000pt;}
.ws6d{word-spacing:-13.746880pt;}
.ws27{word-spacing:-13.478400pt;}
.ws14{word-spacing:-13.363840pt;}
.ws24{word-spacing:-13.328640pt;}
.ws17{word-spacing:-13.321280pt;}
.ws1a{word-spacing:-13.278720pt;}
.ws6e{word-spacing:-13.193600pt;}
.ws18{word-spacing:-13.065920pt;}
.ws1b{word-spacing:-12.980800pt;}
.ws19{word-spacing:-12.895680pt;}
.ws2e{word-spacing:-12.767040pt;}
.ws77{word-spacing:-12.725440pt;}
.ws1c{word-spacing:-12.682880pt;}
.ws21{word-spacing:-12.617280pt;}
.ws2d{word-spacing:-12.579840pt;}
.ws13{word-spacing:-12.555200pt;}
.ws15{word-spacing:-12.470080pt;}
.ws78{word-spacing:-12.342400pt;}
.ws16{word-spacing:-12.257280pt;}
.ws2{word-spacing:-12.120000pt;}
.ws2f{word-spacing:-11.831680pt;}
.wsb{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.776000pt;}
.ws1{word-spacing:-11.720000pt;}
.ws20{word-spacing:-11.718720pt;}
.ws6f{word-spacing:-11.661440pt;}
.ws10{word-spacing:-11.424000pt;}
.ws12{word-spacing:-11.363520pt;}
.ws29{word-spacing:-11.344320pt;}
.ws1d{word-spacing:-11.235840pt;}
.wsa{word-spacing:-11.104000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.976000pt;}
.ws2b{word-spacing:-10.969920pt;}
.ws0{word-spacing:-10.960000pt;}
.wse{word-spacing:-10.944000pt;}
.ws23{word-spacing:-10.895040pt;}
.wsf{word-spacing:-10.752000pt;}
.ws8{word-spacing:-10.720000pt;}
.ws25{word-spacing:-10.707840pt;}
.ws22{word-spacing:-10.632960pt;}
.wsd{word-spacing:-10.624000pt;}
.wsc{word-spacing:-10.560000pt;}
.ws31{word-spacing:-10.554880pt;}
.ws36{word-spacing:-10.408320pt;}
.ws33{word-spacing:-10.256960pt;}
.ws9{word-spacing:-10.016000pt;}
.ws37{word-spacing:-9.921600pt;}
.ws30{word-spacing:-9.916480pt;}
.ws39{word-spacing:-9.788800pt;}
.ws2c{word-spacing:-9.696960pt;}
.ws2a{word-spacing:-9.622080pt;}
.ws32{word-spacing:-9.618560pt;}
.ws38{word-spacing:-9.490880pt;}
.ws3{word-spacing:-9.376000pt;}
.ws4{word-spacing:-9.088000pt;}
.ws5{word-spacing:-8.128000pt;}
.ws41{word-spacing:-1.408000pt;}
.ws67{word-spacing:-1.319360pt;}
.ws44{word-spacing:-1.280000pt;}
.ws5c{word-spacing:-1.123200pt;}
.ws46{word-spacing:-1.024000pt;}
.ws66{word-spacing:-0.978880pt;}
.ws65{word-spacing:-0.936000pt;}
.ws3f{word-spacing:-0.864000pt;}
.ws6b{word-spacing:-0.851200pt;}
.ws57{word-spacing:-0.823680pt;}
.ws40{word-spacing:-0.800000pt;}
.ws42{word-spacing:-0.768000pt;}
.ws56{word-spacing:-0.636480pt;}
.ws72{word-spacing:-0.595840pt;}
.ws47{word-spacing:-0.544000pt;}
.ws5a{word-spacing:-0.449280pt;}
.ws6a{word-spacing:-0.425600pt;}
.ws45{word-spacing:-0.288000pt;}
.ws63{word-spacing:-0.262080pt;}
.ws71{word-spacing:-0.212800pt;}
.ws55{word-spacing:-0.187200pt;}
.ws5f{word-spacing:-0.170240pt;}
.ws5b{word-spacing:-0.149760pt;}
.ws61{word-spacing:-0.096000pt;}
.ws69{word-spacing:-0.042560pt;}
.ws54{word-spacing:-0.037440pt;}
.ws3a{word-spacing:0.000000pt;}
.ws68{word-spacing:0.042560pt;}
.ws62{word-spacing:0.074880pt;}
.ws59{word-spacing:0.149760pt;}
.ws73{word-spacing:0.170240pt;}
.ws4f{word-spacing:0.212800pt;}
.ws3b{word-spacing:0.224000pt;}
.ws74{word-spacing:0.255360pt;}
.ws3d{word-spacing:0.288000pt;}
.ws4e{word-spacing:0.297920pt;}
.ws50{word-spacing:0.340480pt;}
.ws64{word-spacing:0.374400pt;}
.ws48{word-spacing:0.383040pt;}
.ws4b{word-spacing:0.425600pt;}
.ws3c{word-spacing:0.480000pt;}
.ws51{word-spacing:0.510720pt;}
.ws70{word-spacing:0.553280pt;}
.ws75{word-spacing:0.638400pt;}
.ws49{word-spacing:0.680960pt;}
.ws3e{word-spacing:0.704000pt;}
.ws4c{word-spacing:0.723520pt;}
.ws43{word-spacing:0.736000pt;}
.ws4d{word-spacing:0.766080pt;}
.ws4a{word-spacing:1.149120pt;}
.ws58{word-spacing:1.160640pt;}
.ws52{word-spacing:1.404480pt;}
.ws79{word-spacing:1.447040pt;}
.ws5d{word-spacing:1.574720pt;}
.ws53{word-spacing:1.659840pt;}
.ws76{word-spacing:1.830080pt;}
.ws60{word-spacing:1.915200pt;}
.ws5e{word-spacing:2.213120pt;}
._5{margin-left:-5.279040pt;}
._6{margin-left:-4.294720pt;}
._3{margin-left:-2.799040pt;}
._2{margin-left:-1.760000pt;}
._1{width:1.000000pt;}
._0{width:2.320000pt;}
._8{width:3.355200pt;}
._7{width:4.380480pt;}
._4{width:1647.848640pt;}
.fs4{font-size:26.560000pt;}
.fs1{font-size:32.000000pt;}
.fs6{font-size:37.440000pt;}
.fs7{font-size:38.080000pt;}
.fs0{font-size:40.000000pt;}
.fs3{font-size:42.560000pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:22.933467pt;}
.y89{bottom:35.734267pt;}
.y136{bottom:37.218693pt;}
.y68{bottom:44.518000pt;}
.y113{bottom:46.025067pt;}
.y112{bottom:56.426667pt;}
.y67{bottom:64.157867pt;}
.y135{bottom:64.361333pt;}
.ya8{bottom:74.147867pt;}
.y134{bottom:77.725173pt;}
.ya7{bottom:82.707867pt;}
.yf4{bottom:83.349333pt;}
.ya6{bottom:93.107867pt;}
.yf3{bottom:93.749333pt;}
.y133{bottom:98.760453pt;}
.y66{bottom:99.554027pt;}
.y4a{bottom:103.737600pt;}
.ydb{bottom:106.802587pt;}
.y65{bottom:110.271227pt;}
.yf2{bottom:113.308933pt;}
.y132{bottom:116.284533pt;}
.ya5{bottom:120.032000pt;}
.y49{bottom:122.857680pt;}
.yda{bottom:125.443867pt;}
.yf1{bottom:129.308933pt;}
.ya4{bottom:130.432000pt;}
.y64{bottom:132.426347pt;}
.y131{bottom:132.765893pt;}
.y48{bottom:141.892640pt;}
.yd9{bottom:142.808347pt;}
.yf0{bottom:145.228933pt;}
.y130{bottom:146.129733pt;}
.ya3{bottom:149.031467pt;}
.y15{bottom:153.657067pt;}
.y63{bottom:155.143067pt;}
.yd8{bottom:156.172187pt;}
.y47{bottom:160.927600pt;}
.y14{bottom:164.052800pt;}
.y62{bottom:165.860267pt;}
.ya2{bottom:166.311467pt;}
.yd7{bottom:169.450907pt;}
.y46{bottom:177.483440pt;}
.ya1{bottom:181.911467pt;}
.yd6{bottom:182.814747pt;}
.y61{bottom:183.251333pt;}
.yef{bottom:188.175067pt;}
.y13{bottom:190.980800pt;}
.y45{bottom:196.922720pt;}
.yee{bottom:198.575067pt;}
.y7c{bottom:199.111067pt;}
.y12{bottom:201.380800pt;}
.y44{bottom:212.361360pt;}
.y7b{bottom:212.631067pt;}
.y11{bottom:219.980800pt;}
.y7a{bottom:224.711067pt;}
.yed{bottom:225.499200pt;}
.y12f{bottom:227.812347pt;}
.yd5{bottom:228.439067pt;}
.yec{bottom:235.899200pt;}
.y10{bottom:237.260800pt;}
.y79{bottom:240.071067pt;}
.y43{bottom:240.397760pt;}
.y84{bottom:244.706533pt;}
.yd4{bottom:247.707067pt;}
.yf{bottom:252.860800pt;}
.y78{bottom:253.671200pt;}
.y42{bottom:253.761600pt;}
.y111{bottom:254.498667pt;}
.y12e{bottom:255.635947pt;}
.yd3{bottom:261.070907pt;}
.y77{bottom:265.751067pt;}
.y82{bottom:266.626533pt;}
.y110{bottom:271.778667pt;}
.y12d{bottom:274.915627pt;}
.y76{bottom:278.231067pt;}
.yd2{bottom:281.074107pt;}
.y10f{bottom:287.378667pt;}
.y12c{bottom:288.279467pt;}
.y75{bottom:288.951200pt;}
.yd1{bottom:299.715387pt;}
.y41{bottom:300.999253pt;}
.y60{bottom:302.370480pt;}
.ya0{bottom:309.829867pt;}
.y40{bottom:314.363093pt;}
.yd0{bottom:318.431147pt;}
.y74{bottom:318.605867pt;}
.y9f{bottom:320.229867pt;}
.y10e{bottom:330.324933pt;}
.y73{bottom:331.085867pt;}
.ycf{bottom:331.709867pt;}
.y3f{bottom:339.406933pt;}
.y10d{bottom:340.720533pt;}
.y72{bottom:341.805867pt;}
.y9e{bottom:346.360133pt;}
.y3e{bottom:349.169173pt;}
.yce{bottom:351.713067pt;}
.y71{bottom:355.085867pt;}
.y9d{bottom:356.760133pt;}
.ycd{bottom:365.076907pt;}
.y70{bottom:365.805867pt;}
.y10c{bottom:367.648533pt;}
.y3d{bottom:368.204133pt;}
.y9c{bottom:377.113733pt;}
.y10b{bottom:378.048533pt;}
.y6f{bottom:379.085867pt;}
.ycc{bottom:381.239067pt;}
.y12b{bottom:383.475040pt;}
.y6e{bottom:389.805867pt;}
.y9b{bottom:393.113733pt;}
.y10a{bottom:396.648533pt;}
.y6d{bottom:407.990933pt;}
.y9a{bottom:409.033600pt;}
.ycb{bottom:409.848667pt;}
.y109{bottom:413.928533pt;}
.y12a{bottom:414.916240pt;}
.ye{bottom:414.926933pt;}
.yd{bottom:425.328533pt;}
.y5f{bottom:426.736800pt;}
.y108{bottom:429.528667pt;}
.y129{bottom:432.514800pt;}
.y5e{bottom:437.454000pt;}
.y3c{bottom:443.311893pt;}
.yc{bottom:451.456533pt;}
.y3b{bottom:456.675733pt;}
.yca{bottom:460.824907pt;}
.yb{bottom:461.856533pt;}
.y5d{bottom:469.960133pt;}
.y107{bottom:470.999067pt;}
.y3a{bottom:472.829680pt;}
.yc9{bottom:479.944987pt;}
.ya{bottom:480.456533pt;}
.y106{bottom:481.399067pt;}
.y105{bottom:491.399067pt;}
.y9{bottom:497.736533pt;}
.y99{bottom:498.039600pt;}
.yc8{bottom:498.979947pt;}
.y39{bottom:500.866080pt;}
.y104{bottom:502.199067pt;}
.y5c{bottom:504.081200pt;}
.y98{bottom:508.439600pt;}
.y103{bottom:509.798400pt;}
.y8{bottom:513.336400pt;}
.y38{bottom:514.229920pt;}
.yc7{bottom:518.014907pt;}
.y102{bottom:520.198400pt;}
.y5b{bottom:520.441733pt;}
.y128{bottom:530.393627pt;}
.y5a{bottom:531.159387pt;}
.y97{bottom:534.569600pt;}
.yc6{bottom:534.570747pt;}
.y101{bottom:538.798400pt;}
.y96{bottom:544.969600pt;}
.y6c{bottom:548.397867pt;}
.yc5{bottom:554.010027pt;}
.y100{bottom:556.078400pt;}
.y2a{bottom:557.076800pt;}
.y6b{bottom:559.037867pt;}
.y127{bottom:559.228027pt;}
.y95{bottom:565.323333pt;}
.y29{bottom:567.480533pt;}
.yc4{bottom:569.448667pt;}
.y6a{bottom:569.677867pt;}
.yff{bottom:571.678400pt;}
.y126{bottom:572.591867pt;}
.y69{bottom:580.397867pt;}
.y94{bottom:581.323333pt;}
.y37{bottom:584.007040pt;}
.y28{bottom:593.608533pt;}
.y59{bottom:597.156747pt;}
.y93{bottom:597.243200pt;}
.yc3{bottom:598.037333pt;}
.y27{bottom:604.008533pt;}
.y58{bottom:607.799067pt;}
.y36{bottom:611.256080pt;}
.y57{bottom:618.516267pt;}
.y125{bottom:624.302267pt;}
.y26{bottom:624.360533pt;}
.y35{bottom:630.535760pt;}
.y56{bottom:634.318933pt;}
.yb6{bottom:638.713733pt;}
.y25{bottom:640.360533pt;}
.y124{bottom:643.337227pt;}
.y34{bottom:643.814480pt;}
.yb5{bottom:649.113733pt;}
.y55{bottom:651.157333pt;}
.y24{bottom:656.280533pt;}
.y81{bottom:656.960000pt;}
.y33{bottom:657.178320pt;}
.yb4{bottom:659.113733pt;}
.y54{bottom:661.797467pt;}
.y123{bottom:662.372187pt;}
.yb3{bottom:669.913733pt;}
.y53{bottom:672.519067pt;}
.yb2{bottom:677.513067pt;}
.y122{bottom:681.492267pt;}
.ye9{bottom:686.890667pt;}
.yb1{bottom:687.913067pt;}
.y52{bottom:688.318747pt;}
.ye8{bottom:697.290667pt;}
.yc2{bottom:698.095760pt;}
.y23{bottom:699.226667pt;}
.y121{bottom:700.527227pt;}
.y51{bottom:704.202667pt;}
.yb0{bottom:707.473067pt;}
.y32{bottom:707.899200pt;}
.y22{bottom:709.630400pt;}
.y120{bottom:718.849307pt;}
.y50{bottom:720.806400pt;}
.ye7{bottom:723.420667pt;}
.yaf{bottom:723.473067pt;}
.yc1{bottom:726.930160pt;}
.y4f{bottom:732.246400pt;}
.ye6{bottom:733.820667pt;}
.y11f{bottom:734.692267pt;}
.y21{bottom:735.758400pt;}
.y31{bottom:737.277920pt;}
.yae{bottom:739.393067pt;}
.yc0{bottom:740.294000pt;}
.y20{bottom:746.158400pt;}
.y4e{bottom:748.246400pt;}
.ye5{bottom:754.174267pt;}
.y11e{bottom:760.352640pt;}
.y4d{bottom:763.446400pt;}
.y1f{bottom:766.510400pt;}
.ye4{bottom:770.174267pt;}
.y30{bottom:772.687840pt;}
.y11d{bottom:773.631360pt;}
.y4c{bottom:774.166400pt;}
.y1e{bottom:782.510400pt;}
.y2f{bottom:785.966560pt;}
.ye3{bottom:786.094400pt;}
.y11c{bottom:786.995200pt;}
.ybf{bottom:787.041200pt;}
.y14c{bottom:789.706533pt;}
.y1d{bottom:798.430400pt;}
.y2e{bottom:799.330400pt;}
.y14b{bottom:800.106533pt;}
.y4b{bottom:806.672533pt;}
.y92{bottom:808.545600pt;}
.y88{bottom:813.040000pt;}
.ybe{bottom:814.007467pt;}
.y154{bottom:817.437787pt;}
.y91{bottom:818.945600pt;}
.y147{bottom:827.030800pt;}
.ybd{bottom:827.286187pt;}
.y11b{bottom:833.740080pt;}
.yfe{bottom:836.982000pt;}
.y146{bottom:837.430800pt;}
.y1c{bottom:841.376400pt;}
.y153{bottom:845.165627pt;}
.y90{bottom:845.870000pt;}
.ybc{bottom:846.001947pt;}
.yfd{bottom:847.377600pt;}
.y87{bottom:848.774267pt;}
.y1b{bottom:851.780267pt;}
.y145{bottom:856.030267pt;}
.y8f{bottom:856.270000pt;}
.y11a{bottom:860.286880pt;}
.y152{bottom:863.168507pt;}
.ybb{bottom:864.643227pt;}
.y86{bottom:873.263573pt;}
.y144{bottom:873.310267pt;}
.y119{bottom:873.650720pt;}
.yfc{bottom:874.305600pt;}
.y8e{bottom:874.869333pt;}
.y2d{bottom:875.459600pt;}
.y151{bottom:876.447227pt;}
.y1a{bottom:877.908267pt;}
.yba{bottom:882.007707pt;}
.yfb{bottom:884.705600pt;}
.y118{bottom:886.929440pt;}
.y19{bottom:888.308267pt;}
.y143{bottom:888.910267pt;}
.y85{bottom:889.746533pt;}
.y150{bottom:889.811067pt;}
.y8d{bottom:892.149333pt;}
.yb9{bottom:895.286427pt;}
.yfa{bottom:903.305600pt;}
.y2c{bottom:904.847280pt;}
.y117{bottom:905.804800pt;}
.y8c{bottom:907.749467pt;}
.y18{bottom:907.996267pt;}
.yb8{bottom:908.650267pt;}
.y83{bottom:911.666533pt;}
.yf9{bottom:920.585600pt;}
.y17{bottom:923.380267pt;}
.y116{bottom:923.722560pt;}
.y14a{bottom:932.349200pt;}
.y80{bottom:933.506533pt;}
.yf8{bottom:936.185600pt;}
.y115{bottom:937.086400pt;}
.y16{bottom:940.580267pt;}
.y2b{bottom:941.374400pt;}
.y149{bottom:942.749067pt;}
.yad{bottom:949.686000pt;}
.y7f{bottom:952.439600pt;}
.y148{bottom:954.029200pt;}
.yac{bottom:960.646000pt;}
.y7e{bottom:967.559600pt;}
.y142{bottom:969.180667pt;}
.yab{bottom:970.486000pt;}
.yf7{bottom:978.122133pt;}
.y141{bottom:979.580667pt;}
.y14f{bottom:983.410747pt;}
.yaa{bottom:988.019733pt;}
.yf6{bottom:989.082133pt;}
.y7{bottom:996.267067pt;}
.yde{bottom:997.440000pt;}
.y140{bottom:998.180133pt;}
.ya9{bottom:998.419733pt;}
.yf5{bottom:998.922267pt;}
.yb7{bottom:999.868933pt;}
.y6{bottom:1007.147067pt;}
.ydd{bottom:1013.440000pt;}
.y13f{bottom:1015.460133pt;}
.yeb{bottom:1016.456000pt;}
.y14e{bottom:1018.597227pt;}
.ye0{bottom:1020.636160pt;}
.yea{bottom:1026.856000pt;}
.y114{bottom:1028.305067pt;}
.ydc{bottom:1029.360000pt;}
.y139{bottom:1029.440000pt;}
.y13e{bottom:1031.060267pt;}
.y14d{bottom:1031.961067pt;}
.ydf{bottom:1034.000000pt;}
.y5{bottom:1040.067733pt;}
.y3{bottom:1042.270933pt;}
.y138{bottom:1045.440000pt;}
.y13b{bottom:1048.896960pt;}
.y2{bottom:1052.031067pt;}
.y4{bottom:1057.538667pt;}
.y137{bottom:1061.360000pt;}
.y13a{bottom:1062.260800pt;}
.y1{bottom:1062.670933pt;}
.y156{bottom:1082.528507pt;}
.ye2{bottom:1082.529040pt;}
.y13d{bottom:1082.530000pt;}
.y8b{bottom:1082.533547pt;}
.y155{bottom:1095.328427pt;}
.ye1{bottom:1095.328960pt;}
.y13c{bottom:1095.329920pt;}
.y8a{bottom:1095.333467pt;}
.h5{height:18.402656pt;}
.h10{height:22.171875pt;}
.hc{height:27.714844pt;}
.hf{height:29.488594pt;}
.h2{height:34.144000pt;}
.h11{height:37.373437pt;}
.h9{height:39.048750pt;}
.h7{height:39.948480pt;}
.h8{height:39.951893pt;}
.hd{height:39.960853pt;}
.h1{height:42.680000pt;}
.ha{height:44.388750pt;}
.h4{height:45.411520pt;}
.h6{height:51.216000pt;}
.h3{height:53.947520pt;}
.he{height:78.401333pt;}
.hb{height:467.040000pt;}
.h0{height:1124.000000pt;}
.w3{width:143.760000pt;}
.w2{width:148.481333pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x15{left:34.693333pt;}
.x16{left:42.640000pt;}
.x4{left:45.877733pt;}
.xc{left:47.528000pt;}
.x12{left:51.498667pt;}
.x17{left:53.962000pt;}
.xd{left:64.168000pt;}
.x11{left:69.755280pt;}
.xe{left:76.915680pt;}
.x10{left:78.478800pt;}
.x19{left:80.000000pt;}
.x14{left:86.912133pt;}
.xf{left:89.617067pt;}
.x13{left:102.323200pt;}
.x18{left:141.642000pt;}
.x1{left:155.691467pt;}
.x1a{left:205.677200pt;}
.x5{left:207.037200pt;}
.x6{left:223.677200pt;}
.x7{left:297.034800pt;}
.xa{left:298.851333pt;}
.x9{left:300.228960pt;}
.x8{left:312.794800pt;}
.xb{left:314.016240pt;}
.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; }
  