
    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_81c451f1e05b45bbfbcd9a0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_013fa1efdb3eee4b8a45265a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_d4e49b78877a0191e8cf4e34.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_571e8d1c22021f0c78d53711.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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_cc1751e473898b7679888f12.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_eb668ce47b83dafd30ed26b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_0ded32232daf9561374ca667.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.808105;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_39895509761f97903a21bc9a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.926758;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_db3670686bbd63254e823258.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.863770;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v3{vertical-align:-155.520000px;}
.v4{vertical-align:-29.520000px;}
.vb{vertical-align:-26.593200px;}
.vc{vertical-align:-23.002560px;}
.v2{vertical-align:-5.303520px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:4.320000px;}
.v1{vertical-align:9.437760px;}
.v6{vertical-align:16.308000px;}
.va{vertical-align:29.520000px;}
.v5{vertical-align:33.840000px;}
.v8{vertical-align:72.036000px;}
.v9{vertical-align:88.344000px;}
.lsb{letter-spacing:-15.984000px;}
.ls30{letter-spacing:-7.373520px;}
.ls16{letter-spacing:-1.503360px;}
.ls17{letter-spacing:-1.044000px;}
.lsc{letter-spacing:-0.864000px;}
.ls14{letter-spacing:-0.793440px;}
.lse{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.709920px;}
.ls20{letter-spacing:-0.530640px;}
.ls10{letter-spacing:-0.432000px;}
.ls1c{letter-spacing:-0.337680px;}
.ls36{letter-spacing:-0.335520px;}
.ls2{letter-spacing:-0.324000px;}
.lsd{letter-spacing:-0.288000px;}
.ls31{letter-spacing:-0.287280px;}
.ls2f{letter-spacing:-0.240480px;}
.ls1e{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.208800px;}
.ls19{letter-spacing:-0.192960px;}
.ls1a{letter-spacing:-0.191520px;}
.lsa{letter-spacing:-0.167760px;}
.ls0{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.083520px;}
.ls1d{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.120240px;}
.ls27{letter-spacing:0.144000px;}
.ls2e{letter-spacing:0.159840px;}
.ls12{letter-spacing:0.167040px;}
.ls34{letter-spacing:0.167760px;}
.ls32{letter-spacing:0.192240px;}
.ls4{letter-spacing:0.288000px;}
.ls2d{letter-spacing:0.324000px;}
.ls33{letter-spacing:0.335520px;}
.ls1b{letter-spacing:0.385920px;}
.ls11{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.576000px;}
.ls21{letter-spacing:20.016000px;}
.ls22{letter-spacing:21.024000px;}
.ls28{letter-spacing:35.712000px;}
.ls25{letter-spacing:38.880000px;}
.ls29{letter-spacing:39.456000px;}
.ls23{letter-spacing:39.600000px;}
.ls24{letter-spacing:39.888000px;}
.ls26{letter-spacing:40.032000px;}
.ls9{letter-spacing:41.328000px;}
.ls5{letter-spacing:43.776000px;}
.ls8{letter-spacing:45.936000px;}
.ls7{letter-spacing:46.368000px;}
.ls35{letter-spacing:61.567920px;}
.ls6{letter-spacing:68.688000px;}
.ls2a{letter-spacing:111.600000px;}
.ls13{letter-spacing:307.337040px;}
.ls2c{letter-spacing:779.112000px;}
.ls2b{letter-spacing:2130.840600px;}
.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;}
}
.ws53{word-spacing:-144.000000px;}
.ws92{word-spacing:-55.864080px;}
.wsa{word-spacing:-55.696320px;}
.ws78{word-spacing:-53.442720px;}
.ws7e{word-spacing:-46.972800px;}
.ws83{word-spacing:-46.805040px;}
.ws94{word-spacing:-46.469520px;}
.ws8b{word-spacing:-46.301760px;}
.ws5a{word-spacing:-40.320000px;}
.ws10{word-spacing:-40.032000px;}
.ws11{word-spacing:-39.888000px;}
.ws14{word-spacing:-39.744000px;}
.ws1c{word-spacing:-39.600000px;}
.ws0{word-spacing:-33.426720px;}
.ws6a{word-spacing:-33.186240px;}
.ws6b{word-spacing:-30.024000px;}
.ws64{word-spacing:-29.700000px;}
.ws39{word-spacing:-26.621280px;}
.ws57{word-spacing:-26.429760px;}
.ws71{word-spacing:-26.334000px;}
.ws65{word-spacing:-22.377600px;}
.ws54{word-spacing:-20.160000px;}
.ws55{word-spacing:-20.016000px;}
.ws6e{word-spacing:-19.247760px;}
.ws4e{word-spacing:-13.217760px;}
.ws44{word-spacing:-12.445920px;}
.ws46{word-spacing:-11.722320px;}
.ws33{word-spacing:-10.607040px;}
.ws35{word-spacing:-10.440000px;}
.ws37{word-spacing:-10.231200px;}
.ws32{word-spacing:-9.730080px;}
.ws31{word-spacing:-9.646560px;}
.ws36{word-spacing:-9.396000px;}
.ws34{word-spacing:-8.936640px;}
.ws93{word-spacing:-7.555680px;}
.ws7{word-spacing:-7.488000px;}
.ws60{word-spacing:-6.048000px;}
.ws2e{word-spacing:-2.448000px;}
.ws8{word-spacing:-2.404800px;}
.ws61{word-spacing:-2.160000px;}
.ws62{word-spacing:-1.825200px;}
.ws9{word-spacing:-1.803600px;}
.ws2d{word-spacing:-1.728000px;}
.ws27{word-spacing:-1.440000px;}
.ws3{word-spacing:-1.436400px;}
.ws5c{word-spacing:-1.296000px;}
.ws2{word-spacing:-1.008000px;}
.ws91{word-spacing:-0.905904px;}
.ws95{word-spacing:-0.838800px;}
.ws96{word-spacing:-0.671040px;}
.ws4{word-spacing:-0.670320px;}
.ws4b{word-spacing:-0.648000px;}
.ws3b{word-spacing:-0.542880px;}
.ws5e{word-spacing:-0.432000px;}
.ws51{word-spacing:-0.375840px;}
.ws9a{word-spacing:-0.335520px;}
.ws4c{word-spacing:-0.324000px;}
.ws1{word-spacing:-0.288000px;}
.ws7a{word-spacing:-0.167760px;}
.ws74{word-spacing:-0.159840px;}
.ws5b{word-spacing:-0.144000px;}
.ws73{word-spacing:-0.108000px;}
.ws6f{word-spacing:-0.076608px;}
.ws5{word-spacing:0.000000px;}
.ws2c{word-spacing:0.144000px;}
.ws68{word-spacing:0.192384px;}
.ws75{word-spacing:0.324000px;}
.ws56{word-spacing:0.360000px;}
.ws3e{word-spacing:0.375840px;}
.ws2b{word-spacing:0.432000px;}
.ws97{word-spacing:0.503280px;}
.ws87{word-spacing:0.536832px;}
.ws2f{word-spacing:0.540000px;}
.ws59{word-spacing:0.720000px;}
.ws4a{word-spacing:0.766080px;}
.ws7d{word-spacing:0.855576px;}
.ws29{word-spacing:0.864000px;}
.ws49{word-spacing:0.957600px;}
.ws7c{word-spacing:0.973008px;}
.ws99{word-spacing:1.006560px;}
.ws5d{word-spacing:1.008000px;}
.ws52{word-spacing:1.080000px;}
.ws28{word-spacing:1.152000px;}
.ws3a{word-spacing:1.174320px;}
.ws30{word-spacing:1.296000px;}
.ws43{word-spacing:1.436400px;}
.ws42{word-spacing:1.627920px;}
.ws3c{word-spacing:1.628640px;}
.ws7b{word-spacing:1.694376px;}
.ws79{word-spacing:1.761480px;}
.ws3d{word-spacing:1.795680px;}
.ws2a{word-spacing:1.845360px;}
.ws21{word-spacing:1.872000px;}
.ws3f{word-spacing:1.879200px;}
.ws76{word-spacing:2.202480px;}
.ws19{word-spacing:2.592000px;}
.ws6{word-spacing:2.700000px;}
.ws5f{word-spacing:3.187440px;}
.ws16{word-spacing:3.600000px;}
.ws40{word-spacing:3.967200px;}
.ws1a{word-spacing:4.032000px;}
.ws70{word-spacing:4.050648px;}
.ws15{word-spacing:4.176000px;}
.ws18{word-spacing:4.320000px;}
.ws1b{word-spacing:4.464000px;}
.ws41{word-spacing:4.760640px;}
.ws17{word-spacing:5.184000px;}
.ws22{word-spacing:6.192000px;}
.ws23{word-spacing:6.912000px;}
.ws72{word-spacing:8.696160px;}
.ws81{word-spacing:10.233360px;}
.ws7f{word-spacing:10.401120px;}
.ws69{word-spacing:10.607544px;}
.ws82{word-spacing:10.686312px;}
.ws80{word-spacing:11.592216px;}
.wsd{word-spacing:12.960000px;}
.wsc{word-spacing:13.824000px;}
.ws84{word-spacing:14.242824px;}
.ws86{word-spacing:14.259600px;}
.wse{word-spacing:14.544000px;}
.ws85{word-spacing:14.595120px;}
.wsf{word-spacing:14.832000px;}
.ws12{word-spacing:15.552000px;}
.ws13{word-spacing:16.272000px;}
.ws1e{word-spacing:27.360000px;}
.ws1d{word-spacing:28.224000px;}
.ws20{word-spacing:28.512000px;}
.ws1f{word-spacing:28.800000px;}
.ws24{word-spacing:29.232000px;}
.ws25{word-spacing:33.264000px;}
.ws26{word-spacing:34.704000px;}
.ws90{word-spacing:39.289392px;}
.ws8c{word-spacing:39.390048px;}
.ws8e{word-spacing:39.423600px;}
.ws8a{word-spacing:39.658464px;}
.ws8d{word-spacing:39.876552px;}
.ws8f{word-spacing:40.765680px;}
.ws89{word-spacing:41.604480px;}
.wsb{word-spacing:45.792000px;}
.ws98{word-spacing:55.804320px;}
.ws77{word-spacing:101.085720px;}
.ws88{word-spacing:101.159280px;}
.ws58{word-spacing:176.544000px;}
.ws63{word-spacing:191.991600px;}
.ws50{word-spacing:192.390768px;}
.ws38{word-spacing:280.998000px;}
.ws48{word-spacing:306.878760px;}
.ws47{word-spacing:317.949840px;}
.ws45{word-spacing:357.365376px;}
.ws6d{word-spacing:443.016000px;}
.ws67{word-spacing:478.980000px;}
.ws4f{word-spacing:488.454120px;}
.ws4d{word-spacing:553.704192px;}
.ws6c{word-spacing:1485.291600px;}
.ws66{word-spacing:1726.880400px;}
._d{margin-left:-12.410784px;}
._9{margin-left:-11.273472px;}
._a{margin-left:-9.293904px;}
._3{margin-left:-6.613200px;}
._19{margin-left:-5.016024px;}
._1{margin-left:-2.160000px;}
._e{margin-left:-1.052352px;}
._0{width:1.152000px;}
._2{width:2.448000px;}
._c{width:3.902400px;}
._10{width:6.665472px;}
._4{width:8.352000px;}
._16{width:9.911160px;}
._13{width:34.125840px;}
._8{width:40.464000px;}
._17{width:48.502440px;}
._5{width:55.584000px;}
._6{width:69.984000px;}
._7{width:74.304000px;}
._18{width:87.696288px;}
._b{width:96.192000px;}
._1a{width:147.417120px;}
._f{width:342.021600px;}
._14{width:453.204000px;}
._11{width:494.125200px;}
._12{width:753.955272px;}
._15{width:1052.136000px;}
.fc3{color:rgb(8,29,88);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(107,107,107);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(102,0,102);}
.fs5{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fsa{font-size:64.080000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:79.920000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.fs0{font-size:144.000000px;}
.fs4{font-size:167.760000px;}
.fsb{font-size:192.240000px;}
.y0{bottom:0.000000px;}
.y92{bottom:20.850360px;}
.yf9{bottom:25.583820px;}
.yda{bottom:39.856140px;}
.y1f{bottom:40.638750px;}
.y58{bottom:44.953950px;}
.y91{bottom:49.650180px;}
.yce{bottom:50.287500px;}
.y15{bottom:60.817500px;}
.y20{bottom:64.176750px;}
.yf8{bottom:65.888160px;}
.y5c{bottom:66.712680px;}
.y21{bottom:74.188710px;}
.yd9{bottom:74.416140px;}
.y90{bottom:78.450000px;}
.yed{bottom:84.071460px;}
.y22{bottom:84.106710px;}
.yc3{bottom:88.965000px;}
.ycd{bottom:93.487500px;}
.y23{bottom:94.024710px;}
.y5b{bottom:95.512500px;}
.y6{bottom:102.172500px;}
.y24{bottom:103.942710px;}
.y14{bottom:104.017500px;}
.yf7{bottom:106.192500px;}
.yd8{bottom:108.985500px;}
.y25{bottom:113.860710px;}
.y1e{bottom:119.625000px;}
.y26{bottom:123.778710px;}
.yec{bottom:124.375800px;}
.yb9{bottom:127.419450px;}
.yc2{bottom:128.205000px;}
.y27{bottom:133.696710px;}
.y8f{bottom:136.645950px;}
.ycc{bottom:136.687500px;}
.y28{bottom:143.614710px;}
.y13{bottom:147.217500px;}
.y29{bottom:153.532710px;}
.yd7{bottom:154.567050px;}
.y8d{bottom:156.570690px;}
.yb7{bottom:158.419440px;}
.y6e{bottom:159.510300px;}
.y1d{bottom:162.825000px;}
.y2a{bottom:163.450710px;}
.yeb{bottom:164.680140px;}
.ye2{bottom:165.814680px;}
.yc1{bottom:166.725000px;}
.y87{bottom:171.778350px;}
.yac{bottom:172.481400px;}
.y2b{bottom:173.368710px;}
.y5{bottom:176.707260px;}
.ycb{bottom:179.887500px;}
.y6c{bottom:183.250200px;}
.y2c{bottom:183.286710px;}
.ya1{bottom:187.913880px;}
.y12{bottom:190.417500px;}
.y2d{bottom:193.204710px;}
.y64{bottom:197.360400px;}
.y9b{bottom:197.581320px;}
.y2e{bottom:203.122710px;}
.y86{bottom:204.679440px;}
.yea{bottom:204.984480px;}
.yc0{bottom:205.605000px;}
.y1c{bottom:206.025000px;}
.yf6{bottom:207.070800px;}
.y4{bottom:208.379880px;}
.y7a{bottom:208.636200px;}
.yd6{bottom:212.524350px;}
.y2f{bottom:213.040710px;}
.y95{bottom:213.324840px;}
.yad{bottom:213.606000px;}
.y63{bottom:214.551090px;}
.ye1{bottom:216.226560px;}
.y30{bottom:222.958710px;}
.yca{bottom:223.087500px;}
.y7b{bottom:227.208960px;}
.ya2{bottom:231.459120px;}
.y6f{bottom:232.491600px;}
.y9f{bottom:232.659720px;}
.y31{bottom:232.876710px;}
.y7c{bottom:233.827920px;}
.ya7{bottom:235.092240px;}
.y76{bottom:236.479680px;}
.y3{bottom:240.052500px;}
.y32{bottom:242.794710px;}
.y5d{bottom:244.271850px;}
.ybf{bottom:244.485000px;}
.ye9{bottom:245.288820px;}
.yf5{bottom:247.375140px;}
.y1b{bottom:249.225000px;}
.y33{bottom:252.712710px;}
.y88{bottom:253.629570px;}
.y65{bottom:253.885620px;}
.y60{bottom:254.525850px;}
.yae{bottom:254.730600px;}
.y81{bottom:257.672880px;}
.ya0{bottom:258.060240px;}
.y34{bottom:262.630710px;}
.ya9{bottom:264.125880px;}
.yc9{bottom:266.287500px;}
.ye0{bottom:266.638440px;}
.y78{bottom:266.943600px;}
.y35{bottom:272.548710px;}
.y80{bottom:273.562560px;}
.yd5{bottom:274.705350px;}
.y11{bottom:276.817500px;}
.y36{bottom:282.466710px;}
.y84{bottom:285.474600px;}
.ye8{bottom:285.593160px;}
.y9e{bottom:285.872400px;}
.y7f{bottom:286.810920px;}
.ya6{bottom:287.093880px;}
.yf4{bottom:287.679480px;}
.ya3{bottom:288.304920px;}
.y5f{bottom:288.351450px;}
.y37{bottom:292.384710px;}
.y1a{bottom:292.425000px;}
.y97{bottom:293.138640px;}
.y82{bottom:294.755760px;}
.yaf{bottom:295.855200px;}
.y93{bottom:297.982800px;}
.y38{bottom:302.302710px;}
.y2{bottom:306.112500px;}
.y66{bottom:310.410840px;}
.y39{bottom:312.220710px;}
.y61{bottom:316.748250px;}
.y94{bottom:317.338560px;}
.y72{bottom:318.579840px;}
.y3a{bottom:322.138710px;}
.ybe{bottom:322.245000px;}
.ye7{bottom:325.897500px;}
.yf3{bottom:327.983820px;}
.y7d{bottom:329.186880px;}
.y3b{bottom:332.056710px;}
.yb8{bottom:335.025900px;}
.y89{bottom:335.480790px;}
.yd4{bottom:335.914350px;}
.yb0{bottom:336.979800px;}
.y8e{bottom:337.064100px;}
.y6d{bottom:341.412000px;}
.y3c{bottom:341.974710px;}
.ya4{bottom:342.728640px;}
.y1{bottom:344.992500px;}
.y98{bottom:345.140280px;}
.y3d{bottom:351.892710px;}
.y96{bottom:352.406520px;}
.yc8{bottom:352.687500px;}
.ya8{bottom:356.039640px;}
.y3e{bottom:361.810710px;}
.y85{bottom:363.618000px;}
.y67{bottom:366.936060px;}
.yf2{bottom:368.288160px;}
.y3f{bottom:371.728710px;}
.y70{bottom:376.855920px;}
.yb1{bottom:378.104400px;}
.y9c{bottom:381.419280px;}
.y40{bottom:381.646710px;}
.ydf{bottom:387.593400px;}
.yd3{bottom:389.773950px;}
.y41{bottom:391.564710px;}
.y71{bottom:394.071480px;}
.yc7{bottom:395.887500px;}
.y10{bottom:397.777500px;}
.y42{bottom:401.482710px;}
.ybd{bottom:404.325000px;}
.yf1{bottom:408.592500px;}
.y62{bottom:409.184010px;}
.y73{bottom:409.971600px;}
.y43{bottom:411.400710px;}
.y99{bottom:414.075600px;}
.y75{bottom:416.601000px;}
.y8a{bottom:417.332010px;}
.yb2{bottom:419.229000px;}
.y44{bottom:421.318710px;}
.y19{bottom:422.025000px;}
.yd2{bottom:422.902950px;}
.y68{bottom:423.461280px;}
.ye6{bottom:426.744480px;}
.y74{bottom:431.164800px;}
.y45{bottom:431.236710px;}
.yf{bottom:436.657500px;}
.yde{bottom:438.005280px;}
.yc6{bottom:439.087500px;}
.ya{bottom:440.871870px;}
.y46{bottom:441.154710px;}
.y9d{bottom:441.887760px;}
.yaa{bottom:445.541760px;}
.y77{bottom:449.716680px;}
.y47{bottom:451.072710px;}
.yb3{bottom:460.353600px;}
.y48{bottom:460.990710px;}
.y18{bottom:465.225000px;}
.ye5{bottom:467.048820px;}
.y5e{bottom:468.234900px;}
.y49{bottom:470.908710px;}
.y83{bottom:474.877080px;}
.ye{bottom:475.537500px;}
.y9{bottom:476.883750px;}
.yd1{bottom:477.395550px;}
.y69{bottom:479.986500px;}
.y4a{bottom:480.826710px;}
.y79{bottom:488.125440px;}
.ydd{bottom:488.417160px;}
.ybc{bottom:490.725000px;}
.y4b{bottom:490.744710px;}
.y9a{bottom:492.688800px;}
.y8b{bottom:499.183230px;}
.y4c{bottom:500.662710px;}
.yb4{bottom:501.478200px;}
.ye4{bottom:507.353160px;}
.y17{bottom:508.425000px;}
.yf0{bottom:509.423820px;}
.y4d{bottom:510.580710px;}
.yd{bottom:514.417500px;}
.y4e{bottom:520.498710px;}
.yab{bottom:520.532280px;}
.yc5{bottom:525.487350px;}
.y4f{bottom:530.416710px;}
.ybb{bottom:533.925000px;}
.y5a{bottom:534.525180px;}
.y6a{bottom:536.511720px;}
.y7e{bottom:537.130800px;}
.y8{bottom:539.343750px;}
.yd0{bottom:539.768700px;}
.ydc{bottom:540.250440px;}
.y50{bottom:540.334710px;}
.yb5{bottom:542.602800px;}
.ye3{bottom:547.657500px;}
.yef{bottom:549.728160px;}
.y51{bottom:550.252710px;}
.y16{bottom:551.625000px;}
.yc{bottom:553.297500px;}
.ya5{bottom:555.589800px;}
.y52{bottom:560.170710px;}
.y59{bottom:563.325000px;}
.yc4{bottom:568.687350px;}
.y53{bottom:570.088710px;}
.yba{bottom:577.125000px;}
.y54{bottom:580.006710px;}
.y8c{bottom:581.034450px;}
.y7{bottom:582.543750px;}
.yb6{bottom:583.727400px;}
.y55{bottom:589.924710px;}
.yee{bottom:590.032500px;}
.y6b{bottom:593.036940px;}
.ycf{bottom:594.056850px;}
.y56{bottom:599.842710px;}
.y57{bottom:609.760710px;}
.ydb{bottom:664.980000px;}
.yb{bottom:673.417350px;}
.yfa{bottom:693.310560px;}
.hb{height:32.152148px;}
.h6{height:40.985156px;}
.h8{height:47.344922px;}
.h7{height:50.312812px;}
.h9{height:50.422916px;}
.ha{height:52.998047px;}
.h2{height:99.874688px;}
.hf{height:99.912128px;}
.h3{height:112.640625px;}
.he{height:112.687425px;}
.h4{height:125.406562px;}
.hc{height:133.268625px;}
.h1{height:150.187500px;}
.h11{height:174.968437px;}
.h5{height:178.999920px;}
.h10{height:200.518552px;}
.hd{height:200.984625px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x75{left:31.882560px;}
.x11{left:40.312500px;}
.xb{left:48.937500px;}
.x74{left:55.807500px;}
.x70{left:66.112500px;}
.xf{left:73.987500px;}
.x43{left:76.031250px;}
.x1{left:83.655000px;}
.xc{left:91.500150px;}
.x7{left:98.628750px;}
.x6c{left:100.768650px;}
.x76{left:103.914930px;}
.x71{left:106.612500px;}
.x72{left:108.487500px;}
.x78{left:112.312500px;}
.x77{left:119.437500px;}
.x6a{left:126.782400px;}
.x10{left:127.987500px;}
.x8{left:129.048750px;}
.xe{left:132.000150px;}
.x73{left:136.115790px;}
.x40{left:137.322000px;}
.x5b{left:139.284450px;}
.x5c{left:141.722610px;}
.xd{left:145.500150px;}
.x6b{left:147.489420px;}
.x5a{left:156.537000px;}
.x3f{left:162.528060px;}
.x6e{left:166.230000px;}
.x3e{left:168.364020px;}
.x3d{left:176.162700px;}
.x3c{left:179.868900px;}
.x68{left:184.459440px;}
.x66{left:187.539240px;}
.x3b{left:188.753340px;}
.x47{left:189.809520px;}
.x3a{left:191.582580px;}
.x39{left:192.783180px;}
.x9{left:193.848750px;}
.x38{left:196.280580px;}
.xa{left:197.997030px;}
.x37{left:199.840620px;}
.x36{left:202.534140px;}
.x35{left:205.478220px;}
.x48{left:209.021100px;}
.x34{left:210.562500px;}
.x33{left:213.798900px;}
.x32{left:215.772060px;}
.x31{left:218.016660px;}
.x53{left:224.805810px;}
.x30{left:225.815340px;}
.x2f{left:228.153900px;}
.x5f{left:229.403640px;}
.x2e{left:230.492460px;}
.x2d{left:232.465620px;}
.x2c{left:233.572260px;}
.x51{left:241.958730px;}
.x2b{left:244.022700px;}
.x2a{left:248.438820px;}
.x29{left:250.234500px;}
.x28{left:251.957100px;}
.x64{left:254.584920px;}
.x6f{left:256.050000px;}
.x2{left:257.355000px;}
.x27{left:258.649140px;}
.x26{left:262.898220px;}
.x25{left:264.338940px;}
.x6{left:267.255000px;}
.x24{left:268.306140px;}
.x23{left:270.843060px;}
.x22{left:274.152540px;}
.x21{left:280.218180px;}
.x20{left:281.230860px;}
.x46{left:288.238860px;}
.x1f{left:291.556020px;}
.x5d{left:293.286750px;}
.x1e{left:294.573180px;}
.x1d{left:296.525460px;}
.x4c{left:299.650170px;}
.x56{left:302.583810px;}
.x69{left:304.467240px;}
.x61{left:308.476200px;}
.x52{left:312.460050px;}
.x5{left:314.973180px;}
.x65{left:320.315160px;}
.x55{left:322.847850px;}
.x3{left:327.015000px;}
.x45{left:329.027940px;}
.x4{left:336.926160px;}
.x1c{left:344.184060px;}
.x59{left:346.055970px;}
.x1b{left:347.827620px;}
.x1a{left:363.477180px;}
.x67{left:372.859680px;}
.x5e{left:375.866400px;}
.x60{left:377.829120px;}
.x4d{left:379.276050px;}
.x19{left:382.728540px;}
.x18{left:395.235660px;}
.x42{left:397.106910px;}
.x63{left:402.175200px;}
.x17{left:407.158140px;}
.x54{left:420.399210px;}
.x41{left:427.893750px;}
.x16{left:431.180580px;}
.x6d{left:444.164700px;}
.x62{left:449.729400px;}
.x15{left:455.756340px;}
.x50{left:461.282250px;}
.x49{left:468.520650px;}
.x14{left:474.485700px;}
.x4e{left:485.409090px;}
.x4a{left:527.837250px;}
.x58{left:555.127410px;}
.x4b{left:578.377290px;}
.x4f{left:635.839050px;}
.x57{left:673.423050px;}
.x13{left:737.573700px;}
.x44{left:757.874100px;}
.x12{left:858.416700px;}
@media print{
.v3{vertical-align:-138.240000pt;}
.v4{vertical-align:-26.240000pt;}
.vb{vertical-align:-23.638400pt;}
.vc{vertical-align:-20.446720pt;}
.v2{vertical-align:-4.714240pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:3.840000pt;}
.v1{vertical-align:8.389120pt;}
.v6{vertical-align:14.496000pt;}
.va{vertical-align:26.240000pt;}
.v5{vertical-align:30.080000pt;}
.v8{vertical-align:64.032000pt;}
.v9{vertical-align:78.528000pt;}
.lsb{letter-spacing:-14.208000pt;}
.ls30{letter-spacing:-6.554240pt;}
.ls16{letter-spacing:-1.336320pt;}
.ls17{letter-spacing:-0.928000pt;}
.lsc{letter-spacing:-0.768000pt;}
.ls14{letter-spacing:-0.705280pt;}
.lse{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.631040pt;}
.ls20{letter-spacing:-0.471680pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls1c{letter-spacing:-0.300160pt;}
.ls36{letter-spacing:-0.298240pt;}
.ls2{letter-spacing:-0.288000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls31{letter-spacing:-0.255360pt;}
.ls2f{letter-spacing:-0.213760pt;}
.ls1e{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.185600pt;}
.ls19{letter-spacing:-0.171520pt;}
.ls1a{letter-spacing:-0.170240pt;}
.lsa{letter-spacing:-0.149120pt;}
.ls0{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.074240pt;}
.ls1d{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.106880pt;}
.ls27{letter-spacing:0.128000pt;}
.ls2e{letter-spacing:0.142080pt;}
.ls12{letter-spacing:0.148480pt;}
.ls34{letter-spacing:0.149120pt;}
.ls32{letter-spacing:0.170880pt;}
.ls4{letter-spacing:0.256000pt;}
.ls2d{letter-spacing:0.288000pt;}
.ls33{letter-spacing:0.298240pt;}
.ls1b{letter-spacing:0.343040pt;}
.ls11{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.512000pt;}
.ls21{letter-spacing:17.792000pt;}
.ls22{letter-spacing:18.688000pt;}
.ls28{letter-spacing:31.744000pt;}
.ls25{letter-spacing:34.560000pt;}
.ls29{letter-spacing:35.072000pt;}
.ls23{letter-spacing:35.200000pt;}
.ls24{letter-spacing:35.456000pt;}
.ls26{letter-spacing:35.584000pt;}
.ls9{letter-spacing:36.736000pt;}
.ls5{letter-spacing:38.912000pt;}
.ls8{letter-spacing:40.832000pt;}
.ls7{letter-spacing:41.216000pt;}
.ls35{letter-spacing:54.727040pt;}
.ls6{letter-spacing:61.056000pt;}
.ls2a{letter-spacing:99.200000pt;}
.ls13{letter-spacing:273.188480pt;}
.ls2c{letter-spacing:692.544000pt;}
.ls2b{letter-spacing:1894.080533pt;}
.ws53{word-spacing:-128.000000pt;}
.ws92{word-spacing:-49.656960pt;}
.wsa{word-spacing:-49.507840pt;}
.ws78{word-spacing:-47.504640pt;}
.ws7e{word-spacing:-41.753600pt;}
.ws83{word-spacing:-41.604480pt;}
.ws94{word-spacing:-41.306240pt;}
.ws8b{word-spacing:-41.157120pt;}
.ws5a{word-spacing:-35.840000pt;}
.ws10{word-spacing:-35.584000pt;}
.ws11{word-spacing:-35.456000pt;}
.ws14{word-spacing:-35.328000pt;}
.ws1c{word-spacing:-35.200000pt;}
.ws0{word-spacing:-29.712640pt;}
.ws6a{word-spacing:-29.498880pt;}
.ws6b{word-spacing:-26.688000pt;}
.ws64{word-spacing:-26.400000pt;}
.ws39{word-spacing:-23.663360pt;}
.ws57{word-spacing:-23.493120pt;}
.ws71{word-spacing:-23.408000pt;}
.ws65{word-spacing:-19.891200pt;}
.ws54{word-spacing:-17.920000pt;}
.ws55{word-spacing:-17.792000pt;}
.ws6e{word-spacing:-17.109120pt;}
.ws4e{word-spacing:-11.749120pt;}
.ws44{word-spacing:-11.063040pt;}
.ws46{word-spacing:-10.419840pt;}
.ws33{word-spacing:-9.428480pt;}
.ws35{word-spacing:-9.280000pt;}
.ws37{word-spacing:-9.094400pt;}
.ws32{word-spacing:-8.648960pt;}
.ws31{word-spacing:-8.574720pt;}
.ws36{word-spacing:-8.352000pt;}
.ws34{word-spacing:-7.943680pt;}
.ws93{word-spacing:-6.716160pt;}
.ws7{word-spacing:-6.656000pt;}
.ws60{word-spacing:-5.376000pt;}
.ws2e{word-spacing:-2.176000pt;}
.ws8{word-spacing:-2.137600pt;}
.ws61{word-spacing:-1.920000pt;}
.ws62{word-spacing:-1.622400pt;}
.ws9{word-spacing:-1.603200pt;}
.ws2d{word-spacing:-1.536000pt;}
.ws27{word-spacing:-1.280000pt;}
.ws3{word-spacing:-1.276800pt;}
.ws5c{word-spacing:-1.152000pt;}
.ws2{word-spacing:-0.896000pt;}
.ws91{word-spacing:-0.805248pt;}
.ws95{word-spacing:-0.745600pt;}
.ws96{word-spacing:-0.596480pt;}
.ws4{word-spacing:-0.595840pt;}
.ws4b{word-spacing:-0.576000pt;}
.ws3b{word-spacing:-0.482560pt;}
.ws5e{word-spacing:-0.384000pt;}
.ws51{word-spacing:-0.334080pt;}
.ws9a{word-spacing:-0.298240pt;}
.ws4c{word-spacing:-0.288000pt;}
.ws1{word-spacing:-0.256000pt;}
.ws7a{word-spacing:-0.149120pt;}
.ws74{word-spacing:-0.142080pt;}
.ws5b{word-spacing:-0.128000pt;}
.ws73{word-spacing:-0.096000pt;}
.ws6f{word-spacing:-0.068096pt;}
.ws5{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.128000pt;}
.ws68{word-spacing:0.171008pt;}
.ws75{word-spacing:0.288000pt;}
.ws56{word-spacing:0.320000pt;}
.ws3e{word-spacing:0.334080pt;}
.ws2b{word-spacing:0.384000pt;}
.ws97{word-spacing:0.447360pt;}
.ws87{word-spacing:0.477184pt;}
.ws2f{word-spacing:0.480000pt;}
.ws59{word-spacing:0.640000pt;}
.ws4a{word-spacing:0.680960pt;}
.ws7d{word-spacing:0.760512pt;}
.ws29{word-spacing:0.768000pt;}
.ws49{word-spacing:0.851200pt;}
.ws7c{word-spacing:0.864896pt;}
.ws99{word-spacing:0.894720pt;}
.ws5d{word-spacing:0.896000pt;}
.ws52{word-spacing:0.960000pt;}
.ws28{word-spacing:1.024000pt;}
.ws3a{word-spacing:1.043840pt;}
.ws30{word-spacing:1.152000pt;}
.ws43{word-spacing:1.276800pt;}
.ws42{word-spacing:1.447040pt;}
.ws3c{word-spacing:1.447680pt;}
.ws7b{word-spacing:1.506112pt;}
.ws79{word-spacing:1.565760pt;}
.ws3d{word-spacing:1.596160pt;}
.ws2a{word-spacing:1.640320pt;}
.ws21{word-spacing:1.664000pt;}
.ws3f{word-spacing:1.670400pt;}
.ws76{word-spacing:1.957760pt;}
.ws19{word-spacing:2.304000pt;}
.ws6{word-spacing:2.400000pt;}
.ws5f{word-spacing:2.833280pt;}
.ws16{word-spacing:3.200000pt;}
.ws40{word-spacing:3.526400pt;}
.ws1a{word-spacing:3.584000pt;}
.ws70{word-spacing:3.600576pt;}
.ws15{word-spacing:3.712000pt;}
.ws18{word-spacing:3.840000pt;}
.ws1b{word-spacing:3.968000pt;}
.ws41{word-spacing:4.231680pt;}
.ws17{word-spacing:4.608000pt;}
.ws22{word-spacing:5.504000pt;}
.ws23{word-spacing:6.144000pt;}
.ws72{word-spacing:7.729920pt;}
.ws81{word-spacing:9.096320pt;}
.ws7f{word-spacing:9.245440pt;}
.ws69{word-spacing:9.428928pt;}
.ws82{word-spacing:9.498944pt;}
.ws80{word-spacing:10.304192pt;}
.wsd{word-spacing:11.520000pt;}
.wsc{word-spacing:12.288000pt;}
.ws84{word-spacing:12.660288pt;}
.ws86{word-spacing:12.675200pt;}
.wse{word-spacing:12.928000pt;}
.ws85{word-spacing:12.973440pt;}
.wsf{word-spacing:13.184000pt;}
.ws12{word-spacing:13.824000pt;}
.ws13{word-spacing:14.464000pt;}
.ws1e{word-spacing:24.320000pt;}
.ws1d{word-spacing:25.088000pt;}
.ws20{word-spacing:25.344000pt;}
.ws1f{word-spacing:25.600000pt;}
.ws24{word-spacing:25.984000pt;}
.ws25{word-spacing:29.568000pt;}
.ws26{word-spacing:30.848000pt;}
.ws90{word-spacing:34.923904pt;}
.ws8c{word-spacing:35.013376pt;}
.ws8e{word-spacing:35.043200pt;}
.ws8a{word-spacing:35.251968pt;}
.ws8d{word-spacing:35.445824pt;}
.ws8f{word-spacing:36.236160pt;}
.ws89{word-spacing:36.981760pt;}
.wsb{word-spacing:40.704000pt;}
.ws98{word-spacing:49.603840pt;}
.ws77{word-spacing:89.853973pt;}
.ws88{word-spacing:89.919360pt;}
.ws58{word-spacing:156.928000pt;}
.ws63{word-spacing:170.659200pt;}
.ws50{word-spacing:171.014016pt;}
.ws38{word-spacing:249.776000pt;}
.ws48{word-spacing:272.781120pt;}
.ws47{word-spacing:282.622080pt;}
.ws45{word-spacing:317.658112pt;}
.ws6d{word-spacing:393.792000pt;}
.ws67{word-spacing:425.760000pt;}
.ws4f{word-spacing:434.181440pt;}
.ws4d{word-spacing:492.181504pt;}
.ws6c{word-spacing:1320.259200pt;}
.ws66{word-spacing:1535.004800pt;}
._d{margin-left:-11.031808pt;}
._9{margin-left:-10.020864pt;}
._a{margin-left:-8.261248pt;}
._3{margin-left:-5.878400pt;}
._19{margin-left:-4.458688pt;}
._1{margin-left:-1.920000pt;}
._e{margin-left:-0.935424pt;}
._0{width:1.024000pt;}
._2{width:2.176000pt;}
._c{width:3.468800pt;}
._10{width:5.924864pt;}
._4{width:7.424000pt;}
._16{width:8.809920pt;}
._13{width:30.334080pt;}
._8{width:35.968000pt;}
._17{width:43.113280pt;}
._5{width:49.408000pt;}
._6{width:62.208000pt;}
._7{width:66.048000pt;}
._18{width:77.952256pt;}
._b{width:85.504000pt;}
._1a{width:131.037440pt;}
._f{width:304.019200pt;}
._14{width:402.848000pt;}
._11{width:439.222400pt;}
._12{width:670.182464pt;}
._15{width:935.232000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fsa{font-size:56.960000pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:71.040000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.fs0{font-size:128.000000pt;}
.fs4{font-size:149.120000pt;}
.fsb{font-size:170.880000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:18.533653pt;}
.yf9{bottom:22.741173pt;}
.yda{bottom:35.427680pt;}
.y1f{bottom:36.123333pt;}
.y58{bottom:39.959067pt;}
.y91{bottom:44.133493pt;}
.yce{bottom:44.700000pt;}
.y15{bottom:54.060000pt;}
.y20{bottom:57.046000pt;}
.yf8{bottom:58.567253pt;}
.y5c{bottom:59.300160pt;}
.y21{bottom:65.945520pt;}
.yd9{bottom:66.147680pt;}
.y90{bottom:69.733333pt;}
.yed{bottom:74.730187pt;}
.y22{bottom:74.761520pt;}
.yc3{bottom:79.080000pt;}
.ycd{bottom:83.100000pt;}
.y23{bottom:83.577520pt;}
.y5b{bottom:84.900000pt;}
.y6{bottom:90.820000pt;}
.y24{bottom:92.393520pt;}
.y14{bottom:92.460000pt;}
.yf7{bottom:94.393333pt;}
.yd8{bottom:96.876000pt;}
.y25{bottom:101.209520pt;}
.y1e{bottom:106.333333pt;}
.y26{bottom:110.025520pt;}
.yec{bottom:110.556267pt;}
.yb9{bottom:113.261733pt;}
.yc2{bottom:113.960000pt;}
.y27{bottom:118.841520pt;}
.y8f{bottom:121.463067pt;}
.ycc{bottom:121.500000pt;}
.y28{bottom:127.657520pt;}
.y13{bottom:130.860000pt;}
.y29{bottom:136.473520pt;}
.yd7{bottom:137.392933pt;}
.y8d{bottom:139.173947pt;}
.yb7{bottom:140.817280pt;}
.y6e{bottom:141.786933pt;}
.y1d{bottom:144.733333pt;}
.y2a{bottom:145.289520pt;}
.yeb{bottom:146.382347pt;}
.ye2{bottom:147.390827pt;}
.yc1{bottom:148.200000pt;}
.y87{bottom:152.691867pt;}
.yac{bottom:153.316800pt;}
.y2b{bottom:154.105520pt;}
.y5{bottom:157.073120pt;}
.ycb{bottom:159.900000pt;}
.y6c{bottom:162.889067pt;}
.y2c{bottom:162.921520pt;}
.ya1{bottom:167.034560pt;}
.y12{bottom:169.260000pt;}
.y2d{bottom:171.737520pt;}
.y64{bottom:175.431467pt;}
.y9b{bottom:175.627840pt;}
.y2e{bottom:180.553520pt;}
.y86{bottom:181.937280pt;}
.yea{bottom:182.208427pt;}
.yc0{bottom:182.760000pt;}
.y1c{bottom:183.133333pt;}
.yf6{bottom:184.062933pt;}
.y4{bottom:185.226560pt;}
.y7a{bottom:185.454400pt;}
.yd6{bottom:188.910533pt;}
.y2f{bottom:189.369520pt;}
.y95{bottom:189.622080pt;}
.yad{bottom:189.872000pt;}
.y63{bottom:190.712080pt;}
.ye1{bottom:192.201387pt;}
.y30{bottom:198.185520pt;}
.yca{bottom:198.300000pt;}
.y7b{bottom:201.963520pt;}
.ya2{bottom:205.741440pt;}
.y6f{bottom:206.659200pt;}
.y9f{bottom:206.808640pt;}
.y31{bottom:207.001520pt;}
.y7c{bottom:207.847040pt;}
.ya7{bottom:208.970880pt;}
.y76{bottom:210.204160pt;}
.y3{bottom:213.380000pt;}
.y32{bottom:215.817520pt;}
.y5d{bottom:217.130533pt;}
.ybf{bottom:217.320000pt;}
.ye9{bottom:218.034507pt;}
.yf5{bottom:219.889013pt;}
.y1b{bottom:221.533333pt;}
.y33{bottom:224.633520pt;}
.y88{bottom:225.448507pt;}
.y65{bottom:225.676107pt;}
.y60{bottom:226.245200pt;}
.yae{bottom:226.427200pt;}
.y81{bottom:229.042560pt;}
.ya0{bottom:229.386880pt;}
.y34{bottom:233.449520pt;}
.ya9{bottom:234.778560pt;}
.yc9{bottom:236.700000pt;}
.ye0{bottom:237.011947pt;}
.y78{bottom:237.283200pt;}
.y35{bottom:242.265520pt;}
.y80{bottom:243.166720pt;}
.yd5{bottom:244.182533pt;}
.y11{bottom:246.060000pt;}
.y36{bottom:251.081520pt;}
.y84{bottom:253.755200pt;}
.ye8{bottom:253.860587pt;}
.y9e{bottom:254.108800pt;}
.y7f{bottom:254.943040pt;}
.ya6{bottom:255.194560pt;}
.yf4{bottom:255.715093pt;}
.ya3{bottom:256.271040pt;}
.y5f{bottom:256.312400pt;}
.y37{bottom:259.897520pt;}
.y1a{bottom:259.933333pt;}
.y97{bottom:260.567680pt;}
.y82{bottom:262.005120pt;}
.yaf{bottom:262.982400pt;}
.y93{bottom:264.873600pt;}
.y38{bottom:268.713520pt;}
.y2{bottom:272.100000pt;}
.y66{bottom:275.920747pt;}
.y39{bottom:277.529520pt;}
.y61{bottom:281.554000pt;}
.y94{bottom:282.078720pt;}
.y72{bottom:283.182080pt;}
.y3a{bottom:286.345520pt;}
.ybe{bottom:286.440000pt;}
.ye7{bottom:289.686667pt;}
.yf3{bottom:291.541173pt;}
.y7d{bottom:292.610560pt;}
.y3b{bottom:295.161520pt;}
.yb8{bottom:297.800800pt;}
.y89{bottom:298.205147pt;}
.yd4{bottom:298.590533pt;}
.yb0{bottom:299.537600pt;}
.y8e{bottom:299.612533pt;}
.y6d{bottom:303.477333pt;}
.y3c{bottom:303.977520pt;}
.ya4{bottom:304.647680pt;}
.y1{bottom:306.660000pt;}
.y98{bottom:306.791360pt;}
.y3d{bottom:312.793520pt;}
.y96{bottom:313.250240pt;}
.yc8{bottom:313.500000pt;}
.ya8{bottom:316.479680pt;}
.y3e{bottom:321.609520pt;}
.y85{bottom:323.216000pt;}
.y67{bottom:326.165387pt;}
.yf2{bottom:327.367253pt;}
.y3f{bottom:330.425520pt;}
.y70{bottom:334.983040pt;}
.yb1{bottom:336.092800pt;}
.y9c{bottom:339.039360pt;}
.y40{bottom:339.241520pt;}
.ydf{bottom:344.527467pt;}
.yd3{bottom:346.465733pt;}
.y41{bottom:348.057520pt;}
.y71{bottom:350.285760pt;}
.yc7{bottom:351.900000pt;}
.y10{bottom:353.580000pt;}
.y42{bottom:356.873520pt;}
.ybd{bottom:359.400000pt;}
.yf1{bottom:363.193333pt;}
.y62{bottom:363.719120pt;}
.y73{bottom:364.419200pt;}
.y43{bottom:365.689520pt;}
.y99{bottom:368.067200pt;}
.y75{bottom:370.312000pt;}
.y8a{bottom:370.961787pt;}
.yb2{bottom:372.648000pt;}
.y44{bottom:374.505520pt;}
.y19{bottom:375.133333pt;}
.yd2{bottom:375.913733pt;}
.y68{bottom:376.410027pt;}
.ye6{bottom:379.328427pt;}
.y74{bottom:383.257600pt;}
.y45{bottom:383.321520pt;}
.yf{bottom:388.140000pt;}
.yde{bottom:389.338027pt;}
.yc6{bottom:390.300000pt;}
.ya{bottom:391.886107pt;}
.y46{bottom:392.137520pt;}
.y9d{bottom:392.789120pt;}
.yaa{bottom:396.037120pt;}
.y77{bottom:399.748160pt;}
.y47{bottom:400.953520pt;}
.yb3{bottom:409.203200pt;}
.y48{bottom:409.769520pt;}
.y18{bottom:413.533333pt;}
.ye5{bottom:415.154507pt;}
.y5e{bottom:416.208800pt;}
.y49{bottom:418.585520pt;}
.y83{bottom:422.112960pt;}
.ye{bottom:422.700000pt;}
.y9{bottom:423.896667pt;}
.yd1{bottom:424.351600pt;}
.y69{bottom:426.654667pt;}
.y4a{bottom:427.401520pt;}
.y79{bottom:433.889280pt;}
.ydd{bottom:434.148587pt;}
.ybc{bottom:436.200000pt;}
.y4b{bottom:436.217520pt;}
.y9a{bottom:437.945600pt;}
.y8b{bottom:443.718427pt;}
.y4c{bottom:445.033520pt;}
.yb4{bottom:445.758400pt;}
.ye4{bottom:450.980587pt;}
.y17{bottom:451.933333pt;}
.yf0{bottom:452.821173pt;}
.y4d{bottom:453.849520pt;}
.yd{bottom:457.260000pt;}
.y4e{bottom:462.665520pt;}
.yab{bottom:462.695360pt;}
.yc5{bottom:467.099867pt;}
.y4f{bottom:471.481520pt;}
.ybb{bottom:474.600000pt;}
.y5a{bottom:475.133493pt;}
.y6a{bottom:476.899307pt;}
.y7e{bottom:477.449600pt;}
.y8{bottom:479.416667pt;}
.yd0{bottom:479.794400pt;}
.ydc{bottom:480.222613pt;}
.y50{bottom:480.297520pt;}
.yb5{bottom:482.313600pt;}
.ye3{bottom:486.806667pt;}
.yef{bottom:488.647253pt;}
.y51{bottom:489.113520pt;}
.y16{bottom:490.333333pt;}
.yc{bottom:491.820000pt;}
.ya5{bottom:493.857600pt;}
.y52{bottom:497.929520pt;}
.y59{bottom:500.733333pt;}
.yc4{bottom:505.499867pt;}
.y53{bottom:506.745520pt;}
.yba{bottom:513.000000pt;}
.y54{bottom:515.561520pt;}
.y8c{bottom:516.475067pt;}
.y7{bottom:517.816667pt;}
.yb6{bottom:518.868800pt;}
.y55{bottom:524.377520pt;}
.yee{bottom:524.473333pt;}
.y6b{bottom:527.143947pt;}
.ycf{bottom:528.050533pt;}
.y56{bottom:533.193520pt;}
.y57{bottom:542.009520pt;}
.ydb{bottom:591.093333pt;}
.yb{bottom:598.593200pt;}
.yfa{bottom:616.276053pt;}
.hb{height:28.579687pt;}
.h6{height:36.431250pt;}
.h8{height:42.084375pt;}
.h7{height:44.722500pt;}
.h9{height:44.820370pt;}
.ha{height:47.109375pt;}
.h2{height:88.777500pt;}
.hf{height:88.810780pt;}
.h3{height:100.125000pt;}
.he{height:100.166600pt;}
.h4{height:111.472500pt;}
.hc{height:118.461000pt;}
.h1{height:133.500000pt;}
.h11{height:155.527500pt;}
.h5{height:159.111040pt;}
.h10{height:178.238713pt;}
.hd{height:178.653000pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x75{left:28.340053pt;}
.x11{left:35.833333pt;}
.xb{left:43.500000pt;}
.x74{left:49.606667pt;}
.x70{left:58.766667pt;}
.xf{left:65.766667pt;}
.x43{left:67.583333pt;}
.x1{left:74.360000pt;}
.xc{left:81.333467pt;}
.x7{left:87.670000pt;}
.x6c{left:89.572133pt;}
.x76{left:92.368827pt;}
.x71{left:94.766667pt;}
.x72{left:96.433333pt;}
.x78{left:99.833333pt;}
.x77{left:106.166667pt;}
.x6a{left:112.695467pt;}
.x10{left:113.766667pt;}
.x8{left:114.710000pt;}
.xe{left:117.333467pt;}
.x73{left:120.991813pt;}
.x40{left:122.064000pt;}
.x5b{left:123.808400pt;}
.x5c{left:125.975653pt;}
.xd{left:129.333467pt;}
.x6b{left:131.101707pt;}
.x5a{left:139.144000pt;}
.x3f{left:144.469387pt;}
.x6e{left:147.760000pt;}
.x3e{left:149.656907pt;}
.x3d{left:156.589067pt;}
.x3c{left:159.883467pt;}
.x68{left:163.963947pt;}
.x66{left:166.701547pt;}
.x3b{left:167.780747pt;}
.x47{left:168.719573pt;}
.x3a{left:170.295627pt;}
.x39{left:171.362827pt;}
.x9{left:172.310000pt;}
.x38{left:174.471627pt;}
.xa{left:175.997360pt;}
.x37{left:177.636107pt;}
.x36{left:180.030347pt;}
.x35{left:182.647307pt;}
.x48{left:185.796533pt;}
.x34{left:187.166667pt;}
.x33{left:190.043467pt;}
.x32{left:191.797387pt;}
.x31{left:193.792587pt;}
.x53{left:199.827387pt;}
.x30{left:200.724747pt;}
.x2f{left:202.803467pt;}
.x5f{left:203.914347pt;}
.x2e{left:204.882187pt;}
.x2d{left:206.636107pt;}
.x2c{left:207.619787pt;}
.x51{left:215.074427pt;}
.x2b{left:216.909067pt;}
.x2a{left:220.834507pt;}
.x29{left:222.430667pt;}
.x28{left:223.961867pt;}
.x64{left:226.297707pt;}
.x6f{left:227.600000pt;}
.x2{left:228.760000pt;}
.x27{left:229.910347pt;}
.x26{left:233.687307pt;}
.x25{left:234.967947pt;}
.x6{left:237.560000pt;}
.x24{left:238.494347pt;}
.x23{left:240.749387pt;}
.x22{left:243.691147pt;}
.x21{left:249.082827pt;}
.x20{left:249.982987pt;}
.x46{left:256.212320pt;}
.x1f{left:259.160907pt;}
.x5d{left:260.699333pt;}
.x1e{left:261.842827pt;}
.x1d{left:263.578187pt;}
.x4c{left:266.355707pt;}
.x56{left:268.963387pt;}
.x69{left:270.637547pt;}
.x61{left:274.201067pt;}
.x52{left:277.742267pt;}
.x5{left:279.976160pt;}
.x65{left:284.724587pt;}
.x55{left:286.975867pt;}
.x3{left:290.680000pt;}
.x45{left:292.469280pt;}
.x4{left:299.489920pt;}
.x1c{left:305.941387pt;}
.x59{left:307.605307pt;}
.x1b{left:309.180107pt;}
.x1a{left:323.090827pt;}
.x67{left:331.430827pt;}
.x5e{left:334.103467pt;}
.x60{left:335.848107pt;}
.x4d{left:337.134267pt;}
.x19{left:340.203147pt;}
.x18{left:351.320587pt;}
.x42{left:352.983920pt;}
.x63{left:357.489067pt;}
.x17{left:361.918347pt;}
.x54{left:373.688187pt;}
.x41{left:380.350000pt;}
.x16{left:383.271627pt;}
.x6d{left:394.813067pt;}
.x62{left:399.759467pt;}
.x15{left:405.116747pt;}
.x50{left:410.028667pt;}
.x49{left:416.462800pt;}
.x14{left:421.765067pt;}
.x4e{left:431.474747pt;}
.x4a{left:469.188667pt;}
.x58{left:493.446587pt;}
.x4b{left:514.113147pt;}
.x4f{left:565.190267pt;}
.x57{left:598.598267pt;}
.x13{left:655.621067pt;}
.x44{left:673.665867pt;}
.x12{left:763.037067pt;}
}




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