
    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_7ee32e18f916c14618fd2f55.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_52f1d1f4a112596be1d40e42.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_ef5c888d9314a9444606e3cd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_d72d697bbae99e424d2af99f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.138672;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_6e545119bff56c9fbaba7ce1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_808e05d3281e8d90647b4d9b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.774414;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_9d8309e07a4474cfbad3fa20.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_39bffced7a9f52c1e5774044.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2eff158741b5be88acacf174.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.686523;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_6b62419524e9f6810ecdc7fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682129;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_eae22035ae6a5f6e17a3d004.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_83950dc85f08c6a15082b40c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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_b49afe3c1fafe8a16e45582d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.866699;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_10861112a48394875751c8d5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_678314dc3d32b89049969ce4.woff2')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;}
.m2{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.062787px;}
.ls1{letter-spacing:0.318769px;}
.ls7{letter-spacing:0.452270px;}
.ls6{letter-spacing:0.452314px;}
.lse{letter-spacing:0.586690px;}
.ls4{letter-spacing:7.124337px;}
.ls8{letter-spacing:9.447596px;}
.lsd{letter-spacing:34.489503px;}
.ls3{letter-spacing:39.885525px;}
.lsb{letter-spacing:97.251674px;}
.lsc{letter-spacing:125.382680px;}
.ls9{letter-spacing:240.804253px;}
.lsa{letter-spacing:248.019078px;}
.ls0{letter-spacing:1178.913188px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.sc3{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);}
.sc1{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.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(83,129,53);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-46.439981px;}
.ws7{word-spacing:-32.462774px;}
.ws2{word-spacing:-24.726760px;}
.wsb{word-spacing:-23.939990px;}
.ws9{word-spacing:-16.613273px;}
.ws6{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws8{word-spacing:-14.939994px;}
.ws4{word-spacing:-14.374074px;}
.ws3{word-spacing:-13.505755px;}
.ws5{word-spacing:-13.147195px;}
.wsa{word-spacing:0.000000px;}
._2{margin-left:-8.590020px;}
._1{margin-left:-4.191630px;}
._2f{margin-left:-3.015504px;}
._3{margin-left:-1.237606px;}
._0{width:1.152887px;}
._16{width:2.927886px;}
._b{width:4.874445px;}
._c{width:5.973609px;}
._12{width:7.350898px;}
._d{width:8.396476px;}
._4{width:9.690634px;}
._1f{width:10.717548px;}
._68{width:11.868164px;}
._34{width:13.533032px;}
._33{width:14.542494px;}
._a{width:16.554094px;}
._9{width:17.608038px;}
._8{width:19.551186px;}
._7{width:21.244791px;}
._10{width:22.524586px;}
._f{width:25.338282px;}
._e{width:27.169828px;}
._40{width:29.094878px;}
._26{width:30.408028px;}
._5{width:31.540577px;}
._6{width:32.625652px;}
._13{width:33.750922px;}
._67{width:35.193307px;}
._2a{width:37.278134px;}
._27{width:38.325509px;}
._11{width:40.270598px;}
._52{width:41.642034px;}
._24{width:43.493310px;}
._18{width:45.191714px;}
._17{width:46.260658px;}
._31{width:47.436976px;}
._74{width:49.328254px;}
._4c{width:50.565435px;}
._35{width:51.741750px;}
._42{width:53.741632px;}
._20{width:55.196001px;}
._44{width:56.698665px;}
._3d{width:57.851235px;}
._76{width:58.963466px;}
._54{width:60.101215px;}
._32{width:61.827470px;}
._6c{width:62.865141px;}
._38{width:63.873397px;}
._47{width:65.762626px;}
._3a{width:67.249815px;}
._7d{width:69.344626px;}
._55{width:70.652836px;}
._4b{width:73.303682px;}
._4a{width:75.115728px;}
._37{width:77.618735px;}
._3f{width:78.627983px;}
._29{width:80.678751px;}
._22{width:82.342334px;}
._3e{width:83.681270px;}
._3b{width:86.296031px;}
._73{width:87.732364px;}
._77{width:88.825001px;}
._70{width:91.076709px;}
._7b{width:92.973698px;}
._21{width:94.507114px;}
._5e{width:95.846801px;}
._1a{width:98.424742px;}
._1b{width:99.559555px;}
._36{width:100.972515px;}
._56{width:102.527775px;}
._43{width:105.263023px;}
._6f{width:107.386103px;}
._4d{width:108.821677px;}
._58{width:111.728098px;}
._30{width:113.426102px;}
._6b{width:114.431135px;}
._6a{width:115.468884px;}
._28{width:117.808015px;}
._7e{width:120.597605px;}
._69{width:122.405671px;}
._75{width:123.931174px;}
._65{width:126.086939px;}
._48{width:129.218861px;}
._25{width:131.692325px;}
._2e{width:133.166291px;}
._46{width:135.271907px;}
._6e{width:136.939075px;}
._5b{width:139.640251px;}
._41{width:140.779132px;}
._62{width:141.843734px;}
._5d{width:143.949130px;}
._79{width:147.467204px;}
._61{width:149.047597px;}
._5c{width:150.213711px;}
._4f{width:152.778554px;}
._53{width:158.446827px;}
._49{width:160.090602px;}
._2d{width:161.789143px;}
._51{width:163.503017px;}
._39{width:167.094666px;}
._2c{width:171.650469px;}
._3c{width:174.000606px;}
._5a{width:176.976796px;}
._63{width:181.766083px;}
._72{width:184.656522px;}
._4e{width:189.614959px;}
._50{width:194.514816px;}
._71{width:198.940561px;}
._19{width:200.877875px;}
._1d{width:204.016881px;}
._23{width:205.506328px;}
._15{width:211.439120px;}
._1c{width:213.872589px;}
._7c{width:243.126967px;}
._81{width:260.028248px;}
._60{width:288.338272px;}
._7a{width:332.566634px;}
._57{width:333.745938px;}
._7f{width:336.822847px;}
._5f{width:379.207364px;}
._2b{width:390.127217px;}
._1e{width:396.202749px;}
._59{width:404.743274px;}
._66{width:421.997088px;}
._78{width:432.898005px;}
._6d{width:481.418543px;}
._45{width:530.058351px;}
._64{width:534.163805px;}
._14{width:543.229844px;}
._80{width:644.939351px;}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fcb{color:rgb(51,51,51);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(31,73,124);}
.fc1{color:rgb(0,0,0);}
.fca{color:rgb(44,62,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc8{color:rgb(83,129,53);}
.fcd{color:transparent;}
.fc7{color:rgb(0,0,255);}
.fc9{color:rgb(0,32,96);}
.fcc{color:rgb(79,129,189);}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.fs6{font-size:95.759962px;}
.fs5{font-size:107.999957px;}
.y5{bottom:-14.399994px;}
.y0{bottom:0.000000px;}
.y19{bottom:3.239584px;}
.y16{bottom:3.599615px;}
.y22{bottom:3.599713px;}
.y48{bottom:3.599889px;}
.y1f{bottom:4.319713px;}
.ya{bottom:4.499980px;}
.yb{bottom:28.259989px;}
.y9{bottom:46.080000px;}
.y7{bottom:50.579980px;}
.y8{bottom:51.659979px;}
.y87{bottom:132.659947px;}
.yc3{bottom:138.059945px;}
.yc6{bottom:139.319944px;}
.y14{bottom:146.159942px;}
.y68{bottom:150.299940px;}
.y86{bottom:160.379936px;}
.yc2{bottom:165.779934px;}
.yc5{bottom:166.859933px;}
.y67{bottom:177.839929px;}
.y85{bottom:187.919925px;}
.yc1{bottom:193.319923px;}
.y13{bottom:194.039922px;}
.ya7{bottom:194.579922px;}
.yb0{bottom:202.319919px;}
.y66{bottom:205.559918px;}
.yb5{bottom:208.979916px;}
.y84{bottom:215.459914px;}
.yc0{bottom:220.859912px;}
.ya6{bottom:222.119911px;}
.yaf{bottom:229.859908px;}
.y65{bottom:233.099907px;}
.yb4{bottom:236.519905px;}
.y2f{bottom:237.959905px;}
.y83{bottom:243.179903px;}
.y41{bottom:248.399901px;}
.ybf{bottom:248.579901px;}
.ya5{bottom:249.659900px;}
.yae{bottom:257.579897px;}
.y64{bottom:260.639896px;}
.y82{bottom:270.719892px;}
.y47{bottom:274.680000px;}
.ybe{bottom:276.119890px;}
.ya4{bottom:277.379889px;}
.y46{bottom:278.459889px;}
.yad{bottom:285.119886px;}
.y63{bottom:288.359885px;}
.y94{bottom:291.779883px;}
.y45{bottom:298.259881px;}
.ya3{bottom:304.919878px;}
.yac{bottom:312.659875px;}
.y62{bottom:315.899874px;}
.y44{bottom:318.239873px;}
.y93{bottom:319.319872px;}
.ybd{bottom:324.719870px;}
.y81{bottom:325.979870px;}
.y43{bottom:338.039865px;}
.yab{bottom:340.379864px;}
.y61{bottom:343.439863px;}
.y80{bottom:353.519859px;}
.y42{bottom:359.819856px;}
.y2e{bottom:364.859854px;}
.y92{bottom:367.919853px;}
.y60{bottom:371.159852px;}
.ybc{bottom:373.319851px;}
.y9e{bottom:374.579850px;}
.ya2{bottom:381.059848px;}
.y91{bottom:395.459842px;}
.y5f{bottom:398.699841px;}
.y40{bottom:400.499840px;}
.ybb{bottom:400.859840px;}
.y7f{bottom:402.119839px;}
.ya1{bottom:408.779836px;}
.y3f{bottom:417.779833px;}
.y90{bottom:423.179831px;}
.y5e{bottom:426.239830px;}
.yba{bottom:428.579829px;}
.y7e{bottom:429.659828px;}
.ya0{bottom:436.319825px;}
.y8f{bottom:450.719820px;}
.y5d{bottom:453.779818px;}
.y2d{bottom:454.859818px;}
.y3e{bottom:456.119818px;}
.y7d{bottom:457.379817px;}
.y3d{bottom:473.399811px;}
.yb9{bottom:477.179809px;}
.y8e{bottom:478.259809px;}
.y5c{bottom:481.499807px;}
.y9d{bottom:484.919806px;}
.y2c{bottom:489.059804px;}
.y3c{bottom:490.679804px;}
.y7c{bottom:505.979798px;}
.y2b{bottom:506.519797px;}
.y3b{bottom:507.779797px;}
.y5b{bottom:509.039796px;}
.y9c{bottom:512.459795px;}
.y2a{bottom:524.159790px;}
.y3a{bottom:525.059790px;}
.yb8{bottom:525.779790px;}
.y7b{bottom:533.519787px;}
.y9b{bottom:540.179784px;}
.y29{bottom:540.539784px;}
.y39{bottom:542.339783px;}
.yb7{bottom:553.319779px;}
.y5a{bottom:557.639777px;}
.y38{bottom:559.619776px;}
.y7a{bottom:561.059776px;}
.y9a{bottom:567.719773px;}
.y28{bottom:573.299771px;}
.y37{bottom:576.899769px;}
.y59{bottom:585.179766px;}
.y79{bottom:588.779764px;}
.y36{bottom:593.999762px;}
.y99{bottom:595.259762px;}
.yb6{bottom:601.919759px;}
.y27{bottom:606.059758px;}
.y35{bottom:611.279755px;}
.y58{bottom:612.899755px;}
.y78{bottom:616.319753px;}
.yc7{bottom:622.439751px;}
.y98{bottom:622.979751px;}
.y34{bottom:628.559749px;}
.y26{bottom:638.999744px;}
.y57{bottom:640.439744px;}
.y77{bottom:643.859742px;}
.y33{bottom:645.839742px;}
.y97{bottom:650.519740px;}
.y25{bottom:656.999737px;}
.y32{bottom:663.119735px;}
.yb3{bottom:664.919734px;}
.y56{bottom:667.979733px;}
.y76{bottom:671.579731px;}
.y96{bottom:678.059729px;}
.y30{bottom:678.419729px;}
.y31{bottom:680.399728px;}
.y24{bottom:681.479727px;}
.yb2{bottom:692.459723px;}
.y55{bottom:695.699722px;}
.y75{bottom:699.119720px;}
.y95{bottom:705.779718px;}
.y1e{bottom:712.260000px;}
.y21{bottom:712.980000px;}
.y20{bottom:716.759713px;}
.y23{bottom:718.199713px;}
.yb1{bottom:720.179712px;}
.y54{bottom:723.239711px;}
.y74{bottom:726.659709px;}
.y9f{bottom:733.319707px;}
.y12{bottom:741.779703px;}
.yaa{bottom:747.719701px;}
.y53{bottom:750.779700px;}
.y73{bottom:754.379698px;}
.yc4{bottom:760.859696px;}
.y11{bottom:763.019695px;}
.ya9{bottom:775.259690px;}
.y52{bottom:778.499689px;}
.y72{bottom:781.919687px;}
.ya8{bottom:802.799679px;}
.y51{bottom:806.039678px;}
.y10{bottom:806.759677px;}
.y71{bottom:809.459676px;}
.yf{bottom:830.159668px;}
.y8d{bottom:830.519668px;}
.y50{bottom:833.579667px;}
.y70{bottom:836.999665px;}
.y8c{bottom:858.059657px;}
.y4f{bottom:861.299655px;}
.y6f{bottom:864.719654px;}
.ye{bottom:864.899654px;}
.y8b{bottom:885.599646px;}
.y4e{bottom:888.839644px;}
.y6e{bottom:892.259643px;}
.yd{bottom:902.519639px;}
.y8a{bottom:913.319635px;}
.y4d{bottom:916.379633px;}
.y6d{bottom:919.799632px;}
.yc{bottom:926.819629px;}
.y89{bottom:940.859624px;}
.y4c{bottom:944.099622px;}
.y6c{bottom:947.519621px;}
.y15{bottom:959.940000px;}
.y88{bottom:968.399613px;}
.y4b{bottom:971.639611px;}
.y1c{bottom:977.579609px;}
.y1b{bottom:995.939602px;}
.y6b{bottom:996.119602px;}
.y1a{bottom:1014.299594px;}
.y4a{bottom:1020.239592px;}
.y6a{bottom:1023.659591px;}
.y18{bottom:1037.520000px;}
.y17{bottom:1040.759584px;}
.y49{bottom:1048.319581px;}
.y1d{bottom:1050.479580px;}
.y69{bottom:1051.199580px;}
.y4{bottom:1078.019569px;}
.y6{bottom:1106.459557px;}
.y3{bottom:1109.699556px;}
.y2{bottom:1126.979549px;}
.y1{bottom:1144.259542px;}
.h3{height:1.440000px;}
.h11{height:16.740000px;}
.h1b{height:18.180000px;}
.he{height:19.260000px;}
.h12{height:20.160000px;}
.h6{height:20.340000px;}
.h13{height:35.991197px;}
.h18{height:36.624009px;}
.h4{height:36.703110px;}
.h16{height:38.759750px;}
.h17{height:39.339828px;}
.h15{height:40.297132px;}
.h10{height:40.793187px;}
.h1{height:41.522679px;}
.h7{height:42.894123px;}
.h1a{height:43.536076px;}
.hf{height:44.149201px;}
.h14{height:44.666701px;}
.h2{height:47.545293px;}
.h9{height:48.796855px;}
.ha{height:50.027324px;}
.h5{height:50.305761px;}
.h19{height:51.025761px;}
.hb{height:53.261697px;}
.h8{height:57.092321px;}
.hd{height:58.531969px;}
.h1c{height:64.899818px;}
.h21{height:66.489583px;}
.h1e{height:66.536341px;}
.h22{height:68.733957px;}
.h20{height:69.715871px;}
.h1f{height:69.762628px;}
.h1d{height:73.195283px;}
.hc{height:77.519500px;}
.h0{height:1188.000000px;}
.w6{width:3.600000px;}
.w3{width:4.500000px;}
.w2{width:5.040000px;}
.w9{width:8.640000px;}
.w4{width:9.180000px;}
.w1{width:9.720000px;}
.w8{width:14.760000px;}
.w7{width:33.840000px;}
.w5{width:58.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x21{left:120.059952px;}
.x1f{left:122.039951px;}
.xb{left:123.299951px;}
.x1e{left:124.559950px;}
.x4{left:133.199947px;}
.x29{left:134.999946px;}
.x23{left:136.979945px;}
.x7{left:138.239945px;}
.x1d{left:140.759916px;}
.x1c{left:143.459943px;}
.x16{left:144.900000px;}
.x2a{left:162.000073px;}
.x22{left:168.659933px;}
.x20{left:178.739929px;}
.xc{left:187.559953px;}
.x17{left:203.400000px;}
.x18{left:207.000000px;}
.x8{left:238.500443px;}
.x19{left:240.839904px;}
.x1a{left:243.539903px;}
.xe{left:251.460000px;}
.x24{left:262.979863px;}
.xf{left:265.139894px;}
.x27{left:280.619888px;}
.x1b{left:285.840000px;}
.x2{left:302.579879px;}
.x25{left:306.359877px;}
.x12{left:308.519877px;}
.x9{left:310.679876px;}
.x11{left:408.419837px;}
.x13{left:429.659828px;}
.x5{left:481.679807px;}
.x28{left:485.999779px;}
.x2b{left:512.999846px;}
.x14{left:525.779790px;}
.xa{left:607.139757px;}
.xd{left:619.559752px;}
.x26{left:640.080000px;}
.x10{left:667.980000px;}
.x3{left:691.199724px;}
.x15{left:738.179106px;}
.x6{left:804.600000px;}
@media print{
.v1{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.055811pt;}
.ls1{letter-spacing:0.283351pt;}
.ls7{letter-spacing:0.402017pt;}
.ls6{letter-spacing:0.402056pt;}
.lse{letter-spacing:0.521502pt;}
.ls4{letter-spacing:6.332744pt;}
.ls8{letter-spacing:8.397863pt;}
.lsd{letter-spacing:30.657336pt;}
.ls3{letter-spacing:35.453800pt;}
.lsb{letter-spacing:86.445933pt;}
.lsc{letter-spacing:111.451271pt;}
.ls9{letter-spacing:214.048225pt;}
.lsa{letter-spacing:220.461402pt;}
.ls0{letter-spacing:1047.922834pt;}
.ws1{word-spacing:-41.279983pt;}
.ws7{word-spacing:-28.855799pt;}
.ws2{word-spacing:-21.979342pt;}
.wsb{word-spacing:-21.279991pt;}
.ws9{word-spacing:-14.767354pt;}
.ws6{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws8{word-spacing:-13.279995pt;}
.ws4{word-spacing:-12.776955pt;}
.ws3{word-spacing:-12.005115pt;}
.ws5{word-spacing:-11.686395pt;}
.wsa{word-spacing:0.000000pt;}
._2{margin-left:-7.635573pt;}
._1{margin-left:-3.725894pt;}
._2f{margin-left:-2.680448pt;}
._3{margin-left:-1.100094pt;}
._0{width:1.024788pt;}
._16{width:2.602565pt;}
._b{width:4.332840pt;}
._c{width:5.309875pt;}
._12{width:6.534131pt;}
._d{width:7.463534pt;}
._4{width:8.613896pt;}
._1f{width:9.526709pt;}
._68{width:10.549479pt;}
._34{width:12.029362pt;}
._33{width:12.926662pt;}
._a{width:14.714750pt;}
._9{width:15.651589pt;}
._8{width:17.378832pt;}
._7{width:18.884259pt;}
._10{width:20.021854pt;}
._f{width:22.522917pt;}
._e{width:24.150958pt;}
._40{width:25.862114pt;}
._26{width:27.029358pt;}
._5{width:28.036068pt;}
._6{width:29.000579pt;}
._13{width:30.000820pt;}
._67{width:31.282939pt;}
._2a{width:33.136119pt;}
._27{width:34.067119pt;}
._11{width:35.796087pt;}
._52{width:37.015141pt;}
._24{width:38.660720pt;}
._18{width:40.170413pt;}
._17{width:41.120585pt;}
._31{width:42.166201pt;}
._74{width:43.847336pt;}
._4c{width:44.947053pt;}
._35{width:45.992667pt;}
._42{width:47.770339pt;}
._20{width:49.063112pt;}
._44{width:50.398813pt;}
._3d{width:51.423320pt;}
._76{width:52.411970pt;}
._54{width:53.423302pt;}
._32{width:54.957751pt;}
._6c{width:55.880126pt;}
._38{width:56.776353pt;}
._47{width:58.455667pt;}
._3a{width:59.777613pt;}
._7d{width:61.639667pt;}
._55{width:62.802521pt;}
._4b{width:65.158829pt;}
._4a{width:66.769536pt;}
._37{width:68.994432pt;}
._3f{width:69.891540pt;}
._29{width:71.714446pt;}
._22{width:73.193186pt;}
._3e{width:74.383351pt;}
._3b{width:76.707583pt;}
._73{width:77.984324pt;}
._77{width:78.955557pt;}
._70{width:80.957074pt;}
._7b{width:82.643287pt;}
._21{width:84.006324pt;}
._5e{width:85.197157pt;}
._1a{width:87.488660pt;}
._1b{width:88.497382pt;}
._36{width:89.753346pt;}
._56{width:91.135800pt;}
._43{width:93.567131pt;}
._6f{width:95.454314pt;}
._4d{width:96.730380pt;}
._58{width:99.313865pt;}
._30{width:100.823202pt;}
._6b{width:101.716564pt;}
._6a{width:102.639008pt;}
._28{width:104.718235pt;}
._7e{width:107.197871pt;}
._69{width:108.805041pt;}
._75{width:110.161043pt;}
._65{width:112.077279pt;}
._48{width:114.861210pt;}
._25{width:117.059844pt;}
._2e{width:118.370036pt;}
._46{width:120.241695pt;}
._6e{width:121.723623pt;}
._5b{width:124.124668pt;}
._41{width:125.137006pt;}
._62{width:126.083319pt;}
._5d{width:127.954782pt;}
._79{width:131.081959pt;}
._61{width:132.486753pt;}
._5c{width:133.523299pt;}
._4f{width:135.803159pt;}
._53{width:140.841624pt;}
._49{width:142.302757pt;}
._2d{width:143.812572pt;}
._51{width:145.336015pt;}
._39{width:148.528592pt;}
._2c{width:152.578194pt;}
._3c{width:154.667206pt;}
._5a{width:157.312707pt;}
._63{width:161.569852pt;}
._72{width:164.139130pt;}
._4e{width:168.546630pt;}
._50{width:172.902059pt;}
._71{width:176.836054pt;}
._19{width:178.558111pt;}
._1d{width:181.348339pt;}
._23{width:182.672292pt;}
._15{width:187.945885pt;}
._1c{width:190.108968pt;}
._7c{width:216.112860pt;}
._81{width:231.136221pt;}
._60{width:256.300687pt;}
._7a{width:295.614786pt;}
._57{width:296.663056pt;}
._7f{width:299.398086pt;}
._5f{width:337.073213pt;}
._2b{width:346.779748pt;}
._1e{width:352.180221pt;}
._59{width:359.771799pt;}
._66{width:375.108523pt;}
._78{width:384.798227pt;}
._6d{width:427.927594pt;}
._45{width:471.162978pt;}
._64{width:474.812271pt;}
._14{width:482.870973pt;}
._80{width:573.279423pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.fs6{font-size:85.119966pt;}
.fs5{font-size:95.999962pt;}
.y5{bottom:-12.799995pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:2.879630pt;}
.y16{bottom:3.199657pt;}
.y22{bottom:3.199745pt;}
.y48{bottom:3.199901pt;}
.y1f{bottom:3.839745pt;}
.ya{bottom:3.999982pt;}
.yb{bottom:25.119990pt;}
.y9{bottom:40.960000pt;}
.y7{bottom:44.959982pt;}
.y8{bottom:45.919982pt;}
.y87{bottom:117.919953pt;}
.yc3{bottom:122.719951pt;}
.yc6{bottom:123.839950pt;}
.y14{bottom:129.919948pt;}
.y68{bottom:133.599947pt;}
.y86{bottom:142.559943pt;}
.yc2{bottom:147.359941pt;}
.yc5{bottom:148.319941pt;}
.y67{bottom:158.079937pt;}
.y85{bottom:167.039933pt;}
.yc1{bottom:171.839931pt;}
.y13{bottom:172.479931pt;}
.ya7{bottom:172.959931pt;}
.yb0{bottom:179.839928pt;}
.y66{bottom:182.719927pt;}
.yb5{bottom:185.759926pt;}
.y84{bottom:191.519923pt;}
.yc0{bottom:196.319921pt;}
.ya6{bottom:197.439921pt;}
.yaf{bottom:204.319918pt;}
.y65{bottom:207.199917pt;}
.yb4{bottom:210.239916pt;}
.y2f{bottom:211.519915pt;}
.y83{bottom:216.159914pt;}
.y41{bottom:220.799912pt;}
.ybf{bottom:220.959912pt;}
.ya5{bottom:221.919911pt;}
.yae{bottom:228.959908pt;}
.y64{bottom:231.679907pt;}
.y82{bottom:240.639904pt;}
.y47{bottom:244.160000pt;}
.ybe{bottom:245.439902pt;}
.ya4{bottom:246.559901pt;}
.y46{bottom:247.519901pt;}
.yad{bottom:253.439899pt;}
.y63{bottom:256.319897pt;}
.y94{bottom:259.359896pt;}
.y45{bottom:265.119894pt;}
.ya3{bottom:271.039892pt;}
.yac{bottom:277.919889pt;}
.y62{bottom:280.799888pt;}
.y44{bottom:282.879887pt;}
.y93{bottom:283.839886pt;}
.ybd{bottom:288.639885pt;}
.y81{bottom:289.759884pt;}
.y43{bottom:300.479880pt;}
.yab{bottom:302.559879pt;}
.y61{bottom:305.279878pt;}
.y80{bottom:314.239874pt;}
.y42{bottom:319.839872pt;}
.y2e{bottom:324.319870pt;}
.y92{bottom:327.039869pt;}
.y60{bottom:329.919868pt;}
.ybc{bottom:331.839867pt;}
.y9e{bottom:332.959867pt;}
.ya2{bottom:338.719865pt;}
.y91{bottom:351.519859pt;}
.y5f{bottom:354.399858pt;}
.y40{bottom:355.999858pt;}
.ybb{bottom:356.319857pt;}
.y7f{bottom:357.439857pt;}
.ya1{bottom:363.359855pt;}
.y3f{bottom:371.359851pt;}
.y90{bottom:376.159850pt;}
.y5e{bottom:378.879848pt;}
.yba{bottom:380.959848pt;}
.y7e{bottom:381.919847pt;}
.ya0{bottom:387.839845pt;}
.y8f{bottom:400.639840pt;}
.y5d{bottom:403.359839pt;}
.y2d{bottom:404.319838pt;}
.y3e{bottom:405.439838pt;}
.y7d{bottom:406.559837pt;}
.y3d{bottom:420.799832pt;}
.yb9{bottom:424.159830pt;}
.y8e{bottom:425.119830pt;}
.y5c{bottom:427.999829pt;}
.y9d{bottom:431.039828pt;}
.y2c{bottom:434.719826pt;}
.y3c{bottom:436.159826pt;}
.y7c{bottom:449.759820pt;}
.y2b{bottom:450.239820pt;}
.y3b{bottom:451.359819pt;}
.y5b{bottom:452.479819pt;}
.y9c{bottom:455.519818pt;}
.y2a{bottom:465.919814pt;}
.y3a{bottom:466.719813pt;}
.yb8{bottom:467.359813pt;}
.y7b{bottom:474.239810pt;}
.y9b{bottom:480.159808pt;}
.y29{bottom:480.479808pt;}
.y39{bottom:482.079807pt;}
.yb7{bottom:491.839803pt;}
.y5a{bottom:495.679802pt;}
.y38{bottom:497.439801pt;}
.y7a{bottom:498.719801pt;}
.y9a{bottom:504.639798pt;}
.y28{bottom:509.599796pt;}
.y37{bottom:512.799795pt;}
.y59{bottom:520.159792pt;}
.y79{bottom:523.359791pt;}
.y36{bottom:527.999789pt;}
.y99{bottom:529.119788pt;}
.yb6{bottom:535.039786pt;}
.y27{bottom:538.719785pt;}
.y35{bottom:543.359783pt;}
.y58{bottom:544.799782pt;}
.y78{bottom:547.839781pt;}
.yc7{bottom:553.279779pt;}
.y98{bottom:553.759778pt;}
.y34{bottom:558.719777pt;}
.y26{bottom:567.999773pt;}
.y57{bottom:569.279772pt;}
.y77{bottom:572.319771pt;}
.y33{bottom:574.079770pt;}
.y97{bottom:578.239769pt;}
.y25{bottom:583.999766pt;}
.y32{bottom:589.439764pt;}
.yb3{bottom:591.039764pt;}
.y56{bottom:593.759762pt;}
.y76{bottom:596.959761pt;}
.y96{bottom:602.719759pt;}
.y30{bottom:603.039759pt;}
.y31{bottom:604.799758pt;}
.y24{bottom:605.759758pt;}
.yb2{bottom:615.519754pt;}
.y55{bottom:618.399753pt;}
.y75{bottom:621.439751pt;}
.y95{bottom:627.359749pt;}
.y1e{bottom:633.120000pt;}
.y21{bottom:633.760000pt;}
.y20{bottom:637.119745pt;}
.y23{bottom:638.399745pt;}
.yb1{bottom:640.159744pt;}
.y54{bottom:642.879743pt;}
.y74{bottom:645.919742pt;}
.y9f{bottom:651.839739pt;}
.y12{bottom:659.359736pt;}
.yaa{bottom:664.639734pt;}
.y53{bottom:667.359733pt;}
.y73{bottom:670.559732pt;}
.yc4{bottom:676.319729pt;}
.y11{bottom:678.239729pt;}
.ya9{bottom:689.119724pt;}
.y52{bottom:691.999723pt;}
.y72{bottom:695.039722pt;}
.ya8{bottom:713.599715pt;}
.y51{bottom:716.479713pt;}
.y10{bottom:717.119713pt;}
.y71{bottom:719.519712pt;}
.yf{bottom:737.919705pt;}
.y8d{bottom:738.239705pt;}
.y50{bottom:740.959704pt;}
.y70{bottom:743.999702pt;}
.y8c{bottom:762.719695pt;}
.y4f{bottom:765.599694pt;}
.y6f{bottom:768.639693pt;}
.ye{bottom:768.799692pt;}
.y8b{bottom:787.199685pt;}
.y4e{bottom:790.079684pt;}
.y6e{bottom:793.119683pt;}
.yd{bottom:802.239679pt;}
.y8a{bottom:811.839675pt;}
.y4d{bottom:814.559674pt;}
.y6d{bottom:817.599673pt;}
.yc{bottom:823.839670pt;}
.y89{bottom:836.319665pt;}
.y4c{bottom:839.199664pt;}
.y6c{bottom:842.239663pt;}
.y15{bottom:853.280000pt;}
.y88{bottom:860.799656pt;}
.y4b{bottom:863.679655pt;}
.y1c{bottom:868.959652pt;}
.y1b{bottom:885.279646pt;}
.y6b{bottom:885.439646pt;}
.y1a{bottom:901.599639pt;}
.y4a{bottom:906.879637pt;}
.y6a{bottom:909.919636pt;}
.y18{bottom:922.240000pt;}
.y17{bottom:925.119630pt;}
.y49{bottom:931.839627pt;}
.y1d{bottom:933.759626pt;}
.y69{bottom:934.399626pt;}
.y4{bottom:958.239617pt;}
.y6{bottom:983.519607pt;}
.y3{bottom:986.399605pt;}
.y2{bottom:1001.759599pt;}
.y1{bottom:1017.119593pt;}
.h3{height:1.280000pt;}
.h11{height:14.880000pt;}
.h1b{height:16.160000pt;}
.he{height:17.120000pt;}
.h12{height:17.920000pt;}
.h6{height:18.080000pt;}
.h13{height:31.992175pt;}
.h18{height:32.554674pt;}
.h4{height:32.624987pt;}
.h16{height:34.453111pt;}
.h17{height:34.968736pt;}
.h15{height:35.819673pt;}
.h10{height:36.260610pt;}
.h1{height:36.909048pt;}
.h7{height:38.128110pt;}
.h1a{height:38.698735pt;}
.hf{height:39.243734pt;}
.h14{height:39.703734pt;}
.h2{height:42.262483pt;}
.h9{height:43.374983pt;}
.ha{height:44.468732pt;}
.h5{height:44.716232pt;}
.h19{height:45.356232pt;}
.hb{height:47.343731pt;}
.h8{height:50.748730pt;}
.hd{height:52.028417pt;}
.h1c{height:57.688727pt;}
.h21{height:59.101851pt;}
.h1e{height:59.143414pt;}
.h22{height:61.096851pt;}
.h20{height:61.969663pt;}
.h1f{height:62.011225pt;}
.h1d{height:65.062474pt;}
.hc{height:68.906222pt;}
.h0{height:1056.000000pt;}
.w6{width:3.200000pt;}
.w3{width:4.000000pt;}
.w2{width:4.480000pt;}
.w9{width:7.680000pt;}
.w4{width:8.160000pt;}
.w1{width:8.640000pt;}
.w8{width:13.120000pt;}
.w7{width:30.080000pt;}
.w5{width:52.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x21{left:106.719957pt;}
.x1f{left:108.479957pt;}
.xb{left:109.599956pt;}
.x1e{left:110.719956pt;}
.x4{left:118.399953pt;}
.x29{left:119.999952pt;}
.x23{left:121.759951pt;}
.x7{left:122.879951pt;}
.x1d{left:125.119925pt;}
.x1c{left:127.519949pt;}
.x16{left:128.800000pt;}
.x2a{left:144.000065pt;}
.x22{left:149.919940pt;}
.x20{left:158.879936pt;}
.xc{left:166.719959pt;}
.x17{left:180.800000pt;}
.x18{left:184.000000pt;}
.x8{left:212.000394pt;}
.x19{left:214.079914pt;}
.x1a{left:216.479913pt;}
.xe{left:223.520000pt;}
.x24{left:233.759878pt;}
.xf{left:235.679906pt;}
.x27{left:249.439900pt;}
.x1b{left:254.080000pt;}
.x2{left:268.959892pt;}
.x25{left:272.319891pt;}
.x12{left:274.239890pt;}
.x9{left:276.159890pt;}
.x11{left:363.039855pt;}
.x13{left:381.919847pt;}
.x5{left:428.159829pt;}
.x28{left:431.999804pt;}
.x2b{left:455.999863pt;}
.x14{left:467.359813pt;}
.xa{left:539.679784pt;}
.xd{left:550.719780pt;}
.x26{left:568.960000pt;}
.x10{left:593.760000pt;}
.x3{left:614.399754pt;}
.x15{left:656.159205pt;}
.x6{left:715.200000pt;}
}




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