
    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_5b79009131f7070fb96111f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.937988;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_130a6f38f77023bd8ce60fe3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932617;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_50a7cff37dfabfb5616965fc.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_8364b9dc40bdbc822ce20536.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f46df4b0e145bd8dc77c971c.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_507c91771b060813d2950417.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dc1352e352c835ef2eef4a59.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960449;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_b289b4fdafe16eb1940ad8f6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063477;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v3{vertical-align:-12.240000px;}
.v6{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.240000px;}
.v1{vertical-align:20.880000px;}
.v7{vertical-align:33.840000px;}
.v5{vertical-align:40.320000px;}
.v2{vertical-align:46.080000px;}
.ls7{letter-spacing:-0.624000px;}
.ls16{letter-spacing:-0.259800px;}
.ls11{letter-spacing:-0.253200px;}
.ls17{letter-spacing:-0.206400px;}
.ls1c{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.lsa{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.045360px;}
.ls14{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.ls1a{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.306720px;}
.ls3{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.612000px;}
.ls1{letter-spacing:0.894240px;}
.ls1b{letter-spacing:1.080000px;}
.lse{letter-spacing:2.460960px;}
.ls9{letter-spacing:3.180960px;}
.ls13{letter-spacing:5.220000px;}
.lsb{letter-spacing:13.491360px;}
.lsd{letter-spacing:16.140960px;}
.ls8{letter-spacing:16.320960px;}
.ls18{letter-spacing:22.986720px;}
.lsf{letter-spacing:196.519680px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-59.760000px;}
.ws7{word-spacing:-46.400400px;}
.ws9{word-spacing:-46.268640px;}
.ws8{word-spacing:-46.092960px;}
.ws6{word-spacing:-46.080720px;}
.wse{word-spacing:-43.200720px;}
.ws4{word-spacing:-42.762960px;}
.wsf{word-spacing:-15.552000px;}
.ws11{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.ws2{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.833200px;}
.ws10{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.686800px;}
.ws0{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.105360px;}
.wsa{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._28{margin-left:-7.433280px;}
._0{margin-left:-1.349280px;}
._1{width:1.015920px;}
._5{width:2.390400px;}
._3{width:4.003920px;}
._2{width:5.617440px;}
._17{width:6.668400px;}
._f{width:7.853280px;}
._e{width:8.999040px;}
._1d{width:10.064400px;}
._14{width:11.234880px;}
._1a{width:12.404880px;}
._10{width:13.864320px;}
._8{width:16.971840px;}
._9{width:18.412320px;}
._1c{width:19.422000px;}
._d{width:20.497680px;}
._c{width:21.752640px;}
._6{width:23.545440px;}
._7{width:24.860160px;}
._b{width:26.294400px;}
._13{width:27.489600px;}
._1f{width:28.625040px;}
._1b{width:30.298320px;}
._19{width:31.846320px;}
._18{width:32.987520px;}
._16{width:34.242480px;}
._15{width:35.258400px;}
._11{width:37.230480px;}
._1e{width:38.306160px;}
._25{width:39.335280px;}
._24{width:41.161440px;}
._12{width:42.608880px;}
._20{width:47.031120px;}
._a{width:49.720320px;}
._27{width:50.766240px;}
._23{width:52.050960px;}
._4{width:54.501120px;}
._22{width:65.018880px;}
._26{width:73.923120px;}
._21{width:107.908560px;}
.fc1{color:rgb(19,19,19);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:3.234000px;}
.yaf{bottom:3.240000px;}
.y4{bottom:57.096000px;}
.yb6{bottom:98.316000px;}
.ye8{bottom:104.436000px;}
.y118{bottom:105.156000px;}
.y7c{bottom:108.936000px;}
.y40{bottom:112.356000px;}
.yb5{bottom:115.596000px;}
.ye7{bottom:121.716000px;}
.y117{bottom:122.436000px;}
.y7b{bottom:126.216000px;}
.y3f{bottom:129.636000px;}
.yb4{bottom:132.876000px;}
.ye6{bottom:138.816000px;}
.y116{bottom:139.716000px;}
.y7a{bottom:143.316000px;}
.y3e{bottom:146.916000px;}
.yb2{bottom:147.636000px;}
.ye5{bottom:156.090000px;}
.y115{bottom:156.810000px;}
.y79{bottom:160.590000px;}
.y3d{bottom:164.010000px;}
.yb1{bottom:165.630000px;}
.ye4{bottom:173.370000px;}
.y114{bottom:174.090000px;}
.y78{bottom:177.870000px;}
.y3c{bottom:181.290000px;}
.yb0{bottom:183.630000px;}
.ye3{bottom:190.650000px;}
.y113{bottom:191.370000px;}
.y77{bottom:195.150000px;}
.y3b{bottom:198.570000px;}
.yae{bottom:201.630000px;}
.ye2{bottom:207.930000px;}
.y112{bottom:208.650000px;}
.y76{bottom:212.430000px;}
.y3a{bottom:215.850000px;}
.yad{bottom:222.870000px;}
.ye1{bottom:225.210000px;}
.y111{bottom:225.930000px;}
.y75{bottom:229.710000px;}
.y39{bottom:233.130000px;}
.yac{bottom:240.150000px;}
.ye0{bottom:242.310000px;}
.y110{bottom:243.210000px;}
.y74{bottom:246.810000px;}
.y38{bottom:250.410000px;}
.yab{bottom:257.430000px;}
.ydf{bottom:259.590000px;}
.y10f{bottom:260.310000px;}
.y73{bottom:264.090000px;}
.y37{bottom:267.510000px;}
.yaa{bottom:274.530000px;}
.yde{bottom:276.915000px;}
.y10e{bottom:277.635000px;}
.y72{bottom:281.415000px;}
.y36{bottom:284.835000px;}
.ya9{bottom:288.615000px;}
.ydd{bottom:294.195000px;}
.y10d{bottom:294.915000px;}
.y71{bottom:298.695000px;}
.y35{bottom:302.115000px;}
.ydc{bottom:311.475000px;}
.y10c{bottom:312.195000px;}
.y70{bottom:315.975000px;}
.y34{bottom:319.395000px;}
.ydb{bottom:328.575000px;}
.y10b{bottom:329.475000px;}
.y6f{bottom:333.075000px;}
.y33{bottom:336.675000px;}
.yda{bottom:345.855000px;}
.y10a{bottom:346.575000px;}
.y6e{bottom:350.355000px;}
.y32{bottom:353.775000px;}
.yd9{bottom:363.135000px;}
.y109{bottom:363.855000px;}
.y6d{bottom:367.635000px;}
.y31{bottom:371.055000px;}
.yd8{bottom:380.415000px;}
.y108{bottom:381.135000px;}
.y6c{bottom:384.915000px;}
.y30{bottom:388.335000px;}
.yd7{bottom:397.695000px;}
.y107{bottom:398.415000px;}
.y6b{bottom:402.195000px;}
.y2f{bottom:405.615000px;}
.yd6{bottom:414.975000px;}
.y106{bottom:415.695000px;}
.y6a{bottom:419.475000px;}
.y2e{bottom:422.895000px;}
.yd5{bottom:432.075000px;}
.y105{bottom:432.975000px;}
.y69{bottom:436.575000px;}
.y2d{bottom:440.175000px;}
.yd4{bottom:449.355000px;}
.y104{bottom:450.075000px;}
.y68{bottom:453.855000px;}
.y2c{bottom:457.275000px;}
.yd3{bottom:466.635000px;}
.y103{bottom:467.355000px;}
.y67{bottom:471.135000px;}
.y2b{bottom:474.555000px;}
.yd2{bottom:483.915000px;}
.y102{bottom:484.635000px;}
.y66{bottom:488.415000px;}
.y2a{bottom:491.835000px;}
.yd1{bottom:501.195000px;}
.y101{bottom:501.915000px;}
.y65{bottom:505.695000px;}
.y29{bottom:509.115000px;}
.yd0{bottom:518.475000px;}
.y100{bottom:519.195000px;}
.y64{bottom:522.975000px;}
.y28{bottom:526.395000px;}
.ycf{bottom:535.575000px;}
.yff{bottom:536.475000px;}
.y63{bottom:540.075000px;}
.y27{bottom:543.675000px;}
.yce{bottom:552.855000px;}
.yfe{bottom:553.575000px;}
.y62{bottom:557.355000px;}
.y26{bottom:560.775000px;}
.ycd{bottom:570.165000px;}
.yfd{bottom:570.885000px;}
.y61{bottom:574.665000px;}
.y25{bottom:578.085000px;}
.ycc{bottom:587.445000px;}
.yfc{bottom:588.165000px;}
.y60{bottom:591.945000px;}
.y24{bottom:595.365000px;}
.ycb{bottom:604.725000px;}
.yfb{bottom:605.445000px;}
.y5f{bottom:609.225000px;}
.y23{bottom:612.645000px;}
.yca{bottom:622.005000px;}
.yfa{bottom:622.725000px;}
.y5e{bottom:626.505000px;}
.y22{bottom:629.925000px;}
.yc9{bottom:639.105000px;}
.yf9{bottom:640.005000px;}
.y5d{bottom:643.605000px;}
.y21{bottom:647.205000px;}
.yc8{bottom:656.385000px;}
.yf8{bottom:657.105000px;}
.y5c{bottom:660.885000px;}
.y20{bottom:664.305000px;}
.yc7{bottom:673.665000px;}
.yf7{bottom:674.385000px;}
.y5b{bottom:678.165000px;}
.y1f{bottom:681.585000px;}
.yc6{bottom:690.945000px;}
.yf6{bottom:691.665000px;}
.y93{bottom:692.385000px;}
.y5a{bottom:695.445000px;}
.ya8{bottom:695.805000px;}
.y1e{bottom:698.865000px;}
.yc5{bottom:708.225000px;}
.yf5{bottom:708.945000px;}
.y92{bottom:709.665000px;}
.y59{bottom:712.725000px;}
.ya7{bottom:712.905000px;}
.y1d{bottom:716.145000px;}
.yc4{bottom:725.325000px;}
.yf4{bottom:726.225000px;}
.y91{bottom:726.945000px;}
.y58{bottom:729.825000px;}
.ya6{bottom:730.185000px;}
.y1c{bottom:733.425000px;}
.yc3{bottom:742.605000px;}
.yf3{bottom:743.325000px;}
.y90{bottom:744.225000px;}
.y57{bottom:747.105000px;}
.ya5{bottom:747.465000px;}
.y1b{bottom:750.525000px;}
.yc2{bottom:759.885000px;}
.yf2{bottom:760.605000px;}
.y8f{bottom:761.505000px;}
.y56{bottom:764.385000px;}
.ya4{bottom:764.745000px;}
.y1a{bottom:767.805000px;}
.yc1{bottom:777.165000px;}
.yf1{bottom:777.885000px;}
.y8e{bottom:778.605000px;}
.y55{bottom:781.665000px;}
.ya3{bottom:782.025000px;}
.y19{bottom:785.085000px;}
.yc0{bottom:794.445000px;}
.yf0{bottom:795.165000px;}
.y8d{bottom:795.885000px;}
.y54{bottom:798.945000px;}
.ya2{bottom:799.305000px;}
.y18{bottom:802.365000px;}
.ybf{bottom:811.725000px;}
.yef{bottom:812.445000px;}
.y8c{bottom:813.165000px;}
.y53{bottom:816.225000px;}
.ya1{bottom:816.405000px;}
.y17{bottom:819.645000px;}
.ybe{bottom:828.825000px;}
.yee{bottom:829.725000px;}
.y8b{bottom:830.445000px;}
.y52{bottom:833.325000px;}
.ya0{bottom:833.685000px;}
.y16{bottom:836.925000px;}
.ybd{bottom:846.150000px;}
.yed{bottom:846.870000px;}
.y8a{bottom:847.770000px;}
.y51{bottom:850.650000px;}
.y9f{bottom:851.010000px;}
.y15{bottom:854.070000px;}
.ybc{bottom:863.430000px;}
.yec{bottom:864.150000px;}
.y89{bottom:865.050000px;}
.y50{bottom:867.930000px;}
.y9e{bottom:868.290000px;}
.y14{bottom:871.350000px;}
.ybb{bottom:878.190000px;}
.yeb{bottom:881.430000px;}
.y88{bottom:882.150000px;}
.y4f{bottom:885.210000px;}
.y9d{bottom:885.570000px;}
.y13{bottom:888.630000px;}
.yba{bottom:896.190000px;}
.yea{bottom:898.710000px;}
.y87{bottom:899.430000px;}
.y4e{bottom:902.490000px;}
.y9c{bottom:902.850000px;}
.y12{bottom:905.910000px;}
.yb9{bottom:914.190000px;}
.ye9{bottom:915.990000px;}
.y86{bottom:916.710000px;}
.y4d{bottom:919.770000px;}
.y9b{bottom:919.950000px;}
.y11{bottom:923.190000px;}
.yb8{bottom:932.190000px;}
.y85{bottom:933.990000px;}
.y4c{bottom:936.870000px;}
.y9a{bottom:937.230000px;}
.y10{bottom:940.470000px;}
.yb7{bottom:950.190000px;}
.y84{bottom:951.270000px;}
.y4b{bottom:954.150000px;}
.y99{bottom:954.510000px;}
.yf{bottom:957.570000px;}
.y83{bottom:968.370000px;}
.y4a{bottom:971.430000px;}
.y98{bottom:971.790000px;}
.ye{bottom:974.850000px;}
.y82{bottom:985.650000px;}
.y49{bottom:988.710000px;}
.y97{bottom:989.070000px;}
.yd{bottom:992.130000px;}
.y81{bottom:1002.930000px;}
.y48{bottom:1005.990000px;}
.y96{bottom:1006.350000px;}
.yc{bottom:1009.410000px;}
.y80{bottom:1020.210000px;}
.y47{bottom:1023.270000px;}
.y95{bottom:1023.450000px;}
.yb{bottom:1026.690000px;}
.y7f{bottom:1037.490000px;}
.y46{bottom:1040.370000px;}
.y94{bottom:1040.730000px;}
.ya{bottom:1045.230000px;}
.y7e{bottom:1054.770000px;}
.y45{bottom:1057.650000px;}
.y7d{bottom:1064.850000px;}
.y9{bottom:1068.090000px;}
.y44{bottom:1074.930000px;}
.y8{bottom:1085.190000px;}
.y43{bottom:1092.210000px;}
.y7{bottom:1102.470000px;}
.y42{bottom:1109.490000px;}
.y6{bottom:1121.010000px;}
.y41{bottom:1126.590000px;}
.y5{bottom:1143.900000px;}
.y3{bottom:1162.440000px;}
.y2{bottom:1184.580000px;}
.y1{bottom:1198.440000px;}
.hb{height:17.280000px;}
.h2{height:34.837383px;}
.h5{height:42.164648px;}
.h7{height:43.215117px;}
.hc{height:43.506914px;}
.h8{height:48.995859px;}
.h6{height:56.900391px;}
.h4{height:60.917695px;}
.ha{height:83.535117px;}
.h3{height:83.787539px;}
.h9{height:96.444141px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:249.150000px;}
.w4{width:249.195000px;}
.w3{width:249.330000px;}
.w6{width:270.930000px;}
.w7{width:477.285000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:40.140000px;}
.x1a{left:64.794000px;}
.x12{left:69.330000px;}
.x10{left:73.074000px;}
.x1c{left:80.130000px;}
.x17{left:94.140000px;}
.x18{left:98.814000px;}
.x15{left:100.074000px;}
.xf{left:109.296000px;}
.x16{left:111.450000px;}
.x1d{left:115.734000px;}
.x1{left:117.035987px;}
.x21{left:118.074000px;}
.x2{left:124.595987px;}
.x1f{left:127.074000px;}
.x3{left:138.455987px;}
.x5{left:170.849987px;}
.x6{left:188.489987px;}
.x19{left:191.549987px;}
.xa{left:201.809987px;}
.x1e{left:204.510000px;}
.x20{left:208.290000px;}
.xb{left:257.114987px;}
.x4{left:268.814987px;}
.x7{left:292.394987px;}
.x11{left:359.355000px;}
.x1b{left:380.955000px;}
.x9{left:499.784987px;}
.x8{left:552.884987px;}
.xc{left:605.849987px;}
.x13{left:609.270000px;}
.xd{left:683.069987px;}
.xe{left:847.259987px;}
@media print{
.v3{vertical-align:-10.880000pt;}
.v6{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.880000pt;}
.v1{vertical-align:18.560000pt;}
.v7{vertical-align:30.080000pt;}
.v5{vertical-align:35.840000pt;}
.v2{vertical-align:40.960000pt;}
.ls7{letter-spacing:-0.554667pt;}
.ls16{letter-spacing:-0.230933pt;}
.ls11{letter-spacing:-0.225067pt;}
.ls17{letter-spacing:-0.183467pt;}
.ls1c{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.lsa{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.040320pt;}
.ls14{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.ls1a{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.272640pt;}
.ls3{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.544000pt;}
.ls1{letter-spacing:0.794880pt;}
.ls1b{letter-spacing:0.960000pt;}
.lse{letter-spacing:2.187520pt;}
.ls9{letter-spacing:2.827520pt;}
.ls13{letter-spacing:4.640000pt;}
.lsb{letter-spacing:11.992320pt;}
.lsd{letter-spacing:14.347520pt;}
.ls8{letter-spacing:14.507520pt;}
.ls18{letter-spacing:20.432640pt;}
.lsf{letter-spacing:174.684160pt;}
.ws5{word-spacing:-53.120000pt;}
.ws7{word-spacing:-41.244800pt;}
.ws9{word-spacing:-41.127680pt;}
.ws8{word-spacing:-40.971520pt;}
.ws6{word-spacing:-40.960640pt;}
.wse{word-spacing:-38.400640pt;}
.ws4{word-spacing:-38.011520pt;}
.wsf{word-spacing:-13.824000pt;}
.ws11{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws12{word-spacing:-13.185067pt;}
.ws10{word-spacing:-13.096533pt;}
.wsc{word-spacing:-13.054933pt;}
.ws0{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.760320pt;}
.wsa{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._28{margin-left:-6.607360pt;}
._0{margin-left:-1.199360pt;}
._1{width:0.903040pt;}
._5{width:2.124800pt;}
._3{width:3.559040pt;}
._2{width:4.993280pt;}
._17{width:5.927467pt;}
._f{width:6.980693pt;}
._e{width:7.999147pt;}
._1d{width:8.946133pt;}
._14{width:9.986560pt;}
._1a{width:11.026560pt;}
._10{width:12.323840pt;}
._8{width:15.086080pt;}
._9{width:16.366507pt;}
._1c{width:17.264000pt;}
._d{width:18.220160pt;}
._c{width:19.335680pt;}
._6{width:20.929280pt;}
._7{width:22.097920pt;}
._b{width:23.372800pt;}
._13{width:24.435200pt;}
._1f{width:25.444480pt;}
._1b{width:26.931840pt;}
._19{width:28.307840pt;}
._18{width:29.322240pt;}
._16{width:30.437760pt;}
._15{width:31.340800pt;}
._11{width:33.093760pt;}
._1e{width:34.049920pt;}
._25{width:34.964693pt;}
._24{width:36.587947pt;}
._12{width:37.874560pt;}
._20{width:41.805440pt;}
._a{width:44.195840pt;}
._27{width:45.125547pt;}
._23{width:46.267520pt;}
._4{width:48.445440pt;}
._22{width:57.794560pt;}
._26{width:65.709440pt;}
._21{width:95.918720pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:2.874667pt;}
.yaf{bottom:2.880000pt;}
.y4{bottom:50.752000pt;}
.yb6{bottom:87.392000pt;}
.ye8{bottom:92.832000pt;}
.y118{bottom:93.472000pt;}
.y7c{bottom:96.832000pt;}
.y40{bottom:99.872000pt;}
.yb5{bottom:102.752000pt;}
.ye7{bottom:108.192000pt;}
.y117{bottom:108.832000pt;}
.y7b{bottom:112.192000pt;}
.y3f{bottom:115.232000pt;}
.yb4{bottom:118.112000pt;}
.ye6{bottom:123.392000pt;}
.y116{bottom:124.192000pt;}
.y7a{bottom:127.392000pt;}
.y3e{bottom:130.592000pt;}
.yb2{bottom:131.232000pt;}
.ye5{bottom:138.746667pt;}
.y115{bottom:139.386667pt;}
.y79{bottom:142.746667pt;}
.y3d{bottom:145.786667pt;}
.yb1{bottom:147.226667pt;}
.ye4{bottom:154.106667pt;}
.y114{bottom:154.746667pt;}
.y78{bottom:158.106667pt;}
.y3c{bottom:161.146667pt;}
.yb0{bottom:163.226667pt;}
.ye3{bottom:169.466667pt;}
.y113{bottom:170.106667pt;}
.y77{bottom:173.466667pt;}
.y3b{bottom:176.506667pt;}
.yae{bottom:179.226667pt;}
.ye2{bottom:184.826667pt;}
.y112{bottom:185.466667pt;}
.y76{bottom:188.826667pt;}
.y3a{bottom:191.866667pt;}
.yad{bottom:198.106667pt;}
.ye1{bottom:200.186667pt;}
.y111{bottom:200.826667pt;}
.y75{bottom:204.186667pt;}
.y39{bottom:207.226667pt;}
.yac{bottom:213.466667pt;}
.ye0{bottom:215.386667pt;}
.y110{bottom:216.186667pt;}
.y74{bottom:219.386667pt;}
.y38{bottom:222.586667pt;}
.yab{bottom:228.826667pt;}
.ydf{bottom:230.746667pt;}
.y10f{bottom:231.386667pt;}
.y73{bottom:234.746667pt;}
.y37{bottom:237.786667pt;}
.yaa{bottom:244.026667pt;}
.yde{bottom:246.146667pt;}
.y10e{bottom:246.786667pt;}
.y72{bottom:250.146667pt;}
.y36{bottom:253.186667pt;}
.ya9{bottom:256.546667pt;}
.ydd{bottom:261.506667pt;}
.y10d{bottom:262.146667pt;}
.y71{bottom:265.506667pt;}
.y35{bottom:268.546667pt;}
.ydc{bottom:276.866667pt;}
.y10c{bottom:277.506667pt;}
.y70{bottom:280.866667pt;}
.y34{bottom:283.906667pt;}
.ydb{bottom:292.066667pt;}
.y10b{bottom:292.866667pt;}
.y6f{bottom:296.066667pt;}
.y33{bottom:299.266667pt;}
.yda{bottom:307.426667pt;}
.y10a{bottom:308.066667pt;}
.y6e{bottom:311.426667pt;}
.y32{bottom:314.466667pt;}
.yd9{bottom:322.786667pt;}
.y109{bottom:323.426667pt;}
.y6d{bottom:326.786667pt;}
.y31{bottom:329.826667pt;}
.yd8{bottom:338.146667pt;}
.y108{bottom:338.786667pt;}
.y6c{bottom:342.146667pt;}
.y30{bottom:345.186667pt;}
.yd7{bottom:353.506667pt;}
.y107{bottom:354.146667pt;}
.y6b{bottom:357.506667pt;}
.y2f{bottom:360.546667pt;}
.yd6{bottom:368.866667pt;}
.y106{bottom:369.506667pt;}
.y6a{bottom:372.866667pt;}
.y2e{bottom:375.906667pt;}
.yd5{bottom:384.066667pt;}
.y105{bottom:384.866667pt;}
.y69{bottom:388.066667pt;}
.y2d{bottom:391.266667pt;}
.yd4{bottom:399.426667pt;}
.y104{bottom:400.066667pt;}
.y68{bottom:403.426667pt;}
.y2c{bottom:406.466667pt;}
.yd3{bottom:414.786667pt;}
.y103{bottom:415.426667pt;}
.y67{bottom:418.786667pt;}
.y2b{bottom:421.826667pt;}
.yd2{bottom:430.146667pt;}
.y102{bottom:430.786667pt;}
.y66{bottom:434.146667pt;}
.y2a{bottom:437.186667pt;}
.yd1{bottom:445.506667pt;}
.y101{bottom:446.146667pt;}
.y65{bottom:449.506667pt;}
.y29{bottom:452.546667pt;}
.yd0{bottom:460.866667pt;}
.y100{bottom:461.506667pt;}
.y64{bottom:464.866667pt;}
.y28{bottom:467.906667pt;}
.ycf{bottom:476.066667pt;}
.yff{bottom:476.866667pt;}
.y63{bottom:480.066667pt;}
.y27{bottom:483.266667pt;}
.yce{bottom:491.426667pt;}
.yfe{bottom:492.066667pt;}
.y62{bottom:495.426667pt;}
.y26{bottom:498.466667pt;}
.ycd{bottom:506.813333pt;}
.yfd{bottom:507.453333pt;}
.y61{bottom:510.813333pt;}
.y25{bottom:513.853333pt;}
.ycc{bottom:522.173333pt;}
.yfc{bottom:522.813333pt;}
.y60{bottom:526.173333pt;}
.y24{bottom:529.213333pt;}
.ycb{bottom:537.533333pt;}
.yfb{bottom:538.173333pt;}
.y5f{bottom:541.533333pt;}
.y23{bottom:544.573333pt;}
.yca{bottom:552.893333pt;}
.yfa{bottom:553.533333pt;}
.y5e{bottom:556.893333pt;}
.y22{bottom:559.933333pt;}
.yc9{bottom:568.093333pt;}
.yf9{bottom:568.893333pt;}
.y5d{bottom:572.093333pt;}
.y21{bottom:575.293333pt;}
.yc8{bottom:583.453333pt;}
.yf8{bottom:584.093333pt;}
.y5c{bottom:587.453333pt;}
.y20{bottom:590.493333pt;}
.yc7{bottom:598.813333pt;}
.yf7{bottom:599.453333pt;}
.y5b{bottom:602.813333pt;}
.y1f{bottom:605.853333pt;}
.yc6{bottom:614.173333pt;}
.yf6{bottom:614.813333pt;}
.y93{bottom:615.453333pt;}
.y5a{bottom:618.173333pt;}
.ya8{bottom:618.493333pt;}
.y1e{bottom:621.213333pt;}
.yc5{bottom:629.533333pt;}
.yf5{bottom:630.173333pt;}
.y92{bottom:630.813333pt;}
.y59{bottom:633.533333pt;}
.ya7{bottom:633.693333pt;}
.y1d{bottom:636.573333pt;}
.yc4{bottom:644.733333pt;}
.yf4{bottom:645.533333pt;}
.y91{bottom:646.173333pt;}
.y58{bottom:648.733333pt;}
.ya6{bottom:649.053333pt;}
.y1c{bottom:651.933333pt;}
.yc3{bottom:660.093333pt;}
.yf3{bottom:660.733333pt;}
.y90{bottom:661.533333pt;}
.y57{bottom:664.093333pt;}
.ya5{bottom:664.413333pt;}
.y1b{bottom:667.133333pt;}
.yc2{bottom:675.453333pt;}
.yf2{bottom:676.093333pt;}
.y8f{bottom:676.893333pt;}
.y56{bottom:679.453333pt;}
.ya4{bottom:679.773333pt;}
.y1a{bottom:682.493333pt;}
.yc1{bottom:690.813333pt;}
.yf1{bottom:691.453333pt;}
.y8e{bottom:692.093333pt;}
.y55{bottom:694.813333pt;}
.ya3{bottom:695.133333pt;}
.y19{bottom:697.853333pt;}
.yc0{bottom:706.173333pt;}
.yf0{bottom:706.813333pt;}
.y8d{bottom:707.453333pt;}
.y54{bottom:710.173333pt;}
.ya2{bottom:710.493333pt;}
.y18{bottom:713.213333pt;}
.ybf{bottom:721.533333pt;}
.yef{bottom:722.173333pt;}
.y8c{bottom:722.813333pt;}
.y53{bottom:725.533333pt;}
.ya1{bottom:725.693333pt;}
.y17{bottom:728.573333pt;}
.ybe{bottom:736.733333pt;}
.yee{bottom:737.533333pt;}
.y8b{bottom:738.173333pt;}
.y52{bottom:740.733333pt;}
.ya0{bottom:741.053333pt;}
.y16{bottom:743.933333pt;}
.ybd{bottom:752.133333pt;}
.yed{bottom:752.773333pt;}
.y8a{bottom:753.573333pt;}
.y51{bottom:756.133333pt;}
.y9f{bottom:756.453333pt;}
.y15{bottom:759.173333pt;}
.ybc{bottom:767.493333pt;}
.yec{bottom:768.133333pt;}
.y89{bottom:768.933333pt;}
.y50{bottom:771.493333pt;}
.y9e{bottom:771.813333pt;}
.y14{bottom:774.533333pt;}
.ybb{bottom:780.613333pt;}
.yeb{bottom:783.493333pt;}
.y88{bottom:784.133333pt;}
.y4f{bottom:786.853333pt;}
.y9d{bottom:787.173333pt;}
.y13{bottom:789.893333pt;}
.yba{bottom:796.613333pt;}
.yea{bottom:798.853333pt;}
.y87{bottom:799.493333pt;}
.y4e{bottom:802.213333pt;}
.y9c{bottom:802.533333pt;}
.y12{bottom:805.253333pt;}
.yb9{bottom:812.613333pt;}
.ye9{bottom:814.213333pt;}
.y86{bottom:814.853333pt;}
.y4d{bottom:817.573333pt;}
.y9b{bottom:817.733333pt;}
.y11{bottom:820.613333pt;}
.yb8{bottom:828.613333pt;}
.y85{bottom:830.213333pt;}
.y4c{bottom:832.773333pt;}
.y9a{bottom:833.093333pt;}
.y10{bottom:835.973333pt;}
.yb7{bottom:844.613333pt;}
.y84{bottom:845.573333pt;}
.y4b{bottom:848.133333pt;}
.y99{bottom:848.453333pt;}
.yf{bottom:851.173333pt;}
.y83{bottom:860.773333pt;}
.y4a{bottom:863.493333pt;}
.y98{bottom:863.813333pt;}
.ye{bottom:866.533333pt;}
.y82{bottom:876.133333pt;}
.y49{bottom:878.853333pt;}
.y97{bottom:879.173333pt;}
.yd{bottom:881.893333pt;}
.y81{bottom:891.493333pt;}
.y48{bottom:894.213333pt;}
.y96{bottom:894.533333pt;}
.yc{bottom:897.253333pt;}
.y80{bottom:906.853333pt;}
.y47{bottom:909.573333pt;}
.y95{bottom:909.733333pt;}
.yb{bottom:912.613333pt;}
.y7f{bottom:922.213333pt;}
.y46{bottom:924.773333pt;}
.y94{bottom:925.093333pt;}
.ya{bottom:929.093333pt;}
.y7e{bottom:937.573333pt;}
.y45{bottom:940.133333pt;}
.y7d{bottom:946.533333pt;}
.y9{bottom:949.413333pt;}
.y44{bottom:955.493333pt;}
.y8{bottom:964.613333pt;}
.y43{bottom:970.853333pt;}
.y7{bottom:979.973333pt;}
.y42{bottom:986.213333pt;}
.y6{bottom:996.453333pt;}
.y41{bottom:1001.413333pt;}
.y5{bottom:1016.800000pt;}
.y3{bottom:1033.280000pt;}
.y2{bottom:1052.960000pt;}
.y1{bottom:1065.280000pt;}
.hb{height:15.360000pt;}
.h2{height:30.966562pt;}
.h5{height:37.479688pt;}
.h7{height:38.413438pt;}
.hc{height:38.672812pt;}
.h8{height:43.551875pt;}
.h6{height:50.578125pt;}
.h4{height:54.149062pt;}
.ha{height:74.253437pt;}
.h3{height:74.477812pt;}
.h9{height:85.728125pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:221.466667pt;}
.w4{width:221.506667pt;}
.w3{width:221.626667pt;}
.w6{width:240.826667pt;}
.w7{width:424.253333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:35.680000pt;}
.x1a{left:57.594667pt;}
.x12{left:61.626667pt;}
.x10{left:64.954667pt;}
.x1c{left:71.226667pt;}
.x17{left:83.680000pt;}
.x18{left:87.834667pt;}
.x15{left:88.954667pt;}
.xf{left:97.152000pt;}
.x16{left:99.066667pt;}
.x1d{left:102.874667pt;}
.x1{left:104.031988pt;}
.x21{left:104.954667pt;}
.x2{left:110.751988pt;}
.x1f{left:112.954667pt;}
.x3{left:123.071988pt;}
.x5{left:151.866655pt;}
.x6{left:167.546655pt;}
.x19{left:170.266655pt;}
.xa{left:179.386655pt;}
.x1e{left:181.786667pt;}
.x20{left:185.146667pt;}
.xb{left:228.546655pt;}
.x4{left:238.946655pt;}
.x7{left:259.906655pt;}
.x11{left:319.426667pt;}
.x1b{left:338.626667pt;}
.x9{left:444.253322pt;}
.x8{left:491.453322pt;}
.xc{left:538.533322pt;}
.x13{left:541.573333pt;}
.xd{left:607.173322pt;}
.xe{left:753.119988pt;}
}




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