
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9cb8451b25652dc66e7a2646.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_f399335201c7c01ace6f00c0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_c77aaf6dc348e9b32a227456.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_4e6eb28c8c02ce80e89d75bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_7266c626e4a368597afc2cf5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893066;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_6ccc05547bd805b762cd041d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_10cf43c062f89c611505b9f2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_50ef640f1451b9593a2fd6c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;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_078844bc4a4ea653fcaab60b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;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_3b18ef0c7ff752d567e437a9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_6b2a831591410283801c6e87.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.435059;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_e9c7dc407308dcb31021a794.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.690918;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_2c1ba6a0fc21894644080652.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.065430;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.v4{vertical-align:27.000000px;}
.ls1f{letter-spacing:-14.700000px;}
.ls18{letter-spacing:-13.260000px;}
.ls1a{letter-spacing:-12.900000px;}
.ls1c{letter-spacing:-10.020000px;}
.lse{letter-spacing:-7.860000px;}
.ls17{letter-spacing:-0.186600px;}
.lsf{letter-spacing:-0.137400px;}
.lsa{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls1e{letter-spacing:-0.011160px;}
.ls7{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.045360px;}
.ls14{letter-spacing:0.048960px;}
.ls15{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls10{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1d{letter-spacing:0.105600px;}
.ls8{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.181200px;}
.lsd{letter-spacing:0.198000px;}
.ls19{letter-spacing:0.222600px;}
.ls0{letter-spacing:0.360000px;}
.ls21{letter-spacing:47.726640px;}
.ls16{letter-spacing:63.566640px;}
.ls20{letter-spacing:80.846640px;}
.ls12{letter-spacing:233.061960px;}
.ls6{letter-spacing:234.021960px;}
.ls11{letter-spacing:261.141960px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-16.470000px;}
.wsb{word-spacing:-14.716200px;}
.ws4{word-spacing:-14.493600px;}
.wse{word-spacing:-14.372400px;}
.ws8{word-spacing:-14.356200px;}
.ws6{word-spacing:-13.424400px;}
.wsc{word-spacing:-13.407600px;}
.ws5{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.332000px;}
.wsf{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws11{word-spacing:-13.215240px;}
.wsa{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws9{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
.wsd{word-spacing:218.505720px;}
._11{margin-left:-114.120240px;}
._1a{margin-left:-109.469280px;}
._10{margin-left:-94.658040px;}
._1c{margin-left:-76.217520px;}
._1e{margin-left:-74.814960px;}
._18{margin-left:-73.217520px;}
._17{margin-left:-58.298040px;}
._f{margin-left:-39.180000px;}
._1b{margin-left:-35.228160px;}
._16{margin-left:-28.380000px;}
._21{margin-left:-15.522000px;}
._19{margin-left:-12.846600px;}
._1d{margin-left:-10.013760px;}
._12{margin-left:-8.168988px;}
._a{margin-left:-3.885720px;}
._9{margin-left:-2.825400px;}
._0{margin-left:-1.158000px;}
._2{width:1.006812px;}
._6{width:3.006000px;}
._7{width:4.104000px;}
._8{width:5.211599px;}
._4{width:6.853800px;}
._5{width:8.054998px;}
._1{width:9.562236px;}
._3{width:11.481132px;}
._24{width:15.030000px;}
._1f{width:16.052040px;}
._25{width:17.524800px;}
._c{width:18.637200px;}
._d{width:19.899600px;}
._23{width:21.927000px;}
._22{width:23.146200px;}
._b{width:25.069800px;}
._13{width:27.234600px;}
._14{width:28.615797px;}
._20{width:31.622702px;}
._27{width:33.216120px;}
._26{width:69.318360px;}
._e{width:231.649680px;}
._15{width:262.857360px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y70{bottom:7.830000px;}
.y76{bottom:7.920000px;}
.y73{bottom:25.380000px;}
.ya3{bottom:25.470000px;}
.y6f{bottom:25.500000px;}
.y72{bottom:43.020000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yd1{bottom:114.690000px;}
.y89{bottom:137.190000px;}
.y29{bottom:140.700000px;}
.yd0{bottom:141.600000px;}
.y88{bottom:154.830000px;}
.y28{bottom:158.250000px;}
.y87{bottom:172.380000px;}
.y53{bottom:174.270000px;}
.y27{bottom:176.160000px;}
.ycf{bottom:178.680000px;}
.y26{bottom:195.240000px;}
.yce{bottom:196.230000px;}
.y86{bottom:198.930000px;}
.y52{bottom:209.820000px;}
.y25{bottom:212.790000px;}
.ycd{bottom:213.870000px;}
.yb2{bottom:221.700000px;}
.y24{bottom:230.340000px;}
.ycc{bottom:231.420000px;}
.y85{bottom:234.570000px;}
.y51{bottom:246.270000px;}
.y23{bottom:247.980000px;}
.ycb{bottom:248.970000px;}
.y84{bottom:252.120000px;}
.yb1{bottom:257.160000px;}
.y50{bottom:263.910000px;}
.y22{bottom:265.530000px;}
.y79{bottom:265.980000px;}
.yca{bottom:275.880000px;}
.y4f{bottom:281.460000px;}
.y21{bottom:283.170000px;}
.y83{bottom:284.340000px;}
.yb0{bottom:292.530000px;}
.y20{bottom:300.720000px;}
.y78{bottom:300.810000px;}
.y97{bottom:307.200000px;}
.y77{bottom:312.960000px;}
.yc9{bottom:313.230000px;}
.yaf{bottom:316.470000px;}
.y4e{bottom:317.010000px;}
.y1f{bottom:318.270000px;}
.y1e{bottom:335.910000px;}
.y75{bottom:340.320000px;}
.y96{bottom:342.840000px;}
.yae{bottom:343.830000px;}
.y4d{bottom:352.560000px;}
.y1d{bottom:353.460000px;}
.y95{bottom:360.390000px;}
.yc8{bottom:361.560000px;}
.y74{bottom:367.680000px;}
.y1c{bottom:371.100000px;}
.yad{bottom:371.190000px;}
.y94{bottom:378.030000px;}
.yc7{bottom:379.110000px;}
.y1b{bottom:388.650000px;}
.y4c{bottom:389.010000px;}
.y71{bottom:395.040000px;}
.y93{bottom:395.850000px;}
.yc6{bottom:396.660000px;}
.yac{bottom:398.460000px;}
.y1a{bottom:406.200000px;}
.y4b{bottom:406.650000px;}
.yc5{bottom:414.300000px;}
.y92{bottom:414.570000px;}
.yab{bottom:425.820000px;}
.y91{bottom:432.120000px;}
.y19{bottom:433.110000px;}
.y4a{bottom:445.620000px;}
.yc4{bottom:449.850000px;}
.y6e{bottom:457.500000px;}
.y90{bottom:458.760000px;}
.yc3{bottom:467.490000px;}
.yaa{bottom:474.540000px;}
.y18{bottom:481.470000px;}
.yc2{bottom:485.070000px;}
.y49{bottom:486.870000px;}
.ya9{bottom:492.180000px;}
.y8f{bottom:494.340000px;}
.y17{bottom:499.380000px;}
.yc1{bottom:502.620000px;}
.y8e{bottom:511.890000px;}
.y48{bottom:523.320000px;}
.y6d{bottom:523.860000px;}
.ya8{bottom:527.730000px;}
.yc0{bottom:529.530000px;}
.y82{bottom:530.790000px;}
.y16{bottom:536.370000px;}
.y47{bottom:540.960000px;}
.y8d{bottom:544.110000px;}
.y81{bottom:548.340000px;}
.ya7{bottom:551.670000px;}
.y15{bottom:553.920000px;}
.y6c{bottom:559.410000px;}
.y80{bottom:565.890000px;}
.y46{bottom:567.510000px;}
.y14{bottom:571.560000px;}
.y6b{bottom:576.960000px;}
.ybf{bottom:577.860000px;}
.ya6{bottom:579.030000px;}
.y7f{bottom:583.530000px;}
.y13{bottom:589.110000px;}
.y6a{bottom:594.600000px;}
.ybe{bottom:595.410000px;}
.y45{bottom:603.150000px;}
.yea{bottom:606.210000px;}
.ya5{bottom:606.390000px;}
.y12{bottom:606.750000px;}
.y7e{bottom:610.080000px;}
.y69{bottom:612.420000px;}
.ybd{bottom:612.960000px;}
.y44{bottom:620.700000px;}
.y11{bottom:624.300000px;}
.ybc{bottom:630.600000px;}
.y68{bottom:631.140000px;}
.ye9{bottom:632.760000px;}
.ya4{bottom:633.750000px;}
.y43{bottom:638.250000px;}
.y10{bottom:641.850000px;}
.y7d{bottom:645.720000px;}
.y67{bottom:648.690000px;}
.ye8{bottom:650.400000px;}
.y42{bottom:655.890000px;}
.ybb{bottom:657.150000px;}
.yf{bottom:659.490000px;}
.ya2{bottom:661.020000px;}
.y41{bottom:673.440000px;}
.y66{bottom:675.330000px;}
.ye7{bottom:676.950000px;}
.ye{bottom:677.040000px;}
.y7c{bottom:677.940000px;}
.yba{bottom:692.790000px;}
.ye6{bottom:694.590000px;}
.yd{bottom:694.680000px;}
.y40{bottom:709.080000px;}
.yb9{bottom:710.340000px;}
.y65{bottom:711.240000px;}
.yc{bottom:712.230000px;}
.ye5{bottom:721.140000px;}
.ya1{bottom:727.350000px;}
.yb8{bottom:727.890000px;}
.ye4{bottom:738.690000px;}
.yb{bottom:739.140000px;}
.y3f{bottom:744.630000px;}
.ya0{bottom:744.900000px;}
.yb7{bottom:745.530000px;}
.y64{bottom:759.480000px;}
.y3e{bottom:762.180000px;}
.yb6{bottom:763.080000px;}
.ye3{bottom:765.330000px;}
.y63{bottom:777.120000px;}
.y3d{bottom:779.820000px;}
.y9f{bottom:780.540000px;}
.ye2{bottom:782.880000px;}
.ya{bottom:787.380000px;}
.yb5{bottom:789.720000px;}
.y62{bottom:794.670000px;}
.y3c{bottom:797.370000px;}
.y9e{bottom:798.090000px;}
.ye1{bottom:809.520000px;}
.y61{bottom:812.220000px;}
.y8c{bottom:813.030000px;}
.y3b{bottom:814.920000px;}
.y9d{bottom:815.640000px;}
.y9{bottom:823.200000px;}
.yb4{bottom:825.270000px;}
.ye0{bottom:827.070000px;}
.y60{bottom:829.860000px;}
.y8b{bottom:830.580000px;}
.y3a{bottom:832.560000px;}
.y9c{bottom:833.280000px;}
.y5f{bottom:847.410000px;}
.y39{bottom:850.110000px;}
.y9b{bottom:850.830000px;}
.ydf{bottom:853.620000px;}
.yb3{bottom:857.490000px;}
.y8{bottom:859.200000px;}
.y8a{bottom:862.800000px;}
.y5e{bottom:864.960000px;}
.yde{bottom:871.260000px;}
.y38{bottom:876.750000px;}
.y9a{bottom:877.470000px;}
.y5d{bottom:882.600000px;}
.ydd{bottom:888.810000px;}
.y7{bottom:898.980000px;}
.y5c{bottom:900.150000px;}
.y37{bottom:912.660000px;}
.y99{bottom:913.020000px;}
.y7b{bottom:915.270000px;}
.ydc{bottom:915.450000px;}
.y6{bottom:916.980000px;}
.y5b{bottom:926.790000px;}
.ydb{bottom:933.000000px;}
.y98{bottom:945.240000px;}
.y7a{bottom:947.490000px;}
.y5{bottom:949.290000px;}
.yda{bottom:959.550000px;}
.y36{bottom:960.900000px;}
.y5a{bottom:962.340000px;}
.yd9{bottom:977.190000px;}
.y35{bottom:978.450000px;}
.y59{bottom:979.890000px;}
.y4{bottom:987.630000px;}
.yd8{bottom:994.740000px;}
.y34{bottom:996.090000px;}
.y58{bottom:997.530000px;}
.y3{bottom:1012.320000px;}
.y33{bottom:1013.670000px;}
.yd7{bottom:1021.320000px;}
.y32{bottom:1031.310000px;}
.y57{bottom:1033.110000px;}
.yd6{bottom:1038.960000px;}
.y31{bottom:1048.860000px;}
.yd5{bottom:1065.510000px;}
.y30{bottom:1066.770000px;}
.y56{bottom:1068.660000px;}
.yd4{bottom:1083.150000px;}
.y2f{bottom:1085.760000px;}
.yd3{bottom:1100.700000px;}
.y2e{bottom:1103.400000px;}
.y55{bottom:1105.110000px;}
.y2d{bottom:1121.310000px;}
.y54{bottom:1122.750000px;}
.yd2{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h11{height:26.550000px;}
.h12{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h13{height:44.190000px;}
.he{height:44.220000px;}
.hf{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h10{height:61.740000px;}
.hb{height:61.793886px;}
.ha{height:62.585859px;}
.hd{height:67.714259px;}
.h9{height:68.582109px;}
.h4{height:72.985430px;}
.hc{height:73.991602px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:54.900000px;}
.w10{width:60.120000px;}
.wb{width:63.450000px;}
.w3{width:66.690000px;}
.wc{width:67.950000px;}
.w11{width:80.190000px;}
.w6{width:83.790000px;}
.w4{width:83.820000px;}
.w9{width:83.880000px;}
.w8{width:83.910000px;}
.w5{width:86.850000px;}
.w7{width:86.940000px;}
.wf{width:106.200000px;}
.w13{width:106.290000px;}
.wd{width:107.280000px;}
.w12{width:107.370000px;}
.we{width:109.650000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x23{left:11.520000px;}
.x1f{left:29.430000px;}
.x2b{left:34.230000px;}
.x2a{left:35.550000px;}
.x1{left:68.040000px;}
.x17{left:91.889987px;}
.x4{left:95.039987px;}
.x2e{left:111.239987px;}
.x9{left:136.170000px;}
.x24{left:185.610000px;}
.x1c{left:190.020000px;}
.x2{left:202.799987px;}
.xa{left:220.800000px;}
.x25{left:241.230000px;}
.x1d{left:245.640000px;}
.x13{left:258.869987px;}
.x11{left:265.349987px;}
.x26{left:302.070000px;}
.x2d{left:306.929987px;}
.xb{left:308.370000px;}
.x1e{left:309.900000px;}
.x1a{left:354.539987px;}
.x18{left:374.069987px;}
.x20{left:378.570000px;}
.x7{left:381.089987px;}
.x27{left:382.980000px;}
.xc{left:392.970000px;}
.x5{left:396.749987px;}
.x6{left:402.779987px;}
.xd{left:480.630000px;}
.x21{left:486.660000px;}
.x28{left:491.070000px;}
.xe{left:565.260000px;}
.x22{left:597.030000px;}
.x29{left:601.440000px;}
.xf{left:652.920000px;}
.x1b{left:655.889987px;}
.x16{left:657.059987px;}
.x2c{left:673.889987px;}
.x19{left:679.559987px;}
.x14{left:680.639987px;}
.x12{left:690.809987px;}
.x15{left:698.639987px;}
.x10{left:737.520000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.v4{vertical-align:24.000000pt;}
.ls1f{letter-spacing:-13.066667pt;}
.ls18{letter-spacing:-11.786667pt;}
.ls1a{letter-spacing:-11.466667pt;}
.ls1c{letter-spacing:-8.906667pt;}
.lse{letter-spacing:-6.986667pt;}
.ls17{letter-spacing:-0.165867pt;}
.lsf{letter-spacing:-0.122133pt;}
.lsa{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls1e{letter-spacing:-0.009920pt;}
.ls7{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.040320pt;}
.ls14{letter-spacing:0.043520pt;}
.ls15{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls10{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1d{letter-spacing:0.093867pt;}
.ls8{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.161067pt;}
.lsd{letter-spacing:0.176000pt;}
.ls19{letter-spacing:0.197867pt;}
.ls0{letter-spacing:0.320000pt;}
.ls21{letter-spacing:42.423680pt;}
.ls16{letter-spacing:56.503680pt;}
.ls20{letter-spacing:71.863680pt;}
.ls12{letter-spacing:207.166187pt;}
.ls6{letter-spacing:208.019520pt;}
.ls11{letter-spacing:232.126187pt;}
.ws7{word-spacing:-14.640000pt;}
.wsb{word-spacing:-13.081067pt;}
.ws4{word-spacing:-12.883200pt;}
.wse{word-spacing:-12.775467pt;}
.ws8{word-spacing:-12.761067pt;}
.ws6{word-spacing:-11.932800pt;}
.wsc{word-spacing:-11.917867pt;}
.ws5{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.850667pt;}
.wsf{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws11{word-spacing:-11.746880pt;}
.wsa{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws9{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
.wsd{word-spacing:194.227307pt;}
._11{margin-left:-101.440213pt;}
._1a{margin-left:-97.306027pt;}
._10{margin-left:-84.140480pt;}
._1c{margin-left:-67.748907pt;}
._1e{margin-left:-66.502187pt;}
._18{margin-left:-65.082240pt;}
._17{margin-left:-51.820480pt;}
._f{margin-left:-34.826667pt;}
._1b{margin-left:-31.313920pt;}
._16{margin-left:-25.226667pt;}
._21{margin-left:-13.797333pt;}
._19{margin-left:-11.419200pt;}
._1d{margin-left:-8.901120pt;}
._12{margin-left:-7.261323pt;}
._a{margin-left:-3.453974pt;}
._9{margin-left:-2.511466pt;}
._0{margin-left:-1.029333pt;}
._2{width:0.894944pt;}
._6{width:2.672000pt;}
._7{width:3.648000pt;}
._8{width:4.632533pt;}
._4{width:6.092267pt;}
._5{width:7.159998pt;}
._1{width:8.499765pt;}
._3{width:10.205450pt;}
._24{width:13.360000pt;}
._1f{width:14.268480pt;}
._25{width:15.577600pt;}
._c{width:16.566400pt;}
._d{width:17.688533pt;}
._23{width:19.490667pt;}
._22{width:20.574400pt;}
._b{width:22.284266pt;}
._13{width:24.208534pt;}
._14{width:25.436264pt;}
._20{width:28.109068pt;}
._27{width:29.525440pt;}
._26{width:61.616320pt;}
._e{width:205.910827pt;}
._15{width:233.650987pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:6.960000pt;}
.y76{bottom:7.040000pt;}
.y73{bottom:22.560000pt;}
.ya3{bottom:22.640000pt;}
.y6f{bottom:22.666667pt;}
.y72{bottom:38.240000pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yd1{bottom:101.946667pt;}
.y89{bottom:121.946667pt;}
.y29{bottom:125.066667pt;}
.yd0{bottom:125.866667pt;}
.y88{bottom:137.626667pt;}
.y28{bottom:140.666667pt;}
.y87{bottom:153.226667pt;}
.y53{bottom:154.906667pt;}
.y27{bottom:156.586667pt;}
.ycf{bottom:158.826667pt;}
.y26{bottom:173.546667pt;}
.yce{bottom:174.426667pt;}
.y86{bottom:176.826667pt;}
.y52{bottom:186.506667pt;}
.y25{bottom:189.146667pt;}
.ycd{bottom:190.106667pt;}
.yb2{bottom:197.066667pt;}
.y24{bottom:204.746667pt;}
.ycc{bottom:205.706667pt;}
.y85{bottom:208.506667pt;}
.y51{bottom:218.906667pt;}
.y23{bottom:220.426667pt;}
.ycb{bottom:221.306667pt;}
.y84{bottom:224.106667pt;}
.yb1{bottom:228.586667pt;}
.y50{bottom:234.586667pt;}
.y22{bottom:236.026667pt;}
.y79{bottom:236.426667pt;}
.yca{bottom:245.226667pt;}
.y4f{bottom:250.186667pt;}
.y21{bottom:251.706667pt;}
.y83{bottom:252.746667pt;}
.yb0{bottom:260.026667pt;}
.y20{bottom:267.306667pt;}
.y78{bottom:267.386667pt;}
.y97{bottom:273.066667pt;}
.y77{bottom:278.186667pt;}
.yc9{bottom:278.426667pt;}
.yaf{bottom:281.306667pt;}
.y4e{bottom:281.786667pt;}
.y1f{bottom:282.906667pt;}
.y1e{bottom:298.586667pt;}
.y75{bottom:302.506667pt;}
.y96{bottom:304.746667pt;}
.yae{bottom:305.626667pt;}
.y4d{bottom:313.386667pt;}
.y1d{bottom:314.186667pt;}
.y95{bottom:320.346667pt;}
.yc8{bottom:321.386667pt;}
.y74{bottom:326.826667pt;}
.y1c{bottom:329.866667pt;}
.yad{bottom:329.946667pt;}
.y94{bottom:336.026667pt;}
.yc7{bottom:336.986667pt;}
.y1b{bottom:345.466667pt;}
.y4c{bottom:345.786667pt;}
.y71{bottom:351.146667pt;}
.y93{bottom:351.866667pt;}
.yc6{bottom:352.586667pt;}
.yac{bottom:354.186667pt;}
.y1a{bottom:361.066667pt;}
.y4b{bottom:361.466667pt;}
.yc5{bottom:368.266667pt;}
.y92{bottom:368.506667pt;}
.yab{bottom:378.506667pt;}
.y91{bottom:384.106667pt;}
.y19{bottom:384.986667pt;}
.y4a{bottom:396.106667pt;}
.yc4{bottom:399.866667pt;}
.y6e{bottom:406.666667pt;}
.y90{bottom:407.786667pt;}
.yc3{bottom:415.546667pt;}
.yaa{bottom:421.813333pt;}
.y18{bottom:427.973333pt;}
.yc2{bottom:431.173333pt;}
.y49{bottom:432.773333pt;}
.ya9{bottom:437.493333pt;}
.y8f{bottom:439.413333pt;}
.y17{bottom:443.893333pt;}
.yc1{bottom:446.773333pt;}
.y8e{bottom:455.013333pt;}
.y48{bottom:465.173333pt;}
.y6d{bottom:465.653333pt;}
.ya8{bottom:469.093333pt;}
.yc0{bottom:470.693333pt;}
.y82{bottom:471.813333pt;}
.y16{bottom:476.773333pt;}
.y47{bottom:480.853333pt;}
.y8d{bottom:483.653333pt;}
.y81{bottom:487.413333pt;}
.ya7{bottom:490.373333pt;}
.y15{bottom:492.373333pt;}
.y6c{bottom:497.253333pt;}
.y80{bottom:503.013333pt;}
.y46{bottom:504.453333pt;}
.y14{bottom:508.053333pt;}
.y6b{bottom:512.853333pt;}
.ybf{bottom:513.653333pt;}
.ya6{bottom:514.693333pt;}
.y7f{bottom:518.693333pt;}
.y13{bottom:523.653333pt;}
.y6a{bottom:528.533333pt;}
.ybe{bottom:529.253333pt;}
.y45{bottom:536.133333pt;}
.yea{bottom:538.853333pt;}
.ya5{bottom:539.013333pt;}
.y12{bottom:539.333333pt;}
.y7e{bottom:542.293333pt;}
.y69{bottom:544.373333pt;}
.ybd{bottom:544.853333pt;}
.y44{bottom:551.733333pt;}
.y11{bottom:554.933333pt;}
.ybc{bottom:560.533333pt;}
.y68{bottom:561.013333pt;}
.ye9{bottom:562.453333pt;}
.ya4{bottom:563.333333pt;}
.y43{bottom:567.333333pt;}
.y10{bottom:570.533333pt;}
.y7d{bottom:573.973333pt;}
.y67{bottom:576.613333pt;}
.ye8{bottom:578.133333pt;}
.y42{bottom:583.013333pt;}
.ybb{bottom:584.133333pt;}
.yf{bottom:586.213333pt;}
.ya2{bottom:587.573333pt;}
.y41{bottom:598.613333pt;}
.y66{bottom:600.293333pt;}
.ye7{bottom:601.733333pt;}
.ye{bottom:601.813333pt;}
.y7c{bottom:602.613333pt;}
.yba{bottom:615.813333pt;}
.ye6{bottom:617.413333pt;}
.yd{bottom:617.493333pt;}
.y40{bottom:630.293333pt;}
.yb9{bottom:631.413333pt;}
.y65{bottom:632.213333pt;}
.yc{bottom:633.093333pt;}
.ye5{bottom:641.013333pt;}
.ya1{bottom:646.533333pt;}
.yb8{bottom:647.013333pt;}
.ye4{bottom:656.613333pt;}
.yb{bottom:657.013333pt;}
.y3f{bottom:661.893333pt;}
.ya0{bottom:662.133333pt;}
.yb7{bottom:662.693333pt;}
.y64{bottom:675.093333pt;}
.y3e{bottom:677.493333pt;}
.yb6{bottom:678.293333pt;}
.ye3{bottom:680.293333pt;}
.y63{bottom:690.773333pt;}
.y3d{bottom:693.173333pt;}
.y9f{bottom:693.813333pt;}
.ye2{bottom:695.893333pt;}
.ya{bottom:699.893333pt;}
.yb5{bottom:701.973333pt;}
.y62{bottom:706.373333pt;}
.y3c{bottom:708.773333pt;}
.y9e{bottom:709.413333pt;}
.ye1{bottom:719.573333pt;}
.y61{bottom:721.973333pt;}
.y8c{bottom:722.693333pt;}
.y3b{bottom:724.373333pt;}
.y9d{bottom:725.013333pt;}
.y9{bottom:731.733333pt;}
.yb4{bottom:733.573333pt;}
.ye0{bottom:735.173333pt;}
.y60{bottom:737.653333pt;}
.y8b{bottom:738.293333pt;}
.y3a{bottom:740.053333pt;}
.y9c{bottom:740.693333pt;}
.y5f{bottom:753.253333pt;}
.y39{bottom:755.653333pt;}
.y9b{bottom:756.293333pt;}
.ydf{bottom:758.773333pt;}
.yb3{bottom:762.213333pt;}
.y8{bottom:763.733333pt;}
.y8a{bottom:766.933333pt;}
.y5e{bottom:768.853333pt;}
.yde{bottom:774.453333pt;}
.y38{bottom:779.333333pt;}
.y9a{bottom:779.973333pt;}
.y5d{bottom:784.533333pt;}
.ydd{bottom:790.053333pt;}
.y7{bottom:799.093333pt;}
.y5c{bottom:800.133333pt;}
.y37{bottom:811.253333pt;}
.y99{bottom:811.573333pt;}
.y7b{bottom:813.573333pt;}
.ydc{bottom:813.733333pt;}
.y6{bottom:815.093333pt;}
.y5b{bottom:823.813333pt;}
.ydb{bottom:829.333333pt;}
.y98{bottom:840.213333pt;}
.y7a{bottom:842.213333pt;}
.y5{bottom:843.813333pt;}
.yda{bottom:852.933333pt;}
.y36{bottom:854.133333pt;}
.y5a{bottom:855.413333pt;}
.yd9{bottom:868.613333pt;}
.y35{bottom:869.733333pt;}
.y59{bottom:871.013333pt;}
.y4{bottom:877.893333pt;}
.yd8{bottom:884.213333pt;}
.y34{bottom:885.413333pt;}
.y58{bottom:886.693333pt;}
.y3{bottom:899.840000pt;}
.y33{bottom:901.040000pt;}
.yd7{bottom:907.840000pt;}
.y32{bottom:916.720000pt;}
.y57{bottom:918.320000pt;}
.yd6{bottom:923.520000pt;}
.y31{bottom:932.320000pt;}
.yd5{bottom:947.120000pt;}
.y30{bottom:948.240000pt;}
.y56{bottom:949.920000pt;}
.yd4{bottom:962.800000pt;}
.y2f{bottom:965.120000pt;}
.yd3{bottom:978.400000pt;}
.y2e{bottom:980.800000pt;}
.y55{bottom:982.320000pt;}
.y2d{bottom:996.720000pt;}
.y54{bottom:998.000000pt;}
.yd2{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h11{height:23.600000pt;}
.h12{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h13{height:39.280000pt;}
.he{height:39.306667pt;}
.hf{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h10{height:54.880000pt;}
.hb{height:54.927899pt;}
.ha{height:55.631875pt;}
.hd{height:60.190452pt;}
.h9{height:60.961875pt;}
.h4{height:64.875937pt;}
.hc{height:65.770312pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:48.800000pt;}
.w10{width:53.440000pt;}
.wb{width:56.400000pt;}
.w3{width:59.280000pt;}
.wc{width:60.400000pt;}
.w11{width:71.280000pt;}
.w6{width:74.480000pt;}
.w4{width:74.506667pt;}
.w9{width:74.560000pt;}
.w8{width:74.586667pt;}
.w5{width:77.200000pt;}
.w7{width:77.280000pt;}
.wf{width:94.400000pt;}
.w13{width:94.480000pt;}
.wd{width:95.360000pt;}
.w12{width:95.440000pt;}
.we{width:97.466667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x23{left:10.240000pt;}
.x1f{left:26.160000pt;}
.x2b{left:30.426667pt;}
.x2a{left:31.600000pt;}
.x1{left:60.480000pt;}
.x17{left:81.679988pt;}
.x4{left:84.479988pt;}
.x2e{left:98.879988pt;}
.x9{left:121.040000pt;}
.x24{left:164.986667pt;}
.x1c{left:168.906667pt;}
.x2{left:180.266655pt;}
.xa{left:196.266667pt;}
.x25{left:214.426667pt;}
.x1d{left:218.346667pt;}
.x13{left:230.106655pt;}
.x11{left:235.866655pt;}
.x26{left:268.506667pt;}
.x2d{left:272.826655pt;}
.xb{left:274.106667pt;}
.x1e{left:275.466667pt;}
.x1a{left:315.146655pt;}
.x18{left:332.506655pt;}
.x20{left:336.506667pt;}
.x7{left:338.746655pt;}
.x27{left:340.426667pt;}
.xc{left:349.306667pt;}
.x5{left:352.666655pt;}
.x6{left:358.026655pt;}
.xd{left:427.226667pt;}
.x21{left:432.586667pt;}
.x28{left:436.506667pt;}
.xe{left:502.453333pt;}
.x22{left:530.693333pt;}
.x29{left:534.613333pt;}
.xf{left:580.373333pt;}
.x1b{left:583.013322pt;}
.x16{left:584.053322pt;}
.x2c{left:599.013322pt;}
.x19{left:604.053322pt;}
.x14{left:605.013322pt;}
.x12{left:614.053322pt;}
.x15{left:621.013322pt;}
.x10{left:655.573333pt;}
.x3{left:704.053322pt;}
}




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