
    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_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_ece27af48c09d33be1b24bfb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.200000;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_b860032320269e3f4a9a0353.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.200000;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.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);}
.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;}
.ls6{letter-spacing:-1.578000px;}
.lsc{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.582000px;}
.lsf{letter-spacing:-0.455363px;}
.ls1{letter-spacing:-0.452400px;}
.ls2{letter-spacing:-0.435000px;}
.ls7{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.296400px;}
.ls13{letter-spacing:-0.151788px;}
.ls8{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.005760px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.089400px;}
.ls14{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.357000px;}
.ls12{letter-spacing:0.379470px;}
.lsb{letter-spacing:0.426000px;}
.lsa{letter-spacing:0.636000px;}
.lsd{letter-spacing:0.702000px;}
.ls10{letter-spacing:1.296000px;}
.ls15{letter-spacing:1.366090px;}
.ls16{letter-spacing:1.728000px;}
.ls11{letter-spacing:2.016000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-17.303810px;}
.wsd{word-spacing:-16.848447px;}
.wsf{word-spacing:-16.704000px;}
.ws3{word-spacing:-16.416000px;}
.ws8{word-spacing:-16.056000px;}
.ws10{word-spacing:-15.768000px;}
.ws1{word-spacing:-15.102720px;}
.ws2{word-spacing:-14.667720px;}
.ws0{word-spacing:-14.650320px;}
.wsb{word-spacing:-14.535201px;}
.ws7{word-spacing:-14.520720px;}
.wsa{word-spacing:-14.425440px;}
.ws9{word-spacing:-14.146440px;}
.wsc{word-spacing:-13.878840px;}
.ws4{word-spacing:-13.789440px;}
.ws5{word-spacing:-13.493040px;}
.ws6{word-spacing:0.000000px;}
._5{margin-left:-2.401920px;}
._0{margin-left:-1.258560px;}
._1{width:1.068000px;}
._3{width:2.112000px;}
._16{width:3.697440px;}
._4{width:5.109120px;}
._8{width:6.169440px;}
._7{width:7.352640px;}
._b{width:8.536800px;}
._f{width:9.861600px;}
._c{width:10.929600px;}
._a{width:12.320640px;}
._6{width:13.392480px;}
._1a{width:14.424000px;}
._e{width:16.436640px;}
._d{width:17.951040px;}
._17{width:19.374720px;}
._9{width:20.998080px;}
._18{width:22.414560px;}
._1f{width:24.023520px;}
._10{width:25.047840px;}
._11{width:26.123040px;}
._1b{width:27.554880px;}
._2a{width:28.606517px;}
._13{width:29.741760px;}
._12{width:30.934080px;}
._1d{width:32.446560px;}
._25{width:33.768000px;}
._14{width:34.776000px;}
._15{width:36.026400px;}
._22{width:37.296480px;}
._1e{width:38.701440px;}
._1c{width:39.994560px;}
._27{width:41.446560px;}
._28{width:42.676320px;}
._29{width:44.386560px;}
._26{width:45.576000px;}
._23{width:46.837920px;}
._24{width:47.952000px;}
._2f{width:49.150560px;}
._2e{width:50.472000px;}
._19{width:51.874560px;}
._34{width:53.088000px;}
._35{width:54.576000px;}
._36{width:55.825920px;}
._33{width:58.138560px;}
._31{width:59.878560px;}
._32{width:61.548000px;}
._30{width:63.216000px;}
._21{width:74.304000px;}
._20{width:78.322510px;}
._2c{width:82.236000px;}
._2b{width:83.698560px;}
._37{width:90.394560px;}
._38{width:91.692000px;}
._2d{width:104.437920px;}
._2{width:329.650800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:60.480000px;}
.fs4{font-size:63.750880px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:75.893905px;}
.y0{bottom:0.000000px;}
.ya2{bottom:4.320000px;}
.y87{bottom:4.680000px;}
.yb3{bottom:23.394000px;}
.y86{bottom:23.400000px;}
.y9a{bottom:23.445000px;}
.ya7{bottom:42.120000px;}
.ya1{bottom:42.165000px;}
.y85{bottom:42.480000px;}
.yaa{bottom:42.510000px;}
.y99{bottom:42.525000px;}
.y4{bottom:57.600000px;}
.y90{bottom:61.200000px;}
.ya9{bottom:61.230000px;}
.y98{bottom:61.245000px;}
.y3{bottom:78.516000px;}
.yb5{bottom:79.920000px;}
.ya6{bottom:79.950000px;}
.ya0{bottom:79.965000px;}
.yb1{bottom:80.280000px;}
.y8f{bottom:80.310000px;}
.y97{bottom:80.325000px;}
.yb0{bottom:99.000000px;}
.y8e{bottom:99.030000px;}
.y96{bottom:99.045000px;}
.y2{bottom:112.356000px;}
.ya5{bottom:117.750000px;}
.y9f{bottom:117.765000px;}
.yaf{bottom:118.080000px;}
.y8d{bottom:118.110000px;}
.y95{bottom:118.125000px;}
.y8c{bottom:136.830000px;}
.y94{bottom:136.845000px;}
.y57{bottom:141.156000px;}
.yb2{bottom:141.516000px;}
.y73{bottom:154.470000px;}
.ya4{bottom:155.550000px;}
.y9e{bottom:155.565000px;}
.yac{bottom:155.595000px;}
.y8b{bottom:155.910000px;}
.y93{bottom:155.955000px;}
.y31{bottom:163.830000px;}
.yd7{bottom:165.270000px;}
.y7e{bottom:165.630000px;}
.y8a{bottom:174.630000px;}
.yb9{bottom:174.645000px;}
.y92{bottom:174.675000px;}
.y56{bottom:174.990000px;}
.yfe{bottom:176.790000px;}
.y30{bottom:184.350000px;}
.yd6{bottom:187.950000px;}
.y72{bottom:188.310000px;}
.ybd{bottom:193.350000px;}
.yb8{bottom:193.365000px;}
.y9d{bottom:193.395000px;}
.yae{bottom:193.710000px;}
.y89{bottom:193.755000px;}
.yad{bottom:195.915000px;}
.yfd{bottom:199.515000px;}
.y7d{bottom:199.875000px;}
.y2f{bottom:205.275000px;}
.y55{bottom:209.235000px;}
.yd5{bottom:210.675000px;}
.ybc{bottom:212.430000px;}
.yb7{bottom:212.445000px;}
.y9c{bottom:212.475000px;}
.yfc{bottom:222.195000px;}
.y71{bottom:222.555000px;}
.y2e{bottom:226.155000px;}
.ybb{bottom:231.150000px;}
.y9b{bottom:231.195000px;}
.yd4{bottom:233.355000px;}
.y7c{bottom:233.715000px;}
.y54{bottom:243.075000px;}
.yfb{bottom:244.875000px;}
.y2d{bottom:247.035000px;}
.yd3{bottom:256.035000px;}
.y70{bottom:256.395000px;}
.y2c{bottom:267.555000px;}
.y7b{bottom:267.915000px;}
.y53{bottom:277.275000px;}
.yd2{bottom:278.715000px;}
.y2b{bottom:288.435000px;}
.yfa{bottom:290.235000px;}
.y6f{bottom:290.595000px;}
.yd1{bottom:301.395000px;}
.y7a{bottom:301.755000px;}
.y2a{bottom:309.315000px;}
.y52{bottom:311.115000px;}
.yf9{bottom:312.915000px;}
.yd0{bottom:324.105000px;}
.y6e{bottom:324.465000px;}
.y29{bottom:330.225000px;}
.yf8{bottom:335.625000px;}
.y79{bottom:335.985000px;}
.y51{bottom:345.345000px;}
.ycf{bottom:346.785000px;}
.y28{bottom:350.745000px;}
.yf7{bottom:358.305000px;}
.y6d{bottom:358.665000px;}
.yce{bottom:369.465000px;}
.y78{bottom:369.825000px;}
.y27{bottom:371.625000px;}
.y50{bottom:379.185000px;}
.yf6{bottom:380.985000px;}
.ycd{bottom:392.145000px;}
.y26{bottom:392.505000px;}
.yf5{bottom:403.665000px;}
.y77{bottom:404.025000px;}
.y25{bottom:413.385000px;}
.ycc{bottom:414.825000px;}
.yab{bottom:420.585000px;}
.y91{bottom:425.985000px;}
.yf4{bottom:426.345000px;}
.y6c{bottom:426.705000px;}
.y24{bottom:433.905000px;}
.ybe{bottom:434.625000px;}
.ycb{bottom:437.505000px;}
.y76{bottom:437.865000px;}
.y4f{bottom:447.270000px;}
.yf3{bottom:449.070000px;}
.y23{bottom:454.830000px;}
.yba{bottom:458.430000px;}
.yca{bottom:460.230000px;}
.y6b{bottom:460.590000px;}
.y75{bottom:468.510000px;}
.yf2{bottom:471.750000px;}
.y22{bottom:475.710000px;}
.y4e{bottom:481.470000px;}
.yc9{bottom:482.910000px;}
.yf1{bottom:494.430000px;}
.y6a{bottom:494.790000px;}
.y21{bottom:496.590000px;}
.y74{bottom:496.950000px;}
.yc8{bottom:505.590000px;}
.y4d{bottom:513.510000px;}
.y20{bottom:517.110000px;}
.yc7{bottom:528.270000px;}
.y69{bottom:528.630000px;}
.y1f{bottom:538.710000px;}
.yf0{bottom:539.790000px;}
.y4c{bottom:544.470000px;}
.yc6{bottom:550.950000px;}
.y1e{bottom:561.390000px;}
.yef{bottom:562.470000px;}
.y68{bottom:562.830000px;}
.y4b{bottom:565.350000px;}
.yc5{bottom:573.660000px;}
.y1d{bottom:583.380000px;}
.yee{bottom:585.180000px;}
.y4a{bottom:586.260000px;}
.yc4{bottom:596.340000px;}
.y67{bottom:596.700000px;}
.y1c{bottom:602.100000px;}
.y49{bottom:607.140000px;}
.yed{bottom:607.860000px;}
.yc3{bottom:619.020000px;}
.y48{bottom:627.660000px;}
.y1b{bottom:630.180000px;}
.yec{bottom:630.540000px;}
.y66{bottom:630.900000px;}
.y88{bottom:631.620000px;}
.yc2{bottom:641.700000px;}
.y47{bottom:648.540000px;}
.y1a{bottom:649.260000px;}
.yeb{bottom:653.220000px;}
.ya8{bottom:663.660000px;}
.yc1{bottom:664.380000px;}
.y65{bottom:664.740000px;}
.y19{bottom:668.340000px;}
.y46{bottom:669.420000px;}
.yea{bottom:675.900000px;}
.y18{bottom:687.060000px;}
.y45{bottom:690.300000px;}
.ye9{bottom:698.580000px;}
.y64{bottom:698.970000px;}
.y17{bottom:706.170000px;}
.yc0{bottom:709.770000px;}
.y44{bottom:710.850000px;}
.yb6{bottom:720.570000px;}
.ye8{bottom:721.290000px;}
.y16{bottom:724.890000px;}
.y43{bottom:731.730000px;}
.ybf{bottom:732.450000px;}
.y63{bottom:732.810000px;}
.y15{bottom:743.970000px;}
.y42{bottom:752.610000px;}
.y14{bottom:762.690000px;}
.ye7{bottom:766.650000px;}
.y62{bottom:767.010000px;}
.y41{bottom:773.490000px;}
.y13{bottom:781.770000px;}
.ye6{bottom:789.330000px;}
.y40{bottom:794.010000px;}
.y12{bottom:800.490000px;}
.y61{bottom:800.850000px;}
.ye5{bottom:812.010000px;}
.y3f{bottom:814.890000px;}
.y11{bottom:819.570000px;}
.ye4{bottom:834.735000px;}
.y60{bottom:835.095000px;}
.y3e{bottom:835.815000px;}
.y10{bottom:847.695000px;}
.y84{bottom:855.975000px;}
.y3d{bottom:856.695000px;}
.ye3{bottom:857.415000px;}
.yf{bottom:866.775000px;}
.y5f{bottom:868.935000px;}
.y3c{bottom:877.215000px;}
.ye2{bottom:880.095000px;}
.ye{bottom:885.855000px;}
.ya3{bottom:888.375000px;}
.y3b{bottom:898.095000px;}
.ye1{bottom:902.775000px;}
.y5e{bottom:903.135000px;}
.yd{bottom:905.655000px;}
.y3a{bottom:918.975000px;}
.ye0{bottom:925.455000px;}
.yc{bottom:928.335000px;}
.y83{bottom:929.055000px;}
.y5d{bottom:936.975000px;}
.y39{bottom:939.855000px;}
.ydf{bottom:948.135000px;}
.yb{bottom:951.015000px;}
.y38{bottom:960.405000px;}
.yb4{bottom:964.005000px;}
.yde{bottom:970.845000px;}
.y5c{bottom:971.205000px;}
.ya{bottom:973.725000px;}
.y37{bottom:981.285000px;}
.y82{bottom:982.365000px;}
.ydd{bottom:993.525000px;}
.y9{bottom:996.405000px;}
.y36{bottom:1002.885000px;}
.y5b{bottom:1005.045000px;}
.ydc{bottom:1016.205000px;}
.y81{bottom:1016.565000px;}
.y8{bottom:1019.085000px;}
.y35{bottom:1024.845000px;}
.ydb{bottom:1038.885000px;}
.y5a{bottom:1039.245000px;}
.y7{bottom:1041.765000px;}
.y34{bottom:1045.725000px;}
.y80{bottom:1046.805000px;}
.yda{bottom:1061.565000px;}
.y33{bottom:1066.245000px;}
.y59{bottom:1073.085000px;}
.y7f{bottom:1075.245000px;}
.y6{bottom:1075.965000px;}
.yd9{bottom:1084.290000px;}
.y32{bottom:1087.170000px;}
.yd8{bottom:1106.970000px;}
.y58{bottom:1107.330000px;}
.y5{bottom:1108.050000px;}
.y1{bottom:1124.250000px;}
.he{height:37.800000px;}
.h2{height:50.229844px;}
.h7{height:56.880000px;}
.h5{height:57.576960px;}
.h9{height:60.690838px;}
.h3{height:63.060480px;}
.h4{height:68.544000px;}
.h6{height:72.250997px;}
.hf{height:151.230000px;}
.ha{height:189.075000px;}
.hd{height:208.110000px;}
.h8{height:208.155000px;}
.h10{height:226.830000px;}
.hc{height:226.875000px;}
.hb{height:245.595000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:80.676000px;}
.w7{width:81.756000px;}
.w4{width:88.560000px;}
.w6{width:101.196000px;}
.w3{width:113.472000px;}
.w8{width:213.225000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x26{left:6.840000px;}
.x3e{left:8.280000px;}
.x29{left:9.765000px;}
.x34{left:11.520000px;}
.x2b{left:12.600000px;}
.x31{left:13.680000px;}
.x30{left:15.480000px;}
.x25{left:16.920000px;}
.x3d{left:18.000000px;}
.x23{left:19.476000px;}
.x22{left:21.276000px;}
.x48{left:22.365000px;}
.x2c{left:23.430000px;}
.x3c{left:24.516000px;}
.x40{left:25.965000px;}
.x39{left:27.405000px;}
.x3b{left:29.205000px;}
.x44{left:30.645000px;}
.x33{left:31.725000px;}
.x42{left:32.799000px;}
.x37{left:33.870000px;}
.x38{left:35.310000px;}
.x41{left:36.765000px;}
.x4c{left:38.205000px;}
.x27{left:39.240000px;}
.x51{left:40.350000px;}
.x35{left:41.430000px;}
.x45{left:43.605000px;}
.x36{left:45.750000px;}
.x4d{left:47.565000px;}
.x32{left:50.805000px;}
.x4b{left:51.885000px;}
.x3f{left:53.319000px;}
.x4e{left:54.405000px;}
.x4f{left:57.645000px;}
.x46{left:61.245000px;}
.x2f{left:64.125000px;}
.x3a{left:65.205000px;}
.x47{left:70.965000px;}
.x49{left:80.670000px;}
.x50{left:82.485000px;}
.x43{left:84.270000px;}
.x4a{left:88.245000px;}
.x21{left:120.636000px;}
.xb{left:127.475987px;}
.x8{left:138.275987px;}
.x74{left:142.991987px;}
.x3{left:153.074987px;}
.x7d{left:175.394987px;}
.x64{left:180.434987px;}
.x1c{left:183.314987px;}
.x6{left:188.354987px;}
.xc{left:191.234987px;}
.x20{left:202.034987px;}
.x1e{left:211.394987px;}
.x6d{left:222.554987px;}
.x60{left:227.594987px;}
.x1d{left:230.834987px;}
.x76{left:232.994987px;}
.x24{left:235.545000px;}
.x53{left:245.624987px;}
.x7e{left:246.704987px;}
.x9c{left:248.504987px;}
.x58{left:258.944987px;}
.x5c{left:265.424987px;}
.x94{left:266.504987px;}
.x71{left:269.024987px;}
.x7{left:270.464987px;}
.x18{left:271.904987px;}
.x11{left:273.344987px;}
.x9b{left:274.424987px;}
.x77{left:275.864987px;}
.x61{left:280.904987px;}
.x9d{left:287.024987px;}
.x54{left:289.184987px;}
.x75{left:296.744987px;}
.xd{left:298.904987px;}
.xa{left:302.504987px;}
.x91{left:305.024987px;}
.x69{left:317.984987px;}
.x19{left:321.944987px;}
.x28{left:325.545000px;}
.x5d{left:335.669987px;}
.x87{left:337.829987px;}
.x12{left:339.629987px;}
.x6e{left:344.669987px;}
.x1f{left:349.709987px;}
.x9{left:354.389987px;}
.x92{left:360.869987px;}
.x6a{left:368.789987px;}
.x65{left:375.269987px;}
.xe{left:383.909987px;}
.x78{left:385.349987px;}
.x59{left:386.789987px;}
.x79{left:392.189987px;}
.x81{left:400.109987px;}
.x9a{left:402.989987px;}
.x2a{left:407.670000px;}
.x93{left:424.619987px;}
.x99{left:444.419987px;}
.x6f{left:446.219987px;}
.x82{left:451.979987px;}
.x86{left:454.139987px;}
.x4{left:467.819987px;}
.x7a{left:473.939987px;}
.x13{left:481.859987px;}
.x95{left:489.419987px;}
.x72{left:497.699987px;}
.x70{left:500.219987px;}
.x5{left:503.099987px;}
.x2d{left:510.300000px;}
.x56{left:512.459987px;}
.x1a{left:520.409987px;}
.x6b{left:521.489987px;}
.x97{left:524.729987px;}
.x8d{left:527.249987px;}
.x55{left:534.449987px;}
.x96{left:541.289987px;}
.x66{left:549.929987px;}
.x7b{left:551.009987px;}
.x5a{left:553.529987px;}
.x63{left:563.249987px;}
.x57{left:564.689987px;}
.x8e{left:577.289987px;}
.x6c{left:578.729987px;}
.x98{left:580.889987px;}
.x1b{left:584.129987px;}
.x2e{left:593.490000px;}
.x5b{left:601.049987px;}
.x7f{left:609.329987px;}
.x14{left:616.574987px;}
.x67{left:623.414987px;}
.x8f{left:637.814987px;}
.x68{left:670.214987px;}
.x84{left:672.014987px;}
.x7c{left:677.774987px;}
.x5e{left:683.534987px;}
.x80{left:687.494987px;}
.x89{left:694.334987px;}
.x8b{left:697.934987px;}
.x90{left:709.484987px;}
.x85{left:717.764987px;}
.x5f{left:731.804987px;}
.x88{left:735.764987px;}
.x8a{left:740.804987px;}
.x8c{left:750.884987px;}
.x83{left:754.484987px;}
.x15{left:755.564987px;}
.x17{left:758.084987px;}
.x52{left:762.764987px;}
.x62{left:785.444987px;}
.x2{left:786.524987px;}
.x10{left:788.324987px;}
.x73{left:789.404987px;}
.xf{left:791.564987px;}
.x16{left:803.489987px;}
.x1{left:808.529987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-1.402667pt;}
.lsc{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.517333pt;}
.lsf{letter-spacing:-0.404767pt;}
.ls1{letter-spacing:-0.402133pt;}
.ls2{letter-spacing:-0.386667pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.263467pt;}
.ls13{letter-spacing:-0.134922pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.005120pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.079467pt;}
.ls14{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.317333pt;}
.ls12{letter-spacing:0.337306pt;}
.lsb{letter-spacing:0.378667pt;}
.lsa{letter-spacing:0.565333pt;}
.lsd{letter-spacing:0.624000pt;}
.ls10{letter-spacing:1.152000pt;}
.ls15{letter-spacing:1.214302pt;}
.ls16{letter-spacing:1.536000pt;}
.ls11{letter-spacing:1.792000pt;}
.wse{word-spacing:-15.381165pt;}
.wsd{word-spacing:-14.976397pt;}
.wsf{word-spacing:-14.848000pt;}
.ws3{word-spacing:-14.592000pt;}
.ws8{word-spacing:-14.272000pt;}
.ws10{word-spacing:-14.016000pt;}
.ws1{word-spacing:-13.424640pt;}
.ws2{word-spacing:-13.037973pt;}
.ws0{word-spacing:-13.022507pt;}
.wsb{word-spacing:-12.920178pt;}
.ws7{word-spacing:-12.907307pt;}
.wsa{word-spacing:-12.822613pt;}
.ws9{word-spacing:-12.574613pt;}
.wsc{word-spacing:-12.336747pt;}
.ws4{word-spacing:-12.257280pt;}
.ws5{word-spacing:-11.993813pt;}
.ws6{word-spacing:0.000000pt;}
._5{margin-left:-2.135040pt;}
._0{margin-left:-1.118720pt;}
._1{width:0.949333pt;}
._3{width:1.877333pt;}
._16{width:3.286613pt;}
._4{width:4.541440pt;}
._8{width:5.483947pt;}
._7{width:6.535680pt;}
._b{width:7.588267pt;}
._f{width:8.765867pt;}
._c{width:9.715200pt;}
._a{width:10.951680pt;}
._6{width:11.904427pt;}
._1a{width:12.821333pt;}
._e{width:14.610347pt;}
._d{width:15.956480pt;}
._17{width:17.221973pt;}
._9{width:18.664960pt;}
._18{width:19.924053pt;}
._1f{width:21.354240pt;}
._10{width:22.264747pt;}
._11{width:23.220480pt;}
._1b{width:24.493227pt;}
._2a{width:25.428015pt;}
._13{width:26.437120pt;}
._12{width:27.496960pt;}
._1d{width:28.841387pt;}
._25{width:30.016000pt;}
._14{width:30.912000pt;}
._15{width:32.023467pt;}
._22{width:33.152427pt;}
._1e{width:34.401280pt;}
._1c{width:35.550720pt;}
._27{width:36.841387pt;}
._28{width:37.934507pt;}
._29{width:39.454720pt;}
._26{width:40.512000pt;}
._23{width:41.633707pt;}
._24{width:42.624000pt;}
._2f{width:43.689387pt;}
._2e{width:44.864000pt;}
._19{width:46.110720pt;}
._34{width:47.189333pt;}
._35{width:48.512000pt;}
._36{width:49.623040pt;}
._33{width:51.678720pt;}
._31{width:53.225387pt;}
._32{width:54.709333pt;}
._30{width:56.192000pt;}
._21{width:66.048000pt;}
._20{width:69.620009pt;}
._2c{width:73.098667pt;}
._2b{width:74.398720pt;}
._37{width:80.350720pt;}
._38{width:81.504000pt;}
._2d{width:92.833707pt;}
._2{width:293.022933pt;}
.fs2{font-size:53.760000pt;}
.fs4{font-size:56.667449pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:67.461249pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:3.840000pt;}
.y87{bottom:4.160000pt;}
.yb3{bottom:20.794667pt;}
.y86{bottom:20.800000pt;}
.y9a{bottom:20.840000pt;}
.ya7{bottom:37.440000pt;}
.ya1{bottom:37.480000pt;}
.y85{bottom:37.760000pt;}
.yaa{bottom:37.786667pt;}
.y99{bottom:37.800000pt;}
.y4{bottom:51.200000pt;}
.y90{bottom:54.400000pt;}
.ya9{bottom:54.426667pt;}
.y98{bottom:54.440000pt;}
.y3{bottom:69.792000pt;}
.yb5{bottom:71.040000pt;}
.ya6{bottom:71.066667pt;}
.ya0{bottom:71.080000pt;}
.yb1{bottom:71.360000pt;}
.y8f{bottom:71.386667pt;}
.y97{bottom:71.400000pt;}
.yb0{bottom:88.000000pt;}
.y8e{bottom:88.026667pt;}
.y96{bottom:88.040000pt;}
.y2{bottom:99.872000pt;}
.ya5{bottom:104.666667pt;}
.y9f{bottom:104.680000pt;}
.yaf{bottom:104.960000pt;}
.y8d{bottom:104.986667pt;}
.y95{bottom:105.000000pt;}
.y8c{bottom:121.626667pt;}
.y94{bottom:121.640000pt;}
.y57{bottom:125.472000pt;}
.yb2{bottom:125.792000pt;}
.y73{bottom:137.306667pt;}
.ya4{bottom:138.266667pt;}
.y9e{bottom:138.280000pt;}
.yac{bottom:138.306667pt;}
.y8b{bottom:138.586667pt;}
.y93{bottom:138.626667pt;}
.y31{bottom:145.626667pt;}
.yd7{bottom:146.906667pt;}
.y7e{bottom:147.226667pt;}
.y8a{bottom:155.226667pt;}
.yb9{bottom:155.240000pt;}
.y92{bottom:155.266667pt;}
.y56{bottom:155.546667pt;}
.yfe{bottom:157.146667pt;}
.y30{bottom:163.866667pt;}
.yd6{bottom:167.066667pt;}
.y72{bottom:167.386667pt;}
.ybd{bottom:171.866667pt;}
.yb8{bottom:171.880000pt;}
.y9d{bottom:171.906667pt;}
.yae{bottom:172.186667pt;}
.y89{bottom:172.226667pt;}
.yad{bottom:174.146667pt;}
.yfd{bottom:177.346667pt;}
.y7d{bottom:177.666667pt;}
.y2f{bottom:182.466667pt;}
.y55{bottom:185.986667pt;}
.yd5{bottom:187.266667pt;}
.ybc{bottom:188.826667pt;}
.yb7{bottom:188.840000pt;}
.y9c{bottom:188.866667pt;}
.yfc{bottom:197.506667pt;}
.y71{bottom:197.826667pt;}
.y2e{bottom:201.026667pt;}
.ybb{bottom:205.466667pt;}
.y9b{bottom:205.506667pt;}
.yd4{bottom:207.426667pt;}
.y7c{bottom:207.746667pt;}
.y54{bottom:216.066667pt;}
.yfb{bottom:217.666667pt;}
.y2d{bottom:219.586667pt;}
.yd3{bottom:227.586667pt;}
.y70{bottom:227.906667pt;}
.y2c{bottom:237.826667pt;}
.y7b{bottom:238.146667pt;}
.y53{bottom:246.466667pt;}
.yd2{bottom:247.746667pt;}
.y2b{bottom:256.386667pt;}
.yfa{bottom:257.986667pt;}
.y6f{bottom:258.306667pt;}
.yd1{bottom:267.906667pt;}
.y7a{bottom:268.226667pt;}
.y2a{bottom:274.946667pt;}
.y52{bottom:276.546667pt;}
.yf9{bottom:278.146667pt;}
.yd0{bottom:288.093333pt;}
.y6e{bottom:288.413333pt;}
.y29{bottom:293.533333pt;}
.yf8{bottom:298.333333pt;}
.y79{bottom:298.653333pt;}
.y51{bottom:306.973333pt;}
.ycf{bottom:308.253333pt;}
.y28{bottom:311.773333pt;}
.yf7{bottom:318.493333pt;}
.y6d{bottom:318.813333pt;}
.yce{bottom:328.413333pt;}
.y78{bottom:328.733333pt;}
.y27{bottom:330.333333pt;}
.y50{bottom:337.053333pt;}
.yf6{bottom:338.653333pt;}
.ycd{bottom:348.573333pt;}
.y26{bottom:348.893333pt;}
.yf5{bottom:358.813333pt;}
.y77{bottom:359.133333pt;}
.y25{bottom:367.453333pt;}
.ycc{bottom:368.733333pt;}
.yab{bottom:373.853333pt;}
.y91{bottom:378.653333pt;}
.yf4{bottom:378.973333pt;}
.y6c{bottom:379.293333pt;}
.y24{bottom:385.693333pt;}
.ybe{bottom:386.333333pt;}
.ycb{bottom:388.893333pt;}
.y76{bottom:389.213333pt;}
.y4f{bottom:397.573333pt;}
.yf3{bottom:399.173333pt;}
.y23{bottom:404.293333pt;}
.yba{bottom:407.493333pt;}
.yca{bottom:409.093333pt;}
.y6b{bottom:409.413333pt;}
.y75{bottom:416.453333pt;}
.yf2{bottom:419.333333pt;}
.y22{bottom:422.853333pt;}
.y4e{bottom:427.973333pt;}
.yc9{bottom:429.253333pt;}
.yf1{bottom:439.493333pt;}
.y6a{bottom:439.813333pt;}
.y21{bottom:441.413333pt;}
.y74{bottom:441.733333pt;}
.yc8{bottom:449.413333pt;}
.y4d{bottom:456.453333pt;}
.y20{bottom:459.653333pt;}
.yc7{bottom:469.573333pt;}
.y69{bottom:469.893333pt;}
.y1f{bottom:478.853333pt;}
.yf0{bottom:479.813333pt;}
.y4c{bottom:483.973333pt;}
.yc6{bottom:489.733333pt;}
.y1e{bottom:499.013333pt;}
.yef{bottom:499.973333pt;}
.y68{bottom:500.293333pt;}
.y4b{bottom:502.533333pt;}
.yc5{bottom:509.920000pt;}
.y1d{bottom:518.560000pt;}
.yee{bottom:520.160000pt;}
.y4a{bottom:521.120000pt;}
.yc4{bottom:530.080000pt;}
.y67{bottom:530.400000pt;}
.y1c{bottom:535.200000pt;}
.y49{bottom:539.680000pt;}
.yed{bottom:540.320000pt;}
.yc3{bottom:550.240000pt;}
.y48{bottom:557.920000pt;}
.y1b{bottom:560.160000pt;}
.yec{bottom:560.480000pt;}
.y66{bottom:560.800000pt;}
.y88{bottom:561.440000pt;}
.yc2{bottom:570.400000pt;}
.y47{bottom:576.480000pt;}
.y1a{bottom:577.120000pt;}
.yeb{bottom:580.640000pt;}
.ya8{bottom:589.920000pt;}
.yc1{bottom:590.560000pt;}
.y65{bottom:590.880000pt;}
.y19{bottom:594.080000pt;}
.y46{bottom:595.040000pt;}
.yea{bottom:600.800000pt;}
.y18{bottom:610.720000pt;}
.y45{bottom:613.600000pt;}
.ye9{bottom:620.960000pt;}
.y64{bottom:621.306667pt;}
.y17{bottom:627.706667pt;}
.yc0{bottom:630.906667pt;}
.y44{bottom:631.866667pt;}
.yb6{bottom:640.506667pt;}
.ye8{bottom:641.146667pt;}
.y16{bottom:644.346667pt;}
.y43{bottom:650.426667pt;}
.ybf{bottom:651.066667pt;}
.y63{bottom:651.386667pt;}
.y15{bottom:661.306667pt;}
.y42{bottom:668.986667pt;}
.y14{bottom:677.946667pt;}
.ye7{bottom:681.466667pt;}
.y62{bottom:681.786667pt;}
.y41{bottom:687.546667pt;}
.y13{bottom:694.906667pt;}
.ye6{bottom:701.626667pt;}
.y40{bottom:705.786667pt;}
.y12{bottom:711.546667pt;}
.y61{bottom:711.866667pt;}
.ye5{bottom:721.786667pt;}
.y3f{bottom:724.346667pt;}
.y11{bottom:728.506667pt;}
.ye4{bottom:741.986667pt;}
.y60{bottom:742.306667pt;}
.y3e{bottom:742.946667pt;}
.y10{bottom:753.506667pt;}
.y84{bottom:760.866667pt;}
.y3d{bottom:761.506667pt;}
.ye3{bottom:762.146667pt;}
.yf{bottom:770.466667pt;}
.y5f{bottom:772.386667pt;}
.y3c{bottom:779.746667pt;}
.ye2{bottom:782.306667pt;}
.ye{bottom:787.426667pt;}
.ya3{bottom:789.666667pt;}
.y3b{bottom:798.306667pt;}
.ye1{bottom:802.466667pt;}
.y5e{bottom:802.786667pt;}
.yd{bottom:805.026667pt;}
.y3a{bottom:816.866667pt;}
.ye0{bottom:822.626667pt;}
.yc{bottom:825.186667pt;}
.y83{bottom:825.826667pt;}
.y5d{bottom:832.866667pt;}
.y39{bottom:835.426667pt;}
.ydf{bottom:842.786667pt;}
.yb{bottom:845.346667pt;}
.y38{bottom:853.693333pt;}
.yb4{bottom:856.893333pt;}
.yde{bottom:862.973333pt;}
.y5c{bottom:863.293333pt;}
.ya{bottom:865.533333pt;}
.y37{bottom:872.253333pt;}
.y82{bottom:873.213333pt;}
.ydd{bottom:883.133333pt;}
.y9{bottom:885.693333pt;}
.y36{bottom:891.453333pt;}
.y5b{bottom:893.373333pt;}
.ydc{bottom:903.293333pt;}
.y81{bottom:903.613333pt;}
.y8{bottom:905.853333pt;}
.y35{bottom:910.973333pt;}
.ydb{bottom:923.453333pt;}
.y5a{bottom:923.773333pt;}
.y7{bottom:926.013333pt;}
.y34{bottom:929.533333pt;}
.y80{bottom:930.493333pt;}
.yda{bottom:943.613333pt;}
.y33{bottom:947.773333pt;}
.y59{bottom:953.853333pt;}
.y7f{bottom:955.773333pt;}
.y6{bottom:956.413333pt;}
.yd9{bottom:963.813333pt;}
.y32{bottom:966.373333pt;}
.yd8{bottom:983.973333pt;}
.y58{bottom:984.293333pt;}
.y5{bottom:984.933333pt;}
.y1{bottom:999.333333pt;}
.he{height:33.600000pt;}
.h2{height:44.648750pt;}
.h7{height:50.560000pt;}
.h5{height:51.179520pt;}
.h9{height:53.947411pt;}
.h3{height:56.053760pt;}
.h4{height:60.928000pt;}
.h6{height:64.223109pt;}
.hf{height:134.426667pt;}
.ha{height:168.066667pt;}
.hd{height:184.986667pt;}
.h8{height:185.026667pt;}
.h10{height:201.626667pt;}
.hc{height:201.666667pt;}
.hb{height:218.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:71.712000pt;}
.w7{width:72.672000pt;}
.w4{width:78.720000pt;}
.w6{width:89.952000pt;}
.w3{width:100.864000pt;}
.w8{width:189.533333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x26{left:6.080000pt;}
.x3e{left:7.360000pt;}
.x29{left:8.680000pt;}
.x34{left:10.240000pt;}
.x2b{left:11.200000pt;}
.x31{left:12.160000pt;}
.x30{left:13.760000pt;}
.x25{left:15.040000pt;}
.x3d{left:16.000000pt;}
.x23{left:17.312000pt;}
.x22{left:18.912000pt;}
.x48{left:19.880000pt;}
.x2c{left:20.826667pt;}
.x3c{left:21.792000pt;}
.x40{left:23.080000pt;}
.x39{left:24.360000pt;}
.x3b{left:25.960000pt;}
.x44{left:27.240000pt;}
.x33{left:28.200000pt;}
.x42{left:29.154667pt;}
.x37{left:30.106667pt;}
.x38{left:31.386667pt;}
.x41{left:32.680000pt;}
.x4c{left:33.960000pt;}
.x27{left:34.880000pt;}
.x51{left:35.866667pt;}
.x35{left:36.826667pt;}
.x45{left:38.760000pt;}
.x36{left:40.666667pt;}
.x4d{left:42.280000pt;}
.x32{left:45.160000pt;}
.x4b{left:46.120000pt;}
.x3f{left:47.394667pt;}
.x4e{left:48.360000pt;}
.x4f{left:51.240000pt;}
.x46{left:54.440000pt;}
.x2f{left:57.000000pt;}
.x3a{left:57.960000pt;}
.x47{left:63.080000pt;}
.x49{left:71.706667pt;}
.x50{left:73.320000pt;}
.x43{left:74.906667pt;}
.x4a{left:78.440000pt;}
.x21{left:107.232000pt;}
.xb{left:113.311988pt;}
.x8{left:122.911988pt;}
.x74{left:127.103988pt;}
.x3{left:136.066655pt;}
.x7d{left:155.906655pt;}
.x64{left:160.386655pt;}
.x1c{left:162.946655pt;}
.x6{left:167.426655pt;}
.xc{left:169.986655pt;}
.x20{left:179.586655pt;}
.x1e{left:187.906655pt;}
.x6d{left:197.826655pt;}
.x60{left:202.306655pt;}
.x1d{left:205.186655pt;}
.x76{left:207.106655pt;}
.x24{left:209.373333pt;}
.x53{left:218.333322pt;}
.x7e{left:219.293322pt;}
.x9c{left:220.893322pt;}
.x58{left:230.173322pt;}
.x5c{left:235.933322pt;}
.x94{left:236.893322pt;}
.x71{left:239.133322pt;}
.x7{left:240.413322pt;}
.x18{left:241.693322pt;}
.x11{left:242.973322pt;}
.x9b{left:243.933322pt;}
.x77{left:245.213322pt;}
.x61{left:249.693322pt;}
.x9d{left:255.133322pt;}
.x54{left:257.053322pt;}
.x75{left:263.773322pt;}
.xd{left:265.693322pt;}
.xa{left:268.893322pt;}
.x91{left:271.133322pt;}
.x69{left:282.653322pt;}
.x19{left:286.173322pt;}
.x28{left:289.373333pt;}
.x5d{left:298.373322pt;}
.x87{left:300.293322pt;}
.x12{left:301.893322pt;}
.x6e{left:306.373322pt;}
.x1f{left:310.853322pt;}
.x9{left:315.013322pt;}
.x92{left:320.773322pt;}
.x6a{left:327.813322pt;}
.x65{left:333.573322pt;}
.xe{left:341.253322pt;}
.x78{left:342.533322pt;}
.x59{left:343.813322pt;}
.x79{left:348.613322pt;}
.x81{left:355.653322pt;}
.x9a{left:358.213322pt;}
.x2a{left:362.373333pt;}
.x93{left:377.439988pt;}
.x99{left:395.039988pt;}
.x6f{left:396.639988pt;}
.x82{left:401.759988pt;}
.x86{left:403.679988pt;}
.x4{left:415.839988pt;}
.x7a{left:421.279988pt;}
.x13{left:428.319988pt;}
.x95{left:435.039988pt;}
.x72{left:442.399988pt;}
.x70{left:444.639988pt;}
.x5{left:447.199988pt;}
.x2d{left:453.600000pt;}
.x56{left:455.519988pt;}
.x1a{left:462.586655pt;}
.x6b{left:463.546655pt;}
.x97{left:466.426655pt;}
.x8d{left:468.666655pt;}
.x55{left:475.066655pt;}
.x96{left:481.146655pt;}
.x66{left:488.826655pt;}
.x7b{left:489.786655pt;}
.x5a{left:492.026655pt;}
.x63{left:500.666655pt;}
.x57{left:501.946655pt;}
.x8e{left:513.146655pt;}
.x6c{left:514.426655pt;}
.x98{left:516.346655pt;}
.x1b{left:519.226655pt;}
.x2e{left:527.546667pt;}
.x5b{left:534.266655pt;}
.x7f{left:541.626655pt;}
.x14{left:548.066655pt;}
.x67{left:554.146655pt;}
.x8f{left:566.946655pt;}
.x68{left:595.746655pt;}
.x84{left:597.346655pt;}
.x7c{left:602.466655pt;}
.x5e{left:607.586655pt;}
.x80{left:611.106655pt;}
.x89{left:617.186655pt;}
.x8b{left:620.386655pt;}
.x90{left:630.653322pt;}
.x85{left:638.013322pt;}
.x5f{left:650.493322pt;}
.x88{left:654.013322pt;}
.x8a{left:658.493322pt;}
.x8c{left:667.453322pt;}
.x83{left:670.653322pt;}
.x15{left:671.613322pt;}
.x17{left:673.853322pt;}
.x52{left:678.013322pt;}
.x62{left:698.173322pt;}
.x2{left:699.133322pt;}
.x10{left:700.733322pt;}
.x73{left:701.693322pt;}
.xf{left:703.613322pt;}
.x16{left:714.213322pt;}
.x1{left:718.693322pt;}
}




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