
    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_d6fa0c239d5d5f7ff9e0ee1a.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_c9fa649883978693bdb57b34.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_ee57b3b2a754f2b13dc10587.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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2db8598c1255647d2f4d9cbd.woff2')format("woff");}.ff6{font-family:ff6;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);}
.v3{vertical-align:-68.182200px;}
.v1{vertical-align:-49.320000px;}
.v2{vertical-align:-46.800000px;}
.v0{vertical-align:0.000000px;}
.ls4a{letter-spacing:-2.489760px;}
.ls5e{letter-spacing:-2.346120px;}
.ls2e{letter-spacing:-2.202480px;}
.ls4c{letter-spacing:-2.154600px;}
.ls60{letter-spacing:-2.058840px;}
.ls5a{letter-spacing:-1.867320px;}
.ls48{letter-spacing:-1.771560px;}
.ls4d{letter-spacing:-1.436400px;}
.ls1f{letter-spacing:-1.404000px;}
.ls40{letter-spacing:-1.305720px;}
.ls5c{letter-spacing:-1.292760px;}
.ls3c{letter-spacing:-1.221480px;}
.ls68{letter-spacing:-1.197000px;}
.ls35{letter-spacing:-1.137240px;}
.ls4e{letter-spacing:-0.972000px;}
.ls3d{letter-spacing:-0.926640px;}
.ls62{letter-spacing:-0.884520px;}
.ls30{letter-spacing:-0.861840px;}
.ls1a{letter-spacing:-0.855000px;}
.ls27{letter-spacing:-0.828000px;}
.ls45{letter-spacing:-0.800280px;}
.ls21{letter-spacing:-0.792000px;}
.ls34{letter-spacing:-0.766080px;}
.ls6a{letter-spacing:-0.718200px;}
.ls53{letter-spacing:-0.547560px;}
.ls20{letter-spacing:-0.540000px;}
.ls2f{letter-spacing:-0.478800px;}
.ls38{letter-spacing:-0.430920px;}
.ls5b{letter-spacing:-0.383040px;}
.ls44{letter-spacing:-0.379080px;}
.ls61{letter-spacing:-0.335160px;}
.ls1d{letter-spacing:-0.324000px;}
.ls2d{letter-spacing:-0.287280px;}
.ls37{letter-spacing:-0.270000px;}
.ls1e{letter-spacing:-0.252000px;}
.ls33{letter-spacing:-0.239400px;}
.ls46{letter-spacing:-0.210600px;}
.ls41{letter-spacing:-0.168480px;}
.ls39{letter-spacing:-0.143640px;}
.ls51{letter-spacing:-0.126360px;}
.ls54{letter-spacing:-0.047880px;}
.ls1b{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.047880px;}
.ls19{letter-spacing:0.095760px;}
.ls16{letter-spacing:0.104040px;}
.ls4f{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.113760px;}
.ls63{letter-spacing:0.143640px;}
.ls4b{letter-spacing:0.191520px;}
.ls3b{letter-spacing:0.210600px;}
.ls67{letter-spacing:0.239400px;}
.ls2{letter-spacing:0.252000px;}
.lsd{letter-spacing:0.299520px;}
.ls32{letter-spacing:0.383040px;}
.ls5d{letter-spacing:0.430920px;}
.ls2b{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.450000px;}
.ls56{letter-spacing:0.478800px;}
.lsf{letter-spacing:0.505440px;}
.ls28{letter-spacing:0.612000px;}
.ls14{letter-spacing:0.631800px;}
.ls5f{letter-spacing:0.670320px;}
.ls29{letter-spacing:0.684000px;}
.ls18{letter-spacing:0.718200px;}
.ls15{letter-spacing:0.756000px;}
.ls5{letter-spacing:0.792000px;}
.lsa{letter-spacing:0.828000px;}
.ls69{letter-spacing:0.847476px;}
.ls58{letter-spacing:0.861840px;}
.ls25{letter-spacing:0.864000px;}
.ls17{letter-spacing:0.884520px;}
.ls24{letter-spacing:0.900000px;}
.ls3f{letter-spacing:0.926640px;}
.ls57{letter-spacing:0.957600px;}
.ls12{letter-spacing:0.968760px;}
.ls23{letter-spacing:0.972000px;}
.ls3a{letter-spacing:1.010880px;}
.ls2a{letter-spacing:1.044000px;}
.ls52{letter-spacing:1.053000px;}
.ls2c{letter-spacing:1.080000px;}
.ls50{letter-spacing:1.134000px;}
.ls11{letter-spacing:1.137240px;}
.ls22{letter-spacing:1.152000px;}
.ls47{letter-spacing:1.179360px;}
.ls55{letter-spacing:1.197000px;}
.ls6{letter-spacing:1.224000px;}
.ls10{letter-spacing:1.263600px;}
.ls1{letter-spacing:1.332000px;}
.ls59{letter-spacing:1.436400px;}
.ls3{letter-spacing:1.440000px;}
.lse{letter-spacing:1.558440px;}
.ls8{letter-spacing:1.584000px;}
.ls49{letter-spacing:1.675800px;}
.ls0{letter-spacing:1.692000px;}
.ls36{letter-spacing:1.728000px;}
.ls3e{letter-spacing:1.811160px;}
.ls43{letter-spacing:1.836000px;}
.ls42{letter-spacing:1.979640px;}
.lsc{letter-spacing:1.980000px;}
.ls26{letter-spacing:2.016000px;}
.ls4{letter-spacing:2.232000px;}
.ls65{letter-spacing:2.298240px;}
.lsb{letter-spacing:2.304000px;}
.ls64{letter-spacing:2.489760px;}
.ls7{letter-spacing:2.592000px;}
.ls13{letter-spacing:101.247120px;}
.ls66{letter-spacing:159.615720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws25{word-spacing:-18.738000px;}
.ws1d{word-spacing:-18.630000px;}
.ws30{word-spacing:-18.036000px;}
.ws1c{word-spacing:-16.902000px;}
.ws60{word-spacing:-16.665840px;}
.ws1e{word-spacing:-16.632000px;}
.ws2f{word-spacing:-15.930000px;}
.ws64{word-spacing:-15.417360px;}
.ws6d{word-spacing:-15.225840px;}
.ws24{word-spacing:-15.163200px;}
.ws16{word-spacing:-15.034320px;}
.ws23{word-spacing:-14.994720px;}
.ws12{word-spacing:-14.986440px;}
.ws63{word-spacing:-14.938560px;}
.ws1f{word-spacing:-14.842800px;}
.ws13{word-spacing:-14.699160px;}
.ws62{word-spacing:-14.603400px;}
.ws17{word-spacing:-14.507640px;}
.ws29{word-spacing:-14.362920px;}
.ws71{word-spacing:-14.268240px;}
.ws20{word-spacing:-14.194440px;}
.ws28{word-spacing:-14.152320px;}
.ws15{word-spacing:-14.124600px;}
.ws18{word-spacing:-14.028840px;}
.ws19{word-spacing:-13.789440px;}
.ws2{word-spacing:-13.635000px;}
.ws2a{word-spacing:-13.310640px;}
.wsb{word-spacing:-13.284000px;}
.ws6{word-spacing:-13.248000px;}
.ws1{word-spacing:-13.185000px;}
.ws1a{word-spacing:-13.183560px;}
.ws61{word-spacing:-13.119120px;}
.ws10{word-spacing:-12.852000px;}
.ws14{word-spacing:-12.783960px;}
.ws66{word-spacing:-12.762360px;}
.ws65{word-spacing:-12.640320px;}
.wsa{word-spacing:-12.492000px;}
.ws7{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.348000px;}
.ws26{word-spacing:-12.341160px;}
.ws0{word-spacing:-12.330000px;}
.wse{word-spacing:-12.312000px;}
.ws22{word-spacing:-12.256920px;}
.ws8{word-spacing:-12.060000px;}
.ws1b{word-spacing:-12.046320px;}
.ws21{word-spacing:-11.962080px;}
.wsd{word-spacing:-11.952000px;}
.wsc{word-spacing:-11.880000px;}
.ws2c{word-spacing:-11.874240px;}
.ws31{word-spacing:-11.709360px;}
.wsf{word-spacing:-11.700000px;}
.ws27{word-spacing:-11.540880px;}
.ws2e{word-spacing:-11.539080px;}
.ws9{word-spacing:-11.268000px;}
.ws32{word-spacing:-11.161800px;}
.ws2b{word-spacing:-11.156040px;}
.ws34{word-spacing:-11.012400px;}
.ws67{word-spacing:-10.824840px;}
.ws2d{word-spacing:-10.820880px;}
.ws33{word-spacing:-10.677240px;}
.ws3{word-spacing:-10.548000px;}
.ws4{word-spacing:-10.224000px;}
.ws5{word-spacing:-9.144000px;}
.ws3c{word-spacing:-1.584000px;}
.ws40{word-spacing:-1.440000px;}
.ws5f{word-spacing:-1.340640px;}
.ws50{word-spacing:-1.263600px;}
.ws3f{word-spacing:-1.152000px;}
.ws59{word-spacing:-1.053000px;}
.ws3a{word-spacing:-0.972000px;}
.ws4b{word-spacing:-0.926640px;}
.ws3b{word-spacing:-0.900000px;}
.ws3d{word-spacing:-0.864000px;}
.ws4a{word-spacing:-0.716040px;}
.ws6a{word-spacing:-0.670320px;}
.ws42{word-spacing:-0.612000px;}
.ws4e{word-spacing:-0.505440px;}
.ws5d{word-spacing:-0.478800px;}
.ws44{word-spacing:-0.383040px;}
.ws58{word-spacing:-0.336960px;}
.ws41{word-spacing:-0.324000px;}
.ws57{word-spacing:-0.294840px;}
.ws49{word-spacing:-0.210600px;}
.ws53{word-spacing:-0.191520px;}
.ws55{word-spacing:-0.108000px;}
.ws5e{word-spacing:-0.095760px;}
.ws5c{word-spacing:-0.047880px;}
.ws48{word-spacing:-0.042120px;}
.ws35{word-spacing:0.000000px;}
.ws5a{word-spacing:0.047880px;}
.ws56{word-spacing:0.084240px;}
.ws4d{word-spacing:0.168480px;}
.ws4f{word-spacing:0.210600px;}
.ws45{word-spacing:0.239400px;}
.ws36{word-spacing:0.252000px;}
.ws6f{word-spacing:0.287280px;}
.ws38{word-spacing:0.324000px;}
.ws6c{word-spacing:0.335160px;}
.ws5b{word-spacing:0.383040px;}
.ws47{word-spacing:0.430920px;}
.ws43{word-spacing:0.478800px;}
.ws37{word-spacing:0.540000px;}
.ws6e{word-spacing:0.622440px;}
.ws72{word-spacing:0.718200px;}
.ws46{word-spacing:0.766080px;}
.ws39{word-spacing:0.792000px;}
.ws3e{word-spacing:0.828000px;}
.ws70{word-spacing:1.005480px;}
.ws68{word-spacing:1.292760px;}
.ws4c{word-spacing:1.305720px;}
.ws51{word-spacing:1.771560px;}
.ws69{word-spacing:1.867320px;}
.ws6b{word-spacing:2.058840px;}
.ws54{word-spacing:2.154600px;}
.ws52{word-spacing:2.489760px;}
._6{margin-left:-5.938920px;}
._7{margin-left:-4.831560px;}
._4{margin-left:-3.047400px;}
._2{margin-left:-1.980000px;}
._1{width:1.125000px;}
._0{width:2.610000px;}
._9{width:4.140000px;}
._b{width:50.221800px;}
._8{width:54.419040px;}
._c{width:85.253400px;}
._a{width:211.473000px;}
._d{width:240.786000px;}
._3{width:406.702320px;}
._5{width:1852.759080px;}
.fc6{color:rgb(18,73,154);}
.fc8{color:transparent;}
.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);}
.fs7{font-size:29.880000px;}
.fs1{font-size:36.000000px;}
.fs4{font-size:42.120000px;}
.fs6{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;}
.y111{bottom:25.794360px;}
.y69{bottom:25.800150px;}
.y77{bottom:40.203450px;}
.y55{bottom:48.055800px;}
.y7b{bottom:51.419850px;}
.y113{bottom:60.360150px;}
.y7a{bottom:63.120000px;}
.y112{bottom:71.700150px;}
.y54{bottom:87.869310px;}
.y15{bottom:88.522350px;}
.yc7{bottom:88.872000px;}
.y110{bottom:90.887220px;}
.yc6{bottom:91.954950px;}
.y1b{bottom:92.018670px;}
.y53{bottom:99.926160px;}
.y14{bottom:100.222350px;}
.yf4{bottom:108.355350px;}
.y10f{bottom:114.827220px;}
.yaa{bottom:117.518400px;}
.yf3{bottom:120.055350px;}
.yc4{bottom:122.907690px;}
.y13{bottom:123.120000px;}
.y52{bottom:124.850670px;}
.y1a{bottom:125.079810px;}
.y10e{bottom:132.650550px;}
.ya9{bottom:140.603400px;}
.yf2{bottom:140.980350px;}
.y12{bottom:141.120000px;}
.y51{bottom:150.533340px;}
.y19{bottom:157.243200px;}
.ya8{bottom:158.603400px;}
.y11{bottom:159.030000px;}
.yf1{bottom:160.420350px;}
.yc3{bottom:162.492480px;}
.y50{bottom:174.205950px;}
.y10d{bottom:175.292430px;}
.ya7{bottom:176.513250px;}
.yc2{bottom:177.526800px;}
.yf0{bottom:177.970200px;}
.y4f{bottom:182.035950px;}
.y68{bottom:199.878150px;}
.y67{bottom:215.088000px;}
.ya6{bottom:223.167450px;}
.yef{bottom:226.284600px;}
.y66{bottom:228.678000px;}
.ya5{bottom:234.867450px;}
.yee{bottom:237.979800px;}
.y65{bottom:245.958000px;}
.ya4{bottom:246.117450px;}
.ya3{bottom:258.267450px;}
.y64{bottom:261.258150px;}
.ya2{bottom:266.817000px;}
.y10c{bottom:266.886870px;}
.yed{bottom:268.273800px;}
.y10{bottom:272.425800px;}
.y63{bottom:274.848000px;}
.ya1{bottom:278.517000px;}
.yec{bottom:279.973800px;}
.yf{bottom:284.125800px;}
.y62{bottom:288.888000px;}
.y10b{bottom:290.826870px;}
.ya0{bottom:299.442000px;}
.yeb{bottom:300.898800px;}
.y61{bottom:300.948150px;}
.yc1{bottom:304.263810px;}
.y10a{bottom:308.650200px;}
.ye{bottom:314.415600px;}
.y4e{bottom:316.045950px;}
.y9f{bottom:318.882000px;}
.yea{bottom:320.338800px;}
.yd{bottom:326.115600px;}
.y60{bottom:334.309800px;}
.y9e{bottom:336.432000px;}
.yc0{bottom:337.324950px;}
.ye9{bottom:337.888950px;}
.y18{bottom:338.468130px;}
.y109{bottom:338.782350px;}
.yc{bottom:348.120000px;}
.y5f{bottom:348.349800px;}
.y72{bottom:349.189050px;}
.y138{bottom:356.171400px;}
.y5e{bottom:360.409800px;}
.yb{bottom:366.120000px;}
.y137{bottom:367.866750px;}
.y17{bottom:370.009080px;}
.y70{bottom:373.759050px;}
.y5d{bottom:375.349800px;}
.ya{bottom:384.030000px;}
.y16{bottom:385.043400px;}
.y9d{bottom:386.533200px;}
.ye8{bottom:386.757600px;}
.y5c{bottom:387.409800px;}
.y14c{bottom:395.400780px;}
.y136{bottom:398.160750px;}
.y9c{bottom:398.232600px;}
.y6e{bottom:398.419050px;}
.ye7{bottom:398.457600px;}
.y5b{bottom:402.349800px;}
.ybf{bottom:402.537510px;}
.y135{bottom:409.860750px;}
.y5a{bottom:414.409800px;}
.y9b{bottom:427.626600px;}
.ye6{bottom:428.193150px;}
.y14b{bottom:428.461920px;}
.y134{bottom:430.785750px;}
.y9a{bottom:439.326600px;}
.ye5{bottom:439.893150px;}
.ybe{bottom:443.020050px;}
.y108{bottom:444.201840px;}
.y4d{bottom:448.213800px;}
.y133{bottom:450.225750px;}
.y4c{bottom:455.956950px;}
.ybd{bottom:458.054370px;}
.y99{bottom:460.584600px;}
.ye4{bottom:460.817550px;}
.y132{bottom:467.775750px;}
.y4b{bottom:468.013800px;}
.y14a{bottom:468.669150px;}
.ye3{bottom:480.257550px;}
.y107{bottom:483.786630px;}
.ye2{bottom:497.807550px;}
.y9{bottom:498.340350px;}
.y106{bottom:498.820950px;}
.y1d{bottom:504.583200px;}
.y8{bottom:510.040350px;}
.ybc{bottom:515.294910px;}
.y131{bottom:516.644400px;}
.y130{bottom:528.344400px;}
.ybb{bottom:536.805000px;}
.y2a{bottom:540.329400px;}
.y12f{bottom:541.034400px;}
.y91{bottom:542.878200px;}
.y1c{bottom:542.969400px;}
.ye1{bottom:547.015200px;}
.y29{bottom:552.029400px;}
.y90{bottom:554.578200px;}
.y12b{bottom:558.079800px;}
.yba{bottom:558.219330px;}
.ye0{bottom:558.715200px;}
.y4a{bottom:561.375150px;}
.y12a{bottom:569.779800px;}
.y28{bottom:572.954400px;}
.y49{bottom:573.432660px;}
.y149{bottom:574.088640px;}
.y39{bottom:578.671800px;}
.yb9{bottom:578.831670px;}
.y8f{bottom:584.868000px;}
.y105{bottom:585.362730px;}
.ydf{bottom:588.111600px;}
.y129{bottom:590.704200px;}
.y27{bottom:592.394400px;}
.y59{bottom:592.825950px;}
.y8e{bottom:596.568000px;}
.yb8{bottom:596.655000px;}
.yde{bottom:599.811600px;}
.y58{bottom:604.795800px;}
.y26{bottom:609.944400px;}
.y128{bottom:610.144200px;}
.y38{bottom:610.835190px;}
.y148{bottom:613.673430px;}
.y57{bottom:616.765800px;}
.y104{bottom:618.423870px;}
.y8d{bottom:618.572400px;}
.ydd{bottom:622.709400px;}
.yb7{bottom:625.510770px;}
.y127{bottom:627.694200px;}
.y147{bottom:628.707750px;}
.y56{bottom:628.825950px;}
.y6d{bottom:636.030000px;}
.y8c{bottom:636.572400px;}
.yb6{bottom:640.449330px;}
.ydc{bottom:640.709400px;}
.y48{bottom:647.679690px;}
.y8b{bottom:654.482400px;}
.yb5{bottom:655.483650px;}
.ydb{bottom:658.619400px;}
.y103{bottom:659.516880px;}
.y47{bottom:659.652300px;}
.y37{bottom:663.551070px;}
.y31{bottom:670.766400px;}
.y46{bottom:671.709150px;}
.y126{bottom:676.008750px;}
.y30{bottom:682.468200px;}
.y125{bottom:687.708600px;}
.y45{bottom:689.487150px;}
.yda{bottom:707.827200px;}
.y44{bottom:708.430200px;}
.yb4{bottom:708.498780px;}
.y2f{bottom:711.862200px;}
.y146{bottom:715.237980px;}
.y124{bottom:717.998550px;}
.yd9{bottom:719.527200px;}
.y43{bottom:720.400200px;}
.y2e{bottom:723.562200px;}
.y102{bottom:724.729440px;}
.y8a{bottom:726.025200px;}
.y36{bottom:729.661380px;}
.y123{bottom:729.698550px;}
.yb3{bottom:730.463730px;}
.y42{bottom:732.462300px;}
.y89{bottom:737.725200px;}
.y2d{bottom:745.567200px;}
.y145{bottom:748.299120px;}
.yd8{bottom:749.817000px;}
.y41{bottom:750.236940px;}
.y122{bottom:750.955800px;}
.yb2{bottom:752.332920px;}
.yd7{bottom:761.517000px;}
.y2c{bottom:763.567200px;}
.y101{bottom:764.314230px;}
.y88{bottom:768.015000px;}
.y40{bottom:768.106350px;}
.y121{bottom:769.792800px;}
.yb1{bottom:776.272920px;}
.y100{bottom:779.348550px;}
.y87{bottom:779.715000px;}
.y2b{bottom:781.475400px;}
.yd6{bottom:781.878600px;}
.y35{bottom:782.377260px;}
.y3f{bottom:786.785400px;}
.y120{bottom:787.612800px;}
.y144{bottom:788.506350px;}
.yb0{bottom:794.096250px;}
.y3e{bottom:799.655400px;}
.y86{bottom:800.639250px;}
.y3d{bottom:817.655400px;}
.y85{bottom:820.079250px;}
.yaf{bottom:823.608480px;}
.yd5{bottom:826.649400px;}
.y3c{bottom:834.755550px;}
.y12e{bottom:836.481600px;}
.yff{bottom:837.294570px;}
.y84{bottom:837.629400px;}
.yd4{bottom:838.349400px;}
.yae{bottom:838.642800px;}
.y3b{bottom:846.815400px;}
.y12d{bottom:848.181600px;}
.y12c{bottom:860.871600px;}
.yd3{bottom:868.639200px;}
.yfe{bottom:870.355710px;}
.y11f{bottom:877.917000px;}
.yd2{bottom:880.339200px;}
.y3a{bottom:883.384800px;}
.y76{bottom:885.960000px;}
.y11e{bottom:889.617000px;}
.y143{bottom:893.922390px;}
.yd1{bottom:901.263600px;}
.yfd{bottom:909.294120px;}
.y11d{bottom:910.541400px;}
.yd0{bottom:920.703600px;}
.yfc{bottom:924.232680px;}
.y75{bottom:926.163450px;}
.y83{bottom:928.953600px;}
.y11c{bottom:929.981400px;}
.y142{bottom:933.507180px;}
.ycf{bottom:938.253600px;}
.yfb{bottom:939.267000px;}
.y82{bottom:940.653600px;}
.y11b{bottom:947.531400px;}
.y141{bottom:948.541500px;}
.y81{bottom:951.903600px;}
.y74{bottom:953.181480px;}
.y25{bottom:968.395350px;}
.y73{bottom:971.809050px;}
.y80{bottom:972.603450px;}
.y24{bottom:980.095350px;}
.y7f{bottom:984.303450px;}
.y23{bottom:991.345350px;}
.y71{bottom:996.378900px;}
.y140{bottom:1002.023460px;}
.y7e{bottom:1007.201550px;}
.yad{bottom:1011.841410px;}
.y22{bottom:1012.047000px;}
.y6f{bottom:1021.039050px;}
.y21{bottom:1023.747000px;}
.y7d{bottom:1025.201550px;}
.yfa{bottom:1027.417560px;}
.y13f{bottom:1035.084600px;}
.y34{bottom:1036.991130px;}
.y11a{bottom:1040.515800px;}
.y7c{bottom:1043.111550px;}
.yac{bottom:1044.004800px;}
.y6c{bottom:1045.609050px;}
.yce{bottom:1046.425800px;}
.y20{bottom:1046.643000px;}
.yf9{bottom:1048.831890px;}
.y119{bottom:1052.215800px;}
.ycd{bottom:1058.125800px;}
.y1f{bottom:1064.643000px;}
.y6b{bottom:1066.908600px;}
.yf8{bottom:1067.373420px;}
.y33{bottom:1068.532080px;}
.y13e{bottom:1071.402240px;}
.y118{bottom:1081.612200px;}
.y1e{bottom:1082.553150px;}
.y32{bottom:1083.566400px;}
.y6a{bottom:1083.918600px;}
.ycc{bottom:1088.415750px;}
.yf7{bottom:1091.313420px;}
.y98{bottom:1091.425650px;}
.y13d{bottom:1093.091880px;}
.y117{bottom:1093.312200px;}
.ycb{bottom:1100.115750px;}
.y97{bottom:1103.126250px;}
.y13c{bottom:1108.126200px;}
.yf6{bottom:1109.136750px;}
.y116{bottom:1116.210000px;}
.y7{bottom:1120.800450px;}
.yca{bottom:1121.039850px;}
.y13b{bottom:1123.160520px;}
.y96{bottom:1131.116250px;}
.y6{bottom:1133.040450px;}
.y115{bottom:1134.210000px;}
.y13a{bottom:1138.099080px;}
.yc9{bottom:1140.479850px;}
.y95{bottom:1143.356250px;}
.y114{bottom:1152.120000px;}
.y139{bottom:1153.133400px;}
.yc8{bottom:1158.030000px;}
.yf5{bottom:1158.923550px;}
.y94{bottom:1167.120000px;}
.y5{bottom:1170.076200px;}
.y3{bottom:1172.554800px;}
.y2{bottom:1183.534950px;}
.y93{bottom:1185.120000px;}
.y4{bottom:1189.731000px;}
.y1{bottom:1195.504800px;}
.yab{bottom:1200.349800px;}
.y92{bottom:1203.030000px;}
.yc5{bottom:1203.422550px;}
.y14e{bottom:1217.844570px;}
.y79{bottom:1217.850240px;}
.y14d{bottom:1232.244480px;}
.y78{bottom:1232.250150px;}
.h9{height:20.702988px;}
.hc{height:31.179199px;}
.hf{height:33.174668px;}
.h2{height:38.412000px;}
.h7{height:42.045117px;}
.hd{height:43.929844px;}
.h5{height:44.942040px;}
.h1{height:48.015000px;}
.ha{height:49.937344px;}
.h4{height:51.087960px;}
.h6{height:57.618000px;}
.h3{height:60.690960px;}
.h8{height:60.698760px;}
.he{height:88.200000px;}
.hb{height:628.470000px;}
.h0{height:1264.500000px;}
.w3{width:161.730000px;}
.w2{width:167.041500px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x10{left:39.030000px;}
.x12{left:47.970000px;}
.x4{left:51.612450px;}
.x9{left:53.469000px;}
.x11{left:57.867000px;}
.x13{left:59.667000px;}
.x14{left:60.707250px;}
.xc{left:70.700400px;}
.x8{left:72.230400px;}
.xe{left:78.474690px;}
.xa{left:86.530140px;}
.xd{left:88.311600px;}
.x16{left:90.000000px;}
.xb{left:100.819200px;}
.xf{left:115.113600px;}
.x15{left:159.347250px;}
.x1{left:175.152900px;}
.x17{left:231.386850px;}
.x5{left:232.916850px;}
.x6{left:251.636850px;}
.x7{left:334.164150px;}
.x19{left:352.005210px;}
.x18{left:353.154330px;}
.x3{left:658.482300px;}
.x2{left:786.238500px;}
@media print{
.v3{vertical-align:-60.606400pt;}
.v1{vertical-align:-43.840000pt;}
.v2{vertical-align:-41.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls4a{letter-spacing:-2.213120pt;}
.ls5e{letter-spacing:-2.085440pt;}
.ls2e{letter-spacing:-1.957760pt;}
.ls4c{letter-spacing:-1.915200pt;}
.ls60{letter-spacing:-1.830080pt;}
.ls5a{letter-spacing:-1.659840pt;}
.ls48{letter-spacing:-1.574720pt;}
.ls4d{letter-spacing:-1.276800pt;}
.ls1f{letter-spacing:-1.248000pt;}
.ls40{letter-spacing:-1.160640pt;}
.ls5c{letter-spacing:-1.149120pt;}
.ls3c{letter-spacing:-1.085760pt;}
.ls68{letter-spacing:-1.064000pt;}
.ls35{letter-spacing:-1.010880pt;}
.ls4e{letter-spacing:-0.864000pt;}
.ls3d{letter-spacing:-0.823680pt;}
.ls62{letter-spacing:-0.786240pt;}
.ls30{letter-spacing:-0.766080pt;}
.ls1a{letter-spacing:-0.760000pt;}
.ls27{letter-spacing:-0.736000pt;}
.ls45{letter-spacing:-0.711360pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls34{letter-spacing:-0.680960pt;}
.ls6a{letter-spacing:-0.638400pt;}
.ls53{letter-spacing:-0.486720pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls2f{letter-spacing:-0.425600pt;}
.ls38{letter-spacing:-0.383040pt;}
.ls5b{letter-spacing:-0.340480pt;}
.ls44{letter-spacing:-0.336960pt;}
.ls61{letter-spacing:-0.297920pt;}
.ls1d{letter-spacing:-0.288000pt;}
.ls2d{letter-spacing:-0.255360pt;}
.ls37{letter-spacing:-0.240000pt;}
.ls1e{letter-spacing:-0.224000pt;}
.ls33{letter-spacing:-0.212800pt;}
.ls46{letter-spacing:-0.187200pt;}
.ls41{letter-spacing:-0.149760pt;}
.ls39{letter-spacing:-0.127680pt;}
.ls51{letter-spacing:-0.112320pt;}
.ls54{letter-spacing:-0.042560pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.042560pt;}
.ls19{letter-spacing:0.085120pt;}
.ls16{letter-spacing:0.092480pt;}
.ls4f{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.101120pt;}
.ls63{letter-spacing:0.127680pt;}
.ls4b{letter-spacing:0.170240pt;}
.ls3b{letter-spacing:0.187200pt;}
.ls67{letter-spacing:0.212800pt;}
.ls2{letter-spacing:0.224000pt;}
.lsd{letter-spacing:0.266240pt;}
.ls32{letter-spacing:0.340480pt;}
.ls5d{letter-spacing:0.383040pt;}
.ls2b{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.400000pt;}
.ls56{letter-spacing:0.425600pt;}
.lsf{letter-spacing:0.449280pt;}
.ls28{letter-spacing:0.544000pt;}
.ls14{letter-spacing:0.561600pt;}
.ls5f{letter-spacing:0.595840pt;}
.ls29{letter-spacing:0.608000pt;}
.ls18{letter-spacing:0.638400pt;}
.ls15{letter-spacing:0.672000pt;}
.ls5{letter-spacing:0.704000pt;}
.lsa{letter-spacing:0.736000pt;}
.ls69{letter-spacing:0.753312pt;}
.ls58{letter-spacing:0.766080pt;}
.ls25{letter-spacing:0.768000pt;}
.ls17{letter-spacing:0.786240pt;}
.ls24{letter-spacing:0.800000pt;}
.ls3f{letter-spacing:0.823680pt;}
.ls57{letter-spacing:0.851200pt;}
.ls12{letter-spacing:0.861120pt;}
.ls23{letter-spacing:0.864000pt;}
.ls3a{letter-spacing:0.898560pt;}
.ls2a{letter-spacing:0.928000pt;}
.ls52{letter-spacing:0.936000pt;}
.ls2c{letter-spacing:0.960000pt;}
.ls50{letter-spacing:1.008000pt;}
.ls11{letter-spacing:1.010880pt;}
.ls22{letter-spacing:1.024000pt;}
.ls47{letter-spacing:1.048320pt;}
.ls55{letter-spacing:1.064000pt;}
.ls6{letter-spacing:1.088000pt;}
.ls10{letter-spacing:1.123200pt;}
.ls1{letter-spacing:1.184000pt;}
.ls59{letter-spacing:1.276800pt;}
.ls3{letter-spacing:1.280000pt;}
.lse{letter-spacing:1.385280pt;}
.ls8{letter-spacing:1.408000pt;}
.ls49{letter-spacing:1.489600pt;}
.ls0{letter-spacing:1.504000pt;}
.ls36{letter-spacing:1.536000pt;}
.ls3e{letter-spacing:1.609920pt;}
.ls43{letter-spacing:1.632000pt;}
.ls42{letter-spacing:1.759680pt;}
.lsc{letter-spacing:1.760000pt;}
.ls26{letter-spacing:1.792000pt;}
.ls4{letter-spacing:1.984000pt;}
.ls65{letter-spacing:2.042880pt;}
.lsb{letter-spacing:2.048000pt;}
.ls64{letter-spacing:2.213120pt;}
.ls7{letter-spacing:2.304000pt;}
.ls13{letter-spacing:89.997440pt;}
.ls66{letter-spacing:141.880640pt;}
.ws25{word-spacing:-16.656000pt;}
.ws1d{word-spacing:-16.560000pt;}
.ws30{word-spacing:-16.032000pt;}
.ws1c{word-spacing:-15.024000pt;}
.ws60{word-spacing:-14.814080pt;}
.ws1e{word-spacing:-14.784000pt;}
.ws2f{word-spacing:-14.160000pt;}
.ws64{word-spacing:-13.704320pt;}
.ws6d{word-spacing:-13.534080pt;}
.ws24{word-spacing:-13.478400pt;}
.ws16{word-spacing:-13.363840pt;}
.ws23{word-spacing:-13.328640pt;}
.ws12{word-spacing:-13.321280pt;}
.ws63{word-spacing:-13.278720pt;}
.ws1f{word-spacing:-13.193600pt;}
.ws13{word-spacing:-13.065920pt;}
.ws62{word-spacing:-12.980800pt;}
.ws17{word-spacing:-12.895680pt;}
.ws29{word-spacing:-12.767040pt;}
.ws71{word-spacing:-12.682880pt;}
.ws20{word-spacing:-12.617280pt;}
.ws28{word-spacing:-12.579840pt;}
.ws15{word-spacing:-12.555200pt;}
.ws18{word-spacing:-12.470080pt;}
.ws19{word-spacing:-12.257280pt;}
.ws2{word-spacing:-12.120000pt;}
.ws2a{word-spacing:-11.831680pt;}
.wsb{word-spacing:-11.808000pt;}
.ws6{word-spacing:-11.776000pt;}
.ws1{word-spacing:-11.720000pt;}
.ws1a{word-spacing:-11.718720pt;}
.ws61{word-spacing:-11.661440pt;}
.ws10{word-spacing:-11.424000pt;}
.ws14{word-spacing:-11.363520pt;}
.ws66{word-spacing:-11.344320pt;}
.ws65{word-spacing:-11.235840pt;}
.wsa{word-spacing:-11.104000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.976000pt;}
.ws26{word-spacing:-10.969920pt;}
.ws0{word-spacing:-10.960000pt;}
.wse{word-spacing:-10.944000pt;}
.ws22{word-spacing:-10.895040pt;}
.ws8{word-spacing:-10.720000pt;}
.ws1b{word-spacing:-10.707840pt;}
.ws21{word-spacing:-10.632960pt;}
.wsd{word-spacing:-10.624000pt;}
.wsc{word-spacing:-10.560000pt;}
.ws2c{word-spacing:-10.554880pt;}
.ws31{word-spacing:-10.408320pt;}
.wsf{word-spacing:-10.400000pt;}
.ws27{word-spacing:-10.258560pt;}
.ws2e{word-spacing:-10.256960pt;}
.ws9{word-spacing:-10.016000pt;}
.ws32{word-spacing:-9.921600pt;}
.ws2b{word-spacing:-9.916480pt;}
.ws34{word-spacing:-9.788800pt;}
.ws67{word-spacing:-9.622080pt;}
.ws2d{word-spacing:-9.618560pt;}
.ws33{word-spacing:-9.490880pt;}
.ws3{word-spacing:-9.376000pt;}
.ws4{word-spacing:-9.088000pt;}
.ws5{word-spacing:-8.128000pt;}
.ws3c{word-spacing:-1.408000pt;}
.ws40{word-spacing:-1.280000pt;}
.ws5f{word-spacing:-1.191680pt;}
.ws50{word-spacing:-1.123200pt;}
.ws3f{word-spacing:-1.024000pt;}
.ws59{word-spacing:-0.936000pt;}
.ws3a{word-spacing:-0.864000pt;}
.ws4b{word-spacing:-0.823680pt;}
.ws3b{word-spacing:-0.800000pt;}
.ws3d{word-spacing:-0.768000pt;}
.ws4a{word-spacing:-0.636480pt;}
.ws6a{word-spacing:-0.595840pt;}
.ws42{word-spacing:-0.544000pt;}
.ws4e{word-spacing:-0.449280pt;}
.ws5d{word-spacing:-0.425600pt;}
.ws44{word-spacing:-0.340480pt;}
.ws58{word-spacing:-0.299520pt;}
.ws41{word-spacing:-0.288000pt;}
.ws57{word-spacing:-0.262080pt;}
.ws49{word-spacing:-0.187200pt;}
.ws53{word-spacing:-0.170240pt;}
.ws55{word-spacing:-0.096000pt;}
.ws5e{word-spacing:-0.085120pt;}
.ws5c{word-spacing:-0.042560pt;}
.ws48{word-spacing:-0.037440pt;}
.ws35{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.042560pt;}
.ws56{word-spacing:0.074880pt;}
.ws4d{word-spacing:0.149760pt;}
.ws4f{word-spacing:0.187200pt;}
.ws45{word-spacing:0.212800pt;}
.ws36{word-spacing:0.224000pt;}
.ws6f{word-spacing:0.255360pt;}
.ws38{word-spacing:0.288000pt;}
.ws6c{word-spacing:0.297920pt;}
.ws5b{word-spacing:0.340480pt;}
.ws47{word-spacing:0.383040pt;}
.ws43{word-spacing:0.425600pt;}
.ws37{word-spacing:0.480000pt;}
.ws6e{word-spacing:0.553280pt;}
.ws72{word-spacing:0.638400pt;}
.ws46{word-spacing:0.680960pt;}
.ws39{word-spacing:0.704000pt;}
.ws3e{word-spacing:0.736000pt;}
.ws70{word-spacing:0.893760pt;}
.ws68{word-spacing:1.149120pt;}
.ws4c{word-spacing:1.160640pt;}
.ws51{word-spacing:1.574720pt;}
.ws69{word-spacing:1.659840pt;}
.ws6b{word-spacing:1.830080pt;}
.ws54{word-spacing:1.915200pt;}
.ws52{word-spacing:2.213120pt;}
._6{margin-left:-5.279040pt;}
._7{margin-left:-4.294720pt;}
._4{margin-left:-2.708800pt;}
._2{margin-left:-1.760000pt;}
._1{width:1.000000pt;}
._0{width:2.320000pt;}
._9{width:3.680000pt;}
._b{width:44.641600pt;}
._8{width:48.372480pt;}
._c{width:75.780800pt;}
._a{width:187.976000pt;}
._d{width:214.032000pt;}
._3{width:361.513173pt;}
._5{width:1646.896960pt;}
.fs7{font-size:26.560000pt;}
.fs1{font-size:32.000000pt;}
.fs4{font-size:37.440000pt;}
.fs6{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;}
.y111{bottom:22.928320pt;}
.y69{bottom:22.933467pt;}
.y77{bottom:35.736400pt;}
.y55{bottom:42.716267pt;}
.y7b{bottom:45.706533pt;}
.y113{bottom:53.653467pt;}
.y7a{bottom:56.106667pt;}
.y112{bottom:63.733467pt;}
.y54{bottom:78.106053pt;}
.y15{bottom:78.686533pt;}
.yc7{bottom:78.997333pt;}
.y110{bottom:80.788640pt;}
.yc6{bottom:81.737733pt;}
.y1b{bottom:81.794373pt;}
.y53{bottom:88.823253pt;}
.y14{bottom:89.086533pt;}
.yf4{bottom:96.315867pt;}
.y10f{bottom:102.068640pt;}
.yaa{bottom:104.460800pt;}
.yf3{bottom:106.715867pt;}
.yc4{bottom:109.251280pt;}
.y13{bottom:109.440000pt;}
.y52{bottom:110.978373pt;}
.y1a{bottom:111.182053pt;}
.y10e{bottom:117.911600pt;}
.ya9{bottom:124.980800pt;}
.yf2{bottom:125.315867pt;}
.y12{bottom:125.440000pt;}
.y51{bottom:133.807413pt;}
.y19{bottom:139.771733pt;}
.ya8{bottom:140.980800pt;}
.y11{bottom:141.360000pt;}
.yf1{bottom:142.595867pt;}
.yc3{bottom:144.437760pt;}
.y50{bottom:154.849733pt;}
.y10d{bottom:155.815493pt;}
.ya7{bottom:156.900667pt;}
.yc2{bottom:157.801600pt;}
.yf0{bottom:158.195733pt;}
.y4f{bottom:161.809733pt;}
.y68{bottom:177.669467pt;}
.y67{bottom:191.189333pt;}
.ya6{bottom:198.371067pt;}
.yef{bottom:201.141867pt;}
.y66{bottom:203.269333pt;}
.ya5{bottom:208.771067pt;}
.yee{bottom:211.537600pt;}
.y65{bottom:218.629333pt;}
.ya4{bottom:218.771067pt;}
.ya3{bottom:229.571067pt;}
.y64{bottom:232.229467pt;}
.ya2{bottom:237.170667pt;}
.y10c{bottom:237.232773pt;}
.yed{bottom:238.465600pt;}
.y10{bottom:242.156267pt;}
.y63{bottom:244.309333pt;}
.ya1{bottom:247.570667pt;}
.yec{bottom:248.865600pt;}
.yf{bottom:252.556267pt;}
.y62{bottom:256.789333pt;}
.y10b{bottom:258.512773pt;}
.ya0{bottom:266.170667pt;}
.yeb{bottom:267.465600pt;}
.y61{bottom:267.509467pt;}
.yc1{bottom:270.456720pt;}
.y10a{bottom:274.355733pt;}
.ye{bottom:279.480533pt;}
.y4e{bottom:280.929733pt;}
.y9f{bottom:283.450667pt;}
.yea{bottom:284.745600pt;}
.yd{bottom:289.880533pt;}
.y60{bottom:297.164267pt;}
.y9e{bottom:299.050667pt;}
.yc0{bottom:299.844400pt;}
.ye9{bottom:300.345733pt;}
.y18{bottom:300.860560pt;}
.y109{bottom:301.139867pt;}
.yc{bottom:309.440000pt;}
.y5f{bottom:309.644267pt;}
.y72{bottom:310.390267pt;}
.y138{bottom:316.596800pt;}
.y5e{bottom:320.364267pt;}
.yb{bottom:325.440000pt;}
.y137{bottom:326.992667pt;}
.y17{bottom:328.896960pt;}
.y70{bottom:332.230267pt;}
.y5d{bottom:333.644267pt;}
.ya{bottom:341.360000pt;}
.y16{bottom:342.260800pt;}
.y9d{bottom:343.585067pt;}
.ye8{bottom:343.784533pt;}
.y5c{bottom:344.364267pt;}
.y14c{bottom:351.467360pt;}
.y136{bottom:353.920667pt;}
.y9c{bottom:353.984533pt;}
.y6e{bottom:354.150267pt;}
.ye7{bottom:354.184533pt;}
.y5b{bottom:357.644267pt;}
.ybf{bottom:357.811120pt;}
.y135{bottom:364.320667pt;}
.y5a{bottom:368.364267pt;}
.y9b{bottom:380.112533pt;}
.ye6{bottom:380.616133pt;}
.y14b{bottom:380.855040pt;}
.y134{bottom:382.920667pt;}
.y9a{bottom:390.512533pt;}
.ye5{bottom:391.016133pt;}
.ybe{bottom:393.795600pt;}
.y108{bottom:394.846080pt;}
.y4d{bottom:398.412267pt;}
.y133{bottom:400.200667pt;}
.y4c{bottom:405.295067pt;}
.ybd{bottom:407.159440pt;}
.y99{bottom:409.408533pt;}
.ye4{bottom:409.615600pt;}
.y132{bottom:415.800667pt;}
.y4b{bottom:416.012267pt;}
.y14a{bottom:416.594800pt;}
.ye3{bottom:426.895600pt;}
.y107{bottom:430.032560pt;}
.ye2{bottom:442.495600pt;}
.y9{bottom:442.969200pt;}
.y106{bottom:443.396400pt;}
.y1d{bottom:448.518400pt;}
.y8{bottom:453.369200pt;}
.ybc{bottom:458.039920pt;}
.y131{bottom:459.239467pt;}
.y130{bottom:469.639467pt;}
.ybb{bottom:477.160000pt;}
.y2a{bottom:480.292800pt;}
.y12f{bottom:480.919467pt;}
.y91{bottom:482.558400pt;}
.y1c{bottom:482.639467pt;}
.ye1{bottom:486.235733pt;}
.y29{bottom:490.692800pt;}
.y90{bottom:492.958400pt;}
.y12b{bottom:496.070933pt;}
.yba{bottom:496.194960pt;}
.ye0{bottom:496.635733pt;}
.y4a{bottom:499.000133pt;}
.y12a{bottom:506.470933pt;}
.y28{bottom:509.292800pt;}
.y49{bottom:509.717920pt;}
.y149{bottom:510.301013pt;}
.y39{bottom:514.374933pt;}
.yb9{bottom:514.517040pt;}
.y8f{bottom:519.882667pt;}
.y105{bottom:520.322427pt;}
.ydf{bottom:522.765867pt;}
.y129{bottom:525.070400pt;}
.y27{bottom:526.572800pt;}
.y59{bottom:526.956400pt;}
.y8e{bottom:530.282667pt;}
.yb8{bottom:530.360000pt;}
.yde{bottom:533.165867pt;}
.y58{bottom:537.596267pt;}
.y26{bottom:542.172800pt;}
.y128{bottom:542.350400pt;}
.y38{bottom:542.964613pt;}
.y148{bottom:545.487493pt;}
.y57{bottom:548.236267pt;}
.y104{bottom:549.710107pt;}
.y8d{bottom:549.842133pt;}
.ydd{bottom:553.519467pt;}
.yb7{bottom:556.009573pt;}
.y127{bottom:557.950400pt;}
.y147{bottom:558.851333pt;}
.y56{bottom:558.956400pt;}
.y6d{bottom:565.360000pt;}
.y8c{bottom:565.842133pt;}
.yb6{bottom:569.288293pt;}
.ydc{bottom:569.519467pt;}
.y48{bottom:575.715280pt;}
.y8b{bottom:581.762133pt;}
.yb5{bottom:582.652133pt;}
.ydb{bottom:585.439467pt;}
.y103{bottom:586.237227pt;}
.y47{bottom:586.357600pt;}
.y37{bottom:589.823173pt;}
.y31{bottom:596.236800pt;}
.y46{bottom:597.074800pt;}
.y126{bottom:600.896667pt;}
.y30{bottom:606.638400pt;}
.y125{bottom:611.296533pt;}
.y45{bottom:612.877467pt;}
.yda{bottom:629.179733pt;}
.y44{bottom:629.715733pt;}
.yb4{bottom:629.776693pt;}
.y2f{bottom:632.766400pt;}
.y146{bottom:635.767093pt;}
.y124{bottom:638.220933pt;}
.yd9{bottom:639.579733pt;}
.y43{bottom:640.355733pt;}
.y2e{bottom:643.166400pt;}
.y102{bottom:644.203947pt;}
.y8a{bottom:645.355733pt;}
.y36{bottom:648.587893pt;}
.y123{bottom:648.620933pt;}
.yb3{bottom:649.301093pt;}
.y42{bottom:651.077600pt;}
.y89{bottom:655.755733pt;}
.y2d{bottom:662.726400pt;}
.y145{bottom:665.154773pt;}
.yd8{bottom:666.504000pt;}
.y41{bottom:666.877280pt;}
.y122{bottom:667.516267pt;}
.yb2{bottom:668.740373pt;}
.yd7{bottom:676.904000pt;}
.y2c{bottom:678.726400pt;}
.y101{bottom:679.390427pt;}
.y88{bottom:682.680000pt;}
.y40{bottom:682.761200pt;}
.y121{bottom:684.260267pt;}
.yb1{bottom:690.020373pt;}
.y100{bottom:692.754267pt;}
.y87{bottom:693.080000pt;}
.y2b{bottom:694.644800pt;}
.yd6{bottom:695.003200pt;}
.y35{bottom:695.446453pt;}
.y3f{bottom:699.364800pt;}
.y120{bottom:700.100267pt;}
.y144{bottom:700.894533pt;}
.yb0{bottom:705.863333pt;}
.y3e{bottom:710.804800pt;}
.y86{bottom:711.679333pt;}
.y3d{bottom:726.804800pt;}
.y85{bottom:728.959333pt;}
.yaf{bottom:732.096427pt;}
.yd5{bottom:734.799467pt;}
.y3c{bottom:742.004933pt;}
.y12e{bottom:743.539200pt;}
.yff{bottom:744.261840pt;}
.y84{bottom:744.559467pt;}
.yd4{bottom:745.199467pt;}
.yae{bottom:745.460267pt;}
.y3b{bottom:752.724800pt;}
.y12d{bottom:753.939200pt;}
.y12c{bottom:765.219200pt;}
.yd3{bottom:772.123733pt;}
.yfe{bottom:773.649520pt;}
.y11f{bottom:780.370667pt;}
.yd2{bottom:782.523733pt;}
.y3a{bottom:785.230933pt;}
.y76{bottom:787.520000pt;}
.y11e{bottom:790.770667pt;}
.y143{bottom:794.597680pt;}
.yd1{bottom:801.123200pt;}
.yfd{bottom:808.261440pt;}
.y11d{bottom:809.370133pt;}
.yd0{bottom:818.403200pt;}
.yfc{bottom:821.540160pt;}
.y75{bottom:823.256400pt;}
.y83{bottom:825.736533pt;}
.y11c{bottom:826.650133pt;}
.y142{bottom:829.784160pt;}
.ycf{bottom:834.003200pt;}
.yfb{bottom:834.904000pt;}
.y82{bottom:836.136533pt;}
.y11b{bottom:842.250133pt;}
.y141{bottom:843.148000pt;}
.y81{bottom:846.136533pt;}
.y74{bottom:847.272427pt;}
.y25{bottom:860.795867pt;}
.y73{bottom:863.830267pt;}
.y80{bottom:864.536400pt;}
.y24{bottom:871.195867pt;}
.y7f{bottom:874.936400pt;}
.y23{bottom:881.195867pt;}
.y71{bottom:885.670133pt;}
.y140{bottom:890.687520pt;}
.y7e{bottom:895.290267pt;}
.yad{bottom:899.414587pt;}
.y22{bottom:899.597333pt;}
.y6f{bottom:907.590267pt;}
.y21{bottom:909.997333pt;}
.y7d{bottom:911.290267pt;}
.yfa{bottom:913.260053pt;}
.y13f{bottom:920.075200pt;}
.y34{bottom:921.769893pt;}
.y11a{bottom:924.902933pt;}
.y7c{bottom:927.210267pt;}
.yac{bottom:928.004267pt;}
.y6c{bottom:929.430267pt;}
.yce{bottom:930.156267pt;}
.y20{bottom:930.349333pt;}
.yf9{bottom:932.295013pt;}
.y119{bottom:935.302933pt;}
.ycd{bottom:940.556267pt;}
.y1f{bottom:946.349333pt;}
.y6b{bottom:948.363200pt;}
.yf8{bottom:948.776373pt;}
.y33{bottom:949.806293pt;}
.y13e{bottom:952.357547pt;}
.y118{bottom:961.433067pt;}
.y1e{bottom:962.269467pt;}
.y32{bottom:963.170133pt;}
.y6a{bottom:963.483200pt;}
.ycc{bottom:967.480667pt;}
.yf7{bottom:970.056373pt;}
.y98{bottom:970.156133pt;}
.y13d{bottom:971.637227pt;}
.y117{bottom:971.833067pt;}
.ycb{bottom:977.880667pt;}
.y97{bottom:980.556667pt;}
.y13c{bottom:985.001067pt;}
.yf6{bottom:985.899333pt;}
.y116{bottom:992.186667pt;}
.y7{bottom:996.267067pt;}
.yca{bottom:996.479867pt;}
.y13b{bottom:998.364907pt;}
.y96{bottom:1005.436667pt;}
.y6{bottom:1007.147067pt;}
.y115{bottom:1008.186667pt;}
.y13a{bottom:1011.643627pt;}
.yc9{bottom:1013.759867pt;}
.y95{bottom:1016.316667pt;}
.y114{bottom:1024.106667pt;}
.y139{bottom:1025.007467pt;}
.yc8{bottom:1029.360000pt;}
.yf5{bottom:1030.154267pt;}
.y94{bottom:1037.440000pt;}
.y5{bottom:1040.067733pt;}
.y3{bottom:1042.270933pt;}
.y2{bottom:1052.031067pt;}
.y93{bottom:1053.440000pt;}
.y4{bottom:1057.538667pt;}
.y1{bottom:1062.670933pt;}
.yab{bottom:1066.977600pt;}
.y92{bottom:1069.360000pt;}
.yc5{bottom:1069.708933pt;}
.y14e{bottom:1082.528507pt;}
.y79{bottom:1082.533547pt;}
.y14d{bottom:1095.328427pt;}
.y78{bottom:1095.333467pt;}
.h9{height:18.402656pt;}
.hc{height:27.714844pt;}
.hf{height:29.488594pt;}
.h2{height:34.144000pt;}
.h7{height:37.373437pt;}
.hd{height:39.048750pt;}
.h5{height:39.948480pt;}
.h1{height:42.680000pt;}
.ha{height:44.388750pt;}
.h4{height:45.411520pt;}
.h6{height:51.216000pt;}
.h3{height:53.947520pt;}
.h8{height:53.954453pt;}
.he{height:78.400000pt;}
.hb{height:558.640000pt;}
.h0{height:1124.000000pt;}
.w3{width:143.760000pt;}
.w2{width:148.481333pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x10{left:34.693333pt;}
.x12{left:42.640000pt;}
.x4{left:45.877733pt;}
.x9{left:47.528000pt;}
.x11{left:51.437333pt;}
.x13{left:53.037333pt;}
.x14{left:53.962000pt;}
.xc{left:62.844800pt;}
.x8{left:64.204800pt;}
.xe{left:69.755280pt;}
.xa{left:76.915680pt;}
.xd{left:78.499200pt;}
.x16{left:80.000000pt;}
.xb{left:89.617067pt;}
.xf{left:102.323200pt;}
.x15{left:141.642000pt;}
.x1{left:155.691467pt;}
.x17{left:205.677200pt;}
.x5{left:207.037200pt;}
.x6{left:223.677200pt;}
.x7{left:297.034800pt;}
.x19{left:312.893520pt;}
.x18{left:313.914960pt;}
.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; }
  