
    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_f3d41afe07623c2e30cea45c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972168;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_6f1c752380417931851935f9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5894d66609e428d1c3f69c2b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_9e86eb39406bf857491f5096.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_83ec7d7bfb4e63fadf8d4d3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.384000;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_6cd40b5d7e83af3144f22ccf.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.368000;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_227212fb7c09bab80211577e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.374000;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_6d5baf67d5561cbd3b58ee4e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.773926;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_7c63e4be032ecc2b250a1863.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1799980a65be54b992d7bf57.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.099609;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-69.119937px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.148578px;}
.ls8{letter-spacing:0.148764px;}
.ls3{letter-spacing:0.152475px;}
.ls5{letter-spacing:0.167690px;}
.lsd{letter-spacing:0.186257px;}
.lsf{letter-spacing:0.186392px;}
.lse{letter-spacing:0.186397px;}
.ls1{letter-spacing:0.186460px;}
.ls2{letter-spacing:0.186464px;}
.ls10{letter-spacing:0.186496px;}
.lsb{letter-spacing:0.186527px;}
.lsc{letter-spacing:0.186532px;}
.ls7{letter-spacing:0.851628px;}
.ls6{letter-spacing:0.889666px;}
.lsa{letter-spacing:1194.835770px;}
.ls0{letter-spacing:1198.652164px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(128,0,0),0 0.015em rgb(128,0,0),0.015em 0 rgb(128,0,0),0 -0.015em  rgb(128,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc3{-webkit-text-stroke:0.015em rgb(128,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-62.142750px;}
.ws1{word-spacing:-15.565086px;}
.ws0{word-spacing:-15.535688px;}
.ws3{word-spacing:-15.446864px;}
.ws2{word-spacing:-12.469248px;}
.ws4{word-spacing:-10.754859px;}
.ws5{word-spacing:0.000000px;}
._4{margin-left:-9.878719px;}
._23{margin-left:-2.303602px;}
._0{margin-left:-1.242855px;}
._1{width:1.182169px;}
._3{width:2.237035px;}
._11{width:3.438242px;}
._12{width:4.565793px;}
._13{width:5.642368px;}
._1f{width:6.970807px;}
._8{width:8.711879px;}
._d{width:10.232192px;}
._c{width:12.222217px;}
._e{width:13.775785px;}
._24{width:14.964129px;}
._28{width:16.592114px;}
._18{width:17.755834px;}
._1a{width:19.192643px;}
._19{width:21.181211px;}
._15{width:22.868532px;}
._27{width:23.957729px;}
._1c{width:25.066832px;}
._2c{width:26.233561px;}
._10{width:27.376551px;}
._9{width:28.834236px;}
._2b{width:30.606661px;}
._1d{width:31.924190px;}
._1e{width:32.995631px;}
._21{width:34.504028px;}
._14{width:36.094500px;}
._20{width:37.600080px;}
._6{width:38.756200px;}
._7{width:39.844426px;}
._f{width:41.065434px;}
._25{width:42.664590px;}
._16{width:47.663489px;}
._a{width:49.114134px;}
._b{width:50.863113px;}
._2d{width:52.614519px;}
._26{width:54.230716px;}
._31{width:56.778568px;}
._32{width:58.477299px;}
._1b{width:62.381854px;}
._2a{width:64.047522px;}
._17{width:65.051079px;}
._30{width:70.090873px;}
._33{width:73.238823px;}
._29{width:74.968431px;}
._2e{width:77.835494px;}
._5{width:86.616555px;}
._34{width:114.998427px;}
._38{width:165.194077px;}
._37{width:166.208070px;}
._36{width:177.557086px;}
._35{width:215.612847px;}
._2{width:549.563316px;}
._2f{width:550.629944px;}
._22{width:803.374513px;}
.fc7{color:rgb(128,0,0);}
.fc5{color:rgb(196,188,150);}
.fc4{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc3{color:rgb(118,113,113);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:39.251312px;}
.fs1{font-size:45.256050px;}
.fs7{font-size:45.342719px;}
.fs2{font-size:50.660100px;}
.fs3{font-size:56.063700px;}
.fs8{font-size:56.170413px;}
.fs0{font-size:62.142750px;}
.fs6{font-size:62.260346px;}
.fsa{font-size:84.433046px;}
.fs4{font-size:120.908250px;}
.fs5{font-size:275.590341px;}
.y7d{bottom:-8.100494px;}
.y0{bottom:0.000000px;}
.y7a{bottom:2.521461px;}
.y75{bottom:2.878241px;}
.y73{bottom:2.878534px;}
.y77{bottom:3.599789px;}
.y55{bottom:4.139992px;}
.y81{bottom:6.839950px;}
.y80{bottom:30.420044px;}
.y3{bottom:31.500000px;}
.y7f{bottom:47.340019px;}
.y2{bottom:48.240006px;}
.y7c{bottom:68.406810px;}
.y98{bottom:69.840019px;}
.yd1{bottom:71.639992px;}
.y7b{bottom:73.449849px;}
.yf0{bottom:80.820030px;}
.y79{bottom:84.065839px;}
.y97{bottom:87.840019px;}
.yd0{bottom:89.639992px;}
.yef{bottom:95.580025px;}
.y96{bottom:105.659981px;}
.ycf{bottom:108.000000px;}
.yee{bottom:110.159981px;}
.y53{bottom:113.940033px;}
.y34{bottom:114.840019px;}
.y95{bottom:123.480011px;}
.yed{bottom:124.919975px;}
.yce{bottom:125.279983px;}
.y52{bottom:131.759994px;}
.y33{bottom:132.840019px;}
.yec{bottom:139.320030px;}
.y94{bottom:141.480011px;}
.ycd{bottom:143.279983px;}
.y51{bottom:149.759994px;}
.y32{bottom:150.480011px;}
.yeb{bottom:154.080025px;}
.y93{bottom:159.299973px;}
.ycc{bottom:161.100013px;}
.y50{bottom:167.580025px;}
.y31{bottom:168.480011px;}
.yea{bottom:168.659981px;}
.y92{bottom:176.580025px;}
.ycb{bottom:179.460022px;}
.ye9{bottom:183.419975px;}
.y4f{bottom:185.399986px;}
.y30{bottom:187.019989px;}
.y91{bottom:191.340019px;}
.yca{bottom:196.919975px;}
.ye8{bottom:198.000000px;}
.y4e{bottom:203.399986px;}
.y2f{bottom:204.120002px;}
.y90{bottom:205.919975px;}
.ye7{bottom:212.580025px;}
.yc9{bottom:214.919975px;}
.y8f{bottom:220.679970px;}
.y4d{bottom:221.220017px;}
.y2e{bottom:222.120002px;}
.ye6{bottom:227.159981px;}
.yc8{bottom:232.559967px;}
.y8e{bottom:235.080025px;}
.y4c{bottom:239.220017px;}
.y2d{bottom:240.120002px;}
.ye5{bottom:241.919975px;}
.y8d{bottom:249.840019px;}
.yc7{bottom:251.100013px;}
.ye4{bottom:256.500000px;}
.y4b{bottom:257.039977px;}
.y2c{bottom:257.940033px;}
.y8c{bottom:264.419975px;}
.yc6{bottom:268.559967px;}
.ye3{bottom:271.259994px;}
.y4a{bottom:274.860008px;}
.y2b{bottom:275.759994px;}
.y8b{bottom:279.179970px;}
.ye2{bottom:285.840019px;}
.yc5{bottom:286.200027px;}
.y49{bottom:292.860008px;}
.y2a{bottom:293.759994px;}
.ye1{bottom:300.419975px;}
.yc4{bottom:304.740006px;}
.y8a{bottom:308.340019px;}
.y48{bottom:310.679970px;}
.y29{bottom:311.580025px;}
.ye0{bottom:315.000000px;}
.yc3{bottom:322.200027px;}
.y89{bottom:322.919975px;}
.y47{bottom:328.500000px;}
.y28{bottom:329.580025px;}
.ydf{bottom:329.759994px;}
.y88{bottom:337.679970px;}
.yc2{bottom:340.019989px;}
.yde{bottom:344.340019px;}
.y46{bottom:346.500000px;}
.y27{bottom:347.399986px;}
.y87{bottom:352.259994px;}
.yc1{bottom:357.840019px;}
.ydd{bottom:358.919975px;}
.y45{bottom:364.500000px;}
.y26{bottom:365.220017px;}
.y86{bottom:367.019989px;}
.ydc{bottom:373.500000px;}
.yc0{bottom:376.200027px;}
.y85{bottom:381.600013px;}
.y44{bottom:382.139992px;}
.y25{bottom:383.220017px;}
.ydb{bottom:388.259994px;}
.ybf{bottom:393.659981px;}
.y84{bottom:396.179970px;}
.y43{bottom:400.139992px;}
.y24{bottom:401.039977px;}
.yda{bottom:402.840019px;}
.y83{bottom:408.240006px;}
.ybe{bottom:412.019989px;}
.yd9{bottom:417.600013px;}
.y42{bottom:418.139992px;}
.y23{bottom:418.860008px;}
.ybd{bottom:429.480011px;}
.yd8{bottom:432.179970px;}
.y41{bottom:435.960022px;}
.y22{bottom:436.860008px;}
.ybc{bottom:447.299973px;}
.y54{bottom:451.440033px;}
.y40{bottom:453.779983px;}
.y21{bottom:454.679970px;}
.ybb{bottom:465.299973px;}
.y3f{bottom:471.600013px;}
.y20{bottom:472.500000px;}
.yd7{bottom:482.940033px;}
.yba{bottom:483.480011px;}
.y3e{bottom:489.600013px;}
.y1f{bottom:490.500000px;}
.yb9{bottom:500.940033px;}
.y3d{bottom:507.419975px;}
.y1e{bottom:508.320030px;}
.yd6{bottom:518.940033px;}
.yb8{bottom:519.480011px;}
.y3c{bottom:525.240006px;}
.y1d{bottom:526.139992px;}
.yb7{bottom:536.759994px;}
.y72{bottom:539.109566px;}
.y3b{bottom:543.240006px;}
.y1c{bottom:544.139992px;}
.yb6{bottom:554.580025px;}
.y71{bottom:560.351920px;}
.y3a{bottom:561.240006px;}
.y1b{bottom:561.960022px;}
.yb5{bottom:572.580025px;}
.y74{bottom:573.293251px;}
.y70{bottom:577.808491px;}
.y39{bottom:578.879998px;}
.y1a{bottom:579.960022px;}
.yd5{bottom:590.399986px;}
.yb4{bottom:590.940033px;}
.y6f{bottom:595.630829px;}
.y38{bottom:596.879998px;}
.y19{bottom:597.779983px;}
.y76{bottom:600.115986px;}
.yb3{bottom:608.220017px;}
.y6e{bottom:613.443657px;}
.y37{bottom:614.879998px;}
.y18{bottom:615.600013px;}
.yb2{bottom:626.220017px;}
.y6d{bottom:631.451267px;}
.y36{bottom:632.519989px;}
.yd4{bottom:644.040012px;}
.yb1{bottom:644.579990px;}
.y6c{bottom:649.264095px;}
.y35{bottom:650.519989px;}
.y17{bottom:651.959988px;}
.yb0{bottom:662.040012px;}
.y6b{bottom:667.266926px;}
.yaf{bottom:679.860008px;}
.y6a{bottom:685.084486px;}
.y16{bottom:686.879998px;}
.yae{bottom:697.680004px;}
.y69{bottom:702.906824px;}
.y15{bottom:704.339985px;}
.yad{bottom:715.680004px;}
.y68{bottom:721.442602px;}
.yac{bottom:733.500000px;}
.y67{bottom:738.725313px;}
.y82{bottom:740.879998px;}
.yab{bottom:751.319995px;}
.y66{bottom:756.547650px;}
.yaa{bottom:769.319995px;}
.yd3{bottom:769.860008px;}
.y14{bottom:773.639992px;}
.y65{bottom:774.544776px;}
.ya9{bottom:787.139992px;}
.y13{bottom:791.100013px;}
.y64{bottom:792.541902px;}
.y104{bottom:798.120002px;}
.ya8{bottom:804.959988px;}
.y63{bottom:810.721447px;}
.y103{bottom:812.519989px;}
.ya7{bottom:822.959988px;}
.y12{bottom:825.839985px;}
.y102{bottom:827.279983px;}
.y62{bottom:828.186578px;}
.ya6{bottom:840.779983px;}
.y101{bottom:841.860008px;}
.y11{bottom:843.300007px;}
.y61{bottom:846.183703px;}
.y100{bottom:856.620002px;}
.ya5{bottom:858.779983px;}
.y10{bottom:860.399986px;}
.y60{bottom:864.545645px;}
.yff{bottom:871.199993px;}
.ya4{bottom:876.600013px;}
.yf{bottom:877.860008px;}
.y5f{bottom:882.360375px;}
.yfe{bottom:885.779983px;}
.ya3{bottom:894.420010px;}
.ye{bottom:895.319996px;}
.y5e{bottom:899.643085px;}
.yfd{bottom:900.360008px;}
.ya2{bottom:912.419992px;}
.yd{bottom:912.599997px;}
.yfc{bottom:915.120002px;}
.y5d{bottom:917.640211px;}
.yfb{bottom:929.699993px;}
.yc{bottom:930.060001px;}
.ya1{bottom:930.240006px;}
.y5c{bottom:935.462549px;}
.yfa{bottom:944.460004px;}
.yb{bottom:947.340002px;}
.ya0{bottom:948.060001px;}
.y5b{bottom:953.284887px;}
.yf9{bottom:958.860008px;}
.ya{bottom:964.620002px;}
.y9f{bottom:966.060001px;}
.y5a{bottom:971.821616px;}
.yf8{bottom:973.620002px;}
.y9{bottom:982.080008px;}
.y9e{bottom:984.060001px;}
.yf7{bottom:988.199993px;}
.y59{bottom:989.279138px;}
.y8{bottom:999.360008px;}
.y9d{bottom:1001.699993px;}
.yf6{bottom:1002.960004px;}
.y58{bottom:1006.919069px;}
.y7{bottom:1016.819996px;}
.yf5{bottom:1017.539996px;}
.y9c{bottom:1019.699993px;}
.y57{bottom:1024.923790px;}
.yf4{bottom:1032.120002px;}
.y6{bottom:1034.099997px;}
.y9b{bottom:1037.699993px;}
.yd2{bottom:1038.060001px;}
.y78{bottom:1038.421647px;}
.y56{bottom:1042.920928px;}
.yf3{bottom:1046.700002px;}
.y5{bottom:1051.560001px;}
.y9a{bottom:1055.340002px;}
.yf2{bottom:1061.459997px;}
.y4{bottom:1072.980002px;}
.y99{bottom:1073.340002px;}
.yf1{bottom:1076.040003px;}
.y7e{bottom:1105.379998px;}
.y1{bottom:1123.380001px;}
.h12{height:2.698215px;}
.h10{height:12.960814px;}
.hb{height:14.941054px;}
.ha{height:16.017258px;}
.hd{height:18.363207px;}
.h11{height:33.942419px;}
.h15{height:38.316648px;}
.hc{height:39.232079px;}
.h1{height:47.001523px;}
.h9{height:47.090466px;}
.he{height:48.600572px;}
.h2{height:50.388000px;}
.h5{height:51.065381px;}
.h6{height:51.369341px;}
.h7{height:53.639992px;}
.h3{height:55.762577px;}
.h13{height:61.808975px;}
.hf{height:61.925939px;}
.h14{height:83.979548px;}
.h4{height:123.810048px;}
.h8{height:208.442109px;}
.h0{height:1188.000000px;}
.w12{width:2.338800px;}
.w17{width:2.698215px;}
.wb{width:2.879633px;}
.wf{width:2.879648px;}
.w13{width:2.883859px;}
.w18{width:4.681219px;}
.w6{width:5.761937px;}
.w9{width:7.377859px;}
.w4{width:7.381655px;}
.w3{width:7.747421px;}
.w15{width:10.798710px;}
.w10{width:11.336516px;}
.wc{width:13.679513px;}
.wa{width:22.318443px;}
.w16{width:31.503587px;}
.w7{width:34.023130px;}
.w1{width:38.340001px;}
.we{width:42.657997px;}
.w8{width:45.364194px;}
.w5{width:53.999459px;}
.wd{width:64.799174px;}
.w14{width:90.003830px;}
.w2{width:246.778457px;}
.w11{width:360.539967px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:102.959997px;}
.xf{left:114.840751px;}
.x10{left:136.981913px;}
.x11{left:139.679471px;}
.x3{left:141.299998px;}
.x4{left:153.539996px;}
.x12{left:156.061337px;}
.xc{left:157.677598px;}
.x1e{left:162.900003px;}
.xa{left:170.461396px;}
.xd{left:191.700728px;}
.x13{left:220.860511px;}
.xb{left:224.101083px;}
.xe{left:237.064922px;}
.x2{left:248.939999px;}
.x14{left:263.159151px;}
.x15{left:265.861519px;}
.x16{left:277.198035px;}
.x7{left:309.599292px;}
.x1d{left:445.500000px;}
.x6{left:472.139992px;}
.x5{left:522.899987px;}
.x1f{left:532.259994px;}
.x8{left:556.192477px;}
.x9{left:563.754625px;}
.x17{left:637.561307px;}
.x18{left:639.717446px;}
.x19{left:642.418644px;}
.x23{left:653.940033px;}
.x22{left:678.600014px;}
.x25{left:681.120002px;}
.x24{left:696.600014px;}
.x21{left:729.000000px;}
.x1a{left:732.239754px;}
.x1b{left:742.496388px;}
.x1c{left:773.999974px;}
.x20{left:814.320030px;}
@media print{
.v1{vertical-align:-61.439944pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.132070pt;}
.ls8{letter-spacing:0.132235pt;}
.ls3{letter-spacing:0.135533pt;}
.ls5{letter-spacing:0.149058pt;}
.lsd{letter-spacing:0.165562pt;}
.lsf{letter-spacing:0.165682pt;}
.lse{letter-spacing:0.165686pt;}
.ls1{letter-spacing:0.165742pt;}
.ls2{letter-spacing:0.165746pt;}
.ls10{letter-spacing:0.165774pt;}
.lsb{letter-spacing:0.165802pt;}
.lsc{letter-spacing:0.165806pt;}
.ls7{letter-spacing:0.757003pt;}
.ls6{letter-spacing:0.790814pt;}
.lsa{letter-spacing:1062.076240pt;}
.ls0{letter-spacing:1065.468590pt;}
.ws6{word-spacing:-55.238000pt;}
.ws1{word-spacing:-13.835632pt;}
.ws0{word-spacing:-13.809500pt;}
.ws3{word-spacing:-13.730545pt;}
.ws2{word-spacing:-11.083776pt;}
.ws4{word-spacing:-9.559875pt;}
.ws5{word-spacing:0.000000pt;}
._4{margin-left:-8.781084pt;}
._23{margin-left:-2.047646pt;}
._0{margin-left:-1.104760pt;}
._1{width:1.050817pt;}
._3{width:1.988475pt;}
._11{width:3.056215pt;}
._12{width:4.058483pt;}
._13{width:5.015438pt;}
._1f{width:6.196273pt;}
._8{width:7.743893pt;}
._d{width:9.095282pt;}
._c{width:10.864193pt;}
._e{width:12.245143pt;}
._24{width:13.301448pt;}
._28{width:14.748546pt;}
._18{width:15.782964pt;}
._1a{width:17.060127pt;}
._19{width:18.827743pt;}
._15{width:20.327584pt;}
._27{width:21.295759pt;}
._1c{width:22.281628pt;}
._2c{width:23.318721pt;}
._10{width:24.334712pt;}
._9{width:25.630432pt;}
._2b{width:27.205921pt;}
._1d{width:28.377057pt;}
._1e{width:29.329450pt;}
._21{width:30.670247pt;}
._14{width:32.084000pt;}
._20{width:33.422293pt;}
._6{width:34.449955pt;}
._7{width:35.417268pt;}
._f{width:36.502608pt;}
._25{width:37.924080pt;}
._16{width:42.367546pt;}
._a{width:43.657008pt;}
._b{width:45.211656pt;}
._2d{width:46.768461pt;}
._26{width:48.205081pt;}
._31{width:50.469839pt;}
._32{width:51.979821pt;}
._1b{width:55.450537pt;}
._2a{width:56.931131pt;}
._17{width:57.823181pt;}
._30{width:62.302998pt;}
._33{width:65.101176pt;}
._29{width:66.638605pt;}
._2e{width:69.187105pt;}
._5{width:76.992494pt;}
._34{width:102.220824pt;}
._38{width:146.839179pt;}
._37{width:147.740507pt;}
._36{width:157.828521pt;}
._35{width:191.655864pt;}
._2{width:488.500725pt;}
._2f{width:489.448839pt;}
._22{width:714.110679pt;}
.fs9{font-size:34.890055pt;}
.fs1{font-size:40.227600pt;}
.fs7{font-size:40.304639pt;}
.fs2{font-size:45.031200pt;}
.fs3{font-size:49.834400pt;}
.fs8{font-size:49.929256pt;}
.fs0{font-size:55.238000pt;}
.fs6{font-size:55.342529pt;}
.fsa{font-size:75.051596pt;}
.fs4{font-size:107.474000pt;}
.fs5{font-size:244.969192pt;}
.y7d{bottom:-7.200439pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:2.241299pt;}
.y75{bottom:2.558436pt;}
.y73{bottom:2.558697pt;}
.y77{bottom:3.199812pt;}
.y55{bottom:3.679993pt;}
.y81{bottom:6.079956pt;}
.y80{bottom:27.040039pt;}
.y3{bottom:28.000000pt;}
.y7f{bottom:42.080017pt;}
.y2{bottom:42.880005pt;}
.y7c{bottom:60.806053pt;}
.y98{bottom:62.080017pt;}
.yd1{bottom:63.679993pt;}
.y7b{bottom:65.288755pt;}
.yf0{bottom:71.840027pt;}
.y79{bottom:74.725190pt;}
.y97{bottom:78.080017pt;}
.yd0{bottom:79.679993pt;}
.yef{bottom:84.960022pt;}
.y96{bottom:93.919983pt;}
.ycf{bottom:96.000000pt;}
.yee{bottom:97.919983pt;}
.y53{bottom:101.280029pt;}
.y34{bottom:102.080017pt;}
.y95{bottom:109.760010pt;}
.yed{bottom:111.039978pt;}
.yce{bottom:111.359985pt;}
.y52{bottom:117.119995pt;}
.y33{bottom:118.080017pt;}
.yec{bottom:123.840027pt;}
.y94{bottom:125.760010pt;}
.ycd{bottom:127.359985pt;}
.y51{bottom:133.119995pt;}
.y32{bottom:133.760010pt;}
.yeb{bottom:136.960022pt;}
.y93{bottom:141.599976pt;}
.ycc{bottom:143.200012pt;}
.y50{bottom:148.960022pt;}
.y31{bottom:149.760010pt;}
.yea{bottom:149.919983pt;}
.y92{bottom:156.960022pt;}
.ycb{bottom:159.520020pt;}
.ye9{bottom:163.039978pt;}
.y4f{bottom:164.799988pt;}
.y30{bottom:166.239990pt;}
.y91{bottom:170.080017pt;}
.yca{bottom:175.039978pt;}
.ye8{bottom:176.000000pt;}
.y4e{bottom:180.799988pt;}
.y2f{bottom:181.440002pt;}
.y90{bottom:183.039978pt;}
.ye7{bottom:188.960022pt;}
.yc9{bottom:191.039978pt;}
.y8f{bottom:196.159973pt;}
.y4d{bottom:196.640015pt;}
.y2e{bottom:197.440002pt;}
.ye6{bottom:201.919983pt;}
.yc8{bottom:206.719971pt;}
.y8e{bottom:208.960022pt;}
.y4c{bottom:212.640015pt;}
.y2d{bottom:213.440002pt;}
.ye5{bottom:215.039978pt;}
.y8d{bottom:222.080017pt;}
.yc7{bottom:223.200012pt;}
.ye4{bottom:228.000000pt;}
.y4b{bottom:228.479980pt;}
.y2c{bottom:229.280029pt;}
.y8c{bottom:235.039978pt;}
.yc6{bottom:238.719971pt;}
.ye3{bottom:241.119995pt;}
.y4a{bottom:244.320007pt;}
.y2b{bottom:245.119995pt;}
.y8b{bottom:248.159973pt;}
.ye2{bottom:254.080017pt;}
.yc5{bottom:254.400024pt;}
.y49{bottom:260.320007pt;}
.y2a{bottom:261.119995pt;}
.ye1{bottom:267.039978pt;}
.yc4{bottom:270.880005pt;}
.y8a{bottom:274.080017pt;}
.y48{bottom:276.159973pt;}
.y29{bottom:276.960022pt;}
.ye0{bottom:280.000000pt;}
.yc3{bottom:286.400024pt;}
.y89{bottom:287.039978pt;}
.y47{bottom:292.000000pt;}
.y28{bottom:292.960022pt;}
.ydf{bottom:293.119995pt;}
.y88{bottom:300.159973pt;}
.yc2{bottom:302.239990pt;}
.yde{bottom:306.080017pt;}
.y46{bottom:308.000000pt;}
.y27{bottom:308.799988pt;}
.y87{bottom:313.119995pt;}
.yc1{bottom:318.080017pt;}
.ydd{bottom:319.039978pt;}
.y45{bottom:324.000000pt;}
.y26{bottom:324.640015pt;}
.y86{bottom:326.239990pt;}
.ydc{bottom:332.000000pt;}
.yc0{bottom:334.400024pt;}
.y85{bottom:339.200012pt;}
.y44{bottom:339.679993pt;}
.y25{bottom:340.640015pt;}
.ydb{bottom:345.119995pt;}
.ybf{bottom:349.919983pt;}
.y84{bottom:352.159973pt;}
.y43{bottom:355.679993pt;}
.y24{bottom:356.479980pt;}
.yda{bottom:358.080017pt;}
.y83{bottom:362.880005pt;}
.ybe{bottom:366.239990pt;}
.yd9{bottom:371.200012pt;}
.y42{bottom:371.679993pt;}
.y23{bottom:372.320007pt;}
.ybd{bottom:381.760010pt;}
.yd8{bottom:384.159973pt;}
.y41{bottom:387.520020pt;}
.y22{bottom:388.320007pt;}
.ybc{bottom:397.599976pt;}
.y54{bottom:401.280029pt;}
.y40{bottom:403.359985pt;}
.y21{bottom:404.159973pt;}
.ybb{bottom:413.599976pt;}
.y3f{bottom:419.200012pt;}
.y20{bottom:420.000000pt;}
.yd7{bottom:429.280029pt;}
.yba{bottom:429.760010pt;}
.y3e{bottom:435.200012pt;}
.y1f{bottom:436.000000pt;}
.yb9{bottom:445.280029pt;}
.y3d{bottom:451.039978pt;}
.y1e{bottom:451.840027pt;}
.yd6{bottom:461.280029pt;}
.yb8{bottom:461.760010pt;}
.y3c{bottom:466.880005pt;}
.y1d{bottom:467.679993pt;}
.yb7{bottom:477.119995pt;}
.y72{bottom:479.208503pt;}
.y3b{bottom:482.880005pt;}
.y1c{bottom:483.679993pt;}
.yb6{bottom:492.960022pt;}
.y71{bottom:498.090595pt;}
.y3a{bottom:498.880005pt;}
.y1b{bottom:499.520020pt;}
.yb5{bottom:508.960022pt;}
.y74{bottom:509.594001pt;}
.y70{bottom:513.607548pt;}
.y39{bottom:514.559998pt;}
.y1a{bottom:515.520020pt;}
.yd5{bottom:524.799988pt;}
.yb4{bottom:525.280029pt;}
.y6f{bottom:529.449626pt;}
.y38{bottom:530.559998pt;}
.y19{bottom:531.359985pt;}
.y76{bottom:533.436432pt;}
.yb3{bottom:540.640015pt;}
.y6e{bottom:545.283251pt;}
.y37{bottom:546.559998pt;}
.y18{bottom:547.200012pt;}
.yb2{bottom:556.640015pt;}
.y6d{bottom:561.290015pt;}
.y36{bottom:562.239990pt;}
.yd4{bottom:572.480011pt;}
.yb1{bottom:572.959991pt;}
.y6c{bottom:577.123640pt;}
.y35{bottom:578.239990pt;}
.y17{bottom:579.519989pt;}
.yb0{bottom:588.480011pt;}
.y6b{bottom:593.126157pt;}
.yaf{bottom:604.320007pt;}
.y6a{bottom:608.963987pt;}
.y16{bottom:610.559998pt;}
.yae{bottom:620.160004pt;}
.y69{bottom:624.806065pt;}
.y15{bottom:626.079987pt;}
.yad{bottom:636.160004pt;}
.y68{bottom:641.282313pt;}
.yac{bottom:652.000000pt;}
.y67{bottom:656.644723pt;}
.y82{bottom:658.559998pt;}
.yab{bottom:667.839996pt;}
.y66{bottom:672.486800pt;}
.yaa{bottom:683.839996pt;}
.yd3{bottom:684.320007pt;}
.y14{bottom:687.679993pt;}
.y65{bottom:688.484246pt;}
.ya9{bottom:699.679993pt;}
.y13{bottom:703.200012pt;}
.y64{bottom:704.481691pt;}
.y104{bottom:709.440002pt;}
.ya8{bottom:715.519989pt;}
.y63{bottom:720.641287pt;}
.y103{bottom:722.239990pt;}
.ya7{bottom:731.519989pt;}
.y12{bottom:734.079987pt;}
.y102{bottom:735.359985pt;}
.y62{bottom:736.165847pt;}
.ya6{bottom:747.359985pt;}
.y101{bottom:748.320007pt;}
.y11{bottom:749.600006pt;}
.y61{bottom:752.163292pt;}
.y100{bottom:761.440002pt;}
.ya5{bottom:763.359985pt;}
.y10{bottom:764.799988pt;}
.y60{bottom:768.485017pt;}
.yff{bottom:774.399994pt;}
.ya4{bottom:779.200012pt;}
.yf{bottom:780.320007pt;}
.y5f{bottom:784.320333pt;}
.yfe{bottom:787.359985pt;}
.ya3{bottom:795.040009pt;}
.ye{bottom:795.839996pt;}
.y5e{bottom:799.682743pt;}
.yfd{bottom:800.320007pt;}
.ya2{bottom:811.039993pt;}
.yd{bottom:811.199997pt;}
.yfc{bottom:813.440002pt;}
.y5d{bottom:815.680188pt;}
.yfb{bottom:826.399994pt;}
.yc{bottom:826.720001pt;}
.ya1{bottom:826.880005pt;}
.y5c{bottom:831.522266pt;}
.yfa{bottom:839.520004pt;}
.yb{bottom:842.080002pt;}
.ya0{bottom:842.720001pt;}
.y5b{bottom:847.364344pt;}
.yf9{bottom:852.320007pt;}
.ya{bottom:857.440002pt;}
.y9f{bottom:858.720001pt;}
.y5a{bottom:863.841436pt;}
.yf8{bottom:865.440002pt;}
.y9{bottom:872.960007pt;}
.y9e{bottom:874.720001pt;}
.yf7{bottom:878.399994pt;}
.y59{bottom:879.359234pt;}
.y8{bottom:888.320007pt;}
.y9d{bottom:890.399994pt;}
.yf6{bottom:891.520004pt;}
.y58{bottom:895.039172pt;}
.y7{bottom:903.839996pt;}
.yf5{bottom:904.479996pt;}
.y9c{bottom:906.399994pt;}
.y57{bottom:911.043369pt;}
.yf4{bottom:917.440002pt;}
.y6{bottom:919.199997pt;}
.y9b{bottom:922.399994pt;}
.yd2{bottom:922.720001pt;}
.y78{bottom:923.041464pt;}
.y56{bottom:927.040825pt;}
.yf3{bottom:930.400002pt;}
.y5{bottom:934.720001pt;}
.y9a{bottom:938.080002pt;}
.yf2{bottom:943.519997pt;}
.y4{bottom:953.760002pt;}
.y99{bottom:954.080002pt;}
.yf1{bottom:956.480003pt;}
.y7e{bottom:982.559998pt;}
.y1{bottom:998.560001pt;}
.h12{height:2.398414pt;}
.h10{height:11.520724pt;}
.hb{height:13.280937pt;}
.ha{height:14.237563pt;}
.hd{height:16.322851pt;}
.h11{height:30.171039pt;}
.h15{height:34.059243pt;}
.hc{height:34.872959pt;}
.h1{height:41.779132pt;}
.h9{height:41.858192pt;}
.he{height:43.200509pt;}
.h2{height:44.789333pt;}
.h5{height:45.391450pt;}
.h6{height:45.661637pt;}
.h7{height:47.679993pt;}
.h3{height:49.566735pt;}
.h13{height:54.941312pt;}
.hf{height:55.045279pt;}
.h14{height:74.648487pt;}
.h4{height:110.053376pt;}
.h8{height:185.281874pt;}
.h0{height:1056.000000pt;}
.w12{width:2.078934pt;}
.w17{width:2.398413pt;}
.wb{width:2.559674pt;}
.wf{width:2.559687pt;}
.w13{width:2.563431pt;}
.w18{width:4.161084pt;}
.w6{width:5.121722pt;}
.w9{width:6.558097pt;}
.w4{width:6.561471pt;}
.w3{width:6.886596pt;}
.w15{width:9.598853pt;}
.w10{width:10.076903pt;}
.wc{width:12.159567pt;}
.wa{width:19.838616pt;}
.w16{width:28.003188pt;}
.w7{width:30.242782pt;}
.w1{width:34.080001pt;}
.we{width:37.918220pt;}
.w8{width:40.323728pt;}
.w5{width:47.999519pt;}
.wd{width:57.599266pt;}
.w14{width:80.003405pt;}
.w2{width:219.358628pt;}
.w11{width:320.479970pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:91.519997pt;}
.xf{left:102.080668pt;}
.x10{left:121.761701pt;}
.x11{left:124.159529pt;}
.x3{left:125.599998pt;}
.x4{left:136.479996pt;}
.x12{left:138.721188pt;}
.xc{left:140.157865pt;}
.x1e{left:144.800003pt;}
.xa{left:151.521241pt;}
.xd{left:170.400647pt;}
.x13{left:196.320454pt;}
.xb{left:199.200962pt;}
.xe{left:210.724375pt;}
.x2{left:221.279999pt;}
.x14{left:233.919246pt;}
.x15{left:236.321350pt;}
.x16{left:246.398254pt;}
.x7{left:275.199371pt;}
.x1d{left:396.000000pt;}
.x6{left:419.679993pt;}
.x5{left:464.799988pt;}
.x1f{left:473.119995pt;}
.x8{left:494.393313pt;}
.x9{left:501.115223pt;}
.x17{left:566.721161pt;}
.x18{left:568.637729pt;}
.x19{left:571.038794pt;}
.x23{left:581.280029pt;}
.x22{left:603.200012pt;}
.x25{left:605.440002pt;}
.x24{left:619.200012pt;}
.x21{left:648.000000pt;}
.x1a{left:650.879782pt;}
.x1b{left:659.996789pt;}
.x1c{left:687.999977pt;}
.x20{left:723.840027pt;}
}




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