
    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_bff131a63c8b63a22bb9f4f3.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_20af70f1920ece68895dc7f6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.024414;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_b51561835235960f065e5f3d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2b58f3fcaa94b02041915aee.woff')format("woff");}.ff4{font-family:ff4;line-height:0.708000;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_bff3aea889e454af103a9d29.woff')format("woff");}.ff5{font-family:ff5;line-height:1.029000;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_581b86f632a4b75f1f9b7553.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d5db8440c6644ad73679afef.woff')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.v3{vertical-align:-9.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.600600px;}
.v1{vertical-align:24.024000px;}
.ls2d{letter-spacing:-10.320000px;}
.ls2e{letter-spacing:-1.872000px;}
.ls21{letter-spacing:-1.152000px;}
.ls25{letter-spacing:-1.080000px;}
.ls1f{letter-spacing:-1.008000px;}
.ls27{letter-spacing:-0.936000px;}
.ls23{letter-spacing:-0.864000px;}
.ls22{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.648000px;}
.ls17{letter-spacing:-0.576000px;}
.ls11{letter-spacing:-0.504000px;}
.ls2c{letter-spacing:-0.480000px;}
.ls1c{letter-spacing:-0.432000px;}
.lse{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.300000px;}
.lsd{letter-spacing:-0.288000px;}
.ls2f{letter-spacing:-0.240000px;}
.ls18{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.072000px;}
.ls2b{letter-spacing:0.130200px;}
.lsf{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.648000px;}
.ls15{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.792000px;}
.ls1e{letter-spacing:0.864000px;}
.ls24{letter-spacing:1.008000px;}
.ls1b{letter-spacing:1.080000px;}
.ls14{letter-spacing:1.440000px;}
.ls0{letter-spacing:2.850000px;}
.ls2a{letter-spacing:2.928000px;}
.ls26{letter-spacing:2.976000px;}
.ls29{letter-spacing:2.995200px;}
.ls8{letter-spacing:4.560000px;}
.ls3{letter-spacing:4.704000px;}
.ls28{letter-spacing:4.752000px;}
.ls30{letter-spacing:8.100000px;}
.ls6{letter-spacing:8.460000px;}
.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;}
}
.ws1{word-spacing:-25.320000px;}
.ws1b{word-spacing:-20.592000px;}
.ws65{word-spacing:-20.376000px;}
.ws53{word-spacing:-20.232000px;}
.ws16{word-spacing:-19.872000px;}
.ws0{word-spacing:-18.867000px;}
.ws90{word-spacing:-18.504000px;}
.ws91{word-spacing:-18.144000px;}
.ws54{word-spacing:-17.784000px;}
.wsa2{word-spacing:-17.424000px;}
.ws4{word-spacing:-17.160000px;}
.wsa1{word-spacing:-16.920000px;}
.ws2{word-spacing:-16.860000px;}
.ws3{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.120000px;}
.ws15{word-spacing:-14.162400px;}
.wsad{word-spacing:-13.488000px;}
.wsae{word-spacing:-13.008000px;}
.wsb4{word-spacing:-11.856000px;}
.wsa3{word-spacing:-9.441600px;}
.ws45{word-spacing:-8.460000px;}
.wsb6{word-spacing:-8.100000px;}
.wsb2{word-spacing:-4.752000px;}
.wse{word-spacing:-4.560000px;}
.wsb3{word-spacing:-3.408000px;}
.ws7a{word-spacing:-2.088000px;}
.ws76{word-spacing:-2.016000px;}
.wsa7{word-spacing:-1.800000px;}
.wsab{word-spacing:-1.728000px;}
.wsa6{word-spacing:-1.656000px;}
.ws4c{word-spacing:-1.440000px;}
.wsa5{word-spacing:-1.368000px;}
.ws79{word-spacing:-1.296000px;}
.wsa4{word-spacing:-1.224000px;}
.ws7b{word-spacing:-1.152000px;}
.ws75{word-spacing:-1.008000px;}
.ws2a{word-spacing:-0.648000px;}
.ws25{word-spacing:-0.576000px;}
.ws77{word-spacing:-0.504000px;}
.ws13{word-spacing:-0.360000px;}
.ws10{word-spacing:-0.300000px;}
.ws5c{word-spacing:-0.072000px;}
.ws14{word-spacing:-0.060000px;}
.wsa{word-spacing:0.000000px;}
.ws59{word-spacing:0.072000px;}
.ws37{word-spacing:0.144000px;}
.wsb5{word-spacing:0.240000px;}
.ws24{word-spacing:0.288000px;}
.wsb7{word-spacing:0.300000px;}
.ws78{word-spacing:0.360000px;}
.ws93{word-spacing:0.432000px;}
.wsb0{word-spacing:0.480000px;}
.ws32{word-spacing:0.504000px;}
.ws46{word-spacing:0.576000px;}
.wsac{word-spacing:0.648000px;}
.ws18{word-spacing:0.792000px;}
.ws7c{word-spacing:0.864000px;}
.ws86{word-spacing:0.936000px;}
.ws27{word-spacing:1.008000px;}
.ws66{word-spacing:1.080000px;}
.ws99{word-spacing:1.152000px;}
.ws3e{word-spacing:1.224000px;}
.ws21{word-spacing:1.296000px;}
.ws95{word-spacing:1.368000px;}
.ws20{word-spacing:1.440000px;}
.ws81{word-spacing:1.512000px;}
.ws5a{word-spacing:1.584000px;}
.ws19{word-spacing:1.656000px;}
.ws42{word-spacing:1.728000px;}
.wsc{word-spacing:1.800000px;}
.ws9e{word-spacing:1.872000px;}
.ws55{word-spacing:1.944000px;}
.ws97{word-spacing:1.980000px;}
.ws41{word-spacing:2.016000px;}
.ws83{word-spacing:2.088000px;}
.ws6b{word-spacing:2.160000px;}
.ws1c{word-spacing:2.232000px;}
.ws40{word-spacing:2.376000px;}
.ws6c{word-spacing:2.448000px;}
.ws44{word-spacing:2.520000px;}
.ws1a{word-spacing:2.592000px;}
.ws9a{word-spacing:2.664000px;}
.ws7d{word-spacing:2.736000px;}
.ws5f{word-spacing:2.808000px;}
.ws6f{word-spacing:2.880000px;}
.ws71{word-spacing:2.952000px;}
.wsaf{word-spacing:2.976000px;}
.wsaa{word-spacing:3.024000px;}
.ws43{word-spacing:3.096000px;}
.ws94{word-spacing:3.168000px;}
.ws12{word-spacing:3.312000px;}
.ws31{word-spacing:3.360000px;}
.ws6a{word-spacing:3.384000px;}
.wsa9{word-spacing:3.456000px;}
.ws56{word-spacing:3.528000px;}
.ws73{word-spacing:3.600000px;}
.ws8{word-spacing:3.720000px;}
.ws68{word-spacing:3.744000px;}
.wsa0{word-spacing:3.816000px;}
.ws9b{word-spacing:3.888000px;}
.ws30{word-spacing:3.960000px;}
.ws2e{word-spacing:4.032000px;}
.ws3c{word-spacing:4.104000px;}
.ws92{word-spacing:4.176000px;}
.ws6{word-spacing:4.200000px;}
.ws72{word-spacing:4.248000px;}
.ws51{word-spacing:4.320000px;}
.ws98{word-spacing:4.392000px;}
.wsd{word-spacing:4.464000px;}
.ws11{word-spacing:4.500000px;}
.ws22{word-spacing:4.536000px;}
.ws48{word-spacing:4.608000px;}
.ws1e{word-spacing:4.680000px;}
.ws85{word-spacing:4.824000px;}
.ws29{word-spacing:4.896000px;}
.ws88{word-spacing:4.968000px;}
.ws1f{word-spacing:5.040000px;}
.ws74{word-spacing:5.112000px;}
.ws69{word-spacing:5.184000px;}
.ws87{word-spacing:5.256000px;}
.ws34{word-spacing:5.328000px;}
.ws9d{word-spacing:5.400000px;}
.ws3d{word-spacing:5.472000px;}
.ws3a{word-spacing:5.544000px;}
.ws70{word-spacing:5.616000px;}
.ws3f{word-spacing:5.688000px;}
.ws36{word-spacing:5.760000px;}
.ws82{word-spacing:5.832000px;}
.ws8a{word-spacing:5.904000px;}
.ws96{word-spacing:5.976000px;}
.ws26{word-spacing:6.120000px;}
.ws4e{word-spacing:6.192000px;}
.ws33{word-spacing:6.264000px;}
.ws4b{word-spacing:6.336000px;}
.ws28{word-spacing:6.408000px;}
.ws58{word-spacing:6.480000px;}
.ws2d{word-spacing:6.696000px;}
.ws8b{word-spacing:6.768000px;}
.ws7f{word-spacing:6.840000px;}
.ws8e{word-spacing:6.912000px;}
.ws50{word-spacing:6.984000px;}
.ws49{word-spacing:7.056000px;}
.ws47{word-spacing:7.128000px;}
.ws9c{word-spacing:7.200000px;}
.ws4a{word-spacing:7.272000px;}
.ws67{word-spacing:7.344000px;}
.wsf{word-spacing:7.380000px;}
.ws38{word-spacing:7.416000px;}
.ws23{word-spacing:7.488000px;}
.ws64{word-spacing:7.560000px;}
.ws4f{word-spacing:7.632000px;}
.ws4d{word-spacing:7.704000px;}
.ws2f{word-spacing:7.848000px;}
.ws62{word-spacing:7.920000px;}
.ws80{word-spacing:7.992000px;}
.ws9f{word-spacing:8.136000px;}
.ws7e{word-spacing:8.208000px;}
.ws39{word-spacing:8.280000px;}
.ws61{word-spacing:8.352000px;}
.ws52{word-spacing:8.376000px;}
.wsb{word-spacing:8.400000px;}
.ws8f{word-spacing:8.496000px;}
.ws60{word-spacing:8.568000px;}
.ws5b{word-spacing:8.712000px;}
.ws89{word-spacing:8.784000px;}
.ws57{word-spacing:8.856000px;}
.ws5d{word-spacing:8.928000px;}
.ws35{word-spacing:9.000000px;}
.ws6e{word-spacing:9.072000px;}
.wsa8{word-spacing:9.144000px;}
.ws84{word-spacing:9.216000px;}
.ws2c{word-spacing:9.288000px;}
.ws5e{word-spacing:9.504000px;}
.ws8c{word-spacing:9.648000px;}
.ws2b{word-spacing:9.864000px;}
.ws8d{word-spacing:9.936000px;}
.ws3b{word-spacing:10.008000px;}
.ws1d{word-spacing:10.080000px;}
.ws17{word-spacing:10.152000px;}
.ws6d{word-spacing:10.368000px;}
.ws63{word-spacing:10.512000px;}
.wsb1{word-spacing:13.200000px;}
.ws7{word-spacing:15.120000px;}
.ws9{word-spacing:73.140000px;}
._f{margin-left:-940.387800px;}
._5{margin-left:-69.840000px;}
._14{margin-left:-68.040000px;}
._18{margin-left:-16.920000px;}
._8{margin-left:-11.928000px;}
._a{margin-left:-9.672000px;}
._7{margin-left:-8.280000px;}
._c{margin-left:-7.164000px;}
._2{margin-left:-5.964000px;}
._3{margin-left:-4.782000px;}
._9{margin-left:-2.964000px;}
._0{margin-left:-1.164000px;}
._b{width:1.020000px;}
._4{width:2.124000px;}
._12{width:3.223200px;}
._1{width:4.224000px;}
._6{width:5.280000px;}
._15{width:7.074600px;}
._d{width:8.496600px;}
._e{width:9.522000px;}
._11{width:11.377200px;}
._16{width:12.444000px;}
._17{width:13.788000px;}
._10{width:22.526400px;}
._13{width:31.646100px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:33.600000px;}
.fs6{font-size:35.700000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:50.400000px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y4a{bottom:117.000000px;}
.y70{bottom:117.078000px;}
.y90{bottom:117.126000px;}
.y99{bottom:117.258000px;}
.yde{bottom:117.600000px;}
.y115{bottom:118.338150px;}
.y14c{bottom:121.302000px;}
.y24{bottom:122.175900px;}
.y49{bottom:132.000000px;}
.y114{bottom:133.182150px;}
.y14b{bottom:136.302000px;}
.y175{bottom:138.386250px;}
.y6f{bottom:138.984000px;}
.y8f{bottom:139.032000px;}
.y98{bottom:139.164000px;}
.ybb{bottom:139.500000px;}
.ydd{bottom:140.100000px;}
.y23{bottom:141.225900px;}
.y48{bottom:147.000000px;}
.y113{bottom:148.026150px;}
.y14a{bottom:151.302000px;}
.y174{bottom:157.136250px;}
.y6e{bottom:160.890000px;}
.y8e{bottom:160.938000px;}
.y97{bottom:161.070000px;}
.y47{bottom:162.000000px;}
.ydc{bottom:162.600000px;}
.y112{bottom:162.870150px;}
.y149{bottom:166.302000px;}
.y22{bottom:168.778800px;}
.y173{bottom:175.886250px;}
.y46{bottom:177.000000px;}
.y111{bottom:177.726150px;}
.y148{bottom:181.302000px;}
.y6d{bottom:182.796000px;}
.y8d{bottom:182.844000px;}
.y96{bottom:182.976000px;}
.yba{bottom:184.500000px;}
.ydb{bottom:185.100000px;}
.y21{bottom:187.828800px;}
.ye0{bottom:192.000000px;}
.y110{bottom:192.570150px;}
.y172{bottom:194.636250px;}
.y45{bottom:196.207500px;}
.y147{bottom:196.302000px;}
.y6c{bottom:204.702000px;}
.y8c{bottom:204.750000px;}
.y95{bottom:204.882000px;}
.y20{bottom:206.878800px;}
.yb9{bottom:207.000000px;}
.y10f{bottom:207.414150px;}
.yda{bottom:207.600000px;}
.ydf{bottom:211.207500px;}
.y146{bottom:211.302000px;}
.y171{bottom:213.386250px;}
.y10e{bottom:222.258150px;}
.y1f{bottom:225.928800px;}
.y145{bottom:226.302000px;}
.y6b{bottom:226.608000px;}
.y8b{bottom:226.656000px;}
.y94{bottom:226.788000px;}
.yb8{bottom:229.500000px;}
.yd9{bottom:230.100000px;}
.y44{bottom:234.486000px;}
.y10d{bottom:237.102150px;}
.y144{bottom:241.302000px;}
.y170{bottom:243.386250px;}
.y1e{bottom:244.978800px;}
.y6a{bottom:248.514000px;}
.y8a{bottom:248.562000px;}
.y93{bottom:248.694000px;}
.y10c{bottom:251.946150px;}
.yb7{bottom:252.000000px;}
.yd8{bottom:252.600000px;}
.y143{bottom:256.302000px;}
.y43{bottom:256.392000px;}
.y1d{bottom:264.028800px;}
.y10b{bottom:266.790150px;}
.y69{bottom:270.420000px;}
.y89{bottom:270.468000px;}
.y92{bottom:270.600000px;}
.y142{bottom:271.302000px;}
.yb6{bottom:274.500000px;}
.yd7{bottom:275.100000px;}
.y42{bottom:278.748000px;}
.y10a{bottom:281.634150px;}
.y1c{bottom:283.078800px;}
.y16f{bottom:284.636250px;}
.y141{bottom:286.302000px;}
.y68{bottom:292.326000px;}
.y88{bottom:292.374000px;}
.y91{bottom:292.500000px;}
.y109{bottom:296.478150px;}
.yb5{bottom:297.000000px;}
.yd6{bottom:297.600000px;}
.y41{bottom:301.104000px;}
.y140{bottom:301.302000px;}
.y1b{bottom:302.128800px;}
.y16e{bottom:303.386250px;}
.y108{bottom:311.322150px;}
.y67{bottom:314.232000px;}
.y87{bottom:314.280000px;}
.y13f{bottom:316.302000px;}
.yb4{bottom:319.500000px;}
.yd5{bottom:320.100000px;}
.y1a{bottom:321.178800px;}
.y16d{bottom:322.136250px;}
.y40{bottom:323.460000px;}
.y107{bottom:326.166150px;}
.y13e{bottom:331.302000px;}
.y66{bottom:336.138000px;}
.y86{bottom:336.186000px;}
.y19{bottom:340.228800px;}
.y16c{bottom:340.886250px;}
.y106{bottom:341.010150px;}
.yb3{bottom:342.000000px;}
.yd4{bottom:342.600000px;}
.y3f{bottom:345.816000px;}
.y13d{bottom:346.302000px;}
.y105{bottom:355.854150px;}
.y65{bottom:358.044000px;}
.y85{bottom:358.092000px;}
.y18{bottom:359.278800px;}
.y16b{bottom:359.636250px;}
.y13c{bottom:361.302000px;}
.yb2{bottom:364.500000px;}
.yd3{bottom:365.100000px;}
.y3e{bottom:368.172000px;}
.y104{bottom:370.698150px;}
.y13b{bottom:376.302000px;}
.y16a{bottom:378.386250px;}
.y64{bottom:379.950000px;}
.y84{bottom:379.998000px;}
.y103{bottom:385.542150px;}
.y17{bottom:386.833800px;}
.yb1{bottom:387.000000px;}
.yd2{bottom:387.600000px;}
.y3d{bottom:390.528000px;}
.y13a{bottom:391.302000px;}
.y169{bottom:397.136250px;}
.y102{bottom:400.386150px;}
.y63{bottom:401.856000px;}
.y83{bottom:401.904000px;}
.y139{bottom:406.302000px;}
.yb0{bottom:409.500000px;}
.yd1{bottom:410.100000px;}
.y3c{bottom:412.884000px;}
.y101{bottom:415.230150px;}
.y168{bottom:415.886250px;}
.y138{bottom:421.302000px;}
.y62{bottom:423.762000px;}
.y82{bottom:423.810000px;}
.y100{bottom:430.074150px;}
.yaf{bottom:432.000000px;}
.y16{bottom:432.433800px;}
.yd0{bottom:432.600000px;}
.y167{bottom:434.636250px;}
.y3b{bottom:435.240000px;}
.y137{bottom:436.302000px;}
.yff{bottom:444.918150px;}
.y61{bottom:445.668000px;}
.y81{bottom:445.716000px;}
.y136{bottom:451.302000px;}
.y15{bottom:451.483800px;}
.y166{bottom:453.386250px;}
.yae{bottom:454.500000px;}
.ycf{bottom:455.100000px;}
.y3a{bottom:457.596000px;}
.yfe{bottom:459.762150px;}
.y135{bottom:466.302000px;}
.y60{bottom:467.574000px;}
.y80{bottom:467.622000px;}
.y165{bottom:472.136250px;}
.yfd{bottom:474.606150px;}
.yad{bottom:477.000000px;}
.yce{bottom:477.600000px;}
.y14{bottom:479.036700px;}
.y39{bottom:479.952000px;}
.y134{bottom:481.302000px;}
.yfc{bottom:489.450150px;}
.y5f{bottom:489.480000px;}
.y7f{bottom:489.528000px;}
.y164{bottom:490.886250px;}
.y133{bottom:496.302000px;}
.y13{bottom:498.086700px;}
.yac{bottom:499.500000px;}
.ycd{bottom:500.100000px;}
.y38{bottom:502.308000px;}
.yfb{bottom:504.354000px;}
.y163{bottom:509.636250px;}
.y132{bottom:511.302000px;}
.y5e{bottom:511.386000px;}
.y7e{bottom:511.434000px;}
.y12{bottom:517.136700px;}
.yfa{bottom:519.198000px;}
.yab{bottom:522.000000px;}
.ycc{bottom:522.600000px;}
.y37{bottom:524.664000px;}
.y131{bottom:526.302000px;}
.y162{bottom:528.386250px;}
.y5d{bottom:533.292000px;}
.y7d{bottom:533.340000px;}
.yf9{bottom:534.042000px;}
.y11{bottom:536.186700px;}
.y130{bottom:541.302000px;}
.yaa{bottom:544.500000px;}
.ycb{bottom:545.100000px;}
.y36{bottom:547.020000px;}
.y161{bottom:547.136250px;}
.yf8{bottom:548.886000px;}
.y5c{bottom:555.198000px;}
.y10{bottom:555.236700px;}
.y7c{bottom:555.246000px;}
.y12f{bottom:556.302000px;}
.yf7{bottom:563.730000px;}
.y160{bottom:565.886250px;}
.ya9{bottom:567.000000px;}
.yca{bottom:567.600000px;}
.y35{bottom:569.376000px;}
.y12e{bottom:571.302000px;}
.yf{bottom:574.286700px;}
.y5b{bottom:577.104000px;}
.y7b{bottom:577.152000px;}
.yf6{bottom:578.574000px;}
.y15f{bottom:584.636250px;}
.y12d{bottom:586.302000px;}
.ya8{bottom:589.500000px;}
.yc9{bottom:590.100000px;}
.y34{bottom:591.732000px;}
.ye{bottom:593.336700px;}
.yf5{bottom:593.418000px;}
.y5a{bottom:599.010000px;}
.y7a{bottom:599.058000px;}
.y12c{bottom:601.302000px;}
.y15e{bottom:603.386250px;}
.yf4{bottom:608.262000px;}
.ya7{bottom:612.000000px;}
.yd{bottom:612.386700px;}
.yc8{bottom:612.600000px;}
.y33{bottom:614.088000px;}
.y12b{bottom:616.302000px;}
.y59{bottom:620.916000px;}
.y79{bottom:620.964000px;}
.y15d{bottom:622.136250px;}
.yf3{bottom:623.106000px;}
.yc{bottom:631.436700px;}
.y12a{bottom:631.446000px;}
.ya6{bottom:634.500000px;}
.yc7{bottom:635.100000px;}
.y32{bottom:636.444000px;}
.y15c{bottom:640.886250px;}
.y58{bottom:642.822000px;}
.y78{bottom:642.870000px;}
.yf2{bottom:644.334000px;}
.y129{bottom:646.590000px;}
.yb{bottom:650.486700px;}
.ya5{bottom:657.000000px;}
.y31{bottom:658.734000px;}
.y15b{bottom:659.636250px;}
.y128{bottom:661.734000px;}
.y57{bottom:664.728000px;}
.y77{bottom:664.776000px;}
.ya{bottom:669.536700px;}
.y127{bottom:676.878000px;}
.y15a{bottom:678.386250px;}
.ya4{bottom:679.500000px;}
.yc6{bottom:680.100000px;}
.y30{bottom:681.090000px;}
.yf1{bottom:681.834000px;}
.y56{bottom:686.634000px;}
.y76{bottom:686.682000px;}
.y126{bottom:692.022000px;}
.yf0{bottom:696.834000px;}
.y9{bottom:697.091700px;}
.y159{bottom:697.136250px;}
.ya3{bottom:702.000000px;}
.yc5{bottom:702.600000px;}
.y2f{bottom:703.446000px;}
.y125{bottom:707.166000px;}
.y55{bottom:708.540000px;}
.y75{bottom:708.588000px;}
.yef{bottom:711.834000px;}
.y124{bottom:722.310000px;}
.ya2{bottom:724.500000px;}
.yc4{bottom:725.100000px;}
.y2e{bottom:725.802000px;}
.yee{bottom:726.834000px;}
.y158{bottom:728.642100px;}
.y54{bottom:730.446000px;}
.y74{bottom:730.494000px;}
.y123{bottom:737.454000px;}
.yed{bottom:741.834000px;}
.y8{bottom:742.977600px;}
.ya1{bottom:747.000000px;}
.yc3{bottom:747.600000px;}
.y2d{bottom:748.158000px;}
.y53{bottom:752.352000px;}
.y73{bottom:752.400000px;}
.y122{bottom:752.598000px;}
.yec{bottom:756.834000px;}
.y157{bottom:759.426000px;}
.y7{bottom:765.477600px;}
.y121{bottom:767.742000px;}
.ya0{bottom:769.500000px;}
.yc2{bottom:770.100000px;}
.y2c{bottom:770.514000px;}
.yeb{bottom:771.834000px;}
.y52{bottom:774.258000px;}
.y72{bottom:774.300000px;}
.y120{bottom:782.886000px;}
.yea{bottom:786.834000px;}
.y9f{bottom:792.000000px;}
.yc1{bottom:792.600000px;}
.y2b{bottom:792.870000px;}
.y51{bottom:796.164000px;}
.y71{bottom:796.200000px;}
.y11f{bottom:798.030000px;}
.y156{bottom:801.030000px;}
.ye9{bottom:801.834000px;}
.y11e{bottom:813.174000px;}
.y9e{bottom:814.500000px;}
.yc0{bottom:815.100000px;}
.y2a{bottom:815.226000px;}
.y155{bottom:815.886000px;}
.ye8{bottom:816.834000px;}
.y50{bottom:818.070000px;}
.y11d{bottom:828.330000px;}
.y154{bottom:830.730000px;}
.ye7{bottom:831.678000px;}
.y6{bottom:832.623150px;}
.y9d{bottom:837.000000px;}
.y29{bottom:837.582000px;}
.ybf{bottom:837.600000px;}
.y4f{bottom:839.976000px;}
.y11c{bottom:843.474000px;}
.y153{bottom:845.574000px;}
.ye6{bottom:846.534000px;}
.y11b{bottom:858.618000px;}
.y9c{bottom:859.500000px;}
.y28{bottom:859.938000px;}
.ybe{bottom:860.100000px;}
.y152{bottom:860.418000px;}
.ye5{bottom:861.378000px;}
.y4e{bottom:861.882000px;}
.y5{bottom:862.473150px;}
.y11a{bottom:873.762000px;}
.y151{bottom:875.262000px;}
.ye4{bottom:876.222000px;}
.y9b{bottom:882.000000px;}
.y27{bottom:882.294000px;}
.ybd{bottom:882.600000px;}
.y4d{bottom:883.788000px;}
.y119{bottom:888.906000px;}
.y150{bottom:890.118000px;}
.ye3{bottom:891.078000px;}
.y4{bottom:892.323150px;}
.y118{bottom:904.062000px;}
.y9a{bottom:904.500000px;}
.y26{bottom:904.650000px;}
.y14f{bottom:904.962000px;}
.ybc{bottom:905.100000px;}
.y4c{bottom:905.694000px;}
.ye2{bottom:905.922000px;}
.y117{bottom:919.206000px;}
.y14e{bottom:919.806000px;}
.y25{bottom:927.000000px;}
.ye1{bottom:927.150000px;}
.y4b{bottom:927.600000px;}
.y116{bottom:934.350000px;}
.y14d{bottom:934.650000px;}
.y3{bottom:940.023150px;}
.hc{height:24.630908px;}
.hd{height:33.117188px;}
.h12{height:37.256836px;}
.h11{height:37.593750px;}
.h3{height:39.326660px;}
.h10{height:39.888000px;}
.h2{height:39.990234px;}
.he{height:40.757812px;}
.h7{height:41.396484px;}
.h5{height:42.000000px;}
.h1{height:46.992188px;}
.h9{height:49.675781px;}
.h8{height:50.947266px;}
.h6{height:56.390625px;}
.hf{height:58.533047px;}
.ha{height:58.797047px;}
.hb{height:61.136719px;}
.h4{height:82.792969px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x2{left:67.500000px;}
.x7{left:82.386000px;}
.x3{left:97.263750px;}
.x5{left:112.500000px;}
.x6{left:127.381950px;}
.x1{left:135.000000px;}
.x9{left:180.541950px;}
.x8{left:635.390550px;}
.x4{left:645.000000px;}
@media print{
.v2{vertical-align:-14.960000pt;}
.v3{vertical-align:-8.533333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.867200pt;}
.v1{vertical-align:21.354667pt;}
.ls2d{letter-spacing:-9.173333pt;}
.ls2e{letter-spacing:-1.664000pt;}
.ls21{letter-spacing:-1.024000pt;}
.ls25{letter-spacing:-0.960000pt;}
.ls1f{letter-spacing:-0.896000pt;}
.ls27{letter-spacing:-0.832000pt;}
.ls23{letter-spacing:-0.768000pt;}
.ls22{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.576000pt;}
.ls17{letter-spacing:-0.512000pt;}
.ls11{letter-spacing:-0.448000pt;}
.ls2c{letter-spacing:-0.426667pt;}
.ls1c{letter-spacing:-0.384000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.266667pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls2f{letter-spacing:-0.213333pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.064000pt;}
.ls2b{letter-spacing:0.115733pt;}
.lsf{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.576000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.704000pt;}
.ls1e{letter-spacing:0.768000pt;}
.ls24{letter-spacing:0.896000pt;}
.ls1b{letter-spacing:0.960000pt;}
.ls14{letter-spacing:1.280000pt;}
.ls0{letter-spacing:2.533333pt;}
.ls2a{letter-spacing:2.602667pt;}
.ls26{letter-spacing:2.645333pt;}
.ls29{letter-spacing:2.662400pt;}
.ls8{letter-spacing:4.053333pt;}
.ls3{letter-spacing:4.181333pt;}
.ls28{letter-spacing:4.224000pt;}
.ls30{letter-spacing:7.200000pt;}
.ls6{letter-spacing:7.520000pt;}
.ls1{letter-spacing:9.546667pt;}
.ws1{word-spacing:-22.506667pt;}
.ws1b{word-spacing:-18.304000pt;}
.ws65{word-spacing:-18.112000pt;}
.ws53{word-spacing:-17.984000pt;}
.ws16{word-spacing:-17.664000pt;}
.ws0{word-spacing:-16.770667pt;}
.ws90{word-spacing:-16.448000pt;}
.ws91{word-spacing:-16.128000pt;}
.ws54{word-spacing:-15.808000pt;}
.wsa2{word-spacing:-15.488000pt;}
.ws4{word-spacing:-15.253333pt;}
.wsa1{word-spacing:-15.040000pt;}
.ws2{word-spacing:-14.986667pt;}
.ws3{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.440000pt;}
.ws15{word-spacing:-12.588800pt;}
.wsad{word-spacing:-11.989333pt;}
.wsae{word-spacing:-11.562667pt;}
.wsb4{word-spacing:-10.538667pt;}
.wsa3{word-spacing:-8.392533pt;}
.ws45{word-spacing:-7.520000pt;}
.wsb6{word-spacing:-7.200000pt;}
.wsb2{word-spacing:-4.224000pt;}
.wse{word-spacing:-4.053333pt;}
.wsb3{word-spacing:-3.029333pt;}
.ws7a{word-spacing:-1.856000pt;}
.ws76{word-spacing:-1.792000pt;}
.wsa7{word-spacing:-1.600000pt;}
.wsab{word-spacing:-1.536000pt;}
.wsa6{word-spacing:-1.472000pt;}
.ws4c{word-spacing:-1.280000pt;}
.wsa5{word-spacing:-1.216000pt;}
.ws79{word-spacing:-1.152000pt;}
.wsa4{word-spacing:-1.088000pt;}
.ws7b{word-spacing:-1.024000pt;}
.ws75{word-spacing:-0.896000pt;}
.ws2a{word-spacing:-0.576000pt;}
.ws25{word-spacing:-0.512000pt;}
.ws77{word-spacing:-0.448000pt;}
.ws13{word-spacing:-0.320000pt;}
.ws10{word-spacing:-0.266667pt;}
.ws5c{word-spacing:-0.064000pt;}
.ws14{word-spacing:-0.053333pt;}
.wsa{word-spacing:0.000000pt;}
.ws59{word-spacing:0.064000pt;}
.ws37{word-spacing:0.128000pt;}
.wsb5{word-spacing:0.213333pt;}
.ws24{word-spacing:0.256000pt;}
.wsb7{word-spacing:0.266667pt;}
.ws78{word-spacing:0.320000pt;}
.ws93{word-spacing:0.384000pt;}
.wsb0{word-spacing:0.426667pt;}
.ws32{word-spacing:0.448000pt;}
.ws46{word-spacing:0.512000pt;}
.wsac{word-spacing:0.576000pt;}
.ws18{word-spacing:0.704000pt;}
.ws7c{word-spacing:0.768000pt;}
.ws86{word-spacing:0.832000pt;}
.ws27{word-spacing:0.896000pt;}
.ws66{word-spacing:0.960000pt;}
.ws99{word-spacing:1.024000pt;}
.ws3e{word-spacing:1.088000pt;}
.ws21{word-spacing:1.152000pt;}
.ws95{word-spacing:1.216000pt;}
.ws20{word-spacing:1.280000pt;}
.ws81{word-spacing:1.344000pt;}
.ws5a{word-spacing:1.408000pt;}
.ws19{word-spacing:1.472000pt;}
.ws42{word-spacing:1.536000pt;}
.wsc{word-spacing:1.600000pt;}
.ws9e{word-spacing:1.664000pt;}
.ws55{word-spacing:1.728000pt;}
.ws97{word-spacing:1.760000pt;}
.ws41{word-spacing:1.792000pt;}
.ws83{word-spacing:1.856000pt;}
.ws6b{word-spacing:1.920000pt;}
.ws1c{word-spacing:1.984000pt;}
.ws40{word-spacing:2.112000pt;}
.ws6c{word-spacing:2.176000pt;}
.ws44{word-spacing:2.240000pt;}
.ws1a{word-spacing:2.304000pt;}
.ws9a{word-spacing:2.368000pt;}
.ws7d{word-spacing:2.432000pt;}
.ws5f{word-spacing:2.496000pt;}
.ws6f{word-spacing:2.560000pt;}
.ws71{word-spacing:2.624000pt;}
.wsaf{word-spacing:2.645333pt;}
.wsaa{word-spacing:2.688000pt;}
.ws43{word-spacing:2.752000pt;}
.ws94{word-spacing:2.816000pt;}
.ws12{word-spacing:2.944000pt;}
.ws31{word-spacing:2.986667pt;}
.ws6a{word-spacing:3.008000pt;}
.wsa9{word-spacing:3.072000pt;}
.ws56{word-spacing:3.136000pt;}
.ws73{word-spacing:3.200000pt;}
.ws8{word-spacing:3.306667pt;}
.ws68{word-spacing:3.328000pt;}
.wsa0{word-spacing:3.392000pt;}
.ws9b{word-spacing:3.456000pt;}
.ws30{word-spacing:3.520000pt;}
.ws2e{word-spacing:3.584000pt;}
.ws3c{word-spacing:3.648000pt;}
.ws92{word-spacing:3.712000pt;}
.ws6{word-spacing:3.733333pt;}
.ws72{word-spacing:3.776000pt;}
.ws51{word-spacing:3.840000pt;}
.ws98{word-spacing:3.904000pt;}
.wsd{word-spacing:3.968000pt;}
.ws11{word-spacing:4.000000pt;}
.ws22{word-spacing:4.032000pt;}
.ws48{word-spacing:4.096000pt;}
.ws1e{word-spacing:4.160000pt;}
.ws85{word-spacing:4.288000pt;}
.ws29{word-spacing:4.352000pt;}
.ws88{word-spacing:4.416000pt;}
.ws1f{word-spacing:4.480000pt;}
.ws74{word-spacing:4.544000pt;}
.ws69{word-spacing:4.608000pt;}
.ws87{word-spacing:4.672000pt;}
.ws34{word-spacing:4.736000pt;}
.ws9d{word-spacing:4.800000pt;}
.ws3d{word-spacing:4.864000pt;}
.ws3a{word-spacing:4.928000pt;}
.ws70{word-spacing:4.992000pt;}
.ws3f{word-spacing:5.056000pt;}
.ws36{word-spacing:5.120000pt;}
.ws82{word-spacing:5.184000pt;}
.ws8a{word-spacing:5.248000pt;}
.ws96{word-spacing:5.312000pt;}
.ws26{word-spacing:5.440000pt;}
.ws4e{word-spacing:5.504000pt;}
.ws33{word-spacing:5.568000pt;}
.ws4b{word-spacing:5.632000pt;}
.ws28{word-spacing:5.696000pt;}
.ws58{word-spacing:5.760000pt;}
.ws2d{word-spacing:5.952000pt;}
.ws8b{word-spacing:6.016000pt;}
.ws7f{word-spacing:6.080000pt;}
.ws8e{word-spacing:6.144000pt;}
.ws50{word-spacing:6.208000pt;}
.ws49{word-spacing:6.272000pt;}
.ws47{word-spacing:6.336000pt;}
.ws9c{word-spacing:6.400000pt;}
.ws4a{word-spacing:6.464000pt;}
.ws67{word-spacing:6.528000pt;}
.wsf{word-spacing:6.560000pt;}
.ws38{word-spacing:6.592000pt;}
.ws23{word-spacing:6.656000pt;}
.ws64{word-spacing:6.720000pt;}
.ws4f{word-spacing:6.784000pt;}
.ws4d{word-spacing:6.848000pt;}
.ws2f{word-spacing:6.976000pt;}
.ws62{word-spacing:7.040000pt;}
.ws80{word-spacing:7.104000pt;}
.ws9f{word-spacing:7.232000pt;}
.ws7e{word-spacing:7.296000pt;}
.ws39{word-spacing:7.360000pt;}
.ws61{word-spacing:7.424000pt;}
.ws52{word-spacing:7.445333pt;}
.wsb{word-spacing:7.466667pt;}
.ws8f{word-spacing:7.552000pt;}
.ws60{word-spacing:7.616000pt;}
.ws5b{word-spacing:7.744000pt;}
.ws89{word-spacing:7.808000pt;}
.ws57{word-spacing:7.872000pt;}
.ws5d{word-spacing:7.936000pt;}
.ws35{word-spacing:8.000000pt;}
.ws6e{word-spacing:8.064000pt;}
.wsa8{word-spacing:8.128000pt;}
.ws84{word-spacing:8.192000pt;}
.ws2c{word-spacing:8.256000pt;}
.ws5e{word-spacing:8.448000pt;}
.ws8c{word-spacing:8.576000pt;}
.ws2b{word-spacing:8.768000pt;}
.ws8d{word-spacing:8.832000pt;}
.ws3b{word-spacing:8.896000pt;}
.ws1d{word-spacing:8.960000pt;}
.ws17{word-spacing:9.024000pt;}
.ws6d{word-spacing:9.216000pt;}
.ws63{word-spacing:9.344000pt;}
.wsb1{word-spacing:11.733333pt;}
.ws7{word-spacing:13.440000pt;}
.ws9{word-spacing:65.013333pt;}
._f{margin-left:-835.900267pt;}
._5{margin-left:-62.080000pt;}
._14{margin-left:-60.480000pt;}
._18{margin-left:-15.040000pt;}
._8{margin-left:-10.602667pt;}
._a{margin-left:-8.597333pt;}
._7{margin-left:-7.360000pt;}
._c{margin-left:-6.368000pt;}
._2{margin-left:-5.301333pt;}
._3{margin-left:-4.250667pt;}
._9{margin-left:-2.634667pt;}
._0{margin-left:-1.034667pt;}
._b{width:0.906667pt;}
._4{width:1.888000pt;}
._12{width:2.865067pt;}
._1{width:3.754667pt;}
._6{width:4.693333pt;}
._15{width:6.288533pt;}
._d{width:7.552533pt;}
._e{width:8.464000pt;}
._11{width:10.113067pt;}
._16{width:11.061333pt;}
._17{width:12.256000pt;}
._10{width:20.023467pt;}
._13{width:28.129867pt;}
.fs7{font-size:29.866667pt;}
.fs6{font-size:31.733333pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:44.800000pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y4a{bottom:104.000000pt;}
.y70{bottom:104.069333pt;}
.y90{bottom:104.112000pt;}
.y99{bottom:104.229333pt;}
.yde{bottom:104.533333pt;}
.y115{bottom:105.189467pt;}
.y14c{bottom:107.824000pt;}
.y24{bottom:108.600800pt;}
.y49{bottom:117.333333pt;}
.y114{bottom:118.384133pt;}
.y14b{bottom:121.157333pt;}
.y175{bottom:123.010000pt;}
.y6f{bottom:123.541333pt;}
.y8f{bottom:123.584000pt;}
.y98{bottom:123.701333pt;}
.ybb{bottom:124.000000pt;}
.ydd{bottom:124.533333pt;}
.y23{bottom:125.534133pt;}
.y48{bottom:130.666667pt;}
.y113{bottom:131.578800pt;}
.y14a{bottom:134.490667pt;}
.y174{bottom:139.676667pt;}
.y6e{bottom:143.013333pt;}
.y8e{bottom:143.056000pt;}
.y97{bottom:143.173333pt;}
.y47{bottom:144.000000pt;}
.ydc{bottom:144.533333pt;}
.y112{bottom:144.773467pt;}
.y149{bottom:147.824000pt;}
.y22{bottom:150.025600pt;}
.y173{bottom:156.343333pt;}
.y46{bottom:157.333333pt;}
.y111{bottom:157.978800pt;}
.y148{bottom:161.157333pt;}
.y6d{bottom:162.485333pt;}
.y8d{bottom:162.528000pt;}
.y96{bottom:162.645333pt;}
.yba{bottom:164.000000pt;}
.ydb{bottom:164.533333pt;}
.y21{bottom:166.958933pt;}
.ye0{bottom:170.666667pt;}
.y110{bottom:171.173467pt;}
.y172{bottom:173.010000pt;}
.y45{bottom:174.406667pt;}
.y147{bottom:174.490667pt;}
.y6c{bottom:181.957333pt;}
.y8c{bottom:182.000000pt;}
.y95{bottom:182.117333pt;}
.y20{bottom:183.892267pt;}
.yb9{bottom:184.000000pt;}
.y10f{bottom:184.368133pt;}
.yda{bottom:184.533333pt;}
.ydf{bottom:187.740000pt;}
.y146{bottom:187.824000pt;}
.y171{bottom:189.676667pt;}
.y10e{bottom:197.562800pt;}
.y1f{bottom:200.825600pt;}
.y145{bottom:201.157333pt;}
.y6b{bottom:201.429333pt;}
.y8b{bottom:201.472000pt;}
.y94{bottom:201.589333pt;}
.yb8{bottom:204.000000pt;}
.yd9{bottom:204.533333pt;}
.y44{bottom:208.432000pt;}
.y10d{bottom:210.757467pt;}
.y144{bottom:214.490667pt;}
.y170{bottom:216.343333pt;}
.y1e{bottom:217.758933pt;}
.y6a{bottom:220.901333pt;}
.y8a{bottom:220.944000pt;}
.y93{bottom:221.061333pt;}
.y10c{bottom:223.952133pt;}
.yb7{bottom:224.000000pt;}
.yd8{bottom:224.533333pt;}
.y143{bottom:227.824000pt;}
.y43{bottom:227.904000pt;}
.y1d{bottom:234.692267pt;}
.y10b{bottom:237.146800pt;}
.y69{bottom:240.373333pt;}
.y89{bottom:240.416000pt;}
.y92{bottom:240.533333pt;}
.y142{bottom:241.157333pt;}
.yb6{bottom:244.000000pt;}
.yd7{bottom:244.533333pt;}
.y42{bottom:247.776000pt;}
.y10a{bottom:250.341467pt;}
.y1c{bottom:251.625600pt;}
.y16f{bottom:253.010000pt;}
.y141{bottom:254.490667pt;}
.y68{bottom:259.845333pt;}
.y88{bottom:259.888000pt;}
.y91{bottom:260.000000pt;}
.y109{bottom:263.536133pt;}
.yb5{bottom:264.000000pt;}
.yd6{bottom:264.533333pt;}
.y41{bottom:267.648000pt;}
.y140{bottom:267.824000pt;}
.y1b{bottom:268.558933pt;}
.y16e{bottom:269.676667pt;}
.y108{bottom:276.730800pt;}
.y67{bottom:279.317333pt;}
.y87{bottom:279.360000pt;}
.y13f{bottom:281.157333pt;}
.yb4{bottom:284.000000pt;}
.yd5{bottom:284.533333pt;}
.y1a{bottom:285.492267pt;}
.y16d{bottom:286.343333pt;}
.y40{bottom:287.520000pt;}
.y107{bottom:289.925467pt;}
.y13e{bottom:294.490667pt;}
.y66{bottom:298.789333pt;}
.y86{bottom:298.832000pt;}
.y19{bottom:302.425600pt;}
.y16c{bottom:303.010000pt;}
.y106{bottom:303.120133pt;}
.yb3{bottom:304.000000pt;}
.yd4{bottom:304.533333pt;}
.y3f{bottom:307.392000pt;}
.y13d{bottom:307.824000pt;}
.y105{bottom:316.314800pt;}
.y65{bottom:318.261333pt;}
.y85{bottom:318.304000pt;}
.y18{bottom:319.358933pt;}
.y16b{bottom:319.676667pt;}
.y13c{bottom:321.157333pt;}
.yb2{bottom:324.000000pt;}
.yd3{bottom:324.533333pt;}
.y3e{bottom:327.264000pt;}
.y104{bottom:329.509467pt;}
.y13b{bottom:334.490667pt;}
.y16a{bottom:336.343333pt;}
.y64{bottom:337.733333pt;}
.y84{bottom:337.776000pt;}
.y103{bottom:342.704133pt;}
.y17{bottom:343.852267pt;}
.yb1{bottom:344.000000pt;}
.yd2{bottom:344.533333pt;}
.y3d{bottom:347.136000pt;}
.y13a{bottom:347.824000pt;}
.y169{bottom:353.010000pt;}
.y102{bottom:355.898800pt;}
.y63{bottom:357.205333pt;}
.y83{bottom:357.248000pt;}
.y139{bottom:361.157333pt;}
.yb0{bottom:364.000000pt;}
.yd1{bottom:364.533333pt;}
.y3c{bottom:367.008000pt;}
.y101{bottom:369.093467pt;}
.y168{bottom:369.676667pt;}
.y138{bottom:374.490667pt;}
.y62{bottom:376.677333pt;}
.y82{bottom:376.720000pt;}
.y100{bottom:382.288133pt;}
.yaf{bottom:384.000000pt;}
.y16{bottom:384.385600pt;}
.yd0{bottom:384.533333pt;}
.y167{bottom:386.343333pt;}
.y3b{bottom:386.880000pt;}
.y137{bottom:387.824000pt;}
.yff{bottom:395.482800pt;}
.y61{bottom:396.149333pt;}
.y81{bottom:396.192000pt;}
.y136{bottom:401.157333pt;}
.y15{bottom:401.318933pt;}
.y166{bottom:403.010000pt;}
.yae{bottom:404.000000pt;}
.ycf{bottom:404.533333pt;}
.y3a{bottom:406.752000pt;}
.yfe{bottom:408.677467pt;}
.y135{bottom:414.490667pt;}
.y60{bottom:415.621333pt;}
.y80{bottom:415.664000pt;}
.y165{bottom:419.676667pt;}
.yfd{bottom:421.872133pt;}
.yad{bottom:424.000000pt;}
.yce{bottom:424.533333pt;}
.y14{bottom:425.810400pt;}
.y39{bottom:426.624000pt;}
.y134{bottom:427.824000pt;}
.yfc{bottom:435.066800pt;}
.y5f{bottom:435.093333pt;}
.y7f{bottom:435.136000pt;}
.y164{bottom:436.343333pt;}
.y133{bottom:441.157333pt;}
.y13{bottom:442.743733pt;}
.yac{bottom:444.000000pt;}
.ycd{bottom:444.533333pt;}
.y38{bottom:446.496000pt;}
.yfb{bottom:448.314667pt;}
.y163{bottom:453.010000pt;}
.y132{bottom:454.490667pt;}
.y5e{bottom:454.565333pt;}
.y7e{bottom:454.608000pt;}
.y12{bottom:459.677067pt;}
.yfa{bottom:461.509333pt;}
.yab{bottom:464.000000pt;}
.ycc{bottom:464.533333pt;}
.y37{bottom:466.368000pt;}
.y131{bottom:467.824000pt;}
.y162{bottom:469.676667pt;}
.y5d{bottom:474.037333pt;}
.y7d{bottom:474.080000pt;}
.yf9{bottom:474.704000pt;}
.y11{bottom:476.610400pt;}
.y130{bottom:481.157333pt;}
.yaa{bottom:484.000000pt;}
.ycb{bottom:484.533333pt;}
.y36{bottom:486.240000pt;}
.y161{bottom:486.343333pt;}
.yf8{bottom:487.898667pt;}
.y5c{bottom:493.509333pt;}
.y10{bottom:493.543733pt;}
.y7c{bottom:493.552000pt;}
.y12f{bottom:494.490667pt;}
.yf7{bottom:501.093333pt;}
.y160{bottom:503.010000pt;}
.ya9{bottom:504.000000pt;}
.yca{bottom:504.533333pt;}
.y35{bottom:506.112000pt;}
.y12e{bottom:507.824000pt;}
.yf{bottom:510.477067pt;}
.y5b{bottom:512.981333pt;}
.y7b{bottom:513.024000pt;}
.yf6{bottom:514.288000pt;}
.y15f{bottom:519.676667pt;}
.y12d{bottom:521.157333pt;}
.ya8{bottom:524.000000pt;}
.yc9{bottom:524.533333pt;}
.y34{bottom:525.984000pt;}
.ye{bottom:527.410400pt;}
.yf5{bottom:527.482667pt;}
.y5a{bottom:532.453333pt;}
.y7a{bottom:532.496000pt;}
.y12c{bottom:534.490667pt;}
.y15e{bottom:536.343333pt;}
.yf4{bottom:540.677333pt;}
.ya7{bottom:544.000000pt;}
.yd{bottom:544.343733pt;}
.yc8{bottom:544.533333pt;}
.y33{bottom:545.856000pt;}
.y12b{bottom:547.824000pt;}
.y59{bottom:551.925333pt;}
.y79{bottom:551.968000pt;}
.y15d{bottom:553.010000pt;}
.yf3{bottom:553.872000pt;}
.yc{bottom:561.277067pt;}
.y12a{bottom:561.285333pt;}
.ya6{bottom:564.000000pt;}
.yc7{bottom:564.533333pt;}
.y32{bottom:565.728000pt;}
.y15c{bottom:569.676667pt;}
.y58{bottom:571.397333pt;}
.y78{bottom:571.440000pt;}
.yf2{bottom:572.741333pt;}
.y129{bottom:574.746667pt;}
.yb{bottom:578.210400pt;}
.ya5{bottom:584.000000pt;}
.y31{bottom:585.541333pt;}
.y15b{bottom:586.343333pt;}
.y128{bottom:588.208000pt;}
.y57{bottom:590.869333pt;}
.y77{bottom:590.912000pt;}
.ya{bottom:595.143733pt;}
.y127{bottom:601.669333pt;}
.y15a{bottom:603.010000pt;}
.ya4{bottom:604.000000pt;}
.yc6{bottom:604.533333pt;}
.y30{bottom:605.413333pt;}
.yf1{bottom:606.074667pt;}
.y56{bottom:610.341333pt;}
.y76{bottom:610.384000pt;}
.y126{bottom:615.130667pt;}
.yf0{bottom:619.408000pt;}
.y9{bottom:619.637067pt;}
.y159{bottom:619.676667pt;}
.ya3{bottom:624.000000pt;}
.yc5{bottom:624.533333pt;}
.y2f{bottom:625.285333pt;}
.y125{bottom:628.592000pt;}
.y55{bottom:629.813333pt;}
.y75{bottom:629.856000pt;}
.yef{bottom:632.741333pt;}
.y124{bottom:642.053333pt;}
.ya2{bottom:644.000000pt;}
.yc4{bottom:644.533333pt;}
.y2e{bottom:645.157333pt;}
.yee{bottom:646.074667pt;}
.y158{bottom:647.681867pt;}
.y54{bottom:649.285333pt;}
.y74{bottom:649.328000pt;}
.y123{bottom:655.514667pt;}
.yed{bottom:659.408000pt;}
.y8{bottom:660.424533pt;}
.ya1{bottom:664.000000pt;}
.yc3{bottom:664.533333pt;}
.y2d{bottom:665.029333pt;}
.y53{bottom:668.757333pt;}
.y73{bottom:668.800000pt;}
.y122{bottom:668.976000pt;}
.yec{bottom:672.741333pt;}
.y157{bottom:675.045333pt;}
.y7{bottom:680.424533pt;}
.y121{bottom:682.437333pt;}
.ya0{bottom:684.000000pt;}
.yc2{bottom:684.533333pt;}
.y2c{bottom:684.901333pt;}
.yeb{bottom:686.074667pt;}
.y52{bottom:688.229333pt;}
.y72{bottom:688.266667pt;}
.y120{bottom:695.898667pt;}
.yea{bottom:699.408000pt;}
.y9f{bottom:704.000000pt;}
.yc1{bottom:704.533333pt;}
.y2b{bottom:704.773333pt;}
.y51{bottom:707.701333pt;}
.y71{bottom:707.733333pt;}
.y11f{bottom:709.360000pt;}
.y156{bottom:712.026667pt;}
.ye9{bottom:712.741333pt;}
.y11e{bottom:722.821333pt;}
.y9e{bottom:724.000000pt;}
.yc0{bottom:724.533333pt;}
.y2a{bottom:724.645333pt;}
.y155{bottom:725.232000pt;}
.ye8{bottom:726.074667pt;}
.y50{bottom:727.173333pt;}
.y11d{bottom:736.293333pt;}
.y154{bottom:738.426667pt;}
.ye7{bottom:739.269333pt;}
.y6{bottom:740.109467pt;}
.y9d{bottom:744.000000pt;}
.y29{bottom:744.517333pt;}
.ybf{bottom:744.533333pt;}
.y4f{bottom:746.645333pt;}
.y11c{bottom:749.754667pt;}
.y153{bottom:751.621333pt;}
.ye6{bottom:752.474667pt;}
.y11b{bottom:763.216000pt;}
.y9c{bottom:764.000000pt;}
.y28{bottom:764.389333pt;}
.ybe{bottom:764.533333pt;}
.y152{bottom:764.816000pt;}
.ye5{bottom:765.669333pt;}
.y4e{bottom:766.117333pt;}
.y5{bottom:766.642800pt;}
.y11a{bottom:776.677333pt;}
.y151{bottom:778.010667pt;}
.ye4{bottom:778.864000pt;}
.y9b{bottom:784.000000pt;}
.y27{bottom:784.261333pt;}
.ybd{bottom:784.533333pt;}
.y4d{bottom:785.589333pt;}
.y119{bottom:790.138667pt;}
.y150{bottom:791.216000pt;}
.ye3{bottom:792.069333pt;}
.y4{bottom:793.176133pt;}
.y118{bottom:803.610667pt;}
.y9a{bottom:804.000000pt;}
.y26{bottom:804.133333pt;}
.y14f{bottom:804.410667pt;}
.ybc{bottom:804.533333pt;}
.y4c{bottom:805.061333pt;}
.ye2{bottom:805.264000pt;}
.y117{bottom:817.072000pt;}
.y14e{bottom:817.605333pt;}
.y25{bottom:824.000000pt;}
.ye1{bottom:824.133333pt;}
.y4b{bottom:824.533333pt;}
.y116{bottom:830.533333pt;}
.y14d{bottom:830.800000pt;}
.y3{bottom:835.576133pt;}
.hc{height:21.894141pt;}
.hd{height:29.437500pt;}
.h12{height:33.117188pt;}
.h11{height:33.416667pt;}
.h3{height:34.957031pt;}
.h10{height:35.456000pt;}
.h2{height:35.546875pt;}
.he{height:36.229167pt;}
.h7{height:36.796875pt;}
.h5{height:37.333333pt;}
.h1{height:41.770833pt;}
.h9{height:44.156250pt;}
.h8{height:45.286458pt;}
.h6{height:50.125000pt;}
.hf{height:52.029375pt;}
.ha{height:52.264042pt;}
.hb{height:54.343750pt;}
.h4{height:73.593750pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x2{left:60.000000pt;}
.x7{left:73.232000pt;}
.x3{left:86.456667pt;}
.x5{left:100.000000pt;}
.x6{left:113.228400pt;}
.x1{left:120.000000pt;}
.x9{left:160.481733pt;}
.x8{left:564.791600pt;}
.x4{left:573.333333pt;}
}




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