
    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_1617dccb1ca3ba53e0756a60.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_591aa75f653977d4ceaf3e59.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_c291c16917ff8afa1c598cdd.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_c24884a83d51f35e9c4e9a5f.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_48ee4b105872c33a03ae747d.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_e39bdcf803bc260fb8da024b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b8e1dfd8752a75599efbf902.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls10{letter-spacing:-1.134000px;}
.lsa{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.414600px;}
.ls7{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.274800px;}
.ls8{letter-spacing:-0.262200px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.080640px;}
.ls4{letter-spacing:0.109440px;}
.ls3{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.262080px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.567600px;}
.ls11{letter-spacing:6.785280px;}
.lse{letter-spacing:18.720000px;}
.lsf{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;}
}
.wsc{word-spacing:-66.240000px;}
.wsa{word-spacing:-28.712400px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.127600px;}
.ws6{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.297800px;}
.ws3{word-spacing:-16.254600px;}
.wsb{word-spacing:-16.145400px;}
.wsd{word-spacing:-15.426000px;}
.ws0{word-spacing:-15.300000px;}
.ws9{word-spacing:-13.939200px;}
.ws8{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._1b{margin-left:-2.105280px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._1c{width:2.608320px;}
._11{width:3.637440px;}
._5{width:4.952640px;}
._3{width:6.226560px;}
._4{width:7.352640px;}
._7{width:9.141120px;}
._8{width:10.188000px;}
._6{width:11.272320px;}
._9{width:12.316800px;}
._a{width:13.881600px;}
._23{width:15.256320px;}
._18{width:17.818560px;}
._b{width:19.342080px;}
._c{width:20.496960px;}
._24{width:22.486080px;}
._22{width:24.422400px;}
._10{width:25.678080px;}
._f{width:26.760960px;}
._17{width:28.166400px;}
._16{width:29.675520px;}
._3c{width:30.749760px;}
._1f{width:31.796160px;}
._e{width:33.186240px;}
._d{width:35.173440px;}
._2b{width:37.160640px;}
._28{width:38.352960px;}
._27{width:39.545280px;}
._2e{width:40.870080px;}
._12{width:42.393600px;}
._2a{width:43.718400px;}
._1d{width:45.506880px;}
._1e{width:46.831680px;}
._2f{width:48.384000px;}
._26{width:50.003520px;}
._25{width:51.122880px;}
._13{width:53.271360px;}
._14{width:54.648000px;}
._3d{width:55.809600px;}
._3b{width:56.834880px;}
._2d{width:58.745280px;}
._29{width:59.911680px;}
._30{width:61.073280px;}
._40{width:62.082240px;}
._32{width:65.210880px;}
._3e{width:66.672960px;}
._1a{width:67.726080px;}
._19{width:68.757120px;}
._20{width:70.089600px;}
._3f{width:71.671680px;}
._3a{width:76.257600px;}
._36{width:81.888000px;}
._37{width:83.753760px;}
._35{width:87.105600px;}
._15{width:91.160640px;}
._39{width:95.451840px;}
._38{width:97.225920px;}
._33{width:112.506240px;}
._34{width:113.999520px;}
._31{width:121.469760px;}
._21{width:183.271680px;}
._2c{width:259.821120px;}
._2{width:961.680000px;}
.fc8{color:rgb(112,173,71);}
.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;}
.y39{bottom:30.600000px;}
.y38{bottom:46.980000px;}
.y3a{bottom:48.420000px;}
.y3b{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.y37{bottom:63.000000px;}
.y5{bottom:68.976000px;}
.y36{bottom:79.056000px;}
.y33{bottom:97.236000px;}
.y30{bottom:97.596000px;}
.yc6{bottom:102.456000px;}
.y109{bottom:105.156000px;}
.y95{bottom:106.236000px;}
.ya8{bottom:109.476000px;}
.y5f{bottom:109.836000px;}
.y66{bottom:115.956000px;}
.ycb{bottom:118.116000px;}
.y70{bottom:123.696000px;}
.y32{bottom:125.676000px;}
.y2f{bottom:126.036000px;}
.yc5{bottom:130.896000px;}
.y108{bottom:133.596000px;}
.y94{bottom:134.676000px;}
.ya7{bottom:137.916000px;}
.y5e{bottom:138.456000px;}
.ye9{bottom:141.156000px;}
.y65{bottom:143.136000px;}
.yca{bottom:145.116000px;}
.y6f{bottom:148.176000px;}
.yae{bottom:149.436000px;}
.y2e{bottom:154.470000px;}
.y7a{bottom:156.990000px;}
.yc4{bottom:159.330000px;}
.y107{bottom:162.030000px;}
.y93{bottom:163.110000px;}
.ya6{bottom:166.350000px;}
.y5d{bottom:166.890000px;}
.ye8{bottom:169.590000px;}
.yad{bottom:176.430000px;}
.y79{bottom:181.650000px;}
.y2d{bottom:182.910000px;}
.yc3{bottom:187.770000px;}
.y106{bottom:190.470000px;}
.y92{bottom:191.550000px;}
.y97{bottom:192.270000px;}
.ya5{bottom:194.430000px;}
.y5c{bottom:195.330000px;}
.ye7{bottom:198.030000px;}
.y2c{bottom:211.350000px;}
.yc2{bottom:216.210000px;}
.y96{bottom:216.750000px;}
.y105{bottom:219.090000px;}
.y91{bottom:220.170000px;}
.ya4{bottom:223.230000px;}
.y5b{bottom:223.770000px;}
.ye6{bottom:226.470000px;}
.y2b{bottom:239.790000px;}
.yc1{bottom:244.830000px;}
.y104{bottom:247.530000px;}
.y90{bottom:248.610000px;}
.ya3{bottom:251.670000px;}
.y5a{bottom:252.210000px;}
.ye5{bottom:254.910000px;}
.y2a{bottom:268.230000px;}
.yc0{bottom:273.270000px;}
.y103{bottom:275.970000px;}
.y8f{bottom:277.050000px;}
.ya2{bottom:280.290000px;}
.y59{bottom:280.650000px;}
.ye4{bottom:283.350000px;}
.y10b{bottom:286.590000px;}
.y29{bottom:296.850000px;}
.ybf{bottom:301.710000px;}
.y102{bottom:304.410000px;}
.y8e{bottom:305.490000px;}
.ya1{bottom:308.730000px;}
.y58{bottom:309.090000px;}
.ye3{bottom:311.790000px;}
.yc9{bottom:316.830000px;}
.yac{bottom:321.915000px;}
.y28{bottom:325.335000px;}
.ybe{bottom:330.195000px;}
.y6e{bottom:332.715000px;}
.y101{bottom:332.895000px;}
.y8d{bottom:333.975000px;}
.ya0{bottom:337.215000px;}
.y57{bottom:337.575000px;}
.y64{bottom:339.555000px;}
.ye2{bottom:340.275000px;}
.yc8{bottom:344.055000px;}
.yab{bottom:348.915000px;}
.y78{bottom:352.875000px;}
.y27{bottom:353.775000px;}
.y6d{bottom:357.195000px;}
.ybd{bottom:358.635000px;}
.y100{bottom:361.335000px;}
.y8c{bottom:362.415000px;}
.y9f{bottom:365.655000px;}
.y56{bottom:366.015000px;}
.y63{bottom:366.555000px;}
.ye1{bottom:368.895000px;}
.y77{bottom:377.535000px;}
.y26{bottom:382.215000px;}
.ybc{bottom:387.075000px;}
.yff{bottom:389.775000px;}
.y8b{bottom:390.855000px;}
.y9e{bottom:392.655000px;}
.y55{bottom:394.635000px;}
.ye0{bottom:397.335000px;}
.y25{bottom:410.655000px;}
.ybb{bottom:415.515000px;}
.yfe{bottom:418.215000px;}
.y8a{bottom:419.295000px;}
.y54{bottom:423.075000px;}
.ydf{bottom:425.775000px;}
.y24{bottom:439.095000px;}
.yba{bottom:443.955000px;}
.yfd{bottom:446.655000px;}
.y89{bottom:447.735000px;}
.y53{bottom:451.515000px;}
.yde{bottom:454.215000px;}
.y23{bottom:467.535000px;}
.yb9{bottom:472.035000px;}
.yfc{bottom:475.275000px;}
.y88{bottom:476.355000px;}
.y52{bottom:479.955000px;}
.ydd{bottom:482.655000px;}
.yaa{bottom:489.135000px;}
.y22{bottom:495.975000px;}
.yb8{bottom:501.015000px;}
.yfb{bottom:503.715000px;}
.y87{bottom:504.435000px;}
.y51{bottom:508.395000px;}
.ydc{bottom:511.095000px;}
.ya9{bottom:516.315000px;}
.y21{bottom:524.415000px;}
.y6c{bottom:526.575000px;}
.yb7{bottom:529.455000px;}
.yc7{bottom:531.435000px;}
.yfa{bottom:532.155000px;}
.y86{bottom:533.235000px;}
.y50{bottom:536.835000px;}
.ydb{bottom:539.535000px;}
.y76{bottom:546.915000px;}
.y6b{bottom:551.235000px;}
.y20{bottom:552.675000px;}
.y31{bottom:553.035000px;}
.y9d{bottom:557.715000px;}
.yb6{bottom:557.895000px;}
.yf9{bottom:560.595000px;}
.y85{bottom:561.675000px;}
.y4f{bottom:565.275000px;}
.yda{bottom:567.975000px;}
.y75{bottom:571.425000px;}
.y9c{bottom:584.745000px;}
.y1f{bottom:585.105000px;}
.yb5{bottom:586.365000px;}
.yf8{bottom:589.065000px;}
.y84{bottom:590.145000px;}
.y4e{bottom:593.385000px;}
.y62{bottom:593.745000px;}
.yd9{bottom:596.445000px;}
.y1e{bottom:613.725000px;}
.yb4{bottom:614.805000px;}
.yf7{bottom:617.505000px;}
.y83{bottom:618.585000px;}
.y4d{bottom:622.185000px;}
.yd8{bottom:625.065000px;}
.yb3{bottom:641.985000px;}
.y1d{bottom:642.165000px;}
.yf6{bottom:645.945000px;}
.y82{bottom:647.025000px;}
.y4c{bottom:650.805000px;}
.yd7{bottom:653.505000px;}
.y1c{bottom:670.605000px;}
.yf5{bottom:674.385000px;}
.y81{bottom:675.465000px;}
.y4b{bottom:679.245000px;}
.yd6{bottom:681.945000px;}
.y1b{bottom:699.045000px;}
.yf4{bottom:702.825000px;}
.y80{bottom:703.905000px;}
.y4a{bottom:707.685000px;}
.yd5{bottom:710.385000px;}
.y6a{bottom:718.305000px;}
.y74{bottom:726.585000px;}
.y1a{bottom:727.485000px;}
.yf3{bottom:731.445000px;}
.y7f{bottom:732.525000px;}
.y49{bottom:736.125000px;}
.yd4{bottom:738.825000px;}
.y69{bottom:745.305000px;}
.y73{bottom:751.245000px;}
.y19{bottom:755.925000px;}
.y9b{bottom:756.465000px;}
.yf2{bottom:759.885000px;}
.y7e{bottom:760.965000px;}
.y48{bottom:764.565000px;}
.yd3{bottom:766.905000px;}
.y9a{bottom:780.945000px;}
.y18{bottom:784.365000px;}
.y7d{bottom:785.625000px;}
.yf1{bottom:788.325000px;}
.yb2{bottom:788.865000px;}
.y47{bottom:793.005000px;}
.yd2{bottom:795.705000px;}
.y17{bottom:812.805000px;}
.yb1{bottom:815.865000px;}
.yf0{bottom:817.845000px;}
.y46{bottom:821.490000px;}
.yd1{bottom:824.190000px;}
.yef{bottom:846.510000px;}
.y16{bottom:847.230000px;}
.y45{bottom:849.930000px;}
.yd0{bottom:852.630000px;}
.y15{bottom:875.850000px;}
.yee{bottom:876.030000px;}
.y10a{bottom:878.010000px;}
.y44{bottom:878.370000px;}
.ycf{bottom:881.250000px;}
.y14{bottom:904.290000px;}
.yed{bottom:904.650000px;}
.y43{bottom:906.990000px;}
.yce{bottom:909.690000px;}
.y68{bottom:921.570000px;}
.y72{bottom:927.150000px;}
.y13{bottom:932.730000px;}
.yec{bottom:934.170000px;}
.y42{bottom:935.430000px;}
.ycd{bottom:938.130000px;}
.y7c{bottom:943.710000px;}
.y99{bottom:945.870000px;}
.y67{bottom:948.570000px;}
.y71{bottom:951.630000px;}
.y12{bottom:961.170000px;}
.yeb{bottom:962.610000px;}
.yb0{bottom:962.790000px;}
.y41{bottom:963.870000px;}
.ycc{bottom:965.130000px;}
.y7b{bottom:968.190000px;}
.y98{bottom:970.350000px;}
.y11{bottom:989.610000px;}
.yaf{bottom:989.790000px;}
.yea{bottom:991.230000px;}
.y40{bottom:992.310000px;}
.y10{bottom:1011.750000px;}
.y3f{bottom:1020.750000px;}
.y4{bottom:1032.810000px;}
.y61{bottom:1048.830000px;}
.y3e{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.y2{bottom:1072.620000px;}
.y3d{bottom:1077.660000px;}
.y3c{bottom:1105.740000px;}
.y60{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y35{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y34{bottom:1141.740000px;}
.h6{height:33.480000px;}
.h13{height:40.985156px;}
.hb{height:41.250938px;}
.h1{height:48.045938px;}
.hc{height:50.244654px;}
.he{height:52.971680px;}
.hd{height:53.709961px;}
.h7{height:54.421875px;}
.h2{height:58.621992px;}
.h12{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h14{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562519px;}
.h11{height:111.043849px;}
.h10{height:111.043854px;}
.h4{height:167.250000px;}
.hf{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;}
.x21{left:80.999986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.xc{left:195.689986px;}
.xd{left:200.189986px;}
.x13{left:209.189986px;}
.x12{left:216.569986px;}
.x11{left:218.189986px;}
.x1c{left:220.529986px;}
.x10{left:223.409986px;}
.x17{left:225.029986px;}
.x18{left:229.529986px;}
.x1e{left:243.029986px;}
.x1d{left:249.689986px;}
.x8{left:482.144986px;}
.x20{left:509.144986px;}
.x5{left:521.025000px;}
.x14{left:640.184986px;}
.x15{left:641.804986px;}
.x16{left:644.864986px;}
.xe{left:646.304986px;}
.xf{left:653.144986px;}
.x1b{left:657.644986px;}
.x1a{left:662.144986px;}
.x19{left:666.644986px;}
.x1f{left:680.909986px;}
.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;}
.ls10{letter-spacing:-1.008000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.368533pt;}
.ls7{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.244267pt;}
.ls8{letter-spacing:-0.233067pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.071680pt;}
.ls4{letter-spacing:0.097280pt;}
.ls3{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.232960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.504533pt;}
.ls11{letter-spacing:6.031360pt;}
.lse{letter-spacing:16.640000pt;}
.lsf{letter-spacing:35.471360pt;}
.lsc{letter-spacing:52.751360pt;}
.ls0{letter-spacing:184.370347pt;}
.wsc{word-spacing:-58.880000pt;}
.wsa{word-spacing:-25.522133pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.224533pt;}
.ws6{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.486933pt;}
.ws3{word-spacing:-14.448533pt;}
.wsb{word-spacing:-14.351467pt;}
.wsd{word-spacing:-13.712000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws9{word-spacing:-12.390400pt;}
.ws8{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._1b{margin-left:-1.871360pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._1c{width:2.318507pt;}
._11{width:3.233280pt;}
._5{width:4.402347pt;}
._3{width:5.534720pt;}
._4{width:6.535680pt;}
._7{width:8.125440pt;}
._8{width:9.056000pt;}
._6{width:10.019840pt;}
._9{width:10.948267pt;}
._a{width:12.339200pt;}
._23{width:13.561173pt;}
._18{width:15.838720pt;}
._b{width:17.192960pt;}
._c{width:18.219520pt;}
._24{width:19.987627pt;}
._22{width:21.708800pt;}
._10{width:22.824960pt;}
._f{width:23.787520pt;}
._17{width:25.036800pt;}
._16{width:26.378240pt;}
._3c{width:27.333120pt;}
._1f{width:28.263253pt;}
._e{width:29.498880pt;}
._d{width:31.265280pt;}
._2b{width:33.031680pt;}
._28{width:34.091520pt;}
._27{width:35.151360pt;}
._2e{width:36.328960pt;}
._12{width:37.683200pt;}
._2a{width:38.860800pt;}
._1d{width:40.450560pt;}
._1e{width:41.628160pt;}
._2f{width:43.008000pt;}
._26{width:44.447573pt;}
._25{width:45.442560pt;}
._13{width:47.352320pt;}
._14{width:48.576000pt;}
._3d{width:49.608533pt;}
._3b{width:50.519893pt;}
._2d{width:52.218027pt;}
._29{width:53.254827pt;}
._30{width:54.287360pt;}
._40{width:55.184213pt;}
._32{width:57.965227pt;}
._3e{width:59.264853pt;}
._1a{width:60.200960pt;}
._19{width:61.117440pt;}
._20{width:62.301867pt;}
._3f{width:63.708160pt;}
._3a{width:67.784533pt;}
._36{width:72.789333pt;}
._37{width:74.447787pt;}
._35{width:77.427200pt;}
._15{width:81.031680pt;}
._39{width:84.846080pt;}
._38{width:86.423040pt;}
._33{width:100.005547pt;}
._34{width:101.332907pt;}
._31{width:107.973120pt;}
._21{width:162.908160pt;}
._2c{width:230.952107pt;}
._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;}
.y39{bottom:27.200000pt;}
.y38{bottom:41.760000pt;}
.y3a{bottom:43.040000pt;}
.y3b{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.y37{bottom:56.000000pt;}
.y5{bottom:61.312000pt;}
.y36{bottom:70.272000pt;}
.y33{bottom:86.432000pt;}
.y30{bottom:86.752000pt;}
.yc6{bottom:91.072000pt;}
.y109{bottom:93.472000pt;}
.y95{bottom:94.432000pt;}
.ya8{bottom:97.312000pt;}
.y5f{bottom:97.632000pt;}
.y66{bottom:103.072000pt;}
.ycb{bottom:104.992000pt;}
.y70{bottom:109.952000pt;}
.y32{bottom:111.712000pt;}
.y2f{bottom:112.032000pt;}
.yc5{bottom:116.352000pt;}
.y108{bottom:118.752000pt;}
.y94{bottom:119.712000pt;}
.ya7{bottom:122.592000pt;}
.y5e{bottom:123.072000pt;}
.ye9{bottom:125.472000pt;}
.y65{bottom:127.232000pt;}
.yca{bottom:128.992000pt;}
.y6f{bottom:131.712000pt;}
.yae{bottom:132.832000pt;}
.y2e{bottom:137.306667pt;}
.y7a{bottom:139.546667pt;}
.yc4{bottom:141.626667pt;}
.y107{bottom:144.026667pt;}
.y93{bottom:144.986667pt;}
.ya6{bottom:147.866667pt;}
.y5d{bottom:148.346667pt;}
.ye8{bottom:150.746667pt;}
.yad{bottom:156.826667pt;}
.y79{bottom:161.466667pt;}
.y2d{bottom:162.586667pt;}
.yc3{bottom:166.906667pt;}
.y106{bottom:169.306667pt;}
.y92{bottom:170.266667pt;}
.y97{bottom:170.906667pt;}
.ya5{bottom:172.826667pt;}
.y5c{bottom:173.626667pt;}
.ye7{bottom:176.026667pt;}
.y2c{bottom:187.866667pt;}
.yc2{bottom:192.186667pt;}
.y96{bottom:192.666667pt;}
.y105{bottom:194.746667pt;}
.y91{bottom:195.706667pt;}
.ya4{bottom:198.426667pt;}
.y5b{bottom:198.906667pt;}
.ye6{bottom:201.306667pt;}
.y2b{bottom:213.146667pt;}
.yc1{bottom:217.626667pt;}
.y104{bottom:220.026667pt;}
.y90{bottom:220.986667pt;}
.ya3{bottom:223.706667pt;}
.y5a{bottom:224.186667pt;}
.ye5{bottom:226.586667pt;}
.y2a{bottom:238.426667pt;}
.yc0{bottom:242.906667pt;}
.y103{bottom:245.306667pt;}
.y8f{bottom:246.266667pt;}
.ya2{bottom:249.146667pt;}
.y59{bottom:249.466667pt;}
.ye4{bottom:251.866667pt;}
.y10b{bottom:254.746667pt;}
.y29{bottom:263.866667pt;}
.ybf{bottom:268.186667pt;}
.y102{bottom:270.586667pt;}
.y8e{bottom:271.546667pt;}
.ya1{bottom:274.426667pt;}
.y58{bottom:274.746667pt;}
.ye3{bottom:277.146667pt;}
.yc9{bottom:281.626667pt;}
.yac{bottom:286.146667pt;}
.y28{bottom:289.186667pt;}
.ybe{bottom:293.506667pt;}
.y6e{bottom:295.746667pt;}
.y101{bottom:295.906667pt;}
.y8d{bottom:296.866667pt;}
.ya0{bottom:299.746667pt;}
.y57{bottom:300.066667pt;}
.y64{bottom:301.826667pt;}
.ye2{bottom:302.466667pt;}
.yc8{bottom:305.826667pt;}
.yab{bottom:310.146667pt;}
.y78{bottom:313.666667pt;}
.y27{bottom:314.466667pt;}
.y6d{bottom:317.506667pt;}
.ybd{bottom:318.786667pt;}
.y100{bottom:321.186667pt;}
.y8c{bottom:322.146667pt;}
.y9f{bottom:325.026667pt;}
.y56{bottom:325.346667pt;}
.y63{bottom:325.826667pt;}
.ye1{bottom:327.906667pt;}
.y77{bottom:335.586667pt;}
.y26{bottom:339.746667pt;}
.ybc{bottom:344.066667pt;}
.yff{bottom:346.466667pt;}
.y8b{bottom:347.426667pt;}
.y9e{bottom:349.026667pt;}
.y55{bottom:350.786667pt;}
.ye0{bottom:353.186667pt;}
.y25{bottom:365.026667pt;}
.ybb{bottom:369.346667pt;}
.yfe{bottom:371.746667pt;}
.y8a{bottom:372.706667pt;}
.y54{bottom:376.066667pt;}
.ydf{bottom:378.466667pt;}
.y24{bottom:390.306667pt;}
.yba{bottom:394.626667pt;}
.yfd{bottom:397.026667pt;}
.y89{bottom:397.986667pt;}
.y53{bottom:401.346667pt;}
.yde{bottom:403.746667pt;}
.y23{bottom:415.586667pt;}
.yb9{bottom:419.586667pt;}
.yfc{bottom:422.466667pt;}
.y88{bottom:423.426667pt;}
.y52{bottom:426.626667pt;}
.ydd{bottom:429.026667pt;}
.yaa{bottom:434.786667pt;}
.y22{bottom:440.866667pt;}
.yb8{bottom:445.346667pt;}
.yfb{bottom:447.746667pt;}
.y87{bottom:448.386667pt;}
.y51{bottom:451.906667pt;}
.ydc{bottom:454.306667pt;}
.ya9{bottom:458.946667pt;}
.y21{bottom:466.146667pt;}
.y6c{bottom:468.066667pt;}
.yb7{bottom:470.626667pt;}
.yc7{bottom:472.386667pt;}
.yfa{bottom:473.026667pt;}
.y86{bottom:473.986667pt;}
.y50{bottom:477.186667pt;}
.ydb{bottom:479.586667pt;}
.y76{bottom:486.146667pt;}
.y6b{bottom:489.986667pt;}
.y20{bottom:491.266667pt;}
.y31{bottom:491.586667pt;}
.y9d{bottom:495.746667pt;}
.yb6{bottom:495.906667pt;}
.yf9{bottom:498.306667pt;}
.y85{bottom:499.266667pt;}
.y4f{bottom:502.466667pt;}
.yda{bottom:504.866667pt;}
.y75{bottom:507.933333pt;}
.y9c{bottom:519.773333pt;}
.y1f{bottom:520.093333pt;}
.yb5{bottom:521.213333pt;}
.yf8{bottom:523.613333pt;}
.y84{bottom:524.573333pt;}
.y4e{bottom:527.453333pt;}
.y62{bottom:527.773333pt;}
.yd9{bottom:530.173333pt;}
.y1e{bottom:545.533333pt;}
.yb4{bottom:546.493333pt;}
.yf7{bottom:548.893333pt;}
.y83{bottom:549.853333pt;}
.y4d{bottom:553.053333pt;}
.yd8{bottom:555.613333pt;}
.yb3{bottom:570.653333pt;}
.y1d{bottom:570.813333pt;}
.yf6{bottom:574.173333pt;}
.y82{bottom:575.133333pt;}
.y4c{bottom:578.493333pt;}
.yd7{bottom:580.893333pt;}
.y1c{bottom:596.093333pt;}
.yf5{bottom:599.453333pt;}
.y81{bottom:600.413333pt;}
.y4b{bottom:603.773333pt;}
.yd6{bottom:606.173333pt;}
.y1b{bottom:621.373333pt;}
.yf4{bottom:624.733333pt;}
.y80{bottom:625.693333pt;}
.y4a{bottom:629.053333pt;}
.yd5{bottom:631.453333pt;}
.y6a{bottom:638.493333pt;}
.y74{bottom:645.853333pt;}
.y1a{bottom:646.653333pt;}
.yf3{bottom:650.173333pt;}
.y7f{bottom:651.133333pt;}
.y49{bottom:654.333333pt;}
.yd4{bottom:656.733333pt;}
.y69{bottom:662.493333pt;}
.y73{bottom:667.773333pt;}
.y19{bottom:671.933333pt;}
.y9b{bottom:672.413333pt;}
.yf2{bottom:675.453333pt;}
.y7e{bottom:676.413333pt;}
.y48{bottom:679.613333pt;}
.yd3{bottom:681.693333pt;}
.y9a{bottom:694.173333pt;}
.y18{bottom:697.213333pt;}
.y7d{bottom:698.333333pt;}
.yf1{bottom:700.733333pt;}
.yb2{bottom:701.213333pt;}
.y47{bottom:704.893333pt;}
.yd2{bottom:707.293333pt;}
.y17{bottom:722.493333pt;}
.yb1{bottom:725.213333pt;}
.yf0{bottom:726.973333pt;}
.y46{bottom:730.213333pt;}
.yd1{bottom:732.613333pt;}
.yef{bottom:752.453333pt;}
.y16{bottom:753.093333pt;}
.y45{bottom:755.493333pt;}
.yd0{bottom:757.893333pt;}
.y15{bottom:778.533333pt;}
.yee{bottom:778.693333pt;}
.y10a{bottom:780.453333pt;}
.y44{bottom:780.773333pt;}
.ycf{bottom:783.333333pt;}
.y14{bottom:803.813333pt;}
.yed{bottom:804.133333pt;}
.y43{bottom:806.213333pt;}
.yce{bottom:808.613333pt;}
.y68{bottom:819.173333pt;}
.y72{bottom:824.133333pt;}
.y13{bottom:829.093333pt;}
.yec{bottom:830.373333pt;}
.y42{bottom:831.493333pt;}
.ycd{bottom:833.893333pt;}
.y7c{bottom:838.853333pt;}
.y99{bottom:840.773333pt;}
.y67{bottom:843.173333pt;}
.y71{bottom:845.893333pt;}
.y12{bottom:854.373333pt;}
.yeb{bottom:855.653333pt;}
.yb0{bottom:855.813333pt;}
.y41{bottom:856.773333pt;}
.ycc{bottom:857.893333pt;}
.y7b{bottom:860.613333pt;}
.y98{bottom:862.533333pt;}
.y11{bottom:879.653333pt;}
.yaf{bottom:879.813333pt;}
.yea{bottom:881.093333pt;}
.y40{bottom:882.053333pt;}
.y10{bottom:899.333333pt;}
.y3f{bottom:907.333333pt;}
.y4{bottom:918.053333pt;}
.y61{bottom:932.293333pt;}
.y3e{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.y2{bottom:953.440000pt;}
.y3d{bottom:957.920000pt;}
.y3c{bottom:982.880000pt;}
.y60{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y35{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y34{bottom:1014.880000pt;}
.h6{height:29.760000pt;}
.h13{height:36.431250pt;}
.hb{height:36.667500pt;}
.h1{height:42.707500pt;}
.hc{height:44.661915pt;}
.he{height:47.085938pt;}
.hd{height:47.742188pt;}
.h7{height:48.375000pt;}
.h2{height:52.108438pt;}
.h12{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h14{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500017pt;}
.h11{height:98.705643pt;}
.h10{height:98.705648pt;}
.h4{height:148.666667pt;}
.hf{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;}
.x21{left:71.999988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.xc{left:173.946655pt;}
.xd{left:177.946655pt;}
.x13{left:185.946655pt;}
.x12{left:192.506655pt;}
.x11{left:193.946655pt;}
.x1c{left:196.026655pt;}
.x10{left:198.586655pt;}
.x17{left:200.026655pt;}
.x18{left:204.026655pt;}
.x1e{left:216.026655pt;}
.x1d{left:221.946655pt;}
.x8{left:428.573321pt;}
.x20{left:452.573321pt;}
.x5{left:463.133333pt;}
.x14{left:569.053321pt;}
.x15{left:570.493321pt;}
.x16{left:573.213321pt;}
.xe{left:574.493321pt;}
.xf{left:580.573321pt;}
.x1b{left:584.573321pt;}
.x1a{left:588.573321pt;}
.x19{left:592.573321pt;}
.x1f{left:605.253321pt;}
.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; }
  