
    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_715bbdd3340245bafd16c518.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_6c0cb95b24311fd9cac38090.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e30b2a1bc556ed84f1d850fa.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_beff3d630886c27f9116520c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_704a7211ec86e05582020307.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_79842184f72a8cf48c6daf7b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_d8ffcf76e6aa0c459de80333.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_c677a94bafef99e9026dfe7e.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bfa1d219bd8306b840a13ca4.woff')format("woff");}.ffc{font-family:ffc;line-height:0.694336;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_f37fd68f0008a4b8de84cd8e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.886719;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_a0aefe0329b7c617fc01d423.woff')format("woff");}.ffe{font-family:ffe;line-height:0.914062;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.fff{font-family:fff;line-height:0.910156;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:ff10;src:url('chunks/assets/font_a4774cdf8642e8350daa53b9.woff')format("woff");}.ff10{font-family:ff10;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;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_0d5e59582a36fb0d20cdacc2.woff')format("woff");}.ff12{font-family:ff12;line-height:0.793457;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;}
.m3{transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216215,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.219513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219513,0.000000,0.000000,0.250000,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(0.371625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371625,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);}
.v2{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls1e{letter-spacing:-2.310000px;}
.ls14{letter-spacing:-2.016000px;}
.ls12{letter-spacing:-1.440000px;}
.ls13{letter-spacing:-1.296000px;}
.ls20{letter-spacing:-1.176000px;}
.ls10{letter-spacing:-1.026000px;}
.ls11{letter-spacing:-0.984000px;}
.lsf{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.612000px;}
.ls18{letter-spacing:-0.414600px;}
.ls17{letter-spacing:-0.305400px;}
.ls1c{letter-spacing:-0.226200px;}
.ls7{letter-spacing:-0.190200px;}
.ls21{letter-spacing:-0.152400px;}
.ls9{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.114000px;}
.ls1d{letter-spacing:-0.109200px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078000px;}
.ls5{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls1f{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.576000px;}
.ls16{letter-spacing:10.800000px;}
.ls15{letter-spacing:14.400000px;}
.ls1b{letter-spacing:20.340000px;}
.ls19{letter-spacing:47.520000px;}
.lsd{letter-spacing:55.745280px;}
.ls1a{letter-spacing:56.160000px;}
.lsc{letter-spacing:60.041280px;}
.lse{letter-spacing:849.185760px;}
.sc_{text-shadow:none;}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-66.240000px;}
.wsf{word-spacing:-36.720000px;}
.ws10{word-spacing:-36.000000px;}
.wse{word-spacing:-34.560000px;}
.ws8{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws17{word-spacing:-16.865400px;}
.ws9{word-spacing:-16.560000px;}
.ws15{word-spacing:-16.450800px;}
.ws19{word-spacing:-16.407600px;}
.ws12{word-spacing:-16.254600px;}
.ws6{word-spacing:-15.948000px;}
.ws4{word-spacing:-15.912000px;}
.wsb{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.696000px;}
.wsd{word-spacing:-15.576000px;}
.wsc{word-spacing:-15.534000px;}
.ws18{word-spacing:-15.384000px;}
.ws13{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.650800px;}
.ws16{word-spacing:-14.250000px;}
.ws11{word-spacing:-10.440000px;}
.ws14{word-spacing:-10.213800px;}
.ws7{word-spacing:0.000000px;}
._24{margin-left:-13.476960px;}
._23{margin-left:-12.207120px;}
._22{margin-left:-9.110400px;}
._3e{margin-left:-3.770640px;}
._3{margin-left:-2.142000px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._5{width:3.003120px;}
._4{width:4.744080px;}
._2{width:6.032160px;}
._10{width:7.067520px;}
._a{width:8.696160px;}
._7{width:9.828000px;}
._6{width:11.120400px;}
._f{width:12.180720px;}
._e{width:13.636800px;}
._d{width:15.302160px;}
._9{width:17.575920px;}
._8{width:18.591840px;}
._13{width:19.630800px;}
._b{width:21.550320px;}
._c{width:22.711680px;}
._14{width:23.741280px;}
._20{width:25.074720px;}
._25{width:26.175600px;}
._26{width:27.713520px;}
._36{width:28.726560px;}
._1f{width:29.918880px;}
._1b{width:31.057920px;}
._1c{width:32.493600px;}
._27{width:33.562080px;}
._28{width:35.357760px;}
._17{width:36.595440px;}
._15{width:37.704240px;}
._16{width:38.869920px;}
._21{width:40.596480px;}
._1d{width:42.464160px;}
._1e{width:43.872960px;}
._39{width:45.579120px;}
._2c{width:46.721520px;}
._2b{width:48.068640px;}
._32{width:49.592160px;}
._12{width:51.768000px;}
._11{width:53.323920px;}
._48{width:54.714240px;}
._37{width:56.626560px;}
._38{width:57.651120px;}
._2e{width:59.033520px;}
._2f{width:60.614640px;}
._4d{width:62.128560px;}
._33{width:65.777040px;}
._41{width:67.314960px;}
._42{width:68.543280px;}
._49{width:70.001280px;}
._4f{width:71.280000px;}
._40{width:72.599040px;}
._3d{width:74.047680px;}
._3c{width:75.385440px;}
._2d{width:76.441680px;}
._44{width:78.693120px;}
._45{width:79.775280px;}
._29{width:81.100080px;}
._2a{width:82.668240px;}
._47{width:84.361680px;}
._52{width:89.804160px;}
._34{width:93.132720px;}
._46{width:94.414320px;}
._3b{width:101.250720px;}
._3a{width:102.426480px;}
._35{width:105.931440px;}
._51{width:107.615520px;}
._4a{width:112.674240px;}
._4b{width:113.927040px;}
._43{width:138.744720px;}
._1a{width:152.893440px;}
._4c{width:155.496000px;}
._4e{width:187.828080px;}
._18{width:189.617520px;}
._50{width:192.190080px;}
._19{width:197.647200px;}
._3f{width:203.826240px;}
._31{width:215.310240px;}
._30{width:216.985680px;}
._53{width:847.596000px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc4{color:rgb(40,40,40);}
.fc3{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fsb{font-size:41.760000px;}
.fs9{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.y93{bottom:0.180000px;}
.yc{bottom:0.900000px;}
.y19{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.ya9{bottom:3.225000px;}
.y3{bottom:3.420000px;}
.y9d{bottom:3.585000px;}
.y9b{bottom:3.780000px;}
.ya2{bottom:3.945000px;}
.ya0{bottom:4.125000px;}
.y9a{bottom:4.140000px;}
.yab{bottom:4.500000px;}
.yac{bottom:5.040000px;}
.y94{bottom:5.580000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.ya8{bottom:20.505000px;}
.y9f{bottom:23.025000px;}
.y16{bottom:26.505000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y15{bottom:47.925000px;}
.y1{bottom:58.680000px;}
.y14{bottom:70.785000px;}
.y3e{bottom:82.440000px;}
.y13{bottom:93.285000px;}
.ycf{bottom:112.140000px;}
.y69{bottom:119.160000px;}
.y3a{bottom:125.640000px;}
.yce{bottom:136.800000px;}
.y68{bottom:143.820000px;}
.y39{bottom:150.300000px;}
.ycd{bottom:161.460000px;}
.y67{bottom:168.480000px;}
.yad{bottom:168.660000px;}
.y38{bottom:174.960000px;}
.yaa{bottom:185.400000px;}
.ycc{bottom:186.120000px;}
.y66{bottom:192.780000px;}
.y72{bottom:193.140000px;}
.y37{bottom:199.620000px;}
.ycb{bottom:210.450000px;}
.yd2{bottom:210.810000px;}
.ya7{bottom:213.345000px;}
.y71{bottom:217.470000px;}
.y65{bottom:217.830000px;}
.y36{bottom:224.310000px;}
.yca{bottom:235.110000px;}
.yd1{bottom:235.470000px;}
.y70{bottom:242.130000px;}
.y64{bottom:242.490000px;}
.y35{bottom:248.970000px;}
.yc9{bottom:260.130000px;}
.y63{bottom:267.150000px;}
.y34{bottom:273.630000px;}
.ya6{bottom:278.850000px;}
.yc8{bottom:284.790000px;}
.y8f{bottom:291.450000px;}
.y62{bottom:291.810000px;}
.ya5{bottom:295.605000px;}
.y33{bottom:298.290000px;}
.yc7{bottom:309.450000px;}
.y8e{bottom:316.110000px;}
.y61{bottom:316.470000px;}
.y32{bottom:322.950000px;}
.yc6{bottom:334.110000px;}
.ya4{bottom:335.025000px;}
.y8d{bottom:340.770000px;}
.y60{bottom:341.130000px;}
.y31{bottom:347.610000px;}
.ya3{bottom:355.545000px;}
.yc5{bottom:358.770000px;}
.y8c{bottom:365.430000px;}
.y5f{bottom:365.790000px;}
.y30{bottom:372.270000px;}
.ya1{bottom:376.065000px;}
.yc4{bottom:383.430000px;}
.y5e{bottom:390.450000px;}
.y9e{bottom:396.405000px;}
.y2f{bottom:396.930000px;}
.yc3{bottom:408.090000px;}
.yd3{bottom:414.750000px;}
.y5d{bottom:415.110000px;}
.y2e{bottom:421.590000px;}
.yc2{bottom:432.750000px;}
.y89{bottom:435.090000px;}
.y9c{bottom:436.005000px;}
.y5c{bottom:439.770000px;}
.y2d{bottom:446.295000px;}
.y99{bottom:456.375000px;}
.yc1{bottom:457.455000px;}
.y88{bottom:459.795000px;}
.y5b{bottom:464.475000px;}
.y2c{bottom:470.955000px;}
.yc0{bottom:482.115000px;}
.y87{bottom:484.455000px;}
.y98{bottom:486.255000px;}
.y5a{bottom:488.775000px;}
.y6f{bottom:489.135000px;}
.y2b{bottom:495.615000px;}
.ybf{bottom:506.775000px;}
.y97{bottom:508.035000px;}
.y86{bottom:509.115000px;}
.y59{bottom:513.435000px;}
.y6e{bottom:513.795000px;}
.y2a{bottom:520.275000px;}
.y96{bottom:529.995000px;}
.ybe{bottom:531.435000px;}
.y85{bottom:533.955000px;}
.y6d{bottom:538.095000px;}
.y58{bottom:538.455000px;}
.y29{bottom:544.575000px;}
.y3b{bottom:544.935000px;}
.y95{bottom:551.775000px;}
.ybd{bottom:556.095000px;}
.y84{bottom:559.695000px;}
.y6c{bottom:562.755000px;}
.y57{bottom:563.115000px;}
.y91{bottom:567.075000px;}
.y28{bottom:569.595000px;}
.ybc{bottom:580.755000px;}
.y83{bottom:584.355000px;}
.y8b{bottom:587.415000px;}
.y56{bottom:587.775000px;}
.y27{bottom:593.715000px;}
.ybb{bottom:605.415000px;}
.y82{bottom:609.015000px;}
.y55{bottom:612.435000px;}
.y26{bottom:615.495000px;}
.yba{bottom:630.075000px;}
.y81{bottom:633.675000px;}
.y54{bottom:637.095000px;}
.y25{bottom:637.455000px;}
.yb9{bottom:654.735000px;}
.y80{bottom:658.335000px;}
.y24{bottom:659.235000px;}
.y53{bottom:661.755000px;}
.yb8{bottom:679.425000px;}
.y23{bottom:681.045000px;}
.y7f{bottom:683.025000px;}
.y52{bottom:686.445000px;}
.y22{bottom:702.825000px;}
.yb7{bottom:704.085000px;}
.y7e{bottom:707.685000px;}
.y51{bottom:711.285000px;}
.y21{bottom:724.605000px;}
.yb6{bottom:728.745000px;}
.y7d{bottom:733.425000px;}
.y50{bottom:735.945000px;}
.y20{bottom:746.565000px;}
.yb5{bottom:753.405000px;}
.y7c{bottom:758.085000px;}
.y4f{bottom:760.605000px;}
.y1f{bottom:768.345000px;}
.yb4{bottom:778.065000px;}
.y7b{bottom:782.745000px;}
.y4e{bottom:785.265000px;}
.y1e{bottom:790.125000px;}
.yb3{bottom:802.725000px;}
.y7a{bottom:807.405000px;}
.y4d{bottom:809.925000px;}
.y1d{bottom:811.905000px;}
.yb2{bottom:827.385000px;}
.y79{bottom:832.245000px;}
.y1c{bottom:833.865000px;}
.y6b{bottom:834.225000px;}
.y4c{bottom:834.585000px;}
.yb1{bottom:852.045000px;}
.y1b{bottom:855.645000px;}
.y78{bottom:856.905000px;}
.y6a{bottom:858.885000px;}
.y4b{bottom:859.245000px;}
.y92{bottom:859.965000px;}
.yb0{bottom:876.705000px;}
.y1a{bottom:877.065000px;}
.y77{bottom:882.645000px;}
.y4a{bottom:883.905000px;}
.y18{bottom:892.365000px;}
.y12{bottom:899.565000px;}
.yaf{bottom:901.185000px;}
.yd0{bottom:901.545000px;}
.y17{bottom:903.893143px;}
.y76{bottom:907.305000px;}
.y49{bottom:908.565000px;}
.yae{bottom:922.290000px;}
.y75{bottom:932.010000px;}
.y48{bottom:933.270000px;}
.y74{bottom:956.850000px;}
.y47{bottom:957.930000px;}
.y46{bottom:982.590000px;}
.y73{bottom:1006.890000px;}
.y45{bottom:1007.250000px;}
.y10{bottom:1018.590000px;}
.yd{bottom:1025.070000px;}
.y44{bottom:1031.910000px;}
.y43{bottom:1056.570000px;}
.yb{bottom:1076.550000px;}
.y8a{bottom:1080.870000px;}
.y42{bottom:1081.230000px;}
.y9{bottom:1081.950000px;}
.y41{bottom:1105.890000px;}
.y2{bottom:1106.250000px;}
.y7{bottom:1128.570000px;}
.y40{bottom:1130.550000px;}
.y90{bottom:1154.880000px;}
.y3f{bottom:1155.240000px;}
.y4{bottom:1156.860000px;}
.y3d{bottom:1172.880000px;}
.y3c{bottom:1189.080000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.200000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h26{height:18.885000px;}
.h24{height:18.921000px;}
.h11{height:19.008000px;}
.h23{height:19.065000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h29{height:26.316000px;}
.h7{height:28.290000px;}
.h25{height:37.965000px;}
.h2b{height:39.830273px;}
.h1b{height:40.843828px;}
.h2a{height:42.229687px;}
.h27{height:42.465000px;}
.h1d{height:46.251562px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h1c{height:58.621992px;}
.h28{height:60.226875px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h18{height:64.978594px;}
.h19{height:65.010937px;}
.h1a{height:66.757500px;}
.h14{height:67.803750px;}
.h1e{height:68.084282px;}
.h2c{height:71.225156px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h20{height:76.279219px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h3{height:103.530000px;}
.h12{height:119.002500px;}
.h21{height:260.850000px;}
.h22{height:292.890000px;}
.h1f{height:553.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:106.581000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.wd{width:115.549500px;}
.we{width:158.055000px;}
.wb{width:167.070000px;}
.wf{width:189.930000px;}
.wc{width:264.255000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w8{width:346.564500px;}
.w9{width:346.740000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:8.449500px;}
.x5{left:10.965000px;}
.x28{left:13.485000px;}
.x10{left:20.685000px;}
.x2c{left:28.110000px;}
.x2f{left:32.610000px;}
.xb{left:34.185000px;}
.x32{left:37.110000px;}
.x2a{left:42.283500px;}
.x31{left:47.190000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.x14{left:67.123500px;}
.x30{left:78.870000px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x21{left:99.946500px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x3c{left:118.656000px;}
.x20{left:129.276000px;}
.x29{left:133.606500px;}
.x1c{left:135.036000px;}
.x3e{left:136.836000px;}
.x34{left:139.896000px;}
.x16{left:146.863500px;}
.x19{left:162.030000px;}
.x17{left:164.008500px;}
.x4{left:168.885000px;}
.x24{left:173.370000px;}
.x25{left:176.085000px;}
.x35{left:197.670000px;}
.x6{left:209.010000px;}
.x15{left:218.548500px;}
.x2b{left:250.605000px;}
.x36{left:271.875000px;}
.x26{left:284.115000px;}
.x37{left:292.215000px;}
.x22{left:306.388500px;}
.x38{left:314.175000px;}
.x18{left:324.965515px;}
.x12{left:335.578500px;}
.x23{left:337.890000px;}
.x39{left:360.075000px;}
.x3a{left:382.035000px;}
.x3b{left:401.475000px;}
.x2d{left:410.115000px;}
.xa{left:445.620000px;}
.x27{left:452.640000px;}
.x1a{left:473.505000px;}
.x3d{left:484.125000px;}
.x1f{left:494.745000px;}
.x3f{left:502.305000px;}
.x1d{left:505.545000px;}
.x1e{left:515.985000px;}
.x1b{left:527.505000px;}
.x2e{left:601.500000px;}
.x33{left:614.445000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls1e{letter-spacing:-2.053333pt;}
.ls14{letter-spacing:-1.792000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls13{letter-spacing:-1.152000pt;}
.ls20{letter-spacing:-1.045333pt;}
.ls10{letter-spacing:-0.912000pt;}
.ls11{letter-spacing:-0.874667pt;}
.lsf{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls18{letter-spacing:-0.368533pt;}
.ls17{letter-spacing:-0.271467pt;}
.ls1c{letter-spacing:-0.201067pt;}
.ls7{letter-spacing:-0.169067pt;}
.ls21{letter-spacing:-0.135467pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.101333pt;}
.ls1d{letter-spacing:-0.097067pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069333pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls1f{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls16{letter-spacing:9.600000pt;}
.ls15{letter-spacing:12.800000pt;}
.ls1b{letter-spacing:18.080000pt;}
.ls19{letter-spacing:42.240000pt;}
.lsd{letter-spacing:49.551360pt;}
.ls1a{letter-spacing:49.920000pt;}
.lsc{letter-spacing:53.370027pt;}
.lse{letter-spacing:754.831787pt;}
.wsa{word-spacing:-58.880000pt;}
.wsf{word-spacing:-32.640000pt;}
.ws10{word-spacing:-32.000000pt;}
.wse{word-spacing:-30.720000pt;}
.ws8{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws17{word-spacing:-14.991467pt;}
.ws9{word-spacing:-14.720000pt;}
.ws15{word-spacing:-14.622933pt;}
.ws19{word-spacing:-14.584533pt;}
.ws12{word-spacing:-14.448533pt;}
.ws6{word-spacing:-14.176000pt;}
.ws4{word-spacing:-14.144000pt;}
.wsb{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.952000pt;}
.wsd{word-spacing:-13.845333pt;}
.wsc{word-spacing:-13.808000pt;}
.ws18{word-spacing:-13.674667pt;}
.ws13{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws16{word-spacing:-12.666667pt;}
.ws11{word-spacing:-9.280000pt;}
.ws14{word-spacing:-9.078933pt;}
.ws7{word-spacing:0.000000pt;}
._24{margin-left:-11.979520pt;}
._23{margin-left:-10.850773pt;}
._22{margin-left:-8.098133pt;}
._3e{margin-left:-3.351680pt;}
._3{margin-left:-1.904000pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._5{width:2.669440pt;}
._4{width:4.216960pt;}
._2{width:5.361920pt;}
._10{width:6.282240pt;}
._a{width:7.729920pt;}
._7{width:8.736000pt;}
._6{width:9.884800pt;}
._f{width:10.827307pt;}
._e{width:12.121600pt;}
._d{width:13.601920pt;}
._9{width:15.623040pt;}
._8{width:16.526080pt;}
._13{width:17.449600pt;}
._b{width:19.155840pt;}
._c{width:20.188160pt;}
._14{width:21.103360pt;}
._20{width:22.288640pt;}
._25{width:23.267200pt;}
._26{width:24.634240pt;}
._36{width:25.534720pt;}
._1f{width:26.594560pt;}
._1b{width:27.607040pt;}
._1c{width:28.883200pt;}
._27{width:29.832960pt;}
._28{width:31.429120pt;}
._17{width:32.529280pt;}
._15{width:33.514880pt;}
._16{width:34.551040pt;}
._21{width:36.085760pt;}
._1d{width:37.745920pt;}
._1e{width:38.998187pt;}
._39{width:40.514773pt;}
._2c{width:41.530240pt;}
._2b{width:42.727680pt;}
._32{width:44.081920pt;}
._12{width:46.016000pt;}
._11{width:47.399040pt;}
._48{width:48.634880pt;}
._37{width:50.334720pt;}
._38{width:51.245440pt;}
._2e{width:52.474240pt;}
._2f{width:53.879680pt;}
._4d{width:55.225387pt;}
._33{width:58.468480pt;}
._41{width:59.835520pt;}
._42{width:60.927360pt;}
._49{width:62.223360pt;}
._4f{width:63.360000pt;}
._40{width:64.532480pt;}
._3d{width:65.820160pt;}
._3c{width:67.009280pt;}
._2d{width:67.948160pt;}
._44{width:69.949440pt;}
._45{width:70.911360pt;}
._29{width:72.088960pt;}
._2a{width:73.482880pt;}
._47{width:74.988160pt;}
._52{width:79.825920pt;}
._34{width:82.784640pt;}
._46{width:83.923840pt;}
._3b{width:90.000640pt;}
._3a{width:91.045760pt;}
._35{width:94.161280pt;}
._51{width:95.658240pt;}
._4a{width:100.154880pt;}
._4b{width:101.268480pt;}
._43{width:123.328640pt;}
._1a{width:135.905280pt;}
._4c{width:138.218667pt;}
._4e{width:166.958293pt;}
._18{width:168.548907pt;}
._50{width:170.835627pt;}
._19{width:175.686400pt;}
._3f{width:181.178880pt;}
._31{width:191.386880pt;}
._30{width:192.876160pt;}
._53{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsb{font-size:37.120000pt;}
.fs9{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:0.160000pt;}
.yc{bottom:0.800000pt;}
.y19{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.ya9{bottom:2.866667pt;}
.y3{bottom:3.040000pt;}
.y9d{bottom:3.186667pt;}
.y9b{bottom:3.360000pt;}
.ya2{bottom:3.506667pt;}
.ya0{bottom:3.666667pt;}
.y9a{bottom:3.680000pt;}
.yab{bottom:4.000000pt;}
.yac{bottom:4.480000pt;}
.y94{bottom:4.960000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.ya8{bottom:18.226667pt;}
.y9f{bottom:20.466667pt;}
.y16{bottom:23.560000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y15{bottom:42.600000pt;}
.y1{bottom:52.160000pt;}
.y14{bottom:62.920000pt;}
.y3e{bottom:73.280000pt;}
.y13{bottom:82.920000pt;}
.ycf{bottom:99.680000pt;}
.y69{bottom:105.920000pt;}
.y3a{bottom:111.680000pt;}
.yce{bottom:121.600000pt;}
.y68{bottom:127.840000pt;}
.y39{bottom:133.600000pt;}
.ycd{bottom:143.520000pt;}
.y67{bottom:149.760000pt;}
.yad{bottom:149.920000pt;}
.y38{bottom:155.520000pt;}
.yaa{bottom:164.800000pt;}
.ycc{bottom:165.440000pt;}
.y66{bottom:171.360000pt;}
.y72{bottom:171.680000pt;}
.y37{bottom:177.440000pt;}
.ycb{bottom:187.066667pt;}
.yd2{bottom:187.386667pt;}
.ya7{bottom:189.640000pt;}
.y71{bottom:193.306667pt;}
.y65{bottom:193.626667pt;}
.y36{bottom:199.386667pt;}
.yca{bottom:208.986667pt;}
.yd1{bottom:209.306667pt;}
.y70{bottom:215.226667pt;}
.y64{bottom:215.546667pt;}
.y35{bottom:221.306667pt;}
.yc9{bottom:231.226667pt;}
.y63{bottom:237.466667pt;}
.y34{bottom:243.226667pt;}
.ya6{bottom:247.866667pt;}
.yc8{bottom:253.146667pt;}
.y8f{bottom:259.066667pt;}
.y62{bottom:259.386667pt;}
.ya5{bottom:262.760000pt;}
.y33{bottom:265.146667pt;}
.yc7{bottom:275.066667pt;}
.y8e{bottom:280.986667pt;}
.y61{bottom:281.306667pt;}
.y32{bottom:287.066667pt;}
.yc6{bottom:296.986667pt;}
.ya4{bottom:297.800000pt;}
.y8d{bottom:302.906667pt;}
.y60{bottom:303.226667pt;}
.y31{bottom:308.986667pt;}
.ya3{bottom:316.040000pt;}
.yc5{bottom:318.906667pt;}
.y8c{bottom:324.826667pt;}
.y5f{bottom:325.146667pt;}
.y30{bottom:330.906667pt;}
.ya1{bottom:334.280000pt;}
.yc4{bottom:340.826667pt;}
.y5e{bottom:347.066667pt;}
.y9e{bottom:352.360000pt;}
.y2f{bottom:352.826667pt;}
.yc3{bottom:362.746667pt;}
.yd3{bottom:368.666667pt;}
.y5d{bottom:368.986667pt;}
.y2e{bottom:374.746667pt;}
.yc2{bottom:384.666667pt;}
.y89{bottom:386.746667pt;}
.y9c{bottom:387.560000pt;}
.y5c{bottom:390.906667pt;}
.y2d{bottom:396.706667pt;}
.y99{bottom:405.666667pt;}
.yc1{bottom:406.626667pt;}
.y88{bottom:408.706667pt;}
.y5b{bottom:412.866667pt;}
.y2c{bottom:418.626667pt;}
.yc0{bottom:428.546667pt;}
.y87{bottom:430.626667pt;}
.y98{bottom:432.226667pt;}
.y5a{bottom:434.466667pt;}
.y6f{bottom:434.786667pt;}
.y2b{bottom:440.546667pt;}
.ybf{bottom:450.466667pt;}
.y97{bottom:451.586667pt;}
.y86{bottom:452.546667pt;}
.y59{bottom:456.386667pt;}
.y6e{bottom:456.706667pt;}
.y2a{bottom:462.466667pt;}
.y96{bottom:471.106667pt;}
.ybe{bottom:472.386667pt;}
.y85{bottom:474.626667pt;}
.y6d{bottom:478.306667pt;}
.y58{bottom:478.626667pt;}
.y29{bottom:484.066667pt;}
.y3b{bottom:484.386667pt;}
.y95{bottom:490.466667pt;}
.ybd{bottom:494.306667pt;}
.y84{bottom:497.506667pt;}
.y6c{bottom:500.226667pt;}
.y57{bottom:500.546667pt;}
.y91{bottom:504.066667pt;}
.y28{bottom:506.306667pt;}
.ybc{bottom:516.226667pt;}
.y83{bottom:519.426667pt;}
.y8b{bottom:522.146667pt;}
.y56{bottom:522.466667pt;}
.y27{bottom:527.746667pt;}
.ybb{bottom:538.146667pt;}
.y82{bottom:541.346667pt;}
.y55{bottom:544.386667pt;}
.y26{bottom:547.106667pt;}
.yba{bottom:560.066667pt;}
.y81{bottom:563.266667pt;}
.y54{bottom:566.306667pt;}
.y25{bottom:566.626667pt;}
.yb9{bottom:581.986667pt;}
.y80{bottom:585.186667pt;}
.y24{bottom:585.986667pt;}
.y53{bottom:588.226667pt;}
.yb8{bottom:603.933333pt;}
.y23{bottom:605.373333pt;}
.y7f{bottom:607.133333pt;}
.y52{bottom:610.173333pt;}
.y22{bottom:624.733333pt;}
.yb7{bottom:625.853333pt;}
.y7e{bottom:629.053333pt;}
.y51{bottom:632.253333pt;}
.y21{bottom:644.093333pt;}
.yb6{bottom:647.773333pt;}
.y7d{bottom:651.933333pt;}
.y50{bottom:654.173333pt;}
.y20{bottom:663.613333pt;}
.yb5{bottom:669.693333pt;}
.y7c{bottom:673.853333pt;}
.y4f{bottom:676.093333pt;}
.y1f{bottom:682.973333pt;}
.yb4{bottom:691.613333pt;}
.y7b{bottom:695.773333pt;}
.y4e{bottom:698.013333pt;}
.y1e{bottom:702.333333pt;}
.yb3{bottom:713.533333pt;}
.y7a{bottom:717.693333pt;}
.y4d{bottom:719.933333pt;}
.y1d{bottom:721.693333pt;}
.yb2{bottom:735.453333pt;}
.y79{bottom:739.773333pt;}
.y1c{bottom:741.213333pt;}
.y6b{bottom:741.533333pt;}
.y4c{bottom:741.853333pt;}
.yb1{bottom:757.373333pt;}
.y1b{bottom:760.573333pt;}
.y78{bottom:761.693333pt;}
.y6a{bottom:763.453333pt;}
.y4b{bottom:763.773333pt;}
.y92{bottom:764.413333pt;}
.yb0{bottom:779.293333pt;}
.y1a{bottom:779.613333pt;}
.y77{bottom:784.573333pt;}
.y4a{bottom:785.693333pt;}
.y18{bottom:793.213333pt;}
.y12{bottom:799.613333pt;}
.yaf{bottom:801.053333pt;}
.yd0{bottom:801.373333pt;}
.y17{bottom:803.460571pt;}
.y76{bottom:806.493333pt;}
.y49{bottom:807.613333pt;}
.yae{bottom:819.813333pt;}
.y75{bottom:828.453333pt;}
.y48{bottom:829.573333pt;}
.y74{bottom:850.533333pt;}
.y47{bottom:851.493333pt;}
.y46{bottom:873.413333pt;}
.y73{bottom:895.013333pt;}
.y45{bottom:895.333333pt;}
.y10{bottom:905.413333pt;}
.yd{bottom:911.173333pt;}
.y44{bottom:917.253333pt;}
.y43{bottom:939.173333pt;}
.yb{bottom:956.933333pt;}
.y8a{bottom:960.773333pt;}
.y42{bottom:961.093333pt;}
.y9{bottom:961.733333pt;}
.y41{bottom:983.013333pt;}
.y2{bottom:983.333333pt;}
.y7{bottom:1003.173333pt;}
.y40{bottom:1004.933333pt;}
.y90{bottom:1026.560000pt;}
.y3f{bottom:1026.880000pt;}
.y4{bottom:1028.320000pt;}
.y3d{bottom:1042.560000pt;}
.y3c{bottom:1056.960000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.400000pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h26{height:16.786667pt;}
.h24{height:16.818667pt;}
.h11{height:16.896000pt;}
.h23{height:16.946667pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h29{height:23.392000pt;}
.h7{height:25.146667pt;}
.h25{height:33.746667pt;}
.h2b{height:35.404688pt;}
.h1b{height:36.305625pt;}
.h2a{height:37.537500pt;}
.h27{height:37.746667pt;}
.h1d{height:41.112500pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h1c{height:52.108438pt;}
.h28{height:53.535000pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h18{height:57.758750pt;}
.h19{height:57.787500pt;}
.h1a{height:59.340000pt;}
.h14{height:60.270000pt;}
.h1e{height:60.519362pt;}
.h2c{height:63.311250pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h20{height:67.803750pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h3{height:92.026667pt;}
.h12{height:105.780000pt;}
.h21{height:231.866667pt;}
.h22{height:260.346667pt;}
.h1f{height:492.213333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:94.738667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.wd{width:102.710667pt;}
.we{width:140.493333pt;}
.wb{width:148.506667pt;}
.wf{width:168.826667pt;}
.wc{width:234.893333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w8{width:308.057333pt;}
.w9{width:308.213333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:7.510667pt;}
.x5{left:9.746667pt;}
.x28{left:11.986667pt;}
.x10{left:18.386667pt;}
.x2c{left:24.986667pt;}
.x2f{left:28.986667pt;}
.xb{left:30.386667pt;}
.x32{left:32.986667pt;}
.x2a{left:37.585333pt;}
.x31{left:41.946667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.x14{left:59.665333pt;}
.x30{left:70.106667pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x21{left:88.841333pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x3c{left:105.472000pt;}
.x20{left:114.912000pt;}
.x29{left:118.761333pt;}
.x1c{left:120.032000pt;}
.x3e{left:121.632000pt;}
.x34{left:124.352000pt;}
.x16{left:130.545333pt;}
.x19{left:144.026667pt;}
.x17{left:145.785333pt;}
.x4{left:150.120000pt;}
.x24{left:154.106667pt;}
.x25{left:156.520000pt;}
.x35{left:175.706667pt;}
.x6{left:185.786667pt;}
.x15{left:194.265333pt;}
.x2b{left:222.760000pt;}
.x36{left:241.666667pt;}
.x26{left:252.546667pt;}
.x37{left:259.746667pt;}
.x22{left:272.345333pt;}
.x38{left:279.266667pt;}
.x18{left:288.858236pt;}
.x12{left:298.292000pt;}
.x23{left:300.346667pt;}
.x39{left:320.066667pt;}
.x3a{left:339.586667pt;}
.x3b{left:356.866667pt;}
.x2d{left:364.546667pt;}
.xa{left:396.106667pt;}
.x27{left:402.346667pt;}
.x1a{left:420.893333pt;}
.x3d{left:430.333333pt;}
.x1f{left:439.773333pt;}
.x3f{left:446.493333pt;}
.x1d{left:449.373333pt;}
.x1e{left:458.653333pt;}
.x1b{left:468.893333pt;}
.x2e{left:534.666667pt;}
.x33{left:546.173333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
}




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