
    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_44ab2ef4ff2bc355e74aa6bc.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_0c2a209ce8a4a0f56866dc20.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_0cd278200e95cab5bdb5eaa9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_6df5a23a0dbdb070f02a88f5.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_f052c0fda828ea5e1a8155cc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_09fc16acf992dae15913b990.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_930dc91e6b0c1d3a6a97904d.woff')format("woff");}.ff7{font-family:ff7;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:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls13{letter-spacing:-0.444600px;}
.ls25{letter-spacing:-0.243600px;}
.lse{letter-spacing:-0.186600px;}
.ls27{letter-spacing:-0.160800px;}
.ls23{letter-spacing:-0.153600px;}
.lsb{letter-spacing:-0.135000px;}
.ls12{letter-spacing:-0.121200px;}
.lsa{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.lsf{letter-spacing:-0.064800px;}
.ls14{letter-spacing:-0.049680px;}
.ls16{letter-spacing:-0.011160px;}
.ls24{letter-spacing:-0.009000px;}
.ls8{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.011520px;}
.ls28{letter-spacing:0.020160px;}
.ls10{letter-spacing:0.045360px;}
.ls18{letter-spacing:0.048960px;}
.ls22{letter-spacing:0.053280px;}
.ls1e{letter-spacing:0.060600px;}
.ls1c{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls11{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls26{letter-spacing:0.113400px;}
.ls7{letter-spacing:0.116400px;}
.ls9{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls6{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.206640px;}
.ls15{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls1a{letter-spacing:0.453600px;}
.ls1f{letter-spacing:1.152000px;}
.ls1b{letter-spacing:6.213600px;}
.ls21{letter-spacing:47.726640px;}
.ls1d{letter-spacing:63.566640px;}
.ls20{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;}
}
.wsd{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.ws13{word-spacing:-13.342800px;}
.ws15{word-spacing:-13.339800px;}
.ws10{word-spacing:-13.279680px;}
.wsb{word-spacing:-13.275360px;}
.ws17{word-spacing:-13.246560px;}
.ws3{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.217400px;}
.wsa{word-spacing:-13.215240px;}
.ws6{word-spacing:-13.161600px;}
.ws12{word-spacing:-13.141800px;}
.wsf{word-spacing:-13.072800px;}
.ws16{word-spacing:-13.065600px;}
.ws5{word-spacing:-13.039800px;}
.ws14{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wse{word-spacing:-9.705600px;}
.ws9{word-spacing:-8.625600px;}
.wsc{word-spacing:-8.614200px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
._d{margin-left:-4.023600px;}
._c{margin-left:-2.830080px;}
._0{margin-left:-1.110000px;}
._2{width:1.090104px;}
._6{width:2.224200px;}
._7{width:3.335285px;}
._5{width:4.402559px;}
._4{width:5.711400px;}
._3{width:6.924960px;}
._8{width:8.165040px;}
._a{width:9.378720px;}
._b{width:10.514160px;}
._9{width:12.139080px;}
._10{width:15.210360px;}
._1{width:16.776084px;}
._f{width:17.895960px;}
._e{width:18.981756px;}
._12{width:20.497920px;}
._11{width:21.522960px;}
._1e{width:23.266440px;}
._1f{width:24.290400px;}
._13{width:25.611120px;}
._1a{width:26.683680px;}
._14{width:28.171080px;}
._1b{width:29.387520px;}
._16{width:39.041640px;}
._17{width:40.052520px;}
._1d{width:43.353480px;}
._1c{width:44.396400px;}
._15{width:52.665120px;}
._18{width:189.582120px;}
._19{width:190.854840px;}
.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;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y5d{bottom:114.240000px;}
.yd5{bottom:115.770000px;}
.y5c{bottom:131.790000px;}
.yd4{bottom:133.410000px;}
.y91{bottom:135.390000px;}
.yca{bottom:136.560000px;}
.y5b{bottom:149.340000px;}
.yf3{bottom:150.330000px;}
.yd3{bottom:150.960000px;}
.y117{bottom:159.510000px;}
.y5a{bottom:166.980000px;}
.y90{bottom:170.940000px;}
.yc9{bottom:172.110000px;}
.yb8{bottom:172.650000px;}
.y116{bottom:177.060000px;}
.yf2{bottom:177.240000px;}
.yd2{bottom:177.870000px;}
.y59{bottom:184.530000px;}
.y8f{bottom:188.580000px;}
.yc8{bottom:189.750000px;}
.y115{bottom:194.610000px;}
.y25{bottom:195.330000px;}
.y58{bottom:202.170000px;}
.y8e{bottom:206.130000px;}
.yb7{bottom:208.290000px;}
.y57{bottom:219.720000px;}
.y114{bottom:221.250000px;}
.yc7{bottom:221.970000px;}
.y8d{bottom:223.680000px;}
.yf1{bottom:225.570000px;}
.yb6{bottom:225.840000px;}
.yd1{bottom:226.110000px;}
.y24{bottom:232.320000px;}
.y56{bottom:237.270000px;}
.y113{bottom:238.800000px;}
.y8c{bottom:241.320000px;}
.yf0{bottom:243.120000px;}
.yb5{bottom:243.390000px;}
.yd0{bottom:243.750000px;}
.y23{bottom:249.870000px;}
.y55{bottom:254.910000px;}
.y8b{bottom:258.870000px;}
.y112{bottom:265.440000px;}
.yef{bottom:270.030000px;}
.y54{bottom:272.460000px;}
.ycf{bottom:275.970000px;}
.yb4{bottom:279.030000px;}
.y111{bottom:282.990000px;}
.y22{bottom:285.510000px;}
.y53{bottom:290.100000px;}
.y8a{bottom:294.510000px;}
.y21{bottom:303.060000px;}
.yb3{bottom:305.580000px;}
.yee{bottom:307.020000px;}
.y52{bottom:307.650000px;}
.y110{bottom:309.540000px;}
.y89{bottom:312.060000px;}
.y20{bottom:320.700000px;}
.y10f{bottom:327.180000px;}
.y88{bottom:329.610000px;}
.yed{bottom:333.930000px;}
.y1f{bottom:338.250000px;}
.yb2{bottom:341.490000px;}
.y51{bottom:343.200000px;}
.y87{bottom:347.250000px;}
.y10e{bottom:353.730000px;}
.y1e{bottom:355.800000px;}
.y50{bottom:360.840000px;}
.y86{bottom:364.800000px;}
.yec{bottom:371.010000px;}
.y1d{bottom:373.440000px;}
.y4f{bottom:378.390000px;}
.y10d{bottom:380.370000px;}
.y85{bottom:382.440000px;}
.yeb{bottom:388.560000px;}
.yb1{bottom:389.730000px;}
.y1c{bottom:390.990000px;}
.y4e{bottom:395.940000px;}
.yc2{bottom:399.000000px;}
.y84{bottom:399.990000px;}
.y10c{bottom:406.920000px;}
.yb0{bottom:407.370000px;}
.y4d{bottom:413.580000px;}
.yea{bottom:415.470000px;}
.y83{bottom:417.540000px;}
.yaf{bottom:424.920000px;}
.y1b{bottom:426.630000px;}
.y4c{bottom:431.130000px;}
.y10b{bottom:433.470000px;}
.yc1{bottom:434.640000px;}
.y82{bottom:435.180000px;}
.y1a{bottom:444.180000px;}
.y4b{bottom:448.770000px;}
.y10a{bottom:451.110000px;}
.yae{bottom:451.560000px;}
.yc0{bottom:452.190000px;}
.y81{bottom:452.730000px;}
.ye9{bottom:452.820000px;}
.y19{bottom:461.730000px;}
.y4a{bottom:466.320000px;}
.y80{bottom:470.400000px;}
.y109{bottom:477.690000px;}
.y18{bottom:479.400000px;}
.y49{bottom:483.900000px;}
.ybf{bottom:484.440000px;}
.yad{bottom:487.050000px;}
.y7f{bottom:487.950000px;}
.y108{bottom:495.330000px;}
.y17{bottom:496.950000px;}
.ye8{bottom:501.090000px;}
.y48{bottom:501.540000px;}
.yac{bottom:505.500000px;}
.y7e{bottom:509.280000px;}
.y107{bottom:512.880000px;}
.y16{bottom:514.590000px;}
.ye7{bottom:518.730000px;}
.y47{bottom:519.090000px;}
.y7d{bottom:523.140000px;}
.yab{bottom:523.950000px;}
.y15{bottom:532.140000px;}
.ye6{bottom:536.280000px;}
.y46{bottom:536.730000px;}
.y106{bottom:539.430000px;}
.y7c{bottom:540.690000px;}
.yaa{bottom:542.310000px;}
.y14{bottom:549.690000px;}
.y105{bottom:557.070000px;}
.ya9{bottom:560.760000px;}
.ye5{bottom:563.190000px;}
.y45{bottom:572.280000px;}
.y7b{bottom:576.330000px;}
.y104{bottom:583.620000px;}
.y13{bottom:585.330000px;}
.y44{bottom:589.830000px;}
.y7a{bottom:593.880000px;}
.ya8{bottom:597.210000px;}
.y103{bottom:601.260000px;}
.y12{bottom:602.880000px;}
.y43{bottom:607.470000px;}
.y79{bottom:611.430000px;}
.ya7{bottom:614.760000px;}
.y42{bottom:625.020000px;}
.y102{bottom:627.810000px;}
.y78{bottom:629.070000px;}
.y11{bottom:629.790000px;}
.ya6{bottom:641.400000px;}
.y41{bottom:642.660000px;}
.y101{bottom:645.360000px;}
.y77{bottom:646.620000px;}
.yc6{bottom:655.080000px;}
.y40{bottom:660.210000px;}
.y76{bottom:664.260000px;}
.y100{bottom:672.000000px;}
.ya5{bottom:676.950000px;}
.y3f{bottom:677.760000px;}
.y10{bottom:678.030000px;}
.y75{bottom:681.810000px;}
.yce{bottom:686.580000px;}
.yff{bottom:689.550000px;}
.yc5{bottom:690.720000px;}
.ya4{bottom:694.590000px;}
.y3e{bottom:695.400000px;}
.y74{bottom:699.360000px;}
.yc4{bottom:708.270000px;}
.ya3{bottom:712.140000px;}
.y3d{bottom:712.950000px;}
.yf{bottom:713.850000px;}
.yfe{bottom:716.190000px;}
.ye4{bottom:717.000000px;}
.ycd{bottom:722.220000px;}
.ya2{bottom:729.690000px;}
.y3c{bottom:730.590000px;}
.yfd{bottom:733.740000px;}
.y11f{bottom:734.190000px;}
.ye3{bottom:734.550000px;}
.y73{bottom:735.000000px;}
.ycc{bottom:739.770000px;}
.yc3{bottom:740.490000px;}
.y3b{bottom:748.140000px;}
.ye{bottom:749.850000px;}
.ye2{bottom:752.190000px;}
.y72{bottom:752.550000px;}
.ya1{bottom:756.330000px;}
.yfc{bottom:760.290000px;}
.y11e{bottom:760.740000px;}
.y3a{bottom:765.690000px;}
.ye1{bottom:769.740000px;}
.y71{bottom:770.190000px;}
.ycb{bottom:771.990000px;}
.yfb{bottom:777.930000px;}
.y39{bottom:783.330000px;}
.yd{bottom:785.850000px;}
.ye0{bottom:787.290000px;}
.y70{bottom:787.740000px;}
.ya0{bottom:791.880000px;}
.yfa{bottom:804.480000px;}
.ydf{bottom:804.930000px;}
.y6f{bottom:805.290000px;}
.yc{bottom:807.630000px;}
.y9f{bottom:809.520000px;}
.y38{bottom:818.880000px;}
.yf9{bottom:822.030000px;}
.yb{bottom:825.630000px;}
.y6e{bottom:826.710000px;}
.y9e{bottom:827.070000px;}
.y11d{bottom:831.480000px;}
.y37{bottom:836.520000px;}
.y6d{bottom:840.480000px;}
.ya{bottom:843.630000px;}
.y9d{bottom:844.620000px;}
.yf8{bottom:848.670000px;}
.y11c{bottom:849.030000px;}
.y36{bottom:854.070000px;}
.y9{bottom:857.850000px;}
.yde{bottom:858.030000px;}
.y9c{bottom:862.260000px;}
.yf7{bottom:866.220000px;}
.y35{bottom:871.620000px;}
.ydd{bottom:875.670000px;}
.y6c{bottom:876.030000px;}
.y8{bottom:879.630000px;}
.y9b{bottom:879.810000px;}
.y34{bottom:889.260000px;}
.ybe{bottom:892.860000px;}
.ydc{bottom:893.220000px;}
.y6b{bottom:893.670000px;}
.y9a{bottom:897.450000px;}
.y7{bottom:897.630000px;}
.y33{bottom:906.810000px;}
.ybd{bottom:910.410000px;}
.ydb{bottom:910.860000px;}
.y6a{bottom:911.220000px;}
.y99{bottom:924.000000px;}
.y32{bottom:924.450000px;}
.ybc{bottom:927.960000px;}
.yda{bottom:928.410000px;}
.y69{bottom:928.860000px;}
.y6{bottom:929.940000px;}
.y11b{bottom:937.410000px;}
.yd9{bottom:945.960000px;}
.y68{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.yf6{bottom:954.600000px;}
.y11a{bottom:954.960000px;}
.y98{bottom:959.550000px;}
.y31{bottom:960.000000px;}
.ybb{bottom:963.600000px;}
.y67{bottom:963.960000px;}
.y119{bottom:972.600000px;}
.y97{bottom:977.190000px;}
.y30{bottom:977.550000px;}
.yba{bottom:981.150000px;}
.yd8{bottom:981.600000px;}
.y66{bottom:985.380000px;}
.y4{bottom:987.630000px;}
.y96{bottom:994.740000px;}
.y2f{bottom:995.190000px;}
.yb9{bottom:998.790000px;}
.y65{bottom:999.150000px;}
.yf5{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y2e{bottom:1012.770000px;}
.y64{bottom:1016.820000px;}
.y95{bottom:1029.960000px;}
.y2d{bottom:1030.320000px;}
.y63{bottom:1034.370000px;}
.y94{bottom:1047.510000px;}
.y2c{bottom:1047.960000px;}
.y62{bottom:1051.920000px;}
.y118{bottom:1060.920000px;}
.y93{bottom:1065.150000px;}
.y2b{bottom:1065.510000px;}
.y61{bottom:1069.560000px;}
.yd7{bottom:1069.920000px;}
.yf4{bottom:1078.560000px;}
.y2a{bottom:1083.150000px;}
.yd6{bottom:1091.340000px;}
.y92{bottom:1091.700000px;}
.y29{bottom:1100.700000px;}
.y60{bottom:1105.110000px;}
.y5f{bottom:1122.750000px;}
.y28{bottom:1127.610000px;}
.y5e{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.hb{height:37.191445px;}
.h3{height:39.155273px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.hd{height:61.793886px;}
.hc{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.x10{left:71.729987px;}
.x9{left:80.909987px;}
.x6{left:92.699987px;}
.x4{left:95.039987px;}
.x12{left:111.239987px;}
.x2{left:202.799987px;}
.xa{left:259.769987px;}
.x7{left:302.519987px;}
.xe{left:329.429987px;}
.xc{left:404.759987px;}
.x11{left:431.849987px;}
.xf{left:740.309987px;}
.x5{left:750.389987px;}
.xd{left:751.559987px;}
.xb{left:753.809987px;}
.x8{left:761.639987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls13{letter-spacing:-0.395200pt;}
.ls25{letter-spacing:-0.216533pt;}
.lse{letter-spacing:-0.165867pt;}
.ls27{letter-spacing:-0.142933pt;}
.ls23{letter-spacing:-0.136533pt;}
.lsb{letter-spacing:-0.120000pt;}
.ls12{letter-spacing:-0.107733pt;}
.lsa{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.lsf{letter-spacing:-0.057600pt;}
.ls14{letter-spacing:-0.044160pt;}
.ls16{letter-spacing:-0.009920pt;}
.ls24{letter-spacing:-0.008000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.010240pt;}
.ls28{letter-spacing:0.017920pt;}
.ls10{letter-spacing:0.040320pt;}
.ls18{letter-spacing:0.043520pt;}
.ls22{letter-spacing:0.047360pt;}
.ls1e{letter-spacing:0.053867pt;}
.ls1c{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls11{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls26{letter-spacing:0.100800pt;}
.ls7{letter-spacing:0.103467pt;}
.ls9{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls6{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.183680pt;}
.ls15{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls1a{letter-spacing:0.403200pt;}
.ls1f{letter-spacing:1.024000pt;}
.ls1b{letter-spacing:5.523200pt;}
.ls21{letter-spacing:42.423680pt;}
.ls1d{letter-spacing:56.503680pt;}
.ls20{letter-spacing:71.863680pt;}
.wsd{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.ws13{word-spacing:-11.860267pt;}
.ws15{word-spacing:-11.857600pt;}
.ws10{word-spacing:-11.804160pt;}
.wsb{word-spacing:-11.800320pt;}
.ws17{word-spacing:-11.774720pt;}
.ws3{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.748800pt;}
.wsa{word-spacing:-11.746880pt;}
.ws6{word-spacing:-11.699200pt;}
.ws12{word-spacing:-11.681600pt;}
.wsf{word-spacing:-11.620267pt;}
.ws16{word-spacing:-11.613867pt;}
.ws5{word-spacing:-11.590933pt;}
.ws14{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wse{word-spacing:-8.627200pt;}
.ws9{word-spacing:-7.667200pt;}
.wsc{word-spacing:-7.657067pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
._d{margin-left:-3.576533pt;}
._c{margin-left:-2.515627pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.968982pt;}
._6{width:1.977066pt;}
._7{width:2.964698pt;}
._5{width:3.913386pt;}
._4{width:5.076800pt;}
._3{width:6.155520pt;}
._8{width:7.257813pt;}
._a{width:8.336640pt;}
._b{width:9.345920pt;}
._9{width:10.790293pt;}
._10{width:13.520320pt;}
._1{width:14.912075pt;}
._f{width:15.907520pt;}
._e{width:16.872672pt;}
._12{width:18.220373pt;}
._11{width:19.131520pt;}
._1e{width:20.681280pt;}
._1f{width:21.591467pt;}
._13{width:22.765440pt;}
._1a{width:23.718827pt;}
._14{width:25.040960pt;}
._1b{width:26.122240pt;}
._16{width:34.703680pt;}
._17{width:35.602240pt;}
._1d{width:38.536427pt;}
._1c{width:39.463467pt;}
._15{width:46.813440pt;}
._18{width:168.517440pt;}
._19{width:169.648747pt;}
.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;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y5d{bottom:101.546667pt;}
.yd5{bottom:102.906667pt;}
.y5c{bottom:117.146667pt;}
.yd4{bottom:118.586667pt;}
.y91{bottom:120.346667pt;}
.yca{bottom:121.386667pt;}
.y5b{bottom:132.746667pt;}
.yf3{bottom:133.626667pt;}
.yd3{bottom:134.186667pt;}
.y117{bottom:141.786667pt;}
.y5a{bottom:148.426667pt;}
.y90{bottom:151.946667pt;}
.yc9{bottom:152.986667pt;}
.yb8{bottom:153.466667pt;}
.y116{bottom:157.386667pt;}
.yf2{bottom:157.546667pt;}
.yd2{bottom:158.106667pt;}
.y59{bottom:164.026667pt;}
.y8f{bottom:167.626667pt;}
.yc8{bottom:168.666667pt;}
.y115{bottom:172.986667pt;}
.y25{bottom:173.626667pt;}
.y58{bottom:179.706667pt;}
.y8e{bottom:183.226667pt;}
.yb7{bottom:185.146667pt;}
.y57{bottom:195.306667pt;}
.y114{bottom:196.666667pt;}
.yc7{bottom:197.306667pt;}
.y8d{bottom:198.826667pt;}
.yf1{bottom:200.506667pt;}
.yb6{bottom:200.746667pt;}
.yd1{bottom:200.986667pt;}
.y24{bottom:206.506667pt;}
.y56{bottom:210.906667pt;}
.y113{bottom:212.266667pt;}
.y8c{bottom:214.506667pt;}
.yf0{bottom:216.106667pt;}
.yb5{bottom:216.346667pt;}
.yd0{bottom:216.666667pt;}
.y23{bottom:222.106667pt;}
.y55{bottom:226.586667pt;}
.y8b{bottom:230.106667pt;}
.y112{bottom:235.946667pt;}
.yef{bottom:240.026667pt;}
.y54{bottom:242.186667pt;}
.ycf{bottom:245.306667pt;}
.yb4{bottom:248.026667pt;}
.y111{bottom:251.546667pt;}
.y22{bottom:253.786667pt;}
.y53{bottom:257.866667pt;}
.y8a{bottom:261.786667pt;}
.y21{bottom:269.386667pt;}
.yb3{bottom:271.626667pt;}
.yee{bottom:272.906667pt;}
.y52{bottom:273.466667pt;}
.y110{bottom:275.146667pt;}
.y89{bottom:277.386667pt;}
.y20{bottom:285.066667pt;}
.y10f{bottom:290.826667pt;}
.y88{bottom:292.986667pt;}
.yed{bottom:296.826667pt;}
.y1f{bottom:300.666667pt;}
.yb2{bottom:303.546667pt;}
.y51{bottom:305.066667pt;}
.y87{bottom:308.666667pt;}
.y10e{bottom:314.426667pt;}
.y1e{bottom:316.266667pt;}
.y50{bottom:320.746667pt;}
.y86{bottom:324.266667pt;}
.yec{bottom:329.786667pt;}
.y1d{bottom:331.946667pt;}
.y4f{bottom:336.346667pt;}
.y10d{bottom:338.106667pt;}
.y85{bottom:339.946667pt;}
.yeb{bottom:345.386667pt;}
.yb1{bottom:346.426667pt;}
.y1c{bottom:347.546667pt;}
.y4e{bottom:351.946667pt;}
.yc2{bottom:354.666667pt;}
.y84{bottom:355.546667pt;}
.y10c{bottom:361.706667pt;}
.yb0{bottom:362.106667pt;}
.y4d{bottom:367.626667pt;}
.yea{bottom:369.306667pt;}
.y83{bottom:371.146667pt;}
.yaf{bottom:377.706667pt;}
.y1b{bottom:379.226667pt;}
.y4c{bottom:383.226667pt;}
.y10b{bottom:385.306667pt;}
.yc1{bottom:386.346667pt;}
.y82{bottom:386.826667pt;}
.y1a{bottom:394.826667pt;}
.y4b{bottom:398.906667pt;}
.y10a{bottom:400.986667pt;}
.yae{bottom:401.386667pt;}
.yc0{bottom:401.946667pt;}
.y81{bottom:402.426667pt;}
.ye9{bottom:402.506667pt;}
.y19{bottom:410.426667pt;}
.y4a{bottom:414.506667pt;}
.y80{bottom:418.133333pt;}
.y109{bottom:424.613333pt;}
.y18{bottom:426.133333pt;}
.y49{bottom:430.133333pt;}
.ybf{bottom:430.613333pt;}
.yad{bottom:432.933333pt;}
.y7f{bottom:433.733333pt;}
.y108{bottom:440.293333pt;}
.y17{bottom:441.733333pt;}
.ye8{bottom:445.413333pt;}
.y48{bottom:445.813333pt;}
.yac{bottom:449.333333pt;}
.y7e{bottom:452.693333pt;}
.y107{bottom:455.893333pt;}
.y16{bottom:457.413333pt;}
.ye7{bottom:461.093333pt;}
.y47{bottom:461.413333pt;}
.y7d{bottom:465.013333pt;}
.yab{bottom:465.733333pt;}
.y15{bottom:473.013333pt;}
.ye6{bottom:476.693333pt;}
.y46{bottom:477.093333pt;}
.y106{bottom:479.493333pt;}
.y7c{bottom:480.613333pt;}
.yaa{bottom:482.053333pt;}
.y14{bottom:488.613333pt;}
.y105{bottom:495.173333pt;}
.ya9{bottom:498.453333pt;}
.ye5{bottom:500.613333pt;}
.y45{bottom:508.693333pt;}
.y7b{bottom:512.293333pt;}
.y104{bottom:518.773333pt;}
.y13{bottom:520.293333pt;}
.y44{bottom:524.293333pt;}
.y7a{bottom:527.893333pt;}
.ya8{bottom:530.853333pt;}
.y103{bottom:534.453333pt;}
.y12{bottom:535.893333pt;}
.y43{bottom:539.973333pt;}
.y79{bottom:543.493333pt;}
.ya7{bottom:546.453333pt;}
.y42{bottom:555.573333pt;}
.y102{bottom:558.053333pt;}
.y78{bottom:559.173333pt;}
.y11{bottom:559.813333pt;}
.ya6{bottom:570.133333pt;}
.y41{bottom:571.253333pt;}
.y101{bottom:573.653333pt;}
.y77{bottom:574.773333pt;}
.yc6{bottom:582.293333pt;}
.y40{bottom:586.853333pt;}
.y76{bottom:590.453333pt;}
.y100{bottom:597.333333pt;}
.ya5{bottom:601.733333pt;}
.y3f{bottom:602.453333pt;}
.y10{bottom:602.693333pt;}
.y75{bottom:606.053333pt;}
.yce{bottom:610.293333pt;}
.yff{bottom:612.933333pt;}
.yc5{bottom:613.973333pt;}
.ya4{bottom:617.413333pt;}
.y3e{bottom:618.133333pt;}
.y74{bottom:621.653333pt;}
.yc4{bottom:629.573333pt;}
.ya3{bottom:633.013333pt;}
.y3d{bottom:633.733333pt;}
.yf{bottom:634.533333pt;}
.yfe{bottom:636.613333pt;}
.ye4{bottom:637.333333pt;}
.ycd{bottom:641.973333pt;}
.ya2{bottom:648.613333pt;}
.y3c{bottom:649.413333pt;}
.yfd{bottom:652.213333pt;}
.y11f{bottom:652.613333pt;}
.ye3{bottom:652.933333pt;}
.y73{bottom:653.333333pt;}
.ycc{bottom:657.573333pt;}
.yc3{bottom:658.213333pt;}
.y3b{bottom:665.013333pt;}
.ye{bottom:666.533333pt;}
.ye2{bottom:668.613333pt;}
.y72{bottom:668.933333pt;}
.ya1{bottom:672.293333pt;}
.yfc{bottom:675.813333pt;}
.y11e{bottom:676.213333pt;}
.y3a{bottom:680.613333pt;}
.ye1{bottom:684.213333pt;}
.y71{bottom:684.613333pt;}
.ycb{bottom:686.213333pt;}
.yfb{bottom:691.493333pt;}
.y39{bottom:696.293333pt;}
.yd{bottom:698.533333pt;}
.ye0{bottom:699.813333pt;}
.y70{bottom:700.213333pt;}
.ya0{bottom:703.893333pt;}
.yfa{bottom:715.093333pt;}
.ydf{bottom:715.493333pt;}
.y6f{bottom:715.813333pt;}
.yc{bottom:717.893333pt;}
.y9f{bottom:719.573333pt;}
.y38{bottom:727.893333pt;}
.yf9{bottom:730.693333pt;}
.yb{bottom:733.893333pt;}
.y6e{bottom:734.853333pt;}
.y9e{bottom:735.173333pt;}
.y11d{bottom:739.093333pt;}
.y37{bottom:743.573333pt;}
.y6d{bottom:747.093333pt;}
.ya{bottom:749.893333pt;}
.y9d{bottom:750.773333pt;}
.yf8{bottom:754.373333pt;}
.y11c{bottom:754.693333pt;}
.y36{bottom:759.173333pt;}
.y9{bottom:762.533333pt;}
.yde{bottom:762.693333pt;}
.y9c{bottom:766.453333pt;}
.yf7{bottom:769.973333pt;}
.y35{bottom:774.773333pt;}
.ydd{bottom:778.373333pt;}
.y6c{bottom:778.693333pt;}
.y8{bottom:781.893333pt;}
.y9b{bottom:782.053333pt;}
.y34{bottom:790.453333pt;}
.ybe{bottom:793.653333pt;}
.ydc{bottom:793.973333pt;}
.y6b{bottom:794.373333pt;}
.y9a{bottom:797.733333pt;}
.y7{bottom:797.893333pt;}
.y33{bottom:806.053333pt;}
.ybd{bottom:809.253333pt;}
.ydb{bottom:809.653333pt;}
.y6a{bottom:809.973333pt;}
.y99{bottom:821.333333pt;}
.y32{bottom:821.733333pt;}
.ybc{bottom:824.853333pt;}
.yda{bottom:825.253333pt;}
.y69{bottom:825.653333pt;}
.y6{bottom:826.613333pt;}
.y11b{bottom:833.253333pt;}
.yd9{bottom:840.853333pt;}
.y68{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.yf6{bottom:848.533333pt;}
.y11a{bottom:848.853333pt;}
.y98{bottom:852.933333pt;}
.y31{bottom:853.333333pt;}
.ybb{bottom:856.533333pt;}
.y67{bottom:856.853333pt;}
.y119{bottom:864.533333pt;}
.y97{bottom:868.613333pt;}
.y30{bottom:868.933333pt;}
.yba{bottom:872.133333pt;}
.yd8{bottom:872.533333pt;}
.y66{bottom:875.893333pt;}
.y4{bottom:877.893333pt;}
.y96{bottom:884.213333pt;}
.y2f{bottom:884.613333pt;}
.yb9{bottom:887.813333pt;}
.y65{bottom:888.133333pt;}
.yf5{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y2e{bottom:900.240000pt;}
.y64{bottom:903.840000pt;}
.y95{bottom:915.520000pt;}
.y2d{bottom:915.840000pt;}
.y63{bottom:919.440000pt;}
.y94{bottom:931.120000pt;}
.y2c{bottom:931.520000pt;}
.y62{bottom:935.040000pt;}
.y118{bottom:943.040000pt;}
.y93{bottom:946.800000pt;}
.y2b{bottom:947.120000pt;}
.y61{bottom:950.720000pt;}
.yd7{bottom:951.040000pt;}
.yf4{bottom:958.720000pt;}
.y2a{bottom:962.800000pt;}
.yd6{bottom:970.080000pt;}
.y92{bottom:970.400000pt;}
.y29{bottom:978.400000pt;}
.y60{bottom:982.320000pt;}
.y5f{bottom:998.000000pt;}
.y28{bottom:1002.320000pt;}
.y5e{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.hb{height:33.059063pt;}
.h3{height:34.804688pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.hd{height:54.927899pt;}
.hc{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.x10{left:63.759988pt;}
.x9{left:71.919988pt;}
.x6{left:82.399988pt;}
.x4{left:84.479988pt;}
.x12{left:98.879988pt;}
.x2{left:180.266655pt;}
.xa{left:230.906655pt;}
.x7{left:268.906655pt;}
.xe{left:292.826655pt;}
.xc{left:359.786655pt;}
.x11{left:383.866655pt;}
.xf{left:658.053322pt;}
.x5{left:667.013322pt;}
.xd{left:668.053322pt;}
.xb{left:670.053322pt;}
.x8{left:677.013322pt;}
.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; }
  