
    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_2cfca92d31e7a6084c054d3e.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_8f7fe4433fe19a22ae657952.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_0ea3b80da0e25b733e711208.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_b7dcd878f757fac40b7a784f.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_674f80005be8fa112bae0120.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.951172;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);}
.v4{vertical-align:-55.799400px;}
.v2{vertical-align:-52.920000px;}
.v3{vertical-align:-49.680000px;}
.v1{vertical-align:-47.160000px;}
.v5{vertical-align:-9.720000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:9.720000px;}
.ls53{letter-spacing:-2.489760px;}
.ls34{letter-spacing:-2.202480px;}
.ls55{letter-spacing:-2.154600px;}
.ls64{letter-spacing:-2.058840px;}
.ls3b{letter-spacing:-1.867320px;}
.ls51{letter-spacing:-1.771560px;}
.ls56{letter-spacing:-1.436400px;}
.ls24{letter-spacing:-1.404000px;}
.ls46{letter-spacing:-1.305720px;}
.ls5f{letter-spacing:-1.292760px;}
.ls42{letter-spacing:-1.221480px;}
.ls5d{letter-spacing:-1.197000px;}
.ls4b{letter-spacing:-1.137240px;}
.ls57{letter-spacing:-0.972000px;}
.ls43{letter-spacing:-0.926640px;}
.ls50{letter-spacing:-0.884520px;}
.ls37{letter-spacing:-0.861840px;}
.ls1f{letter-spacing:-0.855000px;}
.ls2c{letter-spacing:-0.828000px;}
.ls3d{letter-spacing:-0.813960px;}
.ls26{letter-spacing:-0.792000px;}
.ls62{letter-spacing:-0.766080px;}
.ls49{letter-spacing:-0.758160px;}
.ls36{letter-spacing:-0.718200px;}
.ls30{letter-spacing:-0.612000px;}
.ls5a{letter-spacing:-0.547560px;}
.ls25{letter-spacing:-0.540000px;}
.ls38{letter-spacing:-0.478800px;}
.ls39{letter-spacing:-0.430920px;}
.ls5e{letter-spacing:-0.383040px;}
.ls48{letter-spacing:-0.379080px;}
.ls3c{letter-spacing:-0.335160px;}
.ls22{letter-spacing:-0.324000px;}
.ls32{letter-spacing:-0.287280px;}
.ls3f{letter-spacing:-0.270000px;}
.ls23{letter-spacing:-0.252000px;}
.ls60{letter-spacing:-0.239400px;}
.ls65{letter-spacing:-0.191520px;}
.ls47{letter-spacing:-0.168480px;}
.ls33{letter-spacing:-0.143640px;}
.ls3e{letter-spacing:-0.047880px;}
.ls20{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.047880px;}
.ls1e{letter-spacing:0.095760px;}
.ls12{letter-spacing:0.104040px;}
.ls58{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.113760px;}
.ls5b{letter-spacing:0.159840px;}
.ls4a{letter-spacing:0.168480px;}
.ls54{letter-spacing:0.191520px;}
.ls41{letter-spacing:0.210600px;}
.ls5c{letter-spacing:0.231240px;}
.ls2{letter-spacing:0.252000px;}
.ls13{letter-spacing:0.299520px;}
.ls35{letter-spacing:0.383040px;}
.ls21{letter-spacing:0.450000px;}
.ls63{letter-spacing:0.478800px;}
.ls10{letter-spacing:0.505440px;}
.ls2d{letter-spacing:0.612000px;}
.ls67{letter-spacing:0.622440px;}
.ls18{letter-spacing:0.631800px;}
.ls61{letter-spacing:0.670320px;}
.ls2e{letter-spacing:0.684000px;}
.ls1d{letter-spacing:0.718200px;}
.ls19{letter-spacing:0.756000px;}
.ls5{letter-spacing:0.792000px;}
.lsa{letter-spacing:0.828000px;}
.lse{letter-spacing:0.861840px;}
.ls2a{letter-spacing:0.864000px;}
.ls1c{letter-spacing:0.884520px;}
.ls29{letter-spacing:0.900000px;}
.ls45{letter-spacing:0.926640px;}
.ls15{letter-spacing:0.968760px;}
.ls28{letter-spacing:0.972000px;}
.ls40{letter-spacing:1.010880px;}
.ls2f{letter-spacing:1.044000px;}
.ls1b{letter-spacing:1.053000px;}
.ls31{letter-spacing:1.080000px;}
.ls59{letter-spacing:1.134000px;}
.ls14{letter-spacing:1.137240px;}
.ls27{letter-spacing:1.152000px;}
.ls4e{letter-spacing:1.179360px;}
.lsd{letter-spacing:1.197000px;}
.ls6{letter-spacing:1.224000px;}
.ls11{letter-spacing:1.263600px;}
.ls1{letter-spacing:1.332000px;}
.ls3{letter-spacing:1.440000px;}
.lsf{letter-spacing:1.558440px;}
.ls8{letter-spacing:1.584000px;}
.ls52{letter-spacing:1.675800px;}
.ls0{letter-spacing:1.692000px;}
.ls4c{letter-spacing:1.728000px;}
.ls44{letter-spacing:1.811160px;}
.ls4f{letter-spacing:1.836000px;}
.ls4d{letter-spacing:1.979640px;}
.lsc{letter-spacing:1.980000px;}
.ls2b{letter-spacing:2.016000px;}
.ls4{letter-spacing:2.232000px;}
.lsb{letter-spacing:2.304000px;}
.ls7{letter-spacing:2.592000px;}
.ls1a{letter-spacing:21.744000px;}
.ls66{letter-spacing:30.687120px;}
.ls17{letter-spacing:75.926880px;}
.ls16{letter-spacing:80.727120px;}
.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;}
}
.ws68{word-spacing:-47.880000px;}
.ws2b{word-spacing:-18.738000px;}
.ws28{word-spacing:-18.630000px;}
.ws35{word-spacing:-18.036000px;}
.ws1e{word-spacing:-16.902000px;}
.ws73{word-spacing:-16.665840px;}
.ws1f{word-spacing:-16.632000px;}
.ws34{word-spacing:-15.930000px;}
.ws29{word-spacing:-15.163200px;}
.ws1b{word-spacing:-15.034320px;}
.ws24{word-spacing:-14.994720px;}
.ws1a{word-spacing:-14.986440px;}
.ws1d{word-spacing:-14.938560px;}
.ws15{word-spacing:-14.842800px;}
.ws14{word-spacing:-14.699160px;}
.ws67{word-spacing:-14.603400px;}
.ws19{word-spacing:-14.507640px;}
.ws2a{word-spacing:-14.362920px;}
.ws17{word-spacing:-14.268240px;}
.ws21{word-spacing:-14.194440px;}
.ws2e{word-spacing:-14.152320px;}
.ws18{word-spacing:-14.124600px;}
.ws69{word-spacing:-14.028840px;}
.ws66{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;}
.ws1c{word-spacing:-13.119120px;}
.ws12{word-spacing:-12.852000px;}
.ws16{word-spacing:-12.783960px;}
.ws2c{word-spacing:-12.762360px;}
.wsa{word-spacing:-12.492000px;}
.ws7{word-spacing:-12.420000px;}
.ws13{word-spacing:-12.348000px;}
.ws25{word-spacing:-12.341160px;}
.ws0{word-spacing:-12.330000px;}
.wse{word-spacing:-12.312000px;}
.ws23{word-spacing:-12.256920px;}
.ws11{word-spacing:-12.096000px;}
.ws8{word-spacing:-12.060000px;}
.ws27{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;}
.ws26{word-spacing:-11.583000px;}
.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;}
.ws10{word-spacing:-10.944000px;}
.ws2d{word-spacing:-10.824840px;}
.ws32{word-spacing:-10.820880px;}
.ws38{word-spacing:-10.677240px;}
.wsf{word-spacing:-10.656000px;}
.ws3{word-spacing:-10.548000px;}
.ws4{word-spacing:-10.224000px;}
.ws5{word-spacing:-9.144000px;}
.ws41{word-spacing:-1.584000px;}
.ws44{word-spacing:-1.440000px;}
.ws56{word-spacing:-1.263600px;}
.ws46{word-spacing:-1.152000px;}
.ws60{word-spacing:-1.053000px;}
.ws3f{word-spacing:-0.972000px;}
.ws65{word-spacing:-0.957600px;}
.ws52{word-spacing:-0.926640px;}
.ws40{word-spacing:-0.900000px;}
.ws42{word-spacing:-0.864000px;}
.ws61{word-spacing:-0.718200px;}
.ws51{word-spacing:-0.716040px;}
.ws6e{word-spacing:-0.670320px;}
.ws47{word-spacing:-0.612000px;}
.ws57{word-spacing:-0.505440px;}
.ws64{word-spacing:-0.478800px;}
.ws48{word-spacing:-0.383040px;}
.ws45{word-spacing:-0.324000px;}
.ws5e{word-spacing:-0.294840px;}
.ws50{word-spacing:-0.210600px;}
.ws5a{word-spacing:-0.191520px;}
.ws55{word-spacing:-0.168480px;}
.ws5c{word-spacing:-0.108000px;}
.ws63{word-spacing:-0.047880px;}
.ws4f{word-spacing:-0.042120px;}
.ws3a{word-spacing:0.000000px;}
.ws62{word-spacing:0.047880px;}
.ws5d{word-spacing:0.084240px;}
.ws54{word-spacing:0.168480px;}
.ws71{word-spacing:0.191520px;}
.ws4c{word-spacing:0.239400px;}
.ws3b{word-spacing:0.252000px;}
.ws6a{word-spacing:0.287280px;}
.ws3d{word-spacing:0.324000px;}
.ws4b{word-spacing:0.335160px;}
.ws6b{word-spacing:0.383040px;}
.ws5f{word-spacing:0.421200px;}
.ws49{word-spacing:0.430920px;}
.ws4a{word-spacing:0.478800px;}
.ws3c{word-spacing:0.540000px;}
.ws6d{word-spacing:0.574560px;}
.ws4d{word-spacing:0.622440px;}
.ws6f{word-spacing:0.766080px;}
.ws3e{word-spacing:0.792000px;}
.ws4e{word-spacing:0.813960px;}
.ws43{word-spacing:0.828000px;}
.ws6c{word-spacing:1.292760px;}
.ws53{word-spacing:1.305720px;}
.ws58{word-spacing:1.771560px;}
.ws72{word-spacing:1.915200px;}
.ws70{word-spacing:2.058840px;}
.ws5b{word-spacing:2.154600px;}
.ws59{word-spacing:2.489760px;}
._5{margin-left:-5.938920px;}
._6{margin-left:-4.831560px;}
._3{margin-left:-3.196440px;}
._2{margin-left:-1.980000px;}
._1{width:1.125000px;}
._0{width:2.610000px;}
._8{width:3.774600px;}
._7{width:4.928040px;}
._9{width:312.426000px;}
._4{width:1854.070920px;}
.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);}
.fs6{font-size:29.880000px;}
.fs8{font-size:33.120000px;}
.fs1{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fsa{font-size:42.840000px;}
.fs0{font-size:45.000000px;}
.fs3{font-size:47.880000px;}
.fs7{font-size:51.120000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:56.880000px;}
.fs9{font-size:60.120000px;}
.y0{bottom:0.000000px;}
.y63{bottom:25.800150px;}
.y6f{bottom:40.201050px;}
.y10f{bottom:44.501550px;}
.yd6{bottom:51.419850px;}
.y10e{bottom:56.201550px;}
.y5a{bottom:62.310600px;}
.yd5{bottom:63.119400px;}
.y10d{bottom:67.451550px;}
.y59{bottom:71.850600px;}
.y10c{bottom:88.151550px;}
.y58{bottom:89.040600px;}
.ye6{bottom:90.649080px;}
.yba{bottom:93.409650px;}
.y10b{bottom:99.851550px;}
.y57{bottom:102.450600px;}
.yb9{bottom:105.109650px;}
.y56{bottom:111.447990px;}
.y10a{bottom:121.855950px;}
.ye5{bottom:123.710220px;}
.y120{bottom:125.598210px;}
.yb8{bottom:126.034050px;}
.ya8{bottom:131.038380px;}
.y55{bottom:136.650600px;}
.y109{bottom:139.855950px;}
.yb7{bottom:145.474050px;}
.y54{bottom:148.980600px;}
.y108{bottom:157.765950px;}
.y11f{bottom:158.659350px;}
.y53{bottom:162.390600px;}
.yb6{bottom:163.024050px;}
.ya7{bottom:163.285560px;}
.ye4{bottom:163.917450px;}
.y52{bottom:173.547990px;}
.ya6{bottom:186.327810px;}
.y94{bottom:186.504150px;}
.y51{bottom:197.310600px;}
.y93{bottom:198.205950px;}
.y50{bottom:205.050600px;}
.ya5{bottom:206.940150px;}
.y107{bottom:206.973600px;}
.yb5{bottom:211.338450px;}
.y106{bottom:218.673600px;}
.y4f{bottom:222.330600px;}
.yb4{bottom:223.038450px;}
.y92{bottom:227.599950px;}
.y4e{bottom:237.540600px;}
.y91{bottom:239.299950px;}
.y11e{bottom:245.312940px;}
.y105{bottom:248.070000px;}
.ye3{bottom:250.567680px;}
.y4d{bottom:251.130600px;}
.yb3{bottom:253.328250px;}
.y104{bottom:259.770000px;}
.y90{bottom:260.224950px;}
.yb2{bottom:265.028250px;}
.y4c{bottom:268.410600px;}
.y6a{bottom:275.294850px;}
.y11d{bottom:278.374080px;}
.y8f{bottom:279.664950px;}
.y103{bottom:282.667950px;}
.y4b{bottom:283.620600px;}
.ye2{bottom:283.628820px;}
.yb1{bottom:285.952650px;}
.y4a{bottom:297.210600px;}
.y8e{bottom:297.215100px;}
.ya4{bottom:298.108350px;}
.y68{bottom:299.954850px;}
.y102{bottom:300.667950px;}
.yb0{bottom:305.392650px;}
.y49{bottom:312.870600px;}
.y101{bottom:318.577950px;}
.y11c{bottom:319.467090px;}
.yaf{bottom:322.942800px;}
.ye1{bottom:323.836050px;}
.y48{bottom:326.460600px;}
.y47{bottom:341.760600px;}
.y8d{bottom:352.504800px;}
.y62{bottom:358.431600px;}
.y100{bottom:366.892200px;}
.yae{bottom:372.150450px;}
.y61{bottom:372.471600px;}
.y8c{bottom:374.469750px;}
.yff{bottom:378.592200px;}
.yad{bottom:383.850450px;}
.y60{bottom:384.531600px;}
.y8b{bottom:390.129750px;}
.y5f{bottom:399.471600px;}
.y8a{bottom:403.804800px;}
.y1c{bottom:404.533200px;}
.y11b{bottom:407.494470px;}
.yfe{bottom:407.988600px;}
.y2d{bottom:408.929550px;}
.ye0{bottom:410.481060px;}
.y5e{bottom:411.531600px;}
.yac{bottom:413.246850px;}
.y1b{bottom:416.237550px;}
.yfd{bottom:419.688600px;}
.yab{bottom:424.946850px;}
.y89{bottom:425.769750px;}
.y5d{bottom:426.471600px;}
.y11a{bottom:431.434470px;}
.y5c{bottom:438.531600px;}
.y2c{bottom:441.094800px;}
.yfc{bottom:442.586400px;}
.ydf{bottom:443.542200px;}
.y88{bottom:443.589750px;}
.y1a{bottom:445.631550px;}
.yd4{bottom:447.095400px;}
.y119{bottom:449.257800px;}
.y87{bottom:455.289900px;}
.y19{bottom:457.331550px;}
.y5b{bottom:458.991630px;}
.yfb{bottom:460.586400px;}
.yd3{bottom:465.041400px;}
.yfa{bottom:478.496400px;}
.y118{bottom:479.389950px;}
.y46{bottom:480.078900px;}
.y18{bottom:480.227550px;}
.yd2{bottom:482.861400px;}
.yde{bottom:483.749430px;}
.y86{bottom:484.899750px;}
.y45{bottom:492.135750px;}
.y85{bottom:496.599750px;}
.y17{bottom:498.227550px;}
.ya3{bottom:506.758770px;}
.y16{bottom:516.137400px;}
.y2b{bottom:517.032480px;}
.yd1{bottom:519.419850px;}
.y84{bottom:519.497550px;}
.ya2{bottom:524.127240px;}
.y44{bottom:528.705150px;}
.yd0{bottom:531.124200px;}
.y83{bottom:537.497550px;}
.y82{bottom:555.407550px;}
.ya1{bottom:556.290630px;}
.ydd{bottom:560.022270px;}
.ycf{bottom:560.518200px;}
.y43{bottom:569.787600px;}
.yce{bottom:572.218200px;}
.ydc{bottom:583.962270px;}
.y42{bottom:586.887600px;}
.ycd{bottom:595.114200px;}
.y41{bottom:598.947600px;}
.ydb{bottom:601.785600px;}
.y145{bottom:605.338950px;}
.ycc{bottom:613.114200px;}
.y40{bottom:616.947600px;}
.y3f{bottom:628.917600px;}
.y144{bottom:630.092910px;}
.ycb{bottom:631.024200px;}
.yda{bottom:631.917600px;}
.y3e{bottom:640.887600px;}
.y12e{bottom:642.020400px;}
.yf9{bottom:642.952950px;}
.y117{bottom:648.242550px;}
.y143{bottom:651.603000px;}
.y3d{bottom:652.947600px;}
.y12d{bottom:653.720400px;}
.yf8{bottom:654.652950px;}
.y142{bottom:670.144530px;}
.y3c{bottom:671.801340px;}
.yca{bottom:679.338600px;}
.y3b{bottom:683.773950px;}
.y12c{bottom:684.010350px;}
.yf7{bottom:684.942600px;}
.y141{bottom:687.513000px;}
.yc9{bottom:691.042800px;}
.y12b{bottom:695.710350px;}
.y15{bottom:695.781600px;}
.y3a{bottom:695.830800px;}
.yf6{bottom:696.642600px;}
.y14{bottom:707.485950px;}
.y39{bottom:713.608800px;}
.yf5{bottom:717.567000px;}
.yd9{bottom:717.682050px;}
.y12a{bottom:717.714750px;}
.yc8{bottom:720.436800px;}
.y116{bottom:723.287010px;}
.yc7{bottom:732.136800px;}
.y38{bottom:732.552000px;}
.y129{bottom:735.714750px;}
.y13{bottom:736.879950px;}
.yf4{bottom:737.007000px;}
.y67{bottom:739.080000px;}
.y140{bottom:739.609560px;}
.y37{bottom:744.522150px;}
.y12{bottom:748.579950px;}
.yd8{bottom:750.743190px;}
.y128{bottom:753.624600px;}
.yf3{bottom:754.557150px;}
.y13f{bottom:754.643880px;}
.yc6{bottom:755.032800px;}
.y115{bottom:755.450400px;}
.y2a{bottom:755.570640px;}
.y36{bottom:756.583950px;}
.y11{bottom:771.475950px;}
.yc5{bottom:773.032800px;}
.y35{bottom:774.358590px;}
.y10{bottom:789.475950px;}
.y29{bottom:790.307580px;}
.yc4{bottom:790.942800px;}
.yd7{bottom:791.836200px;}
.y34{bottom:792.228000px;}
.yf{bottom:807.385950px;}
.y33{bottom:810.907200px;}
.y28{bottom:810.919920px;}
.y13e{bottom:811.944270px;}
.y32{bottom:823.777200px;}
.y13d{bottom:833.358600px;}
.y31{bottom:841.777200px;}
.y30{bottom:858.877200px;}
.y81{bottom:861.147750px;}
.y27{bottom:862.546530px;}
.y114{bottom:867.125400px;}
.y2f{bottom:870.937200px;}
.y80{bottom:872.847750px;}
.y7f{bottom:884.097750px;}
.y26{bottom:884.236170px;}
.y7e{bottom:896.247750px;}
.y127{bottom:903.786600px;}
.y7d{bottom:904.797750px;}
.y25{bottom:905.291400px;}
.y2e{bottom:907.506600px;}
.y6e{bottom:914.670000px;}
.y126{bottom:915.486600px;}
.y7c{bottom:916.497750px;}
.y24{bottom:926.256660px;}
.ya0{bottom:928.832940px;}
.y7b{bottom:937.422150px;}
.y125{bottom:945.776400px;}
.y23{bottom:947.228100px;}
.y13c{bottom:954.034620px;}
.y6d{bottom:954.871050px;}
.y7a{bottom:956.862150px;}
.y124{bottom:957.476400px;}
.y9f{bottom:960.385860px;}
.y22{bottom:968.283330px;}
.ye{bottom:970.948800px;}
.y13b{bottom:971.857950px;}
.y79{bottom:974.412300px;}
.y9e{bottom:975.420180px;}
.y123{bottom:978.400800px;}
.y6c{bottom:982.421520px;}
.yd{bottom:982.653000px;}
.y21{bottom:983.221890px;}
.y122{bottom:997.840800px;}
.y20{bottom:998.256210px;}
.y6b{bottom:1000.964850px;}
.y13a{bottom:1001.369880px;}
.yc{bottom:1012.047000px;}
.y121{bottom:1015.390800px;}
.y139{bottom:1016.404200px;}
.y1f{bottom:1016.438640px;}
.yb{bottom:1023.747000px;}
.y69{bottom:1025.624850px;}
.y9d{bottom:1027.573470px;}
.ya{bottom:1046.643000px;}
.y9c{bottom:1049.442660px;}
.y66{bottom:1050.194850px;}
.y113{bottom:1056.526320px;}
.yc3{bottom:1061.646150px;}
.y136{bottom:1062.045150px;}
.y9{bottom:1064.643000px;}
.y1e{bottom:1068.532080px;}
.y9b{bottom:1071.311850px;}
.y65{bottom:1071.494550px;}
.yc2{bottom:1073.346150px;}
.y135{bottom:1073.745150px;}
.y8{bottom:1082.553150px;}
.y1d{bottom:1083.566400px;}
.yc1{bottom:1084.596150px;}
.y134{bottom:1084.995150px;}
.y64{bottom:1088.504550px;}
.y112{bottom:1091.263260px;}
.yf2{bottom:1091.439750px;}
.y78{bottom:1091.518500px;}
.y9a{bottom:1093.276800px;}
.yc0{bottom:1096.746150px;}
.yf1{bottom:1103.139750px;}
.y77{bottom:1103.218350px;}
.ybf{bottom:1105.293000px;}
.y133{bottom:1105.695150px;}
.y111{bottom:1111.875600px;}
.y99{bottom:1115.145990px;}
.ybe{bottom:1116.993000px;}
.y132{bottom:1117.395150px;}
.y7{bottom:1120.800450px;}
.yf0{bottom:1132.536000px;}
.y76{bottom:1132.614750px;}
.y6{bottom:1133.040450px;}
.ybd{bottom:1138.251000px;}
.y131{bottom:1138.319400px;}
.y98{bottom:1139.085990px;}
.y138{bottom:1143.141660px;}
.yef{bottom:1144.236000px;}
.y75{bottom:1144.314750px;}
.ybc{bottom:1150.587150px;}
.y97{bottom:1156.909320px;}
.y130{bottom:1157.759400px;}
.ye8{bottom:1158.210000px;}
.ybb{bottom:1158.957150px;}
.yee{bottom:1165.160400px;}
.y74{bottom:1165.239150px;}
.y5{bottom:1170.076200px;}
.y3{bottom:1172.554800px;}
.y12f{bottom:1175.309400px;}
.ye7{bottom:1176.030000px;}
.y137{bottom:1176.202800px;}
.ye9{bottom:1176.923400px;}
.y2{bottom:1183.534950px;}
.yed{bottom:1184.600400px;}
.y73{bottom:1184.679150px;}
.y96{bottom:1188.522090px;}
.y4{bottom:1189.731000px;}
.y1{bottom:1195.504800px;}
.yec{bottom:1202.150550px;}
.y72{bottom:1202.229150px;}
.y110{bottom:1203.043950px;}
.y95{bottom:1204.717500px;}
.yaa{bottom:1217.844570px;}
.yeb{bottom:1217.848830px;}
.y71{bottom:1217.850240px;}
.ya9{bottom:1232.244480px;}
.yea{bottom:1232.248740px;}
.y70{bottom:1232.250150px;}
.h7{height:20.702988px;}
.ha{height:22.947891px;}
.hc{height:24.943359px;}
.hf{height:31.179199px;}
.h8{height:33.174668px;}
.h9{height:35.419570px;}
.h2{height:38.412000px;}
.hb{height:41.655410px;}
.h13{height:42.045117px;}
.h11{height:43.929844px;}
.h6{height:44.942040px;}
.h10{height:44.955960px;}
.h1{height:48.015000px;}
.hd{height:49.937344px;}
.h4{height:51.087960px;}
.h5{height:57.618000px;}
.h3{height:60.690960px;}
.h12{height:88.201500px;}
.he{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;}
.x13{left:39.030000px;}
.x15{left:47.970000px;}
.x10{left:50.333550px;}
.x4{left:51.612450px;}
.xa{left:53.469000px;}
.x14{left:57.867000px;}
.x16{left:60.707250px;}
.xb{left:72.189000px;}
.x11{left:78.413550px;}
.xc{left:86.530140px;}
.xf{left:88.223700px;}
.x18{left:90.000000px;}
.x12{left:97.775430px;}
.xd{left:100.819200px;}
.xe{left:115.070400px;}
.x17{left:159.347250px;}
.x1{left:175.152900px;}
.x19{left:231.386850px;}
.x5{left:232.916850px;}
.x6{left:251.636850px;}
.x1b{left:324.750000px;}
.x1a{left:326.280000px;}
.x7{left:334.164150px;}
.x9{left:337.838940px;}
.x8{left:352.023390px;}
.x1c{left:353.154330px;}
.x3{left:658.482300px;}
.x2{left:786.238500px;}
@media print{
.v4{vertical-align:-49.599467pt;}
.v2{vertical-align:-47.040000pt;}
.v3{vertical-align:-44.160000pt;}
.v1{vertical-align:-41.920000pt;}
.v5{vertical-align:-8.640000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.640000pt;}
.ls53{letter-spacing:-2.213120pt;}
.ls34{letter-spacing:-1.957760pt;}
.ls55{letter-spacing:-1.915200pt;}
.ls64{letter-spacing:-1.830080pt;}
.ls3b{letter-spacing:-1.659840pt;}
.ls51{letter-spacing:-1.574720pt;}
.ls56{letter-spacing:-1.276800pt;}
.ls24{letter-spacing:-1.248000pt;}
.ls46{letter-spacing:-1.160640pt;}
.ls5f{letter-spacing:-1.149120pt;}
.ls42{letter-spacing:-1.085760pt;}
.ls5d{letter-spacing:-1.064000pt;}
.ls4b{letter-spacing:-1.010880pt;}
.ls57{letter-spacing:-0.864000pt;}
.ls43{letter-spacing:-0.823680pt;}
.ls50{letter-spacing:-0.786240pt;}
.ls37{letter-spacing:-0.766080pt;}
.ls1f{letter-spacing:-0.760000pt;}
.ls2c{letter-spacing:-0.736000pt;}
.ls3d{letter-spacing:-0.723520pt;}
.ls26{letter-spacing:-0.704000pt;}
.ls62{letter-spacing:-0.680960pt;}
.ls49{letter-spacing:-0.673920pt;}
.ls36{letter-spacing:-0.638400pt;}
.ls30{letter-spacing:-0.544000pt;}
.ls5a{letter-spacing:-0.486720pt;}
.ls25{letter-spacing:-0.480000pt;}
.ls38{letter-spacing:-0.425600pt;}
.ls39{letter-spacing:-0.383040pt;}
.ls5e{letter-spacing:-0.340480pt;}
.ls48{letter-spacing:-0.336960pt;}
.ls3c{letter-spacing:-0.297920pt;}
.ls22{letter-spacing:-0.288000pt;}
.ls32{letter-spacing:-0.255360pt;}
.ls3f{letter-spacing:-0.240000pt;}
.ls23{letter-spacing:-0.224000pt;}
.ls60{letter-spacing:-0.212800pt;}
.ls65{letter-spacing:-0.170240pt;}
.ls47{letter-spacing:-0.149760pt;}
.ls33{letter-spacing:-0.127680pt;}
.ls3e{letter-spacing:-0.042560pt;}
.ls20{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.042560pt;}
.ls1e{letter-spacing:0.085120pt;}
.ls12{letter-spacing:0.092480pt;}
.ls58{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.101120pt;}
.ls5b{letter-spacing:0.142080pt;}
.ls4a{letter-spacing:0.149760pt;}
.ls54{letter-spacing:0.170240pt;}
.ls41{letter-spacing:0.187200pt;}
.ls5c{letter-spacing:0.205547pt;}
.ls2{letter-spacing:0.224000pt;}
.ls13{letter-spacing:0.266240pt;}
.ls35{letter-spacing:0.340480pt;}
.ls21{letter-spacing:0.400000pt;}
.ls63{letter-spacing:0.425600pt;}
.ls10{letter-spacing:0.449280pt;}
.ls2d{letter-spacing:0.544000pt;}
.ls67{letter-spacing:0.553280pt;}
.ls18{letter-spacing:0.561600pt;}
.ls61{letter-spacing:0.595840pt;}
.ls2e{letter-spacing:0.608000pt;}
.ls1d{letter-spacing:0.638400pt;}
.ls19{letter-spacing:0.672000pt;}
.ls5{letter-spacing:0.704000pt;}
.lsa{letter-spacing:0.736000pt;}
.lse{letter-spacing:0.766080pt;}
.ls2a{letter-spacing:0.768000pt;}
.ls1c{letter-spacing:0.786240pt;}
.ls29{letter-spacing:0.800000pt;}
.ls45{letter-spacing:0.823680pt;}
.ls15{letter-spacing:0.861120pt;}
.ls28{letter-spacing:0.864000pt;}
.ls40{letter-spacing:0.898560pt;}
.ls2f{letter-spacing:0.928000pt;}
.ls1b{letter-spacing:0.936000pt;}
.ls31{letter-spacing:0.960000pt;}
.ls59{letter-spacing:1.008000pt;}
.ls14{letter-spacing:1.010880pt;}
.ls27{letter-spacing:1.024000pt;}
.ls4e{letter-spacing:1.048320pt;}
.lsd{letter-spacing:1.064000pt;}
.ls6{letter-spacing:1.088000pt;}
.ls11{letter-spacing:1.123200pt;}
.ls1{letter-spacing:1.184000pt;}
.ls3{letter-spacing:1.280000pt;}
.lsf{letter-spacing:1.385280pt;}
.ls8{letter-spacing:1.408000pt;}
.ls52{letter-spacing:1.489600pt;}
.ls0{letter-spacing:1.504000pt;}
.ls4c{letter-spacing:1.536000pt;}
.ls44{letter-spacing:1.609920pt;}
.ls4f{letter-spacing:1.632000pt;}
.ls4d{letter-spacing:1.759680pt;}
.lsc{letter-spacing:1.760000pt;}
.ls2b{letter-spacing:1.792000pt;}
.ls4{letter-spacing:1.984000pt;}
.lsb{letter-spacing:2.048000pt;}
.ls7{letter-spacing:2.304000pt;}
.ls1a{letter-spacing:19.328000pt;}
.ls66{letter-spacing:27.277440pt;}
.ls17{letter-spacing:67.490560pt;}
.ls16{letter-spacing:71.757440pt;}
.ws68{word-spacing:-42.560000pt;}
.ws2b{word-spacing:-16.656000pt;}
.ws28{word-spacing:-16.560000pt;}
.ws35{word-spacing:-16.032000pt;}
.ws1e{word-spacing:-15.024000pt;}
.ws73{word-spacing:-14.814080pt;}
.ws1f{word-spacing:-14.784000pt;}
.ws34{word-spacing:-14.160000pt;}
.ws29{word-spacing:-13.478400pt;}
.ws1b{word-spacing:-13.363840pt;}
.ws24{word-spacing:-13.328640pt;}
.ws1a{word-spacing:-13.321280pt;}
.ws1d{word-spacing:-13.278720pt;}
.ws15{word-spacing:-13.193600pt;}
.ws14{word-spacing:-13.065920pt;}
.ws67{word-spacing:-12.980800pt;}
.ws19{word-spacing:-12.895680pt;}
.ws2a{word-spacing:-12.767040pt;}
.ws17{word-spacing:-12.682880pt;}
.ws21{word-spacing:-12.617280pt;}
.ws2e{word-spacing:-12.579840pt;}
.ws18{word-spacing:-12.555200pt;}
.ws69{word-spacing:-12.470080pt;}
.ws66{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;}
.ws1c{word-spacing:-11.661440pt;}
.ws12{word-spacing:-11.424000pt;}
.ws16{word-spacing:-11.363520pt;}
.ws2c{word-spacing:-11.344320pt;}
.wsa{word-spacing:-11.104000pt;}
.ws7{word-spacing:-11.040000pt;}
.ws13{word-spacing:-10.976000pt;}
.ws25{word-spacing:-10.969920pt;}
.ws0{word-spacing:-10.960000pt;}
.wse{word-spacing:-10.944000pt;}
.ws23{word-spacing:-10.895040pt;}
.ws11{word-spacing:-10.752000pt;}
.ws8{word-spacing:-10.720000pt;}
.ws27{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;}
.ws26{word-spacing:-10.296000pt;}
.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;}
.ws10{word-spacing:-9.728000pt;}
.ws2d{word-spacing:-9.622080pt;}
.ws32{word-spacing:-9.618560pt;}
.ws38{word-spacing:-9.490880pt;}
.wsf{word-spacing:-9.472000pt;}
.ws3{word-spacing:-9.376000pt;}
.ws4{word-spacing:-9.088000pt;}
.ws5{word-spacing:-8.128000pt;}
.ws41{word-spacing:-1.408000pt;}
.ws44{word-spacing:-1.280000pt;}
.ws56{word-spacing:-1.123200pt;}
.ws46{word-spacing:-1.024000pt;}
.ws60{word-spacing:-0.936000pt;}
.ws3f{word-spacing:-0.864000pt;}
.ws65{word-spacing:-0.851200pt;}
.ws52{word-spacing:-0.823680pt;}
.ws40{word-spacing:-0.800000pt;}
.ws42{word-spacing:-0.768000pt;}
.ws61{word-spacing:-0.638400pt;}
.ws51{word-spacing:-0.636480pt;}
.ws6e{word-spacing:-0.595840pt;}
.ws47{word-spacing:-0.544000pt;}
.ws57{word-spacing:-0.449280pt;}
.ws64{word-spacing:-0.425600pt;}
.ws48{word-spacing:-0.340480pt;}
.ws45{word-spacing:-0.288000pt;}
.ws5e{word-spacing:-0.262080pt;}
.ws50{word-spacing:-0.187200pt;}
.ws5a{word-spacing:-0.170240pt;}
.ws55{word-spacing:-0.149760pt;}
.ws5c{word-spacing:-0.096000pt;}
.ws63{word-spacing:-0.042560pt;}
.ws4f{word-spacing:-0.037440pt;}
.ws3a{word-spacing:0.000000pt;}
.ws62{word-spacing:0.042560pt;}
.ws5d{word-spacing:0.074880pt;}
.ws54{word-spacing:0.149760pt;}
.ws71{word-spacing:0.170240pt;}
.ws4c{word-spacing:0.212800pt;}
.ws3b{word-spacing:0.224000pt;}
.ws6a{word-spacing:0.255360pt;}
.ws3d{word-spacing:0.288000pt;}
.ws4b{word-spacing:0.297920pt;}
.ws6b{word-spacing:0.340480pt;}
.ws5f{word-spacing:0.374400pt;}
.ws49{word-spacing:0.383040pt;}
.ws4a{word-spacing:0.425600pt;}
.ws3c{word-spacing:0.480000pt;}
.ws6d{word-spacing:0.510720pt;}
.ws4d{word-spacing:0.553280pt;}
.ws6f{word-spacing:0.680960pt;}
.ws3e{word-spacing:0.704000pt;}
.ws4e{word-spacing:0.723520pt;}
.ws43{word-spacing:0.736000pt;}
.ws6c{word-spacing:1.149120pt;}
.ws53{word-spacing:1.160640pt;}
.ws58{word-spacing:1.574720pt;}
.ws72{word-spacing:1.702400pt;}
.ws70{word-spacing:1.830080pt;}
.ws5b{word-spacing:1.915200pt;}
.ws59{word-spacing:2.213120pt;}
._5{margin-left:-5.279040pt;}
._6{margin-left:-4.294720pt;}
._3{margin-left:-2.841280pt;}
._2{margin-left:-1.760000pt;}
._1{width:1.000000pt;}
._0{width:2.320000pt;}
._8{width:3.355200pt;}
._7{width:4.380480pt;}
._9{width:277.712000pt;}
._4{width:1648.063040pt;}
.fs6{font-size:26.560000pt;}
.fs8{font-size:29.440000pt;}
.fs1{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fsa{font-size:38.080000pt;}
.fs0{font-size:40.000000pt;}
.fs3{font-size:42.560000pt;}
.fs7{font-size:45.440000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:50.560000pt;}
.fs9{font-size:53.440000pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:22.933467pt;}
.y6f{bottom:35.734267pt;}
.y10f{bottom:39.556933pt;}
.yd6{bottom:45.706533pt;}
.y10e{bottom:49.956933pt;}
.y5a{bottom:55.387200pt;}
.yd5{bottom:56.106133pt;}
.y10d{bottom:59.956933pt;}
.y59{bottom:63.867200pt;}
.y10c{bottom:78.356933pt;}
.y58{bottom:79.147200pt;}
.ye6{bottom:80.576960pt;}
.yba{bottom:83.030800pt;}
.y10b{bottom:88.756933pt;}
.y57{bottom:91.067200pt;}
.yb9{bottom:93.430800pt;}
.y56{bottom:99.064880pt;}
.y10a{bottom:108.316400pt;}
.ye5{bottom:109.964640pt;}
.y120{bottom:111.642853pt;}
.yb8{bottom:112.030267pt;}
.ya8{bottom:116.478560pt;}
.y55{bottom:121.467200pt;}
.y109{bottom:124.316400pt;}
.yb7{bottom:129.310267pt;}
.y54{bottom:132.427200pt;}
.y108{bottom:140.236400pt;}
.y11f{bottom:141.030533pt;}
.y53{bottom:144.347200pt;}
.yb6{bottom:144.910267pt;}
.ya7{bottom:145.142720pt;}
.ye4{bottom:145.704400pt;}
.y52{bottom:154.264880pt;}
.ya6{bottom:165.624720pt;}
.y94{bottom:165.781467pt;}
.y51{bottom:175.387200pt;}
.y93{bottom:176.183067pt;}
.y50{bottom:182.267200pt;}
.ya5{bottom:183.946800pt;}
.y107{bottom:183.976533pt;}
.yb5{bottom:187.856400pt;}
.y106{bottom:194.376533pt;}
.y4f{bottom:197.627200pt;}
.yb4{bottom:198.256400pt;}
.y92{bottom:202.311067pt;}
.y4e{bottom:211.147200pt;}
.y91{bottom:212.711067pt;}
.y11e{bottom:218.055947pt;}
.y105{bottom:220.506667pt;}
.ye3{bottom:222.726827pt;}
.y4d{bottom:223.227200pt;}
.yb3{bottom:225.180667pt;}
.y104{bottom:230.906667pt;}
.y90{bottom:231.311067pt;}
.yb2{bottom:235.580667pt;}
.y4c{bottom:238.587200pt;}
.y6a{bottom:244.706533pt;}
.y11d{bottom:247.443627pt;}
.y8f{bottom:248.591067pt;}
.y103{bottom:251.260400pt;}
.y4b{bottom:252.107200pt;}
.ye2{bottom:252.114507pt;}
.yb1{bottom:254.180133pt;}
.y4a{bottom:264.187200pt;}
.y8e{bottom:264.191200pt;}
.ya4{bottom:264.985200pt;}
.y68{bottom:266.626533pt;}
.y102{bottom:267.260400pt;}
.yb0{bottom:271.460133pt;}
.y49{bottom:278.107200pt;}
.y101{bottom:283.180400pt;}
.y11c{bottom:283.970747pt;}
.yaf{bottom:287.060267pt;}
.ye1{bottom:287.854267pt;}
.y48{bottom:290.187200pt;}
.y47{bottom:303.787200pt;}
.y8d{bottom:313.337600pt;}
.y62{bottom:318.605867pt;}
.y100{bottom:326.126400pt;}
.yae{bottom:330.800400pt;}
.y61{bottom:331.085867pt;}
.y8c{bottom:332.862000pt;}
.yff{bottom:336.526400pt;}
.yad{bottom:341.200400pt;}
.y60{bottom:341.805867pt;}
.y8b{bottom:346.782000pt;}
.y5f{bottom:355.085867pt;}
.y8a{bottom:358.937600pt;}
.y1c{bottom:359.585067pt;}
.y11b{bottom:362.217307pt;}
.yfe{bottom:362.656533pt;}
.y2d{bottom:363.492933pt;}
.ye0{bottom:364.872053pt;}
.y5e{bottom:365.805867pt;}
.yac{bottom:367.330533pt;}
.y1b{bottom:369.988933pt;}
.yfd{bottom:373.056533pt;}
.yab{bottom:377.730533pt;}
.y89{bottom:378.462000pt;}
.y5d{bottom:379.085867pt;}
.y11a{bottom:383.497307pt;}
.y5c{bottom:389.805867pt;}
.y2c{bottom:392.084267pt;}
.yfc{bottom:393.410133pt;}
.ydf{bottom:394.259733pt;}
.y88{bottom:394.302000pt;}
.y1a{bottom:396.116933pt;}
.yd4{bottom:397.418133pt;}
.y119{bottom:399.340267pt;}
.y87{bottom:404.702133pt;}
.y19{bottom:406.516933pt;}
.y5b{bottom:407.992560pt;}
.yfb{bottom:409.410133pt;}
.yd3{bottom:413.370133pt;}
.yfa{bottom:425.330133pt;}
.y118{bottom:426.124400pt;}
.y46{bottom:426.736800pt;}
.y18{bottom:426.868933pt;}
.yd2{bottom:429.210133pt;}
.yde{bottom:429.999493pt;}
.y86{bottom:431.022000pt;}
.y45{bottom:437.454000pt;}
.y85{bottom:441.422000pt;}
.y17{bottom:442.868933pt;}
.ya3{bottom:450.452240pt;}
.y16{bottom:458.788800pt;}
.y2b{bottom:459.584427pt;}
.yd1{bottom:461.706533pt;}
.y84{bottom:461.775600pt;}
.ya2{bottom:465.890880pt;}
.y44{bottom:469.960133pt;}
.yd0{bottom:472.110400pt;}
.y83{bottom:477.775600pt;}
.y82{bottom:493.695600pt;}
.ya1{bottom:494.480560pt;}
.ydd{bottom:497.797573pt;}
.ycf{bottom:498.238400pt;}
.y43{bottom:506.477867pt;}
.yce{bottom:508.638400pt;}
.ydc{bottom:519.077573pt;}
.y42{bottom:521.677867pt;}
.ycd{bottom:528.990400pt;}
.y41{bottom:532.397867pt;}
.ydb{bottom:534.920533pt;}
.y145{bottom:538.079067pt;}
.ycc{bottom:544.990400pt;}
.y40{bottom:548.397867pt;}
.y3f{bottom:559.037867pt;}
.y144{bottom:560.082587pt;}
.ycb{bottom:560.910400pt;}
.yda{bottom:561.704533pt;}
.y3e{bottom:569.677867pt;}
.y12e{bottom:570.684800pt;}
.yf9{bottom:571.513733pt;}
.y117{bottom:576.215600pt;}
.y143{bottom:579.202667pt;}
.y3d{bottom:580.397867pt;}
.y12d{bottom:581.084800pt;}
.yf8{bottom:581.913733pt;}
.y142{bottom:595.684027pt;}
.y3c{bottom:597.156747pt;}
.yca{bottom:603.856533pt;}
.y3b{bottom:607.799067pt;}
.y12c{bottom:608.009200pt;}
.yf7{bottom:608.837867pt;}
.y141{bottom:611.122667pt;}
.yc9{bottom:614.260267pt;}
.y12b{bottom:618.409200pt;}
.y15{bottom:618.472533pt;}
.y3a{bottom:618.516267pt;}
.yf6{bottom:619.237867pt;}
.y14{bottom:628.876400pt;}
.y39{bottom:634.318933pt;}
.yf5{bottom:637.837333pt;}
.yd9{bottom:637.939600pt;}
.y12a{bottom:637.968667pt;}
.yc8{bottom:640.388267pt;}
.y116{bottom:642.921787pt;}
.yc7{bottom:650.788267pt;}
.y38{bottom:651.157333pt;}
.y129{bottom:653.968667pt;}
.y13{bottom:655.004400pt;}
.yf4{bottom:655.117333pt;}
.y67{bottom:656.960000pt;}
.y140{bottom:657.430720pt;}
.y37{bottom:661.797467pt;}
.y12{bottom:665.404400pt;}
.yd8{bottom:667.327280pt;}
.y128{bottom:669.888533pt;}
.yf3{bottom:670.717467pt;}
.y13f{bottom:670.794560pt;}
.yc6{bottom:671.140267pt;}
.y115{bottom:671.511467pt;}
.y2a{bottom:671.618347pt;}
.y36{bottom:672.519067pt;}
.y11{bottom:685.756400pt;}
.yc5{bottom:687.140267pt;}
.y35{bottom:688.318747pt;}
.y10{bottom:701.756400pt;}
.y29{bottom:702.495627pt;}
.yc4{bottom:703.060267pt;}
.yd7{bottom:703.854400pt;}
.y34{bottom:704.202667pt;}
.yf{bottom:717.676400pt;}
.y33{bottom:720.806400pt;}
.y28{bottom:720.817707pt;}
.y13e{bottom:721.728240pt;}
.y32{bottom:732.246400pt;}
.y13d{bottom:740.763200pt;}
.y31{bottom:748.246400pt;}
.y30{bottom:763.446400pt;}
.y81{bottom:765.464667pt;}
.y27{bottom:766.708027pt;}
.y114{bottom:770.778133pt;}
.y2f{bottom:774.166400pt;}
.y80{bottom:775.864667pt;}
.y7f{bottom:785.864667pt;}
.y26{bottom:785.987707pt;}
.y7e{bottom:796.664667pt;}
.y127{bottom:803.365867pt;}
.y7d{bottom:804.264667pt;}
.y25{bottom:804.703467pt;}
.y2e{bottom:806.672533pt;}
.y6e{bottom:813.040000pt;}
.y126{bottom:813.765867pt;}
.y7c{bottom:814.664667pt;}
.y24{bottom:823.339253pt;}
.ya0{bottom:825.629280pt;}
.y7b{bottom:833.264133pt;}
.y125{bottom:840.690133pt;}
.y23{bottom:841.980533pt;}
.y13c{bottom:848.030773pt;}
.y6d{bottom:848.774267pt;}
.y7a{bottom:850.544133pt;}
.y124{bottom:851.090133pt;}
.y9f{bottom:853.676320pt;}
.y22{bottom:860.696293pt;}
.ye{bottom:863.065600pt;}
.y13b{bottom:863.873733pt;}
.y79{bottom:866.144267pt;}
.y9e{bottom:867.040160pt;}
.y123{bottom:869.689600pt;}
.y6c{bottom:873.263573pt;}
.yd{bottom:873.469333pt;}
.y21{bottom:873.975013pt;}
.y122{bottom:886.969600pt;}
.y20{bottom:887.338853pt;}
.y6b{bottom:889.746533pt;}
.y13a{bottom:890.106560pt;}
.yc{bottom:899.597333pt;}
.y121{bottom:902.569600pt;}
.y139{bottom:903.470400pt;}
.y1f{bottom:903.501013pt;}
.yb{bottom:909.997333pt;}
.y69{bottom:911.666533pt;}
.y9d{bottom:913.398640pt;}
.ya{bottom:930.349333pt;}
.y9c{bottom:932.837920pt;}
.y66{bottom:933.506533pt;}
.y113{bottom:939.134507pt;}
.yc3{bottom:943.685467pt;}
.y136{bottom:944.040133pt;}
.y9{bottom:946.349333pt;}
.y1e{bottom:949.806293pt;}
.y9b{bottom:952.277200pt;}
.y65{bottom:952.439600pt;}
.yc2{bottom:954.085467pt;}
.y135{bottom:954.440133pt;}
.y8{bottom:962.269467pt;}
.y1d{bottom:963.170133pt;}
.yc1{bottom:964.085467pt;}
.y134{bottom:964.440133pt;}
.y64{bottom:967.559600pt;}
.y112{bottom:970.011787pt;}
.yf2{bottom:970.168667pt;}
.y78{bottom:970.238667pt;}
.y9a{bottom:971.801600pt;}
.yc0{bottom:974.885467pt;}
.yf1{bottom:980.568667pt;}
.y77{bottom:980.638533pt;}
.ybf{bottom:982.482667pt;}
.y133{bottom:982.840133pt;}
.y111{bottom:988.333867pt;}
.y99{bottom:991.240880pt;}
.ybe{bottom:992.882667pt;}
.y132{bottom:993.240133pt;}
.y7{bottom:996.267067pt;}
.yf0{bottom:1006.698667pt;}
.y76{bottom:1006.768667pt;}
.y6{bottom:1007.147067pt;}
.ybd{bottom:1011.778667pt;}
.y131{bottom:1011.839467pt;}
.y98{bottom:1012.520880pt;}
.y138{bottom:1016.125920pt;}
.yef{bottom:1017.098667pt;}
.y75{bottom:1017.168667pt;}
.ybc{bottom:1022.744133pt;}
.y97{bottom:1028.363840pt;}
.y130{bottom:1029.119467pt;}
.ye8{bottom:1029.520000pt;}
.ybb{bottom:1030.184133pt;}
.yee{bottom:1035.698133pt;}
.y74{bottom:1035.768133pt;}
.y5{bottom:1040.067733pt;}
.y3{bottom:1042.270933pt;}
.y12f{bottom:1044.719467pt;}
.ye7{bottom:1045.360000pt;}
.y137{bottom:1045.513600pt;}
.ye9{bottom:1046.154133pt;}
.y2{bottom:1052.031067pt;}
.yed{bottom:1052.978133pt;}
.y73{bottom:1053.048133pt;}
.y96{bottom:1056.464080pt;}
.y4{bottom:1057.538667pt;}
.y1{bottom:1062.670933pt;}
.yec{bottom:1068.578267pt;}
.y72{bottom:1068.648133pt;}
.y110{bottom:1069.372400pt;}
.y95{bottom:1070.860000pt;}
.yaa{bottom:1082.528507pt;}
.yeb{bottom:1082.532293pt;}
.y71{bottom:1082.533547pt;}
.ya9{bottom:1095.328427pt;}
.yea{bottom:1095.332213pt;}
.y70{bottom:1095.333467pt;}
.h7{height:18.402656pt;}
.ha{height:20.398125pt;}
.hc{height:22.171875pt;}
.hf{height:27.714844pt;}
.h8{height:29.488594pt;}
.h9{height:31.484062pt;}
.h2{height:34.144000pt;}
.hb{height:37.027031pt;}
.h13{height:37.373437pt;}
.h11{height:39.048750pt;}
.h6{height:39.948480pt;}
.h10{height:39.960853pt;}
.h1{height:42.680000pt;}
.hd{height:44.388750pt;}
.h4{height:45.411520pt;}
.h5{height:51.216000pt;}
.h3{height:53.947520pt;}
.h12{height:78.401333pt;}
.he{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;}
.x13{left:34.693333pt;}
.x15{left:42.640000pt;}
.x10{left:44.740933pt;}
.x4{left:45.877733pt;}
.xa{left:47.528000pt;}
.x14{left:51.437333pt;}
.x16{left:53.962000pt;}
.xb{left:64.168000pt;}
.x11{left:69.700933pt;}
.xc{left:76.915680pt;}
.xf{left:78.421067pt;}
.x18{left:80.000000pt;}
.x12{left:86.911493pt;}
.xd{left:89.617067pt;}
.xe{left:102.284800pt;}
.x17{left:141.642000pt;}
.x1{left:155.691467pt;}
.x19{left:205.677200pt;}
.x5{left:207.037200pt;}
.x6{left:223.677200pt;}
.x1b{left:288.666667pt;}
.x1a{left:290.026667pt;}
.x7{left:297.034800pt;}
.x9{left:300.301280pt;}
.x8{left:312.909680pt;}
.x1c{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; }
  