
    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_434c09ebb970042ccd1abb7f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_4d52f7d53fd5ed9bc4eb16f5.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8ec07bd3fcf2f77d60c402db.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_327e19911d7f9c7141ea11be.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_5471137e0a48bf918588a879.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_f574ff353ac8003fd43a9e7e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_55ff8a141a7223f7223d257a.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_42d08dad5a2e2be226a492c3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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:ffd;src:url('chunks/assets/font_5cecf524bf7004bf5c7dd36e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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:ffe;src:url('chunks/assets/font_f9ea1e822cdd283470623e13.woff')format("woff");}.ffe{font-family:ffe;line-height:1.091309;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:fff;src:url('chunks/assets/font_412b973928cc5a30d7942470.woff')format("woff");}.fff{font-family:fff;line-height:1.091309;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:ff10;src:url('chunks/assets/font_dfa0db54c82f1be8a66e1ba3.woff')format("woff");}.ff10{font-family:ff10;line-height:0.934082;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:ff11;src:url('chunks/assets/font_56ca9b0bcd922d11b9e2803e.woff')format("woff");}.ff11{font-family:ff11;line-height:1.104004;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:ff12;src:url('chunks/assets/font_dcabb7f5ad42b21d23148cec.woff')format("woff");}.ff12{font-family:ff12;line-height:1.104004;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:ff13;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.500000px;}
.v3{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.500000px;}
.v1{vertical-align:18.000000px;}
.lsc{letter-spacing:-5.982000px;}
.ls19{letter-spacing:-4.758000px;}
.ls9{letter-spacing:-2.724000px;}
.ls18{letter-spacing:-2.250000px;}
.ls13{letter-spacing:-1.740000px;}
.lsd{letter-spacing:-1.596000px;}
.lsf{letter-spacing:-1.482000px;}
.ls10{letter-spacing:-1.128000px;}
.ls1b{letter-spacing:-1.026000px;}
.lsa{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.780000px;}
.ls1d{letter-spacing:-0.618000px;}
.ls8{letter-spacing:-0.378000px;}
.ls1a{letter-spacing:-0.256200px;}
.ls7{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.690000px;}
.ls1c{letter-spacing:1.026000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.656000px;}
.ls11{letter-spacing:1.740000px;}
.ls2{letter-spacing:1.854000px;}
.ls3{letter-spacing:1.906500px;}
.ls4{letter-spacing:1.966500px;}
.ls14{letter-spacing:2.025000px;}
.ls12{letter-spacing:2.164500px;}
.ls5{letter-spacing:2.250000px;}
.ls6{letter-spacing:4.779000px;}
.ls17{letter-spacing:15.387000px;}
.ls15{letter-spacing:19.737000px;}
.ls16{letter-spacing:46.887000px;}
.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;}
}
.ws6{word-spacing:-16.875000px;}
.wsd{word-spacing:-16.789500px;}
.wsc{word-spacing:-16.365000px;}
.ws3{word-spacing:-16.146000px;}
.wsb{word-spacing:-15.651000px;}
.ws2{word-spacing:-15.354000px;}
.ws5{word-spacing:-14.625000px;}
.wsa{word-spacing:-13.599000px;}
.ws7{word-spacing:-13.221000px;}
.ws9{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._7{margin-left:-10.039050px;}
._8{margin-left:-8.131500px;}
._12{margin-left:-6.898500px;}
._e{margin-left:-5.827500px;}
._b{margin-left:-4.590000px;}
._2{margin-left:-2.592000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.258000px;}
._4{width:4.428000px;}
._13{width:5.451000px;}
._5{width:6.564000px;}
._a{width:8.374500px;}
._9{width:9.729000px;}
._6{width:10.824000px;}
._c{width:12.775500px;}
._d{width:15.643500px;}
._f{width:17.368500px;}
._10{width:18.684000px;}
._14{width:20.826000px;}
._15{width:22.221000px;}
._11{width:23.833500px;}
.fc5{color:rgb(227,108,10);}
.fc6{color:rgb(47,84,150);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.ya4{bottom:3.390000px;}
.ya0{bottom:3.420000px;}
.y19{bottom:4.500000px;}
.yb9{bottom:4.530000px;}
.y1b{bottom:11.250000px;}
.ye{bottom:11.280000px;}
.yc{bottom:13.500000px;}
.y31{bottom:14.625000px;}
.y4{bottom:16.875000px;}
.y30{bottom:18.000000px;}
.y2{bottom:19.125000px;}
.yb6{bottom:20.295000px;}
.yb8{bottom:21.405000px;}
.yb3{bottom:21.420000px;}
.y18{bottom:28.125000px;}
.yb{bottom:30.405000px;}
.y27{bottom:37.125000px;}
.y17{bottom:45.030000px;}
.ya{bottom:46.155000px;}
.y26{bottom:54.030000px;}
.y5{bottom:57.412500px;}
.y16{bottom:61.905000px;}
.y25{bottom:72.030000px;}
.y9{bottom:73.200000px;}
.y15{bottom:77.700000px;}
.y1{bottom:81.075000px;}
.y14{bottom:87.825000px;}
.y24{bottom:88.935000px;}
.y8{bottom:93.450000px;}
.y13{bottom:102.450000px;}
.y23{bottom:105.810000px;}
.y7{bottom:110.355000px;}
.y2e{bottom:115.935000px;}
.y12{bottom:121.605000px;}
.y22{bottom:123.825000px;}
.y2d{bottom:132.855000px;}
.y21{bottom:140.730000px;}
.y3f{bottom:141.862500px;}
.y11{bottom:147.480000px;}
.y2c{bottom:149.730000px;}
.y20{bottom:158.730000px;}
.y2b{bottom:167.760000px;}
.y10{bottom:172.275000px;}
.y1f{bottom:175.635000px;}
.y7b{bottom:183.525000px;}
.y2a{bottom:184.635000px;}
.y7a{bottom:200.400000px;}
.y29{bottom:201.510000px;}
.y1e{bottom:203.760000px;}
.ycf{bottom:207.195000px;}
.y79{bottom:217.320000px;}
.y28{bottom:219.555000px;}
.y1d{bottom:221.805000px;}
.yce{bottom:224.070000px;}
.y78{bottom:235.320000px;}
.ycd{bottom:242.070000px;}
.y77{bottom:252.225000px;}
.ycc{bottom:258.975000px;}
.y76{bottom:269.100000px;}
.ycb{bottom:275.850000px;}
.y75{bottom:287.130000px;}
.ya5{bottom:293.880000px;}
.y74{bottom:304.005000px;}
.yca{bottom:310.755000px;}
.ya3{bottom:311.880000px;}
.y73{bottom:320.880000px;}
.yc9{bottom:327.675000px;}
.ya2{bottom:329.925000px;}
.y72{bottom:338.925000px;}
.yc8{bottom:345.675000px;}
.ya1{bottom:347.925000px;}
.y71{bottom:355.800000px;}
.yc7{bottom:362.550000px;}
.y9f{bottom:365.925000px;}
.y3e{bottom:368.205000px;}
.y70{bottom:372.720000px;}
.yc6{bottom:379.470000px;}
.y9e{bottom:383.955000px;}
.y3d{bottom:386.220000px;}
.y6f{bottom:390.705000px;}
.yc5{bottom:397.455000px;}
.y9d{bottom:401.955000px;}
.y3c{bottom:403.095000px;}
.y6e{bottom:407.580000px;}
.yc4{bottom:414.375000px;}
.y3b{bottom:420.000000px;}
.y6d{bottom:424.500000px;}
.yc3{bottom:431.250000px;}
.y3a{bottom:438.000000px;}
.y6c{bottom:442.500000px;}
.yc2{bottom:449.250000px;}
.y39{bottom:454.905000px;}
.y6b{bottom:459.420000px;}
.yc1{bottom:466.170000px;}
.y38{bottom:471.780000px;}
.y6a{bottom:476.295000px;}
.y95{bottom:483.045000px;}
.y37{bottom:489.795000px;}
.y69{bottom:494.325000px;}
.y94{bottom:499.950000px;}
.yc0{bottom:501.075000px;}
.y36{bottom:506.700000px;}
.y68{bottom:511.200000px;}
.y93{bottom:517.950000px;}
.y35{bottom:523.575000px;}
.y67{bottom:528.075000px;}
.y92{bottom:534.855000px;}
.y34{bottom:541.605000px;}
.y66{bottom:546.120000px;}
.y91{bottom:551.730000px;}
.ybf{bottom:552.870000px;}
.y33{bottom:558.480000px;}
.y65{bottom:562.995000px;}
.y90{bottom:569.745000px;}
.y32{bottom:575.355000px;}
.y64{bottom:579.900000px;}
.y8f{bottom:586.650000px;}
.y2f{bottom:590.025000px;}
.y63{bottom:597.900000px;}
.y8e{bottom:603.525000px;}
.ybe{bottom:604.650000px;}
.y62{bottom:614.775000px;}
.y1c{bottom:619.320000px;}
.y8d{bottom:621.570000px;}
.y61{bottom:631.695000px;}
.y8c{bottom:638.445000px;}
.y60{bottom:649.695000px;}
.y8b{bottom:655.320000px;}
.ybd{bottom:656.445000px;}
.y5f{bottom:666.600000px;}
.y8a{bottom:673.350000px;}
.y5e{bottom:683.475000px;}
.y89{bottom:690.225000px;}
.y5d{bottom:701.475000px;}
.y88{bottom:707.130000px;}
.ybc{bottom:708.255000px;}
.y5c{bottom:718.380000px;}
.y87{bottom:725.130000px;}
.y5b{bottom:735.255000px;}
.y86{bottom:742.005000px;}
.y9c{bottom:752.175000px;}
.y5a{bottom:753.300000px;}
.y85{bottom:758.925000px;}
.ybb{bottom:760.050000px;}
.y59{bottom:770.175000px;}
.y9b{bottom:773.550000px;}
.y84{bottom:776.925000px;}
.y58{bottom:787.080000px;}
.y9a{bottom:790.455000px;}
.y83{bottom:793.830000px;}
.y57{bottom:805.080000px;}
.y99{bottom:807.330000px;}
.y82{bottom:810.705000px;}
.yba{bottom:811.830000px;}
.y56{bottom:821.955000px;}
.y98{bottom:825.330000px;}
.yb7{bottom:825.345000px;}
.y81{bottom:828.750000px;}
.y55{bottom:838.875000px;}
.y97{bottom:842.250000px;}
.y80{bottom:845.625000px;}
.y1a{bottom:852.375000px;}
.y96{bottom:855.750000px;}
.y54{bottom:856.875000px;}
.yb5{bottom:861.375000px;}
.y7f{bottom:862.500000px;}
.y53{bottom:873.795000px;}
.y7e{bottom:880.545000px;}
.yf{bottom:881.670000px;}
.y52{bottom:890.670000px;}
.yb4{bottom:896.280000px;}
.y7d{bottom:897.420000px;}
.y51{bottom:908.670000px;}
.y7c{bottom:910.950000px;}
.y50{bottom:926.700000px;}
.yb2{bottom:931.200000px;}
.y4f{bottom:943.575000px;}
.y4e{bottom:960.495000px;}
.yb1{bottom:970.620000px;}
.y4d{bottom:978.495000px;}
.yb0{bottom:987.495000px;}
.y4c{bottom:995.400000px;}
.yaf{bottom:1002.150000px;}
.y4b{bottom:1012.275000px;}
.yae{bottom:1020.150000px;}
.y4a{bottom:1030.275000px;}
.yad{bottom:1038.195000px;}
.y49{bottom:1047.195000px;}
.yac{bottom:1059.570000px;}
.y48{bottom:1064.070000px;}
.yd{bottom:1068.570000px;}
.yab{bottom:1077.600000px;}
.y47{bottom:1082.100000px;}
.yaa{bottom:1091.100000px;}
.y6{bottom:1094.475000px;}
.y46{bottom:1098.975000px;}
.ya9{bottom:1109.100000px;}
.y45{bottom:1115.850000px;}
.ya8{bottom:1127.130000px;}
.y44{bottom:1133.880000px;}
.ya7{bottom:1145.130000px;}
.y43{bottom:1150.755000px;}
.ya6{bottom:1163.175000px;}
.y42{bottom:1167.675000px;}
.y41{bottom:1185.675000px;}
.y40{bottom:1202.580000px;}
.h1d{height:16.875000px;}
.h1c{height:16.912500px;}
.h1e{height:18.000000px;}
.h1f{height:18.037500px;}
.hb{height:25.912500px;}
.h13{height:29.287500px;}
.h2{height:32.625000px;}
.h12{height:33.723633px;}
.h21{height:33.787500px;}
.h22{height:34.897500px;}
.h20{height:34.912500px;}
.h11{height:35.806641px;}
.h8{height:37.125000px;}
.h18{height:41.389893px;}
.hd{height:43.075195px;}
.h19{height:43.288330px;}
.ha{height:43.875000px;}
.h16{height:49.234131px;}
.h17{height:51.158936px;}
.h1a{height:51.216064px;}
.h1b{height:51.958740px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:186.900000px;}
.h15{height:233.055000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w16{width:63.075000px;}
.w2{width:74.362500px;}
.w10{width:81.112500px;}
.w13{width:122.775000px;}
.w12{width:123.900000px;}
.w14{width:129.525000px;}
.w15{width:136.312500px;}
.w4{width:152.055000px;}
.w11{width:167.805000px;}
.we{width:191.520000px;}
.wd{width:219.645000px;}
.w7{width:223.020000px;}
.wf{width:252.300000px;}
.wc{width:280.500000px;}
.wa{width:345.825000px;}
.w9{width:400.980000px;}
.wb{width:467.445000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x24{left:10.125000px;}
.x15{left:12.420000px;}
.x26{left:14.655000px;}
.x29{left:16.860000px;}
.x2b{left:18.045000px;}
.x1d{left:21.405000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x4{left:81.112487px;}
.x6{left:97.987500px;}
.x2d{left:99.112487px;}
.x19{left:108.149987px;}
.x10{left:129.532500px;}
.x1a{left:135.187487px;}
.x11{left:139.657500px;}
.xe{left:145.282500px;}
.x12{left:174.562500px;}
.xf{left:206.137500px;}
.x13{left:214.012500px;}
.x7{left:225.300000px;}
.x25{left:242.175000px;}
.x1b{left:244.424987px;}
.x1e{left:275.969987px;}
.xb{left:290.625000px;}
.x20{left:294.000000px;}
.x14{left:296.250000px;}
.x23{left:316.529987px;}
.x9{left:345.780000px;}
.xa{left:364.950000px;}
.x27{left:367.245000px;}
.xd{left:373.957500px;}
.x2e{left:447.194987px;}
.xc{left:453.945000px;}
.x1c{left:475.350000px;}
.x21{left:486.645000px;}
.x28{left:490.020000px;}
.x1f{left:540.675000px;}
.x16{left:615.044987px;}
.x2a{left:620.655000px;}
.x22{left:740.070000px;}
.x3{left:746.820000px;}
.x2c{left:758.100000px;}
.x18{left:776.099987px;}
.x17{left:797.504987px;}
@media print{
.v2{vertical-align:-12.000000pt;}
.v3{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsc{letter-spacing:-5.317333pt;}
.ls19{letter-spacing:-4.229333pt;}
.ls9{letter-spacing:-2.421333pt;}
.ls18{letter-spacing:-2.000000pt;}
.ls13{letter-spacing:-1.546667pt;}
.lsd{letter-spacing:-1.418667pt;}
.lsf{letter-spacing:-1.317333pt;}
.ls10{letter-spacing:-1.002667pt;}
.ls1b{letter-spacing:-0.912000pt;}
.lsa{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.693333pt;}
.ls1d{letter-spacing:-0.549333pt;}
.ls8{letter-spacing:-0.336000pt;}
.ls1a{letter-spacing:-0.227733pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.613333pt;}
.ls1c{letter-spacing:0.912000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.472000pt;}
.ls11{letter-spacing:1.546667pt;}
.ls2{letter-spacing:1.648000pt;}
.ls3{letter-spacing:1.694667pt;}
.ls4{letter-spacing:1.748000pt;}
.ls14{letter-spacing:1.800000pt;}
.ls12{letter-spacing:1.924000pt;}
.ls5{letter-spacing:2.000000pt;}
.ls6{letter-spacing:4.248000pt;}
.ls17{letter-spacing:13.677333pt;}
.ls15{letter-spacing:17.544000pt;}
.ls16{letter-spacing:41.677333pt;}
.ws6{word-spacing:-15.000000pt;}
.wsd{word-spacing:-14.924000pt;}
.wsc{word-spacing:-14.546667pt;}
.ws3{word-spacing:-14.352000pt;}
.wsb{word-spacing:-13.912000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws5{word-spacing:-13.000000pt;}
.wsa{word-spacing:-12.088000pt;}
.ws7{word-spacing:-11.752000pt;}
.ws9{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._7{margin-left:-8.923600pt;}
._8{margin-left:-7.228000pt;}
._12{margin-left:-6.132000pt;}
._e{margin-left:-5.180000pt;}
._b{margin-left:-4.080000pt;}
._2{margin-left:-2.304000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:2.896000pt;}
._4{width:3.936000pt;}
._13{width:4.845333pt;}
._5{width:5.834667pt;}
._a{width:7.444000pt;}
._9{width:8.648000pt;}
._6{width:9.621333pt;}
._c{width:11.356000pt;}
._d{width:13.905333pt;}
._f{width:15.438667pt;}
._10{width:16.608000pt;}
._14{width:18.512000pt;}
._15{width:19.752000pt;}
._11{width:21.185333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.ya4{bottom:3.013333pt;}
.ya0{bottom:3.040000pt;}
.y19{bottom:4.000000pt;}
.yb9{bottom:4.026667pt;}
.y1b{bottom:10.000000pt;}
.ye{bottom:10.026667pt;}
.yc{bottom:12.000000pt;}
.y31{bottom:13.000000pt;}
.y4{bottom:15.000000pt;}
.y30{bottom:16.000000pt;}
.y2{bottom:17.000000pt;}
.yb6{bottom:18.040000pt;}
.yb8{bottom:19.026667pt;}
.yb3{bottom:19.040000pt;}
.y18{bottom:25.000000pt;}
.yb{bottom:27.026667pt;}
.y27{bottom:33.000000pt;}
.y17{bottom:40.026667pt;}
.ya{bottom:41.026667pt;}
.y26{bottom:48.026667pt;}
.y5{bottom:51.033333pt;}
.y16{bottom:55.026667pt;}
.y25{bottom:64.026667pt;}
.y9{bottom:65.066667pt;}
.y15{bottom:69.066667pt;}
.y1{bottom:72.066667pt;}
.y14{bottom:78.066667pt;}
.y24{bottom:79.053333pt;}
.y8{bottom:83.066667pt;}
.y13{bottom:91.066667pt;}
.y23{bottom:94.053333pt;}
.y7{bottom:98.093333pt;}
.y2e{bottom:103.053333pt;}
.y12{bottom:108.093333pt;}
.y22{bottom:110.066667pt;}
.y2d{bottom:118.093333pt;}
.y21{bottom:125.093333pt;}
.y3f{bottom:126.100000pt;}
.y11{bottom:131.093333pt;}
.y2c{bottom:133.093333pt;}
.y20{bottom:141.093333pt;}
.y2b{bottom:149.120000pt;}
.y10{bottom:153.133333pt;}
.y1f{bottom:156.120000pt;}
.y7b{bottom:163.133333pt;}
.y2a{bottom:164.120000pt;}
.y7a{bottom:178.133333pt;}
.y29{bottom:179.120000pt;}
.y1e{bottom:181.120000pt;}
.ycf{bottom:184.173333pt;}
.y79{bottom:193.173333pt;}
.y28{bottom:195.160000pt;}
.y1d{bottom:197.160000pt;}
.yce{bottom:199.173333pt;}
.y78{bottom:209.173333pt;}
.ycd{bottom:215.173333pt;}
.y77{bottom:224.200000pt;}
.ycc{bottom:230.200000pt;}
.y76{bottom:239.200000pt;}
.ycb{bottom:245.200000pt;}
.y75{bottom:255.226667pt;}
.ya5{bottom:261.226667pt;}
.y74{bottom:270.226667pt;}
.yca{bottom:276.226667pt;}
.ya3{bottom:277.226667pt;}
.y73{bottom:285.226667pt;}
.yc9{bottom:291.266667pt;}
.ya2{bottom:293.266667pt;}
.y72{bottom:301.266667pt;}
.yc8{bottom:307.266667pt;}
.ya1{bottom:309.266667pt;}
.y71{bottom:316.266667pt;}
.yc7{bottom:322.266667pt;}
.y9f{bottom:325.266667pt;}
.y3e{bottom:327.293333pt;}
.y70{bottom:331.306667pt;}
.yc6{bottom:337.306667pt;}
.y9e{bottom:341.293333pt;}
.y3d{bottom:343.306667pt;}
.y6f{bottom:347.293333pt;}
.yc5{bottom:353.293333pt;}
.y9d{bottom:357.293333pt;}
.y3c{bottom:358.306667pt;}
.y6e{bottom:362.293333pt;}
.yc4{bottom:368.333333pt;}
.y3b{bottom:373.333333pt;}
.y6d{bottom:377.333333pt;}
.yc3{bottom:383.333333pt;}
.y3a{bottom:389.333333pt;}
.y6c{bottom:393.333333pt;}
.yc2{bottom:399.333333pt;}
.y39{bottom:404.360000pt;}
.y6b{bottom:408.373333pt;}
.yc1{bottom:414.373333pt;}
.y38{bottom:419.360000pt;}
.y6a{bottom:423.373333pt;}
.y95{bottom:429.373333pt;}
.y37{bottom:435.373333pt;}
.y69{bottom:439.400000pt;}
.y94{bottom:444.400000pt;}
.yc0{bottom:445.400000pt;}
.y36{bottom:450.400000pt;}
.y68{bottom:454.400000pt;}
.y93{bottom:460.400000pt;}
.y35{bottom:465.400000pt;}
.y67{bottom:469.400000pt;}
.y92{bottom:475.426667pt;}
.y34{bottom:481.426667pt;}
.y66{bottom:485.440000pt;}
.y91{bottom:490.426667pt;}
.ybf{bottom:491.440000pt;}
.y33{bottom:496.426667pt;}
.y65{bottom:500.440000pt;}
.y90{bottom:506.440000pt;}
.y32{bottom:511.426667pt;}
.y64{bottom:515.466667pt;}
.y8f{bottom:521.466667pt;}
.y2f{bottom:524.466667pt;}
.y63{bottom:531.466667pt;}
.y8e{bottom:536.466667pt;}
.ybe{bottom:537.466667pt;}
.y62{bottom:546.466667pt;}
.y1c{bottom:550.506667pt;}
.y8d{bottom:552.506667pt;}
.y61{bottom:561.506667pt;}
.y8c{bottom:567.506667pt;}
.y60{bottom:577.506667pt;}
.y8b{bottom:582.506667pt;}
.ybd{bottom:583.506667pt;}
.y5f{bottom:592.533333pt;}
.y8a{bottom:598.533333pt;}
.y5e{bottom:607.533333pt;}
.y89{bottom:613.533333pt;}
.y5d{bottom:623.533333pt;}
.y88{bottom:628.560000pt;}
.ybc{bottom:629.560000pt;}
.y5c{bottom:638.560000pt;}
.y87{bottom:644.560000pt;}
.y5b{bottom:653.560000pt;}
.y86{bottom:659.560000pt;}
.y9c{bottom:668.600000pt;}
.y5a{bottom:669.600000pt;}
.y85{bottom:674.600000pt;}
.ybb{bottom:675.600000pt;}
.y59{bottom:684.600000pt;}
.y9b{bottom:687.600000pt;}
.y84{bottom:690.600000pt;}
.y58{bottom:699.626667pt;}
.y9a{bottom:702.626667pt;}
.y83{bottom:705.626667pt;}
.y57{bottom:715.626667pt;}
.y99{bottom:717.626667pt;}
.y82{bottom:720.626667pt;}
.yba{bottom:721.626667pt;}
.y56{bottom:730.626667pt;}
.y98{bottom:733.626667pt;}
.yb7{bottom:733.640000pt;}
.y81{bottom:736.666667pt;}
.y55{bottom:745.666667pt;}
.y97{bottom:748.666667pt;}
.y80{bottom:751.666667pt;}
.y1a{bottom:757.666667pt;}
.y96{bottom:760.666667pt;}
.y54{bottom:761.666667pt;}
.yb5{bottom:765.666667pt;}
.y7f{bottom:766.666667pt;}
.y53{bottom:776.706667pt;}
.y7e{bottom:782.706667pt;}
.yf{bottom:783.706667pt;}
.y52{bottom:791.706667pt;}
.yb4{bottom:796.693333pt;}
.y7d{bottom:797.706667pt;}
.y51{bottom:807.706667pt;}
.y7c{bottom:809.733333pt;}
.y50{bottom:823.733333pt;}
.yb2{bottom:827.733333pt;}
.y4f{bottom:838.733333pt;}
.y4e{bottom:853.773333pt;}
.yb1{bottom:862.773333pt;}
.y4d{bottom:869.773333pt;}
.yb0{bottom:877.773333pt;}
.y4c{bottom:884.800000pt;}
.yaf{bottom:890.800000pt;}
.y4b{bottom:899.800000pt;}
.yae{bottom:906.800000pt;}
.y4a{bottom:915.800000pt;}
.yad{bottom:922.840000pt;}
.y49{bottom:930.840000pt;}
.yac{bottom:941.840000pt;}
.y48{bottom:945.840000pt;}
.yd{bottom:949.840000pt;}
.yab{bottom:957.866667pt;}
.y47{bottom:961.866667pt;}
.yaa{bottom:969.866667pt;}
.y6{bottom:972.866667pt;}
.y46{bottom:976.866667pt;}
.ya9{bottom:985.866667pt;}
.y45{bottom:991.866667pt;}
.ya8{bottom:1001.893333pt;}
.y44{bottom:1007.893333pt;}
.ya7{bottom:1017.893333pt;}
.y43{bottom:1022.893333pt;}
.ya6{bottom:1033.933333pt;}
.y42{bottom:1037.933333pt;}
.y41{bottom:1053.933333pt;}
.y40{bottom:1068.960000pt;}
.h1d{height:15.000000pt;}
.h1c{height:15.033333pt;}
.h1e{height:16.000000pt;}
.h1f{height:16.033333pt;}
.hb{height:23.033333pt;}
.h13{height:26.033333pt;}
.h2{height:29.000000pt;}
.h12{height:29.976562pt;}
.h21{height:30.033333pt;}
.h22{height:31.020000pt;}
.h20{height:31.033333pt;}
.h11{height:31.828125pt;}
.h8{height:33.000000pt;}
.h18{height:36.791016pt;}
.hd{height:38.289062pt;}
.h19{height:38.478516pt;}
.ha{height:39.000000pt;}
.h16{height:43.763672pt;}
.h17{height:45.474609pt;}
.h1a{height:45.525391pt;}
.h1b{height:46.185547pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:166.133333pt;}
.h15{height:207.160000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w16{width:56.066667pt;}
.w2{width:66.100000pt;}
.w10{width:72.100000pt;}
.w13{width:109.133333pt;}
.w12{width:110.133333pt;}
.w14{width:115.133333pt;}
.w15{width:121.166667pt;}
.w4{width:135.160000pt;}
.w11{width:149.160000pt;}
.we{width:170.240000pt;}
.wd{width:195.240000pt;}
.w7{width:198.240000pt;}
.wf{width:224.266667pt;}
.wc{width:249.333333pt;}
.wa{width:307.400000pt;}
.w9{width:356.426667pt;}
.wb{width:415.506667pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x24{left:9.000000pt;}
.x15{left:11.040000pt;}
.x26{left:13.026667pt;}
.x29{left:14.986667pt;}
.x2b{left:16.040000pt;}
.x1d{left:19.026667pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x4{left:72.099988pt;}
.x6{left:87.100000pt;}
.x2d{left:88.099988pt;}
.x19{left:96.133322pt;}
.x10{left:115.140000pt;}
.x1a{left:120.166655pt;}
.x11{left:124.140000pt;}
.xe{left:129.140000pt;}
.x12{left:155.166667pt;}
.xf{left:183.233333pt;}
.x13{left:190.233333pt;}
.x7{left:200.266667pt;}
.x25{left:215.266667pt;}
.x1b{left:217.266655pt;}
.x1e{left:245.306655pt;}
.xb{left:258.333333pt;}
.x20{left:261.333333pt;}
.x14{left:263.333333pt;}
.x23{left:281.359988pt;}
.x9{left:307.360000pt;}
.xa{left:324.400000pt;}
.x27{left:326.440000pt;}
.xd{left:332.406667pt;}
.x2e{left:397.506655pt;}
.xc{left:403.506667pt;}
.x1c{left:422.533333pt;}
.x21{left:432.573333pt;}
.x28{left:435.573333pt;}
.x1f{left:480.600000pt;}
.x16{left:546.706655pt;}
.x2a{left:551.693333pt;}
.x22{left:657.840000pt;}
.x3{left:663.840000pt;}
.x2c{left:673.866667pt;}
.x18{left:689.866655pt;}
.x17{left:708.893322pt;}
}




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