
    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_5ad63b978680482b4c379eda.woff')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_e27b4e2e0d9697e2c5397f09.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_00b467cfaad53928f707877a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_d4c97d1ee267e55f874347fb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.941895;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_ecb495b0ab72589910ff3ac5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.400000;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_97d523fe1f5b555f58b80b02.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0b054ebb603948e366f16615.woff')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_293723f0488adcebe685dfff.woff')format("woff");}.ff8{font-family:ff8;line-height:1.107422;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_82daa6adc3efb7083ae68c1f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_c4c663060dd9c0ef5e32e108.woff')format("woff");}.ffa{font-family:ffa;line-height:1.400000;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_b216ea80c727dbe67cac40c6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.941895;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_78ac9ce6a8dcfe8b865ff8dd.woff')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v4{vertical-align:-81.072000px;}
.v1{vertical-align:-4.320000px;}
.v3{vertical-align:-2.460000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:8.064000px;}
.v2{vertical-align:123.720000px;}
.ls29{letter-spacing:-1.866000px;}
.ls33{letter-spacing:-0.500400px;}
.ls37{letter-spacing:-0.445800px;}
.ls38{letter-spacing:-0.341400px;}
.ls2{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.252000px;}
.ls2f{letter-spacing:-0.237600px;}
.ls3b{letter-spacing:-0.237000px;}
.ls11{letter-spacing:-0.232800px;}
.lsa{letter-spacing:-0.223800px;}
.ls14{letter-spacing:-0.216000px;}
.ls2d{letter-spacing:-0.207600px;}
.ls18{letter-spacing:-0.194400px;}
.lsb{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.116400px;}
.ls9{letter-spacing:-0.115200px;}
.ls2c{letter-spacing:-0.108000px;}
.ls36{letter-spacing:-0.103800px;}
.ls8{letter-spacing:-0.094200px;}
.ls35{letter-spacing:-0.087000px;}
.ls34{letter-spacing:-0.064200px;}
.ls1a{letter-spacing:-0.058320px;}
.ls10{letter-spacing:-0.019440px;}
.ls32{letter-spacing:-0.009360px;}
.ls3{letter-spacing:-0.000001px;}
.ls0{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.020880px;}
.ls2e{letter-spacing:0.036000px;}
.lsc{letter-spacing:0.101400px;}
.lse{letter-spacing:0.112320px;}
.ls3f{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.122400px;}
.ls3d{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.208080px;}
.ls12{letter-spacing:0.219600px;}
.ls24{letter-spacing:0.260400px;}
.ls44{letter-spacing:0.280080px;}
.ls3a{letter-spacing:0.280800px;}
.ls13{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.293040px;}
.ls1{letter-spacing:0.308400px;}
.ls19{letter-spacing:0.310200px;}
.ls4{letter-spacing:0.345600px;}
.lsf{letter-spacing:0.351600px;}
.ls1e{letter-spacing:0.618960px;}
.ls43{letter-spacing:0.738000px;}
.ls23{letter-spacing:0.756000px;}
.ls30{letter-spacing:1.692864px;}
.ls1f{letter-spacing:3.522000px;}
.ls3e{letter-spacing:8.496000px;}
.ls17{letter-spacing:33.847920px;}
.ls3c{letter-spacing:62.472000px;}
.ls2a{letter-spacing:97.509600px;}
.ls2b{letter-spacing:97.560000px;}
.ls22{letter-spacing:101.844000px;}
.ls6{letter-spacing:108.144288px;}
.ls5{letter-spacing:108.216000px;}
.ls42{letter-spacing:115.560000px;}
.ls41{letter-spacing:118.389600px;}
.ls40{letter-spacing:118.440000px;}
.ls20{letter-spacing:119.985600px;}
.ls16{letter-spacing:120.009600px;}
.ls21{letter-spacing:120.036000px;}
.ls15{letter-spacing:120.060000px;}
.ls26{letter-spacing:124.293600px;}
.ls25{letter-spacing:124.329600px;}
.ls27{letter-spacing:124.344000px;}
.ls1c{letter-spacing:128.553600px;}
.ls1b{letter-spacing:128.604000px;}
.sc_{text-shadow:none;}
.sc6{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc5{text-shadow:-0.015em 0 rgb(69,84,107),0 0.015em rgb(69,84,107),0.015em 0 rgb(69,84,107),0 -0.015em  rgb(69,84,107);}
.sc4{text-shadow:-0.015em 0 rgb(231,50,76),0 0.015em rgb(231,50,76),0.015em 0 rgb(231,50,76),0 -0.015em  rgb(231,50,76);}
.sc3{text-shadow:-0.015em 0 rgb(255,192,0),0 0.015em rgb(255,192,0),0.015em 0 rgb(255,192,0),0 -0.015em  rgb(255,192,0);}
.sc1{text-shadow:-0.015em 0 rgb(10,186,240),0 0.015em rgb(10,186,240),0.015em 0 rgb(10,186,240),0 -0.015em  rgb(10,186,240);}
.sc2{text-shadow:-0.015em 0 rgb(163,199,23),0 0.015em rgb(163,199,23),0.015em 0 rgb(163,199,23),0 -0.015em  rgb(163,199,23);}
.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;}
.sc6{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(69,84,107);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(231,50,76);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(255,192,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(10,186,240);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(163,199,23);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws36{word-spacing:-120.240000px;}
.ws5{word-spacing:-59.002560px;}
.ws4c{word-spacing:-46.805040px;}
.wsd{word-spacing:-42.062400px;}
.wsf{word-spacing:-41.976000px;}
.wse{word-spacing:-41.940000px;}
.ws2c{word-spacing:-40.176000px;}
.ws6{word-spacing:-36.036000px;}
.ws40{word-spacing:-33.898560px;}
.ws45{word-spacing:-33.587136px;}
.wsa{word-spacing:-33.546960px;}
.ws3e{word-spacing:-33.537600px;}
.ws3f{word-spacing:-33.527520px;}
.ws43{word-spacing:-33.500136px;}
.ws44{word-spacing:-33.483336px;}
.ws47{word-spacing:-33.205560px;}
.ws46{word-spacing:-33.141336px;}
.ws41{word-spacing:-33.046560px;}
.ws3b{word-spacing:-30.168000px;}
.ws18{word-spacing:-30.132000px;}
.ws15{word-spacing:-30.064032px;}
.wsb{word-spacing:-30.060000px;}
.ws11{word-spacing:-30.024000px;}
.ws38{word-spacing:-29.916000px;}
.ws14{word-spacing:-29.880000px;}
.ws12{word-spacing:-29.736000px;}
.ws4d{word-spacing:-27.036000px;}
.ws20{word-spacing:-27.000000px;}
.ws30{word-spacing:-26.977440px;}
.ws25{word-spacing:-26.784000px;}
.ws2b{word-spacing:-26.717040px;}
.ws39{word-spacing:-26.609040px;}
.ws3a{word-spacing:-26.509440px;}
.ws4f{word-spacing:-23.543136px;}
.ws50{word-spacing:-23.502960px;}
.ws51{word-spacing:-21.060000px;}
.ws2{word-spacing:-19.080000px;}
.ws2d{word-spacing:-2.988000px;}
.ws4b{word-spacing:-2.346624px;}
.ws2e{word-spacing:-1.512000px;}
.ws1{word-spacing:-1.481040px;}
.ws0{word-spacing:-0.352320px;}
.ws3{word-spacing:-0.312000px;}
.ws17{word-spacing:-0.144144px;}
.ws34{word-spacing:-0.084240px;}
.ws33{word-spacing:-0.007200px;}
.ws4{word-spacing:0.000000px;}
.ws13{word-spacing:0.079656px;}
.ws49{word-spacing:40.436064px;}
.ws48{word-spacing:45.619920px;}
.ws4a{word-spacing:45.861480px;}
.ws42{word-spacing:46.166040px;}
.ws3d{word-spacing:53.985600px;}
.ws1d{word-spacing:72.616080px;}
.ws1b{word-spacing:73.814160px;}
.ws1a{word-spacing:78.111840px;}
.ws1c{word-spacing:87.921120px;}
.ws2a{word-spacing:180.298800px;}
.ws37{word-spacing:181.018800px;}
.ws35{word-spacing:181.738800px;}
.ws3c{word-spacing:182.458800px;}
.ws32{word-spacing:183.898800px;}
.ws28{word-spacing:184.618800px;}
.ws1e{word-spacing:185.338800px;}
.ws29{word-spacing:186.058800px;}
.ws1f{word-spacing:187.498800px;}
.ws19{word-spacing:188.218800px;}
.ws27{word-spacing:191.098800px;}
.ws16{word-spacing:191.818800px;}
.ws8{word-spacing:211.978800px;}
.ws10{word-spacing:212.698800px;}
.ws9{word-spacing:214.138800px;}
.ws7{word-spacing:214.858800px;}
.wsc{word-spacing:217.738800px;}
.ws24{word-spacing:853.927680px;}
.ws23{word-spacing:880.026144px;}
.ws26{word-spacing:1000.584000px;}
.ws2f{word-spacing:1159.992000px;}
.ws21{word-spacing:1262.880000px;}
.ws4e{word-spacing:1665.792000px;}
.ws22{word-spacing:1850.892000px;}
.ws31{word-spacing:2189.340960px;}
._7{margin-left:-8.208000px;}
._6{margin-left:-5.832000px;}
._b{margin-left:-4.228464px;}
._4{margin-left:-2.648448px;}
._0{margin-left:-1.471680px;}
._1{width:1.051200px;}
._5{width:2.065680px;}
._3{width:3.101472px;}
._a{width:4.944000px;}
._c{width:12.040320px;}
._d{width:13.269360px;}
._2{width:17.688000px;}
._e{width:32.368560px;}
._8{width:35.646960px;}
._9{width:586.801680px;}
.fca{color:rgb(231,50,76);}
.fc9{color:rgb(255,192,0);}
.fc8{color:rgb(163,199,23);}
.fc7{color:transparent;}
.fc3{color:rgb(178,189,194);}
.fc6{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(10,186,240);}
.fc5{color:rgb(0,176,240);}
.fc4{color:rgb(138,148,156);}
.fc0{color:rgb(69,84,107);}
.fs12{font-size:7.200000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:59.904000px;}
.fs1{font-size:72.000000px;}
.fs13{font-size:84.240000px;}
.fs14{font-size:84.384000px;}
.fs10{font-size:95.760000px;}
.fs11{font-size:95.904000px;}
.fs7{font-size:108.000000px;}
.fs9{font-size:108.144000px;}
.fse{font-size:112.464000px;}
.fs6{font-size:120.240000px;}
.fs8{font-size:120.384000px;}
.fsf{font-size:131.904000px;}
.fsd{font-size:144.000000px;}
.fs4{font-size:144.144000px;}
.fsb{font-size:167.760000px;}
.fsc{font-size:167.904000px;}
.fs0{font-size:210.240000px;}
.fs3{font-size:210.384000px;}
.fsa{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:11.160000px;}
.y6{bottom:17.676000px;}
.yc8{bottom:24.300000px;}
.yb{bottom:37.728000px;}
.y9c{bottom:42.660000px;}
.y91{bottom:57.996000px;}
.y37{bottom:72.504000px;}
.yc{bottom:78.804000px;}
.y55{bottom:84.528000px;}
.y90{bottom:86.796000px;}
.yaf{bottom:87.768000px;}
.y5d{bottom:105.552000px;}
.y8c{bottom:110.052000px;}
.yc6{bottom:111.528000px;}
.y36{bottom:112.104000px;}
.yc5{bottom:112.860000px;}
.ya6{bottom:113.148000px;}
.yc4{bottom:114.660000px;}
.y44{bottom:123.444000px;}
.y54{bottom:123.588000px;}
.yae{bottom:126.828000px;}
.y87{bottom:137.916000px;}
.y8b{bottom:138.852000px;}
.y35{bottom:141.264000px;}
.y6c{bottom:148.608000px;}
.y43{bottom:151.890000px;}
.y29{bottom:152.025000px;}
.y3d{bottom:152.820000px;}
.y77{bottom:165.525000px;}
.y9a{bottom:173.310000px;}
.y83{bottom:176.790000px;}
.y84{bottom:178.485000px;}
.y53{bottom:179.025000px;}
.y2b{bottom:179.715000px;}
.y34{bottom:181.050000px;}
.y3c{bottom:181.260000px;}
.yad{bottom:182.265000px;}
.y7f{bottom:183.345000px;}
.y20{bottom:197.850000px;}
.y5{bottom:200.010000px;}
.y28{bottom:202.425000px;}
.y33{bottom:210.240000px;}
.y3b{bottom:210.420000px;}
.y52{bottom:218.130000px;}
.y5e{bottom:220.530000px;}
.y6b{bottom:220.830000px;}
.ya5{bottom:224.070000px;}
.y4{bottom:224.490000px;}
.y7e{bottom:228.390000px;}
.yb5{bottom:228.570000px;}
.y2a{bottom:230.115000px;}
.y76{bottom:231.270000px;}
.yc7{bottom:233.490000px;}
.yac{bottom:237.930000px;}
.yce{bottom:239.070000px;}
.y32{bottom:251.820000px;}
.y3a{bottom:252.030000px;}
.y8f{bottom:252.570000px;}
.y27{bottom:252.825000px;}
.y6e{bottom:256.650000px;}
.y6a{bottom:256.830000px;}
.ybd{bottom:258.270000px;}
.y75{bottom:264.210000px;}
.y5b{bottom:264.990000px;}
.ycd{bottom:266.115000px;}
.y1c{bottom:266.610000px;}
.yb4{bottom:267.630000px;}
.y51{bottom:273.570000px;}
.y99{bottom:275.040000px;}
.y7d{bottom:275.190000px;}
.ya4{bottom:279.690000px;}
.y8e{bottom:281.370000px;}
.y1f{bottom:284.295000px;}
.y69{bottom:292.830000px;}
.yab{bottom:293.370000px;}
.y3{bottom:294.375000px;}
.y74{bottom:296.970000px;}
.y5a{bottom:297.435000px;}
.y1b{bottom:299.055000px;}
.y9b{bottom:299.595000px;}
.yb3{bottom:306.690000px;}
.ybc{bottom:307.410000px;}
.y98{bottom:307.440000px;}
.yd0{bottom:309.210000px;}
.ycc{bottom:309.675000px;}
.y8d{bottom:310.170000px;}
.y50{bottom:312.630000px;}
.y9d{bottom:317.595000px;}
.ya3{bottom:318.570000px;}
.y68{bottom:328.830000px;}
.y73{bottom:329.730000px;}
.y59{bottom:329.835000px;}
.y7c{bottom:330.630000px;}
.y14{bottom:332.715000px;}
.y60{bottom:335.490000px;}
.ycf{bottom:336.210000px;}
.ycb{bottom:336.675000px;}
.y97{bottom:339.840000px;}
.yb2{bottom:345.570000px;}
.y2{bottom:357.375000px;}
.y58{bottom:362.235000px;}
.y72{bottom:362.700000px;}
.y67{bottom:364.860000px;}
.y4f{bottom:368.100000px;}
.yaa{bottom:368.460000px;}
.y13{bottom:369.435000px;}
.y1e{bottom:370.695000px;}
.ybb{bottom:373.320000px;}
.ya2{bottom:374.220000px;}
.y7b{bottom:378.720000px;}
.yca{bottom:380.055000px;}
.y49{bottom:380.370000px;}
.y9{bottom:381.810000px;}
.yb1{bottom:384.660000px;}
.y96{bottom:388.830000px;}
.y1a{bottom:393.915000px;}
.y57{bottom:394.635000px;}
.y71{bottom:395.460000px;}
.y66{bottom:400.860000px;}
.y89{bottom:403.740000px;}
.y12{bottom:405.975000px;}
.yc9{bottom:407.055000px;}
.y4e{bottom:407.160000px;}
.ya1{bottom:413.100000px;}
.yba{bottom:422.460000px;}
.yc2{bottom:422.670000px;}
.yb0{bottom:423.720000px;}
.y19{bottom:426.315000px;}
.y70{bottom:428.400000px;}
.y42{bottom:428.835000px;}
.y31{bottom:429.375000px;}
.yb7{bottom:429.660000px;}
.y88{bottom:433.155000px;}
.ya9{bottom:433.800000px;}
.y7a{bottom:434.160000px;}
.y6d{bottom:436.680000px;}
.y65{bottom:436.860000px;}
.y95{bottom:437.790000px;}
.y23{bottom:442.365000px;}
.y11{bottom:443.415000px;}
.y26{bottom:449.490000px;}
.y5c{bottom:450.435000px;}
.y48{bottom:455.040000px;}
.y1d{bottom:457.125000px;}
.y6f{bottom:461.160000px;}
.y4d{bottom:462.600000px;}
.y82{bottom:465.990000px;}
.y85{bottom:467.100000px;}
.ya0{bottom:468.720000px;}
.y86{bottom:469.230000px;}
.y8{bottom:471.630000px;}
.y64{bottom:472.860000px;}
.y41{bottom:473.475000px;}
.y18{bottom:473.685000px;}
.y30{bottom:475.275000px;}
.ya8{bottom:479.880000px;}
.y79{bottom:480.420000px;}
.yc1{bottom:482.115000px;}
.y1{bottom:482.610000px;}
.yc3{bottom:483.120000px;}
.yb6{bottom:485.100000px;}
.y94{bottom:486.570000px;}
.yb9{bottom:488.340000px;}
.y10{bottom:490.065000px;}
.y22{bottom:492.810000px;}
.y47{bottom:496.080000px;}
.y25{bottom:499.890000px;}
.y4c{bottom:501.660000px;}
.y40{bottom:502.635000px;}
.y2f{bottom:502.815000px;}
.y17{bottom:506.085000px;}
.y63{bottom:508.890000px;}
.y93{bottom:519.015000px;}
.y9f{bottom:524.190000px;}
.ya7{bottom:525.810000px;}
.yf{bottom:526.785000px;}
.y2e{bottom:530.355000px;}
.yc0{bottom:532.515000px;}
.y78{bottom:532.830000px;}
.y46{bottom:537.150000px;}
.y39{bottom:539.355000px;}
.y4b{bottom:540.750000px;}
.y3f{bottom:542.415000px;}
.y21{bottom:543.210000px;}
.y62{bottom:544.890000px;}
.y24{bottom:550.290000px;}
.y16{bottom:553.425000px;}
.y2d{bottom:557.895000px;}
.y7{bottom:561.450000px;}
.ye{bottom:563.505000px;}
.y8a{bottom:564.045000px;}
.y38{bottom:566.895000px;}
.y5f{bottom:566.925000px;}
.y92{bottom:570.495000px;}
.y3e{bottom:571.575000px;}
.yb8{bottom:572.070000px;}
.y45{bottom:578.190000px;}
.y4a{bottom:579.630000px;}
.y61{bottom:580.890000px;}
.ybf{bottom:582.915000px;}
.y81{bottom:600.630000px;}
.yd{bottom:600.945000px;}
.y80{bottom:680.790000px;}
.y56{bottom:681.870000px;}
.y2c{bottom:682.305000px;}
.y15{bottom:682.350000px;}
.ybe{bottom:691.845000px;}
.ya{bottom:725.475000px;}
.h1a{height:5.498437px;}
.h1e{height:25.956000px;}
.h19{height:44.280000px;}
.h6{height:62.748000px;}
.h3{height:62.899200px;}
.h1b{height:64.002656px;}
.h2{height:75.600000px;}
.h1c{height:88.452000px;}
.h1f{height:88.603200px;}
.h14{height:96.873047px;}
.h16{height:100.548000px;}
.h17{height:100.699200px;}
.he{height:112.640625px;}
.h11{height:112.790813px;}
.h8{height:113.400000px;}
.h15{height:113.551200px;}
.h12{height:117.296437px;}
.h1d{height:121.615200px;}
.h7{height:126.252000px;}
.h9{height:126.403200px;}
.h13{height:137.314125px;}
.h10{height:149.906250px;}
.hf{height:150.056156px;}
.hd{height:151.200000px;}
.h5{height:151.351200px;}
.hb{height:176.148000px;}
.hc{height:176.299200px;}
.h1{height:220.752000px;}
.h4{height:220.903200px;}
.h18{height:224.268000px;}
.ha{height:251.748000px;}
.h0{height:810.000000px;}
.w3{width:139.536000px;}
.w2{width:277.950000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x47{left:24.119979px;}
.x49{left:63.503979px;}
.x4a{left:81.503979px;}
.x26{left:96.695979px;}
.x2{left:97.847979px;}
.x3{left:98.999979px;}
.x37{left:118.079979px;}
.x4d{left:132.731979px;}
.x36{left:139.535979px;}
.x3b{left:151.454979px;}
.x2c{left:153.029979px;}
.x25{left:158.249979px;}
.xe{left:179.429979px;}
.x2f{left:193.889979px;}
.x2d{left:194.969979px;}
.x30{left:196.409979px;}
.x2b{left:200.084979px;}
.x11{left:206.309979px;}
.x3c{left:208.904979px;}
.x31{left:214.769979px;}
.x10{left:218.729979px;}
.x2e{left:225.209979px;}
.xd{left:227.849979px;}
.x13{left:232.454979px;}
.x14{left:234.614979px;}
.x15{left:257.654979px;}
.x16{left:274.754979px;}
.xc{left:291.959979px;}
.xf{left:301.709979px;}
.x18{left:341.849979px;}
.x33{left:362.804979px;}
.x17{left:398.549979px;}
.x1a{left:447.044979px;}
.x19{left:448.484979px;}
.x1c{left:476.204979px;}
.x4e{left:477.614979px;}
.x1b{left:484.484979px;}
.x1d{left:496.184979px;}
.x34{left:510.689979px;}
.x32{left:514.469979px;}
.x4f{left:535.574979px;}
.x1f{left:572.189979px;}
.x35{left:575.489979px;}
.x20{left:579.029979px;}
.x4b{left:589.214979px;}
.x3d{left:606.704979px;}
.x1e{left:619.889979px;}
.x6{left:642.344979px;}
.x8{left:682.844979px;}
.x7{left:696.344979px;}
.x38{left:731.009979px;}
.x40{left:732.089979px;}
.x43{left:754.589979px;}
.x1{left:788.909979px;}
.x44{left:795.134979px;}
.x29{left:799.814979px;}
.x28{left:814.034979px;}
.x27{left:855.074979px;}
.x3a{left:866.594979px;}
.x3e{left:869.429979px;}
.x2a{left:870.554979px;}
.x42{left:910.409979px;}
.x48{left:937.544979px;}
.x39{left:954.569979px;}
.x3f{left:955.694979px;}
.xa{left:999.614979px;}
.xb{left:1001.414979px;}
.x45{left:1039.650000px;}
.x9{left:1042.274979px;}
.x46{left:1052.279979px;}
.x41{left:1062.359979px;}
.x23{left:1082.234979px;}
.x12{left:1086.119979px;}
.x5{left:1094.939979px;}
.x21{left:1102.394979px;}
.x24{left:1120.394979px;}
.x22{left:1131.554979px;}
.x4c{left:1151.204979px;}
.x4{left:1226.054979px;}
@media print{
.v4{vertical-align:-72.064000pt;}
.v1{vertical-align:-3.840000pt;}
.v3{vertical-align:-2.186667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:7.168000pt;}
.v2{vertical-align:109.973333pt;}
.ls29{letter-spacing:-1.658667pt;}
.ls33{letter-spacing:-0.444800pt;}
.ls37{letter-spacing:-0.396267pt;}
.ls38{letter-spacing:-0.303467pt;}
.ls2{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.224000pt;}
.ls2f{letter-spacing:-0.211200pt;}
.ls3b{letter-spacing:-0.210667pt;}
.ls11{letter-spacing:-0.206933pt;}
.lsa{letter-spacing:-0.198933pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls2d{letter-spacing:-0.184533pt;}
.ls18{letter-spacing:-0.172800pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.103467pt;}
.ls9{letter-spacing:-0.102400pt;}
.ls2c{letter-spacing:-0.096000pt;}
.ls36{letter-spacing:-0.092267pt;}
.ls8{letter-spacing:-0.083733pt;}
.ls35{letter-spacing:-0.077333pt;}
.ls34{letter-spacing:-0.057067pt;}
.ls1a{letter-spacing:-0.051840pt;}
.ls10{letter-spacing:-0.017280pt;}
.ls32{letter-spacing:-0.008320pt;}
.ls3{letter-spacing:-0.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.018560pt;}
.ls2e{letter-spacing:0.032000pt;}
.lsc{letter-spacing:0.090133pt;}
.lse{letter-spacing:0.099840pt;}
.ls3f{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.108800pt;}
.ls3d{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.184960pt;}
.ls12{letter-spacing:0.195200pt;}
.ls24{letter-spacing:0.231467pt;}
.ls44{letter-spacing:0.248960pt;}
.ls3a{letter-spacing:0.249600pt;}
.ls13{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.260480pt;}
.ls1{letter-spacing:0.274133pt;}
.ls19{letter-spacing:0.275733pt;}
.ls4{letter-spacing:0.307200pt;}
.lsf{letter-spacing:0.312533pt;}
.ls1e{letter-spacing:0.550187pt;}
.ls43{letter-spacing:0.656000pt;}
.ls23{letter-spacing:0.672000pt;}
.ls30{letter-spacing:1.504768pt;}
.ls1f{letter-spacing:3.130667pt;}
.ls3e{letter-spacing:7.552000pt;}
.ls17{letter-spacing:30.087040pt;}
.ls3c{letter-spacing:55.530667pt;}
.ls2a{letter-spacing:86.675200pt;}
.ls2b{letter-spacing:86.720000pt;}
.ls22{letter-spacing:90.528000pt;}
.ls6{letter-spacing:96.128256pt;}
.ls5{letter-spacing:96.192000pt;}
.ls42{letter-spacing:102.720000pt;}
.ls41{letter-spacing:105.235200pt;}
.ls40{letter-spacing:105.280000pt;}
.ls20{letter-spacing:106.653867pt;}
.ls16{letter-spacing:106.675200pt;}
.ls21{letter-spacing:106.698667pt;}
.ls15{letter-spacing:106.720000pt;}
.ls26{letter-spacing:110.483200pt;}
.ls25{letter-spacing:110.515200pt;}
.ls27{letter-spacing:110.528000pt;}
.ls1c{letter-spacing:114.269867pt;}
.ls1b{letter-spacing:114.314667pt;}
.ws36{word-spacing:-106.880000pt;}
.ws5{word-spacing:-52.446720pt;}
.ws4c{word-spacing:-41.604480pt;}
.wsd{word-spacing:-37.388800pt;}
.wsf{word-spacing:-37.312000pt;}
.wse{word-spacing:-37.280000pt;}
.ws2c{word-spacing:-35.712000pt;}
.ws6{word-spacing:-32.032000pt;}
.ws40{word-spacing:-30.132053pt;}
.ws45{word-spacing:-29.855232pt;}
.wsa{word-spacing:-29.819520pt;}
.ws3e{word-spacing:-29.811200pt;}
.ws3f{word-spacing:-29.802240pt;}
.ws43{word-spacing:-29.777899pt;}
.ws44{word-spacing:-29.762965pt;}
.ws47{word-spacing:-29.516053pt;}
.ws46{word-spacing:-29.458965pt;}
.ws41{word-spacing:-29.374720pt;}
.ws3b{word-spacing:-26.816000pt;}
.ws18{word-spacing:-26.784000pt;}
.ws15{word-spacing:-26.723584pt;}
.wsb{word-spacing:-26.720000pt;}
.ws11{word-spacing:-26.688000pt;}
.ws38{word-spacing:-26.592000pt;}
.ws14{word-spacing:-26.560000pt;}
.ws12{word-spacing:-26.432000pt;}
.ws4d{word-spacing:-24.032000pt;}
.ws20{word-spacing:-24.000000pt;}
.ws30{word-spacing:-23.979947pt;}
.ws25{word-spacing:-23.808000pt;}
.ws2b{word-spacing:-23.748480pt;}
.ws39{word-spacing:-23.652480pt;}
.ws3a{word-spacing:-23.563947pt;}
.ws4f{word-spacing:-20.927232pt;}
.ws50{word-spacing:-20.891520pt;}
.ws51{word-spacing:-18.720000pt;}
.ws2{word-spacing:-16.960000pt;}
.ws2d{word-spacing:-2.656000pt;}
.ws4b{word-spacing:-2.085888pt;}
.ws2e{word-spacing:-1.344000pt;}
.ws1{word-spacing:-1.316480pt;}
.ws0{word-spacing:-0.313173pt;}
.ws3{word-spacing:-0.277333pt;}
.ws17{word-spacing:-0.128128pt;}
.ws34{word-spacing:-0.074880pt;}
.ws33{word-spacing:-0.006400pt;}
.ws4{word-spacing:0.000000pt;}
.ws13{word-spacing:0.070805pt;}
.ws49{word-spacing:35.943168pt;}
.ws48{word-spacing:40.551040pt;}
.ws4a{word-spacing:40.765760pt;}
.ws42{word-spacing:41.036480pt;}
.ws3d{word-spacing:47.987200pt;}
.ws1d{word-spacing:64.547627pt;}
.ws1b{word-spacing:65.612587pt;}
.ws1a{word-spacing:69.432747pt;}
.ws1c{word-spacing:78.152107pt;}
.ws2a{word-spacing:160.265600pt;}
.ws37{word-spacing:160.905600pt;}
.ws35{word-spacing:161.545600pt;}
.ws3c{word-spacing:162.185600pt;}
.ws32{word-spacing:163.465600pt;}
.ws28{word-spacing:164.105600pt;}
.ws1e{word-spacing:164.745600pt;}
.ws29{word-spacing:165.385600pt;}
.ws1f{word-spacing:166.665600pt;}
.ws19{word-spacing:167.305600pt;}
.ws27{word-spacing:169.865600pt;}
.ws16{word-spacing:170.505600pt;}
.ws8{word-spacing:188.425600pt;}
.ws10{word-spacing:189.065600pt;}
.ws9{word-spacing:190.345600pt;}
.ws7{word-spacing:190.985600pt;}
.wsc{word-spacing:193.545600pt;}
.ws24{word-spacing:759.046827pt;}
.ws23{word-spacing:782.245461pt;}
.ws26{word-spacing:889.408000pt;}
.ws2f{word-spacing:1031.104000pt;}
.ws21{word-spacing:1122.560000pt;}
.ws4e{word-spacing:1480.704000pt;}
.ws22{word-spacing:1645.237333pt;}
.ws31{word-spacing:1946.080853pt;}
._7{margin-left:-7.296000pt;}
._6{margin-left:-5.184000pt;}
._b{margin-left:-3.758635pt;}
._4{margin-left:-2.354176pt;}
._0{margin-left:-1.308160pt;}
._1{width:0.934400pt;}
._5{width:1.836160pt;}
._3{width:2.756864pt;}
._a{width:4.394667pt;}
._c{width:10.702507pt;}
._d{width:11.794987pt;}
._2{width:15.722667pt;}
._e{width:28.772053pt;}
._8{width:31.686187pt;}
._9{width:521.601493pt;}
.fs12{font-size:6.400000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:53.248000pt;}
.fs1{font-size:64.000000pt;}
.fs13{font-size:74.880000pt;}
.fs14{font-size:75.008000pt;}
.fs10{font-size:85.120000pt;}
.fs11{font-size:85.248000pt;}
.fs7{font-size:96.000000pt;}
.fs9{font-size:96.128000pt;}
.fse{font-size:99.968000pt;}
.fs6{font-size:106.880000pt;}
.fs8{font-size:107.008000pt;}
.fsf{font-size:117.248000pt;}
.fsd{font-size:128.000000pt;}
.fs4{font-size:128.128000pt;}
.fsb{font-size:149.120000pt;}
.fsc{font-size:149.248000pt;}
.fs0{font-size:186.880000pt;}
.fs3{font-size:187.008000pt;}
.fsa{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:9.920000pt;}
.y6{bottom:15.712000pt;}
.yc8{bottom:21.600000pt;}
.yb{bottom:33.536000pt;}
.y9c{bottom:37.920000pt;}
.y91{bottom:51.552000pt;}
.y37{bottom:64.448000pt;}
.yc{bottom:70.048000pt;}
.y55{bottom:75.136000pt;}
.y90{bottom:77.152000pt;}
.yaf{bottom:78.016000pt;}
.y5d{bottom:93.824000pt;}
.y8c{bottom:97.824000pt;}
.yc6{bottom:99.136000pt;}
.y36{bottom:99.648000pt;}
.yc5{bottom:100.320000pt;}
.ya6{bottom:100.576000pt;}
.yc4{bottom:101.920000pt;}
.y44{bottom:109.728000pt;}
.y54{bottom:109.856000pt;}
.yae{bottom:112.736000pt;}
.y87{bottom:122.592000pt;}
.y8b{bottom:123.424000pt;}
.y35{bottom:125.568000pt;}
.y6c{bottom:132.096000pt;}
.y43{bottom:135.013333pt;}
.y29{bottom:135.133333pt;}
.y3d{bottom:135.840000pt;}
.y77{bottom:147.133333pt;}
.y9a{bottom:154.053333pt;}
.y83{bottom:157.146667pt;}
.y84{bottom:158.653333pt;}
.y53{bottom:159.133333pt;}
.y2b{bottom:159.746667pt;}
.y34{bottom:160.933333pt;}
.y3c{bottom:161.120000pt;}
.yad{bottom:162.013333pt;}
.y7f{bottom:162.973333pt;}
.y20{bottom:175.866667pt;}
.y5{bottom:177.786667pt;}
.y28{bottom:179.933333pt;}
.y33{bottom:186.880000pt;}
.y3b{bottom:187.040000pt;}
.y52{bottom:193.893333pt;}
.y5e{bottom:196.026667pt;}
.y6b{bottom:196.293333pt;}
.ya5{bottom:199.173333pt;}
.y4{bottom:199.546667pt;}
.y7e{bottom:203.013333pt;}
.yb5{bottom:203.173333pt;}
.y2a{bottom:204.546667pt;}
.y76{bottom:205.573333pt;}
.yc7{bottom:207.546667pt;}
.yac{bottom:211.493333pt;}
.yce{bottom:212.506667pt;}
.y32{bottom:223.840000pt;}
.y3a{bottom:224.026667pt;}
.y8f{bottom:224.506667pt;}
.y27{bottom:224.733333pt;}
.y6e{bottom:228.133333pt;}
.y6a{bottom:228.293333pt;}
.ybd{bottom:229.573333pt;}
.y75{bottom:234.853333pt;}
.y5b{bottom:235.546667pt;}
.ycd{bottom:236.546667pt;}
.y1c{bottom:236.986667pt;}
.yb4{bottom:237.893333pt;}
.y51{bottom:243.173333pt;}
.y99{bottom:244.480000pt;}
.y7d{bottom:244.613333pt;}
.ya4{bottom:248.613333pt;}
.y8e{bottom:250.106667pt;}
.y1f{bottom:252.706667pt;}
.y69{bottom:260.293333pt;}
.yab{bottom:260.773333pt;}
.y3{bottom:261.666667pt;}
.y74{bottom:263.973333pt;}
.y5a{bottom:264.386667pt;}
.y1b{bottom:265.826667pt;}
.y9b{bottom:266.306667pt;}
.yb3{bottom:272.613333pt;}
.ybc{bottom:273.253333pt;}
.y98{bottom:273.280000pt;}
.yd0{bottom:274.853333pt;}
.ycc{bottom:275.266667pt;}
.y8d{bottom:275.706667pt;}
.y50{bottom:277.893333pt;}
.y9d{bottom:282.306667pt;}
.ya3{bottom:283.173333pt;}
.y68{bottom:292.293333pt;}
.y73{bottom:293.093333pt;}
.y59{bottom:293.186667pt;}
.y7c{bottom:293.893333pt;}
.y14{bottom:295.746667pt;}
.y60{bottom:298.213333pt;}
.ycf{bottom:298.853333pt;}
.ycb{bottom:299.266667pt;}
.y97{bottom:302.080000pt;}
.yb2{bottom:307.173333pt;}
.y2{bottom:317.666667pt;}
.y58{bottom:321.986667pt;}
.y72{bottom:322.400000pt;}
.y67{bottom:324.320000pt;}
.y4f{bottom:327.200000pt;}
.yaa{bottom:327.520000pt;}
.y13{bottom:328.386667pt;}
.y1e{bottom:329.506667pt;}
.ybb{bottom:331.840000pt;}
.ya2{bottom:332.640000pt;}
.y7b{bottom:336.640000pt;}
.yca{bottom:337.826667pt;}
.y49{bottom:338.106667pt;}
.y9{bottom:339.386667pt;}
.yb1{bottom:341.920000pt;}
.y96{bottom:345.626667pt;}
.y1a{bottom:350.146667pt;}
.y57{bottom:350.786667pt;}
.y71{bottom:351.520000pt;}
.y66{bottom:356.320000pt;}
.y89{bottom:358.880000pt;}
.y12{bottom:360.866667pt;}
.yc9{bottom:361.826667pt;}
.y4e{bottom:361.920000pt;}
.ya1{bottom:367.200000pt;}
.yba{bottom:375.520000pt;}
.yc2{bottom:375.706667pt;}
.yb0{bottom:376.640000pt;}
.y19{bottom:378.946667pt;}
.y70{bottom:380.800000pt;}
.y42{bottom:381.186667pt;}
.y31{bottom:381.666667pt;}
.yb7{bottom:381.920000pt;}
.y88{bottom:385.026667pt;}
.ya9{bottom:385.600000pt;}
.y7a{bottom:385.920000pt;}
.y6d{bottom:388.160000pt;}
.y65{bottom:388.320000pt;}
.y95{bottom:389.146667pt;}
.y23{bottom:393.213333pt;}
.y11{bottom:394.146667pt;}
.y26{bottom:399.546667pt;}
.y5c{bottom:400.386667pt;}
.y48{bottom:404.480000pt;}
.y1d{bottom:406.333333pt;}
.y6f{bottom:409.920000pt;}
.y4d{bottom:411.200000pt;}
.y82{bottom:414.213333pt;}
.y85{bottom:415.200000pt;}
.ya0{bottom:416.640000pt;}
.y86{bottom:417.093333pt;}
.y8{bottom:419.226667pt;}
.y64{bottom:420.320000pt;}
.y41{bottom:420.866667pt;}
.y18{bottom:421.053333pt;}
.y30{bottom:422.466667pt;}
.ya8{bottom:426.560000pt;}
.y79{bottom:427.040000pt;}
.yc1{bottom:428.546667pt;}
.y1{bottom:428.986667pt;}
.yc3{bottom:429.440000pt;}
.yb6{bottom:431.200000pt;}
.y94{bottom:432.506667pt;}
.yb9{bottom:434.080000pt;}
.y10{bottom:435.613333pt;}
.y22{bottom:438.053333pt;}
.y47{bottom:440.960000pt;}
.y25{bottom:444.346667pt;}
.y4c{bottom:445.920000pt;}
.y40{bottom:446.786667pt;}
.y2f{bottom:446.946667pt;}
.y17{bottom:449.853333pt;}
.y63{bottom:452.346667pt;}
.y93{bottom:461.346667pt;}
.y9f{bottom:465.946667pt;}
.ya7{bottom:467.386667pt;}
.yf{bottom:468.253333pt;}
.y2e{bottom:471.426667pt;}
.yc0{bottom:473.346667pt;}
.y78{bottom:473.626667pt;}
.y46{bottom:477.466667pt;}
.y39{bottom:479.426667pt;}
.y4b{bottom:480.666667pt;}
.y3f{bottom:482.146667pt;}
.y21{bottom:482.853333pt;}
.y62{bottom:484.346667pt;}
.y24{bottom:489.146667pt;}
.y16{bottom:491.933333pt;}
.y2d{bottom:495.906667pt;}
.y7{bottom:499.066667pt;}
.ye{bottom:500.893333pt;}
.y8a{bottom:501.373333pt;}
.y38{bottom:503.906667pt;}
.y5f{bottom:503.933333pt;}
.y92{bottom:507.106667pt;}
.y3e{bottom:508.066667pt;}
.yb8{bottom:508.506667pt;}
.y45{bottom:513.946667pt;}
.y4a{bottom:515.226667pt;}
.y61{bottom:516.346667pt;}
.ybf{bottom:518.146667pt;}
.y81{bottom:533.893333pt;}
.yd{bottom:534.173333pt;}
.y80{bottom:605.146667pt;}
.y56{bottom:606.106667pt;}
.y2c{bottom:606.493333pt;}
.y15{bottom:606.533333pt;}
.ybe{bottom:614.973333pt;}
.ya{bottom:644.866667pt;}
.h1a{height:4.887500pt;}
.h1e{height:23.072000pt;}
.h19{height:39.360000pt;}
.h6{height:55.776000pt;}
.h3{height:55.910400pt;}
.h1b{height:56.891250pt;}
.h2{height:67.200000pt;}
.h1c{height:78.624000pt;}
.h1f{height:78.758400pt;}
.h14{height:86.109375pt;}
.h16{height:89.376000pt;}
.h17{height:89.510400pt;}
.he{height:100.125000pt;}
.h11{height:100.258500pt;}
.h8{height:100.800000pt;}
.h15{height:100.934400pt;}
.h12{height:104.263500pt;}
.h1d{height:108.102400pt;}
.h7{height:112.224000pt;}
.h9{height:112.358400pt;}
.h13{height:122.057000pt;}
.h10{height:133.250000pt;}
.hf{height:133.383250pt;}
.hd{height:134.400000pt;}
.h5{height:134.534400pt;}
.hb{height:156.576000pt;}
.hc{height:156.710400pt;}
.h1{height:196.224000pt;}
.h4{height:196.358400pt;}
.h18{height:199.349333pt;}
.ha{height:223.776000pt;}
.h0{height:720.000000pt;}
.w3{width:124.032000pt;}
.w2{width:247.066667pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x47{left:21.439981pt;}
.x49{left:56.447981pt;}
.x4a{left:72.447981pt;}
.x26{left:85.951981pt;}
.x2{left:86.975981pt;}
.x3{left:87.999981pt;}
.x37{left:104.959981pt;}
.x4d{left:117.983981pt;}
.x36{left:124.031981pt;}
.x3b{left:134.626648pt;}
.x2c{left:136.026648pt;}
.x25{left:140.666648pt;}
.xe{left:159.493314pt;}
.x2f{left:172.346648pt;}
.x2d{left:173.306648pt;}
.x30{left:174.586648pt;}
.x2b{left:177.853314pt;}
.x11{left:183.386648pt;}
.x3c{left:185.693314pt;}
.x31{left:190.906648pt;}
.x10{left:194.426648pt;}
.x2e{left:200.186648pt;}
.xd{left:202.533314pt;}
.x13{left:206.626648pt;}
.x14{left:208.546648pt;}
.x15{left:229.026648pt;}
.x16{left:244.226648pt;}
.xc{left:259.519981pt;}
.xf{left:268.186648pt;}
.x18{left:303.866648pt;}
.x33{left:322.493314pt;}
.x17{left:354.266648pt;}
.x1a{left:397.373314pt;}
.x19{left:398.653314pt;}
.x1c{left:423.293314pt;}
.x4e{left:424.546648pt;}
.x1b{left:430.653314pt;}
.x1d{left:441.053314pt;}
.x34{left:453.946648pt;}
.x32{left:457.306648pt;}
.x4f{left:476.066648pt;}
.x1f{left:508.613314pt;}
.x35{left:511.546648pt;}
.x20{left:514.693314pt;}
.x4b{left:523.746648pt;}
.x3d{left:539.293314pt;}
.x1e{left:551.013314pt;}
.x6{left:570.973314pt;}
.x8{left:606.973314pt;}
.x7{left:618.973314pt;}
.x38{left:649.786648pt;}
.x40{left:650.746648pt;}
.x43{left:670.746648pt;}
.x1{left:701.253314pt;}
.x44{left:706.786648pt;}
.x29{left:710.946648pt;}
.x28{left:723.586648pt;}
.x27{left:760.066648pt;}
.x3a{left:770.306648pt;}
.x3e{left:772.826648pt;}
.x2a{left:773.826648pt;}
.x42{left:809.253314pt;}
.x48{left:833.373314pt;}
.x39{left:848.506648pt;}
.x3f{left:849.506648pt;}
.xa{left:888.546648pt;}
.xb{left:890.146648pt;}
.x45{left:924.133333pt;}
.x9{left:926.466648pt;}
.x46{left:935.359981pt;}
.x41{left:944.319981pt;}
.x23{left:961.986648pt;}
.x12{left:965.439981pt;}
.x5{left:973.279981pt;}
.x21{left:979.906648pt;}
.x24{left:995.906648pt;}
.x22{left:1005.826648pt;}
.x4c{left:1023.293314pt;}
.x4{left:1089.826648pt;}
}




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