
    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_d890e7736bb3af352d871722.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ff83cf286e9994cca8974504.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940000;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_6b31d9eb5c6b3399e073abe2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939000;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_01ce41ae0fa461bb3b23de64.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_ae99c15ec708924ffb4eadde.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e9e285bf3c5c8ac6e50af82a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.050293;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_1ad9ca806f7eaf3dc4bdfe61.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_68fe816e24316305da5bb0aa.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.v1{vertical-align:24.000000px;}
.lsa{letter-spacing:-0.516000px;}
.ls1b{letter-spacing:-0.492000px;}
.lsd{letter-spacing:-0.468000px;}
.lsb{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.036000px;}
.ls1d{letter-spacing:-0.024000px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.024000px;}
.ls6{letter-spacing:0.060000px;}
.ls1e{letter-spacing:0.174000px;}
.ls7{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.204000px;}
.ls17{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.480000px;}
.lsf{letter-spacing:0.492000px;}
.ls15{letter-spacing:0.516000px;}
.ls13{letter-spacing:0.984000px;}
.ls11{letter-spacing:1.032000px;}
.lse{letter-spacing:1.500000px;}
.ls10{letter-spacing:1.560000px;}
.ls1{letter-spacing:4.179676px;}
.ls3{letter-spacing:4.180609px;}
.ls1c{letter-spacing:6.000000px;}
.ls4{letter-spacing:7.172728px;}
.ls5{letter-spacing:7.173559px;}
.ls2{letter-spacing:8.301664px;}
.ls12{letter-spacing:12.000000px;}
.ls19{letter-spacing:13.500000px;}
.ls8{letter-spacing:15.000000px;}
.ls18{letter-spacing:16.500000px;}
.ls14{letter-spacing:19.500000px;}
.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;}
}
.ws10{word-spacing:-18.984000px;}
.wsd{word-spacing:-18.492000px;}
.ws11{word-spacing:-18.024000px;}
.wsa{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.976000px;}
.wsf{word-spacing:-17.532000px;}
.ws12{word-spacing:-17.508000px;}
.wsc{word-spacing:-17.484000px;}
.wse{word-spacing:-15.000000px;}
.wsb{word-spacing:-14.820000px;}
.ws5{word-spacing:-0.229539px;}
.ws9{word-spacing:-0.071731px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:19.869542px;}
.ws1{word-spacing:33.907669px;}
.ws7{word-spacing:35.456850px;}
.ws2{word-spacing:38.160873px;}
.ws6{word-spacing:42.523425px;}
.ws4{word-spacing:64.981524px;}
.ws3{word-spacing:91.968384px;}
._0{margin-left:-8.435561px;}
._5{margin-left:-7.173120px;}
._b{margin-left:-5.040000px;}
._c{margin-left:-4.032000px;}
._3{margin-left:-2.231550px;}
._7{margin-left:-1.080000px;}
._6{width:1.080000px;}
._d{width:2.520000px;}
._a{width:3.960000px;}
._e{width:4.962000px;}
._4{width:5.982480px;}
._11{width:7.891740px;}
._10{width:9.000000px;}
._2{width:10.099716px;}
._9{width:12.024000px;}
._12{width:13.185174px;}
._1{width:14.231418px;}
._19{width:15.344826px;}
._f{width:16.488000px;}
._8{width:19.296000px;}
._13{width:21.023550px;}
._1a{width:22.620000px;}
._14{width:24.081150px;}
._1b{width:25.344000px;}
._15{width:26.526000px;}
._16{width:27.660000px;}
._1c{width:29.520000px;}
._18{width:30.563550px;}
._17{width:31.746000px;}
._1d{width:36.431550px;}
._1e{width:38.432250px;}
._20{width:42.984000px;}
._22{width:161.477550px;}
._21{width:162.498000px;}
._1f{width:198.150000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fsc{font-size:108.000000px;}
.fsa{font-size:123.975000px;}
.fs6{font-size:133.897800px;}
.fs5{font-size:167.372400px;}
.fs9{font-size:172.154400px;}
.fs8{font-size:229.539000px;}
.fs7{font-size:286.924200px;}
.y0{bottom:0.000000px;}
.y2f{bottom:3.750000px;}
.y2d{bottom:56.625000px;}
.y5{bottom:66.525004px;}
.y2b{bottom:73.140000px;}
.y4{bottom:97.125005px;}
.y4d{bottom:111.037500px;}
.y67{bottom:116.287500px;}
.y4c{bottom:128.287500px;}
.ya9{bottom:129.787500px;}
.yd1{bottom:131.287500px;}
.y71{bottom:133.537500px;}
.y23{bottom:139.264499px;}
.y4b{bottom:145.537500px;}
.y66{bottom:150.780000px;}
.y81{bottom:151.155000px;}
.yd0{bottom:151.920000px;}
.y4a{bottom:162.795000px;}
.y65{bottom:164.280000px;}
.y49{bottom:168.030000px;}
.ycf{bottom:172.920000px;}
.y48{bottom:180.045000px;}
.y96{bottom:181.530000px;}
.y6d{bottom:185.325000px;}
.y80{bottom:192.825000px;}
.ya8{bottom:193.575000px;}
.yac{bottom:195.450000px;}
.y1a{bottom:196.933500px;}
.y47{bottom:197.325000px;}
.y97{bottom:198.825000px;}
.y6c{bottom:202.575000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.ycd{bottom:214.200000px;}
.y46{bottom:214.575000px;}
.yab{bottom:214.950000px;}
.yca{bottom:216.075000px;}
.y45{bottom:219.825000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y91{bottom:231.825000px;}
.y44{bottom:233.325000px;}
.y7f{bottom:234.075000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y64{bottom:234.825000px;}
.y95{bottom:237.075000px;}
.ya7{bottom:237.450000px;}
.y70{bottom:240.825000px;}
.y90{bottom:249.075000px;}
.yaa{bottom:249.450000px;}
.y94{bottom:250.575000px;}
.yc8{bottom:254.325000px;}
.ycc{bottom:255.450000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y8f{bottom:266.325000px;}
.y8e{bottom:271.575000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y7e{bottom:275.700000px;}
.y63{bottom:276.450000px;}
.ya5{bottom:278.700000px;}
.yc9{bottom:282.450000px;}
.y8d{bottom:283.575000px;}
.ya6{bottom:284.700000px;}
.yc4{bottom:285.075000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.yc7{bottom:288.825000px;}
.ycb{bottom:297.075000px;}
.y8c{bottom:300.825000px;}
.yc6{bottom:306.120000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y7d{bottom:316.980000px;}
.y62{bottom:317.745000px;}
.y8b{bottom:318.120000px;}
.yc5{bottom:319.620000px;}
.ya4{bottom:320.355000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y8a{bottom:335.370000px;}
.y43{bottom:338.370000px;}
.y11{bottom:348.133500px;}
.y89{bottom:352.620000px;}
.y88{bottom:357.870000px;}
.y7c{bottom:358.245000px;}
.y61{bottom:358.995000px;}
.yc2{bottom:360.870000px;}
.ya2{bottom:361.620000px;}
.yc3{bottom:366.870000px;}
.ya3{bottom:367.620000px;}
.y87{bottom:369.870000px;}
.y86{bottom:375.120000px;}
.y42{bottom:379.995000px;}
.y10{bottom:386.785499px;}
.y85{bottom:388.620000px;}
.y7b{bottom:399.870000px;}
.y2a{bottom:399.988500px;}
.y60{bottom:400.620000px;}
.yc1{bottom:402.120000px;}
.ya1{bottom:403.245000px;}
.y74{bottom:406.620000px;}
.yf{bottom:408.044999px;}
.y41{bottom:421.245000px;}
.y7a{bottom:441.150000px;}
.y5f{bottom:441.900000px;}
.yc0{bottom:443.775000px;}
.ya0{bottom:444.525000px;}
.y3f{bottom:462.525000px;}
.y29{bottom:466.489500px;}
.ye{bottom:466.864502px;}
.y40{bottom:468.525000px;}
.y79{bottom:482.775000px;}
.y5e{bottom:483.525000px;}
.yd{bottom:484.864502px;}
.ybe{bottom:485.025000px;}
.y9f{bottom:485.775000px;}
.y73{bottom:489.525000px;}
.ybf{bottom:491.025000px;}
.yc{bottom:502.864502px;}
.y3e{bottom:504.150000px;}
.yb{bottom:520.864502px;}
.y78{bottom:524.025000px;}
.y5d{bottom:524.775000px;}
.ybd{bottom:526.650000px;}
.y9e{bottom:527.400000px;}
.y84{bottom:530.775000px;}
.ya{bottom:538.864499px;}
.y3d{bottom:545.445000px;}
.y77{bottom:546.945000px;}
.y9{bottom:556.864499px;}
.y5c{bottom:566.070000px;}
.y76{bottom:566.820000px;}
.ybc{bottom:567.945000px;}
.y9d{bottom:568.695000px;}
.y6b{bottom:572.070000px;}
.y3c{bottom:587.070000px;}
.y9c{bottom:591.570000px;}
.y28{bottom:597.547500px;}
.y75{bottom:601.320000px;}
.y5a{bottom:607.695000px;}
.ybb{bottom:609.195000px;}
.y9a{bottom:611.445000px;}
.y5b{bottom:613.695000px;}
.y9b{bottom:616.695000px;}
.y3b{bottom:628.320000px;}
.y99{bottom:631.320000px;}
.y27{bottom:634.908000px;}
.y8{bottom:645.510000px;}
.y59{bottom:648.945000px;}
.yb9{bottom:650.820000px;}
.y83{bottom:654.945000px;}
.yba{bottom:656.820000px;}
.y98{bottom:665.850000px;}
.y7{bottom:666.771000px;}
.y3a{bottom:669.600000px;}
.y58{bottom:690.225000px;}
.yb8{bottom:692.100000px;}
.y6a{bottom:696.225000px;}
.y39{bottom:711.225000px;}
.y6{bottom:726.298500px;}
.y57{bottom:731.850000px;}
.yb7{bottom:733.350000px;}
.y93{bottom:737.850000px;}
.y38{bottom:752.475000px;}
.y3{bottom:752.599495px;}
.y56{bottom:773.100000px;}
.yb6{bottom:774.975000px;}
.y6f{bottom:779.130000px;}
.y37{bottom:793.755000px;}
.y55{bottom:814.755000px;}
.yb5{bottom:816.255000px;}
.y72{bottom:820.755000px;}
.y26{bottom:827.236500px;}
.y35{bottom:835.380000px;}
.y36{bottom:841.380000px;}
.y54{bottom:856.005000px;}
.yb3{bottom:857.880000px;}
.y69{bottom:862.005000px;}
.yb4{bottom:863.880000px;}
.y34{bottom:876.630000px;}
.y2{bottom:879.369000px;}
.y53{bottom:897.300000px;}
.yb2{bottom:899.175000px;}
.y68{bottom:903.300000px;}
.y33{bottom:918.300000px;}
.y52{bottom:938.925000px;}
.yb1{bottom:940.425000px;}
.y6e{bottom:944.925000px;}
.y32{bottom:959.550000px;}
.y1{bottom:966.726000px;}
.y51{bottom:980.175000px;}
.yb0{bottom:982.050000px;}
.y82{bottom:986.175000px;}
.y25{bottom:1000.119000px;}
.y31{bottom:1000.800000px;}
.y50{bottom:1021.830000px;}
.yaf{bottom:1023.330000px;}
.y92{bottom:1027.830000px;}
.yce{bottom:1042.455000px;}
.yae{bottom:1046.205000px;}
.y30{bottom:1054.830000px;}
.y4e{bottom:1063.080000px;}
.yad{bottom:1066.080000px;}
.y4f{bottom:1069.080000px;}
.y24{bottom:1089.783000px;}
.y2e{bottom:1114.080000px;}
.y2c{bottom:1117.830000px;}
.h11{height:20.662500px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h16{height:38.276367px;}
.h1a{height:39.304688px;}
.h7{height:45.960000px;}
.h15{height:47.109375px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h1e{height:50.068359px;}
.hf{height:52.865894px;}
.he{height:53.399894px;}
.h2{height:55.152000px;}
.h17{height:58.886719px;}
.h1c{height:59.677734px;}
.h18{height:60.082031px;}
.h19{height:60.468750px;}
.h14{height:70.628906px;}
.h10{height:70.664062px;}
.h1d{height:71.109375px;}
.h12{height:71.613281px;}
.h1b{height:72.562500px;}
.h5{height:78.132000px;}
.hd{height:91.369575px;}
.h13{height:105.996094px;}
.h4{height:119.055004px;}
.hb{height:123.353459px;}
.hc{height:211.463135px;}
.ha{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:9.000000px;}
.w7{width:18.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w6{width:917.999973px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:51.652500px;}
.x7d{left:72.037486px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xe{left:108.037486px;}
.x15{left:112.912486px;}
.x27{left:117.787486px;}
.x6{left:150.394500px;}
.x10{left:162.074986px;}
.x60{left:166.574973px;}
.x2a{left:170.699973px;}
.x61{left:178.574986px;}
.x2b{left:182.699986px;}
.x28{left:184.574973px;}
.x5b{left:191.699973px;}
.x29{left:196.574986px;}
.x73{left:198.449973px;}
.x4{left:203.484001px;}
.x47{left:208.199973px;}
.x3f{left:209.699973px;}
.x37{left:216.449973px;}
.x74{left:217.574973px;}
.x48{left:220.199986px;}
.x40{left:221.699986px;}
.x38{left:228.494986px;}
.x75{left:229.619986px;}
.x5{left:253.242000px;}
.x59{left:257.744973px;}
.x76{left:267.119973px;}
.x5a{left:269.744986px;}
.x77{left:279.119986px;}
.x79{left:298.244973px;}
.x45{left:309.869973px;}
.x54{left:314.399973px;}
.x46{left:321.899986px;}
.x14{left:324.149986px;}
.x20{left:348.524973px;}
.x21{left:354.524986px;}
.x43{left:356.024973px;}
.x32{left:359.774973px;}
.x44{left:368.024986px;}
.x33{left:371.774986px;}
.x7{left:373.257000px;}
.xa{left:379.648500px;}
.x9{left:382.678500px;}
.x72{left:394.274973px;}
.x7c{left:395.399986px;}
.x2e{left:401.399973px;}
.x66{left:404.069973px;}
.xc{left:406.681500px;}
.x2f{left:413.444986px;}
.x67{left:416.069986px;}
.xd{left:421.416000px;}
.x18{left:447.944973px;}
.x19{left:453.944986px;}
.x3{left:454.959000px;}
.x6a{left:464.819973px;}
.x26{left:466.694986px;}
.x5f{left:468.194973px;}
.x55{left:477.194973px;}
.x3b{left:480.569973px;}
.x56{left:489.194986px;}
.x34{left:491.069973px;}
.x3c{left:492.569986px;}
.x35{left:503.099986px;}
.x71{left:511.724973px;}
.x41{left:521.099973px;}
.x13{left:524.099973px;}
.x70{left:527.849973px;}
.xb{left:529.386000px;}
.x42{left:533.099986px;}
.x1a{left:534.224973px;}
.x1b{left:540.224986px;}
.x11{left:554.099973px;}
.x12{left:560.099986px;}
.x6b{left:563.849973px;}
.x6d{left:569.474973px;}
.x6e{left:572.474973px;}
.x6c{left:575.849986px;}
.x50{left:581.849973px;}
.x6f{left:584.504986px;}
.x51{left:593.879986px;}
.x4e{left:599.879973px;}
.x7a{left:603.644973px;}
.x78{left:606.629986px;}
.x4f{left:611.894986px;}
.x1e{left:614.504973px;}
.x7b{left:615.644986px;}
.x3d{left:617.504973px;}
.x1f{left:620.519986px;}
.x57{left:626.879973px;}
.x3e{left:629.504986px;}
.x58{left:638.894986px;}
.x52{left:640.379973px;}
.x24{left:646.379973px;}
.x1c{left:650.504973px;}
.x53{left:652.394986px;}
.x1d{left:656.504986px;}
.x25{left:658.379986px;}
.x5d{left:665.129973px;}
.x4b{left:667.004973px;}
.x5e{left:677.174986px;}
.x4c{left:679.049986px;}
.x64{left:682.799973px;}
.x30{left:689.174973px;}
.x65{left:694.799986px;}
.x16{left:698.549973px;}
.x31{left:701.174986px;}
.x17{left:704.549986px;}
.x68{left:710.174973px;}
.x2c{left:715.799973px;}
.x69{left:722.174986px;}
.x39{left:725.549973px;}
.x2d{left:727.799986px;}
.x62{left:730.424973px;}
.x3a{left:737.549986px;}
.x63{left:742.424986px;}
.x5c{left:757.049986px;}
.x36{left:760.799986px;}
.x49{left:787.079973px;}
.x4d{left:792.345000px;}
.x4a{left:799.079986px;}
.xf{left:801.345000px;}
.x22{left:804.329973px;}
.x23{left:810.344986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.lsa{letter-spacing:-0.458667pt;}
.ls1b{letter-spacing:-0.437333pt;}
.lsd{letter-spacing:-0.416000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls1d{letter-spacing:-0.021333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.021333pt;}
.ls6{letter-spacing:0.053333pt;}
.ls1e{letter-spacing:0.154667pt;}
.ls7{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.181333pt;}
.ls17{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.426667pt;}
.lsf{letter-spacing:0.437333pt;}
.ls15{letter-spacing:0.458667pt;}
.ls13{letter-spacing:0.874667pt;}
.ls11{letter-spacing:0.917333pt;}
.lse{letter-spacing:1.333333pt;}
.ls10{letter-spacing:1.386667pt;}
.ls1{letter-spacing:3.715267pt;}
.ls3{letter-spacing:3.716097pt;}
.ls1c{letter-spacing:5.333333pt;}
.ls4{letter-spacing:6.375758pt;}
.ls5{letter-spacing:6.376497pt;}
.ls2{letter-spacing:7.379257pt;}
.ls12{letter-spacing:10.666667pt;}
.ls19{letter-spacing:12.000000pt;}
.ls8{letter-spacing:13.333333pt;}
.ls18{letter-spacing:14.666667pt;}
.ls14{letter-spacing:17.333333pt;}
.ws10{word-spacing:-16.874667pt;}
.wsd{word-spacing:-16.437333pt;}
.ws11{word-spacing:-16.021333pt;}
.wsa{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.978667pt;}
.wsf{word-spacing:-15.584000pt;}
.ws12{word-spacing:-15.562667pt;}
.wsc{word-spacing:-15.541333pt;}
.wse{word-spacing:-13.333333pt;}
.wsb{word-spacing:-13.173333pt;}
.ws5{word-spacing:-0.204035pt;}
.ws9{word-spacing:-0.063761pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:17.661815pt;}
.ws1{word-spacing:30.140150pt;}
.ws7{word-spacing:31.517200pt;}
.ws2{word-spacing:33.920776pt;}
.ws6{word-spacing:37.798600pt;}
.ws4{word-spacing:57.761355pt;}
.ws3{word-spacing:81.749675pt;}
._0{margin-left:-7.498277pt;}
._5{margin-left:-6.376107pt;}
._b{margin-left:-4.480000pt;}
._c{margin-left:-3.584000pt;}
._3{margin-left:-1.983600pt;}
._7{margin-left:-0.960000pt;}
._6{width:0.960000pt;}
._d{width:2.240000pt;}
._a{width:3.520000pt;}
._e{width:4.410667pt;}
._4{width:5.317760pt;}
._11{width:7.014880pt;}
._10{width:8.000000pt;}
._2{width:8.977525pt;}
._9{width:10.688000pt;}
._12{width:11.720155pt;}
._1{width:12.650149pt;}
._19{width:13.639845pt;}
._f{width:14.656000pt;}
._8{width:17.152000pt;}
._13{width:18.687600pt;}
._1a{width:20.106667pt;}
._14{width:21.405467pt;}
._1b{width:22.528000pt;}
._15{width:23.578667pt;}
._16{width:24.586667pt;}
._1c{width:26.240000pt;}
._18{width:27.167600pt;}
._17{width:28.218667pt;}
._1d{width:32.383600pt;}
._1e{width:34.162000pt;}
._20{width:38.208000pt;}
._22{width:143.535600pt;}
._21{width:144.442667pt;}
._1f{width:176.133333pt;}
.fse{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fsc{font-size:96.000000pt;}
.fsa{font-size:110.200000pt;}
.fs6{font-size:119.020267pt;}
.fs5{font-size:148.775467pt;}
.fs9{font-size:153.026133pt;}
.fs8{font-size:204.034667pt;}
.fs7{font-size:255.043733pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:3.333333pt;}
.y2d{bottom:50.333333pt;}
.y5{bottom:59.133337pt;}
.y2b{bottom:65.013333pt;}
.y4{bottom:86.333337pt;}
.y4d{bottom:98.700000pt;}
.y67{bottom:103.366667pt;}
.y4c{bottom:114.033333pt;}
.ya9{bottom:115.366667pt;}
.yd1{bottom:116.700000pt;}
.y71{bottom:118.700000pt;}
.y23{bottom:123.790666pt;}
.y4b{bottom:129.366667pt;}
.y66{bottom:134.026667pt;}
.y81{bottom:134.360000pt;}
.yd0{bottom:135.040000pt;}
.y4a{bottom:144.706667pt;}
.y65{bottom:146.026667pt;}
.y49{bottom:149.360000pt;}
.ycf{bottom:153.706667pt;}
.y48{bottom:160.040000pt;}
.y96{bottom:161.360000pt;}
.y6d{bottom:164.733333pt;}
.y80{bottom:171.400000pt;}
.ya8{bottom:172.066667pt;}
.yac{bottom:173.733333pt;}
.y1a{bottom:175.052000pt;}
.y47{bottom:175.400000pt;}
.y97{bottom:176.733333pt;}
.y6c{bottom:180.066667pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.ycd{bottom:190.400000pt;}
.y46{bottom:190.733333pt;}
.yab{bottom:191.066667pt;}
.yca{bottom:192.066667pt;}
.y45{bottom:195.400000pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y91{bottom:206.066667pt;}
.y44{bottom:207.400000pt;}
.y7f{bottom:208.066667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y64{bottom:208.733333pt;}
.y95{bottom:210.733333pt;}
.ya7{bottom:211.066667pt;}
.y70{bottom:214.066667pt;}
.y90{bottom:221.400000pt;}
.yaa{bottom:221.733333pt;}
.y94{bottom:222.733333pt;}
.yc8{bottom:226.066667pt;}
.ycc{bottom:227.066667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y8f{bottom:236.733333pt;}
.y8e{bottom:241.400000pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y7e{bottom:245.066667pt;}
.y63{bottom:245.733333pt;}
.ya5{bottom:247.733333pt;}
.yc9{bottom:251.066667pt;}
.y8d{bottom:252.066667pt;}
.ya6{bottom:253.066667pt;}
.yc4{bottom:253.400000pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.yc7{bottom:256.733333pt;}
.ycb{bottom:264.066667pt;}
.y8c{bottom:267.400000pt;}
.yc6{bottom:272.106667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y7d{bottom:281.760000pt;}
.y62{bottom:282.440000pt;}
.y8b{bottom:282.773333pt;}
.yc5{bottom:284.106667pt;}
.ya4{bottom:284.760000pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y8a{bottom:298.106667pt;}
.y43{bottom:300.773333pt;}
.y11{bottom:309.452000pt;}
.y89{bottom:313.440000pt;}
.y88{bottom:318.106667pt;}
.y7c{bottom:318.440000pt;}
.y61{bottom:319.106667pt;}
.yc2{bottom:320.773333pt;}
.ya2{bottom:321.440000pt;}
.yc3{bottom:326.106667pt;}
.ya3{bottom:326.773333pt;}
.y87{bottom:328.773333pt;}
.y86{bottom:333.440000pt;}
.y42{bottom:337.773333pt;}
.y10{bottom:343.809333pt;}
.y85{bottom:345.440000pt;}
.y7b{bottom:355.440000pt;}
.y2a{bottom:355.545333pt;}
.y60{bottom:356.106667pt;}
.yc1{bottom:357.440000pt;}
.ya1{bottom:358.440000pt;}
.y74{bottom:361.440000pt;}
.yf{bottom:362.706666pt;}
.y41{bottom:374.440000pt;}
.y7a{bottom:392.133333pt;}
.y5f{bottom:392.800000pt;}
.yc0{bottom:394.466667pt;}
.ya0{bottom:395.133333pt;}
.y3f{bottom:411.133333pt;}
.y29{bottom:414.657333pt;}
.ye{bottom:414.990669pt;}
.y40{bottom:416.466667pt;}
.y79{bottom:429.133333pt;}
.y5e{bottom:429.800000pt;}
.yd{bottom:430.990669pt;}
.ybe{bottom:431.133333pt;}
.y9f{bottom:431.800000pt;}
.y73{bottom:435.133333pt;}
.ybf{bottom:436.466667pt;}
.yc{bottom:446.990669pt;}
.y3e{bottom:448.133333pt;}
.yb{bottom:462.990669pt;}
.y78{bottom:465.800000pt;}
.y5d{bottom:466.466667pt;}
.ybd{bottom:468.133333pt;}
.y9e{bottom:468.800000pt;}
.y84{bottom:471.800000pt;}
.ya{bottom:478.990666pt;}
.y3d{bottom:484.840000pt;}
.y77{bottom:486.173333pt;}
.y9{bottom:494.990666pt;}
.y5c{bottom:503.173333pt;}
.y76{bottom:503.840000pt;}
.ybc{bottom:504.840000pt;}
.y9d{bottom:505.506667pt;}
.y6b{bottom:508.506667pt;}
.y3c{bottom:521.840000pt;}
.y9c{bottom:525.840000pt;}
.y28{bottom:531.153333pt;}
.y75{bottom:534.506667pt;}
.y5a{bottom:540.173333pt;}
.ybb{bottom:541.506667pt;}
.y9a{bottom:543.506667pt;}
.y5b{bottom:545.506667pt;}
.y9b{bottom:548.173333pt;}
.y3b{bottom:558.506667pt;}
.y99{bottom:561.173333pt;}
.y27{bottom:564.362667pt;}
.y8{bottom:573.786667pt;}
.y59{bottom:576.840000pt;}
.yb9{bottom:578.506667pt;}
.y83{bottom:582.173333pt;}
.yba{bottom:583.840000pt;}
.y98{bottom:591.866667pt;}
.y7{bottom:592.685334pt;}
.y3a{bottom:595.200000pt;}
.y58{bottom:613.533333pt;}
.yb8{bottom:615.200000pt;}
.y6a{bottom:618.866667pt;}
.y39{bottom:632.200000pt;}
.y6{bottom:645.598667pt;}
.y57{bottom:650.533333pt;}
.yb7{bottom:651.866667pt;}
.y93{bottom:655.866667pt;}
.y38{bottom:668.866667pt;}
.y3{bottom:668.977329pt;}
.y56{bottom:687.200000pt;}
.yb6{bottom:688.866667pt;}
.y6f{bottom:692.560000pt;}
.y37{bottom:705.560000pt;}
.y55{bottom:724.226667pt;}
.yb5{bottom:725.560000pt;}
.y72{bottom:729.560000pt;}
.y26{bottom:735.321333pt;}
.y35{bottom:742.560000pt;}
.y36{bottom:747.893333pt;}
.y54{bottom:760.893333pt;}
.yb3{bottom:762.560000pt;}
.y69{bottom:766.226667pt;}
.yb4{bottom:767.893333pt;}
.y34{bottom:779.226667pt;}
.y2{bottom:781.661334pt;}
.y53{bottom:797.600000pt;}
.yb2{bottom:799.266667pt;}
.y68{bottom:802.933333pt;}
.y33{bottom:816.266667pt;}
.y52{bottom:834.600000pt;}
.yb1{bottom:835.933333pt;}
.y6e{bottom:839.933333pt;}
.y32{bottom:852.933333pt;}
.y1{bottom:859.312000pt;}
.y51{bottom:871.266667pt;}
.yb0{bottom:872.933333pt;}
.y82{bottom:876.600000pt;}
.y25{bottom:888.994667pt;}
.y31{bottom:889.600000pt;}
.y50{bottom:908.293333pt;}
.yaf{bottom:909.626667pt;}
.y92{bottom:913.626667pt;}
.yce{bottom:926.626667pt;}
.yae{bottom:929.960000pt;}
.y30{bottom:937.626667pt;}
.y4e{bottom:944.960000pt;}
.yad{bottom:947.626667pt;}
.y4f{bottom:950.293333pt;}
.y24{bottom:968.696000pt;}
.y2e{bottom:990.293333pt;}
.y2c{bottom:993.626667pt;}
.h11{height:18.366667pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h16{height:34.023438pt;}
.h1a{height:34.937500pt;}
.h7{height:40.853333pt;}
.h15{height:41.875000pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h1e{height:44.505208pt;}
.hf{height:46.991906pt;}
.he{height:47.466573pt;}
.h2{height:49.024000pt;}
.h17{height:52.343750pt;}
.h1c{height:53.046875pt;}
.h18{height:53.406250pt;}
.h19{height:53.750000pt;}
.h14{height:62.781250pt;}
.h10{height:62.812500pt;}
.h1d{height:63.208333pt;}
.h12{height:63.656250pt;}
.h1b{height:64.500000pt;}
.h5{height:69.450667pt;}
.hd{height:81.217400pt;}
.h13{height:94.218750pt;}
.h4{height:105.826671pt;}
.hb{height:109.647519pt;}
.hc{height:187.967231pt;}
.ha{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:8.000000pt;}
.w7{width:16.000000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w6{width:815.999976pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:45.913333pt;}
.x7d{left:64.033321pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xe{left:96.033321pt;}
.x15{left:100.366655pt;}
.x27{left:104.699988pt;}
.x6{left:133.684000pt;}
.x10{left:144.066655pt;}
.x60{left:148.066642pt;}
.x2a{left:151.733309pt;}
.x61{left:158.733321pt;}
.x2b{left:162.399988pt;}
.x28{left:164.066642pt;}
.x5b{left:170.399976pt;}
.x29{left:174.733321pt;}
.x73{left:176.399976pt;}
.x4{left:180.874667pt;}
.x47{left:185.066642pt;}
.x3f{left:186.399976pt;}
.x37{left:192.399976pt;}
.x74{left:193.399976pt;}
.x48{left:195.733321pt;}
.x40{left:197.066655pt;}
.x38{left:203.106655pt;}
.x75{left:204.106655pt;}
.x5{left:225.104000pt;}
.x59{left:229.106642pt;}
.x76{left:237.439976pt;}
.x5a{left:239.773321pt;}
.x77{left:248.106655pt;}
.x79{left:265.106642pt;}
.x45{left:275.439976pt;}
.x54{left:279.466642pt;}
.x46{left:286.133321pt;}
.x14{left:288.133321pt;}
.x20{left:309.799976pt;}
.x21{left:315.133321pt;}
.x43{left:316.466642pt;}
.x32{left:319.799976pt;}
.x44{left:327.133321pt;}
.x33{left:330.466655pt;}
.x7{left:331.784000pt;}
.xa{left:337.465333pt;}
.x9{left:340.158667pt;}
.x72{left:350.466642pt;}
.x7c{left:351.466655pt;}
.x2e{left:356.799976pt;}
.x66{left:359.173309pt;}
.xc{left:361.494667pt;}
.x2f{left:367.506655pt;}
.x67{left:369.839988pt;}
.xd{left:374.592000pt;}
.x18{left:398.173309pt;}
.x19{left:403.506655pt;}
.x3{left:404.408000pt;}
.x6a{left:413.173309pt;}
.x26{left:414.839988pt;}
.x5f{left:416.173309pt;}
.x55{left:424.173309pt;}
.x3b{left:427.173309pt;}
.x56{left:434.839988pt;}
.x34{left:436.506642pt;}
.x3c{left:437.839988pt;}
.x35{left:447.199988pt;}
.x71{left:454.866642pt;}
.x41{left:463.199976pt;}
.x13{left:465.866642pt;}
.x70{left:469.199976pt;}
.xb{left:470.565333pt;}
.x42{left:473.866655pt;}
.x1a{left:474.866642pt;}
.x1b{left:480.199988pt;}
.x11{left:492.533309pt;}
.x12{left:497.866655pt;}
.x6b{left:501.199976pt;}
.x6d{left:506.199976pt;}
.x6e{left:508.866642pt;}
.x6c{left:511.866655pt;}
.x50{left:517.199976pt;}
.x6f{left:519.559988pt;}
.x51{left:527.893321pt;}
.x4e{left:533.226642pt;}
.x7a{left:536.573309pt;}
.x78{left:539.226655pt;}
.x4f{left:543.906655pt;}
.x1e{left:546.226642pt;}
.x7b{left:547.239988pt;}
.x3d{left:548.893309pt;}
.x1f{left:551.573321pt;}
.x57{left:557.226642pt;}
.x3e{left:559.559988pt;}
.x58{left:567.906655pt;}
.x52{left:569.226642pt;}
.x24{left:574.559976pt;}
.x1c{left:578.226642pt;}
.x53{left:579.906655pt;}
.x1d{left:583.559988pt;}
.x25{left:585.226655pt;}
.x5d{left:591.226642pt;}
.x4b{left:592.893309pt;}
.x5e{left:601.933321pt;}
.x4c{left:603.599988pt;}
.x64{left:606.933309pt;}
.x30{left:612.599976pt;}
.x65{left:617.599988pt;}
.x16{left:620.933309pt;}
.x31{left:623.266655pt;}
.x17{left:626.266655pt;}
.x68{left:631.266642pt;}
.x2c{left:636.266642pt;}
.x69{left:641.933321pt;}
.x39{left:644.933309pt;}
.x2d{left:646.933321pt;}
.x62{left:649.266642pt;}
.x3a{left:655.599988pt;}
.x63{left:659.933321pt;}
.x5c{left:672.933321pt;}
.x36{left:676.266655pt;}
.x49{left:699.626642pt;}
.x4d{left:704.306667pt;}
.x4a{left:710.293321pt;}
.xf{left:712.306667pt;}
.x22{left:714.959976pt;}
.x23{left:720.306655pt;}
}




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