
    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_b60c24912a622d80e1630f23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_69ef4abcb39cfe5ca4c20099.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ee12b2100106de7e189d7d15.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e1a5e2cfa6f1f934957574e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_4d9d81bc67b0e12274dfdfad.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_323c57cbf6c2d986ae25f1ae.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_70e9504b65e89d9863eca320.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_85bd204145a221166ff6ff41.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_8007555ca705d03b29501b91.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.853027;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_453e71de3408794a93a14fa8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_ab3e4e7903f94fa06c74e086.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-0.463800px;}
.ls5{letter-spacing:-0.310200px;}
.ls16{letter-spacing:-0.078000px;}
.ls7{letter-spacing:-0.064800px;}
.lsa{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.060600px;}
.lsc{letter-spacing:0.064200px;}
.ls15{letter-spacing:0.074880px;}
.ls11{letter-spacing:0.140400px;}
.lsf{letter-spacing:0.174240px;}
.ls19{letter-spacing:0.175200px;}
.ls18{letter-spacing:0.179280px;}
.ls14{letter-spacing:0.186600px;}
.ls6{letter-spacing:0.190200px;}
.ls9{letter-spacing:0.306000px;}
.ls12{letter-spacing:0.421920px;}
.lsb{letter-spacing:0.479520px;}
.lsd{letter-spacing:0.617760px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls10{letter-spacing:26.586720px;}
.lse{letter-spacing:26.730720px;}
.ls17{letter-spacing:42.570720px;}
.ls8{letter-spacing:46.170720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-59.760000px;}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsa{word-spacing:-13.692360px;}
.wsf{word-spacing:-13.685040px;}
.wse{word-spacing:-13.680960px;}
.wsd{word-spacing:-13.646160px;}
.ws9{word-spacing:-13.569960px;}
.ws5{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.447440px;}
.ws6{word-spacing:-13.440960px;}
.wsc{word-spacing:-13.427760px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1003.789440px;}
._5{margin-left:-581.644560px;}
._7{margin-left:-4.449600px;}
._6{margin-left:-3.312000px;}
._12{margin-left:-2.286960px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._b{width:2.515200px;}
._c{width:4.191360px;}
._d{width:5.720640px;}
._10{width:6.812640px;}
._13{width:8.067600px;}
._16{width:9.088080px;}
._e{width:10.159200px;}
._f{width:11.377200px;}
._14{width:12.453600px;}
._15{width:14.664000px;}
._1b{width:15.790320px;}
._17{width:17.091360px;}
._8{width:18.098640px;}
._a{width:19.180800px;}
._9{width:20.617680px;}
._1c{width:24.136800px;}
._1a{width:31.076400px;}
._19{width:53.544960px;}
._18{width:93.325200px;}
._11{width:202.638240px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs8{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:6.660000px;}
.y89{bottom:6.840000px;}
.ya1{bottom:6.870000px;}
.y101{bottom:7.020000px;}
.yb7{bottom:17.460000px;}
.ybe{bottom:27.900000px;}
.yb8{bottom:27.930000px;}
.y100{bottom:28.260000px;}
.yfd{bottom:35.460000px;}
.yff{bottom:49.500000px;}
.y6{bottom:58.320000px;}
.yfe{bottom:70.734000px;}
.yfc{bottom:90.936000px;}
.y5f{bottom:94.536000px;}
.ye7{bottom:96.516000px;}
.y86{bottom:97.596000px;}
.y5e{bottom:115.596000px;}
.ye6{bottom:117.576000px;}
.y85{bottom:118.656000px;}
.y30{bottom:124.596000px;}
.y5d{bottom:136.656000px;}
.ye5{bottom:138.636000px;}
.y84{bottom:139.716000px;}
.yb5{bottom:140.256000px;}
.y2f{bottom:145.656000px;}
.y5c{bottom:157.710000px;}
.ye4{bottom:159.690000px;}
.y83{bottom:160.770000px;}
.yb4{bottom:161.310000px;}
.y2e{bottom:166.710000px;}
.y5b{bottom:178.770000px;}
.ye3{bottom:180.750000px;}
.y82{bottom:181.830000px;}
.yb3{bottom:182.370000px;}
.y2d{bottom:187.770000px;}
.y5a{bottom:199.830000px;}
.ye2{bottom:201.810000px;}
.y81{bottom:202.890000px;}
.yb2{bottom:203.430000px;}
.y2c{bottom:208.830000px;}
.y59{bottom:220.890000px;}
.ye1{bottom:222.870000px;}
.y80{bottom:223.950000px;}
.yb1{bottom:224.490000px;}
.y2b{bottom:229.890000px;}
.y58{bottom:241.950000px;}
.yb0{bottom:242.850000px;}
.ye0{bottom:243.930000px;}
.y7f{bottom:245.010000px;}
.y2a{bottom:250.950000px;}
.y57{bottom:263.010000px;}
.ydf{bottom:264.990000px;}
.y7e{bottom:266.070000px;}
.yaf{bottom:268.410000px;}
.y29{bottom:272.010000px;}
.yde{bottom:286.050000px;}
.y7d{bottom:287.130000px;}
.y28{bottom:293.070000px;}
.yae{bottom:293.970000px;}
.ydd{bottom:307.110000px;}
.y7c{bottom:308.190000px;}
.y27{bottom:314.130000px;}
.yad{bottom:319.530000px;}
.ydc{bottom:328.215000px;}
.y7b{bottom:329.295000px;}
.y26{bottom:335.235000px;}
.yac{bottom:345.135000px;}
.ydb{bottom:349.275000px;}
.y25{bottom:356.295000px;}
.yda{bottom:370.335000px;}
.y7a{bottom:371.415000px;}
.y24{bottom:377.355000px;}
.yd9{bottom:391.395000px;}
.y79{bottom:392.475000px;}
.y23{bottom:398.235000px;}
.y56{bottom:398.415000px;}
.yab{bottom:403.455000px;}
.yd8{bottom:412.455000px;}
.y78{bottom:413.535000px;}
.y22{bottom:419.295000px;}
.y55{bottom:419.475000px;}
.yaa{bottom:424.515000px;}
.yd7{bottom:433.515000px;}
.y77{bottom:434.595000px;}
.y21{bottom:440.355000px;}
.y54{bottom:440.535000px;}
.ya9{bottom:445.575000px;}
.yd6{bottom:454.575000px;}
.y76{bottom:455.655000px;}
.y20{bottom:461.415000px;}
.y53{bottom:461.595000px;}
.ya8{bottom:466.635000px;}
.yd5{bottom:475.635000px;}
.y52{bottom:482.655000px;}
.y1f{bottom:484.635000px;}
.y75{bottom:485.715000px;}
.ya7{bottom:487.695000px;}
.yd4{bottom:496.695000px;}
.y51{bottom:503.715000px;}
.y1e{bottom:505.875000px;}
.y74{bottom:506.775000px;}
.ya6{bottom:508.755000px;}
.yd3{bottom:517.755000px;}
.y50{bottom:524.775000px;}
.y73{bottom:527.835000px;}
.ya5{bottom:529.815000px;}
.y1d{bottom:535.935000px;}
.yd2{bottom:538.815000px;}
.y4f{bottom:545.835000px;}
.y72{bottom:548.895000px;}
.ya4{bottom:550.875000px;}
.y1c{bottom:556.995000px;}
.yd1{bottom:559.875000px;}
.y4e{bottom:566.895000px;}
.ya2{bottom:569.235000px;}
.y71{bottom:569.955000px;}
.y1b{bottom:578.055000px;}
.yd0{bottom:580.935000px;}
.y4d{bottom:587.955000px;}
.y70{bottom:591.015000px;}
.ya0{bottom:594.615000px;}
.y1a{bottom:599.145000px;}
.ycf{bottom:602.025000px;}
.y4c{bottom:609.045000px;}
.y19{bottom:620.205000px;}
.y6f{bottom:621.105000px;}
.yce{bottom:623.085000px;}
.y4b{bottom:630.105000px;}
.y18{bottom:641.265000px;}
.y6e{bottom:641.985000px;}
.ycd{bottom:644.145000px;}
.y4a{bottom:650.985000px;}
.y9f{bottom:653.145000px;}
.y17{bottom:662.325000px;}
.y6d{bottom:663.045000px;}
.ycc{bottom:665.205000px;}
.y49{bottom:672.045000px;}
.y9e{bottom:674.205000px;}
.y16{bottom:683.385000px;}
.y6c{bottom:684.105000px;}
.ycb{bottom:686.085000px;}
.y48{bottom:693.105000px;}
.y9d{bottom:695.085000px;}
.y15{bottom:704.445000px;}
.y6b{bottom:705.165000px;}
.yca{bottom:707.145000px;}
.y47{bottom:714.165000px;}
.y9c{bottom:716.145000px;}
.y14{bottom:725.505000px;}
.y6a{bottom:726.225000px;}
.yc9{bottom:728.205000px;}
.y46{bottom:735.225000px;}
.y9b{bottom:737.205000px;}
.y13{bottom:746.565000px;}
.y69{bottom:747.285000px;}
.yc8{bottom:749.265000px;}
.y9a{bottom:758.265000px;}
.y45{bottom:765.285000px;}
.y12{bottom:767.625000px;}
.y68{bottom:768.345000px;}
.yc7{bottom:770.325000px;}
.y99{bottom:779.325000px;}
.yfb{bottom:783.645000px;}
.y44{bottom:786.345000px;}
.y11{bottom:788.685000px;}
.y67{bottom:789.405000px;}
.yc6{bottom:791.385000px;}
.y98{bottom:800.385000px;}
.yfa{bottom:804.705000px;}
.y43{bottom:807.405000px;}
.y10{bottom:809.745000px;}
.y66{bottom:810.465000px;}
.yc5{bottom:812.445000px;}
.y97{bottom:821.445000px;}
.yf9{bottom:825.765000px;}
.y42{bottom:828.465000px;}
.yf{bottom:830.805000px;}
.y65{bottom:831.525000px;}
.yc4{bottom:833.505000px;}
.y96{bottom:842.505000px;}
.yf8{bottom:846.825000px;}
.y41{bottom:849.525000px;}
.ye{bottom:851.865000px;}
.yc3{bottom:854.565000px;}
.y64{bottom:861.585000px;}
.y95{bottom:863.610000px;}
.yf7{bottom:867.930000px;}
.y40{bottom:870.630000px;}
.yd{bottom:872.790000px;}
.yc2{bottom:875.670000px;}
.y63{bottom:882.690000px;}
.y94{bottom:884.670000px;}
.yf6{bottom:888.990000px;}
.y3f{bottom:891.690000px;}
.yc{bottom:896.190000px;}
.yc1{bottom:896.730000px;}
.y62{bottom:903.750000px;}
.y93{bottom:905.730000px;}
.yf5{bottom:910.050000px;}
.y3e{bottom:912.750000px;}
.yc0{bottom:917.790000px;}
.yb{bottom:922.470000px;}
.y61{bottom:924.810000px;}
.yf4{bottom:931.110000px;}
.y3d{bottom:933.810000px;}
.y92{bottom:935.790000px;}
.ybf{bottom:936.150000px;}
.ya{bottom:939.210000px;}
.y60{bottom:945.870000px;}
.yf3{bottom:952.170000px;}
.y3c{bottom:954.870000px;}
.y91{bottom:956.850000px;}
.y9{bottom:961.530000px;}
.ybd{bottom:961.710000px;}
.yf2{bottom:973.230000px;}
.y3b{bottom:975.930000px;}
.y90{bottom:977.910000px;}
.y8{bottom:986.550000px;}
.yf1{bottom:994.290000px;}
.y3a{bottom:996.990000px;}
.y8f{bottom:998.970000px;}
.ybc{bottom:1008.330000px;}
.yf0{bottom:1015.350000px;}
.y39{bottom:1018.050000px;}
.y8e{bottom:1020.030000px;}
.y7{bottom:1020.210000px;}
.ybb{bottom:1033.890000px;}
.yef{bottom:1036.410000px;}
.y38{bottom:1039.110000px;}
.y8d{bottom:1041.090000px;}
.yee{bottom:1057.470000px;}
.yba{bottom:1059.450000px;}
.y37{bottom:1060.170000px;}
.y5{bottom:1060.530000px;}
.y8c{bottom:1062.150000px;}
.yed{bottom:1078.530000px;}
.y8b{bottom:1080.510000px;}
.y36{bottom:1081.230000px;}
.yb9{bottom:1085.010000px;}
.y4{bottom:1092.750000px;}
.yec{bottom:1099.590000px;}
.y35{bottom:1102.290000px;}
.y8a{bottom:1106.070000px;}
.yb6{bottom:1111.290000px;}
.yeb{bottom:1120.650000px;}
.y34{bottom:1123.350000px;}
.y3{bottom:1124.790000px;}
.y88{bottom:1132.380000px;}
.yea{bottom:1141.740000px;}
.y33{bottom:1144.440000px;}
.y2{bottom:1157.040000px;}
.y87{bottom:1164.420000px;}
.y32{bottom:1165.500000px;}
.ye9{bottom:1169.820000px;}
.y1{bottom:1191.600000px;}
.ye8{bottom:1191.780000px;}
.y31{bottom:1193.400000px;}
.h13{height:2.864531px;}
.he{height:20.880000px;}
.hb{height:21.060000px;}
.hd{height:21.096000px;}
.h7{height:38.671172px;}
.h10{height:42.120000px;}
.hf{height:42.156000px;}
.hc{height:45.637031px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h9{height:61.423863px;}
.ha{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h11{height:73.722656px;}
.h12{height:84.960000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:22.680000px;}
.w4{width:23.220000px;}
.w18{width:47.016000px;}
.w19{width:50.040000px;}
.w16{width:59.400000px;}
.w15{width:75.996000px;}
.w9{width:79.596000px;}
.w3{width:81.756000px;}
.w1a{width:91.080000px;}
.w11{width:97.740000px;}
.w13{width:98.820000px;}
.we{width:99.180000px;}
.w8{width:102.060000px;}
.w17{width:104.040000px;}
.w12{width:106.596000px;}
.wb{width:142.056000px;}
.w5{width:145.836000px;}
.wc{width:165.270000px;}
.w6{width:169.590000px;}
.w14{width:192.630000px;}
.wf{width:194.790000px;}
.w1b{width:210.810000px;}
.wd{width:231.330000px;}
.w7{width:237.450000px;}
.w10{width:264.675000px;}
.w1c{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.080000px;}
.x20{left:7.740000px;}
.x1{left:53.999987px;}
.x16{left:56.340000px;}
.x5{left:61.020000px;}
.xc{left:70.920000px;}
.x4{left:75.599987px;}
.x3{left:80.999987px;}
.x2{left:108.035987px;}
.x7{left:145.116000px;}
.xd{left:152.850000px;}
.x8{left:170.670000px;}
.xe{left:177.690000px;}
.x1e{left:191.370000px;}
.x17{left:251.310000px;}
.x12{left:257.970000px;}
.x1f{left:264.810000px;}
.x9{left:318.675000px;}
.xf{left:321.915000px;}
.x18{left:329.475000px;}
.x19{left:391.035000px;}
.x10{left:489.345000px;}
.xa{left:490.605000px;}
.x13{left:524.985000px;}
.x1a{left:539.025000px;}
.x14{left:624.885000px;}
.x1b{left:645.405000px;}
.x1c{left:694.590000px;}
.x11{left:723.030000px;}
.xb{left:730.230000px;}
.x15{left:733.650000px;}
.x1d{left:746.970000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.412267pt;}
.ls5{letter-spacing:-0.275733pt;}
.ls16{letter-spacing:-0.069333pt;}
.ls7{letter-spacing:-0.057600pt;}
.lsa{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.053867pt;}
.lsc{letter-spacing:0.057067pt;}
.ls15{letter-spacing:0.066560pt;}
.ls11{letter-spacing:0.124800pt;}
.lsf{letter-spacing:0.154880pt;}
.ls19{letter-spacing:0.155733pt;}
.ls18{letter-spacing:0.159360pt;}
.ls14{letter-spacing:0.165867pt;}
.ls6{letter-spacing:0.169067pt;}
.ls9{letter-spacing:0.272000pt;}
.ls12{letter-spacing:0.375040pt;}
.lsb{letter-spacing:0.426240pt;}
.lsd{letter-spacing:0.549120pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls10{letter-spacing:23.632640pt;}
.lse{letter-spacing:23.760640pt;}
.ls17{letter-spacing:37.840640pt;}
.ls8{letter-spacing:41.040640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsa{word-spacing:-12.170987pt;}
.wsf{word-spacing:-12.164480pt;}
.wse{word-spacing:-12.160853pt;}
.wsd{word-spacing:-12.129920pt;}
.ws9{word-spacing:-12.062187pt;}
.ws5{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.953280pt;}
.ws6{word-spacing:-11.947520pt;}
.wsc{word-spacing:-11.935787pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-892.257280pt;}
._5{margin-left:-517.017387pt;}
._7{margin-left:-3.955200pt;}
._6{margin-left:-2.944000pt;}
._12{margin-left:-2.032853pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._b{width:2.235733pt;}
._c{width:3.725653pt;}
._d{width:5.085013pt;}
._10{width:6.055680pt;}
._13{width:7.171200pt;}
._16{width:8.078293pt;}
._e{width:9.030400pt;}
._f{width:10.113067pt;}
._14{width:11.069867pt;}
._15{width:13.034667pt;}
._1b{width:14.035840pt;}
._17{width:15.192320pt;}
._8{width:16.087680pt;}
._a{width:17.049600pt;}
._9{width:18.326827pt;}
._1c{width:21.454933pt;}
._1a{width:27.623467pt;}
._19{width:47.595520pt;}
._18{width:82.955733pt;}
._11{width:180.122880pt;}
.fs8{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:5.920000pt;}
.y89{bottom:6.080000pt;}
.ya1{bottom:6.106667pt;}
.y101{bottom:6.240000pt;}
.yb7{bottom:15.520000pt;}
.ybe{bottom:24.800000pt;}
.yb8{bottom:24.826667pt;}
.y100{bottom:25.120000pt;}
.yfd{bottom:31.520000pt;}
.yff{bottom:44.000000pt;}
.y6{bottom:51.840000pt;}
.yfe{bottom:62.874667pt;}
.yfc{bottom:80.832000pt;}
.y5f{bottom:84.032000pt;}
.ye7{bottom:85.792000pt;}
.y86{bottom:86.752000pt;}
.y5e{bottom:102.752000pt;}
.ye6{bottom:104.512000pt;}
.y85{bottom:105.472000pt;}
.y30{bottom:110.752000pt;}
.y5d{bottom:121.472000pt;}
.ye5{bottom:123.232000pt;}
.y84{bottom:124.192000pt;}
.yb5{bottom:124.672000pt;}
.y2f{bottom:129.472000pt;}
.y5c{bottom:140.186667pt;}
.ye4{bottom:141.946667pt;}
.y83{bottom:142.906667pt;}
.yb4{bottom:143.386667pt;}
.y2e{bottom:148.186667pt;}
.y5b{bottom:158.906667pt;}
.ye3{bottom:160.666667pt;}
.y82{bottom:161.626667pt;}
.yb3{bottom:162.106667pt;}
.y2d{bottom:166.906667pt;}
.y5a{bottom:177.626667pt;}
.ye2{bottom:179.386667pt;}
.y81{bottom:180.346667pt;}
.yb2{bottom:180.826667pt;}
.y2c{bottom:185.626667pt;}
.y59{bottom:196.346667pt;}
.ye1{bottom:198.106667pt;}
.y80{bottom:199.066667pt;}
.yb1{bottom:199.546667pt;}
.y2b{bottom:204.346667pt;}
.y58{bottom:215.066667pt;}
.yb0{bottom:215.866667pt;}
.ye0{bottom:216.826667pt;}
.y7f{bottom:217.786667pt;}
.y2a{bottom:223.066667pt;}
.y57{bottom:233.786667pt;}
.ydf{bottom:235.546667pt;}
.y7e{bottom:236.506667pt;}
.yaf{bottom:238.586667pt;}
.y29{bottom:241.786667pt;}
.yde{bottom:254.266667pt;}
.y7d{bottom:255.226667pt;}
.y28{bottom:260.506667pt;}
.yae{bottom:261.306667pt;}
.ydd{bottom:272.986667pt;}
.y7c{bottom:273.946667pt;}
.y27{bottom:279.226667pt;}
.yad{bottom:284.026667pt;}
.ydc{bottom:291.746667pt;}
.y7b{bottom:292.706667pt;}
.y26{bottom:297.986667pt;}
.yac{bottom:306.786667pt;}
.ydb{bottom:310.466667pt;}
.y25{bottom:316.706667pt;}
.yda{bottom:329.186667pt;}
.y7a{bottom:330.146667pt;}
.y24{bottom:335.426667pt;}
.yd9{bottom:347.906667pt;}
.y79{bottom:348.866667pt;}
.y23{bottom:353.986667pt;}
.y56{bottom:354.146667pt;}
.yab{bottom:358.626667pt;}
.yd8{bottom:366.626667pt;}
.y78{bottom:367.586667pt;}
.y22{bottom:372.706667pt;}
.y55{bottom:372.866667pt;}
.yaa{bottom:377.346667pt;}
.yd7{bottom:385.346667pt;}
.y77{bottom:386.306667pt;}
.y21{bottom:391.426667pt;}
.y54{bottom:391.586667pt;}
.ya9{bottom:396.066667pt;}
.yd6{bottom:404.066667pt;}
.y76{bottom:405.026667pt;}
.y20{bottom:410.146667pt;}
.y53{bottom:410.306667pt;}
.ya8{bottom:414.786667pt;}
.yd5{bottom:422.786667pt;}
.y52{bottom:429.026667pt;}
.y1f{bottom:430.786667pt;}
.y75{bottom:431.746667pt;}
.ya7{bottom:433.506667pt;}
.yd4{bottom:441.506667pt;}
.y51{bottom:447.746667pt;}
.y1e{bottom:449.666667pt;}
.y74{bottom:450.466667pt;}
.ya6{bottom:452.226667pt;}
.yd3{bottom:460.226667pt;}
.y50{bottom:466.466667pt;}
.y73{bottom:469.186667pt;}
.ya5{bottom:470.946667pt;}
.y1d{bottom:476.386667pt;}
.yd2{bottom:478.946667pt;}
.y4f{bottom:485.186667pt;}
.y72{bottom:487.906667pt;}
.ya4{bottom:489.666667pt;}
.y1c{bottom:495.106667pt;}
.yd1{bottom:497.666667pt;}
.y4e{bottom:503.906667pt;}
.ya2{bottom:505.986667pt;}
.y71{bottom:506.626667pt;}
.y1b{bottom:513.826667pt;}
.yd0{bottom:516.386667pt;}
.y4d{bottom:522.626667pt;}
.y70{bottom:525.346667pt;}
.ya0{bottom:528.546667pt;}
.y1a{bottom:532.573333pt;}
.ycf{bottom:535.133333pt;}
.y4c{bottom:541.373333pt;}
.y19{bottom:551.293333pt;}
.y6f{bottom:552.093333pt;}
.yce{bottom:553.853333pt;}
.y4b{bottom:560.093333pt;}
.y18{bottom:570.013333pt;}
.y6e{bottom:570.653333pt;}
.ycd{bottom:572.573333pt;}
.y4a{bottom:578.653333pt;}
.y9f{bottom:580.573333pt;}
.y17{bottom:588.733333pt;}
.y6d{bottom:589.373333pt;}
.ycc{bottom:591.293333pt;}
.y49{bottom:597.373333pt;}
.y9e{bottom:599.293333pt;}
.y16{bottom:607.453333pt;}
.y6c{bottom:608.093333pt;}
.ycb{bottom:609.853333pt;}
.y48{bottom:616.093333pt;}
.y9d{bottom:617.853333pt;}
.y15{bottom:626.173333pt;}
.y6b{bottom:626.813333pt;}
.yca{bottom:628.573333pt;}
.y47{bottom:634.813333pt;}
.y9c{bottom:636.573333pt;}
.y14{bottom:644.893333pt;}
.y6a{bottom:645.533333pt;}
.yc9{bottom:647.293333pt;}
.y46{bottom:653.533333pt;}
.y9b{bottom:655.293333pt;}
.y13{bottom:663.613333pt;}
.y69{bottom:664.253333pt;}
.yc8{bottom:666.013333pt;}
.y9a{bottom:674.013333pt;}
.y45{bottom:680.253333pt;}
.y12{bottom:682.333333pt;}
.y68{bottom:682.973333pt;}
.yc7{bottom:684.733333pt;}
.y99{bottom:692.733333pt;}
.yfb{bottom:696.573333pt;}
.y44{bottom:698.973333pt;}
.y11{bottom:701.053333pt;}
.y67{bottom:701.693333pt;}
.yc6{bottom:703.453333pt;}
.y98{bottom:711.453333pt;}
.yfa{bottom:715.293333pt;}
.y43{bottom:717.693333pt;}
.y10{bottom:719.773333pt;}
.y66{bottom:720.413333pt;}
.yc5{bottom:722.173333pt;}
.y97{bottom:730.173333pt;}
.yf9{bottom:734.013333pt;}
.y42{bottom:736.413333pt;}
.yf{bottom:738.493333pt;}
.y65{bottom:739.133333pt;}
.yc4{bottom:740.893333pt;}
.y96{bottom:748.893333pt;}
.yf8{bottom:752.733333pt;}
.y41{bottom:755.133333pt;}
.ye{bottom:757.213333pt;}
.yc3{bottom:759.613333pt;}
.y64{bottom:765.853333pt;}
.y95{bottom:767.653333pt;}
.yf7{bottom:771.493333pt;}
.y40{bottom:773.893333pt;}
.yd{bottom:775.813333pt;}
.yc2{bottom:778.373333pt;}
.y63{bottom:784.613333pt;}
.y94{bottom:786.373333pt;}
.yf6{bottom:790.213333pt;}
.y3f{bottom:792.613333pt;}
.yc{bottom:796.613333pt;}
.yc1{bottom:797.093333pt;}
.y62{bottom:803.333333pt;}
.y93{bottom:805.093333pt;}
.yf5{bottom:808.933333pt;}
.y3e{bottom:811.333333pt;}
.yc0{bottom:815.813333pt;}
.yb{bottom:819.973333pt;}
.y61{bottom:822.053333pt;}
.yf4{bottom:827.653333pt;}
.y3d{bottom:830.053333pt;}
.y92{bottom:831.813333pt;}
.ybf{bottom:832.133333pt;}
.ya{bottom:834.853333pt;}
.y60{bottom:840.773333pt;}
.yf3{bottom:846.373333pt;}
.y3c{bottom:848.773333pt;}
.y91{bottom:850.533333pt;}
.y9{bottom:854.693333pt;}
.ybd{bottom:854.853333pt;}
.yf2{bottom:865.093333pt;}
.y3b{bottom:867.493333pt;}
.y90{bottom:869.253333pt;}
.y8{bottom:876.933333pt;}
.yf1{bottom:883.813333pt;}
.y3a{bottom:886.213333pt;}
.y8f{bottom:887.973333pt;}
.ybc{bottom:896.293333pt;}
.yf0{bottom:902.533333pt;}
.y39{bottom:904.933333pt;}
.y8e{bottom:906.693333pt;}
.y7{bottom:906.853333pt;}
.ybb{bottom:919.013333pt;}
.yef{bottom:921.253333pt;}
.y38{bottom:923.653333pt;}
.y8d{bottom:925.413333pt;}
.yee{bottom:939.973333pt;}
.yba{bottom:941.733333pt;}
.y37{bottom:942.373333pt;}
.y5{bottom:942.693333pt;}
.y8c{bottom:944.133333pt;}
.yed{bottom:958.693333pt;}
.y8b{bottom:960.453333pt;}
.y36{bottom:961.093333pt;}
.yb9{bottom:964.453333pt;}
.y4{bottom:971.333333pt;}
.yec{bottom:977.413333pt;}
.y35{bottom:979.813333pt;}
.y8a{bottom:983.173333pt;}
.yb6{bottom:987.813333pt;}
.yeb{bottom:996.133333pt;}
.y34{bottom:998.533333pt;}
.y3{bottom:999.813333pt;}
.y88{bottom:1006.560000pt;}
.yea{bottom:1014.880000pt;}
.y33{bottom:1017.280000pt;}
.y2{bottom:1028.480000pt;}
.y87{bottom:1035.040000pt;}
.y32{bottom:1036.000000pt;}
.ye9{bottom:1039.840000pt;}
.y1{bottom:1059.200000pt;}
.ye8{bottom:1059.360000pt;}
.y31{bottom:1060.800000pt;}
.h13{height:2.546250pt;}
.he{height:18.560000pt;}
.hb{height:18.720000pt;}
.hd{height:18.752000pt;}
.h7{height:34.374375pt;}
.h10{height:37.440000pt;}
.hf{height:37.472000pt;}
.hc{height:40.566250pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h9{height:54.598989pt;}
.ha{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h11{height:65.531250pt;}
.h12{height:75.520000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:20.160000pt;}
.w4{width:20.640000pt;}
.w18{width:41.792000pt;}
.w19{width:44.480000pt;}
.w16{width:52.800000pt;}
.w15{width:67.552000pt;}
.w9{width:70.752000pt;}
.w3{width:72.672000pt;}
.w1a{width:80.960000pt;}
.w11{width:86.880000pt;}
.w13{width:87.840000pt;}
.we{width:88.160000pt;}
.w8{width:90.720000pt;}
.w17{width:92.480000pt;}
.w12{width:94.752000pt;}
.wb{width:126.272000pt;}
.w5{width:129.632000pt;}
.wc{width:146.906667pt;}
.w6{width:150.746667pt;}
.w14{width:171.226667pt;}
.wf{width:173.146667pt;}
.w1b{width:187.386667pt;}
.wd{width:205.626667pt;}
.w7{width:211.066667pt;}
.w10{width:235.266667pt;}
.w1c{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:0.960000pt;}
.x20{left:6.880000pt;}
.x1{left:47.999988pt;}
.x16{left:50.080000pt;}
.x5{left:54.240000pt;}
.xc{left:63.040000pt;}
.x4{left:67.199988pt;}
.x3{left:71.999988pt;}
.x2{left:96.031988pt;}
.x7{left:128.992000pt;}
.xd{left:135.866667pt;}
.x8{left:151.706667pt;}
.xe{left:157.946667pt;}
.x1e{left:170.106667pt;}
.x17{left:223.386667pt;}
.x12{left:229.306667pt;}
.x1f{left:235.386667pt;}
.x9{left:283.266667pt;}
.xf{left:286.146667pt;}
.x18{left:292.866667pt;}
.x19{left:347.586667pt;}
.x10{left:434.973333pt;}
.xa{left:436.093333pt;}
.x13{left:466.653333pt;}
.x1a{left:479.133333pt;}
.x14{left:555.453333pt;}
.x1b{left:573.693333pt;}
.x1c{left:617.413333pt;}
.x11{left:642.693333pt;}
.xb{left:649.093333pt;}
.x15{left:652.133333pt;}
.x1d{left:663.973333pt;}
}




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