
    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_161116bb03e54bcc1f718dad.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bfc8e4e9e058ca9d9d776d79.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049000;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_a67d2a1327a9ca1dde481317.woff')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_ec975071da8e7f0015e6db68.woff')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_930fa2d9edd276e43c8fc5a4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.920000;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_9f8a26185b2d7706893daf16.woff')format("woff");}.ff6{font-family:ff6;line-height:0.920000;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_c4dcf1a507dbca136f6d28ff.woff')format("woff");}.ff7{font-family:ff7;line-height:1.049000;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_ba9e97d56075c5deac9d56a4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112000;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_55201c9ec018cdd672532dc1.woff')format("woff");}.ff9{font-family:ff9;line-height:1.061000;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_398c5b919a79c3bd21d6947d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.061000;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_9000492f4fa020cc11b2b038.woff')format("woff");}.ffb{font-family:ffb;line-height:1.112000;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_a88bbe05889b2101b40ff16a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.009000;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_f71a14b10fad70bec8ed62ee.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cb01375f3d887ec4d237d3e8.woff')format("woff");}.ffe{font-family:ffe;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m3{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.072000px;}
.ls10{letter-spacing:-0.037440px;}
.lsd{letter-spacing:-0.013680px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.378720px;}
.lsc{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.936000px;}
.ls3{letter-spacing:1.656000px;}
.ls15{letter-spacing:3.096000px;}
.ls2{letter-spacing:11.776320px;}
.lsb{letter-spacing:13.176000px;}
.lsa{letter-spacing:15.336000px;}
.ls9{letter-spacing:16.056000px;}
.ls12{letter-spacing:16.776000px;}
.ls16{letter-spacing:21.096000px;}
.ls18{letter-spacing:23.256000px;}
.ls4{letter-spacing:26.136000px;}
.ls1b{letter-spacing:26.784000px;}
.ls1e{letter-spacing:28.224000px;}
.ls1c{letter-spacing:30.384000px;}
.ls1d{letter-spacing:31.824000px;}
.ls1a{letter-spacing:33.264000px;}
.ls1f{letter-spacing:38.376000px;}
.ls19{letter-spacing:48.384000px;}
.ls5{letter-spacing:55.656000px;}
.ls17{letter-spacing:70.776000px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(145,25,56),0 0.015em rgb(145,25,56),0.015em 0 rgb(145,25,56),0 -0.015em  rgb(145,25,56);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(145,25,56);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-19.872000px;}
.ws5{word-spacing:-19.051200px;}
.ws8{word-spacing:-18.864000px;}
.ws10{word-spacing:-18.792000px;}
.wse{word-spacing:-18.648000px;}
.ws4{word-spacing:-18.504000px;}
.wsb{word-spacing:-18.432000px;}
.ws11{word-spacing:-18.360000px;}
.ws9{word-spacing:-18.288000px;}
.wsf{word-spacing:-18.216000px;}
.ws3{word-spacing:-17.023680px;}
.wsd{word-spacing:-16.304544px;}
.wsc{word-spacing:-16.272000px;}
.wsa{word-spacing:-12.360240px;}
.ws2{word-spacing:-10.732320px;}
.ws0{word-spacing:-0.156240px;}
.ws7{word-spacing:-0.142560px;}
.ws6{word-spacing:0.000000px;}
._31{margin-left:-5.123520px;}
._12{margin-left:-3.810240px;}
._9{margin-left:-2.165760px;}
._1{margin-left:-1.157760px;}
._2{width:1.044000px;}
._3{width:2.121600px;}
._8{width:4.004160px;}
._d{width:5.259360px;}
._7{width:6.624000px;}
._6{width:8.078400px;}
._1d{width:9.134880px;}
._b{width:10.201440px;}
._a{width:11.724480px;}
._13{width:13.055040px;}
._1c{width:14.184000px;}
._10{width:15.624000px;}
._11{width:16.920000px;}
._1e{width:19.764000px;}
._1f{width:21.588000px;}
._37{width:22.901760px;}
._23{width:24.048000px;}
._15{width:25.680000px;}
._14{width:26.928000px;}
._2b{width:28.656000px;}
._28{width:30.456000px;}
._18{width:31.896000px;}
._19{width:33.132000px;}
._39{width:34.416000px;}
._27{width:35.424000px;}
._29{width:36.504000px;}
._1a{width:37.584000px;}
._1b{width:38.664000px;}
._26{width:39.960000px;}
._32{width:42.408000px;}
._33{width:43.608000px;}
._21{width:45.504000px;}
._22{width:46.800000px;}
._38{width:47.880000px;}
._2f{width:49.608000px;}
._30{width:51.120000px;}
._e{width:52.992000px;}
._f{width:54.077760px;}
._17{width:55.128000px;}
._16{width:56.160000px;}
._4{width:58.821120px;}
._5{width:60.158880px;}
._3a{width:63.653760px;}
._2e{width:65.880000px;}
._c{width:67.536000px;}
._20{width:68.688000px;}
._36{width:70.536000px;}
._24{width:73.008000px;}
._25{width:74.052000px;}
._2a{width:79.344000px;}
._2c{width:88.560000px;}
._2d{width:90.216000px;}
._34{width:106.416000px;}
._35{width:107.568000px;}
._3b{width:216.720000px;}
._3c{width:218.292000px;}
._0{width:1481.489760px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,32,96);}
.fc1{color:rgb(145,25,56);}
.fc5{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs9{font-size:50.848916px;}
.fsb{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fsc{font-size:72.144000px;}
.fs6{font-size:74.880000px;}
.fsa{font-size:77.760000px;}
.fs1{font-size:156.240000px;}
.yd{bottom:-5.940000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.320000px;}
.yc{bottom:5.400000px;}
.y45{bottom:6.660000px;}
.yb{bottom:16.740000px;}
.y6{bottom:19.650000px;}
.ya{bottom:24.156000px;}
.y7{bottom:26.820000px;}
.y44{bottom:30.450000px;}
.y46{bottom:39.450000px;}
.y9{bottom:47.520000px;}
.y43{bottom:54.210000px;}
.y4{bottom:58.320000px;}
.ybe{bottom:76.425000px;}
.y3{bottom:78.156000px;}
.ybd{bottom:96.225000px;}
.y2{bottom:98.676000px;}
.ybc{bottom:116.025000px;}
.y41{bottom:117.396000px;}
.y40{bottom:121.896000px;}
.yb2{bottom:124.056000px;}
.y5{bottom:131.220000px;}
.y6d{bottom:132.156000px;}
.y3f{bottom:133.416000px;}
.ybb{bottom:135.825000px;}
.yb1{bottom:146.016000px;}
.y9f{bottom:147.636000px;}
.y6c{bottom:149.256000px;}
.ya6{bottom:150.870000px;}
.y6b{bottom:153.750000px;}
.y3e{bottom:162.570000px;}
.y6a{bottom:165.270000px;}
.yb0{bottom:167.790000px;}
.y9e{bottom:169.590000px;}
.ya5{bottom:172.830000px;}
.y3d{bottom:184.530000px;}
.yaf{bottom:189.750000px;}
.y69{bottom:191.010000px;}
.y9d{bottom:191.550000px;}
.ya4{bottom:194.790000px;}
.y3c{bottom:206.490000px;}
.yae{bottom:211.710000px;}
.y67{bottom:212.970000px;}
.y9c{bottom:213.510000px;}
.ya3{bottom:216.750000px;}
.y68{bottom:218.910000px;}
.y3b{bottom:228.450000px;}
.yb7{bottom:231.630000px;}
.yad{bottom:233.670000px;}
.y66{bottom:234.930000px;}
.y9b{bottom:235.290000px;}
.ya2{bottom:238.710000px;}
.yba{bottom:241.560000px;}
.y3a{bottom:250.410000px;}
.yb6{bottom:251.430000px;}
.yac{bottom:255.630000px;}
.y65{bottom:256.890000px;}
.y9a{bottom:257.250000px;}
.ya1{bottom:260.670000px;}
.yb9{bottom:261.360000px;}
.yb5{bottom:271.260000px;}
.y39{bottom:272.190000px;}
.yab{bottom:277.590000px;}
.y64{bottom:278.850000px;}
.y99{bottom:279.210000px;}
.yb8{bottom:281.160000px;}
.ya0{bottom:282.630000px;}
.yb4{bottom:291.060000px;}
.y38{bottom:294.150000px;}
.yaa{bottom:299.550000px;}
.y63{bottom:300.810000px;}
.y98{bottom:301.170000px;}
.y7e{bottom:304.590000px;}
.y37{bottom:316.110000px;}
.ya9{bottom:321.510000px;}
.y62{bottom:322.770000px;}
.y97{bottom:323.130000px;}
.y7d{bottom:326.370000px;}
.y36{bottom:338.115000px;}
.y61{bottom:340.095000px;}
.ya8{bottom:343.515000px;}
.y96{bottom:345.135000px;}
.y7c{bottom:348.375000px;}
.y35{bottom:360.075000px;}
.ya7{bottom:360.975000px;}
.yb3{bottom:361.080000px;}
.y95{bottom:367.095000px;}
.y7b{bottom:370.335000px;}
.y34{bottom:382.035000px;}
.y94{bottom:389.055000px;}
.y7a{bottom:392.295000px;}
.y33{bottom:403.995000px;}
.y93{bottom:411.015000px;}
.y79{bottom:414.255000px;}
.y31{bottom:425.955000px;}
.y32{bottom:431.895000px;}
.y92{bottom:432.975000px;}
.y78{bottom:436.215000px;}
.y30{bottom:447.915000px;}
.y91{bottom:454.755000px;}
.y77{bottom:458.175000px;}
.y2f{bottom:469.875000px;}
.y90{bottom:476.715000px;}
.y76{bottom:480.135000px;}
.y2e{bottom:491.655000px;}
.y8f{bottom:498.675000px;}
.y75{bottom:502.095000px;}
.y2d{bottom:513.615000px;}
.y8e{bottom:520.635000px;}
.y74{bottom:524.055000px;}
.y2c{bottom:535.575000px;}
.y8d{bottom:542.595000px;}
.y73{bottom:545.835000px;}
.y2b{bottom:557.535000px;}
.y8c{bottom:564.555000px;}
.y72{bottom:567.795000px;}
.y2a{bottom:579.495000px;}
.y8b{bottom:586.515000px;}
.y71{bottom:589.755000px;}
.y29{bottom:601.455000px;}
.y8a{bottom:608.505000px;}
.y70{bottom:611.745000px;}
.y28{bottom:623.445000px;}
.y89{bottom:630.465000px;}
.y6f{bottom:633.705000px;}
.y27{bottom:645.405000px;}
.y88{bottom:652.425000px;}
.y60{bottom:655.665000px;}
.y26{bottom:667.365000px;}
.y87{bottom:674.205000px;}
.y5f{bottom:677.625000px;}
.y25{bottom:688.965000px;}
.y86{bottom:696.165000px;}
.y5e{bottom:699.585000px;}
.y24{bottom:710.385000px;}
.y85{bottom:718.125000px;}
.y5d{bottom:721.545000px;}
.y23{bottom:721.905000px;}
.y84{bottom:740.085000px;}
.y22{bottom:742.065000px;}
.y5c{bottom:743.505000px;}
.y21{bottom:759.165000px;}
.y83{bottom:762.045000px;}
.y5b{bottom:765.285000px;}
.y20{bottom:767.625000px;}
.y82{bottom:784.005000px;}
.y5a{bottom:787.245000px;}
.y1f{bottom:787.785000px;}
.y81{bottom:805.965000px;}
.y1e{bottom:807.765000px;}
.y59{bottom:809.205000px;}
.y1d{bottom:827.925000px;}
.y58{bottom:831.165000px;}
.y1c{bottom:848.085000px;}
.y80{bottom:849.885000px;}
.y57{bottom:853.125000px;}
.y7f{bottom:867.345000px;}
.y1b{bottom:868.245000px;}
.y55{bottom:875.130000px;}
.y56{bottom:881.070000px;}
.y1a{bottom:888.270000px;}
.y54{bottom:897.090000px;}
.y19{bottom:905.550000px;}
.y18{bottom:914.370000px;}
.y53{bottom:919.050000px;}
.y17{bottom:933.450000px;}
.y52{bottom:941.010000px;}
.y16{bottom:946.410000px;}
.y15{bottom:958.290000px;}
.y50{bottom:962.970000px;}
.y51{bottom:968.910000px;}
.y14{bottom:980.250000px;}
.y4f{bottom:984.750000px;}
.y13{bottom:1002.210000px;}
.y4e{bottom:1006.710000px;}
.y4d{bottom:1028.670000px;}
.y12{bottom:1045.230000px;}
.y4c{bottom:1050.630000px;}
.y11{bottom:1068.090000px;}
.y4b{bottom:1072.590000px;}
.y4a{bottom:1094.550000px;}
.y42{bottom:1114.710000px;}
.y49{bottom:1116.510000px;}
.y10{bottom:1121.910000px;}
.y48{bottom:1138.500000px;}
.yf{bottom:1142.100000px;}
.y6e{bottom:1144.440000px;}
.y47{bottom:1160.460000px;}
.ye{bottom:1162.260000px;}
.y1{bottom:1193.220000px;}
.ha{height:15.336000px;}
.h10{height:16.398000px;}
.h6{height:17.280000px;}
.h13{height:26.097120px;}
.hf{height:27.548640px;}
.hc{height:30.672000px;}
.hb{height:35.579520px;}
.h8{height:35.676000px;}
.h15{height:36.038880px;}
.h9{height:36.228240px;}
.h7{height:39.315600px;}
.h16{height:41.631120px;}
.h17{height:43.882615px;}
.hd{height:56.234880px;}
.h3{height:56.436480px;}
.h11{height:57.165120px;}
.h12{height:60.344640px;}
.h1a{height:61.423863px;}
.h14{height:62.136000px;}
.h19{height:63.374400px;}
.he{height:65.592000px;}
.h2{height:65.884219px;}
.h1c{height:71.613281px;}
.h1d{height:71.756508px;}
.h18{height:73.116000px;}
.h1e{height:74.004654px;}
.h5{height:121.070742px;}
.h4{height:210.420000px;}
.h1b{height:378.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:43.380000px;}
.w4{width:317.415000px;}
.w7{width:438.195000px;}
.w5{width:445.965000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:5.910000px;}
.x15{left:17.640000px;}
.x16{left:28.080000px;}
.x9{left:46.110000px;}
.x1{left:80.999987px;}
.x11{left:83.699987px;}
.x21{left:85.319987px;}
.x36{left:91.835987px;}
.x5{left:105.165000px;}
.x37{left:118.835987px;}
.xc{left:127.475987px;}
.xb{left:131.795987px;}
.xd{left:134.135987px;}
.x17{left:146.880000px;}
.xa{left:163.289987px;}
.x32{left:170.309987px;}
.x28{left:173.549987px;}
.x29{left:175.889987px;}
.x22{left:177.869987px;}
.x12{left:183.629987px;}
.x31{left:190.649987px;}
.x2a{left:201.629987px;}
.x1c{left:203.429987px;}
.x2b{left:218.909987px;}
.x14{left:285.735000px;}
.x10{left:297.074987px;}
.x7{left:374.475000px;}
.x13{left:384.014987px;}
.x18{left:395.894973px;}
.x19{left:401.834987px;}
.x33{left:409.529987px;}
.x2c{left:410.609987px;}
.x2d{left:417.989987px;}
.x6{left:422.175000px;}
.x34{left:426.809987px;}
.x8{left:435.165000px;}
.x35{left:450.434987px;}
.x1a{left:452.594973px;}
.x1b{left:458.354987px;}
.x24{left:462.134973px;}
.x25{left:467.924987px;}
.x1f{left:478.364987px;}
.x1d{left:481.784987px;}
.x23{left:532.184987px;}
.x4{left:554.145000px;}
.xe{left:573.404973px;}
.xf{left:577.184987px;}
.x30{left:640.514987px;}
.x2e{left:650.774987px;}
.x2f{left:655.094987px;}
.x1e{left:676.409987px;}
.x26{left:701.249987px;}
.x27{left:808.169987px;}
.x20{left:822.569973px;}
.x2{left:829.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.064000pt;}
.ls10{letter-spacing:-0.033280pt;}
.lsd{letter-spacing:-0.012160pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.336640pt;}
.lsc{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.832000pt;}
.ls3{letter-spacing:1.472000pt;}
.ls15{letter-spacing:2.752000pt;}
.ls2{letter-spacing:10.467840pt;}
.lsb{letter-spacing:11.712000pt;}
.lsa{letter-spacing:13.632000pt;}
.ls9{letter-spacing:14.272000pt;}
.ls12{letter-spacing:14.912000pt;}
.ls16{letter-spacing:18.752000pt;}
.ls18{letter-spacing:20.672000pt;}
.ls4{letter-spacing:23.232000pt;}
.ls1b{letter-spacing:23.808000pt;}
.ls1e{letter-spacing:25.088000pt;}
.ls1c{letter-spacing:27.008000pt;}
.ls1d{letter-spacing:28.288000pt;}
.ls1a{letter-spacing:29.568000pt;}
.ls1f{letter-spacing:34.112000pt;}
.ls19{letter-spacing:43.008000pt;}
.ls5{letter-spacing:49.472000pt;}
.ls17{letter-spacing:62.912000pt;}
.ws1{word-spacing:-17.664000pt;}
.ws5{word-spacing:-16.934400pt;}
.ws8{word-spacing:-16.768000pt;}
.ws10{word-spacing:-16.704000pt;}
.wse{word-spacing:-16.576000pt;}
.ws4{word-spacing:-16.448000pt;}
.wsb{word-spacing:-16.384000pt;}
.ws11{word-spacing:-16.320000pt;}
.ws9{word-spacing:-16.256000pt;}
.wsf{word-spacing:-16.192000pt;}
.ws3{word-spacing:-15.132160pt;}
.wsd{word-spacing:-14.492928pt;}
.wsc{word-spacing:-14.464000pt;}
.wsa{word-spacing:-10.986880pt;}
.ws2{word-spacing:-9.539840pt;}
.ws0{word-spacing:-0.138880pt;}
.ws7{word-spacing:-0.126720pt;}
.ws6{word-spacing:0.000000pt;}
._31{margin-left:-4.554240pt;}
._12{margin-left:-3.386880pt;}
._9{margin-left:-1.925120pt;}
._1{margin-left:-1.029120pt;}
._2{width:0.928000pt;}
._3{width:1.885867pt;}
._8{width:3.559253pt;}
._d{width:4.674987pt;}
._7{width:5.888000pt;}
._6{width:7.180800pt;}
._1d{width:8.119893pt;}
._b{width:9.067947pt;}
._a{width:10.421760pt;}
._13{width:11.604480pt;}
._1c{width:12.608000pt;}
._10{width:13.888000pt;}
._11{width:15.040000pt;}
._1e{width:17.568000pt;}
._1f{width:19.189333pt;}
._37{width:20.357120pt;}
._23{width:21.376000pt;}
._15{width:22.826667pt;}
._14{width:23.936000pt;}
._2b{width:25.472000pt;}
._28{width:27.072000pt;}
._18{width:28.352000pt;}
._19{width:29.450667pt;}
._39{width:30.592000pt;}
._27{width:31.488000pt;}
._29{width:32.448000pt;}
._1a{width:33.408000pt;}
._1b{width:34.368000pt;}
._26{width:35.520000pt;}
._32{width:37.696000pt;}
._33{width:38.762667pt;}
._21{width:40.448000pt;}
._22{width:41.600000pt;}
._38{width:42.560000pt;}
._2f{width:44.096000pt;}
._30{width:45.440000pt;}
._e{width:47.104000pt;}
._f{width:48.069120pt;}
._17{width:49.002667pt;}
._16{width:49.920000pt;}
._4{width:52.285440pt;}
._5{width:53.474560pt;}
._3a{width:56.581120pt;}
._2e{width:58.560000pt;}
._c{width:60.032000pt;}
._20{width:61.056000pt;}
._36{width:62.698667pt;}
._24{width:64.896000pt;}
._25{width:65.824000pt;}
._2a{width:70.528000pt;}
._2c{width:78.720000pt;}
._2d{width:80.192000pt;}
._34{width:94.592000pt;}
._35{width:95.616000pt;}
._3b{width:192.640000pt;}
._3c{width:194.037333pt;}
._0{width:1316.879787pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs9{font-size:45.199037pt;}
.fsb{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fsc{font-size:64.128000pt;}
.fs6{font-size:66.560000pt;}
.fsa{font-size:69.120000pt;}
.fs1{font-size:138.880000pt;}
.yd{bottom:-5.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:3.840000pt;}
.yc{bottom:4.800000pt;}
.y45{bottom:5.920000pt;}
.yb{bottom:14.880000pt;}
.y6{bottom:17.466667pt;}
.ya{bottom:21.472000pt;}
.y7{bottom:23.840000pt;}
.y44{bottom:27.066667pt;}
.y46{bottom:35.066667pt;}
.y9{bottom:42.240000pt;}
.y43{bottom:48.186667pt;}
.y4{bottom:51.840000pt;}
.ybe{bottom:67.933333pt;}
.y3{bottom:69.472000pt;}
.ybd{bottom:85.533333pt;}
.y2{bottom:87.712000pt;}
.ybc{bottom:103.133333pt;}
.y41{bottom:104.352000pt;}
.y40{bottom:108.352000pt;}
.yb2{bottom:110.272000pt;}
.y5{bottom:116.640000pt;}
.y6d{bottom:117.472000pt;}
.y3f{bottom:118.592000pt;}
.ybb{bottom:120.733333pt;}
.yb1{bottom:129.792000pt;}
.y9f{bottom:131.232000pt;}
.y6c{bottom:132.672000pt;}
.ya6{bottom:134.106667pt;}
.y6b{bottom:136.666667pt;}
.y3e{bottom:144.506667pt;}
.y6a{bottom:146.906667pt;}
.yb0{bottom:149.146667pt;}
.y9e{bottom:150.746667pt;}
.ya5{bottom:153.626667pt;}
.y3d{bottom:164.026667pt;}
.yaf{bottom:168.666667pt;}
.y69{bottom:169.786667pt;}
.y9d{bottom:170.266667pt;}
.ya4{bottom:173.146667pt;}
.y3c{bottom:183.546667pt;}
.yae{bottom:188.186667pt;}
.y67{bottom:189.306667pt;}
.y9c{bottom:189.786667pt;}
.ya3{bottom:192.666667pt;}
.y68{bottom:194.586667pt;}
.y3b{bottom:203.066667pt;}
.yb7{bottom:205.893333pt;}
.yad{bottom:207.706667pt;}
.y66{bottom:208.826667pt;}
.y9b{bottom:209.146667pt;}
.ya2{bottom:212.186667pt;}
.yba{bottom:214.720000pt;}
.y3a{bottom:222.586667pt;}
.yb6{bottom:223.493333pt;}
.yac{bottom:227.226667pt;}
.y65{bottom:228.346667pt;}
.y9a{bottom:228.666667pt;}
.ya1{bottom:231.706667pt;}
.yb9{bottom:232.320000pt;}
.yb5{bottom:241.120000pt;}
.y39{bottom:241.946667pt;}
.yab{bottom:246.746667pt;}
.y64{bottom:247.866667pt;}
.y99{bottom:248.186667pt;}
.yb8{bottom:249.920000pt;}
.ya0{bottom:251.226667pt;}
.yb4{bottom:258.720000pt;}
.y38{bottom:261.466667pt;}
.yaa{bottom:266.266667pt;}
.y63{bottom:267.386667pt;}
.y98{bottom:267.706667pt;}
.y7e{bottom:270.746667pt;}
.y37{bottom:280.986667pt;}
.ya9{bottom:285.786667pt;}
.y62{bottom:286.906667pt;}
.y97{bottom:287.226667pt;}
.y7d{bottom:290.106667pt;}
.y36{bottom:300.546667pt;}
.y61{bottom:302.306667pt;}
.ya8{bottom:305.346667pt;}
.y96{bottom:306.786667pt;}
.y7c{bottom:309.666667pt;}
.y35{bottom:320.066667pt;}
.ya7{bottom:320.866667pt;}
.yb3{bottom:320.960000pt;}
.y95{bottom:326.306667pt;}
.y7b{bottom:329.186667pt;}
.y34{bottom:339.586667pt;}
.y94{bottom:345.826667pt;}
.y7a{bottom:348.706667pt;}
.y33{bottom:359.106667pt;}
.y93{bottom:365.346667pt;}
.y79{bottom:368.226667pt;}
.y31{bottom:378.626667pt;}
.y32{bottom:383.906667pt;}
.y92{bottom:384.866667pt;}
.y78{bottom:387.746667pt;}
.y30{bottom:398.146667pt;}
.y91{bottom:404.226667pt;}
.y77{bottom:407.266667pt;}
.y2f{bottom:417.666667pt;}
.y90{bottom:423.746667pt;}
.y76{bottom:426.786667pt;}
.y2e{bottom:437.026667pt;}
.y8f{bottom:443.266667pt;}
.y75{bottom:446.306667pt;}
.y2d{bottom:456.546667pt;}
.y8e{bottom:462.786667pt;}
.y74{bottom:465.826667pt;}
.y2c{bottom:476.066667pt;}
.y8d{bottom:482.306667pt;}
.y73{bottom:485.186667pt;}
.y2b{bottom:495.586667pt;}
.y8c{bottom:501.826667pt;}
.y72{bottom:504.706667pt;}
.y2a{bottom:515.106667pt;}
.y8b{bottom:521.346667pt;}
.y71{bottom:524.226667pt;}
.y29{bottom:534.626667pt;}
.y8a{bottom:540.893333pt;}
.y70{bottom:543.773333pt;}
.y28{bottom:554.173333pt;}
.y89{bottom:560.413333pt;}
.y6f{bottom:563.293333pt;}
.y27{bottom:573.693333pt;}
.y88{bottom:579.933333pt;}
.y60{bottom:582.813333pt;}
.y26{bottom:593.213333pt;}
.y87{bottom:599.293333pt;}
.y5f{bottom:602.333333pt;}
.y25{bottom:612.413333pt;}
.y86{bottom:618.813333pt;}
.y5e{bottom:621.853333pt;}
.y24{bottom:631.453333pt;}
.y85{bottom:638.333333pt;}
.y5d{bottom:641.373333pt;}
.y23{bottom:641.693333pt;}
.y84{bottom:657.853333pt;}
.y22{bottom:659.613333pt;}
.y5c{bottom:660.893333pt;}
.y21{bottom:674.813333pt;}
.y83{bottom:677.373333pt;}
.y5b{bottom:680.253333pt;}
.y20{bottom:682.333333pt;}
.y82{bottom:696.893333pt;}
.y5a{bottom:699.773333pt;}
.y1f{bottom:700.253333pt;}
.y81{bottom:716.413333pt;}
.y1e{bottom:718.013333pt;}
.y59{bottom:719.293333pt;}
.y1d{bottom:735.933333pt;}
.y58{bottom:738.813333pt;}
.y1c{bottom:753.853333pt;}
.y80{bottom:755.453333pt;}
.y57{bottom:758.333333pt;}
.y7f{bottom:770.973333pt;}
.y1b{bottom:771.773333pt;}
.y55{bottom:777.893333pt;}
.y56{bottom:783.173333pt;}
.y1a{bottom:789.573333pt;}
.y54{bottom:797.413333pt;}
.y19{bottom:804.933333pt;}
.y18{bottom:812.773333pt;}
.y53{bottom:816.933333pt;}
.y17{bottom:829.733333pt;}
.y52{bottom:836.453333pt;}
.y16{bottom:841.253333pt;}
.y15{bottom:851.813333pt;}
.y50{bottom:855.973333pt;}
.y51{bottom:861.253333pt;}
.y14{bottom:871.333333pt;}
.y4f{bottom:875.333333pt;}
.y13{bottom:890.853333pt;}
.y4e{bottom:894.853333pt;}
.y4d{bottom:914.373333pt;}
.y12{bottom:929.093333pt;}
.y4c{bottom:933.893333pt;}
.y11{bottom:949.413333pt;}
.y4b{bottom:953.413333pt;}
.y4a{bottom:972.933333pt;}
.y42{bottom:990.853333pt;}
.y49{bottom:992.453333pt;}
.y10{bottom:997.253333pt;}
.y48{bottom:1012.000000pt;}
.yf{bottom:1015.200000pt;}
.y6e{bottom:1017.280000pt;}
.y47{bottom:1031.520000pt;}
.ye{bottom:1033.120000pt;}
.y1{bottom:1060.640000pt;}
.ha{height:13.632000pt;}
.h10{height:14.576000pt;}
.h6{height:15.360000pt;}
.h13{height:23.197440pt;}
.hf{height:24.487680pt;}
.hc{height:27.264000pt;}
.hb{height:31.626240pt;}
.h8{height:31.712000pt;}
.h15{height:32.034560pt;}
.h9{height:32.202880pt;}
.h7{height:34.947200pt;}
.h16{height:37.005440pt;}
.h17{height:39.006769pt;}
.hd{height:49.986560pt;}
.h3{height:50.165760pt;}
.h11{height:50.813440pt;}
.h12{height:53.639680pt;}
.h1a{height:54.598989pt;}
.h14{height:55.232000pt;}
.h19{height:56.332800pt;}
.he{height:58.304000pt;}
.h2{height:58.563750pt;}
.h1c{height:63.656250pt;}
.h1d{height:63.783562pt;}
.h18{height:64.992000pt;}
.h1e{height:65.781915pt;}
.h5{height:107.618438pt;}
.h4{height:187.040000pt;}
.h1b{height:336.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:38.560000pt;}
.w4{width:282.146667pt;}
.w7{width:389.506667pt;}
.w5{width:396.413333pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:5.253333pt;}
.x15{left:15.680000pt;}
.x16{left:24.960000pt;}
.x9{left:40.986667pt;}
.x1{left:71.999988pt;}
.x11{left:74.399988pt;}
.x21{left:75.839988pt;}
.x36{left:81.631988pt;}
.x5{left:93.480000pt;}
.x37{left:105.631988pt;}
.xc{left:113.311988pt;}
.xb{left:117.151988pt;}
.xd{left:119.231988pt;}
.x17{left:130.560000pt;}
.xa{left:145.146655pt;}
.x32{left:151.386655pt;}
.x28{left:154.266655pt;}
.x29{left:156.346655pt;}
.x22{left:158.106655pt;}
.x12{left:163.226655pt;}
.x31{left:169.466655pt;}
.x2a{left:179.226655pt;}
.x1c{left:180.826655pt;}
.x2b{left:194.586655pt;}
.x14{left:253.986667pt;}
.x10{left:264.066655pt;}
.x7{left:332.866667pt;}
.x13{left:341.346655pt;}
.x18{left:351.906643pt;}
.x19{left:357.186655pt;}
.x33{left:364.026655pt;}
.x2c{left:364.986655pt;}
.x2d{left:371.546655pt;}
.x6{left:375.266667pt;}
.x34{left:379.386655pt;}
.x8{left:386.813333pt;}
.x35{left:400.386655pt;}
.x1a{left:402.306643pt;}
.x1b{left:407.426655pt;}
.x24{left:410.786643pt;}
.x25{left:415.933322pt;}
.x1f{left:425.213322pt;}
.x1d{left:428.253322pt;}
.x23{left:473.053322pt;}
.x4{left:492.573333pt;}
.xe{left:509.693310pt;}
.xf{left:513.053322pt;}
.x30{left:569.346655pt;}
.x2e{left:578.466655pt;}
.x2f{left:582.306655pt;}
.x1e{left:601.253322pt;}
.x26{left:623.333322pt;}
.x27{left:718.373322pt;}
.x20{left:731.173310pt;}
.x2{left:737.120000pt;}
}




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