
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_a51f0305f18c723d04d176bd.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_27df75d3ffac693088ad0a8c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.208008;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_efcf5f309a450fd31fd80891.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_231346c7332db5d68298e2e6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.208008;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_6018e3938b528a2c34cf69d1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_05c868fd0696e71225e6787d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.875868;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_2c5d5caa6ce123de3f2b0cc7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.875868;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_284746b089ce82bf79e2525e.woff')format("woff");}.ff9{font-family:ff9;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.291600px;}
.lse{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls12{letter-spacing:-0.031680px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.lsc{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls13{letter-spacing:0.060480px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls19{letter-spacing:0.098400px;}
.ls14{letter-spacing:0.108600px;}
.ls15{letter-spacing:0.118200px;}
.ls6{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls18{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.533400px;}
.ls4{letter-spacing:11.640000px;}
.ls1a{letter-spacing:47.726640px;}
.ls17{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{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);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.407600px;}
.ws6{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.344600px;}
.wsc{word-spacing:-13.335000px;}
.wse{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws7{word-spacing:-13.039800px;}
.ws9{word-spacing:-12.934800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._f{margin-left:-3.584977px;}
._1{margin-left:-2.432052px;}
._0{margin-left:-1.110000px;}
._2{width:1.174152px;}
._6{width:2.946000px;}
._5{width:4.208400px;}
._7{width:5.598888px;}
._8{width:6.812040px;}
._9{width:8.662800px;}
._3{width:9.882000px;}
._4{width:11.179200px;}
._c{width:12.199920px;}
._a{width:14.609400px;}
._b{width:15.816403px;}
._d{width:17.436111px;}
._e{width:18.997920px;}
._13{width:23.356440px;}
._11{width:25.490880px;}
._10{width:26.633160px;}
._14{width:82.364400px;}
._15{width:83.386440px;}
._12{width:85.791240px;}
._16{width:100.701000px;}
._17{width:207.714600px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:7.830000px;}
.y99{bottom:7.920000px;}
.y9e{bottom:8.910000px;}
.y98{bottom:25.470000px;}
.yb0{bottom:35.190000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yd9{bottom:116.220000px;}
.yad{bottom:127.740000px;}
.y5d{bottom:130.980000px;}
.yd8{bottom:133.770000px;}
.y8b{bottom:139.530000px;}
.y28{bottom:140.700000px;}
.y5c{bottom:148.530000px;}
.yd7{bottom:151.410000px;}
.y7f{bottom:152.940000px;}
.yac{bottom:155.100000px;}
.y8a{bottom:157.170000px;}
.y27{bottom:158.250000px;}
.y120{bottom:160.680000px;}
.yf6{bottom:161.490000px;}
.y5b{bottom:166.170000px;}
.yd6{bottom:168.960000px;}
.y7e{bottom:170.580000px;}
.y26{bottom:175.890000px;}
.y11f{bottom:178.320000px;}
.yf5{bottom:179.130000px;}
.yab{bottom:182.460000px;}
.y5a{bottom:183.720000px;}
.yd5{bottom:186.600000px;}
.y7d{bottom:188.130000px;}
.y25{bottom:193.440000px;}
.y11e{bottom:195.870000px;}
.y59{bottom:201.270000px;}
.yd4{bottom:204.150000px;}
.y7c{bottom:205.680000px;}
.yaa{bottom:209.820000px;}
.y24{bottom:211.080000px;}
.y58{bottom:218.910000px;}
.y89{bottom:219.270000px;}
.yd3{bottom:221.700000px;}
.y11d{bottom:222.510000px;}
.y7b{bottom:223.320000px;}
.y23{bottom:228.630000px;}
.y57{bottom:236.460000px;}
.y88{bottom:236.910000px;}
.y11c{bottom:240.060000px;}
.y7a{bottom:240.870000px;}
.y22{bottom:246.180000px;}
.y87{bottom:254.460000px;}
.yd2{bottom:257.340000px;}
.y11b{bottom:257.610000px;}
.y79{bottom:258.510000px;}
.y21{bottom:263.820000px;}
.yf4{bottom:267.420000px;}
.y56{bottom:272.100000px;}
.yd1{bottom:274.890000px;}
.y20{bottom:281.370000px;}
.y11a{bottom:284.250000px;}
.yf3{bottom:285.060000px;}
.y55{bottom:289.650000px;}
.yd0{bottom:292.440000px;}
.y78{bottom:294.060000px;}
.y1f{bottom:299.010000px;}
.y119{bottom:301.800000px;}
.yf2{bottom:302.610000px;}
.y54{bottom:307.200000px;}
.ycf{bottom:310.080000px;}
.y77{bottom:311.610000px;}
.ya9{bottom:311.700000px;}
.y1e{bottom:316.560000px;}
.y53{bottom:324.840000px;}
.yce{bottom:327.630000px;}
.y118{bottom:328.440000px;}
.y76{bottom:329.250000px;}
.y1d{bottom:334.110000px;}
.y52{bottom:342.390000px;}
.ycd{bottom:345.270000px;}
.y117{bottom:345.990000px;}
.y75{bottom:346.800000px;}
.y51{bottom:359.940000px;}
.ya8{bottom:362.190000px;}
.y74{bottom:364.440000px;}
.y1c{bottom:369.750000px;}
.y116{bottom:372.540000px;}
.yf1{bottom:373.350000px;}
.y50{bottom:377.580000px;}
.ycc{bottom:380.820000px;}
.y73{bottom:381.990000px;}
.y1b{bottom:387.300000px;}
.ya7{bottom:389.550000px;}
.y115{bottom:390.180000px;}
.yf0{bottom:390.990000px;}
.ycb{bottom:398.370000px;}
.y86{bottom:404.490000px;}
.y1a{bottom:404.850000px;}
.y114{bottom:407.730000px;}
.y4f{bottom:413.130000px;}
.yca{bottom:416.010000px;}
.ya6{bottom:416.910000px;}
.y72{bottom:417.540000px;}
.y19{bottom:422.490000px;}
.y4e{bottom:430.770000px;}
.yc9{bottom:433.560000px;}
.y113{bottom:434.370000px;}
.yef{bottom:435.090000px;}
.y71{bottom:435.180000px;}
.ya5{bottom:444.180000px;}
.y4d{bottom:448.320000px;}
.y18{bottom:449.400000px;}
.yc8{bottom:451.200000px;}
.y112{bottom:451.920000px;}
.y70{bottom:452.730000px;}
.y4c{bottom:465.870000px;}
.y111{bottom:469.470000px;}
.y6f{bottom:470.400000px;}
.yee{bottom:479.310000px;}
.y4b{bottom:483.540000px;}
.yc7{bottom:486.780000px;}
.y6e{bottom:487.950000px;}
.ya4{bottom:492.990000px;}
.y110{bottom:496.140000px;}
.yed{bottom:496.950000px;}
.y17{bottom:497.670000px;}
.y4a{bottom:501.090000px;}
.yc6{bottom:504.330000px;}
.y6d{bottom:505.500000px;}
.y10f{bottom:513.690000px;}
.y16{bottom:515.580000px;}
.y49{bottom:518.730000px;}
.yc5{bottom:521.970000px;}
.y6c{bottom:523.140000px;}
.yec{bottom:523.860000px;}
.ya3{bottom:528.540000px;}
.y10e{bottom:531.330000px;}
.yc4{bottom:539.520000px;}
.y85{bottom:540.690000px;}
.ya2{bottom:546.090000px;}
.y15{bottom:552.660000px;}
.y48{bottom:554.280000px;}
.yc3{bottom:557.160000px;}
.y10d{bottom:557.880000px;}
.y84{bottom:558.330000px;}
.y6b{bottom:558.690000px;}
.ya1{bottom:563.730000px;}
.y14{bottom:570.210000px;}
.y47{bottom:571.830000px;}
.yeb{bottom:572.100000px;}
.yc2{bottom:574.710000px;}
.y10c{bottom:575.430000px;}
.y83{bottom:575.880000px;}
.y6a{bottom:576.330000px;}
.ya0{bottom:581.280000px;}
.y13{bottom:587.760000px;}
.y46{bottom:589.470000px;}
.yc1{bottom:592.260000px;}
.y10b{bottom:593.070000px;}
.y69{bottom:593.880000px;}
.y9f{bottom:598.920000px;}
.yea{bottom:599.010000px;}
.y12{bottom:605.400000px;}
.y45{bottom:607.020000px;}
.yc0{bottom:609.900000px;}
.y68{bottom:611.430000px;}
.y10a{bottom:619.620000px;}
.y11{bottom:622.950000px;}
.y44{bottom:624.660000px;}
.y67{bottom:629.070000px;}
.y9d{bottom:631.860000px;}
.ye9{bottom:636.000000px;}
.ybf{bottom:636.810000px;}
.y109{bottom:637.260000px;}
.y10{bottom:640.590000px;}
.y43{bottom:642.210000px;}
.y66{bottom:646.620000px;}
.y108{bottom:654.810000px;}
.yf{bottom:658.140000px;}
.y42{bottom:659.760000px;}
.y9c{bottom:661.110000px;}
.ye8{bottom:662.910000px;}
.y65{bottom:664.260000px;}
.ye{bottom:675.690000px;}
.y107{bottom:681.360000px;}
.y64{bottom:681.810000px;}
.ybe{bottom:685.050000px;}
.y41{bottom:686.670000px;}
.yd{bottom:693.330000px;}
.y106{bottom:699.000000px;}
.y82{bottom:699.360000px;}
.ye7{bottom:700.260000px;}
.ybd{bottom:702.690000px;}
.y9a{bottom:706.020000px;}
.yc{bottom:710.880000px;}
.y105{bottom:716.550000px;}
.y81{bottom:717.000000px;}
.y63{bottom:717.360000px;}
.ybc{bottom:720.240000px;}
.y40{bottom:735.000000px;}
.yb{bottom:737.790000px;}
.y104{bottom:743.190000px;}
.ye6{bottom:748.590000px;}
.y97{bottom:750.930000px;}
.y3f{bottom:752.550000px;}
.ybb{bottom:755.430000px;}
.y103{bottom:760.740000px;}
.ye5{bottom:766.140000px;}
.y3e{bottom:770.190000px;}
.yba{bottom:772.980000px;}
.y102{bottom:778.290000px;}
.ye4{bottom:783.690000px;}
.ya{bottom:786.030000px;}
.y3d{bottom:787.740000px;}
.yb9{bottom:790.530000px;}
.ye3{bottom:801.330000px;}
.y101{bottom:804.930000px;}
.y3c{bottom:805.290000px;}
.yb8{bottom:808.170000px;}
.y96{bottom:817.260000px;}
.ye2{bottom:818.880000px;}
.y9{bottom:821.850000px;}
.y100{bottom:822.480000px;}
.y62{bottom:822.930000px;}
.yb7{bottom:825.720000px;}
.ye1{bottom:836.520000px;}
.y61{bottom:840.480000px;}
.y3b{bottom:840.930000px;}
.yb6{bottom:843.360000px;}
.yff{bottom:849.030000px;}
.y95{bottom:852.810000px;}
.ye0{bottom:854.070000px;}
.y8{bottom:857.850000px;}
.y80{bottom:858.030000px;}
.y3a{bottom:858.480000px;}
.yb5{bottom:860.910000px;}
.yfe{bottom:866.670000px;}
.y94{bottom:870.450000px;}
.ydf{bottom:871.620000px;}
.y39{bottom:876.030000px;}
.yb4{bottom:878.460000px;}
.y93{bottom:888.000000px;}
.yfd{bottom:893.220000px;}
.y38{bottom:893.670000px;}
.y7{bottom:893.850000px;}
.yde{bottom:898.530000px;}
.yfc{bottom:910.860000px;}
.y37{bottom:911.220000px;}
.yb2{bottom:911.490000px;}
.y92{bottom:914.910000px;}
.y36{bottom:928.860000px;}
.y6{bottom:929.940000px;}
.yfb{bottom:937.410000px;}
.yb3{bottom:938.850000px;}
.y35{bottom:946.410000px;}
.ydd{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.yfa{bottom:954.960000px;}
.y91{bottom:963.150000px;}
.y34{bottom:963.960000px;}
.ydc{bottom:964.410000px;}
.yaf{bottom:966.120000px;}
.y90{bottom:980.790000px;}
.y33{bottom:981.600000px;}
.ydb{bottom:981.960000px;}
.y4{bottom:987.630000px;}
.yb1{bottom:993.480000px;}
.y32{bottom:999.150000px;}
.yda{bottom:999.600000px;}
.y3{bottom:1012.320000px;}
.y8f{bottom:1016.370000px;}
.y31{bottom:1016.820000px;}
.y60{bottom:1017.180000px;}
.yae{bottom:1020.870000px;}
.y8e{bottom:1033.920000px;}
.y30{bottom:1034.370000px;}
.y5f{bottom:1034.820000px;}
.yf9{bottom:1043.370000px;}
.y5e{bottom:1052.370000px;}
.yf8{bottom:1060.920000px;}
.y8d{bottom:1069.560000px;}
.y2f{bottom:1069.920000px;}
.yf7{bottom:1078.560000px;}
.y8c{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h12{height:26.580000px;}
.h10{height:26.640000px;}
.he{height:26.670000px;}
.hd{height:28.530000px;}
.h2{height:32.566289px;}
.hc{height:44.190000px;}
.h3{height:44.538574px;}
.h6{height:50.902383px;}
.h13{height:53.910000px;}
.h11{height:53.940000px;}
.h8{height:55.779258px;}
.h7{height:59.503535px;}
.h9{height:60.960938px;}
.h14{height:61.793886px;}
.hb{height:62.585859px;}
.h5{height:65.204473px;}
.ha{height:68.582109px;}
.h4{height:83.019902px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w19{width:32.130000px;}
.w6{width:40.410000px;}
.w1c{width:43.470000px;}
.w13{width:43.560000px;}
.w7{width:51.750000px;}
.w1a{width:53.310000px;}
.w18{width:58.590000px;}
.w14{width:59.850000px;}
.w1b{width:66.960000px;}
.w5{width:71.100000px;}
.wa{width:74.610000px;}
.w15{width:76.590000px;}
.wb{width:79.020000px;}
.w4{width:81.720000px;}
.we{width:92.820000px;}
.w9{width:100.620000px;}
.w12{width:101.190000px;}
.wf{width:107.550000px;}
.w8{width:116.760000px;}
.w3{width:133.590000px;}
.w17{width:149.130000px;}
.w11{width:220.230000px;}
.wd{width:266.220000px;}
.w10{width:468.030000px;}
.w16{width:504.570000px;}
.wc{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x1a{left:111.239987px;}
.xf{left:194.340000px;}
.x2{left:202.799987px;}
.xc{left:212.610000px;}
.x14{left:220.890000px;}
.x5{left:285.600000px;}
.x6{left:357.420000px;}
.x15{left:370.740000px;}
.x7{left:398.550000px;}
.x10{left:415.380000px;}
.x16{left:430.050000px;}
.x8{left:451.110000px;}
.x17{left:462.900000px;}
.xd{left:479.550000px;}
.x11{left:517.290000px;}
.x12{left:561.660000px;}
.x9{left:568.680000px;}
.xe{left:573.090000px;}
.x18{left:584.610000px;}
.x13{left:622.320000px;}
.x19{left:628.890000px;}
.xa{left:670.020000px;}
.xb{left:745.440000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.259200pt;}
.lse{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls12{letter-spacing:-0.028160pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.lsc{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls13{letter-spacing:0.053760pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls19{letter-spacing:0.087467pt;}
.ls14{letter-spacing:0.096533pt;}
.ls15{letter-spacing:0.105067pt;}
.ls6{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls18{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.474133pt;}
.ls4{letter-spacing:10.346667pt;}
.ls1a{letter-spacing:42.423680pt;}
.ls17{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.917867pt;}
.ws6{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.861867pt;}
.wsc{word-spacing:-11.853333pt;}
.wse{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws7{word-spacing:-11.590933pt;}
.ws9{word-spacing:-11.497600pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._f{margin-left:-3.186646pt;}
._1{margin-left:-2.161824pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.043691pt;}
._6{width:2.618667pt;}
._5{width:3.740800pt;}
._7{width:4.976789pt;}
._8{width:6.055147pt;}
._9{width:7.700267pt;}
._3{width:8.784000pt;}
._4{width:9.937067pt;}
._c{width:10.844373pt;}
._a{width:12.986134pt;}
._b{width:14.059025pt;}
._d{width:15.498765pt;}
._e{width:16.887040pt;}
._13{width:20.761280pt;}
._11{width:22.658560pt;}
._10{width:23.673920pt;}
._14{width:73.212800pt;}
._15{width:74.121280pt;}
._12{width:76.258880pt;}
._16{width:89.512000pt;}
._17{width:184.635200pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:6.960000pt;}
.y99{bottom:7.040000pt;}
.y9e{bottom:7.920000pt;}
.y98{bottom:22.640000pt;}
.yb0{bottom:31.280000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yd9{bottom:103.306667pt;}
.yad{bottom:113.546667pt;}
.y5d{bottom:116.426667pt;}
.yd8{bottom:118.906667pt;}
.y8b{bottom:124.026667pt;}
.y28{bottom:125.066667pt;}
.y5c{bottom:132.026667pt;}
.yd7{bottom:134.586667pt;}
.y7f{bottom:135.946667pt;}
.yac{bottom:137.866667pt;}
.y8a{bottom:139.706667pt;}
.y27{bottom:140.666667pt;}
.y120{bottom:142.826667pt;}
.yf6{bottom:143.546667pt;}
.y5b{bottom:147.706667pt;}
.yd6{bottom:150.186667pt;}
.y7e{bottom:151.626667pt;}
.y26{bottom:156.346667pt;}
.y11f{bottom:158.506667pt;}
.yf5{bottom:159.226667pt;}
.yab{bottom:162.186667pt;}
.y5a{bottom:163.306667pt;}
.yd5{bottom:165.866667pt;}
.y7d{bottom:167.226667pt;}
.y25{bottom:171.946667pt;}
.y11e{bottom:174.106667pt;}
.y59{bottom:178.906667pt;}
.yd4{bottom:181.466667pt;}
.y7c{bottom:182.826667pt;}
.yaa{bottom:186.506667pt;}
.y24{bottom:187.626667pt;}
.y58{bottom:194.586667pt;}
.y89{bottom:194.906667pt;}
.yd3{bottom:197.066667pt;}
.y11d{bottom:197.786667pt;}
.y7b{bottom:198.506667pt;}
.y23{bottom:203.226667pt;}
.y57{bottom:210.186667pt;}
.y88{bottom:210.586667pt;}
.y11c{bottom:213.386667pt;}
.y7a{bottom:214.106667pt;}
.y22{bottom:218.826667pt;}
.y87{bottom:226.186667pt;}
.yd2{bottom:228.746667pt;}
.y11b{bottom:228.986667pt;}
.y79{bottom:229.786667pt;}
.y21{bottom:234.506667pt;}
.yf4{bottom:237.706667pt;}
.y56{bottom:241.866667pt;}
.yd1{bottom:244.346667pt;}
.y20{bottom:250.106667pt;}
.y11a{bottom:252.666667pt;}
.yf3{bottom:253.386667pt;}
.y55{bottom:257.466667pt;}
.yd0{bottom:259.946667pt;}
.y78{bottom:261.386667pt;}
.y1f{bottom:265.786667pt;}
.y119{bottom:268.266667pt;}
.yf2{bottom:268.986667pt;}
.y54{bottom:273.066667pt;}
.ycf{bottom:275.626667pt;}
.y77{bottom:276.986667pt;}
.ya9{bottom:277.066667pt;}
.y1e{bottom:281.386667pt;}
.y53{bottom:288.746667pt;}
.yce{bottom:291.226667pt;}
.y118{bottom:291.946667pt;}
.y76{bottom:292.666667pt;}
.y1d{bottom:296.986667pt;}
.y52{bottom:304.346667pt;}
.ycd{bottom:306.906667pt;}
.y117{bottom:307.546667pt;}
.y75{bottom:308.266667pt;}
.y51{bottom:319.946667pt;}
.ya8{bottom:321.946667pt;}
.y74{bottom:323.946667pt;}
.y1c{bottom:328.666667pt;}
.y116{bottom:331.146667pt;}
.yf1{bottom:331.866667pt;}
.y50{bottom:335.626667pt;}
.ycc{bottom:338.506667pt;}
.y73{bottom:339.546667pt;}
.y1b{bottom:344.266667pt;}
.ya7{bottom:346.266667pt;}
.y115{bottom:346.826667pt;}
.yf0{bottom:347.546667pt;}
.ycb{bottom:354.106667pt;}
.y86{bottom:359.546667pt;}
.y1a{bottom:359.866667pt;}
.y114{bottom:362.426667pt;}
.y4f{bottom:367.226667pt;}
.yca{bottom:369.786667pt;}
.ya6{bottom:370.586667pt;}
.y72{bottom:371.146667pt;}
.y19{bottom:375.546667pt;}
.y4e{bottom:382.906667pt;}
.yc9{bottom:385.386667pt;}
.y113{bottom:386.106667pt;}
.yef{bottom:386.746667pt;}
.y71{bottom:386.826667pt;}
.ya5{bottom:394.826667pt;}
.y4d{bottom:398.506667pt;}
.y18{bottom:399.466667pt;}
.yc8{bottom:401.066667pt;}
.y112{bottom:401.706667pt;}
.y70{bottom:402.426667pt;}
.y4c{bottom:414.106667pt;}
.y111{bottom:417.306667pt;}
.y6f{bottom:418.133333pt;}
.yee{bottom:426.053333pt;}
.y4b{bottom:429.813333pt;}
.yc7{bottom:432.693333pt;}
.y6e{bottom:433.733333pt;}
.ya4{bottom:438.213333pt;}
.y110{bottom:441.013333pt;}
.yed{bottom:441.733333pt;}
.y17{bottom:442.373333pt;}
.y4a{bottom:445.413333pt;}
.yc6{bottom:448.293333pt;}
.y6d{bottom:449.333333pt;}
.y10f{bottom:456.613333pt;}
.y16{bottom:458.293333pt;}
.y49{bottom:461.093333pt;}
.yc5{bottom:463.973333pt;}
.y6c{bottom:465.013333pt;}
.yec{bottom:465.653333pt;}
.ya3{bottom:469.813333pt;}
.y10e{bottom:472.293333pt;}
.yc4{bottom:479.573333pt;}
.y85{bottom:480.613333pt;}
.ya2{bottom:485.413333pt;}
.y15{bottom:491.253333pt;}
.y48{bottom:492.693333pt;}
.yc3{bottom:495.253333pt;}
.y10d{bottom:495.893333pt;}
.y84{bottom:496.293333pt;}
.y6b{bottom:496.613333pt;}
.ya1{bottom:501.093333pt;}
.y14{bottom:506.853333pt;}
.y47{bottom:508.293333pt;}
.yeb{bottom:508.533333pt;}
.yc2{bottom:510.853333pt;}
.y10c{bottom:511.493333pt;}
.y83{bottom:511.893333pt;}
.y6a{bottom:512.293333pt;}
.ya0{bottom:516.693333pt;}
.y13{bottom:522.453333pt;}
.y46{bottom:523.973333pt;}
.yc1{bottom:526.453333pt;}
.y10b{bottom:527.173333pt;}
.y69{bottom:527.893333pt;}
.y9f{bottom:532.373333pt;}
.yea{bottom:532.453333pt;}
.y12{bottom:538.133333pt;}
.y45{bottom:539.573333pt;}
.yc0{bottom:542.133333pt;}
.y68{bottom:543.493333pt;}
.y10a{bottom:550.773333pt;}
.y11{bottom:553.733333pt;}
.y44{bottom:555.253333pt;}
.y67{bottom:559.173333pt;}
.y9d{bottom:561.653333pt;}
.ye9{bottom:565.333333pt;}
.ybf{bottom:566.053333pt;}
.y109{bottom:566.453333pt;}
.y10{bottom:569.413333pt;}
.y43{bottom:570.853333pt;}
.y66{bottom:574.773333pt;}
.y108{bottom:582.053333pt;}
.yf{bottom:585.013333pt;}
.y42{bottom:586.453333pt;}
.y9c{bottom:587.653333pt;}
.ye8{bottom:589.253333pt;}
.y65{bottom:590.453333pt;}
.ye{bottom:600.613333pt;}
.y107{bottom:605.653333pt;}
.y64{bottom:606.053333pt;}
.ybe{bottom:608.933333pt;}
.y41{bottom:610.373333pt;}
.yd{bottom:616.293333pt;}
.y106{bottom:621.333333pt;}
.y82{bottom:621.653333pt;}
.ye7{bottom:622.453333pt;}
.ybd{bottom:624.613333pt;}
.y9a{bottom:627.573333pt;}
.yc{bottom:631.893333pt;}
.y105{bottom:636.933333pt;}
.y81{bottom:637.333333pt;}
.y63{bottom:637.653333pt;}
.ybc{bottom:640.213333pt;}
.y40{bottom:653.333333pt;}
.yb{bottom:655.813333pt;}
.y104{bottom:660.613333pt;}
.ye6{bottom:665.413333pt;}
.y97{bottom:667.493333pt;}
.y3f{bottom:668.933333pt;}
.ybb{bottom:671.493333pt;}
.y103{bottom:676.213333pt;}
.ye5{bottom:681.013333pt;}
.y3e{bottom:684.613333pt;}
.yba{bottom:687.093333pt;}
.y102{bottom:691.813333pt;}
.ye4{bottom:696.613333pt;}
.ya{bottom:698.693333pt;}
.y3d{bottom:700.213333pt;}
.yb9{bottom:702.693333pt;}
.ye3{bottom:712.293333pt;}
.y101{bottom:715.493333pt;}
.y3c{bottom:715.813333pt;}
.yb8{bottom:718.373333pt;}
.y96{bottom:726.453333pt;}
.ye2{bottom:727.893333pt;}
.y9{bottom:730.533333pt;}
.y100{bottom:731.093333pt;}
.y62{bottom:731.493333pt;}
.yb7{bottom:733.973333pt;}
.ye1{bottom:743.573333pt;}
.y61{bottom:747.093333pt;}
.y3b{bottom:747.493333pt;}
.yb6{bottom:749.653333pt;}
.yff{bottom:754.693333pt;}
.y95{bottom:758.053333pt;}
.ye0{bottom:759.173333pt;}
.y8{bottom:762.533333pt;}
.y80{bottom:762.693333pt;}
.y3a{bottom:763.093333pt;}
.yb5{bottom:765.253333pt;}
.yfe{bottom:770.373333pt;}
.y94{bottom:773.733333pt;}
.ydf{bottom:774.773333pt;}
.y39{bottom:778.693333pt;}
.yb4{bottom:780.853333pt;}
.y93{bottom:789.333333pt;}
.yfd{bottom:793.973333pt;}
.y38{bottom:794.373333pt;}
.y7{bottom:794.533333pt;}
.yde{bottom:798.693333pt;}
.yfc{bottom:809.653333pt;}
.y37{bottom:809.973333pt;}
.yb2{bottom:810.213333pt;}
.y92{bottom:813.253333pt;}
.y36{bottom:825.653333pt;}
.y6{bottom:826.613333pt;}
.yfb{bottom:833.253333pt;}
.yb3{bottom:834.533333pt;}
.y35{bottom:841.253333pt;}
.ydd{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.yfa{bottom:848.853333pt;}
.y91{bottom:856.133333pt;}
.y34{bottom:856.853333pt;}
.ydc{bottom:857.253333pt;}
.yaf{bottom:858.773333pt;}
.y90{bottom:871.813333pt;}
.y33{bottom:872.533333pt;}
.ydb{bottom:872.853333pt;}
.y4{bottom:877.893333pt;}
.yb1{bottom:883.093333pt;}
.y32{bottom:888.133333pt;}
.yda{bottom:888.533333pt;}
.y3{bottom:899.840000pt;}
.y8f{bottom:903.440000pt;}
.y31{bottom:903.840000pt;}
.y60{bottom:904.160000pt;}
.yae{bottom:907.440000pt;}
.y8e{bottom:919.040000pt;}
.y30{bottom:919.440000pt;}
.y5f{bottom:919.840000pt;}
.yf9{bottom:927.440000pt;}
.y5e{bottom:935.440000pt;}
.yf8{bottom:943.040000pt;}
.y8d{bottom:950.720000pt;}
.y2f{bottom:951.040000pt;}
.yf7{bottom:958.720000pt;}
.y8c{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h12{height:23.626667pt;}
.h10{height:23.680000pt;}
.he{height:23.706667pt;}
.hd{height:25.360000pt;}
.h2{height:28.947812pt;}
.hc{height:39.280000pt;}
.h3{height:39.589844pt;}
.h6{height:45.246562pt;}
.h13{height:47.920000pt;}
.h11{height:47.946667pt;}
.h8{height:49.581562pt;}
.h7{height:52.892031pt;}
.h9{height:54.187500pt;}
.h14{height:54.927899pt;}
.hb{height:55.631875pt;}
.h5{height:57.959531pt;}
.ha{height:60.961875pt;}
.h4{height:73.795469pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w19{width:28.560000pt;}
.w6{width:35.920000pt;}
.w1c{width:38.640000pt;}
.w13{width:38.720000pt;}
.w7{width:46.000000pt;}
.w1a{width:47.386667pt;}
.w18{width:52.080000pt;}
.w14{width:53.200000pt;}
.w1b{width:59.520000pt;}
.w5{width:63.200000pt;}
.wa{width:66.320000pt;}
.w15{width:68.080000pt;}
.wb{width:70.240000pt;}
.w4{width:72.640000pt;}
.we{width:82.506667pt;}
.w9{width:89.440000pt;}
.w12{width:89.946667pt;}
.wf{width:95.600000pt;}
.w8{width:103.786667pt;}
.w3{width:118.746667pt;}
.w17{width:132.560000pt;}
.w11{width:195.760000pt;}
.wd{width:236.640000pt;}
.w10{width:416.026667pt;}
.w16{width:448.506667pt;}
.wc{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x1a{left:98.879988pt;}
.xf{left:172.746667pt;}
.x2{left:180.266655pt;}
.xc{left:188.986667pt;}
.x14{left:196.346667pt;}
.x5{left:253.866667pt;}
.x6{left:317.706667pt;}
.x15{left:329.546667pt;}
.x7{left:354.266667pt;}
.x10{left:369.226667pt;}
.x16{left:382.266667pt;}
.x8{left:400.986667pt;}
.x17{left:411.466667pt;}
.xd{left:426.266667pt;}
.x11{left:459.813333pt;}
.x12{left:499.253333pt;}
.x9{left:505.493333pt;}
.xe{left:509.413333pt;}
.x18{left:519.653333pt;}
.x13{left:553.173333pt;}
.x19{left:559.013333pt;}
.xa{left:595.573333pt;}
.xb{left:662.613333pt;}
.x3{left:704.053322pt;}
}




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