
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_a67266ae3cd7d644c4ab7e5c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_fe21de58b8c941683c41c8b1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999512;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_3e33c2ae77e0843b764a03dc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_dc5838796f41c7947f031744.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_8f25e3727cc89b7d9f82247a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_e6008026037b872c3a97a34a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_dbaac5655b4ee715b863e835.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_00fb49032bfc2ecfcd3a35fb.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c0585a0078df44dd0a2e2c63.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.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);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.ls17{letter-spacing:-0.828000px;}
.ls7{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.567600px;}
.ls11{letter-spacing:-0.457800px;}
.ls1c{letter-spacing:-0.414600px;}
.ls15{letter-spacing:-0.315600px;}
.ls10{letter-spacing:-0.305400px;}
.ls8{letter-spacing:-0.274800px;}
.ls18{letter-spacing:-0.152400px;}
.ls16{letter-spacing:-0.109200px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.109200px;}
.ls4{letter-spacing:0.109440px;}
.ls3{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.262080px;}
.ls1a{letter-spacing:0.262200px;}
.ls9{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.lse{letter-spacing:2.880000px;}
.ls1b{letter-spacing:6.785280px;}
.ls12{letter-spacing:7.920000px;}
.ls13{letter-spacing:16.560000px;}
.lsd{letter-spacing:25.920000px;}
.lsb{letter-spacing:39.905280px;}
.lsc{letter-spacing:59.345280px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.wsa{word-spacing:-66.240000px;}
.ws0{word-spacing:-59.760000px;}
.wsc{word-spacing:-28.987200px;}
.ws8{word-spacing:-28.712400px;}
.ws2{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.865400px;}
.ws12{word-spacing:-16.822200px;}
.wsf{word-spacing:-16.712400px;}
.wsb{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.407600px;}
.wsd{word-spacing:-16.254600px;}
.ws13{word-spacing:-16.145400px;}
.wse{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.300000px;}
.ws7{word-spacing:-13.939200px;}
.ws6{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws10{word-spacing:-10.124400px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-2.039520px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._10{width:2.602560px;}
._a{width:3.908160px;}
._30{width:4.930080px;}
._7{width:5.952000px;}
._8{width:7.097280px;}
._6{width:8.412480px;}
._9{width:9.634560px;}
._14{width:11.578080px;}
._24{width:12.651840px;}
._25{width:13.675200px;}
._e{width:14.771520px;}
._18{width:18.149760px;}
._3{width:20.136960px;}
._4{width:21.395520px;}
._1c{width:22.852800px;}
._1d{width:24.378240px;}
._1e{width:25.502880px;}
._1b{width:27.224640px;}
._2e{width:28.838400px;}
._20{width:29.956320px;}
._21{width:31.943520px;}
._11{width:32.987520px;}
._16{width:34.577280px;}
._17{width:36.235200px;}
._b{width:37.293120px;}
._f{width:38.736480px;}
._31{width:39.864480px;}
._12{width:41.002560px;}
._13{width:42.594240px;}
._33{width:44.378880px;}
._35{width:45.380160px;}
._23{width:46.500480px;}
._22{width:47.626560px;}
._32{width:48.930240px;}
._1f{width:50.673600px;}
._19{width:51.799680px;}
._1a{width:52.911840px;}
._2c{width:54.132000px;}
._2d{width:55.206720px;}
._15{width:56.900160px;}
._2f{width:58.708800px;}
._29{width:60.441600px;}
._36{width:61.619040px;}
._c{width:62.795520px;}
._d{width:63.987840px;}
._28{width:65.846400px;}
._37{width:67.426080px;}
._2a{width:68.823360px;}
._2b{width:70.725600px;}
._38{width:71.865120px;}
._47{width:74.403360px;}
._46{width:75.778560px;}
._41{width:76.970880px;}
._39{width:80.017920px;}
._45{width:81.144000px;}
._3c{width:83.926080px;}
._42{width:86.945280px;}
._34{width:88.165440px;}
._3e{width:90.209760px;}
._40{width:92.736000px;}
._49{width:101.148480px;}
._3d{width:102.224640px;}
._3a{width:119.298240px;}
._3b{width:120.426240px;}
._3f{width:122.277600px;}
._26{width:124.017120px;}
._27{width:125.097600px;}
._48{width:134.268480px;}
._43{width:170.517600px;}
._44{width:171.878880px;}
._4a{width:199.195200px;}
._4b{width:200.295840px;}
._2{width:961.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.ya{bottom:20.880000px;}
.y37{bottom:30.600000px;}
.y36{bottom:46.980000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.y35{bottom:63.000000px;}
.y5{bottom:68.976000px;}
.y34{bottom:79.056000px;}
.y30{bottom:97.596000px;}
.yb9{bottom:98.676000px;}
.ye0{bottom:104.616000px;}
.y86{bottom:108.756000px;}
.ybb{bottom:109.476000px;}
.y5d{bottom:109.836000px;}
.yf1{bottom:119.556000px;}
.y9e{bottom:119.916000px;}
.yc7{bottom:120.276000px;}
.y2f{bottom:126.036000px;}
.yb8{bottom:127.116000px;}
.ydf{bottom:133.236000px;}
.y85{bottom:137.196000px;}
.y5c{bottom:138.456000px;}
.y9d{bottom:148.536000px;}
.yc6{bottom:148.716000px;}
.y2e{bottom:154.470000px;}
.yb7{bottom:155.550000px;}
.yde{bottom:161.670000px;}
.y64{bottom:165.630000px;}
.y5b{bottom:166.890000px;}
.y9c{bottom:176.970000px;}
.yc5{bottom:177.510000px;}
.y2d{bottom:182.910000px;}
.yb6{bottom:183.990000px;}
.ydd{bottom:190.110000px;}
.y63{bottom:194.070000px;}
.yf4{bottom:194.970000px;}
.y5a{bottom:195.330000px;}
.y9b{bottom:205.410000px;}
.yc4{bottom:205.950000px;}
.y2c{bottom:211.350000px;}
.yb5{bottom:212.430000px;}
.ydc{bottom:218.550000px;}
.y84{bottom:222.510000px;}
.y62{bottom:222.690000px;}
.y8c{bottom:223.410000px;}
.y59{bottom:223.770000px;}
.y9a{bottom:233.850000px;}
.yc3{bottom:234.390000px;}
.y2b{bottom:239.790000px;}
.yb4{bottom:240.870000px;}
.ydb{bottom:246.990000px;}
.y83{bottom:250.950000px;}
.y61{bottom:251.850000px;}
.y58{bottom:252.210000px;}
.y99{bottom:262.290000px;}
.yc2{bottom:262.830000px;}
.y2a{bottom:268.230000px;}
.yb3{bottom:269.310000px;}
.yda{bottom:275.430000px;}
.y82{bottom:279.570000px;}
.ybc{bottom:280.290000px;}
.y57{bottom:280.650000px;}
.y98{bottom:290.730000px;}
.yc1{bottom:291.270000px;}
.yf0{bottom:292.710000px;}
.y29{bottom:296.850000px;}
.yb2{bottom:297.750000px;}
.yd9{bottom:303.870000px;}
.y81{bottom:308.010000px;}
.y56{bottom:309.090000px;}
.y97{bottom:319.215000px;}
.yc0{bottom:319.755000px;}
.yef{bottom:321.195000px;}
.y28{bottom:325.335000px;}
.yb1{bottom:326.415000px;}
.yd8{bottom:332.355000px;}
.y80{bottom:336.495000px;}
.y89{bottom:337.215000px;}
.y55{bottom:337.575000px;}
.y96{bottom:347.655000px;}
.ybf{bottom:348.195000px;}
.yee{bottom:349.815000px;}
.y27{bottom:353.775000px;}
.yb0{bottom:354.855000px;}
.yd7{bottom:360.795000px;}
.y7f{bottom:364.935000px;}
.y88{bottom:365.655000px;}
.y54{bottom:366.015000px;}
.y95{bottom:376.095000px;}
.ybe{bottom:376.815000px;}
.yed{bottom:378.255000px;}
.y26{bottom:382.215000px;}
.yaf{bottom:383.295000px;}
.yd6{bottom:389.415000px;}
.y7e{bottom:393.375000px;}
.y87{bottom:394.275000px;}
.y53{bottom:394.635000px;}
.ybd{bottom:401.295000px;}
.y94{bottom:404.715000px;}
.yec{bottom:406.695000px;}
.y25{bottom:410.655000px;}
.yae{bottom:411.735000px;}
.yd5{bottom:413.895000px;}
.y7d{bottom:421.815000px;}
.y52{bottom:423.075000px;}
.y93{bottom:433.155000px;}
.yeb{bottom:435.135000px;}
.y24{bottom:439.095000px;}
.yad{bottom:440.175000px;}
.y7c{bottom:450.255000px;}
.y60{bottom:451.155000px;}
.y51{bottom:451.515000px;}
.y92{bottom:461.595000px;}
.yea{bottom:463.575000px;}
.y23{bottom:467.535000px;}
.yac{bottom:468.615000px;}
.y7b{bottom:478.695000px;}
.y5f{bottom:479.595000px;}
.y50{bottom:479.955000px;}
.yd4{bottom:488.415000px;}
.y91{bottom:490.035000px;}
.ye9{bottom:492.015000px;}
.y22{bottom:495.975000px;}
.yab{bottom:497.055000px;}
.y7a{bottom:507.135000px;}
.y4f{bottom:508.395000px;}
.yd3{bottom:516.855000px;}
.y90{bottom:518.475000px;}
.ye8{bottom:520.455000px;}
.y21{bottom:524.415000px;}
.yaa{bottom:525.495000px;}
.y79{bottom:535.755000px;}
.y4e{bottom:536.835000px;}
.y8f{bottom:543.135000px;}
.yd2{bottom:545.295000px;}
.ye7{bottom:548.895000px;}
.y20{bottom:552.675000px;}
.y31{bottom:553.035000px;}
.ya9{bottom:553.935000px;}
.y78{bottom:564.195000px;}
.y4d{bottom:565.275000px;}
.yd1{bottom:573.765000px;}
.ye6{bottom:577.365000px;}
.ya8{bottom:582.225000px;}
.y1f{bottom:585.105000px;}
.y77{bottom:592.665000px;}
.y4c{bottom:593.745000px;}
.yd0{bottom:602.205000px;}
.ye5{bottom:605.985000px;}
.ya7{bottom:611.025000px;}
.y1e{bottom:613.725000px;}
.y76{bottom:621.105000px;}
.y4b{bottom:622.185000px;}
.ycf{bottom:630.645000px;}
.ye4{bottom:634.425000px;}
.ya6{bottom:639.465000px;}
.y1d{bottom:642.165000px;}
.y75{bottom:649.545000px;}
.y4a{bottom:650.805000px;}
.yce{bottom:659.085000px;}
.ye3{bottom:662.865000px;}
.ya5{bottom:667.905000px;}
.y1c{bottom:670.605000px;}
.y74{bottom:677.985000px;}
.y49{bottom:679.245000px;}
.ycd{bottom:687.525000px;}
.ye2{bottom:691.305000px;}
.ya4{bottom:696.345000px;}
.y1b{bottom:699.045000px;}
.y73{bottom:706.425000px;}
.yf3{bottom:707.325000px;}
.y48{bottom:707.685000px;}
.ye1{bottom:715.785000px;}
.ycc{bottom:715.965000px;}
.ya3{bottom:724.785000px;}
.y1a{bottom:727.485000px;}
.y72{bottom:734.865000px;}
.yf2{bottom:735.765000px;}
.y47{bottom:736.125000px;}
.ycb{bottom:744.585000px;}
.ya2{bottom:753.225000px;}
.y19{bottom:755.925000px;}
.y71{bottom:763.305000px;}
.y8a{bottom:764.205000px;}
.y46{bottom:764.565000px;}
.yca{bottom:773.025000px;}
.ya1{bottom:781.665000px;}
.y18{bottom:784.365000px;}
.y70{bottom:791.925000px;}
.y45{bottom:793.005000px;}
.yc9{bottom:797.505000px;}
.ya0{bottom:809.745000px;}
.y17{bottom:812.805000px;}
.y6f{bottom:820.410000px;}
.y44{bottom:821.490000px;}
.y9f{bottom:834.810000px;}
.y16{bottom:841.290000px;}
.y6e{bottom:848.850000px;}
.yba{bottom:849.570000px;}
.y43{bottom:849.930000px;}
.y15{bottom:869.910000px;}
.y6d{bottom:877.290000px;}
.y42{bottom:878.370000px;}
.y14{bottom:904.290000px;}
.y6c{bottom:905.730000px;}
.y41{bottom:906.990000px;}
.y13{bottom:932.730000px;}
.y6b{bottom:934.170000px;}
.y40{bottom:935.430000px;}
.y12{bottom:961.170000px;}
.y6a{bottom:962.610000px;}
.y3f{bottom:963.870000px;}
.y11{bottom:983.310000px;}
.y69{bottom:991.050000px;}
.y8e{bottom:991.950000px;}
.y3e{bottom:992.310000px;}
.y10{bottom:1011.750000px;}
.y68{bottom:1019.130000px;}
.y8d{bottom:1020.390000px;}
.y3d{bottom:1020.750000px;}
.y4{bottom:1032.810000px;}
.y67{bottom:1048.110000px;}
.y3c{bottom:1048.830000px;}
.y5e{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.y2{bottom:1072.620000px;}
.y66{bottom:1076.580000px;}
.yc8{bottom:1077.300000px;}
.y3b{bottom:1077.660000px;}
.y65{bottom:1105.020000px;}
.y8b{bottom:1105.740000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h6{height:33.480000px;}
.hb{height:41.250937px;}
.h1{height:48.045938px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h2{height:58.621992px;}
.h14{height:59.383125px;}
.h10{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.h13{height:65.884219px;}
.ha{height:66.757500px;}
.h11{height:68.084282px;}
.h12{height:68.956875px;}
.h8{height:72.562500px;}
.h5{height:72.562519px;}
.h15{height:111.043849px;}
.hf{height:111.043854px;}
.h4{height:167.250000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w3{width:361.335000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.xd{left:80.999986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x10{left:439.094986px;}
.xf{left:441.074986px;}
.x8{left:479.414986px;}
.xc{left:506.444986px;}
.x5{left:521.025000px;}
.xe{left:864.149986px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls17{letter-spacing:-0.736000pt;}
.ls7{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.504533pt;}
.ls11{letter-spacing:-0.406933pt;}
.ls1c{letter-spacing:-0.368533pt;}
.ls15{letter-spacing:-0.280533pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls8{letter-spacing:-0.244267pt;}
.ls18{letter-spacing:-0.135467pt;}
.ls16{letter-spacing:-0.097067pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.097067pt;}
.ls4{letter-spacing:0.097280pt;}
.ls3{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.232960pt;}
.ls1a{letter-spacing:0.233067pt;}
.ls9{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.lse{letter-spacing:2.560000pt;}
.ls1b{letter-spacing:6.031360pt;}
.ls12{letter-spacing:7.040000pt;}
.ls13{letter-spacing:14.720000pt;}
.lsd{letter-spacing:23.040000pt;}
.lsb{letter-spacing:35.471360pt;}
.lsc{letter-spacing:52.751360pt;}
.ls0{letter-spacing:184.370347pt;}
.wsa{word-spacing:-58.880000pt;}
.ws0{word-spacing:-53.120000pt;}
.wsc{word-spacing:-25.766400pt;}
.ws8{word-spacing:-25.522133pt;}
.ws2{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.991467pt;}
.ws12{word-spacing:-14.953067pt;}
.wsf{word-spacing:-14.855467pt;}
.wsb{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.584533pt;}
.wsd{word-spacing:-14.448533pt;}
.ws13{word-spacing:-14.351467pt;}
.wse{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws7{word-spacing:-12.390400pt;}
.ws6{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws10{word-spacing:-8.999467pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-1.812907pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._10{width:2.313387pt;}
._a{width:3.473920pt;}
._30{width:4.382293pt;}
._7{width:5.290667pt;}
._8{width:6.308693pt;}
._6{width:7.477760pt;}
._9{width:8.564053pt;}
._14{width:10.291627pt;}
._24{width:11.246080pt;}
._25{width:12.155733pt;}
._e{width:13.130240pt;}
._18{width:16.133120pt;}
._3{width:17.899520pt;}
._4{width:19.018240pt;}
._1c{width:20.313600pt;}
._1d{width:21.669547pt;}
._1e{width:22.669227pt;}
._1b{width:24.199680pt;}
._2e{width:25.634133pt;}
._20{width:26.627840pt;}
._21{width:28.394240pt;}
._11{width:29.322240pt;}
._16{width:30.735360pt;}
._17{width:32.209067pt;}
._b{width:33.149440pt;}
._f{width:34.432427pt;}
._31{width:35.435093pt;}
._12{width:36.446720pt;}
._13{width:37.861547pt;}
._33{width:39.447893pt;}
._35{width:40.337920pt;}
._23{width:41.333760pt;}
._22{width:42.334720pt;}
._32{width:43.493547pt;}
._1f{width:45.043200pt;}
._19{width:46.044160pt;}
._1a{width:47.032747pt;}
._2c{width:48.117333pt;}
._2d{width:49.072640pt;}
._15{width:50.577920pt;}
._2f{width:52.185600pt;}
._29{width:53.725867pt;}
._36{width:54.772480pt;}
._c{width:55.818240pt;}
._d{width:56.878080pt;}
._28{width:58.530133pt;}
._37{width:59.934293pt;}
._2a{width:61.176320pt;}
._2b{width:62.867200pt;}
._38{width:63.880107pt;}
._47{width:66.136320pt;}
._46{width:67.358720pt;}
._41{width:68.418560pt;}
._39{width:71.127040pt;}
._45{width:72.128000pt;}
._3c{width:74.600960pt;}
._42{width:77.284693pt;}
._34{width:78.369280pt;}
._3e{width:80.186453pt;}
._40{width:82.432000pt;}
._49{width:89.909760pt;}
._3d{width:90.866347pt;}
._3a{width:106.042880pt;}
._3b{width:107.045547pt;}
._3f{width:108.691200pt;}
._26{width:110.237440pt;}
._27{width:111.197867pt;}
._48{width:119.349760pt;}
._43{width:151.571200pt;}
._44{width:152.781227pt;}
._4a{width:177.062400pt;}
._4b{width:178.040747pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.ya{bottom:18.560000pt;}
.y37{bottom:27.200000pt;}
.y36{bottom:41.760000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.y35{bottom:56.000000pt;}
.y5{bottom:61.312000pt;}
.y34{bottom:70.272000pt;}
.y30{bottom:86.752000pt;}
.yb9{bottom:87.712000pt;}
.ye0{bottom:92.992000pt;}
.y86{bottom:96.672000pt;}
.ybb{bottom:97.312000pt;}
.y5d{bottom:97.632000pt;}
.yf1{bottom:106.272000pt;}
.y9e{bottom:106.592000pt;}
.yc7{bottom:106.912000pt;}
.y2f{bottom:112.032000pt;}
.yb8{bottom:112.992000pt;}
.ydf{bottom:118.432000pt;}
.y85{bottom:121.952000pt;}
.y5c{bottom:123.072000pt;}
.y9d{bottom:132.032000pt;}
.yc6{bottom:132.192000pt;}
.y2e{bottom:137.306667pt;}
.yb7{bottom:138.266667pt;}
.yde{bottom:143.706667pt;}
.y64{bottom:147.226667pt;}
.y5b{bottom:148.346667pt;}
.y9c{bottom:157.306667pt;}
.yc5{bottom:157.786667pt;}
.y2d{bottom:162.586667pt;}
.yb6{bottom:163.546667pt;}
.ydd{bottom:168.986667pt;}
.y63{bottom:172.506667pt;}
.yf4{bottom:173.306667pt;}
.y5a{bottom:173.626667pt;}
.y9b{bottom:182.586667pt;}
.yc4{bottom:183.066667pt;}
.y2c{bottom:187.866667pt;}
.yb5{bottom:188.826667pt;}
.ydc{bottom:194.266667pt;}
.y84{bottom:197.786667pt;}
.y62{bottom:197.946667pt;}
.y8c{bottom:198.586667pt;}
.y59{bottom:198.906667pt;}
.y9a{bottom:207.866667pt;}
.yc3{bottom:208.346667pt;}
.y2b{bottom:213.146667pt;}
.yb4{bottom:214.106667pt;}
.ydb{bottom:219.546667pt;}
.y83{bottom:223.066667pt;}
.y61{bottom:223.866667pt;}
.y58{bottom:224.186667pt;}
.y99{bottom:233.146667pt;}
.yc2{bottom:233.626667pt;}
.y2a{bottom:238.426667pt;}
.yb3{bottom:239.386667pt;}
.yda{bottom:244.826667pt;}
.y82{bottom:248.506667pt;}
.ybc{bottom:249.146667pt;}
.y57{bottom:249.466667pt;}
.y98{bottom:258.426667pt;}
.yc1{bottom:258.906667pt;}
.yf0{bottom:260.186667pt;}
.y29{bottom:263.866667pt;}
.yb2{bottom:264.666667pt;}
.yd9{bottom:270.106667pt;}
.y81{bottom:273.786667pt;}
.y56{bottom:274.746667pt;}
.y97{bottom:283.746667pt;}
.yc0{bottom:284.226667pt;}
.yef{bottom:285.506667pt;}
.y28{bottom:289.186667pt;}
.yb1{bottom:290.146667pt;}
.yd8{bottom:295.426667pt;}
.y80{bottom:299.106667pt;}
.y89{bottom:299.746667pt;}
.y55{bottom:300.066667pt;}
.y96{bottom:309.026667pt;}
.ybf{bottom:309.506667pt;}
.yee{bottom:310.946667pt;}
.y27{bottom:314.466667pt;}
.yb0{bottom:315.426667pt;}
.yd7{bottom:320.706667pt;}
.y7f{bottom:324.386667pt;}
.y88{bottom:325.026667pt;}
.y54{bottom:325.346667pt;}
.y95{bottom:334.306667pt;}
.ybe{bottom:334.946667pt;}
.yed{bottom:336.226667pt;}
.y26{bottom:339.746667pt;}
.yaf{bottom:340.706667pt;}
.yd6{bottom:346.146667pt;}
.y7e{bottom:349.666667pt;}
.y87{bottom:350.466667pt;}
.y53{bottom:350.786667pt;}
.ybd{bottom:356.706667pt;}
.y94{bottom:359.746667pt;}
.yec{bottom:361.506667pt;}
.y25{bottom:365.026667pt;}
.yae{bottom:365.986667pt;}
.yd5{bottom:367.906667pt;}
.y7d{bottom:374.946667pt;}
.y52{bottom:376.066667pt;}
.y93{bottom:385.026667pt;}
.yeb{bottom:386.786667pt;}
.y24{bottom:390.306667pt;}
.yad{bottom:391.266667pt;}
.y7c{bottom:400.226667pt;}
.y60{bottom:401.026667pt;}
.y51{bottom:401.346667pt;}
.y92{bottom:410.306667pt;}
.yea{bottom:412.066667pt;}
.y23{bottom:415.586667pt;}
.yac{bottom:416.546667pt;}
.y7b{bottom:425.506667pt;}
.y5f{bottom:426.306667pt;}
.y50{bottom:426.626667pt;}
.yd4{bottom:434.146667pt;}
.y91{bottom:435.586667pt;}
.ye9{bottom:437.346667pt;}
.y22{bottom:440.866667pt;}
.yab{bottom:441.826667pt;}
.y7a{bottom:450.786667pt;}
.y4f{bottom:451.906667pt;}
.yd3{bottom:459.426667pt;}
.y90{bottom:460.866667pt;}
.ye8{bottom:462.626667pt;}
.y21{bottom:466.146667pt;}
.yaa{bottom:467.106667pt;}
.y79{bottom:476.226667pt;}
.y4e{bottom:477.186667pt;}
.y8f{bottom:482.786667pt;}
.yd2{bottom:484.706667pt;}
.ye7{bottom:487.906667pt;}
.y20{bottom:491.266667pt;}
.y31{bottom:491.586667pt;}
.ya9{bottom:492.386667pt;}
.y78{bottom:501.506667pt;}
.y4d{bottom:502.466667pt;}
.yd1{bottom:510.013333pt;}
.ye6{bottom:513.213333pt;}
.ya8{bottom:517.533333pt;}
.y1f{bottom:520.093333pt;}
.y77{bottom:526.813333pt;}
.y4c{bottom:527.773333pt;}
.yd0{bottom:535.293333pt;}
.ye5{bottom:538.653333pt;}
.ya7{bottom:543.133333pt;}
.y1e{bottom:545.533333pt;}
.y76{bottom:552.093333pt;}
.y4b{bottom:553.053333pt;}
.ycf{bottom:560.573333pt;}
.ye4{bottom:563.933333pt;}
.ya6{bottom:568.413333pt;}
.y1d{bottom:570.813333pt;}
.y75{bottom:577.373333pt;}
.y4a{bottom:578.493333pt;}
.yce{bottom:585.853333pt;}
.ye3{bottom:589.213333pt;}
.ya5{bottom:593.693333pt;}
.y1c{bottom:596.093333pt;}
.y74{bottom:602.653333pt;}
.y49{bottom:603.773333pt;}
.ycd{bottom:611.133333pt;}
.ye2{bottom:614.493333pt;}
.ya4{bottom:618.973333pt;}
.y1b{bottom:621.373333pt;}
.y73{bottom:627.933333pt;}
.yf3{bottom:628.733333pt;}
.y48{bottom:629.053333pt;}
.ye1{bottom:636.253333pt;}
.ycc{bottom:636.413333pt;}
.ya3{bottom:644.253333pt;}
.y1a{bottom:646.653333pt;}
.y72{bottom:653.213333pt;}
.yf2{bottom:654.013333pt;}
.y47{bottom:654.333333pt;}
.ycb{bottom:661.853333pt;}
.ya2{bottom:669.533333pt;}
.y19{bottom:671.933333pt;}
.y71{bottom:678.493333pt;}
.y8a{bottom:679.293333pt;}
.y46{bottom:679.613333pt;}
.yca{bottom:687.133333pt;}
.ya1{bottom:694.813333pt;}
.y18{bottom:697.213333pt;}
.y70{bottom:703.933333pt;}
.y45{bottom:704.893333pt;}
.yc9{bottom:708.893333pt;}
.ya0{bottom:719.773333pt;}
.y17{bottom:722.493333pt;}
.y6f{bottom:729.253333pt;}
.y44{bottom:730.213333pt;}
.y9f{bottom:742.053333pt;}
.y16{bottom:747.813333pt;}
.y6e{bottom:754.533333pt;}
.yba{bottom:755.173333pt;}
.y43{bottom:755.493333pt;}
.y15{bottom:773.253333pt;}
.y6d{bottom:779.813333pt;}
.y42{bottom:780.773333pt;}
.y14{bottom:803.813333pt;}
.y6c{bottom:805.093333pt;}
.y41{bottom:806.213333pt;}
.y13{bottom:829.093333pt;}
.y6b{bottom:830.373333pt;}
.y40{bottom:831.493333pt;}
.y12{bottom:854.373333pt;}
.y6a{bottom:855.653333pt;}
.y3f{bottom:856.773333pt;}
.y11{bottom:874.053333pt;}
.y69{bottom:880.933333pt;}
.y8e{bottom:881.733333pt;}
.y3e{bottom:882.053333pt;}
.y10{bottom:899.333333pt;}
.y68{bottom:905.893333pt;}
.y8d{bottom:907.013333pt;}
.y3d{bottom:907.333333pt;}
.y4{bottom:918.053333pt;}
.y67{bottom:931.653333pt;}
.y3c{bottom:932.293333pt;}
.y5e{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.y2{bottom:953.440000pt;}
.y66{bottom:956.960000pt;}
.yc8{bottom:957.600000pt;}
.y3b{bottom:957.920000pt;}
.y65{bottom:982.240000pt;}
.y8b{bottom:982.880000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h6{height:29.760000pt;}
.hb{height:36.667500pt;}
.h1{height:42.707500pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h2{height:52.108438pt;}
.h14{height:52.785000pt;}
.h10{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.h13{height:58.563750pt;}
.ha{height:59.340000pt;}
.h11{height:60.519362pt;}
.h12{height:61.295000pt;}
.h8{height:64.500000pt;}
.h5{height:64.500017pt;}
.h15{height:98.705643pt;}
.hf{height:98.705648pt;}
.h4{height:148.666667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w3{width:321.186667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.xd{left:71.999988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x10{left:390.306655pt;}
.xf{left:392.066655pt;}
.x8{left:426.146655pt;}
.xc{left:450.173321pt;}
.x5{left:463.133333pt;}
.xe{left:768.133321pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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