
    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_e78e0e4a3c00aded7b7722c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.853516;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_96abbe3d5feb35c651a2133b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.100098;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_1b7d18bc33dc0c042e2ab8b9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c79104297dfe79081faeb83f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.932129;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_67ac68311771808dc41a1464.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932129;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_3444031a1a3d8f42ab72e3b3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_cc536e093629d323803497ef.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_32ae70cf831ff2820f4b31d4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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:ffb;src:url('chunks/assets/font_7ccd5436d3a0499cf81cadfb.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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:ffc;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-3.396000px;}
.lsb{letter-spacing:-1.260000px;}
.ls9{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.066000px;}
.ls10{letter-spacing:0.135600px;}
.ls7{letter-spacing:0.147000px;}
.ls14{letter-spacing:0.169800px;}
.ls5{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.198000px;}
.ls0{letter-spacing:0.233280px;}
.ls8{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.298800px;}
.ls3{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.900000px;}
.ls11{letter-spacing:1.620000px;}
.ls12{letter-spacing:6.660000px;}
.ls4{letter-spacing:13.860000px;}
.ls16{letter-spacing:16.506720px;}
.ls15{letter-spacing:46.026720px;}
.lsf{letter-spacing:75.960000px;}
.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;}
}
.ws1{word-spacing:-17.965560px;}
.ws0{word-spacing:-17.818560px;}
.ws4{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.580000px;}
.ws3{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._5{margin-left:-1434.193920px;}
._4{margin-left:-1087.505280px;}
._6{margin-left:-610.974720px;}
._7{margin-left:-540.544560px;}
._3{margin-left:-467.576640px;}
._1{margin-left:-419.958720px;}
._15{margin-left:-5.824800px;}
._b{margin-left:-4.654080px;}
._c{margin-left:-2.988000px;}
._0{margin-left:-1.192320px;}
._2{width:1.592640px;}
._a{width:2.968080px;}
._d{width:4.334640px;}
._e{width:5.796720px;}
._13{width:7.103520px;}
._11{width:8.424480px;}
._10{width:9.681120px;}
._12{width:11.657280px;}
._f{width:13.460160px;}
._14{width:16.135200px;}
._16{width:17.549760px;}
._1b{width:19.087200px;}
._1c{width:20.355120px;}
._19{width:24.776640px;}
._18{width:25.840080px;}
._9{width:34.737840px;}
._8{width:35.977440px;}
._17{width:36.978960px;}
._1a{width:126.540240px;}
.fc4{color:transparent;}
.fc3{color:rgb(91,155,213);}
.fc5{color:rgb(47,84,150);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:113.760000px;}
.y0{bottom:0.000000px;}
.y77{bottom:5.760000px;}
.ya7{bottom:5.940000px;}
.y9d{bottom:5.970000px;}
.yb{bottom:6.120000px;}
.y91{bottom:7.020000px;}
.y65{bottom:7.740000px;}
.ya{bottom:7.920000px;}
.y9a{bottom:10.440000px;}
.y96{bottom:10.620000px;}
.y67{bottom:13.860000px;}
.yaa{bottom:14.220000px;}
.ya6{bottom:14.580000px;}
.y69{bottom:14.760000px;}
.y6e{bottom:14.790000px;}
.y74{bottom:14.940000px;}
.y70{bottom:15.660000px;}
.y72{bottom:15.690000px;}
.ya4{bottom:17.280000px;}
.yae{bottom:17.820000px;}
.yac{bottom:18.000000px;}
.ya9{bottom:22.500000px;}
.y93{bottom:25.560000px;}
.y9c{bottom:25.770000px;}
.y6{bottom:25.920000px;}
.y99{bottom:30.240000px;}
.y95{bottom:30.420000px;}
.y9{bottom:32.220000px;}
.y5{bottom:45.720000px;}
.ya1{bottom:59.040000px;}
.y8{bottom:59.070000px;}
.y3d{bottom:59.220000px;}
.yd{bottom:60.660000px;}
.y4{bottom:65.550000px;}
.y3{bottom:85.350000px;}
.ya0{bottom:91.440000px;}
.y7{bottom:93.270000px;}
.y3b{bottom:98.820000px;}
.ycd{bottom:99.360000px;}
.y2{bottom:105.150000px;}
.y6f{bottom:107.820000px;}
.y9f{bottom:111.240000px;}
.y3a{bottom:118.620000px;}
.ycc{bottom:119.160000px;}
.y9e{bottom:131.040000px;}
.y39{bottom:138.600000px;}
.ycb{bottom:138.960000px;}
.y9b{bottom:145.800000px;}
.y6d{bottom:147.960000px;}
.yca{bottom:158.790000px;}
.y38{bottom:167.430000px;}
.yc9{bottom:178.770000px;}
.y98{bottom:186.150000px;}
.y6c{bottom:186.330000px;}
.y37{bottom:187.230000px;}
.yc8{bottom:198.570000px;}
.y36{bottom:207.030000px;}
.yc7{bottom:218.370000px;}
.y6b{bottom:224.670000px;}
.y35{bottom:226.830000px;}
.y97{bottom:230.970000px;}
.yc6{bottom:238.170000px;}
.y34{bottom:246.810000px;}
.yc5{bottom:257.970000px;}
.y6a{bottom:263.010000px;}
.y33{bottom:266.610000px;}
.y94{bottom:275.970000px;}
.yc4{bottom:277.950000px;}
.y32{bottom:286.410000px;}
.yc3{bottom:297.750000px;}
.y68{bottom:301.530000px;}
.y31{bottom:306.210000px;}
.yf3{bottom:314.850000px;}
.yc2{bottom:317.550000px;}
.y92{bottom:320.970000px;}
.y30{bottom:326.010000px;}
.yf2{bottom:334.650000px;}
.yc1{bottom:337.350000px;}
.y66{bottom:339.870000px;}
.yf1{bottom:354.630000px;}
.y2f{bottom:354.990000px;}
.yc0{bottom:357.150000px;}
.y90{bottom:361.830000px;}
.y64{bottom:369.030000px;}
.yf0{bottom:374.430000px;}
.y2e{bottom:374.790000px;}
.ybf{bottom:377.130000px;}
.y8f{bottom:389.910000px;}
.yef{bottom:394.230000px;}
.y2d{bottom:394.590000px;}
.ybe{bottom:396.930000px;}
.y63{bottom:397.830000px;}
.y8e{bottom:409.935000px;}
.yee{bottom:414.075000px;}
.y2c{bottom:414.435000px;}
.ybd{bottom:416.775000px;}
.y62{bottom:417.855000px;}
.y8d{bottom:429.735000px;}
.yed{bottom:433.875000px;}
.y2b{bottom:434.235000px;}
.ybc{bottom:436.575000px;}
.y61{bottom:437.655000px;}
.y8c{bottom:449.535000px;}
.yec{bottom:453.855000px;}
.y2a{bottom:454.215000px;}
.ybb{bottom:456.375000px;}
.y60{bottom:457.455000px;}
.y8b{bottom:469.335000px;}
.yeb{bottom:473.655000px;}
.y29{bottom:474.015000px;}
.yba{bottom:476.355000px;}
.y5f{bottom:477.255000px;}
.y8a{bottom:489.135000px;}
.yea{bottom:493.455000px;}
.y28{bottom:493.815000px;}
.yb9{bottom:496.155000px;}
.y5e{bottom:497.055000px;}
.y89{bottom:509.115000px;}
.ye9{bottom:513.255000px;}
.y27{bottom:513.615000px;}
.yb8{bottom:515.955000px;}
.y5d{bottom:517.035000px;}
.y88{bottom:528.915000px;}
.ye8{bottom:533.055000px;}
.y26{bottom:533.415000px;}
.yb7{bottom:535.755000px;}
.y5c{bottom:536.835000px;}
.y87{bottom:548.715000px;}
.ye7{bottom:553.035000px;}
.y25{bottom:553.395000px;}
.yb6{bottom:555.555000px;}
.y5b{bottom:556.635000px;}
.y86{bottom:568.515000px;}
.ye6{bottom:572.835000px;}
.y24{bottom:573.195000px;}
.yb5{bottom:575.535000px;}
.y5a{bottom:576.435000px;}
.y85{bottom:588.315000px;}
.ye5{bottom:592.635000px;}
.y23{bottom:592.995000px;}
.yb4{bottom:595.335000px;}
.y59{bottom:596.235000px;}
.y84{bottom:608.295000px;}
.ye4{bottom:612.435000px;}
.y22{bottom:612.795000px;}
.yb3{bottom:615.135000px;}
.y58{bottom:616.215000px;}
.y83{bottom:628.095000px;}
.ye3{bottom:632.235000px;}
.y21{bottom:632.595000px;}
.yb2{bottom:634.935000px;}
.y57{bottom:636.015000px;}
.y82{bottom:647.895000px;}
.ye2{bottom:652.245000px;}
.y20{bottom:654.765000px;}
.y56{bottom:664.845000px;}
.y81{bottom:667.725000px;}
.ye1{bottom:672.045000px;}
.y1f{bottom:674.565000px;}
.yb1{bottom:674.745000px;}
.y80{bottom:684.285000px;}
.y55{bottom:684.645000px;}
.ye0{bottom:691.845000px;}
.y1e{bottom:694.545000px;}
.y54{bottom:704.445000px;}
.ydf{bottom:711.645000px;}
.y1d{bottom:714.345000px;}
.y53{bottom:724.425000px;}
.yde{bottom:731.445000px;}
.y1c{bottom:734.145000px;}
.y52{bottom:744.225000px;}
.ydd{bottom:751.425000px;}
.y1b{bottom:753.945000px;}
.y51{bottom:764.025000px;}
.ydc{bottom:771.225000px;}
.y1a{bottom:773.745000px;}
.yb0{bottom:773.925000px;}
.y50{bottom:783.825000px;}
.ydb{bottom:791.025000px;}
.y19{bottom:793.725000px;}
.yaf{bottom:808.845000px;}
.yda{bottom:810.825000px;}
.y4f{bottom:812.625000px;}
.y18{bottom:813.525000px;}
.yd9{bottom:830.625000px;}
.y4e{bottom:832.605000px;}
.y17{bottom:833.325000px;}
.yad{bottom:842.145000px;}
.yd8{bottom:850.605000px;}
.y4d{bottom:852.405000px;}
.y16{bottom:853.125000px;}
.yd7{bottom:870.405000px;}
.y4c{bottom:872.205000px;}
.y15{bottom:872.925000px;}
.yab{bottom:878.325000px;}
.yd6{bottom:890.205000px;}
.y7f{bottom:891.105000px;}
.y4b{bottom:892.005000px;}
.y14{bottom:895.065000px;}
.yd5{bottom:910.050000px;}
.y7e{bottom:911.130000px;}
.y4a{bottom:911.850000px;}
.ya8{bottom:914.730000px;}
.y13{bottom:914.910000px;}
.yd4{bottom:929.850000px;}
.y7d{bottom:930.930000px;}
.y49{bottom:931.830000px;}
.y12{bottom:948.930000px;}
.yd3{bottom:949.830000px;}
.y7c{bottom:950.730000px;}
.ya5{bottom:955.590000px;}
.y48{bottom:960.630000px;}
.y11{bottom:964.230000px;}
.yd2{bottom:969.630000px;}
.y7b{bottom:970.530000px;}
.y47{bottom:980.430000px;}
.y10{bottom:986.010000px;}
.yd1{bottom:989.430000px;}
.y7a{bottom:990.330000px;}
.ya2{bottom:998.250000px;}
.y46{bottom:1000.230000px;}
.yd0{bottom:1009.230000px;}
.y79{bottom:1010.310000px;}
.yf{bottom:1010.850000px;}
.y45{bottom:1020.030000px;}
.ya3{bottom:1026.870000px;}
.ycf{bottom:1029.030000px;}
.y78{bottom:1030.110000px;}
.y44{bottom:1040.010000px;}
.ye{bottom:1042.710000px;}
.y76{bottom:1044.870000px;}
.yce{bottom:1049.010000px;}
.y75{bottom:1065.210000px;}
.y43{bottom:1068.810000px;}
.yc{bottom:1069.530000px;}
.y1{bottom:1087.350000px;}
.y42{bottom:1088.610000px;}
.y73{bottom:1103.550000px;}
.y41{bottom:1108.410000px;}
.y40{bottom:1128.210000px;}
.y71{bottom:1141.890000px;}
.y3f{bottom:1148.220000px;}
.y3e{bottom:1168.020000px;}
.y3c{bottom:1196.280000px;}
.h19{height:19.800000px;}
.h1a{height:21.060000px;}
.h11{height:21.780000px;}
.h20{height:23.580000px;}
.hb{height:27.850078px;}
.h12{height:27.900000px;}
.h25{height:28.800000px;}
.h1f{height:31.320000px;}
.h24{height:31.860000px;}
.h23{height:32.076000px;}
.h22{height:36.540000px;}
.h21{height:37.440000px;}
.h14{height:37.800000px;}
.h16{height:37.836000px;}
.h15{height:37.980000px;}
.hf{height:38.100586px;}
.h17{height:39.600000px;}
.h18{height:39.636000px;}
.h1d{height:39.816000px;}
.hc{height:42.164648px;}
.hd{height:42.806602px;}
.h26{height:43.506914px;}
.h1c{height:44.280000px;}
.h1b{height:44.460000px;}
.h9{height:46.736719px;}
.h13{height:48.496641px;}
.h10{height:48.730078px;}
.he{height:49.255313px;}
.h7{height:51.706406px;}
.h3{height:52.590937px;}
.ha{height:53.224453px;}
.h5{height:55.987031px;}
.h1e{height:59.940000px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h4{height:90.319219px;}
.h2{height:121.536000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:54.540000px;}
.wd{width:54.720000px;}
.w10{width:55.980000px;}
.w17{width:59.940000px;}
.wc{width:61.920000px;}
.w11{width:63.576000px;}
.we{width:65.196000px;}
.w12{width:65.880000px;}
.w15{width:66.600000px;}
.w13{width:71.640000px;}
.wb{width:75.996000px;}
.w14{width:80.676000px;}
.w1c{width:86.256000px;}
.w1a{width:95.436000px;}
.w8{width:96.120000px;}
.w7{width:96.696000px;}
.w16{width:99.360000px;}
.w1b{width:103.860000px;}
.w18{width:104.976000px;}
.w9{width:116.316000px;}
.w2{width:116.676000px;}
.wa{width:120.600000px;}
.w1d{width:136.620000px;}
.w4{width:167.610000px;}
.w19{width:222.870000px;}
.w6{width:273.630000px;}
.w3{width:500.145000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x2b{left:-2.340000px;}
.x0{left:0.000000px;}
.x10{left:9.180000px;}
.x1c{left:10.800000px;}
.x4{left:13.500000px;}
.x1a{left:15.300000px;}
.x1e{left:17.100000px;}
.xb{left:19.260000px;}
.x24{left:21.060000px;}
.xd{left:34.560000px;}
.x6{left:36.720000px;}
.x3{left:47.016000px;}
.xe{left:52.919987px;}
.x1{left:54.000000px;}
.x16{left:68.219987px;}
.x2f{left:74.699987px;}
.x9{left:75.960000px;}
.x30{left:80.999987px;}
.xf{left:94.896000px;}
.x2{left:97.230000px;}
.x28{left:103.356000px;}
.x31{left:108.035987px;}
.x8{left:120.285000px;}
.x19{left:128.916000px;}
.xc{left:148.170000px;}
.x5{left:170.670000px;}
.x1b{left:190.830000px;}
.x7{left:201.645000px;}
.x29{left:202.710000px;}
.x1d{left:245.550000px;}
.x2a{left:262.650000px;}
.x1f{left:310.755000px;}
.x17{left:352.334987px;}
.x20{left:365.295000px;}
.x11{left:368.535000px;}
.x21{left:421.275000px;}
.x18{left:446.504987px;}
.x2e{left:453.885000px;}
.x12{left:465.225000px;}
.x22{left:484.845000px;}
.x23{left:550.725000px;}
.x13{left:561.345000px;}
.x2c{left:590.505000px;}
.x15{left:615.344987px;}
.x25{left:622.365000px;}
.xa{left:670.830000px;}
.x14{left:677.670000px;}
.x2d{left:685.950000px;}
.x26{left:703.050000px;}
.x27{left:769.650000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-3.018667pt;}
.lsb{letter-spacing:-1.120000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.058667pt;}
.ls10{letter-spacing:0.120533pt;}
.ls7{letter-spacing:0.130667pt;}
.ls14{letter-spacing:0.150933pt;}
.ls5{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.176000pt;}
.ls0{letter-spacing:0.207360pt;}
.ls8{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.265600pt;}
.ls3{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls11{letter-spacing:1.440000pt;}
.ls12{letter-spacing:5.920000pt;}
.ls4{letter-spacing:12.320000pt;}
.ls16{letter-spacing:14.672640pt;}
.ls15{letter-spacing:40.912640pt;}
.lsf{letter-spacing:67.520000pt;}
.ws1{word-spacing:-15.969387pt;}
.ws0{word-spacing:-15.838720pt;}
.ws4{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.960000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._5{margin-left:-1274.839040pt;}
._4{margin-left:-966.671360pt;}
._6{margin-left:-543.088640pt;}
._7{margin-left:-480.484053pt;}
._3{margin-left:-415.623680pt;}
._1{margin-left:-373.296640pt;}
._15{margin-left:-5.177600pt;}
._b{margin-left:-4.136960pt;}
._c{margin-left:-2.656000pt;}
._0{margin-left:-1.059840pt;}
._2{width:1.415680pt;}
._a{width:2.638293pt;}
._d{width:3.853013pt;}
._e{width:5.152640pt;}
._13{width:6.314240pt;}
._11{width:7.488427pt;}
._10{width:8.605440pt;}
._12{width:10.362027pt;}
._f{width:11.964587pt;}
._14{width:14.342400pt;}
._16{width:15.599787pt;}
._1b{width:16.966400pt;}
._1c{width:18.093440pt;}
._19{width:22.023680pt;}
._18{width:22.968960pt;}
._9{width:30.878080pt;}
._8{width:31.979947pt;}
._17{width:32.870187pt;}
._1a{width:112.480213pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:101.120000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:5.120000pt;}
.ya7{bottom:5.280000pt;}
.y9d{bottom:5.306667pt;}
.yb{bottom:5.440000pt;}
.y91{bottom:6.240000pt;}
.y65{bottom:6.880000pt;}
.ya{bottom:7.040000pt;}
.y9a{bottom:9.280000pt;}
.y96{bottom:9.440000pt;}
.y67{bottom:12.320000pt;}
.yaa{bottom:12.640000pt;}
.ya6{bottom:12.960000pt;}
.y69{bottom:13.120000pt;}
.y6e{bottom:13.146667pt;}
.y74{bottom:13.280000pt;}
.y70{bottom:13.920000pt;}
.y72{bottom:13.946667pt;}
.ya4{bottom:15.360000pt;}
.yae{bottom:15.840000pt;}
.yac{bottom:16.000000pt;}
.ya9{bottom:20.000000pt;}
.y93{bottom:22.720000pt;}
.y9c{bottom:22.906667pt;}
.y6{bottom:23.040000pt;}
.y99{bottom:26.880000pt;}
.y95{bottom:27.040000pt;}
.y9{bottom:28.640000pt;}
.y5{bottom:40.640000pt;}
.ya1{bottom:52.480000pt;}
.y8{bottom:52.506667pt;}
.y3d{bottom:52.640000pt;}
.yd{bottom:53.920000pt;}
.y4{bottom:58.266667pt;}
.y3{bottom:75.866667pt;}
.ya0{bottom:81.280000pt;}
.y7{bottom:82.906667pt;}
.y3b{bottom:87.840000pt;}
.ycd{bottom:88.320000pt;}
.y2{bottom:93.466667pt;}
.y6f{bottom:95.840000pt;}
.y9f{bottom:98.880000pt;}
.y3a{bottom:105.440000pt;}
.ycc{bottom:105.920000pt;}
.y9e{bottom:116.480000pt;}
.y39{bottom:123.200000pt;}
.ycb{bottom:123.520000pt;}
.y9b{bottom:129.600000pt;}
.y6d{bottom:131.520000pt;}
.yca{bottom:141.146667pt;}
.y38{bottom:148.826667pt;}
.yc9{bottom:158.906667pt;}
.y98{bottom:165.466667pt;}
.y6c{bottom:165.626667pt;}
.y37{bottom:166.426667pt;}
.yc8{bottom:176.506667pt;}
.y36{bottom:184.026667pt;}
.yc7{bottom:194.106667pt;}
.y6b{bottom:199.706667pt;}
.y35{bottom:201.626667pt;}
.y97{bottom:205.306667pt;}
.yc6{bottom:211.706667pt;}
.y34{bottom:219.386667pt;}
.yc5{bottom:229.306667pt;}
.y6a{bottom:233.786667pt;}
.y33{bottom:236.986667pt;}
.y94{bottom:245.306667pt;}
.yc4{bottom:247.066667pt;}
.y32{bottom:254.586667pt;}
.yc3{bottom:264.666667pt;}
.y68{bottom:268.026667pt;}
.y31{bottom:272.186667pt;}
.yf3{bottom:279.866667pt;}
.yc2{bottom:282.266667pt;}
.y92{bottom:285.306667pt;}
.y30{bottom:289.786667pt;}
.yf2{bottom:297.466667pt;}
.yc1{bottom:299.866667pt;}
.y66{bottom:302.106667pt;}
.yf1{bottom:315.226667pt;}
.y2f{bottom:315.546667pt;}
.yc0{bottom:317.466667pt;}
.y90{bottom:321.626667pt;}
.y64{bottom:328.026667pt;}
.yf0{bottom:332.826667pt;}
.y2e{bottom:333.146667pt;}
.ybf{bottom:335.226667pt;}
.y8f{bottom:346.586667pt;}
.yef{bottom:350.426667pt;}
.y2d{bottom:350.746667pt;}
.ybe{bottom:352.826667pt;}
.y63{bottom:353.626667pt;}
.y8e{bottom:364.386667pt;}
.yee{bottom:368.066667pt;}
.y2c{bottom:368.386667pt;}
.ybd{bottom:370.466667pt;}
.y62{bottom:371.426667pt;}
.y8d{bottom:381.986667pt;}
.yed{bottom:385.666667pt;}
.y2b{bottom:385.986667pt;}
.ybc{bottom:388.066667pt;}
.y61{bottom:389.026667pt;}
.y8c{bottom:399.586667pt;}
.yec{bottom:403.426667pt;}
.y2a{bottom:403.746667pt;}
.ybb{bottom:405.666667pt;}
.y60{bottom:406.626667pt;}
.y8b{bottom:417.186667pt;}
.yeb{bottom:421.026667pt;}
.y29{bottom:421.346667pt;}
.yba{bottom:423.426667pt;}
.y5f{bottom:424.226667pt;}
.y8a{bottom:434.786667pt;}
.yea{bottom:438.626667pt;}
.y28{bottom:438.946667pt;}
.yb9{bottom:441.026667pt;}
.y5e{bottom:441.826667pt;}
.y89{bottom:452.546667pt;}
.ye9{bottom:456.226667pt;}
.y27{bottom:456.546667pt;}
.yb8{bottom:458.626667pt;}
.y5d{bottom:459.586667pt;}
.y88{bottom:470.146667pt;}
.ye8{bottom:473.826667pt;}
.y26{bottom:474.146667pt;}
.yb7{bottom:476.226667pt;}
.y5c{bottom:477.186667pt;}
.y87{bottom:487.746667pt;}
.ye7{bottom:491.586667pt;}
.y25{bottom:491.906667pt;}
.yb6{bottom:493.826667pt;}
.y5b{bottom:494.786667pt;}
.y86{bottom:505.346667pt;}
.ye6{bottom:509.186667pt;}
.y24{bottom:509.506667pt;}
.yb5{bottom:511.586667pt;}
.y5a{bottom:512.386667pt;}
.y85{bottom:522.946667pt;}
.ye5{bottom:526.786667pt;}
.y23{bottom:527.106667pt;}
.yb4{bottom:529.186667pt;}
.y59{bottom:529.986667pt;}
.y84{bottom:540.706667pt;}
.ye4{bottom:544.386667pt;}
.y22{bottom:544.706667pt;}
.yb3{bottom:546.786667pt;}
.y58{bottom:547.746667pt;}
.y83{bottom:558.306667pt;}
.ye3{bottom:561.986667pt;}
.y21{bottom:562.306667pt;}
.yb2{bottom:564.386667pt;}
.y57{bottom:565.346667pt;}
.y82{bottom:575.906667pt;}
.ye2{bottom:579.773333pt;}
.y20{bottom:582.013333pt;}
.y56{bottom:590.973333pt;}
.y81{bottom:593.533333pt;}
.ye1{bottom:597.373333pt;}
.y1f{bottom:599.613333pt;}
.yb1{bottom:599.773333pt;}
.y80{bottom:608.253333pt;}
.y55{bottom:608.573333pt;}
.ye0{bottom:614.973333pt;}
.y1e{bottom:617.373333pt;}
.y54{bottom:626.173333pt;}
.ydf{bottom:632.573333pt;}
.y1d{bottom:634.973333pt;}
.y53{bottom:643.933333pt;}
.yde{bottom:650.173333pt;}
.y1c{bottom:652.573333pt;}
.y52{bottom:661.533333pt;}
.ydd{bottom:667.933333pt;}
.y1b{bottom:670.173333pt;}
.y51{bottom:679.133333pt;}
.ydc{bottom:685.533333pt;}
.y1a{bottom:687.773333pt;}
.yb0{bottom:687.933333pt;}
.y50{bottom:696.733333pt;}
.ydb{bottom:703.133333pt;}
.y19{bottom:705.533333pt;}
.yaf{bottom:718.973333pt;}
.yda{bottom:720.733333pt;}
.y4f{bottom:722.333333pt;}
.y18{bottom:723.133333pt;}
.yd9{bottom:738.333333pt;}
.y4e{bottom:740.093333pt;}
.y17{bottom:740.733333pt;}
.yad{bottom:748.573333pt;}
.yd8{bottom:756.093333pt;}
.y4d{bottom:757.693333pt;}
.y16{bottom:758.333333pt;}
.yd7{bottom:773.693333pt;}
.y4c{bottom:775.293333pt;}
.y15{bottom:775.933333pt;}
.yab{bottom:780.733333pt;}
.yd6{bottom:791.293333pt;}
.y7f{bottom:792.093333pt;}
.y4b{bottom:792.893333pt;}
.y14{bottom:795.613333pt;}
.yd5{bottom:808.933333pt;}
.y7e{bottom:809.893333pt;}
.y4a{bottom:810.533333pt;}
.ya8{bottom:813.093333pt;}
.y13{bottom:813.253333pt;}
.yd4{bottom:826.533333pt;}
.y7d{bottom:827.493333pt;}
.y49{bottom:828.293333pt;}
.y12{bottom:843.493333pt;}
.yd3{bottom:844.293333pt;}
.y7c{bottom:845.093333pt;}
.ya5{bottom:849.413333pt;}
.y48{bottom:853.893333pt;}
.y11{bottom:857.093333pt;}
.yd2{bottom:861.893333pt;}
.y7b{bottom:862.693333pt;}
.y47{bottom:871.493333pt;}
.y10{bottom:876.453333pt;}
.yd1{bottom:879.493333pt;}
.y7a{bottom:880.293333pt;}
.ya2{bottom:887.333333pt;}
.y46{bottom:889.093333pt;}
.yd0{bottom:897.093333pt;}
.y79{bottom:898.053333pt;}
.yf{bottom:898.533333pt;}
.y45{bottom:906.693333pt;}
.ya3{bottom:912.773333pt;}
.ycf{bottom:914.693333pt;}
.y78{bottom:915.653333pt;}
.y44{bottom:924.453333pt;}
.ye{bottom:926.853333pt;}
.y76{bottom:928.773333pt;}
.yce{bottom:932.453333pt;}
.y75{bottom:946.853333pt;}
.y43{bottom:950.053333pt;}
.yc{bottom:950.693333pt;}
.y1{bottom:966.533333pt;}
.y42{bottom:967.653333pt;}
.y73{bottom:980.933333pt;}
.y41{bottom:985.253333pt;}
.y40{bottom:1002.853333pt;}
.y71{bottom:1015.013333pt;}
.y3f{bottom:1020.640000pt;}
.y3e{bottom:1038.240000pt;}
.y3c{bottom:1063.360000pt;}
.h19{height:17.600000pt;}
.h1a{height:18.720000pt;}
.h11{height:19.360000pt;}
.h20{height:20.960000pt;}
.hb{height:24.755625pt;}
.h12{height:24.800000pt;}
.h25{height:25.600000pt;}
.h1f{height:27.840000pt;}
.h24{height:28.320000pt;}
.h23{height:28.512000pt;}
.h22{height:32.480000pt;}
.h21{height:33.280000pt;}
.h14{height:33.600000pt;}
.h16{height:33.632000pt;}
.h15{height:33.760000pt;}
.hf{height:33.867188pt;}
.h17{height:35.200000pt;}
.h18{height:35.232000pt;}
.h1d{height:35.392000pt;}
.hc{height:37.479688pt;}
.hd{height:38.050313pt;}
.h26{height:38.672812pt;}
.h1c{height:39.360000pt;}
.h1b{height:39.520000pt;}
.h9{height:41.543750pt;}
.h13{height:43.108125pt;}
.h10{height:43.315625pt;}
.he{height:43.782500pt;}
.h7{height:45.961250pt;}
.h3{height:46.747500pt;}
.ha{height:47.310625pt;}
.h5{height:49.766250pt;}
.h1e{height:53.280000pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h4{height:80.283750pt;}
.h2{height:108.032000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:48.480000pt;}
.wd{width:48.640000pt;}
.w10{width:49.760000pt;}
.w17{width:53.280000pt;}
.wc{width:55.040000pt;}
.w11{width:56.512000pt;}
.we{width:57.952000pt;}
.w12{width:58.560000pt;}
.w15{width:59.200000pt;}
.w13{width:63.680000pt;}
.wb{width:67.552000pt;}
.w14{width:71.712000pt;}
.w1c{width:76.672000pt;}
.w1a{width:84.832000pt;}
.w8{width:85.440000pt;}
.w7{width:85.952000pt;}
.w16{width:88.320000pt;}
.w1b{width:92.320000pt;}
.w18{width:93.312000pt;}
.w9{width:103.392000pt;}
.w2{width:103.712000pt;}
.wa{width:107.200000pt;}
.w1d{width:121.440000pt;}
.w4{width:148.986667pt;}
.w19{width:198.106667pt;}
.w6{width:243.226667pt;}
.w3{width:444.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x2b{left:-2.080000pt;}
.x0{left:0.000000pt;}
.x10{left:8.160000pt;}
.x1c{left:9.600000pt;}
.x4{left:12.000000pt;}
.x1a{left:13.600000pt;}
.x1e{left:15.200000pt;}
.xb{left:17.120000pt;}
.x24{left:18.720000pt;}
.xd{left:30.720000pt;}
.x6{left:32.640000pt;}
.x3{left:41.792000pt;}
.xe{left:47.039988pt;}
.x1{left:48.000000pt;}
.x16{left:60.639988pt;}
.x2f{left:66.399988pt;}
.x9{left:67.520000pt;}
.x30{left:71.999988pt;}
.xf{left:84.352000pt;}
.x2{left:86.426667pt;}
.x28{left:91.872000pt;}
.x31{left:96.031988pt;}
.x8{left:106.920000pt;}
.x19{left:114.592000pt;}
.xc{left:131.706667pt;}
.x5{left:151.706667pt;}
.x1b{left:169.626667pt;}
.x7{left:179.240000pt;}
.x29{left:180.186667pt;}
.x1d{left:218.266667pt;}
.x2a{left:233.466667pt;}
.x1f{left:276.226667pt;}
.x17{left:313.186655pt;}
.x20{left:324.706667pt;}
.x11{left:327.586667pt;}
.x21{left:374.466667pt;}
.x18{left:396.893322pt;}
.x2e{left:403.453333pt;}
.x12{left:413.533333pt;}
.x22{left:430.973333pt;}
.x23{left:489.533333pt;}
.x13{left:498.973333pt;}
.x2c{left:524.893333pt;}
.x15{left:546.973322pt;}
.x25{left:553.213333pt;}
.xa{left:596.293333pt;}
.x14{left:602.373333pt;}
.x2d{left:609.733333pt;}
.x26{left:624.933333pt;}
.x27{left:684.133333pt;}
}




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