
    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_d1fb1218f1fdec4bbd46b119.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_9622e9c574bb39dbe45d377a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_bb453ad6c71d420bdc2c4c91.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_c9faee250d7a36321ba544ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.765625;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_574de88b5cd6eed4ef1256a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926758;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_745a9e12b10295912512c8dd.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_246da6452a2f15e4993820d2.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:69.839972px;}
.v4{vertical-align:107.999957px;}
.v1{vertical-align:134.639946px;}
.v5{vertical-align:140.399944px;}
.v3{vertical-align:169.199932px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.037441px;}
.ls8{letter-spacing:0.037617px;}
.ls7{letter-spacing:0.216000px;}
.ls5{letter-spacing:29.735988px;}
.ls3{letter-spacing:44.135982px;}
.ls4{letter-spacing:407.663837px;}
.ls2{letter-spacing:476.783809px;}
.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;}
}
.ws9{word-spacing:-107.999957px;}
.ws0{word-spacing:-53.442699px;}
.wsf{word-spacing:-40.031984px;}
.wsb{word-spacing:-33.426707px;}
.wse{word-spacing:-31.625267px;}
.wsd{word-spacing:-30.023988px;}
.ws24{word-spacing:-26.621269px;}
.ws11{word-spacing:-25.019990px;}
.ws12{word-spacing:-23.418711px;}
.ws25{word-spacing:-4.266715px;}
.ws2b{word-spacing:-3.080187px;}
.ws5{word-spacing:-2.906681px;}
.ws2f{word-spacing:-2.826721px;}
.ws28{word-spacing:-2.197400px;}
.ws2e{word-spacing:-2.197315px;}
.wsa{word-spacing:-1.856143px;}
.ws3{word-spacing:-1.295999px;}
.ws27{word-spacing:-0.791964px;}
.ws34{word-spacing:-0.576000px;}
.ws29{word-spacing:-0.288176px;}
.ws2d{word-spacing:-0.216000px;}
.ws31{word-spacing:-0.018672px;}
.ws1{word-spacing:0.000000px;}
.ws23{word-spacing:0.251964px;}
.wsc{word-spacing:0.288000px;}
.ws8{word-spacing:0.378731px;}
.ws4{word-spacing:0.488181px;}
.ws2a{word-spacing:0.503928px;}
.ws2{word-spacing:1.583999px;}
.ws35{word-spacing:2.015999px;}
.ws1a{word-spacing:2.807999px;}
.ws16{word-spacing:7.513342px;}
.ws17{word-spacing:12.168031px;}
.ws15{word-spacing:12.707855px;}
.ws13{word-spacing:12.707995px;}
.ws1b{word-spacing:12.887855px;}
.ws1d{word-spacing:12.887959px;}
.ws14{word-spacing:19.033013px;}
.ws1c{word-spacing:19.033178px;}
.ws20{word-spacing:28.547919px;}
.ws21{word-spacing:33.433158px;}
.ws1e{word-spacing:37.752689px;}
.ws22{word-spacing:40.248020px;}
.ws1f{word-spacing:43.451839px;}
.ws7{word-spacing:64.519923px;}
.ws19{word-spacing:78.407969px;}
.ws18{word-spacing:83.112836px;}
.ws33{word-spacing:214.912559px;}
.ws6{word-spacing:263.319707px;}
.ws26{word-spacing:265.653311px;}
.ws32{word-spacing:670.300927px;}
.ws2c{word-spacing:740.133064px;}
.ws10{word-spacing:836.207666px;}
.ws30{word-spacing:1118.132894px;}
._1f{margin-left:-11.451832px;}
._8{margin-left:-10.423015px;}
._c{margin-left:-9.253028px;}
._6{margin-left:-7.268108px;}
._d{margin-left:-6.155929px;}
._5{margin-left:-5.148722px;}
._1{margin-left:-3.240175px;}
._a{margin-left:-2.041326px;}
._0{margin-left:-1.010830px;}
._2{width:1.021684px;}
._4{width:2.217849px;}
._12{width:3.496084px;}
._f{width:20.321163px;}
._9{width:21.712783px;}
._16{width:24.502613px;}
._e{width:25.704008px;}
._20{width:27.682481px;}
._3{width:29.504998px;}
._b{width:31.365548px;}
._7{width:32.426522px;}
._1e{width:35.135986px;}
._22{width:36.465625px;}
._1d{width:38.591985px;}
._10{width:41.380895px;}
._11{width:42.729544px;}
._15{width:44.821834px;}
._13{width:109.172634px;}
._14{width:120.802945px;}
._1a{width:769.721628px;}
._21{width:778.034519px;}
._19{width:781.653410px;}
._17{width:859.076162px;}
._1b{width:1162.896015px;}
._1c{width:1182.582247px;}
._18{width:1312.767547px;}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(101,0,101);}
.fc1{color:rgb(46,0,21);}
.fc0{color:rgb(187,27,96);}
.fsc{font-size:64.799974px;}
.fsb{font-size:70.559972px;}
.fsa{font-size:71.999971px;}
.fs6{font-size:84.239966px;}
.fs9{font-size:89.999964px;}
.fs1{font-size:95.759962px;}
.fs5{font-size:107.999957px;}
.fs8{font-size:113.759954px;}
.fs2{font-size:120.239952px;}
.fsd{font-size:131.759947px;}
.fse{font-size:138.239945px;}
.fs3{font-size:143.999942px;}
.fs4{font-size:167.759933px;}
.fs0{font-size:192.239923px;}
.fs7{font-size:215.999914px;}
.fsf{font-size:264.239894px;}
.y0{bottom:0.000000px;}
.y73{bottom:88.980321px;}
.y8f{bottom:102.300316px;}
.ya1{bottom:113.460312px;}
.y72{bottom:126.780306px;}
.y7b{bottom:131.820304px;}
.y37{bottom:132.000304px;}
.y5e{bottom:135.060303px;}
.y28{bottom:135.780303px;}
.y98{bottom:148.200298px;}
.y75{bottom:152.520296px;}
.ya0{bottom:153.060296px;}
.y8e{bottom:161.700292px;}
.y71{bottom:164.580291px;}
.y36{bottom:168.000290px;}
.y27{bottom:168.180290px;}
.y8b{bottom:170.880289px;}
.yac{bottom:179.160285px;}
.y5d{bottom:179.700285px;}
.y4c{bottom:181.140285px;}
.y96{bottom:195.720279px;}
.yb2{bottom:198.420278px;}
.y70{bottom:202.380276px;}
.y97{bottom:207.600274px;}
.y4b{bottom:208.140274px;}
.y9d{bottom:211.920272px;}
.y89{bottom:214.980271px;}
.y54{bottom:215.160271px;}
.y45{bottom:219.840269px;}
.yb1{bottom:230.820265px;}
.y42{bottom:232.440264px;}
.ya6{bottom:233.880263px;}
.y52{bottom:237.660262px;}
.y3c{bottom:237.840262px;}
.y6f{bottom:240.180261px;}
.y5c{bottom:240.720261px;}
.y16{bottom:241.800260px;}
.y53{bottom:247.560258px;}
.y44{bottom:252.240256px;}
.y7e{bottom:257.280254px;}
.y31{bottom:262.500252px;}
.y41{bottom:264.840251px;}
.ya5{bottom:277.080246px;}
.y6e{bottom:277.980246px;}
.y76{bottom:278.340246px;}
.y5b{bottom:280.500245px;}
.y3b{bottom:281.040245px;}
.yab{bottom:285.360243px;}
.y6d{bottom:288.780241px;}
.y9c{bottom:291.120241px;}
.y15{bottom:295.800239px;}
.yf{bottom:307.860234px;}
.y25{bottom:308.580234px;}
.y1b{bottom:315.240231px;}
.y74{bottom:315.780231px;}
.ya8{bottom:316.140231px;}
.y88{bottom:321.900228px;}
.y4d{bottom:323.340228px;}
.y9b{bottom:323.520228px;}
.y3a{bottom:324.240227px;}
.y6c{bottom:325.320227px;}
.y8d{bottom:325.860227px;}
.yaa{bottom:328.560226px;}
.y85{bottom:334.500223px;}
.ye{bottom:336.660222px;}
.y5a{bottom:341.880220px;}
.y95{bottom:351.780216px;}
.y87{bottom:354.300215px;}
.y8c{bottom:358.260214px;}
.y92{bottom:360.780213px;}
.y7f{bottom:362.220212px;}
.y35{bottom:364.020211px;}
.yd{bottom:365.460211px;}
.y84{bottom:366.900210px;}
.y24{bottom:370.500209px;}
.y1e{bottom:373.380208px;}
.y14{bottom:374.640207px;}
.yb4{bottom:381.480204px;}
.y94{bottom:384.180203px;}
.y2d{bottom:388.680202px;}
.y59{bottom:391.200201px;}
.y6a{bottom:391.380200px;}
.y91{bottom:393.180200px;}
.yc{bottom:394.260199px;}
.y51{bottom:395.520199px;}
.yb3{bottom:397.140198px;}
.y34{bottom:400.020197px;}
.y43{bottom:401.460196px;}
.y23{bottom:402.900196px;}
.y77{bottom:404.160195px;}
.y2c{bottom:413.880191px;}
.y1d{bottom:422.700188px;}
.y50{bottom:427.920186px;}
.y69{bottom:429.180185px;}
.y4a{bottom:430.800185px;}
.y13{bottom:432.240184px;}
.y2b{bottom:439.080181px;}
.y83{bottom:439.260181px;}
.y26{bottom:440.160181px;}
.y4f{bottom:442.860180px;}
.y8{bottom:444.300179px;}
.ya9{bottom:446.280178px;}
.yb5{bottom:457.440174px;}
.y2{bottom:461.040173px;}
.ya4{bottom:462.120172px;}
.y49{bottom:463.200172px;}
.y2a{bottom:464.820171px;}
.y7d{bottom:466.440170px;}
.y68{bottom:466.980170px;}
.y7c{bottom:469.680169px;}
.y58{bottom:469.860169px;}
.y7{bottom:473.100168px;}
.y9f{bottom:474.180167px;}
.y33{bottom:481.560164px;}
.y12{bottom:489.840161px;}
.y82{bottom:493.440160px;}
.y29{bottom:493.620160px;}
.y6{bottom:501.900156px;}
.y18{bottom:502.080156px;}
.y86{bottom:503.520156px;}
.y67{bottom:504.780155px;}
.ya3{bottom:505.320155px;}
.y9e{bottom:506.580154px;}
.y20{bottom:513.780151px;}
.y32{bottom:517.560150px;}
.y1{bottom:518.640150px;}
.y57{bottom:519.180149px;}
.y78{bottom:529.980145px;}
.y90{bottom:542.040140px;}
.y66{bottom:542.580140px;}
.y11{bottom:547.440138px;}
.y39{bottom:549.240137px;}
.y17{bottom:553.380136px;}
.y5{bottom:559.500133px;}
.y1f{bottom:563.100132px;}
.y3d{bottom:569.760129px;}
.y80{bottom:571.920128px;}
.yaf{bottom:574.080127px;}
.y48{bottom:576.780126px;}
.y6b{bottom:580.380125px;}
.y40{bottom:582.180124px;}
.y4{bottom:588.300122px;}
.y65{bottom:589.920121px;}
.y38{bottom:592.440120px;}
.y10{bottom:605.040115px;}
.yae{bottom:606.480114px;}
.y30{bottom:614.040111px;}
.y3f{bottom:614.580111px;}
.y22{bottom:614.760111px;}
.y3{bottom:617.100110px;}
.y47{bottom:619.980109px;}
.y56{bottom:628.980105px;}
.y4e{bottom:640.320101px;}
.y9a{bottom:644.100099px;}
.y79{bottom:655.800095px;}
.y63{bottom:655.980095px;}
.yb{bottom:659.400093px;}
.y21{bottom:659.760093px;}
.y55{bottom:661.380092px;}
.yad{bottom:661.560092px;}
.y19{bottom:666.420090px;}
.y1c{bottom:669.480089px;}
.ya7{bottom:674.700087px;}
.y8a{bottom:676.320086px;}
.y81{bottom:676.680086px;}
.y99{bottom:680.100085px;}
.ya{bottom:688.200082px;}
.y93{bottom:688.560082px;}
.yb0{bottom:691.620080px;}
.y62{bottom:693.780079px;}
.y61{bottom:704.580075px;}
.y2f{bottom:713.580072px;}
.y9{bottom:717.000070px;}
.y64{bottom:731.580064px;}
.y60{bottom:741.120061px;}
.y2e{bottom:749.580057px;}
.y46{bottom:763.260052px;}
.y1a{bottom:763.440052px;}
.ya2{bottom:765.060051px;}
.y3e{bottom:766.140051px;}
.y7a{bottom:781.620044px;}
.y5f{bottom:815.460031px;}
.h12{height:63.597631px;}
.h10{height:69.250754px;}
.h11{height:71.111222px;}
.he{height:75.093720px;}
.h8{height:87.859652px;}
.hb{height:93.867150px;}
.h2{height:99.874648px;}
.h6{height:112.640580px;}
.h9{height:118.648078px;}
.h3{height:125.406512px;}
.h13{height:137.421508px;}
.h15{height:144.179942px;}
.h4{height:150.187440px;}
.h7{height:165.374934px;}
.h5{height:174.968368px;}
.hf{height:195.859609px;}
.h1{height:200.500232px;}
.hc{height:225.281160px;}
.ha{height:260.046458px;}
.h16{height:275.593952px;}
.hd{height:281.840512px;}
.h14{height:290.587384px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x46{left:106.006458px;}
.x68{left:131.926447px;}
.x44{left:137.865845px;}
.x43{left:140.565844px;}
.x4d{left:147.585841px;}
.x5b{left:154.066438px;}
.x1{left:157.666437px;}
.x4{left:161.986435px;}
.x3{left:166.666433px;}
.x5{left:170.266432px;}
.x8{left:174.946430px;}
.x6{left:176.206430px;}
.x5d{left:178.726429px;}
.x74{left:185.566426px;}
.x36{left:189.526424px;}
.x9{left:195.826422px;}
.x4b{left:207.346417px;}
.x70{left:208.426417px;}
.x2b{left:210.586416px;}
.x72{left:214.546414px;}
.x4a{left:216.166414px;}
.x1f{left:219.766412px;}
.x5e{left:220.846412px;}
.x59{left:224.986410px;}
.x7c{left:226.066410px;}
.x77{left:227.506409px;}
.x69{left:229.306408px;}
.x2f{left:230.926408px;}
.x30{left:232.906407px;}
.x2a{left:238.846404px;}
.x3e{left:241.006404px;}
.x7{left:242.626403px;}
.x71{left:244.966402px;}
.x1e{left:249.646400px;}
.x6e{left:251.446399px;}
.x55{left:257.026397px;}
.x1c{left:259.726396px;}
.x17{left:261.346395px;}
.x37{left:264.406394px;}
.x34{left:265.666394px;}
.x76{left:270.346392px;}
.x58{left:272.866391px;}
.x1d{left:276.106390px;}
.x6d{left:278.086389px;}
.x38{left:279.346388px;}
.x14{left:285.286386px;}
.x64{left:290.686384px;}
.x5f{left:295.186382px;}
.x54{left:299.146380px;}
.x7d{left:300.406380px;}
.x6a{left:303.646379px;}
.x13{left:305.806378px;}
.xb{left:307.426377px;}
.x67{left:312.466375px;}
.x57{left:314.986374px;}
.x3b{left:319.666372px;}
.x7f{left:322.366371px;}
.x6b{left:325.426370px;}
.x1b{left:348.106361px;}
.x66{left:354.406358px;}
.x39{left:358.186357px;}
.x7e{left:364.306354px;}
.x41{left:366.646353px;}
.x78{left:368.986352px;}
.x40{left:372.946351px;}
.x2c{left:377.806349px;}
.x3c{left:381.766347px;}
.x4c{left:386.086346px;}
.x4f{left:388.426345px;}
.x3f{left:390.226344px;}
.x16{left:397.786341px;}
.x18{left:399.046340px;}
.x45{left:436.846325px;}
.x19{left:438.286325px;}
.x1a{left:442.246323px;}
.x6f{left:444.586322px;}
.x11{left:446.926321px;}
.xf{left:454.306318px;}
.xd{left:465.646314px;}
.xc{left:468.346313px;}
.x47{left:470.866312px;}
.x2{left:482.746307px;}
.x56{left:484.186306px;}
.xe{left:491.566303px;}
.x2e{left:528.826288px;}
.x53{left:536.926285px;}
.x33{left:545.566282px;}
.xa{left:549.526280px;}
.x3a{left:555.646278px;}
.x10{left:599.746260px;}
.x12{left:622.426251px;}
.x5c{left:629.626248px;}
.x35{left:674.266230px;}
.x73{left:691.726223px;}
.x7b{left:712.426215px;}
.x63{left:715.666214px;}
.x5a{left:750.766200px;}
.x22{left:752.386199px;}
.x25{left:754.726198px;}
.x27{left:771.286191px;}
.x60{left:772.906191px;}
.x20{left:786.226186px;}
.x28{left:793.066183px;}
.x26{left:795.226182px;}
.x23{left:796.846181px;}
.x21{left:799.006180px;}
.x65{left:804.226178px;}
.x24{left:805.306178px;}
.x2d{left:816.106174px;}
.x29{left:820.786172px;}
.x79{left:840.226164px;}
.x61{left:843.466163px;}
.x51{left:851.926159px;}
.x7a{left:853.186159px;}
.x62{left:856.426157px;}
.x31{left:860.566156px;}
.x52{left:864.886154px;}
.x75{left:869.926152px;}
.x32{left:873.526151px;}
.x6c{left:877.666149px;}
.x3d{left:938.146125px;}
.x15{left:997.006101px;}
.x49{left:1010.146096px;}
.x48{left:1015.906094px;}
.x4e{left:1024.906090px;}
.x42{left:1042.546083px;}
.x50{left:1052.626079px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:62.079975pt;}
.v4{vertical-align:95.999962pt;}
.v1{vertical-align:119.679952pt;}
.v5{vertical-align:124.799950pt;}
.v3{vertical-align:150.399940pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.033281pt;}
.ls8{letter-spacing:0.033438pt;}
.ls7{letter-spacing:0.192000pt;}
.ls5{letter-spacing:26.431989pt;}
.ls3{letter-spacing:39.231984pt;}
.ls4{letter-spacing:362.367855pt;}
.ls2{letter-spacing:423.807830pt;}
.ws9{word-spacing:-95.999962pt;}
.ws0{word-spacing:-47.504621pt;}
.wsf{word-spacing:-35.583986pt;}
.wsb{word-spacing:-29.712628pt;}
.wse{word-spacing:-28.111349pt;}
.wsd{word-spacing:-26.687989pt;}
.ws24{word-spacing:-23.663351pt;}
.ws11{word-spacing:-22.239991pt;}
.ws12{word-spacing:-20.816632pt;}
.ws25{word-spacing:-3.792635pt;}
.ws2b{word-spacing:-2.737944pt;}
.ws5{word-spacing:-2.583716pt;}
.ws2f{word-spacing:-2.512641pt;}
.ws28{word-spacing:-1.953244pt;}
.ws2e{word-spacing:-1.953169pt;}
.wsa{word-spacing:-1.649905pt;}
.ws3{word-spacing:-1.152000pt;}
.ws27{word-spacing:-0.703968pt;}
.ws34{word-spacing:-0.512000pt;}
.ws29{word-spacing:-0.256156pt;}
.ws2d{word-spacing:-0.192000pt;}
.ws31{word-spacing:-0.016597pt;}
.ws1{word-spacing:0.000000pt;}
.ws23{word-spacing:0.223968pt;}
.wsc{word-spacing:0.256000pt;}
.ws8{word-spacing:0.336649pt;}
.ws4{word-spacing:0.433939pt;}
.ws2a{word-spacing:0.447936pt;}
.ws2{word-spacing:1.407999pt;}
.ws35{word-spacing:1.791999pt;}
.ws1a{word-spacing:2.495999pt;}
.ws16{word-spacing:6.678526pt;}
.ws17{word-spacing:10.816028pt;}
.ws15{word-spacing:11.295871pt;}
.ws13{word-spacing:11.295995pt;}
.ws1b{word-spacing:11.455871pt;}
.ws1d{word-spacing:11.455963pt;}
.ws14{word-spacing:16.918234pt;}
.ws1c{word-spacing:16.918380pt;}
.ws20{word-spacing:25.375928pt;}
.ws21{word-spacing:29.718363pt;}
.ws1e{word-spacing:33.557946pt;}
.ws22{word-spacing:35.776018pt;}
.ws1f{word-spacing:38.623857pt;}
.ws7{word-spacing:57.351043pt;}
.ws19{word-spacing:69.695972pt;}
.ws18{word-spacing:73.878076pt;}
.ws33{word-spacing:191.033386pt;}
.ws6{word-spacing:234.061962pt;}
.ws26{word-spacing:236.136276pt;}
.ws32{word-spacing:595.823046pt;}
.ws2c{word-spacing:657.896057pt;}
.ws10{word-spacing:743.295703pt;}
.ws30{word-spacing:993.895906pt;}
._1f{margin-left:-10.179406pt;}
._8{margin-left:-9.264902pt;}
._c{margin-left:-8.224914pt;}
._6{margin-left:-6.460540pt;}
._d{margin-left:-5.471936pt;}
._5{margin-left:-4.576641pt;}
._1{margin-left:-2.880156pt;}
._a{margin-left:-1.814512pt;}
._0{margin-left:-0.898516pt;}
._2{width:0.908163pt;}
._4{width:1.971421pt;}
._12{width:3.107630pt;}
._f{width:18.063256pt;}
._9{width:19.300251pt;}
._16{width:21.780101pt;}
._e{width:22.848007pt;}
._20{width:24.606650pt;}
._3{width:26.226665pt;}
._b{width:27.880487pt;}
._7{width:28.823575pt;}
._1e{width:31.231988pt;}
._22{width:32.413889pt;}
._1d{width:34.303986pt;}
._10{width:36.783018pt;}
._11{width:37.981817pt;}
._15{width:39.841630pt;}
._13{width:97.042341pt;}
._14{width:107.380396pt;}
._1a{width:684.197003pt;}
._21{width:691.586239pt;}
._19{width:694.803031pt;}
._17{width:763.623256pt;}
._1b{width:1033.685347pt;}
._1c{width:1051.184220pt;}
._18{width:1166.904486pt;}
.fsc{font-size:57.599977pt;}
.fsb{font-size:62.719975pt;}
.fsa{font-size:63.999974pt;}
.fs6{font-size:74.879970pt;}
.fs9{font-size:79.999968pt;}
.fs1{font-size:85.119966pt;}
.fs5{font-size:95.999962pt;}
.fs8{font-size:101.119960pt;}
.fs2{font-size:106.879957pt;}
.fsd{font-size:117.119953pt;}
.fse{font-size:122.879951pt;}
.fs3{font-size:127.999949pt;}
.fs4{font-size:149.119940pt;}
.fs0{font-size:170.879932pt;}
.fs7{font-size:191.999923pt;}
.fsf{font-size:234.879906pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:79.093619pt;}
.y8f{bottom:90.933614pt;}
.ya1{bottom:100.853610pt;}
.y72{bottom:112.693606pt;}
.y7b{bottom:117.173604pt;}
.y37{bottom:117.333604pt;}
.y5e{bottom:120.053603pt;}
.y28{bottom:120.693602pt;}
.y98{bottom:131.733598pt;}
.y75{bottom:135.573596pt;}
.ya0{bottom:136.053596pt;}
.y8e{bottom:143.733593pt;}
.y71{bottom:146.293592pt;}
.y36{bottom:149.333591pt;}
.y27{bottom:149.493591pt;}
.y8b{bottom:151.893590pt;}
.yac{bottom:159.253587pt;}
.y5d{bottom:159.733587pt;}
.y4c{bottom:161.013586pt;}
.y96{bottom:173.973581pt;}
.yb2{bottom:176.373580pt;}
.y70{bottom:179.893579pt;}
.y97{bottom:184.533577pt;}
.y4b{bottom:185.013577pt;}
.y9d{bottom:188.373575pt;}
.y89{bottom:191.093574pt;}
.y54{bottom:191.253574pt;}
.y45{bottom:195.413573pt;}
.yb1{bottom:205.173569pt;}
.y42{bottom:206.613568pt;}
.ya6{bottom:207.893568pt;}
.y52{bottom:211.253566pt;}
.y3c{bottom:211.413566pt;}
.y6f{bottom:213.493565pt;}
.y5c{bottom:213.973565pt;}
.y16{bottom:214.933565pt;}
.y53{bottom:220.053563pt;}
.y44{bottom:224.213561pt;}
.y7e{bottom:228.693559pt;}
.y31{bottom:233.333557pt;}
.y41{bottom:235.413557pt;}
.ya5{bottom:246.293552pt;}
.y6e{bottom:247.093552pt;}
.y76{bottom:247.413552pt;}
.y5b{bottom:249.333551pt;}
.y3b{bottom:249.813551pt;}
.yab{bottom:253.653549pt;}
.y6d{bottom:256.693548pt;}
.y9c{bottom:258.773547pt;}
.y15{bottom:262.933545pt;}
.yf{bottom:273.653541pt;}
.y25{bottom:274.293541pt;}
.y1b{bottom:280.213539pt;}
.y74{bottom:280.693538pt;}
.ya8{bottom:281.013538pt;}
.y88{bottom:286.133536pt;}
.y4d{bottom:287.413536pt;}
.y9b{bottom:287.573536pt;}
.y3a{bottom:288.213535pt;}
.y6c{bottom:289.173535pt;}
.y8d{bottom:289.653535pt;}
.yaa{bottom:292.053534pt;}
.y85{bottom:297.333532pt;}
.ye{bottom:299.253531pt;}
.y5a{bottom:303.893529pt;}
.y95{bottom:312.693526pt;}
.y87{bottom:314.933525pt;}
.y8c{bottom:318.453523pt;}
.y92{bottom:320.693522pt;}
.y7f{bottom:321.973522pt;}
.y35{bottom:323.573521pt;}
.yd{bottom:324.853521pt;}
.y84{bottom:326.133520pt;}
.y24{bottom:329.333519pt;}
.y1e{bottom:331.893518pt;}
.y14{bottom:333.013517pt;}
.yb4{bottom:339.093515pt;}
.y94{bottom:341.493514pt;}
.y2d{bottom:345.493512pt;}
.y59{bottom:347.733512pt;}
.y6a{bottom:347.893512pt;}
.y91{bottom:349.493511pt;}
.yc{bottom:350.453510pt;}
.y51{bottom:351.573510pt;}
.yb3{bottom:353.013509pt;}
.y34{bottom:355.573508pt;}
.y43{bottom:356.853508pt;}
.y23{bottom:358.133507pt;}
.y77{bottom:359.253507pt;}
.y2c{bottom:367.893504pt;}
.y1d{bottom:375.733500pt;}
.y50{bottom:380.373499pt;}
.y69{bottom:381.493498pt;}
.y4a{bottom:382.933497pt;}
.y13{bottom:384.213497pt;}
.y2b{bottom:390.293495pt;}
.y83{bottom:390.453494pt;}
.y26{bottom:391.253494pt;}
.y4f{bottom:393.653493pt;}
.y8{bottom:394.933493pt;}
.ya9{bottom:396.693492pt;}
.yb5{bottom:406.613488pt;}
.y2{bottom:409.813487pt;}
.ya4{bottom:410.773486pt;}
.y49{bottom:411.733486pt;}
.y2a{bottom:413.173485pt;}
.y7d{bottom:414.613485pt;}
.y68{bottom:415.093485pt;}
.y7c{bottom:417.493484pt;}
.y58{bottom:417.653484pt;}
.y7{bottom:420.533482pt;}
.y9f{bottom:421.493482pt;}
.y33{bottom:428.053479pt;}
.y12{bottom:435.413477pt;}
.y82{bottom:438.613475pt;}
.y29{bottom:438.773475pt;}
.y6{bottom:446.133472pt;}
.y18{bottom:446.293472pt;}
.y86{bottom:447.573472pt;}
.y67{bottom:448.693471pt;}
.ya3{bottom:449.173471pt;}
.y9e{bottom:450.293471pt;}
.y20{bottom:456.693468pt;}
.y32{bottom:460.053467pt;}
.y1{bottom:461.013466pt;}
.y57{bottom:461.493466pt;}
.y78{bottom:471.093462pt;}
.y90{bottom:481.813458pt;}
.y66{bottom:482.293458pt;}
.y11{bottom:486.613456pt;}
.y39{bottom:488.213455pt;}
.y17{bottom:491.893454pt;}
.y5{bottom:497.333452pt;}
.y1f{bottom:500.533450pt;}
.y3d{bottom:506.453448pt;}
.y80{bottom:508.373447pt;}
.yaf{bottom:510.293447pt;}
.y48{bottom:512.693446pt;}
.y6b{bottom:515.893444pt;}
.y40{bottom:517.493444pt;}
.y4{bottom:522.933441pt;}
.y65{bottom:524.373441pt;}
.y38{bottom:526.613440pt;}
.y10{bottom:537.813436pt;}
.yae{bottom:539.093435pt;}
.y30{bottom:545.813432pt;}
.y3f{bottom:546.293432pt;}
.y22{bottom:546.453432pt;}
.y3{bottom:548.533431pt;}
.y47{bottom:551.093430pt;}
.y56{bottom:559.093427pt;}
.y4e{bottom:569.173423pt;}
.y9a{bottom:572.533422pt;}
.y79{bottom:582.933417pt;}
.y63{bottom:583.093417pt;}
.yb{bottom:586.133416pt;}
.y21{bottom:586.453416pt;}
.y55{bottom:587.893416pt;}
.yad{bottom:588.053415pt;}
.y19{bottom:592.373414pt;}
.y1c{bottom:595.093413pt;}
.ya7{bottom:599.733411pt;}
.y8a{bottom:601.173410pt;}
.y81{bottom:601.493410pt;}
.y99{bottom:604.533409pt;}
.ya{bottom:611.733406pt;}
.y93{bottom:612.053406pt;}
.yb0{bottom:614.773405pt;}
.y62{bottom:616.693404pt;}
.y61{bottom:626.293400pt;}
.y2f{bottom:634.293397pt;}
.y9{bottom:637.333396pt;}
.y64{bottom:650.293391pt;}
.y60{bottom:658.773387pt;}
.y2e{bottom:666.293384pt;}
.y46{bottom:678.453379pt;}
.y1a{bottom:678.613379pt;}
.ya2{bottom:680.053379pt;}
.y3e{bottom:681.013378pt;}
.y7a{bottom:694.773373pt;}
.y5f{bottom:724.853361pt;}
.h12{height:56.531227pt;}
.h10{height:61.556225pt;}
.h11{height:63.209975pt;}
.he{height:66.749973pt;}
.h8{height:78.097469pt;}
.hb{height:83.437467pt;}
.h2{height:88.777464pt;}
.h6{height:100.124960pt;}
.h9{height:105.464958pt;}
.h3{height:111.472455pt;}
.h13{height:122.152451pt;}
.h15{height:128.159949pt;}
.h4{height:133.499947pt;}
.h7{height:146.999941pt;}
.h5{height:155.527438pt;}
.hf{height:174.097430pt;}
.h1{height:178.222429pt;}
.hc{height:200.249920pt;}
.ha{height:231.152408pt;}
.h16{height:244.972402pt;}
.hd{height:250.524900pt;}
.h14{height:258.299897pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x46{left:94.227962pt;}
.x68{left:117.267953pt;}
.x44{left:122.547418pt;}
.x43{left:124.947417pt;}
.x4d{left:131.187414pt;}
.x5b{left:136.947945pt;}
.x1{left:140.147944pt;}
.x4{left:143.987942pt;}
.x3{left:148.147941pt;}
.x5{left:151.347939pt;}
.x8{left:155.507938pt;}
.x6{left:156.627937pt;}
.x5d{left:158.867936pt;}
.x74{left:164.947934pt;}
.x36{left:168.467933pt;}
.x9{left:174.067930pt;}
.x4b{left:184.307926pt;}
.x70{left:185.267926pt;}
.x2b{left:187.187925pt;}
.x72{left:190.707924pt;}
.x4a{left:192.147923pt;}
.x1f{left:195.347922pt;}
.x5e{left:196.307921pt;}
.x59{left:199.987920pt;}
.x7c{left:200.947920pt;}
.x77{left:202.227919pt;}
.x69{left:203.827918pt;}
.x2f{left:205.267918pt;}
.x30{left:207.027917pt;}
.x2a{left:212.307915pt;}
.x3e{left:214.227914pt;}
.x7{left:215.667914pt;}
.x71{left:217.747913pt;}
.x1e{left:221.907911pt;}
.x6e{left:223.507911pt;}
.x55{left:228.467909pt;}
.x1c{left:230.867908pt;}
.x17{left:232.307907pt;}
.x37{left:235.027906pt;}
.x34{left:236.147906pt;}
.x76{left:240.307904pt;}
.x58{left:242.547903pt;}
.x1d{left:245.427902pt;}
.x6d{left:247.187901pt;}
.x38{left:248.307901pt;}
.x14{left:253.587899pt;}
.x64{left:258.387897pt;}
.x5f{left:262.387895pt;}
.x54{left:265.907894pt;}
.x7d{left:267.027893pt;}
.x6a{left:269.907892pt;}
.x13{left:271.827891pt;}
.xb{left:273.267891pt;}
.x67{left:277.747889pt;}
.x57{left:279.987888pt;}
.x3b{left:284.147886pt;}
.x7f{left:286.547885pt;}
.x6b{left:289.267884pt;}
.x1b{left:309.427876pt;}
.x66{left:315.027874pt;}
.x39{left:318.387873pt;}
.x7e{left:323.827870pt;}
.x41{left:325.907870pt;}
.x78{left:327.987869pt;}
.x40{left:331.507867pt;}
.x2c{left:335.827866pt;}
.x3c{left:339.347864pt;}
.x4c{left:343.187863pt;}
.x4f{left:345.267862pt;}
.x3f{left:346.867861pt;}
.x16{left:353.587859pt;}
.x18{left:354.707858pt;}
.x45{left:388.307845pt;}
.x19{left:389.587844pt;}
.x1a{left:393.107843pt;}
.x6f{left:395.187842pt;}
.x11{left:397.267841pt;}
.xf{left:403.827838pt;}
.xd{left:413.907834pt;}
.xc{left:416.307833pt;}
.x47{left:418.547833pt;}
.x2{left:429.107828pt;}
.x56{left:430.387828pt;}
.xe{left:436.947825pt;}
.x2e{left:470.067812pt;}
.x53{left:477.267809pt;}
.x33{left:484.947806pt;}
.xa{left:488.467805pt;}
.x3a{left:493.907802pt;}
.x10{left:533.107787pt;}
.x12{left:553.267779pt;}
.x5c{left:559.667776pt;}
.x35{left:599.347760pt;}
.x73{left:614.867754pt;}
.x7b{left:633.267747pt;}
.x63{left:636.147746pt;}
.x5a{left:667.347733pt;}
.x22{left:668.787732pt;}
.x25{left:670.867732pt;}
.x27{left:685.587726pt;}
.x60{left:687.027725pt;}
.x20{left:698.867720pt;}
.x28{left:704.947718pt;}
.x26{left:706.867717pt;}
.x23{left:708.307717pt;}
.x21{left:710.227716pt;}
.x65{left:714.867714pt;}
.x24{left:715.827714pt;}
.x2d{left:725.427710pt;}
.x29{left:729.587708pt;}
.x79{left:746.867701pt;}
.x61{left:749.747700pt;}
.x51{left:757.267697pt;}
.x7a{left:758.387697pt;}
.x62{left:761.267695pt;}
.x31{left:764.947694pt;}
.x52{left:768.787692pt;}
.x75{left:773.267691pt;}
.x32{left:776.467689pt;}
.x6c{left:780.147688pt;}
.x3d{left:833.907666pt;}
.x15{left:886.227646pt;}
.x49{left:897.907641pt;}
.x48{left:903.027639pt;}
.x4e{left:911.027636pt;}
.x42{left:926.707629pt;}
.x50{left:935.667626pt;}
}




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