
    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_807daf683396a3496ee781a7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.121000;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_d17785d5ccfa0ad6636ff70a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971000;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_6a0fed0dce32f3bb6fdad4d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933000;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_f6e93f5ea1968ad749c65b89.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962000;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_f407179d3818055f18c502da.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.909000;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_9f9e9c517bd443db8857fa09.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.967000;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_1f2d8d31ac6f40fec6030932.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.895996;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_e813c8fa707f30ebb40d55b3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.986816;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_6f6c53e4cb4c22cab0878040.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.869629;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.238360,-0.061644,0.019615,0.249229,0,0);-ms-transform:matrix(0.238360,-0.061644,0.019615,0.249229,0,0);-webkit-transform:matrix(0.238360,-0.061644,0.019615,0.249229,0,0);}
.m5{transform:matrix(0.240822,-0.051188,0.008725,0.249848,0,0);-ms-transform:matrix(0.240822,-0.051188,0.008725,0.249848,0,0);-webkit-transform:matrix(0.240822,-0.051188,0.008725,0.249848,0,0);}
.m1{transform:matrix(0.244095,-0.032136,-0.010905,0.249762,0,0);-ms-transform:matrix(0.244095,-0.032136,-0.010905,0.249762,0,0);-webkit-transform:matrix(0.244095,-0.032136,-0.010905,0.249762,0,0);}
.m7{transform:matrix(0.244096,-0.032136,-0.010905,0.249762,0,0);-ms-transform:matrix(0.244096,-0.032136,-0.010905,0.249762,0,0);-webkit-transform:matrix(0.244096,-0.032136,-0.010905,0.249762,0,0);}
.m4{transform:matrix(0.249229,-0.019615,0.019615,0.249229,0,0);-ms-transform:matrix(0.249229,-0.019615,0.019615,0.249229,0,0);-webkit-transform:matrix(0.249229,-0.019615,0.019615,0.249229,0,0);}
.m2{transform:matrix(0.249762,0.010905,-0.010905,0.249762,0,0);-ms-transform:matrix(0.249762,0.010905,-0.010905,0.249762,0,0);-webkit-transform:matrix(0.249762,0.010905,-0.010905,0.249762,0,0);}
.m6{transform:matrix(0.249848,-0.008725,0.008725,0.249848,0,0);-ms-transform:matrix(0.249848,-0.008725,0.008725,0.249848,0,0);-webkit-transform:matrix(0.249848,-0.008725,0.008725,0.249848,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-6.234600px;}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-2.692708px;}
.ls18{letter-spacing:-1.891094px;}
.lsb{letter-spacing:-1.591145px;}
.ls7{letter-spacing:-1.109623px;}
.ls11{letter-spacing:-1.101562px;}
.ls13{letter-spacing:-0.856771px;}
.ls12{letter-spacing:-0.489583px;}
.lse{letter-spacing:-0.350902px;}
.ls19{letter-spacing:-0.348000px;}
.lsa{letter-spacing:-0.244792px;}
.ls8{letter-spacing:-0.236387px;}
.lsd{letter-spacing:-0.175451px;}
.ls17{letter-spacing:-0.174926px;}
.ls9{letter-spacing:-0.122396px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.078796px;}
.lsf{letter-spacing:0.122396px;}
.ls16{letter-spacing:0.174926px;}
.lsc{letter-spacing:0.175451px;}
.ls10{letter-spacing:0.244792px;}
.ls1{letter-spacing:3.360000px;}
.ls0{letter-spacing:3.547800px;}
.ls3{letter-spacing:19.913666px;}
.ls4{letter-spacing:28.395826px;}
.ls5{letter-spacing:39.533231px;}
.ls2{letter-spacing:120.192676px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-280.829087px;}
.ws6{word-spacing:-280.828881px;}
.ws7{word-spacing:-256.928727px;}
.ws0{word-spacing:-39.600000px;}
.ws1{word-spacing:-34.800000px;}
.ws1a{word-spacing:-34.452000px;}
.ws2{word-spacing:-28.800000px;}
.ws11{word-spacing:-27.783847px;}
.ws9{word-spacing:-27.661451px;}
.ws8{word-spacing:-27.539055px;}
.wsc{word-spacing:-27.416659px;}
.ws15{word-spacing:-26.804680px;}
.ws12{word-spacing:-26.559889px;}
.ws17{word-spacing:-24.968743px;}
.ws4{word-spacing:-22.192443px;}
.ws5{word-spacing:-21.082829px;}
.wsb{word-spacing:-20.001391px;}
.wsa{word-spacing:-19.825940px;}
.ws19{word-spacing:-17.807806px;}
.ws1e{word-spacing:-4.882339px;}
.ws37{word-spacing:-1.584000px;}
.ws2b{word-spacing:-0.699703px;}
.ws2a{word-spacing:-0.614078px;}
.ws13{word-spacing:-0.575260px;}
.ws27{word-spacing:-0.526352px;}
.ws1c{word-spacing:-0.443849px;}
.ws32{word-spacing:-0.367187px;}
.ws29{word-spacing:-0.263176px;}
.ws28{word-spacing:-0.175451px;}
.ws16{word-spacing:-0.122396px;}
.ws1b{word-spacing:0.000000px;}
.ws18{word-spacing:0.052478px;}
.wse{word-spacing:0.122396px;}
.ws35{word-spacing:0.174926px;}
.ws30{word-spacing:0.244792px;}
.ws20{word-spacing:0.367187px;}
.ws1f{word-spacing:0.472774px;}
.ws10{word-spacing:0.538542px;}
.ws2c{word-spacing:0.734375px;}
.wsd{word-spacing:0.832291px;}
.ws2f{word-spacing:0.856771px;}
.ws24{word-spacing:0.979166px;}
.ws1d{word-spacing:1.109623px;}
.ws14{word-spacing:1.175000px;}
.ws23{word-spacing:1.223958px;}
.ws34{word-spacing:1.346354px;}
.ws26{word-spacing:1.468750px;}
.ws2d{word-spacing:1.713541px;}
.ws33{word-spacing:1.835937px;}
.ws36{word-spacing:1.891094px;}
.ws21{word-spacing:1.958333px;}
.wsf{word-spacing:1.995052px;}
.ws2e{word-spacing:2.447916px;}
.ws31{word-spacing:2.570312px;}
.ws22{word-spacing:2.937499px;}
.ws25{word-spacing:4.406249px;}
._9{margin-left:-39.662640px;}
._a{margin-left:-31.878000px;}
._14{margin-left:-28.381535px;}
._8{margin-left:-16.057800px;}
._4{margin-left:-11.707740px;}
._11{margin-left:-10.585715px;}
._7{margin-left:-9.260460px;}
._c{margin-left:-7.776000px;}
._6{margin-left:-5.940000px;}
._3{margin-left:-3.902580px;}
._1{margin-left:-2.376000px;}
._0{margin-left:-1.188000px;}
._b{width:1.014000px;}
._2{width:2.021220px;}
._10{width:3.188735px;}
._5{width:4.752000px;}
._f{width:11.233155px;}
._e{width:22.192443px;}
._15{width:28.328233px;}
._13{width:29.617367px;}
._12{width:31.016617px;}
._d{width:3142.020600px;}
.fc3{color:transparent;}
.fc1{color:rgb(184,9,46);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs13{font-size:78.795600px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:85.354200px;}
.fs11{font-size:87.725400px;}
.fsd{font-size:110.961991px;}
.fs9{font-size:110.962216px;}
.fsb{font-size:110.962260px;}
.fs10{font-size:122.395800px;}
.fs7{font-size:144.000000px;}
.fs6{font-size:174.000000px;}
.fs12{font-size:174.925800px;}
.fs0{font-size:198.000000px;}
.fsf{font-size:236.386800px;}
.fse{font-size:256.928727px;}
.fsa{font-size:280.828720px;}
.fsc{font-size:280.828881px;}
.fs8{font-size:280.829087px;}
.fs3{font-size:336.000000px;}
.fs2{font-size:347.823600px;}
.fs1{font-size:354.780000px;}
.y57{bottom:-164.079807px;}
.y95{bottom:-162.549600px;}
.y56{bottom:-137.806050px;}
.y75{bottom:-25.265760px;}
.y0{bottom:0.000000px;}
.y74{bottom:11.514178px;}
.ya{bottom:29.724600px;}
.y73{bottom:48.294116px;}
.ya9{bottom:53.150100px;}
.y72{bottom:75.771973px;}
.ya8{bottom:100.130100px;}
.y71{bottom:112.551911px;}
.y25{bottom:143.921250px;}
.ya7{bottom:147.110100px;}
.y70{bottom:149.331848px;}
.y79{bottom:184.061657px;}
.y6f{bottom:186.111786px;}
.y24{bottom:190.901250px;}
.ya6{bottom:194.090100px;}
.y78{bottom:220.841595px;}
.y23{bottom:237.881250px;}
.ya5{bottom:241.070100px;}
.y77{bottom:257.621532px;}
.y22{bottom:284.861250px;}
.y6e{bottom:287.424910px;}
.ya4{bottom:288.050100px;}
.y76{bottom:294.401470px;}
.y4c{bottom:304.837500px;}
.y6d{bottom:324.204848px;}
.y6c{bottom:360.984786px;}
.y21{bottom:363.986100px;}
.y66{bottom:394.123448px;}
.ya3{bottom:401.811000px;}
.y20{bottom:410.966100px;}
.y65{bottom:430.903386px;}
.y6b{bottom:432.280339px;}
.ya2{bottom:448.791000px;}
.y1f{bottom:457.946100px;}
.y64{bottom:467.683324px;}
.y6a{bottom:469.060277px;}
.ya1{bottom:495.771000px;}
.y63{bottom:504.463262px;}
.y1e{bottom:537.070950px;}
.y62{bottom:541.243200px;}
.ya0{bottom:542.751000px;}
.y69{bottom:547.148797px;}
.y68{bottom:583.928735px;}
.y1d{bottom:584.050950px;}
.y9f{bottom:589.731000px;}
.y94{bottom:614.534400px;}
.y67{bottom:620.708673px;}
.y1c{bottom:631.030950px;}
.yab{bottom:636.711000px;}
.y1b{bottom:678.010950px;}
.yaa{bottom:683.691000px;}
.y9e{bottom:694.180950px;}
.y93{bottom:712.113134px;}
.y9d{bottom:741.160950px;}
.y92{bottom:748.893071px;}
.y1a{bottom:757.135950px;}
.y9c{bottom:788.140950px;}
.y91{bottom:792.221185px;}
.y9a{bottom:795.658650px;}
.y19{bottom:804.115950px;}
.y9b{bottom:835.120950px;}
.y90{bottom:835.549298px;}
.y99{bottom:842.638650px;}
.y18{bottom:851.095800px;}
.y8f{bottom:872.329236px;}
.y98{bottom:889.618650px;}
.y8e{bottom:915.657349px;}
.y17{bottom:930.220800px;}
.y97{bottom:936.598650px;}
.y8d{bottom:952.437287px;}
.y16{bottom:977.200800px;}
.y96{bottom:983.578650px;}
.y8c{bottom:995.765400px;}
.y8b{bottom:1042.517400px;}
.y26{bottom:1109.897550px;}
.y8a{bottom:1173.970573px;}
.y83{bottom:1194.572561px;}
.y89{bottom:1210.750511px;}
.y82{bottom:1231.352498px;}
.y88{bottom:1247.530448px;}
.y81{bottom:1268.132436px;}
.y87{bottom:1284.310386px;}
.y80{bottom:1304.912374px;}
.y86{bottom:1321.090324px;}
.y7f{bottom:1341.692312px;}
.y43{bottom:1352.015618px;}
.y85{bottom:1357.870262px;}
.y7e{bottom:1378.472250px;}
.y42{bottom:1384.522044px;}
.y31{bottom:1389.434445px;}
.y84{bottom:1394.650200px;}
.y3a{bottom:1398.553393px;}
.y41{bottom:1417.523168px;}
.y30{bottom:1421.815349px;}
.y39{bottom:1422.323915px;}
.y4b{bottom:1433.877183px;}
.y40{bottom:1451.080950px;}
.y2f{bottom:1455.931465px;}
.y38{bottom:1457.494942px;}
.y4a{bottom:1467.852933px;}
.y3f{bottom:1488.969750px;}
.y2e{bottom:1489.803150px;}
.y37{bottom:1491.133714px;}
.y61{bottom:1495.200998px;}
.y49{bottom:1500.307650px;}
.y2d{bottom:1516.125750px;}
.y36{bottom:1522.506750px;}
.y48{bottom:1527.471600px;}
.y5c{bottom:1528.215936px;}
.y60{bottom:1531.980936px;}
.y3e{bottom:1539.061200px;}
.y35{bottom:1555.883100px;}
.y5b{bottom:1564.995874px;}
.y5f{bottom:1568.760874px;}
.y3d{bottom:1572.314919px;}
.y2c{bottom:1573.240012px;}
.y47{bottom:1585.160658px;}
.y34{bottom:1600.738200px;}
.y5a{bottom:1601.775812px;}
.y5e{bottom:1605.540812px;}
.y3c{bottom:1607.661750px;}
.y2b{bottom:1609.351500px;}
.y46{bottom:1619.288874px;}
.y59{bottom:1638.555750px;}
.y5d{bottom:1642.320750px;}
.y33{bottom:1645.130550px;}
.y45{bottom:1652.196150px;}
.y3b{bottom:1677.988200px;}
.y7d{bottom:1691.098650px;}
.y29{bottom:1693.729950px;}
.y2a{bottom:1694.904900px;}
.y58{bottom:1718.766000px;}
.y32{bottom:1729.302000px;}
.y44{bottom:1739.729850px;}
.y28{bottom:1752.238950px;}
.y55{bottom:1797.028797px;}
.y27{bottom:1810.747950px;}
.y54{bottom:1833.808735px;}
.y53{bottom:1877.136848px;}
.y52{bottom:1920.464961px;}
.y51{bottom:1957.244899px;}
.y15{bottom:1985.687250px;}
.y50{bottom:2000.573012px;}
.y9{bottom:2019.516300px;}
.y14{bottom:2032.667250px;}
.y4f{bottom:2037.352950px;}
.y13{bottom:2079.647250px;}
.y7c{bottom:2123.025321px;}
.y12{bottom:2152.138950px;}
.y7b{bottom:2159.805259px;}
.y7a{bottom:2196.585197px;}
.y11{bottom:2199.118950px;}
.y4e{bottom:2253.247560px;}
.y10{bottom:2267.358900px;}
.yf{bottom:2314.338900px;}
.y4d{bottom:2324.163600px;}
.ye{bottom:2361.318900px;}
.yd{bottom:2429.558850px;}
.yc{bottom:2476.538850px;}
.yb{bottom:2528.110950px;}
.y1{bottom:2644.906500px;}
.y8{bottom:2795.793750px;}
.y7{bottom:2855.787750px;}
.y6{bottom:2915.781750px;}
.y5{bottom:2975.775750px;}
.y4{bottom:3202.378350px;}
.y3{bottom:3309.556350px;}
.y2{bottom:3415.990350px;}
.h1c{height:56.557389px;}
.h1a{height:62.966962px;}
.h6{height:64.092000px;}
.h5{height:65.125255px;}
.h14{height:81.668025px;}
.hd{height:81.668191px;}
.hf{height:81.668223px;}
.h19{height:87.852454px;}
.h18{height:98.968479px;}
.h1e{height:102.240000px;}
.h12{height:102.306956px;}
.hc{height:102.307163px;}
.h10{height:102.307203px;}
.h13{height:102.308049px;}
.h8{height:109.872000px;}
.h1b{height:125.557093px;}
.h1d{height:141.443909px;}
.h9{height:145.728000px;}
.h7{height:160.428000px;}
.h17{height:169.672166px;}
.h2{height:182.556000px;}
.h15{height:241.513004px;}
.h4{height:256.368000px;}
.he{height:263.978996px;}
.h11{height:263.979148px;}
.hb{height:263.979342px;}
.h3{height:327.107160px;}
.h16{height:566.938500px;}
.ha{height:3575.905500px;}
.h0{height:3575.910000px;}
.h1{height:3576.000000px;}
.w2{width:563.160000px;}
.w0{width:2525.670000px;}
.w1{width:2526.000000px;}
.x2a{left:-603.844950px;}
.x28{left:-573.429750px;}
.x27{left:-562.300050px;}
.x36{left:-561.050639px;}
.x2b{left:-558.758400px;}
.x41{left:-555.511650px;}
.x3a{left:-553.217307px;}
.x30{left:-546.148950px;}
.x29{left:-534.018302px;}
.x40{left:-513.374480px;}
.x2d{left:-504.682004px;}
.x39{left:-412.278544px;}
.x3b{left:-347.316973px;}
.x37{left:-345.113849px;}
.x3f{left:-262.157100px;}
.x2c{left:-249.792750px;}
.x38{left:-242.729762px;}
.x35{left:-74.098948px;}
.x0{left:0.000000px;}
.x5{left:41.503800px;}
.x2{left:85.039350px;}
.x6{left:172.204800px;}
.x1{left:174.330750px;}
.x3{left:176.456700px;}
.x3e{left:420.710729px;}
.x2f{left:422.344164px;}
.x31{left:440.238802px;}
.x32{left:543.724451px;}
.x34{left:553.730308px;}
.x33{left:581.422357px;}
.x16{left:650.494950px;}
.x1c{left:651.509314px;}
.x1b{left:658.636950px;}
.x1d{left:660.322747px;}
.x18{left:667.948001px;}
.x19{left:669.526200px;}
.x3d{left:675.079800px;}
.x1e{left:683.302940px;}
.x2e{left:696.694350px;}
.x17{left:726.308850px;}
.x1a{left:789.784650px;}
.x3c{left:933.732000px;}
.xb{left:1015.833750px;}
.xe{left:1025.168360px;}
.xc{left:1028.460478px;}
.xd{left:1046.685465px;}
.x8{left:1047.941400px;}
.x7{left:1059.255900px;}
.x9{left:1111.867020px;}
.x42{left:1118.360700px;}
.xa{left:1176.110250px;}
.x43{left:1213.264950px;}
.x12{left:1430.345100px;}
.xf{left:1435.118700px;}
.x10{left:1448.518350px;}
.x14{left:1453.044656px;}
.x13{left:1456.185107px;}
.x15{left:1552.682597px;}
.x11{left:1576.004400px;}
.x25{left:1826.600559px;}
.x26{left:1841.610704px;}
.x1f{left:1844.344800px;}
.x24{left:1846.427100px;}
.x21{left:1891.521701px;}
.x20{left:1900.983150px;}
.x22{left:1910.023829px;}
.x46{left:1913.757600px;}
.x23{left:1987.431150px;}
.x44{left:2109.614100px;}
.x45{left:2132.597850px;}
.x4{left:2266.257750px;}
@media print{
.v1{vertical-align:-5.541867pt;}
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-2.393518pt;}
.ls18{letter-spacing:-1.680973pt;}
.lsb{letter-spacing:-1.414351pt;}
.ls7{letter-spacing:-0.986331pt;}
.ls11{letter-spacing:-0.979166pt;}
.ls13{letter-spacing:-0.761574pt;}
.ls12{letter-spacing:-0.435185pt;}
.lse{letter-spacing:-0.311913pt;}
.ls19{letter-spacing:-0.309333pt;}
.lsa{letter-spacing:-0.217593pt;}
.ls8{letter-spacing:-0.210122pt;}
.lsd{letter-spacing:-0.155956pt;}
.ls17{letter-spacing:-0.155490pt;}
.ls9{letter-spacing:-0.108796pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.070041pt;}
.lsf{letter-spacing:0.108796pt;}
.ls16{letter-spacing:0.155490pt;}
.lsc{letter-spacing:0.155956pt;}
.ls10{letter-spacing:0.217593pt;}
.ls1{letter-spacing:2.986667pt;}
.ls0{letter-spacing:3.153600pt;}
.ls3{letter-spacing:17.701036pt;}
.ls4{letter-spacing:25.240734pt;}
.ls5{letter-spacing:35.140650pt;}
.ls2{letter-spacing:106.837934pt;}
.ws3{word-spacing:-249.625855pt;}
.ws6{word-spacing:-249.625672pt;}
.ws7{word-spacing:-228.381091pt;}
.ws0{word-spacing:-35.200000pt;}
.ws1{word-spacing:-30.933333pt;}
.ws1a{word-spacing:-30.624000pt;}
.ws2{word-spacing:-25.600000pt;}
.ws11{word-spacing:-24.696753pt;}
.ws9{word-spacing:-24.587956pt;}
.ws8{word-spacing:-24.479160pt;}
.wsc{word-spacing:-24.370364pt;}
.ws15{word-spacing:-23.826382pt;}
.ws12{word-spacing:-23.608790pt;}
.ws17{word-spacing:-22.194438pt;}
.ws4{word-spacing:-19.726616pt;}
.ws5{word-spacing:-18.740293pt;}
.wsb{word-spacing:-17.779014pt;}
.wsa{word-spacing:-17.623058pt;}
.ws19{word-spacing:-15.829161pt;}
.ws1e{word-spacing:-4.339857pt;}
.ws37{word-spacing:-1.408000pt;}
.ws2b{word-spacing:-0.621958pt;}
.ws2a{word-spacing:-0.545847pt;}
.ws13{word-spacing:-0.511342pt;}
.ws27{word-spacing:-0.467869pt;}
.ws1c{word-spacing:-0.394532pt;}
.ws32{word-spacing:-0.326389pt;}
.ws29{word-spacing:-0.233934pt;}
.ws28{word-spacing:-0.155956pt;}
.ws16{word-spacing:-0.108796pt;}
.ws1b{word-spacing:0.000000pt;}
.ws18{word-spacing:0.046647pt;}
.wse{word-spacing:0.108796pt;}
.ws35{word-spacing:0.155490pt;}
.ws30{word-spacing:0.217593pt;}
.ws20{word-spacing:0.326389pt;}
.ws1f{word-spacing:0.420243pt;}
.ws10{word-spacing:0.478704pt;}
.ws2c{word-spacing:0.652778pt;}
.wsd{word-spacing:0.739815pt;}
.ws2f{word-spacing:0.761574pt;}
.ws24{word-spacing:0.870370pt;}
.ws1d{word-spacing:0.986331pt;}
.ws14{word-spacing:1.044444pt;}
.ws23{word-spacing:1.087963pt;}
.ws34{word-spacing:1.196759pt;}
.ws26{word-spacing:1.305555pt;}
.ws2d{word-spacing:1.523148pt;}
.ws33{word-spacing:1.631944pt;}
.ws36{word-spacing:1.680973pt;}
.ws21{word-spacing:1.740740pt;}
.wsf{word-spacing:1.773379pt;}
.ws2e{word-spacing:2.175925pt;}
.ws31{word-spacing:2.284722pt;}
.ws22{word-spacing:2.611110pt;}
.ws25{word-spacing:3.916666pt;}
._9{margin-left:-35.255680pt;}
._a{margin-left:-28.336000pt;}
._14{margin-left:-25.228031pt;}
._8{margin-left:-14.273600pt;}
._4{margin-left:-10.406880pt;}
._11{margin-left:-9.409525pt;}
._7{margin-left:-8.231520pt;}
._c{margin-left:-6.912000pt;}
._6{margin-left:-5.280000pt;}
._3{margin-left:-3.468960pt;}
._1{margin-left:-2.112000pt;}
._0{margin-left:-1.056000pt;}
._b{width:0.901333pt;}
._2{width:1.796640pt;}
._10{width:2.834431pt;}
._5{width:4.224000pt;}
._f{width:9.985027pt;}
._e{width:19.726616pt;}
._15{width:25.180652pt;}
._13{width:26.326548pt;}
._12{width:27.570326pt;}
._d{width:2792.907200pt;}
.fs13{font-size:70.040533pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:75.870400pt;}
.fs11{font-size:77.978133pt;}
.fsd{font-size:98.632881pt;}
.fs9{font-size:98.633081pt;}
.fsb{font-size:98.633120pt;}
.fs10{font-size:108.796267pt;}
.fs7{font-size:128.000000pt;}
.fs6{font-size:154.666667pt;}
.fs12{font-size:155.489600pt;}
.fs0{font-size:176.000000pt;}
.fsf{font-size:210.121600pt;}
.fse{font-size:228.381091pt;}
.fsa{font-size:249.625528pt;}
.fsc{font-size:249.625672pt;}
.fs8{font-size:249.625855pt;}
.fs3{font-size:298.666667pt;}
.fs2{font-size:309.176533pt;}
.fs1{font-size:315.360000pt;}
.y57{bottom:-145.848718pt;}
.y95{bottom:-144.488533pt;}
.y56{bottom:-122.494267pt;}
.y75{bottom:-22.458454pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:10.234825pt;}
.ya{bottom:26.421867pt;}
.y73{bottom:42.928103pt;}
.ya9{bottom:47.244533pt;}
.y72{bottom:67.352865pt;}
.ya8{bottom:89.004533pt;}
.y71{bottom:100.046143pt;}
.y25{bottom:127.930000pt;}
.ya7{bottom:130.764533pt;}
.y70{bottom:132.739421pt;}
.y79{bottom:163.610361pt;}
.y6f{bottom:165.432699pt;}
.y24{bottom:169.690000pt;}
.ya6{bottom:172.524533pt;}
.y78{bottom:196.303640pt;}
.y23{bottom:211.450000pt;}
.ya5{bottom:214.284533pt;}
.y77{bottom:228.996918pt;}
.y22{bottom:253.210000pt;}
.y6e{bottom:255.488809pt;}
.ya4{bottom:256.044533pt;}
.y76{bottom:261.690196pt;}
.y4c{bottom:270.966667pt;}
.y6d{bottom:288.182087pt;}
.y6c{bottom:320.875365pt;}
.y21{bottom:323.543200pt;}
.y66{bottom:350.331954pt;}
.ya3{bottom:357.165333pt;}
.y20{bottom:365.303200pt;}
.y65{bottom:383.025232pt;}
.y6b{bottom:384.249190pt;}
.ya2{bottom:398.925333pt;}
.y1f{bottom:407.063200pt;}
.y64{bottom:415.718510pt;}
.y6a{bottom:416.942468pt;}
.ya1{bottom:440.685333pt;}
.y63{bottom:448.411789pt;}
.y1e{bottom:477.396400pt;}
.y62{bottom:481.105067pt;}
.ya0{bottom:482.445333pt;}
.y69{bottom:486.354487pt;}
.y68{bottom:519.047765pt;}
.y1d{bottom:519.156400pt;}
.y9f{bottom:524.205333pt;}
.y94{bottom:546.252800pt;}
.y67{bottom:551.741043pt;}
.y1c{bottom:560.916400pt;}
.yab{bottom:565.965333pt;}
.y1b{bottom:602.676400pt;}
.yaa{bottom:607.725333pt;}
.y9e{bottom:617.049733pt;}
.y93{bottom:632.989452pt;}
.y9d{bottom:658.809733pt;}
.y92{bottom:665.682730pt;}
.y1a{bottom:673.009733pt;}
.y9c{bottom:700.569733pt;}
.y91{bottom:704.196609pt;}
.y9a{bottom:707.252133pt;}
.y19{bottom:714.769733pt;}
.y9b{bottom:742.329733pt;}
.y90{bottom:742.710487pt;}
.y99{bottom:749.012133pt;}
.y18{bottom:756.529600pt;}
.y8f{bottom:775.403765pt;}
.y98{bottom:790.772133pt;}
.y8e{bottom:813.917643pt;}
.y17{bottom:826.862933pt;}
.y97{bottom:832.532133pt;}
.y8d{bottom:846.610922pt;}
.y16{bottom:868.622933pt;}
.y96{bottom:874.292133pt;}
.y8c{bottom:885.124800pt;}
.y8b{bottom:926.682133pt;}
.y26{bottom:986.575600pt;}
.y8a{bottom:1043.529398pt;}
.y83{bottom:1061.842276pt;}
.y89{bottom:1076.222676pt;}
.y82{bottom:1094.535554pt;}
.y88{bottom:1108.915954pt;}
.y81{bottom:1127.228832pt;}
.y87{bottom:1141.609232pt;}
.y80{bottom:1159.922110pt;}
.y86{bottom:1174.302510pt;}
.y7f{bottom:1192.615389pt;}
.y43{bottom:1201.791661pt;}
.y85{bottom:1206.995789pt;}
.y7e{bottom:1225.308667pt;}
.y42{bottom:1230.686261pt;}
.y31{bottom:1235.052840pt;}
.y84{bottom:1239.689067pt;}
.y3a{bottom:1243.158572pt;}
.y41{bottom:1260.020594pt;}
.y30{bottom:1263.835866pt;}
.y39{bottom:1264.287924pt;}
.y4b{bottom:1274.557496pt;}
.y40{bottom:1289.849733pt;}
.y2f{bottom:1294.161302pt;}
.y38{bottom:1295.551060pt;}
.y4a{bottom:1304.758163pt;}
.y3f{bottom:1323.528667pt;}
.y2e{bottom:1324.269467pt;}
.y37{bottom:1325.452191pt;}
.y61{bottom:1329.067554pt;}
.y49{bottom:1333.606800pt;}
.y2d{bottom:1347.667333pt;}
.y36{bottom:1353.339333pt;}
.y48{bottom:1357.752533pt;}
.y5c{bottom:1358.414166pt;}
.y60{bottom:1361.760832pt;}
.y3e{bottom:1368.054400pt;}
.y35{bottom:1383.007200pt;}
.y5b{bottom:1391.107444pt;}
.y5f{bottom:1394.454110pt;}
.y3d{bottom:1397.613262pt;}
.y2c{bottom:1398.435566pt;}
.y47{bottom:1409.031696pt;}
.y34{bottom:1422.878400pt;}
.y5a{bottom:1423.800722pt;}
.y5e{bottom:1427.147389pt;}
.y3c{bottom:1429.032667pt;}
.y2b{bottom:1430.534667pt;}
.y46{bottom:1439.367888pt;}
.y59{bottom:1456.494000pt;}
.y5d{bottom:1459.840667pt;}
.y33{bottom:1462.338267pt;}
.y45{bottom:1468.618800pt;}
.y3b{bottom:1491.545067pt;}
.y7d{bottom:1503.198800pt;}
.y29{bottom:1505.537733pt;}
.y2a{bottom:1506.582133pt;}
.y58{bottom:1527.792000pt;}
.y32{bottom:1537.157333pt;}
.y44{bottom:1546.426533pt;}
.y28{bottom:1557.545733pt;}
.y55{bottom:1597.358930pt;}
.y27{bottom:1609.553733pt;}
.y54{bottom:1630.052209pt;}
.y53{bottom:1668.566087pt;}
.y52{bottom:1707.079965pt;}
.y51{bottom:1739.773243pt;}
.y15{bottom:1765.055333pt;}
.y50{bottom:1778.287122pt;}
.y9{bottom:1795.125600pt;}
.y14{bottom:1806.815333pt;}
.y4f{bottom:1810.980400pt;}
.y13{bottom:1848.575333pt;}
.y7c{bottom:1887.133619pt;}
.y12{bottom:1913.012400pt;}
.y7b{bottom:1919.826897pt;}
.y7a{bottom:1952.520175pt;}
.y11{bottom:1954.772400pt;}
.y4e{bottom:2002.886720pt;}
.y10{bottom:2015.430133pt;}
.yf{bottom:2057.190133pt;}
.y4d{bottom:2065.923200pt;}
.ye{bottom:2098.950133pt;}
.yd{bottom:2159.607867pt;}
.yc{bottom:2201.367867pt;}
.yb{bottom:2247.209733pt;}
.y1{bottom:2351.028000pt;}
.y8{bottom:2485.150000pt;}
.y7{bottom:2538.478000pt;}
.y6{bottom:2591.806000pt;}
.y5{bottom:2645.134000pt;}
.y4{bottom:2846.558533pt;}
.y3{bottom:2941.827867pt;}
.y2{bottom:3036.435867pt;}
.h1c{height:50.273234pt;}
.h1a{height:55.970633pt;}
.h6{height:56.970667pt;}
.h5{height:57.889115pt;}
.h14{height:72.593800pt;}
.hd{height:72.593947pt;}
.hf{height:72.593976pt;}
.h19{height:78.091070pt;}
.h18{height:87.971981pt;}
.h1e{height:90.880000pt;}
.h12{height:90.939516pt;}
.hc{height:90.939700pt;}
.h10{height:90.939736pt;}
.h13{height:90.940488pt;}
.h8{height:97.664000pt;}
.h1b{height:111.606305pt;}
.h1d{height:125.727919pt;}
.h9{height:129.536000pt;}
.h7{height:142.602667pt;}
.h17{height:150.819703pt;}
.h2{height:162.272000pt;}
.h15{height:214.678225pt;}
.h4{height:227.882667pt;}
.he{height:234.647997pt;}
.h11{height:234.648132pt;}
.hb{height:234.648304pt;}
.h3{height:290.761920pt;}
.h16{height:503.945333pt;}
.ha{height:3178.582667pt;}
.h0{height:3178.586667pt;}
.h1{height:3178.666667pt;}
.w2{width:500.586667pt;}
.w0{width:2245.040000pt;}
.w1{width:2245.333333pt;}
.x2a{left:-536.751067pt;}
.x28{left:-509.715333pt;}
.x27{left:-499.822267pt;}
.x36{left:-498.711679pt;}
.x2b{left:-496.674133pt;}
.x41{left:-493.788133pt;}
.x3a{left:-491.748718pt;}
.x30{left:-485.465733pt;}
.x29{left:-474.682935pt;}
.x40{left:-456.332871pt;}
.x2d{left:-448.606225pt;}
.x39{left:-366.469817pt;}
.x3b{left:-308.726198pt;}
.x37{left:-306.767865pt;}
.x3f{left:-233.028533pt;}
.x2c{left:-222.038000pt;}
.x38{left:-215.759788pt;}
.x35{left:-65.865732pt;}
.x0{left:0.000000pt;}
.x5{left:36.892267pt;}
.x2{left:75.590533pt;}
.x6{left:153.070933pt;}
.x1{left:154.960667pt;}
.x3{left:156.850400pt;}
.x3e{left:373.965092pt;}
.x2f{left:375.417035pt;}
.x31{left:391.323380pt;}
.x32{left:483.310623pt;}
.x34{left:492.204718pt;}
.x33{left:516.819873pt;}
.x16{left:578.217733pt;}
.x1c{left:579.119390pt;}
.x1b{left:585.455067pt;}
.x1d{left:586.953553pt;}
.x18{left:593.731556pt;}
.x19{left:595.134400pt;}
.x3d{left:600.070933pt;}
.x1e{left:607.380391pt;}
.x2e{left:619.283867pt;}
.x17{left:645.607867pt;}
.x1a{left:702.030800pt;}
.x3c{left:829.984000pt;}
.xb{left:902.963333pt;}
.xe{left:911.260765pt;}
.xc{left:914.187092pt;}
.xd{left:930.387080pt;}
.x8{left:931.503467pt;}
.x7{left:941.560800pt;}
.x9{left:988.326240pt;}
.x42{left:994.098400pt;}
.xa{left:1045.431333pt;}
.x43{left:1078.457733pt;}
.x12{left:1271.417867pt;}
.xf{left:1275.661067pt;}
.x10{left:1287.571867pt;}
.x14{left:1291.595250pt;}
.x13{left:1294.386761pt;}
.x15{left:1380.162308pt;}
.x11{left:1400.892800pt;}
.x25{left:1623.644941pt;}
.x26{left:1636.987292pt;}
.x1f{left:1639.417600pt;}
.x24{left:1641.268533pt;}
.x21{left:1681.352623pt;}
.x20{left:1689.762800pt;}
.x22{left:1697.798959pt;}
.x46{left:1701.117867pt;}
.x23{left:1766.605467pt;}
.x44{left:1875.212533pt;}
.x45{left:1895.642533pt;}
.x4{left:2014.451333pt;}
}




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