
    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_c9f62708906c69d04e8a400b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.721191;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_364985bb04fa87adb549af46.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_680fb60570fc6114810dbb96.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_e6844874e2b59a8080a1dedb.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_bdd7ca708c0c000d22e5733f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d828f49ceb1cbdb8a7f6788c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e68e188523cf0e9a6c07b57d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f6e0fce759d89a02ba5437db.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9e06dad9f5e9998eec908318.woff')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_5f588b57d97012609cea06f4.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3b9e1c49bbfe10e2a806d0c8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.851562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls16{letter-spacing:-1.008000px;}
.ls10{letter-spacing:-0.696000px;}
.lsd{letter-spacing:-0.618000px;}
.lsf{letter-spacing:-0.247800px;}
.ls13{letter-spacing:-0.241800px;}
.ls15{letter-spacing:-0.227400px;}
.ls9{letter-spacing:-0.184200px;}
.ls8{letter-spacing:-0.172800px;}
.lsa{letter-spacing:-0.085200px;}
.ls5{letter-spacing:-0.069000px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.023040px;}
.ls3{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.122400px;}
.ls14{letter-spacing:0.155400px;}
.ls11{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.204600px;}
.ls2{letter-spacing:0.224400px;}
.ls7{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.385800px;}
.lse{letter-spacing:0.385920px;}
.ls0{letter-spacing:0.806400px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.ws2{word-spacing:-15.300000px;}
.ws9{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.777400px;}
.wsc{word-spacing:-14.728200px;}
.ws5{word-spacing:-14.572800px;}
.wsa{word-spacing:-14.503800px;}
.wsd{word-spacing:-14.345400px;}
.wsb{word-spacing:-14.331000px;}
.ws1{word-spacing:-13.160160px;}
.ws0{word-spacing:-13.147200px;}
.wse{word-spacing:-12.139200px;}
.ws3{word-spacing:-10.612800px;}
.ws4{word-spacing:-10.527600px;}
.ws6{word-spacing:0.000000px;}
._2d{margin-left:-8.172000px;}
._1b{margin-left:-6.134400px;}
._e{margin-left:-4.305600px;}
._3{margin-left:-2.681280px;}
._0{margin-left:-1.545840px;}
._1{width:1.314720px;}
._2{width:2.660640px;}
._19{width:3.963360px;}
._4{width:5.696640px;}
._5{width:7.242480px;}
._18{width:8.323920px;}
._8{width:9.472320px;}
._9{width:11.128320px;}
._1d{width:12.174720px;}
._1c{width:13.248720px;}
._27{width:14.280480px;}
._a{width:15.632640px;}
._b{width:17.089920px;}
._16{width:18.261360px;}
._7{width:19.716480px;}
._6{width:20.733120px;}
._15{width:21.925440px;}
._17{width:23.912640px;}
._f{width:25.502400px;}
._10{width:26.783280px;}
._1e{width:28.416960px;}
._1f{width:29.453040px;}
._25{width:30.697920px;}
._24{width:31.804560px;}
._23{width:32.943600px;}
._22{width:33.981120px;}
._21{width:34.997040px;}
._20{width:36.696960px;}
._26{width:37.911600px;}
._11{width:39.346560px;}
._12{width:40.538880px;}
._d{width:51.114960px;}
._c{width:52.153200px;}
._2a{width:58.497120px;}
._13{width:62.342640px;}
._14{width:63.469440px;}
._32{width:83.417040px;}
._2f{width:85.397040px;}
._2e{width:86.532480px;}
._2c{width:111.922560px;}
._2b{width:112.938480px;}
._28{width:129.738960px;}
._29{width:130.746960px;}
._31{width:149.033520px;}
._30{width:150.535440px;}
._1a{width:1035.043680px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs8{font-size:12.240000px;}
.fs4{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:81.360000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y17{bottom:2.700000px;}
.y33{bottom:3.780000px;}
.y1b{bottom:12.600000px;}
.y16{bottom:16.740000px;}
.y32{bottom:23.040000px;}
.y15{bottom:31.500000px;}
.y31{bottom:42.480000px;}
.y14{bottom:49.140000px;}
.y2f{bottom:61.785000px;}
.y13{bottom:66.600000px;}
.y2e{bottom:81.045000px;}
.y12{bottom:84.240000px;}
.ya{bottom:85.320000px;}
.y48{bottom:88.200000px;}
.y78{bottom:88.380000px;}
.y9{bottom:89.820000px;}
.y2d{bottom:100.485000px;}
.y11{bottom:101.925000px;}
.y77{bottom:106.020000px;}
.y42{bottom:109.440000px;}
.y41{bottom:114.660000px;}
.y10{bottom:119.565000px;}
.y2c{bottom:119.745000px;}
.y47{bottom:123.480000px;}
.ycd{bottom:125.640000px;}
.y40{bottom:126.720000px;}
.yac{bottom:127.800000px;}
.y3f{bottom:131.940000px;}
.yf{bottom:139.005000px;}
.y2b{bottom:139.185000px;}
.y3e{bottom:144.216000px;}
.ycc{bottom:145.116000px;}
.yab{bottom:147.096000px;}
.y3d{bottom:149.436000px;}
.y2a{bottom:158.445000px;}
.y46{bottom:158.790000px;}
.y3c{bottom:161.670000px;}
.ycb{bottom:164.370000px;}
.yaa{bottom:166.530000px;}
.ye{bottom:167.085000px;}
.y29{bottom:177.885000px;}
.yca{bottom:183.810000px;}
.y3b{bottom:185.610000px;}
.ya9{bottom:185.790000px;}
.y45{bottom:194.430000px;}
.yd{bottom:195.165000px;}
.y28{bottom:197.145000px;}
.yc9{bottom:203.070000px;}
.y3a{bottom:204.870000px;}
.ya8{bottom:205.230000px;}
.y18{bottom:211.185000px;}
.y27{bottom:216.585000px;}
.yc{bottom:219.645000px;}
.yc8{bottom:222.510000px;}
.y39{bottom:224.310000px;}
.ya7{bottom:224.490000px;}
.y26{bottom:235.845000px;}
.y76{bottom:237.090000px;}
.yc7{bottom:241.770000px;}
.y38{bottom:243.570000px;}
.ya6{bottom:243.930000px;}
.y11e{bottom:252.750000px;}
.y25{bottom:255.285000px;}
.y75{bottom:256.530000px;}
.yc6{bottom:261.210000px;}
.yee{bottom:261.570000px;}
.y37{bottom:263.010000px;}
.ya5{bottom:263.190000px;}
.y11d{bottom:271.830000px;}
.y24{bottom:274.545000px;}
.y74{bottom:275.790000px;}
.yed{bottom:279.030000px;}
.yc5{bottom:280.470000px;}
.y36{bottom:282.270000px;}
.ya4{bottom:282.630000px;}
.y11c{bottom:289.290000px;}
.y23{bottom:293.985000px;}
.y73{bottom:295.230000px;}
.yec{bottom:296.670000px;}
.yc4{bottom:299.910000px;}
.y35{bottom:301.530000px;}
.ya3{bottom:301.890000px;}
.y11b{bottom:306.930000px;}
.y22{bottom:313.275000px;}
.yeb{bottom:314.310000px;}
.y72{bottom:314.490000px;}
.yc3{bottom:319.170000px;}
.y34{bottom:320.970000px;}
.ya2{bottom:321.330000px;}
.y11a{bottom:324.570000px;}
.yea{bottom:331.770000px;}
.y21{bottom:332.715000px;}
.y71{bottom:333.930000px;}
.y1c{bottom:337.350000px;}
.yc2{bottom:338.610000px;}
.ya1{bottom:340.590000px;}
.y119{bottom:342.030000px;}
.ye9{bottom:349.410000px;}
.y20{bottom:351.975000px;}
.y70{bottom:353.190000px;}
.yc1{bottom:357.870000px;}
.y118{bottom:359.670000px;}
.ya0{bottom:360.030000px;}
.ye8{bottom:367.050000px;}
.y1f{bottom:371.235000px;}
.y6f{bottom:372.450000px;}
.yc0{bottom:377.310000px;}
.y9f{bottom:379.290000px;}
.ye7{bottom:384.510000px;}
.y1e{bottom:390.675000px;}
.y6e{bottom:391.935000px;}
.y117{bottom:394.815000px;}
.ybf{bottom:396.615000px;}
.y9e{bottom:398.595000px;}
.y30{bottom:400.935000px;}
.ye6{bottom:402.195000px;}
.y1d{bottom:409.935000px;}
.y6d{bottom:411.195000px;}
.y116{bottom:412.455000px;}
.ybe{bottom:415.875000px;}
.y9d{bottom:418.035000px;}
.ye5{bottom:419.835000px;}
.y115{bottom:430.095000px;}
.y6c{bottom:430.635000px;}
.ybd{bottom:435.315000px;}
.y9c{bottom:437.295000px;}
.y114{bottom:447.735000px;}
.y6b{bottom:449.895000px;}
.ybc{bottom:454.575000px;}
.ye4{bottom:454.935000px;}
.y9b{bottom:456.735000px;}
.y113{bottom:465.195000px;}
.y6a{bottom:469.335000px;}
.ye3{bottom:472.575000px;}
.ybb{bottom:474.015000px;}
.y9a{bottom:475.995000px;}
.y112{bottom:482.835000px;}
.y69{bottom:488.595000px;}
.ye2{bottom:490.215000px;}
.yba{bottom:493.275000px;}
.y99{bottom:495.435000px;}
.y111{bottom:500.475000px;}
.ye1{bottom:507.675000px;}
.y68{bottom:508.035000px;}
.yb9{bottom:512.715000px;}
.y98{bottom:514.695000px;}
.y110{bottom:517.935000px;}
.ye0{bottom:525.315000px;}
.y67{bottom:527.295000px;}
.yb8{bottom:531.975000px;}
.y97{bottom:534.135000px;}
.y10f{bottom:535.575000px;}
.ydf{bottom:542.955000px;}
.y66{bottom:546.735000px;}
.yb7{bottom:551.415000px;}
.y10e{bottom:553.215000px;}
.y96{bottom:553.395000px;}
.yde{bottom:560.415000px;}
.y65{bottom:565.995000px;}
.yb6{bottom:570.675000px;}
.y95{bottom:572.835000px;}
.ydd{bottom:578.055000px;}
.y64{bottom:585.435000px;}
.y10d{bottom:588.315000px;}
.yb5{bottom:590.115000px;}
.y94{bottom:592.095000px;}
.ydc{bottom:595.695000px;}
.y63{bottom:604.695000px;}
.y10c{bottom:605.955000px;}
.yb4{bottom:609.375000px;}
.y93{bottom:611.535000px;}
.ydb{bottom:613.155000px;}
.y10b{bottom:623.415000px;}
.y62{bottom:624.135000px;}
.yb3{bottom:628.815000px;}
.y92{bottom:630.795000px;}
.y10a{bottom:641.085000px;}
.y61{bottom:643.425000px;}
.yb2{bottom:648.105000px;}
.yda{bottom:648.465000px;}
.y91{bottom:650.265000px;}
.y109{bottom:658.725000px;}
.y60{bottom:662.685000px;}
.yd9{bottom:666.105000px;}
.yb1{bottom:667.545000px;}
.y90{bottom:669.525000px;}
.y108{bottom:676.365000px;}
.y5f{bottom:682.125000px;}
.yd8{bottom:683.565000px;}
.yb0{bottom:686.805000px;}
.y8f{bottom:688.785000px;}
.y107{bottom:693.825000px;}
.yd7{bottom:701.205000px;}
.y5e{bottom:701.385000px;}
.yaf{bottom:706.065000px;}
.y8e{bottom:708.225000px;}
.y106{bottom:711.465000px;}
.yd6{bottom:718.845000px;}
.y5d{bottom:720.825000px;}
.yae{bottom:725.505000px;}
.y8d{bottom:727.485000px;}
.y105{bottom:729.105000px;}
.yd5{bottom:736.305000px;}
.y5c{bottom:740.085000px;}
.yad{bottom:745.845000px;}
.y104{bottom:746.565000px;}
.y8c{bottom:746.925000px;}
.yd4{bottom:753.945000px;}
.y5b{bottom:759.525000px;}
.y1a{bottom:763.845000px;}
.y103{bottom:764.205000px;}
.y8b{bottom:766.185000px;}
.yd3{bottom:771.585000px;}
.y5a{bottom:778.785000px;}
.y102{bottom:781.845000px;}
.y8a{bottom:785.625000px;}
.yd2{bottom:789.045000px;}
.y59{bottom:798.225000px;}
.y101{bottom:799.305000px;}
.y19{bottom:802.545000px;}
.y89{bottom:804.885000px;}
.yb{bottom:805.425000px;}
.yd1{bottom:806.685000px;}
.y100{bottom:816.945000px;}
.y58{bottom:817.485000px;}
.y88{bottom:824.325000px;}
.yff{bottom:834.585000px;}
.y57{bottom:836.925000px;}
.yd0{bottom:841.965000px;}
.y87{bottom:843.585000px;}
.yfe{bottom:852.225000px;}
.y56{bottom:856.185000px;}
.ycf{bottom:859.425000px;}
.y86{bottom:863.025000px;}
.yfd{bottom:869.685000px;}
.y55{bottom:875.625000px;}
.yce{bottom:877.065000px;}
.y85{bottom:882.285000px;}
.yfc{bottom:887.325000px;}
.y54{bottom:894.930000px;}
.y84{bottom:901.770000px;}
.yfb{bottom:905.010000px;}
.y53{bottom:914.370000px;}
.y83{bottom:921.030000px;}
.yfa{bottom:922.470000px;}
.y52{bottom:933.630000px;}
.yf9{bottom:940.110000px;}
.y82{bottom:940.470000px;}
.y51{bottom:952.890000px;}
.yf8{bottom:957.750000px;}
.y81{bottom:959.730000px;}
.y50{bottom:972.330000px;}
.yf7{bottom:975.210000px;}
.y80{bottom:978.990000px;}
.y4f{bottom:991.590000px;}
.yf6{bottom:992.850000px;}
.y7f{bottom:998.430000px;}
.yf5{bottom:1010.490000px;}
.y4e{bottom:1011.030000px;}
.y7e{bottom:1017.690000px;}
.yf4{bottom:1028.130000px;}
.y4d{bottom:1030.290000px;}
.y8{bottom:1035.510000px;}
.y7d{bottom:1037.130000px;}
.yf3{bottom:1045.590000px;}
.y4c{bottom:1049.730000px;}
.y7{bottom:1052.790000px;}
.y7c{bottom:1056.390000px;}
.yf2{bottom:1063.230000px;}
.y4b{bottom:1068.990000px;}
.y6{bottom:1070.250000px;}
.y7b{bottom:1075.830000px;}
.yf1{bottom:1080.870000px;}
.y5{bottom:1087.710000px;}
.y4a{bottom:1088.430000px;}
.y7a{bottom:1095.090000px;}
.yf0{bottom:1098.330000px;}
.y4{bottom:1105.350000px;}
.y49{bottom:1107.690000px;}
.y79{bottom:1114.530000px;}
.yef{bottom:1115.970000px;}
.y3{bottom:1122.990000px;}
.y2{bottom:1140.450000px;}
.y44{bottom:1144.590000px;}
.y1{bottom:1159.200000px;}
.y43{bottom:1162.440000px;}
.h5{height:4.021875px;}
.ha{height:10.363359px;}
.hd{height:28.419609px;}
.hb{height:37.260000px;}
.h9{height:40.843828px;}
.h4{height:41.726953px;}
.he{height:43.681992px;}
.h3{height:50.597578px;}
.h7{height:56.084062px;}
.h2{height:57.404883px;}
.h8{height:81.078047px;}
.h6{height:226.830000px;}
.hc{height:425.595000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w6{width:18.720000px;}
.w4{width:101.190000px;}
.w5{width:156.270000px;}
.w7{width:494.715000px;}
.w3{width:677.265000px;}
.w8{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.xe{left:-113.400000px;}
.x0{left:0.000000px;}
.x12{left:2.520000px;}
.x4{left:8.640000px;}
.xc{left:54.894000px;}
.x5{left:65.694000px;}
.x6{left:97.194000px;}
.x9{left:99.174000px;}
.x1{left:106.415987px;}
.x15{left:111.275987px;}
.x3{left:114.516000px;}
.xf{left:121.896000px;}
.x13{left:138.455987px;}
.x16{left:140.255987px;}
.x7{left:188.859000px;}
.x10{left:278.175000px;}
.x17{left:280.874987px;}
.xb{left:294.519000px;}
.x11{left:296.895000px;}
.x14{left:322.454987px;}
.x8{left:328.719000px;}
.xa{left:332.859000px;}
.x2{left:437.114987px;}
.xd{left:791.790000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.896000pt;}
.ls10{letter-spacing:-0.618667pt;}
.lsd{letter-spacing:-0.549333pt;}
.lsf{letter-spacing:-0.220267pt;}
.ls13{letter-spacing:-0.214933pt;}
.ls15{letter-spacing:-0.202133pt;}
.ls9{letter-spacing:-0.163733pt;}
.ls8{letter-spacing:-0.153600pt;}
.lsa{letter-spacing:-0.075733pt;}
.ls5{letter-spacing:-0.061333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.020480pt;}
.ls3{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.108800pt;}
.ls14{letter-spacing:0.138133pt;}
.ls11{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.181867pt;}
.ls2{letter-spacing:0.199467pt;}
.ls7{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.342933pt;}
.lse{letter-spacing:0.343040pt;}
.ls0{letter-spacing:0.716800pt;}
.ws8{word-spacing:-58.880000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.296533pt;}
.ws7{word-spacing:-13.135467pt;}
.wsc{word-spacing:-13.091733pt;}
.ws5{word-spacing:-12.953600pt;}
.wsa{word-spacing:-12.892267pt;}
.wsd{word-spacing:-12.751467pt;}
.wsb{word-spacing:-12.738667pt;}
.ws1{word-spacing:-11.697920pt;}
.ws0{word-spacing:-11.686400pt;}
.wse{word-spacing:-10.790400pt;}
.ws3{word-spacing:-9.433600pt;}
.ws4{word-spacing:-9.357867pt;}
.ws6{word-spacing:0.000000pt;}
._2d{margin-left:-7.264000pt;}
._1b{margin-left:-5.452800pt;}
._e{margin-left:-3.827200pt;}
._3{margin-left:-2.383360pt;}
._0{margin-left:-1.374080pt;}
._1{width:1.168640pt;}
._2{width:2.365013pt;}
._19{width:3.522987pt;}
._4{width:5.063680pt;}
._5{width:6.437760pt;}
._18{width:7.399040pt;}
._8{width:8.419840pt;}
._9{width:9.891840pt;}
._1d{width:10.821973pt;}
._1c{width:11.776640pt;}
._27{width:12.693760pt;}
._a{width:13.895680pt;}
._b{width:15.191040pt;}
._16{width:16.232320pt;}
._7{width:17.525760pt;}
._6{width:18.429440pt;}
._15{width:19.489280pt;}
._17{width:21.255680pt;}
._f{width:22.668800pt;}
._10{width:23.807360pt;}
._1e{width:25.259520pt;}
._1f{width:26.180480pt;}
._25{width:27.287040pt;}
._24{width:28.270720pt;}
._23{width:29.283200pt;}
._22{width:30.205440pt;}
._21{width:31.108480pt;}
._20{width:32.619520pt;}
._26{width:33.699200pt;}
._11{width:34.974720pt;}
._12{width:36.034560pt;}
._d{width:45.435520pt;}
._c{width:46.358400pt;}
._2a{width:51.997440pt;}
._13{width:55.415680pt;}
._14{width:56.417280pt;}
._32{width:74.148480pt;}
._2f{width:75.908480pt;}
._2e{width:76.917760pt;}
._2c{width:99.486720pt;}
._2b{width:100.389760pt;}
._28{width:115.323520pt;}
._29{width:116.219520pt;}
._31{width:132.474240pt;}
._30{width:133.809280pt;}
._1a{width:920.038827pt;}
.fs2{font-size:5.120000pt;}
.fs8{font-size:10.880000pt;}
.fs4{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:72.320000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:2.400000pt;}
.y33{bottom:3.360000pt;}
.y1b{bottom:11.200000pt;}
.y16{bottom:14.880000pt;}
.y32{bottom:20.480000pt;}
.y15{bottom:28.000000pt;}
.y31{bottom:37.760000pt;}
.y14{bottom:43.680000pt;}
.y2f{bottom:54.920000pt;}
.y13{bottom:59.200000pt;}
.y2e{bottom:72.040000pt;}
.y12{bottom:74.880000pt;}
.ya{bottom:75.840000pt;}
.y48{bottom:78.400000pt;}
.y78{bottom:78.560000pt;}
.y9{bottom:79.840000pt;}
.y2d{bottom:89.320000pt;}
.y11{bottom:90.600000pt;}
.y77{bottom:94.240000pt;}
.y42{bottom:97.280000pt;}
.y41{bottom:101.920000pt;}
.y10{bottom:106.280000pt;}
.y2c{bottom:106.440000pt;}
.y47{bottom:109.760000pt;}
.ycd{bottom:111.680000pt;}
.y40{bottom:112.640000pt;}
.yac{bottom:113.600000pt;}
.y3f{bottom:117.280000pt;}
.yf{bottom:123.560000pt;}
.y2b{bottom:123.720000pt;}
.y3e{bottom:128.192000pt;}
.ycc{bottom:128.992000pt;}
.yab{bottom:130.752000pt;}
.y3d{bottom:132.832000pt;}
.y2a{bottom:140.840000pt;}
.y46{bottom:141.146667pt;}
.y3c{bottom:143.706667pt;}
.ycb{bottom:146.106667pt;}
.yaa{bottom:148.026667pt;}
.ye{bottom:148.520000pt;}
.y29{bottom:158.120000pt;}
.yca{bottom:163.386667pt;}
.y3b{bottom:164.986667pt;}
.ya9{bottom:165.146667pt;}
.y45{bottom:172.826667pt;}
.yd{bottom:173.480000pt;}
.y28{bottom:175.240000pt;}
.yc9{bottom:180.506667pt;}
.y3a{bottom:182.106667pt;}
.ya8{bottom:182.426667pt;}
.y18{bottom:187.720000pt;}
.y27{bottom:192.520000pt;}
.yc{bottom:195.240000pt;}
.yc8{bottom:197.786667pt;}
.y39{bottom:199.386667pt;}
.ya7{bottom:199.546667pt;}
.y26{bottom:209.640000pt;}
.y76{bottom:210.746667pt;}
.yc7{bottom:214.906667pt;}
.y38{bottom:216.506667pt;}
.ya6{bottom:216.826667pt;}
.y11e{bottom:224.666667pt;}
.y25{bottom:226.920000pt;}
.y75{bottom:228.026667pt;}
.yc6{bottom:232.186667pt;}
.yee{bottom:232.506667pt;}
.y37{bottom:233.786667pt;}
.ya5{bottom:233.946667pt;}
.y11d{bottom:241.626667pt;}
.y24{bottom:244.040000pt;}
.y74{bottom:245.146667pt;}
.yed{bottom:248.026667pt;}
.yc5{bottom:249.306667pt;}
.y36{bottom:250.906667pt;}
.ya4{bottom:251.226667pt;}
.y11c{bottom:257.146667pt;}
.y23{bottom:261.320000pt;}
.y73{bottom:262.426667pt;}
.yec{bottom:263.706667pt;}
.yc4{bottom:266.586667pt;}
.y35{bottom:268.026667pt;}
.ya3{bottom:268.346667pt;}
.y11b{bottom:272.826667pt;}
.y22{bottom:278.466667pt;}
.yeb{bottom:279.386667pt;}
.y72{bottom:279.546667pt;}
.yc3{bottom:283.706667pt;}
.y34{bottom:285.306667pt;}
.ya2{bottom:285.626667pt;}
.y11a{bottom:288.506667pt;}
.yea{bottom:294.906667pt;}
.y21{bottom:295.746667pt;}
.y71{bottom:296.826667pt;}
.y1c{bottom:299.866667pt;}
.yc2{bottom:300.986667pt;}
.ya1{bottom:302.746667pt;}
.y119{bottom:304.026667pt;}
.ye9{bottom:310.586667pt;}
.y20{bottom:312.866667pt;}
.y70{bottom:313.946667pt;}
.yc1{bottom:318.106667pt;}
.y118{bottom:319.706667pt;}
.ya0{bottom:320.026667pt;}
.ye8{bottom:326.266667pt;}
.y1f{bottom:329.986667pt;}
.y6f{bottom:331.066667pt;}
.yc0{bottom:335.386667pt;}
.y9f{bottom:337.146667pt;}
.ye7{bottom:341.786667pt;}
.y1e{bottom:347.266667pt;}
.y6e{bottom:348.386667pt;}
.y117{bottom:350.946667pt;}
.ybf{bottom:352.546667pt;}
.y9e{bottom:354.306667pt;}
.y30{bottom:356.386667pt;}
.ye6{bottom:357.506667pt;}
.y1d{bottom:364.386667pt;}
.y6d{bottom:365.506667pt;}
.y116{bottom:366.626667pt;}
.ybe{bottom:369.666667pt;}
.y9d{bottom:371.586667pt;}
.ye5{bottom:373.186667pt;}
.y115{bottom:382.306667pt;}
.y6c{bottom:382.786667pt;}
.ybd{bottom:386.946667pt;}
.y9c{bottom:388.706667pt;}
.y114{bottom:397.986667pt;}
.y6b{bottom:399.906667pt;}
.ybc{bottom:404.066667pt;}
.ye4{bottom:404.386667pt;}
.y9b{bottom:405.986667pt;}
.y113{bottom:413.506667pt;}
.y6a{bottom:417.186667pt;}
.ye3{bottom:420.066667pt;}
.ybb{bottom:421.346667pt;}
.y9a{bottom:423.106667pt;}
.y112{bottom:429.186667pt;}
.y69{bottom:434.306667pt;}
.ye2{bottom:435.746667pt;}
.yba{bottom:438.466667pt;}
.y99{bottom:440.386667pt;}
.y111{bottom:444.866667pt;}
.ye1{bottom:451.266667pt;}
.y68{bottom:451.586667pt;}
.yb9{bottom:455.746667pt;}
.y98{bottom:457.506667pt;}
.y110{bottom:460.386667pt;}
.ye0{bottom:466.946667pt;}
.y67{bottom:468.706667pt;}
.yb8{bottom:472.866667pt;}
.y97{bottom:474.786667pt;}
.y10f{bottom:476.066667pt;}
.ydf{bottom:482.626667pt;}
.y66{bottom:485.986667pt;}
.yb7{bottom:490.146667pt;}
.y10e{bottom:491.746667pt;}
.y96{bottom:491.906667pt;}
.yde{bottom:498.146667pt;}
.y65{bottom:503.106667pt;}
.yb6{bottom:507.266667pt;}
.y95{bottom:509.186667pt;}
.ydd{bottom:513.826667pt;}
.y64{bottom:520.386667pt;}
.y10d{bottom:522.946667pt;}
.yb5{bottom:524.546667pt;}
.y94{bottom:526.306667pt;}
.ydc{bottom:529.506667pt;}
.y63{bottom:537.506667pt;}
.y10c{bottom:538.626667pt;}
.yb4{bottom:541.666667pt;}
.y93{bottom:543.586667pt;}
.ydb{bottom:545.026667pt;}
.y10b{bottom:554.146667pt;}
.y62{bottom:554.786667pt;}
.yb3{bottom:558.946667pt;}
.y92{bottom:560.706667pt;}
.y10a{bottom:569.853333pt;}
.y61{bottom:571.933333pt;}
.yb2{bottom:576.093333pt;}
.yda{bottom:576.413333pt;}
.y91{bottom:578.013333pt;}
.y109{bottom:585.533333pt;}
.y60{bottom:589.053333pt;}
.yd9{bottom:592.093333pt;}
.yb1{bottom:593.373333pt;}
.y90{bottom:595.133333pt;}
.y108{bottom:601.213333pt;}
.y5f{bottom:606.333333pt;}
.yd8{bottom:607.613333pt;}
.yb0{bottom:610.493333pt;}
.y8f{bottom:612.253333pt;}
.y107{bottom:616.733333pt;}
.yd7{bottom:623.293333pt;}
.y5e{bottom:623.453333pt;}
.yaf{bottom:627.613333pt;}
.y8e{bottom:629.533333pt;}
.y106{bottom:632.413333pt;}
.yd6{bottom:638.973333pt;}
.y5d{bottom:640.733333pt;}
.yae{bottom:644.893333pt;}
.y8d{bottom:646.653333pt;}
.y105{bottom:648.093333pt;}
.yd5{bottom:654.493333pt;}
.y5c{bottom:657.853333pt;}
.yad{bottom:662.973333pt;}
.y104{bottom:663.613333pt;}
.y8c{bottom:663.933333pt;}
.yd4{bottom:670.173333pt;}
.y5b{bottom:675.133333pt;}
.y1a{bottom:678.973333pt;}
.y103{bottom:679.293333pt;}
.y8b{bottom:681.053333pt;}
.yd3{bottom:685.853333pt;}
.y5a{bottom:692.253333pt;}
.y102{bottom:694.973333pt;}
.y8a{bottom:698.333333pt;}
.yd2{bottom:701.373333pt;}
.y59{bottom:709.533333pt;}
.y101{bottom:710.493333pt;}
.y19{bottom:713.373333pt;}
.y89{bottom:715.453333pt;}
.yb{bottom:715.933333pt;}
.yd1{bottom:717.053333pt;}
.y100{bottom:726.173333pt;}
.y58{bottom:726.653333pt;}
.y88{bottom:732.733333pt;}
.yff{bottom:741.853333pt;}
.y57{bottom:743.933333pt;}
.yd0{bottom:748.413333pt;}
.y87{bottom:749.853333pt;}
.yfe{bottom:757.533333pt;}
.y56{bottom:761.053333pt;}
.ycf{bottom:763.933333pt;}
.y86{bottom:767.133333pt;}
.yfd{bottom:773.053333pt;}
.y55{bottom:778.333333pt;}
.yce{bottom:779.613333pt;}
.y85{bottom:784.253333pt;}
.yfc{bottom:788.733333pt;}
.y54{bottom:795.493333pt;}
.y84{bottom:801.573333pt;}
.yfb{bottom:804.453333pt;}
.y53{bottom:812.773333pt;}
.y83{bottom:818.693333pt;}
.yfa{bottom:819.973333pt;}
.y52{bottom:829.893333pt;}
.yf9{bottom:835.653333pt;}
.y82{bottom:835.973333pt;}
.y51{bottom:847.013333pt;}
.yf8{bottom:851.333333pt;}
.y81{bottom:853.093333pt;}
.y50{bottom:864.293333pt;}
.yf7{bottom:866.853333pt;}
.y80{bottom:870.213333pt;}
.y4f{bottom:881.413333pt;}
.yf6{bottom:882.533333pt;}
.y7f{bottom:887.493333pt;}
.yf5{bottom:898.213333pt;}
.y4e{bottom:898.693333pt;}
.y7e{bottom:904.613333pt;}
.yf4{bottom:913.893333pt;}
.y4d{bottom:915.813333pt;}
.y8{bottom:920.453333pt;}
.y7d{bottom:921.893333pt;}
.yf3{bottom:929.413333pt;}
.y4c{bottom:933.093333pt;}
.y7{bottom:935.813333pt;}
.y7c{bottom:939.013333pt;}
.yf2{bottom:945.093333pt;}
.y4b{bottom:950.213333pt;}
.y6{bottom:951.333333pt;}
.y7b{bottom:956.293333pt;}
.yf1{bottom:960.773333pt;}
.y5{bottom:966.853333pt;}
.y4a{bottom:967.493333pt;}
.y7a{bottom:973.413333pt;}
.yf0{bottom:976.293333pt;}
.y4{bottom:982.533333pt;}
.y49{bottom:984.613333pt;}
.y79{bottom:990.693333pt;}
.yef{bottom:991.973333pt;}
.y3{bottom:998.213333pt;}
.y2{bottom:1013.733333pt;}
.y44{bottom:1017.413333pt;}
.y1{bottom:1030.400000pt;}
.y43{bottom:1033.280000pt;}
.h5{height:3.575000pt;}
.ha{height:9.211875pt;}
.hd{height:25.261875pt;}
.hb{height:33.120000pt;}
.h9{height:36.305625pt;}
.h4{height:37.090625pt;}
.he{height:38.828437pt;}
.h3{height:44.975625pt;}
.h7{height:49.852500pt;}
.h2{height:51.026562pt;}
.h8{height:72.069375pt;}
.h6{height:201.626667pt;}
.hc{height:378.306667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w6{width:16.640000pt;}
.w4{width:89.946667pt;}
.w5{width:138.906667pt;}
.w7{width:439.746667pt;}
.w3{width:602.013333pt;}
.w8{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.xe{left:-100.800000pt;}
.x0{left:0.000000pt;}
.x12{left:2.240000pt;}
.x4{left:7.680000pt;}
.xc{left:48.794667pt;}
.x5{left:58.394667pt;}
.x6{left:86.394667pt;}
.x9{left:88.154667pt;}
.x1{left:94.591988pt;}
.x15{left:98.911988pt;}
.x3{left:101.792000pt;}
.xf{left:108.352000pt;}
.x13{left:123.071988pt;}
.x16{left:124.671988pt;}
.x7{left:167.874667pt;}
.x10{left:247.266667pt;}
.x17{left:249.666655pt;}
.xb{left:261.794667pt;}
.x11{left:263.906667pt;}
.x14{left:286.626655pt;}
.x8{left:292.194667pt;}
.xa{left:295.874667pt;}
.x2{left:388.546655pt;}
.xd{left:703.813333pt;}
}




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