
    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_46f2d2139ac1e7aa86cc2160.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.179688;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_867e00f66c335d4aaa900e16.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_f43ba21cf99aaf34174914af.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.149414;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_bc9b34c0083767e65a59a5a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_4101671b6feb2759fa7f37e7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.149414;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_e2fae4d62dab6e7804f486c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_2f8947c7f704e3f6c672aa64.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962891;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_8fc0923acdf96f38f0ad06ea.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.179688;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_66055b913979829ad57816df.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.962891;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_590fd832c8e18ad15998e519.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005371;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_81df50b333189e661fda3178.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.996094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9f4965c5fef456f79974151b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_13429b48357127b1115c53fa.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b69d059defc7d4db7d924015.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3b121451e279fafdeb78f878.woff2')format("woff");}.fff{font-family:fff;line-height:0.941406;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);}
.m2{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;}
.v1{vertical-align:26.640000px;}
.ls31{letter-spacing:-4.218000px;}
.ls20{letter-spacing:-2.634000px;}
.ls8{letter-spacing:-1.368000px;}
.ls27{letter-spacing:-1.350000px;}
.ls4a{letter-spacing:-1.290000px;}
.ls28{letter-spacing:-0.972000px;}
.ls30{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.792000px;}
.ls2c{letter-spacing:-0.750000px;}
.ls9{letter-spacing:-0.648000px;}
.ls25{letter-spacing:-0.514200px;}
.ls22{letter-spacing:-0.449400px;}
.ls26{letter-spacing:-0.440400px;}
.ls33{letter-spacing:-0.432000px;}
.ls23{letter-spacing:-0.402000px;}
.ls2b{letter-spacing:-0.390000px;}
.ls2d{letter-spacing:-0.370200px;}
.ls40{letter-spacing:-0.345600px;}
.ls49{letter-spacing:-0.339000px;}
.ls32{letter-spacing:-0.306600px;}
.lsb{letter-spacing:-0.270000px;}
.lsd{letter-spacing:-0.265200px;}
.ls1d{letter-spacing:-0.258000px;}
.ls41{letter-spacing:-0.230400px;}
.ls44{letter-spacing:-0.193200px;}
.ls48{letter-spacing:-0.181200px;}
.ls36{letter-spacing:-0.178800px;}
.ls45{letter-spacing:-0.126600px;}
.ls1e{letter-spacing:-0.102000px;}
.ls21{letter-spacing:-0.097800px;}
.ls43{letter-spacing:-0.046080px;}
.ls42{letter-spacing:-0.036000px;}
.ls39{letter-spacing:-0.034560px;}
.ls1f{letter-spacing:-0.030240px;}
.ls1c{letter-spacing:-0.028800px;}
.ls6{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.024000px;}
.ls2e{letter-spacing:0.041760px;}
.ls2a{letter-spacing:0.061800px;}
.ls24{letter-spacing:0.087600px;}
.ls2f{letter-spacing:0.099600px;}
.ls10{letter-spacing:0.114000px;}
.ls3c{letter-spacing:0.126720px;}
.ls17{letter-spacing:0.146880px;}
.ls16{letter-spacing:0.205800px;}
.ls12{letter-spacing:0.205920px;}
.ls3d{letter-spacing:0.256200px;}
.ls47{letter-spacing:0.256320px;}
.ls3a{letter-spacing:0.276480px;}
.ls3b{letter-spacing:0.276600px;}
.ls3f{letter-spacing:0.299400px;}
.ls1b{letter-spacing:0.318000px;}
.ls29{letter-spacing:0.330000px;}
.ls4b{letter-spacing:0.331200px;}
.ls5{letter-spacing:0.336600px;}
.lsc{letter-spacing:0.342000px;}
.ls38{letter-spacing:0.432000px;}
.lse{letter-spacing:0.490200px;}
.ls3{letter-spacing:0.627120px;}
.ls34{letter-spacing:0.840000px;}
.lsa{letter-spacing:0.894000px;}
.ls4{letter-spacing:1.158000px;}
.ls1a{letter-spacing:2.088000px;}
.ls13{letter-spacing:5.722560px;}
.ls14{letter-spacing:6.442560px;}
.ls0{letter-spacing:7.488000px;}
.ls46{letter-spacing:10.349280px;}
.ls3e{letter-spacing:15.252480px;}
.ls2{letter-spacing:15.744000px;}
.ls19{letter-spacing:15.802560px;}
.ls15{letter-spacing:16.522560px;}
.ls1{letter-spacing:16.632000px;}
.ls18{letter-spacing:19.402560px;}
.lsf{letter-spacing:23.002560px;}
.ls11{letter-spacing:37.402560px;}
.ls37{letter-spacing:238.536000px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,83,159),0 0.015em rgb(0,83,159),0.015em 0 rgb(0,83,159),0 -0.015em  rgb(0,83,159);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc2{text-shadow:-0.015em 0 rgb(237,125,49),0 0.015em rgb(237,125,49),0.015em 0 rgb(237,125,49),0 -0.015em  rgb(237,125,49);}
.sc0{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc3{-webkit-text-stroke:0.015em rgb(0,83,159);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(237,125,49);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
}
.ws28{word-spacing:-72.000000px;}
.ws8{word-spacing:-35.342784px;}
.ws9{word-spacing:-35.077584px;}
.ws33{word-spacing:-24.897600px;}
.ws3{word-spacing:-22.535760px;}
.ws4{word-spacing:-22.010904px;}
.wsb{word-spacing:-19.528440px;}
.ws27{word-spacing:-18.360000px;}
.ws1c{word-spacing:-16.927440px;}
.wsc{word-spacing:-16.915440px;}
.ws20{word-spacing:-16.803240px;}
.ws16{word-spacing:-16.711440px;}
.ws2c{word-spacing:-16.704000px;}
.ws23{word-spacing:-16.697040px;}
.ws15{word-spacing:-16.685040px;}
.ws1d{word-spacing:-16.659240px;}
.ws22{word-spacing:-16.639200px;}
.ws17{word-spacing:-16.597440px;}
.wsd{word-spacing:-16.568640px;}
.ws10{word-spacing:-16.567200px;}
.ws12{word-spacing:-16.532184px;}
.wsf{word-spacing:-16.495440px;}
.ws2b{word-spacing:-16.473600px;}
.wse{word-spacing:-16.339440px;}
.ws2a{word-spacing:-16.294800px;}
.ws26{word-spacing:-16.290840px;}
.ws2d{word-spacing:-16.272000px;}
.ws21{word-spacing:-16.227240px;}
.ws1e{word-spacing:-16.207440px;}
.ws14{word-spacing:-16.195440px;}
.ws13{word-spacing:-16.180584px;}
.ws19{word-spacing:-16.157040px;}
.ws18{word-spacing:-16.083240px;}
.ws1f{word-spacing:-15.847440px;}
.ws29{word-spacing:-15.840000px;}
.ws24{word-spacing:-15.661440px;}
.ws1b{word-spacing:-15.625440px;}
.ws0{word-spacing:-15.480000px;}
.ws1a{word-spacing:-15.247440px;}
.ws37{word-spacing:-15.226440px;}
.ws36{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.904000px;}
.ws32{word-spacing:-14.777040px;}
.ws2e{word-spacing:-14.595960px;}
.ws30{word-spacing:-14.319360px;}
.ws11{word-spacing:-13.963440px;}
.ws34{word-spacing:-13.229520px;}
.ws25{word-spacing:-12.379440px;}
.ws7{word-spacing:-12.204000px;}
.ws35{word-spacing:-12.203400px;}
.ws2f{word-spacing:-1.627200px;}
.ws6{word-spacing:-0.918000px;}
.wsa{word-spacing:0.000000px;}
.ws31{word-spacing:0.627840px;}
.ws5{word-spacing:1.314000px;}
.ws2{word-spacing:28.512000px;}
._d{margin-left:-13.912224px;}
._25{margin-left:-8.590608px;}
._a{margin-left:-7.046640px;}
._2{margin-left:-5.082768px;}
._1{margin-left:-3.028032px;}
._0{margin-left:-1.405872px;}
._22{width:1.036464px;}
._3{width:2.043168px;}
._4{width:3.786000px;}
._f{width:5.167440px;}
._c{width:6.750144px;}
._5{width:7.871232px;}
._10{width:9.020160px;}
._11{width:10.210032px;}
._26{width:11.279664px;}
._14{width:13.595760px;}
._1b{width:14.752800px;}
._7{width:17.370000px;}
._24{width:19.043520px;}
._19{width:20.694432px;}
._12{width:22.247328px;}
._13{width:23.470560px;}
._e{width:24.619872px;}
._20{width:25.670880px;}
._8{width:27.205392px;}
._9{width:28.344000px;}
._1a{width:30.275520px;}
._1e{width:31.315056px;}
._1d{width:33.701040px;}
._1c{width:35.287200px;}
._15{width:36.776592px;}
._16{width:37.821840px;}
._6{width:43.639776px;}
._21{width:45.319632px;}
._1f{width:48.115584px;}
._18{width:55.899552px;}
._17{width:57.034944px;}
._23{width:60.594864px;}
._b{width:132.768000px;}
.fc6{color:rgb(255,255,45);}
.fc5{color:rgb(255,0,0);}
.fc7{color:transparent;}
.fc4{color:rgb(218,227,243);}
.fc2{color:rgb(0,83,159);}
.fca{color:rgb(242,242,242);}
.fc9{color:rgb(119,119,119);}
.fc8{color:rgb(0,0,0);}
.fc3{color:rgb(230,231,234);}
.fc1{color:rgb(237,125,49);}
.fc0{color:rgb(255,255,255);}
.fs11{font-size:7.200000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fsf{font-size:63.360000px;}
.fs10{font-size:63.504000px;}
.fs12{font-size:66.240000px;}
.fs13{font-size:66.384000px;}
.fs3{font-size:72.000000px;}
.fsd{font-size:73.440000px;}
.fse{font-size:73.584000px;}
.fsc{font-size:81.360000px;}
.fsb{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs5{font-size:95.904000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:108.144000px;}
.fs7{font-size:144.000000px;}
.fs6{font-size:144.144000px;}
.fsa{font-size:156.240000px;}
.fs9{font-size:156.384000px;}
.y0{bottom:0.000000px;}
.y98{bottom:17.100000px;}
.y97{bottom:19.260000px;}
.y96{bottom:23.580000px;}
.y94{bottom:26.460000px;}
.ydd{bottom:29.520000px;}
.ya1{bottom:30.240000px;}
.y8b{bottom:30.492000px;}
.y93{bottom:30.780000px;}
.y1f{bottom:31.356000px;}
.ydc{bottom:33.840000px;}
.y78{bottom:35.136000px;}
.y14{bottom:35.424000px;}
.y4c{bottom:36.900000px;}
.yc9{bottom:37.224000px;}
.y4e{bottom:37.332000px;}
.y9a{bottom:41.400000px;}
.y9f{bottom:41.580000px;}
.ye3{bottom:46.980000px;}
.ye5{bottom:47.160000px;}
.yb8{bottom:48.960000px;}
.ydb{bottom:50.580000px;}
.ye2{bottom:51.300000px;}
.ye4{bottom:51.480000px;}
.ye8{bottom:52.740000px;}
.yae{bottom:53.460000px;}
.ye7{bottom:57.060000px;}
.yad{bottom:57.780000px;}
.yda{bottom:66.528000px;}
.y4a{bottom:86.076000px;}
.y66{bottom:107.568000px;}
.yc8{bottom:108.000000px;}
.y69{bottom:109.296000px;}
.y49{bottom:113.616000px;}
.y7c{bottom:119.736000px;}
.y4f{bottom:122.364000px;}
.y51{bottom:122.580000px;}
.y68{bottom:137.952000px;}
.yc7{bottom:139.896000px;}
.y7b{bottom:140.832000px;}
.yb{bottom:141.192000px;}
.y48{bottom:141.372000px;}
.y54{bottom:145.260000px;}
.yd6{bottom:159.225000px;}
.y7a{bottom:161.715000px;}
.ya{bottom:162.795000px;}
.y53{bottom:164.190000px;}
.y65{bottom:164.670000px;}
.y67{bottom:166.395000px;}
.y47{bottom:168.915000px;}
.yc6{bottom:171.750000px;}
.yd5{bottom:174.885000px;}
.y50{bottom:176.400000px;}
.y79{bottom:182.415000px;}
.y52{bottom:183.090000px;}
.y9{bottom:188.925000px;}
.yd4{bottom:190.365000px;}
.y46{bottom:196.635000px;}
.yc5{bottom:203.430000px;}
.yd3{bottom:206.025000px;}
.y8{bottom:210.525000px;}
.y45{bottom:218.595000px;}
.yd2{bottom:221.505000px;}
.y7{bottom:232.125000px;}
.yc4{bottom:235.290000px;}
.y44{bottom:246.495000px;}
.y6{bottom:253.725000px;}
.yc3{bottom:267.150000px;}
.y43{bottom:268.455000px;}
.y5{bottom:275.325000px;}
.y42{bottom:296.355000px;}
.yc2{bottom:298.830000px;}
.y8e{bottom:316.620000px;}
.y41{bottom:318.315000px;}
.yc1{bottom:330.735000px;}
.y4{bottom:342.720000px;}
.y40{bottom:346.425000px;}
.yc0{bottom:362.595000px;}
.y3f{bottom:368.385000px;}
.y3e{bottom:390.345000px;}
.y8d{bottom:393.765000px;}
.ybf{bottom:394.275000px;}
.y64{bottom:408.345000px;}
.y8c{bottom:415.365000px;}
.y3d{bottom:418.245000px;}
.ybe{bottom:431.100000px;}
.y55{bottom:432.390000px;}
.y89{bottom:433.335000px;}
.y58{bottom:433.905000px;}
.y7e{bottom:434.340000px;}
.y3c{bottom:440.205000px;}
.y13{bottom:445.530000px;}
.y57{bottom:457.995000px;}
.y88{bottom:459.105000px;}
.y5a{bottom:459.510000px;}
.y3b{bottom:462.165000px;}
.y71{bottom:470.235000px;}
.y12{bottom:471.630000px;}
.y87{bottom:478.005000px;}
.y56{bottom:486.435000px;}
.y59{bottom:487.950000px;}
.y3a{bottom:490.065000px;}
.y7d{bottom:490.215000px;}
.y70{bottom:496.005000px;}
.y86{bottom:496.905000px;}
.y11{bottom:497.775000px;}
.y76{bottom:498.885000px;}
.y39{bottom:512.025000px;}
.y6f{bottom:514.905000px;}
.y99{bottom:517.755000px;}
.y9c{bottom:517.935000px;}
.y10{bottom:523.875000px;}
.y9d{bottom:525.495000px;}
.y9b{bottom:526.575000px;}
.y75{bottom:527.325000px;}
.y6e{bottom:533.805000px;}
.y38{bottom:533.985000px;}
.yf{bottom:551.595000px;}
.y37{bottom:555.990000px;}
.y36{bottom:577.950000px;}
.ycc{bottom:582.045000px;}
.ybd{bottom:598.965000px;}
.y35{bottom:599.910000px;}
.yb1{bottom:610.485000px;}
.ybc{bottom:617.865000px;}
.y3{bottom:623.775000px;}
.y34{bottom:627.990000px;}
.yb0{bottom:643.500000px;}
.yaa{bottom:645.375000px;}
.y17{bottom:647.565000px;}
.y33{bottom:649.950000px;}
.y2{bottom:656.175000px;}
.yaf{bottom:662.400000px;}
.y32{bottom:671.910000px;}
.ya9{bottom:676.005000px;}
.y1{bottom:688.605000px;}
.y16{bottom:690.810000px;}
.y31{bottom:693.870000px;}
.yd1{bottom:698.400000px;}
.ya4{bottom:702.465000px;}
.ya8{bottom:706.470000px;}
.y30{bottom:715.830000px;}
.ya3{bottom:721.365000px;}
.ya7{bottom:725.370000px;}
.y2f{bottom:743.730000px;}
.ye{bottom:747.690000px;}
.y5b{bottom:748.725000px;}
.y5f{bottom:749.955000px;}
.y81{bottom:753.660000px;}
.y85{bottom:754.275000px;}
.ye6{bottom:762.225000px;}
.yd{bottom:763.350000px;}
.ye1{bottom:764.205000px;}
.y2e{bottom:765.720000px;}
.y62{bottom:772.635000px;}
.y5e{bottom:774.930000px;}
.yc{bottom:778.830000px;}
.y84{bottom:780.045000px;}
.y74{bottom:780.945000px;}
.y80{bottom:782.310000px;}
.y6d{bottom:782.490000px;}
.yba{bottom:782.745000px;}
.yb7{bottom:783.825000px;}
.yac{bottom:784.905000px;}
.y2d{bottom:787.680000px;}
.yb2{bottom:789.945000px;}
.y61{bottom:791.535000px;}
.y9e{bottom:792.105000px;}
.y5d{bottom:793.830000px;}
.yb3{bottom:796.965000px;}
.y92{bottom:797.865000px;}
.y95{bottom:798.405000px;}
.ya0{bottom:798.585000px;}
.y83{bottom:798.945000px;}
.ya2{bottom:800.925000px;}
.ybb{bottom:803.445000px;}
.y6c{bottom:803.595000px;}
.yb9{bottom:804.570000px;}
.y73{bottom:809.610000px;}
.y2c{bottom:809.640000px;}
.y60{bottom:810.465000px;}
.y7f{bottom:810.750000px;}
.y5c{bottom:812.730000px;}
.y1b{bottom:813.420000px;}
.y82{bottom:817.845000px;}
.y6b{bottom:824.475000px;}
.y2b{bottom:831.600000px;}
.y72{bottom:838.050000px;}
.ye0{bottom:840.675000px;}
.yce{bottom:842.505000px;}
.y6a{bottom:845.175000px;}
.y2a{bottom:853.560000px;}
.y1a{bottom:860.220000px;}
.ycd{bottom:861.405000px;}
.ycb{bottom:863.610000px;}
.y18{bottom:865.080000px;}
.y29{bottom:875.520000px;}
.yab{bottom:879.840000px;}
.yb6{bottom:891.795000px;}
.y28{bottom:903.420000px;}
.ya6{bottom:903.885000px;}
.y19{bottom:907.050000px;}
.yd9{bottom:907.815000px;}
.y91{bottom:919.440000px;}
.y27{bottom:925.380000px;}
.yca{bottom:928.830000px;}
.y90{bottom:938.340000px;}
.y26{bottom:947.340000px;}
.yd8{bottom:947.415000px;}
.ya5{bottom:955.335000px;}
.yb5{bottom:964.905000px;}
.y25{bottom:969.330000px;}
.yd0{bottom:978.450000px;}
.y1d{bottom:982.230000px;}
.yb4{bottom:983.805000px;}
.yd7{bottom:987.045000px;}
.y24{bottom:991.290000px;}
.ycf{bottom:997.350000px;}
.y23{bottom:1013.250000px;}
.y1c{bottom:1025.430000px;}
.ydf{bottom:1030.470000px;}
.y22{bottom:1035.210000px;}
.y4b{bottom:1047.495000px;}
.y8f{bottom:1048.140000px;}
.yde{bottom:1050.270000px;}
.y21{bottom:1057.170000px;}
.y77{bottom:1057.890000px;}
.y63{bottom:1067.550000px;}
.y8a{bottom:1072.365000px;}
.y20{bottom:1085.790000px;}
.y15{bottom:1133.565000px;}
.y1e{bottom:1133.745000px;}
.y4d{bottom:1134.150000px;}
.h1c{height:7.161328px;}
.h1d{height:25.200000px;}
.h20{height:31.860000px;}
.h1b{height:32.400000px;}
.h29{height:35.261367px;}
.h2d{height:35.460000px;}
.h6{height:36.274219px;}
.h28{height:36.910195px;}
.h1e{height:43.020000px;}
.h1f{height:43.200000px;}
.h15{height:48.479062px;}
.h17{height:48.589242px;}
.h22{height:50.580000px;}
.h2e{height:50.682656px;}
.h2f{height:52.920000px;}
.h30{height:53.100000px;}
.hb{height:53.709961px;}
.h18{height:54.450000px;}
.h13{height:56.496094px;}
.h31{height:58.680000px;}
.h21{height:59.400000px;}
.h2c{height:60.328125px;}
.h1a{height:63.019687px;}
.h2b{height:63.070312px;}
.h25{height:63.162914px;}
.h2a{height:63.207422px;}
.h14{height:64.875938px;}
.h16{height:65.023383px;}
.h26{height:65.884219px;}
.h27{height:66.027445px;}
.h4{height:68.554688px;}
.h11{height:69.925781px;}
.h12{height:70.062891px;}
.h3{height:73.269492px;}
.h5{height:73.722656px;}
.h10{height:77.466797px;}
.hf{height:80.208984px;}
.h7{height:91.177734px;}
.h8{height:91.314844px;}
.h19{height:95.194688px;}
.h24{height:95.245664px;}
.h23{height:95.388891px;}
.h2{height:102.832031px;}
.h1{height:102.969141px;}
.ha{height:143.226562px;}
.he{height:147.445312px;}
.h9{height:147.592758px;}
.hd{height:159.978164px;}
.hc{height:160.125609px;}
.h0{height:1170.000000px;}
.w3{width:25.200000px;}
.w7{width:25.380000px;}
.w9{width:31.860000px;}
.w6{width:31.896000px;}
.wa{width:40.140000px;}
.w4{width:43.020000px;}
.w5{width:43.236000px;}
.wc{width:52.920000px;}
.wd{width:53.100000px;}
.we{width:57.780000px;}
.wb{width:101.376000px;}
.w2{width:129.996000px;}
.w8{width:147.816000px;}
.w1{width:809.999988px;}
.w0{width:810.000000px;}
.x0{left:0.000000px;}
.xe{left:15.119988px;}
.x15{left:45.575988px;}
.x1b{left:55.943988px;}
.x1d{left:57.203988px;}
.x14{left:62.495988px;}
.x7{left:65.483988px;}
.x27{left:68.651988px;}
.x26{left:69.767988px;}
.x3f{left:71.891988px;}
.x8{left:73.223988px;}
.x6{left:74.663988px;}
.x2f{left:76.176000px;}
.x22{left:77.435988px;}
.x9{left:79.199988px;}
.x5{left:81.611988px;}
.x33{left:83.267988px;}
.x38{left:84.455988px;}
.x2{left:86.867988px;}
.x1{left:92.087988px;}
.x3e{left:96.947988px;}
.x3a{left:101.736000px;}
.x4{left:111.491988px;}
.x28{left:116.207988px;}
.x4a{left:117.756000px;}
.x29{left:121.715988px;}
.x2a{left:126.107988px;}
.x24{left:141.227988px;}
.x32{left:143.676000px;}
.x3{left:145.763988px;}
.x19{left:148.067988px;}
.x30{left:157.350000px;}
.x44{left:167.189988px;}
.x45{left:203.189988px;}
.x31{left:210.810000px;}
.xb{left:215.969988px;}
.x43{left:221.729988px;}
.x16{left:227.909988px;}
.x1f{left:248.909988px;}
.x18{left:250.814988px;}
.x1e{left:256.934988px;}
.x46{left:266.324988px;}
.x49{left:273.809988px;}
.x48{left:302.114988px;}
.x3d{left:303.194988px;}
.x40{left:342.929988px;}
.x41{left:373.934988px;}
.x42{left:376.814988px;}
.x25{left:431.384988px;}
.x21{left:434.264988px;}
.x1a{left:436.214988px;}
.x23{left:437.399988px;}
.x1c{left:441.794988px;}
.x20{left:444.599988px;}
.x2d{left:446.325000px;}
.x36{left:454.574988px;}
.x34{left:455.864988px;}
.x2b{left:457.529988px;}
.x35{left:459.464988px;}
.x3b{left:478.005000px;}
.x3c{left:492.449988px;}
.x2c{left:519.810000px;}
.x2e{left:527.190000px;}
.x4b{left:538.170000px;}
.x39{left:586.050000px;}
.x37{left:615.930000px;}
.x47{left:649.590000px;}
.xa{left:752.789988px;}
.x17{left:756.509988px;}
.x12{left:867.749988px;}
.xc{left:903.269988px;}
.xf{left:911.339988px;}
.x13{left:940.319988px;}
.x10{left:957.239988px;}
.xd{left:968.114988px;}
.x11{left:1007.279988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.680000pt;}
.ls31{letter-spacing:-3.749333pt;}
.ls20{letter-spacing:-2.341333pt;}
.ls8{letter-spacing:-1.216000pt;}
.ls27{letter-spacing:-1.200000pt;}
.ls4a{letter-spacing:-1.146667pt;}
.ls28{letter-spacing:-0.864000pt;}
.ls30{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.704000pt;}
.ls2c{letter-spacing:-0.666667pt;}
.ls9{letter-spacing:-0.576000pt;}
.ls25{letter-spacing:-0.457067pt;}
.ls22{letter-spacing:-0.399467pt;}
.ls26{letter-spacing:-0.391467pt;}
.ls33{letter-spacing:-0.384000pt;}
.ls23{letter-spacing:-0.357333pt;}
.ls2b{letter-spacing:-0.346667pt;}
.ls2d{letter-spacing:-0.329067pt;}
.ls40{letter-spacing:-0.307200pt;}
.ls49{letter-spacing:-0.301333pt;}
.ls32{letter-spacing:-0.272533pt;}
.lsb{letter-spacing:-0.240000pt;}
.lsd{letter-spacing:-0.235733pt;}
.ls1d{letter-spacing:-0.229333pt;}
.ls41{letter-spacing:-0.204800pt;}
.ls44{letter-spacing:-0.171733pt;}
.ls48{letter-spacing:-0.161067pt;}
.ls36{letter-spacing:-0.158933pt;}
.ls45{letter-spacing:-0.112533pt;}
.ls1e{letter-spacing:-0.090667pt;}
.ls21{letter-spacing:-0.086933pt;}
.ls43{letter-spacing:-0.040960pt;}
.ls42{letter-spacing:-0.032000pt;}
.ls39{letter-spacing:-0.030720pt;}
.ls1f{letter-spacing:-0.026880pt;}
.ls1c{letter-spacing:-0.025600pt;}
.ls6{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.021333pt;}
.ls2e{letter-spacing:0.037120pt;}
.ls2a{letter-spacing:0.054933pt;}
.ls24{letter-spacing:0.077867pt;}
.ls2f{letter-spacing:0.088533pt;}
.ls10{letter-spacing:0.101333pt;}
.ls3c{letter-spacing:0.112640pt;}
.ls17{letter-spacing:0.130560pt;}
.ls16{letter-spacing:0.182933pt;}
.ls12{letter-spacing:0.183040pt;}
.ls3d{letter-spacing:0.227733pt;}
.ls47{letter-spacing:0.227840pt;}
.ls3a{letter-spacing:0.245760pt;}
.ls3b{letter-spacing:0.245867pt;}
.ls3f{letter-spacing:0.266133pt;}
.ls1b{letter-spacing:0.282667pt;}
.ls29{letter-spacing:0.293333pt;}
.ls4b{letter-spacing:0.294400pt;}
.ls5{letter-spacing:0.299200pt;}
.lsc{letter-spacing:0.304000pt;}
.ls38{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.435733pt;}
.ls3{letter-spacing:0.557440pt;}
.ls34{letter-spacing:0.746667pt;}
.lsa{letter-spacing:0.794667pt;}
.ls4{letter-spacing:1.029333pt;}
.ls1a{letter-spacing:1.856000pt;}
.ls13{letter-spacing:5.086720pt;}
.ls14{letter-spacing:5.726720pt;}
.ls0{letter-spacing:6.656000pt;}
.ls46{letter-spacing:9.199360pt;}
.ls3e{letter-spacing:13.557760pt;}
.ls2{letter-spacing:13.994667pt;}
.ls19{letter-spacing:14.046720pt;}
.ls15{letter-spacing:14.686720pt;}
.ls1{letter-spacing:14.784000pt;}
.ls18{letter-spacing:17.246720pt;}
.lsf{letter-spacing:20.446720pt;}
.ls11{letter-spacing:33.246720pt;}
.ls37{letter-spacing:212.032000pt;}
.ws28{word-spacing:-64.000000pt;}
.ws8{word-spacing:-31.415808pt;}
.ws9{word-spacing:-31.180075pt;}
.ws33{word-spacing:-22.131200pt;}
.ws3{word-spacing:-20.031787pt;}
.ws4{word-spacing:-19.565248pt;}
.wsb{word-spacing:-17.358613pt;}
.ws27{word-spacing:-16.320000pt;}
.ws1c{word-spacing:-15.046613pt;}
.wsc{word-spacing:-15.035947pt;}
.ws20{word-spacing:-14.936213pt;}
.ws16{word-spacing:-14.854613pt;}
.ws2c{word-spacing:-14.848000pt;}
.ws23{word-spacing:-14.841813pt;}
.ws15{word-spacing:-14.831147pt;}
.ws1d{word-spacing:-14.808213pt;}
.ws22{word-spacing:-14.790400pt;}
.ws17{word-spacing:-14.753280pt;}
.wsd{word-spacing:-14.727680pt;}
.ws10{word-spacing:-14.726400pt;}
.ws12{word-spacing:-14.695275pt;}
.wsf{word-spacing:-14.662613pt;}
.ws2b{word-spacing:-14.643200pt;}
.wse{word-spacing:-14.523947pt;}
.ws2a{word-spacing:-14.484267pt;}
.ws26{word-spacing:-14.480747pt;}
.ws2d{word-spacing:-14.464000pt;}
.ws21{word-spacing:-14.424213pt;}
.ws1e{word-spacing:-14.406613pt;}
.ws14{word-spacing:-14.395947pt;}
.ws13{word-spacing:-14.382741pt;}
.ws19{word-spacing:-14.361813pt;}
.ws18{word-spacing:-14.296213pt;}
.ws1f{word-spacing:-14.086613pt;}
.ws29{word-spacing:-14.080000pt;}
.ws24{word-spacing:-13.921280pt;}
.ws1b{word-spacing:-13.889280pt;}
.ws0{word-spacing:-13.760000pt;}
.ws1a{word-spacing:-13.553280pt;}
.ws37{word-spacing:-13.534613pt;}
.ws36{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.248000pt;}
.ws32{word-spacing:-13.135147pt;}
.ws2e{word-spacing:-12.974187pt;}
.ws30{word-spacing:-12.728320pt;}
.ws11{word-spacing:-12.411947pt;}
.ws34{word-spacing:-11.759573pt;}
.ws25{word-spacing:-11.003947pt;}
.ws7{word-spacing:-10.848000pt;}
.ws35{word-spacing:-10.847467pt;}
.ws2f{word-spacing:-1.446400pt;}
.ws6{word-spacing:-0.816000pt;}
.wsa{word-spacing:0.000000pt;}
.ws31{word-spacing:0.558080pt;}
.ws5{word-spacing:1.168000pt;}
.ws2{word-spacing:25.344000pt;}
._d{margin-left:-12.366421pt;}
._25{margin-left:-7.636096pt;}
._a{margin-left:-6.263680pt;}
._2{margin-left:-4.518016pt;}
._1{margin-left:-2.691584pt;}
._0{margin-left:-1.249664pt;}
._22{width:0.921301pt;}
._3{width:1.816149pt;}
._4{width:3.365333pt;}
._f{width:4.593280pt;}
._c{width:6.000128pt;}
._5{width:6.996651pt;}
._10{width:8.017920pt;}
._11{width:9.075584pt;}
._26{width:10.026368pt;}
._14{width:12.085120pt;}
._1b{width:13.113600pt;}
._7{width:15.440000pt;}
._24{width:16.927573pt;}
._19{width:18.395051pt;}
._12{width:19.775403pt;}
._13{width:20.862720pt;}
._e{width:21.884331pt;}
._20{width:22.818560pt;}
._8{width:24.182571pt;}
._9{width:25.194667pt;}
._1a{width:26.911573pt;}
._1e{width:27.835605pt;}
._1d{width:29.956480pt;}
._1c{width:31.366400pt;}
._15{width:32.690304pt;}
._16{width:33.619413pt;}
._6{width:38.790912pt;}
._21{width:40.284117pt;}
._1f{width:42.769408pt;}
._18{width:49.688491pt;}
._17{width:50.697728pt;}
._23{width:53.862101pt;}
._b{width:118.016000pt;}
.fs11{font-size:6.400000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fsf{font-size:56.320000pt;}
.fs10{font-size:56.448000pt;}
.fs12{font-size:58.880000pt;}
.fs13{font-size:59.008000pt;}
.fs3{font-size:64.000000pt;}
.fsd{font-size:65.280000pt;}
.fse{font-size:65.408000pt;}
.fsc{font-size:72.320000pt;}
.fsb{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs5{font-size:85.248000pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:96.128000pt;}
.fs7{font-size:128.000000pt;}
.fs6{font-size:128.128000pt;}
.fsa{font-size:138.880000pt;}
.fs9{font-size:139.008000pt;}
.y0{bottom:0.000000pt;}
.y98{bottom:15.200000pt;}
.y97{bottom:17.120000pt;}
.y96{bottom:20.960000pt;}
.y94{bottom:23.520000pt;}
.ydd{bottom:26.240000pt;}
.ya1{bottom:26.880000pt;}
.y8b{bottom:27.104000pt;}
.y93{bottom:27.360000pt;}
.y1f{bottom:27.872000pt;}
.ydc{bottom:30.080000pt;}
.y78{bottom:31.232000pt;}
.y14{bottom:31.488000pt;}
.y4c{bottom:32.800000pt;}
.yc9{bottom:33.088000pt;}
.y4e{bottom:33.184000pt;}
.y9a{bottom:36.800000pt;}
.y9f{bottom:36.960000pt;}
.ye3{bottom:41.760000pt;}
.ye5{bottom:41.920000pt;}
.yb8{bottom:43.520000pt;}
.ydb{bottom:44.960000pt;}
.ye2{bottom:45.600000pt;}
.ye4{bottom:45.760000pt;}
.ye8{bottom:46.880000pt;}
.yae{bottom:47.520000pt;}
.ye7{bottom:50.720000pt;}
.yad{bottom:51.360000pt;}
.yda{bottom:59.136000pt;}
.y4a{bottom:76.512000pt;}
.y66{bottom:95.616000pt;}
.yc8{bottom:96.000000pt;}
.y69{bottom:97.152000pt;}
.y49{bottom:100.992000pt;}
.y7c{bottom:106.432000pt;}
.y4f{bottom:108.768000pt;}
.y51{bottom:108.960000pt;}
.y68{bottom:122.624000pt;}
.yc7{bottom:124.352000pt;}
.y7b{bottom:125.184000pt;}
.yb{bottom:125.504000pt;}
.y48{bottom:125.664000pt;}
.y54{bottom:129.120000pt;}
.yd6{bottom:141.533333pt;}
.y7a{bottom:143.746667pt;}
.ya{bottom:144.706667pt;}
.y53{bottom:145.946667pt;}
.y65{bottom:146.373333pt;}
.y67{bottom:147.906667pt;}
.y47{bottom:150.146667pt;}
.yc6{bottom:152.666667pt;}
.yd5{bottom:155.453333pt;}
.y50{bottom:156.800000pt;}
.y79{bottom:162.146667pt;}
.y52{bottom:162.746667pt;}
.y9{bottom:167.933333pt;}
.yd4{bottom:169.213333pt;}
.y46{bottom:174.786667pt;}
.yc5{bottom:180.826667pt;}
.yd3{bottom:183.133333pt;}
.y8{bottom:187.133333pt;}
.y45{bottom:194.306667pt;}
.yd2{bottom:196.893333pt;}
.y7{bottom:206.333333pt;}
.yc4{bottom:209.146667pt;}
.y44{bottom:219.106667pt;}
.y6{bottom:225.533333pt;}
.yc3{bottom:237.466667pt;}
.y43{bottom:238.626667pt;}
.y5{bottom:244.733333pt;}
.y42{bottom:263.426667pt;}
.yc2{bottom:265.626667pt;}
.y8e{bottom:281.440000pt;}
.y41{bottom:282.946667pt;}
.yc1{bottom:293.986667pt;}
.y4{bottom:304.640000pt;}
.y40{bottom:307.933333pt;}
.yc0{bottom:322.306667pt;}
.y3f{bottom:327.453333pt;}
.y3e{bottom:346.973333pt;}
.y8d{bottom:350.013333pt;}
.ybf{bottom:350.466667pt;}
.y64{bottom:362.973333pt;}
.y8c{bottom:369.213333pt;}
.y3d{bottom:371.773333pt;}
.ybe{bottom:383.200000pt;}
.y55{bottom:384.346667pt;}
.y89{bottom:385.186667pt;}
.y58{bottom:385.693333pt;}
.y7e{bottom:386.080000pt;}
.y3c{bottom:391.293333pt;}
.y13{bottom:396.026667pt;}
.y57{bottom:407.106667pt;}
.y88{bottom:408.093333pt;}
.y5a{bottom:408.453333pt;}
.y3b{bottom:410.813333pt;}
.y71{bottom:417.986667pt;}
.y12{bottom:419.226667pt;}
.y87{bottom:424.893333pt;}
.y56{bottom:432.386667pt;}
.y59{bottom:433.733333pt;}
.y3a{bottom:435.613333pt;}
.y7d{bottom:435.746667pt;}
.y70{bottom:440.893333pt;}
.y86{bottom:441.693333pt;}
.y11{bottom:442.466667pt;}
.y76{bottom:443.453333pt;}
.y39{bottom:455.133333pt;}
.y6f{bottom:457.693333pt;}
.y99{bottom:460.226667pt;}
.y9c{bottom:460.386667pt;}
.y10{bottom:465.666667pt;}
.y9d{bottom:467.106667pt;}
.y9b{bottom:468.066667pt;}
.y75{bottom:468.733333pt;}
.y6e{bottom:474.493333pt;}
.y38{bottom:474.653333pt;}
.yf{bottom:490.306667pt;}
.y37{bottom:494.213333pt;}
.y36{bottom:513.733333pt;}
.ycc{bottom:517.373333pt;}
.ybd{bottom:532.413333pt;}
.y35{bottom:533.253333pt;}
.yb1{bottom:542.653333pt;}
.ybc{bottom:549.213333pt;}
.y3{bottom:554.466667pt;}
.y34{bottom:558.213333pt;}
.yb0{bottom:572.000000pt;}
.yaa{bottom:573.666667pt;}
.y17{bottom:575.613333pt;}
.y33{bottom:577.733333pt;}
.y2{bottom:583.266667pt;}
.yaf{bottom:588.800000pt;}
.y32{bottom:597.253333pt;}
.ya9{bottom:600.893333pt;}
.y1{bottom:612.093333pt;}
.y16{bottom:614.053333pt;}
.y31{bottom:616.773333pt;}
.yd1{bottom:620.800000pt;}
.ya4{bottom:624.413333pt;}
.ya8{bottom:627.973333pt;}
.y30{bottom:636.293333pt;}
.ya3{bottom:641.213333pt;}
.ya7{bottom:644.773333pt;}
.y2f{bottom:661.093333pt;}
.ye{bottom:664.613333pt;}
.y5b{bottom:665.533333pt;}
.y5f{bottom:666.626667pt;}
.y81{bottom:669.920000pt;}
.y85{bottom:670.466667pt;}
.ye6{bottom:677.533333pt;}
.yd{bottom:678.533333pt;}
.ye1{bottom:679.293333pt;}
.y2e{bottom:680.640000pt;}
.y62{bottom:686.786667pt;}
.y5e{bottom:688.826667pt;}
.yc{bottom:692.293333pt;}
.y84{bottom:693.373333pt;}
.y74{bottom:694.173333pt;}
.y80{bottom:695.386667pt;}
.y6d{bottom:695.546667pt;}
.yba{bottom:695.773333pt;}
.yb7{bottom:696.733333pt;}
.yac{bottom:697.693333pt;}
.y2d{bottom:700.160000pt;}
.yb2{bottom:702.173333pt;}
.y61{bottom:703.586667pt;}
.y9e{bottom:704.093333pt;}
.y5d{bottom:705.626667pt;}
.yb3{bottom:708.413333pt;}
.y92{bottom:709.213333pt;}
.y95{bottom:709.693333pt;}
.ya0{bottom:709.853333pt;}
.y83{bottom:710.173333pt;}
.ya2{bottom:711.933333pt;}
.ybb{bottom:714.173333pt;}
.y6c{bottom:714.306667pt;}
.yb9{bottom:715.173333pt;}
.y73{bottom:719.653333pt;}
.y2c{bottom:719.680000pt;}
.y60{bottom:720.413333pt;}
.y7f{bottom:720.666667pt;}
.y5c{bottom:722.426667pt;}
.y1b{bottom:723.040000pt;}
.y82{bottom:726.973333pt;}
.y6b{bottom:732.866667pt;}
.y2b{bottom:739.200000pt;}
.y72{bottom:744.933333pt;}
.ye0{bottom:747.266667pt;}
.yce{bottom:748.893333pt;}
.y6a{bottom:751.266667pt;}
.y2a{bottom:758.720000pt;}
.y1a{bottom:764.640000pt;}
.ycd{bottom:765.693333pt;}
.ycb{bottom:767.653333pt;}
.y18{bottom:768.960000pt;}
.y29{bottom:778.240000pt;}
.yab{bottom:782.080000pt;}
.yb6{bottom:792.706667pt;}
.y28{bottom:803.040000pt;}
.ya6{bottom:803.453333pt;}
.y19{bottom:806.266667pt;}
.yd9{bottom:806.946667pt;}
.y91{bottom:817.280000pt;}
.y27{bottom:822.560000pt;}
.yca{bottom:825.626667pt;}
.y90{bottom:834.080000pt;}
.y26{bottom:842.080000pt;}
.yd8{bottom:842.146667pt;}
.ya5{bottom:849.186667pt;}
.yb5{bottom:857.693333pt;}
.y25{bottom:861.626667pt;}
.yd0{bottom:869.733333pt;}
.y1d{bottom:873.093333pt;}
.yb4{bottom:874.493333pt;}
.yd7{bottom:877.373333pt;}
.y24{bottom:881.146667pt;}
.ycf{bottom:886.533333pt;}
.y23{bottom:900.666667pt;}
.y1c{bottom:911.493333pt;}
.ydf{bottom:915.973333pt;}
.y22{bottom:920.186667pt;}
.y4b{bottom:931.106667pt;}
.y8f{bottom:931.680000pt;}
.yde{bottom:933.573333pt;}
.y21{bottom:939.706667pt;}
.y77{bottom:940.346667pt;}
.y63{bottom:948.933333pt;}
.y8a{bottom:953.213333pt;}
.y20{bottom:965.146667pt;}
.y15{bottom:1007.613333pt;}
.y1e{bottom:1007.773333pt;}
.y4d{bottom:1008.133333pt;}
.h1c{height:6.365625pt;}
.h1d{height:22.400000pt;}
.h20{height:28.320000pt;}
.h1b{height:28.800000pt;}
.h29{height:31.343437pt;}
.h2d{height:31.520000pt;}
.h6{height:32.243750pt;}
.h28{height:32.809062pt;}
.h1e{height:38.240000pt;}
.h1f{height:38.400000pt;}
.h15{height:43.092500pt;}
.h17{height:43.190437pt;}
.h22{height:44.960000pt;}
.h2e{height:45.051250pt;}
.h2f{height:47.040000pt;}
.h30{height:47.200000pt;}
.hb{height:47.742188pt;}
.h18{height:48.400000pt;}
.h13{height:50.218750pt;}
.h31{height:52.160000pt;}
.h21{height:52.800000pt;}
.h2c{height:53.625000pt;}
.h1a{height:56.017500pt;}
.h2b{height:56.062500pt;}
.h25{height:56.144813pt;}
.h2a{height:56.184375pt;}
.h14{height:57.667500pt;}
.h16{height:57.798563pt;}
.h26{height:58.563750pt;}
.h27{height:58.691063pt;}
.h4{height:60.937500pt;}
.h11{height:62.156250pt;}
.h12{height:62.278125pt;}
.h3{height:65.128438pt;}
.h5{height:65.531250pt;}
.h10{height:68.859375pt;}
.hf{height:71.296875pt;}
.h7{height:81.046875pt;}
.h8{height:81.168750pt;}
.h19{height:84.617500pt;}
.h24{height:84.662813pt;}
.h23{height:84.790125pt;}
.h2{height:91.406250pt;}
.h1{height:91.528125pt;}
.ha{height:127.312500pt;}
.he{height:131.062500pt;}
.h9{height:131.193562pt;}
.hd{height:142.202812pt;}
.hc{height:142.333875pt;}
.h0{height:1040.000000pt;}
.w3{width:22.400000pt;}
.w7{width:22.560000pt;}
.w9{width:28.320000pt;}
.w6{width:28.352000pt;}
.wa{width:35.680000pt;}
.w4{width:38.240000pt;}
.w5{width:38.432000pt;}
.wc{width:47.040000pt;}
.wd{width:47.200000pt;}
.we{width:51.360000pt;}
.wb{width:90.112000pt;}
.w2{width:115.552000pt;}
.w8{width:131.392000pt;}
.w1{width:719.999989pt;}
.w0{width:720.000000pt;}
.x0{left:0.000000pt;}
.xe{left:13.439989pt;}
.x15{left:40.511989pt;}
.x1b{left:49.727989pt;}
.x1d{left:50.847989pt;}
.x14{left:55.551989pt;}
.x7{left:58.207989pt;}
.x27{left:61.023989pt;}
.x26{left:62.015989pt;}
.x3f{left:63.903989pt;}
.x8{left:65.087989pt;}
.x6{left:66.367989pt;}
.x2f{left:67.712000pt;}
.x22{left:68.831989pt;}
.x9{left:70.399989pt;}
.x5{left:72.543989pt;}
.x33{left:74.015989pt;}
.x38{left:75.071989pt;}
.x2{left:77.215989pt;}
.x1{left:81.855989pt;}
.x3e{left:86.175989pt;}
.x3a{left:90.432000pt;}
.x4{left:99.103989pt;}
.x28{left:103.295989pt;}
.x4a{left:104.672000pt;}
.x29{left:108.191989pt;}
.x2a{left:112.095989pt;}
.x24{left:125.535989pt;}
.x32{left:127.712000pt;}
.x3{left:129.567989pt;}
.x19{left:131.615989pt;}
.x30{left:139.866667pt;}
.x44{left:148.613323pt;}
.x45{left:180.613323pt;}
.x31{left:187.386667pt;}
.xb{left:191.973323pt;}
.x43{left:197.093323pt;}
.x16{left:202.586656pt;}
.x1f{left:221.253323pt;}
.x18{left:222.946656pt;}
.x1e{left:228.386656pt;}
.x46{left:236.733323pt;}
.x49{left:243.386656pt;}
.x48{left:268.546656pt;}
.x3d{left:269.506656pt;}
.x40{left:304.826656pt;}
.x41{left:332.386656pt;}
.x42{left:334.946656pt;}
.x25{left:383.453323pt;}
.x21{left:386.013323pt;}
.x1a{left:387.746656pt;}
.x23{left:388.799989pt;}
.x1c{left:392.706656pt;}
.x20{left:395.199989pt;}
.x2d{left:396.733333pt;}
.x36{left:404.066656pt;}
.x34{left:405.213323pt;}
.x2b{left:406.693323pt;}
.x35{left:408.413323pt;}
.x3b{left:424.893333pt;}
.x3c{left:437.733323pt;}
.x2c{left:462.053333pt;}
.x2e{left:468.613333pt;}
.x4b{left:478.373333pt;}
.x39{left:520.933333pt;}
.x37{left:547.493333pt;}
.x47{left:577.413333pt;}
.xa{left:669.146656pt;}
.x17{left:672.453323pt;}
.x12{left:771.333323pt;}
.xc{left:802.906656pt;}
.xf{left:810.079989pt;}
.x13{left:835.839989pt;}
.x10{left:850.879989pt;}
.xd{left:860.546656pt;}
.x11{left:895.359989pt;}
}




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