
    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_8d69d7043c2f1c43dd417832.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fc1d530e0e263aff00346add.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9fee0d0654c18e50a467c546.woff')format("woff");}.ff3{font-family:ff3;line-height:0.891113;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_e359790100344147fe83a816.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_222dda71bb934222e04223e6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.213379;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_7dacaa5a4014f2045c614f87.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e28bde20f4d85c277aa5a2cd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.696289;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_9291baf744bc5e45a52389f9.woff')format("woff");}.ff8{font-family:ff8;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);}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.624640px;}
.v1{vertical-align:27.360000px;}
.ls51{letter-spacing:-2.848320px;}
.ls36{letter-spacing:-1.324800px;}
.ls47{letter-spacing:-1.192320px;}
.ls41{letter-spacing:-1.059840px;}
.ls1a{letter-spacing:-0.936000px;}
.ls40{letter-spacing:-0.861120px;}
.ls35{letter-spacing:-0.728640px;}
.ls34{letter-spacing:-0.596160px;}
.ls3d{letter-spacing:-0.537840px;}
.ls27{letter-spacing:-0.511200px;}
.ls1f{letter-spacing:-0.478080px;}
.ls46{letter-spacing:-0.463680px;}
.ls26{letter-spacing:-0.434160px;}
.ls3a{letter-spacing:-0.397440px;}
.ls20{letter-spacing:-0.358560px;}
.ls29{letter-spacing:-0.357840px;}
.ls13{letter-spacing:-0.337680px;}
.ls37{letter-spacing:-0.336960px;}
.ls3f{letter-spacing:-0.331200px;}
.ls15{letter-spacing:-0.241200px;}
.ls22{letter-spacing:-0.239040px;}
.ls18{letter-spacing:-0.191520px;}
.ls1b{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.132480px;}
.ls23{letter-spacing:-0.084240px;}
.ls38{letter-spacing:-0.083520px;}
.ls19{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.059760px;}
.ls14{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.059760px;}
.ls49{letter-spacing:0.084240px;}
.ls21{letter-spacing:0.119520px;}
.ls25{letter-spacing:0.132480px;}
.ls2b{letter-spacing:0.155376px;}
.ls8{letter-spacing:0.161352px;}
.ls1{letter-spacing:0.179280px;}
.ls11{letter-spacing:0.180000px;}
.ls3c{letter-spacing:0.191232px;}
.ls17{letter-spacing:0.192960px;}
.lsd{letter-spacing:0.204480px;}
.ls6{letter-spacing:0.239040px;}
.ls4{letter-spacing:0.245016px;}
.ls2a{letter-spacing:0.250992px;}
.ls5{letter-spacing:0.262944px;}
.ls48{letter-spacing:0.264960px;}
.ls2{letter-spacing:0.268920px;}
.ls12{letter-spacing:0.289440px;}
.ls7{letter-spacing:0.298800px;}
.ls24{letter-spacing:0.331200px;}
.ls3b{letter-spacing:0.336960px;}
.ls28{letter-spacing:0.357840px;}
.ls3{letter-spacing:0.358560px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.385920px;}
.ls1c{letter-spacing:0.576000px;}
.ls2c{letter-spacing:0.728640px;}
.ls2d{letter-spacing:1.457280px;}
.ls2e{letter-spacing:2.185920px;}
.ls3e{letter-spacing:2.848320px;}
.ls31{letter-spacing:3.576960px;}
.ls30{letter-spacing:3.603456px;}
.ls10{letter-spacing:4.305600px;}
.lsf{letter-spacing:4.451328px;}
.lse{letter-spacing:5.034240px;}
.lsb{letter-spacing:5.199120px;}
.ls44{letter-spacing:7.021440px;}
.ls45{letter-spacing:7.167168px;}
.ls4b{letter-spacing:8.611200px;}
.ls33{letter-spacing:9.339840px;}
.ls4c{letter-spacing:9.512064px;}
.ls4a{letter-spacing:10.068480px;}
.ls50{letter-spacing:10.797120px;}
.ls43{letter-spacing:11.525760px;}
.ls4f{letter-spacing:11.545632px;}
.ls9{letter-spacing:13.075488px;}
.lsa{letter-spacing:13.147200px;}
.ls2f{letter-spacing:15.102720px;}
.ls32{letter-spacing:16.560000px;}
.lsc{letter-spacing:17.449920px;}
.ls4d{letter-spacing:19.408320px;}
.ls4e{letter-spacing:22.269888px;}
.ls42{letter-spacing:116.251200px;}
.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;}
}
.wsb{word-spacing:-59.520960px;}
.ws42{word-spacing:-21.396960px;}
.ws8e{word-spacing:-21.144240px;}
.wsd{word-spacing:-20.975760px;}
.ws3{word-spacing:-18.576000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws0{word-spacing:-17.064000px;}
.wse{word-spacing:-16.891200px;}
.ws8d{word-spacing:-16.824960px;}
.ws82{word-spacing:-16.692480px;}
.wsf{word-spacing:-16.560000px;}
.ws77{word-spacing:-16.228800px;}
.ws41{word-spacing:-16.162560px;}
.ws40{word-spacing:-15.963840px;}
.ws3f{word-spacing:-15.831360px;}
.ws7{word-spacing:-15.298560px;}
.wsa{word-spacing:-15.059520px;}
.ws6{word-spacing:-14.999760px;}
.ws4{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.880240px;}
.ws9{word-spacing:-14.581440px;}
.wsc{word-spacing:-14.461920px;}
.ws16{word-spacing:-13.137840px;}
.ws15{word-spacing:-12.780000px;}
.ws12{word-spacing:-12.445920px;}
.ws17{word-spacing:-12.422160px;}
.ws14{word-spacing:-12.268800px;}
.ws13{word-spacing:-12.252960px;}
.ws11{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.722320px;}
.ws8{word-spacing:-9.720000px;}
.ws4c{word-spacing:-3.908160px;}
.ws7c{word-spacing:-3.764880px;}
.ws4b{word-spacing:-3.709440px;}
.ws4d{word-spacing:-3.576960px;}
.ws7b{word-spacing:-3.525840px;}
.ws8f{word-spacing:-2.980800px;}
.ws84{word-spacing:-2.848320px;}
.ws6b{word-spacing:-2.517120px;}
.ws1b{word-spacing:-2.363760px;}
.ws34{word-spacing:-2.330640px;}
.ws75{word-spacing:-2.318400px;}
.ws6a{word-spacing:-2.185920px;}
.ws1c{word-spacing:-2.170800px;}
.ws9a{word-spacing:-2.119680px;}
.ws35{word-spacing:-2.091600px;}
.ws1a{word-spacing:-1.736640px;}
.ws18{word-spacing:-1.640160px;}
.ws92{word-spacing:-1.589760px;}
.ws55{word-spacing:-1.457280px;}
.ws54{word-spacing:-1.059840px;}
.ws1d{word-spacing:-0.916560px;}
.ws28{word-spacing:-0.896400px;}
.ws49{word-spacing:-0.861120px;}
.ws3c{word-spacing:-0.820080px;}
.ws48{word-spacing:-0.728640px;}
.ws6e{word-spacing:-0.717120px;}
.ws3d{word-spacing:-0.385920px;}
.ws26{word-spacing:-0.358560px;}
.ws4f{word-spacing:-0.331200px;}
.ws3e{word-spacing:-0.289440px;}
.ws25{word-spacing:-0.239040px;}
.ws1e{word-spacing:-0.191520px;}
.ws23{word-spacing:-0.179280px;}
.ws74{word-spacing:-0.132480px;}
.ws29{word-spacing:-0.119520px;}
.ws43{word-spacing:-0.059760px;}
.ws19{word-spacing:0.000000px;}
.ws24{word-spacing:0.059760px;}
.ws20{word-spacing:0.072000px;}
.ws61{word-spacing:0.083520px;}
.ws44{word-spacing:0.119520px;}
.ws65{word-spacing:0.132480px;}
.ws21{word-spacing:0.144000px;}
.ws5d{word-spacing:0.168480px;}
.ws70{word-spacing:0.179280px;}
.ws1f{word-spacing:0.191520px;}
.ws87{word-spacing:0.239040px;}
.ws2a{word-spacing:0.358560px;}
.ws45{word-spacing:0.397440px;}
.ws3b{word-spacing:0.434160px;}
.ws94{word-spacing:0.463680px;}
.ws27{word-spacing:0.478080px;}
.ws3a{word-spacing:0.530640px;}
.ws6f{word-spacing:0.537840px;}
.ws47{word-spacing:0.596160px;}
.ws6d{word-spacing:0.657360px;}
.ws57{word-spacing:0.728640px;}
.ws86{word-spacing:0.861120px;}
.ws81{word-spacing:1.059840px;}
.ws85{word-spacing:1.126080px;}
.ws97{word-spacing:1.192320px;}
.ws46{word-spacing:1.324800px;}
.ws50{word-spacing:1.457280px;}
.ws22{word-spacing:1.656000px;}
.ws95{word-spacing:1.854720px;}
.ws36{word-spacing:1.972080px;}
.ws4e{word-spacing:2.053440px;}
.ws4a{word-spacing:2.185920px;}
.ws7f{word-spacing:2.583360px;}
.ws64{word-spacing:2.782080px;}
.wsa7{word-spacing:2.848320px;}
.ws62{word-spacing:2.914560px;}
.ws76{word-spacing:3.245760px;}
.ws6c{word-spacing:3.444480px;}
.ws83{word-spacing:3.510720px;}
.ws58{word-spacing:3.576960px;}
.ws59{word-spacing:4.173120px;}
.ws39{word-spacing:4.305600px;}
.ws72{word-spacing:4.541760px;}
.ws5f{word-spacing:4.703040px;}
.ws2f{word-spacing:4.840560px;}
.ws38{word-spacing:4.901760px;}
.ws37{word-spacing:5.034240px;}
.ws30{word-spacing:5.079600px;}
.ws80{word-spacing:5.166720px;}
.ws71{word-spacing:5.258880px;}
.ws60{word-spacing:5.431680px;}
.ws31{word-spacing:5.438160px;}
.ws5b{word-spacing:5.630400px;}
.ws5a{word-spacing:5.762880px;}
.ws73{word-spacing:6.359040px;}
.ws5e{word-spacing:6.491520px;}
.ws7a{word-spacing:6.693120px;}
.ws96{word-spacing:7.087680px;}
.ws56{word-spacing:7.220160px;}
.ws78{word-spacing:7.290720px;}
.ws79{word-spacing:7.470000px;}
.ws91{word-spacing:7.816320px;}
.ws69{word-spacing:7.948800px;}
.ws68{word-spacing:8.611200px;}
.ws90{word-spacing:8.677440px;}
.ws88{word-spacing:9.008640px;}
.ws67{word-spacing:9.207360px;}
.ws66{word-spacing:9.339840px;}
.ws99{word-spacing:10.068480px;}
.wsa1{word-spacing:10.664640px;}
.ws9c{word-spacing:10.797120px;}
.ws8b{word-spacing:11.525760px;}
.ws8c{word-spacing:11.923200px;}
.ws7d{word-spacing:12.121920px;}
.ws7e{word-spacing:12.254400px;}
.ws2b{word-spacing:12.788640px;}
.ws5c{word-spacing:12.850560px;}
.ws2c{word-spacing:12.967920px;}
.ws8a{word-spacing:12.983040px;}
.ws2d{word-spacing:13.027680px;}
.ws2e{word-spacing:13.206960px;}
.ws93{word-spacing:13.579200px;}
.wsa2{word-spacing:14.374080px;}
.ws53{word-spacing:14.771520px;}
.ws52{word-spacing:15.102720px;}
.ws98{word-spacing:15.500160px;}
.ws51{word-spacing:15.831360px;}
.ws63{word-spacing:16.560000px;}
.ws32{word-spacing:17.091360px;}
.wsa3{word-spacing:17.686080px;}
.ws33{word-spacing:17.808480px;}
.ws9b{word-spacing:18.017280px;}
.wsa4{word-spacing:18.745920px;}
.wsa5{word-spacing:19.474560px;}
.ws89{word-spacing:20.865600px;}
.wsa6{word-spacing:22.322880px;}
.wsa0{word-spacing:30.867840px;}
.ws9f{word-spacing:30.934080px;}
.ws9d{word-spacing:34.577280px;}
.ws9e{word-spacing:136.785600px;}
._17{margin-left:-5.282496px;}
._9{margin-left:-3.806640px;}
._10{margin-left:-2.798064px;}
._1{margin-left:-1.649808px;}
._0{width:1.070928px;}
._5{width:2.754144px;}
._11{width:4.084704px;}
._d{width:5.745600px;}
._14{width:6.782976px;}
._13{width:7.862688px;}
._12{width:8.954208px;}
._15{width:10.081728px;}
._1b{width:11.437056px;}
._e{width:12.712320px;}
._f{width:13.912704px;}
._c{width:15.168960px;}
._16{width:18.079344px;}
._a{width:19.421568px;}
._b{width:20.722896px;}
._1d{width:21.943872px;}
._1c{width:28.437264px;}
._1a{width:30.371040px;}
._18{width:31.397760px;}
._19{width:32.606784px;}
._7{width:52.821936px;}
._6{width:53.935560px;}
._2{width:187.200000px;}
._3{width:194.400000px;}
._4{width:1605.591360px;}
._8{width:1858.334400px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(7,75,185);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:23.760000px;}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y38{bottom:2.700000px;}
.y36{bottom:30.960000px;}
.y2{bottom:55.800000px;}
.y3b{bottom:56.520000px;}
.y1{bottom:69.480000px;}
.y3a{bottom:73.800000px;}
.y33{bottom:111.250080px;}
.yd5{bottom:111.427920px;}
.y118{bottom:116.864640px;}
.ya2{bottom:118.674720px;}
.yb4{bottom:122.094720px;}
.y8d{bottom:125.019360px;}
.y71{bottom:125.313840px;}
.y32{bottom:130.145040px;}
.yd4{bottom:130.505040px;}
.y117{bottom:135.941760px;}
.ya1{bottom:137.569680px;}
.yb3{bottom:140.989680px;}
.y8c{bottom:143.914320px;}
.y70{bottom:144.208800px;}
.y31{bottom:149.040000px;}
.yd3{bottom:149.400000px;}
.y10a{bottom:149.611680px;}
.y116{bottom:154.836720px;}
.ya0{bottom:156.464640px;}
.yb2{bottom:160.066800px;}
.y8b{bottom:162.991440px;}
.y6f{bottom:163.285920px;}
.y109{bottom:168.688800px;}
.y30{bottom:169.020000px;}
.yd2{bottom:169.200000px;}
.y115{bottom:173.731680px;}
.y9f{bottom:175.541760px;}
.yb1{bottom:178.961760px;}
.y8a{bottom:181.886400px;}
.y6e{bottom:182.180880px;}
.y108{bottom:187.583760px;}
.y2f{bottom:192.240000px;}
.yd1{bottom:192.607920px;}
.y114{bottom:192.808800px;}
.y9e{bottom:194.436720px;}
.yb0{bottom:198.038880px;}
.y89{bottom:200.781360px;}
.y6d{bottom:201.258000px;}
.y107{bottom:206.478720px;}
.yd0{bottom:211.502880px;}
.y113{bottom:211.703760px;}
.y9d{bottom:213.513840px;}
.y2e{bottom:214.740000px;}
.yaf{bottom:216.933840px;}
.y88{bottom:219.858480px;}
.y6c{bottom:220.152960px;}
.y106{bottom:225.555840px;}
.ycf{bottom:230.592960px;}
.y112{bottom:230.780880px;}
.y9c{bottom:232.408800px;}
.y2d{bottom:233.460000px;}
.yae{bottom:235.828800px;}
.y87{bottom:238.753440px;}
.y6b{bottom:239.230080px;}
.y105{bottom:244.450800px;}
.yce{bottom:249.487920px;}
.y111{bottom:249.675840px;}
.y2c{bottom:250.694640px;}
.y9b{bottom:251.485920px;}
.yad{bottom:254.905920px;}
.y86{bottom:257.830560px;}
.y6a{bottom:258.125040px;}
.y104{bottom:263.527920px;}
.y2b{bottom:267.980220px;}
.ycd{bottom:268.382880px;}
.y110{bottom:268.570800px;}
.y9a{bottom:270.380880px;}
.yac{bottom:273.800880px;}
.y85{bottom:276.725520px;}
.y69{bottom:277.020000px;}
.y103{bottom:282.422880px;}
.y2a{bottom:285.265800px;}
.ycc{bottom:287.460000px;}
.y10f{bottom:287.647920px;}
.y99{bottom:289.275840px;}
.yab{bottom:292.878000px;}
.y84{bottom:295.620480px;}
.y68{bottom:296.820000px;}
.y102{bottom:301.317840px;}
.y29{bottom:302.551380px;}
.ycb{bottom:306.360000px;}
.y10e{bottom:306.542880px;}
.y98{bottom:308.352960px;}
.yaa{bottom:311.772960px;}
.y83{bottom:314.697600px;}
.y28{bottom:319.657680px;}
.y67{bottom:320.269680px;}
.y101{bottom:320.394960px;}
.yca{bottom:325.450080px;}
.y10d{bottom:325.620000px;}
.y97{bottom:327.247920px;}
.ya9{bottom:330.667920px;}
.y82{bottom:333.592560px;}
.y27{bottom:336.943260px;}
.y66{bottom:339.164640px;}
.y100{bottom:339.289920px;}
.yc9{bottom:344.345040px;}
.y10c{bottom:344.514960px;}
.y96{bottom:346.325040px;}
.ya8{bottom:349.745040px;}
.y81{bottom:352.669680px;}
.y26{bottom:354.228840px;}
.y65{bottom:358.241760px;}
.yff{bottom:358.367040px;}
.yc8{bottom:363.240000px;}
.y10b{bottom:363.409920px;}
.y95{bottom:365.220000px;}
.ya7{bottom:368.640000px;}
.y25{bottom:371.514420px;}
.y80{bottom:371.564640px;}
.y64{bottom:377.136720px;}
.yfe{bottom:377.262000px;}
.yc7{bottom:382.487040px;}
.y94{bottom:385.020000px;}
.ya6{bottom:387.180000px;}
.y24{bottom:388.800000px;}
.y7f{bottom:390.459600px;}
.y63{bottom:396.213840px;}
.yfd{bottom:396.339120px;}
.yc6{bottom:401.382000px;}
.ya5{bottom:402.480000px;}
.y23{bottom:406.440000px;}
.ya4{bottom:408.060000px;}
.y93{bottom:408.425040px;}
.y7e{bottom:409.536720px;}
.y62{bottom:415.108800px;}
.yfc{bottom:415.234080px;}
.yc5{bottom:420.459120px;}
.y92{bottom:427.320000px;}
.y7d{bottom:428.431680px;}
.y22{bottom:428.940000px;}
.y61{bottom:434.003760px;}
.yfb{bottom:434.129040px;}
.yc4{bottom:439.354080px;}
.y91{bottom:445.848840px;}
.y7c{bottom:447.508800px;}
.y21{bottom:447.631380px;}
.y60{bottom:453.080880px;}
.yfa{bottom:453.206160px;}
.yc3{bottom:458.249040px;}
.y90{bottom:463.134420px;}
.y20{bottom:464.916960px;}
.y7b{bottom:466.403760px;}
.y5f{bottom:471.975840px;}
.yf9{bottom:472.101120px;}
.yc2{bottom:477.326160px;}
.y8f{bottom:480.420000px;}
.y1f{bottom:482.202540px;}
.y7a{bottom:485.298720px;}
.y5e{bottom:491.052960px;}
.yf8{bottom:491.178240px;}
.y8e{bottom:494.280000px;}
.yc1{bottom:496.221120px;}
.y1e{bottom:499.488120px;}
.y79{bottom:504.375840px;}
.y5d{bottom:509.947920px;}
.yf7{bottom:510.073200px;}
.yc0{bottom:515.298240px;}
.y1d{bottom:516.594420px;}
.y78{bottom:523.270800px;}
.y5c{bottom:528.842880px;}
.yf6{bottom:528.968160px;}
.ybf{bottom:534.193200px;}
.y1c{bottom:539.100000px;}
.y77{bottom:542.347920px;}
.y5b{bottom:547.953840px;}
.yf5{bottom:548.045280px;}
.y1b{bottom:551.154420px;}
.ybe{bottom:553.270320px;}
.y76{bottom:561.242880px;}
.y5a{bottom:566.848800px;}
.yf4{bottom:566.940240px;}
.ybd{bottom:572.165280px;}
.y1a{bottom:573.660000px;}
.y75{bottom:580.320000px;}
.y19{bottom:585.714420px;}
.y59{bottom:585.925920px;}
.yf3{bottom:586.017360px;}
.ybc{bottom:591.060240px;}
.y74{bottom:598.853700px;}
.y58{bottom:604.820880px;}
.yf2{bottom:604.912320px;}
.y18{bottom:608.220000px;}
.ybb{bottom:610.137360px;}
.y73{bottom:615.960000px;}
.y17{bottom:620.088840px;}
.y57{bottom:623.715840px;}
.yf1{bottom:623.807280px;}
.yba{bottom:629.032320px;}
.y72{bottom:630.000000px;}
.y16{bottom:637.374420px;}
.y56{bottom:642.792960px;}
.yf0{bottom:642.884400px;}
.yb9{bottom:648.109440px;}
.y15{bottom:659.880000px;}
.y55{bottom:661.687920px;}
.yef{bottom:661.779360px;}
.yb8{bottom:667.004400px;}
.y14{bottom:671.916960px;}
.y54{bottom:680.765040px;}
.yee{bottom:680.856480px;}
.yb7{bottom:685.899360px;}
.y13{bottom:689.202540px;}
.y53{bottom:699.660000px;}
.yed{bottom:699.751440px;}
.yb6{bottom:704.976480px;}
.y12{bottom:706.488120px;}
.yec{bottom:718.646400px;}
.y52{bottom:719.460000px;}
.y11{bottom:723.594420px;}
.yb5{bottom:723.871440px;}
.yeb{bottom:737.723520px;}
.y51{bottom:742.948560px;}
.y10{bottom:746.100000px;}
.ya3{bottom:752.580000px;}
.yea{bottom:756.618480px;}
.yf{bottom:758.160000px;}
.y50{bottom:761.843520px;}
.ye9{bottom:775.695600px;}
.ye{bottom:776.160000px;}
.y4f{bottom:780.738480px;}
.ye8{bottom:794.590560px;}
.yd{bottom:796.860000px;}
.y4e{bottom:799.815600px;}
.ye7{bottom:813.485520px;}
.yc{bottom:817.560000px;}
.y4d{bottom:818.710560px;}
.ye6{bottom:832.562640px;}
.y4c{bottom:837.787680px;}
.yb{bottom:838.260000px;}
.ye5{bottom:851.457600px;}
.y4b{bottom:856.682640px;}
.ya{bottom:858.600000px;}
.ye4{bottom:870.534720px;}
.y4a{bottom:875.577600px;}
.y9{bottom:879.333480px;}
.ye3{bottom:889.429680px;}
.y49{bottom:894.654720px;}
.y8{bottom:906.864480px;}
.ye2{bottom:908.506800px;}
.y48{bottom:913.549680px;}
.ye1{bottom:927.401760px;}
.y47{bottom:932.626800px;}
.y7{bottom:934.395480px;}
.ye0{bottom:946.296720px;}
.y46{bottom:951.521760px;}
.y6{bottom:962.118000px;}
.ydf{bottom:965.373840px;}
.y45{bottom:970.416720px;}
.yde{bottom:984.268800px;}
.y44{bottom:989.493840px;}
.y5{bottom:989.649000px;}
.ydd{bottom:1003.345920px;}
.y43{bottom:1008.388800px;}
.y4{bottom:1017.180000px;}
.ydc{bottom:1022.240880px;}
.y42{bottom:1027.465920px;}
.y3{bottom:1039.500000px;}
.ydb{bottom:1041.135840px;}
.y41{bottom:1046.360880px;}
.yda{bottom:1060.212960px;}
.y40{bottom:1065.438000px;}
.yd9{bottom:1079.107920px;}
.y3f{bottom:1084.332960px;}
.yd8{bottom:1098.185040px;}
.y34{bottom:1102.680000px;}
.y3e{bottom:1103.227920px;}
.y35{bottom:1108.980000px;}
.yd7{bottom:1117.080000px;}
.y3d{bottom:1122.305040px;}
.y37{bottom:1126.080000px;}
.yd6{bottom:1136.880000px;}
.y3c{bottom:1141.200000px;}
.y39{bottom:1195.740000px;}
.h19{height:16.102969px;}
.h18{height:16.509023px;}
.h11{height:24.660000px;}
.hc{height:26.995781px;}
.h2{height:33.518320px;}
.h13{height:35.519414px;}
.hb{height:40.501406px;}
.hd{height:41.493516px;}
.he{height:41.522695px;}
.h12{height:42.120000px;}
.h15{height:44.893125px;}
.h16{height:45.992812px;}
.h7{height:46.025156px;}
.h3{height:48.796875px;}
.h8{height:50.027344px;}
.h17{height:52.640499px;}
.hf{height:54.390938px;}
.h10{height:57.092344px;}
.h14{height:60.288750px;}
.ha{height:60.878320px;}
.h4{height:64.899844px;}
.h9{height:65.531250px;}
.h6{height:65.554453px;}
.h5{height:66.536367px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:111.960000px;}
.w3{width:300.598500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:10.800000px;}
.x1a{left:87.840000px;}
.x1{left:106.380000px;}
.x4{left:117.536040px;}
.x8{left:120.960000px;}
.xb{left:124.920000px;}
.x7{left:127.620000px;}
.x10{left:131.040000px;}
.x14{left:135.180000px;}
.x15{left:137.700000px;}
.x18{left:142.754220px;}
.x23{left:159.305760px;}
.x20{left:160.431840px;}
.x16{left:170.452980px;}
.x5{left:185.046840px;}
.xe{left:201.576780px;}
.x12{left:209.703600px;}
.x2{left:214.380000px;}
.xd{left:216.173160px;}
.x13{left:225.901440px;}
.xc{left:242.452620px;}
.x17{left:273.060900px;}
.x11{left:274.856940px;}
.x1b{left:295.740000px;}
.x1d{left:306.540000px;}
.x6{left:328.519260px;}
.xf{left:332.227080px;}
.x9{left:337.860000px;}
.xa{left:419.400000px;}
.x3{left:446.399820px;}
.x1e{left:474.840000px;}
.x19{left:700.200000px;}
.x1f{left:771.660000px;}
.x22{left:782.460000px;}
.x21{left:786.600000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:20.999680pt;}
.v1{vertical-align:24.320000pt;}
.ls51{letter-spacing:-2.531840pt;}
.ls36{letter-spacing:-1.177600pt;}
.ls47{letter-spacing:-1.059840pt;}
.ls41{letter-spacing:-0.942080pt;}
.ls1a{letter-spacing:-0.832000pt;}
.ls40{letter-spacing:-0.765440pt;}
.ls35{letter-spacing:-0.647680pt;}
.ls34{letter-spacing:-0.529920pt;}
.ls3d{letter-spacing:-0.478080pt;}
.ls27{letter-spacing:-0.454400pt;}
.ls1f{letter-spacing:-0.424960pt;}
.ls46{letter-spacing:-0.412160pt;}
.ls26{letter-spacing:-0.385920pt;}
.ls3a{letter-spacing:-0.353280pt;}
.ls20{letter-spacing:-0.318720pt;}
.ls29{letter-spacing:-0.318080pt;}
.ls13{letter-spacing:-0.300160pt;}
.ls37{letter-spacing:-0.299520pt;}
.ls3f{letter-spacing:-0.294400pt;}
.ls15{letter-spacing:-0.214400pt;}
.ls22{letter-spacing:-0.212480pt;}
.ls18{letter-spacing:-0.170240pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.117760pt;}
.ls23{letter-spacing:-0.074880pt;}
.ls38{letter-spacing:-0.074240pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.053120pt;}
.ls14{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.053120pt;}
.ls49{letter-spacing:0.074880pt;}
.ls21{letter-spacing:0.106240pt;}
.ls25{letter-spacing:0.117760pt;}
.ls2b{letter-spacing:0.138112pt;}
.ls8{letter-spacing:0.143424pt;}
.ls1{letter-spacing:0.159360pt;}
.ls11{letter-spacing:0.160000pt;}
.ls3c{letter-spacing:0.169984pt;}
.ls17{letter-spacing:0.171520pt;}
.lsd{letter-spacing:0.181760pt;}
.ls6{letter-spacing:0.212480pt;}
.ls4{letter-spacing:0.217792pt;}
.ls2a{letter-spacing:0.223104pt;}
.ls5{letter-spacing:0.233728pt;}
.ls48{letter-spacing:0.235520pt;}
.ls2{letter-spacing:0.239040pt;}
.ls12{letter-spacing:0.257280pt;}
.ls7{letter-spacing:0.265600pt;}
.ls24{letter-spacing:0.294400pt;}
.ls3b{letter-spacing:0.299520pt;}
.ls28{letter-spacing:0.318080pt;}
.ls3{letter-spacing:0.318720pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.343040pt;}
.ls1c{letter-spacing:0.512000pt;}
.ls2c{letter-spacing:0.647680pt;}
.ls2d{letter-spacing:1.295360pt;}
.ls2e{letter-spacing:1.943040pt;}
.ls3e{letter-spacing:2.531840pt;}
.ls31{letter-spacing:3.179520pt;}
.ls30{letter-spacing:3.203072pt;}
.ls10{letter-spacing:3.827200pt;}
.lsf{letter-spacing:3.956736pt;}
.lse{letter-spacing:4.474880pt;}
.lsb{letter-spacing:4.621440pt;}
.ls44{letter-spacing:6.241280pt;}
.ls45{letter-spacing:6.370816pt;}
.ls4b{letter-spacing:7.654400pt;}
.ls33{letter-spacing:8.302080pt;}
.ls4c{letter-spacing:8.455168pt;}
.ls4a{letter-spacing:8.949760pt;}
.ls50{letter-spacing:9.597440pt;}
.ls43{letter-spacing:10.245120pt;}
.ls4f{letter-spacing:10.262784pt;}
.ls9{letter-spacing:11.622656pt;}
.lsa{letter-spacing:11.686400pt;}
.ls2f{letter-spacing:13.424640pt;}
.ls32{letter-spacing:14.720000pt;}
.lsc{letter-spacing:15.511040pt;}
.ls4d{letter-spacing:17.251840pt;}
.ls4e{letter-spacing:19.795456pt;}
.ls42{letter-spacing:103.334400pt;}
.wsb{word-spacing:-52.907520pt;}
.ws42{word-spacing:-19.019520pt;}
.ws8e{word-spacing:-18.794880pt;}
.wsd{word-spacing:-18.645120pt;}
.ws3{word-spacing:-16.512000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws0{word-spacing:-15.168000pt;}
.wse{word-spacing:-15.014400pt;}
.ws8d{word-spacing:-14.955520pt;}
.ws82{word-spacing:-14.837760pt;}
.wsf{word-spacing:-14.720000pt;}
.ws77{word-spacing:-14.425600pt;}
.ws41{word-spacing:-14.366720pt;}
.ws40{word-spacing:-14.190080pt;}
.ws3f{word-spacing:-14.072320pt;}
.ws7{word-spacing:-13.598720pt;}
.wsa{word-spacing:-13.386240pt;}
.ws6{word-spacing:-13.333120pt;}
.ws4{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.226880pt;}
.ws9{word-spacing:-12.961280pt;}
.wsc{word-spacing:-12.855040pt;}
.ws16{word-spacing:-11.678080pt;}
.ws15{word-spacing:-11.360000pt;}
.ws12{word-spacing:-11.063040pt;}
.ws17{word-spacing:-11.041920pt;}
.ws14{word-spacing:-10.905600pt;}
.ws13{word-spacing:-10.891520pt;}
.ws11{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.419840pt;}
.ws8{word-spacing:-8.640000pt;}
.ws4c{word-spacing:-3.473920pt;}
.ws7c{word-spacing:-3.346560pt;}
.ws4b{word-spacing:-3.297280pt;}
.ws4d{word-spacing:-3.179520pt;}
.ws7b{word-spacing:-3.134080pt;}
.ws8f{word-spacing:-2.649600pt;}
.ws84{word-spacing:-2.531840pt;}
.ws6b{word-spacing:-2.237440pt;}
.ws1b{word-spacing:-2.101120pt;}
.ws34{word-spacing:-2.071680pt;}
.ws75{word-spacing:-2.060800pt;}
.ws6a{word-spacing:-1.943040pt;}
.ws1c{word-spacing:-1.929600pt;}
.ws9a{word-spacing:-1.884160pt;}
.ws35{word-spacing:-1.859200pt;}
.ws1a{word-spacing:-1.543680pt;}
.ws18{word-spacing:-1.457920pt;}
.ws92{word-spacing:-1.413120pt;}
.ws55{word-spacing:-1.295360pt;}
.ws54{word-spacing:-0.942080pt;}
.ws1d{word-spacing:-0.814720pt;}
.ws28{word-spacing:-0.796800pt;}
.ws49{word-spacing:-0.765440pt;}
.ws3c{word-spacing:-0.728960pt;}
.ws48{word-spacing:-0.647680pt;}
.ws6e{word-spacing:-0.637440pt;}
.ws3d{word-spacing:-0.343040pt;}
.ws26{word-spacing:-0.318720pt;}
.ws4f{word-spacing:-0.294400pt;}
.ws3e{word-spacing:-0.257280pt;}
.ws25{word-spacing:-0.212480pt;}
.ws1e{word-spacing:-0.170240pt;}
.ws23{word-spacing:-0.159360pt;}
.ws74{word-spacing:-0.117760pt;}
.ws29{word-spacing:-0.106240pt;}
.ws43{word-spacing:-0.053120pt;}
.ws19{word-spacing:0.000000pt;}
.ws24{word-spacing:0.053120pt;}
.ws20{word-spacing:0.064000pt;}
.ws61{word-spacing:0.074240pt;}
.ws44{word-spacing:0.106240pt;}
.ws65{word-spacing:0.117760pt;}
.ws21{word-spacing:0.128000pt;}
.ws5d{word-spacing:0.149760pt;}
.ws70{word-spacing:0.159360pt;}
.ws1f{word-spacing:0.170240pt;}
.ws87{word-spacing:0.212480pt;}
.ws2a{word-spacing:0.318720pt;}
.ws45{word-spacing:0.353280pt;}
.ws3b{word-spacing:0.385920pt;}
.ws94{word-spacing:0.412160pt;}
.ws27{word-spacing:0.424960pt;}
.ws3a{word-spacing:0.471680pt;}
.ws6f{word-spacing:0.478080pt;}
.ws47{word-spacing:0.529920pt;}
.ws6d{word-spacing:0.584320pt;}
.ws57{word-spacing:0.647680pt;}
.ws86{word-spacing:0.765440pt;}
.ws81{word-spacing:0.942080pt;}
.ws85{word-spacing:1.000960pt;}
.ws97{word-spacing:1.059840pt;}
.ws46{word-spacing:1.177600pt;}
.ws50{word-spacing:1.295360pt;}
.ws22{word-spacing:1.472000pt;}
.ws95{word-spacing:1.648640pt;}
.ws36{word-spacing:1.752960pt;}
.ws4e{word-spacing:1.825280pt;}
.ws4a{word-spacing:1.943040pt;}
.ws7f{word-spacing:2.296320pt;}
.ws64{word-spacing:2.472960pt;}
.wsa7{word-spacing:2.531840pt;}
.ws62{word-spacing:2.590720pt;}
.ws76{word-spacing:2.885120pt;}
.ws6c{word-spacing:3.061760pt;}
.ws83{word-spacing:3.120640pt;}
.ws58{word-spacing:3.179520pt;}
.ws59{word-spacing:3.709440pt;}
.ws39{word-spacing:3.827200pt;}
.ws72{word-spacing:4.037120pt;}
.ws5f{word-spacing:4.180480pt;}
.ws2f{word-spacing:4.302720pt;}
.ws38{word-spacing:4.357120pt;}
.ws37{word-spacing:4.474880pt;}
.ws30{word-spacing:4.515200pt;}
.ws80{word-spacing:4.592640pt;}
.ws71{word-spacing:4.674560pt;}
.ws60{word-spacing:4.828160pt;}
.ws31{word-spacing:4.833920pt;}
.ws5b{word-spacing:5.004800pt;}
.ws5a{word-spacing:5.122560pt;}
.ws73{word-spacing:5.652480pt;}
.ws5e{word-spacing:5.770240pt;}
.ws7a{word-spacing:5.949440pt;}
.ws96{word-spacing:6.300160pt;}
.ws56{word-spacing:6.417920pt;}
.ws78{word-spacing:6.480640pt;}
.ws79{word-spacing:6.640000pt;}
.ws91{word-spacing:6.947840pt;}
.ws69{word-spacing:7.065600pt;}
.ws68{word-spacing:7.654400pt;}
.ws90{word-spacing:7.713280pt;}
.ws88{word-spacing:8.007680pt;}
.ws67{word-spacing:8.184320pt;}
.ws66{word-spacing:8.302080pt;}
.ws99{word-spacing:8.949760pt;}
.wsa1{word-spacing:9.479680pt;}
.ws9c{word-spacing:9.597440pt;}
.ws8b{word-spacing:10.245120pt;}
.ws8c{word-spacing:10.598400pt;}
.ws7d{word-spacing:10.775040pt;}
.ws7e{word-spacing:10.892800pt;}
.ws2b{word-spacing:11.367680pt;}
.ws5c{word-spacing:11.422720pt;}
.ws2c{word-spacing:11.527040pt;}
.ws8a{word-spacing:11.540480pt;}
.ws2d{word-spacing:11.580160pt;}
.ws2e{word-spacing:11.739520pt;}
.ws93{word-spacing:12.070400pt;}
.wsa2{word-spacing:12.776960pt;}
.ws53{word-spacing:13.130240pt;}
.ws52{word-spacing:13.424640pt;}
.ws98{word-spacing:13.777920pt;}
.ws51{word-spacing:14.072320pt;}
.ws63{word-spacing:14.720000pt;}
.ws32{word-spacing:15.192320pt;}
.wsa3{word-spacing:15.720960pt;}
.ws33{word-spacing:15.829760pt;}
.ws9b{word-spacing:16.015360pt;}
.wsa4{word-spacing:16.663040pt;}
.wsa5{word-spacing:17.310720pt;}
.ws89{word-spacing:18.547200pt;}
.wsa6{word-spacing:19.842560pt;}
.wsa0{word-spacing:27.438080pt;}
.ws9f{word-spacing:27.496960pt;}
.ws9d{word-spacing:30.735360pt;}
.ws9e{word-spacing:121.587200pt;}
._17{margin-left:-4.695552pt;}
._9{margin-left:-3.383680pt;}
._10{margin-left:-2.487168pt;}
._1{margin-left:-1.466496pt;}
._0{width:0.951936pt;}
._5{width:2.448128pt;}
._11{width:3.630848pt;}
._d{width:5.107200pt;}
._14{width:6.029312pt;}
._13{width:6.989056pt;}
._12{width:7.959296pt;}
._15{width:8.961536pt;}
._1b{width:10.166272pt;}
._e{width:11.299840pt;}
._f{width:12.366848pt;}
._c{width:13.483520pt;}
._16{width:16.070528pt;}
._a{width:17.263616pt;}
._b{width:18.420352pt;}
._1d{width:19.505664pt;}
._1c{width:25.277568pt;}
._1a{width:26.996480pt;}
._18{width:27.909120pt;}
._19{width:28.983808pt;}
._7{width:46.952832pt;}
._6{width:47.942720pt;}
._2{width:166.400000pt;}
._3{width:172.800000pt;}
._4{width:1427.192320pt;}
._8{width:1651.852800pt;}
.fs9{font-size:21.120000pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:2.400000pt;}
.y36{bottom:27.520000pt;}
.y2{bottom:49.600000pt;}
.y3b{bottom:50.240000pt;}
.y1{bottom:61.760000pt;}
.y3a{bottom:65.600000pt;}
.y33{bottom:98.888960pt;}
.yd5{bottom:99.047040pt;}
.y118{bottom:103.879680pt;}
.ya2{bottom:105.488640pt;}
.yb4{bottom:108.528640pt;}
.y8d{bottom:111.128320pt;}
.y71{bottom:111.390080pt;}
.y32{bottom:115.684480pt;}
.yd4{bottom:116.004480pt;}
.y117{bottom:120.837120pt;}
.ya1{bottom:122.284160pt;}
.yb3{bottom:125.324160pt;}
.y8c{bottom:127.923840pt;}
.y70{bottom:128.185600pt;}
.y31{bottom:132.480000pt;}
.yd3{bottom:132.800000pt;}
.y10a{bottom:132.988160pt;}
.y116{bottom:137.632640pt;}
.ya0{bottom:139.079680pt;}
.yb2{bottom:142.281600pt;}
.y8b{bottom:144.881280pt;}
.y6f{bottom:145.143040pt;}
.y109{bottom:149.945600pt;}
.y30{bottom:150.240000pt;}
.yd2{bottom:150.400000pt;}
.y115{bottom:154.428160pt;}
.y9f{bottom:156.037120pt;}
.yb1{bottom:159.077120pt;}
.y8a{bottom:161.676800pt;}
.y6e{bottom:161.938560pt;}
.y108{bottom:166.741120pt;}
.y2f{bottom:170.880000pt;}
.yd1{bottom:171.207040pt;}
.y114{bottom:171.385600pt;}
.y9e{bottom:172.832640pt;}
.yb0{bottom:176.034560pt;}
.y89{bottom:178.472320pt;}
.y6d{bottom:178.896000pt;}
.y107{bottom:183.536640pt;}
.yd0{bottom:188.002560pt;}
.y113{bottom:188.181120pt;}
.y9d{bottom:189.790080pt;}
.y2e{bottom:190.880000pt;}
.yaf{bottom:192.830080pt;}
.y88{bottom:195.429760pt;}
.y6c{bottom:195.691520pt;}
.y106{bottom:200.494080pt;}
.ycf{bottom:204.971520pt;}
.y112{bottom:205.138560pt;}
.y9c{bottom:206.585600pt;}
.y2d{bottom:207.520000pt;}
.yae{bottom:209.625600pt;}
.y87{bottom:212.225280pt;}
.y6b{bottom:212.648960pt;}
.y105{bottom:217.289600pt;}
.yce{bottom:221.767040pt;}
.y111{bottom:221.934080pt;}
.y2c{bottom:222.839680pt;}
.y9b{bottom:223.543040pt;}
.yad{bottom:226.583040pt;}
.y86{bottom:229.182720pt;}
.y6a{bottom:229.444480pt;}
.y104{bottom:234.247040pt;}
.y2b{bottom:238.204640pt;}
.ycd{bottom:238.562560pt;}
.y110{bottom:238.729600pt;}
.y9a{bottom:240.338560pt;}
.yac{bottom:243.378560pt;}
.y85{bottom:245.978240pt;}
.y69{bottom:246.240000pt;}
.y103{bottom:251.042560pt;}
.y2a{bottom:253.569600pt;}
.ycc{bottom:255.520000pt;}
.y10f{bottom:255.687040pt;}
.y99{bottom:257.134080pt;}
.yab{bottom:260.336000pt;}
.y84{bottom:262.773760pt;}
.y68{bottom:263.840000pt;}
.y102{bottom:267.838080pt;}
.y29{bottom:268.934560pt;}
.ycb{bottom:272.320000pt;}
.y10e{bottom:272.482560pt;}
.y98{bottom:274.091520pt;}
.yaa{bottom:277.131520pt;}
.y83{bottom:279.731200pt;}
.y28{bottom:284.140160pt;}
.y67{bottom:284.684160pt;}
.y101{bottom:284.795520pt;}
.yca{bottom:289.288960pt;}
.y10d{bottom:289.440000pt;}
.y97{bottom:290.887040pt;}
.ya9{bottom:293.927040pt;}
.y82{bottom:296.526720pt;}
.y27{bottom:299.505120pt;}
.y66{bottom:301.479680pt;}
.y100{bottom:301.591040pt;}
.yc9{bottom:306.084480pt;}
.y10c{bottom:306.235520pt;}
.y96{bottom:307.844480pt;}
.ya8{bottom:310.884480pt;}
.y81{bottom:313.484160pt;}
.y26{bottom:314.870080pt;}
.y65{bottom:318.437120pt;}
.yff{bottom:318.548480pt;}
.yc8{bottom:322.880000pt;}
.y10b{bottom:323.031040pt;}
.y95{bottom:324.640000pt;}
.ya7{bottom:327.680000pt;}
.y25{bottom:330.235040pt;}
.y80{bottom:330.279680pt;}
.y64{bottom:335.232640pt;}
.yfe{bottom:335.344000pt;}
.yc7{bottom:339.988480pt;}
.y94{bottom:342.240000pt;}
.ya6{bottom:344.160000pt;}
.y24{bottom:345.600000pt;}
.y7f{bottom:347.075200pt;}
.y63{bottom:352.190080pt;}
.yfd{bottom:352.301440pt;}
.yc6{bottom:356.784000pt;}
.ya5{bottom:357.760000pt;}
.y23{bottom:361.280000pt;}
.ya4{bottom:362.720000pt;}
.y93{bottom:363.044480pt;}
.y7e{bottom:364.032640pt;}
.y62{bottom:368.985600pt;}
.yfc{bottom:369.096960pt;}
.yc5{bottom:373.741440pt;}
.y92{bottom:379.840000pt;}
.y7d{bottom:380.828160pt;}
.y22{bottom:381.280000pt;}
.y61{bottom:385.781120pt;}
.yfb{bottom:385.892480pt;}
.yc4{bottom:390.536960pt;}
.y91{bottom:396.310080pt;}
.y7c{bottom:397.785600pt;}
.y21{bottom:397.894560pt;}
.y60{bottom:402.738560pt;}
.yfa{bottom:402.849920pt;}
.yc3{bottom:407.332480pt;}
.y90{bottom:411.675040pt;}
.y20{bottom:413.259520pt;}
.y7b{bottom:414.581120pt;}
.y5f{bottom:419.534080pt;}
.yf9{bottom:419.645440pt;}
.yc2{bottom:424.289920pt;}
.y8f{bottom:427.040000pt;}
.y1f{bottom:428.624480pt;}
.y7a{bottom:431.376640pt;}
.y5e{bottom:436.491520pt;}
.yf8{bottom:436.602880pt;}
.y8e{bottom:439.360000pt;}
.yc1{bottom:441.085440pt;}
.y1e{bottom:443.989440pt;}
.y79{bottom:448.334080pt;}
.y5d{bottom:453.287040pt;}
.yf7{bottom:453.398400pt;}
.yc0{bottom:458.042880pt;}
.y1d{bottom:459.195040pt;}
.y78{bottom:465.129600pt;}
.y5c{bottom:470.082560pt;}
.yf6{bottom:470.193920pt;}
.ybf{bottom:474.838400pt;}
.y1c{bottom:479.200000pt;}
.y77{bottom:482.087040pt;}
.y5b{bottom:487.070080pt;}
.yf5{bottom:487.151360pt;}
.y1b{bottom:489.915040pt;}
.ybe{bottom:491.795840pt;}
.y76{bottom:498.882560pt;}
.y5a{bottom:503.865600pt;}
.yf4{bottom:503.946880pt;}
.ybd{bottom:508.591360pt;}
.y1a{bottom:509.920000pt;}
.y75{bottom:515.840000pt;}
.y19{bottom:520.635040pt;}
.y59{bottom:520.823040pt;}
.yf3{bottom:520.904320pt;}
.ybc{bottom:525.386880pt;}
.y74{bottom:532.314400pt;}
.y58{bottom:537.618560pt;}
.yf2{bottom:537.699840pt;}
.y18{bottom:540.640000pt;}
.ybb{bottom:542.344320pt;}
.y73{bottom:547.520000pt;}
.y17{bottom:551.190080pt;}
.y57{bottom:554.414080pt;}
.yf1{bottom:554.495360pt;}
.yba{bottom:559.139840pt;}
.y72{bottom:560.000000pt;}
.y16{bottom:566.555040pt;}
.y56{bottom:571.371520pt;}
.yf0{bottom:571.452800pt;}
.yb9{bottom:576.097280pt;}
.y15{bottom:586.560000pt;}
.y55{bottom:588.167040pt;}
.yef{bottom:588.248320pt;}
.yb8{bottom:592.892800pt;}
.y14{bottom:597.259520pt;}
.y54{bottom:605.124480pt;}
.yee{bottom:605.205760pt;}
.yb7{bottom:609.688320pt;}
.y13{bottom:612.624480pt;}
.y53{bottom:621.920000pt;}
.yed{bottom:622.001280pt;}
.yb6{bottom:626.645760pt;}
.y12{bottom:627.989440pt;}
.yec{bottom:638.796800pt;}
.y52{bottom:639.520000pt;}
.y11{bottom:643.195040pt;}
.yb5{bottom:643.441280pt;}
.yeb{bottom:655.754240pt;}
.y51{bottom:660.398720pt;}
.y10{bottom:663.200000pt;}
.ya3{bottom:668.960000pt;}
.yea{bottom:672.549760pt;}
.yf{bottom:673.920000pt;}
.y50{bottom:677.194240pt;}
.ye9{bottom:689.507200pt;}
.ye{bottom:689.920000pt;}
.y4f{bottom:693.989760pt;}
.ye8{bottom:706.302720pt;}
.yd{bottom:708.320000pt;}
.y4e{bottom:710.947200pt;}
.ye7{bottom:723.098240pt;}
.yc{bottom:726.720000pt;}
.y4d{bottom:727.742720pt;}
.ye6{bottom:740.055680pt;}
.y4c{bottom:744.700160pt;}
.yb{bottom:745.120000pt;}
.ye5{bottom:756.851200pt;}
.y4b{bottom:761.495680pt;}
.ya{bottom:763.200000pt;}
.ye4{bottom:773.808640pt;}
.y4a{bottom:778.291200pt;}
.y9{bottom:781.629760pt;}
.ye3{bottom:790.604160pt;}
.y49{bottom:795.248640pt;}
.y8{bottom:806.101760pt;}
.ye2{bottom:807.561600pt;}
.y48{bottom:812.044160pt;}
.ye1{bottom:824.357120pt;}
.y47{bottom:829.001600pt;}
.y7{bottom:830.573760pt;}
.ye0{bottom:841.152640pt;}
.y46{bottom:845.797120pt;}
.y6{bottom:855.216000pt;}
.ydf{bottom:858.110080pt;}
.y45{bottom:862.592640pt;}
.yde{bottom:874.905600pt;}
.y44{bottom:879.550080pt;}
.y5{bottom:879.688000pt;}
.ydd{bottom:891.863040pt;}
.y43{bottom:896.345600pt;}
.y4{bottom:904.160000pt;}
.ydc{bottom:908.658560pt;}
.y42{bottom:913.303040pt;}
.y3{bottom:924.000000pt;}
.ydb{bottom:925.454080pt;}
.y41{bottom:930.098560pt;}
.yda{bottom:942.411520pt;}
.y40{bottom:947.056000pt;}
.yd9{bottom:959.207040pt;}
.y3f{bottom:963.851520pt;}
.yd8{bottom:976.164480pt;}
.y34{bottom:980.160000pt;}
.y3e{bottom:980.647040pt;}
.y35{bottom:985.760000pt;}
.yd7{bottom:992.960000pt;}
.y3d{bottom:997.604480pt;}
.y37{bottom:1000.960000pt;}
.yd6{bottom:1010.560000pt;}
.y3c{bottom:1014.400000pt;}
.y39{bottom:1062.880000pt;}
.h19{height:14.313750pt;}
.h18{height:14.674687pt;}
.h11{height:21.920000pt;}
.hc{height:23.996250pt;}
.h2{height:29.794062pt;}
.h13{height:31.572812pt;}
.hb{height:36.001250pt;}
.hd{height:36.883125pt;}
.he{height:36.909063pt;}
.h12{height:37.440000pt;}
.h15{height:39.905000pt;}
.h16{height:40.882500pt;}
.h7{height:40.911250pt;}
.h3{height:43.375000pt;}
.h8{height:44.468750pt;}
.h17{height:46.791555pt;}
.hf{height:48.347500pt;}
.h10{height:50.748750pt;}
.h14{height:53.590000pt;}
.ha{height:54.114063pt;}
.h4{height:57.688750pt;}
.h9{height:58.250000pt;}
.h6{height:58.270625pt;}
.h5{height:59.143438pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:99.520000pt;}
.w3{width:267.198667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:9.600000pt;}
.x1a{left:78.080000pt;}
.x1{left:94.560000pt;}
.x4{left:104.476480pt;}
.x8{left:107.520000pt;}
.xb{left:111.040000pt;}
.x7{left:113.440000pt;}
.x10{left:116.480000pt;}
.x14{left:120.160000pt;}
.x15{left:122.400000pt;}
.x18{left:126.892640pt;}
.x23{left:141.605120pt;}
.x20{left:142.606080pt;}
.x16{left:151.513760pt;}
.x5{left:164.486080pt;}
.xe{left:179.179360pt;}
.x12{left:186.403200pt;}
.x2{left:190.560000pt;}
.xd{left:192.153920pt;}
.x13{left:200.801280pt;}
.xc{left:215.513440pt;}
.x17{left:242.720800pt;}
.x11{left:244.317280pt;}
.x1b{left:262.880000pt;}
.x1d{left:272.480000pt;}
.x6{left:292.017120pt;}
.xf{left:295.312960pt;}
.x9{left:300.320000pt;}
.xa{left:372.800000pt;}
.x3{left:396.799840pt;}
.x1e{left:422.080000pt;}
.x19{left:622.400000pt;}
.x1f{left:685.920000pt;}
.x22{left:695.520000pt;}
.x21{left:699.200000pt;}
}




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