
    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_8d3b52a3b36dae481276d008.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8f73003ca36623fa83edfc37.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_108fd86b4dd9811c9b68b00a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_146ae8e68ac435e6172a2ec0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8cedb566279d44d7612e7d0b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f1b578232700dd704b145bcb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916016;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_3e427dd2126ef5abdcd3e308.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.039062;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_54c60a828c4498ef4eacc2e6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_93e09036b30ce906ecbea966.woff2')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_167cdb8f34b76e1d6f8f944b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.897949;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v4{vertical-align:-14.400000px;}
.v1{vertical-align:-6.000000px;}
.v7{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.000000px;}
.v5{vertical-align:14.400000px;}
.v9{vertical-align:48.000000px;}
.v8{vertical-align:54.600000px;}
.v3{vertical-align:56.400000px;}
.v6{vertical-align:62.400000px;}
.ls8{letter-spacing:-3.000000px;}
.lsa{letter-spacing:-2.994000px;}
.ls7{letter-spacing:-2.988000px;}
.ls9{letter-spacing:-2.700000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.024000px;}
.ls1a{letter-spacing:-0.018000px;}
.ls6{letter-spacing:-0.012000px;}
.lse{letter-spacing:-0.000006px;}
.ls4{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.006000px;}
.ls3{letter-spacing:0.012000px;}
.lsf{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.024000px;}
.ls17{letter-spacing:0.072000px;}
.ls0{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.126000px;}
.ls5{letter-spacing:0.150000px;}
.ls1d{letter-spacing:0.192000px;}
.lsc{letter-spacing:0.222000px;}
.ls2{letter-spacing:0.300000px;}
.ls10{letter-spacing:0.336000px;}
.ls20{letter-spacing:0.384000px;}
.ls19{letter-spacing:0.600000px;}
.ls1e{letter-spacing:0.660000px;}
.lsd{letter-spacing:0.822000px;}
.ls15{letter-spacing:1.488000px;}
.ls18{letter-spacing:3.471000px;}
.ls13{letter-spacing:22.671000px;}
.ls14{letter-spacing:23.271000px;}
.lsb{letter-spacing:33.984000px;}
.ls16{letter-spacing:63.720000px;}
.ls1f{letter-spacing:136.584000px;}
.ls21{letter-spacing:136.734000px;}
.sc_{text-shadow:none;}
.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;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1d{word-spacing:-60.000000px;}
.wsd{word-spacing:-48.600000px;}
.ws25{word-spacing:-18.192000px;}
.ws17{word-spacing:-18.024000px;}
.wsa{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.999994px;}
.ws12{word-spacing:-16.500000px;}
.wse{word-spacing:-15.840000px;}
.ws20{word-spacing:-15.552000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws1b{word-spacing:-13.506000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws18{word-spacing:-13.482000px;}
.wsb{word-spacing:-12.000000px;}
.ws10{word-spacing:-11.220000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws13{word-spacing:-0.066000px;}
.ws19{word-spacing:-0.054000px;}
.ws14{word-spacing:-0.042000px;}
.ws1a{word-spacing:-0.036000px;}
.ws22{word-spacing:-0.024000px;}
.ws9{word-spacing:0.000000px;}
.ws1f{word-spacing:0.576000px;}
.ws21{word-spacing:0.648000px;}
.ws1e{word-spacing:1.308000px;}
.ws24{word-spacing:2.493000px;}
.ws23{word-spacing:4.116000px;}
.ws15{word-spacing:9.039000px;}
.wsf{word-spacing:9.747000px;}
.ws1c{word-spacing:10.179000px;}
.ws11{word-spacing:136.893000px;}
.ws16{word-spacing:148.305000px;}
._30{margin-left:-7.740000px;}
._8{margin-left:-4.536000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._7{width:2.160000px;}
._b{width:3.456000px;}
._c{width:4.464000px;}
._13{width:5.832000px;}
._14{width:7.200000px;}
._9{width:8.352000px;}
._6{width:9.432000px;}
._4{width:10.518000px;}
._5{width:11.652000px;}
._f{width:12.930000px;}
._12{width:14.454000px;}
._d{width:16.278000px;}
._33{width:18.042000px;}
._2e{width:19.104000px;}
._19{width:20.160000px;}
._28{width:21.600000px;}
._27{width:23.328000px;}
._21{width:24.624000px;}
._17{width:25.632000px;}
._18{width:27.576000px;}
._a{width:28.584000px;}
._39{width:29.592000px;}
._10{width:30.960000px;}
._11{width:32.040000px;}
._15{width:33.984000px;}
._2d{width:35.712000px;}
._1a{width:37.080000px;}
._2b{width:38.160000px;}
._20{width:39.168000px;}
._34{width:40.176000px;}
._24{width:41.688000px;}
._25{width:42.984000px;}
._3d{width:44.784000px;}
._32{width:47.736000px;}
._1c{width:48.888000px;}
._1d{width:49.896000px;}
._36{width:51.624000px;}
._16{width:54.936000px;}
._35{width:56.160000px;}
._22{width:57.552000px;}
._23{width:58.608000px;}
._1f{width:59.688000px;}
._26{width:61.272000px;}
._3a{width:63.072000px;}
._31{width:65.304000px;}
._1e{width:68.688000px;}
._e{width:70.140000px;}
._2f{width:71.856000px;}
._1b{width:75.168000px;}
._2a{width:83.520000px;}
._3c{width:85.320000px;}
._2c{width:88.572000px;}
._37{width:100.800000px;}
._38{width:101.808000px;}
._29{width:109.872000px;}
._3b{width:143.958000px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y1c{bottom:3.900000px;}
.y86{bottom:5.250000px;}
.y8a{bottom:5.265000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.y6e{bottom:6.300000px;}
.y69{bottom:6.450000px;}
.yc{bottom:6.750000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y85{bottom:23.100000px;}
.y89{bottom:23.115000px;}
.y1b{bottom:24.600000px;}
.y68{bottom:28.200000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y84{bottom:40.950000px;}
.y1a{bottom:45.300000px;}
.y67{bottom:49.950000px;}
.y3{bottom:57.637500px;}
.y19{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y18{bottom:86.700000px;}
.y17{bottom:107.400000px;}
.y3b{bottom:112.687500px;}
.ycf{bottom:126.487500px;}
.ydd{bottom:126.637500px;}
.y16{bottom:128.100000px;}
.y3a{bottom:136.537500px;}
.y15{bottom:148.800000px;}
.y82{bottom:148.987500px;}
.y65{bottom:150.195000px;}
.ya7{bottom:150.345000px;}
.ydc{bottom:150.495000px;}
.y39{bottom:160.395000px;}
.y81{bottom:172.830000px;}
.y64{bottom:174.045000px;}
.ya6{bottom:174.180000px;}
.ydb{bottom:174.345000px;}
.y38{bottom:184.095000px;}
.y80{bottom:196.545000px;}
.y63{bottom:197.745000px;}
.yce{bottom:197.895000px;}
.ya5{bottom:198.045000px;}
.yda{bottom:198.195000px;}
.y37{bottom:207.945000px;}
.y7f{bottom:220.395000px;}
.y62{bottom:221.595000px;}
.ya4{bottom:221.745000px;}
.yd9{bottom:221.895000px;}
.y36{bottom:231.795000px;}
.y7e{bottom:244.245000px;}
.y61{bottom:245.445000px;}
.ya3{bottom:245.595000px;}
.yd8{bottom:245.745000px;}
.y35{bottom:255.495000px;}
.y7d{bottom:267.945000px;}
.y60{bottom:269.145000px;}
.ycd{bottom:269.295000px;}
.ya2{bottom:269.445000px;}
.yd7{bottom:269.595000px;}
.y34{bottom:279.345000px;}
.y7c{bottom:291.795000px;}
.y5f{bottom:292.995000px;}
.ya1{bottom:293.130000px;}
.yd6{bottom:293.295000px;}
.y33{bottom:303.195000px;}
.y7b{bottom:315.645000px;}
.y5e{bottom:316.845000px;}
.ycc{bottom:316.995000px;}
.ya0{bottom:317.130000px;}
.y32{bottom:326.880000px;}
.y9f{bottom:337.545000px;}
.y7a{bottom:339.345000px;}
.y5d{bottom:340.545000px;}
.ycb{bottom:340.695000px;}
.yd5{bottom:340.995000px;}
.y9e{bottom:349.545000px;}
.y31{bottom:350.745000px;}
.y79{bottom:351.330000px;}
.y5c{bottom:364.380000px;}
.yca{bottom:364.545000px;}
.yd4{bottom:364.695000px;}
.y30{bottom:374.580000px;}
.y9d{bottom:384.975000px;}
.y78{bottom:387.225000px;}
.y5b{bottom:388.275000px;}
.yc9{bottom:388.425000px;}
.yd3{bottom:388.575000px;}
.y2f{bottom:398.325000px;}
.y9c{bottom:408.825000px;}
.y77{bottom:411.075000px;}
.y5a{bottom:411.975000px;}
.yc8{bottom:412.125000px;}
.yd2{bottom:412.425000px;}
.y2e{bottom:422.175000px;}
.y9b{bottom:432.675000px;}
.y76{bottom:434.925000px;}
.y59{bottom:435.825000px;}
.yc7{bottom:435.975000px;}
.yd1{bottom:436.125000px;}
.y2d{bottom:446.025000px;}
.y58{bottom:447.825000px;}
.y9a{bottom:456.525000px;}
.y75{bottom:458.775000px;}
.yc6{bottom:459.825000px;}
.yd0{bottom:459.975000px;}
.y2c{bottom:469.725000px;}
.y99{bottom:480.225000px;}
.y74{bottom:482.475000px;}
.yc5{bottom:483.525000px;}
.y57{bottom:483.825000px;}
.y2b{bottom:493.575000px;}
.y98{bottom:504.075000px;}
.y73{bottom:506.325000px;}
.yc4{bottom:507.375000px;}
.y56{bottom:507.525000px;}
.y2a{bottom:517.425000px;}
.y97{bottom:527.925000px;}
.y72{bottom:530.175000px;}
.yc3{bottom:531.225000px;}
.y55{bottom:531.375000px;}
.y95{bottom:539.925000px;}
.y29{bottom:541.275000px;}
.y96{bottom:553.575000px;}
.y71{bottom:553.875000px;}
.yc2{bottom:554.925000px;}
.y54{bottom:555.225000px;}
.y28{bottom:564.975000px;}
.y94{bottom:575.325000px;}
.y70{bottom:577.725000px;}
.yc1{bottom:578.775000px;}
.y53{bottom:579.075000px;}
.y27{bottom:588.825000px;}
.y6f{bottom:595.275000px;}
.y93{bottom:599.025000px;}
.yc0{bottom:602.625000px;}
.y52{bottom:602.775000px;}
.y26{bottom:612.675000px;}
.y92{bottom:622.875000px;}
.ybf{bottom:626.475000px;}
.y51{bottom:626.625000px;}
.y25{bottom:636.375000px;}
.y6d{bottom:639.675000px;}
.y91{bottom:646.725000px;}
.ybe{bottom:650.175000px;}
.y50{bottom:650.475000px;}
.y24{bottom:660.225000px;}
.y90{bottom:670.425000px;}
.ybd{bottom:674.025000px;}
.y4f{bottom:674.175000px;}
.y23{bottom:684.075000px;}
.y8f{bottom:694.275000px;}
.ybc{bottom:697.875000px;}
.y4e{bottom:698.025000px;}
.y6c{bottom:705.825000px;}
.y22{bottom:707.775000px;}
.y8e{bottom:718.125000px;}
.ybb{bottom:721.575000px;}
.y4d{bottom:721.875000px;}
.y21{bottom:731.625000px;}
.y8d{bottom:741.870000px;}
.yba{bottom:745.470000px;}
.y4c{bottom:745.620000px;}
.y6b{bottom:750.270000px;}
.y20{bottom:755.520000px;}
.y8c{bottom:765.720000px;}
.yb9{bottom:769.320000px;}
.y4b{bottom:769.470000px;}
.y8b{bottom:783.255000px;}
.y1f{bottom:788.220000px;}
.yb8{bottom:793.020000px;}
.y4a{bottom:793.320000px;}
.y6a{bottom:794.670000px;}
.y1e{bottom:805.020000px;}
.yb7{bottom:816.870000px;}
.y49{bottom:817.020000px;}
.y88{bottom:819.705000px;}
.y66{bottom:839.070000px;}
.yb6{bottom:840.720000px;}
.y48{bottom:840.870000px;}
.y1d{bottom:846.420000px;}
.y87{bottom:856.170000px;}
.yb5{bottom:864.420000px;}
.y47{bottom:864.720000px;}
.y14{bottom:867.120000px;}
.y83{bottom:874.770000px;}
.yb4{bottom:888.270000px;}
.y46{bottom:888.420000px;}
.yb3{bottom:912.120000px;}
.y45{bottom:912.270000px;}
.yb2{bottom:935.820000px;}
.y44{bottom:936.120000px;}
.yb1{bottom:959.670000px;}
.y43{bottom:959.970000px;}
.yb0{bottom:983.520000px;}
.y42{bottom:983.670000px;}
.yaf{bottom:1007.220000px;}
.y41{bottom:1007.520000px;}
.yae{bottom:1031.070000px;}
.y40{bottom:1031.370000px;}
.y13{bottom:1036.320000px;}
.yad{bottom:1054.920000px;}
.y3f{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.yac{bottom:1078.770000px;}
.y3e{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.yab{bottom:1102.500000px;}
.y3d{bottom:1102.800000px;}
.yaa{bottom:1126.350000px;}
.y3c{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.ya8{bottom:1138.350000px;}
.ye{bottom:1150.350000px;}
.ya9{bottom:1152.450000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h1d{height:17.850000px;}
.h8{height:17.887500px;}
.he{height:20.700000px;}
.h1e{height:35.700000px;}
.hf{height:41.400000px;}
.h17{height:43.650000px;}
.h18{height:43.687500px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.h10{height:51.679688px;}
.h7{height:52.998047px;}
.h1b{height:53.535000px;}
.h1c{height:54.421875px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h1f{height:60.679688px;}
.hc{height:64.775391px;}
.h15{height:65.400000px;}
.h9{height:65.645508px;}
.h16{height:66.515625px;}
.h11{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.h14{height:74.004654px;}
.h2{height:82.441406px;}
.h21{height:108.679688px;}
.h20{height:115.279687px;}
.h12{height:117.079687px;}
.h19{height:117.139688px;}
.h1a{height:118.604063px;}
.h13{height:118.664062px;}
.hd{height:165.585000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wf{width:55.200000px;}
.we{width:71.400000px;}
.wd{width:77.587500px;}
.wb{width:81.900000px;}
.w10{width:89.700000px;}
.w11{width:94.987500px;}
.wa{width:96.187500px;}
.wc{width:100.350000px;}
.w9{width:111.150000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x18{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x2b{left:58.949987px;}
.x2a{left:69.599987px;}
.x19{left:95.699987px;}
.x26{left:97.649987px;}
.x17{left:100.200000px;}
.x16{left:104.700000px;}
.xd{left:106.980000px;}
.x10{left:117.449987px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x1c{left:164.894987px;}
.x2d{left:166.994987px;}
.x2c{left:172.679987px;}
.x28{left:179.429987px;}
.x24{left:193.845000px;}
.x27{left:195.494987px;}
.x29{left:225.494987px;}
.x1d{left:235.694987px;}
.x25{left:249.795000px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x11{left:339.494987px;}
.x1a{left:457.274987px;}
.x1e{left:484.274987px;}
.x1b{left:510.374987px;}
.x2e{left:534.524987px;}
.x1f{left:569.925000px;}
.x22{left:574.874987px;}
.x13{left:609.074987px;}
.xc{left:625.425000px;}
.x14{left:636.569987px;}
.x23{left:653.354987px;}
.x20{left:666.870000px;}
.x12{left:697.604987px;}
.xf{left:713.655000px;}
.x2f{left:726.869987px;}
.x30{left:729.119987px;}
.x21{left:749.520000px;}
.x2{left:819.119987px;}
.x15{left:850.619987px;}
@media print{
.v4{vertical-align:-12.800000pt;}
.v1{vertical-align:-5.333333pt;}
.v7{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.333333pt;}
.v5{vertical-align:12.800000pt;}
.v9{vertical-align:42.666667pt;}
.v8{vertical-align:48.533333pt;}
.v3{vertical-align:50.133333pt;}
.v6{vertical-align:55.466667pt;}
.ls8{letter-spacing:-2.666667pt;}
.lsa{letter-spacing:-2.661333pt;}
.ls7{letter-spacing:-2.656000pt;}
.ls9{letter-spacing:-2.400000pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.021333pt;}
.ls1a{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:-0.010667pt;}
.lse{letter-spacing:-0.000005pt;}
.ls4{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.005333pt;}
.ls3{letter-spacing:0.010667pt;}
.lsf{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.021333pt;}
.ls17{letter-spacing:0.064000pt;}
.ls0{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.112000pt;}
.ls5{letter-spacing:0.133333pt;}
.ls1d{letter-spacing:0.170667pt;}
.lsc{letter-spacing:0.197333pt;}
.ls2{letter-spacing:0.266667pt;}
.ls10{letter-spacing:0.298667pt;}
.ls20{letter-spacing:0.341333pt;}
.ls19{letter-spacing:0.533333pt;}
.ls1e{letter-spacing:0.586667pt;}
.lsd{letter-spacing:0.730667pt;}
.ls15{letter-spacing:1.322667pt;}
.ls18{letter-spacing:3.085333pt;}
.ls13{letter-spacing:20.152000pt;}
.ls14{letter-spacing:20.685333pt;}
.lsb{letter-spacing:30.208000pt;}
.ls16{letter-spacing:56.640000pt;}
.ls1f{letter-spacing:121.408000pt;}
.ls21{letter-spacing:121.541333pt;}
.ws1d{word-spacing:-53.333333pt;}
.wsd{word-spacing:-43.200000pt;}
.ws25{word-spacing:-16.170667pt;}
.ws17{word-spacing:-16.021333pt;}
.wsa{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.999995pt;}
.ws12{word-spacing:-14.666667pt;}
.wse{word-spacing:-14.080000pt;}
.ws20{word-spacing:-13.824000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws1b{word-spacing:-12.005333pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws18{word-spacing:-11.984000pt;}
.wsb{word-spacing:-10.666667pt;}
.ws10{word-spacing:-9.973333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws13{word-spacing:-0.058667pt;}
.ws19{word-spacing:-0.048000pt;}
.ws14{word-spacing:-0.037333pt;}
.ws1a{word-spacing:-0.032000pt;}
.ws22{word-spacing:-0.021333pt;}
.ws9{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.512000pt;}
.ws21{word-spacing:0.576000pt;}
.ws1e{word-spacing:1.162667pt;}
.ws24{word-spacing:2.216000pt;}
.ws23{word-spacing:3.658667pt;}
.ws15{word-spacing:8.034667pt;}
.wsf{word-spacing:8.664000pt;}
.ws1c{word-spacing:9.048000pt;}
.ws11{word-spacing:121.682667pt;}
.ws16{word-spacing:131.826667pt;}
._30{margin-left:-6.880000pt;}
._8{margin-left:-4.032000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._7{width:1.920000pt;}
._b{width:3.072000pt;}
._c{width:3.968000pt;}
._13{width:5.184000pt;}
._14{width:6.400000pt;}
._9{width:7.424000pt;}
._6{width:8.384000pt;}
._4{width:9.349333pt;}
._5{width:10.357333pt;}
._f{width:11.493333pt;}
._12{width:12.848000pt;}
._d{width:14.469333pt;}
._33{width:16.037333pt;}
._2e{width:16.981333pt;}
._19{width:17.920000pt;}
._28{width:19.200000pt;}
._27{width:20.736000pt;}
._21{width:21.888000pt;}
._17{width:22.784000pt;}
._18{width:24.512000pt;}
._a{width:25.408000pt;}
._39{width:26.304000pt;}
._10{width:27.520000pt;}
._11{width:28.480000pt;}
._15{width:30.208000pt;}
._2d{width:31.744000pt;}
._1a{width:32.960000pt;}
._2b{width:33.920000pt;}
._20{width:34.816000pt;}
._34{width:35.712000pt;}
._24{width:37.056000pt;}
._25{width:38.208000pt;}
._3d{width:39.808000pt;}
._32{width:42.432000pt;}
._1c{width:43.456000pt;}
._1d{width:44.352000pt;}
._36{width:45.888000pt;}
._16{width:48.832000pt;}
._35{width:49.920000pt;}
._22{width:51.157333pt;}
._23{width:52.096000pt;}
._1f{width:53.056000pt;}
._26{width:54.464000pt;}
._3a{width:56.064000pt;}
._31{width:58.048000pt;}
._1e{width:61.056000pt;}
._e{width:62.346667pt;}
._2f{width:63.872000pt;}
._1b{width:66.816000pt;}
._2a{width:74.240000pt;}
._3c{width:75.840000pt;}
._2c{width:78.730667pt;}
._37{width:89.600000pt;}
._38{width:90.496000pt;}
._29{width:97.664000pt;}
._3b{width:127.962667pt;}
.fs9{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y1c{bottom:3.466667pt;}
.y86{bottom:4.666667pt;}
.y8a{bottom:4.680000pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.y6e{bottom:5.600000pt;}
.y69{bottom:5.733333pt;}
.yc{bottom:6.000000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y85{bottom:20.533333pt;}
.y89{bottom:20.546667pt;}
.y1b{bottom:21.866667pt;}
.y68{bottom:25.066667pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y84{bottom:36.400000pt;}
.y1a{bottom:40.266667pt;}
.y67{bottom:44.400000pt;}
.y3{bottom:51.233333pt;}
.y19{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y18{bottom:77.066667pt;}
.y17{bottom:95.466667pt;}
.y3b{bottom:100.166667pt;}
.ycf{bottom:112.433333pt;}
.ydd{bottom:112.566667pt;}
.y16{bottom:113.866667pt;}
.y3a{bottom:121.366667pt;}
.y15{bottom:132.266667pt;}
.y82{bottom:132.433333pt;}
.y65{bottom:133.506667pt;}
.ya7{bottom:133.640000pt;}
.ydc{bottom:133.773333pt;}
.y39{bottom:142.573333pt;}
.y81{bottom:153.626667pt;}
.y64{bottom:154.706667pt;}
.ya6{bottom:154.826667pt;}
.ydb{bottom:154.973333pt;}
.y38{bottom:163.640000pt;}
.y80{bottom:174.706667pt;}
.y63{bottom:175.773333pt;}
.yce{bottom:175.906667pt;}
.ya5{bottom:176.040000pt;}
.yda{bottom:176.173333pt;}
.y37{bottom:184.840000pt;}
.y7f{bottom:195.906667pt;}
.y62{bottom:196.973333pt;}
.ya4{bottom:197.106667pt;}
.yd9{bottom:197.240000pt;}
.y36{bottom:206.040000pt;}
.y7e{bottom:217.106667pt;}
.y61{bottom:218.173333pt;}
.ya3{bottom:218.306667pt;}
.yd8{bottom:218.440000pt;}
.y35{bottom:227.106667pt;}
.y7d{bottom:238.173333pt;}
.y60{bottom:239.240000pt;}
.ycd{bottom:239.373333pt;}
.ya2{bottom:239.506667pt;}
.yd7{bottom:239.640000pt;}
.y34{bottom:248.306667pt;}
.y7c{bottom:259.373333pt;}
.y5f{bottom:260.440000pt;}
.ya1{bottom:260.560000pt;}
.yd6{bottom:260.706667pt;}
.y33{bottom:269.506667pt;}
.y7b{bottom:280.573333pt;}
.y5e{bottom:281.640000pt;}
.ycc{bottom:281.773333pt;}
.ya0{bottom:281.893333pt;}
.y32{bottom:290.560000pt;}
.y9f{bottom:300.040000pt;}
.y7a{bottom:301.640000pt;}
.y5d{bottom:302.706667pt;}
.ycb{bottom:302.840000pt;}
.yd5{bottom:303.106667pt;}
.y9e{bottom:310.706667pt;}
.y31{bottom:311.773333pt;}
.y79{bottom:312.293333pt;}
.y5c{bottom:323.893333pt;}
.yca{bottom:324.040000pt;}
.yd4{bottom:324.173333pt;}
.y30{bottom:332.960000pt;}
.y9d{bottom:342.200000pt;}
.y78{bottom:344.200000pt;}
.y5b{bottom:345.133333pt;}
.yc9{bottom:345.266667pt;}
.yd3{bottom:345.400000pt;}
.y2f{bottom:354.066667pt;}
.y9c{bottom:363.400000pt;}
.y77{bottom:365.400000pt;}
.y5a{bottom:366.200000pt;}
.yc8{bottom:366.333333pt;}
.yd2{bottom:366.600000pt;}
.y2e{bottom:375.266667pt;}
.y9b{bottom:384.600000pt;}
.y76{bottom:386.600000pt;}
.y59{bottom:387.400000pt;}
.yc7{bottom:387.533333pt;}
.yd1{bottom:387.666667pt;}
.y2d{bottom:396.466667pt;}
.y58{bottom:398.066667pt;}
.y9a{bottom:405.800000pt;}
.y75{bottom:407.800000pt;}
.yc6{bottom:408.733333pt;}
.yd0{bottom:408.866667pt;}
.y2c{bottom:417.533333pt;}
.y99{bottom:426.866667pt;}
.y74{bottom:428.866667pt;}
.yc5{bottom:429.800000pt;}
.y57{bottom:430.066667pt;}
.y2b{bottom:438.733333pt;}
.y98{bottom:448.066667pt;}
.y73{bottom:450.066667pt;}
.yc4{bottom:451.000000pt;}
.y56{bottom:451.133333pt;}
.y2a{bottom:459.933333pt;}
.y97{bottom:469.266667pt;}
.y72{bottom:471.266667pt;}
.yc3{bottom:472.200000pt;}
.y55{bottom:472.333333pt;}
.y95{bottom:479.933333pt;}
.y29{bottom:481.133333pt;}
.y96{bottom:492.066667pt;}
.y71{bottom:492.333333pt;}
.yc2{bottom:493.266667pt;}
.y54{bottom:493.533333pt;}
.y28{bottom:502.200000pt;}
.y94{bottom:511.400000pt;}
.y70{bottom:513.533333pt;}
.yc1{bottom:514.466667pt;}
.y53{bottom:514.733333pt;}
.y27{bottom:523.400000pt;}
.y6f{bottom:529.133333pt;}
.y93{bottom:532.466667pt;}
.yc0{bottom:535.666667pt;}
.y52{bottom:535.800000pt;}
.y26{bottom:544.600000pt;}
.y92{bottom:553.666667pt;}
.ybf{bottom:556.866667pt;}
.y51{bottom:557.000000pt;}
.y25{bottom:565.666667pt;}
.y6d{bottom:568.600000pt;}
.y91{bottom:574.866667pt;}
.ybe{bottom:577.933333pt;}
.y50{bottom:578.200000pt;}
.y24{bottom:586.866667pt;}
.y90{bottom:595.933333pt;}
.ybd{bottom:599.133333pt;}
.y4f{bottom:599.266667pt;}
.y23{bottom:608.066667pt;}
.y8f{bottom:617.133333pt;}
.ybc{bottom:620.333333pt;}
.y4e{bottom:620.466667pt;}
.y6c{bottom:627.400000pt;}
.y22{bottom:629.133333pt;}
.y8e{bottom:638.333333pt;}
.ybb{bottom:641.400000pt;}
.y4d{bottom:641.666667pt;}
.y21{bottom:650.333333pt;}
.y8d{bottom:659.440000pt;}
.yba{bottom:662.640000pt;}
.y4c{bottom:662.773333pt;}
.y6b{bottom:666.906667pt;}
.y20{bottom:671.573333pt;}
.y8c{bottom:680.640000pt;}
.yb9{bottom:683.840000pt;}
.y4b{bottom:683.973333pt;}
.y8b{bottom:696.226667pt;}
.y1f{bottom:700.640000pt;}
.yb8{bottom:704.906667pt;}
.y4a{bottom:705.173333pt;}
.y6a{bottom:706.373333pt;}
.y1e{bottom:715.573333pt;}
.yb7{bottom:726.106667pt;}
.y49{bottom:726.240000pt;}
.y88{bottom:728.626667pt;}
.y66{bottom:745.840000pt;}
.yb6{bottom:747.306667pt;}
.y48{bottom:747.440000pt;}
.y1d{bottom:752.373333pt;}
.y87{bottom:761.040000pt;}
.yb5{bottom:768.373333pt;}
.y47{bottom:768.640000pt;}
.y14{bottom:770.773333pt;}
.y83{bottom:777.573333pt;}
.yb4{bottom:789.573333pt;}
.y46{bottom:789.706667pt;}
.yb3{bottom:810.773333pt;}
.y45{bottom:810.906667pt;}
.yb2{bottom:831.840000pt;}
.y44{bottom:832.106667pt;}
.yb1{bottom:853.040000pt;}
.y43{bottom:853.306667pt;}
.yb0{bottom:874.240000pt;}
.y42{bottom:874.373333pt;}
.yaf{bottom:895.306667pt;}
.y41{bottom:895.573333pt;}
.yae{bottom:916.506667pt;}
.y40{bottom:916.773333pt;}
.y13{bottom:921.173333pt;}
.yad{bottom:937.706667pt;}
.y3f{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.yac{bottom:958.906667pt;}
.y3e{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.yab{bottom:980.000000pt;}
.y3d{bottom:980.266667pt;}
.yaa{bottom:1001.200000pt;}
.y3c{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.ya8{bottom:1011.866667pt;}
.ye{bottom:1022.533333pt;}
.ya9{bottom:1024.400000pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h1d{height:15.866667pt;}
.h8{height:15.900000pt;}
.he{height:18.400000pt;}
.h1e{height:31.733333pt;}
.hf{height:36.800000pt;}
.h17{height:38.800000pt;}
.h18{height:38.833333pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.h10{height:45.937500pt;}
.h7{height:47.109375pt;}
.h1b{height:47.586667pt;}
.h1c{height:48.375000pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h1f{height:53.937500pt;}
.hc{height:57.578125pt;}
.h15{height:58.133333pt;}
.h9{height:58.351562pt;}
.h16{height:59.125000pt;}
.h11{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.h14{height:65.781915pt;}
.h2{height:73.281250pt;}
.h21{height:96.604167pt;}
.h20{height:102.470833pt;}
.h12{height:104.070833pt;}
.h19{height:104.124167pt;}
.h1a{height:105.425833pt;}
.h13{height:105.479167pt;}
.hd{height:147.186667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wf{width:49.066667pt;}
.we{width:63.466667pt;}
.wd{width:68.966667pt;}
.wb{width:72.800000pt;}
.w10{width:79.733333pt;}
.w11{width:84.433333pt;}
.wa{width:85.500000pt;}
.wc{width:89.200000pt;}
.w9{width:98.800000pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x18{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x2b{left:52.399988pt;}
.x2a{left:61.866655pt;}
.x19{left:85.066655pt;}
.x26{left:86.799988pt;}
.x17{left:89.066667pt;}
.x16{left:93.066667pt;}
.xd{left:95.093333pt;}
.x10{left:104.399988pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x1c{left:146.573322pt;}
.x2d{left:148.439988pt;}
.x2c{left:153.493322pt;}
.x28{left:159.493322pt;}
.x24{left:172.306667pt;}
.x27{left:173.773322pt;}
.x29{left:200.439988pt;}
.x1d{left:209.506655pt;}
.x25{left:222.040000pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x11{left:301.773322pt;}
.x1a{left:406.466655pt;}
.x1e{left:430.466655pt;}
.x1b{left:453.666655pt;}
.x2e{left:475.133322pt;}
.x1f{left:506.600000pt;}
.x22{left:510.999988pt;}
.x13{left:541.399988pt;}
.xc{left:555.933333pt;}
.x14{left:565.839988pt;}
.x23{left:580.759988pt;}
.x20{left:592.773333pt;}
.x12{left:620.093322pt;}
.xf{left:634.360000pt;}
.x2f{left:646.106655pt;}
.x30{left:648.106655pt;}
.x21{left:666.240000pt;}
.x2{left:728.106655pt;}
.x15{left:756.106655pt;}
}




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