
    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_4be58c19a564b55a58b018ff.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3560653ceba6d42cd5647b87.woff')format("woff");}.ff2{font-family:ff2;line-height:0.935547;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_6f302baa8fa4576c6dbd83bc.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0c8675d3731698c6aae9576c.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d9ce3358f69bf013df48030f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.709961;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_aabb590aaac510486d3be20c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ab39b306fc668260abbcc741.woff')format("woff");}.ff7{font-family:ff7;line-height:0.882324;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_ac498b70f9e71c13dc7afe13.woff')format("woff");}.ff8{font-family:ff8;line-height:0.861328;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_eed7cfbcf39696f88c33226f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_06601872bd9c543197c6999b.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_94995f8862910e0c5d0e7dd2.woff')format("woff");}.ffb{font-family:ffb;line-height:0.675781;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_f84bbae8fa300ae0e70bdbf1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_bfd053f76056982851103b4b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.675781;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_af9129e4ccf860e7391fffac.woff')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v2{vertical-align:-24.480000px;}
.v5{vertical-align:-10.080000px;}
.v4{vertical-align:-8.640000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls10{letter-spacing:-0.125856px;}
.ls12{letter-spacing:-0.119232px;}
.ls11{letter-spacing:-0.059616px;}
.ls8{letter-spacing:-0.014400px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.000576px;}
.ls22{letter-spacing:0.001440px;}
.ls7{letter-spacing:0.011520px;}
.ls1a{letter-spacing:0.011808px;}
.lse{letter-spacing:0.012096px;}
.ls6{letter-spacing:0.014400px;}
.ls1d{letter-spacing:0.061920px;}
.ls20{letter-spacing:0.087696px;}
.ls14{letter-spacing:0.119952px;}
.ls1c{letter-spacing:0.125280px;}
.ls1e{letter-spacing:0.162864px;}
.ls1b{letter-spacing:0.200448px;}
.ls13{letter-spacing:0.204336px;}
.lsa{letter-spacing:0.237600px;}
.ls2{letter-spacing:0.239040px;}
.ls3{letter-spacing:0.239904px;}
.lsd{letter-spacing:0.240048px;}
.lsf{letter-spacing:0.240336px;}
.ls1{letter-spacing:0.240480px;}
.ls9{letter-spacing:0.242352px;}
.ls4{letter-spacing:0.268992px;}
.ls2c{letter-spacing:0.275040px;}
.ls23{letter-spacing:0.275616px;}
.lsc{letter-spacing:0.354240px;}
.lsb{letter-spacing:0.355680px;}
.ls19{letter-spacing:0.356400px;}
.ls1f{letter-spacing:0.384480px;}
.ls16{letter-spacing:0.496800px;}
.ls5{letter-spacing:0.563040px;}
.ls18{letter-spacing:0.705600px;}
.ls26{letter-spacing:1.687968px;}
.ls25{letter-spacing:2.661984px;}
.ls2b{letter-spacing:3.507264px;}
.ls24{letter-spacing:4.670352px;}
.ls17{letter-spacing:4.747680px;}
.ls2a{letter-spacing:5.473152px;}
.ls27{letter-spacing:12.857328px;}
.ls29{letter-spacing:32.611680px;}
.ls28{letter-spacing:32.611824px;}
.ls21{letter-spacing:46.434672px;}
.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;}
}
.ws0{word-spacing:-29.916000px;}
.ws5{word-spacing:-18.014400px;}
.ws7{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.985600px;}
.ws9{word-spacing:-16.434144px;}
.wsb{word-spacing:-12.236400px;}
.ws10{word-spacing:-12.155616px;}
.ws4{word-spacing:-12.122352px;}
.ws8{word-spacing:-12.117600px;}
.wsa{word-spacing:-12.084336px;}
.ws3{word-spacing:-11.880000px;}
.wsc{word-spacing:-0.242208px;}
.wse{word-spacing:-0.204624px;}
.wsd{word-spacing:-0.167040px;}
.wsf{word-spacing:-0.129456px;}
.ws6{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._2{margin-left:-7.644000px;}
._0{margin-left:-6.216002px;}
._16{margin-left:-4.120704px;}
._1{margin-left:-3.108000px;}
._5{margin-left:-1.291536px;}
._7{width:1.396800px;}
._a{width:3.168000px;}
._9{width:4.665600px;}
._8{width:6.307200px;}
._3{width:7.714656px;}
._6{width:8.827200px;}
._13{width:10.159200px;}
._11{width:11.208096px;}
._e{width:13.100688px;}
._10{width:14.143104px;}
._14{width:15.315696px;}
._12{width:16.977600px;}
._f{width:20.995920px;}
._4{width:23.702400px;}
._15{width:32.551200px;}
._18{width:35.316000px;}
._b{width:36.669600px;}
._d{width:47.980800px;}
._17{width:114.048000px;}
._c{width:849.029760px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.760000px;}
.fs4{font-size:47.520000px;}
.fs6{font-size:50.400000px;}
.fs5{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:95.640000px;}
.y10a{bottom:106.080000px;}
.yf2{bottom:107.520000px;}
.y22{bottom:108.600000px;}
.yb2{bottom:108.960000px;}
.y7f{bottom:110.400000px;}
.ycf{bottom:112.200000px;}
.y6c{bottom:115.800000px;}
.y4c{bottom:125.160000px;}
.y98{bottom:127.680000px;}
.ye4{bottom:128.400000px;}
.y38{bottom:137.040000px;}
.y109{bottom:138.840000px;}
.yf1{bottom:141.000000px;}
.yb1{bottom:142.800000px;}
.y67{bottom:145.320000px;}
.yce{bottom:146.040000px;}
.y21{bottom:150.000000px;}
.y57{bottom:151.800000px;}
.y6b{bottom:157.200000px;}
.ye3{bottom:161.520000px;}
.y4b{bottom:166.560000px;}
.y97{bottom:169.080000px;}
.y108{bottom:171.600000px;}
.yf0{bottom:172.680000px;}
.yb0{bottom:176.640000px;}
.ycd{bottom:177.360000px;}
.y37{bottom:178.440000px;}
.ye2{bottom:183.840000px;}
.y66{bottom:186.720000px;}
.y20{bottom:191.400000px;}
.y56{bottom:193.200000px;}
.yef{bottom:193.920000px;}
.y76{bottom:195.720000px;}
.y6a{bottom:198.600000px;}
.ycc{bottom:200.040000px;}
.y107{bottom:204.360000px;}
.ye1{bottom:206.160000px;}
.y4a{bottom:207.960000px;}
.y96{bottom:210.480000px;}
.y36{bottom:219.840000px;}
.ycb{bottom:220.560000px;}
.yee{bottom:223.800000px;}
.ye0{bottom:228.480000px;}
.y91{bottom:231.720000px;}
.y1f{bottom:232.800000px;}
.y55{bottom:234.600000px;}
.yc2{bottom:234.960000px;}
.y106{bottom:237.120000px;}
.y65{bottom:240.000000px;}
.yaf{bottom:240.720000px;}
.yca{bottom:241.440000px;}
.y49{bottom:249.360000px;}
.y95{bottom:251.880000px;}
.ydf{bottom:257.640000px;}
.y7c{bottom:261.240000px;}
.yc9{bottom:261.960000px;}
.y35{bottom:262.680000px;}
.yc1{bottom:267.720000px;}
.y105{bottom:269.880000px;}
.y90{bottom:273.120000px;}
.yae{bottom:273.480000px;}
.y1e{bottom:274.920000px;}
.y54{bottom:276.000000px;}
.y64{bottom:281.400000px;}
.y48{bottom:290.760000px;}
.yc8{bottom:292.200000px;}
.y69{bottom:293.280000px;}
.yc0{bottom:300.480000px;}
.y104{bottom:302.280000px;}
.y75{bottom:302.640000px;}
.y34{bottom:305.520000px;}
.yad{bottom:306.240000px;}
.yd9{bottom:309.480000px;}
.y8f{bottom:314.520000px;}
.y1d{bottom:316.320000px;}
.y53{bottom:317.400000px;}
.y63{bottom:322.800000px;}
.y47{bottom:332.160000px;}
.ybf{bottom:333.240000px;}
.y94{bottom:334.680000px;}
.y103{bottom:335.040000px;}
.yac{bottom:339.000000px;}
.yd8{bottom:342.240000px;}
.y74{bottom:344.040000px;}
.y7b{bottom:345.480000px;}
.y33{bottom:346.920000px;}
.y8e{bottom:355.920000px;}
.y1c{bottom:357.720000px;}
.y52{bottom:358.800000px;}
.yd7{bottom:363.120000px;}
.y62{bottom:364.200000px;}
.ybe{bottom:366.000000px;}
.y102{bottom:367.800000px;}
.yab{bottom:371.400000px;}
.y46{bottom:374.640000px;}
.yd6{bottom:384.000000px;}
.y73{bottom:385.440000px;}
.ybd{bottom:386.880000px;}
.y32{bottom:388.320000px;}
.y8d{bottom:397.320000px;}
.y1b{bottom:399.120000px;}
.y51{bottom:400.200000px;}
.y101{bottom:400.560000px;}
.yaa{bottom:404.160000px;}
.yd5{bottom:404.520000px;}
.y61{bottom:405.600000px;}
.ybc{bottom:417.120000px;}
.y45{bottom:417.480000px;}
.ya9{bottom:425.400000px;}
.y72{bottom:426.840000px;}
.y7a{bottom:429.720000px;}
.y100{bottom:433.320000px;}
.yd4{bottom:434.760000px;}
.y8c{bottom:438.720000px;}
.y1a{bottom:441.600000px;}
.ya8{bottom:445.920000px;}
.y60{bottom:447.000000px;}
.y44{bottom:458.880000px;}
.yff{bottom:466.080000px;}
.ya7{bottom:466.800000px;}
.y71{bottom:468.240000px;}
.y79{bottom:471.120000px;}
.y8b{bottom:480.120000px;}
.y31{bottom:483.000000px;}
.y19{bottom:484.440000px;}
.ya6{bottom:487.320000px;}
.y5f{bottom:488.400000px;}
.yfe{bottom:498.480000px;}
.y43{bottom:500.280000px;}
.ya5{bottom:508.200000px;}
.y70{bottom:509.640000px;}
.y78{bottom:512.520000px;}
.y8a{bottom:521.520000px;}
.y30{bottom:524.400000px;}
.y18{bottom:527.280000px;}
.ya4{bottom:528.720000px;}
.yfd{bottom:531.240000px;}
.yed{bottom:536.640000px;}
.y42{bottom:541.680000px;}
.ya3{bottom:549.600000px;}
.y6f{bottom:552.480000px;}
.y77{bottom:553.920000px;}
.y89{bottom:562.920000px;}
.y2f{bottom:565.800000px;}
.yec{bottom:568.320000px;}
.y17{bottom:570.120000px;}
.yfc{bottom:573.000000px;}
.y41{bottom:583.080000px;}
.yeb{bottom:589.200000px;}
.ya2{bottom:591.000000px;}
.yfb{bottom:593.880000px;}
.y5e{bottom:595.320000px;}
.y119{bottom:606.120000px;}
.y2e{bottom:607.200000px;}
.yea{bottom:610.080000px;}
.yfa{bottom:614.400000px;}
.y88{bottom:616.560000px;}
.y50{bottom:619.080000px;}
.ya1{bottom:620.880000px;}
.y16{bottom:623.400000px;}
.y40{bottom:624.480000px;}
.ye9{bottom:630.600000px;}
.yf9{bottom:635.280000px;}
.y118{bottom:638.520000px;}
.y2d{bottom:648.600000px;}
.ye8{bottom:651.480000px;}
.yf8{bottom:655.800000px;}
.y87{bottom:657.960000px;}
.y93{bottom:660.480000px;}
.y3f{bottom:665.880000px;}
.ybb{bottom:671.280000px;}
.ye7{bottom:672.000000px;}
.y4f{bottom:672.720000px;}
.y15{bottom:676.680000px;}
.yd3{bottom:684.600000px;}
.y5d{bottom:690.000000px;}
.ye6{bottom:692.880000px;}
.yf7{bottom:697.200000px;}
.y86{bottom:699.360000px;}
.y2c{bottom:701.880000px;}
.yba{bottom:704.040000px;}
.y14{bottom:711.240000px;}
.y92{bottom:714.120000px;}
.yd2{bottom:716.280000px;}
.yf6{bottom:718.080000px;}
.y3e{bottom:719.520000px;}
.y8{bottom:721.324478px;}
.ye5{bottom:723.120000px;}
.y117{bottom:725.280000px;}
.y4e{bottom:726.000000px;}
.y5c{bottom:731.400000px;}
.yb9{bottom:736.800000px;}
.yf5{bottom:738.600000px;}
.y85{bottom:740.760000px;}
.y13{bottom:745.440000px;}
.yd1{bottom:748.680000px;}
.y7{bottom:751.324478px;}
.y2b{bottom:755.520000px;}
.y116{bottom:757.320000px;}
.y4d{bottom:767.400000px;}
.yb8{bottom:769.560000px;}
.yd0{bottom:769.920000px;}
.y3d{bottom:772.800000px;}
.yf4{bottom:773.160000px;}
.y115{bottom:778.560000px;}
.y6{bottom:781.324501px;}
.y84{bottom:782.160000px;}
.y12{bottom:784.320000px;}
.y7e{bottom:784.680000px;}
.yc7{bottom:786.120000px;}
.yb7{bottom:790.440000px;}
.y6e{bottom:796.920000px;}
.y114{bottom:799.080000px;}
.yf3{bottom:802.680000px;}
.y2a{bottom:808.800000px;}
.yb6{bottom:811.320000px;}
.y5b{bottom:814.200000px;}
.yde{bottom:816.360000px;}
.y11{bottom:817.080000px;}
.yc6{bottom:818.880000px;}
.y113{bottom:819.960000px;}
.y83{bottom:823.560000px;}
.y3c{bottom:826.080000px;}
.y5{bottom:829.324501px;}
.yb5{bottom:831.840000px;}
.y6d{bottom:838.320000px;}
.yc5{bottom:839.760000px;}
.ydd{bottom:848.040000px;}
.y10{bottom:849.840000px;}
.y29{bottom:850.200000px;}
.y112{bottom:852.360000px;}
.yb4{bottom:852.720000px;}
.y5a{bottom:855.600000px;}
.y4{bottom:859.324501px;}
.yc4{bottom:860.640000px;}
.y82{bottom:864.960000px;}
.y3b{bottom:867.480000px;}
.ydc{bottom:868.920000px;}
.y111{bottom:873.240000px;}
.yf{bottom:876.120000px;}
.yb3{bottom:882.960000px;}
.yc3{bottom:889.080000px;}
.y3{bottom:889.324501px;}
.ydb{bottom:889.800000px;}
.y28{bottom:891.600000px;}
.y110{bottom:894.120000px;}
.y59{bottom:897.000000px;}
.ye{bottom:903.480000px;}
.y81{bottom:906.360000px;}
.y3a{bottom:908.880000px;}
.yda{bottom:918.240000px;}
.y10f{bottom:926.160000px;}
.y27{bottom:933.000000px;}
.y2{bottom:934.378495px;}
.y58{bottom:938.400000px;}
.y9e{bottom:943.080000px;}
.y80{bottom:948.840000px;}
.yd{bottom:950.280000px;}
.y10e{bottom:958.920000px;}
.y26{bottom:974.400000px;}
.y10d{bottom:980.160000px;}
.y1{bottom:987.547505px;}
.yc{bottom:991.680000px;}
.y9d{bottom:995.640000px;}
.y10c{bottom:1000.680000px;}
.y68{bottom:1003.560000px;}
.y25{bottom:1015.800000px;}
.y39{bottom:1033.080000px;}
.y9c{bottom:1040.640000px;}
.yb{bottom:1044.960000px;}
.y99{bottom:1049.640000px;}
.y10b{bottom:1054.320000px;}
.y24{bottom:1057.200000px;}
.y9b{bottom:1060.800000px;}
.y9a{bottom:1063.320000px;}
.ya{bottom:1086.360000px;}
.y23{bottom:1098.600000px;}
.ya0{bottom:1107.240000px;}
.y9{bottom:1140.000000px;}
.y9f{bottom:1141.080000px;}
.hd{height:29.729531px;}
.h8{height:32.994844px;}
.hc{height:33.591797px;}
.hf{height:44.149219px;}
.he{height:45.895781px;}
.h6{height:48.796875px;}
.ha{height:49.992188px;}
.h9{height:50.027344px;}
.h7{height:57.474844px;}
.h3{height:61.195312px;}
.h5{height:78.626953px;}
.h4{height:78.679688px;}
.h2{height:87.421875px;}
.hb{height:1248.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:874.500000px;}
.w3{width:876.000000px;}
.w2{width:892.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:16.500000px;}
.x6{left:18.000000px;}
.x3{left:84.959856px;}
.x2{left:105.840000px;}
.x17{left:138.959856px;}
.x1{left:294.805496px;}
.xa{left:446.384880px;}
.x12{left:584.084880px;}
.x11{left:597.224880px;}
.xd{left:601.724880px;}
.xc{left:607.844520px;}
.x8{left:616.293720px;}
.xe{left:621.164880px;}
.x5{left:633.359400px;}
.x15{left:638.444880px;}
.x7{left:640.170360px;}
.x10{left:727.544880px;}
.x14{left:734.024880px;}
.xf{left:736.544880px;}
.x9{left:749.181240px;}
.x13{left:750.584880px;}
.xb{left:753.284520px;}
.x16{left:807.644520px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v5{vertical-align:-8.960000pt;}
.v4{vertical-align:-7.680000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls10{letter-spacing:-0.111872pt;}
.ls12{letter-spacing:-0.105984pt;}
.ls11{letter-spacing:-0.052992pt;}
.ls8{letter-spacing:-0.012800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.000512pt;}
.ls22{letter-spacing:0.001280pt;}
.ls7{letter-spacing:0.010240pt;}
.ls1a{letter-spacing:0.010496pt;}
.lse{letter-spacing:0.010752pt;}
.ls6{letter-spacing:0.012800pt;}
.ls1d{letter-spacing:0.055040pt;}
.ls20{letter-spacing:0.077952pt;}
.ls14{letter-spacing:0.106624pt;}
.ls1c{letter-spacing:0.111360pt;}
.ls1e{letter-spacing:0.144768pt;}
.ls1b{letter-spacing:0.178176pt;}
.ls13{letter-spacing:0.181632pt;}
.lsa{letter-spacing:0.211200pt;}
.ls2{letter-spacing:0.212480pt;}
.ls3{letter-spacing:0.213248pt;}
.lsd{letter-spacing:0.213376pt;}
.lsf{letter-spacing:0.213632pt;}
.ls1{letter-spacing:0.213760pt;}
.ls9{letter-spacing:0.215424pt;}
.ls4{letter-spacing:0.239104pt;}
.ls2c{letter-spacing:0.244480pt;}
.ls23{letter-spacing:0.244992pt;}
.lsc{letter-spacing:0.314880pt;}
.lsb{letter-spacing:0.316160pt;}
.ls19{letter-spacing:0.316800pt;}
.ls1f{letter-spacing:0.341760pt;}
.ls16{letter-spacing:0.441600pt;}
.ls5{letter-spacing:0.500480pt;}
.ls18{letter-spacing:0.627200pt;}
.ls26{letter-spacing:1.500416pt;}
.ls25{letter-spacing:2.366208pt;}
.ls2b{letter-spacing:3.117568pt;}
.ls24{letter-spacing:4.151424pt;}
.ls17{letter-spacing:4.220160pt;}
.ls2a{letter-spacing:4.865024pt;}
.ls27{letter-spacing:11.428736pt;}
.ls29{letter-spacing:28.988160pt;}
.ls28{letter-spacing:28.988288pt;}
.ls21{letter-spacing:41.275264pt;}
.ws0{word-spacing:-26.592000pt;}
.ws5{word-spacing:-16.012800pt;}
.ws7{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.987200pt;}
.ws9{word-spacing:-14.608128pt;}
.wsb{word-spacing:-10.876800pt;}
.ws10{word-spacing:-10.804992pt;}
.ws4{word-spacing:-10.775424pt;}
.ws8{word-spacing:-10.771200pt;}
.wsa{word-spacing:-10.741632pt;}
.ws3{word-spacing:-10.560000pt;}
.wsc{word-spacing:-0.215296pt;}
.wse{word-spacing:-0.181888pt;}
.wsd{word-spacing:-0.148480pt;}
.wsf{word-spacing:-0.115072pt;}
.ws6{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._2{margin-left:-6.794667pt;}
._0{margin-left:-5.525335pt;}
._16{margin-left:-3.662848pt;}
._1{margin-left:-2.762667pt;}
._5{margin-left:-1.148032pt;}
._7{width:1.241600pt;}
._a{width:2.816000pt;}
._9{width:4.147200pt;}
._8{width:5.606400pt;}
._3{width:6.857472pt;}
._6{width:7.846400pt;}
._13{width:9.030400pt;}
._11{width:9.962752pt;}
._e{width:11.645056pt;}
._10{width:12.571648pt;}
._14{width:13.613952pt;}
._12{width:15.091200pt;}
._f{width:18.663040pt;}
._4{width:21.068800pt;}
._15{width:28.934400pt;}
._18{width:31.392000pt;}
._b{width:32.595200pt;}
._d{width:42.649600pt;}
._17{width:101.376000pt;}
._c{width:754.693120pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.240000pt;}
.fs6{font-size:44.800000pt;}
.fs5{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:85.013333pt;}
.y10a{bottom:94.293333pt;}
.yf2{bottom:95.573333pt;}
.y22{bottom:96.533333pt;}
.yb2{bottom:96.853333pt;}
.y7f{bottom:98.133333pt;}
.ycf{bottom:99.733333pt;}
.y6c{bottom:102.933333pt;}
.y4c{bottom:111.253333pt;}
.y98{bottom:113.493333pt;}
.ye4{bottom:114.133333pt;}
.y38{bottom:121.813333pt;}
.y109{bottom:123.413333pt;}
.yf1{bottom:125.333333pt;}
.yb1{bottom:126.933333pt;}
.y67{bottom:129.173333pt;}
.yce{bottom:129.813333pt;}
.y21{bottom:133.333333pt;}
.y57{bottom:134.933333pt;}
.y6b{bottom:139.733333pt;}
.ye3{bottom:143.573333pt;}
.y4b{bottom:148.053333pt;}
.y97{bottom:150.293333pt;}
.y108{bottom:152.533333pt;}
.yf0{bottom:153.493333pt;}
.yb0{bottom:157.013333pt;}
.ycd{bottom:157.653333pt;}
.y37{bottom:158.613333pt;}
.ye2{bottom:163.413333pt;}
.y66{bottom:165.973333pt;}
.y20{bottom:170.133333pt;}
.y56{bottom:171.733333pt;}
.yef{bottom:172.373333pt;}
.y76{bottom:173.973333pt;}
.y6a{bottom:176.533333pt;}
.ycc{bottom:177.813333pt;}
.y107{bottom:181.653333pt;}
.ye1{bottom:183.253333pt;}
.y4a{bottom:184.853333pt;}
.y96{bottom:187.093333pt;}
.y36{bottom:195.413333pt;}
.ycb{bottom:196.053333pt;}
.yee{bottom:198.933333pt;}
.ye0{bottom:203.093333pt;}
.y91{bottom:205.973333pt;}
.y1f{bottom:206.933333pt;}
.y55{bottom:208.533333pt;}
.yc2{bottom:208.853333pt;}
.y106{bottom:210.773333pt;}
.y65{bottom:213.333333pt;}
.yaf{bottom:213.973333pt;}
.yca{bottom:214.613333pt;}
.y49{bottom:221.653333pt;}
.y95{bottom:223.893333pt;}
.ydf{bottom:229.013333pt;}
.y7c{bottom:232.213333pt;}
.yc9{bottom:232.853333pt;}
.y35{bottom:233.493333pt;}
.yc1{bottom:237.973333pt;}
.y105{bottom:239.893333pt;}
.y90{bottom:242.773333pt;}
.yae{bottom:243.093333pt;}
.y1e{bottom:244.373333pt;}
.y54{bottom:245.333333pt;}
.y64{bottom:250.133333pt;}
.y48{bottom:258.453333pt;}
.yc8{bottom:259.733333pt;}
.y69{bottom:260.693333pt;}
.yc0{bottom:267.093333pt;}
.y104{bottom:268.693333pt;}
.y75{bottom:269.013333pt;}
.y34{bottom:271.573333pt;}
.yad{bottom:272.213333pt;}
.yd9{bottom:275.093333pt;}
.y8f{bottom:279.573333pt;}
.y1d{bottom:281.173333pt;}
.y53{bottom:282.133333pt;}
.y63{bottom:286.933333pt;}
.y47{bottom:295.253333pt;}
.ybf{bottom:296.213333pt;}
.y94{bottom:297.493333pt;}
.y103{bottom:297.813333pt;}
.yac{bottom:301.333333pt;}
.yd8{bottom:304.213333pt;}
.y74{bottom:305.813333pt;}
.y7b{bottom:307.093333pt;}
.y33{bottom:308.373333pt;}
.y8e{bottom:316.373333pt;}
.y1c{bottom:317.973333pt;}
.y52{bottom:318.933333pt;}
.yd7{bottom:322.773333pt;}
.y62{bottom:323.733333pt;}
.ybe{bottom:325.333333pt;}
.y102{bottom:326.933333pt;}
.yab{bottom:330.133333pt;}
.y46{bottom:333.013333pt;}
.yd6{bottom:341.333333pt;}
.y73{bottom:342.613333pt;}
.ybd{bottom:343.893333pt;}
.y32{bottom:345.173333pt;}
.y8d{bottom:353.173333pt;}
.y1b{bottom:354.773333pt;}
.y51{bottom:355.733333pt;}
.y101{bottom:356.053333pt;}
.yaa{bottom:359.253333pt;}
.yd5{bottom:359.573333pt;}
.y61{bottom:360.533333pt;}
.ybc{bottom:370.773333pt;}
.y45{bottom:371.093333pt;}
.ya9{bottom:378.133333pt;}
.y72{bottom:379.413333pt;}
.y7a{bottom:381.973333pt;}
.y100{bottom:385.173333pt;}
.yd4{bottom:386.453333pt;}
.y8c{bottom:389.973333pt;}
.y1a{bottom:392.533333pt;}
.ya8{bottom:396.373333pt;}
.y60{bottom:397.333333pt;}
.y44{bottom:407.893333pt;}
.yff{bottom:414.293333pt;}
.ya7{bottom:414.933333pt;}
.y71{bottom:416.213333pt;}
.y79{bottom:418.773333pt;}
.y8b{bottom:426.773333pt;}
.y31{bottom:429.333333pt;}
.y19{bottom:430.613333pt;}
.ya6{bottom:433.173333pt;}
.y5f{bottom:434.133333pt;}
.yfe{bottom:443.093333pt;}
.y43{bottom:444.693333pt;}
.ya5{bottom:451.733333pt;}
.y70{bottom:453.013333pt;}
.y78{bottom:455.573333pt;}
.y8a{bottom:463.573333pt;}
.y30{bottom:466.133333pt;}
.y18{bottom:468.693333pt;}
.ya4{bottom:469.973333pt;}
.yfd{bottom:472.213333pt;}
.yed{bottom:477.013333pt;}
.y42{bottom:481.493333pt;}
.ya3{bottom:488.533333pt;}
.y6f{bottom:491.093333pt;}
.y77{bottom:492.373333pt;}
.y89{bottom:500.373333pt;}
.y2f{bottom:502.933333pt;}
.yec{bottom:505.173333pt;}
.y17{bottom:506.773333pt;}
.yfc{bottom:509.333333pt;}
.y41{bottom:518.293333pt;}
.yeb{bottom:523.733333pt;}
.ya2{bottom:525.333333pt;}
.yfb{bottom:527.893333pt;}
.y5e{bottom:529.173333pt;}
.y119{bottom:538.773333pt;}
.y2e{bottom:539.733333pt;}
.yea{bottom:542.293333pt;}
.yfa{bottom:546.133333pt;}
.y88{bottom:548.053333pt;}
.y50{bottom:550.293333pt;}
.ya1{bottom:551.893333pt;}
.y16{bottom:554.133333pt;}
.y40{bottom:555.093333pt;}
.ye9{bottom:560.533333pt;}
.yf9{bottom:564.693333pt;}
.y118{bottom:567.573333pt;}
.y2d{bottom:576.533333pt;}
.ye8{bottom:579.093333pt;}
.yf8{bottom:582.933333pt;}
.y87{bottom:584.853333pt;}
.y93{bottom:587.093333pt;}
.y3f{bottom:591.893333pt;}
.ybb{bottom:596.693333pt;}
.ye7{bottom:597.333333pt;}
.y4f{bottom:597.973333pt;}
.y15{bottom:601.493333pt;}
.yd3{bottom:608.533333pt;}
.y5d{bottom:613.333333pt;}
.ye6{bottom:615.893333pt;}
.yf7{bottom:619.733333pt;}
.y86{bottom:621.653333pt;}
.y2c{bottom:623.893333pt;}
.yba{bottom:625.813333pt;}
.y14{bottom:632.213333pt;}
.y92{bottom:634.773333pt;}
.yd2{bottom:636.693333pt;}
.yf6{bottom:638.293333pt;}
.y3e{bottom:639.573333pt;}
.y8{bottom:641.177314pt;}
.ye5{bottom:642.773333pt;}
.y117{bottom:644.693333pt;}
.y4e{bottom:645.333333pt;}
.y5c{bottom:650.133333pt;}
.yb9{bottom:654.933333pt;}
.yf5{bottom:656.533333pt;}
.y85{bottom:658.453333pt;}
.y13{bottom:662.613333pt;}
.yd1{bottom:665.493333pt;}
.y7{bottom:667.843981pt;}
.y2b{bottom:671.573333pt;}
.y116{bottom:673.173333pt;}
.y4d{bottom:682.133333pt;}
.yb8{bottom:684.053333pt;}
.yd0{bottom:684.373333pt;}
.y3d{bottom:686.933333pt;}
.yf4{bottom:687.253333pt;}
.y115{bottom:692.053333pt;}
.y6{bottom:694.510668pt;}
.y84{bottom:695.253333pt;}
.y12{bottom:697.173333pt;}
.y7e{bottom:697.493333pt;}
.yc7{bottom:698.773333pt;}
.yb7{bottom:702.613333pt;}
.y6e{bottom:708.373333pt;}
.y114{bottom:710.293333pt;}
.yf3{bottom:713.493333pt;}
.y2a{bottom:718.933333pt;}
.yb6{bottom:721.173333pt;}
.y5b{bottom:723.733333pt;}
.yde{bottom:725.653333pt;}
.y11{bottom:726.293333pt;}
.yc6{bottom:727.893333pt;}
.y113{bottom:728.853333pt;}
.y83{bottom:732.053333pt;}
.y3c{bottom:734.293333pt;}
.y5{bottom:737.177334pt;}
.yb5{bottom:739.413333pt;}
.y6d{bottom:745.173333pt;}
.yc5{bottom:746.453333pt;}
.ydd{bottom:753.813333pt;}
.y10{bottom:755.413333pt;}
.y29{bottom:755.733333pt;}
.y112{bottom:757.653333pt;}
.yb4{bottom:757.973333pt;}
.y5a{bottom:760.533333pt;}
.y4{bottom:763.844001pt;}
.yc4{bottom:765.013333pt;}
.y82{bottom:768.853333pt;}
.y3b{bottom:771.093333pt;}
.ydc{bottom:772.373333pt;}
.y111{bottom:776.213333pt;}
.yf{bottom:778.773333pt;}
.yb3{bottom:784.853333pt;}
.yc3{bottom:790.293333pt;}
.y3{bottom:790.510668pt;}
.ydb{bottom:790.933333pt;}
.y28{bottom:792.533333pt;}
.y110{bottom:794.773333pt;}
.y59{bottom:797.333333pt;}
.ye{bottom:803.093333pt;}
.y81{bottom:805.653333pt;}
.y3a{bottom:807.893333pt;}
.yda{bottom:816.213333pt;}
.y10f{bottom:823.253333pt;}
.y27{bottom:829.333333pt;}
.y2{bottom:830.558662pt;}
.y58{bottom:834.133333pt;}
.y9e{bottom:838.293333pt;}
.y80{bottom:843.413333pt;}
.yd{bottom:844.693333pt;}
.y10e{bottom:852.373333pt;}
.y26{bottom:866.133333pt;}
.y10d{bottom:871.253333pt;}
.y1{bottom:877.820004pt;}
.yc{bottom:881.493333pt;}
.y9d{bottom:885.013333pt;}
.y10c{bottom:889.493333pt;}
.y68{bottom:892.053333pt;}
.y25{bottom:902.933333pt;}
.y39{bottom:918.293333pt;}
.y9c{bottom:925.013333pt;}
.yb{bottom:928.853333pt;}
.y99{bottom:933.013333pt;}
.y10b{bottom:937.173333pt;}
.y24{bottom:939.733333pt;}
.y9b{bottom:942.933333pt;}
.y9a{bottom:945.173333pt;}
.ya{bottom:965.653333pt;}
.y23{bottom:976.533333pt;}
.ya0{bottom:984.213333pt;}
.y9{bottom:1013.333333pt;}
.y9f{bottom:1014.293333pt;}
.hd{height:26.426250pt;}
.h8{height:29.328750pt;}
.hc{height:29.859375pt;}
.hf{height:39.243750pt;}
.he{height:40.796250pt;}
.h6{height:43.375000pt;}
.ha{height:44.437500pt;}
.h9{height:44.468750pt;}
.h7{height:51.088750pt;}
.h3{height:54.395833pt;}
.h5{height:69.890625pt;}
.h4{height:69.937500pt;}
.h2{height:77.708333pt;}
.hb{height:1109.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:777.333333pt;}
.w3{width:778.666667pt;}
.w2{width:793.333333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:14.666667pt;}
.x6{left:16.000000pt;}
.x3{left:75.519872pt;}
.x2{left:94.080000pt;}
.x17{left:123.519872pt;}
.x1{left:262.049330pt;}
.xa{left:396.786560pt;}
.x12{left:519.186560pt;}
.x11{left:530.866560pt;}
.xd{left:534.866560pt;}
.xc{left:540.306240pt;}
.x8{left:547.816640pt;}
.xe{left:552.146560pt;}
.x5{left:562.986133pt;}
.x15{left:567.506560pt;}
.x7{left:569.040320pt;}
.x10{left:646.706560pt;}
.x14{left:652.466560pt;}
.xf{left:654.706560pt;}
.x9{left:665.938880pt;}
.x13{left:667.186560pt;}
.xb{left:669.586240pt;}
.x16{left:717.906240pt;}
}




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