
    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_14bfa23b8332b3deb2d00a95.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_647bf579aa4d27da5dfa3788.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2eb78e2cc720c122b9bbe6af.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9b287846c0675022ea65b923.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cb050d25ea47b2c9c80fc3e9.woff2')format("woff");}.ff5{font-family:ff5;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;}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-7.484400px;}
.ls2f{letter-spacing:-6.624000px;}
.ls1b{letter-spacing:-4.636800px;}
.ls12{letter-spacing:-4.104000px;}
.ls1c{letter-spacing:-3.576960px;}
.ls3e{letter-spacing:-3.201120px;}
.ls21{letter-spacing:-3.113280px;}
.ls25{letter-spacing:-2.736000px;}
.ls1a{letter-spacing:-2.583360px;}
.ls36{letter-spacing:-1.512000px;}
.lsc{letter-spacing:-0.287280px;}
.ls3c{letter-spacing:-0.084240px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.113760px;}
.ls3b{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.315360px;}
.ls2c{letter-spacing:0.482400px;}
.ls26{letter-spacing:0.504000px;}
.ls39{letter-spacing:0.756000px;}
.ls2{letter-spacing:0.758160px;}
.ls34{letter-spacing:0.896400px;}
.ls13{letter-spacing:2.171520px;}
.lsf{letter-spacing:2.881440px;}
.ls18{letter-spacing:3.179520px;}
.ls1f{letter-spacing:3.576960px;}
.ls24{letter-spacing:3.600000px;}
.ls30{letter-spacing:3.744000px;}
.ls14{letter-spacing:3.800160px;}
.ls17{letter-spacing:3.944160px;}
.ls19{letter-spacing:4.305600px;}
.ls31{letter-spacing:5.040000px;}
.ls11{letter-spacing:5.292000px;}
.ls15{letter-spacing:5.345280px;}
.ls3{letter-spacing:5.391360px;}
.ls1e{letter-spacing:5.400000px;}
.ls10{letter-spacing:5.724000px;}
.ls1d{letter-spacing:5.895360px;}
.ls27{letter-spacing:6.192000px;}
.ls0{letter-spacing:6.517440px;}
.ls20{letter-spacing:6.624000px;}
.ls33{letter-spacing:6.851520px;}
.ls23{letter-spacing:6.912000px;}
.ls2b{letter-spacing:7.236000px;}
.ls28{letter-spacing:7.884000px;}
.ls38{letter-spacing:9.374400px;}
.ls2a{letter-spacing:9.720000px;}
.ls29{letter-spacing:11.124000px;}
.ls6{letter-spacing:11.793600px;}
.ls35{letter-spacing:13.392000px;}
.ls32{letter-spacing:13.571280px;}
.ls4{letter-spacing:19.504800px;}
.ls37{letter-spacing:28.879200px;}
.lsb{letter-spacing:51.984000px;}
.ls8{letter-spacing:53.315400px;}
.ls9{letter-spacing:53.323920px;}
.lsa{letter-spacing:54.180000px;}
.ls22{letter-spacing:54.755400px;}
.lse{letter-spacing:56.484000px;}
.ls16{letter-spacing:96.768000px;}
.ls3d{letter-spacing:97.488000px;}
.ls3a{letter-spacing:98.897760px;}
.ls2d{letter-spacing:140.832000px;}
.ls2e{letter-spacing:144.864000px;}
.sc_{text-shadow:none;}
.sc8{text-shadow:-0.015em 0 rgb(243,102,187),0 0.015em rgb(243,102,187),0.015em 0 rgb(243,102,187),0 -0.015em  rgb(243,102,187);}
.sc6{text-shadow:-0.015em 0 rgb(67,221,147),0 0.015em rgb(67,221,147),0.015em 0 rgb(67,221,147),0 -0.015em  rgb(67,221,147);}
.sca{text-shadow:-0.015em 0 rgb(244,244,244),0 0.015em rgb(244,244,244),0.015em 0 rgb(244,244,244),0 -0.015em  rgb(244,244,244);}
.sc9{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc5{text-shadow:-0.015em 0 rgb(79,145,252),0 0.015em rgb(79,145,252),0.015em 0 rgb(79,145,252),0 -0.015em  rgb(79,145,252);}
.sc4{text-shadow:-0.015em 0 rgb(166,218,55),0 0.015em rgb(166,218,55),0.015em 0 rgb(166,218,55),0 -0.015em  rgb(166,218,55);}
.sc7{text-shadow:-0.015em 0 rgb(26,195,251),0 0.015em rgb(26,195,251),0.015em 0 rgb(26,195,251),0 -0.015em  rgb(26,195,251);}
.sc3{text-shadow:-0.015em 0 rgb(135,105,253),0 0.015em rgb(135,105,253),0.015em 0 rgb(135,105,253),0 -0.015em  rgb(135,105,253);}
.sc2{text-shadow:-0.015em 0 rgb(0,32,96),0 0.015em rgb(0,32,96),0.015em 0 rgb(0,32,96),0 -0.015em  rgb(0,32,96);}
.sc1{text-shadow:-0.015em 0 rgb(164,194,244),0 0.015em rgb(164,194,244),0.015em 0 rgb(164,194,244),0 -0.015em  rgb(164,194,244);}
.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;}
.sc8{-webkit-text-stroke:0.015em rgb(243,102,187);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(67,221,147);text-shadow:none;}
.sca{-webkit-text-stroke:0.015em rgb(244,244,244);text-shadow:none;}
.sc9{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(79,145,252);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(166,218,55);text-shadow:none;}
.sc7{-webkit-text-stroke:0.015em rgb(26,195,251);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(135,105,253);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,32,96);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(164,194,244);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws52{word-spacing:-40.392000px;}
.ws40{word-spacing:-39.791520px;}
.ws62{word-spacing:-36.720000px;}
.ws55{word-spacing:-32.292000px;}
.ws5f{word-spacing:-30.024000px;}
.ws4a{word-spacing:-27.000000px;}
.ws0{word-spacing:-26.280000px;}
.ws53{word-spacing:-25.488000px;}
.ws16{word-spacing:-25.020000px;}
.ws3f{word-spacing:-24.192000px;}
.wsb{word-spacing:-23.418720px;}
.ws19{word-spacing:-22.455360px;}
.ws3e{word-spacing:-21.744000px;}
.ws28{word-spacing:-21.600000px;}
.ws1c{word-spacing:-20.136960px;}
.ws4{word-spacing:-19.958400px;}
.ws17{word-spacing:-19.739520px;}
.ws3d{word-spacing:-18.000000px;}
.wsf{word-spacing:-15.785280px;}
.ws3c{word-spacing:-15.264000px;}
.ws15{word-spacing:-14.940000px;}
.ws63{word-spacing:-14.472000px;}
.ws58{word-spacing:-13.716000px;}
.ws48{word-spacing:-13.439520px;}
.ws5a{word-spacing:-12.960000px;}
.ws6{word-spacing:-12.247200px;}
.ws35{word-spacing:-12.204000px;}
.ws18{word-spacing:-11.923200px;}
.ws4f{word-spacing:-11.556000px;}
.ws60{word-spacing:-11.448000px;}
.ws37{word-spacing:-10.800000px;}
.ws50{word-spacing:-10.044000px;}
.ws56{word-spacing:-9.676800px;}
.ws34{word-spacing:-8.964000px;}
.ws64{word-spacing:-8.208000px;}
.ws65{word-spacing:-7.884000px;}
.ws3{word-spacing:-7.750080px;}
.ws49{word-spacing:-7.711200px;}
.ws2b{word-spacing:-7.632000px;}
.ws51{word-spacing:-7.560000px;}
.ws38{word-spacing:-7.236000px;}
.ws32{word-spacing:-6.912000px;}
.ws4b{word-spacing:-6.804000px;}
.ws25{word-spacing:-6.624000px;}
.ws11{word-spacing:-6.372000px;}
.ws8{word-spacing:-6.202080px;}
.ws42{word-spacing:-6.192000px;}
.ws33{word-spacing:-6.048000px;}
.ws39{word-spacing:-5.616000px;}
.ws45{word-spacing:-5.472000px;}
.ws10{word-spacing:-5.400000px;}
.wsd{word-spacing:-5.356800px;}
.wse{word-spacing:-5.073840px;}
.ws46{word-spacing:-5.040000px;}
.ws24{word-spacing:-5.034240px;}
.ws1a{word-spacing:-4.809024px;}
.ws4d{word-spacing:-4.482000px;}
.ws43{word-spacing:-4.464000px;}
.ws2f{word-spacing:-4.320000px;}
.ws1e{word-spacing:-4.305600px;}
.ws1d{word-spacing:-3.944160px;}
.ws22{word-spacing:-3.908160px;}
.ws1b{word-spacing:-3.749184px;}
.ws2e{word-spacing:-3.600000px;}
.ws29{word-spacing:-3.096000px;}
.ws44{word-spacing:-2.880000px;}
.ws59{word-spacing:-2.592000px;}
.ws13{word-spacing:-2.547360px;}
.ws12{word-spacing:-2.505600px;}
.ws2{word-spacing:-2.358720px;}
.ws3b{word-spacing:-1.736640px;}
.ws5c{word-spacing:-1.676376px;}
.ws7{word-spacing:-1.366560px;}
.ws47{word-spacing:-1.224000px;}
.ws5e{word-spacing:-1.010880px;}
.ws4e{word-spacing:-0.896400px;}
.ws31{word-spacing:-0.504000px;}
.wsc{word-spacing:-0.227520px;}
.ws5d{word-spacing:-0.180000px;}
.wsa{word-spacing:-0.167760px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:0.191520px;}
.ws1f{word-spacing:1.126080px;}
.ws66{word-spacing:1.600560px;}
.ws61{word-spacing:1.620000px;}
.ws21{word-spacing:1.854720px;}
.ws3a{word-spacing:2.268000px;}
.ws20{word-spacing:2.583360px;}
.ws2c{word-spacing:2.736000px;}
.ws36{word-spacing:3.024000px;}
.ws30{word-spacing:3.456000px;}
.ws23{word-spacing:3.576960px;}
.ws4c{word-spacing:3.780000px;}
.ws5b{word-spacing:4.104000px;}
.ws2d{word-spacing:4.176000px;}
.ws57{word-spacing:4.428000px;}
.ws5{word-spacing:5.443200px;}
.ws41{word-spacing:5.904000px;}
.ws14{word-spacing:16.194960px;}
.ws54{word-spacing:29.905200px;}
.ws2a{word-spacing:480.860880px;}
.ws26{word-spacing:809.006400px;}
.ws27{word-spacing:853.974960px;}
._24{margin-left:-3073.608240px;}
._23{margin-left:-2799.714960px;}
._35{margin-left:-59.436720px;}
._2f{margin-left:-45.813600px;}
._1e{margin-left:-44.280000px;}
._d{margin-left:-28.812024px;}
._b{margin-left:-27.011880px;}
._e{margin-left:-25.929720px;}
._2b{margin-left:-22.306968px;}
._2c{margin-left:-20.947464px;}
._18{margin-left:-19.500264px;}
._17{margin-left:-18.447912px;}
._2d{margin-left:-17.222112px;}
._33{margin-left:-16.192656px;}
._27{margin-left:-15.191280px;}
._26{margin-left:-13.837824px;}
._c{margin-left:-11.974392px;}
._30{margin-left:-10.960920px;}
._a{margin-left:-9.872928px;}
._f{margin-left:-8.446032px;}
._8{margin-left:-6.452784px;}
._9{margin-left:-5.222880px;}
._1{margin-left:-4.009824px;}
._0{margin-left:-2.223936px;}
._16{margin-left:-1.193616px;}
._1b{width:1.021680px;}
._5{width:2.156544px;}
._3{width:3.184272px;}
._6{width:4.650048px;}
._7{width:6.107400px;}
._4{width:7.910136px;}
._2{width:9.670752px;}
._15{width:11.158560px;}
._28{width:12.480192px;}
._1a{width:13.560984px;}
._1c{width:15.012000px;}
._29{width:16.061832px;}
._1f{width:17.172000px;}
._13{width:18.461520px;}
._10{width:19.852128px;}
._31{width:21.168000px;}
._14{width:22.927536px;}
._34{width:26.679456px;}
._11{width:27.955368px;}
._1d{width:31.428000px;}
._19{width:33.160752px;}
._12{width:35.961408px;}
._2e{width:38.556000px;}
._32{width:40.932000px;}
._20{width:52.618032px;}
._2a{width:356.584176px;}
._25{width:579.930600px;}
._22{width:859.865760px;}
._21{width:869.616000px;}
.fcf{color:rgb(244,244,244);}
.fce{color:rgb(66,133,244);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,32,96);}
.fca{color:rgb(79,145,252);}
.fcd{color:rgb(243,102,187);}
.fc2{color:rgb(164,194,244);}
.fc4{color:rgb(0,75,147);}
.fc6{color:rgb(17,85,204);}
.fc9{color:rgb(166,218,55);}
.fc3{color:rgb(0,0,0);}
.fc8{color:rgb(135,105,253);}
.fc7{color:rgb(31,73,125);}
.fcc{color:rgb(26,195,251);}
.fc5{color:rgb(0,151,167);}
.fcb{color:rgb(67,221,147);}
.fsa{font-size:41.760000px;}
.fs10{font-size:48.240000px;}
.fs11{font-size:50.849425px;}
.fs13{font-size:54.000000px;}
.fsc{font-size:59.760000px;}
.fs12{font-size:62.992571px;}
.fsd{font-size:66.240000px;}
.fsf{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs3{font-size:95.760000px;}
.fs2{font-size:105.120000px;}
.fs9{font-size:108.000000px;}
.fs8{font-size:113.760000px;}
.fse{font-size:131.760000px;}
.fs15{font-size:139.680000px;}
.fsb{font-size:149.760000px;}
.fs14{font-size:151.200000px;}
.fs4{font-size:167.760000px;}
.fs16{font-size:180.000000px;}
.fs1{font-size:226.800000px;}
.fs7{font-size:288.000000px;}
.fs17{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:24.975810px;}
.y82{bottom:29.629500px;}
.y23{bottom:32.371650px;}
.ya0{bottom:35.560800px;}
.y3b{bottom:44.997600px;}
.y68{bottom:46.756800px;}
.y91{bottom:48.332100px;}
.y2{bottom:50.184630px;}
.y9f{bottom:53.563500px;}
.ybe{bottom:60.310800px;}
.yb2{bottom:65.185800px;}
.yc9{bottom:68.218800px;}
.ya7{bottom:69.310800px;}
.y90{bottom:69.932100px;}
.y1{bottom:75.393450px;}
.ycb{bottom:78.310800px;}
.ybd{bottom:78.313500px;}
.y1d{bottom:79.553850px;}
.yb1{bottom:83.188500px;}
.yc8{bottom:84.418800px;}
.ya6{bottom:87.313500px;}
.y8f{bottom:91.532100px;}
.y4d{bottom:92.423670px;}
.y5f{bottom:92.987520px;}
.yca{bottom:96.313500px;}
.y1a{bottom:105.103800px;}
.y104{bottom:105.433650px;}
.y55{bottom:108.837870px;}
.y52{bottom:108.854430px;}
.y10e{bottom:110.662650px;}
.y4c{bottom:112.229430px;}
.y5e{bottom:112.793280px;}
.y3a{bottom:113.902650px;}
.ydf{bottom:119.033700px;}
.yf4{bottom:123.403350px;}
.y2c{bottom:126.862650px;}
.y54{bottom:128.643630px;}
.y51{bottom:128.660190px;}
.y19{bottom:130.303650px;}
.y4b{bottom:132.035190px;}
.ybc{bottom:132.517950px;}
.y5d{bottom:132.599040px;}
.y8e{bottom:134.732100px;}
.yfa{bottom:135.844650px;}
.y103{bottom:136.213650px;}
.y118{bottom:136.291650px;}
.y6f{bottom:137.077350px;}
.y80{bottom:140.847750px;}
.y10d{bottom:141.442650px;}
.ye7{bottom:144.044550px;}
.y39{bottom:147.922650px;}
.y53{bottom:148.449390px;}
.y50{bottom:148.465950px;}
.yaf{bottom:150.862650px;}
.y9e{bottom:151.003500px;}
.yda{bottom:151.433550px;}
.yde{bottom:151.433700px;}
.y4a{bottom:151.840950px;}
.y5c{bottom:152.404800px;}
.yc{bottom:153.713550px;}
.ya5{bottom:153.853650px;}
.yf3{bottom:154.183350px;}
.y18{bottom:155.503650px;}
.y8d{bottom:156.332100px;}
.y4f{bottom:159.018600px;}
.ybb{bottom:169.778100px;}
.y10c{bottom:172.222650px;}
.yf9{bottom:173.104650px;}
.y76{bottom:173.113650px;}
.y117{bottom:173.551650px;}
.y6e{bottom:177.073650px;}
.y8c{bottom:177.932100px;}
.y7f{bottom:178.107750px;}
.y7{bottom:178.767450px;}
.y2b{bottom:179.062650px;}
.yc7{bottom:180.862650px;}
.ye6{bottom:181.304550px;}
.y38{bottom:181.942650px;}
.yd9{bottom:183.833550px;}
.ydd{bottom:183.833700px;}
.yf2{bottom:184.963350px;}
.y102{bottom:185.002650px;}
.y4e{bottom:186.018600px;}
.y5b{bottom:186.583800px;}
.yae{bottom:188.122650px;}
.y9d{bottom:188.263650px;}
.y17{bottom:188.781750px;}
.ya4{bottom:191.113650px;}
.y30{bottom:194.002650px;}
.y11e{bottom:194.884650px;}
.y6d{bottom:198.673650px;}
.y10b{bottom:203.002650px;}
.yba{bottom:207.038100px;}
.y75{bottom:210.373650px;}
.y116{bottom:210.811650px;}
.y7e{bottom:215.367750px;}
.yf1{bottom:215.743350px;}
.y101{bottom:215.782650px;}
.y37{bottom:215.962650px;}
.y2a{bottom:216.322650px;}
.yc6{bottom:218.122650px;}
.ye5{bottom:218.564550px;}
.y6c{bottom:220.273650px;}
.y8b{bottom:221.132100px;}
.yd0{bottom:225.320910px;}
.yad{bottom:225.382650px;}
.ya3{bottom:228.373650px;}
.y11d{bottom:228.904650px;}
.y2f{bottom:231.262650px;}
.y10a{bottom:233.782650px;}
.y6b{bottom:241.873650px;}
.y8a{bottom:242.732100px;}
.y9c{bottom:243.514650px;}
.yb9{bottom:244.298100px;}
.y96{bottom:246.382650px;}
.yf0{bottom:246.523350px;}
.y100{bottom:246.562650px;}
.y74{bottom:247.633650px;}
.y115{bottom:248.071650px;}
.yd8{bottom:248.633550px;}
.ydc{bottom:248.633700px;}
.y36{bottom:249.982650px;}
.ycf{bottom:250.529730px;}
.ycc{bottom:250.775250px;}
.y7d{bottom:252.627750px;}
.yc5{bottom:255.382650px;}
.ye4{bottom:255.824550px;}
.y22{bottom:260.400900px;}
.yac{bottom:262.642650px;}
.y11c{bottom:262.924650px;}
.y6a{bottom:263.473650px;}
.y89{bottom:264.332100px;}
.y109{bottom:264.562650px;}
.ya2{bottom:265.633650px;}
.y29{bottom:268.522650px;}
.yce{bottom:275.738550px;}
.y13{bottom:276.486150px;}
.yef{bottom:277.303350px;}
.yff{bottom:277.342650px;}
.y64{bottom:278.721450px;}
.yd7{bottom:281.033550px;}
.y95{bottom:283.642650px;}
.y35{bottom:284.002650px;}
.yf8{bottom:285.221580px;}
.y114{bottom:285.331650px;}
.y1f{bottom:288.319500px;}
.y7c{bottom:289.887750px;}
.yc4{bottom:292.642650px;}
.y21{bottom:292.800900px;}
.yf5{bottom:293.830050px;}
.y108{bottom:295.342650px;}
.y11b{bottom:296.944650px;}
.y9b{bottom:298.783650px;}
.yb8{bottom:299.549100px;}
.y66{bottom:301.200150px;}
.y12{bottom:301.686150px;}
.y1c{bottom:302.783100px;}
.ya1{bottom:302.893650px;}
.y73{bottom:302.902650px;}
.y63{bottom:303.921450px;}
.y28{bottom:305.782650px;}
.y88{bottom:307.532100px;}
.yee{bottom:308.083350px;}
.yfe{bottom:308.122650px;}
.yf7{bottom:310.430400px;}
.ye3{bottom:311.093550px;}
.y60{bottom:313.364850px;}
.yd6{bottom:313.433550px;}
.ycd{bottom:313.571100px;}
.y6{bottom:315.253500px;}
.yab{bottom:317.893650px;}
.y2e{bottom:320.902650px;}
.y113{bottom:322.591650px;}
.y20{bottom:325.200900px;}
.y107{bottom:326.122650px;}
.y65{bottom:326.760150px;}
.y11{bottom:326.886150px;}
.y7b{bottom:327.147750px;}
.y1b{bottom:327.982950px;}
.y62{bottom:329.121450px;}
.y87{bottom:329.132100px;}
.ya{bottom:329.619750px;}
.yc3{bottom:329.902650px;}
.y5a{bottom:332.612520px;}
.y34{bottom:332.962650px;}
.y9a{bottom:336.043650px;}
.yed{bottom:338.863350px;}
.yfd{bottom:338.902650px;}
.y72{bottom:340.162650px;}
.yf6{bottom:341.707050px;}
.yd5{bottom:345.833550px;}
.ye2{bottom:348.353550px;}
.y11a{bottom:348.973650px;}
.y86{bottom:350.732100px;}
.y45{bottom:351.821310px;}
.y42{bottom:351.837870px;}
.y3f{bottom:351.854430px;}
.y59{bottom:352.418280px;}
.yb7{bottom:354.818100px;}
.y106{bottom:356.902650px;}
.y27{bottom:358.162650px;}
.y1e{bottom:358.564800px;}
.y112{bottom:359.851650px;}
.y61{bottom:363.582000px;}
.y7a{bottom:364.407750px;}
.yb{bottom:364.707000px;}
.y69{bottom:366.784200px;}
.y33{bottom:366.982650px;}
.yc2{bottom:367.162650px;}
.yec{bottom:369.643350px;}
.y44{bottom:371.627070px;}
.y41{bottom:371.643630px;}
.y3e{bottom:371.660190px;}
.y58{bottom:372.224040px;}
.yaa{bottom:373.162650px;}
.y99{bottom:373.303650px;}
.y71{bottom:377.422650px;}
.y11f{bottom:377.757300px;}
.y119{bottom:382.993650px;}
.y5{bottom:383.293500px;}
.ye1{bottom:385.613550px;}
.yfc{bottom:387.673650px;}
.y43{bottom:391.432830px;}
.y40{bottom:391.449390px;}
.y3d{bottom:391.465950px;}
.y57{bottom:392.029800px;}
.yb6{bottom:392.078100px;}
.y85{bottom:394.598100px;}
.y26{bottom:395.422650px;}
.y111{bottom:397.111650px;}
.yeb{bottom:400.423350px;}
.y32{bottom:401.002650px;}
.y79{bottom:401.667750px;}
.y47{bottom:402.018600px;}
.yc1{bottom:404.422650px;}
.y105{bottom:405.682650px;}
.ya9{bottom:410.422650px;}
.yd4{bottom:410.633550px;}
.y70{bottom:414.682650px;}
.y84{bottom:416.198100px;}
.ye0{bottom:422.873550px;}
.y98{bottom:428.563500px;}
.y46{bottom:429.018600px;}
.yb5{bottom:429.338100px;}
.y56{bottom:429.582450px;}
.yea{bottom:431.203350px;}
.y25{bottom:432.682650px;}
.y31{bottom:435.022650px;}
.yfb{bottom:436.462650px;}
.y78{bottom:438.927750px;}
.yc0{bottom:441.682650px;}
.y49{bottom:442.519950px;}
.yd3{bottom:443.033550px;}
.y10{bottom:448.168260px;}
.y4{bottom:451.333500px;}
.y110{bottom:452.371650px;}
.y83{bottom:459.398100px;}
.ye9{bottom:461.983350px;}
.y93{bottom:464.383680px;}
.ya8{bottom:465.682650px;}
.yb4{bottom:466.598100px;}
.y48{bottom:469.519950px;}
.yf{bottom:473.377080px;}
.y16{bottom:473.378580px;}
.yd{bottom:495.059700px;}
.y9{bottom:495.063450px;}
.ye{bottom:498.585900px;}
.y15{bottom:498.587400px;}
.y81{bottom:499.346850px;}
.y97{bottom:506.465400px;}
.y2d{bottom:507.147450px;}
.y94{bottom:507.262500px;}
.yd2{bottom:508.139700px;}
.y24{bottom:508.499700px;}
.y92{bottom:509.939700px;}
.ydb{bottom:510.839700px;}
.y67{bottom:513.363000px;}
.ybf{bottom:517.499700px;}
.yb0{bottom:525.584400px;}
.yb3{bottom:526.499700px;}
.ye8{bottom:527.249700px;}
.y10f{bottom:528.188700px;}
.y77{bottom:529.569600px;}
.y14{bottom:530.133600px;}
.y3c{bottom:531.049950px;}
.yd1{bottom:531.923100px;}
.y8{bottom:534.759000px;}
.hd{height:29.015859px;}
.h19{height:33.518320px;}
.h17{height:35.143594px;}
.h18{height:37.044600px;}
.h1d{height:39.339844px;}
.h1b{height:41.522695px;}
.hf{height:43.536094px;}
.h1c{height:45.891072px;}
.h11{height:46.025156px;}
.h10{height:48.256875px;}
.h15{height:50.027344px;}
.h16{height:52.453125px;}
.h14{height:56.649375px;}
.h2{height:58.531992px;}
.h1{height:61.370156px;}
.h12{height:62.534180px;}
.h5{height:64.946602px;}
.h8{height:65.566406px;}
.h7{height:69.762656px;}
.hc{height:75.041016px;}
.h4{height:76.581563px;}
.ha{height:77.154609px;}
.hb{height:78.679688px;}
.h1a{height:91.550039px;}
.h13{height:95.989219px;}
.h1f{height:101.759062px;}
.he{height:109.102500px;}
.h1e{height:110.151562px;}
.h6{height:113.778633px;}
.h20{height:122.080078px;}
.h3{height:157.586133px;}
.h9{height:209.812500px;}
.h21{height:314.718750px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xf{left:23.202750px;}
.x2c{left:31.501500px;}
.x1{left:35.495100px;}
.x27{left:41.731350px;}
.x10{left:47.613150px;}
.x29{left:55.036350px;}
.x2{left:57.510900px;}
.x37{left:59.985300px;}
.x11{left:61.113150px;}
.x2f{left:62.459700px;}
.x34{left:63.696900px;}
.x2e{left:64.934100px;}
.x13{left:69.655500px;}
.x3b{left:73.302150px;}
.x30{left:75.959700px;}
.x14{left:77.155500px;}
.x28{left:82.231350px;}
.x6{left:88.359450px;}
.x4{left:93.214950px;}
.x12{left:101.613150px;}
.x38{left:108.673200px;}
.x3c{left:113.802150px;}
.x22{left:123.497400px;}
.x17{left:144.989010px;}
.x8{left:163.003650px;}
.x5{left:172.356150px;}
.x20{left:183.645450px;}
.x2d{left:238.717500px;}
.x19{left:246.249600px;}
.x2a{left:249.865200px;}
.x40{left:273.797850px;}
.x1d{left:309.240450px;}
.x39{left:332.276400px;}
.x15{left:347.501250px;}
.x21{left:351.915900px;}
.x23{left:353.213400px;}
.xe{left:364.250550px;}
.x3d{left:367.850400px;}
.xb{left:375.185100px;}
.x1e{left:394.213650px;}
.x3a{left:418.021650px;}
.x3{left:440.576100px;}
.x1a{left:448.749600px;}
.x3e{left:452.666400px;}
.xd{left:459.463650px;}
.x3f{left:469.226400px;}
.x16{left:549.996930px;}
.x31{left:560.152500px;}
.x24{left:577.367400px;}
.x7{left:605.442900px;}
.x1f{left:639.614100px;}
.x18{left:651.249600px;}
.x35{left:672.118200px;}
.x32{left:681.472500px;}
.xa{left:687.599100px;}
.x9{left:697.544250px;}
.x1b{left:749.417100px;}
.xc{left:786.359100px;}
.x25{left:812.627400px;}
.x2b{left:817.585200px;}
.x26{left:846.685350px;}
.x1c{left:850.668750px;}
.x36{left:994.498200px;}
.x33{left:1003.852500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-6.652800pt;}
.ls2f{letter-spacing:-5.888000pt;}
.ls1b{letter-spacing:-4.121600pt;}
.ls12{letter-spacing:-3.648000pt;}
.ls1c{letter-spacing:-3.179520pt;}
.ls3e{letter-spacing:-2.845440pt;}
.ls21{letter-spacing:-2.767360pt;}
.ls25{letter-spacing:-2.432000pt;}
.ls1a{letter-spacing:-2.296320pt;}
.ls36{letter-spacing:-1.344000pt;}
.lsc{letter-spacing:-0.255360pt;}
.ls3c{letter-spacing:-0.074880pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.101120pt;}
.ls3b{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.280320pt;}
.ls2c{letter-spacing:0.428800pt;}
.ls26{letter-spacing:0.448000pt;}
.ls39{letter-spacing:0.672000pt;}
.ls2{letter-spacing:0.673920pt;}
.ls34{letter-spacing:0.796800pt;}
.ls13{letter-spacing:1.930240pt;}
.lsf{letter-spacing:2.561280pt;}
.ls18{letter-spacing:2.826240pt;}
.ls1f{letter-spacing:3.179520pt;}
.ls24{letter-spacing:3.200000pt;}
.ls30{letter-spacing:3.328000pt;}
.ls14{letter-spacing:3.377920pt;}
.ls17{letter-spacing:3.505920pt;}
.ls19{letter-spacing:3.827200pt;}
.ls31{letter-spacing:4.480000pt;}
.ls11{letter-spacing:4.704000pt;}
.ls15{letter-spacing:4.751360pt;}
.ls3{letter-spacing:4.792320pt;}
.ls1e{letter-spacing:4.800000pt;}
.ls10{letter-spacing:5.088000pt;}
.ls1d{letter-spacing:5.240320pt;}
.ls27{letter-spacing:5.504000pt;}
.ls0{letter-spacing:5.793280pt;}
.ls20{letter-spacing:5.888000pt;}
.ls33{letter-spacing:6.090240pt;}
.ls23{letter-spacing:6.144000pt;}
.ls2b{letter-spacing:6.432000pt;}
.ls28{letter-spacing:7.008000pt;}
.ls38{letter-spacing:8.332800pt;}
.ls2a{letter-spacing:8.640000pt;}
.ls29{letter-spacing:9.888000pt;}
.ls6{letter-spacing:10.483200pt;}
.ls35{letter-spacing:11.904000pt;}
.ls32{letter-spacing:12.063360pt;}
.ls4{letter-spacing:17.337600pt;}
.ls37{letter-spacing:25.670400pt;}
.lsb{letter-spacing:46.208000pt;}
.ls8{letter-spacing:47.391467pt;}
.ls9{letter-spacing:47.399040pt;}
.lsa{letter-spacing:48.160000pt;}
.ls22{letter-spacing:48.671467pt;}
.lse{letter-spacing:50.208000pt;}
.ls16{letter-spacing:86.016000pt;}
.ls3d{letter-spacing:86.656000pt;}
.ls3a{letter-spacing:87.909120pt;}
.ls2d{letter-spacing:125.184000pt;}
.ls2e{letter-spacing:128.768000pt;}
.ws52{word-spacing:-35.904000pt;}
.ws40{word-spacing:-35.370240pt;}
.ws62{word-spacing:-32.640000pt;}
.ws55{word-spacing:-28.704000pt;}
.ws5f{word-spacing:-26.688000pt;}
.ws4a{word-spacing:-24.000000pt;}
.ws0{word-spacing:-23.360000pt;}
.ws53{word-spacing:-22.656000pt;}
.ws16{word-spacing:-22.240000pt;}
.ws3f{word-spacing:-21.504000pt;}
.wsb{word-spacing:-20.816640pt;}
.ws19{word-spacing:-19.960320pt;}
.ws3e{word-spacing:-19.328000pt;}
.ws28{word-spacing:-19.200000pt;}
.ws1c{word-spacing:-17.899520pt;}
.ws4{word-spacing:-17.740800pt;}
.ws17{word-spacing:-17.546240pt;}
.ws3d{word-spacing:-16.000000pt;}
.wsf{word-spacing:-14.031360pt;}
.ws3c{word-spacing:-13.568000pt;}
.ws15{word-spacing:-13.280000pt;}
.ws63{word-spacing:-12.864000pt;}
.ws58{word-spacing:-12.192000pt;}
.ws48{word-spacing:-11.946240pt;}
.ws5a{word-spacing:-11.520000pt;}
.ws6{word-spacing:-10.886400pt;}
.ws35{word-spacing:-10.848000pt;}
.ws18{word-spacing:-10.598400pt;}
.ws4f{word-spacing:-10.272000pt;}
.ws60{word-spacing:-10.176000pt;}
.ws37{word-spacing:-9.600000pt;}
.ws50{word-spacing:-8.928000pt;}
.ws56{word-spacing:-8.601600pt;}
.ws34{word-spacing:-7.968000pt;}
.ws64{word-spacing:-7.296000pt;}
.ws65{word-spacing:-7.008000pt;}
.ws3{word-spacing:-6.888960pt;}
.ws49{word-spacing:-6.854400pt;}
.ws2b{word-spacing:-6.784000pt;}
.ws51{word-spacing:-6.720000pt;}
.ws38{word-spacing:-6.432000pt;}
.ws32{word-spacing:-6.144000pt;}
.ws4b{word-spacing:-6.048000pt;}
.ws25{word-spacing:-5.888000pt;}
.ws11{word-spacing:-5.664000pt;}
.ws8{word-spacing:-5.512960pt;}
.ws42{word-spacing:-5.504000pt;}
.ws33{word-spacing:-5.376000pt;}
.ws39{word-spacing:-4.992000pt;}
.ws45{word-spacing:-4.864000pt;}
.ws10{word-spacing:-4.800000pt;}
.wsd{word-spacing:-4.761600pt;}
.wse{word-spacing:-4.510080pt;}
.ws46{word-spacing:-4.480000pt;}
.ws24{word-spacing:-4.474880pt;}
.ws1a{word-spacing:-4.274688pt;}
.ws4d{word-spacing:-3.984000pt;}
.ws43{word-spacing:-3.968000pt;}
.ws2f{word-spacing:-3.840000pt;}
.ws1e{word-spacing:-3.827200pt;}
.ws1d{word-spacing:-3.505920pt;}
.ws22{word-spacing:-3.473920pt;}
.ws1b{word-spacing:-3.332608pt;}
.ws2e{word-spacing:-3.200000pt;}
.ws29{word-spacing:-2.752000pt;}
.ws44{word-spacing:-2.560000pt;}
.ws59{word-spacing:-2.304000pt;}
.ws13{word-spacing:-2.264320pt;}
.ws12{word-spacing:-2.227200pt;}
.ws2{word-spacing:-2.096640pt;}
.ws3b{word-spacing:-1.543680pt;}
.ws5c{word-spacing:-1.490112pt;}
.ws7{word-spacing:-1.214720pt;}
.ws47{word-spacing:-1.088000pt;}
.ws5e{word-spacing:-0.898560pt;}
.ws4e{word-spacing:-0.796800pt;}
.ws31{word-spacing:-0.448000pt;}
.wsc{word-spacing:-0.202240pt;}
.ws5d{word-spacing:-0.160000pt;}
.wsa{word-spacing:-0.149120pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:0.170240pt;}
.ws1f{word-spacing:1.000960pt;}
.ws66{word-spacing:1.422720pt;}
.ws61{word-spacing:1.440000pt;}
.ws21{word-spacing:1.648640pt;}
.ws3a{word-spacing:2.016000pt;}
.ws20{word-spacing:2.296320pt;}
.ws2c{word-spacing:2.432000pt;}
.ws36{word-spacing:2.688000pt;}
.ws30{word-spacing:3.072000pt;}
.ws23{word-spacing:3.179520pt;}
.ws4c{word-spacing:3.360000pt;}
.ws5b{word-spacing:3.648000pt;}
.ws2d{word-spacing:3.712000pt;}
.ws57{word-spacing:3.936000pt;}
.ws5{word-spacing:4.838400pt;}
.ws41{word-spacing:5.248000pt;}
.ws14{word-spacing:14.395520pt;}
.ws54{word-spacing:26.582400pt;}
.ws2a{word-spacing:427.431893pt;}
.ws26{word-spacing:719.116800pt;}
.ws27{word-spacing:759.088853pt;}
._24{margin-left:-2732.096213pt;}
._23{margin-left:-2488.635520pt;}
._35{margin-left:-52.832640pt;}
._2f{margin-left:-40.723200pt;}
._1e{margin-left:-39.360000pt;}
._d{margin-left:-25.610688pt;}
._b{margin-left:-24.010560pt;}
._e{margin-left:-23.048640pt;}
._2b{margin-left:-19.828416pt;}
._2c{margin-left:-18.619968pt;}
._18{margin-left:-17.333568pt;}
._17{margin-left:-16.398144pt;}
._2d{margin-left:-15.308544pt;}
._33{margin-left:-14.393472pt;}
._27{margin-left:-13.503360pt;}
._26{margin-left:-12.300288pt;}
._c{margin-left:-10.643904pt;}
._30{margin-left:-9.743040pt;}
._a{margin-left:-8.775936pt;}
._f{margin-left:-7.507584pt;}
._8{margin-left:-5.735808pt;}
._9{margin-left:-4.642560pt;}
._1{margin-left:-3.564288pt;}
._0{margin-left:-1.976832pt;}
._16{margin-left:-1.060992pt;}
._1b{width:0.908160pt;}
._5{width:1.916928pt;}
._3{width:2.830464pt;}
._6{width:4.133376pt;}
._7{width:5.428800pt;}
._4{width:7.031232pt;}
._2{width:8.596224pt;}
._15{width:9.918720pt;}
._28{width:11.093504pt;}
._1a{width:12.054208pt;}
._1c{width:13.344000pt;}
._29{width:14.277184pt;}
._1f{width:15.264000pt;}
._13{width:16.410240pt;}
._10{width:17.646336pt;}
._31{width:18.816000pt;}
._14{width:20.380032pt;}
._34{width:23.715072pt;}
._11{width:24.849216pt;}
._1d{width:27.936000pt;}
._19{width:29.476224pt;}
._12{width:31.965696pt;}
._2e{width:34.272000pt;}
._32{width:36.384000pt;}
._20{width:46.771584pt;}
._2a{width:316.963712pt;}
._25{width:515.493867pt;}
._22{width:764.325120pt;}
._21{width:772.992000pt;}
.fsa{font-size:37.120000pt;}
.fs10{font-size:42.880000pt;}
.fs11{font-size:45.199489pt;}
.fs13{font-size:48.000000pt;}
.fsc{font-size:53.120000pt;}
.fs12{font-size:55.993396pt;}
.fsd{font-size:58.880000pt;}
.fsf{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs3{font-size:85.120000pt;}
.fs2{font-size:93.440000pt;}
.fs9{font-size:96.000000pt;}
.fs8{font-size:101.120000pt;}
.fse{font-size:117.120000pt;}
.fs15{font-size:124.160000pt;}
.fsb{font-size:133.120000pt;}
.fs14{font-size:134.400000pt;}
.fs4{font-size:149.120000pt;}
.fs16{font-size:160.000000pt;}
.fs1{font-size:201.600000pt;}
.fs7{font-size:256.000000pt;}
.fs17{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:22.200720pt;}
.y82{bottom:26.337333pt;}
.y23{bottom:28.774800pt;}
.ya0{bottom:31.609600pt;}
.y3b{bottom:39.997867pt;}
.y68{bottom:41.561600pt;}
.y91{bottom:42.961867pt;}
.y2{bottom:44.608560pt;}
.y9f{bottom:47.612000pt;}
.ybe{bottom:53.609600pt;}
.yb2{bottom:57.942933pt;}
.yc9{bottom:60.638933pt;}
.ya7{bottom:61.609600pt;}
.y90{bottom:62.161867pt;}
.y1{bottom:67.016400pt;}
.ycb{bottom:69.609600pt;}
.ybd{bottom:69.612000pt;}
.y1d{bottom:70.714533pt;}
.yb1{bottom:73.945333pt;}
.yc8{bottom:75.038933pt;}
.ya6{bottom:77.612000pt;}
.y8f{bottom:81.361867pt;}
.y4d{bottom:82.154373pt;}
.y5f{bottom:82.655573pt;}
.yca{bottom:85.612000pt;}
.y1a{bottom:93.425600pt;}
.y104{bottom:93.718800pt;}
.y55{bottom:96.744773pt;}
.y52{bottom:96.759493pt;}
.y10e{bottom:98.366800pt;}
.y4c{bottom:99.759493pt;}
.y5e{bottom:100.260693pt;}
.y3a{bottom:101.246800pt;}
.ydf{bottom:105.807733pt;}
.yf4{bottom:109.691867pt;}
.y2c{bottom:112.766800pt;}
.y54{bottom:114.349893pt;}
.y51{bottom:114.364613pt;}
.y19{bottom:115.825467pt;}
.y4b{bottom:117.364613pt;}
.ybc{bottom:117.793733pt;}
.y5d{bottom:117.865813pt;}
.y8e{bottom:119.761867pt;}
.yfa{bottom:120.750800pt;}
.y103{bottom:121.078800pt;}
.y118{bottom:121.148133pt;}
.y6f{bottom:121.846533pt;}
.y80{bottom:125.198000pt;}
.y10d{bottom:125.726800pt;}
.ye7{bottom:128.039600pt;}
.y39{bottom:131.486800pt;}
.y53{bottom:131.955013pt;}
.y50{bottom:131.969733pt;}
.yaf{bottom:134.100133pt;}
.y9e{bottom:134.225333pt;}
.yda{bottom:134.607600pt;}
.yde{bottom:134.607733pt;}
.y4a{bottom:134.969733pt;}
.y5c{bottom:135.470933pt;}
.yc{bottom:136.634267pt;}
.ya5{bottom:136.758800pt;}
.yf3{bottom:137.051867pt;}
.y18{bottom:138.225467pt;}
.y8d{bottom:138.961867pt;}
.y4f{bottom:141.349867pt;}
.ybb{bottom:150.913867pt;}
.y10c{bottom:153.086800pt;}
.yf9{bottom:153.870800pt;}
.y76{bottom:153.878800pt;}
.y117{bottom:154.268133pt;}
.y6e{bottom:157.398800pt;}
.y8c{bottom:158.161867pt;}
.y7f{bottom:158.318000pt;}
.y7{bottom:158.904400pt;}
.y2b{bottom:159.166800pt;}
.yc7{bottom:160.766800pt;}
.ye6{bottom:161.159600pt;}
.y38{bottom:161.726800pt;}
.yd9{bottom:163.407600pt;}
.ydd{bottom:163.407733pt;}
.yf2{bottom:164.411867pt;}
.y102{bottom:164.446800pt;}
.y4e{bottom:165.349867pt;}
.y5b{bottom:165.852267pt;}
.yae{bottom:167.220133pt;}
.y9d{bottom:167.345467pt;}
.y17{bottom:167.806000pt;}
.ya4{bottom:169.878800pt;}
.y30{bottom:172.446800pt;}
.y11e{bottom:173.230800pt;}
.y6d{bottom:176.598800pt;}
.y10b{bottom:180.446800pt;}
.yba{bottom:184.033867pt;}
.y75{bottom:186.998800pt;}
.y116{bottom:187.388133pt;}
.y7e{bottom:191.438000pt;}
.yf1{bottom:191.771867pt;}
.y101{bottom:191.806800pt;}
.y37{bottom:191.966800pt;}
.y2a{bottom:192.286800pt;}
.yc6{bottom:193.886800pt;}
.ye5{bottom:194.279600pt;}
.y6c{bottom:195.798800pt;}
.y8b{bottom:196.561867pt;}
.yd0{bottom:200.285253pt;}
.yad{bottom:200.340133pt;}
.ya3{bottom:202.998800pt;}
.y11d{bottom:203.470800pt;}
.y2f{bottom:205.566800pt;}
.y10a{bottom:207.806800pt;}
.y6b{bottom:214.998800pt;}
.y8a{bottom:215.761867pt;}
.y9c{bottom:216.457467pt;}
.yb9{bottom:217.153867pt;}
.y96{bottom:219.006800pt;}
.yf0{bottom:219.131867pt;}
.y100{bottom:219.166800pt;}
.y74{bottom:220.118800pt;}
.y115{bottom:220.508133pt;}
.yd8{bottom:221.007600pt;}
.ydc{bottom:221.007733pt;}
.y36{bottom:222.206800pt;}
.ycf{bottom:222.693093pt;}
.ycc{bottom:222.911333pt;}
.y7d{bottom:224.558000pt;}
.yc5{bottom:227.006800pt;}
.ye4{bottom:227.399600pt;}
.y22{bottom:231.467467pt;}
.yac{bottom:233.460133pt;}
.y11c{bottom:233.710800pt;}
.y6a{bottom:234.198800pt;}
.y89{bottom:234.961867pt;}
.y109{bottom:235.166800pt;}
.ya2{bottom:236.118800pt;}
.y29{bottom:238.686800pt;}
.yce{bottom:245.100933pt;}
.y13{bottom:245.765467pt;}
.yef{bottom:246.491867pt;}
.yff{bottom:246.526800pt;}
.y64{bottom:247.752400pt;}
.yd7{bottom:249.807600pt;}
.y95{bottom:252.126800pt;}
.y35{bottom:252.446800pt;}
.yf8{bottom:253.530293pt;}
.y114{bottom:253.628133pt;}
.y1f{bottom:256.284000pt;}
.y7c{bottom:257.678000pt;}
.yc4{bottom:260.126800pt;}
.y21{bottom:260.267467pt;}
.yf5{bottom:261.182267pt;}
.y108{bottom:262.526800pt;}
.y11b{bottom:263.950800pt;}
.y9b{bottom:265.585467pt;}
.yb8{bottom:266.265867pt;}
.y66{bottom:267.733467pt;}
.y12{bottom:268.165467pt;}
.y1c{bottom:269.140533pt;}
.ya1{bottom:269.238800pt;}
.y73{bottom:269.246800pt;}
.y63{bottom:270.152400pt;}
.y28{bottom:271.806800pt;}
.y88{bottom:273.361867pt;}
.yee{bottom:273.851867pt;}
.yfe{bottom:273.886800pt;}
.yf7{bottom:275.938133pt;}
.ye3{bottom:276.527600pt;}
.y60{bottom:278.546533pt;}
.yd6{bottom:278.607600pt;}
.ycd{bottom:278.729867pt;}
.y6{bottom:280.225333pt;}
.yab{bottom:282.572133pt;}
.y2e{bottom:285.246800pt;}
.y113{bottom:286.748133pt;}
.y20{bottom:289.067467pt;}
.y107{bottom:289.886800pt;}
.y65{bottom:290.453467pt;}
.y11{bottom:290.565467pt;}
.y7b{bottom:290.798000pt;}
.y1b{bottom:291.540400pt;}
.y62{bottom:292.552400pt;}
.y87{bottom:292.561867pt;}
.ya{bottom:292.995333pt;}
.yc3{bottom:293.246800pt;}
.y5a{bottom:295.655573pt;}
.y34{bottom:295.966800pt;}
.y9a{bottom:298.705467pt;}
.yed{bottom:301.211867pt;}
.yfd{bottom:301.246800pt;}
.y72{bottom:302.366800pt;}
.yf6{bottom:303.739600pt;}
.yd5{bottom:307.407600pt;}
.ye2{bottom:309.647600pt;}
.y11a{bottom:310.198800pt;}
.y86{bottom:311.761867pt;}
.y45{bottom:312.730053pt;}
.y42{bottom:312.744773pt;}
.y3f{bottom:312.759493pt;}
.y59{bottom:313.260693pt;}
.yb7{bottom:315.393867pt;}
.y106{bottom:317.246800pt;}
.y27{bottom:318.366800pt;}
.y1e{bottom:318.724267pt;}
.y112{bottom:319.868133pt;}
.y61{bottom:323.184000pt;}
.y7a{bottom:323.918000pt;}
.yb{bottom:324.184000pt;}
.y69{bottom:326.030400pt;}
.y33{bottom:326.206800pt;}
.yc2{bottom:326.366800pt;}
.yec{bottom:328.571867pt;}
.y44{bottom:330.335173pt;}
.y41{bottom:330.349893pt;}
.y3e{bottom:330.364613pt;}
.y58{bottom:330.865813pt;}
.yaa{bottom:331.700133pt;}
.y99{bottom:331.825467pt;}
.y71{bottom:335.486800pt;}
.y11f{bottom:335.784267pt;}
.y119{bottom:340.438800pt;}
.y5{bottom:340.705333pt;}
.ye1{bottom:342.767600pt;}
.yfc{bottom:344.598800pt;}
.y43{bottom:347.940293pt;}
.y40{bottom:347.955013pt;}
.y3d{bottom:347.969733pt;}
.y57{bottom:348.470933pt;}
.yb6{bottom:348.513867pt;}
.y85{bottom:350.753867pt;}
.y26{bottom:351.486800pt;}
.y111{bottom:352.988133pt;}
.yeb{bottom:355.931867pt;}
.y32{bottom:356.446800pt;}
.y79{bottom:357.038000pt;}
.y47{bottom:357.349867pt;}
.yc1{bottom:359.486800pt;}
.y105{bottom:360.606800pt;}
.ya9{bottom:364.820133pt;}
.yd4{bottom:365.007600pt;}
.y70{bottom:368.606800pt;}
.y84{bottom:369.953867pt;}
.ye0{bottom:375.887600pt;}
.y98{bottom:380.945333pt;}
.y46{bottom:381.349867pt;}
.yb5{bottom:381.633867pt;}
.y56{bottom:381.851067pt;}
.yea{bottom:383.291867pt;}
.y25{bottom:384.606800pt;}
.y31{bottom:386.686800pt;}
.yfb{bottom:387.966800pt;}
.y78{bottom:390.158000pt;}
.yc0{bottom:392.606800pt;}
.y49{bottom:393.351067pt;}
.yd3{bottom:393.807600pt;}
.y10{bottom:398.371787pt;}
.y4{bottom:401.185333pt;}
.y110{bottom:402.108133pt;}
.y83{bottom:408.353867pt;}
.ye9{bottom:410.651867pt;}
.y93{bottom:412.785493pt;}
.ya8{bottom:413.940133pt;}
.yb4{bottom:414.753867pt;}
.y48{bottom:417.351067pt;}
.yf{bottom:420.779627pt;}
.y16{bottom:420.780960pt;}
.yd{bottom:440.053067pt;}
.y9{bottom:440.056400pt;}
.ye{bottom:443.187467pt;}
.y15{bottom:443.188800pt;}
.y81{bottom:443.863867pt;}
.y97{bottom:450.191467pt;}
.y2d{bottom:450.797733pt;}
.y94{bottom:450.900000pt;}
.yd2{bottom:451.679733pt;}
.y24{bottom:451.999733pt;}
.y92{bottom:453.279733pt;}
.ydb{bottom:454.079733pt;}
.y67{bottom:456.322667pt;}
.ybf{bottom:459.999733pt;}
.yb0{bottom:467.186133pt;}
.yb3{bottom:467.999733pt;}
.ye8{bottom:468.666400pt;}
.y10f{bottom:469.501067pt;}
.y77{bottom:470.728533pt;}
.y14{bottom:471.229867pt;}
.y3c{bottom:472.044400pt;}
.yd1{bottom:472.820533pt;}
.y8{bottom:475.341333pt;}
.hd{height:25.791875pt;}
.h19{height:29.794062pt;}
.h17{height:31.238750pt;}
.h18{height:32.928534pt;}
.h1d{height:34.968750pt;}
.h1b{height:36.909063pt;}
.hf{height:38.698750pt;}
.h1c{height:40.792064pt;}
.h11{height:40.911250pt;}
.h10{height:42.895000pt;}
.h15{height:44.468750pt;}
.h16{height:46.625000pt;}
.h14{height:50.355000pt;}
.h2{height:52.028437pt;}
.h1{height:54.551250pt;}
.h12{height:55.585938pt;}
.h5{height:57.730313pt;}
.h8{height:58.281250pt;}
.h7{height:62.011250pt;}
.hc{height:66.703125pt;}
.h4{height:68.072500pt;}
.ha{height:68.581875pt;}
.hb{height:69.937500pt;}
.h1a{height:81.377812pt;}
.h13{height:85.323750pt;}
.h1f{height:90.452500pt;}
.he{height:96.980000pt;}
.h1e{height:97.912500pt;}
.h6{height:101.136562pt;}
.h20{height:108.515625pt;}
.h3{height:140.076562pt;}
.h9{height:186.500000pt;}
.h21{height:279.750000pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xf{left:20.624667pt;}
.x2c{left:28.001333pt;}
.x1{left:31.551200pt;}
.x27{left:37.094533pt;}
.x10{left:42.322800pt;}
.x29{left:48.921200pt;}
.x2{left:51.120800pt;}
.x37{left:53.320267pt;}
.x11{left:54.322800pt;}
.x2f{left:55.519733pt;}
.x34{left:56.619467pt;}
.x2e{left:57.719200pt;}
.x13{left:61.916000pt;}
.x3b{left:65.157467pt;}
.x30{left:67.519733pt;}
.x14{left:68.582667pt;}
.x28{left:73.094533pt;}
.x6{left:78.541733pt;}
.x4{left:82.857733pt;}
.x12{left:90.322800pt;}
.x38{left:96.598400pt;}
.x3c{left:101.157467pt;}
.x22{left:109.775467pt;}
.x17{left:128.879120pt;}
.x8{left:144.892133pt;}
.x5{left:153.205467pt;}
.x20{left:163.240400pt;}
.x2d{left:212.193333pt;}
.x19{left:218.888533pt;}
.x2a{left:222.102400pt;}
.x40{left:243.375867pt;}
.x1d{left:274.880400pt;}
.x39{left:295.356800pt;}
.x15{left:308.890000pt;}
.x21{left:312.814133pt;}
.x23{left:313.967467pt;}
.xe{left:323.778267pt;}
.x3d{left:326.978133pt;}
.xb{left:333.497867pt;}
.x1e{left:350.412133pt;}
.x3a{left:371.574800pt;}
.x3{left:391.623200pt;}
.x1a{left:398.888533pt;}
.x3e{left:402.370133pt;}
.xd{left:408.412133pt;}
.x3f{left:417.090133pt;}
.x16{left:488.886160pt;}
.x31{left:497.913333pt;}
.x24{left:513.215467pt;}
.x7{left:538.171467pt;}
.x1f{left:568.545867pt;}
.x18{left:578.888533pt;}
.x35{left:597.438400pt;}
.x32{left:605.753333pt;}
.xa{left:611.199200pt;}
.x9{left:620.039333pt;}
.x1b{left:666.148533pt;}
.xc{left:698.985867pt;}
.x25{left:722.335467pt;}
.x2b{left:726.742400pt;}
.x26{left:752.609200pt;}
.x1c{left:756.150000pt;}
.x36{left:883.998400pt;}
.x33{left:892.313333pt;}
}




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