
    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_27e5722fd73f005ceac0a035.woff2')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_83e4dd30521582ba8c76f94a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_672c451146be468f76cad5e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_f2d042ae36f06269ed3e18d8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')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_b87444467a102aee52b375a9.woff2')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_d74b4ace65817fba3430d716.woff2')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_5632a2273a4f3c85ca8534f1.woff2')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_a7a080cc1b4f2bdbefa73ee7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_6860caf8ff8c70c75ab4b0c2.woff2')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_b0cc77ce8422110178c3bdf7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172363;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_b8f7db6d91cc5a952546f10c.woff2')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_51ce67e12675ee71a5b12170.woff2')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_2e60b3afa43cf92b168a77c9.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_99c9cc588898c03e90c25cd6.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a674ef3d56b084c9cff84bbc.woff2')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_957dee8e0a99a21645d79d9e.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_ddded100b6b71cc39798cae9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls14{letter-spacing:-2.076000px;}
.ls15{letter-spacing:-1.500000px;}
.ls1c{letter-spacing:-0.774000px;}
.ls19{letter-spacing:-0.612000px;}
.ls25{letter-spacing:-0.460200px;}
.ls17{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.259800px;}
.ls2e{letter-spacing:-0.253200px;}
.ls16{letter-spacing:-0.208800px;}
.ls2d{letter-spacing:-0.206400px;}
.ls13{letter-spacing:-0.127200px;}
.ls24{letter-spacing:-0.106800px;}
.ls18{letter-spacing:-0.053280px;}
.ls12{letter-spacing:-0.018000px;}
.ls11{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.087600px;}
.ls1a{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls21{letter-spacing:0.153600px;}
.ls8{letter-spacing:0.180000px;}
.ls29{letter-spacing:0.206400px;}
.ls1e{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls1d{letter-spacing:0.306600px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls9{letter-spacing:0.894240px;}
.lse{letter-spacing:1.620000px;}
.ls23{letter-spacing:3.060000px;}
.ls6{letter-spacing:3.240000px;}
.lsf{letter-spacing:4.500000px;}
.lsb{letter-spacing:5.220000px;}
.lsc{letter-spacing:5.340000px;}
.ls20{letter-spacing:6.660000px;}
.ls2c{letter-spacing:7.380000px;}
.ls1f{letter-spacing:8.100000px;}
.ls22{letter-spacing:9.540000px;}
.lsa{letter-spacing:10.260000px;}
.ls10{letter-spacing:11.700000px;}
.ls2b{letter-spacing:13.140000px;}
.ls27{letter-spacing:13.860000px;}
.ls2a{letter-spacing:16.506720px;}
.ls28{letter-spacing:46.026720px;}
.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;}
}
.ws16{word-spacing:-33.704640px;}
.ws4{word-spacing:-22.087200px;}
.ws3{word-spacing:-21.511200px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws8{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.246600px;}
.ws15{word-spacing:-15.199800px;}
.ws1c{word-spacing:-15.146400px;}
.ws17{word-spacing:-15.093600px;}
.wsd{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws18{word-spacing:-14.833200px;}
.ws1b{word-spacing:-14.733600px;}
.ws1d{word-spacing:-14.686800px;}
.ws1a{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.580000px;}
.ws19{word-spacing:-14.479800px;}
.wsc{word-spacing:-14.328000px;}
.ws12{word-spacing:-14.166000px;}
.wsf{word-spacing:-13.505760px;}
.ws5{word-spacing:-13.296960px;}
.ws7{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws11{word-spacing:-9.732960px;}
.ws10{word-spacing:-9.720000px;}
.ws6{word-spacing:-8.136000px;}
.ws13{word-spacing:0.000000px;}
._3{margin-left:-4.140000px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.026000px;}
._1{width:1.020000px;}
._4{width:2.155440px;}
._5{width:3.366960px;}
._d{width:4.505520px;}
._12{width:5.886720px;}
._7{width:7.553040px;}
._9{width:8.899680px;}
._11{width:9.972000px;}
._e{width:11.440080px;}
._a{width:13.399920px;}
._10{width:16.064400px;}
._6{width:17.066400px;}
._8{width:18.799920px;}
._f{width:20.299920px;}
._c{width:22.799520px;}
._b{width:23.813280px;}
._14{width:26.340240px;}
._13{width:27.348960px;}
.fc5{color:rgb(227,108,10);}
.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:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:3.240000px;}
.y3e{bottom:3.420000px;}
.y3{bottom:3.600000px;}
.y18{bottom:4.860000px;}
.ye{bottom:9.540000px;}
.y1a{bottom:12.465000px;}
.yc{bottom:13.860000px;}
.y3f{bottom:14.940000px;}
.y4{bottom:17.280000px;}
.y3d{bottom:18.000000px;}
.y2{bottom:20.160000px;}
.y3a{bottom:20.520000px;}
.y17{bottom:29.340000px;}
.yb{bottom:30.240000px;}
.y39{bottom:37.800000px;}
.y7d{bottom:38.520000px;}
.y16{bottom:45.180000px;}
.ya{bottom:46.650000px;}
.y15{bottom:54.900000px;}
.y38{bottom:55.080000px;}
.y5{bottom:58.680000px;}
.y14{bottom:69.660000px;}
.y37{bottom:72.390000px;}
.y9{bottom:73.470000px;}
.y1{bottom:81.216000px;}
.y13{bottom:84.960000px;}
.y36{bottom:89.490000px;}
.y8{bottom:93.090000px;}
.y28{bottom:99.030000px;}
.y12{bottom:103.860000px;}
.y35{bottom:106.770000px;}
.y7{bottom:111.450000px;}
.y27{bottom:114.330000px;}
.y9c{bottom:123.876000px;}
.y34{bottom:124.050000px;}
.y11{bottom:129.600000px;}
.y26{bottom:131.970000px;}
.ybd{bottom:132.156000px;}
.y72{bottom:135.036000px;}
.y9b{bottom:141.156000px;}
.y33{bottom:141.330000px;}
.y25{bottom:149.070000px;}
.y71{bottom:149.076000px;}
.ybc{bottom:149.256000px;}
.y54{bottom:152.850000px;}
.y10{bottom:154.080000px;}
.y9a{bottom:158.250000px;}
.y32{bottom:158.610000px;}
.y24{bottom:166.350000px;}
.ybb{bottom:166.530000px;}
.y53{bottom:170.130000px;}
.y99{bottom:175.530000px;}
.y31{bottom:175.710000px;}
.yba{bottom:183.810000px;}
.y23{bottom:184.170000px;}
.y52{bottom:187.410000px;}
.y98{bottom:192.810000px;}
.y30{bottom:192.990000px;}
.yb9{bottom:201.090000px;}
.y22{bottom:201.630000px;}
.y51{bottom:204.690000px;}
.y97{bottom:210.090000px;}
.y2f{bottom:210.270000px;}
.yb8{bottom:218.370000px;}
.y21{bottom:218.910000px;}
.y50{bottom:221.970000px;}
.y96{bottom:227.370000px;}
.y2e{bottom:227.550000px;}
.yb7{bottom:235.470000px;}
.y20{bottom:236.370000px;}
.y4f{bottom:239.070000px;}
.y95{bottom:244.470000px;}
.y2d{bottom:244.830000px;}
.yb6{bottom:252.750000px;}
.y1f{bottom:253.830000px;}
.y4e{bottom:256.350000px;}
.y94{bottom:261.750000px;}
.y2c{bottom:262.110000px;}
.yb5{bottom:270.030000px;}
.y1e{bottom:271.290000px;}
.y4d{bottom:273.630000px;}
.y93{bottom:279.030000px;}
.y2b{bottom:279.210000px;}
.yb4{bottom:287.310000px;}
.y4c{bottom:290.910000px;}
.y92{bottom:296.310000px;}
.y2a{bottom:296.490000px;}
.y1d{bottom:298.830000px;}
.yb3{bottom:304.590000px;}
.y4b{bottom:308.190000px;}
.y91{bottom:313.590000px;}
.y29{bottom:313.770000px;}
.y1c{bottom:316.470000px;}
.yb2{bottom:321.870000px;}
.y4a{bottom:325.290000px;}
.y90{bottom:330.870000px;}
.yb1{bottom:339.015000px;}
.y49{bottom:342.615000px;}
.y8f{bottom:348.015000px;}
.yb0{bottom:356.295000px;}
.y48{bottom:359.895000px;}
.y8e{bottom:365.295000px;}
.yaf{bottom:373.575000px;}
.y47{bottom:377.175000px;}
.y8d{bottom:382.575000px;}
.yae{bottom:390.855000px;}
.y46{bottom:394.455000px;}
.y8c{bottom:399.855000px;}
.yad{bottom:408.135000px;}
.y45{bottom:411.735000px;}
.y8b{bottom:417.135000px;}
.yac{bottom:425.415000px;}
.y44{bottom:428.835000px;}
.y70{bottom:429.015000px;}
.y8a{bottom:434.415000px;}
.yab{bottom:442.515000px;}
.y43{bottom:446.115000px;}
.y6f{bottom:446.295000px;}
.y89{bottom:451.515000px;}
.yaa{bottom:459.795000px;}
.y42{bottom:463.395000px;}
.y6e{bottom:463.575000px;}
.y88{bottom:468.795000px;}
.ya9{bottom:477.075000px;}
.y41{bottom:480.675000px;}
.y6d{bottom:480.855000px;}
.y87{bottom:486.075000px;}
.ya8{bottom:494.355000px;}
.y6c{bottom:498.135000px;}
.y40{bottom:498.675000px;}
.y86{bottom:500.835000px;}
.ya7{bottom:511.635000px;}
.y3c{bottom:512.895000px;}
.y6b{bottom:515.235000px;}
.y85{bottom:518.835000px;}
.ya6{bottom:528.735000px;}
.y6a{bottom:529.275000px;}
.y84{bottom:536.835000px;}
.y1b{bottom:542.235000px;}
.ya5{bottom:546.015000px;}
.y83{bottom:554.835000px;}
.ya4{bottom:563.295000px;}
.y82{bottom:572.835000px;}
.ya3{bottom:580.575000px;}
.y81{bottom:590.835000px;}
.ya2{bottom:597.855000px;}
.y80{bottom:608.865000px;}
.ya1{bottom:615.165000px;}
.y7f{bottom:626.865000px;}
.ya0{bottom:632.265000px;}
.y7c{bottom:644.865000px;}
.y9f{bottom:649.545000px;}
.y7e{bottom:662.865000px;}
.y9e{bottom:666.825000px;}
.y9d{bottom:684.105000px;}
.y7b{bottom:701.385000px;}
.y7a{bottom:718.665000px;}
.y79{bottom:735.765000px;}
.y78{bottom:753.045000px;}
.y77{bottom:770.325000px;}
.y76{bottom:787.605000px;}
.y75{bottom:804.885000px;}
.y74{bottom:822.165000px;}
.y73{bottom:839.265000px;}
.y69{bottom:856.545000px;}
.y19{bottom:870.045000px;}
.y68{bottom:873.870000px;}
.y67{bottom:891.150000px;}
.yf{bottom:899.610000px;}
.y66{bottom:908.430000px;}
.y65{bottom:925.530000px;}
.y64{bottom:942.810000px;}
.y63{bottom:960.090000px;}
.y62{bottom:977.370000px;}
.y61{bottom:994.650000px;}
.y60{bottom:1011.930000px;}
.y5f{bottom:1029.030000px;}
.y5e{bottom:1046.310000px;}
.y5d{bottom:1063.590000px;}
.yd{bottom:1068.810000px;}
.y5c{bottom:1080.870000px;}
.y6{bottom:1094.010000px;}
.y5b{bottom:1098.150000px;}
.y5a{bottom:1115.430000px;}
.y59{bottom:1132.530000px;}
.y58{bottom:1149.840000px;}
.y57{bottom:1167.120000px;}
.y56{bottom:1184.400000px;}
.y55{bottom:1201.680000px;}
.h20{height:17.280000px;}
.h21{height:17.316000px;}
.hb{height:24.840000px;}
.h11{height:28.968750px;}
.h1c{height:29.340000px;}
.h12{height:29.556000px;}
.h2{height:32.940000px;}
.h1f{height:34.560000px;}
.h8{height:36.180000px;}
.h19{height:38.818125px;}
.h1b{height:41.726953px;}
.h1a{height:42.164648px;}
.h18{height:42.281367px;}
.h22{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1d{height:48.027656px;}
.h1e{height:52.560000px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:169.200000px;}
.h14{height:327.810000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:63.000000px;}
.w11{width:67.536000px;}
.w3{width:74.880000px;}
.w12{width:78.840000px;}
.wf{width:89.856000px;}
.wd{width:116.856000px;}
.we{width:127.980000px;}
.wc{width:147.096000px;}
.w5{width:151.950000px;}
.wb{width:153.570000px;}
.wa{width:198.030000px;}
.w8{width:223.275000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:7.560000px;}
.x2{left:8.640000px;}
.x20{left:10.845000px;}
.x13{left:12.600000px;}
.xc{left:45.036000px;}
.xd{left:57.816000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x18{left:92.195987px;}
.x5{left:98.130000px;}
.x21{left:108.035987px;}
.x22{left:135.035987px;}
.x10{left:178.590000px;}
.xf{left:179.670000px;}
.x11{left:215.175000px;}
.x6{left:224.850000px;}
.xe{left:261.075000px;}
.x15{left:272.189987px;}
.x17{left:285.194987px;}
.x9{left:288.435000px;}
.x12{left:296.175000px;}
.x19{left:340.814987px;}
.x7{left:348.195000px;}
.x1e{left:362.595000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x1a{left:426.315000px;}
.xa{left:455.700000px;}
.x1f{left:494.565000px;}
.x1b{left:574.125000px;}
.x14{left:637.844987px;}
.x16{left:641.084987px;}
.x1c{left:691.890000px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls14{letter-spacing:-1.845333pt;}
.ls15{letter-spacing:-1.333333pt;}
.ls1c{letter-spacing:-0.688000pt;}
.ls19{letter-spacing:-0.544000pt;}
.ls25{letter-spacing:-0.409067pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.230933pt;}
.ls2e{letter-spacing:-0.225067pt;}
.ls16{letter-spacing:-0.185600pt;}
.ls2d{letter-spacing:-0.183467pt;}
.ls13{letter-spacing:-0.113067pt;}
.ls24{letter-spacing:-0.094933pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls12{letter-spacing:-0.016000pt;}
.ls11{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.077867pt;}
.ls1a{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls21{letter-spacing:0.136533pt;}
.ls8{letter-spacing:0.160000pt;}
.ls29{letter-spacing:0.183467pt;}
.ls1e{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1d{letter-spacing:0.272533pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls9{letter-spacing:0.794880pt;}
.lse{letter-spacing:1.440000pt;}
.ls23{letter-spacing:2.720000pt;}
.ls6{letter-spacing:2.880000pt;}
.lsf{letter-spacing:4.000000pt;}
.lsb{letter-spacing:4.640000pt;}
.lsc{letter-spacing:4.746667pt;}
.ls20{letter-spacing:5.920000pt;}
.ls2c{letter-spacing:6.560000pt;}
.ls1f{letter-spacing:7.200000pt;}
.ls22{letter-spacing:8.480000pt;}
.lsa{letter-spacing:9.120000pt;}
.ls10{letter-spacing:10.400000pt;}
.ls2b{letter-spacing:11.680000pt;}
.ls27{letter-spacing:12.320000pt;}
.ls2a{letter-spacing:14.672640pt;}
.ls28{letter-spacing:40.912640pt;}
.ws16{word-spacing:-29.959680pt;}
.ws4{word-spacing:-19.633067pt;}
.ws3{word-spacing:-19.121067pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws8{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.552533pt;}
.ws15{word-spacing:-13.510933pt;}
.ws1c{word-spacing:-13.463467pt;}
.ws17{word-spacing:-13.416533pt;}
.wsd{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws18{word-spacing:-13.185067pt;}
.ws1b{word-spacing:-13.096533pt;}
.ws1d{word-spacing:-13.054933pt;}
.ws1a{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.960000pt;}
.ws19{word-spacing:-12.870933pt;}
.wsc{word-spacing:-12.736000pt;}
.ws12{word-spacing:-12.592000pt;}
.wsf{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.819520pt;}
.ws7{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws11{word-spacing:-8.651520pt;}
.ws10{word-spacing:-8.640000pt;}
.ws6{word-spacing:-7.232000pt;}
.ws13{word-spacing:0.000000pt;}
._3{margin-left:-3.680000pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-0.912000pt;}
._1{width:0.906667pt;}
._4{width:1.915947pt;}
._5{width:2.992853pt;}
._d{width:4.004907pt;}
._12{width:5.232640pt;}
._7{width:6.713813pt;}
._9{width:7.910827pt;}
._11{width:8.864000pt;}
._e{width:10.168960pt;}
._a{width:11.911040pt;}
._10{width:14.279467pt;}
._6{width:15.170133pt;}
._8{width:16.711040pt;}
._f{width:18.044373pt;}
._c{width:20.266240pt;}
._b{width:21.167360pt;}
._14{width:23.413547pt;}
._13{width:24.310187pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:2.880000pt;}
.y3e{bottom:3.040000pt;}
.y3{bottom:3.200000pt;}
.y18{bottom:4.320000pt;}
.ye{bottom:8.480000pt;}
.y1a{bottom:11.080000pt;}
.yc{bottom:12.320000pt;}
.y3f{bottom:13.280000pt;}
.y4{bottom:15.360000pt;}
.y3d{bottom:16.000000pt;}
.y2{bottom:17.920000pt;}
.y3a{bottom:18.240000pt;}
.y17{bottom:26.080000pt;}
.yb{bottom:26.880000pt;}
.y39{bottom:33.600000pt;}
.y7d{bottom:34.240000pt;}
.y16{bottom:40.160000pt;}
.ya{bottom:41.466667pt;}
.y15{bottom:48.800000pt;}
.y38{bottom:48.960000pt;}
.y5{bottom:52.160000pt;}
.y14{bottom:61.920000pt;}
.y37{bottom:64.346667pt;}
.y9{bottom:65.306667pt;}
.y1{bottom:72.192000pt;}
.y13{bottom:75.520000pt;}
.y36{bottom:79.546667pt;}
.y8{bottom:82.746667pt;}
.y28{bottom:88.026667pt;}
.y12{bottom:92.320000pt;}
.y35{bottom:94.906667pt;}
.y7{bottom:99.066667pt;}
.y27{bottom:101.626667pt;}
.y9c{bottom:110.112000pt;}
.y34{bottom:110.266667pt;}
.y11{bottom:115.200000pt;}
.y26{bottom:117.306667pt;}
.ybd{bottom:117.472000pt;}
.y72{bottom:120.032000pt;}
.y9b{bottom:125.472000pt;}
.y33{bottom:125.626667pt;}
.y25{bottom:132.506667pt;}
.y71{bottom:132.512000pt;}
.ybc{bottom:132.672000pt;}
.y54{bottom:135.866667pt;}
.y10{bottom:136.960000pt;}
.y9a{bottom:140.666667pt;}
.y32{bottom:140.986667pt;}
.y24{bottom:147.866667pt;}
.ybb{bottom:148.026667pt;}
.y53{bottom:151.226667pt;}
.y99{bottom:156.026667pt;}
.y31{bottom:156.186667pt;}
.yba{bottom:163.386667pt;}
.y23{bottom:163.706667pt;}
.y52{bottom:166.586667pt;}
.y98{bottom:171.386667pt;}
.y30{bottom:171.546667pt;}
.yb9{bottom:178.746667pt;}
.y22{bottom:179.226667pt;}
.y51{bottom:181.946667pt;}
.y97{bottom:186.746667pt;}
.y2f{bottom:186.906667pt;}
.yb8{bottom:194.106667pt;}
.y21{bottom:194.586667pt;}
.y50{bottom:197.306667pt;}
.y96{bottom:202.106667pt;}
.y2e{bottom:202.266667pt;}
.yb7{bottom:209.306667pt;}
.y20{bottom:210.106667pt;}
.y4f{bottom:212.506667pt;}
.y95{bottom:217.306667pt;}
.y2d{bottom:217.626667pt;}
.yb6{bottom:224.666667pt;}
.y1f{bottom:225.626667pt;}
.y4e{bottom:227.866667pt;}
.y94{bottom:232.666667pt;}
.y2c{bottom:232.986667pt;}
.yb5{bottom:240.026667pt;}
.y1e{bottom:241.146667pt;}
.y4d{bottom:243.226667pt;}
.y93{bottom:248.026667pt;}
.y2b{bottom:248.186667pt;}
.yb4{bottom:255.386667pt;}
.y4c{bottom:258.586667pt;}
.y92{bottom:263.386667pt;}
.y2a{bottom:263.546667pt;}
.y1d{bottom:265.626667pt;}
.yb3{bottom:270.746667pt;}
.y4b{bottom:273.946667pt;}
.y91{bottom:278.746667pt;}
.y29{bottom:278.906667pt;}
.y1c{bottom:281.306667pt;}
.yb2{bottom:286.106667pt;}
.y4a{bottom:289.146667pt;}
.y90{bottom:294.106667pt;}
.yb1{bottom:301.346667pt;}
.y49{bottom:304.546667pt;}
.y8f{bottom:309.346667pt;}
.yb0{bottom:316.706667pt;}
.y48{bottom:319.906667pt;}
.y8e{bottom:324.706667pt;}
.yaf{bottom:332.066667pt;}
.y47{bottom:335.266667pt;}
.y8d{bottom:340.066667pt;}
.yae{bottom:347.426667pt;}
.y46{bottom:350.626667pt;}
.y8c{bottom:355.426667pt;}
.yad{bottom:362.786667pt;}
.y45{bottom:365.986667pt;}
.y8b{bottom:370.786667pt;}
.yac{bottom:378.146667pt;}
.y44{bottom:381.186667pt;}
.y70{bottom:381.346667pt;}
.y8a{bottom:386.146667pt;}
.yab{bottom:393.346667pt;}
.y43{bottom:396.546667pt;}
.y6f{bottom:396.706667pt;}
.y89{bottom:401.346667pt;}
.yaa{bottom:408.706667pt;}
.y42{bottom:411.906667pt;}
.y6e{bottom:412.066667pt;}
.y88{bottom:416.706667pt;}
.ya9{bottom:424.066667pt;}
.y41{bottom:427.266667pt;}
.y6d{bottom:427.426667pt;}
.y87{bottom:432.066667pt;}
.ya8{bottom:439.426667pt;}
.y6c{bottom:442.786667pt;}
.y40{bottom:443.266667pt;}
.y86{bottom:445.186667pt;}
.ya7{bottom:454.786667pt;}
.y3c{bottom:455.906667pt;}
.y6b{bottom:457.986667pt;}
.y85{bottom:461.186667pt;}
.ya6{bottom:469.986667pt;}
.y6a{bottom:470.466667pt;}
.y84{bottom:477.186667pt;}
.y1b{bottom:481.986667pt;}
.ya5{bottom:485.346667pt;}
.y83{bottom:493.186667pt;}
.ya4{bottom:500.706667pt;}
.y82{bottom:509.186667pt;}
.ya3{bottom:516.066667pt;}
.y81{bottom:525.186667pt;}
.ya2{bottom:531.426667pt;}
.y80{bottom:541.213333pt;}
.ya1{bottom:546.813333pt;}
.y7f{bottom:557.213333pt;}
.ya0{bottom:562.013333pt;}
.y7c{bottom:573.213333pt;}
.y9f{bottom:577.373333pt;}
.y7e{bottom:589.213333pt;}
.y9e{bottom:592.733333pt;}
.y9d{bottom:608.093333pt;}
.y7b{bottom:623.453333pt;}
.y7a{bottom:638.813333pt;}
.y79{bottom:654.013333pt;}
.y78{bottom:669.373333pt;}
.y77{bottom:684.733333pt;}
.y76{bottom:700.093333pt;}
.y75{bottom:715.453333pt;}
.y74{bottom:730.813333pt;}
.y73{bottom:746.013333pt;}
.y69{bottom:761.373333pt;}
.y19{bottom:773.373333pt;}
.y68{bottom:776.773333pt;}
.y67{bottom:792.133333pt;}
.yf{bottom:799.653333pt;}
.y66{bottom:807.493333pt;}
.y65{bottom:822.693333pt;}
.y64{bottom:838.053333pt;}
.y63{bottom:853.413333pt;}
.y62{bottom:868.773333pt;}
.y61{bottom:884.133333pt;}
.y60{bottom:899.493333pt;}
.y5f{bottom:914.693333pt;}
.y5e{bottom:930.053333pt;}
.y5d{bottom:945.413333pt;}
.yd{bottom:950.053333pt;}
.y5c{bottom:960.773333pt;}
.y6{bottom:972.453333pt;}
.y5b{bottom:976.133333pt;}
.y5a{bottom:991.493333pt;}
.y59{bottom:1006.693333pt;}
.y58{bottom:1022.080000pt;}
.y57{bottom:1037.440000pt;}
.y56{bottom:1052.800000pt;}
.y55{bottom:1068.160000pt;}
.h20{height:15.360000pt;}
.h21{height:15.392000pt;}
.hb{height:22.080000pt;}
.h11{height:25.750000pt;}
.h1c{height:26.080000pt;}
.h12{height:26.272000pt;}
.h2{height:29.280000pt;}
.h1f{height:30.720000pt;}
.h8{height:32.160000pt;}
.h19{height:34.505000pt;}
.h1b{height:37.090625pt;}
.h1a{height:37.479688pt;}
.h18{height:37.583438pt;}
.h22{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1d{height:42.691250pt;}
.h1e{height:46.720000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:150.400000pt;}
.h14{height:291.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:56.000000pt;}
.w11{width:60.032000pt;}
.w3{width:66.560000pt;}
.w12{width:70.080000pt;}
.wf{width:79.872000pt;}
.wd{width:103.872000pt;}
.we{width:113.760000pt;}
.wc{width:130.752000pt;}
.w5{width:135.066667pt;}
.wb{width:136.506667pt;}
.wa{width:176.026667pt;}
.w8{width:198.466667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.720000pt;}
.x2{left:7.680000pt;}
.x20{left:9.640000pt;}
.x13{left:11.200000pt;}
.xc{left:40.032000pt;}
.xd{left:51.392000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x18{left:81.951988pt;}
.x5{left:87.226667pt;}
.x21{left:96.031988pt;}
.x22{left:120.031988pt;}
.x10{left:158.746667pt;}
.xf{left:159.706667pt;}
.x11{left:191.266667pt;}
.x6{left:199.866667pt;}
.xe{left:232.066667pt;}
.x15{left:241.946655pt;}
.x17{left:253.506655pt;}
.x9{left:256.386667pt;}
.x12{left:263.266667pt;}
.x19{left:302.946655pt;}
.x7{left:309.506667pt;}
.x1e{left:322.306667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x1a{left:378.946667pt;}
.xa{left:405.066667pt;}
.x1f{left:439.613333pt;}
.x1b{left:510.333333pt;}
.x14{left:566.973322pt;}
.x16{left:569.853322pt;}
.x1c{left:615.013333pt;}
.x3{left:663.013333pt;}
}




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