
    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_df01ef2c2514453dcfd10fdb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_5234752986954738dab2899e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_c535b03df0203689945e0db8.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_d2aa7735774d14c36fff73c8.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_023173d68b21e7a5eaa4eeac.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_950cd0970a106aabc357afce.woff')format("woff");}.ff6{font-family:ff6;line-height:0.899414;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_ac6853d79a4a1a3b9c6ecb7b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.851000;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_e87b126a20e38b44543fe709.woff')format("woff");}.ff8{font-family:ff8;line-height:0.822000;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:ff9;src:url('chunks/assets/font_7488ad1aca1ecb937d70d184.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_938cfab8873aa1948168be14.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_920403c0b9537eb9dd7f85da.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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:ffc;src:url('chunks/assets/font_3befb6972c7e374175c42f5f.woff')format("woff");}.ffc{font-family:ffc;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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f468db26a2b953d01d588cb7.woff')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a7f12e9ec5d97e571714c645.woff')format("woff");}.ffe{font-family:ffe;line-height:0.899414;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:fff;src:url('chunks/assets/font_dac1be96f609b6a04c7881a4.woff')format("woff");}.fff{font-family:fff;line-height:0.666504;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:ff10;src:url('chunks/assets/font_0409fb4d8b024efd41628773.woff')format("woff");}.ff10{font-family:ff10;line-height:0.837000;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);}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.v3{vertical-align:24.336000px;}
.ls39{letter-spacing:-7.200000px;}
.ls47{letter-spacing:-1.224000px;}
.ls48{letter-spacing:-1.152000px;}
.ls33{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-1.008000px;}
.ls3f{letter-spacing:-0.936000px;}
.ls29{letter-spacing:-0.864000px;}
.ls2b{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.648000px;}
.ls19{letter-spacing:-0.576000px;}
.ls23{letter-spacing:-0.504000px;}
.ls22{letter-spacing:-0.432000px;}
.ls11{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.300000px;}
.ls12{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.240000px;}
.ls13{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.072000px;}
.lsb{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.158400px;}
.ls46{letter-spacing:0.208800px;}
.ls8{letter-spacing:0.210000px;}
.ls24{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.226800px;}
.ls3b{letter-spacing:0.252000px;}
.ls20{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.576000px;}
.lsd{letter-spacing:0.648000px;}
.ls4{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.792000px;}
.ls6{letter-spacing:0.864000px;}
.ls21{letter-spacing:0.936000px;}
.ls2c{letter-spacing:1.008000px;}
.ls9{letter-spacing:1.080000px;}
.ls16{letter-spacing:1.224000px;}
.ls43{letter-spacing:1.512000px;}
.ls30{letter-spacing:1.706400px;}
.lsc{letter-spacing:1.728000px;}
.ls44{letter-spacing:2.196000px;}
.ls31{letter-spacing:2.304000px;}
.lse{letter-spacing:2.928000px;}
.ls2d{letter-spacing:3.528000px;}
.ls3d{letter-spacing:3.816000px;}
.ls38{letter-spacing:3.888000px;}
.ls4b{letter-spacing:4.272000px;}
.ls3c{letter-spacing:4.320000px;}
.ls1f{letter-spacing:4.392000px;}
.ls4a{letter-spacing:4.416000px;}
.ls2{letter-spacing:4.560000px;}
.ls49{letter-spacing:4.752000px;}
.ls32{letter-spacing:4.896000px;}
.ls1d{letter-spacing:5.112000px;}
.ls1e{letter-spacing:5.119200px;}
.ls36{letter-spacing:5.133600px;}
.ls3e{letter-spacing:5.284800px;}
.ls35{letter-spacing:5.616000px;}
.ls2f{letter-spacing:5.760000px;}
.ls34{letter-spacing:5.976000px;}
.ls42{letter-spacing:6.048000px;}
.ls37{letter-spacing:7.192800px;}
.ls0{letter-spacing:8.436000px;}
.ls3{letter-spacing:8.460000px;}
.ls27{letter-spacing:8.928000px;}
.ls41{letter-spacing:9.144000px;}
.ls45{letter-spacing:9.180000px;}
.ls40{letter-spacing:10.224000px;}
.ls28{letter-spacing:10.296000px;}
.ls2e{letter-spacing:10.440000px;}
.ls3a{letter-spacing:10.656000px;}
.ls1{letter-spacing:10.740000px;}
.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;}
}
.ws22{word-spacing:-72.000000px;}
.ws58{word-spacing:-25.320000px;}
.ws2e{word-spacing:-21.096000px;}
.ws1b{word-spacing:-20.592000px;}
.ws21{word-spacing:-20.232000px;}
.ws4d{word-spacing:-19.944000px;}
.ws43{word-spacing:-19.152000px;}
.ws2d{word-spacing:-18.576000px;}
.ws2f{word-spacing:-18.504000px;}
.ws2c{word-spacing:-18.432000px;}
.ws42{word-spacing:-18.216000px;}
.ws30{word-spacing:-18.144000px;}
.ws35{word-spacing:-18.072000px;}
.ws36{word-spacing:-18.000000px;}
.ws34{word-spacing:-17.928000px;}
.ws10{word-spacing:-17.856000px;}
.ws23{word-spacing:-17.784000px;}
.ws3c{word-spacing:-17.712000px;}
.ws51{word-spacing:-17.640000px;}
.ws3d{word-spacing:-17.568000px;}
.ws4c{word-spacing:-17.496000px;}
.ws20{word-spacing:-17.424000px;}
.ws52{word-spacing:-17.352000px;}
.ws4b{word-spacing:-17.208000px;}
.ws53{word-spacing:-17.136000px;}
.ws57{word-spacing:-17.064000px;}
.ws11{word-spacing:-14.162400px;}
.ws5c{word-spacing:-13.488000px;}
.ws12{word-spacing:-11.856000px;}
.ws5d{word-spacing:-11.802000px;}
.ws50{word-spacing:-10.656000px;}
.ws3f{word-spacing:-10.440000px;}
.ws38{word-spacing:-10.296000px;}
.ws55{word-spacing:-10.224000px;}
.ws0{word-spacing:-8.496000px;}
.ws5{word-spacing:-8.460000px;}
.ws47{word-spacing:-5.976000px;}
.ws41{word-spacing:-5.760000px;}
.ws48{word-spacing:-5.616000px;}
.ws5e{word-spacing:-4.272000px;}
.ws6{word-spacing:-1.728000px;}
.ws56{word-spacing:-1.512000px;}
.ws19{word-spacing:-1.224000px;}
.wsc{word-spacing:-1.080000px;}
.ws3e{word-spacing:-1.008000px;}
.ws24{word-spacing:-0.936000px;}
.wsa{word-spacing:-0.864000px;}
.wsb{word-spacing:-0.792000px;}
.ws7{word-spacing:-0.720000px;}
.ws13{word-spacing:-0.648000px;}
.wsd{word-spacing:-0.576000px;}
.ws1e{word-spacing:-0.504000px;}
.ws33{word-spacing:-0.432000px;}
.ws9{word-spacing:-0.360000px;}
.ws26{word-spacing:-0.288000px;}
.ws29{word-spacing:-0.216000px;}
.ws18{word-spacing:-0.144000px;}
.ws17{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws1a{word-spacing:0.072000px;}
.ws1f{word-spacing:0.144000px;}
.ws16{word-spacing:0.216000px;}
.wsf{word-spacing:0.240000px;}
.ws15{word-spacing:0.288000px;}
.ws14{word-spacing:0.360000px;}
.ws25{word-spacing:0.432000px;}
.ws27{word-spacing:0.504000px;}
.ws1c{word-spacing:0.576000px;}
.ws1d{word-spacing:0.648000px;}
.ws3b{word-spacing:0.720000px;}
.ws39{word-spacing:0.864000px;}
.ws54{word-spacing:0.936000px;}
.ws3a{word-spacing:1.008000px;}
.ws2b{word-spacing:1.080000px;}
.ws5a{word-spacing:1.152000px;}
.ws59{word-spacing:1.224000px;}
.ws5f{word-spacing:1.248000px;}
.ws8{word-spacing:1.368000px;}
.ws4{word-spacing:1.440000px;}
.ws3{word-spacing:1.800000px;}
.ws4e{word-spacing:2.232000px;}
.ws5b{word-spacing:2.976000px;}
.ws32{word-spacing:3.384000px;}
.ws4a{word-spacing:3.456000px;}
.ws28{word-spacing:3.600000px;}
.ws45{word-spacing:3.744000px;}
.ws49{word-spacing:3.960000px;}
.ws1{word-spacing:4.200000px;}
.ws2a{word-spacing:4.392000px;}
.ws44{word-spacing:4.464000px;}
.ws4f{word-spacing:7.200000px;}
.ws46{word-spacing:7.344000px;}
.ws37{word-spacing:8.640000px;}
.ws31{word-spacing:8.856000px;}
.ws40{word-spacing:8.928000px;}
.wse{word-spacing:146.196000px;}
._0{margin-left:-948.820800px;}
._18{margin-left:-20.359200px;}
._14{margin-left:-17.554800px;}
._17{margin-left:-15.110400px;}
._15{margin-left:-13.488000px;}
._e{margin-left:-11.973600px;}
._11{margin-left:-9.692400px;}
._16{margin-left:-8.643600px;}
._f{margin-left:-7.524000px;}
._1{margin-left:-5.964000px;}
._7{margin-left:-4.452000px;}
._4{margin-left:-2.964000px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._8{width:3.072000px;}
._9{width:4.406400px;}
._c{width:5.738400px;}
._6{width:6.768000px;}
._5{width:8.472000px;}
._d{width:9.616800px;}
._b{width:10.906800px;}
._a{width:12.378000px;}
._19{width:13.941600px;}
._10{width:31.646100px;}
._12{width:64.353600px;}
._13{width:614.460000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.700000px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:39.000000px;}
.y22{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.ydd{bottom:116.999850px;}
.y21{bottom:117.000000px;}
.yb8{bottom:117.078000px;}
.ya9{bottom:117.210300px;}
.y144{bottom:118.265850px;}
.ye1{bottom:118.878000px;}
.y128{bottom:120.299700px;}
.y80{bottom:121.207350px;}
.yb9{bottom:121.207500px;}
.y16f{bottom:122.021550px;}
.y106{bottom:122.393700px;}
.y20{bottom:132.000000px;}
.y143{bottom:133.265850px;}
.ydc{bottom:136.207350px;}
.y46{bottom:136.207500px;}
.yb7{bottom:138.984000px;}
.ya8{bottom:139.116300px;}
.y83{bottom:139.500000px;}
.ye0{bottom:140.334000px;}
.y16e{bottom:140.621550px;}
.y127{bottom:142.799700px;}
.y7f{bottom:143.707350px;}
.y105{bottom:144.749700px;}
.y1f{bottom:147.000000px;}
.y142{bottom:148.265850px;}
.y81{bottom:151.207500px;}
.y16d{bottom:159.221550px;}
.yb6{bottom:160.890000px;}
.ya7{bottom:161.022300px;}
.ydf{bottom:161.790000px;}
.y82{bottom:162.000000px;}
.y141{bottom:163.265850px;}
.y126{bottom:165.299700px;}
.y1e{bottom:166.207500px;}
.y104{bottom:167.105700px;}
.y45{bottom:174.246000px;}
.ydb{bottom:177.749850px;}
.y16c{bottom:177.821550px;}
.y140{bottom:178.265850px;}
.yb5{bottom:182.796000px;}
.ya6{bottom:182.928300px;}
.yde{bottom:183.246000px;}
.y67{bottom:184.500000px;}
.y7e{bottom:185.423850px;}
.y125{bottom:187.799700px;}
.y103{bottom:189.461700px;}
.y13f{bottom:193.265850px;}
.y44{bottom:197.052000px;}
.yda{bottom:199.799850px;}
.y1d{bottom:202.718550px;}
.yb4{bottom:204.702000px;}
.ya5{bottom:204.834300px;}
.y66{bottom:207.000000px;}
.y16b{bottom:207.521550px;}
.y7d{bottom:208.229850px;}
.y13e{bottom:208.265850px;}
.y124{bottom:210.299700px;}
.y102{bottom:211.817700px;}
.y43{bottom:219.858000px;}
.yd9{bottom:221.849850px;}
.y13d{bottom:223.265850px;}
.y1c{bottom:225.218550px;}
.yb3{bottom:226.608000px;}
.ya4{bottom:226.740300px;}
.y65{bottom:229.500000px;}
.y7c{bottom:231.035850px;}
.y123{bottom:232.799700px;}
.y101{bottom:234.173700px;}
.y13c{bottom:238.265850px;}
.y42{bottom:242.664000px;}
.yd8{bottom:243.899850px;}
.y1b{bottom:247.718550px;}
.y16a{bottom:248.471550px;}
.yb2{bottom:248.514000px;}
.ya3{bottom:248.646300px;}
.y64{bottom:252.000000px;}
.y13b{bottom:253.265850px;}
.y7b{bottom:253.841850px;}
.y122{bottom:255.299700px;}
.y100{bottom:256.529700px;}
.y41{bottom:265.470000px;}
.yd7{bottom:265.949850px;}
.y169{bottom:267.071550px;}
.y13a{bottom:268.265850px;}
.y1a{bottom:270.218550px;}
.yb1{bottom:270.420000px;}
.ya2{bottom:270.552300px;}
.y63{bottom:274.500000px;}
.y7a{bottom:276.647850px;}
.y121{bottom:277.799700px;}
.yff{bottom:278.885700px;}
.y139{bottom:283.265850px;}
.y168{bottom:285.671550px;}
.yd6{bottom:287.999850px;}
.y40{bottom:288.276000px;}
.yb0{bottom:292.326000px;}
.ya1{bottom:292.458300px;}
.y19{bottom:292.718550px;}
.y62{bottom:297.000000px;}
.y138{bottom:298.265850px;}
.y79{bottom:299.453850px;}
.y120{bottom:300.299700px;}
.yfe{bottom:301.241700px;}
.y167{bottom:304.271550px;}
.yd5{bottom:310.049850px;}
.y3f{bottom:311.082000px;}
.y137{bottom:313.265850px;}
.yaf{bottom:314.232000px;}
.ya0{bottom:314.364300px;}
.y18{bottom:315.218550px;}
.y61{bottom:319.500000px;}
.y78{bottom:322.259850px;}
.y11f{bottom:322.799700px;}
.y166{bottom:322.871550px;}
.yfd{bottom:323.597700px;}
.y136{bottom:328.265850px;}
.yd4{bottom:332.099850px;}
.y3e{bottom:333.888000px;}
.yae{bottom:336.138000px;}
.y9f{bottom:336.270300px;}
.y17{bottom:337.718550px;}
.y165{bottom:341.471550px;}
.y60{bottom:342.000000px;}
.y135{bottom:343.265850px;}
.y77{bottom:345.065850px;}
.y11e{bottom:345.299700px;}
.yfc{bottom:345.953700px;}
.yd3{bottom:354.150000px;}
.y3d{bottom:356.694000px;}
.yad{bottom:358.044000px;}
.y9e{bottom:358.176300px;}
.y134{bottom:358.265850px;}
.y164{bottom:360.071550px;}
.y16{bottom:360.218550px;}
.y5f{bottom:364.500000px;}
.y11d{bottom:367.799700px;}
.y76{bottom:367.871850px;}
.yfb{bottom:368.309700px;}
.y133{bottom:373.265850px;}
.yd2{bottom:376.200000px;}
.y163{bottom:378.671550px;}
.y3c{bottom:379.356000px;}
.yac{bottom:379.950000px;}
.y9d{bottom:380.082300px;}
.y15{bottom:382.718550px;}
.y5e{bottom:387.000000px;}
.y132{bottom:388.265850px;}
.y11c{bottom:390.299700px;}
.yfa{bottom:390.665700px;}
.y75{bottom:390.677850px;}
.y162{bottom:397.271550px;}
.yd1{bottom:398.250000px;}
.yab{bottom:401.856000px;}
.y9c{bottom:401.988300px;}
.y3b{bottom:402.162000px;}
.y131{bottom:403.265850px;}
.y14{bottom:405.218550px;}
.y5d{bottom:409.500000px;}
.y11b{bottom:412.799700px;}
.yf9{bottom:413.021700px;}
.y74{bottom:413.483850px;}
.y161{bottom:415.871550px;}
.y130{bottom:418.265850px;}
.yd0{bottom:420.300000px;}
.yaa{bottom:423.762000px;}
.y9b{bottom:423.894300px;}
.y3a{bottom:424.968000px;}
.y13{bottom:427.718550px;}
.y5c{bottom:432.000000px;}
.y12f{bottom:433.265850px;}
.y160{bottom:434.471550px;}
.yf8{bottom:435.377700px;}
.y73{bottom:436.289850px;}
.ycf{bottom:442.350000px;}
.y9a{bottom:445.668000px;}
.y39{bottom:447.774000px;}
.y12e{bottom:448.265850px;}
.y12{bottom:450.218550px;}
.y15f{bottom:453.071550px;}
.y5b{bottom:454.500000px;}
.y11a{bottom:457.674000px;}
.yf7{bottom:457.733700px;}
.y72{bottom:459.095850px;}
.y12d{bottom:463.265850px;}
.yce{bottom:464.400000px;}
.y99{bottom:467.574000px;}
.y38{bottom:470.580000px;}
.y15e{bottom:471.671550px;}
.y11{bottom:472.718550px;}
.y5a{bottom:477.000000px;}
.y12c{bottom:478.265850px;}
.y119{bottom:480.030000px;}
.yf6{bottom:480.089700px;}
.ycd{bottom:486.450000px;}
.y98{bottom:489.480000px;}
.y15d{bottom:490.271550px;}
.y12b{bottom:493.265850px;}
.y37{bottom:493.386000px;}
.y71{bottom:493.439850px;}
.y10{bottom:495.218550px;}
.y59{bottom:499.500000px;}
.y118{bottom:502.386000px;}
.yf5{bottom:502.445700px;}
.y12a{bottom:508.265850px;}
.ycc{bottom:508.500000px;}
.y15c{bottom:508.871550px;}
.y97{bottom:511.386000px;}
.y36{bottom:516.192000px;}
.y70{bottom:516.245850px;}
.yf{bottom:517.718550px;}
.y58{bottom:522.000000px;}
.y117{bottom:524.742000px;}
.yf4{bottom:524.801700px;}
.y15b{bottom:527.471550px;}
.y129{bottom:529.649850px;}
.y96{bottom:533.292000px;}
.y35{bottom:538.998000px;}
.y6f{bottom:539.051850px;}
.ye{bottom:540.218550px;}
.y57{bottom:544.500000px;}
.y15a{bottom:546.071550px;}
.y116{bottom:547.098000px;}
.yf3{bottom:547.157700px;}
.ycb{bottom:552.600000px;}
.y95{bottom:555.198000px;}
.y34{bottom:561.804000px;}
.y6e{bottom:561.857850px;}
.yd{bottom:562.718550px;}
.y159{bottom:564.671550px;}
.y56{bottom:567.000000px;}
.y115{bottom:569.454000px;}
.yf2{bottom:569.513700px;}
.yca{bottom:574.650000px;}
.y94{bottom:577.104000px;}
.y158{bottom:583.271550px;}
.y33{bottom:584.610000px;}
.y6d{bottom:584.663850px;}
.yc{bottom:585.218550px;}
.y55{bottom:589.500000px;}
.y114{bottom:591.810000px;}
.yf1{bottom:591.869700px;}
.yc9{bottom:596.700000px;}
.y93{bottom:599.010000px;}
.y157{bottom:601.871550px;}
.y32{bottom:607.416000px;}
.y6c{bottom:607.469850px;}
.yb{bottom:607.718550px;}
.y54{bottom:612.000000px;}
.y113{bottom:614.166000px;}
.yf0{bottom:614.225700px;}
.yc8{bottom:618.750000px;}
.y156{bottom:620.471550px;}
.y92{bottom:620.916000px;}
.ya{bottom:630.218550px;}
.y31{bottom:630.222000px;}
.y6b{bottom:630.275850px;}
.y53{bottom:634.500000px;}
.y112{bottom:636.522000px;}
.yef{bottom:636.581700px;}
.y155{bottom:639.071550px;}
.yc7{bottom:640.800000px;}
.y91{bottom:642.822000px;}
.y9{bottom:652.718550px;}
.y30{bottom:653.028000px;}
.y6a{bottom:653.081850px;}
.y52{bottom:657.000000px;}
.y154{bottom:657.671550px;}
.y111{bottom:658.878000px;}
.yee{bottom:658.937700px;}
.yc6{bottom:662.850000px;}
.y90{bottom:664.728000px;}
.y2f{bottom:675.834000px;}
.y69{bottom:675.887850px;}
.y153{bottom:676.271550px;}
.y51{bottom:679.500000px;}
.y110{bottom:681.234000px;}
.yed{bottom:681.293700px;}
.yc5{bottom:684.900000px;}
.y8f{bottom:686.634000px;}
.y152{bottom:694.871550px;}
.y8{bottom:697.718550px;}
.y2e{bottom:698.640000px;}
.y68{bottom:698.693850px;}
.y50{bottom:702.000000px;}
.y10f{bottom:703.590000px;}
.yec{bottom:703.596000px;}
.yc4{bottom:706.950000px;}
.y8e{bottom:708.540000px;}
.y151{bottom:713.471550px;}
.y2d{bottom:721.446000px;}
.y4f{bottom:724.500000px;}
.y10e{bottom:725.946000px;}
.yeb{bottom:725.952000px;}
.yc3{bottom:729.000000px;}
.y8d{bottom:730.446000px;}
.y150{bottom:738.462000px;}
.y7{bottom:739.854300px;}
.y2c{bottom:744.252000px;}
.y4e{bottom:747.000000px;}
.y10d{bottom:748.302000px;}
.yea{bottom:748.308000px;}
.yc2{bottom:751.050000px;}
.y8c{bottom:752.352000px;}
.y14f{bottom:756.318000px;}
.y6{bottom:762.354300px;}
.y2b{bottom:767.058000px;}
.y4d{bottom:769.500000px;}
.y10c{bottom:770.658000px;}
.ye9{bottom:770.664000px;}
.yc1{bottom:773.100000px;}
.y8b{bottom:774.258000px;}
.y2a{bottom:789.864000px;}
.y4c{bottom:792.000000px;}
.y10b{bottom:793.014000px;}
.ye8{bottom:793.020000px;}
.yc0{bottom:795.150000px;}
.y8a{bottom:796.164000px;}
.y14e{bottom:801.018000px;}
.y29{bottom:812.670000px;}
.y4b{bottom:814.500000px;}
.y10a{bottom:815.370000px;}
.ye7{bottom:815.376000px;}
.y14d{bottom:815.874000px;}
.ybf{bottom:817.200000px;}
.y89{bottom:818.070000px;}
.y5{bottom:829.500000px;}
.y14c{bottom:830.718000px;}
.y28{bottom:835.476000px;}
.y4a{bottom:837.000000px;}
.y109{bottom:837.726000px;}
.ye6{bottom:837.732000px;}
.ybe{bottom:839.250000px;}
.y88{bottom:839.976000px;}
.y14b{bottom:845.562000px;}
.y27{bottom:858.282000px;}
.y4{bottom:859.500000px;}
.y108{bottom:860.082000px;}
.ye5{bottom:860.088000px;}
.y14a{bottom:860.406000px;}
.ybd{bottom:861.300000px;}
.y87{bottom:861.882000px;}
.y149{bottom:875.262000px;}
.y26{bottom:881.088000px;}
.y49{bottom:882.000000px;}
.y107{bottom:882.438000px;}
.ye4{bottom:882.444000px;}
.ybc{bottom:883.350000px;}
.y86{bottom:883.788000px;}
.y3{bottom:889.500000px;}
.y148{bottom:890.106000px;}
.y25{bottom:903.894000px;}
.y48{bottom:904.500000px;}
.ye3{bottom:904.794000px;}
.y147{bottom:904.950000px;}
.ybb{bottom:905.400000px;}
.y85{bottom:905.694000px;}
.y2{bottom:919.500000px;}
.y146{bottom:919.806000px;}
.y24{bottom:926.700000px;}
.y47{bottom:927.000000px;}
.ye2{bottom:927.150000px;}
.yba{bottom:927.450000px;}
.y84{bottom:927.600000px;}
.y145{bottom:934.650000px;}
.h6{height:30.313623px;}
.hf{height:39.072000px;}
.h10{height:39.792000px;}
.h1{height:39.990234px;}
.h7{height:40.757812px;}
.hb{height:47.988281px;}
.h3{height:50.580000px;}
.h5{height:50.947266px;}
.h11{height:55.463086px;}
.h4{height:61.136719px;}
.h9{height:66.555703px;}
.hd{height:66.579703px;}
.he{height:66.770503px;}
.ha{height:66.771103px;}
.hc{height:67.084903px;}
.h8{height:67.131703px;}
.h2{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x7{left:82.386000px;}
.x2{left:112.500000px;}
.x3{left:127.381950px;}
.x6{left:135.000000px;}
.x8{left:180.518250px;}
.x5{left:292.320000px;}
.x1{left:625.781250px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.v3{vertical-align:21.632000pt;}
.ls39{letter-spacing:-6.400000pt;}
.ls47{letter-spacing:-1.088000pt;}
.ls48{letter-spacing:-1.024000pt;}
.ls33{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.896000pt;}
.ls3f{letter-spacing:-0.832000pt;}
.ls29{letter-spacing:-0.768000pt;}
.ls2b{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.576000pt;}
.ls19{letter-spacing:-0.512000pt;}
.ls23{letter-spacing:-0.448000pt;}
.ls22{letter-spacing:-0.384000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls12{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.213333pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.140800pt;}
.ls46{letter-spacing:0.185600pt;}
.ls8{letter-spacing:0.186667pt;}
.ls24{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.201600pt;}
.ls3b{letter-spacing:0.224000pt;}
.ls20{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.512000pt;}
.lsd{letter-spacing:0.576000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.704000pt;}
.ls6{letter-spacing:0.768000pt;}
.ls21{letter-spacing:0.832000pt;}
.ls2c{letter-spacing:0.896000pt;}
.ls9{letter-spacing:0.960000pt;}
.ls16{letter-spacing:1.088000pt;}
.ls43{letter-spacing:1.344000pt;}
.ls30{letter-spacing:1.516800pt;}
.lsc{letter-spacing:1.536000pt;}
.ls44{letter-spacing:1.952000pt;}
.ls31{letter-spacing:2.048000pt;}
.lse{letter-spacing:2.602667pt;}
.ls2d{letter-spacing:3.136000pt;}
.ls3d{letter-spacing:3.392000pt;}
.ls38{letter-spacing:3.456000pt;}
.ls4b{letter-spacing:3.797333pt;}
.ls3c{letter-spacing:3.840000pt;}
.ls1f{letter-spacing:3.904000pt;}
.ls4a{letter-spacing:3.925333pt;}
.ls2{letter-spacing:4.053333pt;}
.ls49{letter-spacing:4.224000pt;}
.ls32{letter-spacing:4.352000pt;}
.ls1d{letter-spacing:4.544000pt;}
.ls1e{letter-spacing:4.550400pt;}
.ls36{letter-spacing:4.563200pt;}
.ls3e{letter-spacing:4.697600pt;}
.ls35{letter-spacing:4.992000pt;}
.ls2f{letter-spacing:5.120000pt;}
.ls34{letter-spacing:5.312000pt;}
.ls42{letter-spacing:5.376000pt;}
.ls37{letter-spacing:6.393600pt;}
.ls0{letter-spacing:7.498667pt;}
.ls3{letter-spacing:7.520000pt;}
.ls27{letter-spacing:7.936000pt;}
.ls41{letter-spacing:8.128000pt;}
.ls45{letter-spacing:8.160000pt;}
.ls40{letter-spacing:9.088000pt;}
.ls28{letter-spacing:9.152000pt;}
.ls2e{letter-spacing:9.280000pt;}
.ls3a{letter-spacing:9.472000pt;}
.ls1{letter-spacing:9.546667pt;}
.ws22{word-spacing:-64.000000pt;}
.ws58{word-spacing:-22.506667pt;}
.ws2e{word-spacing:-18.752000pt;}
.ws1b{word-spacing:-18.304000pt;}
.ws21{word-spacing:-17.984000pt;}
.ws4d{word-spacing:-17.728000pt;}
.ws43{word-spacing:-17.024000pt;}
.ws2d{word-spacing:-16.512000pt;}
.ws2f{word-spacing:-16.448000pt;}
.ws2c{word-spacing:-16.384000pt;}
.ws42{word-spacing:-16.192000pt;}
.ws30{word-spacing:-16.128000pt;}
.ws35{word-spacing:-16.064000pt;}
.ws36{word-spacing:-16.000000pt;}
.ws34{word-spacing:-15.936000pt;}
.ws10{word-spacing:-15.872000pt;}
.ws23{word-spacing:-15.808000pt;}
.ws3c{word-spacing:-15.744000pt;}
.ws51{word-spacing:-15.680000pt;}
.ws3d{word-spacing:-15.616000pt;}
.ws4c{word-spacing:-15.552000pt;}
.ws20{word-spacing:-15.488000pt;}
.ws52{word-spacing:-15.424000pt;}
.ws4b{word-spacing:-15.296000pt;}
.ws53{word-spacing:-15.232000pt;}
.ws57{word-spacing:-15.168000pt;}
.ws11{word-spacing:-12.588800pt;}
.ws5c{word-spacing:-11.989333pt;}
.ws12{word-spacing:-10.538667pt;}
.ws5d{word-spacing:-10.490667pt;}
.ws50{word-spacing:-9.472000pt;}
.ws3f{word-spacing:-9.280000pt;}
.ws38{word-spacing:-9.152000pt;}
.ws55{word-spacing:-9.088000pt;}
.ws0{word-spacing:-7.552000pt;}
.ws5{word-spacing:-7.520000pt;}
.ws47{word-spacing:-5.312000pt;}
.ws41{word-spacing:-5.120000pt;}
.ws48{word-spacing:-4.992000pt;}
.ws5e{word-spacing:-3.797333pt;}
.ws6{word-spacing:-1.536000pt;}
.ws56{word-spacing:-1.344000pt;}
.ws19{word-spacing:-1.088000pt;}
.wsc{word-spacing:-0.960000pt;}
.ws3e{word-spacing:-0.896000pt;}
.ws24{word-spacing:-0.832000pt;}
.wsa{word-spacing:-0.768000pt;}
.wsb{word-spacing:-0.704000pt;}
.ws7{word-spacing:-0.640000pt;}
.ws13{word-spacing:-0.576000pt;}
.wsd{word-spacing:-0.512000pt;}
.ws1e{word-spacing:-0.448000pt;}
.ws33{word-spacing:-0.384000pt;}
.ws9{word-spacing:-0.320000pt;}
.ws26{word-spacing:-0.256000pt;}
.ws29{word-spacing:-0.192000pt;}
.ws18{word-spacing:-0.128000pt;}
.ws17{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.064000pt;}
.ws1f{word-spacing:0.128000pt;}
.ws16{word-spacing:0.192000pt;}
.wsf{word-spacing:0.213333pt;}
.ws15{word-spacing:0.256000pt;}
.ws14{word-spacing:0.320000pt;}
.ws25{word-spacing:0.384000pt;}
.ws27{word-spacing:0.448000pt;}
.ws1c{word-spacing:0.512000pt;}
.ws1d{word-spacing:0.576000pt;}
.ws3b{word-spacing:0.640000pt;}
.ws39{word-spacing:0.768000pt;}
.ws54{word-spacing:0.832000pt;}
.ws3a{word-spacing:0.896000pt;}
.ws2b{word-spacing:0.960000pt;}
.ws5a{word-spacing:1.024000pt;}
.ws59{word-spacing:1.088000pt;}
.ws5f{word-spacing:1.109333pt;}
.ws8{word-spacing:1.216000pt;}
.ws4{word-spacing:1.280000pt;}
.ws3{word-spacing:1.600000pt;}
.ws4e{word-spacing:1.984000pt;}
.ws5b{word-spacing:2.645333pt;}
.ws32{word-spacing:3.008000pt;}
.ws4a{word-spacing:3.072000pt;}
.ws28{word-spacing:3.200000pt;}
.ws45{word-spacing:3.328000pt;}
.ws49{word-spacing:3.520000pt;}
.ws1{word-spacing:3.733333pt;}
.ws2a{word-spacing:3.904000pt;}
.ws44{word-spacing:3.968000pt;}
.ws4f{word-spacing:6.400000pt;}
.ws46{word-spacing:6.528000pt;}
.ws37{word-spacing:7.680000pt;}
.ws31{word-spacing:7.872000pt;}
.ws40{word-spacing:7.936000pt;}
.wse{word-spacing:129.952000pt;}
._0{margin-left:-843.396267pt;}
._18{margin-left:-18.097067pt;}
._14{margin-left:-15.604267pt;}
._17{margin-left:-13.431467pt;}
._15{margin-left:-11.989333pt;}
._e{margin-left:-10.643200pt;}
._11{margin-left:-8.615467pt;}
._16{margin-left:-7.683200pt;}
._f{margin-left:-6.688000pt;}
._1{margin-left:-5.301333pt;}
._7{margin-left:-3.957333pt;}
._4{margin-left:-2.634667pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._8{width:2.730667pt;}
._9{width:3.916800pt;}
._c{width:5.100800pt;}
._6{width:6.016000pt;}
._5{width:7.530667pt;}
._d{width:8.548267pt;}
._b{width:9.694933pt;}
._a{width:11.002667pt;}
._19{width:12.392533pt;}
._10{width:28.129867pt;}
._12{width:57.203200pt;}
._13{width:546.186667pt;}
.fs5{font-size:31.733333pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:34.666667pt;}
.y22{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.ydd{bottom:103.999867pt;}
.y21{bottom:104.000000pt;}
.yb8{bottom:104.069333pt;}
.ya9{bottom:104.186933pt;}
.y144{bottom:105.125200pt;}
.ye1{bottom:105.669333pt;}
.y128{bottom:106.933067pt;}
.y80{bottom:107.739867pt;}
.yb9{bottom:107.740000pt;}
.y16f{bottom:108.463600pt;}
.y106{bottom:108.794400pt;}
.y20{bottom:117.333333pt;}
.y143{bottom:118.458533pt;}
.ydc{bottom:121.073200pt;}
.y46{bottom:121.073333pt;}
.yb7{bottom:123.541333pt;}
.ya8{bottom:123.658933pt;}
.y83{bottom:124.000000pt;}
.ye0{bottom:124.741333pt;}
.y16e{bottom:124.996933pt;}
.y127{bottom:126.933067pt;}
.y7f{bottom:127.739867pt;}
.y105{bottom:128.666400pt;}
.y1f{bottom:130.666667pt;}
.y142{bottom:131.791867pt;}
.y81{bottom:134.406667pt;}
.y16d{bottom:141.530267pt;}
.yb6{bottom:143.013333pt;}
.ya7{bottom:143.130933pt;}
.ydf{bottom:143.813333pt;}
.y82{bottom:144.000000pt;}
.y141{bottom:145.125200pt;}
.y126{bottom:146.933067pt;}
.y1e{bottom:147.740000pt;}
.y104{bottom:148.538400pt;}
.y45{bottom:154.885333pt;}
.ydb{bottom:157.999867pt;}
.y16c{bottom:158.063600pt;}
.y140{bottom:158.458533pt;}
.yb5{bottom:162.485333pt;}
.ya6{bottom:162.602933pt;}
.yde{bottom:162.885333pt;}
.y67{bottom:164.000000pt;}
.y7e{bottom:164.821200pt;}
.y125{bottom:166.933067pt;}
.y103{bottom:168.410400pt;}
.y13f{bottom:171.791867pt;}
.y44{bottom:175.157333pt;}
.yda{bottom:177.599867pt;}
.y1d{bottom:180.194267pt;}
.yb4{bottom:181.957333pt;}
.ya5{bottom:182.074933pt;}
.y66{bottom:184.000000pt;}
.y16b{bottom:184.463600pt;}
.y7d{bottom:185.093200pt;}
.y13e{bottom:185.125200pt;}
.y124{bottom:186.933067pt;}
.y102{bottom:188.282400pt;}
.y43{bottom:195.429333pt;}
.yd9{bottom:197.199867pt;}
.y13d{bottom:198.458533pt;}
.y1c{bottom:200.194267pt;}
.yb3{bottom:201.429333pt;}
.ya4{bottom:201.546933pt;}
.y65{bottom:204.000000pt;}
.y7c{bottom:205.365200pt;}
.y123{bottom:206.933067pt;}
.y101{bottom:208.154400pt;}
.y13c{bottom:211.791867pt;}
.y42{bottom:215.701333pt;}
.yd8{bottom:216.799867pt;}
.y1b{bottom:220.194267pt;}
.y16a{bottom:220.863600pt;}
.yb2{bottom:220.901333pt;}
.ya3{bottom:221.018933pt;}
.y64{bottom:224.000000pt;}
.y13b{bottom:225.125200pt;}
.y7b{bottom:225.637200pt;}
.y122{bottom:226.933067pt;}
.y100{bottom:228.026400pt;}
.y41{bottom:235.973333pt;}
.yd7{bottom:236.399867pt;}
.y169{bottom:237.396933pt;}
.y13a{bottom:238.458533pt;}
.y1a{bottom:240.194267pt;}
.yb1{bottom:240.373333pt;}
.ya2{bottom:240.490933pt;}
.y63{bottom:244.000000pt;}
.y7a{bottom:245.909200pt;}
.y121{bottom:246.933067pt;}
.yff{bottom:247.898400pt;}
.y139{bottom:251.791867pt;}
.y168{bottom:253.930267pt;}
.yd6{bottom:255.999867pt;}
.y40{bottom:256.245333pt;}
.yb0{bottom:259.845333pt;}
.ya1{bottom:259.962933pt;}
.y19{bottom:260.194267pt;}
.y62{bottom:264.000000pt;}
.y138{bottom:265.125200pt;}
.y79{bottom:266.181200pt;}
.y120{bottom:266.933067pt;}
.yfe{bottom:267.770400pt;}
.y167{bottom:270.463600pt;}
.yd5{bottom:275.599867pt;}
.y3f{bottom:276.517333pt;}
.y137{bottom:278.458533pt;}
.yaf{bottom:279.317333pt;}
.ya0{bottom:279.434933pt;}
.y18{bottom:280.194267pt;}
.y61{bottom:284.000000pt;}
.y78{bottom:286.453200pt;}
.y11f{bottom:286.933067pt;}
.y166{bottom:286.996933pt;}
.yfd{bottom:287.642400pt;}
.y136{bottom:291.791867pt;}
.yd4{bottom:295.199867pt;}
.y3e{bottom:296.789333pt;}
.yae{bottom:298.789333pt;}
.y9f{bottom:298.906933pt;}
.y17{bottom:300.194267pt;}
.y165{bottom:303.530267pt;}
.y60{bottom:304.000000pt;}
.y135{bottom:305.125200pt;}
.y77{bottom:306.725200pt;}
.y11e{bottom:306.933067pt;}
.yfc{bottom:307.514400pt;}
.yd3{bottom:314.800000pt;}
.y3d{bottom:317.061333pt;}
.yad{bottom:318.261333pt;}
.y9e{bottom:318.378933pt;}
.y134{bottom:318.458533pt;}
.y164{bottom:320.063600pt;}
.y16{bottom:320.194267pt;}
.y5f{bottom:324.000000pt;}
.y11d{bottom:326.933067pt;}
.y76{bottom:326.997200pt;}
.yfb{bottom:327.386400pt;}
.y133{bottom:331.791867pt;}
.yd2{bottom:334.400000pt;}
.y163{bottom:336.596933pt;}
.y3c{bottom:337.205333pt;}
.yac{bottom:337.733333pt;}
.y9d{bottom:337.850933pt;}
.y15{bottom:340.194267pt;}
.y5e{bottom:344.000000pt;}
.y132{bottom:345.125200pt;}
.y11c{bottom:346.933067pt;}
.yfa{bottom:347.258400pt;}
.y75{bottom:347.269200pt;}
.y162{bottom:353.130267pt;}
.yd1{bottom:354.000000pt;}
.yab{bottom:357.205333pt;}
.y9c{bottom:357.322933pt;}
.y3b{bottom:357.477333pt;}
.y131{bottom:358.458533pt;}
.y14{bottom:360.194267pt;}
.y5d{bottom:364.000000pt;}
.y11b{bottom:366.933067pt;}
.yf9{bottom:367.130400pt;}
.y74{bottom:367.541200pt;}
.y161{bottom:369.663600pt;}
.y130{bottom:371.791867pt;}
.yd0{bottom:373.600000pt;}
.yaa{bottom:376.677333pt;}
.y9b{bottom:376.794933pt;}
.y3a{bottom:377.749333pt;}
.y13{bottom:380.194267pt;}
.y5c{bottom:384.000000pt;}
.y12f{bottom:385.125200pt;}
.y160{bottom:386.196933pt;}
.yf8{bottom:387.002400pt;}
.y73{bottom:387.813200pt;}
.ycf{bottom:393.200000pt;}
.y9a{bottom:396.149333pt;}
.y39{bottom:398.021333pt;}
.y12e{bottom:398.458533pt;}
.y12{bottom:400.194267pt;}
.y15f{bottom:402.730267pt;}
.y5b{bottom:404.000000pt;}
.y11a{bottom:406.821333pt;}
.yf7{bottom:406.874400pt;}
.y72{bottom:408.085200pt;}
.y12d{bottom:411.791867pt;}
.yce{bottom:412.800000pt;}
.y99{bottom:415.621333pt;}
.y38{bottom:418.293333pt;}
.y15e{bottom:419.263600pt;}
.y11{bottom:420.194267pt;}
.y5a{bottom:424.000000pt;}
.y12c{bottom:425.125200pt;}
.y119{bottom:426.693333pt;}
.yf6{bottom:426.746400pt;}
.ycd{bottom:432.400000pt;}
.y98{bottom:435.093333pt;}
.y15d{bottom:435.796933pt;}
.y12b{bottom:438.458533pt;}
.y37{bottom:438.565333pt;}
.y71{bottom:438.613200pt;}
.y10{bottom:440.194267pt;}
.y59{bottom:444.000000pt;}
.y118{bottom:446.565333pt;}
.yf5{bottom:446.618400pt;}
.y12a{bottom:451.791867pt;}
.ycc{bottom:452.000000pt;}
.y15c{bottom:452.330267pt;}
.y97{bottom:454.565333pt;}
.y36{bottom:458.837333pt;}
.y70{bottom:458.885200pt;}
.yf{bottom:460.194267pt;}
.y58{bottom:464.000000pt;}
.y117{bottom:466.437333pt;}
.yf4{bottom:466.490400pt;}
.y15b{bottom:468.863600pt;}
.y129{bottom:470.799867pt;}
.y96{bottom:474.037333pt;}
.y35{bottom:479.109333pt;}
.y6f{bottom:479.157200pt;}
.ye{bottom:480.194267pt;}
.y57{bottom:484.000000pt;}
.y15a{bottom:485.396933pt;}
.y116{bottom:486.309333pt;}
.yf3{bottom:486.362400pt;}
.ycb{bottom:491.200000pt;}
.y95{bottom:493.509333pt;}
.y34{bottom:499.381333pt;}
.y6e{bottom:499.429200pt;}
.yd{bottom:500.194267pt;}
.y159{bottom:501.930267pt;}
.y56{bottom:504.000000pt;}
.y115{bottom:506.181333pt;}
.yf2{bottom:506.234400pt;}
.yca{bottom:510.800000pt;}
.y94{bottom:512.981333pt;}
.y158{bottom:518.463600pt;}
.y33{bottom:519.653333pt;}
.y6d{bottom:519.701200pt;}
.yc{bottom:520.194267pt;}
.y55{bottom:524.000000pt;}
.y114{bottom:526.053333pt;}
.yf1{bottom:526.106400pt;}
.yc9{bottom:530.400000pt;}
.y93{bottom:532.453333pt;}
.y157{bottom:534.996933pt;}
.y32{bottom:539.925333pt;}
.y6c{bottom:539.973200pt;}
.yb{bottom:540.194267pt;}
.y54{bottom:544.000000pt;}
.y113{bottom:545.925333pt;}
.yf0{bottom:545.978400pt;}
.yc8{bottom:550.000000pt;}
.y156{bottom:551.530267pt;}
.y92{bottom:551.925333pt;}
.ya{bottom:560.194267pt;}
.y31{bottom:560.197333pt;}
.y6b{bottom:560.245200pt;}
.y53{bottom:564.000000pt;}
.y112{bottom:565.797333pt;}
.yef{bottom:565.850400pt;}
.y155{bottom:568.063600pt;}
.yc7{bottom:569.600000pt;}
.y91{bottom:571.397333pt;}
.y9{bottom:580.194267pt;}
.y30{bottom:580.469333pt;}
.y6a{bottom:580.517200pt;}
.y52{bottom:584.000000pt;}
.y154{bottom:584.596933pt;}
.y111{bottom:585.669333pt;}
.yee{bottom:585.722400pt;}
.yc6{bottom:589.200000pt;}
.y90{bottom:590.869333pt;}
.y2f{bottom:600.741333pt;}
.y69{bottom:600.789200pt;}
.y153{bottom:601.130267pt;}
.y51{bottom:604.000000pt;}
.y110{bottom:605.541333pt;}
.yed{bottom:605.594400pt;}
.yc5{bottom:608.800000pt;}
.y8f{bottom:610.341333pt;}
.y152{bottom:617.663600pt;}
.y8{bottom:620.194267pt;}
.y2e{bottom:621.013333pt;}
.y68{bottom:621.061200pt;}
.y50{bottom:624.000000pt;}
.y10f{bottom:625.413333pt;}
.yec{bottom:625.418667pt;}
.yc4{bottom:628.400000pt;}
.y8e{bottom:629.813333pt;}
.y151{bottom:634.196933pt;}
.y2d{bottom:641.285333pt;}
.y4f{bottom:644.000000pt;}
.y10e{bottom:645.285333pt;}
.yeb{bottom:645.290667pt;}
.yc3{bottom:648.000000pt;}
.y8d{bottom:649.285333pt;}
.y150{bottom:656.410667pt;}
.y7{bottom:657.648267pt;}
.y2c{bottom:661.557333pt;}
.y4e{bottom:664.000000pt;}
.y10d{bottom:665.157333pt;}
.yea{bottom:665.162667pt;}
.yc2{bottom:667.600000pt;}
.y8c{bottom:668.757333pt;}
.y14f{bottom:672.282667pt;}
.y6{bottom:677.648267pt;}
.y2b{bottom:681.829333pt;}
.y4d{bottom:684.000000pt;}
.y10c{bottom:685.029333pt;}
.ye9{bottom:685.034667pt;}
.yc1{bottom:687.200000pt;}
.y8b{bottom:688.229333pt;}
.y2a{bottom:702.101333pt;}
.y4c{bottom:704.000000pt;}
.y10b{bottom:704.901333pt;}
.ye8{bottom:704.906667pt;}
.yc0{bottom:706.800000pt;}
.y8a{bottom:707.701333pt;}
.y14e{bottom:712.016000pt;}
.y29{bottom:722.373333pt;}
.y4b{bottom:724.000000pt;}
.y10a{bottom:724.773333pt;}
.ye7{bottom:724.778667pt;}
.y14d{bottom:725.221333pt;}
.ybf{bottom:726.400000pt;}
.y89{bottom:727.173333pt;}
.y5{bottom:737.333333pt;}
.y14c{bottom:738.416000pt;}
.y28{bottom:742.645333pt;}
.y4a{bottom:744.000000pt;}
.y109{bottom:744.645333pt;}
.ye6{bottom:744.650667pt;}
.ybe{bottom:746.000000pt;}
.y88{bottom:746.645333pt;}
.y14b{bottom:751.610667pt;}
.y27{bottom:762.917333pt;}
.y4{bottom:764.000000pt;}
.y108{bottom:764.517333pt;}
.ye5{bottom:764.522667pt;}
.y14a{bottom:764.805333pt;}
.ybd{bottom:765.600000pt;}
.y87{bottom:766.117333pt;}
.y149{bottom:778.010667pt;}
.y26{bottom:783.189333pt;}
.y49{bottom:784.000000pt;}
.y107{bottom:784.389333pt;}
.ye4{bottom:784.394667pt;}
.ybc{bottom:785.200000pt;}
.y86{bottom:785.589333pt;}
.y3{bottom:790.666667pt;}
.y148{bottom:791.205333pt;}
.y25{bottom:803.461333pt;}
.y48{bottom:804.000000pt;}
.ye3{bottom:804.261333pt;}
.y147{bottom:804.400000pt;}
.ybb{bottom:804.800000pt;}
.y85{bottom:805.061333pt;}
.y2{bottom:817.333333pt;}
.y146{bottom:817.605333pt;}
.y24{bottom:823.733333pt;}
.y47{bottom:824.000000pt;}
.ye2{bottom:824.133333pt;}
.yba{bottom:824.400000pt;}
.y84{bottom:824.533333pt;}
.y145{bottom:830.800000pt;}
.h6{height:26.945443pt;}
.hf{height:34.730667pt;}
.h10{height:35.370667pt;}
.h1{height:35.546875pt;}
.h7{height:36.229167pt;}
.hb{height:42.656250pt;}
.h3{height:44.960000pt;}
.h5{height:45.286458pt;}
.h11{height:49.300521pt;}
.h4{height:54.343750pt;}
.h9{height:59.160625pt;}
.hd{height:59.181958pt;}
.he{height:59.351558pt;}
.ha{height:59.352092pt;}
.hc{height:59.631025pt;}
.h8{height:59.672625pt;}
.h2{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x7{left:73.232000pt;}
.x2{left:100.000000pt;}
.x3{left:113.228400pt;}
.x6{left:120.000000pt;}
.x8{left:160.460667pt;}
.x5{left:259.840000pt;}
.x1{left:556.250000pt;}
}




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