
    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_653ba44569ff6a6a6f2b41ad.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_22b3ea0f21990e643f1642c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.692383;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_7af0be20d76ac644b0686f72.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_44814e63bbd4726f10464477.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_21f0047beb5c997694f66012.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_7ecf51703facf3286b5cc141.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.692383;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_97fc0919fa83be6bd89f32c9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_b24353c1f4dddac9bcca655a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.708008;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_c65dec4a7822bcaf47f92af8.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_aaac6934621c2c186cf31df6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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_f34d40b5e692581fdd89bc17.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.689453;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_44601755072430581b9928aa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_ec73ff7cb1b7a2550ff63b27.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908203;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_fee97d6b7c0a91ee1af52687.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.687500;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_4904d2895ef35c6e81ddcbbd.woff2')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_7622c4a3717b07440b739c61.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.m2{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v4{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.720000px;}
.v1{vertical-align:24.480000px;}
.ls70{letter-spacing:-1.814400px;}
.ls72{letter-spacing:-1.800000px;}
.ls71{letter-spacing:-1.792800px;}
.ls6f{letter-spacing:-1.785600px;}
.ls50{letter-spacing:-1.512000px;}
.ls24{letter-spacing:-1.497600px;}
.ls45{letter-spacing:-1.490400px;}
.ls73{letter-spacing:-1.209600px;}
.ls47{letter-spacing:-1.202400px;}
.ls49{letter-spacing:-0.840672px;}
.ls48{letter-spacing:-0.612000px;}
.ls22{letter-spacing:-0.597600px;}
.ls23{letter-spacing:-0.590400px;}
.ls33{letter-spacing:-0.459648px;}
.ls2e{letter-spacing:-0.417312px;}
.ls19{letter-spacing:-0.381024px;}
.ls17{letter-spacing:-0.338688px;}
.ls2f{letter-spacing:-0.320544px;}
.ls1c{letter-spacing:-0.302400px;}
.ls32{letter-spacing:-0.260064px;}
.ls1e{letter-spacing:-0.241920px;}
.ls4f{letter-spacing:-0.238464px;}
.ls20{letter-spacing:-0.223776px;}
.ls10{letter-spacing:-0.198720px;}
.ls1f{letter-spacing:-0.175392px;}
.lsb{letter-spacing:-0.158976px;}
.ls18{letter-spacing:-0.157248px;}
.ls1d{letter-spacing:-0.145152px;}
.lsc{letter-spacing:-0.125856px;}
.lsf{letter-spacing:-0.119232px;}
.lsd{letter-spacing:-0.086112px;}
.lse{letter-spacing:-0.079488px;}
.ls58{letter-spacing:-0.050400px;}
.ls59{letter-spacing:-0.043200px;}
.ls57{letter-spacing:-0.028800px;}
.lsa{letter-spacing:-0.014400px;}
.ls3{letter-spacing:0.000000px;}
.ls6e{letter-spacing:0.000576px;}
.ls1a{letter-spacing:0.014400px;}
.ls14{letter-spacing:0.025920px;}
.ls21{letter-spacing:0.026928px;}
.ls13{letter-spacing:0.027072px;}
.ls12{letter-spacing:0.027360px;}
.ls15{letter-spacing:0.060048px;}
.ls7{letter-spacing:0.116928px;}
.ls4b{letter-spacing:0.118800px;}
.ls4c{letter-spacing:0.118944px;}
.ls4e{letter-spacing:0.119520px;}
.ls3e{letter-spacing:0.123552px;}
.ls5{letter-spacing:0.158688px;}
.ls2{letter-spacing:0.161280px;}
.ls1b{letter-spacing:0.239040px;}
.ls11{letter-spacing:0.239904px;}
.ls25{letter-spacing:0.240048px;}
.ls30{letter-spacing:0.240480px;}
.ls1{letter-spacing:0.242208px;}
.ls4d{letter-spacing:0.267840px;}
.ls0{letter-spacing:0.275616px;}
.ls4{letter-spacing:0.317376px;}
.ls6{letter-spacing:0.359136px;}
.ls34{letter-spacing:0.416160px;}
.ls38{letter-spacing:0.565920px;}
.ls35{letter-spacing:0.566928px;}
.ls37{letter-spacing:0.567360px;}
.ls36{letter-spacing:0.716400px;}
.ls3c{letter-spacing:0.864000px;}
.ls3a{letter-spacing:0.864288px;}
.ls39{letter-spacing:0.864432px;}
.ls3b{letter-spacing:0.865440px;}
.ls43{letter-spacing:0.896688px;}
.ls44{letter-spacing:0.897120px;}
.ls3d{letter-spacing:1.147680px;}
.ls8{letter-spacing:1.349280px;}
.ls9{letter-spacing:1.350720px;}
.ls4a{letter-spacing:2.163744px;}
.ls56{letter-spacing:2.183040px;}
.ls2d{letter-spacing:5.578560px;}
.ls26{letter-spacing:6.180192px;}
.ls27{letter-spacing:6.180336px;}
.ls2b{letter-spacing:6.180480px;}
.ls29{letter-spacing:6.480432px;}
.ls28{letter-spacing:6.480720px;}
.ls2a{letter-spacing:6.481440px;}
.ls2c{letter-spacing:6.779520px;}
.ls6b{letter-spacing:7.800336px;}
.ls6d{letter-spacing:8.699040px;}
.ls54{letter-spacing:11.102400px;}
.ls51{letter-spacing:11.937600px;}
.ls55{letter-spacing:11.957616px;}
.ls53{letter-spacing:11.999520px;}
.ls52{letter-spacing:12.000960px;}
.ls16{letter-spacing:14.269104px;}
.ls31{letter-spacing:15.770592px;}
.ls46{letter-spacing:16.155936px;}
.ls6c{letter-spacing:19.199520px;}
.ls42{letter-spacing:28.651680px;}
.ls41{letter-spacing:28.653120px;}
.ls3f{letter-spacing:28.653840px;}
.ls40{letter-spacing:28.653984px;}
.ls5c{letter-spacing:57.002976px;}
.ls62{letter-spacing:57.143520px;}
.ls64{letter-spacing:57.385152px;}
.ls67{letter-spacing:57.418560px;}
.ls5b{letter-spacing:57.481920px;}
.ls65{letter-spacing:57.505248px;}
.ls5e{letter-spacing:57.538080px;}
.ls66{letter-spacing:57.602016px;}
.ls63{letter-spacing:57.696480px;}
.ls6a{letter-spacing:57.697920px;}
.ls61{letter-spacing:57.782880px;}
.ls60{letter-spacing:58.358880px;}
.ls69{letter-spacing:58.681440px;}
.ls5f{letter-spacing:59.676480px;}
.ls5d{letter-spacing:60.531840px;}
.ls5a{letter-spacing:61.696224px;}
.ls68{letter-spacing:61.970400px;}
.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;}
}
.ws4{word-spacing:-21.239136px;}
.ws0{word-spacing:-21.197376px;}
.ws1{word-spacing:-21.155616px;}
.ws2{word-spacing:-21.122208px;}
.ws3{word-spacing:-21.038688px;}
.ws5{word-spacing:-20.996928px;}
.wsb{word-spacing:-18.014400px;}
.ws6{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.985600px;}
.ws12{word-spacing:-17.409600px;}
.ws11{word-spacing:-17.402400px;}
.ws20{word-spacing:-17.388000px;}
.ws1f{word-spacing:-16.797600px;}
.ws2a{word-spacing:-16.790400px;}
.ws9{word-spacing:-16.560000px;}
.ws1e{word-spacing:-16.509600px;}
.ws13{word-spacing:-16.502400px;}
.ws25{word-spacing:-16.488000px;}
.ws1b{word-spacing:-16.480512px;}
.ws1d{word-spacing:-16.440768px;}
.ws1c{word-spacing:-16.434144px;}
.ws1a{word-spacing:-16.401024px;}
.ws21{word-spacing:-16.361280px;}
.ws24{word-spacing:-16.321536px;}
.ws26{word-spacing:-16.214400px;}
.ws28{word-spacing:-16.207200px;}
.ws29{word-spacing:-16.200000px;}
.ws27{word-spacing:-16.185600px;}
.wsa{word-spacing:-15.120000px;}
.wsd{word-spacing:-14.974848px;}
.ws17{word-spacing:-14.962752px;}
.wsf{word-spacing:-14.944608px;}
.ws10{word-spacing:-14.896224px;}
.wse{word-spacing:-14.878080px;}
.ws16{word-spacing:-14.859936px;}
.wsc{word-spacing:-14.817600px;}
.ws14{word-spacing:-14.781312px;}
.ws18{word-spacing:-14.738976px;}
.ws15{word-spacing:-14.702688px;}
.ws23{word-spacing:-14.279328px;}
.ws19{word-spacing:-12.003552px;}
.ws22{word-spacing:-9.000000px;}
.ws7{word-spacing:0.000000px;}
._12{margin-left:-3.393072px;}
._1{margin-left:-2.346768px;}
._0{margin-left:-1.232352px;}
._2{width:1.078992px;}
._7{width:2.649600px;}
._8{width:3.709440px;}
._a{width:5.525568px;}
._4{width:6.941376px;}
._3{width:8.485632px;}
._11{width:9.529920px;}
._e{width:10.532160px;}
._14{width:11.976336px;}
._c{width:12.983040px;}
._15{width:15.004800px;}
._13{width:16.027200px;}
._d{width:17.805312px;}
._b{width:19.540800px;}
._9{width:20.998080px;}
._17{width:22.654080px;}
._6{width:24.096384px;}
._5{width:25.104960px;}
._16{width:29.321280px;}
._10{width:32.223168px;}
._f{width:33.804000px;}
._19{width:36.504000px;}
._18{width:44.661600px;}
._1a{width:58.554576px;}
.fc1{color:rgb(128,0,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:44.640000px;}
.fs3{font-size:47.520000px;}
.fs4{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:33.840000px;}
.y2a{bottom:57.960000px;}
.y29{bottom:82.080000px;}
.y28{bottom:106.200000px;}
.y27{bottom:130.320000px;}
.y26{bottom:154.440000px;}
.y25{bottom:178.560000px;}
.y101{bottom:191.160000px;}
.y24{bottom:202.680000px;}
.y100{bottom:209.160000px;}
.y94{bottom:221.760000px;}
.y23{bottom:226.800000px;}
.yff{bottom:227.160000px;}
.y74{bottom:228.600000px;}
.y9a{bottom:235.080000px;}
.ye4{bottom:236.880000px;}
.ya9{bottom:237.240000px;}
.yed{bottom:238.320000px;}
.y93{bottom:245.160000px;}
.y22{bottom:250.920000px;}
.y73{bottom:252.000000px;}
.y99{bottom:253.080000px;}
.ya8{bottom:255.240000px;}
.yd0{bottom:256.320000px;}
.ye3{bottom:258.120000px;}
.yca{bottom:263.160000px;}
.yfe{bottom:265.320000px;}
.y92{bottom:266.400000px;}
.y83{bottom:270.720000px;}
.y78{bottom:271.440000px;}
.ya7{bottom:272.880000px;}
.y72{bottom:273.240000px;}
.yec{bottom:273.960000px;}
.ycf{bottom:274.320000px;}
.y21{bottom:275.040000px;}
.yb1{bottom:277.920000px;}
.y5e{bottom:281.520000px;}
.y14a{bottom:285.120000px;}
.yfd{bottom:285.840000px;}
.y98{bottom:288.720000px;}
.ya6{bottom:290.880000px;}
.yeb{bottom:291.960000px;}
.ycc{bottom:292.320000px;}
.yb0{bottom:295.560000px;}
.y20{bottom:299.160000px;}
.y149{bottom:302.760000px;}
.yc9{bottom:304.560000px;}
.ya5{bottom:308.880000px;}
.y82{bottom:312.120000px;}
.y77{bottom:312.840000px;}
.ycb{bottom:313.200000px;}
.yaf{bottom:313.560000px;}
.yce{bottom:315.360000px;}
.y5d{bottom:317.160000px;}
.y148{bottom:320.760000px;}
.y1f{bottom:323.640000px;}
.yc8{bottom:325.080000px;}
.y4b{bottom:330.480000px;}
.yae{bottom:331.560000px;}
.ya4{bottom:331.920000px;}
.y125{bottom:332.280000px;}
.y97{bottom:333.360000px;}
.ye2{bottom:333.720000px;}
.yfc{bottom:334.080000px;}
.yea{bottom:336.600000px;}
.ycd{bottom:336.960000px;}
.y147{bottom:338.760000px;}
.y91{bottom:340.200000px;}
.y5c{bottom:340.560000px;}
.ya3{bottom:343.800000px;}
.yc7{bottom:347.400000px;}
.y1e{bottom:347.760000px;}
.y81{bottom:353.520000px;}
.y71{bottom:354.240000px;}
.yad{bottom:354.600000px;}
.y16b{bottom:355.320000px;}
.y124{bottom:356.400000px;}
.y146{bottom:356.760000px;}
.y90{bottom:357.480000px;}
.y4a{bottom:360.360000px;}
.y5b{bottom:361.800000px;}
.ya2{bottom:371.160000px;}
.y1d{bottom:371.880000px;}
.y16a{bottom:372.240000px;}
.ye9{bottom:374.400000px;}
.y145{bottom:374.760000px;}
.ye1{bottom:375.120000px;}
.yfb{bottom:375.480000px;}
.y96{bottom:381.240000px;}
.yc6{bottom:385.200000px;}
.y49{bottom:385.920000px;}
.y123{bottom:392.400000px;}
.y169{bottom:392.760000px;}
.y80{bottom:394.920000px;}
.y70{bottom:395.640000px;}
.y1c{bottom:396.000000px;}
.y95{bottom:398.520000px;}
.y122{bottom:410.040000px;}
.y144{bottom:410.400000px;}
.ye8{bottom:416.160000px;}
.ye0{bottom:416.520000px;}
.yfa{bottom:416.880000px;}
.y48{bottom:417.960000px;}
.y1b{bottom:420.120000px;}
.yc5{bottom:423.000000px;}
.y5a{bottom:423.360000px;}
.y143{bottom:428.400000px;}
.y121{bottom:429.120000px;}
.y7f{bottom:436.320000px;}
.y6f{bottom:437.040000px;}
.y8f{bottom:437.400000px;}
.y168{bottom:438.480000px;}
.y59{bottom:440.640000px;}
.y47{bottom:443.160000px;}
.y1a{bottom:444.240000px;}
.y120{bottom:446.040000px;}
.y142{bottom:446.400000px;}
.ye7{bottom:457.560000px;}
.ydf{bottom:457.920000px;}
.yd2{bottom:458.280000px;}
.yc4{bottom:461.160000px;}
.y11f{bottom:464.040000px;}
.y141{bottom:464.400000px;}
.y19{bottom:468.360000px;}
.y46{bottom:468.720000px;}
.y7e{bottom:477.720000px;}
.y6e{bottom:478.440000px;}
.y8e{bottom:478.800000px;}
.y58{bottom:479.160000px;}
.y11e{bottom:482.040000px;}
.y140{bottom:482.400000px;}
.y167{bottom:484.560000px;}
.y18{bottom:492.480000px;}
.y45{bottom:493.920000px;}
.ye6{bottom:498.960000px;}
.yc3{bottom:499.320000px;}
.y11d{bottom:500.040000px;}
.y166{bottom:505.440000px;}
.y17{bottom:516.600000px;}
.y11c{bottom:518.040000px;}
.ya1{bottom:519.120000px;}
.y44{bottom:519.480000px;}
.y6d{bottom:519.840000px;}
.y8c{bottom:520.200000px;}
.y57{bottom:520.560000px;}
.y165{bottom:529.200000px;}
.y11b{bottom:536.040000px;}
.yc2{bottom:537.480000px;}
.ye5{bottom:540.360000px;}
.y16{bottom:540.720000px;}
.yd1{bottom:541.080000px;}
.y43{bottom:544.680000px;}
.y164{bottom:547.200000px;}
.y13f{bottom:554.040000px;}
.y11a{bottom:559.440000px;}
.ya0{bottom:560.520000px;}
.y7d{bottom:560.880000px;}
.y6c{bottom:561.240000px;}
.y8b{bottom:561.600000px;}
.y56{bottom:561.960000px;}
.y15{bottom:564.840000px;}
.y163{bottom:565.200000px;}
.y42{bottom:570.240000px;}
.y13e{bottom:572.040000px;}
.yc1{bottom:575.280000px;}
.y119{bottom:579.960000px;}
.yde{bottom:582.120000px;}
.y162{bottom:583.200000px;}
.y13d{bottom:590.040000px;}
.y41{bottom:595.440000px;}
.y14{bottom:601.200000px;}
.y9f{bottom:601.920000px;}
.y7c{bottom:602.280000px;}
.y6b{bottom:602.640000px;}
.y8a{bottom:603.000000px;}
.y55{bottom:603.360000px;}
.y118{bottom:604.080000px;}
.y13c{bottom:607.680000px;}
.yc0{bottom:613.080000px;}
.y161{bottom:618.840000px;}
.y40{bottom:621.000000px;}
.y117{bottom:622.080000px;}
.yf9{bottom:623.160000px;}
.ydd{bottom:623.520000px;}
.y8d{bottom:623.880000px;}
.y13b{bottom:625.680000px;}
.y160{bottom:636.840000px;}
.y13{bottom:637.560000px;}
.y9e{bottom:643.320000px;}
.y13a{bottom:643.680000px;}
.y6a{bottom:644.040000px;}
.y89{bottom:644.400000px;}
.y54{bottom:644.760000px;}
.y116{bottom:645.840000px;}
.ybf{bottom:651.240000px;}
.y15f{bottom:654.840000px;}
.y3f{bottom:661.680000px;}
.y139{bottom:663.120000px;}
.ydc{bottom:664.920000px;}
.y115{bottom:666.360000px;}
.y15e{bottom:672.840000px;}
.y12{bottom:673.920000px;}
.yf8{bottom:680.040000px;}
.y9d{bottom:685.080000px;}
.y69{bottom:685.440000px;}
.y88{bottom:685.800000px;}
.y53{bottom:686.160000px;}
.y114{bottom:687.240000px;}
.ybe{bottom:689.040000px;}
.y15d{bottom:690.840000px;}
.y3e{bottom:692.640000px;}
.y138{bottom:705.960000px;}
.ydb{bottom:706.320000px;}
.y11{bottom:707.400000px;}
.y113{bottom:707.760000px;}
.y15c{bottom:708.840000px;}
.yf7{bottom:717.840000px;}
.y9c{bottom:726.480000px;}
.y68{bottom:726.840000px;}
.y87{bottom:727.200000px;}
.y52{bottom:727.920000px;}
.ybd{bottom:729.360000px;}
.y137{bottom:730.080000px;}
.y3d{bottom:732.240000px;}
.y15b{bottom:732.600000px;}
.y112{bottom:732.960000px;}
.y10{bottom:738.360000px;}
.yda{bottom:747.720000px;}
.y136{bottom:748.080000px;}
.y15a{bottom:753.120000px;}
.y111{bottom:753.480000px;}
.yf6{bottom:756.000000px;}
.y3c{bottom:758.160000px;}
.y135{bottom:766.080000px;}
.y9b{bottom:767.880000px;}
.y67{bottom:768.240000px;}
.y86{bottom:768.600000px;}
.ybc{bottom:768.960000px;}
.yf{bottom:769.680000px;}
.y159{bottom:776.880000px;}
.y110{bottom:779.040000px;}
.ybb{bottom:788.400000px;}
.yd9{bottom:789.120000px;}
.yac{bottom:789.480000px;}
.yf5{bottom:793.800000px;}
.y158{bottom:794.880000px;}
.y3b{bottom:798.120000px;}
.y10f{bottom:799.560000px;}
.ye{bottom:800.640000px;}
.yba{bottom:809.280000px;}
.y66{bottom:809.640000px;}
.y85{bottom:810.000000px;}
.y134{bottom:810.360000px;}
.y51{bottom:811.440000px;}
.y157{bottom:812.880000px;}
.y3a{bottom:823.680000px;}
.yd8{bottom:830.520000px;}
.y133{bottom:830.880000px;}
.yf4{bottom:831.600000px;}
.yd{bottom:831.960000px;}
.y10e{bottom:841.680000px;}
.y39{bottom:848.880000px;}
.yb9{bottom:850.320000px;}
.y65{bottom:851.040000px;}
.y84{bottom:851.400000px;}
.y50{bottom:852.840000px;}
.y132{bottom:856.440000px;}
.yc{bottom:862.920000px;}
.y10d{bottom:865.440000px;}
.y156{bottom:866.880000px;}
.yf3{bottom:869.760000px;}
.yd7{bottom:871.920000px;}
.y38{bottom:874.440000px;}
.y131{bottom:876.960000px;}
.y155{bottom:884.520000px;}
.y10c{bottom:885.960000px;}
.yb8{bottom:891.720000px;}
.y64{bottom:892.440000px;}
.y76{bottom:892.800000px;}
.yb{bottom:894.240000px;}
.y37{bottom:899.640000px;}
.y130{bottom:902.160000px;}
.y154{bottom:902.520000px;}
.y10b{bottom:906.480000px;}
.yf2{bottom:907.560000px;}
.y153{bottom:920.520000px;}
.y12f{bottom:923.040000px;}
.ya{bottom:925.200000px;}
.y10a{bottom:932.040000px;}
.yb7{bottom:933.120000px;}
.y63{bottom:933.840000px;}
.y75{bottom:934.200000px;}
.y4f{bottom:935.640000px;}
.y152{bottom:938.520000px;}
.y12e{bottom:943.560000px;}
.yf1{bottom:945.720000px;}
.yd6{bottom:948.960000px;}
.y36{bottom:950.400000px;}
.y109{bottom:952.560000px;}
.y9{bottom:956.520000px;}
.y151{bottom:962.280000px;}
.y12d{bottom:967.680000px;}
.y108{bottom:973.080000px;}
.yb6{bottom:974.520000px;}
.y62{bottom:975.240000px;}
.y7b{bottom:975.600000px;}
.y35{bottom:977.040000px;}
.y150{bottom:982.800000px;}
.yf0{bottom:983.520000px;}
.y12c{bottom:985.680000px;}
.yd5{bottom:987.120000px;}
.y8{bottom:990.000000px;}
.yab{bottom:996.120000px;}
.y107{bottom:998.280000px;}
.y14f{bottom:1003.680000px;}
.y12b{bottom:1008.360000px;}
.yb5{bottom:1015.920000px;}
.y61{bottom:1016.640000px;}
.y34{bottom:1017.000000px;}
.y4e{bottom:1018.440000px;}
.yef{bottom:1021.320000px;}
.y106{bottom:1022.400000px;}
.y14e{bottom:1024.200000px;}
.yd4{bottom:1024.920000px;}
.y7{bottom:1026.360000px;}
.y12a{bottom:1029.600000px;}
.y7a{bottom:1037.160000px;}
.y105{bottom:1040.400000px;}
.yee{bottom:1040.760000px;}
.y33{bottom:1042.560000px;}
.y14d{bottom:1049.400000px;}
.y129{bottom:1054.440000px;}
.yb4{bottom:1057.320000px;}
.y60{bottom:1058.040000px;}
.y79{bottom:1058.400000px;}
.y4d{bottom:1059.840000px;}
.y6{bottom:1062.720000px;}
.y32{bottom:1064.160000px;}
.y14c{bottom:1069.920000px;}
.y104{bottom:1076.040000px;}
.y128{bottom:1080.000000px;}
.y14b{bottom:1095.120000px;}
.yb3{bottom:1098.720000px;}
.y5{bottom:1099.080000px;}
.y31{bottom:1099.440000px;}
.y103{bottom:1099.800000px;}
.yd3{bottom:1100.880000px;}
.y4c{bottom:1101.240000px;}
.y102{bottom:1120.680000px;}
.y30{bottom:1123.560000px;}
.y127{bottom:1125.000000px;}
.y4{bottom:1135.440000px;}
.yb2{bottom:1140.480000px;}
.yaa{bottom:1140.840000px;}
.y5f{bottom:1141.200000px;}
.y126{bottom:1144.440000px;}
.y2f{bottom:1147.680000px;}
.y3{bottom:1171.440000px;}
.y2e{bottom:1171.800000px;}
.y2d{bottom:1195.920000px;}
.y2{bottom:1207.800000px;}
.y2c{bottom:1220.040000px;}
.y1{bottom:1244.160000px;}
.h7{height:26.274375px;}
.ha{height:29.752734px;}
.h9{height:32.994844px;}
.hc{height:40.310156px;}
.h6{height:42.022969px;}
.h5{height:46.025156px;}
.h8{height:47.988281px;}
.h4{height:48.796875px;}
.hb{height:49.992188px;}
.h2{height:56.604375px;}
.h3{height:63.175781px;}
.h0{height:1263.600000px;}
.h1{height:1263.750000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x3b{left:27.000000px;}
.x1{left:127.650132px;}
.x5{left:148.638420px;}
.x3{left:154.650132px;}
.x6{left:161.388432px;}
.x2d{left:171.735336px;}
.x1d{left:174.378693px;}
.x2{left:180.675288px;}
.x1e{left:187.128684px;}
.x7{left:201.888438px;}
.x8{left:214.638444px;}
.x9{left:232.137477px;}
.x2e{left:238.215819px;}
.xa{left:244.887444px;}
.x2f{left:249.240996px;}
.x1f{left:262.861098px;}
.x20{left:275.611104px;}
.xb{left:285.387441px;}
.xc{left:298.137456px;}
.x21{left:316.111056px;}
.x30{left:326.301984px;}
.x22{left:328.861116px;}
.xd{left:335.130636px;}
.xe{left:347.880636px;}
.x23{left:402.302580px;}
.x24{left:415.052640px;}
.x31{left:416.266980px;}
.xf{left:427.843410px;}
.x10{left:440.593560px;}
.x11{left:457.582620px;}
.x12{left:470.332800px;}
.x32{left:507.479790px;}
.x33{left:518.429880px;}
.x13{left:544.301760px;}
.x14{left:557.051400px;}
.x25{left:568.606380px;}
.x15{left:571.562220px;}
.x26{left:581.356080px;}
.x16{left:584.312400px;}
.x34{left:592.607880px;}
.x35{left:631.605360px;}
.x27{left:634.336440px;}
.x17{left:637.292970px;}
.x36{left:642.705120px;}
.x28{left:647.086680px;}
.x18{left:650.042640px;}
.x37{left:659.694210px;}
.x29{left:664.075650px;}
.x19{left:667.032180px;}
.x38{left:670.869000px;}
.x2a{left:676.825920px;}
.x1a{left:679.781880px;}
.x39{left:683.859210px;}
.x2b{left:690.827160px;}
.x1b{left:693.783000px;}
.x3a{left:694.959120px;}
.x2c{left:703.576800px;}
.x1c{left:706.533120px;}
.x4{left:742.011420px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v4{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.640000pt;}
.v1{vertical-align:21.760000pt;}
.ls70{letter-spacing:-1.612800pt;}
.ls72{letter-spacing:-1.600000pt;}
.ls71{letter-spacing:-1.593600pt;}
.ls6f{letter-spacing:-1.587200pt;}
.ls50{letter-spacing:-1.344000pt;}
.ls24{letter-spacing:-1.331200pt;}
.ls45{letter-spacing:-1.324800pt;}
.ls73{letter-spacing:-1.075200pt;}
.ls47{letter-spacing:-1.068800pt;}
.ls49{letter-spacing:-0.747264pt;}
.ls48{letter-spacing:-0.544000pt;}
.ls22{letter-spacing:-0.531200pt;}
.ls23{letter-spacing:-0.524800pt;}
.ls33{letter-spacing:-0.408576pt;}
.ls2e{letter-spacing:-0.370944pt;}
.ls19{letter-spacing:-0.338688pt;}
.ls17{letter-spacing:-0.301056pt;}
.ls2f{letter-spacing:-0.284928pt;}
.ls1c{letter-spacing:-0.268800pt;}
.ls32{letter-spacing:-0.231168pt;}
.ls1e{letter-spacing:-0.215040pt;}
.ls4f{letter-spacing:-0.211968pt;}
.ls20{letter-spacing:-0.198912pt;}
.ls10{letter-spacing:-0.176640pt;}
.ls1f{letter-spacing:-0.155904pt;}
.lsb{letter-spacing:-0.141312pt;}
.ls18{letter-spacing:-0.139776pt;}
.ls1d{letter-spacing:-0.129024pt;}
.lsc{letter-spacing:-0.111872pt;}
.lsf{letter-spacing:-0.105984pt;}
.lsd{letter-spacing:-0.076544pt;}
.lse{letter-spacing:-0.070656pt;}
.ls58{letter-spacing:-0.044800pt;}
.ls59{letter-spacing:-0.038400pt;}
.ls57{letter-spacing:-0.025600pt;}
.lsa{letter-spacing:-0.012800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6e{letter-spacing:0.000512pt;}
.ls1a{letter-spacing:0.012800pt;}
.ls14{letter-spacing:0.023040pt;}
.ls21{letter-spacing:0.023936pt;}
.ls13{letter-spacing:0.024064pt;}
.ls12{letter-spacing:0.024320pt;}
.ls15{letter-spacing:0.053376pt;}
.ls7{letter-spacing:0.103936pt;}
.ls4b{letter-spacing:0.105600pt;}
.ls4c{letter-spacing:0.105728pt;}
.ls4e{letter-spacing:0.106240pt;}
.ls3e{letter-spacing:0.109824pt;}
.ls5{letter-spacing:0.141056pt;}
.ls2{letter-spacing:0.143360pt;}
.ls1b{letter-spacing:0.212480pt;}
.ls11{letter-spacing:0.213248pt;}
.ls25{letter-spacing:0.213376pt;}
.ls30{letter-spacing:0.213760pt;}
.ls1{letter-spacing:0.215296pt;}
.ls4d{letter-spacing:0.238080pt;}
.ls0{letter-spacing:0.244992pt;}
.ls4{letter-spacing:0.282112pt;}
.ls6{letter-spacing:0.319232pt;}
.ls34{letter-spacing:0.369920pt;}
.ls38{letter-spacing:0.503040pt;}
.ls35{letter-spacing:0.503936pt;}
.ls37{letter-spacing:0.504320pt;}
.ls36{letter-spacing:0.636800pt;}
.ls3c{letter-spacing:0.768000pt;}
.ls3a{letter-spacing:0.768256pt;}
.ls39{letter-spacing:0.768384pt;}
.ls3b{letter-spacing:0.769280pt;}
.ls43{letter-spacing:0.797056pt;}
.ls44{letter-spacing:0.797440pt;}
.ls3d{letter-spacing:1.020160pt;}
.ls8{letter-spacing:1.199360pt;}
.ls9{letter-spacing:1.200640pt;}
.ls4a{letter-spacing:1.923328pt;}
.ls56{letter-spacing:1.940480pt;}
.ls2d{letter-spacing:4.958720pt;}
.ls26{letter-spacing:5.493504pt;}
.ls27{letter-spacing:5.493632pt;}
.ls2b{letter-spacing:5.493760pt;}
.ls29{letter-spacing:5.760384pt;}
.ls28{letter-spacing:5.760640pt;}
.ls2a{letter-spacing:5.761280pt;}
.ls2c{letter-spacing:6.026240pt;}
.ls6b{letter-spacing:6.933632pt;}
.ls6d{letter-spacing:7.732480pt;}
.ls54{letter-spacing:9.868800pt;}
.ls51{letter-spacing:10.611200pt;}
.ls55{letter-spacing:10.628992pt;}
.ls53{letter-spacing:10.666240pt;}
.ls52{letter-spacing:10.667520pt;}
.ls16{letter-spacing:12.683648pt;}
.ls31{letter-spacing:14.018304pt;}
.ls46{letter-spacing:14.360832pt;}
.ls6c{letter-spacing:17.066240pt;}
.ls42{letter-spacing:25.468160pt;}
.ls41{letter-spacing:25.469440pt;}
.ls3f{letter-spacing:25.470080pt;}
.ls40{letter-spacing:25.470208pt;}
.ls5c{letter-spacing:50.669312pt;}
.ls62{letter-spacing:50.794240pt;}
.ls64{letter-spacing:51.009024pt;}
.ls67{letter-spacing:51.038720pt;}
.ls5b{letter-spacing:51.095040pt;}
.ls65{letter-spacing:51.115776pt;}
.ls5e{letter-spacing:51.144960pt;}
.ls66{letter-spacing:51.201792pt;}
.ls63{letter-spacing:51.285760pt;}
.ls6a{letter-spacing:51.287040pt;}
.ls61{letter-spacing:51.362560pt;}
.ls60{letter-spacing:51.874560pt;}
.ls69{letter-spacing:52.161280pt;}
.ls5f{letter-spacing:53.045760pt;}
.ls5d{letter-spacing:53.806080pt;}
.ls5a{letter-spacing:54.841088pt;}
.ls68{letter-spacing:55.084800pt;}
.ws4{word-spacing:-18.879232pt;}
.ws0{word-spacing:-18.842112pt;}
.ws1{word-spacing:-18.804992pt;}
.ws2{word-spacing:-18.775296pt;}
.ws3{word-spacing:-18.701056pt;}
.ws5{word-spacing:-18.663936pt;}
.wsb{word-spacing:-16.012800pt;}
.ws6{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.987200pt;}
.ws12{word-spacing:-15.475200pt;}
.ws11{word-spacing:-15.468800pt;}
.ws20{word-spacing:-15.456000pt;}
.ws1f{word-spacing:-14.931200pt;}
.ws2a{word-spacing:-14.924800pt;}
.ws9{word-spacing:-14.720000pt;}
.ws1e{word-spacing:-14.675200pt;}
.ws13{word-spacing:-14.668800pt;}
.ws25{word-spacing:-14.656000pt;}
.ws1b{word-spacing:-14.649344pt;}
.ws1d{word-spacing:-14.614016pt;}
.ws1c{word-spacing:-14.608128pt;}
.ws1a{word-spacing:-14.578688pt;}
.ws21{word-spacing:-14.543360pt;}
.ws24{word-spacing:-14.508032pt;}
.ws26{word-spacing:-14.412800pt;}
.ws28{word-spacing:-14.406400pt;}
.ws29{word-spacing:-14.400000pt;}
.ws27{word-spacing:-14.387200pt;}
.wsa{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.310976pt;}
.ws17{word-spacing:-13.300224pt;}
.wsf{word-spacing:-13.284096pt;}
.ws10{word-spacing:-13.241088pt;}
.wse{word-spacing:-13.224960pt;}
.ws16{word-spacing:-13.208832pt;}
.wsc{word-spacing:-13.171200pt;}
.ws14{word-spacing:-13.138944pt;}
.ws18{word-spacing:-13.101312pt;}
.ws15{word-spacing:-13.069056pt;}
.ws23{word-spacing:-12.692736pt;}
.ws19{word-spacing:-10.669824pt;}
.ws22{word-spacing:-8.000000pt;}
.ws7{word-spacing:0.000000pt;}
._12{margin-left:-3.016064pt;}
._1{margin-left:-2.086016pt;}
._0{margin-left:-1.095424pt;}
._2{width:0.959104pt;}
._7{width:2.355200pt;}
._8{width:3.297280pt;}
._a{width:4.911616pt;}
._4{width:6.170112pt;}
._3{width:7.542784pt;}
._11{width:8.471040pt;}
._e{width:9.361920pt;}
._14{width:10.645632pt;}
._c{width:11.540480pt;}
._15{width:13.337600pt;}
._13{width:14.246400pt;}
._d{width:15.826944pt;}
._b{width:17.369600pt;}
._9{width:18.664960pt;}
._17{width:20.136960pt;}
._6{width:21.419008pt;}
._5{width:22.315520pt;}
._16{width:26.063360pt;}
._10{width:28.642816pt;}
._f{width:30.048000pt;}
._19{width:32.448000pt;}
._18{width:39.699200pt;}
._1a{width:52.048512pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:39.680000pt;}
.fs3{font-size:42.240000pt;}
.fs4{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:30.080000pt;}
.y2a{bottom:51.520000pt;}
.y29{bottom:72.960000pt;}
.y28{bottom:94.400000pt;}
.y27{bottom:115.840000pt;}
.y26{bottom:137.280000pt;}
.y25{bottom:158.720000pt;}
.y101{bottom:169.920000pt;}
.y24{bottom:180.160000pt;}
.y100{bottom:185.920000pt;}
.y94{bottom:197.120000pt;}
.y23{bottom:201.600000pt;}
.yff{bottom:201.920000pt;}
.y74{bottom:203.200000pt;}
.y9a{bottom:208.960000pt;}
.ye4{bottom:210.560000pt;}
.ya9{bottom:210.880000pt;}
.yed{bottom:211.840000pt;}
.y93{bottom:217.920000pt;}
.y22{bottom:223.040000pt;}
.y73{bottom:224.000000pt;}
.y99{bottom:224.960000pt;}
.ya8{bottom:226.880000pt;}
.yd0{bottom:227.840000pt;}
.ye3{bottom:229.440000pt;}
.yca{bottom:233.920000pt;}
.yfe{bottom:235.840000pt;}
.y92{bottom:236.800000pt;}
.y83{bottom:240.640000pt;}
.y78{bottom:241.280000pt;}
.ya7{bottom:242.560000pt;}
.y72{bottom:242.880000pt;}
.yec{bottom:243.520000pt;}
.ycf{bottom:243.840000pt;}
.y21{bottom:244.480000pt;}
.yb1{bottom:247.040000pt;}
.y5e{bottom:250.240000pt;}
.y14a{bottom:253.440000pt;}
.yfd{bottom:254.080000pt;}
.y98{bottom:256.640000pt;}
.ya6{bottom:258.560000pt;}
.yeb{bottom:259.520000pt;}
.ycc{bottom:259.840000pt;}
.yb0{bottom:262.720000pt;}
.y20{bottom:265.920000pt;}
.y149{bottom:269.120000pt;}
.yc9{bottom:270.720000pt;}
.ya5{bottom:274.560000pt;}
.y82{bottom:277.440000pt;}
.y77{bottom:278.080000pt;}
.ycb{bottom:278.400000pt;}
.yaf{bottom:278.720000pt;}
.yce{bottom:280.320000pt;}
.y5d{bottom:281.920000pt;}
.y148{bottom:285.120000pt;}
.y1f{bottom:287.680000pt;}
.yc8{bottom:288.960000pt;}
.y4b{bottom:293.760000pt;}
.yae{bottom:294.720000pt;}
.ya4{bottom:295.040000pt;}
.y125{bottom:295.360000pt;}
.y97{bottom:296.320000pt;}
.ye2{bottom:296.640000pt;}
.yfc{bottom:296.960000pt;}
.yea{bottom:299.200000pt;}
.ycd{bottom:299.520000pt;}
.y147{bottom:301.120000pt;}
.y91{bottom:302.400000pt;}
.y5c{bottom:302.720000pt;}
.ya3{bottom:305.600000pt;}
.yc7{bottom:308.800000pt;}
.y1e{bottom:309.120000pt;}
.y81{bottom:314.240000pt;}
.y71{bottom:314.880000pt;}
.yad{bottom:315.200000pt;}
.y16b{bottom:315.840000pt;}
.y124{bottom:316.800000pt;}
.y146{bottom:317.120000pt;}
.y90{bottom:317.760000pt;}
.y4a{bottom:320.320000pt;}
.y5b{bottom:321.600000pt;}
.ya2{bottom:329.920000pt;}
.y1d{bottom:330.560000pt;}
.y16a{bottom:330.880000pt;}
.ye9{bottom:332.800000pt;}
.y145{bottom:333.120000pt;}
.ye1{bottom:333.440000pt;}
.yfb{bottom:333.760000pt;}
.y96{bottom:338.880000pt;}
.yc6{bottom:342.400000pt;}
.y49{bottom:343.040000pt;}
.y123{bottom:348.800000pt;}
.y169{bottom:349.120000pt;}
.y80{bottom:351.040000pt;}
.y70{bottom:351.680000pt;}
.y1c{bottom:352.000000pt;}
.y95{bottom:354.240000pt;}
.y122{bottom:364.480000pt;}
.y144{bottom:364.800000pt;}
.ye8{bottom:369.920000pt;}
.ye0{bottom:370.240000pt;}
.yfa{bottom:370.560000pt;}
.y48{bottom:371.520000pt;}
.y1b{bottom:373.440000pt;}
.yc5{bottom:376.000000pt;}
.y5a{bottom:376.320000pt;}
.y143{bottom:380.800000pt;}
.y121{bottom:381.440000pt;}
.y7f{bottom:387.840000pt;}
.y6f{bottom:388.480000pt;}
.y8f{bottom:388.800000pt;}
.y168{bottom:389.760000pt;}
.y59{bottom:391.680000pt;}
.y47{bottom:393.920000pt;}
.y1a{bottom:394.880000pt;}
.y120{bottom:396.480000pt;}
.y142{bottom:396.800000pt;}
.ye7{bottom:406.720000pt;}
.ydf{bottom:407.040000pt;}
.yd2{bottom:407.360000pt;}
.yc4{bottom:409.920000pt;}
.y11f{bottom:412.480000pt;}
.y141{bottom:412.800000pt;}
.y19{bottom:416.320000pt;}
.y46{bottom:416.640000pt;}
.y7e{bottom:424.640000pt;}
.y6e{bottom:425.280000pt;}
.y8e{bottom:425.600000pt;}
.y58{bottom:425.920000pt;}
.y11e{bottom:428.480000pt;}
.y140{bottom:428.800000pt;}
.y167{bottom:430.720000pt;}
.y18{bottom:437.760000pt;}
.y45{bottom:439.040000pt;}
.ye6{bottom:443.520000pt;}
.yc3{bottom:443.840000pt;}
.y11d{bottom:444.480000pt;}
.y166{bottom:449.280000pt;}
.y17{bottom:459.200000pt;}
.y11c{bottom:460.480000pt;}
.ya1{bottom:461.440000pt;}
.y44{bottom:461.760000pt;}
.y6d{bottom:462.080000pt;}
.y8c{bottom:462.400000pt;}
.y57{bottom:462.720000pt;}
.y165{bottom:470.400000pt;}
.y11b{bottom:476.480000pt;}
.yc2{bottom:477.760000pt;}
.ye5{bottom:480.320000pt;}
.y16{bottom:480.640000pt;}
.yd1{bottom:480.960000pt;}
.y43{bottom:484.160000pt;}
.y164{bottom:486.400000pt;}
.y13f{bottom:492.480000pt;}
.y11a{bottom:497.280000pt;}
.ya0{bottom:498.240000pt;}
.y7d{bottom:498.560000pt;}
.y6c{bottom:498.880000pt;}
.y8b{bottom:499.200000pt;}
.y56{bottom:499.520000pt;}
.y15{bottom:502.080000pt;}
.y163{bottom:502.400000pt;}
.y42{bottom:506.880000pt;}
.y13e{bottom:508.480000pt;}
.yc1{bottom:511.360000pt;}
.y119{bottom:515.520000pt;}
.yde{bottom:517.440000pt;}
.y162{bottom:518.400000pt;}
.y13d{bottom:524.480000pt;}
.y41{bottom:529.280000pt;}
.y14{bottom:534.400000pt;}
.y9f{bottom:535.040000pt;}
.y7c{bottom:535.360000pt;}
.y6b{bottom:535.680000pt;}
.y8a{bottom:536.000000pt;}
.y55{bottom:536.320000pt;}
.y118{bottom:536.960000pt;}
.y13c{bottom:540.160000pt;}
.yc0{bottom:544.960000pt;}
.y161{bottom:550.080000pt;}
.y40{bottom:552.000000pt;}
.y117{bottom:552.960000pt;}
.yf9{bottom:553.920000pt;}
.ydd{bottom:554.240000pt;}
.y8d{bottom:554.560000pt;}
.y13b{bottom:556.160000pt;}
.y160{bottom:566.080000pt;}
.y13{bottom:566.720000pt;}
.y9e{bottom:571.840000pt;}
.y13a{bottom:572.160000pt;}
.y6a{bottom:572.480000pt;}
.y89{bottom:572.800000pt;}
.y54{bottom:573.120000pt;}
.y116{bottom:574.080000pt;}
.ybf{bottom:578.880000pt;}
.y15f{bottom:582.080000pt;}
.y3f{bottom:588.160000pt;}
.y139{bottom:589.440000pt;}
.ydc{bottom:591.040000pt;}
.y115{bottom:592.320000pt;}
.y15e{bottom:598.080000pt;}
.y12{bottom:599.040000pt;}
.yf8{bottom:604.480000pt;}
.y9d{bottom:608.960000pt;}
.y69{bottom:609.280000pt;}
.y88{bottom:609.600000pt;}
.y53{bottom:609.920000pt;}
.y114{bottom:610.880000pt;}
.ybe{bottom:612.480000pt;}
.y15d{bottom:614.080000pt;}
.y3e{bottom:615.680000pt;}
.y138{bottom:627.520000pt;}
.ydb{bottom:627.840000pt;}
.y11{bottom:628.800000pt;}
.y113{bottom:629.120000pt;}
.y15c{bottom:630.080000pt;}
.yf7{bottom:638.080000pt;}
.y9c{bottom:645.760000pt;}
.y68{bottom:646.080000pt;}
.y87{bottom:646.400000pt;}
.y52{bottom:647.040000pt;}
.ybd{bottom:648.320000pt;}
.y137{bottom:648.960000pt;}
.y3d{bottom:650.880000pt;}
.y15b{bottom:651.200000pt;}
.y112{bottom:651.520000pt;}
.y10{bottom:656.320000pt;}
.yda{bottom:664.640000pt;}
.y136{bottom:664.960000pt;}
.y15a{bottom:669.440000pt;}
.y111{bottom:669.760000pt;}
.yf6{bottom:672.000000pt;}
.y3c{bottom:673.920000pt;}
.y135{bottom:680.960000pt;}
.y9b{bottom:682.560000pt;}
.y67{bottom:682.880000pt;}
.y86{bottom:683.200000pt;}
.ybc{bottom:683.520000pt;}
.yf{bottom:684.160000pt;}
.y159{bottom:690.560000pt;}
.y110{bottom:692.480000pt;}
.ybb{bottom:700.800000pt;}
.yd9{bottom:701.440000pt;}
.yac{bottom:701.760000pt;}
.yf5{bottom:705.600000pt;}
.y158{bottom:706.560000pt;}
.y3b{bottom:709.440000pt;}
.y10f{bottom:710.720000pt;}
.ye{bottom:711.680000pt;}
.yba{bottom:719.360000pt;}
.y66{bottom:719.680000pt;}
.y85{bottom:720.000000pt;}
.y134{bottom:720.320000pt;}
.y51{bottom:721.280000pt;}
.y157{bottom:722.560000pt;}
.y3a{bottom:732.160000pt;}
.yd8{bottom:738.240000pt;}
.y133{bottom:738.560000pt;}
.yf4{bottom:739.200000pt;}
.yd{bottom:739.520000pt;}
.y10e{bottom:748.160000pt;}
.y39{bottom:754.560000pt;}
.yb9{bottom:755.840000pt;}
.y65{bottom:756.480000pt;}
.y84{bottom:756.800000pt;}
.y50{bottom:758.080000pt;}
.y132{bottom:761.280000pt;}
.yc{bottom:767.040000pt;}
.y10d{bottom:769.280000pt;}
.y156{bottom:770.560000pt;}
.yf3{bottom:773.120000pt;}
.yd7{bottom:775.040000pt;}
.y38{bottom:777.280000pt;}
.y131{bottom:779.520000pt;}
.y155{bottom:786.240000pt;}
.y10c{bottom:787.520000pt;}
.yb8{bottom:792.640000pt;}
.y64{bottom:793.280000pt;}
.y76{bottom:793.600000pt;}
.yb{bottom:794.880000pt;}
.y37{bottom:799.680000pt;}
.y130{bottom:801.920000pt;}
.y154{bottom:802.240000pt;}
.y10b{bottom:805.760000pt;}
.yf2{bottom:806.720000pt;}
.y153{bottom:818.240000pt;}
.y12f{bottom:820.480000pt;}
.ya{bottom:822.400000pt;}
.y10a{bottom:828.480000pt;}
.yb7{bottom:829.440000pt;}
.y63{bottom:830.080000pt;}
.y75{bottom:830.400000pt;}
.y4f{bottom:831.680000pt;}
.y152{bottom:834.240000pt;}
.y12e{bottom:838.720000pt;}
.yf1{bottom:840.640000pt;}
.yd6{bottom:843.520000pt;}
.y36{bottom:844.800000pt;}
.y109{bottom:846.720000pt;}
.y9{bottom:850.240000pt;}
.y151{bottom:855.360000pt;}
.y12d{bottom:860.160000pt;}
.y108{bottom:864.960000pt;}
.yb6{bottom:866.240000pt;}
.y62{bottom:866.880000pt;}
.y7b{bottom:867.200000pt;}
.y35{bottom:868.480000pt;}
.y150{bottom:873.600000pt;}
.yf0{bottom:874.240000pt;}
.y12c{bottom:876.160000pt;}
.yd5{bottom:877.440000pt;}
.y8{bottom:880.000000pt;}
.yab{bottom:885.440000pt;}
.y107{bottom:887.360000pt;}
.y14f{bottom:892.160000pt;}
.y12b{bottom:896.320000pt;}
.yb5{bottom:903.040000pt;}
.y61{bottom:903.680000pt;}
.y34{bottom:904.000000pt;}
.y4e{bottom:905.280000pt;}
.yef{bottom:907.840000pt;}
.y106{bottom:908.800000pt;}
.y14e{bottom:910.400000pt;}
.yd4{bottom:911.040000pt;}
.y7{bottom:912.320000pt;}
.y12a{bottom:915.200000pt;}
.y7a{bottom:921.920000pt;}
.y105{bottom:924.800000pt;}
.yee{bottom:925.120000pt;}
.y33{bottom:926.720000pt;}
.y14d{bottom:932.800000pt;}
.y129{bottom:937.280000pt;}
.yb4{bottom:939.840000pt;}
.y60{bottom:940.480000pt;}
.y79{bottom:940.800000pt;}
.y4d{bottom:942.080000pt;}
.y6{bottom:944.640000pt;}
.y32{bottom:945.920000pt;}
.y14c{bottom:951.040000pt;}
.y104{bottom:956.480000pt;}
.y128{bottom:960.000000pt;}
.y14b{bottom:973.440000pt;}
.yb3{bottom:976.640000pt;}
.y5{bottom:976.960000pt;}
.y31{bottom:977.280000pt;}
.y103{bottom:977.600000pt;}
.yd3{bottom:978.560000pt;}
.y4c{bottom:978.880000pt;}
.y102{bottom:996.160000pt;}
.y30{bottom:998.720000pt;}
.y127{bottom:1000.000000pt;}
.y4{bottom:1009.280000pt;}
.yb2{bottom:1013.760000pt;}
.yaa{bottom:1014.080000pt;}
.y5f{bottom:1014.400000pt;}
.y126{bottom:1017.280000pt;}
.y2f{bottom:1020.160000pt;}
.y3{bottom:1041.280000pt;}
.y2e{bottom:1041.600000pt;}
.y2d{bottom:1063.040000pt;}
.y2{bottom:1073.600000pt;}
.y2c{bottom:1084.480000pt;}
.y1{bottom:1105.920000pt;}
.h7{height:23.355000pt;}
.ha{height:26.446875pt;}
.h9{height:29.328750pt;}
.hc{height:35.831250pt;}
.h6{height:37.353750pt;}
.h5{height:40.911250pt;}
.h8{height:42.656250pt;}
.h4{height:43.375000pt;}
.hb{height:44.437500pt;}
.h2{height:50.315000pt;}
.h3{height:56.156250pt;}
.h0{height:1123.200000pt;}
.h1{height:1123.333333pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3b{left:24.000000pt;}
.x1{left:113.466784pt;}
.x5{left:132.123040pt;}
.x3{left:137.466784pt;}
.x6{left:143.456384pt;}
.x2d{left:152.653632pt;}
.x1d{left:155.003283pt;}
.x2{left:160.600256pt;}
.x1e{left:166.336608pt;}
.x7{left:179.456389pt;}
.x8{left:190.789728pt;}
.x9{left:206.344424pt;}
.x2e{left:211.747395pt;}
.xa{left:217.677728pt;}
.x2f{left:221.547552pt;}
.x1f{left:233.654309pt;}
.x20{left:244.987648pt;}
.xb{left:253.677725pt;}
.xc{left:265.011072pt;}
.x21{left:280.987605pt;}
.x30{left:290.046208pt;}
.x22{left:292.320992pt;}
.xd{left:297.893899pt;}
.xe{left:309.227232pt;}
.x23{left:357.602293pt;}
.x24{left:368.935680pt;}
.x31{left:370.015093pt;}
.xf{left:380.305253pt;}
.x10{left:391.638720pt;}
.x11{left:406.740107pt;}
.x12{left:418.073600pt;}
.x32{left:451.093147pt;}
.x33{left:460.826560pt;}
.x13{left:483.823787pt;}
.x14{left:495.156800pt;}
.x25{left:505.427893pt;}
.x15{left:508.055307pt;}
.x26{left:516.760960pt;}
.x16{left:519.388800pt;}
.x34{left:526.762560pt;}
.x35{left:561.426987pt;}
.x27{left:563.854613pt;}
.x17{left:566.482640pt;}
.x36{left:571.293440pt;}
.x28{left:575.188160pt;}
.x18{left:577.815680pt;}
.x37{left:586.394853pt;}
.x29{left:590.289467pt;}
.x19{left:592.917493pt;}
.x38{left:596.328000pt;}
.x2a{left:601.623040pt;}
.x1a{left:604.250560pt;}
.x39{left:607.874853pt;}
.x2b{left:614.068587pt;}
.x1b{left:616.696000pt;}
.x3a{left:617.741440pt;}
.x2c{left:625.401600pt;}
.x1c{left:628.029440pt;}
.x4{left:659.565707pt;}
}




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