
    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_e5dea41d7ce766d4abc34cc7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_b1a3e4f3a06b9e450f9c0aab.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_24f8246c34f60f71706b0dfc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_c38b4dec3e9da77b52ffe9b7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_eb39ddf25db253d945b7eae7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_95ca1f83ba55587fd6e37a10.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_4d84054e9993bc3dc54a8091.woff')format("woff");}.ff7{font-family:ff7;line-height:1.090332;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:ff8;src:url('chunks/assets/font_56141cef8677b59ac1067d38.woff')format("woff");}.ff8{font-family:ff8;line-height:0.902344;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.982000px;}
.v3{vertical-align:23.310000px;}
.v1{vertical-align:87.000000px;}
.ls2d{letter-spacing:-4.464000px;}
.ls56{letter-spacing:-3.300000px;}
.ls23{letter-spacing:-2.808000px;}
.ls9{letter-spacing:-1.224000px;}
.ls11{letter-spacing:-1.080000px;}
.ls22{letter-spacing:-0.936000px;}
.ls1e{letter-spacing:-0.792000px;}
.ls50{letter-spacing:-0.726000px;}
.ls1f{letter-spacing:-0.720000px;}
.ls51{letter-spacing:-0.660000px;}
.ls17{letter-spacing:-0.648000px;}
.ls55{letter-spacing:-0.594000px;}
.ls29{letter-spacing:-0.576000px;}
.ls57{letter-spacing:-0.528000px;}
.ls18{letter-spacing:-0.504000px;}
.ls4e{letter-spacing:-0.462000px;}
.ls25{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.360000px;}
.ls4f{letter-spacing:-0.330000px;}
.ls36{letter-spacing:-0.315000px;}
.ls1a{letter-spacing:-0.288000px;}
.ls4a{letter-spacing:-0.264000px;}
.ls10{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.198000px;}
.ls2a{letter-spacing:-0.144000px;}
.ls47{letter-spacing:-0.132000px;}
.ls1b{letter-spacing:-0.072000px;}
.ls46{letter-spacing:-0.066000px;}
.ls6{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.016200px;}
.ls14{letter-spacing:0.066000px;}
.lsd{letter-spacing:0.072000px;}
.ls39{letter-spacing:0.132000px;}
.ls13{letter-spacing:0.144000px;}
.ls45{letter-spacing:0.198000px;}
.ls1c{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.218400px;}
.ls8{letter-spacing:0.264000px;}
.ls21{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.315000px;}
.ls3f{letter-spacing:0.330000px;}
.lsc{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.396000px;}
.lsf{letter-spacing:0.432000px;}
.ls32{letter-spacing:0.441000px;}
.ls30{letter-spacing:0.462000px;}
.ls16{letter-spacing:0.504000px;}
.ls53{letter-spacing:0.528000px;}
.ls1d{letter-spacing:0.576000px;}
.ls44{letter-spacing:0.594000px;}
.ls12{letter-spacing:0.648000px;}
.ls42{letter-spacing:0.660000px;}
.ls5{letter-spacing:0.720000px;}
.ls3b{letter-spacing:0.726000px;}
.ls7{letter-spacing:0.792000px;}
.ls15{letter-spacing:0.858000px;}
.ls49{letter-spacing:0.924000px;}
.ls20{letter-spacing:0.936000px;}
.ls52{letter-spacing:0.990000px;}
.ls2c{letter-spacing:1.080000px;}
.ls54{letter-spacing:1.122000px;}
.lsb{letter-spacing:1.152000px;}
.ls35{letter-spacing:1.296000px;}
.ls34{letter-spacing:1.323000px;}
.ls33{letter-spacing:3.269700px;}
.ls0{letter-spacing:4.200000px;}
.ls2e{letter-spacing:4.248000px;}
.lse{letter-spacing:4.446000px;}
.ls2f{letter-spacing:5.112000px;}
.ls3{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls4{letter-spacing:7.200000px;}
.ls24{letter-spacing:7.992000px;}
.ls48{letter-spacing:9.570000px;}
.ls4b{letter-spacing:9.966000px;}
.ls2b{letter-spacing:10.152000px;}
.ls2{letter-spacing:10.200000px;}
.ls43{letter-spacing:10.692000px;}
.ls37{letter-spacing:10.758000px;}
.ls3d{letter-spacing:10.890000px;}
.ls3c{letter-spacing:10.956000px;}
.ls38{letter-spacing:11.088000px;}
.ls3e{letter-spacing:11.220000px;}
.ls4d{letter-spacing:11.286000px;}
.ls4c{letter-spacing:11.352000px;}
.ls41{letter-spacing:11.682000px;}
.ls3a{letter-spacing:11.814000px;}
.ls40{letter-spacing:11.880000px;}
.ls58{letter-spacing:19.800000px;}
.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;}
}
.ws2{word-spacing:-59.531480px;}
.ws68{word-spacing:-38.346000px;}
.ws1{word-spacing:-27.432000px;}
.ws44{word-spacing:-22.860000px;}
.ws39{word-spacing:-20.232000px;}
.ws6a{word-spacing:-19.800000px;}
.ws29{word-spacing:-19.296000px;}
.ws3c{word-spacing:-19.008000px;}
.ws6b{word-spacing:-18.876000px;}
.ws3d{word-spacing:-18.546000px;}
.ws59{word-spacing:-18.480000px;}
.wse{word-spacing:-18.432000px;}
.ws2c{word-spacing:-18.072000px;}
.ws22{word-spacing:-17.928000px;}
.ws17{word-spacing:-17.784000px;}
.ws3b{word-spacing:-17.703000px;}
.ws34{word-spacing:-17.568000px;}
.ws30{word-spacing:-17.496000px;}
.ws35{word-spacing:-17.424000px;}
.ws23{word-spacing:-17.136000px;}
.ws0{word-spacing:-16.860000px;}
.ws16{word-spacing:-16.368000px;}
.ws60{word-spacing:-16.170000px;}
.ws61{word-spacing:-15.840000px;}
.ws3a{word-spacing:-15.561000px;}
.ws50{word-spacing:-11.880000px;}
.ws48{word-spacing:-11.814000px;}
.ws52{word-spacing:-11.682000px;}
.ws5b{word-spacing:-11.352000px;}
.ws5d{word-spacing:-11.286000px;}
.ws46{word-spacing:-11.088000px;}
.ws4a{word-spacing:-10.956000px;}
.ws4b{word-spacing:-10.890000px;}
.ws45{word-spacing:-10.758000px;}
.ws54{word-spacing:-10.692000px;}
.ws7{word-spacing:-10.200000px;}
.ws57{word-spacing:-9.966000px;}
.ws4e{word-spacing:-9.570000px;}
.ws2e{word-spacing:-7.992000px;}
.ws69{word-spacing:-7.200000px;}
.ws6{word-spacing:-6.600000px;}
.ws8{word-spacing:-6.000000px;}
.ws38{word-spacing:-4.248000px;}
.wsf{word-spacing:-4.200000px;}
.ws43{word-spacing:-1.296000px;}
.ws10{word-spacing:-1.152000px;}
.ws62{word-spacing:-1.122000px;}
.ws36{word-spacing:-1.080000px;}
.ws63{word-spacing:-0.990000px;}
.ws27{word-spacing:-0.936000px;}
.ws51{word-spacing:-0.924000px;}
.ws1c{word-spacing:-0.858000px;}
.ws9{word-spacing:-0.792000px;}
.ws49{word-spacing:-0.726000px;}
.wsd{word-spacing:-0.720000px;}
.ws53{word-spacing:-0.660000px;}
.ws20{word-spacing:-0.648000px;}
.ws56{word-spacing:-0.594000px;}
.ws28{word-spacing:-0.576000px;}
.ws66{word-spacing:-0.528000px;}
.ws21{word-spacing:-0.504000px;}
.ws3f{word-spacing:-0.462000px;}
.ws42{word-spacing:-0.441000px;}
.ws15{word-spacing:-0.432000px;}
.ws40{word-spacing:-0.396000px;}
.ws13{word-spacing:-0.360000px;}
.ws4f{word-spacing:-0.330000px;}
.ws31{word-spacing:-0.315000px;}
.ws2a{word-spacing:-0.288000px;}
.wsa{word-spacing:-0.264000px;}
.ws25{word-spacing:-0.216000px;}
.ws58{word-spacing:-0.198000px;}
.ws1a{word-spacing:-0.144000px;}
.ws47{word-spacing:-0.132000px;}
.ws14{word-spacing:-0.072000px;}
.ws1b{word-spacing:-0.066000px;}
.ws4{word-spacing:0.000000px;}
.ws4c{word-spacing:0.066000px;}
.ws1f{word-spacing:0.072000px;}
.ws4d{word-spacing:0.132000px;}
.ws33{word-spacing:0.144000px;}
.ws1d{word-spacing:0.198000px;}
.ws11{word-spacing:0.216000px;}
.ws55{word-spacing:0.264000px;}
.ws1e{word-spacing:0.288000px;}
.ws3e{word-spacing:0.315000px;}
.ws5c{word-spacing:0.330000px;}
.wsc{word-spacing:0.360000px;}
.ws2f{word-spacing:0.432000px;}
.ws5a{word-spacing:0.462000px;}
.ws19{word-spacing:0.504000px;}
.ws67{word-spacing:0.528000px;}
.ws32{word-spacing:0.576000px;}
.ws64{word-spacing:0.594000px;}
.ws18{word-spacing:0.648000px;}
.ws5f{word-spacing:0.660000px;}
.ws26{word-spacing:0.720000px;}
.ws5e{word-spacing:0.726000px;}
.ws24{word-spacing:0.792000px;}
.ws2b{word-spacing:0.936000px;}
.ws12{word-spacing:1.080000px;}
.wsb{word-spacing:1.224000px;}
.ws2d{word-spacing:2.808000px;}
.ws3{word-spacing:2.940000px;}
.ws65{word-spacing:3.300000px;}
.ws5{word-spacing:3.360000px;}
.ws37{word-spacing:4.464000px;}
.ws41{word-spacing:7.062000px;}
._13{margin-left:-12.348000px;}
._c{margin-left:-10.425600px;}
._f{margin-left:-9.362400px;}
._7{margin-left:-8.236800px;}
._d{margin-left:-6.838800px;}
._5{margin-left:-5.788200px;}
._2{margin-left:-4.708200px;}
._0{margin-left:-3.691800px;}
._9{margin-left:-2.300400px;}
._1{margin-left:-1.247400px;}
._3{width:1.204800px;}
._a{width:2.283600px;}
._4{width:3.388800px;}
._8{width:5.041200px;}
._11{width:6.138000px;}
._e{width:7.584000px;}
._14{width:8.596800px;}
._10{width:9.619200px;}
._6{width:11.371800px;}
._18{width:12.750000px;}
._12{width:14.083200px;}
._16{width:15.642000px;}
._b{width:17.197200px;}
._15{width:20.394000px;}
._17{width:21.988200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:37.800000px;}
.fs0{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs9{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.fs6{font-size:211.855800px;}
.y0{bottom:0.000000px;}
.y2{bottom:61.939350px;}
.y1{bottom:76.339350px;}
.y21{bottom:141.505200px;}
.yba{bottom:142.194750px;}
.y69{bottom:143.322450px;}
.y132{bottom:143.911050px;}
.ye3{bottom:144.060000px;}
.y9b{bottom:144.522450px;}
.y7e{bottom:144.768300px;}
.y46{bottom:144.840300px;}
.y10a{bottom:144.928800px;}
.y7f{bottom:144.930300px;}
.y9c{bottom:145.074300px;}
.y150{bottom:145.839450px;}
.y131{bottom:160.711800px;}
.y20{bottom:163.249200px;}
.ye2{bottom:163.563000px;}
.yb9{bottom:163.938750px;}
.y109{bottom:165.025800px;}
.y68{bottom:165.516450px;}
.y9a{bottom:166.266450px;}
.y14f{bottom:166.381950px;}
.y45{bottom:166.584300px;}
.y7d{bottom:166.674300px;}
.ye1{bottom:183.066000px;}
.y1f{bottom:184.993200px;}
.y108{bottom:185.122800px;}
.yb8{bottom:185.682750px;}
.y14e{bottom:186.924450px;}
.y130{bottom:187.597800px;}
.y67{bottom:187.710450px;}
.y99{bottom:188.010450px;}
.y44{bottom:188.328300px;}
.y7c{bottom:188.418300px;}
.ye0{bottom:202.569000px;}
.y107{bottom:205.219800px;}
.y1d{bottom:206.731200px;}
.y1e{bottom:206.737200px;}
.y12f{bottom:207.100800px;}
.yb7{bottom:207.426750px;}
.y14d{bottom:207.466950px;}
.y98{bottom:209.754450px;}
.y66{bottom:209.904450px;}
.y43{bottom:210.072300px;}
.y7b{bottom:210.162300px;}
.ydf{bottom:222.072000px;}
.y106{bottom:225.316800px;}
.y12e{bottom:226.603800px;}
.y14c{bottom:228.009450px;}
.yb6{bottom:229.170750px;}
.y97{bottom:231.498450px;}
.y42{bottom:231.816300px;}
.y7a{bottom:231.906300px;}
.y65{bottom:232.098450px;}
.yde{bottom:241.575000px;}
.y105{bottom:245.413800px;}
.y12d{bottom:246.106800px;}
.yb5{bottom:250.914750px;}
.y96{bottom:253.242450px;}
.y41{bottom:253.560300px;}
.y79{bottom:253.650300px;}
.y64{bottom:254.292450px;}
.ydd{bottom:261.078000px;}
.y104{bottom:265.510800px;}
.y12c{bottom:265.609800px;}
.y14b{bottom:270.909450px;}
.y1c{bottom:271.987200px;}
.yb4{bottom:272.658750px;}
.y95{bottom:274.986450px;}
.y40{bottom:275.304300px;}
.y78{bottom:275.394300px;}
.y63{bottom:276.486450px;}
.ydc{bottom:280.581000px;}
.y12b{bottom:285.112800px;}
.y103{bottom:285.607800px;}
.y1b{bottom:291.935700px;}
.yb3{bottom:294.402750px;}
.y94{bottom:296.730450px;}
.y3f{bottom:297.048300px;}
.y77{bottom:297.138300px;}
.y62{bottom:298.680450px;}
.ydb{bottom:300.084000px;}
.y12a{bottom:304.615800px;}
.y102{bottom:305.704800px;}
.y1a{bottom:311.884200px;}
.y14a{bottom:313.797450px;}
.yb2{bottom:316.146750px;}
.y93{bottom:318.474450px;}
.y3e{bottom:318.792300px;}
.y76{bottom:318.882300px;}
.yda{bottom:319.587000px;}
.y61{bottom:320.874450px;}
.y129{bottom:324.118800px;}
.y101{bottom:325.801800px;}
.y19{bottom:331.832700px;}
.y149{bottom:336.153450px;}
.yb1{bottom:337.890750px;}
.yd9{bottom:339.090000px;}
.y92{bottom:340.218450px;}
.y3d{bottom:340.536300px;}
.y75{bottom:340.626300px;}
.y60{bottom:343.068450px;}
.y128{bottom:343.621800px;}
.y100{bottom:345.898800px;}
.y18{bottom:351.781200px;}
.y148{bottom:358.509450px;}
.yd8{bottom:358.593000px;}
.yb0{bottom:359.634750px;}
.y91{bottom:361.962450px;}
.y3c{bottom:362.280300px;}
.y74{bottom:362.370300px;}
.y127{bottom:363.124800px;}
.y5f{bottom:365.262450px;}
.yff{bottom:365.995800px;}
.yd7{bottom:378.096000px;}
.y17{bottom:380.235150px;}
.y147{bottom:380.859450px;}
.y126{bottom:382.627800px;}
.y90{bottom:383.706450px;}
.y3b{bottom:384.024300px;}
.y73{bottom:384.114300px;}
.yfe{bottom:386.092800px;}
.y5e{bottom:387.456450px;}
.yaf{bottom:394.170600px;}
.yd6{bottom:397.599000px;}
.y125{bottom:402.130800px;}
.y8f{bottom:405.450450px;}
.y3a{bottom:405.768300px;}
.y72{bottom:405.858300px;}
.yfd{bottom:406.189800px;}
.y5d{bottom:409.650450px;}
.yae{bottom:412.314600px;}
.yd5{bottom:417.102000px;}
.y124{bottom:421.633800px;}
.yfc{bottom:426.286800px;}
.y8e{bottom:427.194450px;}
.y39{bottom:427.512300px;}
.y71{bottom:427.602300px;}
.yad{bottom:430.458600px;}
.y146{bottom:431.109450px;}
.y5c{bottom:431.844450px;}
.y16{bottom:432.246450px;}
.yd4{bottom:436.605000px;}
.y123{bottom:441.136800px;}
.yfb{bottom:446.383800px;}
.yac{bottom:448.602600px;}
.y8d{bottom:448.938450px;}
.y38{bottom:449.256300px;}
.y70{bottom:449.346300px;}
.y145{bottom:449.859450px;}
.y15{bottom:452.194950px;}
.y5b{bottom:454.038450px;}
.yd3{bottom:456.108000px;}
.y122{bottom:460.639800px;}
.yfa{bottom:466.480800px;}
.yab{bottom:466.746600px;}
.y144{bottom:468.609450px;}
.y8c{bottom:470.682450px;}
.y37{bottom:471.000300px;}
.y6f{bottom:471.090300px;}
.y14{bottom:472.143450px;}
.yd2{bottom:475.611000px;}
.y5a{bottom:476.232450px;}
.y121{bottom:480.142800px;}
.yaa{bottom:484.890600px;}
.yf9{bottom:486.577800px;}
.y143{bottom:487.359450px;}
.y13{bottom:492.091950px;}
.y8b{bottom:492.426450px;}
.y36{bottom:492.744300px;}
.y6e{bottom:492.834300px;}
.yd1{bottom:495.114000px;}
.y59{bottom:498.426450px;}
.y120{bottom:499.645800px;}
.yf8{bottom:506.674800px;}
.y12{bottom:512.040450px;}
.y8a{bottom:514.170450px;}
.y35{bottom:514.488300px;}
.y6d{bottom:514.578300px;}
.yd0{bottom:514.617000px;}
.ya9{bottom:515.802600px;}
.y11f{bottom:519.148800px;}
.y58{bottom:520.620450px;}
.yf7{bottom:526.771800px;}
.y142{bottom:528.466950px;}
.y11{bottom:531.988950px;}
.ycf{bottom:534.120000px;}
.y89{bottom:535.914450px;}
.y34{bottom:536.232300px;}
.y6c{bottom:536.322300px;}
.ya8{bottom:537.546600px;}
.y11e{bottom:538.651800px;}
.y57{bottom:542.814450px;}
.yf6{bottom:546.868800px;}
.y141{bottom:549.009450px;}
.yce{bottom:553.474500px;}
.y88{bottom:557.658450px;}
.y33{bottom:557.976300px;}
.y6b{bottom:558.066300px;}
.y11d{bottom:558.154800px;}
.y10{bottom:560.442900px;}
.y56{bottom:565.008450px;}
.yf5{bottom:566.965800px;}
.ya7{bottom:572.052450px;}
.ycd{bottom:572.829000px;}
.y11c{bottom:577.657800px;}
.y87{bottom:579.402450px;}
.y32{bottom:579.720300px;}
.y6a{bottom:579.810300px;}
.yf4{bottom:587.062800px;}
.y55{bottom:587.202450px;}
.ya6{bottom:590.202450px;}
.y140{bottom:591.976800px;}
.ycc{bottom:592.183500px;}
.y11b{bottom:597.160800px;}
.y31{bottom:601.554300px;}
.yf3{bottom:607.159800px;}
.ya5{bottom:608.352450px;}
.ycb{bottom:611.538000px;}
.yf{bottom:612.494400px;}
.y13f{bottom:612.519300px;}
.y86{bottom:613.932300px;}
.y11a{bottom:616.663800px;}
.y54{bottom:622.176450px;}
.y30{bottom:623.298300px;}
.ya4{bottom:626.502450px;}
.yf2{bottom:627.256800px;}
.yca{bottom:630.892500px;}
.y85{bottom:632.076300px;}
.ye{bottom:632.442900px;}
.y13e{bottom:633.061800px;}
.y119{bottom:636.166800px;}
.y53{bottom:640.771950px;}
.y2f{bottom:645.042300px;}
.yf1{bottom:647.353800px;}
.y84{bottom:650.220300px;}
.yc9{bottom:650.247000px;}
.yd{bottom:652.392900px;}
.y13d{bottom:653.604300px;}
.y118{bottom:655.669800px;}
.ya3{bottom:657.444450px;}
.y52{bottom:659.367450px;}
.y2e{bottom:666.786300px;}
.yf0{bottom:667.450800px;}
.y83{bottom:668.364300px;}
.yc8{bottom:669.601500px;}
.yc{bottom:674.133900px;}
.y13c{bottom:674.146800px;}
.y117{bottom:675.172800px;}
.ya2{bottom:675.588450px;}
.y51{bottom:677.962950px;}
.y82{bottom:686.514450px;}
.yef{bottom:687.547800px;}
.y2d{bottom:688.530300px;}
.yc7{bottom:688.956000px;}
.ya1{bottom:693.732450px;}
.y116{bottom:694.675800px;}
.y13b{bottom:694.689300px;}
.y15a{bottom:694.711800px;}
.y50{bottom:696.558450px;}
.y81{bottom:704.664450px;}
.yb{bottom:704.886900px;}
.yee{bottom:707.644800px;}
.yc6{bottom:708.310500px;}
.y2c{bottom:710.274300px;}
.ya0{bottom:711.876450px;}
.y159{bottom:712.711800px;}
.y115{bottom:714.178800px;}
.y13a{bottom:715.231800px;}
.y80{bottom:722.808450px;}
.yc5{bottom:727.665000px;}
.yed{bottom:727.741800px;}
.y4f{bottom:727.968300px;}
.y9f{bottom:730.020450px;}
.y158{bottom:730.711800px;}
.y2b{bottom:732.018300px;}
.y114{bottom:733.681800px;}
.ya{bottom:735.639900px;}
.y139{bottom:735.774300px;}
.yc4{bottom:747.019500px;}
.yec{bottom:747.838800px;}
.y9e{bottom:748.164450px;}
.y157{bottom:748.711800px;}
.y4e{bottom:750.162300px;}
.y113{bottom:753.184800px;}
.y2a{bottom:753.762300px;}
.y138{bottom:756.316800px;}
.y9d{bottom:766.308450px;}
.yc3{bottom:766.374000px;}
.y9{bottom:766.392900px;}
.yeb{bottom:767.935800px;}
.y4d{bottom:772.356300px;}
.y112{bottom:772.687800px;}
.y29{bottom:775.506300px;}
.y137{bottom:776.859300px;}
.yc2{bottom:785.728500px;}
.yea{bottom:788.032800px;}
.y156{bottom:788.311800px;}
.y111{bottom:792.190800px;}
.y4c{bottom:794.550300px;}
.y28{bottom:797.250300px;}
.yc1{bottom:805.083000px;}
.y155{bottom:808.111800px;}
.ye9{bottom:808.129800px;}
.y110{bottom:811.693800px;}
.y4b{bottom:816.744300px;}
.y27{bottom:818.994300px;}
.y136{bottom:819.759450px;}
.y8{bottom:821.806950px;}
.yc0{bottom:824.437500px;}
.ye8{bottom:828.226800px;}
.y10f{bottom:831.196800px;}
.y4a{bottom:838.938300px;}
.y7{bottom:839.956950px;}
.y26{bottom:840.738300px;}
.ybf{bottom:843.792000px;}
.ye7{bottom:848.323800px;}
.y154{bottom:849.511800px;}
.y10e{bottom:850.699800px;}
.y6{bottom:858.106950px;}
.y49{bottom:861.132300px;}
.y25{bottom:862.482300px;}
.y135{bottom:862.647300px;}
.ybe{bottom:863.146500px;}
.ye6{bottom:868.420800px;}
.y153{bottom:869.311800px;}
.y10d{bottom:870.202800px;}
.y5{bottom:876.256950px;}
.ybd{bottom:882.501000px;}
.y48{bottom:883.326300px;}
.y24{bottom:884.226300px;}
.y134{bottom:885.003300px;}
.ye5{bottom:888.517800px;}
.y152{bottom:889.111800px;}
.y10c{bottom:889.705800px;}
.ybc{bottom:901.855500px;}
.y47{bottom:905.520300px;}
.y23{bottom:905.970300px;}
.y133{bottom:907.359300px;}
.ye4{bottom:908.614800px;}
.y151{bottom:908.911800px;}
.y10b{bottom:909.208800px;}
.y4{bottom:910.561950px;}
.y22{bottom:927.714300px;}
.y3{bottom:928.711800px;}
.ybb{bottom:929.709450px;}
.h2{height:28.977539px;}
.h4{height:33.117188px;}
.hb{height:35.663086px;}
.h5{height:40.757812px;}
.h3{height:41.396484px;}
.hf{height:48.399902px;}
.h6{height:50.947266px;}
.he{height:53.494629px;}
.hd{height:55.382777px;}
.hc{height:55.406777px;}
.h7{height:56.041992px;}
.h9{height:61.136719px;}
.h8{height:86.610352px;}
.ha{height:179.891229px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x6{left:76.535400px;}
.x7{left:97.784400px;}
.x9{left:106.978350px;}
.xb{left:119.053350px;}
.xc{left:140.290650px;}
.xa{left:143.170350px;}
.xf{left:179.549550px;}
.x8{left:240.959700px;}
.x10{left:260.227800px;}
.x4{left:265.140600px;}
.x1{left:278.284950px;}
.x2{left:477.681450px;}
.x3{left:482.955000px;}
.xe{left:531.240300px;}
.xd{left:540.203550px;}
.x5{left:610.039350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.650667pt;}
.v3{vertical-align:20.720000pt;}
.v1{vertical-align:77.333333pt;}
.ls2d{letter-spacing:-3.968000pt;}
.ls56{letter-spacing:-2.933333pt;}
.ls23{letter-spacing:-2.496000pt;}
.ls9{letter-spacing:-1.088000pt;}
.ls11{letter-spacing:-0.960000pt;}
.ls22{letter-spacing:-0.832000pt;}
.ls1e{letter-spacing:-0.704000pt;}
.ls50{letter-spacing:-0.645333pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls51{letter-spacing:-0.586667pt;}
.ls17{letter-spacing:-0.576000pt;}
.ls55{letter-spacing:-0.528000pt;}
.ls29{letter-spacing:-0.512000pt;}
.ls57{letter-spacing:-0.469333pt;}
.ls18{letter-spacing:-0.448000pt;}
.ls4e{letter-spacing:-0.410667pt;}
.ls25{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls4f{letter-spacing:-0.293333pt;}
.ls36{letter-spacing:-0.280000pt;}
.ls1a{letter-spacing:-0.256000pt;}
.ls4a{letter-spacing:-0.234667pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.176000pt;}
.ls2a{letter-spacing:-0.128000pt;}
.ls47{letter-spacing:-0.117333pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls46{letter-spacing:-0.058667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.014400pt;}
.ls14{letter-spacing:0.058667pt;}
.lsd{letter-spacing:0.064000pt;}
.ls39{letter-spacing:0.117333pt;}
.ls13{letter-spacing:0.128000pt;}
.ls45{letter-spacing:0.176000pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.194133pt;}
.ls8{letter-spacing:0.234667pt;}
.ls21{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.280000pt;}
.ls3f{letter-spacing:0.293333pt;}
.lsc{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.352000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls32{letter-spacing:0.392000pt;}
.ls30{letter-spacing:0.410667pt;}
.ls16{letter-spacing:0.448000pt;}
.ls53{letter-spacing:0.469333pt;}
.ls1d{letter-spacing:0.512000pt;}
.ls44{letter-spacing:0.528000pt;}
.ls12{letter-spacing:0.576000pt;}
.ls42{letter-spacing:0.586667pt;}
.ls5{letter-spacing:0.640000pt;}
.ls3b{letter-spacing:0.645333pt;}
.ls7{letter-spacing:0.704000pt;}
.ls15{letter-spacing:0.762667pt;}
.ls49{letter-spacing:0.821333pt;}
.ls20{letter-spacing:0.832000pt;}
.ls52{letter-spacing:0.880000pt;}
.ls2c{letter-spacing:0.960000pt;}
.ls54{letter-spacing:0.997333pt;}
.lsb{letter-spacing:1.024000pt;}
.ls35{letter-spacing:1.152000pt;}
.ls34{letter-spacing:1.176000pt;}
.ls33{letter-spacing:2.906400pt;}
.ls0{letter-spacing:3.733333pt;}
.ls2e{letter-spacing:3.776000pt;}
.lse{letter-spacing:3.952000pt;}
.ls2f{letter-spacing:4.544000pt;}
.ls3{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls4{letter-spacing:6.400000pt;}
.ls24{letter-spacing:7.104000pt;}
.ls48{letter-spacing:8.506667pt;}
.ls4b{letter-spacing:8.858667pt;}
.ls2b{letter-spacing:9.024000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls43{letter-spacing:9.504000pt;}
.ls37{letter-spacing:9.562667pt;}
.ls3d{letter-spacing:9.680000pt;}
.ls3c{letter-spacing:9.738667pt;}
.ls38{letter-spacing:9.856000pt;}
.ls3e{letter-spacing:9.973333pt;}
.ls4d{letter-spacing:10.032000pt;}
.ls4c{letter-spacing:10.090667pt;}
.ls41{letter-spacing:10.384000pt;}
.ls3a{letter-spacing:10.501333pt;}
.ls40{letter-spacing:10.560000pt;}
.ls58{letter-spacing:17.600000pt;}
.ws2{word-spacing:-52.916871pt;}
.ws68{word-spacing:-34.085333pt;}
.ws1{word-spacing:-24.384000pt;}
.ws44{word-spacing:-20.320000pt;}
.ws39{word-spacing:-17.984000pt;}
.ws6a{word-spacing:-17.600000pt;}
.ws29{word-spacing:-17.152000pt;}
.ws3c{word-spacing:-16.896000pt;}
.ws6b{word-spacing:-16.778667pt;}
.ws3d{word-spacing:-16.485333pt;}
.ws59{word-spacing:-16.426667pt;}
.wse{word-spacing:-16.384000pt;}
.ws2c{word-spacing:-16.064000pt;}
.ws22{word-spacing:-15.936000pt;}
.ws17{word-spacing:-15.808000pt;}
.ws3b{word-spacing:-15.736000pt;}
.ws34{word-spacing:-15.616000pt;}
.ws30{word-spacing:-15.552000pt;}
.ws35{word-spacing:-15.488000pt;}
.ws23{word-spacing:-15.232000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws16{word-spacing:-14.549333pt;}
.ws60{word-spacing:-14.373333pt;}
.ws61{word-spacing:-14.080000pt;}
.ws3a{word-spacing:-13.832000pt;}
.ws50{word-spacing:-10.560000pt;}
.ws48{word-spacing:-10.501333pt;}
.ws52{word-spacing:-10.384000pt;}
.ws5b{word-spacing:-10.090667pt;}
.ws5d{word-spacing:-10.032000pt;}
.ws46{word-spacing:-9.856000pt;}
.ws4a{word-spacing:-9.738667pt;}
.ws4b{word-spacing:-9.680000pt;}
.ws45{word-spacing:-9.562667pt;}
.ws54{word-spacing:-9.504000pt;}
.ws7{word-spacing:-9.066667pt;}
.ws57{word-spacing:-8.858667pt;}
.ws4e{word-spacing:-8.506667pt;}
.ws2e{word-spacing:-7.104000pt;}
.ws69{word-spacing:-6.400000pt;}
.ws6{word-spacing:-5.866667pt;}
.ws8{word-spacing:-5.333333pt;}
.ws38{word-spacing:-3.776000pt;}
.wsf{word-spacing:-3.733333pt;}
.ws43{word-spacing:-1.152000pt;}
.ws10{word-spacing:-1.024000pt;}
.ws62{word-spacing:-0.997333pt;}
.ws36{word-spacing:-0.960000pt;}
.ws63{word-spacing:-0.880000pt;}
.ws27{word-spacing:-0.832000pt;}
.ws51{word-spacing:-0.821333pt;}
.ws1c{word-spacing:-0.762667pt;}
.ws9{word-spacing:-0.704000pt;}
.ws49{word-spacing:-0.645333pt;}
.wsd{word-spacing:-0.640000pt;}
.ws53{word-spacing:-0.586667pt;}
.ws20{word-spacing:-0.576000pt;}
.ws56{word-spacing:-0.528000pt;}
.ws28{word-spacing:-0.512000pt;}
.ws66{word-spacing:-0.469333pt;}
.ws21{word-spacing:-0.448000pt;}
.ws3f{word-spacing:-0.410667pt;}
.ws42{word-spacing:-0.392000pt;}
.ws15{word-spacing:-0.384000pt;}
.ws40{word-spacing:-0.352000pt;}
.ws13{word-spacing:-0.320000pt;}
.ws4f{word-spacing:-0.293333pt;}
.ws31{word-spacing:-0.280000pt;}
.ws2a{word-spacing:-0.256000pt;}
.wsa{word-spacing:-0.234667pt;}
.ws25{word-spacing:-0.192000pt;}
.ws58{word-spacing:-0.176000pt;}
.ws1a{word-spacing:-0.128000pt;}
.ws47{word-spacing:-0.117333pt;}
.ws14{word-spacing:-0.064000pt;}
.ws1b{word-spacing:-0.058667pt;}
.ws4{word-spacing:0.000000pt;}
.ws4c{word-spacing:0.058667pt;}
.ws1f{word-spacing:0.064000pt;}
.ws4d{word-spacing:0.117333pt;}
.ws33{word-spacing:0.128000pt;}
.ws1d{word-spacing:0.176000pt;}
.ws11{word-spacing:0.192000pt;}
.ws55{word-spacing:0.234667pt;}
.ws1e{word-spacing:0.256000pt;}
.ws3e{word-spacing:0.280000pt;}
.ws5c{word-spacing:0.293333pt;}
.wsc{word-spacing:0.320000pt;}
.ws2f{word-spacing:0.384000pt;}
.ws5a{word-spacing:0.410667pt;}
.ws19{word-spacing:0.448000pt;}
.ws67{word-spacing:0.469333pt;}
.ws32{word-spacing:0.512000pt;}
.ws64{word-spacing:0.528000pt;}
.ws18{word-spacing:0.576000pt;}
.ws5f{word-spacing:0.586667pt;}
.ws26{word-spacing:0.640000pt;}
.ws5e{word-spacing:0.645333pt;}
.ws24{word-spacing:0.704000pt;}
.ws2b{word-spacing:0.832000pt;}
.ws12{word-spacing:0.960000pt;}
.wsb{word-spacing:1.088000pt;}
.ws2d{word-spacing:2.496000pt;}
.ws3{word-spacing:2.613333pt;}
.ws65{word-spacing:2.933333pt;}
.ws5{word-spacing:2.986667pt;}
.ws37{word-spacing:3.968000pt;}
.ws41{word-spacing:6.277333pt;}
._13{margin-left:-10.976000pt;}
._c{margin-left:-9.267200pt;}
._f{margin-left:-8.322133pt;}
._7{margin-left:-7.321600pt;}
._d{margin-left:-6.078933pt;}
._5{margin-left:-5.145067pt;}
._2{margin-left:-4.185067pt;}
._0{margin-left:-3.281600pt;}
._9{margin-left:-2.044800pt;}
._1{margin-left:-1.108800pt;}
._3{width:1.070933pt;}
._a{width:2.029867pt;}
._4{width:3.012267pt;}
._8{width:4.481067pt;}
._11{width:5.456000pt;}
._e{width:6.741333pt;}
._14{width:7.641600pt;}
._10{width:8.550400pt;}
._6{width:10.108267pt;}
._18{width:11.333333pt;}
._12{width:12.518400pt;}
._16{width:13.904000pt;}
._b{width:15.286400pt;}
._15{width:18.128000pt;}
._17{width:19.545067pt;}
.fs8{font-size:33.600000pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs9{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.fs6{font-size:188.316267pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:55.057200pt;}
.y1{bottom:67.857200pt;}
.y21{bottom:125.782400pt;}
.yba{bottom:126.395333pt;}
.y69{bottom:127.397733pt;}
.y132{bottom:127.920933pt;}
.ye3{bottom:128.053333pt;}
.y9b{bottom:128.464400pt;}
.y7e{bottom:128.682933pt;}
.y46{bottom:128.746933pt;}
.y10a{bottom:128.825600pt;}
.y7f{bottom:128.826933pt;}
.y9c{bottom:128.954933pt;}
.y150{bottom:129.635067pt;}
.y131{bottom:142.854933pt;}
.y20{bottom:145.110400pt;}
.ye2{bottom:145.389333pt;}
.yb9{bottom:145.723333pt;}
.y109{bottom:146.689600pt;}
.y68{bottom:147.125733pt;}
.y9a{bottom:147.792400pt;}
.y14f{bottom:147.895067pt;}
.y45{bottom:148.074933pt;}
.y7d{bottom:148.154933pt;}
.ye1{bottom:162.725333pt;}
.y1f{bottom:164.438400pt;}
.y108{bottom:164.553600pt;}
.yb8{bottom:165.051333pt;}
.y14e{bottom:166.155067pt;}
.y130{bottom:166.753600pt;}
.y67{bottom:166.853733pt;}
.y99{bottom:167.120400pt;}
.y44{bottom:167.402933pt;}
.y7c{bottom:167.482933pt;}
.ye0{bottom:180.061333pt;}
.y107{bottom:182.417600pt;}
.y1d{bottom:183.761067pt;}
.y1e{bottom:183.766400pt;}
.y12f{bottom:184.089600pt;}
.yb7{bottom:184.379333pt;}
.y14d{bottom:184.415067pt;}
.y98{bottom:186.448400pt;}
.y66{bottom:186.581733pt;}
.y43{bottom:186.730933pt;}
.y7b{bottom:186.810933pt;}
.ydf{bottom:197.397333pt;}
.y106{bottom:200.281600pt;}
.y12e{bottom:201.425600pt;}
.y14c{bottom:202.675067pt;}
.yb6{bottom:203.707333pt;}
.y97{bottom:205.776400pt;}
.y42{bottom:206.058933pt;}
.y7a{bottom:206.138933pt;}
.y65{bottom:206.309733pt;}
.yde{bottom:214.733333pt;}
.y105{bottom:218.145600pt;}
.y12d{bottom:218.761600pt;}
.yb5{bottom:223.035333pt;}
.y96{bottom:225.104400pt;}
.y41{bottom:225.386933pt;}
.y79{bottom:225.466933pt;}
.y64{bottom:226.037733pt;}
.ydd{bottom:232.069333pt;}
.y104{bottom:236.009600pt;}
.y12c{bottom:236.097600pt;}
.y14b{bottom:240.808400pt;}
.y1c{bottom:241.766400pt;}
.yb4{bottom:242.363333pt;}
.y95{bottom:244.432400pt;}
.y40{bottom:244.714933pt;}
.y78{bottom:244.794933pt;}
.y63{bottom:245.765733pt;}
.ydc{bottom:249.405333pt;}
.y12b{bottom:253.433600pt;}
.y103{bottom:253.873600pt;}
.y1b{bottom:259.498400pt;}
.yb3{bottom:261.691333pt;}
.y94{bottom:263.760400pt;}
.y3f{bottom:264.042933pt;}
.y77{bottom:264.122933pt;}
.y62{bottom:265.493733pt;}
.ydb{bottom:266.741333pt;}
.y12a{bottom:270.769600pt;}
.y102{bottom:271.737600pt;}
.y1a{bottom:277.230400pt;}
.y14a{bottom:278.931067pt;}
.yb2{bottom:281.019333pt;}
.y93{bottom:283.088400pt;}
.y3e{bottom:283.370933pt;}
.y76{bottom:283.450933pt;}
.yda{bottom:284.077333pt;}
.y61{bottom:285.221733pt;}
.y129{bottom:288.105600pt;}
.y101{bottom:289.601600pt;}
.y19{bottom:294.962400pt;}
.y149{bottom:298.803067pt;}
.yb1{bottom:300.347333pt;}
.yd9{bottom:301.413333pt;}
.y92{bottom:302.416400pt;}
.y3d{bottom:302.698933pt;}
.y75{bottom:302.778933pt;}
.y60{bottom:304.949733pt;}
.y128{bottom:305.441600pt;}
.y100{bottom:307.465600pt;}
.y18{bottom:312.694400pt;}
.y148{bottom:318.675067pt;}
.yd8{bottom:318.749333pt;}
.yb0{bottom:319.675333pt;}
.y91{bottom:321.744400pt;}
.y3c{bottom:322.026933pt;}
.y74{bottom:322.106933pt;}
.y127{bottom:322.777600pt;}
.y5f{bottom:324.677733pt;}
.yff{bottom:325.329600pt;}
.yd7{bottom:336.085333pt;}
.y17{bottom:337.986800pt;}
.y147{bottom:338.541733pt;}
.y126{bottom:340.113600pt;}
.y90{bottom:341.072400pt;}
.y3b{bottom:341.354933pt;}
.y73{bottom:341.434933pt;}
.yfe{bottom:343.193600pt;}
.y5e{bottom:344.405733pt;}
.yaf{bottom:350.373867pt;}
.yd6{bottom:353.421333pt;}
.y125{bottom:357.449600pt;}
.y8f{bottom:360.400400pt;}
.y3a{bottom:360.682933pt;}
.y72{bottom:360.762933pt;}
.yfd{bottom:361.057600pt;}
.y5d{bottom:364.133733pt;}
.yae{bottom:366.501867pt;}
.yd5{bottom:370.757333pt;}
.y124{bottom:374.785600pt;}
.yfc{bottom:378.921600pt;}
.y8e{bottom:379.728400pt;}
.y39{bottom:380.010933pt;}
.y71{bottom:380.090933pt;}
.yad{bottom:382.629867pt;}
.y146{bottom:383.208400pt;}
.y5c{bottom:383.861733pt;}
.y16{bottom:384.219067pt;}
.yd4{bottom:388.093333pt;}
.y123{bottom:392.121600pt;}
.yfb{bottom:396.785600pt;}
.yac{bottom:398.757867pt;}
.y8d{bottom:399.056400pt;}
.y38{bottom:399.338933pt;}
.y70{bottom:399.418933pt;}
.y145{bottom:399.875067pt;}
.y15{bottom:401.951067pt;}
.y5b{bottom:403.589733pt;}
.yd3{bottom:405.429333pt;}
.y122{bottom:409.457600pt;}
.yfa{bottom:414.649600pt;}
.yab{bottom:414.885867pt;}
.y144{bottom:416.541733pt;}
.y8c{bottom:418.384400pt;}
.y37{bottom:418.666933pt;}
.y6f{bottom:418.746933pt;}
.y14{bottom:419.683067pt;}
.yd2{bottom:422.765333pt;}
.y5a{bottom:423.317733pt;}
.y121{bottom:426.793600pt;}
.yaa{bottom:431.013867pt;}
.yf9{bottom:432.513600pt;}
.y143{bottom:433.208400pt;}
.y13{bottom:437.415067pt;}
.y8b{bottom:437.712400pt;}
.y36{bottom:437.994933pt;}
.y6e{bottom:438.074933pt;}
.yd1{bottom:440.101333pt;}
.y59{bottom:443.045733pt;}
.y120{bottom:444.129600pt;}
.yf8{bottom:450.377600pt;}
.y12{bottom:455.147067pt;}
.y8a{bottom:457.040400pt;}
.y35{bottom:457.322933pt;}
.y6d{bottom:457.402933pt;}
.yd0{bottom:457.437333pt;}
.ya9{bottom:458.491200pt;}
.y11f{bottom:461.465600pt;}
.y58{bottom:462.773733pt;}
.yf7{bottom:468.241600pt;}
.y142{bottom:469.748400pt;}
.y11{bottom:472.879067pt;}
.ycf{bottom:474.773333pt;}
.y89{bottom:476.368400pt;}
.y34{bottom:476.650933pt;}
.y6c{bottom:476.730933pt;}
.ya8{bottom:477.819200pt;}
.y11e{bottom:478.801600pt;}
.y57{bottom:482.501733pt;}
.yf6{bottom:486.105600pt;}
.y141{bottom:488.008400pt;}
.yce{bottom:491.977333pt;}
.y88{bottom:495.696400pt;}
.y33{bottom:495.978933pt;}
.y6b{bottom:496.058933pt;}
.y11d{bottom:496.137600pt;}
.y10{bottom:498.171467pt;}
.y56{bottom:502.229733pt;}
.yf5{bottom:503.969600pt;}
.ya7{bottom:508.491067pt;}
.ycd{bottom:509.181333pt;}
.y11c{bottom:513.473600pt;}
.y87{bottom:515.024400pt;}
.y32{bottom:515.306933pt;}
.y6a{bottom:515.386933pt;}
.yf4{bottom:521.833600pt;}
.y55{bottom:521.957733pt;}
.ya6{bottom:524.624400pt;}
.y140{bottom:526.201600pt;}
.ycc{bottom:526.385333pt;}
.y11b{bottom:530.809600pt;}
.y31{bottom:534.714933pt;}
.yf3{bottom:539.697600pt;}
.ya5{bottom:540.757733pt;}
.ycb{bottom:543.589333pt;}
.yf{bottom:544.439467pt;}
.y13f{bottom:544.461600pt;}
.y86{bottom:545.717600pt;}
.y11a{bottom:548.145600pt;}
.y54{bottom:553.045733pt;}
.y30{bottom:554.042933pt;}
.ya4{bottom:556.891067pt;}
.yf2{bottom:557.561600pt;}
.yca{bottom:560.793333pt;}
.y85{bottom:561.845600pt;}
.ye{bottom:562.171467pt;}
.y13e{bottom:562.721600pt;}
.y119{bottom:565.481600pt;}
.y53{bottom:569.575067pt;}
.y2f{bottom:573.370933pt;}
.yf1{bottom:575.425600pt;}
.y84{bottom:577.973600pt;}
.yc9{bottom:577.997333pt;}
.yd{bottom:579.904800pt;}
.y13d{bottom:580.981600pt;}
.y118{bottom:582.817600pt;}
.ya3{bottom:584.395067pt;}
.y52{bottom:586.104400pt;}
.y2e{bottom:592.698933pt;}
.yf0{bottom:593.289600pt;}
.y83{bottom:594.101600pt;}
.yc8{bottom:595.201333pt;}
.yc{bottom:599.230133pt;}
.y13c{bottom:599.241600pt;}
.y117{bottom:600.153600pt;}
.ya2{bottom:600.523067pt;}
.y51{bottom:602.633733pt;}
.y82{bottom:610.235067pt;}
.yef{bottom:611.153600pt;}
.y2d{bottom:612.026933pt;}
.yc7{bottom:612.405333pt;}
.ya1{bottom:616.651067pt;}
.y116{bottom:617.489600pt;}
.y13b{bottom:617.501600pt;}
.y15a{bottom:617.521600pt;}
.y50{bottom:619.163067pt;}
.y81{bottom:626.368400pt;}
.yb{bottom:626.566133pt;}
.yee{bottom:629.017600pt;}
.yc6{bottom:629.609333pt;}
.y2c{bottom:631.354933pt;}
.ya0{bottom:632.779067pt;}
.y159{bottom:633.521600pt;}
.y115{bottom:634.825600pt;}
.y13a{bottom:635.761600pt;}
.y80{bottom:642.496400pt;}
.yc5{bottom:646.813333pt;}
.yed{bottom:646.881600pt;}
.y4f{bottom:647.082933pt;}
.y9f{bottom:648.907067pt;}
.y158{bottom:649.521600pt;}
.y2b{bottom:650.682933pt;}
.y114{bottom:652.161600pt;}
.ya{bottom:653.902133pt;}
.y139{bottom:654.021600pt;}
.yc4{bottom:664.017333pt;}
.yec{bottom:664.745600pt;}
.y9e{bottom:665.035067pt;}
.y157{bottom:665.521600pt;}
.y4e{bottom:666.810933pt;}
.y113{bottom:669.497600pt;}
.y2a{bottom:670.010933pt;}
.y138{bottom:672.281600pt;}
.y9d{bottom:681.163067pt;}
.yc3{bottom:681.221333pt;}
.y9{bottom:681.238133pt;}
.yeb{bottom:682.609600pt;}
.y4d{bottom:686.538933pt;}
.y112{bottom:686.833600pt;}
.y29{bottom:689.338933pt;}
.y137{bottom:690.541600pt;}
.yc2{bottom:698.425333pt;}
.yea{bottom:700.473600pt;}
.y156{bottom:700.721600pt;}
.y111{bottom:704.169600pt;}
.y4c{bottom:706.266933pt;}
.y28{bottom:708.666933pt;}
.yc1{bottom:715.629333pt;}
.y155{bottom:718.321600pt;}
.ye9{bottom:718.337600pt;}
.y110{bottom:721.505600pt;}
.y4b{bottom:725.994933pt;}
.y27{bottom:727.994933pt;}
.y136{bottom:728.675067pt;}
.y8{bottom:730.495067pt;}
.yc0{bottom:732.833333pt;}
.ye8{bottom:736.201600pt;}
.y10f{bottom:738.841600pt;}
.y4a{bottom:745.722933pt;}
.y7{bottom:746.628400pt;}
.y26{bottom:747.322933pt;}
.ybf{bottom:750.037333pt;}
.ye7{bottom:754.065600pt;}
.y154{bottom:755.121600pt;}
.y10e{bottom:756.177600pt;}
.y6{bottom:762.761733pt;}
.y49{bottom:765.450933pt;}
.y25{bottom:766.650933pt;}
.y135{bottom:766.797600pt;}
.ybe{bottom:767.241333pt;}
.ye6{bottom:771.929600pt;}
.y153{bottom:772.721600pt;}
.y10d{bottom:773.513600pt;}
.y5{bottom:778.895067pt;}
.ybd{bottom:784.445333pt;}
.y48{bottom:785.178933pt;}
.y24{bottom:785.978933pt;}
.y134{bottom:786.669600pt;}
.ye5{bottom:789.793600pt;}
.y152{bottom:790.321600pt;}
.y10c{bottom:790.849600pt;}
.ybc{bottom:801.649333pt;}
.y47{bottom:804.906933pt;}
.y23{bottom:805.306933pt;}
.y133{bottom:806.541600pt;}
.ye4{bottom:807.657600pt;}
.y151{bottom:807.921600pt;}
.y10b{bottom:808.185600pt;}
.y4{bottom:809.388400pt;}
.y22{bottom:824.634933pt;}
.y3{bottom:825.521600pt;}
.ybb{bottom:826.408400pt;}
.h2{height:25.757812pt;}
.h4{height:29.437500pt;}
.hb{height:31.700521pt;}
.h5{height:36.229167pt;}
.h3{height:36.796875pt;}
.hf{height:43.022135pt;}
.h6{height:45.286458pt;}
.he{height:47.550781pt;}
.hd{height:49.229135pt;}
.hc{height:49.250469pt;}
.h7{height:49.815104pt;}
.h9{height:54.343750pt;}
.h8{height:76.986979pt;}
.ha{height:159.903314pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x6{left:68.031467pt;}
.x7{left:86.919467pt;}
.x9{left:95.091867pt;}
.xb{left:105.825200pt;}
.xc{left:124.702800pt;}
.xa{left:127.262533pt;}
.xf{left:159.599600pt;}
.x8{left:214.186400pt;}
.x10{left:231.313600pt;}
.x4{left:235.680533pt;}
.x1{left:247.364400pt;}
.x2{left:424.605733pt;}
.x3{left:429.293333pt;}
.xe{left:472.213600pt;}
.xd{left:480.180933pt;}
.x5{left:542.257200pt;}
}




    .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; }
  