
    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_15e5043cbc7db49b7069151e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_f9d4b3f98373b5b303be529d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107910;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_a98cacc16f6bfadbdd2723cf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.475000;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_425b26b93a1d338362ca7acb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_28f63709327cbeaae5f4f44a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.692383;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_3bc956cee3efe3eb52e8f5ff.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.934000;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_05e62e8a042ddc20cbbd7c95.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107910;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_8100c1ca793800fb5bf89164.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.188000;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_b90380f39e170b7fc4db8ac6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.109863;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.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,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);}
.m3{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.268026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268026,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.060518px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000005px;}
.ls0{letter-spacing:0.009840px;}
.ls1{letter-spacing:19.038201px;}
.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;}
}
.ws3{word-spacing:-15.840600px;}
.ws5{word-spacing:-14.011436px;}
.ws2{word-spacing:-13.461330px;}
.ws6{word-spacing:-12.610134px;}
.ws4{word-spacing:-11.955150px;}
.ws0{word-spacing:-11.620260px;}
.wsa{word-spacing:-11.208832px;}
.ws7{word-spacing:-10.759500px;}
.ws9{word-spacing:-10.061328px;}
.wsb{word-spacing:-9.563850px;}
.ws8{word-spacing:0.000000px;}
.wsd{word-spacing:12.670188px;}
.wse{word-spacing:12.674014px;}
.wsc{word-spacing:12.781129px;}
.ws1{word-spacing:24.832926px;}
._3{margin-left:-17.343592px;}
._9{margin-left:-5.370253px;}
._8{margin-left:-4.174738px;}
._7{margin-left:-3.079647px;}
._6{margin-left:-1.946298px;}
._b{width:1.075963px;}
._2{width:2.388762px;}
._4{width:3.691009px;}
._c{width:4.702697px;}
._10{width:5.910626px;}
._a{width:7.440885px;}
._d{width:8.837247px;}
._12{width:10.348378px;}
._f{width:11.390867px;}
._e{width:12.572036px;}
._5{width:15.733820px;}
._0{width:16.784820px;}
._11{width:19.596882px;}
._13{width:23.989961px;}
._1{width:126.144378px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fs1{font-size:23.910000px;}
.fs8{font-size:30.108600px;}
.fs7{font-size:31.875600px;}
.fsb{font-size:33.452400px;}
.fs6{font-size:35.867400px;}
.fs4{font-size:38.255400px;}
.fsa{font-size:38.256000px;}
.fs3{font-size:41.842200px;}
.fs0{font-size:43.038000px;}
.fs5{font-size:47.820600px;}
.fs2{font-size:63.362400px;}
.fs9{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000732px;}
.y50{bottom:47.430000px;}
.y5{bottom:76.860000px;}
.ydc{bottom:78.406386px;}
.yd3{bottom:78.410791px;}
.yd2{bottom:90.401946px;}
.y4{bottom:91.200000px;}
.ydb{bottom:92.777850px;}
.yda{bottom:97.540050px;}
.yd1{bottom:102.307027px;}
.y3{bottom:105.630000px;}
.yd9{bottom:107.064636px;}
.yd0{bottom:114.297225px;}
.y4e{bottom:119.905636px;}
.yd8{bottom:121.436100px;}
.yd7{bottom:126.198300px;}
.ycf{bottom:126.202306px;}
.y4d{bottom:134.192100px;}
.yd6{bottom:135.808072px;}
.yce{bottom:138.193461px;}
.yd5{bottom:150.179536px;}
.ycd{bottom:150.183660px;}
.y49{bottom:159.703500px;}
.ycc{bottom:162.088740px;}
.y48{bottom:164.466000px;}
.yd4{bottom:169.228500px;}
.y47{bottom:174.075000px;}
.ycb{bottom:174.079895px;}
.y46{bottom:178.837500px;}
.yca{bottom:185.984976px;}
.y45{bottom:188.447536px;}
.yc9{bottom:197.975174px;}
.y44{bottom:202.734000px;}
.y43{bottom:207.496500px;}
.yc8{bottom:209.880255px;}
.y42{bottom:217.105500px;}
.y8d{bottom:220.595456px;}
.y41{bottom:221.868000px;}
.yc7{bottom:221.871410px;}
.yc6{bottom:233.861609px;}
.y8c{bottom:236.327238px;}
.yc5{bottom:245.766689px;}
.y8b{bottom:251.974138px;}
.yc4{bottom:257.756888px;}
.y2c{bottom:265.239036px;}
.y40{bottom:265.240416px;}
.y8a{bottom:267.707115px;}
.yc3{bottom:269.662925px;}
.y2b{bottom:280.970818px;}
.y3f{bottom:280.972198px;}
.yc2{bottom:281.653124px;}
.y89{bottom:283.354016px;}
.yc1{bottom:293.643322px;}
.y2a{bottom:296.617718px;}
.y3e{bottom:296.619098px;}
.y88{bottom:299.085798px;}
.yc0{bottom:305.548403px;}
.y29{bottom:312.349500px;}
.y3d{bottom:312.352076px;}
.y87{bottom:314.732698px;}
.ybf{bottom:317.539558px;}
.y27{bottom:327.998976px;}
.ybe{bottom:329.444638px;}
.y86{bottom:330.464480px;}
.y28{bottom:333.354000px;}
.ybd{bottom:341.434837px;}
.y26{bottom:343.730758px;}
.y85{bottom:346.112576px;}
.ybc{bottom:353.425992px;}
.y25{bottom:359.377658px;}
.y84{bottom:361.844358px;}
.ybb{bottom:365.331073px;}
.y24{bottom:375.110636px;}
.yba{bottom:377.321272px;}
.y83{bottom:377.491258px;}
.yb9{bottom:389.226352px;}
.y23{bottom:390.842417px;}
.y82{bottom:393.223040px;}
.yb8{bottom:401.217507px;}
.y22{bottom:406.489318px;}
.y81{bottom:408.871136px;}
.yb7{bottom:413.122588px;}
.y21{bottom:422.221100px;}
.y80{bottom:424.602917px;}
.yb6{bottom:425.112786px;}
.yb5{bottom:437.102985px;}
.y3c{bottom:437.865424px;}
.y20{bottom:437.868000px;}
.y1e{bottom:437.870856px;}
.y7f{bottom:440.249818px;}
.y1f{bottom:443.224500px;}
.yb4{bottom:449.009022px;}
.y3b{bottom:453.598402px;}
.y1d{bottom:453.602638px;}
.y7e{bottom:455.981600px;}
.yb3{bottom:460.999221px;}
.y3a{bottom:469.245302px;}
.y1c{bottom:469.249538px;}
.y7d{bottom:471.628500px;}
.y7b{bottom:471.628658px;}
.yb2{bottom:472.904301px;}
.y7c{bottom:476.985000px;}
.yb1{bottom:484.894500px;}
.y39{bottom:484.977084px;}
.y1b{bottom:484.982516px;}
.y7a{bottom:487.361636px;}
.y38{bottom:500.623984px;}
.y1a{bottom:500.629416px;}
.y79{bottom:503.008536px;}
.yb0{bottom:512.446969px;}
.y37{bottom:516.356962px;}
.y19{bottom:516.361198px;}
.y78{bottom:518.740318px;}
.y36{bottom:532.003862px;}
.y18{bottom:532.008098px;}
.y77{bottom:534.387218px;}
.yaf{bottom:546.972246px;}
.y35{bottom:547.735644px;}
.y17{bottom:547.741076px;}
.y76{bottom:550.119000px;}
.y74{bottom:550.124557px;}
.y75{bottom:555.391500px;}
.yae{bottom:562.619147px;}
.y34{bottom:563.382544px;}
.y16{bottom:563.387976px;}
.y73{bottom:565.771457px;}
.yad{bottom:578.350929px;}
.y33{bottom:579.115522px;}
.y15{bottom:579.119758px;}
.y72{bottom:581.504434px;}
.y32{bottom:594.762422px;}
.y14{bottom:594.766658px;}
.y71{bottom:597.151335px;}
.yac{bottom:609.730806px;}
.y31{bottom:610.494204px;}
.y13{bottom:610.499636px;}
.y70{bottom:612.883116px;}
.y119{bottom:625.891318px;}
.y30{bottom:626.141104px;}
.y12{bottom:626.146536px;}
.y6f{bottom:628.530017px;}
.y105{bottom:634.653577px;}
.y118{bottom:641.538218px;}
.y2f{bottom:641.872886px;}
.y11{bottom:641.878318px;}
.yab{bottom:644.256084px;}
.y6e{bottom:644.262994px;}
.y104{bottom:646.643776px;}
.y117{bottom:657.270000px;}
.y2e{bottom:657.520982px;}
.y10{bottom:657.525218px;}
.y103{bottom:658.549813px;}
.yaa{bottom:659.902984px;}
.y6d{bottom:659.909894px;}
.y116{bottom:662.541000px;}
.y102{bottom:670.540012px;}
.y2d{bottom:673.252764px;}
.yf{bottom:673.257000px;}
.ya9{bottom:675.635962px;}
.y6c{bottom:675.641676px;}
.y101{bottom:682.445092px;}
.y115{bottom:690.860758px;}
.ya8{bottom:691.282862px;}
.y6b{bottom:691.288577px;}
.y100{bottom:694.435291px;}
.yff{bottom:706.426446px;}
.y114{bottom:706.592540px;}
.ya7{bottom:707.014644px;}
.y6a{bottom:707.021554px;}
.yfe{bottom:718.331527px;}
.ya6{bottom:722.746426px;}
.y69{bottom:722.753336px;}
.y113{bottom:730.148967px;}
.yfd{bottom:730.321725px;}
.ya5{bottom:738.394522px;}
.y68{bottom:738.400236px;}
.yfc{bottom:742.226806px;}
.y112{bottom:745.795868px;}
.ya4{bottom:754.126303px;}
.y67{bottom:754.132018px;}
.yfb{bottom:754.217961px;}
.y111{bottom:761.527650px;}
.yfa{bottom:766.208160px;}
.ya3{bottom:769.773204px;}
.y66{bottom:769.780114px;}
.ye{bottom:771.988419px;}
.yf9{bottom:778.113240px;}
.yd{bottom:784.828844px;}
.y110{bottom:784.998000px;}
.ya2{bottom:785.504986px;}
.y65{bottom:785.511896px;}
.yf8{bottom:790.104395px;}
.yc{bottom:797.669269px;}
.y10e{bottom:800.732148px;}
.ya1{bottom:801.151886px;}
.y64{bottom:801.158796px;}
.yf7{bottom:802.009476px;}
.y10f{bottom:806.002500px;}
.yb{bottom:810.510650px;}
.yf6{bottom:813.999674px;}
.ya0{bottom:816.884863px;}
.y63{bottom:816.890578px;}
.ya{bottom:823.351075px;}
.y10d{bottom:824.288576px;}
.yf5{bottom:825.904755px;}
.y9f{bottom:832.531764px;}
.y62{bottom:832.537478px;}
.y9{bottom:836.191500px;}
.yf4{bottom:837.895910px;}
.y10c{bottom:839.935476px;}
.y9e{bottom:848.263546px;}
.y61{bottom:848.270456px;}
.yf3{bottom:849.886109px;}
.yf2{bottom:861.791189px;}
.y10b{bottom:863.490708px;}
.y9d{bottom:863.910446px;}
.y60{bottom:863.917356px;}
.y8{bottom:864.000000px;}
.yf1{bottom:873.781388px;}
.y10a{bottom:879.222490px;}
.y9c{bottom:879.643423px;}
.y5f{bottom:879.649138px;}
.yf0{bottom:885.687425px;}
.y109{bottom:894.870586px;}
.y9b{bottom:895.290324px;}
.y5e{bottom:895.296038px;}
.yef{bottom:897.677624px;}
.y7{bottom:905.245650px;}
.yee{bottom:909.667822px;}
.y9a{bottom:911.022106px;}
.y5d{bottom:911.029016px;}
.y108{bottom:918.425818px;}
.yed{bottom:921.572903px;}
.y6{bottom:924.718500px;}
.y99{bottom:926.669006px;}
.y5c{bottom:926.675916px;}
.yec{bottom:933.564058px;}
.y107{bottom:934.072718px;}
.y98{bottom:942.401983px;}
.y5b{bottom:942.407698px;}
.yeb{bottom:945.469138px;}
.y106{bottom:949.804500px;}
.yea{bottom:957.459337px;}
.y97{bottom:958.048884px;}
.y5a{bottom:958.054598px;}
.ye9{bottom:969.365374px;}
.y96{bottom:973.780665px;}
.y59{bottom:973.787576px;}
.ye8{bottom:981.355573px;}
.y95{bottom:989.427566px;}
.y58{bottom:989.434476px;}
.ye7{bottom:993.345772px;}
.y4c{bottom:1003.719000px;}
.y94{bottom:1005.160543px;}
.y57{bottom:1005.166258px;}
.ye6{bottom:1005.250852px;}
.ye5{bottom:1017.242007px;}
.y93{bottom:1020.807443px;}
.y56{bottom:1020.813158px;}
.ye4{bottom:1029.147088px;}
.y92{bottom:1036.539225px;}
.y55{bottom:1036.546136px;}
.ye3{bottom:1041.137286px;}
.y4b{bottom:1045.389000px;}
.y91{bottom:1052.186126px;}
.y54{bottom:1052.193036px;}
.ye2{bottom:1053.127485px;}
.ye1{bottom:1065.033522px;}
.y90{bottom:1067.917908px;}
.y53{bottom:1067.924818px;}
.ye0{bottom:1077.023721px;}
.y8f{bottom:1083.566003px;}
.y52{bottom:1083.571718px;}
.y4a{bottom:1087.312500px;}
.ydf{bottom:1088.928801px;}
.y8e{bottom:1099.297785px;}
.y51{bottom:1099.303500px;}
.yde{bottom:1100.919000px;}
.y2{bottom:1127.505000px;}
.y4f{bottom:1128.630000px;}
.ydd{bottom:1128.642000px;}
.h4{height:21.014648px;}
.hb{height:26.462637px;}
.ha{height:28.015664px;}
.hf{height:29.401523px;}
.h9{height:31.524082px;}
.h7{height:33.622910px;}
.he{height:33.623438px;}
.hd{height:35.100320px;}
.h6{height:36.775371px;}
.h3{height:37.826367px;}
.h8{height:42.029824px;}
.h5{height:55.689609px;}
.hc{height:73.551270px;}
.h1{height:1190.250000px;}
.h2{height:1190.550018px;}
.h0{height:1190.551484px;}
.w2{width:892.914000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:56.276979px;}
.xd{left:64.289700px;}
.x3{left:74.324400px;}
.x31{left:81.211724px;}
.x3a{left:95.327966px;}
.x13{left:98.390550px;}
.x36{left:101.365625px;}
.x37{left:102.386088px;}
.x14{left:103.492800px;}
.x15{left:105.958950px;}
.x38{left:109.614445px;}
.x16{left:111.061350px;}
.x34{left:132.829735px;}
.x32{left:135.976242px;}
.x39{left:138.612995px;}
.x6{left:153.325500px;}
.x3f{left:165.910136px;}
.x10{left:194.145000px;}
.x17{left:210.216169px;}
.x33{left:253.159227px;}
.xf{left:264.132000px;}
.x3b{left:274.164310px;}
.x3c{left:277.565215px;}
.x18{left:302.230500px;}
.x1{left:309.296979px;}
.x35{left:315.322339px;}
.x3d{left:325.697203px;}
.xe{left:342.624000px;}
.x4{left:373.408500px;}
.x5{left:381.741000px;}
.x3e{left:384.628691px;}
.x12{left:444.311979px;}
.x7{left:459.888747px;}
.x19{left:464.995500px;}
.x54{left:470.352902px;}
.x46{left:471.970761px;}
.x8{left:477.832232px;}
.x1a{left:484.468455px;}
.x24{left:501.561924px;}
.x20{left:504.027485px;}
.x2c{left:505.898174px;}
.x1e{left:510.405616px;}
.x52{left:511.936500px;}
.x2d{left:513.041413px;}
.x1f{left:518.484200px;}
.x30{left:551.648763px;}
.x1c{left:562.789692px;}
.x44{left:568.489469px;}
.x4c{left:569.934000px;}
.x28{left:570.953394px;}
.x21{left:579.371495px;}
.x42{left:587.538805px;}
.x2e{left:593.487738px;}
.x11{left:605.441979px;}
.x2f{left:611.431433px;}
.x2a{left:617.043500px;}
.x47{left:622.148964px;}
.x22{left:633.966733px;}
.x53{left:642.130475px;}
.x1d{left:657.011786px;}
.x29{left:660.243411px;}
.x49{left:702.766127px;}
.x9{left:707.613000px;}
.x25{left:711.436787px;}
.xa{left:712.630500px;}
.xb{left:715.180500px;}
.x50{left:716.285360px;}
.xc{left:720.198000px;}
.x4d{left:722.152947px;}
.x41{left:727.936500px;}
.x1b{left:737.202755px;}
.x40{left:742.555777px;}
.x48{left:748.175373px;}
.x55{left:759.398541px;}
.x4a{left:762.801304px;}
.x26{left:767.477122px;}
.x4f{left:769.858778px;}
.x4e{left:773.430977px;}
.x45{left:777.173785px;}
.x2b{left:778.191503px;}
.x23{left:786.780797px;}
.x43{left:788.738002px;}
.x27{left:790.096584px;}
.x51{left:795.200109px;}
.x4b{left:832.024500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.720461pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000004pt;}
.ls0{letter-spacing:0.008747pt;}
.ls1{letter-spacing:16.922845pt;}
.ws3{word-spacing:-14.080533pt;}
.ws5{word-spacing:-12.454610pt;}
.ws2{word-spacing:-11.965627pt;}
.ws6{word-spacing:-11.209008pt;}
.ws4{word-spacing:-10.626800pt;}
.ws0{word-spacing:-10.329120pt;}
.wsa{word-spacing:-9.963406pt;}
.ws7{word-spacing:-9.564000pt;}
.ws9{word-spacing:-8.943403pt;}
.wsb{word-spacing:-8.501200pt;}
.ws8{word-spacing:0.000000pt;}
.wsd{word-spacing:11.262390pt;}
.wse{word-spacing:11.265790pt;}
.wsc{word-spacing:11.361004pt;}
.ws1{word-spacing:22.073712pt;}
._3{margin-left:-15.416526pt;}
._9{margin-left:-4.773559pt;}
._8{margin-left:-3.710879pt;}
._7{margin-left:-2.737464pt;}
._6{margin-left:-1.730043pt;}
._b{width:0.956412pt;}
._2{width:2.123344pt;}
._4{width:3.280897pt;}
._c{width:4.180175pt;}
._10{width:5.253890pt;}
._a{width:6.614120pt;}
._d{width:7.855331pt;}
._12{width:9.198558pt;}
._f{width:10.125215pt;}
._e{width:11.175143pt;}
._5{width:13.985618pt;}
._0{width:14.919840pt;}
._11{width:17.419451pt;}
._13{width:21.324410pt;}
._1{width:112.128336pt;}
.fs1{font-size:21.253333pt;}
.fs8{font-size:26.763200pt;}
.fs7{font-size:28.333867pt;}
.fsb{font-size:29.735467pt;}
.fs6{font-size:31.882133pt;}
.fs4{font-size:34.004800pt;}
.fsa{font-size:34.005333pt;}
.fs3{font-size:37.193067pt;}
.fs0{font-size:38.256000pt;}
.fs5{font-size:42.507200pt;}
.fs2{font-size:56.322133pt;}
.fs9{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000651pt;}
.y50{bottom:42.160000pt;}
.y5{bottom:68.320000pt;}
.ydc{bottom:69.694565pt;}
.yd3{bottom:69.698481pt;}
.yd2{bottom:80.357285pt;}
.y4{bottom:81.066667pt;}
.ydb{bottom:82.469200pt;}
.yda{bottom:86.702267pt;}
.yd1{bottom:90.939579pt;}
.y3{bottom:93.893333pt;}
.yd9{bottom:95.168565pt;}
.yd0{bottom:101.597534pt;}
.y4e{bottom:106.582787pt;}
.yd8{bottom:107.943200pt;}
.yd7{bottom:112.176267pt;}
.ycf{bottom:112.179827pt;}
.y4d{bottom:119.281867pt;}
.yd6{bottom:120.718286pt;}
.yce{bottom:122.838632pt;}
.yd5{bottom:133.492921pt;}
.ycd{bottom:133.496586pt;}
.y49{bottom:141.958667pt;}
.ycc{bottom:144.078880pt;}
.y48{bottom:146.192000pt;}
.yd4{bottom:150.425333pt;}
.y47{bottom:154.733333pt;}
.ycb{bottom:154.737685pt;}
.y46{bottom:158.966667pt;}
.yca{bottom:165.319978pt;}
.y45{bottom:167.508921pt;}
.yc9{bottom:175.977933pt;}
.y44{bottom:180.208000pt;}
.y43{bottom:184.441333pt;}
.yc8{bottom:186.560227pt;}
.y42{bottom:192.982667pt;}
.y8d{bottom:196.084850pt;}
.y41{bottom:197.216000pt;}
.yc7{bottom:197.219031pt;}
.yc6{bottom:207.876986pt;}
.y8c{bottom:210.068656pt;}
.yc5{bottom:218.459279pt;}
.y8b{bottom:223.977012pt;}
.yc4{bottom:229.117234pt;}
.y2c{bottom:235.768032pt;}
.y40{bottom:235.769259pt;}
.y8a{bottom:237.961880pt;}
.yc3{bottom:239.700378pt;}
.y2b{bottom:249.751838pt;}
.y3f{bottom:249.753065pt;}
.yc2{bottom:250.358332pt;}
.y89{bottom:251.870236pt;}
.yc1{bottom:261.016287pt;}
.y2a{bottom:263.660194pt;}
.y3e{bottom:263.661421pt;}
.y88{bottom:265.854042pt;}
.yc0{bottom:271.598580pt;}
.y29{bottom:277.644000pt;}
.y3d{bottom:277.646289pt;}
.y87{bottom:279.762398pt;}
.ybf{bottom:282.257385pt;}
.y27{bottom:291.554645pt;}
.ybe{bottom:292.839679pt;}
.y86{bottom:293.746204pt;}
.y28{bottom:296.314667pt;}
.ybd{bottom:303.497633pt;}
.y26{bottom:305.538451pt;}
.y85{bottom:307.655623pt;}
.ybc{bottom:314.156438pt;}
.y25{bottom:319.446807pt;}
.y84{bottom:321.639429pt;}
.ybb{bottom:324.738731pt;}
.y24{bottom:333.431676pt;}
.yba{bottom:335.396686pt;}
.y83{bottom:335.547785pt;}
.yb9{bottom:345.978980pt;}
.y23{bottom:347.415482pt;}
.y82{bottom:349.531591pt;}
.yb8{bottom:356.637784pt;}
.y22{bottom:361.323838pt;}
.y81{bottom:363.441009pt;}
.yb7{bottom:367.220078pt;}
.y21{bottom:375.307644pt;}
.y80{bottom:377.424816pt;}
.yb6{bottom:377.878032pt;}
.yb5{bottom:388.535987pt;}
.y3c{bottom:389.213711pt;}
.y20{bottom:389.216000pt;}
.y1e{bottom:389.218539pt;}
.y7f{bottom:391.333171pt;}
.y1f{bottom:393.977333pt;}
.yb4{bottom:399.119131pt;}
.y3b{bottom:403.198579pt;}
.y1d{bottom:403.202345pt;}
.y7e{bottom:405.316977pt;}
.yb3{bottom:409.777085pt;}
.y3a{bottom:417.106935pt;}
.y1c{bottom:417.110701pt;}
.y7d{bottom:419.225333pt;}
.y7b{bottom:419.225474pt;}
.yb2{bottom:420.359379pt;}
.y7c{bottom:423.986667pt;}
.yb1{bottom:431.017333pt;}
.y39{bottom:431.090741pt;}
.y1b{bottom:431.095570pt;}
.y7a{bottom:433.210343pt;}
.y38{bottom:444.999097pt;}
.y1a{bottom:445.003925pt;}
.y79{bottom:447.118699pt;}
.yb0{bottom:455.508417pt;}
.y37{bottom:458.983966pt;}
.y19{bottom:458.987732pt;}
.y78{bottom:461.102505pt;}
.y36{bottom:472.892322pt;}
.y18{bottom:472.896087pt;}
.y77{bottom:475.010861pt;}
.yaf{bottom:486.197552pt;}
.y35{bottom:486.876128pt;}
.y17{bottom:486.880956pt;}
.y76{bottom:488.994667pt;}
.y74{bottom:488.999606pt;}
.y75{bottom:493.681333pt;}
.yae{bottom:500.105908pt;}
.y34{bottom:500.784484pt;}
.y16{bottom:500.789312pt;}
.y73{bottom:502.907962pt;}
.yad{bottom:514.089714pt;}
.y33{bottom:514.769353pt;}
.y15{bottom:514.773118pt;}
.y72{bottom:516.892830pt;}
.y32{bottom:528.677708pt;}
.y14{bottom:528.681474pt;}
.y71{bottom:530.801186pt;}
.yac{bottom:541.982939pt;}
.y31{bottom:542.661514pt;}
.y13{bottom:542.666343pt;}
.y70{bottom:544.784992pt;}
.y119{bottom:556.347838pt;}
.y30{bottom:556.569870pt;}
.y12{bottom:556.574699pt;}
.y6f{bottom:558.693348pt;}
.y105{bottom:564.136513pt;}
.y118{bottom:570.256194pt;}
.y2f{bottom:570.553676pt;}
.y11{bottom:570.558505pt;}
.yab{bottom:572.672075pt;}
.y6e{bottom:572.678217pt;}
.y104{bottom:574.794468pt;}
.y117{bottom:584.240000pt;}
.y2e{bottom:584.463095pt;}
.y10{bottom:584.466861pt;}
.y103{bottom:585.377612pt;}
.yaa{bottom:586.580430pt;}
.y6d{bottom:586.586573pt;}
.y116{bottom:588.925333pt;}
.y102{bottom:596.035566pt;}
.y2d{bottom:598.446901pt;}
.yf{bottom:598.450667pt;}
.ya9{bottom:600.565299pt;}
.y6c{bottom:600.570379pt;}
.y101{bottom:606.617860pt;}
.y115{bottom:614.098451pt;}
.ya8{bottom:614.473655pt;}
.y6b{bottom:614.478735pt;}
.y100{bottom:617.275814pt;}
.yff{bottom:627.934619pt;}
.y114{bottom:628.082258pt;}
.ya7{bottom:628.457461pt;}
.y6a{bottom:628.463604pt;}
.yfe{bottom:638.516912pt;}
.ya6{bottom:642.441267pt;}
.y69{bottom:642.447410pt;}
.y113{bottom:649.021304pt;}
.yfd{bottom:649.174867pt;}
.ya5{bottom:656.350686pt;}
.y68{bottom:656.355766pt;}
.yfc{bottom:659.757161pt;}
.y112{bottom:662.929660pt;}
.ya4{bottom:670.334492pt;}
.y67{bottom:670.339572pt;}
.yfb{bottom:670.415965pt;}
.y111{bottom:676.913466pt;}
.yfa{bottom:681.073920pt;}
.ya3{bottom:684.242848pt;}
.y66{bottom:684.248990pt;}
.ye{bottom:686.211928pt;}
.yf9{bottom:691.656213pt;}
.yd{bottom:697.625639pt;}
.y110{bottom:697.776000pt;}
.ya2{bottom:698.226654pt;}
.y65{bottom:698.232796pt;}
.yf8{bottom:702.315018pt;}
.yc{bottom:709.039350pt;}
.y10e{bottom:711.761909pt;}
.ya1{bottom:712.135010pt;}
.y64{bottom:712.141152pt;}
.yf7{bottom:712.897312pt;}
.y10f{bottom:716.446667pt;}
.yb{bottom:720.453911pt;}
.yf6{bottom:723.555266pt;}
.ya0{bottom:726.119879pt;}
.y63{bottom:726.124958pt;}
.ya{bottom:731.867622pt;}
.y10d{bottom:732.700956pt;}
.yf5{bottom:734.137560pt;}
.y9f{bottom:740.028234pt;}
.y62{bottom:740.033314pt;}
.y9{bottom:743.281333pt;}
.yf4{bottom:744.796365pt;}
.y10c{bottom:746.609312pt;}
.y9e{bottom:754.012041pt;}
.y61{bottom:754.018183pt;}
.yf3{bottom:755.454319pt;}
.yf2{bottom:766.036613pt;}
.y10b{bottom:767.547296pt;}
.y9d{bottom:767.920396pt;}
.y60{bottom:767.926539pt;}
.y8{bottom:768.000000pt;}
.yf1{bottom:776.694567pt;}
.y10a{bottom:781.531102pt;}
.y9c{bottom:781.905265pt;}
.y5f{bottom:781.910345pt;}
.yf0{bottom:787.277711pt;}
.y109{bottom:795.440521pt;}
.y9b{bottom:795.813621pt;}
.y5e{bottom:795.818701pt;}
.yef{bottom:797.935665pt;}
.y7{bottom:804.662800pt;}
.yee{bottom:808.593620pt;}
.y9a{bottom:809.797427pt;}
.y5d{bottom:809.803570pt;}
.y108{bottom:816.378505pt;}
.yed{bottom:819.175914pt;}
.y6{bottom:821.972000pt;}
.y99{bottom:823.705783pt;}
.y5c{bottom:823.711925pt;}
.yec{bottom:829.834718pt;}
.y107{bottom:830.286861pt;}
.y98{bottom:837.690652pt;}
.y5b{bottom:837.695732pt;}
.yeb{bottom:840.417012pt;}
.y106{bottom:844.270667pt;}
.yea{bottom:851.074966pt;}
.y97{bottom:851.599008pt;}
.y5a{bottom:851.604087pt;}
.ye9{bottom:861.658110pt;}
.y96{bottom:865.582814pt;}
.y59{bottom:865.588956pt;}
.ye8{bottom:872.316065pt;}
.y95{bottom:879.491170pt;}
.y58{bottom:879.497312pt;}
.ye7{bottom:882.974019pt;}
.y4c{bottom:892.194667pt;}
.y94{bottom:893.476038pt;}
.y57{bottom:893.481118pt;}
.ye6{bottom:893.556313pt;}
.ye5{bottom:904.215118pt;}
.y93{bottom:907.384394pt;}
.y56{bottom:907.389474pt;}
.ye4{bottom:914.797411pt;}
.y92{bottom:921.368200pt;}
.y55{bottom:921.374343pt;}
.ye3{bottom:925.455366pt;}
.y4b{bottom:929.234667pt;}
.y91{bottom:935.276556pt;}
.y54{bottom:935.282699pt;}
.ye2{bottom:936.113320pt;}
.ye1{bottom:946.696464pt;}
.y90{bottom:949.260362pt;}
.y53{bottom:949.266505pt;}
.ye0{bottom:957.354418pt;}
.y8f{bottom:963.169781pt;}
.y52{bottom:963.174861pt;}
.y4a{bottom:966.500000pt;}
.ydf{bottom:967.936712pt;}
.y8e{bottom:977.153587pt;}
.y51{bottom:977.158667pt;}
.yde{bottom:978.594667pt;}
.y2{bottom:1002.226667pt;}
.y4f{bottom:1003.226667pt;}
.ydd{bottom:1003.237333pt;}
.h4{height:18.679688pt;}
.hb{height:23.522344pt;}
.ha{height:24.902812pt;}
.hf{height:26.134687pt;}
.h9{height:28.021406pt;}
.h7{height:29.887031pt;}
.he{height:29.887500pt;}
.hd{height:31.200285pt;}
.h6{height:32.689219pt;}
.h3{height:33.623437pt;}
.h8{height:37.359844pt;}
.h5{height:49.501875pt;}
.hc{height:65.378906pt;}
.h1{height:1058.000000pt;}
.h2{height:1058.266683pt;}
.h0{height:1058.267985pt;}
.w2{width:793.701333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:50.023981pt;}
.xd{left:57.146400pt;}
.x3{left:66.066133pt;}
.x31{left:72.188199pt;}
.x3a{left:84.735970pt;}
.x13{left:87.458267pt;}
.x36{left:90.102778pt;}
.x37{left:91.009856pt;}
.x14{left:91.993600pt;}
.x15{left:94.185733pt;}
.x38{left:97.435063pt;}
.x16{left:98.721200pt;}
.x34{left:118.070876pt;}
.x32{left:120.867770pt;}
.x39{left:123.211551pt;}
.x6{left:136.289333pt;}
.x3f{left:147.475676pt;}
.x10{left:172.573333pt;}
.x17{left:186.858817pt;}
.x33{left:225.030424pt;}
.xf{left:234.784000pt;}
.x3b{left:243.701609pt;}
.x3c{left:246.724636pt;}
.x18{left:268.649333pt;}
.x1{left:274.930648pt;}
.x35{left:280.286523pt;}
.x3d{left:289.508625pt;}
.xe{left:304.554667pt;}
.x4{left:331.918667pt;}
.x5{left:339.325333pt;}
.x3e{left:341.892169pt;}
.x12{left:394.943981pt;}
.x7{left:408.789997pt;}
.x19{left:413.329333pt;}
.x54{left:418.091468pt;}
.x46{left:419.529565pt;}
.x8{left:424.739762pt;}
.x1a{left:430.638627pt;}
.x24{left:445.832821pt;}
.x20{left:448.024431pt;}
.x2c{left:449.687265pt;}
.x1e{left:453.693881pt;}
.x52{left:455.054667pt;}
.x2d{left:456.036812pt;}
.x1f{left:460.874845pt;}
.x30{left:490.354456pt;}
.x1c{left:500.257504pt;}
.x44{left:505.323972pt;}
.x4c{left:506.608000pt;}
.x28{left:507.514128pt;}
.x21{left:514.996884pt;}
.x42{left:522.256716pt;}
.x2e{left:527.544656pt;}
.x11{left:538.170648pt;}
.x2f{left:543.494607pt;}
.x2a{left:548.483111pt;}
.x47{left:553.021302pt;}
.x22{left:563.525985pt;}
.x53{left:570.782644pt;}
.x1d{left:584.010476pt;}
.x29{left:586.883032pt;}
.x49{left:624.681002pt;}
.x9{left:628.989333pt;}
.x25{left:632.388255pt;}
.xa{left:633.449333pt;}
.xb{left:635.716000pt;}
.x50{left:636.698098pt;}
.xc{left:640.176000pt;}
.x4d{left:641.913731pt;}
.x41{left:647.054667pt;}
.x1b{left:655.291338pt;}
.x40{left:660.049579pt;}
.x48{left:665.044776pt;}
.x55{left:675.020925pt;}
.x4a{left:678.045604pt;}
.x26{left:682.201886pt;}
.x4f{left:684.318914pt;}
.x4e{left:687.494202pt;}
.x45{left:690.821142pt;}
.x2b{left:691.725781pt;}
.x23{left:699.360709pt;}
.x43{left:701.100446pt;}
.x27{left:702.308075pt;}
.x51{left:706.844542pt;}
.x4b{left:739.577333pt;}
}




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