
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_ac3b011d60182b0ad11601bc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942383;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_b8fd135f2f9eb2c622b6a424.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065430;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_0dc909ce4ef5d51bde5f3de1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_9cb07e2cfb1d5420551b52dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_fdf777e4315eba830ce4d51b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_2fb353acfb74b4633772e735.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_46cded04562cd7ca9fe3b3ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_0759a33b8c31c622a79ba6e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.849121;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_727bcebb23f08969d698eb58.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.849121;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_e4879e7a962cbe9fdecfb4f6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.762207;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_b513ef1a5b8b1a7cb09f6ec7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064941;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_c4f021d9e3aa12e103d350bf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.849121;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_f81047e3f430a1f09be2cca7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.088379;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_235520dde985b30eb74a2db0.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.ls14{letter-spacing:-0.924000px;}
.ls11{letter-spacing:-0.732000px;}
.ls23{letter-spacing:-0.495600px;}
.ls18{letter-spacing:-0.489600px;}
.ls22{letter-spacing:-0.409200px;}
.ls6{letter-spacing:-0.334200px;}
.ls1b{letter-spacing:-0.322800px;}
.ls7{letter-spacing:-0.308400px;}
.ls9{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.255000px;}
.lsb{letter-spacing:-0.240000px;}
.ls1e{letter-spacing:-0.132600px;}
.ls5{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.005760px;}
.lsf{letter-spacing:0.017280px;}
.ls17{letter-spacing:0.070560px;}
.ls8{letter-spacing:0.083400px;}
.ls21{letter-spacing:0.092160px;}
.ls20{letter-spacing:0.092400px;}
.ls1a{letter-spacing:0.109200px;}
.lse{letter-spacing:0.121200px;}
.ls24{letter-spacing:0.224400px;}
.ls15{letter-spacing:0.224640px;}
.ls1f{letter-spacing:0.230400px;}
.ls16{letter-spacing:0.276480px;}
.ls2{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.444738px;}
.ls4{letter-spacing:3.546720px;}
.ls13{letter-spacing:10.713600px;}
.ls1c{letter-spacing:36.224640px;}
.ls10{letter-spacing:43.113600px;}
.ls12{letter-spacing:51.033600px;}
.lsd{letter-spacing:55.353600px;}
.ls0{letter-spacing:70.387200px;}
.lsc{letter-spacing:92.073600px;}
.ls1d{letter-spacing:117.273600px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,112,192),0 0.015em rgb(0,112,192),0.015em 0 rgb(0,112,192),0 -0.015em  rgb(0,112,192);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,112,192);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-66.240000px;}
.ws9{word-spacing:-62.991941px;}
.ws3{word-spacing:-17.190600px;}
.ws14{word-spacing:-15.430800px;}
.wsb{word-spacing:-15.327600px;}
.wsf{word-spacing:-15.315600px;}
.ws12{word-spacing:-15.298800px;}
.wse{word-spacing:-15.212160px;}
.wsc{word-spacing:-15.206400px;}
.ws11{word-spacing:-15.073800px;}
.ws10{word-spacing:-14.883600px;}
.ws13{word-spacing:-14.710800px;}
.ws1{word-spacing:-14.572800px;}
.ws0{word-spacing:-14.238600px;}
.ws5{word-spacing:-11.880000px;}
.ws4{word-spacing:-11.592000px;}
.ws7{word-spacing:-10.612800px;}
.ws6{word-spacing:-10.357800px;}
.wsd{word-spacing:-9.979200px;}
.ws8{word-spacing:-0.062992px;}
.wsa{word-spacing:0.000000px;}
._0{margin-left:-1.138560px;}
._1{width:1.788480px;}
._4{width:3.258240px;}
._1d{width:4.344960px;}
._2e{width:6.013440px;}
._27{width:7.257600px;}
._c{width:8.409600px;}
._8{width:9.538560px;}
._10{width:10.743360px;}
._6{width:11.803200px;}
._7{width:12.813120px;}
._17{width:13.863840px;}
._f{width:15.711360px;}
._1f{width:17.072640px;}
._a{width:18.679680px;}
._15{width:19.884480px;}
._6c{width:20.922240px;}
._9{width:21.925440px;}
._13{width:22.997760px;}
._1c{width:24.883200px;}
._11{width:26.839680px;}
._4b{width:28.062720px;}
._19{width:29.132160px;}
._18{width:30.205440px;}
._4c{width:31.311360px;}
._d{width:32.337600px;}
._b{width:33.782400px;}
._2{width:34.984320px;}
._3{width:36.223680px;}
._1e{width:38.223360px;}
._20{width:39.951360px;}
._3b{width:41.245440px;}
._57{width:42.504960px;}
._31{width:43.545600px;}
._e{width:44.712000px;}
._6b{width:45.835200px;}
._2a{width:46.896000px;}
._5{width:48.355200px;}
._32{width:49.628160px;}
._44{width:51.112320px;}
._43{width:52.185600px;}
._54{width:53.982720px;}
._40{width:55.226880px;}
._6d{width:56.401920px;}
._3d{width:57.540480px;}
._35{width:58.890240px;}
._5a{width:59.927040px;}
._1b{width:61.488000px;}
._41{width:62.582400px;}
._45{width:63.692160px;}
._28{width:65.041920px;}
._51{width:66.424320px;}
._63{width:68.014080px;}
._12{width:69.022080px;}
._14{width:70.216320px;}
._65{width:71.272320px;}
._5d{width:72.506880px;}
._22{width:74.096640px;}
._21{width:75.133440px;}
._5f{width:76.584960px;}
._60{width:77.621760px;}
._38{width:78.898560px;}
._37{width:79.902720px;}
._50{width:81.768960px;}
._47{width:83.082240px;}
._76{width:84.533760px;}
._26{width:85.704960px;}
._25{width:86.814720px;}
._5e{width:87.929280px;}
._23{width:89.233920px;}
._24{width:90.339840px;}
._73{width:91.514880px;}
._36{width:92.759040px;}
._2f{width:94.072320px;}
._52{width:95.650560px;}
._6a{width:97.459200px;}
._29{width:99.532800px;}
._46{width:100.740480px;}
._59{width:101.813760px;}
._2c{width:103.196160px;}
._2b{width:104.440320px;}
._79{width:107.550720px;}
._3c{width:109.071360px;}
._1a{width:110.661120px;}
._33{width:112.043520px;}
._7c{width:113.771520px;}
._3f{width:115.983360px;}
._48{width:117.296640px;}
._56{width:118.296960px;}
._61{width:119.577600px;}
._2d{width:121.098240px;}
._53{width:122.411520px;}
._6e{width:123.724800px;}
._78{width:125.176320px;}
._4f{width:127.457280px;}
._3e{width:129.945600px;}
._16{width:132.106560px;}
._69{width:134.576640px;}
._90{width:136.781760px;}
._34{width:139.898880px;}
._64{width:141.143040px;}
._58{width:142.387200px;}
._8a{width:144.460800px;}
._74{width:146.672640px;}
._30{width:155.312640px;}
._72{width:156.487680px;}
._71{width:157.593600px;}
._82{width:159.598080px;}
._7b{width:161.118720px;}
._8d{width:163.123200px;}
._62{width:165.196800px;}
._66{width:166.855680px;}
._4a{width:171.492480px;}
._42{width:173.145600px;}
._55{width:175.459200px;}
._7d{width:178.606080px;}
._67{width:190.840320px;}
._70{width:200.793600px;}
._75{width:203.904000px;}
._5b{width:205.493760px;}
._81{width:212.835840px;}
._6f{width:215.516160px;}
._7a{width:218.903040px;}
._3a{width:220.319040px;}
._4d{width:226.229760px;}
._7f{width:229.530240px;}
._86{width:236.943360px;}
._84{width:238.602240px;}
._83{width:240.018480px;}
._39{width:245.583360px;}
._4e{width:247.518720px;}
._77{width:268.449600px;}
._85{width:312.145920px;}
._8f{width:328.755840px;}
._8c{width:356.313600px;}
._49{width:359.318400px;}
._68{width:407.840640px;}
._89{width:427.438080px;}
._87{width:468.735360px;}
._88{width:490.129920px;}
._5c{width:519.815040px;}
._80{width:521.335680px;}
._7e{width:575.560800px;}
._8e{width:600.791040px;}
._8b{width:753.338880px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(77,128,85);}
.fc4{color:rgb(33,37,41);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fsb{font-size:50.848916px;}
.fs7{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs9{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fsc{font-size:92.880000px;}
.fs2{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:0.180000px;}
.y59{bottom:2.685000px;}
.y14{bottom:3.240000px;}
.y35{bottom:3.765000px;}
.y6{bottom:4.140000px;}
.y61{bottom:4.170000px;}
.y39{bottom:5.400000px;}
.yb{bottom:5.760000px;}
.y40{bottom:6.120000px;}
.y5b{bottom:7.185000px;}
.y11{bottom:9.900000px;}
.y54{bottom:14.925000px;}
.y58{bottom:16.725000px;}
.y5d{bottom:18.885000px;}
.y13{bottom:19.080000px;}
.y34{bottom:23.025000px;}
.y38{bottom:23.580000px;}
.y5{bottom:23.610000px;}
.y3e{bottom:23.760000px;}
.y53{bottom:27.525000px;}
.y57{bottom:30.765000px;}
.y4a{bottom:31.680000px;}
.y4c{bottom:31.860000px;}
.y64{bottom:34.200000px;}
.y47{bottom:34.920000px;}
.y10{bottom:36.180000px;}
.y5c{bottom:36.705000px;}
.y37{bottom:41.760000px;}
.y33{bottom:42.465000px;}
.y4{bottom:42.870000px;}
.y56{bottom:44.985000px;}
.y9{bottom:46.980000px;}
.y50{bottom:50.745000px;}
.y46{bottom:50.760000px;}
.y63{bottom:54.000000px;}
.y52{bottom:59.925000px;}
.y55{bottom:61.185000px;}
.y32{bottom:61.725000px;}
.yf{bottom:62.460000px;}
.y60{bottom:63.750000px;}
.y3{bottom:63.930000px;}
.y4f{bottom:66.585000px;}
.y45{bottom:66.600000px;}
.y8{bottom:66.780000px;}
.y31{bottom:81.165000px;}
.y4e{bottom:82.245000px;}
.ye{bottom:89.280000px;}
.y49{bottom:93.780000px;}
.y4d{bottom:98.085000px;}
.y30{bottom:100.425000px;}
.yd{bottom:119.700000px;}
.y2f{bottom:119.910000px;}
.y8a{bottom:128.520000px;}
.y2e{bottom:139.170000px;}
.y89{bottom:154.800000px;}
.y2d{bottom:158.430000px;}
.y2c{bottom:177.870000px;}
.y88{bottom:181.080000px;}
.y5e{bottom:195.120000px;}
.y2b{bottom:197.130000px;}
.y87{bottom:207.390000px;}
.y5a{bottom:214.425000px;}
.y2a{bottom:216.570000px;}
.y86{bottom:233.670000px;}
.y29{bottom:235.830000px;}
.y28{bottom:255.270000px;}
.y85{bottom:260.130000px;}
.y51{bottom:262.485000px;}
.y27{bottom:274.530000px;}
.y84{bottom:286.410000px;}
.y26{bottom:293.970000px;}
.y83{bottom:312.690000px;}
.y25{bottom:313.230000px;}
.y24{bottom:332.670000px;}
.y15{bottom:335.025000px;}
.y82{bottom:338.970000px;}
.y23{bottom:351.960000px;}
.y81{bottom:365.250000px;}
.y22{bottom:371.400000px;}
.y21{bottom:390.660000px;}
.y80{bottom:391.530000px;}
.y20{bottom:410.100000px;}
.y7f{bottom:417.810000px;}
.y1f{bottom:429.360000px;}
.y7e{bottom:444.135000px;}
.y4b{bottom:445.755000px;}
.y1e{bottom:448.620000px;}
.y1d{bottom:468.060000px;}
.y7d{bottom:470.415000px;}
.y1c{bottom:487.320000px;}
.y7c{bottom:496.695000px;}
.y48{bottom:500.295000px;}
.y1b{bottom:506.760000px;}
.y7b{bottom:522.975000px;}
.y1a{bottom:526.020000px;}
.y19{bottom:545.460000px;}
.y7a{bottom:549.255000px;}
.y18{bottom:564.720000px;}
.y79{bottom:575.535000px;}
.y17{bottom:584.205000px;}
.y78{bottom:601.815000px;}
.y16{bottom:603.465000px;}
.y44{bottom:606.675000px;}
.y77{bottom:628.095000px;}
.y76{bottom:654.375000px;}
.y75{bottom:680.685000px;}
.y43{bottom:685.905000px;}
.y42{bottom:704.085000px;}
.y74{bottom:706.965000px;}
.y41{bottom:722.265000px;}
.y73{bottom:733.425000px;}
.y3f{bottom:740.445000px;}
.y3d{bottom:758.625000px;}
.y72{bottom:759.705000px;}
.y71{bottom:785.985000px;}
.y3c{bottom:795.165000px;}
.y70{bottom:812.265000px;}
.y3b{bottom:813.345000px;}
.y3a{bottom:831.525000px;}
.y6f{bottom:838.545000px;}
.y6e{bottom:864.825000px;}
.y36{bottom:867.885000px;}
.y6d{bottom:891.105000px;}
.y8b{bottom:891.825000px;}
.y6c{bottom:917.430000px;}
.y12{bottom:922.470000px;}
.y6b{bottom:943.710000px;}
.yc{bottom:954.150000px;}
.y6a{bottom:969.990000px;}
.y69{bottom:996.270000px;}
.y68{bottom:1022.550000px;}
.y67{bottom:1048.830000px;}
.y66{bottom:1075.110000px;}
.ya{bottom:1092.390000px;}
.y65{bottom:1101.390000px;}
.y7{bottom:1118.130000px;}
.y62{bottom:1122.450000px;}
.y1{bottom:1137.030000px;}
.y5f{bottom:1141.350000px;}
.h12{height:18.180000px;}
.h7{height:21.225000px;}
.hb{height:31.665000px;}
.h11{height:36.360000px;}
.h13{height:36.540000px;}
.h1a{height:40.843828px;}
.h1c{height:43.060897px;}
.h14{height:43.282266px;}
.h1d{height:44.820000px;}
.hc{height:45.720703px;}
.hd{height:46.986328px;}
.h1b{height:48.045000px;}
.h17{height:54.525000px;}
.h10{height:54.562500px;}
.h5{height:56.084062px;}
.hf{height:57.636562px;}
.ha{height:58.522500px;}
.h20{height:60.142500px;}
.h8{height:60.960938px;}
.h1e{height:63.492188px;}
.h6{height:65.837812px;}
.h3{height:65.884219px;}
.h21{height:71.044468px;}
.h19{height:72.525000px;}
.h15{height:79.230000px;}
.h1f{height:83.190000px;}
.h2{height:83.370000px;}
.h16{height:106.365000px;}
.h18{height:110.721000px;}
.h4{height:117.792422px;}
.h9{height:138.225000px;}
.he{height:619.110000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:82.609500px;}
.wa{width:95.601000px;}
.w2{width:115.189500px;}
.w4{width:156.949500px;}
.w7{width:178.219500px;}
.w8{width:515.085000px;}
.w5{width:536.355000px;}
.w3{width:578.115000px;}
.w6{width:693.315000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.130000px;}
.x6{left:14.565000px;}
.x17{left:25.729500px;}
.x15{left:31.129500px;}
.x1c{left:34.729500px;}
.x16{left:61.723500px;}
.x19{left:89.083500px;}
.x2{left:91.243500px;}
.x7{left:94.530000px;}
.x5{left:96.690000px;}
.x1{left:99.946500px;}
.x1a{left:101.323500px;}
.x11{left:104.743500px;}
.x8{left:108.036000px;}
.xc{left:109.423500px;}
.x27{left:113.076000px;}
.x18{left:118.423500px;}
.x1b{left:129.583500px;}
.x1d{left:134.083500px;}
.x28{left:140.076000px;}
.x1e{left:155.880000px;}
.x22{left:162.030000px;}
.x14{left:170.128500px;}
.xe{left:171.928500px;}
.x13{left:182.565000px;}
.x1f{left:189.750000px;}
.x4{left:206.490000px;}
.x3{left:215.145000px;}
.xd{left:230.608500px;}
.xf{left:251.308500px;}
.xa{left:256.905000px;}
.x12{left:278.175000px;}
.x10{left:346.558500px;}
.x20{left:468.075000px;}
.x24{left:473.145000px;}
.x21{left:475.275000px;}
.x25{left:478.185000px;}
.x26{left:505.185000px;}
.x23{left:527.145000px;}
.x9{left:762.810000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.ls14{letter-spacing:-0.821333pt;}
.ls11{letter-spacing:-0.650667pt;}
.ls23{letter-spacing:-0.440533pt;}
.ls18{letter-spacing:-0.435200pt;}
.ls22{letter-spacing:-0.363733pt;}
.ls6{letter-spacing:-0.297067pt;}
.ls1b{letter-spacing:-0.286933pt;}
.ls7{letter-spacing:-0.274133pt;}
.ls9{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.226667pt;}
.lsb{letter-spacing:-0.213333pt;}
.ls1e{letter-spacing:-0.117867pt;}
.ls5{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.005120pt;}
.lsf{letter-spacing:0.015360pt;}
.ls17{letter-spacing:0.062720pt;}
.ls8{letter-spacing:0.074133pt;}
.ls21{letter-spacing:0.081920pt;}
.ls20{letter-spacing:0.082133pt;}
.ls1a{letter-spacing:0.097067pt;}
.lse{letter-spacing:0.107733pt;}
.ls24{letter-spacing:0.199467pt;}
.ls15{letter-spacing:0.199680pt;}
.ls1f{letter-spacing:0.204800pt;}
.ls16{letter-spacing:0.245760pt;}
.ls2{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.395323pt;}
.ls4{letter-spacing:3.152640pt;}
.ls13{letter-spacing:9.523200pt;}
.ls1c{letter-spacing:32.199680pt;}
.ls10{letter-spacing:38.323200pt;}
.ls12{letter-spacing:45.363200pt;}
.lsd{letter-spacing:49.203200pt;}
.ls0{letter-spacing:62.566400pt;}
.lsc{letter-spacing:81.843200pt;}
.ls1d{letter-spacing:104.243200pt;}
.ws2{word-spacing:-58.880000pt;}
.ws9{word-spacing:-55.992837pt;}
.ws3{word-spacing:-15.280533pt;}
.ws14{word-spacing:-13.716267pt;}
.wsb{word-spacing:-13.624533pt;}
.wsf{word-spacing:-13.613867pt;}
.ws12{word-spacing:-13.598933pt;}
.wse{word-spacing:-13.521920pt;}
.wsc{word-spacing:-13.516800pt;}
.ws11{word-spacing:-13.398933pt;}
.ws10{word-spacing:-13.229867pt;}
.ws13{word-spacing:-13.076267pt;}
.ws1{word-spacing:-12.953600pt;}
.ws0{word-spacing:-12.656533pt;}
.ws5{word-spacing:-10.560000pt;}
.ws4{word-spacing:-10.304000pt;}
.ws7{word-spacing:-9.433600pt;}
.ws6{word-spacing:-9.206933pt;}
.wsd{word-spacing:-8.870400pt;}
.ws8{word-spacing:-0.055993pt;}
.wsa{word-spacing:0.000000pt;}
._0{margin-left:-1.012053pt;}
._1{width:1.589760pt;}
._4{width:2.896213pt;}
._1d{width:3.862187pt;}
._2e{width:5.345280pt;}
._27{width:6.451200pt;}
._c{width:7.475200pt;}
._8{width:8.478720pt;}
._10{width:9.549653pt;}
._6{width:10.491733pt;}
._7{width:11.389440pt;}
._17{width:12.323413pt;}
._f{width:13.965653pt;}
._1f{width:15.175680pt;}
._a{width:16.604160pt;}
._15{width:17.675093pt;}
._6c{width:18.597547pt;}
._9{width:19.489280pt;}
._13{width:20.442453pt;}
._1c{width:22.118400pt;}
._11{width:23.857493pt;}
._4b{width:24.944640pt;}
._19{width:25.895253pt;}
._18{width:26.849280pt;}
._4c{width:27.832320pt;}
._d{width:28.744533pt;}
._b{width:30.028800pt;}
._2{width:31.097173pt;}
._3{width:32.198827pt;}
._1e{width:33.976320pt;}
._20{width:35.512320pt;}
._3b{width:36.662613pt;}
._57{width:37.782187pt;}
._31{width:38.707200pt;}
._e{width:39.744000pt;}
._6b{width:40.742400pt;}
._2a{width:41.685333pt;}
._5{width:42.982400pt;}
._32{width:44.113920pt;}
._44{width:45.433173pt;}
._43{width:46.387200pt;}
._54{width:47.984640pt;}
._40{width:49.090560pt;}
._6d{width:50.135040pt;}
._3d{width:51.147093pt;}
._35{width:52.346880pt;}
._5a{width:53.268480pt;}
._1b{width:54.656000pt;}
._41{width:55.628800pt;}
._45{width:56.615253pt;}
._28{width:57.815040pt;}
._51{width:59.043840pt;}
._63{width:60.456960pt;}
._12{width:61.352960pt;}
._14{width:62.414507pt;}
._65{width:63.353173pt;}
._5d{width:64.450560pt;}
._22{width:65.863680pt;}
._21{width:66.785280pt;}
._5f{width:68.075520pt;}
._60{width:68.997120pt;}
._38{width:70.132053pt;}
._37{width:71.024640pt;}
._50{width:72.683520pt;}
._47{width:73.850880pt;}
._76{width:75.141120pt;}
._26{width:76.182187pt;}
._25{width:77.168640pt;}
._5e{width:78.159360pt;}
._23{width:79.319040pt;}
._24{width:80.302080pt;}
._73{width:81.346560pt;}
._36{width:82.452480pt;}
._2f{width:83.619840pt;}
._52{width:85.022720pt;}
._6a{width:86.630400pt;}
._29{width:88.473600pt;}
._46{width:89.547093pt;}
._59{width:90.501120pt;}
._2c{width:91.729920pt;}
._2b{width:92.835840pt;}
._79{width:95.600640pt;}
._3c{width:96.952320pt;}
._1a{width:98.365440pt;}
._33{width:99.594240pt;}
._7c{width:101.130240pt;}
._3f{width:103.096320pt;}
._48{width:104.263680pt;}
._56{width:105.152853pt;}
._61{width:106.291200pt;}
._2d{width:107.642880pt;}
._53{width:108.810240pt;}
._6e{width:109.977600pt;}
._78{width:111.267840pt;}
._4f{width:113.295360pt;}
._3e{width:115.507200pt;}
._16{width:117.428053pt;}
._69{width:119.623680pt;}
._90{width:121.583787pt;}
._34{width:124.354560pt;}
._64{width:125.460480pt;}
._58{width:126.566400pt;}
._8a{width:128.409600pt;}
._74{width:130.375680pt;}
._30{width:138.055680pt;}
._72{width:139.100160pt;}
._71{width:140.083200pt;}
._82{width:141.864960pt;}
._7b{width:143.216640pt;}
._8d{width:144.998400pt;}
._62{width:146.841600pt;}
._66{width:148.316160pt;}
._4a{width:152.437760pt;}
._42{width:153.907200pt;}
._55{width:155.963733pt;}
._7d{width:158.760960pt;}
._67{width:169.635840pt;}
._70{width:178.483200pt;}
._75{width:181.248000pt;}
._5b{width:182.661120pt;}
._81{width:189.187413pt;}
._6f{width:191.569920pt;}
._7a{width:194.580480pt;}
._3a{width:195.839147pt;}
._4d{width:201.093120pt;}
._7f{width:204.026880pt;}
._86{width:210.616320pt;}
._84{width:212.090880pt;}
._83{width:213.349760pt;}
._39{width:218.296320pt;}
._4e{width:220.016640pt;}
._77{width:238.621867pt;}
._85{width:277.463040pt;}
._8f{width:292.227413pt;}
._8c{width:316.723200pt;}
._49{width:319.394133pt;}
._68{width:362.525013pt;}
._89{width:379.944960pt;}
._87{width:416.653653pt;}
._88{width:435.671040pt;}
._5c{width:462.057813pt;}
._80{width:463.409493pt;}
._7e{width:511.609600pt;}
._8e{width:534.036480pt;}
._8b{width:669.634560pt;}
.fsd{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fsb{font-size:45.199037pt;}
.fs7{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs9{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fsc{font-size:82.560000pt;}
.fs2{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:0.160000pt;}
.y59{bottom:2.386667pt;}
.y14{bottom:2.880000pt;}
.y35{bottom:3.346667pt;}
.y6{bottom:3.680000pt;}
.y61{bottom:3.706667pt;}
.y39{bottom:4.800000pt;}
.yb{bottom:5.120000pt;}
.y40{bottom:5.440000pt;}
.y5b{bottom:6.386667pt;}
.y11{bottom:8.800000pt;}
.y54{bottom:13.266667pt;}
.y58{bottom:14.866667pt;}
.y5d{bottom:16.786667pt;}
.y13{bottom:16.960000pt;}
.y34{bottom:20.466667pt;}
.y38{bottom:20.960000pt;}
.y5{bottom:20.986667pt;}
.y3e{bottom:21.120000pt;}
.y53{bottom:24.466667pt;}
.y57{bottom:27.346667pt;}
.y4a{bottom:28.160000pt;}
.y4c{bottom:28.320000pt;}
.y64{bottom:30.400000pt;}
.y47{bottom:31.040000pt;}
.y10{bottom:32.160000pt;}
.y5c{bottom:32.626667pt;}
.y37{bottom:37.120000pt;}
.y33{bottom:37.746667pt;}
.y4{bottom:38.106667pt;}
.y56{bottom:39.986667pt;}
.y9{bottom:41.760000pt;}
.y50{bottom:45.106667pt;}
.y46{bottom:45.120000pt;}
.y63{bottom:48.000000pt;}
.y52{bottom:53.266667pt;}
.y55{bottom:54.386667pt;}
.y32{bottom:54.866667pt;}
.yf{bottom:55.520000pt;}
.y60{bottom:56.666667pt;}
.y3{bottom:56.826667pt;}
.y4f{bottom:59.186667pt;}
.y45{bottom:59.200000pt;}
.y8{bottom:59.360000pt;}
.y31{bottom:72.146667pt;}
.y4e{bottom:73.106667pt;}
.ye{bottom:79.360000pt;}
.y49{bottom:83.360000pt;}
.y4d{bottom:87.186667pt;}
.y30{bottom:89.266667pt;}
.yd{bottom:106.400000pt;}
.y2f{bottom:106.586667pt;}
.y8a{bottom:114.240000pt;}
.y2e{bottom:123.706667pt;}
.y89{bottom:137.600000pt;}
.y2d{bottom:140.826667pt;}
.y2c{bottom:158.106667pt;}
.y88{bottom:160.960000pt;}
.y5e{bottom:173.440000pt;}
.y2b{bottom:175.226667pt;}
.y87{bottom:184.346667pt;}
.y5a{bottom:190.600000pt;}
.y2a{bottom:192.506667pt;}
.y86{bottom:207.706667pt;}
.y29{bottom:209.626667pt;}
.y28{bottom:226.906667pt;}
.y85{bottom:231.226667pt;}
.y51{bottom:233.320000pt;}
.y27{bottom:244.026667pt;}
.y84{bottom:254.586667pt;}
.y26{bottom:261.306667pt;}
.y83{bottom:277.946667pt;}
.y25{bottom:278.426667pt;}
.y24{bottom:295.706667pt;}
.y15{bottom:297.800000pt;}
.y82{bottom:301.306667pt;}
.y23{bottom:312.853333pt;}
.y81{bottom:324.666667pt;}
.y22{bottom:330.133333pt;}
.y21{bottom:347.253333pt;}
.y80{bottom:348.026667pt;}
.y20{bottom:364.533333pt;}
.y7f{bottom:371.386667pt;}
.y1f{bottom:381.653333pt;}
.y7e{bottom:394.786667pt;}
.y4b{bottom:396.226667pt;}
.y1e{bottom:398.773333pt;}
.y1d{bottom:416.053333pt;}
.y7d{bottom:418.146667pt;}
.y1c{bottom:433.173333pt;}
.y7c{bottom:441.506667pt;}
.y48{bottom:444.706667pt;}
.y1b{bottom:450.453333pt;}
.y7b{bottom:464.866667pt;}
.y1a{bottom:467.573333pt;}
.y19{bottom:484.853333pt;}
.y7a{bottom:488.226667pt;}
.y18{bottom:501.973333pt;}
.y79{bottom:511.586667pt;}
.y17{bottom:519.293333pt;}
.y78{bottom:534.946667pt;}
.y16{bottom:536.413333pt;}
.y44{bottom:539.266667pt;}
.y77{bottom:558.306667pt;}
.y76{bottom:581.666667pt;}
.y75{bottom:605.053333pt;}
.y43{bottom:609.693333pt;}
.y42{bottom:625.853333pt;}
.y74{bottom:628.413333pt;}
.y41{bottom:642.013333pt;}
.y73{bottom:651.933333pt;}
.y3f{bottom:658.173333pt;}
.y3d{bottom:674.333333pt;}
.y72{bottom:675.293333pt;}
.y71{bottom:698.653333pt;}
.y3c{bottom:706.813333pt;}
.y70{bottom:722.013333pt;}
.y3b{bottom:722.973333pt;}
.y3a{bottom:739.133333pt;}
.y6f{bottom:745.373333pt;}
.y6e{bottom:768.733333pt;}
.y36{bottom:771.453333pt;}
.y6d{bottom:792.093333pt;}
.y8b{bottom:792.733333pt;}
.y6c{bottom:815.493333pt;}
.y12{bottom:819.973333pt;}
.y6b{bottom:838.853333pt;}
.yc{bottom:848.133333pt;}
.y6a{bottom:862.213333pt;}
.y69{bottom:885.573333pt;}
.y68{bottom:908.933333pt;}
.y67{bottom:932.293333pt;}
.y66{bottom:955.653333pt;}
.ya{bottom:971.013333pt;}
.y65{bottom:979.013333pt;}
.y7{bottom:993.893333pt;}
.y62{bottom:997.733333pt;}
.y1{bottom:1010.693333pt;}
.y5f{bottom:1014.533333pt;}
.h12{height:16.160000pt;}
.h7{height:18.866667pt;}
.hb{height:28.146667pt;}
.h11{height:32.320000pt;}
.h13{height:32.480000pt;}
.h1a{height:36.305625pt;}
.h1c{height:38.276353pt;}
.h14{height:38.473125pt;}
.h1d{height:39.840000pt;}
.hc{height:40.640625pt;}
.hd{height:41.765625pt;}
.h1b{height:42.706667pt;}
.h17{height:48.466667pt;}
.h10{height:48.500000pt;}
.h5{height:49.852500pt;}
.hf{height:51.232500pt;}
.ha{height:52.020000pt;}
.h20{height:53.460000pt;}
.h8{height:54.187500pt;}
.h1e{height:56.437500pt;}
.h6{height:58.522500pt;}
.h3{height:58.563750pt;}
.h21{height:63.150638pt;}
.h19{height:64.466667pt;}
.h15{height:70.426667pt;}
.h1f{height:73.946667pt;}
.h2{height:74.106667pt;}
.h16{height:94.546667pt;}
.h18{height:98.418667pt;}
.h4{height:104.704375pt;}
.h9{height:122.866667pt;}
.he{height:550.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:73.430667pt;}
.wa{width:84.978667pt;}
.w2{width:102.390667pt;}
.w4{width:139.510667pt;}
.w7{width:158.417333pt;}
.w8{width:457.853333pt;}
.w5{width:476.760000pt;}
.w3{width:513.880000pt;}
.w6{width:616.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.226667pt;}
.x6{left:12.946667pt;}
.x17{left:22.870667pt;}
.x15{left:27.670667pt;}
.x1c{left:30.870667pt;}
.x16{left:54.865333pt;}
.x19{left:79.185333pt;}
.x2{left:81.105333pt;}
.x7{left:84.026667pt;}
.x5{left:85.946667pt;}
.x1{left:88.841333pt;}
.x1a{left:90.065333pt;}
.x11{left:93.105333pt;}
.x8{left:96.032000pt;}
.xc{left:97.265333pt;}
.x27{left:100.512000pt;}
.x18{left:105.265333pt;}
.x1b{left:115.185333pt;}
.x1d{left:119.185333pt;}
.x28{left:124.512000pt;}
.x1e{left:138.560000pt;}
.x22{left:144.026667pt;}
.x14{left:151.225333pt;}
.xe{left:152.825333pt;}
.x13{left:162.280000pt;}
.x1f{left:168.666667pt;}
.x4{left:183.546667pt;}
.x3{left:191.240000pt;}
.xd{left:204.985333pt;}
.xf{left:223.385333pt;}
.xa{left:228.360000pt;}
.x12{left:247.266667pt;}
.x10{left:308.052000pt;}
.x20{left:416.066667pt;}
.x24{left:420.573333pt;}
.x21{left:422.466667pt;}
.x25{left:425.053333pt;}
.x26{left:449.053333pt;}
.x23{left:468.573333pt;}
.x9{left:678.053333pt;}
}




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