
    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_b6e771a7cc204136d2263648.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_684eff7c9df9b664d1c9372c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_eee58f6019089c85f1bb8bb6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905762;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_06d04b8a80e113b873970b98.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939000;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_e7a0627b2b5c446773778434.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_405477829024d6a18aa69691.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_39fa6421c70bd227d43483dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.965000;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_5964802599257f18462980ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_edde48198638ac23d0f54210.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_29e750d10f8c4b255299e757.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.926270;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:ffb;src:url('chunks/assets/font_946272068905303faa3bd713.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.715000;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.ls3{letter-spacing:-3.106224px;}
.ls4{letter-spacing:-0.335808px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.006144px;}
.ls2{letter-spacing:0.006744px;}
.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:-78.480000px;}
.ws2{word-spacing:-20.016000px;}
.wsa{word-spacing:-15.012000px;}
.wsb{word-spacing:-13.320000px;}
.ws9{word-spacing:-9.612504px;}
.ws7{word-spacing:-8.563104px;}
.ws3{word-spacing:-3.960000px;}
.wsd{word-spacing:-2.970000px;}
.ws4{word-spacing:-2.664000px;}
.wse{word-spacing:-1.998000px;}
.ws8{word-spacing:-1.296000px;}
.ws6{word-spacing:-0.216000px;}
.wsc{word-spacing:-0.108000px;}
.ws5{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-19.800000px;}
._0{margin-left:-10.836000px;}
._9{margin-left:-8.004000px;}
._4{margin-left:-6.954000px;}
._6{margin-left:-5.241600px;}
._2{margin-left:-4.200000px;}
._5{margin-left:-2.685600px;}
._3{margin-left:-1.284000px;}
._a{width:1.296000px;}
._8{width:2.649600px;}
._7{width:3.984000px;}
._b{width:5.976000px;}
._d{width:15.386400px;}
._c{width:68.951400px;}
._e{width:83.963400px;}
.fc4{color:rgb(70,118,135);}
.fc3{color:rgb(16,15,13);}
.fc2{color:rgb(79,76,77);}
.fc1{color:rgb(210,32,39);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:41.976000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y15f{bottom:55.674774px;}
.y161{bottom:55.823574px;}
.y15e{bottom:70.670700px;}
.y160{bottom:70.819500px;}
.y15d{bottom:80.562924px;}
.y1e{bottom:87.312900px;}
.y15c{bottom:95.558850px;}
.y1d{bottom:114.312900px;}
.ye{bottom:117.101424px;}
.y71{bottom:118.772100px;}
.yeb{bottom:128.019450px;}
.yd{bottom:132.097350px;}
.yc1{bottom:133.796100px;}
.y55{bottom:133.832100px;}
.y9a{bottom:133.880100px;}
.y149{bottom:135.807300px;}
.y1c{bottom:141.312900px;}
.y70{bottom:142.766100px;}
.y148{bottom:152.007300px;}
.yea{bottom:152.013450px;}
.y111{bottom:157.754100px;}
.yc0{bottom:157.790100px;}
.y99{bottom:157.874100px;}
.y54{bottom:160.832100px;}
.y6f{bottom:166.760100px;}
.y1b{bottom:168.312900px;}
.y58{bottom:171.540198px;}
.y147{bottom:173.607300px;}
.ye9{bottom:176.007450px;}
.y2e{bottom:179.336124px;}
.y110{bottom:181.748100px;}
.ybf{bottom:181.784100px;}
.y15b{bottom:184.035450px;}
.y57{bottom:186.536124px;}
.y53{bottom:187.832100px;}
.y146{bottom:189.807300px;}
.y6e{bottom:190.754100px;}
.y2d{bottom:194.332050px;}
.y1a{bottom:195.312900px;}
.ye8{bottom:200.001450px;}
.y56{bottom:201.532050px;}
.y15a{bottom:205.635450px;}
.y10f{bottom:205.742100px;}
.ybe{bottom:205.778100px;}
.y98{bottom:205.880100px;}
.y145{bottom:206.007300px;}
.y6d{bottom:214.748100px;}
.y52{bottom:214.832100px;}
.y159{bottom:221.835450px;}
.y144{bottom:222.207300px;}
.y19{bottom:222.312900px;}
.ye7{bottom:223.995450px;}
.y10e{bottom:229.736100px;}
.ybd{bottom:229.772100px;}
.y97{bottom:229.874100px;}
.y6c{bottom:238.742100px;}
.y51{bottom:241.832100px;}
.y158{bottom:243.435450px;}
.y143{bottom:243.807300px;}
.ye6{bottom:247.989450px;}
.y18{bottom:249.312900px;}
.ybc{bottom:253.766100px;}
.y96{bottom:253.868100px;}
.y10d{bottom:253.892100px;}
.y157{bottom:259.635450px;}
.y142{bottom:260.007300px;}
.y6b{bottom:262.736100px;}
.y50{bottom:268.832100px;}
.ye5{bottom:271.983450px;}
.y156{bottom:275.835450px;}
.y141{bottom:276.207300px;}
.y17{bottom:276.312900px;}
.ybb{bottom:277.760100px;}
.y95{bottom:277.862100px;}
.y10c{bottom:277.886100px;}
.y6a{bottom:286.730100px;}
.y140{bottom:292.407300px;}
.y4f{bottom:295.832100px;}
.ye4{bottom:295.977450px;}
.y155{bottom:297.435450px;}
.yba{bottom:301.754100px;}
.y94{bottom:301.856100px;}
.y10b{bottom:301.880100px;}
.y16{bottom:303.312900px;}
.y13f{bottom:308.607300px;}
.y69{bottom:310.724100px;}
.y154{bottom:313.635450px;}
.ye3{bottom:319.971450px;}
.y4e{bottom:322.832100px;}
.yb9{bottom:325.748100px;}
.y93{bottom:325.850100px;}
.y10a{bottom:325.874100px;}
.y13e{bottom:330.207300px;}
.y15{bottom:330.312900px;}
.y153{bottom:335.235450px;}
.ye2{bottom:343.965450px;}
.y13d{bottom:346.407300px;}
.yb8{bottom:349.742100px;}
.y4d{bottom:349.832100px;}
.y92{bottom:349.844100px;}
.y109{bottom:349.868100px;}
.y152{bottom:351.435450px;}
.y14{bottom:357.312900px;}
.y68{bottom:358.730100px;}
.y13c{bottom:362.607300px;}
.ye1{bottom:367.959450px;}
.y151{bottom:373.035450px;}
.y91{bottom:373.838100px;}
.y108{bottom:373.862100px;}
.y132{bottom:373.952100px;}
.y4c{bottom:376.832100px;}
.y13b{bottom:378.807300px;}
.y13{bottom:384.312900px;}
.y67{bottom:385.730100px;}
.ye0{bottom:391.953450px;}
.y150{bottom:394.635450px;}
.y13a{bottom:395.007300px;}
.yb7{bottom:397.748100px;}
.y90{bottom:397.832100px;}
.y107{bottom:397.856100px;}
.y131{bottom:397.946100px;}
.y4b{bottom:403.832100px;}
.y14f{bottom:410.835450px;}
.y139{bottom:411.207300px;}
.y12{bottom:411.312900px;}
.y66{bottom:412.730100px;}
.ydf{bottom:416.180100px;}
.yb6{bottom:421.742100px;}
.y8f{bottom:421.826100px;}
.y106{bottom:421.850100px;}
.y130{bottom:421.940100px;}
.y14e{bottom:427.035450px;}
.y138{bottom:427.407300px;}
.y4a{bottom:430.832100px;}
.y11{bottom:438.312900px;}
.y65{bottom:439.730100px;}
.yde{bottom:440.174100px;}
.y14d{bottom:443.235450px;}
.y137{bottom:443.607300px;}
.yb5{bottom:445.736100px;}
.y8e{bottom:445.820100px;}
.y105{bottom:445.844100px;}
.y12f{bottom:445.934100px;}
.y14c{bottom:459.435450px;}
.y136{bottom:459.807300px;}
.ydd{bottom:464.168100px;}
.y10{bottom:465.312900px;}
.y64{bottom:466.730100px;}
.yb4{bottom:469.766100px;}
.y8d{bottom:469.814100px;}
.y104{bottom:469.838100px;}
.y12e{bottom:469.928100px;}
.y14b{bottom:475.635450px;}
.y49{bottom:478.838100px;}
.ydc{bottom:488.162100px;}
.yf{bottom:492.312900px;}
.y63{bottom:493.730100px;}
.yb3{bottom:493.760100px;}
.y8c{bottom:493.808100px;}
.y103{bottom:493.832100px;}
.y12d{bottom:493.922100px;}
.y14a{bottom:497.235450px;}
.y135{bottom:502.401300px;}
.y48{bottom:502.832100px;}
.ydb{bottom:512.156100px;}
.y8b{bottom:517.802100px;}
.y102{bottom:517.826100px;}
.y12c{bottom:517.916100px;}
.y62{bottom:520.730100px;}
.y47{bottom:526.826100px;}
.yda{bottom:536.150100px;}
.yb2{bottom:541.766100px;}
.y8a{bottom:541.796100px;}
.y101{bottom:541.820100px;}
.y12b{bottom:541.910100px;}
.y61{bottom:547.730100px;}
.y46{bottom:550.820100px;}
.yd9{bottom:560.144100px;}
.yb1{bottom:565.760100px;}
.y89{bottom:565.790100px;}
.y100{bottom:565.814100px;}
.y12a{bottom:565.904100px;}
.yc{bottom:569.317350px;}
.y60{bottom:574.730100px;}
.y45{bottom:574.814100px;}
.yd8{bottom:584.138100px;}
.yb0{bottom:589.754100px;}
.y88{bottom:589.784100px;}
.yff{bottom:589.808100px;}
.y129{bottom:589.898100px;}
.y44{bottom:598.808100px;}
.y5f{bottom:601.730100px;}
.yb{bottom:606.884700px;}
.yd7{bottom:608.132100px;}
.y134{bottom:608.501424px;}
.yaf{bottom:613.748100px;}
.y87{bottom:613.778100px;}
.yfe{bottom:613.802100px;}
.y128{bottom:613.892100px;}
.y43{bottom:622.802100px;}
.y133{bottom:623.497350px;}
.ya{bottom:627.884700px;}
.y5e{bottom:628.730100px;}
.yd6{bottom:632.126100px;}
.yae{bottom:637.742100px;}
.y86{bottom:637.772100px;}
.yfd{bottom:637.796100px;}
.y127{bottom:637.886100px;}
.y42{bottom:646.796100px;}
.y9{bottom:648.884700px;}
.y5d{bottom:655.730100px;}
.yd5{bottom:656.120100px;}
.yad{bottom:661.736100px;}
.y85{bottom:661.766100px;}
.yfc{bottom:661.790100px;}
.y126{bottom:661.880100px;}
.y8{bottom:669.884700px;}
.y41{bottom:670.790100px;}
.yd4{bottom:680.114100px;}
.y5c{bottom:682.730100px;}
.y84{bottom:685.760100px;}
.yfb{bottom:685.784100px;}
.yac{bottom:685.826100px;}
.y125{bottom:685.874100px;}
.y7{bottom:690.884700px;}
.y40{bottom:694.784100px;}
.yd3{bottom:704.108100px;}
.y5b{bottom:709.730100px;}
.yfa{bottom:709.778100px;}
.yab{bottom:709.820100px;}
.y124{bottom:709.868100px;}
.y6{bottom:711.884700px;}
.y3f{bottom:718.778100px;}
.yd2{bottom:728.102100px;}
.y5{bottom:732.884700px;}
.y83{bottom:733.766100px;}
.yf9{bottom:733.772100px;}
.yaa{bottom:733.814100px;}
.y123{bottom:733.862100px;}
.y5a{bottom:736.730100px;}
.y3e{bottom:742.772100px;}
.yd1{bottom:752.096100px;}
.y4{bottom:753.884700px;}
.y82{bottom:757.760100px;}
.yf8{bottom:757.766100px;}
.ya9{bottom:757.808100px;}
.y122{bottom:757.856100px;}
.y59{bottom:763.730100px;}
.y2c{bottom:766.736100px;}
.y3d{bottom:766.766100px;}
.yd0{bottom:776.090100px;}
.y81{bottom:781.754100px;}
.yf7{bottom:781.760100px;}
.ya8{bottom:781.802100px;}
.y121{bottom:781.850100px;}
.y34{bottom:790.730100px;}
.y3c{bottom:790.760100px;}
.y2b{bottom:793.736100px;}
.ycf{bottom:800.084100px;}
.y80{bottom:805.748100px;}
.ya7{bottom:805.796100px;}
.y120{bottom:805.844100px;}
.y3b{bottom:814.754100px;}
.y33{bottom:817.730100px;}
.y2a{bottom:820.736100px;}
.yce{bottom:824.078100px;}
.y7f{bottom:829.742100px;}
.yf6{bottom:829.766100px;}
.ya6{bottom:829.790100px;}
.y11f{bottom:829.838100px;}
.y3a{bottom:838.748100px;}
.y32{bottom:844.730100px;}
.y29{bottom:847.736100px;}
.y7e{bottom:853.736100px;}
.yf5{bottom:853.760100px;}
.ya5{bottom:853.784100px;}
.y11e{bottom:853.832100px;}
.y39{bottom:862.742100px;}
.y31{bottom:871.730100px;}
.ycd{bottom:872.084100px;}
.y3{bottom:874.035900px;}
.y28{bottom:874.736100px;}
.yf4{bottom:877.754100px;}
.ya4{bottom:877.778100px;}
.y11d{bottom:877.826100px;}
.y7d{bottom:877.832100px;}
.y38{bottom:886.736100px;}
.ycc{bottom:896.078100px;}
.y30{bottom:898.730100px;}
.y27{bottom:901.736100px;}
.yf3{bottom:901.748100px;}
.ya3{bottom:901.772100px;}
.y11c{bottom:901.820100px;}
.y7c{bottom:901.826100px;}
.y37{bottom:910.730100px;}
.ycb{bottom:920.072100px;}
.y2f{bottom:925.730100px;}
.yf2{bottom:925.742100px;}
.ya2{bottom:925.766100px;}
.y11b{bottom:925.814100px;}
.y7b{bottom:925.820100px;}
.yca{bottom:944.066100px;}
.yf1{bottom:949.736100px;}
.ya1{bottom:949.760100px;}
.y11a{bottom:949.808100px;}
.y7a{bottom:949.814100px;}
.y26{bottom:952.730100px;}
.y36{bottom:958.742100px;}
.yc9{bottom:968.060100px;}
.ya0{bottom:973.754100px;}
.yf0{bottom:973.760100px;}
.y119{bottom:973.802100px;}
.y79{bottom:973.808100px;}
.y25{bottom:979.730100px;}
.y35{bottom:982.736100px;}
.yc8{bottom:992.054100px;}
.y9f{bottom:997.748100px;}
.yef{bottom:997.754100px;}
.y118{bottom:997.796100px;}
.y78{bottom:997.802100px;}
.y24{bottom:1006.730100px;}
.y2{bottom:1009.035900px;}
.yc7{bottom:1016.048100px;}
.yee{bottom:1021.748100px;}
.y117{bottom:1021.790100px;}
.y77{bottom:1021.796100px;}
.y23{bottom:1033.730100px;}
.yc6{bottom:1040.042100px;}
.yed{bottom:1045.742100px;}
.y9e{bottom:1045.754100px;}
.y116{bottom:1045.784100px;}
.y76{bottom:1045.790100px;}
.y22{bottom:1060.730100px;}
.yc5{bottom:1064.036100px;}
.yec{bottom:1069.736100px;}
.y9d{bottom:1069.748100px;}
.y115{bottom:1069.778100px;}
.y75{bottom:1069.784100px;}
.y21{bottom:1087.730100px;}
.yc4{bottom:1088.030100px;}
.y9c{bottom:1093.742100px;}
.y114{bottom:1093.772100px;}
.y74{bottom:1093.778100px;}
.yc3{bottom:1112.024100px;}
.y20{bottom:1114.730100px;}
.y9b{bottom:1117.736100px;}
.y113{bottom:1117.766100px;}
.y73{bottom:1117.772100px;}
.yc2{bottom:1136.018100px;}
.y1f{bottom:1141.730100px;}
.y112{bottom:1141.760100px;}
.y72{bottom:1141.766100px;}
.y1{bottom:1144.035900px;}
.h6{height:30.054816px;}
.ha{height:31.146192px;}
.h14{height:39.313477px;}
.h13{height:39.339844px;}
.h3{height:41.132812px;}
.h4{height:41.220703px;}
.h5{height:49.464844px;}
.h12{height:50.400000px;}
.h8{height:52.417969px;}
.h7{height:52.453125px;}
.hf{height:53.625572px;}
.h11{height:53.908172px;}
.hc{height:54.148172px;}
.hd{height:54.172172px;}
.he{height:54.412172px;}
.h10{height:54.436172px;}
.hb{height:54.487676px;}
.h9{height:54.556172px;}
.h2{height:270.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:52.143300px;}
.x1{left:54.000000px;}
.x3{left:108.113400px;}
.x2{left:468.000000px;}
.x4{left:469.908000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls3{letter-spacing:-2.761088pt;}
.ls4{letter-spacing:-0.298496pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.005461pt;}
.ls2{letter-spacing:0.005995pt;}
.ws0{word-spacing:-69.760000pt;}
.ws2{word-spacing:-17.792000pt;}
.wsa{word-spacing:-13.344000pt;}
.wsb{word-spacing:-11.840000pt;}
.ws9{word-spacing:-8.544448pt;}
.ws7{word-spacing:-7.611648pt;}
.ws3{word-spacing:-3.520000pt;}
.wsd{word-spacing:-2.640000pt;}
.ws4{word-spacing:-2.368000pt;}
.wse{word-spacing:-1.776000pt;}
.ws8{word-spacing:-1.152000pt;}
.ws6{word-spacing:-0.192000pt;}
.wsc{word-spacing:-0.096000pt;}
.ws5{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-17.600000pt;}
._0{margin-left:-9.632000pt;}
._9{margin-left:-7.114667pt;}
._4{margin-left:-6.181333pt;}
._6{margin-left:-4.659200pt;}
._2{margin-left:-3.733333pt;}
._5{margin-left:-2.387200pt;}
._3{margin-left:-1.141333pt;}
._a{width:1.152000pt;}
._8{width:2.355200pt;}
._7{width:3.541333pt;}
._b{width:5.312000pt;}
._d{width:13.676800pt;}
._c{width:61.290133pt;}
._e{width:74.634133pt;}
.fs3{font-size:37.312000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y15f{bottom:49.488688pt;}
.y161{bottom:49.620955pt;}
.y15e{bottom:62.818400pt;}
.y160{bottom:62.950667pt;}
.y15d{bottom:71.611488pt;}
.y1e{bottom:77.611467pt;}
.y15c{bottom:84.941200pt;}
.y1d{bottom:101.611467pt;}
.ye{bottom:104.090155pt;}
.y71{bottom:105.575200pt;}
.yeb{bottom:113.795067pt;}
.yd{bottom:117.419867pt;}
.yc1{bottom:118.929867pt;}
.y55{bottom:118.961867pt;}
.y9a{bottom:119.004533pt;}
.y149{bottom:120.717600pt;}
.y1c{bottom:125.611467pt;}
.y70{bottom:126.903200pt;}
.y148{bottom:135.117600pt;}
.yea{bottom:135.123067pt;}
.y111{bottom:140.225867pt;}
.yc0{bottom:140.257867pt;}
.y99{bottom:140.332533pt;}
.y54{bottom:142.961867pt;}
.y6f{bottom:148.231200pt;}
.y1b{bottom:149.611467pt;}
.y58{bottom:152.480176pt;}
.y147{bottom:154.317600pt;}
.ye9{bottom:156.451067pt;}
.y2e{bottom:159.409888pt;}
.y110{bottom:161.553867pt;}
.ybf{bottom:161.585867pt;}
.y15b{bottom:163.587067pt;}
.y57{bottom:165.809888pt;}
.y53{bottom:166.961867pt;}
.y146{bottom:168.717600pt;}
.y6e{bottom:169.559200pt;}
.y2d{bottom:172.739600pt;}
.y1a{bottom:173.611467pt;}
.ye8{bottom:177.779067pt;}
.y56{bottom:179.139600pt;}
.y15a{bottom:182.787067pt;}
.y10f{bottom:182.881867pt;}
.ybe{bottom:182.913867pt;}
.y98{bottom:183.004533pt;}
.y145{bottom:183.117600pt;}
.y6d{bottom:190.887200pt;}
.y52{bottom:190.961867pt;}
.y159{bottom:197.187067pt;}
.y144{bottom:197.517600pt;}
.y19{bottom:197.611467pt;}
.ye7{bottom:199.107067pt;}
.y10e{bottom:204.209867pt;}
.ybd{bottom:204.241867pt;}
.y97{bottom:204.332533pt;}
.y6c{bottom:212.215200pt;}
.y51{bottom:214.961867pt;}
.y158{bottom:216.387067pt;}
.y143{bottom:216.717600pt;}
.ye6{bottom:220.435067pt;}
.y18{bottom:221.611467pt;}
.ybc{bottom:225.569867pt;}
.y96{bottom:225.660533pt;}
.y10d{bottom:225.681867pt;}
.y157{bottom:230.787067pt;}
.y142{bottom:231.117600pt;}
.y6b{bottom:233.543200pt;}
.y50{bottom:238.961867pt;}
.ye5{bottom:241.763067pt;}
.y156{bottom:245.187067pt;}
.y141{bottom:245.517600pt;}
.y17{bottom:245.611467pt;}
.ybb{bottom:246.897867pt;}
.y95{bottom:246.988533pt;}
.y10c{bottom:247.009867pt;}
.y6a{bottom:254.871200pt;}
.y140{bottom:259.917600pt;}
.y4f{bottom:262.961867pt;}
.ye4{bottom:263.091067pt;}
.y155{bottom:264.387067pt;}
.yba{bottom:268.225867pt;}
.y94{bottom:268.316533pt;}
.y10b{bottom:268.337867pt;}
.y16{bottom:269.611467pt;}
.y13f{bottom:274.317600pt;}
.y69{bottom:276.199200pt;}
.y154{bottom:278.787067pt;}
.ye3{bottom:284.419067pt;}
.y4e{bottom:286.961867pt;}
.yb9{bottom:289.553867pt;}
.y93{bottom:289.644533pt;}
.y10a{bottom:289.665867pt;}
.y13e{bottom:293.517600pt;}
.y15{bottom:293.611467pt;}
.y153{bottom:297.987067pt;}
.ye2{bottom:305.747067pt;}
.y13d{bottom:307.917600pt;}
.yb8{bottom:310.881867pt;}
.y4d{bottom:310.961867pt;}
.y92{bottom:310.972533pt;}
.y109{bottom:310.993867pt;}
.y152{bottom:312.387067pt;}
.y14{bottom:317.611467pt;}
.y68{bottom:318.871200pt;}
.y13c{bottom:322.317600pt;}
.ye1{bottom:327.075067pt;}
.y151{bottom:331.587067pt;}
.y91{bottom:332.300533pt;}
.y108{bottom:332.321867pt;}
.y132{bottom:332.401867pt;}
.y4c{bottom:334.961867pt;}
.y13b{bottom:336.717600pt;}
.y13{bottom:341.611467pt;}
.y67{bottom:342.871200pt;}
.ye0{bottom:348.403067pt;}
.y150{bottom:350.787067pt;}
.y13a{bottom:351.117600pt;}
.yb7{bottom:353.553867pt;}
.y90{bottom:353.628533pt;}
.y107{bottom:353.649867pt;}
.y131{bottom:353.729867pt;}
.y4b{bottom:358.961867pt;}
.y14f{bottom:365.187067pt;}
.y139{bottom:365.517600pt;}
.y12{bottom:365.611467pt;}
.y66{bottom:366.871200pt;}
.ydf{bottom:369.937867pt;}
.yb6{bottom:374.881867pt;}
.y8f{bottom:374.956533pt;}
.y106{bottom:374.977867pt;}
.y130{bottom:375.057867pt;}
.y14e{bottom:379.587067pt;}
.y138{bottom:379.917600pt;}
.y4a{bottom:382.961867pt;}
.y11{bottom:389.611467pt;}
.y65{bottom:390.871200pt;}
.yde{bottom:391.265867pt;}
.y14d{bottom:393.987067pt;}
.y137{bottom:394.317600pt;}
.yb5{bottom:396.209867pt;}
.y8e{bottom:396.284533pt;}
.y105{bottom:396.305867pt;}
.y12f{bottom:396.385867pt;}
.y14c{bottom:408.387067pt;}
.y136{bottom:408.717600pt;}
.ydd{bottom:412.593867pt;}
.y10{bottom:413.611467pt;}
.y64{bottom:414.871200pt;}
.yb4{bottom:417.569867pt;}
.y8d{bottom:417.612533pt;}
.y104{bottom:417.633867pt;}
.y12e{bottom:417.713867pt;}
.y14b{bottom:422.787067pt;}
.y49{bottom:425.633867pt;}
.ydc{bottom:433.921867pt;}
.yf{bottom:437.611467pt;}
.y63{bottom:438.871200pt;}
.yb3{bottom:438.897867pt;}
.y8c{bottom:438.940533pt;}
.y103{bottom:438.961867pt;}
.y12d{bottom:439.041867pt;}
.y14a{bottom:441.987067pt;}
.y135{bottom:446.578933pt;}
.y48{bottom:446.961867pt;}
.ydb{bottom:455.249867pt;}
.y8b{bottom:460.268533pt;}
.y102{bottom:460.289867pt;}
.y12c{bottom:460.369867pt;}
.y62{bottom:462.871200pt;}
.y47{bottom:468.289867pt;}
.yda{bottom:476.577867pt;}
.yb2{bottom:481.569867pt;}
.y8a{bottom:481.596533pt;}
.y101{bottom:481.617867pt;}
.y12b{bottom:481.697867pt;}
.y61{bottom:486.871200pt;}
.y46{bottom:489.617867pt;}
.yd9{bottom:497.905867pt;}
.yb1{bottom:502.897867pt;}
.y89{bottom:502.924533pt;}
.y100{bottom:502.945867pt;}
.y12a{bottom:503.025867pt;}
.yc{bottom:506.059867pt;}
.y60{bottom:510.871200pt;}
.y45{bottom:510.945867pt;}
.yd8{bottom:519.233867pt;}
.yb0{bottom:524.225867pt;}
.y88{bottom:524.252533pt;}
.yff{bottom:524.273867pt;}
.y129{bottom:524.353867pt;}
.y44{bottom:532.273867pt;}
.y5f{bottom:534.871200pt;}
.yb{bottom:539.453067pt;}
.yd7{bottom:540.561867pt;}
.y134{bottom:540.890155pt;}
.yaf{bottom:545.553867pt;}
.y87{bottom:545.580533pt;}
.yfe{bottom:545.601867pt;}
.y128{bottom:545.681867pt;}
.y43{bottom:553.601867pt;}
.y133{bottom:554.219867pt;}
.ya{bottom:558.119733pt;}
.y5e{bottom:558.871200pt;}
.yd6{bottom:561.889867pt;}
.yae{bottom:566.881867pt;}
.y86{bottom:566.908533pt;}
.yfd{bottom:566.929867pt;}
.y127{bottom:567.009867pt;}
.y42{bottom:574.929867pt;}
.y9{bottom:576.786400pt;}
.y5d{bottom:582.871200pt;}
.yd5{bottom:583.217867pt;}
.yad{bottom:588.209867pt;}
.y85{bottom:588.236533pt;}
.yfc{bottom:588.257867pt;}
.y126{bottom:588.337867pt;}
.y8{bottom:595.453067pt;}
.y41{bottom:596.257867pt;}
.yd4{bottom:604.545867pt;}
.y5c{bottom:606.871200pt;}
.y84{bottom:609.564533pt;}
.yfb{bottom:609.585867pt;}
.yac{bottom:609.623200pt;}
.y125{bottom:609.665867pt;}
.y7{bottom:614.119733pt;}
.y40{bottom:617.585867pt;}
.yd3{bottom:625.873867pt;}
.y5b{bottom:630.871200pt;}
.yfa{bottom:630.913867pt;}
.yab{bottom:630.951200pt;}
.y124{bottom:630.993867pt;}
.y6{bottom:632.786400pt;}
.y3f{bottom:638.913867pt;}
.yd2{bottom:647.201867pt;}
.y5{bottom:651.453067pt;}
.y83{bottom:652.236533pt;}
.yf9{bottom:652.241867pt;}
.yaa{bottom:652.279200pt;}
.y123{bottom:652.321867pt;}
.y5a{bottom:654.871200pt;}
.y3e{bottom:660.241867pt;}
.yd1{bottom:668.529867pt;}
.y4{bottom:670.119733pt;}
.y82{bottom:673.564533pt;}
.yf8{bottom:673.569867pt;}
.ya9{bottom:673.607200pt;}
.y122{bottom:673.649867pt;}
.y59{bottom:678.871200pt;}
.y2c{bottom:681.543200pt;}
.y3d{bottom:681.569867pt;}
.yd0{bottom:689.857867pt;}
.y81{bottom:694.892533pt;}
.yf7{bottom:694.897867pt;}
.ya8{bottom:694.935200pt;}
.y121{bottom:694.977867pt;}
.y34{bottom:702.871200pt;}
.y3c{bottom:702.897867pt;}
.y2b{bottom:705.543200pt;}
.ycf{bottom:711.185867pt;}
.y80{bottom:716.220533pt;}
.ya7{bottom:716.263200pt;}
.y120{bottom:716.305867pt;}
.y3b{bottom:724.225867pt;}
.y33{bottom:726.871200pt;}
.y2a{bottom:729.543200pt;}
.yce{bottom:732.513867pt;}
.y7f{bottom:737.548533pt;}
.yf6{bottom:737.569867pt;}
.ya6{bottom:737.591200pt;}
.y11f{bottom:737.633867pt;}
.y3a{bottom:745.553867pt;}
.y32{bottom:750.871200pt;}
.y29{bottom:753.543200pt;}
.y7e{bottom:758.876533pt;}
.yf5{bottom:758.897867pt;}
.ya5{bottom:758.919200pt;}
.y11e{bottom:758.961867pt;}
.y39{bottom:766.881867pt;}
.y31{bottom:774.871200pt;}
.ycd{bottom:775.185867pt;}
.y3{bottom:776.920800pt;}
.y28{bottom:777.543200pt;}
.yf4{bottom:780.225867pt;}
.ya4{bottom:780.247200pt;}
.y11d{bottom:780.289867pt;}
.y7d{bottom:780.295200pt;}
.y38{bottom:788.209867pt;}
.ycc{bottom:796.513867pt;}
.y30{bottom:798.871200pt;}
.y27{bottom:801.543200pt;}
.yf3{bottom:801.553867pt;}
.ya3{bottom:801.575200pt;}
.y11c{bottom:801.617867pt;}
.y7c{bottom:801.623200pt;}
.y37{bottom:809.537867pt;}
.ycb{bottom:817.841867pt;}
.y2f{bottom:822.871200pt;}
.yf2{bottom:822.881867pt;}
.ya2{bottom:822.903200pt;}
.y11b{bottom:822.945867pt;}
.y7b{bottom:822.951200pt;}
.yca{bottom:839.169867pt;}
.yf1{bottom:844.209867pt;}
.ya1{bottom:844.231200pt;}
.y11a{bottom:844.273867pt;}
.y7a{bottom:844.279200pt;}
.y26{bottom:846.871200pt;}
.y36{bottom:852.215200pt;}
.yc9{bottom:860.497867pt;}
.ya0{bottom:865.559200pt;}
.yf0{bottom:865.564533pt;}
.y119{bottom:865.601867pt;}
.y79{bottom:865.607200pt;}
.y25{bottom:870.871200pt;}
.y35{bottom:873.543200pt;}
.yc8{bottom:881.825867pt;}
.y9f{bottom:886.887200pt;}
.yef{bottom:886.892533pt;}
.y118{bottom:886.929867pt;}
.y78{bottom:886.935200pt;}
.y24{bottom:894.871200pt;}
.y2{bottom:896.920800pt;}
.yc7{bottom:903.153867pt;}
.yee{bottom:908.220533pt;}
.y117{bottom:908.257867pt;}
.y77{bottom:908.263200pt;}
.y23{bottom:918.871200pt;}
.yc6{bottom:924.481867pt;}
.yed{bottom:929.548533pt;}
.y9e{bottom:929.559200pt;}
.y116{bottom:929.585867pt;}
.y76{bottom:929.591200pt;}
.y22{bottom:942.871200pt;}
.yc5{bottom:945.809867pt;}
.yec{bottom:950.876533pt;}
.y9d{bottom:950.887200pt;}
.y115{bottom:950.913867pt;}
.y75{bottom:950.919200pt;}
.y21{bottom:966.871200pt;}
.yc4{bottom:967.137867pt;}
.y9c{bottom:972.215200pt;}
.y114{bottom:972.241867pt;}
.y74{bottom:972.247200pt;}
.yc3{bottom:988.465867pt;}
.y20{bottom:990.871200pt;}
.y9b{bottom:993.543200pt;}
.y113{bottom:993.569867pt;}
.y73{bottom:993.575200pt;}
.yc2{bottom:1009.793867pt;}
.y1f{bottom:1014.871200pt;}
.y112{bottom:1014.897867pt;}
.y72{bottom:1014.903200pt;}
.y1{bottom:1016.920800pt;}
.h6{height:26.715392pt;}
.ha{height:27.685504pt;}
.h14{height:34.945312pt;}
.h13{height:34.968750pt;}
.h3{height:36.562500pt;}
.h4{height:36.640625pt;}
.h5{height:43.968750pt;}
.h12{height:44.800000pt;}
.h8{height:46.593750pt;}
.h7{height:46.625000pt;}
.hf{height:47.667175pt;}
.h11{height:47.918375pt;}
.hc{height:48.131708pt;}
.hd{height:48.153042pt;}
.he{height:48.366375pt;}
.h10{height:48.387708pt;}
.hb{height:48.433490pt;}
.h9{height:48.494375pt;}
.h2{height:240.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:46.349600pt;}
.x1{left:48.000000pt;}
.x3{left:96.100800pt;}
.x2{left:416.000000pt;}
.x4{left:417.696000pt;}
}




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