
    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_5db0c3d9e568195073d7b8fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_ade0ddaa7a59383b07bd1fc9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_c9690e5e77574684051d2c57.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_26866c4d70e49481604dbf68.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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.140138,-0.207030,0.207030,0.140138,0,0);-ms-transform:matrix(0.140138,-0.207030,0.207030,0.140138,0,0);-webkit-transform:matrix(0.140138,-0.207030,0.207030,0.140138,0,0);}
.m3{transform:matrix(0.149976,-0.200018,0.200018,0.149976,0,0);-ms-transform:matrix(0.149976,-0.200018,0.200018,0.149976,0,0);-webkit-transform:matrix(0.149976,-0.200018,0.200018,0.149976,0,0);}
.m4{transform:matrix(0.158055,-0.193697,0.193697,0.158055,0,0);-ms-transform:matrix(0.158055,-0.193697,0.193697,0.158055,0,0);-webkit-transform:matrix(0.158055,-0.193697,0.193697,0.158055,0,0);}
.m5{transform:matrix(0.165223,-0.187620,0.187620,0.165223,0,0);-ms-transform:matrix(0.165223,-0.187620,0.187620,0.165223,0,0);-webkit-transform:matrix(0.165223,-0.187620,0.187620,0.165223,0,0);}
.m6{transform:matrix(0.174005,-0.179505,0.179505,0.174005,0,0);-ms-transform:matrix(0.174005,-0.179505,0.179505,0.174005,0,0);-webkit-transform:matrix(0.174005,-0.179505,0.179505,0.174005,0,0);}
.m7{transform:matrix(0.186562,-0.166417,0.166417,0.186562,0,0);-ms-transform:matrix(0.186562,-0.166417,0.166417,0.186562,0,0);-webkit-transform:matrix(0.186562,-0.166417,0.166417,0.186562,0,0);}
.m8{transform:matrix(0.194861,-0.156618,0.156618,0.194861,0,0);-ms-transform:matrix(0.194861,-0.156618,0.156618,0.194861,0,0);-webkit-transform:matrix(0.194861,-0.156618,0.156618,0.194861,0,0);}
.m9{transform:matrix(0.200682,-0.149087,0.149087,0.200682,0,0);-ms-transform:matrix(0.200682,-0.149087,0.149087,0.200682,0,0);-webkit-transform:matrix(0.200682,-0.149087,0.149087,0.200682,0,0);}
.ma{transform:matrix(0.206383,-0.141088,0.141088,0.206383,0,0);-ms-transform:matrix(0.206383,-0.141088,0.141088,0.206383,0,0);-webkit-transform:matrix(0.206383,-0.141088,0.141088,0.206383,0,0);}
.mb{transform:matrix(0.213182,-0.130589,0.130589,0.213182,0,0);-ms-transform:matrix(0.213182,-0.130589,0.130589,0.213182,0,0);-webkit-transform:matrix(0.213182,-0.130589,0.130589,0.213182,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);}
.v4{vertical-align:-7.344000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.460000px;}
.v1{vertical-align:7.920000px;}
.v5{vertical-align:21.312000px;}
.v6{vertical-align:47.232000px;}
.v7{vertical-align:49.824000px;}
.v3{vertical-align:103.800000px;}
.ls1{letter-spacing:-1.926000px;}
.ls10{letter-spacing:-1.398000px;}
.ls8{letter-spacing:-0.900000px;}
.ls1b{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.696000px;}
.ls9{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.270600px;}
.ls14{letter-spacing:-0.180000px;}
.ls1d{letter-spacing:-0.096600px;}
.ls1c{letter-spacing:-0.082200px;}
.ls12{letter-spacing:-0.075600px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.014400px;}
.ls16{letter-spacing:0.090000px;}
.ls7{letter-spacing:0.104400px;}
.ls13{letter-spacing:0.126000px;}
.ls5{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.348600px;}
.ls2{letter-spacing:27.168768px;}
.lse{letter-spacing:33.671520px;}
.lsb{letter-spacing:52.833600px;}
.lsc{letter-spacing:52.884000px;}
.ls18{letter-spacing:57.600000px;}
.ls1a{letter-spacing:65.865600px;}
.ls19{letter-spacing:65.916000px;}
.ls3{letter-spacing:70.200000px;}
.ls6{letter-spacing:70.269600px;}
.ls4{letter-spacing:70.320000px;}
.ls11{letter-spacing:77.220000px;}
.lsd{letter-spacing:1979.508288px;}
.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;}
}
.wsf{word-spacing:-59.750784px;}
.wse{word-spacing:-59.718240px;}
.ws1{word-spacing:-47.676960px;}
.ws18{word-spacing:-32.576544px;}
.ws19{word-spacing:-32.544000px;}
.ws1e{word-spacing:-28.508544px;}
.ws1c{word-spacing:-28.476000px;}
.ws27{word-spacing:-27.206784px;}
.ws15{word-spacing:-27.174240px;}
.ws26{word-spacing:-27.124584px;}
.ws16{word-spacing:-25.776240px;}
.ws10{word-spacing:-24.440544px;}
.ws5{word-spacing:-24.408000px;}
.ws11{word-spacing:-21.674304px;}
.ws12{word-spacing:-21.641760px;}
.ws20{word-spacing:-14.970240px;}
.wsc{word-spacing:-0.683232px;}
.ws1d{word-spacing:-0.486000px;}
.ws1b{word-spacing:-0.401280px;}
.ws9{word-spacing:-0.385200px;}
.ws21{word-spacing:-0.024000px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:0.144000px;}
.wsb{word-spacing:0.197424px;}
.ws24{word-spacing:0.245520px;}
.ws25{word-spacing:0.264240px;}
.ws3{word-spacing:0.540000px;}
.ws6{word-spacing:0.552000px;}
.ws14{word-spacing:0.655056px;}
.ws23{word-spacing:0.900720px;}
.ws13{word-spacing:1.152000px;}
.ws7{word-spacing:1.224000px;}
.ws22{word-spacing:1.296000px;}
.wsa{word-spacing:2.050848px;}
.ws4{word-spacing:2.772000px;}
.ws0{word-spacing:4.681440px;}
.ws1a{word-spacing:616.452240px;}
.ws1f{word-spacing:1713.760320px;}
.ws17{word-spacing:1721.483520px;}
.wsd{word-spacing:2142.415680px;}
._8{margin-left:-12.394800px;}
._1{margin-left:-11.007360px;}
._e{margin-left:-9.618720px;}
._2{margin-left:-8.369280px;}
._d{margin-left:-6.341760px;}
._7{margin-left:-5.108400px;}
._4{margin-left:-3.859056px;}
._0{margin-left:-1.898640px;}
._3{width:1.241280px;}
._5{width:2.399040px;}
._6{width:25.651920px;}
._b{width:30.584160px;}
._a{width:84.339216px;}
._9{width:331.926960px;}
._c{width:1818.057360px;}
._f{width:2003.434080px;}
.fc7{color:transparent;}
.fc4{color:rgb(5,99,193);}
.fc2{color:rgb(30,140,200);}
.fc1{color:rgb(0,60,120);}
.fc8{color:rgb(127,127,127);}
.fc6{color:rgb(0,0,0);}
.fc5{color:rgb(137,137,137);}
.fc3{color:rgb(68,84,106);}
.fc0{color:rgb(255,255,255);}
.fs1f{font-size:7.200000px;}
.fs21{font-size:48.240000px;}
.fs20{font-size:48.384000px;}
.fs8{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs16{font-size:95.615556px;}
.fs14{font-size:95.615588px;}
.fse{font-size:95.615954px;}
.fs10{font-size:95.616080px;}
.fsf{font-size:95.759618px;}
.fs11{font-size:95.759800px;}
.fs12{font-size:95.759835px;}
.fs19{font-size:95.760000px;}
.fs13{font-size:95.760269px;}
.fs17{font-size:95.760403px;}
.fs15{font-size:95.760420px;}
.fs18{font-size:95.904000px;}
.fs2{font-size:102.240000px;}
.fs5{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fs6{font-size:120.240000px;}
.fs4{font-size:120.384000px;}
.fs1e{font-size:126.000000px;}
.fs1d{font-size:126.144000px;}
.fs1{font-size:131.040000px;}
.fs1b{font-size:144.000000px;}
.fs1c{font-size:144.144000px;}
.fsc{font-size:167.760000px;}
.fsd{font-size:167.904000px;}
.fs0{font-size:210.960000px;}
.fs3{font-size:239.904000px;}
.fsb{font-size:264.240000px;}
.fsa{font-size:264.384000px;}
.fs1a{font-size:360.144000px;}
.y24{bottom:-0.975000px;}
.y21{bottom:-0.390000px;}
.y27{bottom:-0.210000px;}
.y1d{bottom:-0.150000px;}
.y1f{bottom:-0.075000px;}
.y29{bottom:-0.030000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:0.540000px;}
.y1b{bottom:0.720000px;}
.y8c{bottom:12.960000px;}
.y90{bottom:18.936000px;}
.y83{bottom:19.584000px;}
.y7a{bottom:22.068000px;}
.y79{bottom:26.064000px;}
.y11{bottom:29.412000px;}
.y39{bottom:31.392000px;}
.y64{bottom:33.228000px;}
.y8f{bottom:33.336000px;}
.y8b{bottom:44.460000px;}
.y8e{bottom:47.736000px;}
.y8d{bottom:62.172000px;}
.y4d{bottom:95.076000px;}
.y4{bottom:95.868000px;}
.y58{bottom:102.420000px;}
.y63{bottom:102.636000px;}
.y78{bottom:104.904000px;}
.y82{bottom:113.976000px;}
.y34{bottom:114.552000px;}
.y54{bottom:124.020000px;}
.y10{bottom:131.544000px;}
.y57{bottom:145.620000px;}
.y81{bottom:152.850000px;}
.y3{bottom:162.075000px;}
.yf{bottom:167.010000px;}
.y53{bottom:167.220000px;}
.y4c{bottom:177.690000px;}
.y8a{bottom:180.180000px;}
.y56{bottom:188.820000px;}
.y36{bottom:192.855000px;}
.y33{bottom:194.115000px;}
.y77{bottom:196.770000px;}
.ye{bottom:199.440000px;}
.y52{bottom:210.450000px;}
.y6f{bottom:219.450000px;}
.y35{bottom:222.045000px;}
.y32{bottom:223.275000px;}
.y89{bottom:223.380000px;}
.y55{bottom:232.050000px;}
.y6b{bottom:232.590000px;}
.yd{bottom:234.720000px;}
.y76{bottom:251.670000px;}
.y19{bottom:252.435000px;}
.y5a{bottom:254.670000px;}
.y31{bottom:257.655000px;}
.y88{bottom:266.610000px;}
.yc{bottom:267.120000px;}
.y6e{bottom:274.215000px;}
.y41{bottom:275.790000px;}
.y59{bottom:283.470000px;}
.y6a{bottom:287.535000px;}
.y75{bottom:293.250000px;}
.y4b{bottom:296.310000px;}
.y18{bottom:297.795000px;}
.y45{bottom:302.970000px;}
.y40{bottom:305.130000px;}
.yb{bottom:305.640000px;}
.y87{bottom:309.810000px;}
.y30{bottom:317.985000px;}
.y4a{bottom:322.770000px;}
.y6d{bottom:329.115000px;}
.y44{bottom:333.750000px;}
.y3f{bottom:334.470000px;}
.y74{bottom:334.875000px;}
.y69{bottom:342.255000px;}
.y17{bottom:343.155000px;}
.y51{bottom:343.875000px;}
.ya{bottom:347.040000px;}
.y49{bottom:353.550000px;}
.y3e{bottom:363.675000px;}
.y80{bottom:366.945000px;}
.y43{bottom:374.475000px;}
.y48{bottom:379.875000px;}
.y68{bottom:383.835000px;}
.y16{bottom:388.545000px;}
.y9{bottom:389.190000px;}
.y73{bottom:389.595000px;}
.y38{bottom:390.750000px;}
.y62{bottom:394.845000px;}
.y86{bottom:396.255000px;}
.y50{bottom:397.905000px;}
.y2f{bottom:405.330000px;}
.y5c{bottom:405.465000px;}
.y47{bottom:406.335000px;}
.y7f{bottom:406.905000px;}
.y3d{bottom:407.415000px;}
.y37{bottom:419.910000px;}
.y61{bottom:423.645000px;}
.y67{bottom:425.445000px;}
.y72{bottom:431.175000px;}
.y46{bottom:432.615000px;}
.y15{bottom:433.905000px;}
.y5b{bottom:434.310000px;}
.y7e{bottom:439.305000px;}
.y3c{bottom:440.355000px;}
.y2{bottom:442.110000px;}
.y8{bottom:446.970000px;}
.y4f{bottom:451.725000px;}
.y42{bottom:472.860000px;}
.y3b{bottom:473.475000px;}
.y7d{bottom:479.085000px;}
.y66{bottom:480.345000px;}
.y71{bottom:486.075000px;}
.y7{bottom:488.370000px;}
.y60{bottom:488.910000px;}
.y5f{bottom:491.760000px;}
.y1{bottom:499.170000px;}
.y4e{bottom:505.545000px;}
.y5e{bottom:520.560000px;}
.y7c{bottom:520.710000px;}
.y6{bottom:530.535000px;}
.y1a{bottom:537.120000px;}
.y1c{bottom:545.760000px;}
.y5d{bottom:549.360000px;}
.y2c{bottom:549.975000px;}
.y14{bottom:555.630000px;}
.y1e{bottom:557.280000px;}
.y6c{bottom:557.790000px;}
.y65{bottom:557.895000px;}
.y70{bottom:558.030000px;}
.y7b{bottom:559.590000px;}
.y20{bottom:562.500000px;}
.y22{bottom:572.220000px;}
.y23{bottom:585.180000px;}
.y25{bottom:594.180000px;}
.y2e{bottom:600.735000px;}
.y26{bottom:601.560000px;}
.y28{bottom:606.060000px;}
.y2a{bottom:612.180000px;}
.y13{bottom:626.910000px;}
.y2d{bottom:660.420000px;}
.y3a{bottom:670.395000px;}
.y5{bottom:672.015000px;}
.y85{bottom:683.640000px;}
.y12{bottom:698.220000px;}
.y84{bottom:832.860000px;}
.h38{height:7.161328px;}
.h13{height:14.400000px;}
.h37{height:14.580000px;}
.h1b{height:15.300000px;}
.h17{height:15.480000px;}
.h1d{height:15.660000px;}
.h1f{height:15.840000px;}
.h21{height:16.920000px;}
.hf{height:18.540000px;}
.h15{height:19.620000px;}
.h19{height:19.800000px;}
.h11{height:21.240000px;}
.h3a{height:47.980898px;}
.h39{height:48.124125px;}
.h2e{height:65.884219px;}
.h25{height:71.613281px;}
.ha{height:79.533281px;}
.h33{height:92.925281px;}
.h24{height:95.245664px;}
.h23{height:95.388891px;}
.h20{height:97.903232px;}
.h1c{height:97.903265px;}
.h10{height:97.903640px;}
.h14{height:97.903769px;}
.h12{height:98.050741px;}
.h16{height:98.050928px;}
.h18{height:98.050964px;}
.h2b{height:98.051133px;}
.h1a{height:98.051408px;}
.h22{height:98.051546px;}
.h1e{height:98.051563px;}
.h2c{height:98.198578px;}
.h3{height:101.690859px;}
.h6{height:107.419922px;}
.h9{height:107.563148px;}
.h8{height:110.583984px;}
.h34{height:118.845281px;}
.h26{height:119.594180px;}
.h28{height:119.737406px;}
.h3b{height:121.437281px;}
.h7{height:123.116836px;}
.h5{height:123.264281px;}
.h31{height:125.323242px;}
.h32{height:125.466469px;}
.h30{height:129.014648px;}
.h2f{height:129.162094px;}
.h2{height:134.175234px;}
.h29{height:143.226562px;}
.h2a{height:143.369789px;}
.h36{height:147.445312px;}
.h35{height:147.592758px;}
.hd{height:166.858945px;}
.he{height:167.002172px;}
.h2d{height:201.851133px;}
.h1{height:216.007383px;}
.h4{height:245.643891px;}
.hc{height:270.562148px;}
.hb{height:270.709594px;}
.h27{height:368.760727px;}
.h0{height:810.000000px;}
.w4{width:14.040000px;}
.w8{width:15.120000px;}
.w9{width:15.300000px;}
.w6{width:15.480000px;}
.wa{width:15.660000px;}
.wb{width:16.920000px;}
.w2{width:18.180000px;}
.w5{width:19.620000px;}
.w7{width:19.800000px;}
.w3{width:21.060000px;}
.wc{width:295.230000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x15{left:6.090000px;}
.xf{left:7.590000px;}
.x11{left:9.180000px;}
.xb{left:11.010000px;}
.x9{left:12.675000px;}
.x31{left:16.055979px;}
.x32{left:65.015979px;}
.x1{left:85.823979px;}
.x3f{left:93.995979px;}
.x2{left:109.799979px;}
.x50{left:136.799979px;}
.x2c{left:156.674979px;}
.x3d{left:157.934979px;}
.x27{left:161.669979px;}
.x51{left:163.829979px;}
.x40{left:167.069979px;}
.x52{left:190.829979px;}
.x2f{left:199.874979px;}
.x3e{left:216.434979px;}
.x33{left:247.934979px;}
.x34{left:249.734979px;}
.x41{left:258.374979px;}
.x2b{left:260.564979px;}
.x25{left:276.044979px;}
.x26{left:297.644979px;}
.x4e{left:320.729979px;}
.x3b{left:392.474979px;}
.x37{left:441.074979px;}
.x36{left:489.494979px;}
.x35{left:508.214979px;}
.x3{left:512.999979px;}
.x2e{left:525.599979px;}
.x4{left:527.759979px;}
.x45{left:536.834979px;}
.x22{left:549.254979px;}
.x46{left:550.514979px;}
.x55{left:558.149979px;}
.x43{left:562.214979px;}
.x23{left:569.414979px;}
.x5{left:570.779979px;}
.x56{left:585.975000px;}
.x6{left:597.809979px;}
.x42{left:603.179979px;}
.x7{left:631.079979px;}
.x8{left:644.040000px;}
.x21{left:646.889979px;}
.xa{left:650.880000px;}
.xc{left:659.880000px;}
.xd{left:664.020000px;}
.xe{left:675.540000px;}
.x20{left:676.769979px;}
.x44{left:679.394979px;}
.x10{left:686.160000px;}
.x12{left:699.840000px;}
.x28{left:701.384979px;}
.x13{left:707.220000px;}
.x14{left:715.680000px;}
.x16{left:725.400000px;}
.x53{left:768.809979px;}
.x30{left:830.444979px;}
.x38{left:850.394979px;}
.x17{left:852.629979px;}
.x3c{left:882.719979px;}
.x2d{left:966.134979px;}
.x49{left:1001.849979px;}
.x47{left:1010.234979px;}
.x1e{left:1021.499979px;}
.x1d{left:1027.799979px;}
.x18{left:1031.939979px;}
.x4b{left:1040.009979px;}
.x4c{left:1041.629979px;}
.x3a{left:1044.359979px;}
.x39{left:1046.519979px;}
.x48{left:1056.209979px;}
.x19{left:1067.144979px;}
.x4f{left:1095.089979px;}
.x4a{left:1119.029979px;}
.x1a{left:1120.709979px;}
.x29{left:1126.694979px;}
.x4d{left:1140.299979px;}
.x2a{left:1147.034979px;}
.x1f{left:1200.419979px;}
.x1b{left:1231.634979px;}
.x1c{left:1266.869979px;}
.x54{left:1311.809979px;}
.x24{left:1321.019979px;}
@media print{
.v4{vertical-align:-6.528000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.186667pt;}
.v1{vertical-align:7.040000pt;}
.v5{vertical-align:18.944000pt;}
.v6{vertical-align:41.984000pt;}
.v7{vertical-align:44.288000pt;}
.v3{vertical-align:92.266667pt;}
.ls1{letter-spacing:-1.712000pt;}
.ls10{letter-spacing:-1.242667pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.618667pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.240533pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls1d{letter-spacing:-0.085867pt;}
.ls1c{letter-spacing:-0.073067pt;}
.ls12{letter-spacing:-0.067200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.012800pt;}
.ls16{letter-spacing:0.080000pt;}
.ls7{letter-spacing:0.092800pt;}
.ls13{letter-spacing:0.112000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.309867pt;}
.ls2{letter-spacing:24.150016pt;}
.lse{letter-spacing:29.930240pt;}
.lsb{letter-spacing:46.963200pt;}
.lsc{letter-spacing:47.008000pt;}
.ls18{letter-spacing:51.200000pt;}
.ls1a{letter-spacing:58.547200pt;}
.ls19{letter-spacing:58.592000pt;}
.ls3{letter-spacing:62.400000pt;}
.ls6{letter-spacing:62.461867pt;}
.ls4{letter-spacing:62.506667pt;}
.ls11{letter-spacing:68.640000pt;}
.lsd{letter-spacing:1759.562923pt;}
.wsf{word-spacing:-53.111808pt;}
.wse{word-spacing:-53.082880pt;}
.ws1{word-spacing:-42.379520pt;}
.ws18{word-spacing:-28.956928pt;}
.ws19{word-spacing:-28.928000pt;}
.ws1e{word-spacing:-25.340928pt;}
.ws1c{word-spacing:-25.312000pt;}
.ws27{word-spacing:-24.183808pt;}
.ws15{word-spacing:-24.154880pt;}
.ws26{word-spacing:-24.110741pt;}
.ws16{word-spacing:-22.912213pt;}
.ws10{word-spacing:-21.724928pt;}
.ws5{word-spacing:-21.696000pt;}
.ws11{word-spacing:-19.266048pt;}
.ws12{word-spacing:-19.237120pt;}
.ws20{word-spacing:-13.306880pt;}
.wsc{word-spacing:-0.607317pt;}
.ws1d{word-spacing:-0.432000pt;}
.ws1b{word-spacing:-0.356693pt;}
.ws9{word-spacing:-0.342400pt;}
.ws21{word-spacing:-0.021333pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:0.128000pt;}
.wsb{word-spacing:0.175488pt;}
.ws24{word-spacing:0.218240pt;}
.ws25{word-spacing:0.234880pt;}
.ws3{word-spacing:0.480000pt;}
.ws6{word-spacing:0.490667pt;}
.ws14{word-spacing:0.582272pt;}
.ws23{word-spacing:0.800640pt;}
.ws13{word-spacing:1.024000pt;}
.ws7{word-spacing:1.088000pt;}
.ws22{word-spacing:1.152000pt;}
.wsa{word-spacing:1.822976pt;}
.ws4{word-spacing:2.464000pt;}
.ws0{word-spacing:4.161280pt;}
.ws1a{word-spacing:547.957547pt;}
.ws1f{word-spacing:1523.342507pt;}
.ws17{word-spacing:1530.207573pt;}
.wsd{word-spacing:1904.369493pt;}
._8{margin-left:-11.017600pt;}
._1{margin-left:-9.784320pt;}
._e{margin-left:-8.549973pt;}
._2{margin-left:-7.439360pt;}
._d{margin-left:-5.637120pt;}
._7{margin-left:-4.540800pt;}
._4{margin-left:-3.430272pt;}
._0{margin-left:-1.687680pt;}
._3{width:1.103360pt;}
._5{width:2.132480pt;}
._6{width:22.801707pt;}
._b{width:27.185920pt;}
._a{width:74.968192pt;}
._9{width:295.046187pt;}
._c{width:1616.050987pt;}
._f{width:1780.830293pt;}
.fs1f{font-size:6.400000pt;}
.fs21{font-size:42.880000pt;}
.fs20{font-size:43.008000pt;}
.fs8{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs16{font-size:84.991605pt;}
.fs14{font-size:84.991633pt;}
.fse{font-size:84.991959pt;}
.fs10{font-size:84.992071pt;}
.fsf{font-size:85.119660pt;}
.fs11{font-size:85.119822pt;}
.fs12{font-size:85.119854pt;}
.fs19{font-size:85.120000pt;}
.fs13{font-size:85.120239pt;}
.fs17{font-size:85.120358pt;}
.fs15{font-size:85.120373pt;}
.fs18{font-size:85.248000pt;}
.fs2{font-size:90.880000pt;}
.fs5{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fs6{font-size:106.880000pt;}
.fs4{font-size:107.008000pt;}
.fs1e{font-size:112.000000pt;}
.fs1d{font-size:112.128000pt;}
.fs1{font-size:116.480000pt;}
.fs1b{font-size:128.000000pt;}
.fs1c{font-size:128.128000pt;}
.fsc{font-size:149.120000pt;}
.fsd{font-size:149.248000pt;}
.fs0{font-size:187.520000pt;}
.fs3{font-size:213.248000pt;}
.fsb{font-size:234.880000pt;}
.fsa{font-size:235.008000pt;}
.fs1a{font-size:320.128000pt;}
.y24{bottom:-0.866667pt;}
.y21{bottom:-0.346667pt;}
.y27{bottom:-0.186667pt;}
.y1d{bottom:-0.133333pt;}
.y1f{bottom:-0.066667pt;}
.y29{bottom:-0.026667pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:0.480000pt;}
.y1b{bottom:0.640000pt;}
.y8c{bottom:11.520000pt;}
.y90{bottom:16.832000pt;}
.y83{bottom:17.408000pt;}
.y7a{bottom:19.616000pt;}
.y79{bottom:23.168000pt;}
.y11{bottom:26.144000pt;}
.y39{bottom:27.904000pt;}
.y64{bottom:29.536000pt;}
.y8f{bottom:29.632000pt;}
.y8b{bottom:39.520000pt;}
.y8e{bottom:42.432000pt;}
.y8d{bottom:55.264000pt;}
.y4d{bottom:84.512000pt;}
.y4{bottom:85.216000pt;}
.y58{bottom:91.040000pt;}
.y63{bottom:91.232000pt;}
.y78{bottom:93.248000pt;}
.y82{bottom:101.312000pt;}
.y34{bottom:101.824000pt;}
.y54{bottom:110.240000pt;}
.y10{bottom:116.928000pt;}
.y57{bottom:129.440000pt;}
.y81{bottom:135.866667pt;}
.y3{bottom:144.066667pt;}
.yf{bottom:148.453333pt;}
.y53{bottom:148.640000pt;}
.y4c{bottom:157.946667pt;}
.y8a{bottom:160.160000pt;}
.y56{bottom:167.840000pt;}
.y36{bottom:171.426667pt;}
.y33{bottom:172.546667pt;}
.y77{bottom:174.906667pt;}
.ye{bottom:177.280000pt;}
.y52{bottom:187.066667pt;}
.y6f{bottom:195.066667pt;}
.y35{bottom:197.373333pt;}
.y32{bottom:198.466667pt;}
.y89{bottom:198.560000pt;}
.y55{bottom:206.266667pt;}
.y6b{bottom:206.746667pt;}
.yd{bottom:208.640000pt;}
.y76{bottom:223.706667pt;}
.y19{bottom:224.386667pt;}
.y5a{bottom:226.373333pt;}
.y31{bottom:229.026667pt;}
.y88{bottom:236.986667pt;}
.yc{bottom:237.440000pt;}
.y6e{bottom:243.746667pt;}
.y41{bottom:245.146667pt;}
.y59{bottom:251.973333pt;}
.y6a{bottom:255.586667pt;}
.y75{bottom:260.666667pt;}
.y4b{bottom:263.386667pt;}
.y18{bottom:264.706667pt;}
.y45{bottom:269.306667pt;}
.y40{bottom:271.226667pt;}
.yb{bottom:271.680000pt;}
.y87{bottom:275.386667pt;}
.y30{bottom:282.653333pt;}
.y4a{bottom:286.906667pt;}
.y6d{bottom:292.546667pt;}
.y44{bottom:296.666667pt;}
.y3f{bottom:297.306667pt;}
.y74{bottom:297.666667pt;}
.y69{bottom:304.226667pt;}
.y17{bottom:305.026667pt;}
.y51{bottom:305.666667pt;}
.ya{bottom:308.480000pt;}
.y49{bottom:314.266667pt;}
.y3e{bottom:323.266667pt;}
.y80{bottom:326.173333pt;}
.y43{bottom:332.866667pt;}
.y48{bottom:337.666667pt;}
.y68{bottom:341.186667pt;}
.y16{bottom:345.373333pt;}
.y9{bottom:345.946667pt;}
.y73{bottom:346.306667pt;}
.y38{bottom:347.333333pt;}
.y62{bottom:350.973333pt;}
.y86{bottom:352.226667pt;}
.y50{bottom:353.693333pt;}
.y2f{bottom:360.293333pt;}
.y5c{bottom:360.413333pt;}
.y47{bottom:361.186667pt;}
.y7f{bottom:361.693333pt;}
.y3d{bottom:362.146667pt;}
.y37{bottom:373.253333pt;}
.y61{bottom:376.573333pt;}
.y67{bottom:378.173333pt;}
.y72{bottom:383.266667pt;}
.y46{bottom:384.546667pt;}
.y15{bottom:385.693333pt;}
.y5b{bottom:386.053333pt;}
.y7e{bottom:390.493333pt;}
.y3c{bottom:391.426667pt;}
.y2{bottom:392.986667pt;}
.y8{bottom:397.306667pt;}
.y4f{bottom:401.533333pt;}
.y42{bottom:420.320000pt;}
.y3b{bottom:420.866667pt;}
.y7d{bottom:425.853333pt;}
.y66{bottom:426.973333pt;}
.y71{bottom:432.066667pt;}
.y7{bottom:434.106667pt;}
.y60{bottom:434.586667pt;}
.y5f{bottom:437.120000pt;}
.y1{bottom:443.706667pt;}
.y4e{bottom:449.373333pt;}
.y5e{bottom:462.720000pt;}
.y7c{bottom:462.853333pt;}
.y6{bottom:471.586667pt;}
.y1a{bottom:477.440000pt;}
.y1c{bottom:485.120000pt;}
.y5d{bottom:488.320000pt;}
.y2c{bottom:488.866667pt;}
.y14{bottom:493.893333pt;}
.y1e{bottom:495.360000pt;}
.y6c{bottom:495.813333pt;}
.y65{bottom:495.906667pt;}
.y70{bottom:496.026667pt;}
.y7b{bottom:497.413333pt;}
.y20{bottom:500.000000pt;}
.y22{bottom:508.640000pt;}
.y23{bottom:520.160000pt;}
.y25{bottom:528.160000pt;}
.y2e{bottom:533.986667pt;}
.y26{bottom:534.720000pt;}
.y28{bottom:538.720000pt;}
.y2a{bottom:544.160000pt;}
.y13{bottom:557.253333pt;}
.y2d{bottom:587.040000pt;}
.y3a{bottom:595.906667pt;}
.y5{bottom:597.346667pt;}
.y85{bottom:607.680000pt;}
.y12{bottom:620.640000pt;}
.y84{bottom:740.320000pt;}
.h38{height:6.365625pt;}
.h13{height:12.800000pt;}
.h37{height:12.960000pt;}
.h1b{height:13.600000pt;}
.h17{height:13.760000pt;}
.h1d{height:13.920000pt;}
.h1f{height:14.080000pt;}
.h21{height:15.040000pt;}
.hf{height:16.480000pt;}
.h15{height:17.440000pt;}
.h19{height:17.600000pt;}
.h11{height:18.880000pt;}
.h3a{height:42.649687pt;}
.h39{height:42.777000pt;}
.h2e{height:58.563750pt;}
.h25{height:63.656250pt;}
.ha{height:70.696250pt;}
.h33{height:82.600250pt;}
.h24{height:84.662813pt;}
.h23{height:84.790125pt;}
.h20{height:87.025095pt;}
.h1c{height:87.025125pt;}
.h10{height:87.025458pt;}
.h14{height:87.025573pt;}
.h12{height:87.156215pt;}
.h16{height:87.156380pt;}
.h18{height:87.156413pt;}
.h2b{height:87.156562pt;}
.h1a{height:87.156807pt;}
.h22{height:87.156930pt;}
.h1e{height:87.156945pt;}
.h2c{height:87.287625pt;}
.h3{height:90.391875pt;}
.h6{height:95.484375pt;}
.h9{height:95.611688pt;}
.h8{height:98.296875pt;}
.h34{height:105.640250pt;}
.h26{height:106.305937pt;}
.h28{height:106.433250pt;}
.h3b{height:107.944250pt;}
.h7{height:109.437187pt;}
.h5{height:109.568250pt;}
.h31{height:111.398438pt;}
.h32{height:111.525750pt;}
.h30{height:114.679688pt;}
.h2f{height:114.810750pt;}
.h2{height:119.266875pt;}
.h29{height:127.312500pt;}
.h2a{height:127.439813pt;}
.h36{height:131.062500pt;}
.h35{height:131.193562pt;}
.hd{height:148.319063pt;}
.he{height:148.446375pt;}
.h2d{height:179.423229pt;}
.h1{height:192.006563pt;}
.h4{height:218.350125pt;}
.hc{height:240.499687pt;}
.hb{height:240.630750pt;}
.h27{height:327.787312pt;}
.h0{height:720.000000pt;}
.w4{width:12.480000pt;}
.w8{width:13.440000pt;}
.w9{width:13.600000pt;}
.w6{width:13.760000pt;}
.wa{width:13.920000pt;}
.wb{width:15.040000pt;}
.w2{width:16.160000pt;}
.w5{width:17.440000pt;}
.w7{width:17.600000pt;}
.w3{width:18.720000pt;}
.wc{width:262.426667pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x15{left:5.413333pt;}
.xf{left:6.746667pt;}
.x11{left:8.160000pt;}
.xb{left:9.786667pt;}
.x9{left:11.266667pt;}
.x31{left:14.271981pt;}
.x32{left:57.791981pt;}
.x1{left:76.287981pt;}
.x3f{left:83.551981pt;}
.x2{left:97.599981pt;}
.x50{left:121.599981pt;}
.x2c{left:139.266648pt;}
.x3d{left:140.386648pt;}
.x27{left:143.706648pt;}
.x51{left:145.626648pt;}
.x40{left:148.506648pt;}
.x52{left:169.626648pt;}
.x2f{left:177.666648pt;}
.x3e{left:192.386648pt;}
.x33{left:220.386648pt;}
.x34{left:221.986648pt;}
.x41{left:229.666648pt;}
.x2b{left:231.613314pt;}
.x25{left:245.373314pt;}
.x26{left:264.573314pt;}
.x4e{left:285.093314pt;}
.x3b{left:348.866648pt;}
.x37{left:392.066648pt;}
.x36{left:435.106648pt;}
.x35{left:451.746648pt;}
.x3{left:455.999981pt;}
.x2e{left:467.199981pt;}
.x4{left:469.119981pt;}
.x45{left:477.186648pt;}
.x22{left:488.226648pt;}
.x46{left:489.346648pt;}
.x55{left:496.133314pt;}
.x43{left:499.746648pt;}
.x23{left:506.146648pt;}
.x5{left:507.359981pt;}
.x56{left:520.866667pt;}
.x6{left:531.386648pt;}
.x42{left:536.159981pt;}
.x7{left:560.959981pt;}
.x8{left:572.480000pt;}
.x21{left:575.013314pt;}
.xa{left:578.560000pt;}
.xc{left:586.560000pt;}
.xd{left:590.240000pt;}
.xe{left:600.480000pt;}
.x20{left:601.573314pt;}
.x44{left:603.906648pt;}
.x10{left:609.920000pt;}
.x12{left:622.080000pt;}
.x28{left:623.453314pt;}
.x13{left:628.640000pt;}
.x14{left:636.160000pt;}
.x16{left:644.800000pt;}
.x53{left:683.386648pt;}
.x30{left:738.173314pt;}
.x38{left:755.906648pt;}
.x17{left:757.893314pt;}
.x3c{left:784.639981pt;}
.x2d{left:858.786648pt;}
.x49{left:890.533314pt;}
.x47{left:897.986648pt;}
.x1e{left:907.999981pt;}
.x1d{left:913.599981pt;}
.x18{left:917.279981pt;}
.x4b{left:924.453314pt;}
.x4c{left:925.893314pt;}
.x3a{left:928.319981pt;}
.x39{left:930.239981pt;}
.x48{left:938.853314pt;}
.x19{left:948.573314pt;}
.x4f{left:973.413314pt;}
.x4a{left:994.693314pt;}
.x1a{left:996.186648pt;}
.x29{left:1001.506648pt;}
.x4d{left:1013.599981pt;}
.x2a{left:1019.586648pt;}
.x1f{left:1067.039981pt;}
.x1b{left:1094.786648pt;}
.x1c{left:1126.106648pt;}
.x54{left:1166.053314pt;}
.x24{left:1174.239981pt;}
}




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