
    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_1e0e42744597358162337339.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_4b1e1f29199e196359622e91.woff2')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_d08f005e7c954b8d09b7d91f.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_77e33fd035d638d8d71408d7.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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5071c93095aa2758b8f1b193.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_b293accf3f3ced9306d5fd9c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_85537b4ef167fa8ecb43eb56.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.754395;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_25dda489b4746347c3abb1f7.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_09f70a79e44c919e1b165f3b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f49944f389ba1f9e68a47e35.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_0e1968f6f3e8095b0ecbb75d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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_d9b700164e0434809116a6d5.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_3612c616cb2155521b42a171.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_288f2ef2a27cf40c77729f11.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_25fd34050e1a8c88922bf2a4.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_f1c0f59499a3fcdfb13354a4.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_1af55f25777e056d58f309b2.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.891113;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:ff15;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff16{font-family:ff16;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;}
.v1{vertical-align:20.880000px;}
.ls14{letter-spacing:-1.260000px;}
.ls13{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.252000px;}
.lsf{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.lsd{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.238200px;}
.lsc{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lse{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls10{letter-spacing:0.900000px;}
.ls12{letter-spacing:16.506720px;}
.ls11{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;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.199800px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.220000px;}
.ws8{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._d{margin-left:-8.379840px;}
._13{margin-left:-6.932160px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-4.368000px;}
._2{margin-left:-2.969760px;}
._0{margin-left:-1.158000px;}
._1{width:1.026000px;}
._5{width:2.137440px;}
._15{width:3.216960px;}
._8{width:4.422240px;}
._6{width:5.743440px;}
._7{width:6.932160px;}
._a{width:7.950480px;}
._9{width:9.023760px;}
._b{width:10.149120px;}
._f{width:11.440080px;}
._c{width:13.206960px;}
._10{width:16.304400px;}
._19{width:18.293760px;}
._18{width:19.730880px;}
._17{width:20.965680px;}
._e{width:22.768560px;}
._16{width:24.680880px;}
._1a{width:26.881920px;}
._14{width:29.162880px;}
._12{width:30.537360px;}
._11{width:31.979520px;}
.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;}
.y3f{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y44{bottom:3.960000px;}
.y18{bottom:4.860000px;}
.ye{bottom:9.540000px;}
.y42{bottom:10.800000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.y3e{bottom:20.520000px;}
.y43{bottom:22.320000px;}
.y41{bottom:25.380000px;}
.y17{bottom:29.385000px;}
.yb{bottom:30.240000px;}
.y3d{bottom:37.800000px;}
.y5{bottom:41.040000px;}
.y16{bottom:45.945000px;}
.ya{bottom:46.440000px;}
.y3c{bottom:54.900000px;}
.y15{bottom:61.605000px;}
.y1{bottom:63.360000px;}
.y14{bottom:72.045000px;}
.y3b{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y3a{bottom:89.460000px;}
.y13{bottom:90.405000px;}
.y8{bottom:93.090000px;}
.y39{bottom:106.740000px;}
.y12{bottom:109.485000px;}
.y54{bottom:111.096000px;}
.y7{bottom:111.270000px;}
.y38{bottom:124.020000px;}
.ydd{bottom:125.316000px;}
.ya5{bottom:126.036000px;}
.y53{bottom:128.376000px;}
.y11{bottom:135.225000px;}
.y90{bottom:136.476000px;}
.y37{bottom:141.120000px;}
.ydc{bottom:142.596000px;}
.ya4{bottom:143.316000px;}
.y52{bottom:145.656000px;}
.y8f{bottom:153.750000px;}
.y36{bottom:158.400000px;}
.y10{bottom:159.525000px;}
.ydb{bottom:159.870000px;}
.ya3{bottom:160.590000px;}
.y51{bottom:162.930000px;}
.y28{bottom:165.240000px;}
.y8e{bottom:171.030000px;}
.y35{bottom:175.680000px;}
.yda{bottom:176.970000px;}
.ya2{bottom:179.490000px;}
.y50{bottom:180.210000px;}
.y27{bottom:180.540000px;}
.y8d{bottom:188.310000px;}
.y34{bottom:192.990000px;}
.yd9{bottom:194.250000px;}
.y4f{bottom:197.310000px;}
.y26{bottom:198.030000px;}
.ya1{bottom:202.710000px;}
.y8c{bottom:205.590000px;}
.y33{bottom:210.270000px;}
.yd8{bottom:211.530000px;}
.y4e{bottom:214.590000px;}
.y25{bottom:215.310000px;}
.y8b{bottom:222.870000px;}
.ya0{bottom:225.930000px;}
.y32{bottom:227.550000px;}
.yd7{bottom:228.810000px;}
.y4d{bottom:231.870000px;}
.y24{bottom:232.590000px;}
.y8a{bottom:239.970000px;}
.y31{bottom:244.650000px;}
.yd6{bottom:246.090000px;}
.y4c{bottom:249.150000px;}
.y23{bottom:250.410000px;}
.y89{bottom:257.250000px;}
.y30{bottom:261.930000px;}
.yd5{bottom:263.370000px;}
.y4b{bottom:266.430000px;}
.y22{bottom:267.690000px;}
.y9f{bottom:272.370000px;}
.y88{bottom:274.530000px;}
.y2f{bottom:279.210000px;}
.yd4{bottom:280.470000px;}
.y4a{bottom:283.530000px;}
.y21{bottom:285.150000px;}
.y87{bottom:291.810000px;}
.y9e{bottom:295.590000px;}
.y2e{bottom:296.490000px;}
.yd3{bottom:297.750000px;}
.y49{bottom:300.810000px;}
.y20{bottom:302.610000px;}
.y86{bottom:309.090000px;}
.y2d{bottom:313.770000px;}
.yd2{bottom:315.030000px;}
.y48{bottom:318.090000px;}
.y9d{bottom:318.990000px;}
.y1f{bottom:319.890000px;}
.y85{bottom:326.370000px;}
.y2c{bottom:331.050000px;}
.yd1{bottom:332.310000px;}
.y47{bottom:335.370000px;}
.y1e{bottom:340.230000px;}
.y84{bottom:343.515000px;}
.y9c{bottom:344.415000px;}
.y2b{bottom:348.150000px;}
.yd0{bottom:349.635000px;}
.y46{bottom:352.695000px;}
.y83{bottom:360.795000px;}
.y9b{bottom:361.515000px;}
.y2a{bottom:365.430000px;}
.ycf{bottom:366.915000px;}
.y1d{bottom:367.590000px;}
.y45{bottom:369.975000px;}
.y82{bottom:378.075000px;}
.y9a{bottom:378.795000px;}
.y29{bottom:382.710000px;}
.y40{bottom:383.835000px;}
.yce{bottom:384.015000px;}
.y1c{bottom:385.410000px;}
.y81{bottom:395.355000px;}
.y99{bottom:396.075000px;}
.ycd{bottom:401.295000px;}
.y80{bottom:412.635000px;}
.y98{bottom:413.355000px;}
.ycc{bottom:418.575000px;}
.y1b{bottom:420.555000px;}
.y7f{bottom:429.915000px;}
.y97{bottom:430.635000px;}
.ycb{bottom:435.855000px;}
.y7e{bottom:447.015000px;}
.y96{bottom:447.735000px;}
.yca{bottom:453.135000px;}
.y7d{bottom:464.295000px;}
.y95{bottom:466.635000px;}
.yc9{bottom:470.235000px;}
.y7c{bottom:481.575000px;}
.yc8{bottom:487.515000px;}
.y94{bottom:490.035000px;}
.y7b{bottom:498.855000px;}
.yc7{bottom:504.795000px;}
.y93{bottom:513.255000px;}
.y7a{bottom:516.135000px;}
.yc6{bottom:522.075000px;}
.y79{bottom:533.235000px;}
.y92{bottom:536.475000px;}
.yc5{bottom:539.355000px;}
.y78{bottom:550.515000px;}
.yc4{bottom:556.635000px;}
.y91{bottom:559.695000px;}
.y77{bottom:567.795000px;}
.yc3{bottom:573.735000px;}
.y76{bottom:585.075000px;}
.yc2{bottom:591.015000px;}
.y75{bottom:602.355000px;}
.yc1{bottom:608.325000px;}
.y74{bottom:619.665000px;}
.yc0{bottom:625.605000px;}
.y73{bottom:636.765000px;}
.ybf{bottom:642.885000px;}
.y72{bottom:654.045000px;}
.ybe{bottom:660.165000px;}
.y71{bottom:671.325000px;}
.ybd{bottom:677.265000px;}
.y70{bottom:688.605000px;}
.ybc{bottom:694.545000px;}
.y6f{bottom:705.885000px;}
.ybb{bottom:711.825000px;}
.y6e{bottom:723.165000px;}
.yba{bottom:729.105000px;}
.y6d{bottom:740.265000px;}
.yb9{bottom:746.385000px;}
.y6c{bottom:757.545000px;}
.yb8{bottom:763.665000px;}
.y6b{bottom:774.825000px;}
.yb7{bottom:780.765000px;}
.y6a{bottom:792.105000px;}
.yb6{bottom:798.045000px;}
.y69{bottom:809.385000px;}
.yb5{bottom:815.325000px;}
.y19{bottom:817.305000px;}
.y68{bottom:826.485000px;}
.yb4{bottom:832.605000px;}
.y67{bottom:843.765000px;}
.yf{bottom:846.825000px;}
.yb3{bottom:849.885000px;}
.y66{bottom:861.045000px;}
.yb2{bottom:866.985000px;}
.y65{bottom:878.370000px;}
.yb1{bottom:884.310000px;}
.y64{bottom:895.650000px;}
.yb0{bottom:901.590000px;}
.y63{bottom:912.930000px;}
.yaf{bottom:918.870000px;}
.y62{bottom:930.030000px;}
.yae{bottom:936.150000px;}
.y61{bottom:947.310000px;}
.yad{bottom:953.430000px;}
.y60{bottom:964.590000px;}
.yac{bottom:972.150000px;}
.y5f{bottom:981.870000px;}
.yab{bottom:995.550000px;}
.y5e{bottom:999.150000px;}
.y5d{bottom:1016.430000px;}
.yaa{bottom:1018.770000px;}
.yd{bottom:1021.470000px;}
.y5c{bottom:1033.530000px;}
.ya9{bottom:1041.990000px;}
.y6{bottom:1046.850000px;}
.y5b{bottom:1050.810000px;}
.ya8{bottom:1065.210000px;}
.y5a{bottom:1068.090000px;}
.y59{bottom:1085.370000px;}
.ya7{bottom:1088.430000px;}
.y58{bottom:1102.650000px;}
.ya6{bottom:1111.650000px;}
.y57{bottom:1119.930000px;}
.y56{bottom:1137.030000px;}
.y55{bottom:1154.340000px;}
.h21{height:17.100000px;}
.h20{height:17.280000px;}
.hc{height:25.020000px;}
.h13{height:28.968750px;}
.h14{height:29.520000px;}
.h2{height:33.156000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:36.720000px;}
.h1b{height:38.818125px;}
.h1d{height:41.726953px;}
.h1c{height:42.164648px;}
.h4{height:43.453125px;}
.h22{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h19{height:45.770625px;}
.h17{height:47.980898px;}
.h1f{height:48.088125px;}
.h1a{height:49.255313px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h6{height:60.855469px;}
.h11{height:61.189805px;}
.hf{height:62.028281px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:174.630000px;}
.h16{height:396.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w11{width:98.100000px;}
.wd{width:100.980000px;}
.w15{width:102.960000px;}
.w5{width:155.370000px;}
.we{width:163.110000px;}
.w12{width:170.850000px;}
.wc{width:172.290000px;}
.wb{width:187.950000px;}
.w14{width:206.850000px;}
.w8{width:220.935000px;}
.wf{width:227.595000px;}
.w10{width:233.130000px;}
.w13{width:241.455000px;}
.wa{width:260.895000px;}
.w9{width:526.395000px;}
.w6{width:591.945000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:1.080000px;}
.x2{left:8.640000px;}
.x13{left:12.600000px;}
.xc{left:28.296000px;}
.x10{left:33.336000px;}
.x1{left:72.360000px;}
.x15{left:79.920000px;}
.x4{left:80.999987px;}
.xf{left:84.090000px;}
.x5{left:98.130000px;}
.x22{left:108.035987px;}
.x11{left:215.175000px;}
.x14{left:218.729987px;}
.x6{left:228.270000px;}
.xe{left:232.095000px;}
.x1d{left:241.409987px;}
.x1a{left:246.810000px;}
.x1e{left:254.550000px;}
.x19{left:261.029987px;}
.x9{left:285.015000px;}
.x12{left:293.835000px;}
.xd{left:331.275000px;}
.x7{left:344.775000px;}
.x8{left:364.035000px;}
.xb{left:373.575000px;}
.x21{left:396.074987px;}
.xa{left:452.280000px;}
.x1b{left:478.185000px;}
.x1f{left:499.605000px;}
.x17{left:536.145000px;}
.x20{left:710.250000px;}
.x18{left:712.230000px;}
.x1c{left:715.110000px;}
.x3{left:745.890000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls14{letter-spacing:-1.120000pt;}
.ls13{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.224000pt;}
.lsf{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.lsd{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.211733pt;}
.lsc{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls10{letter-spacing:0.800000pt;}
.ls12{letter-spacing:14.672640pt;}
.ls11{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws8{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._d{margin-left:-7.448747pt;}
._13{margin-left:-6.161920pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-3.882667pt;}
._2{margin-left:-2.639787pt;}
._0{margin-left:-1.029333pt;}
._1{width:0.912000pt;}
._5{width:1.899947pt;}
._15{width:2.859520pt;}
._8{width:3.930880pt;}
._6{width:5.105280pt;}
._7{width:6.161920pt;}
._a{width:7.067093pt;}
._9{width:8.021120pt;}
._b{width:9.021440pt;}
._f{width:10.168960pt;}
._c{width:11.739520pt;}
._10{width:14.492800pt;}
._19{width:16.261120pt;}
._18{width:17.538560pt;}
._17{width:18.636160pt;}
._e{width:20.238720pt;}
._16{width:21.938560pt;}
._1a{width:23.895040pt;}
._14{width:25.922560pt;}
._12{width:27.144320pt;}
._11{width:28.426240pt;}
.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;}
.y3f{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y44{bottom:3.520000pt;}
.y18{bottom:4.320000pt;}
.ye{bottom:8.480000pt;}
.y42{bottom:9.600000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.y3e{bottom:18.240000pt;}
.y43{bottom:19.840000pt;}
.y41{bottom:22.560000pt;}
.y17{bottom:26.120000pt;}
.yb{bottom:26.880000pt;}
.y3d{bottom:33.600000pt;}
.y5{bottom:36.480000pt;}
.y16{bottom:40.840000pt;}
.ya{bottom:41.280000pt;}
.y3c{bottom:48.800000pt;}
.y15{bottom:54.760000pt;}
.y1{bottom:56.320000pt;}
.y14{bottom:64.040000pt;}
.y3b{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y3a{bottom:79.520000pt;}
.y13{bottom:80.360000pt;}
.y8{bottom:82.746667pt;}
.y39{bottom:94.880000pt;}
.y12{bottom:97.320000pt;}
.y54{bottom:98.752000pt;}
.y7{bottom:98.906667pt;}
.y38{bottom:110.240000pt;}
.ydd{bottom:111.392000pt;}
.ya5{bottom:112.032000pt;}
.y53{bottom:114.112000pt;}
.y11{bottom:120.200000pt;}
.y90{bottom:121.312000pt;}
.y37{bottom:125.440000pt;}
.ydc{bottom:126.752000pt;}
.ya4{bottom:127.392000pt;}
.y52{bottom:129.472000pt;}
.y8f{bottom:136.666667pt;}
.y36{bottom:140.800000pt;}
.y10{bottom:141.800000pt;}
.ydb{bottom:142.106667pt;}
.ya3{bottom:142.746667pt;}
.y51{bottom:144.826667pt;}
.y28{bottom:146.880000pt;}
.y8e{bottom:152.026667pt;}
.y35{bottom:156.160000pt;}
.yda{bottom:157.306667pt;}
.ya2{bottom:159.546667pt;}
.y50{bottom:160.186667pt;}
.y27{bottom:160.480000pt;}
.y8d{bottom:167.386667pt;}
.y34{bottom:171.546667pt;}
.yd9{bottom:172.666667pt;}
.y4f{bottom:175.386667pt;}
.y26{bottom:176.026667pt;}
.ya1{bottom:180.186667pt;}
.y8c{bottom:182.746667pt;}
.y33{bottom:186.906667pt;}
.yd8{bottom:188.026667pt;}
.y4e{bottom:190.746667pt;}
.y25{bottom:191.386667pt;}
.y8b{bottom:198.106667pt;}
.ya0{bottom:200.826667pt;}
.y32{bottom:202.266667pt;}
.yd7{bottom:203.386667pt;}
.y4d{bottom:206.106667pt;}
.y24{bottom:206.746667pt;}
.y8a{bottom:213.306667pt;}
.y31{bottom:217.466667pt;}
.yd6{bottom:218.746667pt;}
.y4c{bottom:221.466667pt;}
.y23{bottom:222.586667pt;}
.y89{bottom:228.666667pt;}
.y30{bottom:232.826667pt;}
.yd5{bottom:234.106667pt;}
.y4b{bottom:236.826667pt;}
.y22{bottom:237.946667pt;}
.y9f{bottom:242.106667pt;}
.y88{bottom:244.026667pt;}
.y2f{bottom:248.186667pt;}
.yd4{bottom:249.306667pt;}
.y4a{bottom:252.026667pt;}
.y21{bottom:253.466667pt;}
.y87{bottom:259.386667pt;}
.y9e{bottom:262.746667pt;}
.y2e{bottom:263.546667pt;}
.yd3{bottom:264.666667pt;}
.y49{bottom:267.386667pt;}
.y20{bottom:268.986667pt;}
.y86{bottom:274.746667pt;}
.y2d{bottom:278.906667pt;}
.yd2{bottom:280.026667pt;}
.y48{bottom:282.746667pt;}
.y9d{bottom:283.546667pt;}
.y1f{bottom:284.346667pt;}
.y85{bottom:290.106667pt;}
.y2c{bottom:294.266667pt;}
.yd1{bottom:295.386667pt;}
.y47{bottom:298.106667pt;}
.y1e{bottom:302.426667pt;}
.y84{bottom:305.346667pt;}
.y9c{bottom:306.146667pt;}
.y2b{bottom:309.466667pt;}
.yd0{bottom:310.786667pt;}
.y46{bottom:313.506667pt;}
.y83{bottom:320.706667pt;}
.y9b{bottom:321.346667pt;}
.y2a{bottom:324.826667pt;}
.ycf{bottom:326.146667pt;}
.y1d{bottom:326.746667pt;}
.y45{bottom:328.866667pt;}
.y82{bottom:336.066667pt;}
.y9a{bottom:336.706667pt;}
.y29{bottom:340.186667pt;}
.y40{bottom:341.186667pt;}
.yce{bottom:341.346667pt;}
.y1c{bottom:342.586667pt;}
.y81{bottom:351.426667pt;}
.y99{bottom:352.066667pt;}
.ycd{bottom:356.706667pt;}
.y80{bottom:366.786667pt;}
.y98{bottom:367.426667pt;}
.ycc{bottom:372.066667pt;}
.y1b{bottom:373.826667pt;}
.y7f{bottom:382.146667pt;}
.y97{bottom:382.786667pt;}
.ycb{bottom:387.426667pt;}
.y7e{bottom:397.346667pt;}
.y96{bottom:397.986667pt;}
.yca{bottom:402.786667pt;}
.y7d{bottom:412.706667pt;}
.y95{bottom:414.786667pt;}
.yc9{bottom:417.986667pt;}
.y7c{bottom:428.066667pt;}
.yc8{bottom:433.346667pt;}
.y94{bottom:435.586667pt;}
.y7b{bottom:443.426667pt;}
.yc7{bottom:448.706667pt;}
.y93{bottom:456.226667pt;}
.y7a{bottom:458.786667pt;}
.yc6{bottom:464.066667pt;}
.y79{bottom:473.986667pt;}
.y92{bottom:476.866667pt;}
.yc5{bottom:479.426667pt;}
.y78{bottom:489.346667pt;}
.yc4{bottom:494.786667pt;}
.y91{bottom:497.506667pt;}
.y77{bottom:504.706667pt;}
.yc3{bottom:509.986667pt;}
.y76{bottom:520.066667pt;}
.yc2{bottom:525.346667pt;}
.y75{bottom:535.426667pt;}
.yc1{bottom:540.733333pt;}
.y74{bottom:550.813333pt;}
.yc0{bottom:556.093333pt;}
.y73{bottom:566.013333pt;}
.ybf{bottom:571.453333pt;}
.y72{bottom:581.373333pt;}
.ybe{bottom:586.813333pt;}
.y71{bottom:596.733333pt;}
.ybd{bottom:602.013333pt;}
.y70{bottom:612.093333pt;}
.ybc{bottom:617.373333pt;}
.y6f{bottom:627.453333pt;}
.ybb{bottom:632.733333pt;}
.y6e{bottom:642.813333pt;}
.yba{bottom:648.093333pt;}
.y6d{bottom:658.013333pt;}
.yb9{bottom:663.453333pt;}
.y6c{bottom:673.373333pt;}
.yb8{bottom:678.813333pt;}
.y6b{bottom:688.733333pt;}
.yb7{bottom:694.013333pt;}
.y6a{bottom:704.093333pt;}
.yb6{bottom:709.373333pt;}
.y69{bottom:719.453333pt;}
.yb5{bottom:724.733333pt;}
.y19{bottom:726.493333pt;}
.y68{bottom:734.653333pt;}
.yb4{bottom:740.093333pt;}
.y67{bottom:750.013333pt;}
.yf{bottom:752.733333pt;}
.yb3{bottom:755.453333pt;}
.y66{bottom:765.373333pt;}
.yb2{bottom:770.653333pt;}
.y65{bottom:780.773333pt;}
.yb1{bottom:786.053333pt;}
.y64{bottom:796.133333pt;}
.yb0{bottom:801.413333pt;}
.y63{bottom:811.493333pt;}
.yaf{bottom:816.773333pt;}
.y62{bottom:826.693333pt;}
.yae{bottom:832.133333pt;}
.y61{bottom:842.053333pt;}
.yad{bottom:847.493333pt;}
.y60{bottom:857.413333pt;}
.yac{bottom:864.133333pt;}
.y5f{bottom:872.773333pt;}
.yab{bottom:884.933333pt;}
.y5e{bottom:888.133333pt;}
.y5d{bottom:903.493333pt;}
.yaa{bottom:905.573333pt;}
.yd{bottom:907.973333pt;}
.y5c{bottom:918.693333pt;}
.ya9{bottom:926.213333pt;}
.y6{bottom:930.533333pt;}
.y5b{bottom:934.053333pt;}
.ya8{bottom:946.853333pt;}
.y5a{bottom:949.413333pt;}
.y59{bottom:964.773333pt;}
.ya7{bottom:967.493333pt;}
.y58{bottom:980.133333pt;}
.ya6{bottom:988.133333pt;}
.y57{bottom:995.493333pt;}
.y56{bottom:1010.693333pt;}
.y55{bottom:1026.080000pt;}
.h21{height:15.200000pt;}
.h20{height:15.360000pt;}
.hc{height:22.240000pt;}
.h13{height:25.750000pt;}
.h14{height:26.240000pt;}
.h2{height:29.472000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:32.640000pt;}
.h1b{height:34.505000pt;}
.h1d{height:37.090625pt;}
.h1c{height:37.479688pt;}
.h4{height:38.625000pt;}
.h22{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h19{height:40.685000pt;}
.h17{height:42.649687pt;}
.h1f{height:42.745000pt;}
.h1a{height:43.782500pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h6{height:54.093750pt;}
.h11{height:54.390938pt;}
.hf{height:55.136250pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:155.226667pt;}
.h16{height:352.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w11{width:87.200000pt;}
.wd{width:89.760000pt;}
.w15{width:91.520000pt;}
.w5{width:138.106667pt;}
.we{width:144.986667pt;}
.w12{width:151.866667pt;}
.wc{width:153.146667pt;}
.wb{width:167.066667pt;}
.w14{width:183.866667pt;}
.w8{width:196.386667pt;}
.wf{width:202.306667pt;}
.w10{width:207.226667pt;}
.w13{width:214.626667pt;}
.wa{width:231.906667pt;}
.w9{width:467.906667pt;}
.w6{width:526.173333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:0.960000pt;}
.x2{left:7.680000pt;}
.x13{left:11.200000pt;}
.xc{left:25.152000pt;}
.x10{left:29.632000pt;}
.x1{left:64.320000pt;}
.x15{left:71.040000pt;}
.x4{left:71.999988pt;}
.xf{left:74.746667pt;}
.x5{left:87.226667pt;}
.x22{left:96.031988pt;}
.x11{left:191.266667pt;}
.x14{left:194.426655pt;}
.x6{left:202.906667pt;}
.xe{left:206.306667pt;}
.x1d{left:214.586655pt;}
.x1a{left:219.386667pt;}
.x1e{left:226.266667pt;}
.x19{left:232.026655pt;}
.x9{left:253.346667pt;}
.x12{left:261.186667pt;}
.xd{left:294.466667pt;}
.x7{left:306.466667pt;}
.x8{left:323.586667pt;}
.xb{left:332.066667pt;}
.x21{left:352.066655pt;}
.xa{left:402.026667pt;}
.x1b{left:425.053333pt;}
.x1f{left:444.093333pt;}
.x17{left:476.573333pt;}
.x20{left:631.333333pt;}
.x18{left:633.093333pt;}
.x1c{left:635.653333pt;}
.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; }
  