
    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_7355386468265e469b3af858.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.133000;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_240413c2fb2e610b8b9e1b4e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_c8c94edf46725cbea70a46c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.679688;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_ba13004d96094e97025e9152.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_6cec18150c26f5b57a518701.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.829000;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_1dca9e5d4c145ff9b308ca16.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.813000;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_1bb1a5b90a56ad06af5ac6de.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.892000;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_71d71e49f10574727724835c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904000;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_57674454537c4290bd96f196.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_b593defd480816a80b9f048c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.000000;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;}
.m3{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249521,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249529,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.439999px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.200070px;}
.ls3{letter-spacing:13.995560px;}
.ls4{letter-spacing:16.124110px;}
.ls2{letter-spacing:43.536479px;}
.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;}
}
.ws0{word-spacing:-33.904696px;}
.ws4{word-spacing:-19.795792px;}
.ws5{word-spacing:-15.565794px;}
.ws2{word-spacing:-14.043594px;}
.ws3{word-spacing:-11.335855px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-2.245726px;}
._1{margin-left:-1.127072px;}
._0{width:1.245853px;}
._6{width:2.772400px;}
._7{width:3.975375px;}
._3{width:5.249751px;}
._2{width:6.313286px;}
._4{width:7.434903px;}
._c{width:8.466254px;}
._5{width:9.840154px;}
._8{width:11.739230px;}
._a{width:12.896234px;}
._9{width:13.957124px;}
._1a{width:15.121525px;}
._d{width:16.977924px;}
._e{width:17.998017px;}
._10{width:19.523911px;}
._f{width:20.712012px;}
._15{width:90.065102px;}
._16{width:136.231506px;}
._17{width:151.069956px;}
._19{width:189.384611px;}
._11{width:510.177733px;}
._12{width:550.889780px;}
._14{width:552.140837px;}
._13{width:699.491720px;}
._18{width:1000.101052px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:45.343422px;}
.fs4{font-size:48.051341px;}
.fs7{font-size:53.465739px;}
.fs0{font-size:56.174378px;}
.fs1{font-size:62.263175px;}
.fs5{font-size:67.679973px;}
.fs3{font-size:73.094371px;}
.fs6{font-size:79.183168px;}
.fs2{font-size:113.023155px;}
.y0{bottom:0.000000px;}
.ybf{bottom:2.519647px;}
.y74{bottom:3.059791px;}
.y79{bottom:3.059798px;}
.y84{bottom:3.059821px;}
.y89{bottom:3.059828px;}
.y8e{bottom:3.059835px;}
.y93{bottom:3.059841px;}
.y98{bottom:3.059848px;}
.y9d{bottom:3.059855px;}
.yaa{bottom:3.059892px;}
.y72{bottom:3.419791px;}
.y77{bottom:3.419798px;}
.y7c{bottom:3.419804px;}
.y7f{bottom:3.419813px;}
.y82{bottom:3.419821px;}
.y87{bottom:3.419828px;}
.y8c{bottom:3.419835px;}
.y91{bottom:3.419841px;}
.y96{bottom:3.419848px;}
.y9b{bottom:3.419855px;}
.ya0{bottom:3.419862px;}
.ya5{bottom:3.419885px;}
.ya8{bottom:3.419892px;}
.y2{bottom:103.139959px;}
.y55{bottom:138.599945px;}
.y2e{bottom:142.739943px;}
.yb4{bottom:149.759940px;}
.yae{bottom:154.799938px;}
.y54{bottom:156.419937px;}
.yd9{bottom:160.019936px;}
.y2d{bottom:160.379936px;}
.y53{bottom:174.239930px;}
.yb3{bottom:177.119929px;}
.y2c{bottom:178.199929px;}
.yfc{bottom:180.899928px;}
.yad{bottom:187.199925px;}
.yd8{bottom:190.259924px;}
.y52{bottom:192.059923px;}
.y2b{bottom:196.199922px;}
.y51{bottom:209.879916px;}
.y2a{bottom:213.839914px;}
.yfb{bottom:217.259913px;}
.yac{bottom:219.599912px;}
.y50{bottom:227.699909px;}
.y29{bottom:231.839907px;}
.y4f{bottom:245.519902px;}
.y28{bottom:249.659900px;}
.yab{bottom:252.179899px;}
.yfa{bottom:255.599898px;}
.y4e{bottom:263.519895px;}
.ya7{bottom:266.220000px;}
.ya9{bottom:266.580000px;}
.y27{bottom:267.299893px;}
.ya6{bottom:269.099892px;}
.yf9{bottom:271.799891px;}
.y4d{bottom:281.339887px;}
.ya4{bottom:285.120000px;}
.y26{bottom:285.299886px;}
.yf8{bottom:287.819885px;}
.ya3{bottom:287.999885px;}
.yd3{bottom:291.419883px;}
.y4c{bottom:298.979880px;}
.y25{bottom:303.119879px;}
.yf7{bottom:304.019878px;}
.ya2{bottom:307.079877px;}
.y4b{bottom:316.979873px;}
.yf6{bottom:320.399872px;}
.y24{bottom:320.939872px;}
.yd2{bottom:321.299871px;}
.ya1{bottom:326.159870px;}
.yd7{bottom:334.799866px;}
.yf5{bottom:336.599865px;}
.y23{bottom:338.759864px;}
.y9f{bottom:342.360000px;}
.y4a{bottom:343.259863px;}
.y9e{bottom:345.239862px;}
.yf4{bottom:352.799859px;}
.y9a{bottom:359.280000px;}
.y9c{bottom:359.640000px;}
.y99{bottom:362.159855px;}
.yd6{bottom:364.859854px;}
.y22{bottom:365.759854px;}
.yf3{bottom:368.999852px;}
.y49{bottom:371.159852px;}
.y95{bottom:376.200000px;}
.y97{bottom:376.560000px;}
.y94{bottom:379.079848px;}
.yf2{bottom:385.199846px;}
.y48{bottom:388.979844px;}
.y90{bottom:393.120000px;}
.y92{bottom:393.480000px;}
.y8f{bottom:395.999842px;}
.yf1{bottom:401.399839px;}
.y47{bottom:406.799837px;}
.y8b{bottom:410.040000px;}
.y8d{bottom:410.400000px;}
.y21{bottom:411.479835px;}
.y8a{bottom:412.919835px;}
.yf0{bottom:417.599833px;}
.ycf{bottom:421.739831px;}
.y46{bottom:424.799830px;}
.y86{bottom:426.960000px;}
.y88{bottom:427.320000px;}
.y85{bottom:429.839828px;}
.yef{bottom:433.799826px;}
.y20{bottom:439.379824px;}
.y45{bottom:442.439823px;}
.y81{bottom:443.880000px;}
.y83{bottom:444.240000px;}
.y80{bottom:446.759821px;}
.yb2{bottom:448.379821px;}
.yee{bottom:450.179820px;}
.yce{bottom:451.439819px;}
.y1f{bottom:455.759818px;}
.y44{bottom:460.259816px;}
.y7e{bottom:463.140000px;}
.y7d{bottom:466.019814px;}
.yed{bottom:466.199814px;}
.y1e{bottom:471.779811px;}
.y43{bottom:478.259809px;}
.yb1{bottom:480.959808px;}
.yec{bottom:482.399807px;}
.y7b{bottom:485.460000px;}
.y1d{bottom:487.979805px;}
.y7a{bottom:488.339805px;}
.y42{bottom:495.899802px;}
.yeb{bottom:498.599801px;}
.y76{bottom:502.380000px;}
.y78{bottom:502.740000px;}
.y1c{bottom:504.179798px;}
.y75{bottom:505.259798px;}
.y41{bottom:513.899794px;}
.yea{bottom:514.979794px;}
.y71{bottom:519.300000px;}
.y73{bottom:519.660000px;}
.y1b{bottom:520.559792px;}
.y70{bottom:522.179791px;}
.ye9{bottom:531.179788px;}
.y40{bottom:531.719787px;}
.y1a{bottom:536.759785px;}
.y6f{bottom:538.919784px;}
.y3f{bottom:549.359780px;}
.y19{bottom:552.959779px;}
.y6e{bottom:564.299774px;}
.y3e{bottom:567.359773px;}
.ye8{bottom:567.899773px;}
.y18{bottom:568.979772px;}
.y3d{bottom:585.179766px;}
.y6d{bottom:589.679764px;}
.y17{bottom:599.759760px;}
.y3c{bottom:602.999759px;}
.y6c{bottom:607.499757px;}
.ye7{bottom:610.199756px;}
.y3b{bottom:620.819752px;}
.y6b{bottom:625.319750px;}
.ye6{bottom:629.099748px;}
.y16{bottom:637.919745px;}
.y3a{bottom:638.639745px;}
.y6a{bottom:643.139743px;}
.ye5{bottom:646.919741px;}
.y39{bottom:656.459737px;}
.y69{bottom:661.139736px;}
.ye4{bottom:664.739734px;}
.y38{bottom:674.279730px;}
.y15{bottom:675.719730px;}
.y68{bottom:678.959728px;}
.ye3{bottom:682.559727px;}
.yd5{bottom:685.439726px;}
.y37{bottom:692.279723px;}
.yd1{bottom:692.999723px;}
.y67{bottom:696.599721px;}
.y14{bottom:699.299720px;}
.ye2{bottom:700.379720px;}
.yb0{bottom:700.739720px;}
.y36{bottom:709.919716px;}
.y66{bottom:714.599714px;}
.yd4{bottom:715.319714px;}
.ye1{bottom:718.379713px;}
.y13{bottom:718.739713px;}
.yd0{bottom:722.699711px;}
.ycb{bottom:725.579710px;}
.y35{bottom:727.739709px;}
.y65{bottom:732.419707px;}
.ye0{bottom:736.019706px;}
.y12{bottom:738.179705px;}
.yca{bottom:738.539705px;}
.y64{bottom:750.239700px;}
.yc9{bottom:751.499699px;}
.ydf{bottom:754.019698px;}
.y34{bottom:754.199698px;}
.yc8{bottom:764.459694px;}
.ycd{bottom:766.079694px;}
.y11{bottom:766.259693px;}
.y63{bottom:768.059693px;}
.yde{bottom:771.839691px;}
.yc7{bottom:777.599689px;}
.yf{bottom:781.739687px;}
.y33{bottom:783.719687px;}
.y62{bottom:785.879686px;}
.ydd{bottom:789.479684px;}
.y10{bottom:790.199684px;}
.yc6{bottom:790.379684px;}
.ycc{bottom:798.659681px;}
.yc5{bottom:803.339679px;}
.y61{bottom:803.699679px;}
.ydc{bottom:807.479677px;}
.yc4{bottom:817.019673px;}
.ye{bottom:817.199673px;}
.y60{bottom:821.519671px;}
.yc3{bottom:830.159668px;}
.ydb{bottom:834.299666px;}
.y5f{bottom:839.519664px;}
.yd{bottom:840.959664px;}
.yc2{bottom:842.939663px;}
.yc1{bottom:856.079658px;}
.y5e{bottom:857.159657px;}
.yda{bottom:861.119656px;}
.yc{bottom:864.719654px;}
.yc0{bottom:868.859652px;}
.y5d{bottom:874.979650px;}
.ybe{bottom:879.480000px;}
.yb{bottom:888.299645px;}
.y5c{bottom:892.979643px;}
.ybd{bottom:895.679642px;}
.y9{bottom:904.139638px;}
.ybc{bottom:908.639637px;}
.y5b{bottom:910.619636px;}
.ya{bottom:912.599635px;}
.ybb{bottom:921.419631px;}
.y8{bottom:925.379630px;}
.y5a{bottom:928.619629px;}
.yba{bottom:934.559626px;}
.y6{bottom:941.219624px;}
.y59{bottom:946.439621px;}
.yb9{bottom:947.519621px;}
.y7{bottom:949.679620px;}
.yb8{bottom:961.739615px;}
.y58{bottom:964.079614px;}
.yb7{bottom:977.759609px;}
.y5{bottom:979.559608px;}
.y57{bottom:982.079607px;}
.y32{bottom:992.339603px;}
.yb6{bottom:994.139602px;}
.y56{bottom:999.899600px;}
.yb5{bottom:1010.339596px;}
.y4{bottom:1011.419595px;}
.y31{bottom:1017.719593px;}
.y30{bottom:1035.539586px;}
.y3{bottom:1042.919583px;}
.y2f{bottom:1053.359579px;}
.yaf{bottom:1054.259578px;}
.y1{bottom:1086.659565px;}
.h16{height:12.780000px;}
.h12{height:15.480000px;}
.h11{height:15.840000px;}
.h15{height:31.377648px;}
.h6{height:33.251528px;}
.h7{height:35.052812px;}
.ha{height:35.221335px;}
.h17{height:37.440442px;}
.hc{height:38.367100px;}
.hf{height:38.872669px;}
.he{height:39.265890px;}
.h2{height:41.498649px;}
.hd{height:46.834541px;}
.h10{height:48.921151px;}
.h5{height:50.581305px;}
.h1{height:51.399555px;}
.h13{height:52.839555px;}
.h14{height:53.559555px;}
.hb{height:54.794752px;}
.h3{height:56.970805px;}
.h8{height:61.927175px;}
.h9{height:66.881349px;}
.h18{height:72.452599px;}
.h4{height:75.330374px;}
.h0{height:1188.000000px;}
.w13{width:3.600000px;}
.wf{width:5.580000px;}
.w10{width:5.760000px;}
.w2{width:7.020000px;}
.w11{width:11.340000px;}
.w12{width:19.440000px;}
.wa{width:56.880000px;}
.w9{width:58.500000px;}
.wc{width:59.940000px;}
.wb{width:71.640000px;}
.w1{width:80.460000px;}
.wd{width:81.180000px;}
.w8{width:81.900000px;}
.w7{width:84.960000px;}
.w3{width:88.200000px;}
.w4{width:94.500000px;}
.we{width:101.520000px;}
.w14{width:106.740000px;}
.w6{width:123.480000px;}
.w5{width:126.720000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:153.179939px;}
.x13{left:155.339938px;}
.xd{left:165.239934px;}
.x6{left:169.379880px;}
.xe{left:172.979930px;}
.x14{left:175.139291px;}
.x54{left:178.559929px;}
.x38{left:182.160097px;}
.x39{left:184.140102px;}
.x15{left:187.019925px;}
.x1{left:196.019922px;}
.x55{left:203.941028px;}
.x5{left:212.399915px;}
.x41{left:217.980000px;}
.x4a{left:219.959912px;}
.x37{left:225.359910px;}
.x4c{left:232.199907px;}
.x19{left:236.519905px;}
.x53{left:237.599905px;}
.x32{left:242.818846px;}
.x3a{left:254.880107px;}
.x42{left:266.220000px;}
.x50{left:297.179881px;}
.x3c{left:303.660144px;}
.x1f{left:305.099824px;}
.x43{left:306.720000px;}
.x40{left:309.599853px;}
.x3b{left:313.560140px;}
.x3d{left:315.000143px;}
.x1e{left:323.099871px;}
.x33{left:324.177621px;}
.x44{left:325.980000px;}
.x2d{left:338.399865px;}
.x20{left:341.819863px;}
.xa{left:344.519862px;}
.x4e{left:347.039861px;}
.x3e{left:349.740099px;}
.x7{left:359.459492px;}
.x45{left:361.080000px;}
.xc{left:365.579854px;}
.x49{left:366.839853px;}
.x12{left:369.899852px;}
.x47{left:371.519851px;}
.x1c{left:373.139851px;}
.x35{left:374.219850px;}
.x10{left:378.539849px;}
.x8{left:383.219847px;}
.x3f{left:387.360092px;}
.xf{left:407.159173px;}
.x18{left:454.499818px;}
.x16{left:485.099806px;}
.x25{left:500.220000px;}
.x27{left:501.840000px;}
.x30{left:512.820000px;}
.x1a{left:516.419793px;}
.x9{left:519.839792px;}
.x29{left:521.100000px;}
.x21{left:523.260000px;}
.xb{left:525.419790px;}
.x2e{left:527.760000px;}
.x11{left:530.639788px;}
.x2b{left:534.240000px;}
.x48{left:537.479785px;}
.x2c{left:592.740000px;}
.x2f{left:599.220000px;}
.x22{left:603.720000px;}
.x2a{left:606.060000px;}
.x23{left:607.500000px;}
.x24{left:610.740000px;}
.x31{left:614.160000px;}
.x28{left:625.140000px;}
.x26{left:626.940000px;}
.x4d{left:676.799729px;}
.x52{left:677.879729px;}
.x4b{left:706.139718px;}
.x2{left:712.979715px;}
.x4f{left:716.399713px;}
.x1d{left:718.559713px;}
.x17{left:721.799711px;}
.x34{left:726.299709px;}
.x46{left:732.059707px;}
.x51{left:733.139707px;}
.x1b{left:741.958964px;}
.x36{left:745.379702px;}
.x4{left:754.379698px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.279999pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.177840pt;}
.ls3{letter-spacing:12.440498pt;}
.ls4{letter-spacing:14.332543pt;}
.ls2{letter-spacing:38.699093pt;}
.ws0{word-spacing:-30.137508pt;}
.ws4{word-spacing:-17.596260pt;}
.ws5{word-spacing:-13.836261pt;}
.ws2{word-spacing:-12.483195pt;}
.ws3{word-spacing:-10.076316pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-1.996201pt;}
._1{margin-left:-1.001842pt;}
._0{width:1.107425pt;}
._6{width:2.464355pt;}
._7{width:3.533667pt;}
._3{width:4.666445pt;}
._2{width:5.611809pt;}
._4{width:6.608803pt;}
._c{width:7.525559pt;}
._5{width:8.746804pt;}
._8{width:10.434871pt;}
._a{width:11.463319pt;}
._9{width:12.406333pt;}
._1a{width:13.441356pt;}
._d{width:15.091488pt;}
._e{width:15.998237pt;}
._10{width:17.354588pt;}
._f{width:18.410678pt;}
._15{width:80.057868pt;}
._16{width:121.094672pt;}
._17{width:134.284405pt;}
._19{width:168.341877pt;}
._11{width:453.491318pt;}
._12{width:489.679804pt;}
._14{width:490.791855pt;}
._13{width:621.770418pt;}
._18{width:888.978713pt;}
.fs8{font-size:40.305264pt;}
.fs4{font-size:42.712303pt;}
.fs7{font-size:47.525101pt;}
.fs0{font-size:49.932780pt;}
.fs1{font-size:55.345045pt;}
.fs5{font-size:60.159976pt;}
.fs3{font-size:64.972774pt;}
.fs6{font-size:70.385039pt;}
.fs2{font-size:100.465026pt;}
.y0{bottom:0.000000pt;}
.ybf{bottom:2.239686pt;}
.y74{bottom:2.719814pt;}
.y79{bottom:2.719820pt;}
.y84{bottom:2.719841pt;}
.y89{bottom:2.719847pt;}
.y8e{bottom:2.719853pt;}
.y93{bottom:2.719859pt;}
.y98{bottom:2.719865pt;}
.y9d{bottom:2.719871pt;}
.yaa{bottom:2.719904pt;}
.y72{bottom:3.039814pt;}
.y77{bottom:3.039820pt;}
.y7c{bottom:3.039826pt;}
.y7f{bottom:3.039834pt;}
.y82{bottom:3.039841pt;}
.y87{bottom:3.039847pt;}
.y8c{bottom:3.039853pt;}
.y91{bottom:3.039859pt;}
.y96{bottom:3.039865pt;}
.y9b{bottom:3.039871pt;}
.ya0{bottom:3.039877pt;}
.ya5{bottom:3.039897pt;}
.ya8{bottom:3.039904pt;}
.y2{bottom:91.679963pt;}
.y55{bottom:123.199951pt;}
.y2e{bottom:126.879949pt;}
.yb4{bottom:133.119947pt;}
.yae{bottom:137.599945pt;}
.y54{bottom:139.039944pt;}
.yd9{bottom:142.239943pt;}
.y2d{bottom:142.559943pt;}
.y53{bottom:154.879938pt;}
.yb3{bottom:157.439937pt;}
.y2c{bottom:158.399937pt;}
.yfc{bottom:160.799936pt;}
.yad{bottom:166.399933pt;}
.yd8{bottom:169.119932pt;}
.y52{bottom:170.719932pt;}
.y2b{bottom:174.399930pt;}
.y51{bottom:186.559925pt;}
.y2a{bottom:190.079924pt;}
.yfb{bottom:193.119923pt;}
.yac{bottom:195.199922pt;}
.y50{bottom:202.399919pt;}
.y29{bottom:206.079918pt;}
.y4f{bottom:218.239913pt;}
.y28{bottom:221.919911pt;}
.yab{bottom:224.159910pt;}
.yfa{bottom:227.199909pt;}
.y4e{bottom:234.239906pt;}
.ya7{bottom:236.640000pt;}
.ya9{bottom:236.960000pt;}
.y27{bottom:237.599905pt;}
.ya6{bottom:239.199904pt;}
.yf9{bottom:241.599903pt;}
.y4d{bottom:250.079900pt;}
.ya4{bottom:253.440000pt;}
.y26{bottom:253.599899pt;}
.yf8{bottom:255.839898pt;}
.ya3{bottom:255.999898pt;}
.yd3{bottom:259.039896pt;}
.y4c{bottom:265.759894pt;}
.y25{bottom:269.439892pt;}
.yf7{bottom:270.239892pt;}
.ya2{bottom:272.959891pt;}
.y4b{bottom:281.759887pt;}
.yf6{bottom:284.799886pt;}
.y24{bottom:285.279886pt;}
.yd2{bottom:285.599886pt;}
.ya1{bottom:289.919884pt;}
.yd7{bottom:297.599881pt;}
.yf5{bottom:299.199880pt;}
.y23{bottom:301.119880pt;}
.y9f{bottom:304.320000pt;}
.y4a{bottom:305.119878pt;}
.y9e{bottom:306.879877pt;}
.yf4{bottom:313.599875pt;}
.y9a{bottom:319.360000pt;}
.y9c{bottom:319.680000pt;}
.y99{bottom:321.919871pt;}
.yd6{bottom:324.319870pt;}
.y22{bottom:325.119870pt;}
.yf3{bottom:327.999869pt;}
.y49{bottom:329.919868pt;}
.y95{bottom:334.400000pt;}
.y97{bottom:334.720000pt;}
.y94{bottom:336.959865pt;}
.yf2{bottom:342.399863pt;}
.y48{bottom:345.759862pt;}
.y90{bottom:349.440000pt;}
.y92{bottom:349.760000pt;}
.y8f{bottom:351.999859pt;}
.yf1{bottom:356.799857pt;}
.y47{bottom:361.599855pt;}
.y8b{bottom:364.480000pt;}
.y8d{bottom:364.800000pt;}
.y21{bottom:365.759854pt;}
.y8a{bottom:367.039853pt;}
.yf0{bottom:371.199852pt;}
.ycf{bottom:374.879850pt;}
.y46{bottom:377.599849pt;}
.y86{bottom:379.520000pt;}
.y88{bottom:379.840000pt;}
.y85{bottom:382.079847pt;}
.yef{bottom:385.599846pt;}
.y20{bottom:390.559844pt;}
.y45{bottom:393.279843pt;}
.y81{bottom:394.560000pt;}
.y83{bottom:394.880000pt;}
.y80{bottom:397.119841pt;}
.yb2{bottom:398.559841pt;}
.yee{bottom:400.159840pt;}
.yce{bottom:401.279839pt;}
.y1f{bottom:405.119838pt;}
.y44{bottom:409.119836pt;}
.y7e{bottom:411.680000pt;}
.y7d{bottom:414.239834pt;}
.yed{bottom:414.399834pt;}
.y1e{bottom:419.359832pt;}
.y43{bottom:425.119830pt;}
.yb1{bottom:427.519829pt;}
.yec{bottom:428.799828pt;}
.y7b{bottom:431.520000pt;}
.y1d{bottom:433.759826pt;}
.y7a{bottom:434.079826pt;}
.y42{bottom:440.799824pt;}
.yeb{bottom:443.199823pt;}
.y76{bottom:446.560000pt;}
.y78{bottom:446.880000pt;}
.y1c{bottom:448.159821pt;}
.y75{bottom:449.119820pt;}
.y41{bottom:456.799817pt;}
.yea{bottom:457.759817pt;}
.y71{bottom:461.600000pt;}
.y73{bottom:461.920000pt;}
.y1b{bottom:462.719815pt;}
.y70{bottom:464.159814pt;}
.ye9{bottom:472.159811pt;}
.y40{bottom:472.639811pt;}
.y1a{bottom:477.119809pt;}
.y6f{bottom:479.039808pt;}
.y3f{bottom:488.319805pt;}
.y19{bottom:491.519803pt;}
.y6e{bottom:501.599799pt;}
.y3e{bottom:504.319798pt;}
.ye8{bottom:504.799798pt;}
.y18{bottom:505.759798pt;}
.y3d{bottom:520.159792pt;}
.y6d{bottom:524.159790pt;}
.y17{bottom:533.119787pt;}
.y3c{bottom:535.999786pt;}
.y6c{bottom:539.999784pt;}
.ye7{bottom:542.399783pt;}
.y3b{bottom:551.839779pt;}
.y6b{bottom:555.839778pt;}
.ye6{bottom:559.199776pt;}
.y16{bottom:567.039773pt;}
.y3a{bottom:567.679773pt;}
.y6a{bottom:571.679771pt;}
.ye5{bottom:575.039770pt;}
.y39{bottom:583.519767pt;}
.y69{bottom:587.679765pt;}
.ye4{bottom:590.879764pt;}
.y38{bottom:599.359760pt;}
.y15{bottom:600.639760pt;}
.y68{bottom:603.519759pt;}
.ye3{bottom:606.719757pt;}
.yd5{bottom:609.279756pt;}
.y37{bottom:615.359754pt;}
.yd1{bottom:615.999754pt;}
.y67{bottom:619.199752pt;}
.y14{bottom:621.599751pt;}
.ye2{bottom:622.559751pt;}
.yb0{bottom:622.879751pt;}
.y36{bottom:631.039748pt;}
.y66{bottom:635.199746pt;}
.yd4{bottom:635.839746pt;}
.ye1{bottom:638.559745pt;}
.y13{bottom:638.879744pt;}
.yd0{bottom:642.399743pt;}
.ycb{bottom:644.959742pt;}
.y35{bottom:646.879741pt;}
.y65{bottom:651.039740pt;}
.ye0{bottom:654.239738pt;}
.y12{bottom:656.159738pt;}
.yca{bottom:656.479737pt;}
.y64{bottom:666.879733pt;}
.yc9{bottom:667.999733pt;}
.ydf{bottom:670.239732pt;}
.y34{bottom:670.399732pt;}
.yc8{bottom:679.519728pt;}
.ycd{bottom:680.959728pt;}
.y11{bottom:681.119728pt;}
.y63{bottom:682.719727pt;}
.yde{bottom:686.079726pt;}
.yc7{bottom:691.199724pt;}
.yf{bottom:694.879722pt;}
.y33{bottom:696.639721pt;}
.y62{bottom:698.559721pt;}
.ydd{bottom:701.759719pt;}
.y10{bottom:702.399719pt;}
.yc6{bottom:702.559719pt;}
.ycc{bottom:709.919716pt;}
.yc5{bottom:714.079714pt;}
.y61{bottom:714.399714pt;}
.ydc{bottom:717.759713pt;}
.yc4{bottom:726.239710pt;}
.ye{bottom:726.399709pt;}
.y60{bottom:730.239708pt;}
.yc3{bottom:737.919705pt;}
.ydb{bottom:741.599703pt;}
.y5f{bottom:746.239702pt;}
.yd{bottom:747.519701pt;}
.yc2{bottom:749.279700pt;}
.yc1{bottom:760.959696pt;}
.y5e{bottom:761.919695pt;}
.yda{bottom:765.439694pt;}
.yc{bottom:768.639693pt;}
.yc0{bottom:772.319691pt;}
.y5d{bottom:777.759689pt;}
.ybe{bottom:781.760000pt;}
.yb{bottom:789.599684pt;}
.y5c{bottom:793.759682pt;}
.ybd{bottom:796.159682pt;}
.y9{bottom:803.679679pt;}
.ybc{bottom:807.679677pt;}
.y5b{bottom:809.439676pt;}
.ya{bottom:811.199676pt;}
.ybb{bottom:819.039672pt;}
.y8{bottom:822.559671pt;}
.y5a{bottom:825.439670pt;}
.yba{bottom:830.719668pt;}
.y6{bottom:836.639665pt;}
.y59{bottom:841.279663pt;}
.yb9{bottom:842.239663pt;}
.y7{bottom:844.159662pt;}
.yb8{bottom:854.879658pt;}
.y58{bottom:856.959657pt;}
.yb7{bottom:869.119652pt;}
.y5{bottom:870.719652pt;}
.y57{bottom:872.959651pt;}
.y32{bottom:882.079647pt;}
.yb6{bottom:883.679647pt;}
.y56{bottom:888.799644pt;}
.yb5{bottom:898.079641pt;}
.y4{bottom:899.039640pt;}
.y31{bottom:904.639638pt;}
.y30{bottom:920.479632pt;}
.y3{bottom:927.039629pt;}
.y2f{bottom:936.319625pt;}
.yaf{bottom:937.119625pt;}
.y1{bottom:965.919614pt;}
.h16{height:11.360000pt;}
.h12{height:13.760000pt;}
.h11{height:14.080000pt;}
.h15{height:27.891243pt;}
.h6{height:29.556914pt;}
.h7{height:31.158055pt;}
.ha{height:31.307853pt;}
.h17{height:33.280393pt;}
.hc{height:34.104089pt;}
.hf{height:34.553484pt;}
.he{height:34.903013pt;}
.h2{height:36.887688pt;}
.hd{height:41.630703pt;}
.h10{height:43.485467pt;}
.h5{height:44.961160pt;}
.h1{height:45.688494pt;}
.h13{height:46.968493pt;}
.h14{height:47.608493pt;}
.hb{height:48.706447pt;}
.h3{height:50.640716pt;}
.h8{height:55.046378pt;}
.h9{height:59.450088pt;}
.h18{height:64.402310pt;}
.h4{height:66.960333pt;}
.h0{height:1056.000000pt;}
.w13{width:3.200000pt;}
.wf{width:4.960000pt;}
.w10{width:5.120000pt;}
.w2{width:6.240000pt;}
.w11{width:10.080000pt;}
.w12{width:17.280000pt;}
.wa{width:50.560000pt;}
.w9{width:52.000000pt;}
.wc{width:53.280000pt;}
.wb{width:63.680000pt;}
.w1{width:71.520000pt;}
.wd{width:72.160000pt;}
.w8{width:72.800000pt;}
.w7{width:75.520000pt;}
.w3{width:78.400000pt;}
.w4{width:84.000000pt;}
.we{width:90.240000pt;}
.w14{width:94.880000pt;}
.w6{width:109.760000pt;}
.w5{width:112.640000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:136.159946pt;}
.x13{left:138.079945pt;}
.xd{left:146.879941pt;}
.x6{left:150.559894pt;}
.xe{left:153.759938pt;}
.x14{left:155.679370pt;}
.x54{left:158.719937pt;}
.x38{left:161.920086pt;}
.x39{left:163.680091pt;}
.x15{left:166.239934pt;}
.x1{left:174.239930pt;}
.x55{left:181.280914pt;}
.x5{left:188.799924pt;}
.x41{left:193.760000pt;}
.x4a{left:195.519922pt;}
.x37{left:200.319920pt;}
.x4c{left:206.399917pt;}
.x19{left:210.239916pt;}
.x53{left:211.199916pt;}
.x32{left:215.838974pt;}
.x3a{left:226.560095pt;}
.x42{left:236.640000pt;}
.x50{left:264.159894pt;}
.x3c{left:269.920128pt;}
.x1f{left:271.199843pt;}
.x43{left:272.640000pt;}
.x40{left:275.199870pt;}
.x3b{left:278.720124pt;}
.x3d{left:280.000128pt;}
.x1e{left:287.199885pt;}
.x33{left:288.157885pt;}
.x44{left:289.760000pt;}
.x2d{left:300.799880pt;}
.x20{left:303.839878pt;}
.xa{left:306.239878pt;}
.x4e{left:308.479877pt;}
.x3e{left:310.880088pt;}
.x7{left:319.519548pt;}
.x45{left:320.960000pt;}
.xc{left:324.959870pt;}
.x49{left:326.079870pt;}
.x12{left:328.799868pt;}
.x47{left:330.239868pt;}
.x1c{left:331.679867pt;}
.x35{left:332.639867pt;}
.x10{left:336.479865pt;}
.x8{left:340.639864pt;}
.x3f{left:344.320082pt;}
.xf{left:361.919265pt;}
.x18{left:403.999838pt;}
.x16{left:431.199828pt;}
.x25{left:444.640000pt;}
.x27{left:446.080000pt;}
.x30{left:455.840000pt;}
.x1a{left:459.039816pt;}
.x9{left:462.079815pt;}
.x29{left:463.200000pt;}
.x21{left:465.120000pt;}
.xb{left:467.039813pt;}
.x2e{left:469.120000pt;}
.x11{left:471.679811pt;}
.x2b{left:474.880000pt;}
.x48{left:477.759809pt;}
.x2c{left:526.880000pt;}
.x2f{left:532.640000pt;}
.x22{left:536.640000pt;}
.x2a{left:538.720000pt;}
.x23{left:540.000000pt;}
.x24{left:542.880000pt;}
.x31{left:545.920000pt;}
.x28{left:555.680000pt;}
.x26{left:557.280000pt;}
.x4d{left:601.599759pt;}
.x52{left:602.559759pt;}
.x4b{left:627.679749pt;}
.x2{left:633.759746pt;}
.x4f{left:636.799745pt;}
.x1d{left:638.719745pt;}
.x17{left:641.599743pt;}
.x34{left:645.599742pt;}
.x46{left:650.719740pt;}
.x51{left:651.679739pt;}
.x1b{left:659.519079pt;}
.x36{left:662.559735pt;}
.x4{left:670.559732pt;}
}




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