
    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_2eed23595c6ab058fa8ce3c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_c0a5119630bae82b58efb9ef.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_173ed66fe9145df75035527d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4047c520459cd8a00fffc209.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_2316126002fb847e2bb21af2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_6d9c0bd6e5157358125b4256.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b372124cf126b62c15929b49.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.783691;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_de06202e246f27083d571a76.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls5{letter-spacing:-0.972000px;}
.ls9{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.498000px;}
.ls8{letter-spacing:-0.486600px;}
.ls14{letter-spacing:-0.466800px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.020160px;}
.lse{letter-spacing:0.466800px;}
.lsf{letter-spacing:0.486600px;}
.ls0{letter-spacing:0.498240px;}
.ls6{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.731520px;}
.lsc{letter-spacing:0.864000px;}
.lsd{letter-spacing:2.160000px;}
.ls10{letter-spacing:3.600000px;}
.lsa{letter-spacing:43.678560px;}
.ls7{letter-spacing:46.558560px;}
.ls11{letter-spacing:63.838560px;}
.ls12{letter-spacing:91.198560px;}
.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;}
}
.ws4{word-spacing:-60.480000px;}
.ws5{word-spacing:-15.606600px;}
.ws7{word-spacing:-15.586800px;}
.ws6{word-spacing:-15.140160px;}
.ws1{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.653200px;}
.ws3{word-spacing:-14.633400px;}
.ws0{word-spacing:-13.182000px;}
.ws8{word-spacing:-9.737280px;}
.ws2{word-spacing:0.000000px;}
._b{margin-left:-4.397760px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._a{width:3.283200px;}
._8{width:4.423680px;}
._7{width:5.927040px;}
._9{width:6.999360px;}
._f{width:8.346240px;}
._e{width:9.737280px;}
._d{width:11.309760px;}
._c{width:12.640320px;}
._10{width:13.910400px;}
._13{width:16.191360px;}
._12{width:17.366400px;}
._11{width:18.446400px;}
._16{width:19.716480px;}
._18{width:21.403200px;}
._17{width:23.049600px;}
._14{width:24.554880px;}
._15{width:25.963200px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs4{font-size:24.480000px;}
.fs3{font-size:38.880000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y28{bottom:3.240000px;}
.y27{bottom:20.520000px;}
.y26{bottom:37.800000px;}
.ye{bottom:43.560000px;}
.y25{bottom:57.600000px;}
.yc{bottom:68.400000px;}
.y24{bottom:92.880000px;}
.ya{bottom:94.716000px;}
.y23{bottom:110.190000px;}
.y22{bottom:127.470000px;}
.y38{bottom:131.076000px;}
.y37{bottom:136.476000px;}
.y21{bottom:144.750000px;}
.y36{bottom:148.716000px;}
.y69{bottom:149.436000px;}
.y68{bottom:154.830000px;}
.yab{bottom:156.270000px;}
.y20{bottom:162.030000px;}
.y87{bottom:167.070000px;}
.y67{bottom:167.790000px;}
.y66{bottom:173.190000px;}
.y12c{bottom:174.270000px;}
.yaa{bottom:176.070000px;}
.y1f{bottom:179.310000px;}
.y65{bottom:185.430000px;}
.y109{bottom:186.150000px;}
.y108{bottom:191.550000px;}
.ye7{bottom:195.870000px;}
.y1e{bottom:196.590000px;}
.y12b{bottom:203.475000px;}
.y107{bottom:203.835000px;}
.y35{bottom:208.155000px;}
.y1d{bottom:213.870000px;}
.ya9{bottom:213.915000px;}
.ye6{bottom:215.715000px;}
.yd3{bottom:219.315000px;}
.y86{bottom:222.915000px;}
.y12a{bottom:223.275000px;}
.y64{bottom:227.595000px;}
.y34{bottom:227.955000px;}
.y1c{bottom:231.180000px;}
.ye5{bottom:235.515000px;}
.yd2{bottom:239.115000px;}
.y85{bottom:242.715000px;}
.y129{bottom:243.075000px;}
.y62{bottom:247.395000px;}
.y33{bottom:247.755000px;}
.y1b{bottom:250.980000px;}
.ya8{bottom:251.715000px;}
.y63{bottom:252.795000px;}
.ye4{bottom:255.315000px;}
.yd1{bottom:258.915000px;}
.y106{bottom:259.635000px;}
.y84{bottom:262.515000px;}
.y60{bottom:267.195000px;}
.y32{bottom:267.555000px;}
.y128{bottom:268.275000px;}
.y61{bottom:272.595000px;}
.ye3{bottom:275.115000px;}
.yd0{bottom:278.715000px;}
.ya7{bottom:280.515000px;}
.y83{bottom:282.315000px;}
.y31{bottom:287.355000px;}
.y127{bottom:288.795000px;}
.ye2{bottom:294.915000px;}
.y105{bottom:297.435000px;}
.ycf{bottom:298.515000px;}
.ya6{bottom:300.315000px;}
.y82{bottom:302.115000px;}
.y30{bottom:307.155000px;}
.y126{bottom:308.595000px;}
.y5f{bottom:312.555000px;}
.ye1{bottom:314.715000px;}
.y104{bottom:317.235000px;}
.ya5{bottom:320.115000px;}
.y81{bottom:321.915000px;}
.y5e{bottom:326.985000px;}
.y2f{bottom:327.345000px;}
.y125{bottom:328.425000px;}
.ye0{bottom:334.905000px;}
.yce{bottom:336.345000px;}
.y103{bottom:337.065000px;}
.ya4{bottom:339.945000px;}
.y80{bottom:341.745000px;}
.y5d{bottom:346.785000px;}
.y2e{bottom:347.145000px;}
.y124{bottom:348.225000px;}
.ya3{bottom:359.745000px;}
.y7f{bottom:361.905000px;}
.y5c{bottom:366.585000px;}
.y2d{bottom:366.945000px;}
.y123{bottom:368.025000px;}
.ydf{bottom:372.705000px;}
.ycd{bottom:374.145000px;}
.y102{bottom:374.865000px;}
.ya2{bottom:379.905000px;}
.y7e{bottom:381.705000px;}
.y122{bottom:384.225000px;}
.y2c{bottom:386.745000px;}
.ycc{bottom:393.945000px;}
.y101{bottom:394.665000px;}
.y121{bottom:395.745000px;}
.ya1{bottom:399.705000px;}
.y5b{bottom:404.385000px;}
.y2b{bottom:406.545000px;}
.yde{bottom:410.505000px;}
.ycb{bottom:413.745000px;}
.y100{bottom:414.825000px;}
.y120{bottom:415.905000px;}
.y7d{bottom:419.505000px;}
.y2a{bottom:426.345000px;}
.ydd{bottom:430.305000px;}
.yca{bottom:433.905000px;}
.yff{bottom:434.625000px;}
.y11f{bottom:435.705000px;}
.ya0{bottom:437.505000px;}
.y5a{bottom:442.185000px;}
.ydc{bottom:450.150000px;}
.yc9{bottom:453.750000px;}
.yfe{bottom:454.470000px;}
.y29{bottom:455.190000px;}
.y11e{bottom:455.550000px;}
.y7c{bottom:457.350000px;}
.y59{bottom:462.030000px;}
.yc8{bottom:473.550000px;}
.yfd{bottom:474.270000px;}
.y11d{bottom:475.350000px;}
.y7b{bottom:477.150000px;}
.y1a{bottom:480.390000px;}
.y58{bottom:481.830000px;}
.ydb{bottom:487.950000px;}
.yc7{bottom:493.350000px;}
.yfc{bottom:494.070000px;}
.y11c{bottom:495.150000px;}
.y7a{bottom:496.950000px;}
.y57{bottom:501.630000px;}
.yda{bottom:507.750000px;}
.yc6{bottom:513.150000px;}
.yfb{bottom:513.870000px;}
.y11b{bottom:514.950000px;}
.y79{bottom:516.750000px;}
.yd9{bottom:527.550000px;}
.yc5{bottom:532.950000px;}
.yfa{bottom:533.670000px;}
.y11a{bottom:534.750000px;}
.y56{bottom:536.550000px;}
.yd8{bottom:547.350000px;}
.yf9{bottom:553.470000px;}
.y119{bottom:554.550000px;}
.y9f{bottom:556.350000px;}
.y78{bottom:565.350000px;}
.yd7{bottom:567.150000px;}
.yc4{bottom:570.750000px;}
.yf8{bottom:573.270000px;}
.y55{bottom:574.350000px;}
.y9e{bottom:576.180000px;}
.y77{bottom:585.180000px;}
.yc3{bottom:590.580000px;}
.yf7{bottom:593.100000px;}
.y54{bottom:594.180000px;}
.y9d{bottom:596.340000px;}
.y76{bottom:605.340000px;}
.yc2{bottom:610.380000px;}
.yf6{bottom:613.260000px;}
.y53{bottom:614.340000px;}
.y9c{bottom:616.140000px;}
.yc1{bottom:630.180000px;}
.yf5{bottom:633.060000px;}
.y52{bottom:634.140000px;}
.yd6{bottom:635.940000px;}
.y75{bottom:643.140000px;}
.yc0{bottom:650.340000px;}
.yf4{bottom:652.860000px;}
.y51{bottom:653.940000px;}
.ybf{bottom:670.140000px;}
.y118{bottom:671.940000px;}
.yd5{bottom:673.740000px;}
.y74{bottom:680.940000px;}
.y50{bottom:682.740000px;}
.ybe{bottom:689.940000px;}
.yf3{bottom:690.660000px;}
.y9b{bottom:691.740000px;}
.y73{bottom:700.770000px;}
.ybd{bottom:709.770000px;}
.y9a{bottom:711.570000px;}
.yf2{bottom:719.490000px;}
.y4f{bottom:720.570000px;}
.ybc{bottom:729.570000px;}
.y99{bottom:731.370000px;}
.yf0{bottom:739.290000px;}
.y4e{bottom:740.370000px;}
.yf1{bottom:744.690000px;}
.ybb{bottom:749.370000px;}
.y98{bottom:751.170000px;}
.yef{bottom:759.090000px;}
.y4d{bottom:760.170000px;}
.y19{bottom:768.810000px;}
.y117{bottom:769.170000px;}
.y97{bottom:770.970000px;}
.y72{bottom:778.170000px;}
.yee{bottom:778.890000px;}
.y4c{bottom:779.970000px;}
.y18{bottom:786.090000px;}
.yba{bottom:787.170000px;}
.y116{bottom:788.970000px;}
.y96{bottom:790.770000px;}
.yed{bottom:798.690000px;}
.y4b{bottom:799.770000px;}
.y17{bottom:803.370000px;}
.yb9{bottom:806.970000px;}
.y115{bottom:808.770000px;}
.y95{bottom:810.570000px;}
.y71{bottom:815.970000px;}
.yeb{bottom:818.490000px;}
.y4a{bottom:819.570000px;}
.y16{bottom:820.650000px;}
.yec{bottom:823.890000px;}
.yb8{bottom:826.815000px;}
.y114{bottom:828.615000px;}
.y94{bottom:830.415000px;}
.y70{bottom:835.815000px;}
.y15{bottom:837.615000px;}
.yea{bottom:838.695000px;}
.y49{bottom:839.415000px;}
.yb7{bottom:846.615000px;}
.yd4{bottom:848.415000px;}
.y93{bottom:850.575000px;}
.y14{bottom:854.895000px;}
.y6f{bottom:855.615000px;}
.ye9{bottom:858.495000px;}
.y48{bottom:859.575000px;}
.yb6{bottom:866.415000px;}
.y113{bottom:868.575000px;}
.y92{bottom:870.375000px;}
.y12{bottom:872.175000px;}
.y6e{bottom:875.415000px;}
.y13{bottom:878.295000px;}
.y47{bottom:879.375000px;}
.yb5{bottom:886.575000px;}
.y112{bottom:888.375000px;}
.y11{bottom:889.455000px;}
.y91{bottom:890.175000px;}
.y6d{bottom:895.575000px;}
.ye8{bottom:896.295000px;}
.yb4{bottom:906.375000px;}
.y10{bottom:906.735000px;}
.y111{bottom:908.175000px;}
.y6c{bottom:915.375000px;}
.y46{bottom:917.175000px;}
.yf{bottom:924.015000px;}
.yb3{bottom:926.175000px;}
.y90{bottom:927.975000px;}
.y6b{bottom:935.175000px;}
.y9{bottom:941.295000px;}
.yb2{bottom:945.975000px;}
.y110{bottom:947.775000px;}
.y45{bottom:955.005000px;}
.y8{bottom:958.605000px;}
.y8f{bottom:965.805000px;}
.y10f{bottom:967.605000px;}
.y7{bottom:972.645000px;}
.y44{bottom:974.805000px;}
.y8e{bottom:985.605000px;}
.y10e{bottom:987.405000px;}
.y43{bottom:994.605000px;}
.yb1{bottom:1003.605000px;}
.y8d{bottom:1005.405000px;}
.y10d{bottom:1007.205000px;}
.y42{bottom:1014.405000px;}
.yb0{bottom:1023.405000px;}
.y8c{bottom:1025.205000px;}
.y6{bottom:1027.365000px;}
.y41{bottom:1034.205000px;}
.y10c{bottom:1036.005000px;}
.yaf{bottom:1043.205000px;}
.y8b{bottom:1045.005000px;}
.y5{bottom:1052.205000px;}
.y40{bottom:1054.005000px;}
.y10b{bottom:1055.805000px;}
.yae{bottom:1063.005000px;}
.y8a{bottom:1064.805000px;}
.y4{bottom:1072.725000px;}
.y3f{bottom:1073.805000px;}
.y10a{bottom:1075.965000px;}
.yad{bottom:1082.850000px;}
.y89{bottom:1085.010000px;}
.y3{bottom:1094.010000px;}
.yac{bottom:1103.010000px;}
.y88{bottom:1104.810000px;}
.y2{bottom:1114.530000px;}
.y3e{bottom:1122.810000px;}
.y6a{bottom:1128.210000px;}
.y1{bottom:1131.450000px;}
.y3d{bottom:1142.610000px;}
.y3c{bottom:1166.370000px;}
.y3b{bottom:1180.410000px;}
.y3a{bottom:1201.290000px;}
.y39{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h12{height:17.702578px;}
.h11{height:18.144844px;}
.hd{height:28.115859px;}
.h9{height:28.818281px;}
.hb{height:38.671172px;}
.h7{height:39.570469px;}
.h5{height:39.997969px;}
.h4{height:43.735781px;}
.hf{height:44.031094px;}
.h2{height:44.828437px;}
.he{height:46.305000px;}
.h10{height:49.715859px;}
.h3{height:53.367188px;}
.hc{height:60.155156px;}
.ha{height:283.035000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w7{width:341.430000px;}
.w6{width:679.965000px;}
.w1{width:892.500000px;}
.w5{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x9{left:8.640000px;}
.x7{left:106.235987px;}
.x12{left:111.275987px;}
.x25{left:112.715987px;}
.x24{left:117.755987px;}
.x23{left:123.515987px;}
.x15{left:133.271987px;}
.xb{left:140.111987px;}
.x1c{left:160.274987px;}
.x13{left:180.794987px;}
.x16{left:196.634973px;}
.x17{left:201.674987px;}
.x2{left:254.264987px;}
.x6{left:274.064987px;}
.x1f{left:293.864973px;}
.x20{left:298.904987px;}
.xa{left:304.350000px;}
.x11{left:322.349987px;}
.x19{left:327.749987px;}
.x10{left:339.984000px;}
.xc{left:345.749987px;}
.x5{left:355.829987px;}
.xf{left:369.869987px;}
.x4{left:379.949987px;}
.x18{left:393.629973px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.x14{left:447.660000px;}
.xd{left:542.009973px;}
.xe{left:547.049987px;}
.x21{left:617.654973px;}
.x22{left:622.694987px;}
.x1d{left:643.574973px;}
.x1e{left:648.614987px;}
.x1a{left:722.444973px;}
.x1b{left:727.484987px;}
.x1{left:786.929987px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls5{letter-spacing:-0.864000pt;}
.ls9{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.442667pt;}
.ls8{letter-spacing:-0.432533pt;}
.ls14{letter-spacing:-0.414933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.017920pt;}
.lse{letter-spacing:0.414933pt;}
.lsf{letter-spacing:0.432533pt;}
.ls0{letter-spacing:0.442880pt;}
.ls6{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.650240pt;}
.lsc{letter-spacing:0.768000pt;}
.lsd{letter-spacing:1.920000pt;}
.ls10{letter-spacing:3.200000pt;}
.lsa{letter-spacing:38.825387pt;}
.ls7{letter-spacing:41.385387pt;}
.ls11{letter-spacing:56.745387pt;}
.ls12{letter-spacing:81.065387pt;}
.ws4{word-spacing:-53.760000pt;}
.ws5{word-spacing:-13.872533pt;}
.ws7{word-spacing:-13.854933pt;}
.ws6{word-spacing:-13.457920pt;}
.ws1{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.025067pt;}
.ws3{word-spacing:-13.007467pt;}
.ws0{word-spacing:-11.717333pt;}
.ws8{word-spacing:-8.655360pt;}
.ws2{word-spacing:0.000000pt;}
._b{margin-left:-3.909120pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._a{width:2.918400pt;}
._8{width:3.932160pt;}
._7{width:5.268480pt;}
._9{width:6.221653pt;}
._f{width:7.418880pt;}
._e{width:8.655360pt;}
._d{width:10.053120pt;}
._c{width:11.235840pt;}
._10{width:12.364800pt;}
._13{width:14.392320pt;}
._12{width:15.436800pt;}
._11{width:16.396800pt;}
._16{width:17.525760pt;}
._18{width:19.025067pt;}
._17{width:20.488533pt;}
._14{width:21.826560pt;}
._15{width:23.078400pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs4{font-size:21.760000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y28{bottom:2.880000pt;}
.y27{bottom:18.240000pt;}
.y26{bottom:33.600000pt;}
.ye{bottom:38.720000pt;}
.y25{bottom:51.200000pt;}
.yc{bottom:60.800000pt;}
.y24{bottom:82.560000pt;}
.ya{bottom:84.192000pt;}
.y23{bottom:97.946667pt;}
.y22{bottom:113.306667pt;}
.y38{bottom:116.512000pt;}
.y37{bottom:121.312000pt;}
.y21{bottom:128.666667pt;}
.y36{bottom:132.192000pt;}
.y69{bottom:132.832000pt;}
.y68{bottom:137.626667pt;}
.yab{bottom:138.906667pt;}
.y20{bottom:144.026667pt;}
.y87{bottom:148.506667pt;}
.y67{bottom:149.146667pt;}
.y66{bottom:153.946667pt;}
.y12c{bottom:154.906667pt;}
.yaa{bottom:156.506667pt;}
.y1f{bottom:159.386667pt;}
.y65{bottom:164.826667pt;}
.y109{bottom:165.466667pt;}
.y108{bottom:170.266667pt;}
.ye7{bottom:174.106667pt;}
.y1e{bottom:174.746667pt;}
.y12b{bottom:180.866667pt;}
.y107{bottom:181.186667pt;}
.y35{bottom:185.026667pt;}
.y1d{bottom:190.106667pt;}
.ya9{bottom:190.146667pt;}
.ye6{bottom:191.746667pt;}
.yd3{bottom:194.946667pt;}
.y86{bottom:198.146667pt;}
.y12a{bottom:198.466667pt;}
.y64{bottom:202.306667pt;}
.y34{bottom:202.626667pt;}
.y1c{bottom:205.493333pt;}
.ye5{bottom:209.346667pt;}
.yd2{bottom:212.546667pt;}
.y85{bottom:215.746667pt;}
.y129{bottom:216.066667pt;}
.y62{bottom:219.906667pt;}
.y33{bottom:220.226667pt;}
.y1b{bottom:223.093333pt;}
.ya8{bottom:223.746667pt;}
.y63{bottom:224.706667pt;}
.ye4{bottom:226.946667pt;}
.yd1{bottom:230.146667pt;}
.y106{bottom:230.786667pt;}
.y84{bottom:233.346667pt;}
.y60{bottom:237.506667pt;}
.y32{bottom:237.826667pt;}
.y128{bottom:238.466667pt;}
.y61{bottom:242.306667pt;}
.ye3{bottom:244.546667pt;}
.yd0{bottom:247.746667pt;}
.ya7{bottom:249.346667pt;}
.y83{bottom:250.946667pt;}
.y31{bottom:255.426667pt;}
.y127{bottom:256.706667pt;}
.ye2{bottom:262.146667pt;}
.y105{bottom:264.386667pt;}
.ycf{bottom:265.346667pt;}
.ya6{bottom:266.946667pt;}
.y82{bottom:268.546667pt;}
.y30{bottom:273.026667pt;}
.y126{bottom:274.306667pt;}
.y5f{bottom:277.826667pt;}
.ye1{bottom:279.746667pt;}
.y104{bottom:281.986667pt;}
.ya5{bottom:284.546667pt;}
.y81{bottom:286.146667pt;}
.y5e{bottom:290.653333pt;}
.y2f{bottom:290.973333pt;}
.y125{bottom:291.933333pt;}
.ye0{bottom:297.693333pt;}
.yce{bottom:298.973333pt;}
.y103{bottom:299.613333pt;}
.ya4{bottom:302.173333pt;}
.y80{bottom:303.773333pt;}
.y5d{bottom:308.253333pt;}
.y2e{bottom:308.573333pt;}
.y124{bottom:309.533333pt;}
.ya3{bottom:319.773333pt;}
.y7f{bottom:321.693333pt;}
.y5c{bottom:325.853333pt;}
.y2d{bottom:326.173333pt;}
.y123{bottom:327.133333pt;}
.ydf{bottom:331.293333pt;}
.ycd{bottom:332.573333pt;}
.y102{bottom:333.213333pt;}
.ya2{bottom:337.693333pt;}
.y7e{bottom:339.293333pt;}
.y122{bottom:341.533333pt;}
.y2c{bottom:343.773333pt;}
.ycc{bottom:350.173333pt;}
.y101{bottom:350.813333pt;}
.y121{bottom:351.773333pt;}
.ya1{bottom:355.293333pt;}
.y5b{bottom:359.453333pt;}
.y2b{bottom:361.373333pt;}
.yde{bottom:364.893333pt;}
.ycb{bottom:367.773333pt;}
.y100{bottom:368.733333pt;}
.y120{bottom:369.693333pt;}
.y7d{bottom:372.893333pt;}
.y2a{bottom:378.973333pt;}
.ydd{bottom:382.493333pt;}
.yca{bottom:385.693333pt;}
.yff{bottom:386.333333pt;}
.y11f{bottom:387.293333pt;}
.ya0{bottom:388.893333pt;}
.y5a{bottom:393.053333pt;}
.ydc{bottom:400.133333pt;}
.yc9{bottom:403.333333pt;}
.yfe{bottom:403.973333pt;}
.y29{bottom:404.613333pt;}
.y11e{bottom:404.933333pt;}
.y7c{bottom:406.533333pt;}
.y59{bottom:410.693333pt;}
.yc8{bottom:420.933333pt;}
.yfd{bottom:421.573333pt;}
.y11d{bottom:422.533333pt;}
.y7b{bottom:424.133333pt;}
.y1a{bottom:427.013333pt;}
.y58{bottom:428.293333pt;}
.ydb{bottom:433.733333pt;}
.yc7{bottom:438.533333pt;}
.yfc{bottom:439.173333pt;}
.y11c{bottom:440.133333pt;}
.y7a{bottom:441.733333pt;}
.y57{bottom:445.893333pt;}
.yda{bottom:451.333333pt;}
.yc6{bottom:456.133333pt;}
.yfb{bottom:456.773333pt;}
.y11b{bottom:457.733333pt;}
.y79{bottom:459.333333pt;}
.yd9{bottom:468.933333pt;}
.yc5{bottom:473.733333pt;}
.yfa{bottom:474.373333pt;}
.y11a{bottom:475.333333pt;}
.y56{bottom:476.933333pt;}
.yd8{bottom:486.533333pt;}
.yf9{bottom:491.973333pt;}
.y119{bottom:492.933333pt;}
.y9f{bottom:494.533333pt;}
.y78{bottom:502.533333pt;}
.yd7{bottom:504.133333pt;}
.yc4{bottom:507.333333pt;}
.yf8{bottom:509.573333pt;}
.y55{bottom:510.533333pt;}
.y9e{bottom:512.160000pt;}
.y77{bottom:520.160000pt;}
.yc3{bottom:524.960000pt;}
.yf7{bottom:527.200000pt;}
.y54{bottom:528.160000pt;}
.y9d{bottom:530.080000pt;}
.y76{bottom:538.080000pt;}
.yc2{bottom:542.560000pt;}
.yf6{bottom:545.120000pt;}
.y53{bottom:546.080000pt;}
.y9c{bottom:547.680000pt;}
.yc1{bottom:560.160000pt;}
.yf5{bottom:562.720000pt;}
.y52{bottom:563.680000pt;}
.yd6{bottom:565.280000pt;}
.y75{bottom:571.680000pt;}
.yc0{bottom:578.080000pt;}
.yf4{bottom:580.320000pt;}
.y51{bottom:581.280000pt;}
.ybf{bottom:595.680000pt;}
.y118{bottom:597.280000pt;}
.yd5{bottom:598.880000pt;}
.y74{bottom:605.280000pt;}
.y50{bottom:606.880000pt;}
.ybe{bottom:613.280000pt;}
.yf3{bottom:613.920000pt;}
.y9b{bottom:614.880000pt;}
.y73{bottom:622.906667pt;}
.ybd{bottom:630.906667pt;}
.y9a{bottom:632.506667pt;}
.yf2{bottom:639.546667pt;}
.y4f{bottom:640.506667pt;}
.ybc{bottom:648.506667pt;}
.y99{bottom:650.106667pt;}
.yf0{bottom:657.146667pt;}
.y4e{bottom:658.106667pt;}
.yf1{bottom:661.946667pt;}
.ybb{bottom:666.106667pt;}
.y98{bottom:667.706667pt;}
.yef{bottom:674.746667pt;}
.y4d{bottom:675.706667pt;}
.y19{bottom:683.386667pt;}
.y117{bottom:683.706667pt;}
.y97{bottom:685.306667pt;}
.y72{bottom:691.706667pt;}
.yee{bottom:692.346667pt;}
.y4c{bottom:693.306667pt;}
.y18{bottom:698.746667pt;}
.yba{bottom:699.706667pt;}
.y116{bottom:701.306667pt;}
.y96{bottom:702.906667pt;}
.yed{bottom:709.946667pt;}
.y4b{bottom:710.906667pt;}
.y17{bottom:714.106667pt;}
.yb9{bottom:717.306667pt;}
.y115{bottom:718.906667pt;}
.y95{bottom:720.506667pt;}
.y71{bottom:725.306667pt;}
.yeb{bottom:727.546667pt;}
.y4a{bottom:728.506667pt;}
.y16{bottom:729.466667pt;}
.yec{bottom:732.346667pt;}
.yb8{bottom:734.946667pt;}
.y114{bottom:736.546667pt;}
.y94{bottom:738.146667pt;}
.y70{bottom:742.946667pt;}
.y15{bottom:744.546667pt;}
.yea{bottom:745.506667pt;}
.y49{bottom:746.146667pt;}
.yb7{bottom:752.546667pt;}
.yd4{bottom:754.146667pt;}
.y93{bottom:756.066667pt;}
.y14{bottom:759.906667pt;}
.y6f{bottom:760.546667pt;}
.ye9{bottom:763.106667pt;}
.y48{bottom:764.066667pt;}
.yb6{bottom:770.146667pt;}
.y113{bottom:772.066667pt;}
.y92{bottom:773.666667pt;}
.y12{bottom:775.266667pt;}
.y6e{bottom:778.146667pt;}
.y13{bottom:780.706667pt;}
.y47{bottom:781.666667pt;}
.yb5{bottom:788.066667pt;}
.y112{bottom:789.666667pt;}
.y11{bottom:790.626667pt;}
.y91{bottom:791.266667pt;}
.y6d{bottom:796.066667pt;}
.ye8{bottom:796.706667pt;}
.yb4{bottom:805.666667pt;}
.y10{bottom:805.986667pt;}
.y111{bottom:807.266667pt;}
.y6c{bottom:813.666667pt;}
.y46{bottom:815.266667pt;}
.yf{bottom:821.346667pt;}
.yb3{bottom:823.266667pt;}
.y90{bottom:824.866667pt;}
.y6b{bottom:831.266667pt;}
.y9{bottom:836.706667pt;}
.yb2{bottom:840.866667pt;}
.y110{bottom:842.466667pt;}
.y45{bottom:848.893333pt;}
.y8{bottom:852.093333pt;}
.y8f{bottom:858.493333pt;}
.y10f{bottom:860.093333pt;}
.y7{bottom:864.573333pt;}
.y44{bottom:866.493333pt;}
.y8e{bottom:876.093333pt;}
.y10e{bottom:877.693333pt;}
.y43{bottom:884.093333pt;}
.yb1{bottom:892.093333pt;}
.y8d{bottom:893.693333pt;}
.y10d{bottom:895.293333pt;}
.y42{bottom:901.693333pt;}
.yb0{bottom:909.693333pt;}
.y8c{bottom:911.293333pt;}
.y6{bottom:913.213333pt;}
.y41{bottom:919.293333pt;}
.y10c{bottom:920.893333pt;}
.yaf{bottom:927.293333pt;}
.y8b{bottom:928.893333pt;}
.y5{bottom:935.293333pt;}
.y40{bottom:936.893333pt;}
.y10b{bottom:938.493333pt;}
.yae{bottom:944.893333pt;}
.y8a{bottom:946.493333pt;}
.y4{bottom:953.533333pt;}
.y3f{bottom:954.493333pt;}
.y10a{bottom:956.413333pt;}
.yad{bottom:962.533333pt;}
.y89{bottom:964.453333pt;}
.y3{bottom:972.453333pt;}
.yac{bottom:980.453333pt;}
.y88{bottom:982.053333pt;}
.y2{bottom:990.693333pt;}
.y3e{bottom:998.053333pt;}
.y6a{bottom:1002.853333pt;}
.y1{bottom:1005.733333pt;}
.y3d{bottom:1015.653333pt;}
.y3c{bottom:1036.773333pt;}
.y3b{bottom:1049.253333pt;}
.y3a{bottom:1067.813333pt;}
.y39{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h12{height:15.735625pt;}
.h11{height:16.128750pt;}
.hd{height:24.991875pt;}
.h9{height:25.616250pt;}
.hb{height:34.374375pt;}
.h7{height:35.173750pt;}
.h5{height:35.553750pt;}
.h4{height:38.876250pt;}
.hf{height:39.138750pt;}
.h2{height:39.847500pt;}
.he{height:41.160000pt;}
.h10{height:44.191875pt;}
.h3{height:47.437500pt;}
.hc{height:53.471250pt;}
.ha{height:251.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w7{width:303.493333pt;}
.w6{width:604.413333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x9{left:7.680000pt;}
.x7{left:94.431988pt;}
.x12{left:98.911988pt;}
.x25{left:100.191988pt;}
.x24{left:104.671988pt;}
.x23{left:109.791988pt;}
.x15{left:118.463988pt;}
.xb{left:124.543988pt;}
.x1c{left:142.466655pt;}
.x13{left:160.706655pt;}
.x16{left:174.786643pt;}
.x17{left:179.266655pt;}
.x2{left:226.013322pt;}
.x6{left:243.613322pt;}
.x1f{left:261.213310pt;}
.x20{left:265.693322pt;}
.xa{left:270.533333pt;}
.x11{left:286.533322pt;}
.x19{left:291.333322pt;}
.x10{left:302.208000pt;}
.xc{left:307.333322pt;}
.x5{left:316.293322pt;}
.xf{left:328.773322pt;}
.x4{left:337.733322pt;}
.x18{left:349.893310pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.x14{left:397.920000pt;}
.xd{left:481.786643pt;}
.xe{left:486.266655pt;}
.x21{left:549.026643pt;}
.x22{left:553.506655pt;}
.x1d{left:572.066643pt;}
.x1e{left:576.546655pt;}
.x1a{left:642.173310pt;}
.x1b{left:646.653322pt;}
.x1{left:699.493322pt;}
}




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