
    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_b2a5aa81dbbd37f31f46a80c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_61115d4e96d6378150e32940.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_35192fc999bb378deaae1e2d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_954498bf2b2ae8bcc4cc9647.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_b2a46c38057002e6ab59076c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_da4df362b554a69539cfee83.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2b34f331a75b7d300728215b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_4301183fcb1867fb4ef2ab8c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_e38f621c34c9b570bafb6b83.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5278104220f0bd1a91d18289.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.959961;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_7c5c2a8a116889eb3899c3e9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.909180;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_6ca070eef69136e4ff3e8538.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.307712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307712,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-48.960000px;}
.v8{vertical-align:-34.560000px;}
.v2{vertical-align:-27.360000px;}
.v7{vertical-align:-24.600000px;}
.v3{vertical-align:-14.400000px;}
.vb{vertical-align:-10.080000px;}
.v6{vertical-align:-4.320000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.320000px;}
.v4{vertical-align:14.400000px;}
.va{vertical-align:18.720000px;}
.v1{vertical-align:27.360000px;}
.ls1a{letter-spacing:-1.296000px;}
.ls19{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.507000px;}
.lsa{letter-spacing:-0.432000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls25{letter-spacing:-0.027527px;}
.ls24{letter-spacing:-0.013763px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.020160px;}
.lsf{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.374400px;}
.ls1f{letter-spacing:0.388800px;}
.ls3{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.648000px;}
.ls17{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.900000px;}
.ls13{letter-spacing:1.828800px;}
.ls14{letter-spacing:1.948800px;}
.ls12{letter-spacing:2.160000px;}
.lse{letter-spacing:2.491200px;}
.ls11{letter-spacing:3.268800px;}
.ls15{letter-spacing:3.542400px;}
.lsd{letter-spacing:3.600000px;}
.ls10{letter-spacing:3.720000px;}
.ls22{letter-spacing:3.780000px;}
.ls20{letter-spacing:3.823200px;}
.ls18{letter-spacing:5.040000px;}
.ls7{letter-spacing:7.920000px;}
.ls5{letter-spacing:12.240000px;}
.ls1c{letter-spacing:12.528000px;}
.ls16{letter-spacing:13.680000px;}
.ls1d{letter-spacing:18.223200px;}
.ls21{letter-spacing:19.663200px;}
.ls4{letter-spacing:43.920000px;}
.ls2{letter-spacing:45.360000px;}
.ls26{letter-spacing:53.424000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws6{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.000000px;}
.ws1c{word-spacing:-17.712000px;}
.ws5{word-spacing:-17.280000px;}
.ws4{word-spacing:-15.580680px;}
.ws9{word-spacing:-13.260000px;}
.ws8{word-spacing:-12.600000px;}
.ws0{word-spacing:-11.880000px;}
.wsc{word-spacing:-9.937107px;}
.wsa{word-spacing:-9.923344px;}
.wsd{word-spacing:-1.251745px;}
.ws1b{word-spacing:-1.000537px;}
.ws18{word-spacing:-0.894890px;}
.ws11{word-spacing:-0.094031px;}
.ws10{word-spacing:-0.043492px;}
.ws2{word-spacing:0.000000px;}
.wsb{word-spacing:0.038647px;}
.ws13{word-spacing:0.200559px;}
.ws19{word-spacing:0.279175px;}
.ws16{word-spacing:0.584996px;}
.ws14{word-spacing:0.651059px;}
.wse{word-spacing:0.679082px;}
.ws15{word-spacing:1.749647px;}
.wsf{word-spacing:1.791652px;}
.ws12{word-spacing:1.870654px;}
.ws1a{word-spacing:2.323026px;}
.ws17{word-spacing:3.964548px;}
._32{margin-left:-9.257280px;}
._31{margin-left:-7.418880px;}
._1{margin-left:-5.670240px;}
._2{margin-left:-4.268160px;}
._1b{margin-left:-3.248160px;}
._4{margin-left:-2.188800px;}
._0{margin-left:-1.149120px;}
._3{width:1.283520px;}
._6{width:2.606880px;}
._f{width:4.085280px;}
._1a{width:5.171520px;}
._11{width:6.778560px;}
._a{width:8.424000px;}
._9{width:10.252800px;}
._14{width:12.240000px;}
._29{width:13.241280px;}
._8{width:14.256000px;}
._7{width:15.684000px;}
._2a{width:16.685760px;}
._27{width:17.712000px;}
._b{width:19.725120px;}
._10{width:20.752320px;}
._d{width:22.001280px;}
._c{width:23.328000px;}
._e{width:24.510720px;}
._25{width:25.599840px;}
._1c{width:27.329280px;}
._26{width:28.357920px;}
._1d{width:29.465280px;}
._15{width:30.681600px;}
._2d{width:31.885440px;}
._20{width:32.887200px;}
._1f{width:34.314720px;}
._1e{width:35.886240px;}
._21{width:37.357440px;}
._22{width:38.401920px;}
._2c{width:40.101120px;}
._16{width:42.408000px;}
._19{width:44.345760px;}
._13{width:45.935520px;}
._12{width:47.693280px;}
._18{width:48.871200px;}
._17{width:49.893120px;}
._28{width:51.172320px;}
._2b{width:52.998720px;}
._30{width:54.605760px;}
._2f{width:56.258400px;}
._2e{width:57.665280px;}
._23{width:66.886080px;}
._24{width:68.406720px;}
._5{width:1242.456000px;}
.fc5{color:transparent;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,94,0);}
.fc0{color:rgb(0,32,79);}
.fs6{font-size:38.880000px;}
.fsa{font-size:39.693375px;}
.fsb{font-size:39.748428px;}
.fs9{font-size:41.760000px;}
.fs5{font-size:47.520000px;}
.fs8{font-size:50.400000px;}
.fs0{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:75.893905px;}
.fs3{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.040000px;}
.y7{bottom:7.920000px;}
.yb6{bottom:9.533567px;}
.yb5{bottom:21.521407px;}
.y9{bottom:26.676000px;}
.y8{bottom:48.276000px;}
.ybe{bottom:67.588844px;}
.y5{bottom:68.076000px;}
.y64{bottom:96.156000px;}
.yb4{bottom:97.246017px;}
.y35{bottom:97.596000px;}
.yb3{bottom:109.236609px;}
.yad{bottom:111.636000px;}
.y63{bottom:113.076000px;}
.y68{bottom:113.436000px;}
.yb8{bottom:117.257864px;}
.y62{bottom:118.476000px;}
.ybc{bottom:119.735259px;}
.yb2{bottom:121.221696px;}
.y34{bottom:121.356000px;}
.yba{bottom:122.432867px;}
.yb7{bottom:129.259467px;}
.y61{bottom:131.112000px;}
.ybb{bottom:131.725851px;}
.yb1{bottom:133.223299px;}
.yb9{bottom:134.434470px;}
.yac{bottom:135.432000px;}
.y67{bottom:137.232000px;}
.y33{bottom:145.152000px;}
.yab{bottom:159.195000px;}
.y60{bottom:160.995000px;}
.y32{bottom:168.915000px;}
.ybd{bottom:180.321333px;}
.yaa{bottom:183.315000px;}
.y5f{bottom:184.755000px;}
.y31{bottom:192.675000px;}
.ya9{bottom:207.075000px;}
.y5e{bottom:208.515000px;}
.y30{bottom:216.435000px;}
.ya8{bottom:230.835000px;}
.y5d{bottom:232.275000px;}
.yb0{bottom:238.732805px;}
.y2f{bottom:240.195000px;}
.yaf{bottom:250.723397px;}
.ya7{bottom:254.595000px;}
.y5c{bottom:256.035000px;}
.y66{bottom:256.395000px;}
.y2e{bottom:264.345000px;}
.y8a{bottom:269.025000px;}
.ya6{bottom:278.385000px;}
.y5b{bottom:280.185000px;}
.y2d{bottom:288.105000px;}
.y89{bottom:293.145000px;}
.ya5{bottom:302.145000px;}
.y5a{bottom:303.945000px;}
.y2c{bottom:311.865000px;}
.y88{bottom:317.265000px;}
.ya4{bottom:325.905000px;}
.y59{bottom:327.705000px;}
.y2b{bottom:335.625000px;}
.y87{bottom:341.385000px;}
.ya3{bottom:349.665000px;}
.y58{bottom:351.465000px;}
.y2a{bottom:359.385000px;}
.y86{bottom:365.505000px;}
.ya2{bottom:373.425000px;}
.y57{bottom:375.225000px;}
.y29{bottom:383.145000px;}
.y85{bottom:389.625000px;}
.ya1{bottom:397.590000px;}
.y56{bottom:399.030000px;}
.y28{bottom:406.950000px;}
.y84{bottom:415.950000px;}
.ya0{bottom:421.350000px;}
.y55{bottom:422.790000px;}
.y27{bottom:430.710000px;}
.y83{bottom:442.590000px;}
.y9f{bottom:445.110000px;}
.y54{bottom:446.550000px;}
.y26{bottom:454.470000px;}
.y82{bottom:467.070000px;}
.y9e{bottom:468.870000px;}
.y53{bottom:470.670000px;}
.y25{bottom:478.590000px;}
.y81{bottom:490.830000px;}
.y9d{bottom:492.630000px;}
.y52{bottom:494.430000px;}
.y24{bottom:502.350000px;}
.y80{bottom:514.590000px;}
.y9c{bottom:517.110000px;}
.y51{bottom:518.190000px;}
.y23{bottom:526.110000px;}
.y7f{bottom:538.740000px;}
.y9b{bottom:540.900000px;}
.yc0{bottom:541.620000px;}
.y50{bottom:541.980000px;}
.y22{bottom:549.900000px;}
.y7e{bottom:562.500000px;}
.y4f{bottom:565.740000px;}
.y99{bottom:567.540000px;}
.y21{bottom:573.660000px;}
.y9a{bottom:576.180000px;}
.y7d{bottom:586.260000px;}
.y4e{bottom:589.500000px;}
.y98{bottom:595.980000px;}
.y20{bottom:597.420000px;}
.y7c{bottom:610.020000px;}
.y4d{bottom:613.260000px;}
.y1f{bottom:621.180000px;}
.y97{bottom:622.980000px;}
.y7b{bottom:633.780000px;}
.y4c{bottom:637.020000px;}
.y96{bottom:644.220000px;}
.y1e{bottom:644.940000px;}
.y7a{bottom:657.540000px;}
.y4b{bottom:661.140000px;}
.y93{bottom:666.930000px;}
.y1d{bottom:669.090000px;}
.y94{bottom:675.570000px;}
.y79{bottom:681.330000px;}
.y4a{bottom:684.930000px;}
.y1c{bottom:692.850000px;}
.y95{bottom:696.450000px;}
.y78{bottom:705.090000px;}
.y49{bottom:708.690000px;}
.y92{bottom:714.450000px;}
.y1b{bottom:716.610000px;}
.y77{bottom:729.210000px;}
.y48{bottom:732.450000px;}
.y91{bottom:738.210000px;}
.y1a{bottom:740.370000px;}
.y76{bottom:752.970000px;}
.y47{bottom:756.210000px;}
.y90{bottom:761.970000px;}
.y19{bottom:764.130000px;}
.y75{bottom:776.730000px;}
.y45{bottom:779.970000px;}
.y8f{bottom:785.730000px;}
.y46{bottom:786.810000px;}
.y18{bottom:787.890000px;}
.y74{bottom:800.535000px;}
.y44{bottom:803.775000px;}
.y8e{bottom:809.535000px;}
.y17{bottom:811.695000px;}
.y73{bottom:824.295000px;}
.y43{bottom:827.535000px;}
.y8d{bottom:833.295000px;}
.y16{bottom:835.455000px;}
.y72{bottom:848.055000px;}
.y42{bottom:851.295000px;}
.y8c{bottom:857.055000px;}
.y15{bottom:859.575000px;}
.y71{bottom:872.175000px;}
.y41{bottom:875.415000px;}
.y8b{bottom:876.855000px;}
.yae{bottom:878.040000px;}
.y14{bottom:882.975000px;}
.y70{bottom:896.295000px;}
.y40{bottom:899.175000px;}
.y13{bottom:906.735000px;}
.y6f{bottom:920.415000px;}
.y3f{bottom:922.935000px;}
.y12{bottom:937.725000px;}
.y6e{bottom:944.565000px;}
.y3e{bottom:946.725000px;}
.y11{bottom:961.485000px;}
.y6d{bottom:968.685000px;}
.y3d{bottom:970.485000px;}
.y10{bottom:985.245000px;}
.y6c{bottom:992.445000px;}
.ybf{bottom:993.885000px;}
.y3c{bottom:994.245000px;}
.yf{bottom:1009.005000px;}
.y6b{bottom:1016.565000px;}
.y3b{bottom:1018.005000px;}
.ye{bottom:1025.565000px;}
.y69{bottom:1040.685000px;}
.y3a{bottom:1041.765000px;}
.y6a{bottom:1044.285000px;}
.yd{bottom:1049.685000px;}
.y39{bottom:1065.570000px;}
.y65{bottom:1065.930000px;}
.yc{bottom:1073.490000px;}
.y38{bottom:1089.690000px;}
.yb{bottom:1099.410000px;}
.y37{bottom:1113.450000px;}
.ya{bottom:1131.090000px;}
.y36{bottom:1137.210000px;}
.y4{bottom:1157.730000px;}
.y3{bottom:1176.810000px;}
.y2{bottom:1192.290000px;}
.y1{bottom:1207.800000px;}
.h5{height:24.120000px;}
.h16{height:27.831878px;}
.h17{height:27.870480px;}
.he{height:29.160000px;}
.hb{height:33.319688px;}
.h2{height:38.608594px;}
.h14{height:41.540625px;}
.h3{height:42.672656px;}
.hf{height:45.360000px;}
.h7{height:50.484375px;}
.h9{height:50.800781px;}
.hc{height:51.996094px;}
.h18{height:52.417969px;}
.h4{height:54.000000px;}
.h6{height:58.561875px;}
.h13{height:59.056875px;}
.hd{height:59.343750px;}
.ha{height:60.888516px;}
.h8{height:68.073047px;}
.h12{height:89.296875px;}
.h11{height:93.616875px;}
.h10{height:94.126230px;}
.h15{height:275.398253px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:5.400000px;}
.wd{width:5.760000px;}
.w10{width:5.796000px;}
.w8{width:6.120000px;}
.w9{width:6.480000px;}
.w4{width:133.632000px;}
.w11{width:191.595000px;}
.we{width:235.185000px;}
.w3{width:287.025000px;}
.wa{width:292.470000px;}
.w5{width:301.065000px;}
.w12{width:564.112965px;}
.w7{width:588.810000px;}
.wb{width:642.495000px;}
.wf{width:691.095000px;}
.w1{width:892.500000px;}
.w6{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x1f{left:-1.800000px;}
.x0{left:0.000000px;}
.x3b{left:24.546824px;}
.x3a{left:32.170064px;}
.x3d{left:36.760948px;}
.x3c{left:41.843108px;}
.x39{left:69.578149px;}
.x38{left:85.854613px;}
.x7{left:88.230000px;}
.x4{left:95.795987px;}
.x1{left:117.755987px;}
.x14{left:123.875987px;}
.x18{left:127.835973px;}
.x19{left:133.235987px;}
.x9{left:138.995987px;}
.x5{left:143.709000px;}
.x13{left:149.111987px;}
.x2{left:150.194987px;}
.x37{left:164.160008px;}
.x41{left:187.463930px;}
.x47{left:189.124102px;}
.xc{left:190.874987px;}
.x31{left:203.834987px;}
.xa{left:205.274987px;}
.x3e{left:218.973321px;}
.x42{left:224.177453px;}
.x1a{left:232.304987px;}
.x43{left:250.618237px;}
.x1b{left:253.544987px;}
.x1c{left:260.384987px;}
.xe{left:292.784987px;}
.x12{left:296.024987px;}
.x17{left:311.864987px;}
.x11{left:317.624987px;}
.xf{left:319.064987px;}
.x10{left:326.309987px;}
.x2f{left:365.549987px;}
.x40{left:368.354941px;}
.x45{left:373.301577px;}
.xd{left:376.709987px;}
.x46{left:377.875521px;}
.x6{left:383.190000px;}
.x3f{left:384.638182px;}
.x32{left:389.309987px;}
.x3{left:402.629987px;}
.xb{left:446.579987px;}
.x34{left:448.019987px;}
.x36{left:476.819987px;}
.x44{left:478.583602px;}
.x33{left:482.579987px;}
.x8{left:517.890000px;}
.x1d{left:580.889973px;}
.x1e{left:588.450000px;}
.x20{left:594.210000px;}
.x21{left:600.330000px;}
.x22{left:606.494987px;}
.x15{left:627.014973px;}
.x16{left:633.134987px;}
.x23{left:634.574973px;}
.x24{left:642.135000px;}
.x25{left:647.175000px;}
.x26{left:652.575000px;}
.x27{left:657.615000px;}
.x28{left:663.374987px;}
.x29{left:683.174973px;}
.x2a{left:690.735000px;}
.x2b{left:696.165000px;}
.x2c{left:701.205000px;}
.x2d{left:706.964987px;}
.x2e{left:713.804987px;}
.x30{left:728.924987px;}
.x35{left:793.049987px;}
@media print{
.v9{vertical-align:-43.520000pt;}
.v8{vertical-align:-30.720000pt;}
.v2{vertical-align:-24.320000pt;}
.v7{vertical-align:-21.866667pt;}
.v3{vertical-align:-12.800000pt;}
.vb{vertical-align:-8.960000pt;}
.v6{vertical-align:-3.840000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.840000pt;}
.v4{vertical-align:12.800000pt;}
.va{vertical-align:16.640000pt;}
.v1{vertical-align:24.320000pt;}
.ls1a{letter-spacing:-1.152000pt;}
.ls19{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.450667pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls25{letter-spacing:-0.024468pt;}
.ls24{letter-spacing:-0.012234pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.017920pt;}
.lsf{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.332800pt;}
.ls1f{letter-spacing:0.345600pt;}
.ls3{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.576000pt;}
.ls17{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.800000pt;}
.ls13{letter-spacing:1.625600pt;}
.ls14{letter-spacing:1.732267pt;}
.ls12{letter-spacing:1.920000pt;}
.lse{letter-spacing:2.214400pt;}
.ls11{letter-spacing:2.905600pt;}
.ls15{letter-spacing:3.148800pt;}
.lsd{letter-spacing:3.200000pt;}
.ls10{letter-spacing:3.306667pt;}
.ls22{letter-spacing:3.360000pt;}
.ls20{letter-spacing:3.398400pt;}
.ls18{letter-spacing:4.480000pt;}
.ls7{letter-spacing:7.040000pt;}
.ls5{letter-spacing:10.880000pt;}
.ls1c{letter-spacing:11.136000pt;}
.ls16{letter-spacing:12.160000pt;}
.ls1d{letter-spacing:16.198400pt;}
.ls21{letter-spacing:17.478400pt;}
.ls4{letter-spacing:39.040000pt;}
.ls2{letter-spacing:40.320000pt;}
.ls26{letter-spacing:47.488000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws6{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws1c{word-spacing:-15.744000pt;}
.ws5{word-spacing:-15.360000pt;}
.ws4{word-spacing:-13.849493pt;}
.ws9{word-spacing:-11.786667pt;}
.ws8{word-spacing:-11.200000pt;}
.ws0{word-spacing:-10.560000pt;}
.wsc{word-spacing:-8.832984pt;}
.wsa{word-spacing:-8.820750pt;}
.wsd{word-spacing:-1.112662pt;}
.ws1b{word-spacing:-0.889366pt;}
.ws18{word-spacing:-0.795458pt;}
.ws11{word-spacing:-0.083583pt;}
.ws10{word-spacing:-0.038660pt;}
.ws2{word-spacing:0.000000pt;}
.wsb{word-spacing:0.034353pt;}
.ws13{word-spacing:0.178275pt;}
.ws19{word-spacing:0.248155pt;}
.ws16{word-spacing:0.519996pt;}
.ws14{word-spacing:0.578720pt;}
.wse{word-spacing:0.603628pt;}
.ws15{word-spacing:1.555241pt;}
.wsf{word-spacing:1.592580pt;}
.ws12{word-spacing:1.662803pt;}
.ws1a{word-spacing:2.064912pt;}
.ws17{word-spacing:3.524043pt;}
._32{margin-left:-8.228693pt;}
._31{margin-left:-6.594560pt;}
._1{margin-left:-5.040213pt;}
._2{margin-left:-3.793920pt;}
._1b{margin-left:-2.887253pt;}
._4{margin-left:-1.945600pt;}
._0{margin-left:-1.021440pt;}
._3{width:1.140907pt;}
._6{width:2.317227pt;}
._f{width:3.631360pt;}
._1a{width:4.596907pt;}
._11{width:6.025387pt;}
._a{width:7.488000pt;}
._9{width:9.113600pt;}
._14{width:10.880000pt;}
._29{width:11.770027pt;}
._8{width:12.672000pt;}
._7{width:13.941333pt;}
._2a{width:14.831787pt;}
._27{width:15.744000pt;}
._b{width:17.533440pt;}
._10{width:18.446507pt;}
._d{width:19.556693pt;}
._c{width:20.736000pt;}
._e{width:21.787307pt;}
._25{width:22.755413pt;}
._1c{width:24.292693pt;}
._26{width:25.207040pt;}
._1d{width:26.191360pt;}
._15{width:27.272533pt;}
._2d{width:28.342613pt;}
._20{width:29.233067pt;}
._1f{width:30.501973pt;}
._1e{width:31.898880pt;}
._21{width:33.206613pt;}
._22{width:34.135040pt;}
._2c{width:35.645440pt;}
._16{width:37.696000pt;}
._19{width:39.418453pt;}
._13{width:40.831573pt;}
._12{width:42.394027pt;}
._18{width:43.441067pt;}
._17{width:44.349440pt;}
._28{width:45.486507pt;}
._2b{width:47.109973pt;}
._30{width:48.538453pt;}
._2f{width:50.007467pt;}
._2e{width:51.258027pt;}
._23{width:59.454293pt;}
._24{width:60.805973pt;}
._5{width:1104.405333pt;}
.fs6{font-size:34.560000pt;}
.fsa{font-size:35.283000pt;}
.fsb{font-size:35.331936pt;}
.fs9{font-size:37.120000pt;}
.fs5{font-size:42.240000pt;}
.fs8{font-size:44.800000pt;}
.fs0{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:67.461249pt;}
.fs3{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.480000pt;}
.y7{bottom:7.040000pt;}
.yb6{bottom:8.474282pt;}
.yb5{bottom:19.130139pt;}
.y9{bottom:23.712000pt;}
.y8{bottom:42.912000pt;}
.ybe{bottom:60.078973pt;}
.y5{bottom:60.512000pt;}
.y64{bottom:85.472000pt;}
.yb4{bottom:86.440904pt;}
.y35{bottom:86.752000pt;}
.yb3{bottom:97.099208pt;}
.yad{bottom:99.232000pt;}
.y63{bottom:100.512000pt;}
.y68{bottom:100.832000pt;}
.yb8{bottom:104.229212pt;}
.y62{bottom:105.312000pt;}
.ybc{bottom:106.431341pt;}
.yb2{bottom:107.752619pt;}
.y34{bottom:107.872000pt;}
.yba{bottom:108.829215pt;}
.yb7{bottom:114.897304pt;}
.y61{bottom:116.544000pt;}
.ybb{bottom:117.089646pt;}
.yb1{bottom:118.420710pt;}
.yb9{bottom:119.497307pt;}
.yac{bottom:120.384000pt;}
.y67{bottom:121.984000pt;}
.y33{bottom:129.024000pt;}
.yab{bottom:141.506667pt;}
.y60{bottom:143.106667pt;}
.y32{bottom:150.146667pt;}
.ybd{bottom:160.285629pt;}
.yaa{bottom:162.946667pt;}
.y5f{bottom:164.226667pt;}
.y31{bottom:171.266667pt;}
.ya9{bottom:184.066667pt;}
.y5e{bottom:185.346667pt;}
.y30{bottom:192.386667pt;}
.ya8{bottom:205.186667pt;}
.y5d{bottom:206.466667pt;}
.yb0{bottom:212.206938pt;}
.y2f{bottom:213.506667pt;}
.yaf{bottom:222.865242pt;}
.ya7{bottom:226.306667pt;}
.y5c{bottom:227.586667pt;}
.y66{bottom:227.906667pt;}
.y2e{bottom:234.973333pt;}
.y8a{bottom:239.133333pt;}
.ya6{bottom:247.453333pt;}
.y5b{bottom:249.053333pt;}
.y2d{bottom:256.093333pt;}
.y89{bottom:260.573333pt;}
.ya5{bottom:268.573333pt;}
.y5a{bottom:270.173333pt;}
.y2c{bottom:277.213333pt;}
.y88{bottom:282.013333pt;}
.ya4{bottom:289.693333pt;}
.y59{bottom:291.293333pt;}
.y2b{bottom:298.333333pt;}
.y87{bottom:303.453333pt;}
.ya3{bottom:310.813333pt;}
.y58{bottom:312.413333pt;}
.y2a{bottom:319.453333pt;}
.y86{bottom:324.893333pt;}
.ya2{bottom:331.933333pt;}
.y57{bottom:333.533333pt;}
.y29{bottom:340.573333pt;}
.y85{bottom:346.333333pt;}
.ya1{bottom:353.413333pt;}
.y56{bottom:354.693333pt;}
.y28{bottom:361.733333pt;}
.y84{bottom:369.733333pt;}
.ya0{bottom:374.533333pt;}
.y55{bottom:375.813333pt;}
.y27{bottom:382.853333pt;}
.y83{bottom:393.413333pt;}
.y9f{bottom:395.653333pt;}
.y54{bottom:396.933333pt;}
.y26{bottom:403.973333pt;}
.y82{bottom:415.173333pt;}
.y9e{bottom:416.773333pt;}
.y53{bottom:418.373333pt;}
.y25{bottom:425.413333pt;}
.y81{bottom:436.293333pt;}
.y9d{bottom:437.893333pt;}
.y52{bottom:439.493333pt;}
.y24{bottom:446.533333pt;}
.y80{bottom:457.413333pt;}
.y9c{bottom:459.653333pt;}
.y51{bottom:460.613333pt;}
.y23{bottom:467.653333pt;}
.y7f{bottom:478.880000pt;}
.y9b{bottom:480.800000pt;}
.yc0{bottom:481.440000pt;}
.y50{bottom:481.760000pt;}
.y22{bottom:488.800000pt;}
.y7e{bottom:500.000000pt;}
.y4f{bottom:502.880000pt;}
.y99{bottom:504.480000pt;}
.y21{bottom:509.920000pt;}
.y9a{bottom:512.160000pt;}
.y7d{bottom:521.120000pt;}
.y4e{bottom:524.000000pt;}
.y98{bottom:529.760000pt;}
.y20{bottom:531.040000pt;}
.y7c{bottom:542.240000pt;}
.y4d{bottom:545.120000pt;}
.y1f{bottom:552.160000pt;}
.y97{bottom:553.760000pt;}
.y7b{bottom:563.360000pt;}
.y4c{bottom:566.240000pt;}
.y96{bottom:572.640000pt;}
.y1e{bottom:573.280000pt;}
.y7a{bottom:584.480000pt;}
.y4b{bottom:587.680000pt;}
.y93{bottom:592.826667pt;}
.y1d{bottom:594.746667pt;}
.y94{bottom:600.506667pt;}
.y79{bottom:605.626667pt;}
.y4a{bottom:608.826667pt;}
.y1c{bottom:615.866667pt;}
.y95{bottom:619.066667pt;}
.y78{bottom:626.746667pt;}
.y49{bottom:629.946667pt;}
.y92{bottom:635.066667pt;}
.y1b{bottom:636.986667pt;}
.y77{bottom:648.186667pt;}
.y48{bottom:651.066667pt;}
.y91{bottom:656.186667pt;}
.y1a{bottom:658.106667pt;}
.y76{bottom:669.306667pt;}
.y47{bottom:672.186667pt;}
.y90{bottom:677.306667pt;}
.y19{bottom:679.226667pt;}
.y75{bottom:690.426667pt;}
.y45{bottom:693.306667pt;}
.y8f{bottom:698.426667pt;}
.y46{bottom:699.386667pt;}
.y18{bottom:700.346667pt;}
.y74{bottom:711.586667pt;}
.y44{bottom:714.466667pt;}
.y8e{bottom:719.586667pt;}
.y17{bottom:721.506667pt;}
.y73{bottom:732.706667pt;}
.y43{bottom:735.586667pt;}
.y8d{bottom:740.706667pt;}
.y16{bottom:742.626667pt;}
.y72{bottom:753.826667pt;}
.y42{bottom:756.706667pt;}
.y8c{bottom:761.826667pt;}
.y15{bottom:764.066667pt;}
.y71{bottom:775.266667pt;}
.y41{bottom:778.146667pt;}
.y8b{bottom:779.426667pt;}
.yae{bottom:780.480000pt;}
.y14{bottom:784.866667pt;}
.y70{bottom:796.706667pt;}
.y40{bottom:799.266667pt;}
.y13{bottom:805.986667pt;}
.y6f{bottom:818.146667pt;}
.y3f{bottom:820.386667pt;}
.y12{bottom:833.533333pt;}
.y6e{bottom:839.613333pt;}
.y3e{bottom:841.533333pt;}
.y11{bottom:854.653333pt;}
.y6d{bottom:861.053333pt;}
.y3d{bottom:862.653333pt;}
.y10{bottom:875.773333pt;}
.y6c{bottom:882.173333pt;}
.ybf{bottom:883.453333pt;}
.y3c{bottom:883.773333pt;}
.yf{bottom:896.893333pt;}
.y6b{bottom:903.613333pt;}
.y3b{bottom:904.893333pt;}
.ye{bottom:911.613333pt;}
.y69{bottom:925.053333pt;}
.y3a{bottom:926.013333pt;}
.y6a{bottom:928.253333pt;}
.yd{bottom:933.053333pt;}
.y39{bottom:947.173333pt;}
.y65{bottom:947.493333pt;}
.yc{bottom:954.213333pt;}
.y38{bottom:968.613333pt;}
.yb{bottom:977.253333pt;}
.y37{bottom:989.733333pt;}
.ya{bottom:1005.413333pt;}
.y36{bottom:1010.853333pt;}
.y4{bottom:1029.093333pt;}
.y3{bottom:1046.053333pt;}
.y2{bottom:1059.813333pt;}
.y1{bottom:1073.600000pt;}
.h5{height:21.440000pt;}
.h16{height:24.739447pt;}
.h17{height:24.773760pt;}
.he{height:25.920000pt;}
.hb{height:29.617500pt;}
.h2{height:34.318750pt;}
.h14{height:36.925000pt;}
.h3{height:37.931250pt;}
.hf{height:40.320000pt;}
.h7{height:44.875000pt;}
.h9{height:45.156250pt;}
.hc{height:46.218750pt;}
.h18{height:46.593750pt;}
.h4{height:48.000000pt;}
.h6{height:52.055000pt;}
.h13{height:52.495000pt;}
.hd{height:52.750000pt;}
.ha{height:54.123125pt;}
.h8{height:60.509375pt;}
.h12{height:79.375000pt;}
.h11{height:83.215000pt;}
.h10{height:83.667760pt;}
.h15{height:244.798447pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:4.800000pt;}
.wd{width:5.120000pt;}
.w10{width:5.152000pt;}
.w8{width:5.440000pt;}
.w9{width:5.760000pt;}
.w4{width:118.784000pt;}
.w11{width:170.306667pt;}
.we{width:209.053333pt;}
.w3{width:255.133333pt;}
.wa{width:259.973333pt;}
.w5{width:267.613333pt;}
.w12{width:501.433747pt;}
.w7{width:523.386667pt;}
.wb{width:571.106667pt;}
.wf{width:614.306667pt;}
.w1{width:793.333333pt;}
.w6{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x1f{left:-1.600000pt;}
.x0{left:0.000000pt;}
.x3b{left:21.819399pt;}
.x3a{left:28.595612pt;}
.x3d{left:32.676398pt;}
.x3c{left:37.193874pt;}
.x39{left:61.847243pt;}
.x38{left:76.315211pt;}
.x7{left:78.426667pt;}
.x4{left:85.151988pt;}
.x1{left:104.671988pt;}
.x14{left:110.111988pt;}
.x18{left:113.631976pt;}
.x19{left:118.431988pt;}
.x9{left:123.551988pt;}
.x5{left:127.741333pt;}
.x13{left:132.543988pt;}
.x2{left:133.506655pt;}
.x37{left:145.920007pt;}
.x41{left:166.634604pt;}
.x47{left:168.110313pt;}
.xc{left:169.666655pt;}
.x31{left:181.186655pt;}
.xa{left:182.466655pt;}
.x3e{left:194.642952pt;}
.x42{left:199.268847pt;}
.x1a{left:206.493322pt;}
.x43{left:222.771766pt;}
.x1b{left:225.373322pt;}
.x1c{left:231.453322pt;}
.xe{left:260.253322pt;}
.x12{left:263.133322pt;}
.x17{left:277.213322pt;}
.x11{left:282.333322pt;}
.xf{left:283.613322pt;}
.x10{left:290.053322pt;}
.x2f{left:324.933322pt;}
.x40{left:327.426615pt;}
.x45{left:331.823624pt;}
.xd{left:334.853322pt;}
.x46{left:335.889352pt;}
.x6{left:340.613333pt;}
.x3f{left:341.900606pt;}
.x32{left:346.053322pt;}
.x3{left:357.893322pt;}
.xb{left:396.959988pt;}
.x34{left:398.239988pt;}
.x36{left:423.839988pt;}
.x44{left:425.407646pt;}
.x33{left:428.959988pt;}
.x8{left:460.346667pt;}
.x1d{left:516.346643pt;}
.x1e{left:523.066667pt;}
.x20{left:528.186667pt;}
.x21{left:533.626667pt;}
.x22{left:539.106655pt;}
.x15{left:557.346643pt;}
.x16{left:562.786655pt;}
.x23{left:564.066643pt;}
.x24{left:570.786667pt;}
.x25{left:575.266667pt;}
.x26{left:580.066667pt;}
.x27{left:584.546667pt;}
.x28{left:589.666655pt;}
.x29{left:607.266643pt;}
.x2a{left:613.986667pt;}
.x2b{left:618.813333pt;}
.x2c{left:623.293333pt;}
.x2d{left:628.413322pt;}
.x2e{left:634.493322pt;}
.x30{left:647.933322pt;}
.x35{left:704.933322pt;}
}




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