
    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_f4ecdca6e2c720e00e929711.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_277df0315702ebf54109e8f2.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_d36405189a650a196f9c00a5.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_4726b6b78c74dc4e860bfc67.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_ede7b5ddb4ae96fb915bd8c1.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_6bd61e0bb9c4689257c50635.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_71103d42e562ffde91a414fb.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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c690f4a8f08403a7ecf9211c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls15{letter-spacing:-1.026000px;}
.ls16{letter-spacing:-0.984000px;}
.ls8{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.274800px;}
.ls7{letter-spacing:-0.262200px;}
.ls11{letter-spacing:-0.226200px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.109440px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.262080px;}
.lse{letter-spacing:0.262200px;}
.lsd{letter-spacing:0.305400px;}
.ls10{letter-spacing:0.315600px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.835200px;}
.ls17{letter-spacing:0.870000px;}
.ls14{letter-spacing:6.785280px;}
.ls13{letter-spacing:39.905280px;}
.ls12{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;}
}
.ws13{word-spacing:-66.240000px;}
.ws0{word-spacing:-59.760000px;}
.wsa{word-spacing:-28.712400px;}
.ws3{word-spacing:-18.000000px;}
.ws16{word-spacing:-17.430000px;}
.wsc{word-spacing:-16.865400px;}
.wsf{word-spacing:-16.822200px;}
.wsd{word-spacing:-16.669200px;}
.ws6{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.297800px;}
.ws10{word-spacing:-16.254600px;}
.wse{word-spacing:-15.840000px;}
.ws15{word-spacing:-15.576000px;}
.ws14{word-spacing:-15.534000px;}
.ws1{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.939200px;}
.ws8{word-spacing:-13.500000px;}
.wsb{word-spacing:-11.160000px;}
.ws11{word-spacing:-10.755600px;}
.ws4{word-spacing:-10.440000px;}
.ws12{word-spacing:-10.213800px;}
.ws7{word-spacing:0.000000px;}
._c{margin-left:-2.119680px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._3{width:3.525120px;}
._8{width:4.835520px;}
._7{width:6.292800px;}
._4{width:7.750080px;}
._5{width:8.876160px;}
._b{width:10.272960px;}
._6{width:12.055680px;}
._1b{width:13.858560px;}
._22{width:15.198720px;}
._15{width:18.214080px;}
._d{width:19.341120px;}
._e{width:20.956800px;}
._14{width:22.256640px;}
._12{width:24.045120px;}
._13{width:25.104960px;}
._20{width:26.876160px;}
._11{width:27.912960px;}
._10{width:28.982400px;}
._17{width:30.561600px;}
._a{width:31.624320px;}
._9{width:33.154560px;}
._f{width:34.407360px;}
._24{width:35.540880px;}
._1a{width:36.579840px;}
._19{width:37.704960px;}
._18{width:39.133440px;}
._30{width:40.936320px;}
._27{width:42.526080px;}
._1e{width:43.983360px;}
._1f{width:45.367680px;}
._2f{width:46.412160px;}
._1c{width:47.427840px;}
._1d{width:48.818880px;}
._2a{width:51.534720px;}
._2d{width:52.577280px;}
._23{width:54.912960px;}
._16{width:55.972800px;}
._31{width:57.231360px;}
._25{width:58.453440px;}
._26{width:60.129600px;}
._29{width:61.205760px;}
._2e{width:62.795520px;}
._28{width:64.650240px;}
._33{width:66.438720px;}
._32{width:79.686720px;}
._21{width:88.425600px;}
._2c{width:140.826240px;}
._2b{width:142.810560px;}
._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;}
.y95{bottom:13.140000px;}
.y97{bottom:13.500000px;}
.ya4{bottom:13.545000px;}
.y9f{bottom:13.680000px;}
.y9a{bottom:14.220000px;}
.ya2{bottom:14.265000px;}
.y36{bottom:20.520000px;}
.ya{bottom:20.880000px;}
.y35{bottom:37.080000px;}
.yac{bottom:42.654000px;}
.y99{bottom:42.660000px;}
.ya1{bottom:42.705000px;}
.y9d{bottom:42.840000px;}
.y37{bottom:48.420000px;}
.y38{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y34{bottom:53.100000px;}
.y7{bottom:53.280000px;}
.y5{bottom:68.976000px;}
.yaa{bottom:71.814000px;}
.y74{bottom:95.076000px;}
.y31{bottom:97.596000px;}
.y92{bottom:98.676000px;}
.ybf{bottom:99.216000px;}
.y5f{bottom:99.396000px;}
.y5c{bottom:99.756000px;}
.ya9{bottom:103.536000px;}
.y73{bottom:123.696000px;}
.y2f{bottom:126.036000px;}
.y91{bottom:127.116000px;}
.ye8{bottom:127.476000px;}
.y62{bottom:127.836000px;}
.y5b{bottom:128.196000px;}
.yab{bottom:132.696000px;}
.y72{bottom:153.210000px;}
.y2e{bottom:154.470000px;}
.y90{bottom:155.550000px;}
.y5a{bottom:156.630000px;}
.yd0{bottom:157.530000px;}
.yb2{bottom:159.480000px;}
.yad{bottom:161.850000px;}
.y71{bottom:181.650000px;}
.y2d{bottom:182.910000px;}
.ycf{bottom:183.450000px;}
.y8f{bottom:183.990000px;}
.y59{bottom:185.250000px;}
.ya7{bottom:191.190000px;}
.y70{bottom:210.090000px;}
.y2c{bottom:210.990000px;}
.y30{bottom:211.350000px;}
.y8e{bottom:212.430000px;}
.y58{bottom:213.690000px;}
.ya8{bottom:220.350000px;}
.yc6{bottom:226.470000px;}
.y6f{bottom:238.710000px;}
.y8d{bottom:240.870000px;}
.y57{bottom:242.130000px;}
.y2b{bottom:243.570000px;}
.ya6{bottom:249.510000px;}
.yc5{bottom:250.950000px;}
.y6e{bottom:268.230000px;}
.y8c{bottom:269.310000px;}
.ye7{bottom:270.210000px;}
.y56{bottom:270.570000px;}
.y2a{bottom:272.010000px;}
.ybe{bottom:285.510000px;}
.ya5{bottom:292.170000px;}
.y6d{bottom:296.670000px;}
.y8b{bottom:297.750000px;}
.ye6{bottom:298.650000px;}
.y55{bottom:299.010000px;}
.y29{bottom:300.450000px;}
.ya0{bottom:308.010000px;}
.ybd{bottom:310.170000px;}
.y6c{bottom:325.335000px;}
.y8a{bottom:326.415000px;}
.ye5{bottom:327.135000px;}
.y54{bottom:327.495000px;}
.y28{bottom:328.935000px;}
.ya3{bottom:337.215000px;}
.y6b{bottom:354.855000px;}
.y53{bottom:355.575000px;}
.y5e{bottom:355.935000px;}
.yce{bottom:356.655000px;}
.y27{bottom:357.555000px;}
.y9c{bottom:366.375000px;}
.ycd{bottom:381.135000px;}
.y6a{bottom:383.295000px;}
.ye4{bottom:384.015000px;}
.y52{bottom:384.375000px;}
.y26{bottom:385.995000px;}
.y9e{bottom:395.535000px;}
.y69{bottom:411.735000px;}
.y61{bottom:412.455000px;}
.y51{bottom:412.815000px;}
.y25{bottom:414.435000px;}
.yc4{bottom:419.655000px;}
.y98{bottom:424.875000px;}
.y68{bottom:440.175000px;}
.ye3{bottom:441.075000px;}
.y50{bottom:441.435000px;}
.y24{bottom:442.875000px;}
.yc3{bottom:448.095000px;}
.y9b{bottom:454.035000px;}
.ybc{bottom:466.095000px;}
.y89{bottom:468.255000px;}
.y67{bottom:468.615000px;}
.ye2{bottom:469.515000px;}
.y4f{bottom:469.875000px;}
.y23{bottom:471.315000px;}
.yc2{bottom:472.755000px;}
.y5d{bottom:475.815000px;}
.y96{bottom:483.195000px;}
.ybb{bottom:490.575000px;}
.y66{bottom:497.055000px;}
.ye1{bottom:497.955000px;}
.y4e{bottom:498.315000px;}
.y22{bottom:499.755000px;}
.y94{bottom:512.535000px;}
.y65{bottom:525.495000px;}
.ye0{bottom:526.395000px;}
.y4d{bottom:526.755000px;}
.y21{bottom:528.195000px;}
.ycc{bottom:544.035000px;}
.y88{bottom:553.935000px;}
.y64{bottom:554.115000px;}
.ydf{bottom:554.835000px;}
.y4c{bottom:555.195000px;}
.y20{bottom:556.635000px;}
.ycb{bottom:568.545000px;}
.y87{bottom:582.585000px;}
.y93{bottom:583.305000px;}
.y4b{bottom:583.665000px;}
.y1f{bottom:585.105000px;}
.y86{bottom:611.025000px;}
.yde{bottom:611.745000px;}
.y4a{bottom:612.105000px;}
.y1e{bottom:619.665000px;}
.yc1{bottom:639.105000px;}
.y85{bottom:639.465000px;}
.y63{bottom:640.185000px;}
.y49{bottom:640.545000px;}
.y1d{bottom:642.165000px;}
.yba{bottom:650.265000px;}
.yc0{bottom:663.585000px;}
.y84{bottom:667.905000px;}
.ydd{bottom:668.625000px;}
.y48{bottom:668.985000px;}
.yb9{bottom:674.745000px;}
.y1c{bottom:676.545000px;}
.y83{bottom:696.345000px;}
.ydc{bottom:697.245000px;}
.y47{bottom:697.605000px;}
.y1b{bottom:699.045000px;}
.y82{bottom:724.785000px;}
.ydb{bottom:725.685000px;}
.y46{bottom:726.045000px;}
.y1a{bottom:733.425000px;}
.yca{bottom:737.205000px;}
.y81{bottom:753.225000px;}
.yda{bottom:754.125000px;}
.y45{bottom:754.485000px;}
.y19{bottom:755.925000px;}
.yc9{bottom:761.865000px;}
.y80{bottom:781.665000px;}
.yd9{bottom:782.565000px;}
.y44{bottom:782.925000px;}
.y18{bottom:790.305000px;}
.y7f{bottom:810.105000px;}
.yd8{bottom:811.005000px;}
.y43{bottom:811.365000px;}
.y17{bottom:812.805000px;}
.yb8{bottom:832.290000px;}
.y7e{bottom:838.770000px;}
.yd7{bottom:839.490000px;}
.y42{bottom:839.850000px;}
.y16{bottom:847.230000px;}
.yb1{bottom:848.130000px;}
.y7d{bottom:867.210000px;}
.yd6{bottom:867.930000px;}
.y41{bottom:868.290000px;}
.y15{bottom:869.910000px;}
.yb7{bottom:877.290000px;}
.y7c{bottom:895.650000px;}
.yd5{bottom:896.370000px;}
.y40{bottom:896.730000px;}
.y14{bottom:904.290000px;}
.yb5{bottom:906.450000px;}
.y7b{bottom:924.090000px;}
.yd4{bottom:924.810000px;}
.y3f{bottom:925.170000px;}
.y13{bottom:926.790000px;}
.yc8{bottom:928.950000px;}
.yb6{bottom:935.610000px;}
.y7a{bottom:952.530000px;}
.yd3{bottom:953.430000px;}
.yc7{bottom:953.610000px;}
.y3e{bottom:953.790000px;}
.y12{bottom:961.170000px;}
.yb3{bottom:964.950000px;}
.y79{bottom:980.970000px;}
.yd2{bottom:981.870000px;}
.y3d{bottom:982.230000px;}
.y11{bottom:983.310000px;}
.yb4{bottom:994.110000px;}
.y78{bottom:1009.410000px;}
.yd1{bottom:1010.310000px;}
.y3c{bottom:1010.670000px;}
.y10{bottom:1011.750000px;}
.yaf{bottom:1023.270000px;}
.y4{bottom:1032.810000px;}
.y77{bottom:1037.850000px;}
.y3b{bottom:1039.110000px;}
.yb0{bottom:1052.610000px;}
.y3{bottom:1052.790000px;}
.y76{bottom:1066.290000px;}
.y3a{bottom:1067.550000px;}
.y2{bottom:1072.620000px;}
.yae{bottom:1081.800000px;}
.y75{bottom:1094.940000px;}
.y60{bottom:1095.660000px;}
.y39{bottom:1096.020000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1114.380000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1131.660000px;}
.h13{height:28.440000px;}
.h18{height:28.476000px;}
.h16{height:28.620000px;}
.h6{height:33.480000px;}
.hb{height:41.250937px;}
.h11{height:46.251562px;}
.h1{height:48.045938px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h14{height:57.600000px;}
.h17{height:57.636000px;}
.h15{height:57.780000px;}
.h1b{height:57.816000px;}
.h2{height:58.621992px;}
.h10{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h12{height:68.084282px;}
.h1d{height:70.664062px;}
.h8{height:72.562500px;}
.h5{height:72.562511px;}
.h19{height:86.760000px;}
.h1a{height:111.043838px;}
.hf{height:111.043849px;}
.h4{height:167.250000px;}
.h1c{height:174.420000px;}
.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;}
.wb{width:51.696000px;}
.w11{width:52.416000px;}
.w18{width:63.000000px;}
.w17{width:73.620000px;}
.w10{width:73.980000px;}
.we{width:103.356000px;}
.w15{width:105.480000px;}
.w14{width:105.696000px;}
.w1a{width:106.020000px;}
.wf{width:127.116000px;}
.w16{width:137.376000px;}
.wc{width:137.520000px;}
.wd{width:138.276000px;}
.w12{width:138.996000px;}
.wa{width:179.490000px;}
.w9{width:201.270000px;}
.w19{width:212.430000px;}
.w3{width:361.335000px;}
.w13{width:807.990000px;}
.w8{width:817.560000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:7.380000px;}
.x7{left:10.800000px;}
.x11{left:12.240000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.xc{left:80.999986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x17{left:160.770000px;}
.x16{left:182.370000px;}
.x1e{left:200.189986px;}
.x22{left:207.749986px;}
.x21{left:211.529986px;}
.x10{left:257.070000px;}
.x18{left:266.970000px;}
.xe{left:317.955000px;}
.x19{left:373.575000px;}
.x12{left:437.835000px;}
.x8{left:486.104986px;}
.x13{left:490.605000px;}
.x1a{left:511.665000px;}
.xd{left:513.104986px;}
.x5{left:521.025000px;}
.x1b{left:586.005000px;}
.x14{left:629.205000px;}
.x20{left:639.464986px;}
.x1f{left:641.264986px;}
.x1c{left:649.905000px;}
.x1d{left:756.330000px;}
.x15{left:768.570000px;}
.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;}
.ls15{letter-spacing:-0.912000pt;}
.ls16{letter-spacing:-0.874667pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.244267pt;}
.ls7{letter-spacing:-0.233067pt;}
.ls11{letter-spacing:-0.201067pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.097280pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.232960pt;}
.lse{letter-spacing:0.233067pt;}
.lsd{letter-spacing:0.271467pt;}
.ls10{letter-spacing:0.280533pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.742400pt;}
.ls17{letter-spacing:0.773333pt;}
.ls14{letter-spacing:6.031360pt;}
.ls13{letter-spacing:35.471360pt;}
.ls12{letter-spacing:52.751360pt;}
.ls0{letter-spacing:184.370347pt;}
.ws13{word-spacing:-58.880000pt;}
.ws0{word-spacing:-53.120000pt;}
.wsa{word-spacing:-25.522133pt;}
.ws3{word-spacing:-16.000000pt;}
.ws16{word-spacing:-15.493333pt;}
.wsc{word-spacing:-14.991467pt;}
.wsf{word-spacing:-14.953067pt;}
.wsd{word-spacing:-14.817067pt;}
.ws6{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.486933pt;}
.ws10{word-spacing:-14.448533pt;}
.wse{word-spacing:-14.080000pt;}
.ws15{word-spacing:-13.845333pt;}
.ws14{word-spacing:-13.808000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.390400pt;}
.ws8{word-spacing:-12.000000pt;}
.wsb{word-spacing:-9.920000pt;}
.ws11{word-spacing:-9.560533pt;}
.ws4{word-spacing:-9.280000pt;}
.ws12{word-spacing:-9.078933pt;}
.ws7{word-spacing:0.000000pt;}
._c{margin-left:-1.884160pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._3{width:3.133440pt;}
._8{width:4.298240pt;}
._7{width:5.593600pt;}
._4{width:6.888960pt;}
._5{width:7.889920pt;}
._b{width:9.131520pt;}
._6{width:10.716160pt;}
._1b{width:12.318720pt;}
._22{width:13.509973pt;}
._15{width:16.190293pt;}
._d{width:17.192107pt;}
._e{width:18.628267pt;}
._14{width:19.783680pt;}
._12{width:21.373440pt;}
._13{width:22.315520pt;}
._20{width:23.889920pt;}
._11{width:24.811520pt;}
._10{width:25.762133pt;}
._17{width:27.165867pt;}
._a{width:28.110507pt;}
._9{width:29.470720pt;}
._f{width:30.584320pt;}
._24{width:31.591893pt;}
._1a{width:32.515413pt;}
._19{width:33.515520pt;}
._18{width:34.785280pt;}
._30{width:36.387840pt;}
._27{width:37.800960pt;}
._1e{width:39.096320pt;}
._1f{width:40.326827pt;}
._2f{width:41.255253pt;}
._1c{width:42.158080pt;}
._1d{width:43.394560pt;}
._2a{width:45.808640pt;}
._2d{width:46.735360pt;}
._23{width:48.811520pt;}
._16{width:49.753600pt;}
._31{width:50.872320pt;}
._25{width:51.958613pt;}
._26{width:53.448533pt;}
._29{width:54.405120pt;}
._2e{width:55.818240pt;}
._28{width:57.466880pt;}
._33{width:59.056640pt;}
._32{width:70.832640pt;}
._21{width:78.600533pt;}
._2c{width:125.178880pt;}
._2b{width:126.942720pt;}
._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;}
.y95{bottom:11.680000pt;}
.y97{bottom:12.000000pt;}
.ya4{bottom:12.040000pt;}
.y9f{bottom:12.160000pt;}
.y9a{bottom:12.640000pt;}
.ya2{bottom:12.680000pt;}
.y36{bottom:18.240000pt;}
.ya{bottom:18.560000pt;}
.y35{bottom:32.960000pt;}
.yac{bottom:37.914667pt;}
.y99{bottom:37.920000pt;}
.ya1{bottom:37.960000pt;}
.y9d{bottom:38.080000pt;}
.y37{bottom:43.040000pt;}
.y38{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y34{bottom:47.200000pt;}
.y7{bottom:47.360000pt;}
.y5{bottom:61.312000pt;}
.yaa{bottom:63.834667pt;}
.y74{bottom:84.512000pt;}
.y31{bottom:86.752000pt;}
.y92{bottom:87.712000pt;}
.ybf{bottom:88.192000pt;}
.y5f{bottom:88.352000pt;}
.y5c{bottom:88.672000pt;}
.ya9{bottom:92.032000pt;}
.y73{bottom:109.952000pt;}
.y2f{bottom:112.032000pt;}
.y91{bottom:112.992000pt;}
.ye8{bottom:113.312000pt;}
.y62{bottom:113.632000pt;}
.y5b{bottom:113.952000pt;}
.yab{bottom:117.952000pt;}
.y72{bottom:136.186667pt;}
.y2e{bottom:137.306667pt;}
.y90{bottom:138.266667pt;}
.y5a{bottom:139.226667pt;}
.yd0{bottom:140.026667pt;}
.yb2{bottom:141.760000pt;}
.yad{bottom:143.866667pt;}
.y71{bottom:161.466667pt;}
.y2d{bottom:162.586667pt;}
.ycf{bottom:163.066667pt;}
.y8f{bottom:163.546667pt;}
.y59{bottom:164.666667pt;}
.ya7{bottom:169.946667pt;}
.y70{bottom:186.746667pt;}
.y2c{bottom:187.546667pt;}
.y30{bottom:187.866667pt;}
.y8e{bottom:188.826667pt;}
.y58{bottom:189.946667pt;}
.ya8{bottom:195.866667pt;}
.yc6{bottom:201.306667pt;}
.y6f{bottom:212.186667pt;}
.y8d{bottom:214.106667pt;}
.y57{bottom:215.226667pt;}
.y2b{bottom:216.506667pt;}
.ya6{bottom:221.786667pt;}
.yc5{bottom:223.066667pt;}
.y6e{bottom:238.426667pt;}
.y8c{bottom:239.386667pt;}
.ye7{bottom:240.186667pt;}
.y56{bottom:240.506667pt;}
.y2a{bottom:241.786667pt;}
.ybe{bottom:253.786667pt;}
.ya5{bottom:259.706667pt;}
.y6d{bottom:263.706667pt;}
.y8b{bottom:264.666667pt;}
.ye6{bottom:265.466667pt;}
.y55{bottom:265.786667pt;}
.y29{bottom:267.066667pt;}
.ya0{bottom:273.786667pt;}
.ybd{bottom:275.706667pt;}
.y6c{bottom:289.186667pt;}
.y8a{bottom:290.146667pt;}
.ye5{bottom:290.786667pt;}
.y54{bottom:291.106667pt;}
.y28{bottom:292.386667pt;}
.ya3{bottom:299.746667pt;}
.y6b{bottom:315.426667pt;}
.y53{bottom:316.066667pt;}
.y5e{bottom:316.386667pt;}
.yce{bottom:317.026667pt;}
.y27{bottom:317.826667pt;}
.y9c{bottom:325.666667pt;}
.ycd{bottom:338.786667pt;}
.y6a{bottom:340.706667pt;}
.ye4{bottom:341.346667pt;}
.y52{bottom:341.666667pt;}
.y26{bottom:343.106667pt;}
.y9e{bottom:351.586667pt;}
.y69{bottom:365.986667pt;}
.y61{bottom:366.626667pt;}
.y51{bottom:366.946667pt;}
.y25{bottom:368.386667pt;}
.yc4{bottom:373.026667pt;}
.y98{bottom:377.666667pt;}
.y68{bottom:391.266667pt;}
.ye3{bottom:392.066667pt;}
.y50{bottom:392.386667pt;}
.y24{bottom:393.666667pt;}
.yc3{bottom:398.306667pt;}
.y9b{bottom:403.586667pt;}
.ybc{bottom:414.306667pt;}
.y89{bottom:416.226667pt;}
.y67{bottom:416.546667pt;}
.ye2{bottom:417.346667pt;}
.y4f{bottom:417.666667pt;}
.y23{bottom:418.946667pt;}
.yc2{bottom:420.226667pt;}
.y5d{bottom:422.946667pt;}
.y96{bottom:429.506667pt;}
.ybb{bottom:436.066667pt;}
.y66{bottom:441.826667pt;}
.ye1{bottom:442.626667pt;}
.y4e{bottom:442.946667pt;}
.y22{bottom:444.226667pt;}
.y94{bottom:455.586667pt;}
.y65{bottom:467.106667pt;}
.ye0{bottom:467.906667pt;}
.y4d{bottom:468.226667pt;}
.y21{bottom:469.506667pt;}
.ycc{bottom:483.586667pt;}
.y88{bottom:492.386667pt;}
.y64{bottom:492.546667pt;}
.ydf{bottom:493.186667pt;}
.y4c{bottom:493.506667pt;}
.y20{bottom:494.786667pt;}
.ycb{bottom:505.373333pt;}
.y87{bottom:517.853333pt;}
.y93{bottom:518.493333pt;}
.y4b{bottom:518.813333pt;}
.y1f{bottom:520.093333pt;}
.y86{bottom:543.133333pt;}
.yde{bottom:543.773333pt;}
.y4a{bottom:544.093333pt;}
.y1e{bottom:550.813333pt;}
.yc1{bottom:568.093333pt;}
.y85{bottom:568.413333pt;}
.y63{bottom:569.053333pt;}
.y49{bottom:569.373333pt;}
.y1d{bottom:570.813333pt;}
.yba{bottom:578.013333pt;}
.yc0{bottom:589.853333pt;}
.y84{bottom:593.693333pt;}
.ydd{bottom:594.333333pt;}
.y48{bottom:594.653333pt;}
.yb9{bottom:599.773333pt;}
.y1c{bottom:601.373333pt;}
.y83{bottom:618.973333pt;}
.ydc{bottom:619.773333pt;}
.y47{bottom:620.093333pt;}
.y1b{bottom:621.373333pt;}
.y82{bottom:644.253333pt;}
.ydb{bottom:645.053333pt;}
.y46{bottom:645.373333pt;}
.y1a{bottom:651.933333pt;}
.yca{bottom:655.293333pt;}
.y81{bottom:669.533333pt;}
.yda{bottom:670.333333pt;}
.y45{bottom:670.653333pt;}
.y19{bottom:671.933333pt;}
.yc9{bottom:677.213333pt;}
.y80{bottom:694.813333pt;}
.yd9{bottom:695.613333pt;}
.y44{bottom:695.933333pt;}
.y18{bottom:702.493333pt;}
.y7f{bottom:720.093333pt;}
.yd8{bottom:720.893333pt;}
.y43{bottom:721.213333pt;}
.y17{bottom:722.493333pt;}
.yb8{bottom:739.813333pt;}
.y7e{bottom:745.573333pt;}
.yd7{bottom:746.213333pt;}
.y42{bottom:746.533333pt;}
.y16{bottom:753.093333pt;}
.yb1{bottom:753.893333pt;}
.y7d{bottom:770.853333pt;}
.yd6{bottom:771.493333pt;}
.y41{bottom:771.813333pt;}
.y15{bottom:773.253333pt;}
.yb7{bottom:779.813333pt;}
.y7c{bottom:796.133333pt;}
.yd5{bottom:796.773333pt;}
.y40{bottom:797.093333pt;}
.y14{bottom:803.813333pt;}
.yb5{bottom:805.733333pt;}
.y7b{bottom:821.413333pt;}
.yd4{bottom:822.053333pt;}
.y3f{bottom:822.373333pt;}
.y13{bottom:823.813333pt;}
.yc8{bottom:825.733333pt;}
.yb6{bottom:831.653333pt;}
.y7a{bottom:846.693333pt;}
.yd3{bottom:847.493333pt;}
.yc7{bottom:847.653333pt;}
.y3e{bottom:847.813333pt;}
.y12{bottom:854.373333pt;}
.yb3{bottom:857.733333pt;}
.y79{bottom:871.973333pt;}
.yd2{bottom:872.773333pt;}
.y3d{bottom:873.093333pt;}
.y11{bottom:874.053333pt;}
.yb4{bottom:883.653333pt;}
.y78{bottom:897.253333pt;}
.yd1{bottom:898.053333pt;}
.y3c{bottom:898.373333pt;}
.y10{bottom:899.333333pt;}
.yaf{bottom:909.573333pt;}
.y4{bottom:918.053333pt;}
.y77{bottom:922.533333pt;}
.y3b{bottom:923.653333pt;}
.yb0{bottom:935.653333pt;}
.y3{bottom:935.813333pt;}
.y76{bottom:947.813333pt;}
.y3a{bottom:948.933333pt;}
.y2{bottom:953.440000pt;}
.yae{bottom:961.600000pt;}
.y75{bottom:973.280000pt;}
.y60{bottom:973.920000pt;}
.y39{bottom:974.240000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:990.560000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1005.920000pt;}
.h13{height:25.280000pt;}
.h18{height:25.312000pt;}
.h16{height:25.440000pt;}
.h6{height:29.760000pt;}
.hb{height:36.667500pt;}
.h11{height:41.112500pt;}
.h1{height:42.707500pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h14{height:51.200000pt;}
.h17{height:51.232000pt;}
.h15{height:51.360000pt;}
.h1b{height:51.392000pt;}
.h2{height:52.108438pt;}
.h10{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h12{height:60.519362pt;}
.h1d{height:62.812500pt;}
.h8{height:64.500000pt;}
.h5{height:64.500010pt;}
.h19{height:77.120000pt;}
.h1a{height:98.705634pt;}
.hf{height:98.705643pt;}
.h4{height:148.666667pt;}
.h1c{height:155.040000pt;}
.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;}
.wb{width:45.952000pt;}
.w11{width:46.592000pt;}
.w18{width:56.000000pt;}
.w17{width:65.440000pt;}
.w10{width:65.760000pt;}
.we{width:91.872000pt;}
.w15{width:93.760000pt;}
.w14{width:93.952000pt;}
.w1a{width:94.240000pt;}
.wf{width:112.992000pt;}
.w16{width:122.112000pt;}
.wc{width:122.240000pt;}
.wd{width:122.912000pt;}
.w12{width:123.552000pt;}
.wa{width:159.546667pt;}
.w9{width:178.906667pt;}
.w19{width:188.826667pt;}
.w3{width:321.186667pt;}
.w13{width:718.213333pt;}
.w8{width:726.720000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.560000pt;}
.x7{left:9.600000pt;}
.x11{left:10.880000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.xc{left:71.999988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x17{left:142.906667pt;}
.x16{left:162.106667pt;}
.x1e{left:177.946655pt;}
.x22{left:184.666655pt;}
.x21{left:188.026655pt;}
.x10{left:228.506667pt;}
.x18{left:237.306667pt;}
.xe{left:282.626667pt;}
.x19{left:332.066667pt;}
.x12{left:389.186667pt;}
.x8{left:432.093321pt;}
.x13{left:436.093333pt;}
.x1a{left:454.813333pt;}
.xd{left:456.093321pt;}
.x5{left:463.133333pt;}
.x1b{left:520.893333pt;}
.x14{left:559.293333pt;}
.x20{left:568.413321pt;}
.x1f{left:570.013321pt;}
.x1c{left:577.693333pt;}
.x1d{left:672.293333pt;}
.x15{left:683.173333pt;}
.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; }
  