
    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_6512f0121f5747e74fbd5dd9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2672cede3d9e3974be3bc979.woff')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f6a1603a559a392a94d16e2b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f7c81c5e401f90e4ece4836f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a8c0a65fd4d913b6e4f52575.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_52c9a1b97de4ef2cf99a56f7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_dd09c1ec69ad0c7a5c238bea.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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;}
.ls35{letter-spacing:-1.458000px;}
.ls1e{letter-spacing:-0.900000px;}
.ls17{letter-spacing:-0.774000px;}
.ls2d{letter-spacing:-0.750000px;}
.ls2{letter-spacing:-0.738000px;}
.lsd{letter-spacing:-0.690000px;}
.ls23{letter-spacing:-0.684000px;}
.ls14{letter-spacing:-0.630000px;}
.ls15{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.378600px;}
.ls5{letter-spacing:-0.369600px;}
.ls12{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.341400px;}
.ls21{letter-spacing:-0.259800px;}
.ls10{letter-spacing:-0.180000px;}
.ls36{letter-spacing:-0.114000px;}
.ls18{letter-spacing:-0.053280px;}
.ls38{letter-spacing:-0.038160px;}
.ls1f{letter-spacing:-0.037440px;}
.ls37{letter-spacing:-0.028080px;}
.ls3{letter-spacing:-0.018720px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028080px;}
.lsc{letter-spacing:0.030960px;}
.ls25{letter-spacing:0.037440px;}
.ls11{letter-spacing:0.091200px;}
.ls1c{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.181440px;}
.lsa{letter-spacing:0.241200px;}
.ls20{letter-spacing:0.258000px;}
.lsf{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.306600px;}
.ls1b{letter-spacing:0.336000px;}
.ls24{letter-spacing:0.341280px;}
.lse{letter-spacing:0.341400px;}
.ls6{letter-spacing:0.350400px;}
.ls1{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.378600px;}
.ls27{letter-spacing:0.485280px;}
.lsb{letter-spacing:0.504000px;}
.ls2f{letter-spacing:0.522720px;}
.ls2c{letter-spacing:0.540000px;}
.ls30{letter-spacing:1.980000px;}
.ls1d{letter-spacing:2.340000px;}
.ls31{letter-spacing:2.700000px;}
.ls32{letter-spacing:4.860000px;}
.ls2e{letter-spacing:7.740000px;}
.ls1a{letter-spacing:8.460000px;}
.ls19{letter-spacing:11.340000px;}
.ls28{letter-spacing:13.500000px;}
.ls2b{letter-spacing:14.220000px;}
.ls22{letter-spacing:14.940000px;}
.ls33{letter-spacing:19.980000px;}
.ls9{letter-spacing:20.700000px;}
.ls2a{letter-spacing:24.300000px;}
.ls29{letter-spacing:25.020000px;}
.ls34{letter-spacing:34.380000px;}
.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;}
}
.wsc{word-spacing:-84.331200px;}
.ws8{word-spacing:-84.270960px;}
.wsb{word-spacing:-84.240000px;}
.wsf{word-spacing:-83.610000px;}
.ws9{word-spacing:-83.550000px;}
.ws0{word-spacing:-24.300000px;}
.ws5{word-spacing:-21.438600px;}
.ws4{word-spacing:-21.420000px;}
.wsa{word-spacing:-21.401400px;}
.ws18{word-spacing:-21.097440px;}
.ws1{word-spacing:-21.060000px;}
.ws3{word-spacing:-21.041280px;}
.ws1c{word-spacing:-21.031920px;}
.ws13{word-spacing:-21.022560px;}
.ws1d{word-spacing:-21.021840px;}
.ws1b{word-spacing:-20.946000px;}
.ws6{word-spacing:-20.718600px;}
.wsd{word-spacing:-20.700000px;}
.wse{word-spacing:-20.681400px;}
.ws17{word-spacing:-20.376000px;}
.ws2{word-spacing:-20.322000px;}
.ws19{word-spacing:-20.310000px;}
.ws1a{word-spacing:-19.602000px;}
.ws12{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.246600px;}
.ws14{word-spacing:-15.198000px;}
.ws10{word-spacing:-14.940000px;}
.ws16{word-spacing:-14.680200px;}
.ws15{word-spacing:-14.580000px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-5.981040px;}
._4{margin-left:-4.535280px;}
._28{margin-left:-3.509760px;}
._11{margin-left:-2.442960px;}
._1{margin-left:-1.158720px;}
._2{width:1.038720px;}
._0{width:2.208000px;}
._7{width:3.369600px;}
._8{width:4.380480px;}
._9{width:5.694960px;}
._c{width:6.920400px;}
._16{width:8.255520px;}
._1b{width:9.856080px;}
._19{width:11.035440px;}
._1a{width:12.893040px;}
._5{width:13.983840px;}
._f{width:15.188400px;}
._6{width:16.337760px;}
._e{width:17.690400px;}
._a{width:19.038240px;}
._2c{width:20.045520px;}
._1c{width:22.308000px;}
._10{width:23.313840px;}
._d{width:24.429600px;}
._12{width:26.367120px;}
._18{width:28.051920px;}
._17{width:29.884560px;}
._1f{width:31.337280px;}
._20{width:32.372880px;}
._23{width:33.675360px;}
._22{width:34.766400px;}
._14{width:36.286800px;}
._2d{width:37.471680px;}
._24{width:39.424320px;}
._1d{width:40.519440px;}
._2b{width:41.614560px;}
._1e{width:42.923040px;}
._13{width:45.152640px;}
._15{width:46.837440px;}
._27{width:50.965200px;}
._25{width:52.765920px;}
._26{width:54.353040px;}
._b{width:55.766880px;}
._29{width:77.585040px;}
._2a{width:78.748560px;}
._21{width:104.284800px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc4{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.ya{bottom:5.220000px;}
.y9{bottom:7.380000px;}
.y4{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.y2{bottom:24.660000px;}
.y8{bottom:44.640000px;}
.ya0{bottom:88.236000px;}
.y77{bottom:89.496000px;}
.ybf{bottom:93.456000px;}
.y76{bottom:94.716000px;}
.ye3{bottom:98.856000px;}
.y9f{bottom:105.336000px;}
.y9e{bottom:110.556000px;}
.y75{bottom:112.356000px;}
.y9d{bottom:122.616000px;}
.yc1{bottom:122.976000px;}
.yb2{bottom:123.876000px;}
.ye2{bottom:126.576000px;}
.y9c{bottom:127.836000px;}
.y74{bottom:129.636000px;}
.ybe{bottom:136.116000px;}
.y9b{bottom:139.896000px;}
.yb5{bottom:141.156000px;}
.ybd{bottom:143.676000px;}
.y73{bottom:146.736000px;}
.yc0{bottom:150.870000px;}
.y72{bottom:151.950000px;}
.ye1{bottom:154.470000px;}
.y2f{bottom:157.890000px;}
.y9a{bottom:158.430000px;}
.ybc{bottom:158.970000px;}
.y4d{bottom:163.110000px;}
.ybb{bottom:164.190000px;}
.y71{bottom:165.270000px;}
.y99{bottom:165.990000px;}
.yba{bottom:177.510000px;}
.yb1{bottom:178.590000px;}
.ye0{bottom:182.190000px;}
.y98{bottom:182.550000px;}
.y2e{bottom:185.610000px;}
.y4c{bottom:191.010000px;}
.y70{bottom:199.290000px;}
.yb0{bottom:206.310000px;}
.ydf{bottom:209.910000px;}
.y2d{bottom:213.330000px;}
.y97{bottom:213.510000px;}
.yb9{bottom:213.870000px;}
.y4b{bottom:219.810000px;}
.y6f{bottom:227.730000px;}
.yaf{bottom:234.030000px;}
.yde{bottom:237.630000px;}
.y2c{bottom:241.230000px;}
.y96{bottom:241.410000px;}
.y4a{bottom:249.330000px;}
.y6e{bottom:256.530000px;}
.yae{bottom:261.930000px;}
.ydd{bottom:265.530000px;}
.y2b{bottom:268.950000px;}
.y95{bottom:269.130000px;}
.y49{bottom:277.590000px;}
.y6d{bottom:286.050000px;}
.yad{bottom:289.650000px;}
.ydc{bottom:293.250000px;}
.y2a{bottom:296.670000px;}
.y94{bottom:296.850000px;}
.yb4{bottom:297.210000px;}
.y48{bottom:306.570000px;}
.y6c{bottom:314.310000px;}
.yac{bottom:317.370000px;}
.ydb{bottom:320.970000px;}
.y29{bottom:324.390000px;}
.y93{bottom:324.570000px;}
.y47{bottom:336.090000px;}
.y6b{bottom:343.335000px;}
.yab{bottom:345.135000px;}
.yda{bottom:348.915000px;}
.y28{bottom:352.335000px;}
.y92{bottom:352.515000px;}
.y46{bottom:365.655000px;}
.y6a{bottom:371.775000px;}
.yaa{bottom:373.035000px;}
.yd9{bottom:376.635000px;}
.y27{bottom:380.055000px;}
.y90{bottom:380.235000px;}
.y91{bottom:387.795000px;}
.y45{bottom:393.915000px;}
.y69{bottom:400.575000px;}
.ya9{bottom:400.755000px;}
.yd8{bottom:404.355000px;}
.y26{bottom:407.775000px;}
.y8f{bottom:407.955000px;}
.y44{bottom:422.895000px;}
.ya8{bottom:428.475000px;}
.y68{bottom:430.095000px;}
.yd7{bottom:432.075000px;}
.y25{bottom:435.675000px;}
.y8e{bottom:435.855000px;}
.y43{bottom:452.415000px;}
.ya7{bottom:456.375000px;}
.y67{bottom:459.615000px;}
.yd6{bottom:459.975000px;}
.y24{bottom:463.395000px;}
.y8d{bottom:463.575000px;}
.y42{bottom:480.675000px;}
.ya6{bottom:484.095000px;}
.yd5{bottom:487.695000px;}
.y66{bottom:489.135000px;}
.y23{bottom:491.115000px;}
.y8c{bottom:491.295000px;}
.yb8{bottom:491.655000px;}
.y41{bottom:508.395000px;}
.ya5{bottom:511.815000px;}
.yd4{bottom:515.415000px;}
.y65{bottom:518.475000px;}
.y22{bottom:518.835000px;}
.y8b{bottom:519.015000px;}
.y40{bottom:536.115000px;}
.ya4{bottom:539.535000px;}
.yd3{bottom:543.315000px;}
.y21{bottom:546.735000px;}
.y64{bottom:546.915000px;}
.y3f{bottom:565.095000px;}
.ya3{bottom:567.435000px;}
.yd2{bottom:571.035000px;}
.y20{bottom:574.455000px;}
.y8a{bottom:574.635000px;}
.y63{bottom:575.715000px;}
.y3e{bottom:594.615000px;}
.ya1{bottom:595.155000px;}
.yd1{bottom:598.755000px;}
.y1f{bottom:602.175000px;}
.y89{bottom:602.355000px;}
.ya2{bottom:602.715000px;}
.y62{bottom:604.185000px;}
.y3d{bottom:622.905000px;}
.yd0{bottom:626.505000px;}
.y1e{bottom:630.105000px;}
.y87{bottom:630.285000px;}
.yb3{bottom:630.465000px;}
.y61{bottom:633.165000px;}
.y88{bottom:637.845000px;}
.y3c{bottom:650.805000px;}
.ycf{bottom:654.405000px;}
.y1d{bottom:657.825000px;}
.y86{bottom:659.085000px;}
.y60{bottom:661.425000px;}
.y3b{bottom:678.525000px;}
.yce{bottom:682.125000px;}
.y1c{bottom:685.545000px;}
.y85{bottom:688.605000px;}
.y5f{bottom:689.145000px;}
.y3a{bottom:706.245000px;}
.ycd{bottom:709.845000px;}
.y1b{bottom:713.265000px;}
.y5e{bottom:718.125000px;}
.y39{bottom:733.965000px;}
.ycc{bottom:737.745000px;}
.y1a{bottom:741.165000px;}
.y84{bottom:746.385000px;}
.y5d{bottom:747.645000px;}
.y38{bottom:761.865000px;}
.ycb{bottom:765.465000px;}
.y19{bottom:768.885000px;}
.y83{bottom:774.105000px;}
.y5c{bottom:776.985000px;}
.y37{bottom:789.585000px;}
.yca{bottom:793.185000px;}
.y18{bottom:796.605000px;}
.y82{bottom:803.085000px;}
.y5b{bottom:806.505000px;}
.y36{bottom:817.305000px;}
.yc9{bottom:820.905000px;}
.y17{bottom:824.505000px;}
.yb7{bottom:824.865000px;}
.y81{bottom:831.345000px;}
.y5a{bottom:834.765000px;}
.y35{bottom:845.025000px;}
.yc8{bottom:848.805000px;}
.y16{bottom:852.225000px;}
.y80{bottom:860.325000px;}
.y59{bottom:862.665000px;}
.y34{bottom:872.970000px;}
.yc7{bottom:876.570000px;}
.y15{bottom:879.990000px;}
.y7f{bottom:889.890000px;}
.y58{bottom:891.690000px;}
.y33{bottom:900.690000px;}
.yc6{bottom:904.290000px;}
.y14{bottom:907.710000px;}
.y7e{bottom:919.410000px;}
.y56{bottom:919.950000px;}
.y57{bottom:927.510000px;}
.y32{bottom:928.410000px;}
.yc5{bottom:932.010000px;}
.y13{bottom:935.610000px;}
.y55{bottom:948.930000px;}
.y31{bottom:956.310000px;}
.yc4{bottom:959.910000px;}
.y12{bottom:963.330000px;}
.y54{bottom:977.190000px;}
.y7d{bottom:978.270000px;}
.y30{bottom:984.030000px;}
.y11{bottom:986.910000px;}
.yc3{bottom:987.630000px;}
.yb6{bottom:991.590000px;}
.y53{bottom:1006.170000px;}
.y7c{bottom:1007.790000px;}
.y10{bottom:1011.750000px;}
.yc2{bottom:1015.350000px;}
.y52{bottom:1035.510000px;}
.y7a{bottom:1037.310000px;}
.yf{bottom:1039.470000px;}
.y7b{bottom:1044.870000px;}
.y51{bottom:1063.950000px;}
.y79{bottom:1065.570000px;}
.ye{bottom:1067.370000px;}
.y50{bottom:1092.930000px;}
.y78{bottom:1094.550000px;}
.yd{bottom:1095.090000px;}
.y4e{bottom:1122.270000px;}
.yc{bottom:1122.810000px;}
.y4f{bottom:1129.830000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h7{height:27.576000px;}
.hf{height:38.158594px;}
.h2{height:41.400000px;}
.he{height:52.998047px;}
.h4{height:53.709961px;}
.h10{height:58.651172px;}
.hc{height:59.066719px;}
.hd{height:64.043789px;}
.h6{height:66.757500px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.ha{height:82.676953px;}
.hb{height:84.898125px;}
.h9{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w7{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.640000px;}
.xa{left:19.800000px;}
.x8{left:25.380000px;}
.x1{left:31.860000px;}
.x2{left:44.460000px;}
.x5{left:59.970000px;}
.x7{left:84.959987px;}
.xd{left:90.395987px;}
.x20{left:91.835987px;}
.xc{left:96.875987px;}
.xb{left:127.475987px;}
.x29{left:228.989973px;}
.x2a{left:235.829987px;}
.x11{left:241.949987px;}
.x1e{left:247.889973px;}
.x1f{left:254.729987px;}
.x18{left:262.469973px;}
.x19{left:269.309987px;}
.x1c{left:278.714973px;}
.x12{left:283.574987px;}
.x1d{left:285.554987px;}
.x10{left:290.954987px;}
.xf{left:300.494987px;}
.x16{left:331.814973px;}
.x17{left:338.654987px;}
.x23{left:353.054973px;}
.x24{left:359.894987px;}
.x13{left:368.894987px;}
.x15{left:375.914987px;}
.x1a{left:387.254973px;}
.x14{left:389.234987px;}
.x1b{left:394.094987px;}
.xe{left:446.474987px;}
.x27{left:463.214973px;}
.x28{left:470.084987px;}
.x3{left:530.205000px;}
.x2d{left:697.829973px;}
.x2e{left:704.669987px;}
.x21{left:705.929973px;}
.x22{left:712.769987px;}
.x25{left:722.669973px;}
.x26{left:729.509987px;}
.x4{left:792.690000px;}
.x9{left:797.550000px;}
.x2b{left:801.149973px;}
.x2c{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls35{letter-spacing:-1.296000pt;}
.ls1e{letter-spacing:-0.800000pt;}
.ls17{letter-spacing:-0.688000pt;}
.ls2d{letter-spacing:-0.666667pt;}
.ls2{letter-spacing:-0.656000pt;}
.lsd{letter-spacing:-0.613333pt;}
.ls23{letter-spacing:-0.608000pt;}
.ls14{letter-spacing:-0.560000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.336533pt;}
.ls5{letter-spacing:-0.328533pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.303467pt;}
.ls21{letter-spacing:-0.230933pt;}
.ls10{letter-spacing:-0.160000pt;}
.ls36{letter-spacing:-0.101333pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls38{letter-spacing:-0.033920pt;}
.ls1f{letter-spacing:-0.033280pt;}
.ls37{letter-spacing:-0.024960pt;}
.ls3{letter-spacing:-0.016640pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024960pt;}
.lsc{letter-spacing:0.027520pt;}
.ls25{letter-spacing:0.033280pt;}
.ls11{letter-spacing:0.081067pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.161280pt;}
.lsa{letter-spacing:0.214400pt;}
.ls20{letter-spacing:0.229333pt;}
.lsf{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.272533pt;}
.ls1b{letter-spacing:0.298667pt;}
.ls24{letter-spacing:0.303360pt;}
.lse{letter-spacing:0.303467pt;}
.ls6{letter-spacing:0.311467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.336533pt;}
.ls27{letter-spacing:0.431360pt;}
.lsb{letter-spacing:0.448000pt;}
.ls2f{letter-spacing:0.464640pt;}
.ls2c{letter-spacing:0.480000pt;}
.ls30{letter-spacing:1.760000pt;}
.ls1d{letter-spacing:2.080000pt;}
.ls31{letter-spacing:2.400000pt;}
.ls32{letter-spacing:4.320000pt;}
.ls2e{letter-spacing:6.880000pt;}
.ls1a{letter-spacing:7.520000pt;}
.ls19{letter-spacing:10.080000pt;}
.ls28{letter-spacing:12.000000pt;}
.ls2b{letter-spacing:12.640000pt;}
.ls22{letter-spacing:13.280000pt;}
.ls33{letter-spacing:17.760000pt;}
.ls9{letter-spacing:18.400000pt;}
.ls2a{letter-spacing:21.600000pt;}
.ls29{letter-spacing:22.240000pt;}
.ls34{letter-spacing:30.560000pt;}
.wsc{word-spacing:-74.961067pt;}
.ws8{word-spacing:-74.907520pt;}
.wsb{word-spacing:-74.880000pt;}
.wsf{word-spacing:-74.320000pt;}
.ws9{word-spacing:-74.266667pt;}
.ws0{word-spacing:-21.600000pt;}
.ws5{word-spacing:-19.056533pt;}
.ws4{word-spacing:-19.040000pt;}
.wsa{word-spacing:-19.023467pt;}
.ws18{word-spacing:-18.753280pt;}
.ws1{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.703360pt;}
.ws1c{word-spacing:-18.695040pt;}
.ws13{word-spacing:-18.686720pt;}
.ws1d{word-spacing:-18.686080pt;}
.ws1b{word-spacing:-18.618667pt;}
.ws6{word-spacing:-18.416533pt;}
.wsd{word-spacing:-18.400000pt;}
.wse{word-spacing:-18.383467pt;}
.ws17{word-spacing:-18.112000pt;}
.ws2{word-spacing:-18.064000pt;}
.ws19{word-spacing:-18.053333pt;}
.ws1a{word-spacing:-17.424000pt;}
.ws12{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.552533pt;}
.ws14{word-spacing:-13.509333pt;}
.ws10{word-spacing:-13.280000pt;}
.ws16{word-spacing:-13.049067pt;}
.ws15{word-spacing:-12.960000pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-5.316480pt;}
._4{margin-left:-4.031360pt;}
._28{margin-left:-3.119787pt;}
._11{margin-left:-2.171520pt;}
._1{margin-left:-1.029973pt;}
._2{width:0.923307pt;}
._0{width:1.962667pt;}
._7{width:2.995200pt;}
._8{width:3.893760pt;}
._9{width:5.062187pt;}
._c{width:6.151467pt;}
._16{width:7.338240pt;}
._1b{width:8.760960pt;}
._19{width:9.809280pt;}
._1a{width:11.460480pt;}
._5{width:12.430080pt;}
._f{width:13.500800pt;}
._6{width:14.522453pt;}
._e{width:15.724800pt;}
._a{width:16.922880pt;}
._2c{width:17.818240pt;}
._1c{width:19.829333pt;}
._10{width:20.723413pt;}
._d{width:21.715200pt;}
._12{width:23.437440pt;}
._18{width:24.935040pt;}
._17{width:26.564053pt;}
._1f{width:27.855360pt;}
._20{width:28.775893pt;}
._23{width:29.933653pt;}
._22{width:30.903467pt;}
._14{width:32.254933pt;}
._2d{width:33.308160pt;}
._24{width:35.043840pt;}
._1d{width:36.017280pt;}
._2b{width:36.990720pt;}
._1e{width:38.153813pt;}
._13{width:40.135680pt;}
._15{width:41.633280pt;}
._27{width:45.302400pt;}
._25{width:46.903040pt;}
._26{width:48.313813pt;}
._b{width:49.570560pt;}
._29{width:68.964480pt;}
._2a{width:69.998720pt;}
._21{width:92.697600pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.ya{bottom:4.640000pt;}
.y9{bottom:6.560000pt;}
.y4{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.y2{bottom:21.920000pt;}
.y8{bottom:39.680000pt;}
.ya0{bottom:78.432000pt;}
.y77{bottom:79.552000pt;}
.ybf{bottom:83.072000pt;}
.y76{bottom:84.192000pt;}
.ye3{bottom:87.872000pt;}
.y9f{bottom:93.632000pt;}
.y9e{bottom:98.272000pt;}
.y75{bottom:99.872000pt;}
.y9d{bottom:108.992000pt;}
.yc1{bottom:109.312000pt;}
.yb2{bottom:110.112000pt;}
.ye2{bottom:112.512000pt;}
.y9c{bottom:113.632000pt;}
.y74{bottom:115.232000pt;}
.ybe{bottom:120.992000pt;}
.y9b{bottom:124.352000pt;}
.yb5{bottom:125.472000pt;}
.ybd{bottom:127.712000pt;}
.y73{bottom:130.432000pt;}
.yc0{bottom:134.106667pt;}
.y72{bottom:135.066667pt;}
.ye1{bottom:137.306667pt;}
.y2f{bottom:140.346667pt;}
.y9a{bottom:140.826667pt;}
.ybc{bottom:141.306667pt;}
.y4d{bottom:144.986667pt;}
.ybb{bottom:145.946667pt;}
.y71{bottom:146.906667pt;}
.y99{bottom:147.546667pt;}
.yba{bottom:157.786667pt;}
.yb1{bottom:158.746667pt;}
.ye0{bottom:161.946667pt;}
.y98{bottom:162.266667pt;}
.y2e{bottom:164.986667pt;}
.y4c{bottom:169.786667pt;}
.y70{bottom:177.146667pt;}
.yb0{bottom:183.386667pt;}
.ydf{bottom:186.586667pt;}
.y2d{bottom:189.626667pt;}
.y97{bottom:189.786667pt;}
.yb9{bottom:190.106667pt;}
.y4b{bottom:195.386667pt;}
.y6f{bottom:202.426667pt;}
.yaf{bottom:208.026667pt;}
.yde{bottom:211.226667pt;}
.y2c{bottom:214.426667pt;}
.y96{bottom:214.586667pt;}
.y4a{bottom:221.626667pt;}
.y6e{bottom:228.026667pt;}
.yae{bottom:232.826667pt;}
.ydd{bottom:236.026667pt;}
.y2b{bottom:239.066667pt;}
.y95{bottom:239.226667pt;}
.y49{bottom:246.746667pt;}
.y6d{bottom:254.266667pt;}
.yad{bottom:257.466667pt;}
.ydc{bottom:260.666667pt;}
.y2a{bottom:263.706667pt;}
.y94{bottom:263.866667pt;}
.yb4{bottom:264.186667pt;}
.y48{bottom:272.506667pt;}
.y6c{bottom:279.386667pt;}
.yac{bottom:282.106667pt;}
.ydb{bottom:285.306667pt;}
.y29{bottom:288.346667pt;}
.y93{bottom:288.506667pt;}
.y47{bottom:298.746667pt;}
.y6b{bottom:305.186667pt;}
.yab{bottom:306.786667pt;}
.yda{bottom:310.146667pt;}
.y28{bottom:313.186667pt;}
.y92{bottom:313.346667pt;}
.y46{bottom:325.026667pt;}
.y6a{bottom:330.466667pt;}
.yaa{bottom:331.586667pt;}
.yd9{bottom:334.786667pt;}
.y27{bottom:337.826667pt;}
.y90{bottom:337.986667pt;}
.y91{bottom:344.706667pt;}
.y45{bottom:350.146667pt;}
.y69{bottom:356.066667pt;}
.ya9{bottom:356.226667pt;}
.yd8{bottom:359.426667pt;}
.y26{bottom:362.466667pt;}
.y8f{bottom:362.626667pt;}
.y44{bottom:375.906667pt;}
.ya8{bottom:380.866667pt;}
.y68{bottom:382.306667pt;}
.yd7{bottom:384.066667pt;}
.y25{bottom:387.266667pt;}
.y8e{bottom:387.426667pt;}
.y43{bottom:402.146667pt;}
.ya7{bottom:405.666667pt;}
.y67{bottom:408.546667pt;}
.yd6{bottom:408.866667pt;}
.y24{bottom:411.906667pt;}
.y8d{bottom:412.066667pt;}
.y42{bottom:427.266667pt;}
.ya6{bottom:430.306667pt;}
.yd5{bottom:433.506667pt;}
.y66{bottom:434.786667pt;}
.y23{bottom:436.546667pt;}
.y8c{bottom:436.706667pt;}
.yb8{bottom:437.026667pt;}
.y41{bottom:451.906667pt;}
.ya5{bottom:454.946667pt;}
.yd4{bottom:458.146667pt;}
.y65{bottom:460.866667pt;}
.y22{bottom:461.186667pt;}
.y8b{bottom:461.346667pt;}
.y40{bottom:476.546667pt;}
.ya4{bottom:479.586667pt;}
.yd3{bottom:482.946667pt;}
.y21{bottom:485.986667pt;}
.y64{bottom:486.146667pt;}
.y3f{bottom:502.306667pt;}
.ya3{bottom:504.386667pt;}
.yd2{bottom:507.586667pt;}
.y20{bottom:510.626667pt;}
.y8a{bottom:510.786667pt;}
.y63{bottom:511.746667pt;}
.y3e{bottom:528.546667pt;}
.ya1{bottom:529.026667pt;}
.yd1{bottom:532.226667pt;}
.y1f{bottom:535.266667pt;}
.y89{bottom:535.426667pt;}
.ya2{bottom:535.746667pt;}
.y62{bottom:537.053333pt;}
.y3d{bottom:553.693333pt;}
.yd0{bottom:556.893333pt;}
.y1e{bottom:560.093333pt;}
.y87{bottom:560.253333pt;}
.yb3{bottom:560.413333pt;}
.y61{bottom:562.813333pt;}
.y88{bottom:566.973333pt;}
.y3c{bottom:578.493333pt;}
.ycf{bottom:581.693333pt;}
.y1d{bottom:584.733333pt;}
.y86{bottom:585.853333pt;}
.y60{bottom:587.933333pt;}
.y3b{bottom:603.133333pt;}
.yce{bottom:606.333333pt;}
.y1c{bottom:609.373333pt;}
.y85{bottom:612.093333pt;}
.y5f{bottom:612.573333pt;}
.y3a{bottom:627.773333pt;}
.ycd{bottom:630.973333pt;}
.y1b{bottom:634.013333pt;}
.y5e{bottom:638.333333pt;}
.y39{bottom:652.413333pt;}
.ycc{bottom:655.773333pt;}
.y1a{bottom:658.813333pt;}
.y84{bottom:663.453333pt;}
.y5d{bottom:664.573333pt;}
.y38{bottom:677.213333pt;}
.ycb{bottom:680.413333pt;}
.y19{bottom:683.453333pt;}
.y83{bottom:688.093333pt;}
.y5c{bottom:690.653333pt;}
.y37{bottom:701.853333pt;}
.yca{bottom:705.053333pt;}
.y18{bottom:708.093333pt;}
.y82{bottom:713.853333pt;}
.y5b{bottom:716.893333pt;}
.y36{bottom:726.493333pt;}
.yc9{bottom:729.693333pt;}
.y17{bottom:732.893333pt;}
.yb7{bottom:733.213333pt;}
.y81{bottom:738.973333pt;}
.y5a{bottom:742.013333pt;}
.y35{bottom:751.133333pt;}
.yc8{bottom:754.493333pt;}
.y16{bottom:757.533333pt;}
.y80{bottom:764.733333pt;}
.y59{bottom:766.813333pt;}
.y34{bottom:775.973333pt;}
.yc7{bottom:779.173333pt;}
.y15{bottom:782.213333pt;}
.y7f{bottom:791.013333pt;}
.y58{bottom:792.613333pt;}
.y33{bottom:800.613333pt;}
.yc6{bottom:803.813333pt;}
.y14{bottom:806.853333pt;}
.y7e{bottom:817.253333pt;}
.y56{bottom:817.733333pt;}
.y57{bottom:824.453333pt;}
.y32{bottom:825.253333pt;}
.yc5{bottom:828.453333pt;}
.y13{bottom:831.653333pt;}
.y55{bottom:843.493333pt;}
.y31{bottom:850.053333pt;}
.yc4{bottom:853.253333pt;}
.y12{bottom:856.293333pt;}
.y54{bottom:868.613333pt;}
.y7d{bottom:869.573333pt;}
.y30{bottom:874.693333pt;}
.y11{bottom:877.253333pt;}
.yc3{bottom:877.893333pt;}
.yb6{bottom:881.413333pt;}
.y53{bottom:894.373333pt;}
.y7c{bottom:895.813333pt;}
.y10{bottom:899.333333pt;}
.yc2{bottom:902.533333pt;}
.y52{bottom:920.453333pt;}
.y7a{bottom:922.053333pt;}
.yf{bottom:923.973333pt;}
.y7b{bottom:928.773333pt;}
.y51{bottom:945.733333pt;}
.y79{bottom:947.173333pt;}
.ye{bottom:948.773333pt;}
.y50{bottom:971.493333pt;}
.y78{bottom:972.933333pt;}
.yd{bottom:973.413333pt;}
.y4e{bottom:997.573333pt;}
.yc{bottom:998.053333pt;}
.y4f{bottom:1004.293333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h7{height:24.512000pt;}
.hf{height:33.918750pt;}
.h2{height:36.800000pt;}
.he{height:47.109375pt;}
.h4{height:47.742188pt;}
.h10{height:52.134375pt;}
.hc{height:52.503750pt;}
.hd{height:56.927812pt;}
.h6{height:59.340000pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.ha{height:73.490625pt;}
.hb{height:75.465000pt;}
.h9{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w7{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.680000pt;}
.xa{left:17.600000pt;}
.x8{left:22.560000pt;}
.x1{left:28.320000pt;}
.x2{left:39.520000pt;}
.x5{left:53.306667pt;}
.x7{left:75.519988pt;}
.xd{left:80.351988pt;}
.x20{left:81.631988pt;}
.xc{left:86.111988pt;}
.xb{left:113.311988pt;}
.x29{left:203.546643pt;}
.x2a{left:209.626655pt;}
.x11{left:215.066655pt;}
.x1e{left:220.346643pt;}
.x1f{left:226.426655pt;}
.x18{left:233.306643pt;}
.x19{left:239.386655pt;}
.x1c{left:247.746643pt;}
.x12{left:252.066655pt;}
.x1d{left:253.826655pt;}
.x10{left:258.626655pt;}
.xf{left:267.106655pt;}
.x16{left:294.946643pt;}
.x17{left:301.026655pt;}
.x23{left:313.826643pt;}
.x24{left:319.906655pt;}
.x13{left:327.906655pt;}
.x15{left:334.146655pt;}
.x1a{left:344.226643pt;}
.x14{left:345.986655pt;}
.x1b{left:350.306655pt;}
.xe{left:396.866655pt;}
.x27{left:411.746643pt;}
.x28{left:417.853322pt;}
.x3{left:471.293333pt;}
.x2d{left:620.293310pt;}
.x2e{left:626.373322pt;}
.x21{left:627.493310pt;}
.x22{left:633.573322pt;}
.x25{left:642.373310pt;}
.x26{left:648.453322pt;}
.x4{left:704.613333pt;}
.x9{left:708.933333pt;}
.x2b{left:712.133310pt;}
.x2c{left:718.213322pt;}
}




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