
    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_fd057b74c095d5325f3ddb92.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.715000;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_cecba8592a34d299e1284e6c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.110000;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_44c5faace09e647897388adb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_38497c2ca187156d42178b11.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.159000;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_e08f56fa956e541f9f98ae01.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_a7a81467f971dce1168529a4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914000;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_be1a4f6896c5d902d5c0e419.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_587ac5ad6abbd43971bde7cc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.922000;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_1098b5619b8639e5dea6739e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a45b8f1ba716aad1fb2e7fa4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.159000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_07f5abd041aa6a2fbeed848a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.522000;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.002400px;}
.ls8{letter-spacing:0.003030px;}
.ls0{letter-spacing:0.003810px;}
.lsa{letter-spacing:0.046211px;}
.ls12{letter-spacing:14.944438px;}
.ls13{letter-spacing:19.766338px;}
.ls9{letter-spacing:19.922703px;}
.ls2{letter-spacing:19.923333px;}
.lse{letter-spacing:19.923746px;}
.ls14{letter-spacing:20.212438px;}
.ls7{letter-spacing:21.245696px;}
.ls10{letter-spacing:22.774438px;}
.ls11{letter-spacing:23.068438px;}
.lsc{letter-spacing:23.210338px;}
.lsf{letter-spacing:23.492338px;}
.ls6{letter-spacing:24.723030px;}
.lsd{letter-spacing:27.910200px;}
.ls5{letter-spacing:31.381530px;}
.ls3{letter-spacing:31.382670px;}
.ls4{letter-spacing:31.383810px;}
.lsb{letter-spacing:31.385910px;}
.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;}
}
.ws2e{word-spacing:-29.887800px;}
.ws85{word-spacing:-16.498066px;}
.ws2{word-spacing:-16.139475px;}
.ws4{word-spacing:-16.139412px;}
.ws52{word-spacing:-15.302554px;}
.ws7c{word-spacing:-14.943900px;}
.ws3{word-spacing:-14.764573px;}
.ws70{word-spacing:-14.346144px;}
.ws9c{word-spacing:-14.107042px;}
.ws7e{word-spacing:-13.987490px;}
.ws8c{word-spacing:-13.808164px;}
.ws1b{word-spacing:-13.748388px;}
.wsc{word-spacing:-13.449600px;}
.ws1a{word-spacing:-13.449510px;}
.ws77{word-spacing:-13.389734px;}
.ws3d{word-spacing:-13.031081px;}
.ws78{word-spacing:-12.971305px;}
.ws6e{word-spacing:-12.911530px;}
.ws30{word-spacing:-12.851754px;}
.ws51{word-spacing:-12.612652px;}
.ws9d{word-spacing:-12.587378px;}
.ws9f{word-spacing:-12.552876px;}
.ws41{word-spacing:-12.493100px;}
.ws22{word-spacing:-12.373549px;}
.ws81{word-spacing:-12.313774px;}
.wse{word-spacing:-12.134447px;}
.ws92{word-spacing:-12.014896px;}
.ws21{word-spacing:-11.955120px;}
.ws1c{word-spacing:-11.895344px;}
.ws83{word-spacing:-11.835569px;}
.ws7f{word-spacing:-11.656242px;}
.ws80{word-spacing:-11.596466px;}
.ws57{word-spacing:-11.536691px;}
.ws87{word-spacing:-11.417140px;}
.ws1f{word-spacing:-11.357364px;}
.ws31{word-spacing:-11.178037px;}
.ws47{word-spacing:-11.118262px;}
.ws60{word-spacing:-11.058486px;}
.ws33{word-spacing:-10.759608px;}
.ws5{word-spacing:-10.640057px;}
.ws35{word-spacing:-10.580281px;}
.ws86{word-spacing:-10.520506px;}
.ws6b{word-spacing:-10.460730px;}
.ws6d{word-spacing:-10.400954px;}
.ws5e{word-spacing:-10.341179px;}
.ws98{word-spacing:-10.161852px;}
.ws71{word-spacing:-10.102076px;}
.ws7{word-spacing:-9.982525px;}
.ws11{word-spacing:-9.922750px;}
.ws8a{word-spacing:-9.862974px;}
.ws8b{word-spacing:-9.743423px;}
.ws6f{word-spacing:-9.683647px;}
.ws17{word-spacing:-9.564096px;}
.ws88{word-spacing:-9.504320px;}
.ws37{word-spacing:-9.324994px;}
.ws1d{word-spacing:-9.205442px;}
.ws6{word-spacing:-9.145667px;}
.ws5b{word-spacing:-8.906564px;}
.ws5a{word-spacing:-8.846789px;}
.ws2b{word-spacing:-8.667462px;}
.ws38{word-spacing:-8.607686px;}
.ws39{word-spacing:-8.547911px;}
.ws2c{word-spacing:-8.488135px;}
.ws62{word-spacing:-8.368584px;}
.ws2f{word-spacing:-8.249033px;}
.ws18{word-spacing:-8.189257px;}
.ws9b{word-spacing:-8.129482px;}
.ws3f{word-spacing:-8.069706px;}
.ws5f{word-spacing:-7.890379px;}
.ws10{word-spacing:-7.830604px;}
.ws23{word-spacing:-7.770828px;}
.ws3e{word-spacing:-7.352399px;}
.ws89{word-spacing:-7.292623px;}
.ws69{word-spacing:-7.113296px;}
.ws61{word-spacing:-6.933970px;}
.ws72{word-spacing:-6.840432px;}
.ws74{word-spacing:-6.814418px;}
.ws68{word-spacing:-6.754643px;}
.ws66{word-spacing:-6.635092px;}
.ws59{word-spacing:-6.336214px;}
.ws5c{word-spacing:-6.276438px;}
.ws91{word-spacing:-6.097111px;}
.wsd{word-spacing:-5.917784px;}
.ws19{word-spacing:-5.858009px;}
.ws64{word-spacing:-5.559131px;}
.ws4b{word-spacing:-5.379804px;}
.ws4f{word-spacing:-5.320028px;}
.ws8d{word-spacing:-5.260253px;}
.ws2a{word-spacing:-5.140702px;}
.ws45{word-spacing:-5.021150px;}
.ws16{word-spacing:-4.841824px;}
.ws5d{word-spacing:-4.722272px;}
.ws97{word-spacing:-4.602721px;}
.ws7a{word-spacing:-4.124516px;}
.ws65{word-spacing:-4.064741px;}
.wsa1{word-spacing:-4.004965px;}
.ws79{word-spacing:-3.945190px;}
.ws46{word-spacing:-3.646312px;}
.ws2d{word-spacing:-3.407209px;}
.ws4d{word-spacing:-3.048556px;}
.ws90{word-spacing:-2.988780px;}
.ws8e{word-spacing:-2.929004px;}
.ws56{word-spacing:-2.391024px;}
.ws44{word-spacing:-1.972595px;}
.ws67{word-spacing:-1.673717px;}
.ws8{word-spacing:-0.059776px;}
.ws13{word-spacing:0.000000px;}
.ws84{word-spacing:13.323315px;}
.wsa0{word-spacing:17.250069px;}
.ws93{word-spacing:17.815728px;}
.ws48{word-spacing:18.709278px;}
.ws9e{word-spacing:18.842403px;}
.ws36{word-spacing:19.064804px;}
.ws34{word-spacing:19.070324px;}
.ws7d{word-spacing:19.462077px;}
.ws9a{word-spacing:19.673084px;}
.ws99{word-spacing:19.676894px;}
.wsa2{word-spacing:19.871144px;}
.ws42{word-spacing:19.965050px;}
.ws32{word-spacing:20.231996px;}
.ws29{word-spacing:20.667813px;}
.ws53{word-spacing:21.339889px;}
.ws63{word-spacing:21.596352px;}
.ws12{word-spacing:22.129786px;}
.ws1e{word-spacing:22.341646px;}
.ws96{word-spacing:22.415850px;}
.ws20{word-spacing:23.219436px;}
.ws1{word-spacing:23.312640px;}
.ws6c{word-spacing:23.974077px;}
.ws94{word-spacing:24.005144px;}
.ws95{word-spacing:24.076425px;}
.ws6a{word-spacing:24.275143px;}
.ws4c{word-spacing:24.445259px;}
.ws75{word-spacing:24.569143px;}
.ws49{word-spacing:24.582975px;}
.ws28{word-spacing:24.781895px;}
.ws76{word-spacing:25.489107px;}
.ws58{word-spacing:26.070975px;}
.wsf{word-spacing:26.161786px;}
.ws4e{word-spacing:26.766916px;}
.ws8f{word-spacing:26.875891px;}
.ws73{word-spacing:27.586077px;}
.ws0{word-spacing:31.091012px;}
.ws3c{word-spacing:31.320614px;}
.ws24{word-spacing:31.321844px;}
.ws27{word-spacing:31.322234px;}
.ws25{word-spacing:31.322324px;}
.ws9{word-spacing:31.322414px;}
.wsa{word-spacing:31.322894px;}
.ws26{word-spacing:31.323944px;}
.ws3a{word-spacing:31.325084px;}
.ws15{word-spacing:31.326134px;}
.ws14{word-spacing:31.327274px;}
.ws7b{word-spacing:31.327664px;}
.ws40{word-spacing:31.327844px;}
.ws43{word-spacing:32.039722px;}
.ws50{word-spacing:40.445404px;}
.ws55{word-spacing:62.702894px;}
.ws54{word-spacing:62.704604px;}
.ws82{word-spacing:62.707184px;}
.ws3b{word-spacing:62.707844px;}
.ws4a{word-spacing:94.086794px;}
.wsb{word-spacing:188.233364px;}
._18{margin-left:-8.314997px;}
._23{margin-left:-6.881800px;}
._2{margin-left:-5.474497px;}
._5{margin-left:-3.982024px;}
._1{margin-left:-2.685602px;}
._3{margin-left:-1.044420px;}
._4{width:1.104196px;}
._e{width:2.423558px;}
._16{width:3.699167px;}
._1c{width:9.367464px;}
._1b{width:10.537811px;}
._29{width:14.935301px;}
._22{width:16.888260px;}
._28{width:18.154226px;}
._15{width:19.537083px;}
._2b{width:20.558507px;}
._14{width:21.730084px;}
._1e{width:22.925596px;}
._1a{width:24.142937px;}
._12{width:25.285079px;}
._10{width:26.540366px;}
._11{width:27.700038px;}
._13{width:28.871615px;}
._19{width:30.221101px;}
._9{width:31.382190px;}
._1d{width:32.582995px;}
._17{width:33.587890px;}
._27{width:35.497114px;}
._25{width:36.679277px;}
._f{width:39.124783px;}
._2a{width:40.193138px;}
._0{width:41.936714px;}
._26{width:43.015490px;}
._20{width:46.338989px;}
._1f{width:51.468612px;}
._6{width:62.764380px;}
._21{width:94.146570px;}
._24{width:125.528760px;}
._a{width:156.910950px;}
._b{width:188.293140px;}
._8{width:219.675330px;}
._7{width:251.057520px;}
._c{width:282.439710px;}
._d{width:313.821900px;}
.fc5{color:rgb(0,0,207);}
.fc4{color:rgb(207,92,0);}
.fc3{color:rgb(143,89,3);}
.fc2{color:rgb(79,153,5);}
.fc1{color:rgb(33,74,135);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1f{bottom:63.168000px;}
.yb4{bottom:108.000000px;}
.yb3{bottom:125.932500px;}
.y48{bottom:127.561500px;}
.yfe{bottom:130.482000px;}
.y69{bottom:136.534500px;}
.y8d{bottom:139.333500px;}
.y121{bottom:143.865000px;}
.y1e{bottom:144.708000px;}
.y47{bottom:145.494000px;}
.yd8{bottom:147.823500px;}
.y68{bottom:154.467000px;}
.y120{bottom:161.797500px;}
.y1d{bottom:162.640500px;}
.yd7{bottom:165.756000px;}
.yb2{bottom:167.134500px;}
.yfd{bottom:169.252500px;}
.y46{bottom:172.054500px;}
.y67{bottom:172.399500px;}
.y8c{bottom:175.116000px;}
.yd6{bottom:183.688500px;}
.yfc{bottom:187.185000px;}
.y11f{bottom:188.404500px;}
.y45{bottom:189.987000px;}
.y66{bottom:190.332000px;}
.y12e{bottom:191.238000px;}
.y8b{bottom:193.048500px;}
.yd5{bottom:201.622500px;}
.yfb{bottom:205.117500px;}
.y11e{bottom:206.337000px;}
.y44{bottom:207.919500px;}
.y65{bottom:208.264500px;}
.y12d{bottom:209.172000px;}
.y1c{bottom:209.299500px;}
.y8a{bottom:210.981000px;}
.y130{bottom:212.625000px;}
.yfa{bottom:223.051500px;}
.y11d{bottom:224.269500px;}
.yb1{bottom:224.596500px;}
.y43{bottom:225.852000px;}
.y1b{bottom:227.232000px;}
.y89{bottom:228.915000px;}
.y12c{bottom:236.070000px;}
.yf9{bottom:240.984000px;}
.y11c{bottom:242.202000px;}
.yb0{bottom:242.529000px;}
.yd4{bottom:243.465000px;}
.y42{bottom:243.784500px;}
.y1a{bottom:245.164500px;}
.y88{bottom:246.847500px;}
.y64{bottom:250.108500px;}
.y12b{bottom:254.002500px;}
.yf8{bottom:258.916500px;}
.y11b{bottom:260.136000px;}
.yaf{bottom:260.461500px;}
.yd3{bottom:261.397500px;}
.y41{bottom:261.717000px;}
.y87{bottom:264.780000px;}
.y63{bottom:268.041000px;}
.y12a{bottom:271.936500px;}
.yf7{bottom:276.849000px;}
.y11a{bottom:278.068500px;}
.yae{bottom:278.394000px;}
.yd2{bottom:279.330000px;}
.y19{bottom:280.947000px;}
.yf6{bottom:294.781500px;}
.y119{bottom:296.001000px;}
.yad{bottom:296.328000px;}
.yd1{bottom:297.264000px;}
.y18{bottom:298.879500px;}
.y40{bottom:301.521000px;}
.y86{bottom:306.622500px;}
.y129{bottom:310.707000px;}
.y118{bottom:313.933500px;}
.yac{bottom:314.260500px;}
.yd0{bottom:315.196500px;}
.y17{bottom:316.812000px;}
.y62{bottom:317.688000px;}
.y3f{bottom:319.453500px;}
.y85{bottom:324.555000px;}
.y117{bottom:331.866000px;}
.yab{bottom:332.193000px;}
.ycf{bottom:333.129000px;}
.y16{bottom:334.744500px;}
.y3e{bottom:337.387500px;}
.y84{bottom:342.489000px;}
.yf5{bottom:343.603500px;}
.y116{bottom:349.798500px;}
.yaa{bottom:350.125500px;}
.yce{bottom:351.061500px;}
.y3d{bottom:355.320000px;}
.y61{bottom:356.460000px;}
.y83{bottom:360.421500px;}
.yf4{bottom:361.536000px;}
.y115{bottom:367.732500px;}
.ya9{bottom:368.058000px;}
.ycd{bottom:368.994000px;}
.y15{bottom:371.295000px;}
.y3c{bottom:373.252500px;}
.y60{bottom:374.392500px;}
.y82{bottom:378.354000px;}
.y3b{bottom:391.185000px;}
.ya8{bottom:394.461000px;}
.y81{bottom:396.286500px;}
.yf3{bottom:400.308000px;}
.y114{bottom:409.137000px;}
.ya7{bottom:412.395000px;}
.y80{bottom:414.219000px;}
.ycc{bottom:417.816000px;}
.yf2{bottom:418.240500px;}
.y14{bottom:422.094000px;}
.y5f{bottom:424.039500px;}
.ya6{bottom:430.327500px;}
.ycb{bottom:435.748500px;}
.yf1{bottom:436.173000px;}
.y3a{bottom:438.793500px;}
.y13{bottom:440.026500px;}
.ya5{bottom:448.260000px;}
.yca{bottom:453.682500px;}
.yf0{bottom:454.105500px;}
.y39{bottom:456.726000px;}
.y12{bottom:457.959000px;}
.y5e{bottom:459.822000px;}
.y7f{bottom:463.866000px;}
.ya4{bottom:466.192500px;}
.yc9{bottom:471.615000px;}
.yef{bottom:472.039500px;}
.y38{bottom:474.658500px;}
.y113{bottom:474.780000px;}
.y11{bottom:475.893000px;}
.y5d{bottom:477.754500px;}
.yee{bottom:489.972000px;}
.y10{bottom:493.825500px;}
.y7e{bottom:498.223500px;}
.yc8{bottom:507.397500px;}
.yed{bottom:507.904500px;}
.ya3{bottom:510.372000px;}
.y37{bottom:510.523500px;}
.yf{bottom:511.758000px;}
.y112{bottom:512.086500px;}
.y7d{bottom:516.156000px;}
.y5c{bottom:524.413500px;}
.yc7{bottom:525.330000px;}
.yec{bottom:525.837000px;}
.y36{bottom:528.456000px;}
.y111{bottom:530.019000px;}
.y7c{bottom:534.088500px;}
.y5b{bottom:542.346000px;}
.yc6{bottom:543.262500px;}
.y35{bottom:546.390000px;}
.ya2{bottom:546.663000px;}
.y110{bottom:547.951500px;}
.y7b{bottom:552.022500px;}
.y5a{bottom:560.278500px;}
.yc5{bottom:561.195000px;}
.ye{bottom:561.405000px;}
.ya1{bottom:564.597000px;}
.y10f{bottom:565.884000px;}
.y7a{bottom:569.955000px;}
.yeb{bottom:575.484000px;}
.y59{bottom:578.211000px;}
.yc4{bottom:579.127500px;}
.y34{bottom:580.812000px;}
.y10e{bottom:583.816500px;}
.y79{bottom:587.887500px;}
.yea{bottom:593.416500px;}
.yc3{bottom:597.061500px;}
.y33{bottom:598.744500px;}
.yd{bottom:600.177000px;}
.y10d{bottom:601.750500px;}
.y78{bottom:605.820000px;}
.ya0{bottom:611.268000px;}
.yc2{bottom:614.994000px;}
.y32{bottom:616.678500px;}
.y58{bottom:616.983000px;}
.y10c{bottom:619.683000px;}
.ye9{bottom:629.283000px;}
.y31{bottom:634.611000px;}
.y10b{bottom:637.615500px;}
.ye8{bottom:647.215500px;}
.y77{bottom:647.518500px;}
.y9f{bottom:647.560500px;}
.y12f{bottom:649.525500px;}
.yc{bottom:649.738500px;}
.y30{bottom:652.543500px;}
.yc1{bottom:656.836500px;}
.ye7{bottom:665.148000px;}
.y57{bottom:666.630000px;}
.yb{bottom:667.671000px;}
.y2f{bottom:670.476000px;}
.yc0{bottom:674.769000px;}
.ye6{bottom:683.080500px;}
.y10a{bottom:685.504500px;}
.ybf{bottom:692.701500px;}
.y9e{bottom:694.233000px;}
.y2e{bottom:697.035000px;}
.y56{bottom:702.412500px;}
.y109{bottom:703.437000px;}
.ya{bottom:703.453500px;}
.y76{bottom:705.903000px;}
.ybe{bottom:710.635500px;}
.y2d{bottom:714.967500px;}
.ye5{bottom:717.438000px;}
.y55{bottom:720.345000px;}
.y9d{bottom:728.031000px;}
.ybd{bottom:728.568000px;}
.y9{bottom:730.353000px;}
.y2c{bottom:732.901500px;}
.ye4{bottom:735.370500px;}
.y108{bottom:738.046500px;}
.y54{bottom:738.277500px;}
.y9c{bottom:745.963500px;}
.ybc{bottom:746.500500px;}
.y8{bottom:748.285500px;}
.y2b{bottom:750.834000px;}
.ye3{bottom:753.303000px;}
.y75{bottom:755.550000px;}
.y107{bottom:755.980500px;}
.y53{bottom:756.210000px;}
.y128{bottom:762.514500px;}
.y9b{bottom:763.897500px;}
.ybb{bottom:764.433000px;}
.y7{bottom:766.219500px;}
.y2a{bottom:768.766500px;}
.ye2{bottom:771.235500px;}
.y106{bottom:773.913000px;}
.y52{bottom:774.144000px;}
.y127{bottom:780.447000px;}
.y9a{bottom:781.830000px;}
.yba{bottom:782.365500px;}
.y6{bottom:784.152000px;}
.y29{bottom:786.699000px;}
.ye1{bottom:789.169500px;}
.y105{bottom:791.845500px;}
.y51{bottom:792.076500px;}
.y74{bottom:794.320500px;}
.y126{bottom:798.379500px;}
.y99{bottom:799.762500px;}
.y5{bottom:802.084500px;}
.y28{bottom:804.631500px;}
.y104{bottom:809.778000px;}
.y50{bottom:810.009000px;}
.y73{bottom:812.254500px;}
.y125{bottom:816.312000px;}
.y27{bottom:822.564000px;}
.y103{bottom:827.710500px;}
.ye0{bottom:831.012000px;}
.yb9{bottom:832.012500px;}
.y124{bottom:834.244500px;}
.y98{bottom:838.630500px;}
.y26{bottom:840.498000px;}
.y4{bottom:843.781500px;}
.y102{bottom:845.643000px;}
.ydf{bottom:848.944500px;}
.yb8{bottom:849.946500px;}
.y4f{bottom:851.851500px;}
.y123{bottom:852.177000px;}
.y97{bottom:856.563000px;}
.y72{bottom:861.901500px;}
.y101{bottom:863.577000px;}
.yde{bottom:866.877000px;}
.yb7{bottom:867.879000px;}
.y4e{bottom:869.785500px;}
.y25{bottom:876.708000px;}
.y100{bottom:881.509500px;}
.ydd{bottom:884.809500px;}
.yb6{bottom:885.811500px;}
.y122{bottom:888.727500px;}
.y71{bottom:897.766500px;}
.yff{bottom:899.442000px;}
.ydc{bottom:902.743500px;}
.y96{bottom:903.235500px;}
.yb5{bottom:903.744000px;}
.y70{bottom:915.699000px;}
.y3{bottom:917.110500px;}
.y4d{bottom:918.189000px;}
.ydb{bottom:920.676000px;}
.y24{bottom:926.874000px;}
.yda{bottom:938.608500px;}
.y95{bottom:939.526500px;}
.y6f{bottom:951.565500px;}
.yd9{bottom:956.541000px;}
.y4c{bottom:956.959500px;}
.y94{bottom:957.459000px;}
.y2{bottom:969.414000px;}
.y6e{bottom:969.498000px;}
.y23{bottom:974.481000px;}
.y4b{bottom:974.892000px;}
.y93{bottom:975.391500px;}
.y6d{bottom:987.430500px;}
.y4a{bottom:992.824500px;}
.y92{bottom:993.325500px;}
.y1{bottom:1002.291000px;}
.y6c{bottom:1005.363000px;}
.y49{bottom:1010.758500px;}
.y91{bottom:1011.258000px;}
.y22{bottom:1011.553500px;}
.y6b{bottom:1023.295500px;}
.y90{bottom:1029.190500px;}
.y6a{bottom:1041.228000px;}
.y8f{bottom:1047.123000px;}
.y21{bottom:1059.162000px;}
.y8e{bottom:1065.055500px;}
.y20{bottom:1121.536500px;}
.h5{height:41.484266px;}
.h6{height:50.498765px;}
.h4{height:54.336020px;}
.h3{height:60.598349px;}
.h2{height:64.916736px;}
.h1{height:72.201388px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:108.000000px;}
.x1{left:120.807000px;}
.x8{left:218.340000px;}
.x3{left:229.981500px;}
.x7{left:260.245500px;}
.x2{left:429.406500px;}
.x9{left:451.528500px;}
.x6{left:453.204000px;}
.x5{left:455.263500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.002133pt;}
.ls8{letter-spacing:0.002693pt;}
.ls0{letter-spacing:0.003387pt;}
.lsa{letter-spacing:0.041076pt;}
.ls12{letter-spacing:13.283945pt;}
.ls13{letter-spacing:17.570079pt;}
.ls9{letter-spacing:17.709070pt;}
.ls2{letter-spacing:17.709629pt;}
.lse{letter-spacing:17.709996pt;}
.ls14{letter-spacing:17.966612pt;}
.ls7{letter-spacing:18.885063pt;}
.ls10{letter-spacing:20.243945pt;}
.ls11{letter-spacing:20.505279pt;}
.lsc{letter-spacing:20.631412pt;}
.lsf{letter-spacing:20.882079pt;}
.ls6{letter-spacing:21.976027pt;}
.lsd{letter-spacing:24.809067pt;}
.ls5{letter-spacing:27.894693pt;}
.ls3{letter-spacing:27.895707pt;}
.ls4{letter-spacing:27.896720pt;}
.lsb{letter-spacing:27.898587pt;}
.ws2e{word-spacing:-26.566933pt;}
.ws85{word-spacing:-14.664947pt;}
.ws2{word-spacing:-14.346200pt;}
.ws4{word-spacing:-14.346144pt;}
.ws52{word-spacing:-13.602270pt;}
.ws7c{word-spacing:-13.283467pt;}
.ws3{word-spacing:-13.124065pt;}
.ws70{word-spacing:-12.752128pt;}
.ws9c{word-spacing:-12.539593pt;}
.ws7e{word-spacing:-12.433325pt;}
.ws8c{word-spacing:-12.273923pt;}
.ws1b{word-spacing:-12.220789pt;}
.wsc{word-spacing:-11.955200pt;}
.ws1a{word-spacing:-11.955120pt;}
.ws77{word-spacing:-11.901986pt;}
.ws3d{word-spacing:-11.583183pt;}
.ws78{word-spacing:-11.530049pt;}
.ws6e{word-spacing:-11.476915pt;}
.ws30{word-spacing:-11.423781pt;}
.ws51{word-spacing:-11.211246pt;}
.ws9d{word-spacing:-11.188780pt;}
.ws9f{word-spacing:-11.158112pt;}
.ws41{word-spacing:-11.104978pt;}
.ws22{word-spacing:-10.998710pt;}
.ws81{word-spacing:-10.945577pt;}
.wse{word-spacing:-10.786175pt;}
.ws92{word-spacing:-10.679907pt;}
.ws21{word-spacing:-10.626773pt;}
.ws1c{word-spacing:-10.573639pt;}
.ws83{word-spacing:-10.520506pt;}
.ws7f{word-spacing:-10.361104pt;}
.ws80{word-spacing:-10.307970pt;}
.ws57{word-spacing:-10.254836pt;}
.ws87{word-spacing:-10.148569pt;}
.ws1f{word-spacing:-10.095435pt;}
.ws31{word-spacing:-9.936033pt;}
.ws47{word-spacing:-9.882899pt;}
.ws60{word-spacing:-9.829765pt;}
.ws33{word-spacing:-9.564096pt;}
.ws5{word-spacing:-9.457828pt;}
.ws35{word-spacing:-9.404694pt;}
.ws86{word-spacing:-9.351561pt;}
.ws6b{word-spacing:-9.298427pt;}
.ws6d{word-spacing:-9.245293pt;}
.ws5e{word-spacing:-9.192159pt;}
.ws98{word-spacing:-9.032757pt;}
.ws71{word-spacing:-8.979623pt;}
.ws7{word-spacing:-8.873356pt;}
.ws11{word-spacing:-8.820222pt;}
.ws8a{word-spacing:-8.767088pt;}
.ws8b{word-spacing:-8.660820pt;}
.ws6f{word-spacing:-8.607686pt;}
.ws17{word-spacing:-8.501419pt;}
.ws88{word-spacing:-8.448285pt;}
.ws37{word-spacing:-8.288883pt;}
.ws1d{word-spacing:-8.182615pt;}
.ws6{word-spacing:-8.129482pt;}
.ws5b{word-spacing:-7.916946pt;}
.ws5a{word-spacing:-7.863812pt;}
.ws2b{word-spacing:-7.704411pt;}
.ws38{word-spacing:-7.651277pt;}
.ws39{word-spacing:-7.598143pt;}
.ws2c{word-spacing:-7.545009pt;}
.ws62{word-spacing:-7.438741pt;}
.ws2f{word-spacing:-7.332474pt;}
.ws18{word-spacing:-7.279340pt;}
.ws9b{word-spacing:-7.226206pt;}
.ws3f{word-spacing:-7.173072pt;}
.ws5f{word-spacing:-7.013670pt;}
.ws10{word-spacing:-6.960537pt;}
.ws23{word-spacing:-6.907403pt;}
.ws3e{word-spacing:-6.535466pt;}
.ws89{word-spacing:-6.482332pt;}
.ws69{word-spacing:-6.322930pt;}
.ws61{word-spacing:-6.163529pt;}
.ws72{word-spacing:-6.080384pt;}
.ws74{word-spacing:-6.057261pt;}
.ws68{word-spacing:-6.004127pt;}
.ws66{word-spacing:-5.897859pt;}
.ws59{word-spacing:-5.632190pt;}
.ws5c{word-spacing:-5.579056pt;}
.ws91{word-spacing:-5.419654pt;}
.wsd{word-spacing:-5.260253pt;}
.ws19{word-spacing:-5.207119pt;}
.ws64{word-spacing:-4.941450pt;}
.ws4b{word-spacing:-4.782048pt;}
.ws4f{word-spacing:-4.728914pt;}
.ws8d{word-spacing:-4.675780pt;}
.ws2a{word-spacing:-4.569513pt;}
.ws45{word-spacing:-4.463245pt;}
.ws16{word-spacing:-4.303843pt;}
.ws5d{word-spacing:-4.197575pt;}
.ws97{word-spacing:-4.091308pt;}
.ws7a{word-spacing:-3.666237pt;}
.ws65{word-spacing:-3.613103pt;}
.wsa1{word-spacing:-3.559969pt;}
.ws79{word-spacing:-3.506835pt;}
.ws46{word-spacing:-3.241166pt;}
.ws2d{word-spacing:-3.028630pt;}
.ws4d{word-spacing:-2.709827pt;}
.ws90{word-spacing:-2.656693pt;}
.ws8e{word-spacing:-2.603559pt;}
.ws56{word-spacing:-2.125355pt;}
.ws44{word-spacing:-1.753418pt;}
.ws67{word-spacing:-1.487748pt;}
.ws8{word-spacing:-0.053134pt;}
.ws13{word-spacing:0.000000pt;}
.ws84{word-spacing:11.842947pt;}
.wsa0{word-spacing:15.333395pt;}
.ws93{word-spacing:15.836202pt;}
.ws48{word-spacing:16.630469pt;}
.ws9e{word-spacing:16.748803pt;}
.ws36{word-spacing:16.946493pt;}
.ws34{word-spacing:16.951399pt;}
.ws7d{word-spacing:17.299624pt;}
.ws9a{word-spacing:17.487186pt;}
.ws99{word-spacing:17.490573pt;}
.wsa2{word-spacing:17.663239pt;}
.ws42{word-spacing:17.746711pt;}
.ws32{word-spacing:17.983996pt;}
.ws29{word-spacing:18.371389pt;}
.ws53{word-spacing:18.968790pt;}
.ws63{word-spacing:19.196757pt;}
.ws12{word-spacing:19.670921pt;}
.ws1e{word-spacing:19.859241pt;}
.ws96{word-spacing:19.925200pt;}
.ws20{word-spacing:20.639498pt;}
.ws1{word-spacing:20.722347pt;}
.ws6c{word-spacing:21.310290pt;}
.ws94{word-spacing:21.337905pt;}
.ws95{word-spacing:21.401267pt;}
.ws6a{word-spacing:21.577905pt;}
.ws4c{word-spacing:21.729119pt;}
.ws75{word-spacing:21.839238pt;}
.ws49{word-spacing:21.851534pt;}
.ws28{word-spacing:22.028351pt;}
.ws76{word-spacing:22.656984pt;}
.ws58{word-spacing:23.174200pt;}
.wsf{word-spacing:23.254921pt;}
.ws4e{word-spacing:23.792814pt;}
.ws8f{word-spacing:23.889681pt;}
.ws73{word-spacing:24.520957pt;}
.ws0{word-spacing:27.636455pt;}
.ws3c{word-spacing:27.840546pt;}
.ws24{word-spacing:27.841639pt;}
.ws27{word-spacing:27.841986pt;}
.ws25{word-spacing:27.842066pt;}
.ws9{word-spacing:27.842146pt;}
.wsa{word-spacing:27.842573pt;}
.ws26{word-spacing:27.843506pt;}
.ws3a{word-spacing:27.844519pt;}
.ws15{word-spacing:27.845453pt;}
.ws14{word-spacing:27.846466pt;}
.ws7b{word-spacing:27.846813pt;}
.ws40{word-spacing:27.846973pt;}
.ws43{word-spacing:28.479753pt;}
.ws50{word-spacing:35.951470pt;}
.ws55{word-spacing:55.735906pt;}
.ws54{word-spacing:55.737426pt;}
.ws82{word-spacing:55.739719pt;}
.ws3b{word-spacing:55.740306pt;}
.ws4a{word-spacing:83.632706pt;}
.wsb{word-spacing:167.318546pt;}
._18{margin-left:-7.391108pt;}
._23{margin-left:-6.117155pt;}
._2{margin-left:-4.866220pt;}
._5{margin-left:-3.539577pt;}
._1{margin-left:-2.387202pt;}
._3{margin-left:-0.928373pt;}
._4{width:0.981507pt;}
._e{width:2.154274pt;}
._16{width:3.288149pt;}
._1c{width:8.326635pt;}
._1b{width:9.366943pt;}
._29{width:13.275823pt;}
._22{width:15.011787pt;}
._28{width:16.137090pt;}
._15{width:17.366296pt;}
._2b{width:18.274228pt;}
._14{width:19.315630pt;}
._1e{width:20.378307pt;}
._1a{width:21.460388pt;}
._12{width:22.475626pt;}
._10{width:23.591437pt;}
._11{width:24.622256pt;}
._13{width:25.663658pt;}
._19{width:26.863201pt;}
._9{width:27.895280pt;}
._1d{width:28.962662pt;}
._17{width:29.855902pt;}
._27{width:31.552990pt;}
._25{width:32.603802pt;}
._f{width:34.777585pt;}
._2a{width:35.727234pt;}
._0{width:37.277079pt;}
._26{width:38.235991pt;}
._20{width:41.190212pt;}
._1f{width:45.749877pt;}
._6{width:55.790560pt;}
._21{width:83.685840pt;}
._24{width:111.581120pt;}
._a{width:139.476400pt;}
._b{width:167.371680pt;}
._8{width:195.266960pt;}
._7{width:223.162240pt;}
._c{width:251.057520pt;}
._d{width:278.952800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:56.149333pt;}
.yb4{bottom:96.000000pt;}
.yb3{bottom:111.940000pt;}
.y48{bottom:113.388000pt;}
.yfe{bottom:115.984000pt;}
.y69{bottom:121.364000pt;}
.y8d{bottom:123.852000pt;}
.y121{bottom:127.880000pt;}
.y1e{bottom:128.629333pt;}
.y47{bottom:129.328000pt;}
.yd8{bottom:131.398667pt;}
.y68{bottom:137.304000pt;}
.y120{bottom:143.820000pt;}
.y1d{bottom:144.569333pt;}
.yd7{bottom:147.338667pt;}
.yb2{bottom:148.564000pt;}
.yfd{bottom:150.446667pt;}
.y46{bottom:152.937333pt;}
.y67{bottom:153.244000pt;}
.y8c{bottom:155.658667pt;}
.yd6{bottom:163.278667pt;}
.yfc{bottom:166.386667pt;}
.y11f{bottom:167.470667pt;}
.y45{bottom:168.877333pt;}
.y66{bottom:169.184000pt;}
.y12e{bottom:169.989333pt;}
.y8b{bottom:171.598667pt;}
.yd5{bottom:179.220000pt;}
.yfb{bottom:182.326667pt;}
.y11e{bottom:183.410667pt;}
.y44{bottom:184.817333pt;}
.y65{bottom:185.124000pt;}
.y12d{bottom:185.930667pt;}
.y1c{bottom:186.044000pt;}
.y8a{bottom:187.538667pt;}
.y130{bottom:189.000000pt;}
.yfa{bottom:198.268000pt;}
.y11d{bottom:199.350667pt;}
.yb1{bottom:199.641333pt;}
.y43{bottom:200.757333pt;}
.y1b{bottom:201.984000pt;}
.y89{bottom:203.480000pt;}
.y12c{bottom:209.840000pt;}
.yf9{bottom:214.208000pt;}
.y11c{bottom:215.290667pt;}
.yb0{bottom:215.581333pt;}
.yd4{bottom:216.413333pt;}
.y42{bottom:216.697333pt;}
.y1a{bottom:217.924000pt;}
.y88{bottom:219.420000pt;}
.y64{bottom:222.318667pt;}
.y12b{bottom:225.780000pt;}
.yf8{bottom:230.148000pt;}
.y11b{bottom:231.232000pt;}
.yaf{bottom:231.521333pt;}
.yd3{bottom:232.353333pt;}
.y41{bottom:232.637333pt;}
.y87{bottom:235.360000pt;}
.y63{bottom:238.258667pt;}
.y12a{bottom:241.721333pt;}
.yf7{bottom:246.088000pt;}
.y11a{bottom:247.172000pt;}
.yae{bottom:247.461333pt;}
.yd2{bottom:248.293333pt;}
.y19{bottom:249.730667pt;}
.yf6{bottom:262.028000pt;}
.y119{bottom:263.112000pt;}
.yad{bottom:263.402667pt;}
.yd1{bottom:264.234667pt;}
.y18{bottom:265.670667pt;}
.y40{bottom:268.018667pt;}
.y86{bottom:272.553333pt;}
.y129{bottom:276.184000pt;}
.y118{bottom:279.052000pt;}
.yac{bottom:279.342667pt;}
.yd0{bottom:280.174667pt;}
.y17{bottom:281.610667pt;}
.y62{bottom:282.389333pt;}
.y3f{bottom:283.958667pt;}
.y85{bottom:288.493333pt;}
.y117{bottom:294.992000pt;}
.yab{bottom:295.282667pt;}
.ycf{bottom:296.114667pt;}
.y16{bottom:297.550667pt;}
.y3e{bottom:299.900000pt;}
.y84{bottom:304.434667pt;}
.yf5{bottom:305.425333pt;}
.y116{bottom:310.932000pt;}
.yaa{bottom:311.222667pt;}
.yce{bottom:312.054667pt;}
.y3d{bottom:315.840000pt;}
.y61{bottom:316.853333pt;}
.y83{bottom:320.374667pt;}
.yf4{bottom:321.365333pt;}
.y115{bottom:326.873333pt;}
.ya9{bottom:327.162667pt;}
.ycd{bottom:327.994667pt;}
.y15{bottom:330.040000pt;}
.y3c{bottom:331.780000pt;}
.y60{bottom:332.793333pt;}
.y82{bottom:336.314667pt;}
.y3b{bottom:347.720000pt;}
.ya8{bottom:350.632000pt;}
.y81{bottom:352.254667pt;}
.yf3{bottom:355.829333pt;}
.y114{bottom:363.677333pt;}
.ya7{bottom:366.573333pt;}
.y80{bottom:368.194667pt;}
.ycc{bottom:371.392000pt;}
.yf2{bottom:371.769333pt;}
.y14{bottom:375.194667pt;}
.y5f{bottom:376.924000pt;}
.ya6{bottom:382.513333pt;}
.ycb{bottom:387.332000pt;}
.yf1{bottom:387.709333pt;}
.y3a{bottom:390.038667pt;}
.y13{bottom:391.134667pt;}
.ya5{bottom:398.453333pt;}
.yca{bottom:403.273333pt;}
.yf0{bottom:403.649333pt;}
.y39{bottom:405.978667pt;}
.y12{bottom:407.074667pt;}
.y5e{bottom:408.730667pt;}
.y7f{bottom:412.325333pt;}
.ya4{bottom:414.393333pt;}
.yc9{bottom:419.213333pt;}
.yef{bottom:419.590667pt;}
.y38{bottom:421.918667pt;}
.y113{bottom:422.026667pt;}
.y11{bottom:423.016000pt;}
.y5d{bottom:424.670667pt;}
.yee{bottom:435.530667pt;}
.y10{bottom:438.956000pt;}
.y7e{bottom:442.865333pt;}
.yc8{bottom:451.020000pt;}
.yed{bottom:451.470667pt;}
.ya3{bottom:453.664000pt;}
.y37{bottom:453.798667pt;}
.yf{bottom:454.896000pt;}
.y112{bottom:455.188000pt;}
.y7d{bottom:458.805333pt;}
.y5c{bottom:466.145333pt;}
.yc7{bottom:466.960000pt;}
.yec{bottom:467.410667pt;}
.y36{bottom:469.738667pt;}
.y111{bottom:471.128000pt;}
.y7c{bottom:474.745333pt;}
.y5b{bottom:482.085333pt;}
.yc6{bottom:482.900000pt;}
.y35{bottom:485.680000pt;}
.ya2{bottom:485.922667pt;}
.y110{bottom:487.068000pt;}
.y7b{bottom:490.686667pt;}
.y5a{bottom:498.025333pt;}
.yc5{bottom:498.840000pt;}
.ye{bottom:499.026667pt;}
.ya1{bottom:501.864000pt;}
.y10f{bottom:503.008000pt;}
.y7a{bottom:506.626667pt;}
.yeb{bottom:511.541333pt;}
.y59{bottom:513.965333pt;}
.yc4{bottom:514.780000pt;}
.y34{bottom:516.277333pt;}
.y10e{bottom:518.948000pt;}
.y79{bottom:522.566667pt;}
.yea{bottom:527.481333pt;}
.yc3{bottom:530.721333pt;}
.y33{bottom:532.217333pt;}
.yd{bottom:533.490667pt;}
.y10d{bottom:534.889333pt;}
.y78{bottom:538.506667pt;}
.ya0{bottom:543.349333pt;}
.yc2{bottom:546.661333pt;}
.y32{bottom:548.158667pt;}
.y58{bottom:548.429333pt;}
.y10c{bottom:550.829333pt;}
.ye9{bottom:559.362667pt;}
.y31{bottom:564.098667pt;}
.y10b{bottom:566.769333pt;}
.ye8{bottom:575.302667pt;}
.y77{bottom:575.572000pt;}
.y9f{bottom:575.609333pt;}
.y12f{bottom:577.356000pt;}
.yc{bottom:577.545333pt;}
.y30{bottom:580.038667pt;}
.yc1{bottom:583.854667pt;}
.ye7{bottom:591.242667pt;}
.y57{bottom:592.560000pt;}
.yb{bottom:593.485333pt;}
.y2f{bottom:595.978667pt;}
.yc0{bottom:599.794667pt;}
.ye6{bottom:607.182667pt;}
.y10a{bottom:609.337333pt;}
.ybf{bottom:615.734667pt;}
.y9e{bottom:617.096000pt;}
.y2e{bottom:619.586667pt;}
.y56{bottom:624.366667pt;}
.y109{bottom:625.277333pt;}
.ya{bottom:625.292000pt;}
.y76{bottom:627.469333pt;}
.ybe{bottom:631.676000pt;}
.y2d{bottom:635.526667pt;}
.ye5{bottom:637.722667pt;}
.y55{bottom:640.306667pt;}
.y9d{bottom:647.138667pt;}
.ybd{bottom:647.616000pt;}
.y9{bottom:649.202667pt;}
.y2c{bottom:651.468000pt;}
.ye4{bottom:653.662667pt;}
.y108{bottom:656.041333pt;}
.y54{bottom:656.246667pt;}
.y9c{bottom:663.078667pt;}
.ybc{bottom:663.556000pt;}
.y8{bottom:665.142667pt;}
.y2b{bottom:667.408000pt;}
.ye3{bottom:669.602667pt;}
.y75{bottom:671.600000pt;}
.y107{bottom:671.982667pt;}
.y53{bottom:672.186667pt;}
.y128{bottom:677.790667pt;}
.y9b{bottom:679.020000pt;}
.ybb{bottom:679.496000pt;}
.y7{bottom:681.084000pt;}
.y2a{bottom:683.348000pt;}
.ye2{bottom:685.542667pt;}
.y106{bottom:687.922667pt;}
.y52{bottom:688.128000pt;}
.y127{bottom:693.730667pt;}
.y9a{bottom:694.960000pt;}
.yba{bottom:695.436000pt;}
.y6{bottom:697.024000pt;}
.y29{bottom:699.288000pt;}
.ye1{bottom:701.484000pt;}
.y105{bottom:703.862667pt;}
.y51{bottom:704.068000pt;}
.y74{bottom:706.062667pt;}
.y126{bottom:709.670667pt;}
.y99{bottom:710.900000pt;}
.y5{bottom:712.964000pt;}
.y28{bottom:715.228000pt;}
.y104{bottom:719.802667pt;}
.y50{bottom:720.008000pt;}
.y73{bottom:722.004000pt;}
.y125{bottom:725.610667pt;}
.y27{bottom:731.168000pt;}
.y103{bottom:735.742667pt;}
.ye0{bottom:738.677333pt;}
.yb9{bottom:739.566667pt;}
.y124{bottom:741.550667pt;}
.y98{bottom:745.449333pt;}
.y26{bottom:747.109333pt;}
.y4{bottom:750.028000pt;}
.y102{bottom:751.682667pt;}
.ydf{bottom:754.617333pt;}
.yb8{bottom:755.508000pt;}
.y4f{bottom:757.201333pt;}
.y123{bottom:757.490667pt;}
.y97{bottom:761.389333pt;}
.y72{bottom:766.134667pt;}
.y101{bottom:767.624000pt;}
.yde{bottom:770.557333pt;}
.yb7{bottom:771.448000pt;}
.y4e{bottom:773.142667pt;}
.y25{bottom:779.296000pt;}
.y100{bottom:783.564000pt;}
.ydd{bottom:786.497333pt;}
.yb6{bottom:787.388000pt;}
.y122{bottom:789.980000pt;}
.y71{bottom:798.014667pt;}
.yff{bottom:799.504000pt;}
.ydc{bottom:802.438667pt;}
.y96{bottom:802.876000pt;}
.yb5{bottom:803.328000pt;}
.y70{bottom:813.954667pt;}
.y3{bottom:815.209333pt;}
.y4d{bottom:816.168000pt;}
.ydb{bottom:818.378667pt;}
.y24{bottom:823.888000pt;}
.yda{bottom:834.318667pt;}
.y95{bottom:835.134667pt;}
.y6f{bottom:845.836000pt;}
.yd9{bottom:850.258667pt;}
.y4c{bottom:850.630667pt;}
.y94{bottom:851.074667pt;}
.y2{bottom:861.701333pt;}
.y6e{bottom:861.776000pt;}
.y23{bottom:866.205333pt;}
.y4b{bottom:866.570667pt;}
.y93{bottom:867.014667pt;}
.y6d{bottom:877.716000pt;}
.y4a{bottom:882.510667pt;}
.y92{bottom:882.956000pt;}
.y1{bottom:890.925333pt;}
.y6c{bottom:893.656000pt;}
.y49{bottom:898.452000pt;}
.y91{bottom:898.896000pt;}
.y22{bottom:899.158667pt;}
.y6b{bottom:909.596000pt;}
.y90{bottom:914.836000pt;}
.y6a{bottom:925.536000pt;}
.y8f{bottom:930.776000pt;}
.y21{bottom:941.477333pt;}
.y8e{bottom:946.716000pt;}
.y20{bottom:996.921333pt;}
.h5{height:36.874903pt;}
.h6{height:44.887791pt;}
.h4{height:48.298685pt;}
.h3{height:53.865199pt;}
.h2{height:57.703765pt;}
.h1{height:64.179011pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:96.000000pt;}
.x1{left:107.384000pt;}
.x8{left:194.080000pt;}
.x3{left:204.428000pt;}
.x7{left:231.329333pt;}
.x2{left:381.694667pt;}
.x9{left:401.358667pt;}
.x6{left:402.848000pt;}
.x5{left:404.678667pt;}
}




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