
    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_4bb2f53a11df1faa676a48d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.114273;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_98b261e01a381b7d9a8d4392.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675781;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_3b30ddecb70e2d2e330304be.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.122074;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_b82b56aa44114948022536ed.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.862305;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_fafa47f60f68cd3e95dc5905.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.717285;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_70abd6a2c2b8794875928b03.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.853516;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.250014,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250014,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250014,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:8.777400px;}
.v2{vertical-align:12.288695px;}
.v1{vertical-align:17.555299px;}
.ls1d{letter-spacing:-0.019018px;}
.ls20{letter-spacing:-0.014044px;}
.ls1a{letter-spacing:-0.012289px;}
.ls17{letter-spacing:-0.011704px;}
.ls1f{letter-spacing:-0.011411px;}
.ls19{letter-spacing:-0.010533px;}
.ls1c{letter-spacing:-0.007607px;}
.ls25{letter-spacing:-0.006144px;}
.ls1b{letter-spacing:-0.005462px;}
.ls24{letter-spacing:-0.004681px;}
.ls1e{letter-spacing:-0.003804px;}
.ls23{letter-spacing:-0.002048px;}
.ls16{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.002341px;}
.ls5{letter-spacing:0.005267px;}
.ls22{letter-spacing:0.006144px;}
.ls21{letter-spacing:0.007022px;}
.ls3{letter-spacing:0.008192px;}
.lsa{letter-spacing:0.009085px;}
.lsb{letter-spacing:0.009363px;}
.ls2{letter-spacing:0.009564px;}
.ls4{letter-spacing:0.012289px;}
.lsf{letter-spacing:0.014044px;}
.ls6{letter-spacing:0.015215px;}
.ls1{letter-spacing:0.016385px;}
.ls7{letter-spacing:0.018726px;}
.ls15{letter-spacing:0.042133px;}
.ls18{letter-spacing:0.047546px;}
.ls0{letter-spacing:1.433683px;}
.ls10{letter-spacing:186.090375px;}
.ls11{letter-spacing:191.062048px;}
.ls8{letter-spacing:300.801489px;}
.ls9{letter-spacing:341.503143px;}
.lse{letter-spacing:380.707233px;}
.ls12{letter-spacing:458.780730px;}
.ls13{letter-spacing:506.474702px;}
.ls14{letter-spacing:506.475302px;}
.lsd{letter-spacing:750.500571px;}
.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;}
}
.ws2{word-spacing:-22.862266px;}
.ws4{word-spacing:-17.789955px;}
.ws5{word-spacing:-17.765378px;}
.ws8{word-spacing:-16.523048px;}
.ws7{word-spacing:-16.488815px;}
.ws3{word-spacing:-10.512113px;}
.ws9{word-spacing:-10.498069px;}
.ws6{word-spacing:-10.487536px;}
.wsc{word-spacing:-10.168029px;}
.wsb{word-spacing:-10.158666px;}
.ws1{word-spacing:-8.159700px;}
.ws0{word-spacing:-0.142637px;}
.wsa{word-spacing:-0.035111px;}
.wsd{word-spacing:0.000000px;}
._f{margin-left:-9.778164px;}
._0{margin-left:-1.053318px;}
._1{width:1.053318px;}
._2{width:2.715805px;}
._3{width:4.460802px;}
._4{width:5.591363px;}
._e{width:7.475046px;}
._11{width:8.609119px;}
._7{width:10.515039px;}
._12{width:11.541993px;}
._10{width:12.986240px;}
._5{width:14.185267px;}
._8{width:15.270770px;}
._13{width:16.531282px;}
._9{width:18.347043px;}
._6{width:19.363495px;}
._a{width:20.418130px;}
._14{width:39.246195px;}
._d{width:715.276706px;}
._b{width:716.627001px;}
._c{width:733.200959px;}
.fc4{color:rgb(0,128,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,102,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,144);}
.fsd{font-size:20.479998px;}
.fsc{font-size:20.481182px;}
.fs5{font-size:23.407066px;}
.fsb{font-size:26.332949px;}
.fs7{font-size:27.308233px;}
.fsa{font-size:35.110598px;}
.fs8{font-size:38.036482px;}
.fs2{font-size:39.011766px;}
.fs3{font-size:40.962365px;}
.fs9{font-size:46.814131px;}
.fs6{font-size:52.665898px;}
.fs1{font-size:58.517664px;}
.fs4{font-size:95.091204px;}
.fs0{font-size:105.331795px;}
.y0{bottom:0.000000px;}
.yce{bottom:3.072084px;}
.yc2{bottom:3.072110px;}
.y85{bottom:3.072203px;}
.y68{bottom:3.072231px;}
.ydb{bottom:3.072234px;}
.y74{bottom:3.072248px;}
.yc0{bottom:3.218354px;}
.y72{bottom:5.047004px;}
.y83{bottom:5.047154px;}
.y66{bottom:5.772404px;}
.yba{bottom:11.737754px;}
.yd1{bottom:11.737904px;}
.y6b{bottom:13.566404px;}
.y7b{bottom:13.566554px;}
.y5f{bottom:14.291804px;}
.yc6{bottom:20.012654px;}
.y7c{bottom:20.240954px;}
.y9e{bottom:20.885354px;}
.yd2{bottom:21.194654px;}
.y6c{bottom:21.302204px;}
.yb0{bottom:21.881654px;}
.y8b{bottom:21.922454px;}
.y60{bottom:22.006154px;}
.ya9{bottom:23.520404px;}
.y95{bottom:23.690954px;}
.ybb{bottom:24.977504px;}
.y7d{bottom:26.915504px;}
.y9f{bottom:28.204304px;}
.yc7{bottom:28.287404px;}
.y6d{bottom:29.037854px;}
.y61{bottom:29.720504px;}
.yb1{bottom:30.196904px;}
.y8c{bottom:30.278204px;}
.yd3{bottom:30.651704px;}
.y5d{bottom:32.550334px;}
.y79{bottom:32.916034px;}
.yaa{bottom:33.474104px;}
.y7e{bottom:33.589904px;}
.y96{bottom:33.815504px;}
.ya0{bottom:35.522954px;}
.ya7{bottom:35.842084px;}
.y89{bottom:36.207784px;}
.yc8{bottom:36.562154px;}
.y93{bottom:36.573484px;}
.y6e{bottom:36.773504px;}
.y9c{bottom:37.305034px;}
.y62{bottom:37.434854px;}
.ybc{bottom:38.217104px;}
.yb2{bottom:38.512004px;}
.y8d{bottom:38.633804px;}
.y5c{bottom:39.499384px;}
.y78{bottom:39.865084px;}
.yd4{bottom:40.108454px;}
.y7f{bottom:40.264454px;}
.ya6{bottom:42.791134px;}
.ya1{bottom:42.841904px;}
.y88{bottom:43.156834px;}
.yab{bottom:43.427954px;}
.y92{bottom:43.522384px;}
.y97{bottom:43.939904px;}
.y9b{bottom:44.254084px;}
.y6f{bottom:44.509154px;}
.yc9{bottom:44.836904px;}
.y63{bottom:45.149204px;}
.yb3{bottom:46.827254px;}
.y80{bottom:46.938854px;}
.y8e{bottom:46.989554px;}
.yd5{bottom:49.565354px;}
.ya2{bottom:50.160704px;}
.ybd{bottom:51.456704px;}
.y70{bottom:52.244804px;}
.yc5{bottom:52.300084px;}
.yb8{bottom:52.300234px;}
.y64{bottom:52.863554px;}
.yca{bottom:53.111654px;}
.yac{bottom:53.381654px;}
.y81{bottom:53.613404px;}
.y98{bottom:54.064454px;}
.yb4{bottom:55.142354px;}
.y8f{bottom:55.345454px;}
.ya3{bottom:57.479504px;}
.yd6{bottom:59.022254px;}
.yc4{bottom:59.248984px;}
.yb7{bottom:59.249134px;}
.y71{bottom:59.980604px;}
.y82{bottom:60.287804px;}
.y65{bottom:60.577754px;}
.ycb{bottom:61.386554px;}
.yad{bottom:63.335504px;}
.yb5{bottom:63.457454px;}
.y90{bottom:63.701204px;}
.y99{bottom:64.188854px;}
.ybe{bottom:64.696304px;}
.yd9{bottom:64.696454px;}
.ya4{bottom:64.798454px;}
.yd7{bottom:68.479154px;}
.ycc{bottom:69.661154px;}
.y7{bottom:73.606759px;}
.ybf{bottom:77.936054px;}
.y5a{bottom:90.430658px;}
.y4c{bottom:91.162130px;}
.y59{bottom:98.476778px;}
.y4b{bottom:101.768405px;}
.y58{bottom:106.157273px;}
.y4a{bottom:112.374785px;}
.y57{bottom:114.203393px;}
.y49{bottom:122.981075px;}
.y56{bottom:129.930008px;}
.y48{bottom:133.587365px;}
.y55{bottom:137.976233px;}
.y54{bottom:145.656563px;}
.y47{bottom:154.434350px;}
.y53{bottom:161.383313px;}
.y46{bottom:165.040550px;}
.y45{bottom:175.647050px;}
.y52{bottom:177.475613px;}
.y51{bottom:193.202363px;}
.y44{bottom:196.493900px;}
.y50{bottom:200.882663px;}
.y43{bottom:207.100250px;}
.y4f{bottom:216.974963px;}
.y42{bottom:217.706450px;}
.y4e{bottom:224.655563px;}
.y41{bottom:238.919150px;}
.y4d{bottom:241.845076px;}
.y40{bottom:249.159800px;}
.y3f{bottom:259.766150px;}
.y6a{bottom:266.157450px;}
.y3e{bottom:270.372350px;}
.y3d{bottom:280.978850px;}
.y2d{bottom:283.584580px;}
.y3c{bottom:291.585050px;}
.y69{bottom:298.298700px;}
.y73{bottom:299.806800px;}
.y3b{bottom:301.825700px;}
.y2c{bottom:302.237080px;}
.y3a{bottom:312.432050px;}
.y2b{bottom:320.523880px;}
.y39{bottom:323.038250px;}
.y38{bottom:344.982376px;}
.y86{bottom:353.028659px;}
.ye2{bottom:370.126850px;}
.y7a{bottom:373.683600px;}
.yd0{bottom:382.415550px;}
.y2a{bottom:390.562330px;}
.y77{bottom:405.319800px;}
.y84{bottom:405.609000px;}
.y29{bottom:409.214830px;}
.yda{bottom:410.434350px;}
.ycf{bottom:413.320200px;}
.yd8{bottom:417.633300px;}
.y28{bottom:427.501480px;}
.y76{bottom:459.457559px;}
.ydd{bottom:466.680950px;}
.y5e{bottom:476.455350px;}
.y37{bottom:488.259280px;}
.y27{bottom:494.065330px;}
.y35{bottom:502.522859px;}
.y5b{bottom:508.829700px;}
.y67{bottom:510.385650px;}
.y26{bottom:512.717830px;}
.ye1{bottom:523.735700px;}
.y25{bottom:531.004630px;}
.yb9{bottom:536.024400px;}
.ycd{bottom:560.020200px;}
.y75{bottom:563.692259px;}
.yb6{bottom:565.646700px;}
.yc3{bottom:566.524650px;}
.yc1{bottom:571.242300px;}
.y23{bottom:584.539126px;}
.y22{bottom:606.117526px;}
.ydc{bottom:620.289800px;}
.y21{bottom:635.376359px;}
.y36{bottom:642.325330px;}
.y20{bottom:647.811359px;}
.y34{bottom:657.320459px;}
.y1f{bottom:659.880659px;}
.y1e{bottom:672.315509px;}
.y2f{bottom:673.412767px;}
.y1d{bottom:684.384809px;}
.y1c{bottom:696.819896px;}
.y1b{bottom:711.449309px;}
.ydf{bottom:713.643650px;}
.y9d{bottom:722.496150px;}
.y1a{bottom:723.518609px;}
.yaf{bottom:723.837150px;}
.ya8{bottom:723.959100px;}
.y19{bottom:735.953546px;}
.y18{bottom:750.217259px;}
.y9a{bottom:754.254000px;}
.yae{bottom:754.766100px;}
.ya5{bottom:755.716950px;}
.y17{bottom:762.652259px;}
.y16{bottom:775.087259px;}
.y15{bottom:787.156559px;}
.y33{bottom:797.031350px;}
.y14{bottom:799.591559px;}
.y13{bottom:811.660796px;}
.y32{bottom:815.318009px;}
.y12{bottom:826.290209px;}
.y11{bottom:838.725209px;}
.ye0{bottom:840.919550px;}
.y8a{bottom:846.480450px;}
.y94{bottom:848.187150px;}
.y10{bottom:850.794509px;}
.yf{bottom:863.229446px;}
.ye{bottom:878.224576px;}
.y87{bottom:878.238300px;}
.y91{bottom:880.067100px;}
.yd{bottom:911.598059px;}
.y30{bottom:917.724050px;}
.yde{bottom:919.918400px;}
.yc{bottom:924.033059px;}
.yb{bottom:936.468059px;}
.y31{bottom:938.616659px;}
.ya{bottom:948.537359px;}
.y2e{bottom:956.903467px;}
.y9{bottom:960.972296px;}
.y8{bottom:975.967426px;}
.y24{bottom:983.556376px;}
.y5{bottom:1034.816017px;}
.y4{bottom:1065.069684px;}
.y3{bottom:1082.624934px;}
.y2{bottom:1125.461851px;}
.y1{bottom:1156.915051px;}
.y6{bottom:1168.252749px;}
.h18{height:10.344600px;}
.h15{height:12.437250px;}
.h1b{height:14.099850px;}
.h16{height:17.010300px;}
.h14{height:17.011284px;}
.h27{height:17.959950px;}
.h2a{height:17.960100px;}
.h6{height:19.441209px;}
.h11{height:19.441467px;}
.h12{height:19.978296px;}
.hf{height:21.871360px;}
.hd{height:29.161813px;}
.he{height:29.162201px;}
.hb{height:31.591964px;}
.ha{height:31.592385px;}
.h8{height:34.022115px;}
.h4{height:34.022568px;}
.h9{height:34.970097px;}
.h28{height:36.131100px;}
.h2b{height:37.939213px;}
.hc{height:38.882935px;}
.h7{height:43.743302px;}
.h10{height:45.351195px;}
.h19{height:45.716910px;}
.h2{height:48.603668px;}
.h22{height:48.642795px;}
.h1c{height:49.008540px;}
.h1e{height:49.374300px;}
.h3{height:49.957737px;}
.h20{height:50.105760px;}
.h5{height:63.378659px;}
.h25{height:65.100900px;}
.h1a{height:77.901630px;}
.h17{height:78.998835px;}
.h13{height:79.364595px;}
.h23{height:80.949465px;}
.h24{height:81.071370px;}
.h1d{height:81.315120px;}
.h1f{height:81.802830px;}
.h21{height:82.412340px;}
.h1{height:87.486603px;}
.h26{height:98.748555px;}
.h29{height:98.748570px;}
.h0{height:1263.000000px;}
.w6{width:24.868560px;}
.w3{width:25.234290px;}
.w9{width:26.331420px;}
.w12{width:32.182800px;}
.w10{width:66.964410px;}
.w7{width:69.121170px;}
.w4{width:69.157590px;}
.w1{width:69.840885px;}
.wa{width:70.583775px;}
.wc{width:71.996880px;}
.w13{width:72.889110px;}
.we{width:72.889155px;}
.w5{width:129.828540px;}
.wb{width:130.681875px;}
.w2{width:130.925700px;}
.wd{width:131.535240px;}
.wf{width:132.144750px;}
.w8{width:137.142840px;}
.w11{width:166.399950px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x31{left:4.022850px;}
.x23{left:5.120000px;}
.x1e{left:7.021657px;}
.x25{left:10.920349px;}
.x1d{left:12.705943px;}
.x28{left:13.974561px;}
.x20{left:15.139245px;}
.x30{left:16.522950px;}
.x26{left:18.905280px;}
.x21{left:20.586240px;}
.x2a{left:21.928290px;}
.x2b{left:27.375285px;}
.x9{left:62.021715px;}
.x1b{left:64.673145px;}
.x29{left:92.759985px;}
.x2c{left:97.331430px;}
.x1f{left:99.342840px;}
.x22{left:102.245970px;}
.x1{left:133.908838px;}
.xc{left:147.533859px;}
.x24{left:159.282300px;}
.x1c{left:160.427700px;}
.x3{left:175.988076px;}
.x27{left:178.074190px;}
.x2d{left:181.406692px;}
.x4{left:185.538075px;}
.x8{left:188.554201px;}
.xa{left:191.652788px;}
.x1a{left:203.805621px;}
.xb{left:213.957405px;}
.x2{left:216.149561px;}
.x5{left:249.033079px;}
.xe{left:251.187450px;}
.x39{left:443.845650px;}
.x3a{left:461.400000px;}
.x14{left:466.227450px;}
.x13{left:476.955597px;}
.x2f{left:481.148550px;}
.x3d{left:483.781650px;}
.x40{left:499.141650px;}
.x38{left:501.930750px;}
.x11{left:503.530200px;}
.x42{left:514.501650px;}
.x41{left:518.890200px;}
.x12{left:525.695593px;}
.x18{left:533.250225px;}
.x10{left:535.241651px;}
.x17{left:537.702723px;}
.x2e{left:541.246650px;}
.x7{left:549.454560px;}
.xf{left:563.110247px;}
.xd{left:576.620680px;}
.x35{left:579.891300px;}
.x19{left:597.655277px;}
.x3e{left:600.078900px;}
.x16{left:619.248496px;}
.x15{left:624.438493px;}
.x34{left:639.120150px;}
.x3c{left:674.245650px;}
.x33{left:693.994200px;}
.x37{left:715.937100px;}
.x3f{left:718.570200px;}
.x32{left:753.532500px;}
.x3b{left:765.682650px;}
.x36{left:781.117350px;}
.x6{left:782.204550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.802133pt;}
.v2{vertical-align:10.923284pt;}
.v1{vertical-align:15.604710pt;}
.ls1d{letter-spacing:-0.016905pt;}
.ls20{letter-spacing:-0.012484pt;}
.ls1a{letter-spacing:-0.010923pt;}
.ls17{letter-spacing:-0.010403pt;}
.ls1f{letter-spacing:-0.010143pt;}
.ls19{letter-spacing:-0.009363pt;}
.ls1c{letter-spacing:-0.006762pt;}
.ls25{letter-spacing:-0.005461pt;}
.ls1b{letter-spacing:-0.004855pt;}
.ls24{letter-spacing:-0.004161pt;}
.ls1e{letter-spacing:-0.003381pt;}
.ls23{letter-spacing:-0.001820pt;}
.ls16{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.002081pt;}
.ls5{letter-spacing:0.004681pt;}
.ls22{letter-spacing:0.005461pt;}
.ls21{letter-spacing:0.006242pt;}
.ls3{letter-spacing:0.007282pt;}
.lsa{letter-spacing:0.008075pt;}
.lsb{letter-spacing:0.008323pt;}
.ls2{letter-spacing:0.008501pt;}
.ls4{letter-spacing:0.010923pt;}
.lsf{letter-spacing:0.012484pt;}
.ls6{letter-spacing:0.013524pt;}
.ls1{letter-spacing:0.014564pt;}
.ls7{letter-spacing:0.016645pt;}
.ls15{letter-spacing:0.037451pt;}
.ls18{letter-spacing:0.042263pt;}
.ls0{letter-spacing:1.274385pt;}
.ls10{letter-spacing:165.413667pt;}
.ls11{letter-spacing:169.832931pt;}
.ls8{letter-spacing:267.379102pt;}
.ls9{letter-spacing:303.558349pt;}
.lse{letter-spacing:338.406429pt;}
.ls12{letter-spacing:407.805093pt;}
.ls13{letter-spacing:450.199736pt;}
.ls14{letter-spacing:450.200269pt;}
.lsd{letter-spacing:667.111618pt;}
.ws2{word-spacing:-20.322014pt;}
.ws4{word-spacing:-15.813293pt;}
.ws5{word-spacing:-15.791447pt;}
.ws8{word-spacing:-14.687153pt;}
.ws7{word-spacing:-14.656724pt;}
.ws3{word-spacing:-9.344101pt;}
.ws9{word-spacing:-9.331617pt;}
.ws6{word-spacing:-9.322254pt;}
.wsc{word-spacing:-9.038248pt;}
.wsb{word-spacing:-9.029926pt;}
.ws1{word-spacing:-7.253067pt;}
.ws0{word-spacing:-0.126788pt;}
.wsa{word-spacing:-0.031209pt;}
.wsd{word-spacing:0.000000pt;}
._f{margin-left:-8.691701pt;}
._0{margin-left:-0.936283pt;}
._1{width:0.936283pt;}
._2{width:2.414049pt;}
._3{width:3.965157pt;}
._4{width:4.970100pt;}
._e{width:6.644486pt;}
._11{width:7.652550pt;}
._7{width:9.346701pt;}
._12{width:10.259550pt;}
._10{width:11.543324pt;}
._5{width:12.609126pt;}
._8{width:13.574017pt;}
._13{width:14.694473pt;}
._9{width:16.308483pt;}
._6{width:17.211996pt;}
._a{width:18.149449pt;}
._14{width:34.885507pt;}
._d{width:635.801516pt;}
._b{width:637.001778pt;}
._c{width:651.734186pt;}
.fsd{font-size:18.204443pt;}
.fsc{font-size:18.205495pt;}
.fs5{font-size:20.806281pt;}
.fsb{font-size:23.407066pt;}
.fs7{font-size:24.273985pt;}
.fsa{font-size:31.209421pt;}
.fs8{font-size:33.810206pt;}
.fs2{font-size:34.677126pt;}
.fs3{font-size:36.410991pt;}
.fs9{font-size:41.612561pt;}
.fs6{font-size:46.814131pt;}
.fs1{font-size:52.015701pt;}
.fs4{font-size:84.525515pt;}
.fs0{font-size:93.628262pt;}
.y0{bottom:0.000000pt;}
.yce{bottom:2.730742pt;}
.yc2{bottom:2.730764pt;}
.y85{bottom:2.730847pt;}
.y68{bottom:2.730872pt;}
.ydb{bottom:2.730875pt;}
.y74{bottom:2.730887pt;}
.yc0{bottom:2.860759pt;}
.y72{bottom:4.486226pt;}
.y83{bottom:4.486359pt;}
.y66{bottom:5.131026pt;}
.yba{bottom:10.433559pt;}
.yd1{bottom:10.433693pt;}
.y6b{bottom:12.059026pt;}
.y7b{bottom:12.059159pt;}
.y5f{bottom:12.703826pt;}
.yc6{bottom:17.789026pt;}
.y7c{bottom:17.991959pt;}
.y9e{bottom:18.564759pt;}
.yd2{bottom:18.839693pt;}
.y6c{bottom:18.935293pt;}
.yb0{bottom:19.450359pt;}
.y8b{bottom:19.486626pt;}
.y60{bottom:19.561026pt;}
.ya9{bottom:20.907026pt;}
.y95{bottom:21.058626pt;}
.ybb{bottom:22.202226pt;}
.y7d{bottom:23.924893pt;}
.y9f{bottom:25.070493pt;}
.yc7{bottom:25.144359pt;}
.y6d{bottom:25.811426pt;}
.y61{bottom:26.418226pt;}
.yb1{bottom:26.841693pt;}
.y8c{bottom:26.913959pt;}
.yd3{bottom:27.245959pt;}
.y5d{bottom:28.933630pt;}
.y79{bottom:29.258697pt;}
.yaa{bottom:29.754759pt;}
.y7e{bottom:29.857693pt;}
.y96{bottom:30.058226pt;}
.ya0{bottom:31.575959pt;}
.ya7{bottom:31.859630pt;}
.y89{bottom:32.184697pt;}
.yc8{bottom:32.499693pt;}
.y93{bottom:32.509763pt;}
.y6e{bottom:32.687559pt;}
.y9c{bottom:33.160030pt;}
.y62{bottom:33.275426pt;}
.ybc{bottom:33.970759pt;}
.yb2{bottom:34.232893pt;}
.y8d{bottom:34.341159pt;}
.y5c{bottom:35.110563pt;}
.y78{bottom:35.435630pt;}
.yd4{bottom:35.651959pt;}
.y7f{bottom:35.790626pt;}
.ya6{bottom:38.036563pt;}
.ya1{bottom:38.081693pt;}
.y88{bottom:38.361630pt;}
.yab{bottom:38.602626pt;}
.y92{bottom:38.686563pt;}
.y97{bottom:39.057693pt;}
.y9b{bottom:39.336963pt;}
.y6f{bottom:39.563693pt;}
.yc9{bottom:39.855026pt;}
.y63{bottom:40.132626pt;}
.yb3{bottom:41.624226pt;}
.y80{bottom:41.723426pt;}
.y8e{bottom:41.768493pt;}
.yd5{bottom:44.058093pt;}
.ya2{bottom:44.587293pt;}
.ybd{bottom:45.739293pt;}
.y70{bottom:46.439826pt;}
.yc5{bottom:46.488963pt;}
.yb8{bottom:46.489097pt;}
.y64{bottom:46.989826pt;}
.yca{bottom:47.210359pt;}
.yac{bottom:47.450359pt;}
.y81{bottom:47.656359pt;}
.y98{bottom:48.057293pt;}
.yb4{bottom:49.015426pt;}
.y8f{bottom:49.195959pt;}
.ya3{bottom:51.092893pt;}
.yd6{bottom:52.464226pt;}
.yc4{bottom:52.665763pt;}
.yb7{bottom:52.665897pt;}
.y71{bottom:53.316093pt;}
.y82{bottom:53.589159pt;}
.y65{bottom:53.846893pt;}
.ycb{bottom:54.565826pt;}
.yad{bottom:56.298226pt;}
.yb5{bottom:56.406626pt;}
.y90{bottom:56.623293pt;}
.y99{bottom:57.056759pt;}
.ybe{bottom:57.507826pt;}
.yd9{bottom:57.507959pt;}
.ya4{bottom:57.598626pt;}
.yd7{bottom:60.870359pt;}
.ycc{bottom:61.921026pt;}
.y7{bottom:65.428230pt;}
.ybf{bottom:69.276493pt;}
.y5a{bottom:80.382807pt;}
.y4c{bottom:81.033005pt;}
.y59{bottom:87.534914pt;}
.y4b{bottom:90.460805pt;}
.y58{bottom:94.362020pt;}
.y4a{bottom:99.888698pt;}
.y57{bottom:101.514127pt;}
.y49{bottom:109.316511pt;}
.y56{bottom:115.493340pt;}
.y48{bottom:118.744325pt;}
.y55{bottom:122.645540pt;}
.y54{bottom:129.472500pt;}
.y47{bottom:137.274978pt;}
.y53{bottom:143.451834pt;}
.y46{bottom:146.702711pt;}
.y45{bottom:156.130711pt;}
.y52{bottom:157.756100pt;}
.y51{bottom:171.735434pt;}
.y44{bottom:174.661245pt;}
.y50{bottom:178.562367pt;}
.y43{bottom:184.089111pt;}
.y4f{bottom:192.866634pt;}
.y42{bottom:193.516845pt;}
.y4e{bottom:199.693834pt;}
.y41{bottom:212.372578pt;}
.y4d{bottom:214.973401pt;}
.y40{bottom:221.475378pt;}
.y3f{bottom:230.903245pt;}
.y6a{bottom:236.584400pt;}
.y3e{bottom:240.330978pt;}
.y3d{bottom:249.758978pt;}
.y2d{bottom:252.075182pt;}
.y3c{bottom:259.186711pt;}
.y69{bottom:265.154400pt;}
.y73{bottom:266.494933pt;}
.y3b{bottom:268.289511pt;}
.y2c{bottom:268.655182pt;}
.y3a{bottom:277.717378pt;}
.y2b{bottom:284.910115pt;}
.y39{bottom:287.145111pt;}
.y38{bottom:306.651001pt;}
.y86{bottom:313.803252pt;}
.ye2{bottom:329.001645pt;}
.y7a{bottom:332.163200pt;}
.yd0{bottom:339.924933pt;}
.y2a{bottom:347.166515pt;}
.y77{bottom:360.284267pt;}
.y84{bottom:360.541333pt;}
.y29{bottom:363.746515pt;}
.yda{bottom:364.830533pt;}
.ycf{bottom:367.395733pt;}
.yd8{bottom:371.229600pt;}
.y28{bottom:380.001315pt;}
.y76{bottom:408.406719pt;}
.ydd{bottom:414.827511pt;}
.y5e{bottom:423.515867pt;}
.y37{bottom:434.008249pt;}
.y27{bottom:439.169182pt;}
.y35{bottom:446.686986pt;}
.y5b{bottom:452.293067pt;}
.y67{bottom:453.676133pt;}
.y26{bottom:455.749182pt;}
.ye1{bottom:465.542845pt;}
.y25{bottom:472.004115pt;}
.yb9{bottom:476.466133pt;}
.ycd{bottom:497.795733pt;}
.y75{bottom:501.059786pt;}
.yb6{bottom:502.797067pt;}
.yc3{bottom:503.577467pt;}
.yc1{bottom:507.770933pt;}
.y23{bottom:519.590334pt;}
.y22{bottom:538.771134pt;}
.ydc{bottom:551.368711pt;}
.y21{bottom:564.778986pt;}
.y36{bottom:570.955849pt;}
.y20{bottom:575.832319pt;}
.y34{bottom:584.284852pt;}
.y1f{bottom:586.560586pt;}
.y1e{bottom:597.613786pt;}
.y2f{bottom:598.589126pt;}
.y1d{bottom:608.342052pt;}
.y1c{bottom:619.395463pt;}
.y1b{bottom:632.399386pt;}
.ydf{bottom:634.349911pt;}
.y9d{bottom:642.218800pt;}
.y1a{bottom:643.127652pt;}
.yaf{bottom:643.410800pt;}
.ya8{bottom:643.519200pt;}
.y19{bottom:654.180930pt;}
.y18{bottom:666.859786pt;}
.y9a{bottom:670.448000pt;}
.yae{bottom:670.903200pt;}
.ya5{bottom:671.748400pt;}
.y17{bottom:677.913119pt;}
.y16{bottom:688.966452pt;}
.y15{bottom:699.694719pt;}
.y33{bottom:708.472311pt;}
.y14{bottom:710.748052pt;}
.y13{bottom:721.476263pt;}
.y32{bottom:724.727119pt;}
.y12{bottom:734.480186pt;}
.y11{bottom:745.533519pt;}
.ye0{bottom:747.484045pt;}
.y8a{bottom:752.427067pt;}
.y94{bottom:753.944133pt;}
.y10{bottom:756.261786pt;}
.yf{bottom:767.315063pt;}
.ye{bottom:780.644067pt;}
.y87{bottom:780.656267pt;}
.y91{bottom:782.281867pt;}
.yd{bottom:810.309386pt;}
.y30{bottom:815.754711pt;}
.yde{bottom:817.705245pt;}
.yc{bottom:821.362719pt;}
.yb{bottom:832.416052pt;}
.y31{bottom:834.325919pt;}
.ya{bottom:843.144319pt;}
.y2e{bottom:850.580860pt;}
.y9{bottom:854.197597pt;}
.y8{bottom:867.526601pt;}
.y24{bottom:874.272334pt;}
.y5{bottom:919.836459pt;}
.y4{bottom:946.728608pt;}
.y3{bottom:962.333275pt;}
.y2{bottom:1000.410534pt;}
.y1{bottom:1028.368934pt;}
.y6{bottom:1038.446888pt;}
.h18{height:9.195200pt;}
.h15{height:11.055333pt;}
.h1b{height:12.533200pt;}
.h16{height:15.120267pt;}
.h14{height:15.121141pt;}
.h27{height:15.964400pt;}
.h2a{height:15.964533pt;}
.h6{height:17.281074pt;}
.h11{height:17.281304pt;}
.h12{height:17.758486pt;}
.hf{height:19.441209pt;}
.hd{height:25.921611pt;}
.he{height:25.921957pt;}
.hb{height:28.081746pt;}
.ha{height:28.082120pt;}
.h8{height:30.241880pt;}
.h4{height:30.242283pt;}
.h9{height:31.084530pt;}
.h28{height:32.116533pt;}
.h2b{height:33.723745pt;}
.hc{height:34.562609pt;}
.h7{height:38.882935pt;}
.h10{height:40.312173pt;}
.h19{height:40.637253pt;}
.h2{height:43.203261pt;}
.h22{height:43.238040pt;}
.h1c{height:43.563147pt;}
.h1e{height:43.888267pt;}
.h3{height:44.406877pt;}
.h20{height:44.538453pt;}
.h5{height:56.336586pt;}
.h25{height:57.867467pt;}
.h1a{height:69.245893pt;}
.h17{height:70.221187pt;}
.h13{height:70.546307pt;}
.h23{height:71.955080pt;}
.h24{height:72.063440pt;}
.h1d{height:72.280107pt;}
.h1f{height:72.713627pt;}
.h21{height:73.255413pt;}
.h1{height:77.765870pt;}
.h26{height:87.776493pt;}
.h29{height:87.776507pt;}
.h0{height:1122.666667pt;}
.w6{width:22.105387pt;}
.w3{width:22.430480pt;}
.w9{width:23.405707pt;}
.w12{width:28.606933pt;}
.w10{width:59.523920pt;}
.w7{width:61.441040pt;}
.w4{width:61.473413pt;}
.w1{width:62.080787pt;}
.wa{width:62.741133pt;}
.wc{width:63.997227pt;}
.w13{width:64.790320pt;}
.we{width:64.790360pt;}
.w5{width:115.403147pt;}
.wb{width:116.161667pt;}
.w2{width:116.378400pt;}
.wd{width:116.920213pt;}
.wf{width:117.462000pt;}
.w8{width:121.904747pt;}
.w11{width:147.911067pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x31{left:3.575867pt;}
.x23{left:4.551111pt;}
.x1e{left:6.241473pt;}
.x25{left:9.706977pt;}
.x1d{left:11.294171pt;}
.x28{left:12.421832pt;}
.x20{left:13.457107pt;}
.x30{left:14.687067pt;}
.x26{left:16.804693pt;}
.x21{left:18.298880pt;}
.x2a{left:19.491813pt;}
.x2b{left:24.333587pt;}
.x9{left:55.130413pt;}
.x1b{left:57.487240pt;}
.x29{left:82.453320pt;}
.x2c{left:86.516827pt;}
.x1f{left:88.304747pt;}
.x22{left:90.885307pt;}
.x1{left:119.030078pt;}
.xc{left:131.141208pt;}
.x24{left:141.584267pt;}
.x1c{left:142.602400pt;}
.x3{left:156.433845pt;}
.x27{left:158.288169pt;}
.x2d{left:161.250393pt;}
.x4{left:164.922733pt;}
.x8{left:167.603734pt;}
.xa{left:170.358034pt;}
.x1a{left:181.160552pt;}
.xb{left:190.184360pt;}
.x2{left:192.132943pt;}
.x5{left:221.362737pt;}
.xe{left:223.277733pt;}
.x39{left:394.529467pt;}
.x3a{left:410.133333pt;}
.x14{left:414.424400pt;}
.x13{left:423.960531pt;}
.x2f{left:427.687600pt;}
.x3d{left:430.028133pt;}
.x40{left:443.681467pt;}
.x38{left:446.160667pt;}
.x11{left:447.582400pt;}
.x42{left:457.334800pt;}
.x41{left:461.235733pt;}
.x12{left:467.284972pt;}
.x18{left:474.000200pt;}
.x10{left:475.770356pt;}
.x17{left:477.957976pt;}
.x2e{left:481.108133pt;}
.x7{left:488.404054pt;}
.xf{left:500.542442pt;}
.xd{left:512.551715pt;}
.x35{left:515.458933pt;}
.x19{left:531.249135pt;}
.x3e{left:533.403467pt;}
.x16{left:550.443107pt;}
.x15{left:555.056438pt;}
.x34{left:568.106800pt;}
.x3c{left:599.329467pt;}
.x33{left:616.883733pt;}
.x37{left:636.388533pt;}
.x3f{left:638.729067pt;}
.x32{left:669.806667pt;}
.x3b{left:680.606800pt;}
.x36{left:694.326533pt;}
.x6{left:695.292933pt;}
}




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