
    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_854f22e7234640ff246e54b7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901855;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_26bcc3ab8aff2eb204f9d5a5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.905762;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_396d8b27638850319213d60b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901855;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_c1e66dfd29709a99261e35d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710938;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_a18ddda1ca8ccd64f0ec6308.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.754883;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_15109a90669c6ea04d163078.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_802d48b81e4498d137395037.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_0d01260cd076e06876991871.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.891113;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_157ff7eeacb513c980ac545c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747070;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_9775e3f9cd88a96e32c6caaa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.680176;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_765cb3f17864bd96282573fb.woff2')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_ceeed4ebfed63aca8a85e9c8.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_4d1058fe27a433331a8cd909.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.710449;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_3253516a8f30ebcbf141935f.woff2')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;}
.m2{transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-ms-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);-webkit-transform:matrix(0.236704,0.000000,-0.080443,0.236704,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.477792px;}
.lse{letter-spacing:-0.459648px;}
.ls8{letter-spacing:-0.417312px;}
.ls15{letter-spacing:-0.399168px;}
.lsa{letter-spacing:-0.381024px;}
.lsb{letter-spacing:-0.338688px;}
.ls9{letter-spacing:-0.320544px;}
.lsf{letter-spacing:-0.302400px;}
.ls2a{letter-spacing:-0.284256px;}
.ls28{letter-spacing:-0.272160px;}
.ls29{letter-spacing:-0.260064px;}
.lsd{letter-spacing:-0.241920px;}
.ls10{letter-spacing:-0.223776px;}
.ls13{letter-spacing:-0.175392px;}
.ls12{letter-spacing:-0.157248px;}
.lsc{letter-spacing:-0.145152px;}
.ls11{letter-spacing:-0.120960px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.120096px;}
.ls1{letter-spacing:0.159840px;}
.ls3{letter-spacing:0.275616px;}
.ls5{letter-spacing:0.317376px;}
.ls35{letter-spacing:0.338544px;}
.ls4{letter-spacing:0.359136px;}
.ls6{letter-spacing:0.442656px;}
.ls1f{letter-spacing:0.575856px;}
.ls17{letter-spacing:0.593280px;}
.ls18{letter-spacing:0.864288px;}
.ls32{letter-spacing:1.509120px;}
.ls2b{letter-spacing:1.654560px;}
.ls1e{letter-spacing:1.690560px;}
.ls16{letter-spacing:1.699344px;}
.ls24{letter-spacing:1.904400px;}
.ls25{letter-spacing:1.904544px;}
.ls1a{letter-spacing:2.060640px;}
.ls23{letter-spacing:2.061360px;}
.ls1d{letter-spacing:2.061504px;}
.ls1b{letter-spacing:4.176000px;}
.ls19{letter-spacing:4.177440px;}
.ls26{letter-spacing:5.945904px;}
.ls20{letter-spacing:6.223680px;}
.ls21{letter-spacing:6.225120px;}
.ls22{letter-spacing:7.523568px;}
.ls36{letter-spacing:8.417088px;}
.ls38{letter-spacing:8.418528px;}
.ls37{letter-spacing:8.418672px;}
.ls31{letter-spacing:9.514080px;}
.ls30{letter-spacing:9.514224px;}
.ls2f{letter-spacing:9.514368px;}
.ls27{letter-spacing:9.934704px;}
.ls2c{letter-spacing:11.628000px;}
.ls33{letter-spacing:12.259440px;}
.ls34{letter-spacing:12.259584px;}
.ls2e{letter-spacing:13.183200px;}
.ls1c{letter-spacing:15.341760px;}
.ls2d{letter-spacing:23.803200px;}
.ls2{letter-spacing:63.588960px;}
.ls39{letter-spacing:71.787744px;}
.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:-21.155616px;}
.ws12{word-spacing:-18.000000px;}
.ws5{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.974848px;}
.wsd{word-spacing:-14.962752px;}
.wsb{word-spacing:-14.944608px;}
.ws8{word-spacing:-14.896224px;}
.ws6{word-spacing:-14.878080px;}
.ws11{word-spacing:-14.859936px;}
.wse{word-spacing:-14.817600px;}
.ws2{word-spacing:-14.799456px;}
.ws4{word-spacing:-14.781312px;}
.ws3{word-spacing:-14.738976px;}
.wsa{word-spacing:-14.720832px;}
.ws1{word-spacing:-14.702688px;}
.ws7{word-spacing:-0.060480px;}
.ws13{word-spacing:-0.054720px;}
.wsc{word-spacing:0.000000px;}
.ws10{word-spacing:0.223776px;}
.wsf{word-spacing:16.248384px;}
._10{margin-left:-4.416768px;}
._a{margin-left:-3.406464px;}
._5{margin-left:-2.167488px;}
._0{margin-left:-1.157328px;}
._1{width:1.008000px;}
._4{width:2.020464px;}
._3{width:3.104640px;}
._8{width:4.284864px;}
._9{width:6.168960px;}
._6{width:7.620480px;}
._7{width:8.648640px;}
._12{width:10.420704px;}
._2{width:11.854080px;}
._b{width:12.871728px;}
._c{width:16.571520px;}
._11{width:18.636912px;}
._15{width:23.897376px;}
._16{width:31.691520px;}
._14{width:46.025280px;}
._d{width:80.741088px;}
._13{width:81.768960px;}
._f{width:152.755920px;}
._e{width:197.278560px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs3{font-size:63.877126px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y84{bottom:15.720000px;}
.y93{bottom:15.900000px;}
.y95{bottom:15.960000px;}
.ya0{bottom:16.020000px;}
.y97{bottom:16.080000px;}
.yd2{bottom:16.200000px;}
.ycd{bottom:16.260000px;}
.ycf{bottom:16.380000px;}
.y89{bottom:16.560000px;}
.ya2{bottom:16.860000px;}
.y9c{bottom:16.920000px;}
.y8e{bottom:16.980000px;}
.y9e{bottom:17.040000px;}
.y9a{bottom:17.400000px;}
.y86{bottom:24.840000px;}
.y87{bottom:25.200000px;}
.y90{bottom:32.820000px;}
.y91{bottom:33.180000px;}
.y88{bottom:33.840000px;}
.y8b{bottom:33.900000px;}
.y8c{bottom:34.260000px;}
.y92{bottom:50.460000px;}
.y8d{bottom:51.540000px;}
.y5a{bottom:90.720000px;}
.ycb{bottom:99.000000px;}
.y103{bottom:107.280000px;}
.y2d{bottom:109.080000px;}
.y59{bottom:110.880000px;}
.y102{bottom:124.560000px;}
.yca{bottom:131.040000px;}
.y82{bottom:134.640000px;}
.y2c{bottom:138.960000px;}
.y101{bottom:141.840000px;}
.y58{bottom:144.360000px;}
.yc9{bottom:151.200000px;}
.y81{bottom:151.920000px;}
.y100{bottom:159.120000px;}
.y57{bottom:164.520000px;}
.y2b{bottom:170.640000px;}
.yff{bottom:176.400000px;}
.yc8{bottom:180.360000px;}
.y80{bottom:181.080000px;}
.ya1{bottom:181.500000px;}
.y56{bottom:184.320000px;}
.y2a{bottom:187.920000px;}
.yfe{bottom:194.040000px;}
.yc7{bottom:197.640000px;}
.y55{bottom:204.840000px;}
.y7f{bottom:210.600000px;}
.yfd{bottom:211.320000px;}
.y9f{bottom:211.500000px;}
.y29{bottom:223.200000px;}
.yfc{bottom:228.600000px;}
.yc6{bottom:230.400000px;}
.y54{bottom:238.320000px;}
.y7e{bottom:239.760000px;}
.y9d{bottom:240.000000px;}
.yfb{bottom:245.880000px;}
.yc5{bottom:250.560000px;}
.y28{bottom:255.600000px;}
.y53{bottom:258.120000px;}
.yfa{bottom:263.160000px;}
.y7d{bottom:268.920000px;}
.y9b{bottom:270.000000px;}
.y27{bottom:275.400000px;}
.y52{bottom:278.280000px;}
.yf9{bottom:280.440000px;}
.yc4{bottom:282.600000px;}
.y26{bottom:295.560000px;}
.yf8{bottom:297.720000px;}
.y7c{bottom:298.440000px;}
.yc3{bottom:303.480000px;}
.y51{bottom:309.240000px;}
.yf7{bottom:315.000000px;}
.y25{bottom:315.720000px;}
.y50{bottom:326.520000px;}
.y7b{bottom:327.600000px;}
.yf6{bottom:332.280000px;}
.yc2{bottom:335.520000px;}
.y4f{bottom:343.800000px;}
.y24{bottom:349.200000px;}
.yf5{bottom:349.920000px;}
.y99{bottom:357.000000px;}
.y7a{bottom:357.120000px;}
.yc1{bottom:364.680000px;}
.yf4{bottom:367.200000px;}
.y23{bottom:369.360000px;}
.y4e{bottom:372.960000px;}
.yf3{bottom:384.840000px;}
.y79{bottom:386.280000px;}
.y98{bottom:387.000000px;}
.y22{bottom:389.520000px;}
.yc0{bottom:394.200000px;}
.yf2{bottom:402.120000px;}
.y4d{bottom:403.200000px;}
.ybf{bottom:411.480000px;}
.y78{bottom:415.800000px;}
.y96{bottom:417.000000px;}
.yf1{bottom:419.400000px;}
.y4c{bottom:420.480000px;}
.y21{bottom:423.000000px;}
.ybe{bottom:428.760000px;}
.yf0{bottom:436.680000px;}
.y4b{bottom:438.480000px;}
.y20{bottom:442.800000px;}
.y77{bottom:444.960000px;}
.ybd{bottom:446.040000px;}
.y94{bottom:447.000000px;}
.yef{bottom:453.960000px;}
.y1f{bottom:462.960000px;}
.y4a{bottom:467.640000px;}
.yee{bottom:471.600000px;}
.y76{bottom:474.480000px;}
.ybc{bottom:478.080000px;}
.y49{bottom:484.920000px;}
.yed{bottom:488.880000px;}
.y1e{bottom:496.440000px;}
.ybb{bottom:498.240000px;}
.y48{bottom:502.920000px;}
.y75{bottom:503.640000px;}
.yec{bottom:515.880000px;}
.yba{bottom:518.040000px;}
.y74{bottom:520.920000px;}
.y1d{bottom:525.960000px;}
.y47{bottom:533.160000px;}
.y73{bottom:538.200000px;}
.yeb{bottom:546.840000px;}
.yb9{bottom:547.560000px;}
.y1c{bottom:555.120000px;}
.y46{bottom:563.040000px;}
.y72{bottom:567.720000px;}
.yea{bottom:570.600000px;}
.y1b{bottom:572.400000px;}
.yb8{bottom:576.720000px;}
.y71{bottom:585.000000px;}
.y1a{bottom:590.040000px;}
.y45{bottom:592.560000px;}
.yb7{bottom:594.000000px;}
.ye9{bottom:596.880000px;}
.y70{bottom:602.280000px;}
.y19{bottom:607.320000px;}
.yb6{bottom:611.640000px;}
.ye8{bottom:614.520000px;}
.y44{bottom:622.440000px;}
.y18{bottom:624.600000px;}
.y6f{bottom:631.440000px;}
.ye7{bottom:631.800000px;}
.yb5{bottom:638.640000px;}
.y43{bottom:639.720000px;}
.y17{bottom:641.880000px;}
.ye6{bottom:649.080000px;}
.y42{bottom:657.000000px;}
.y6e{bottom:660.960000px;}
.yb4{bottom:670.680000px;}
.y16{bottom:671.040000px;}
.ye5{bottom:675.360000px;}
.y6d{bottom:678.240000px;}
.y41{bottom:687.240000px;}
.y15{bottom:688.320000px;}
.y6c{bottom:695.520000px;}
.yb3{bottom:699.840000px;}
.ye4{bottom:701.640000px;}
.y40{bottom:704.520000px;}
.y14{bottom:706.320000px;}
.y6b{bottom:712.800000px;}
.yb2{bottom:717.120000px;}
.ye3{bottom:718.920000px;}
.y3f{bottom:733.680000px;}
.yb1{bottom:734.400000px;}
.y13{bottom:735.840000px;}
.y6a{bottom:743.040000px;}
.ye2{bottom:745.200000px;}
.y8f{bottom:745.500000px;}
.y12{bottom:753.120000px;}
.ye1{bottom:762.480000px;}
.y3e{bottom:763.200000px;}
.yb0{bottom:764.640000px;}
.y11{bottom:770.400000px;}
.y69{bottom:772.200000px;}
.y3d{bottom:780.480000px;}
.y10{bottom:787.680000px;}
.ye0{bottom:792.000000px;}
.yaf{bottom:793.800000px;}
.yd1{bottom:801.000000px;}
.y68{bottom:801.360000px;}
.y3c{bottom:807.480000px;}
.y8a{bottom:808.500000px;}
.yf{bottom:815.040000px;}
.ydf{bottom:821.160000px;}
.yae{bottom:823.320000px;}
.yd0{bottom:829.500000px;}
.y67{bottom:830.880000px;}
.y3b{bottom:837.360000px;}
.yde{bottom:838.440000px;}
.ye{bottom:843.840000px;}
.yad{bottom:852.480000px;}
.yce{bottom:859.500000px;}
.y66{bottom:860.040000px;}
.yd{bottom:861.120000px;}
.ydd{bottom:865.080000px;}
.y3a{bottom:869.400000px;}
.y85{bottom:873.000000px;}
.yc{bottom:878.400000px;}
.yac{bottom:882.000000px;}
.ydc{bottom:882.360000px;}
.y39{bottom:886.680000px;}
.ycc{bottom:889.500000px;}
.y65{bottom:889.560000px;}
.yb{bottom:895.680000px;}
.ydb{bottom:908.640000px;}
.yab{bottom:911.160000px;}
.ya{bottom:913.320000px;}
.y38{bottom:915.840000px;}
.y64{bottom:918.720000px;}
.y83{bottom:921.000000px;}
.y9{bottom:930.600000px;}
.y37{bottom:933.120000px;}
.yda{bottom:937.800000px;}
.yaa{bottom:943.200000px;}
.y8{bottom:947.880000px;}
.y63{bottom:948.240000px;}
.y36{bottom:950.400000px;}
.yd9{bottom:955.080000px;}
.ya9{bottom:963.360000px;}
.y35{bottom:968.040000px;}
.yd8{bottom:972.360000px;}
.y7{bottom:977.040000px;}
.y62{bottom:977.400000px;}
.yd7{bottom:990.000000px;}
.ya8{bottom:990.720000px;}
.y34{bottom:997.200000px;}
.y61{bottom:1006.920000px;}
.y6{bottom:1012.320000px;}
.y33{bottom:1014.480000px;}
.yd6{bottom:1017.000000px;}
.ya7{bottom:1020.240000px;}
.y60{bottom:1024.200000px;}
.y5{bottom:1029.960000px;}
.y32{bottom:1031.760000px;}
.y5f{bottom:1041.480000px;}
.y4{bottom:1047.240000px;}
.y31{bottom:1049.040000px;}
.ya6{bottom:1051.920000px;}
.y5e{bottom:1070.640000px;}
.yd5{bottom:1078.200000px;}
.y30{bottom:1078.560000px;}
.ya5{bottom:1078.920000px;}
.y3{bottom:1082.520000px;}
.yd4{bottom:1095.480000px;}
.y2f{bottom:1095.840000px;}
.y5d{bottom:1102.680000px;}
.ya4{bottom:1108.440000px;}
.y2{bottom:1113.120000px;}
.yd3{bottom:1113.480000px;}
.y5c{bottom:1122.840000px;}
.ya3{bottom:1125.720000px;}
.y1{bottom:1137.600000px;}
.y2e{bottom:1140.480000px;}
.y5b{bottom:1143.000000px;}
.h8{height:30.000000px;}
.he{height:31.500000px;}
.hf{height:31.672266px;}
.h7{height:41.284688px;}
.h3{height:41.550469px;}
.h4{height:41.993438px;}
.h6{height:42.406875px;}
.h9{height:44.385469px;}
.hc{height:44.788844px;}
.ha{height:48.000000px;}
.h5{height:49.746094px;}
.h2{height:57.990938px;}
.hd{height:64.500000px;}
.hb{height:66.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:96.000000px;}
.wd{width:106.500000px;}
.wc{width:108.000000px;}
.w6{width:118.500000px;}
.w3{width:129.000000px;}
.w7{width:139.500000px;}
.w2{width:150.000000px;}
.wb{width:151.500000px;}
.w5{width:162.000000px;}
.wa{width:171.000000px;}
.w9{width:172.500000px;}
.w4{width:235.500000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:1.140036px;}
.xd{left:38.759412px;}
.xe{left:42.062628px;}
.x3{left:84.959856px;}
.x1{left:94.349124px;}
.x7{left:111.959856px;}
.x9{left:138.959856px;}
.x1c{left:140.459832px;}
.x17{left:157.500000px;}
.xf{left:174.000000px;}
.x6{left:178.989264px;}
.xa{left:190.500000px;}
.x2{left:216.344988px;}
.x13{left:228.000000px;}
.x8{left:297.359604px;}
.x18{left:307.500000px;}
.x14{left:322.500000px;}
.x10{left:334.500000px;}
.xb{left:339.000000px;}
.x5{left:373.289760px;}
.x4{left:399.983040px;}
.x19{left:414.000000px;}
.x11{left:462.000000px;}
.xc{left:466.500000px;}
.x16{left:493.500000px;}
.x1a{left:519.000000px;}
.x12{left:579.000000px;}
.x1b{left:625.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.424704pt;}
.lse{letter-spacing:-0.408576pt;}
.ls8{letter-spacing:-0.370944pt;}
.ls15{letter-spacing:-0.354816pt;}
.lsa{letter-spacing:-0.338688pt;}
.lsb{letter-spacing:-0.301056pt;}
.ls9{letter-spacing:-0.284928pt;}
.lsf{letter-spacing:-0.268800pt;}
.ls2a{letter-spacing:-0.252672pt;}
.ls28{letter-spacing:-0.241920pt;}
.ls29{letter-spacing:-0.231168pt;}
.lsd{letter-spacing:-0.215040pt;}
.ls10{letter-spacing:-0.198912pt;}
.ls13{letter-spacing:-0.155904pt;}
.ls12{letter-spacing:-0.139776pt;}
.lsc{letter-spacing:-0.129024pt;}
.ls11{letter-spacing:-0.107520pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.106752pt;}
.ls1{letter-spacing:0.142080pt;}
.ls3{letter-spacing:0.244992pt;}
.ls5{letter-spacing:0.282112pt;}
.ls35{letter-spacing:0.300928pt;}
.ls4{letter-spacing:0.319232pt;}
.ls6{letter-spacing:0.393472pt;}
.ls1f{letter-spacing:0.511872pt;}
.ls17{letter-spacing:0.527360pt;}
.ls18{letter-spacing:0.768256pt;}
.ls32{letter-spacing:1.341440pt;}
.ls2b{letter-spacing:1.470720pt;}
.ls1e{letter-spacing:1.502720pt;}
.ls16{letter-spacing:1.510528pt;}
.ls24{letter-spacing:1.692800pt;}
.ls25{letter-spacing:1.692928pt;}
.ls1a{letter-spacing:1.831680pt;}
.ls23{letter-spacing:1.832320pt;}
.ls1d{letter-spacing:1.832448pt;}
.ls1b{letter-spacing:3.712000pt;}
.ls19{letter-spacing:3.713280pt;}
.ls26{letter-spacing:5.285248pt;}
.ls20{letter-spacing:5.532160pt;}
.ls21{letter-spacing:5.533440pt;}
.ls22{letter-spacing:6.687616pt;}
.ls36{letter-spacing:7.481856pt;}
.ls38{letter-spacing:7.483136pt;}
.ls37{letter-spacing:7.483264pt;}
.ls31{letter-spacing:8.456960pt;}
.ls30{letter-spacing:8.457088pt;}
.ls2f{letter-spacing:8.457216pt;}
.ls27{letter-spacing:8.830848pt;}
.ls2c{letter-spacing:10.336000pt;}
.ls33{letter-spacing:10.897280pt;}
.ls34{letter-spacing:10.897408pt;}
.ls2e{letter-spacing:11.718400pt;}
.ls1c{letter-spacing:13.637120pt;}
.ls2d{letter-spacing:21.158400pt;}
.ls2{letter-spacing:56.523520pt;}
.ls39{letter-spacing:63.811328pt;}
.ws0{word-spacing:-18.804992pt;}
.ws12{word-spacing:-16.000000pt;}
.ws5{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.310976pt;}
.wsd{word-spacing:-13.300224pt;}
.wsb{word-spacing:-13.284096pt;}
.ws8{word-spacing:-13.241088pt;}
.ws6{word-spacing:-13.224960pt;}
.ws11{word-spacing:-13.208832pt;}
.wse{word-spacing:-13.171200pt;}
.ws2{word-spacing:-13.155072pt;}
.ws4{word-spacing:-13.138944pt;}
.ws3{word-spacing:-13.101312pt;}
.wsa{word-spacing:-13.085184pt;}
.ws1{word-spacing:-13.069056pt;}
.ws7{word-spacing:-0.053760pt;}
.ws13{word-spacing:-0.048640pt;}
.wsc{word-spacing:0.000000pt;}
.ws10{word-spacing:0.198912pt;}
.wsf{word-spacing:14.443008pt;}
._10{margin-left:-3.926016pt;}
._a{margin-left:-3.027968pt;}
._5{margin-left:-1.926656pt;}
._0{margin-left:-1.028736pt;}
._1{width:0.896000pt;}
._4{width:1.795968pt;}
._3{width:2.759680pt;}
._8{width:3.808768pt;}
._9{width:5.483520pt;}
._6{width:6.773760pt;}
._7{width:7.687680pt;}
._12{width:9.262848pt;}
._2{width:10.536960pt;}
._b{width:11.441536pt;}
._c{width:14.730240pt;}
._11{width:16.566144pt;}
._15{width:21.242112pt;}
._16{width:28.170240pt;}
._14{width:40.911360pt;}
._d{width:71.769856pt;}
._13{width:72.683520pt;}
._f{width:135.783040pt;}
._e{width:175.358720pt;}
.fs5{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs3{font-size:56.779667pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:13.973333pt;}
.y93{bottom:14.133333pt;}
.y95{bottom:14.186667pt;}
.ya0{bottom:14.240000pt;}
.y97{bottom:14.293333pt;}
.yd2{bottom:14.400000pt;}
.ycd{bottom:14.453333pt;}
.ycf{bottom:14.560000pt;}
.y89{bottom:14.720000pt;}
.ya2{bottom:14.986667pt;}
.y9c{bottom:15.040000pt;}
.y8e{bottom:15.093333pt;}
.y9e{bottom:15.146667pt;}
.y9a{bottom:15.466667pt;}
.y86{bottom:22.080000pt;}
.y87{bottom:22.400000pt;}
.y90{bottom:29.173333pt;}
.y91{bottom:29.493333pt;}
.y88{bottom:30.080000pt;}
.y8b{bottom:30.133333pt;}
.y8c{bottom:30.453333pt;}
.y92{bottom:44.853333pt;}
.y8d{bottom:45.813333pt;}
.y5a{bottom:80.640000pt;}
.ycb{bottom:88.000000pt;}
.y103{bottom:95.360000pt;}
.y2d{bottom:96.960000pt;}
.y59{bottom:98.560000pt;}
.y102{bottom:110.720000pt;}
.yca{bottom:116.480000pt;}
.y82{bottom:119.680000pt;}
.y2c{bottom:123.520000pt;}
.y101{bottom:126.080000pt;}
.y58{bottom:128.320000pt;}
.yc9{bottom:134.400000pt;}
.y81{bottom:135.040000pt;}
.y100{bottom:141.440000pt;}
.y57{bottom:146.240000pt;}
.y2b{bottom:151.680000pt;}
.yff{bottom:156.800000pt;}
.yc8{bottom:160.320000pt;}
.y80{bottom:160.960000pt;}
.ya1{bottom:161.333333pt;}
.y56{bottom:163.840000pt;}
.y2a{bottom:167.040000pt;}
.yfe{bottom:172.480000pt;}
.yc7{bottom:175.680000pt;}
.y55{bottom:182.080000pt;}
.y7f{bottom:187.200000pt;}
.yfd{bottom:187.840000pt;}
.y9f{bottom:188.000000pt;}
.y29{bottom:198.400000pt;}
.yfc{bottom:203.200000pt;}
.yc6{bottom:204.800000pt;}
.y54{bottom:211.840000pt;}
.y7e{bottom:213.120000pt;}
.y9d{bottom:213.333333pt;}
.yfb{bottom:218.560000pt;}
.yc5{bottom:222.720000pt;}
.y28{bottom:227.200000pt;}
.y53{bottom:229.440000pt;}
.yfa{bottom:233.920000pt;}
.y7d{bottom:239.040000pt;}
.y9b{bottom:240.000000pt;}
.y27{bottom:244.800000pt;}
.y52{bottom:247.360000pt;}
.yf9{bottom:249.280000pt;}
.yc4{bottom:251.200000pt;}
.y26{bottom:262.720000pt;}
.yf8{bottom:264.640000pt;}
.y7c{bottom:265.280000pt;}
.yc3{bottom:269.760000pt;}
.y51{bottom:274.880000pt;}
.yf7{bottom:280.000000pt;}
.y25{bottom:280.640000pt;}
.y50{bottom:290.240000pt;}
.y7b{bottom:291.200000pt;}
.yf6{bottom:295.360000pt;}
.yc2{bottom:298.240000pt;}
.y4f{bottom:305.600000pt;}
.y24{bottom:310.400000pt;}
.yf5{bottom:311.040000pt;}
.y99{bottom:317.333333pt;}
.y7a{bottom:317.440000pt;}
.yc1{bottom:324.160000pt;}
.yf4{bottom:326.400000pt;}
.y23{bottom:328.320000pt;}
.y4e{bottom:331.520000pt;}
.yf3{bottom:342.080000pt;}
.y79{bottom:343.360000pt;}
.y98{bottom:344.000000pt;}
.y22{bottom:346.240000pt;}
.yc0{bottom:350.400000pt;}
.yf2{bottom:357.440000pt;}
.y4d{bottom:358.400000pt;}
.ybf{bottom:365.760000pt;}
.y78{bottom:369.600000pt;}
.y96{bottom:370.666667pt;}
.yf1{bottom:372.800000pt;}
.y4c{bottom:373.760000pt;}
.y21{bottom:376.000000pt;}
.ybe{bottom:381.120000pt;}
.yf0{bottom:388.160000pt;}
.y4b{bottom:389.760000pt;}
.y20{bottom:393.600000pt;}
.y77{bottom:395.520000pt;}
.ybd{bottom:396.480000pt;}
.y94{bottom:397.333333pt;}
.yef{bottom:403.520000pt;}
.y1f{bottom:411.520000pt;}
.y4a{bottom:415.680000pt;}
.yee{bottom:419.200000pt;}
.y76{bottom:421.760000pt;}
.ybc{bottom:424.960000pt;}
.y49{bottom:431.040000pt;}
.yed{bottom:434.560000pt;}
.y1e{bottom:441.280000pt;}
.ybb{bottom:442.880000pt;}
.y48{bottom:447.040000pt;}
.y75{bottom:447.680000pt;}
.yec{bottom:458.560000pt;}
.yba{bottom:460.480000pt;}
.y74{bottom:463.040000pt;}
.y1d{bottom:467.520000pt;}
.y47{bottom:473.920000pt;}
.y73{bottom:478.400000pt;}
.yeb{bottom:486.080000pt;}
.yb9{bottom:486.720000pt;}
.y1c{bottom:493.440000pt;}
.y46{bottom:500.480000pt;}
.y72{bottom:504.640000pt;}
.yea{bottom:507.200000pt;}
.y1b{bottom:508.800000pt;}
.yb8{bottom:512.640000pt;}
.y71{bottom:520.000000pt;}
.y1a{bottom:524.480000pt;}
.y45{bottom:526.720000pt;}
.yb7{bottom:528.000000pt;}
.ye9{bottom:530.560000pt;}
.y70{bottom:535.360000pt;}
.y19{bottom:539.840000pt;}
.yb6{bottom:543.680000pt;}
.ye8{bottom:546.240000pt;}
.y44{bottom:553.280000pt;}
.y18{bottom:555.200000pt;}
.y6f{bottom:561.280000pt;}
.ye7{bottom:561.600000pt;}
.yb5{bottom:567.680000pt;}
.y43{bottom:568.640000pt;}
.y17{bottom:570.560000pt;}
.ye6{bottom:576.960000pt;}
.y42{bottom:584.000000pt;}
.y6e{bottom:587.520000pt;}
.yb4{bottom:596.160000pt;}
.y16{bottom:596.480000pt;}
.ye5{bottom:600.320000pt;}
.y6d{bottom:602.880000pt;}
.y41{bottom:610.880000pt;}
.y15{bottom:611.840000pt;}
.y6c{bottom:618.240000pt;}
.yb3{bottom:622.080000pt;}
.ye4{bottom:623.680000pt;}
.y40{bottom:626.240000pt;}
.y14{bottom:627.840000pt;}
.y6b{bottom:633.600000pt;}
.yb2{bottom:637.440000pt;}
.ye3{bottom:639.040000pt;}
.y3f{bottom:652.160000pt;}
.yb1{bottom:652.800000pt;}
.y13{bottom:654.080000pt;}
.y6a{bottom:660.480000pt;}
.ye2{bottom:662.400000pt;}
.y8f{bottom:662.666667pt;}
.y12{bottom:669.440000pt;}
.ye1{bottom:677.760000pt;}
.y3e{bottom:678.400000pt;}
.yb0{bottom:679.680000pt;}
.y11{bottom:684.800000pt;}
.y69{bottom:686.400000pt;}
.y3d{bottom:693.760000pt;}
.y10{bottom:700.160000pt;}
.ye0{bottom:704.000000pt;}
.yaf{bottom:705.600000pt;}
.yd1{bottom:712.000000pt;}
.y68{bottom:712.320000pt;}
.y3c{bottom:717.760000pt;}
.y8a{bottom:718.666667pt;}
.yf{bottom:724.480000pt;}
.ydf{bottom:729.920000pt;}
.yae{bottom:731.840000pt;}
.yd0{bottom:737.333333pt;}
.y67{bottom:738.560000pt;}
.y3b{bottom:744.320000pt;}
.yde{bottom:745.280000pt;}
.ye{bottom:750.080000pt;}
.yad{bottom:757.760000pt;}
.yce{bottom:764.000000pt;}
.y66{bottom:764.480000pt;}
.yd{bottom:765.440000pt;}
.ydd{bottom:768.960000pt;}
.y3a{bottom:772.800000pt;}
.y85{bottom:776.000000pt;}
.yc{bottom:780.800000pt;}
.yac{bottom:784.000000pt;}
.ydc{bottom:784.320000pt;}
.y39{bottom:788.160000pt;}
.ycc{bottom:790.666667pt;}
.y65{bottom:790.720000pt;}
.yb{bottom:796.160000pt;}
.ydb{bottom:807.680000pt;}
.yab{bottom:809.920000pt;}
.ya{bottom:811.840000pt;}
.y38{bottom:814.080000pt;}
.y64{bottom:816.640000pt;}
.y83{bottom:818.666667pt;}
.y9{bottom:827.200000pt;}
.y37{bottom:829.440000pt;}
.yda{bottom:833.600000pt;}
.yaa{bottom:838.400000pt;}
.y8{bottom:842.560000pt;}
.y63{bottom:842.880000pt;}
.y36{bottom:844.800000pt;}
.yd9{bottom:848.960000pt;}
.ya9{bottom:856.320000pt;}
.y35{bottom:860.480000pt;}
.yd8{bottom:864.320000pt;}
.y7{bottom:868.480000pt;}
.y62{bottom:868.800000pt;}
.yd7{bottom:880.000000pt;}
.ya8{bottom:880.640000pt;}
.y34{bottom:886.400000pt;}
.y61{bottom:895.040000pt;}
.y6{bottom:899.840000pt;}
.y33{bottom:901.760000pt;}
.yd6{bottom:904.000000pt;}
.ya7{bottom:906.880000pt;}
.y60{bottom:910.400000pt;}
.y5{bottom:915.520000pt;}
.y32{bottom:917.120000pt;}
.y5f{bottom:925.760000pt;}
.y4{bottom:930.880000pt;}
.y31{bottom:932.480000pt;}
.ya6{bottom:935.040000pt;}
.y5e{bottom:951.680000pt;}
.yd5{bottom:958.400000pt;}
.y30{bottom:958.720000pt;}
.ya5{bottom:959.040000pt;}
.y3{bottom:962.240000pt;}
.yd4{bottom:973.760000pt;}
.y2f{bottom:974.080000pt;}
.y5d{bottom:980.160000pt;}
.ya4{bottom:985.280000pt;}
.y2{bottom:989.440000pt;}
.yd3{bottom:989.760000pt;}
.y5c{bottom:998.080000pt;}
.ya3{bottom:1000.640000pt;}
.y1{bottom:1011.200000pt;}
.y2e{bottom:1013.760000pt;}
.y5b{bottom:1016.000000pt;}
.h8{height:26.666667pt;}
.he{height:28.000000pt;}
.hf{height:28.153125pt;}
.h7{height:36.697500pt;}
.h3{height:36.933750pt;}
.h4{height:37.327500pt;}
.h6{height:37.695000pt;}
.h9{height:39.453750pt;}
.hc{height:39.812306pt;}
.ha{height:42.666667pt;}
.h5{height:44.218750pt;}
.h2{height:51.547500pt;}
.hd{height:57.333333pt;}
.hb{height:58.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:85.333333pt;}
.wd{width:94.666667pt;}
.wc{width:96.000000pt;}
.w6{width:105.333333pt;}
.w3{width:114.666667pt;}
.w7{width:124.000000pt;}
.w2{width:133.333333pt;}
.wb{width:134.666667pt;}
.w5{width:144.000000pt;}
.wa{width:152.000000pt;}
.w9{width:153.333333pt;}
.w4{width:209.333333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:1.013365pt;}
.xd{left:34.452811pt;}
.xe{left:37.389003pt;}
.x3{left:75.519872pt;}
.x1{left:83.865888pt;}
.x7{left:99.519872pt;}
.x9{left:123.519872pt;}
.x1c{left:124.853184pt;}
.x17{left:140.000000pt;}
.xf{left:154.666667pt;}
.x6{left:159.101568pt;}
.xa{left:169.333333pt;}
.x2{left:192.306656pt;}
.x13{left:202.666667pt;}
.x8{left:264.319648pt;}
.x18{left:273.333333pt;}
.x14{left:286.666667pt;}
.x10{left:297.333333pt;}
.xb{left:301.333333pt;}
.x5{left:331.813120pt;}
.x4{left:355.540480pt;}
.x19{left:368.000000pt;}
.x11{left:410.666667pt;}
.xc{left:414.666667pt;}
.x16{left:438.666667pt;}
.x1a{left:461.333333pt;}
.x12{left:514.666667pt;}
.x1b{left:556.000000pt;}
}




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