
    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_708c3f68499ebd8ab55b77d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_be87cdedd0da1fc0752220b2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a936130d7ee23969065b6bf6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;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_d7a8bec137d6d37444efa2c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8073281ac64724869544f385.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_332a403308946ba31c9312f2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_297dfd941b5bd85305b9dc21.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.694336;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_174dbd8b2a437d8a391650d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.575000;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_cd158ffdc87b524e51acee07.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.770996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.241436,0.000000,-0.064694,0.241484,0,0);-ms-transform:matrix(0.241436,0.000000,-0.064694,0.241484,0,0);-webkit-transform:matrix(0.241436,0.000000,-0.064694,0.241484,0,0);}
.m0{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-82.080000px;}
.v1{vertical-align:-80.640000px;}
.v2{vertical-align:-79.200000px;}
.v3{vertical-align:-77.760000px;}
.v7{vertical-align:-2.880000px;}
.v8{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:1.440000px;}
.vb{vertical-align:2.880000px;}
.v5{vertical-align:79.200000px;}
.v4{vertical-align:80.640000px;}
.v9{vertical-align:82.080000px;}
.ls2{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.070080px;}
.ls5{letter-spacing:2.407489px;}
.ls12{letter-spacing:6.964897px;}
.ls4{letter-spacing:32.368130px;}
.ls3{letter-spacing:62.614179px;}
.ls1{letter-spacing:87.621028px;}
.lsd{letter-spacing:112.105925px;}
.ls9{letter-spacing:179.799464px;}
.lse{letter-spacing:187.000904px;}
.ls0{letter-spacing:188.441192px;}
.lsf{letter-spacing:223.008106px;}
.lsc{letter-spacing:276.298764px;}
.ls8{letter-spacing:313.746253px;}
.ls7{letter-spacing:320.947694px;}
.ls6{letter-spacing:385.760656px;}
.lsb{letter-spacing:466.416787px;}
.ls11{letter-spacing:552.834071px;}
.lsa{letter-spacing:581.639832px;}
.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;}
}
.ws2{word-spacing:-70.080000px;}
.ws3{word-spacing:-17.590080px;}
.ws1{word-spacing:-17.520000px;}
.ws0{word-spacing:0.000000px;}
._4{margin-left:-3.784320px;}
._2{margin-left:-2.172480px;}
._0{margin-left:-1.121280px;}
._1{width:1.892160px;}
._3{width:3.223680px;}
._d{width:4.344960px;}
._9{width:6.173620px;}
._8{width:7.490145px;}
._a{width:8.501364px;}
._20{width:9.504343px;}
._e{width:10.512000px;}
._f{width:12.053760px;}
._10{width:13.175040px;}
._b{width:14.927040px;}
._c{width:16.398720px;}
._18{width:18.711360px;}
._17{width:19.972800px;}
._32{width:21.094080px;}
._13{width:22.355520px;}
._12{width:23.546880px;}
._11{width:24.598080px;}
._1e{width:26.486499px;}
._29{width:27.788203px;}
._21{width:29.924160px;}
._16{width:31.395840px;}
._15{width:32.937600px;}
._25{width:33.988800px;}
._24{width:35.180160px;}
._22{width:36.231360px;}
._23{width:37.703040px;}
._33{width:38.814257px;}
._34{width:40.767252px;}
._14{width:61.130788px;}
._1c{width:63.983040px;}
._1d{width:65.805120px;}
._1b{width:67.767360px;}
._35{width:139.151975px;}
._5{width:141.308185px;}
._19{width:146.283305px;}
._1a{width:173.093672px;}
._1f{width:174.719515px;}
._7{width:188.441192px;}
._6{width:189.881480px;}
._2b{width:220.819313px;}
._2c{width:233.781906px;}
._28{width:245.697527px;}
._2d{width:248.184786px;}
._2e{width:295.714292px;}
._30{width:313.007252px;}
._2a{width:317.318613px;}
._27{width:333.577847px;}
._2f{width:376.111318px;}
._26{width:438.718875px;}
._31{width:695.774264px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:70.080000px;}
.fs1{font-size:72.551263px;}
.y0{bottom:0.000000px;}
.y85{bottom:4.320000px;}
.y52{bottom:162.360000px;}
.ya8{bottom:163.080000px;}
.y66{bottom:163.440000px;}
.y6e{bottom:163.800000px;}
.yf6{bottom:168.840000px;}
.ya5{bottom:172.800000px;}
.y112{bottom:177.120000px;}
.y51{bottom:182.520000px;}
.ya7{bottom:182.880000px;}
.y77{bottom:183.240000px;}
.y65{bottom:183.600000px;}
.y6d{bottom:183.960000px;}
.yf5{bottom:189.360000px;}
.ya4{bottom:192.960000px;}
.y12e{bottom:197.280000px;}
.y50{bottom:202.320000px;}
.yb8{bottom:202.680000px;}
.y2b{bottom:203.760000px;}
.yf4{bottom:209.520000px;}
.ya3{bottom:213.120000px;}
.y111{bottom:217.080000px;}
.y4f{bottom:222.840000px;}
.y76{bottom:223.560000px;}
.y64{bottom:223.920000px;}
.y2a{bottom:224.280000px;}
.yf3{bottom:230.040000px;}
.ya2{bottom:232.920000px;}
.y110{bottom:237.240000px;}
.y12d{bottom:237.600000px;}
.y4e{bottom:243.000000px;}
.y63{bottom:243.720000px;}
.y29{bottom:244.080000px;}
.yf2{bottom:249.840000px;}
.ya1{bottom:253.440000px;}
.y10f{bottom:257.400000px;}
.y4d{bottom:262.800000px;}
.y73{bottom:263.880000px;}
.y28{bottom:264.240000px;}
.yf1{bottom:270.000000px;}
.ya0{bottom:273.600000px;}
.y10e{bottom:277.560000px;}
.y12c{bottom:277.920000px;}
.y4c{bottom:282.960000px;}
.y62{bottom:284.040000px;}
.y27{bottom:284.400000px;}
.yf0{bottom:290.160000px;}
.y9f{bottom:293.760000px;}
.y10d{bottom:297.720000px;}
.y4b{bottom:303.480000px;}
.y75{bottom:303.840000px;}
.y26{bottom:304.200000px;}
.y61{bottom:304.560000px;}
.yef{bottom:309.960000px;}
.y9e{bottom:313.920000px;}
.y10c{bottom:317.520000px;}
.y12b{bottom:318.240000px;}
.y4a{bottom:323.280000px;}
.y60{bottom:324.360000px;}
.y25{bottom:324.720000px;}
.yee{bottom:330.480000px;}
.y9d{bottom:334.080000px;}
.y10b{bottom:338.040000px;}
.y49{bottom:343.800000px;}
.y72{bottom:344.520000px;}
.y24{bottom:344.880000px;}
.y9c{bottom:353.880000px;}
.y10a{bottom:358.200000px;}
.y12a{bottom:358.560000px;}
.y48{bottom:363.600000px;}
.y5f{bottom:364.680000px;}
.y23{bottom:365.040000px;}
.y9b{bottom:374.400000px;}
.yed{bottom:375.840000px;}
.y109{bottom:378.360000px;}
.y47{bottom:384.120000px;}
.y22{bottom:385.200000px;}
.y9a{bottom:394.560000px;}
.yec{bottom:398.520000px;}
.y129{bottom:398.880000px;}
.y46{bottom:403.920000px;}
.y5e{bottom:405.000000px;}
.y6c{bottom:405.360000px;}
.y99{bottom:414.360000px;}
.yeb{bottom:418.680000px;}
.y45{bottom:424.440000px;}
.y21{bottom:425.160000px;}
.y5d{bottom:425.520000px;}
.y98{bottom:434.880000px;}
.yea{bottom:438.840000px;}
.y128{bottom:439.200000px;}
.y44{bottom:444.240000px;}
.y5c{bottom:445.320000px;}
.y20{bottom:445.680000px;}
.y97{bottom:454.680000px;}
.y108{bottom:459.000000px;}
.ye5{bottom:461.520000px;}
.yb7{bottom:464.760000px;}
.y5b{bottom:465.480000px;}
.y1f{bottom:465.840000px;}
.y96{bottom:474.840000px;}
.y107{bottom:479.160000px;}
.y127{bottom:479.520000px;}
.ye8{bottom:480.960000px;}
.ye4{bottom:481.680000px;}
.y43{bottom:484.200000px;}
.yb6{bottom:484.560000px;}
.y5a{bottom:485.280000px;}
.y71{bottom:485.640000px;}
.y1e{bottom:486.000000px;}
.y95{bottom:494.640000px;}
.y106{bottom:499.320000px;}
.ye7{bottom:501.480000px;}
.ye3{bottom:501.840000px;}
.y42{bottom:504.720000px;}
.yb5{bottom:505.080000px;}
.y1d{bottom:505.800000px;}
.y94{bottom:515.160000px;}
.y105{bottom:519.120000px;}
.y126{bottom:519.480000px;}
.ye9{bottom:521.640000px;}
.ye2{bottom:522.000000px;}
.ye6{bottom:522.360000px;}
.y41{bottom:524.520000px;}
.yb4{bottom:524.880000px;}
.y1c{bottom:525.960000px;}
.y6b{bottom:526.320000px;}
.y93{bottom:534.960000px;}
.y104{bottom:539.640000px;}
.ye0{bottom:544.320000px;}
.y40{bottom:545.400000px;}
.y1b{bottom:546.120000px;}
.y92{bottom:555.840000px;}
.y103{bottom:559.440000px;}
.y125{bottom:559.800000px;}
.ydf{bottom:564.480000px;}
.y3f{bottom:565.200000px;}
.y59{bottom:566.280000px;}
.y1a{bottom:566.640000px;}
.y91{bottom:575.640000px;}
.y102{bottom:579.960000px;}
.yde{bottom:584.640000px;}
.yb3{bottom:585.000000px;}
.y3e{bottom:585.360000px;}
.y70{bottom:586.080000px;}
.y19{bottom:586.440000px;}
.y90{bottom:597.240000px;}
.y101{bottom:599.760000px;}
.y124{bottom:600.120000px;}
.ydd{bottom:604.800000px;}
.ye1{bottom:605.160000px;}
.y3d{bottom:605.520000px;}
.y58{bottom:606.600000px;}
.y18{bottom:606.960000px;}
.y8f{bottom:617.040000px;}
.y100{bottom:620.280000px;}
.ydc{bottom:622.440000px;}
.y3c{bottom:625.680000px;}
.y6a{bottom:626.400000px;}
.y17{bottom:626.760000px;}
.ydb{bottom:627.120000px;}
.y8e{bottom:637.200000px;}
.yff{bottom:640.080000px;}
.y123{bottom:640.440000px;}
.y3b{bottom:645.480000px;}
.yb2{bottom:645.840000px;}
.y57{bottom:646.920000px;}
.y16{bottom:647.280000px;}
.yd8{bottom:649.800000px;}
.y8d{bottom:657.360000px;}
.yfe{bottom:660.600000px;}
.y3a{bottom:666.000000px;}
.y6f{bottom:666.720000px;}
.y15{bottom:667.080000px;}
.yda{bottom:669.240000px;}
.yd7{bottom:669.600000px;}
.y8c{bottom:673.200000px;}
.y8b{bottom:677.520000px;}
.yfd{bottom:680.400000px;}
.y122{bottom:680.760000px;}
.y39{bottom:686.160000px;}
.y56{bottom:687.240000px;}
.y14{bottom:687.600000px;}
.yd6{bottom:689.760000px;}
.yd9{bottom:690.120000px;}
.y8a{bottom:700.200000px;}
.yfc{bottom:700.920000px;}
.y38{bottom:706.320000px;}
.y13{bottom:707.400000px;}
.yd4{bottom:712.080000px;}
.y89{bottom:720.000000px;}
.yfb{bottom:720.720000px;}
.y121{bottom:721.080000px;}
.y37{bottom:726.480000px;}
.y55{bottom:727.560000px;}
.y12{bottom:727.920000px;}
.yd3{bottom:732.240000px;}
.y88{bottom:740.520000px;}
.yfa{bottom:741.240000px;}
.y36{bottom:746.640000px;}
.y74{bottom:747.360000px;}
.y11{bottom:747.720000px;}
.yd2{bottom:752.400000px;}
.y87{bottom:760.320000px;}
.yf9{bottom:761.040000px;}
.y120{bottom:761.400000px;}
.yb1{bottom:766.800000px;}
.y35{bottom:767.520000px;}
.y54{bottom:767.880000px;}
.y10{bottom:768.240000px;}
.yd1{bottom:772.560000px;}
.yd5{bottom:772.920000px;}
.y86{bottom:780.840000px;}
.yf8{bottom:781.200000px;}
.y11f{bottom:781.560000px;}
.yb0{bottom:786.960000px;}
.y34{bottom:787.680000px;}
.yf{bottom:788.040000px;}
.ycf{bottom:794.880000px;}
.ycc{bottom:795.240000px;}
.y84{bottom:796.320000px;}
.yf7{bottom:796.680000px;}
.y83{bottom:800.640000px;}
.y11e{bottom:801.720000px;}
.yaf{bottom:807.120000px;}
.ye{bottom:808.200000px;}
.yce{bottom:815.040000px;}
.ycb{bottom:815.400000px;}
.y82{bottom:821.160000px;}
.y11d{bottom:821.520000px;}
.y33{bottom:828.360000px;}
.yd0{bottom:835.200000px;}
.yca{bottom:835.560000px;}
.ycd{bottom:835.920000px;}
.y81{bottom:840.960000px;}
.y11c{bottom:842.040000px;}
.yae{bottom:847.440000px;}
.y32{bottom:848.160000px;}
.yd{bottom:848.520000px;}
.yc6{bottom:858.240000px;}
.y11b{bottom:861.840000px;}
.y80{bottom:863.280000px;}
.yad{bottom:867.240000px;}
.yc{bottom:868.320000px;}
.y31{bottom:868.680000px;}
.yc5{bottom:878.040000px;}
.y11a{bottom:882.360000px;}
.y7f{bottom:883.440000px;}
.yac{bottom:887.040000px;}
.y30{bottom:888.480000px;}
.yb{bottom:888.840000px;}
.yc8{bottom:893.880000px;}
.yc9{bottom:898.200000px;}
.yc4{bottom:898.560000px;}
.yc7{bottom:898.920000px;}
.y119{bottom:902.160000px;}
.y7e{bottom:903.600000px;}
.yab{bottom:907.920000px;}
.y69{bottom:908.640000px;}
.ya{bottom:909.000000px;}
.ybf{bottom:916.920000px;}
.yc2{bottom:920.520000px;}
.ybe{bottom:921.240000px;}
.y118{bottom:922.320000px;}
.y7d{bottom:923.760000px;}
.yaa{bottom:927.720000px;}
.y53{bottom:928.800000px;}
.y9{bottom:929.160000px;}
.yc1{bottom:940.680000px;}
.ybd{bottom:941.040000px;}
.y117{bottom:942.480000px;}
.y7c{bottom:946.080000px;}
.ya9{bottom:947.880000px;}
.y8{bottom:948.960000px;}
.y2f{bottom:949.320000px;}
.yc3{bottom:961.200000px;}
.ybc{bottom:961.560000px;}
.yc0{bottom:961.920000px;}
.y116{bottom:962.640000px;}
.y7b{bottom:966.240000px;}
.y7{bottom:969.120000px;}
.y68{bottom:969.480000px;}
.y115{bottom:982.800000px;}
.y7a{bottom:986.400000px;}
.ybb{bottom:987.840000px;}
.yba{bottom:988.200000px;}
.y6{bottom:989.280000px;}
.y67{bottom:989.640000px;}
.y114{bottom:1002.960000px;}
.y79{bottom:1006.560000px;}
.yb9{bottom:1008.360000px;}
.ya6{bottom:1009.440000px;}
.y5{bottom:1009.800000px;}
.y113{bottom:1023.120000px;}
.y2e{bottom:1029.600000px;}
.y4{bottom:1029.960000px;}
.y78{bottom:1049.760000px;}
.y3{bottom:1050.120000px;}
.y2{bottom:1069.920000px;}
.y2d{bottom:1070.280000px;}
.y1{bottom:1090.080000px;}
.y2c{bottom:1090.440000px;}
.h9{height:20.160000px;}
.hf{height:55.936740px;}
.h5{height:68.745469px;}
.h2{height:68.779687px;}
.h1{height:70.627500px;}
.hb{height:71.895360px;}
.h4{height:73.091250px;}
.hc{height:73.335360px;}
.h3{height:74.775360px;}
.h8{height:147.979688px;}
.h7{height:149.419687px;}
.h6{height:153.731250px;}
.ha{height:153.975360px;}
.he{height:155.415360px;}
.hd{height:156.855360px;}
.h0{height:1263.000000px;}
.w5{width:1.080000px;}
.w1{width:2.520000px;}
.w4{width:3.240000px;}
.w3{width:5.040000px;}
.w2{width:87.480000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:124.200000px;}
.x16{left:142.920000px;}
.x3{left:150.480000px;}
.x15{left:153.360000px;}
.x17{left:169.560000px;}
.x2{left:175.680000px;}
.x4{left:176.760000px;}
.x1b{left:227.520000px;}
.x7{left:265.680000px;}
.x5{left:291.960000px;}
.xb{left:303.120000px;}
.x9{left:309.240000px;}
.x18{left:334.440000px;}
.x11{left:413.280000px;}
.x19{left:424.800000px;}
.xc{left:430.920000px;}
.x14{left:434.160000px;}
.x10{left:488.160000px;}
.x1c{left:496.440000px;}
.xd{left:497.880000px;}
.x1d{left:502.920000px;}
.x8{left:516.960000px;}
.x6{left:520.560000px;}
.x12{left:523.080000px;}
.xf{left:634.320000px;}
.x13{left:636.480000px;}
.xa{left:658.440000px;}
.xe{left:677.160000px;}
.x1a{left:743.040000px;}
@media print{
.v6{vertical-align:-72.960000pt;}
.v1{vertical-align:-71.680000pt;}
.v2{vertical-align:-70.400000pt;}
.v3{vertical-align:-69.120000pt;}
.v7{vertical-align:-2.560000pt;}
.v8{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.280000pt;}
.vb{vertical-align:2.560000pt;}
.v5{vertical-align:70.400000pt;}
.v4{vertical-align:71.680000pt;}
.v9{vertical-align:72.960000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.062293pt;}
.ls5{letter-spacing:2.139991pt;}
.ls12{letter-spacing:6.191020pt;}
.ls4{letter-spacing:28.771671pt;}
.ls3{letter-spacing:55.657048pt;}
.ls1{letter-spacing:77.885358pt;}
.lsd{letter-spacing:99.649711pt;}
.ls9{letter-spacing:159.821746pt;}
.lse{letter-spacing:166.223026pt;}
.ls0{letter-spacing:167.503282pt;}
.lsf{letter-spacing:198.229427pt;}
.lsc{letter-spacing:245.598901pt;}
.ls8{letter-spacing:278.885558pt;}
.ls7{letter-spacing:285.286839pt;}
.ls6{letter-spacing:342.898361pt;}
.lsb{letter-spacing:414.592700pt;}
.ls11{letter-spacing:491.408063pt;}
.lsa{letter-spacing:517.013184pt;}
.ws2{word-spacing:-62.293333pt;}
.ws3{word-spacing:-15.635627pt;}
.ws1{word-spacing:-15.573333pt;}
.ws0{word-spacing:0.000000pt;}
._4{margin-left:-3.363840pt;}
._2{margin-left:-1.931093pt;}
._0{margin-left:-0.996693pt;}
._1{width:1.681920pt;}
._3{width:2.865493pt;}
._d{width:3.862187pt;}
._9{width:5.487663pt;}
._8{width:6.657907pt;}
._a{width:7.556768pt;}
._20{width:8.448305pt;}
._e{width:9.344000pt;}
._f{width:10.714453pt;}
._10{width:11.711147pt;}
._b{width:13.268480pt;}
._c{width:14.576640pt;}
._18{width:16.632320pt;}
._17{width:17.753600pt;}
._32{width:18.750293pt;}
._13{width:19.871573pt;}
._12{width:20.930560pt;}
._11{width:21.864960pt;}
._1e{width:23.543554pt;}
._29{width:24.700625pt;}
._21{width:26.599253pt;}
._16{width:27.907413pt;}
._15{width:29.277867pt;}
._25{width:30.212267pt;}
._24{width:31.271253pt;}
._22{width:32.205653pt;}
._23{width:33.513813pt;}
._33{width:34.501562pt;}
._34{width:36.237557pt;}
._14{width:54.338478pt;}
._1c{width:56.873813pt;}
._1d{width:58.493440pt;}
._1b{width:60.237653pt;}
._35{width:123.690645pt;}
._5{width:125.607275pt;}
._19{width:130.029605pt;}
._1a{width:153.861042pt;}
._1f{width:155.306235pt;}
._7{width:167.503282pt;}
._6{width:168.783538pt;}
._2b{width:196.283834pt;}
._2c{width:207.806138pt;}
._28{width:218.397801pt;}
._2d{width:220.608699pt;}
._2e{width:262.857149pt;}
._30{width:278.228669pt;}
._2a{width:282.060989pt;}
._27{width:296.513641pt;}
._2f{width:334.321172pt;}
._26{width:389.972333pt;}
._31{width:618.466012pt;}
.fs0{font-size:62.293333pt;}
.fs1{font-size:64.490011pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:3.840000pt;}
.y52{bottom:144.320000pt;}
.ya8{bottom:144.960000pt;}
.y66{bottom:145.280000pt;}
.y6e{bottom:145.600000pt;}
.yf6{bottom:150.080000pt;}
.ya5{bottom:153.600000pt;}
.y112{bottom:157.440000pt;}
.y51{bottom:162.240000pt;}
.ya7{bottom:162.560000pt;}
.y77{bottom:162.880000pt;}
.y65{bottom:163.200000pt;}
.y6d{bottom:163.520000pt;}
.yf5{bottom:168.320000pt;}
.ya4{bottom:171.520000pt;}
.y12e{bottom:175.360000pt;}
.y50{bottom:179.840000pt;}
.yb8{bottom:180.160000pt;}
.y2b{bottom:181.120000pt;}
.yf4{bottom:186.240000pt;}
.ya3{bottom:189.440000pt;}
.y111{bottom:192.960000pt;}
.y4f{bottom:198.080000pt;}
.y76{bottom:198.720000pt;}
.y64{bottom:199.040000pt;}
.y2a{bottom:199.360000pt;}
.yf3{bottom:204.480000pt;}
.ya2{bottom:207.040000pt;}
.y110{bottom:210.880000pt;}
.y12d{bottom:211.200000pt;}
.y4e{bottom:216.000000pt;}
.y63{bottom:216.640000pt;}
.y29{bottom:216.960000pt;}
.yf2{bottom:222.080000pt;}
.ya1{bottom:225.280000pt;}
.y10f{bottom:228.800000pt;}
.y4d{bottom:233.600000pt;}
.y73{bottom:234.560000pt;}
.y28{bottom:234.880000pt;}
.yf1{bottom:240.000000pt;}
.ya0{bottom:243.200000pt;}
.y10e{bottom:246.720000pt;}
.y12c{bottom:247.040000pt;}
.y4c{bottom:251.520000pt;}
.y62{bottom:252.480000pt;}
.y27{bottom:252.800000pt;}
.yf0{bottom:257.920000pt;}
.y9f{bottom:261.120000pt;}
.y10d{bottom:264.640000pt;}
.y4b{bottom:269.760000pt;}
.y75{bottom:270.080000pt;}
.y26{bottom:270.400000pt;}
.y61{bottom:270.720000pt;}
.yef{bottom:275.520000pt;}
.y9e{bottom:279.040000pt;}
.y10c{bottom:282.240000pt;}
.y12b{bottom:282.880000pt;}
.y4a{bottom:287.360000pt;}
.y60{bottom:288.320000pt;}
.y25{bottom:288.640000pt;}
.yee{bottom:293.760000pt;}
.y9d{bottom:296.960000pt;}
.y10b{bottom:300.480000pt;}
.y49{bottom:305.600000pt;}
.y72{bottom:306.240000pt;}
.y24{bottom:306.560000pt;}
.y9c{bottom:314.560000pt;}
.y10a{bottom:318.400000pt;}
.y12a{bottom:318.720000pt;}
.y48{bottom:323.200000pt;}
.y5f{bottom:324.160000pt;}
.y23{bottom:324.480000pt;}
.y9b{bottom:332.800000pt;}
.yed{bottom:334.080000pt;}
.y109{bottom:336.320000pt;}
.y47{bottom:341.440000pt;}
.y22{bottom:342.400000pt;}
.y9a{bottom:350.720000pt;}
.yec{bottom:354.240000pt;}
.y129{bottom:354.560000pt;}
.y46{bottom:359.040000pt;}
.y5e{bottom:360.000000pt;}
.y6c{bottom:360.320000pt;}
.y99{bottom:368.320000pt;}
.yeb{bottom:372.160000pt;}
.y45{bottom:377.280000pt;}
.y21{bottom:377.920000pt;}
.y5d{bottom:378.240000pt;}
.y98{bottom:386.560000pt;}
.yea{bottom:390.080000pt;}
.y128{bottom:390.400000pt;}
.y44{bottom:394.880000pt;}
.y5c{bottom:395.840000pt;}
.y20{bottom:396.160000pt;}
.y97{bottom:404.160000pt;}
.y108{bottom:408.000000pt;}
.ye5{bottom:410.240000pt;}
.yb7{bottom:413.120000pt;}
.y5b{bottom:413.760000pt;}
.y1f{bottom:414.080000pt;}
.y96{bottom:422.080000pt;}
.y107{bottom:425.920000pt;}
.y127{bottom:426.240000pt;}
.ye8{bottom:427.520000pt;}
.ye4{bottom:428.160000pt;}
.y43{bottom:430.400000pt;}
.yb6{bottom:430.720000pt;}
.y5a{bottom:431.360000pt;}
.y71{bottom:431.680000pt;}
.y1e{bottom:432.000000pt;}
.y95{bottom:439.680000pt;}
.y106{bottom:443.840000pt;}
.ye7{bottom:445.760000pt;}
.ye3{bottom:446.080000pt;}
.y42{bottom:448.640000pt;}
.yb5{bottom:448.960000pt;}
.y1d{bottom:449.600000pt;}
.y94{bottom:457.920000pt;}
.y105{bottom:461.440000pt;}
.y126{bottom:461.760000pt;}
.ye9{bottom:463.680000pt;}
.ye2{bottom:464.000000pt;}
.ye6{bottom:464.320000pt;}
.y41{bottom:466.240000pt;}
.yb4{bottom:466.560000pt;}
.y1c{bottom:467.520000pt;}
.y6b{bottom:467.840000pt;}
.y93{bottom:475.520000pt;}
.y104{bottom:479.680000pt;}
.ye0{bottom:483.840000pt;}
.y40{bottom:484.800000pt;}
.y1b{bottom:485.440000pt;}
.y92{bottom:494.080000pt;}
.y103{bottom:497.280000pt;}
.y125{bottom:497.600000pt;}
.ydf{bottom:501.760000pt;}
.y3f{bottom:502.400000pt;}
.y59{bottom:503.360000pt;}
.y1a{bottom:503.680000pt;}
.y91{bottom:511.680000pt;}
.y102{bottom:515.520000pt;}
.yde{bottom:519.680000pt;}
.yb3{bottom:520.000000pt;}
.y3e{bottom:520.320000pt;}
.y70{bottom:520.960000pt;}
.y19{bottom:521.280000pt;}
.y90{bottom:530.880000pt;}
.y101{bottom:533.120000pt;}
.y124{bottom:533.440000pt;}
.ydd{bottom:537.600000pt;}
.ye1{bottom:537.920000pt;}
.y3d{bottom:538.240000pt;}
.y58{bottom:539.200000pt;}
.y18{bottom:539.520000pt;}
.y8f{bottom:548.480000pt;}
.y100{bottom:551.360000pt;}
.ydc{bottom:553.280000pt;}
.y3c{bottom:556.160000pt;}
.y6a{bottom:556.800000pt;}
.y17{bottom:557.120000pt;}
.ydb{bottom:557.440000pt;}
.y8e{bottom:566.400000pt;}
.yff{bottom:568.960000pt;}
.y123{bottom:569.280000pt;}
.y3b{bottom:573.760000pt;}
.yb2{bottom:574.080000pt;}
.y57{bottom:575.040000pt;}
.y16{bottom:575.360000pt;}
.yd8{bottom:577.600000pt;}
.y8d{bottom:584.320000pt;}
.yfe{bottom:587.200000pt;}
.y3a{bottom:592.000000pt;}
.y6f{bottom:592.640000pt;}
.y15{bottom:592.960000pt;}
.yda{bottom:594.880000pt;}
.yd7{bottom:595.200000pt;}
.y8c{bottom:598.400000pt;}
.y8b{bottom:602.240000pt;}
.yfd{bottom:604.800000pt;}
.y122{bottom:605.120000pt;}
.y39{bottom:609.920000pt;}
.y56{bottom:610.880000pt;}
.y14{bottom:611.200000pt;}
.yd6{bottom:613.120000pt;}
.yd9{bottom:613.440000pt;}
.y8a{bottom:622.400000pt;}
.yfc{bottom:623.040000pt;}
.y38{bottom:627.840000pt;}
.y13{bottom:628.800000pt;}
.yd4{bottom:632.960000pt;}
.y89{bottom:640.000000pt;}
.yfb{bottom:640.640000pt;}
.y121{bottom:640.960000pt;}
.y37{bottom:645.760000pt;}
.y55{bottom:646.720000pt;}
.y12{bottom:647.040000pt;}
.yd3{bottom:650.880000pt;}
.y88{bottom:658.240000pt;}
.yfa{bottom:658.880000pt;}
.y36{bottom:663.680000pt;}
.y74{bottom:664.320000pt;}
.y11{bottom:664.640000pt;}
.yd2{bottom:668.800000pt;}
.y87{bottom:675.840000pt;}
.yf9{bottom:676.480000pt;}
.y120{bottom:676.800000pt;}
.yb1{bottom:681.600000pt;}
.y35{bottom:682.240000pt;}
.y54{bottom:682.560000pt;}
.y10{bottom:682.880000pt;}
.yd1{bottom:686.720000pt;}
.yd5{bottom:687.040000pt;}
.y86{bottom:694.080000pt;}
.yf8{bottom:694.400000pt;}
.y11f{bottom:694.720000pt;}
.yb0{bottom:699.520000pt;}
.y34{bottom:700.160000pt;}
.yf{bottom:700.480000pt;}
.ycf{bottom:706.560000pt;}
.ycc{bottom:706.880000pt;}
.y84{bottom:707.840000pt;}
.yf7{bottom:708.160000pt;}
.y83{bottom:711.680000pt;}
.y11e{bottom:712.640000pt;}
.yaf{bottom:717.440000pt;}
.ye{bottom:718.400000pt;}
.yce{bottom:724.480000pt;}
.ycb{bottom:724.800000pt;}
.y82{bottom:729.920000pt;}
.y11d{bottom:730.240000pt;}
.y33{bottom:736.320000pt;}
.yd0{bottom:742.400000pt;}
.yca{bottom:742.720000pt;}
.ycd{bottom:743.040000pt;}
.y81{bottom:747.520000pt;}
.y11c{bottom:748.480000pt;}
.yae{bottom:753.280000pt;}
.y32{bottom:753.920000pt;}
.yd{bottom:754.240000pt;}
.yc6{bottom:762.880000pt;}
.y11b{bottom:766.080000pt;}
.y80{bottom:767.360000pt;}
.yad{bottom:770.880000pt;}
.yc{bottom:771.840000pt;}
.y31{bottom:772.160000pt;}
.yc5{bottom:780.480000pt;}
.y11a{bottom:784.320000pt;}
.y7f{bottom:785.280000pt;}
.yac{bottom:788.480000pt;}
.y30{bottom:789.760000pt;}
.yb{bottom:790.080000pt;}
.yc8{bottom:794.560000pt;}
.yc9{bottom:798.400000pt;}
.yc4{bottom:798.720000pt;}
.yc7{bottom:799.040000pt;}
.y119{bottom:801.920000pt;}
.y7e{bottom:803.200000pt;}
.yab{bottom:807.040000pt;}
.y69{bottom:807.680000pt;}
.ya{bottom:808.000000pt;}
.ybf{bottom:815.040000pt;}
.yc2{bottom:818.240000pt;}
.ybe{bottom:818.880000pt;}
.y118{bottom:819.840000pt;}
.y7d{bottom:821.120000pt;}
.yaa{bottom:824.640000pt;}
.y53{bottom:825.600000pt;}
.y9{bottom:825.920000pt;}
.yc1{bottom:836.160000pt;}
.ybd{bottom:836.480000pt;}
.y117{bottom:837.760000pt;}
.y7c{bottom:840.960000pt;}
.ya9{bottom:842.560000pt;}
.y8{bottom:843.520000pt;}
.y2f{bottom:843.840000pt;}
.yc3{bottom:854.400000pt;}
.ybc{bottom:854.720000pt;}
.yc0{bottom:855.040000pt;}
.y116{bottom:855.680000pt;}
.y7b{bottom:858.880000pt;}
.y7{bottom:861.440000pt;}
.y68{bottom:861.760000pt;}
.y115{bottom:873.600000pt;}
.y7a{bottom:876.800000pt;}
.ybb{bottom:878.080000pt;}
.yba{bottom:878.400000pt;}
.y6{bottom:879.360000pt;}
.y67{bottom:879.680000pt;}
.y114{bottom:891.520000pt;}
.y79{bottom:894.720000pt;}
.yb9{bottom:896.320000pt;}
.ya6{bottom:897.280000pt;}
.y5{bottom:897.600000pt;}
.y113{bottom:909.440000pt;}
.y2e{bottom:915.200000pt;}
.y4{bottom:915.520000pt;}
.y78{bottom:933.120000pt;}
.y3{bottom:933.440000pt;}
.y2{bottom:951.040000pt;}
.y2d{bottom:951.360000pt;}
.y1{bottom:968.960000pt;}
.y2c{bottom:969.280000pt;}
.h9{height:17.920000pt;}
.hf{height:49.721547pt;}
.h5{height:61.107083pt;}
.h2{height:61.137500pt;}
.h1{height:62.780000pt;}
.hb{height:63.906987pt;}
.h4{height:64.970000pt;}
.hc{height:65.186987pt;}
.h3{height:66.466987pt;}
.h8{height:131.537500pt;}
.h7{height:132.817500pt;}
.h6{height:136.650000pt;}
.ha{height:136.866987pt;}
.he{height:138.146987pt;}
.hd{height:139.426987pt;}
.h0{height:1122.666667pt;}
.w5{width:0.960000pt;}
.w1{width:2.240000pt;}
.w4{width:2.880000pt;}
.w3{width:4.480000pt;}
.w2{width:77.760000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:110.400000pt;}
.x16{left:127.040000pt;}
.x3{left:133.760000pt;}
.x15{left:136.320000pt;}
.x17{left:150.720000pt;}
.x2{left:156.160000pt;}
.x4{left:157.120000pt;}
.x1b{left:202.240000pt;}
.x7{left:236.160000pt;}
.x5{left:259.520000pt;}
.xb{left:269.440000pt;}
.x9{left:274.880000pt;}
.x18{left:297.280000pt;}
.x11{left:367.360000pt;}
.x19{left:377.600000pt;}
.xc{left:383.040000pt;}
.x14{left:385.920000pt;}
.x10{left:433.920000pt;}
.x1c{left:441.280000pt;}
.xd{left:442.560000pt;}
.x1d{left:447.040000pt;}
.x8{left:459.520000pt;}
.x6{left:462.720000pt;}
.x12{left:464.960000pt;}
.xf{left:563.840000pt;}
.x13{left:565.760000pt;}
.xa{left:585.280000pt;}
.xe{left:601.920000pt;}
.x1a{left:660.480000pt;}
}




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