
    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_b46201332b5f8d08ba279ef2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9a3ac99ebaeb6800b4b1ce44.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.681152;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_e785ad8dabf378680eaa20a9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_242a32397a5fc2bc61100a82.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_74c0ac47102c822526e1adf8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b71e21c75f88cce27d0fa6c1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239258;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_ccebda58158ffa9041d5a8cb.woff2')format("woff");}.ff8{font-family:ff8;line-height:4.268000;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_945a8e003c73b5a30d07a782.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_3a514089e0d8b7d9f6dc2cd6.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-41.221200px;}
.v3{vertical-align:-33.791400px;}
.v2{vertical-align:-31.088400px;}
.v8{vertical-align:-24.327000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.027400px;}
.v9{vertical-align:11.487600px;}
.v4{vertical-align:22.978800px;}
.v1{vertical-align:33.791400px;}
.v5{vertical-align:37.846200px;}
.ls3{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.062170px;}
.ls29{letter-spacing:0.062176px;}
.ls1{letter-spacing:0.145980px;}
.ls5{letter-spacing:0.177295px;}
.ls2b{letter-spacing:0.352125px;}
.ls2{letter-spacing:0.469111px;}
.ls1a{letter-spacing:2.360363px;}
.ls13{letter-spacing:2.362772px;}
.ls9{letter-spacing:2.362908px;}
.lsc{letter-spacing:2.366386px;}
.ls27{letter-spacing:13.366542px;}
.ls1c{letter-spacing:15.897536px;}
.ls15{letter-spacing:15.907173px;}
.lse{letter-spacing:15.922832px;}
.ls2a{letter-spacing:19.531258px;}
.ls1f{letter-spacing:20.583378px;}
.ls18{letter-spacing:20.588196px;}
.ls11{letter-spacing:20.597833px;}
.lsa{letter-spacing:21.247429px;}
.ls1b{letter-spacing:22.065736px;}
.ls14{letter-spacing:22.071759px;}
.lsd{letter-spacing:22.081396px;}
.lsb{letter-spacing:25.514148px;}
.ls6{letter-spacing:31.542153px;}
.ls1e{letter-spacing:31.980595px;}
.ls17{letter-spacing:31.991436px;}
.ls10{letter-spacing:32.007095px;}
.ls24{letter-spacing:46.407385px;}
.ls23{letter-spacing:46.423044px;}
.ls22{letter-spacing:46.448340px;}
.ls26{letter-spacing:49.794257px;}
.ls25{letter-spacing:52.512945px;}
.ls0{letter-spacing:55.531130px;}
.ls28{letter-spacing:99.007024px;}
.ls1d{letter-spacing:114.388949px;}
.ls16{letter-spacing:114.414245px;}
.lsf{letter-spacing:114.455802px;}
.ls4{letter-spacing:175.304058px;}
.ls7{letter-spacing:237.412099px;}
.ls8{letter-spacing:1115.136876px;}
.ls20{letter-spacing:1120.701250px;}
.ls19{letter-spacing:1120.920480px;}
.ls12{letter-spacing:1121.272813px;}
.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;}
}
.ws22{word-spacing:-19.768065px;}
.ws1{word-spacing:-18.393420px;}
.ws2{word-spacing:-18.247440px;}
.ws20{word-spacing:-15.606286px;}
.ws6{word-spacing:-15.544110px;}
.wsb{word-spacing:-15.542430px;}
.ws24{word-spacing:-14.023494px;}
.ws1a{word-spacing:-0.232260px;}
.ws1c{word-spacing:-0.225946px;}
.ws1b{word-spacing:-0.225344px;}
.ws19{word-spacing:-0.225033px;}
.ws18{word-spacing:-0.214192px;}
.ws4{word-spacing:0.000000px;}
.ws5{word-spacing:0.513917px;}
.ws1f{word-spacing:0.525505px;}
.ws13{word-spacing:0.865453px;}
.wse{word-spacing:0.872078px;}
.ws8{word-spacing:0.883521px;}
.ws0{word-spacing:1.757105px;}
.ws25{word-spacing:4.971102px;}
.ws16{word-spacing:16.823059px;}
.wsc{word-spacing:16.825333px;}
.ws11{word-spacing:16.847753px;}
.ws3{word-spacing:19.707284px;}
.ws21{word-spacing:20.276213px;}
.ws23{word-spacing:48.295586px;}
.ws1d{word-spacing:61.277410px;}
.ws1e{word-spacing:61.957383px;}
.ws14{word-spacing:99.292443px;}
.wsf{word-spacing:99.320148px;}
.ws9{word-spacing:99.364114px;}
.ws15{word-spacing:701.249073px;}
.ws10{word-spacing:701.408677px;}
.wsa{word-spacing:701.542716px;}
.ws7{word-spacing:1188.509399px;}
.ws17{word-spacing:1196.824645px;}
.ws12{word-spacing:1197.063148px;}
.wsd{word-spacing:1197.448004px;}
._1{margin-left:-1.260031px;}
._0{width:1.237777px;}
._6{width:3.178811px;}
._8{width:4.502575px;}
._c{width:5.534537px;}
._15{width:6.652879px;}
._13{width:8.056946px;}
._11{width:9.077760px;}
._10{width:10.259113px;}
._a{width:11.944308px;}
._b{width:12.976254px;}
._1e{width:14.238592px;}
._3{width:15.804023px;}
._7{width:16.882037px;}
._f{width:17.942522px;}
._2{width:19.585499px;}
._9{width:20.752994px;}
._d{width:22.680598px;}
._14{width:25.131710px;}
._12{width:27.434586px;}
._18{width:28.663339px;}
._5{width:30.871805px;}
._e{width:35.128572px;}
._16{width:41.360150px;}
._17{width:42.642490px;}
._19{width:47.080930px;}
._27{width:62.375174px;}
._21{width:94.599240px;}
._1a{width:97.925270px;}
._23{width:100.067410px;}
._1d{width:108.650963px;}
._1c{width:123.899902px;}
._1b{width:146.607183px;}
._20{width:160.002273px;}
._22{width:168.838311px;}
._1f{width:265.380195px;}
._25{width:346.412231px;}
._26{width:361.601750px;}
._24{width:455.054303px;}
._4{width:1729.168268px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:36.490932px;}
.fsb{font-size:45.275790px;}
.fs4{font-size:45.280680px;}
.fs3{font-size:47.984004px;}
.fs8{font-size:56.087916px;}
.fs0{font-size:56.093976px;}
.fsa{font-size:62.169720px;}
.fs7{font-size:62.176440px;}
.fs9{font-size:67.575780px;}
.fs5{font-size:67.583100px;}
.fs2{font-size:72.989760px;}
.fsd{font-size:79.063680px;}
.fs6{font-size:79.072260px;}
.fs1{font-size:112.863780px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.891540px;}
.y87{bottom:3.379050px;}
.y8f{bottom:3.548100px;}
.y91{bottom:3.717000px;}
.y93{bottom:3.885900px;}
.y8b{bottom:7.434150px;}
.y89{bottom:8.109900px;}
.y86{bottom:21.288600px;}
.y8e{bottom:21.288750px;}
.y44{bottom:41.043420px;}
.y6f{bottom:66.046485px;}
.y42{bottom:70.998225px;}
.y70{bottom:73.158705px;}
.y55{bottom:76.689675px;}
.y6e{bottom:101.185875px;}
.y3{bottom:108.470880px;}
.y23{bottom:111.174195px;}
.y22{bottom:129.759570px;}
.y6d{bottom:135.649575px;}
.y21{bottom:147.500130px;}
.y7c{bottom:149.358660px;}
.y41{bottom:164.395860px;}
.y20{bottom:165.240660px;}
.y1f{bottom:183.150210px;}
.y1e{bottom:200.890710px;}
.y6c{bottom:201.198075px;}
.y1d{bottom:218.800260px;}
.y6b{bottom:236.844375px;}
.y8a{bottom:248.414700px;}
.y1c{bottom:254.281410px;}
.y88{bottom:270.717150px;}
.y6a{bottom:274.011075px;}
.y69{bottom:291.749625px;}
.y85{bottom:293.526450px;}
.y54{bottom:325.706475px;}
.y68{bottom:327.395925px;}
.y67{bottom:345.303525px;}
.y84{bottom:348.897810px;}
.y40{bottom:352.445910px;}
.y53{bottom:362.704275px;}
.y66{bottom:363.042075px;}
.y7b{bottom:375.255210px;}
.y52{bottom:380.611875px;}
.y3f{bottom:393.671610px;}
.y51{bottom:398.350425px;}
.y65{bottom:398.688375px;}
.y83{bottom:399.585060px;}
.yb0{bottom:409.891560px;}
.y3e{bottom:411.412110px;}
.y1b{bottom:413.439660px;}
.y50{bottom:416.258025px;}
.yaf{bottom:426.111510px;}
.y82{bottom:429.997560px;}
.y1a{bottom:431.349210px;}
.y64{bottom:433.152075px;}
.yae{bottom:442.331460px;}
.y3d{bottom:448.244910px;}
.y19{bottom:449.089710px;}
.y4f{bottom:450.045975px;}
.yad{bottom:458.551410px;}
.y3c{bottom:466.154460px;}
.y18{bottom:466.999260px;}
.y63{bottom:467.784675px;}
.yac{bottom:474.602310px;}
.y3b{bottom:483.894960px;}
.y17{bottom:484.739760px;}
.yab{bottom:490.822260px;}
.y16{bottom:502.649310px;}
.yaa{bottom:507.042210px;}
.y15{bottom:520.389960px;}
.ya9{bottom:523.262160px;}
.y3a{bottom:527.486160px;}
.y14{bottom:538.130460px;}
.ya8{bottom:539.482110px;}
.y62{bottom:544.483125px;}
.ya7{bottom:555.533160px;}
.y61{bottom:562.390725px;}
.y39{bottom:571.415160px;}
.ya6{bottom:571.753110px;}
.y13{bottom:574.456410px;}
.y60{bottom:580.129425px;}
.ya5{bottom:587.973060px;}
.y38{bottom:589.324710px;}
.ya4{bottom:604.193010px;}
.y37{bottom:607.065210px;}
.y12{bottom:612.640860px;}
.y5f{bottom:615.775575px;}
.ya3{bottom:620.412960px;}
.y36{bottom:624.974760px;}
.y7a{bottom:632.070960px;}
.ya2{bottom:636.632910px;}
.y81{bottom:639.167160px;}
.y11{bottom:650.149410px;}
.ya1{bottom:652.683810px;}
.y5e{bottom:652.942275px;}
.y35{bottom:661.807560px;}
.ya0{bottom:668.903760px;}
.y80{bottom:669.579660px;}
.y5d{bottom:670.849875px;}
.y9f{bottom:685.123710px;}
.y10{bottom:686.982360px;}
.y5c{bottom:688.588575px;}
.y34{bottom:698.978310px;}
.y9e{bottom:701.343660px;}
.yf{bottom:703.202160px;}
.y4e{bottom:707.340825px;}
.y33{bottom:717.901560px;}
.ye{bottom:719.422110px;}
.y5b{bottom:727.444575px;}
.yd{bottom:735.642060px;}
.y9d{bottom:735.980010px;}
.y32{bottom:736.824810px;}
.y4d{bottom:747.379425px;}
.yc{bottom:751.862010px;}
.y4c{bottom:765.118125px;}
.yb{bottom:767.913060px;}
.y31{bottom:773.488710px;}
.y9c{bottom:775.854060px;}
.y4b{bottom:783.025725px;}
.ya{bottom:784.133010px;}
.y30{bottom:791.229210px;}
.y9b{bottom:793.763610px;}
.y2f{bottom:809.138760px;}
.y9a{bottom:811.504110px;}
.y9{bottom:821.641560px;}
.y4a{bottom:823.909125px;}
.y2e{bottom:826.879260px;}
.y99{bottom:829.413660px;}
.y79{bottom:831.441210px;}
.y98{bottom:847.154160px;}
.y78{bottom:849.181710px;}
.y97{bottom:864.894810px;}
.y49{bottom:866.312925px;}
.y77{bottom:867.091260px;}
.y2d{bottom:867.936060px;}
.y7f{bottom:873.004710px;}
.y8{bottom:875.370210px;}
.y96{bottom:882.804360px;}
.y5a{bottom:892.498575px;}
.y7{bottom:894.800310px;}
.y95{bottom:900.544860px;}
.y76{bottom:903.248160px;}
.y7e{bottom:903.417210px;}
.y48{bottom:906.182625px;}
.y2c{bottom:907.810110px;}
.y6{bottom:920.988810px;}
.y47{bottom:923.921325px;}
.y2b{bottom:925.550610px;}
.y59{bottom:926.624325px;}
.y94{bottom:936.870810px;}
.y46{bottom:941.660025px;}
.y2a{bottom:943.460160px;}
.y58{bottom:944.531925px;}
.y75{bottom:944.811810px;}
.y29{bottom:961.200660px;}
.y57{bottom:962.270625px;}
.y74{bottom:967.790010px;}
.y92{bottom:974.426250px;}
.y5{bottom:976.575960px;}
.y45{bottom:978.488775px;}
.y28{bottom:979.110210px;}
.y56{bottom:980.009175px;}
.y73{bottom:988.233960px;}
.y27{bottom:996.850860px;}
.y90{bottom:997.404450px;}
.y4{bottom:1008.339960px;}
.y43{bottom:1013.966025px;}
.y26{bottom:1014.760410px;}
.y8d{bottom:1020.889500px;}
.y72{bottom:1026.925260px;}
.y25{bottom:1032.500910px;}
.y71{bottom:1049.734560px;}
.y24{bottom:1050.241410px;}
.y8c{bottom:1077.781560px;}
.y2{bottom:1084.202010px;}
.y7d{bottom:1122.217410px;}
.h19{height:21.378570px;}
.h18{height:22.083150px;}
.h1c{height:22.244880px;}
.h1b{height:22.809300px;}
.h16{height:35.581665px;}
.h1a{height:35.635815px;}
.h5{height:44.440511px;}
.h7{height:55.025780px;}
.hf{height:55.047222px;}
.h2{height:55.053170px;}
.h11{height:61.016180px;}
.h9{height:61.022776px;}
.h17{height:62.662193px;}
.hc{height:67.397201px;}
.h10{height:68.103716px;}
.ha{height:68.111093px;}
.h6{height:71.599818px;}
.h3{height:75.224150px;}
.h13{height:77.718300px;}
.h14{height:79.681365px;}
.h8{height:79.690012px;}
.h4{height:80.885076px;}
.hb{height:129.546108px;}
.hd{height:156.798546px;}
.h15{height:163.337508px;}
.h12{height:165.347254px;}
.he{height:1115.121300px;}
.h1{height:1185.407550px;}
.h0{height:1188.000000px;}
.wc{width:132.545100px;}
.w8{width:134.014500px;}
.wa{width:134.576250px;}
.wb{width:151.673400px;}
.w7{width:152.159700px;}
.w6{width:152.181300px;}
.w9{width:153.874050px;}
.w5{width:163.692150px;}
.w4{width:194.398935px;}
.w2{width:322.850400px;}
.w3{width:322.889550px;}
.w1{width:839.790000px;}
.w0{width:918.000000px;}
.x1c{left:-524.479650px;}
.x2b{left:-520.587450px;}
.x1a{left:-483.526650px;}
.x1d{left:-398.574300px;}
.x2a{left:-384.020850px;}
.x1f{left:-380.297700px;}
.x1e{left:-370.821000px;}
.x2d{left:-353.898300px;}
.x20{left:-334.775550px;}
.x14{left:-201.989400px;}
.x26{left:-198.096450px;}
.x12{left:-161.028450px;}
.x15{left:-76.059900px;}
.x25{left:-61.503600px;}
.x17{left:-57.779850px;}
.x16{left:-48.301200px;}
.x28{left:-31.375200px;}
.x2e{left:-19.335300px;}
.x2c{left:-18.319950px;}
.x18{left:-12.248850px;}
.x0{left:0.000000px;}
.x3b{left:9.310350px;}
.x42{left:17.720250px;}
.x4b{left:26.068800px;}
.x48{left:29.962200px;}
.x4f{left:33.517200px;}
.x3d{left:34.871400px;}
.x1{left:38.898015px;}
.x4c{left:41.303850px;}
.x43{left:42.434850px;}
.x45{left:50.952750px;}
.x49{left:52.984050px;}
.x3e{left:53.999850px;}
.x40{left:57.871650px;}
.x50{left:62.125200px;}
.x44{left:67.203450px;}
.x1b{left:77.632050px;}
.x3{left:120.695535px;}
.x7{left:124.250235px;}
.x31{left:134.237685px;}
.x4{left:136.099785px;}
.x2f{left:141.685935px;}
.x34{left:142.870935px;}
.x30{left:147.272235px;}
.x51{left:152.519835px;}
.x2{left:161.660835px;}
.x47{left:176.859900px;}
.x35{left:182.820585px;}
.x37{left:190.607385px;}
.x38{left:198.394185px;}
.x46{left:202.626135px;}
.x33{left:203.641935px;}
.x3a{left:212.275035px;}
.x39{left:220.231185px;}
.x6{left:221.416035px;}
.x36{left:223.786035px;}
.x5{left:225.309435px;}
.xa{left:240.205935px;}
.xd{left:246.688335px;}
.xb{left:253.071135px;}
.x21{left:261.249135px;}
.xf{left:264.974085px;}
.xe{left:274.455585px;}
.x23{left:291.386835px;}
.x29{left:303.252000px;}
.x27{left:304.267500px;}
.xc{left:306.224535px;}
.x10{left:310.519035px;}
.x8{left:311.980035px;}
.x3c{left:326.332650px;}
.x4a{left:331.411050px;}
.x32{left:345.666435px;}
.x11{left:361.607400px;}
.x13{left:400.237950px;}
.x4d{left:466.664400px;}
.x3f{left:479.381850px;}
.x4e{left:619.014900px;}
.x24{left:626.117535px;}
.x22{left:627.133485px;}
.x41{left:632.272650px;}
.x19{left:684.316800px;}
.x9{left:722.987835px;}
@media print{
.v7{vertical-align:-36.641067pt;}
.v3{vertical-align:-30.036800pt;}
.v2{vertical-align:-27.634133pt;}
.v8{vertical-align:-21.624000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.802133pt;}
.v9{vertical-align:10.211200pt;}
.v4{vertical-align:20.425600pt;}
.v1{vertical-align:30.036800pt;}
.v5{vertical-align:33.641067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.055262pt;}
.ls29{letter-spacing:0.055268pt;}
.ls1{letter-spacing:0.129760pt;}
.ls5{letter-spacing:0.157596pt;}
.ls2b{letter-spacing:0.313000pt;}
.ls2{letter-spacing:0.416988pt;}
.ls1a{letter-spacing:2.098100pt;}
.ls13{letter-spacing:2.100242pt;}
.ls9{letter-spacing:2.100363pt;}
.lsc{letter-spacing:2.103454pt;}
.ls27{letter-spacing:11.881371pt;}
.ls1c{letter-spacing:14.131143pt;}
.ls15{letter-spacing:14.139709pt;}
.lse{letter-spacing:14.153629pt;}
.ls2a{letter-spacing:17.361118pt;}
.ls1f{letter-spacing:18.296336pt;}
.ls18{letter-spacing:18.300619pt;}
.ls11{letter-spacing:18.309185pt;}
.lsa{letter-spacing:18.886604pt;}
.ls1b{letter-spacing:19.613988pt;}
.ls14{letter-spacing:19.619341pt;}
.lsd{letter-spacing:19.627907pt;}
.lsb{letter-spacing:22.679242pt;}
.ls6{letter-spacing:28.037469pt;}
.ls1e{letter-spacing:28.427195pt;}
.ls17{letter-spacing:28.436832pt;}
.ls10{letter-spacing:28.450751pt;}
.ls24{letter-spacing:41.251009pt;}
.ls23{letter-spacing:41.264928pt;}
.ls22{letter-spacing:41.287413pt;}
.ls26{letter-spacing:44.261561pt;}
.ls25{letter-spacing:46.678173pt;}
.ls0{letter-spacing:49.361005pt;}
.ls28{letter-spacing:88.006243pt;}
.ls1d{letter-spacing:101.679066pt;}
.ls16{letter-spacing:101.701551pt;}
.lsf{letter-spacing:101.738491pt;}
.ls4{letter-spacing:155.825830pt;}
.ls7{letter-spacing:211.032977pt;}
.ls8{letter-spacing:991.232778pt;}
.ls20{letter-spacing:996.178889pt;}
.ls19{letter-spacing:996.373760pt;}
.ls12{letter-spacing:996.686945pt;}
.ws22{word-spacing:-17.571613pt;}
.ws1{word-spacing:-16.349706pt;}
.ws2{word-spacing:-16.219947pt;}
.ws20{word-spacing:-13.872255pt;}
.ws6{word-spacing:-13.816987pt;}
.wsb{word-spacing:-13.815493pt;}
.ws24{word-spacing:-12.465328pt;}
.ws1a{word-spacing:-0.206453pt;}
.ws1c{word-spacing:-0.200841pt;}
.ws1b{word-spacing:-0.200306pt;}
.ws19{word-spacing:-0.200029pt;}
.ws18{word-spacing:-0.190392pt;}
.ws4{word-spacing:0.000000pt;}
.ws5{word-spacing:0.456815pt;}
.ws1f{word-spacing:0.467116pt;}
.ws13{word-spacing:0.769291pt;}
.wse{word-spacing:0.775180pt;}
.ws8{word-spacing:0.785352pt;}
.ws0{word-spacing:1.561871pt;}
.ws25{word-spacing:4.418757pt;}
.ws16{word-spacing:14.953831pt;}
.wsc{word-spacing:14.955852pt;}
.ws11{word-spacing:14.975780pt;}
.ws3{word-spacing:17.517586pt;}
.ws21{word-spacing:18.023300pt;}
.ws23{word-spacing:42.929409pt;}
.ws1d{word-spacing:54.468809pt;}
.ws1e{word-spacing:55.073229pt;}
.ws14{word-spacing:88.259949pt;}
.wsf{word-spacing:88.284576pt;}
.ws9{word-spacing:88.323657pt;}
.ws15{word-spacing:623.332510pt;}
.ws10{word-spacing:623.474380pt;}
.wsa{word-spacing:623.593525pt;}
.ws7{word-spacing:1056.452799pt;}
.ws17{word-spacing:1063.844129pt;}
.ws12{word-spacing:1064.056132pt;}
.wsd{word-spacing:1064.398226pt;}
._1{margin-left:-1.120028pt;}
._0{width:1.100246pt;}
._6{width:2.825610pt;}
._8{width:4.002289pt;}
._c{width:4.919589pt;}
._15{width:5.913670pt;}
._13{width:7.161729pt;}
._11{width:8.069120pt;}
._10{width:9.119211pt;}
._a{width:10.617162pt;}
._b{width:11.534448pt;}
._1e{width:12.656526pt;}
._3{width:14.048021pt;}
._7{width:15.006255pt;}
._f{width:15.948908pt;}
._2{width:17.409333pt;}
._9{width:18.447106pt;}
._d{width:20.160531pt;}
._14{width:22.339298pt;}
._12{width:24.386299pt;}
._18{width:25.478523pt;}
._5{width:27.441604pt;}
._e{width:31.225397pt;}
._16{width:36.764578pt;}
._17{width:37.904435pt;}
._19{width:41.849715pt;}
._27{width:55.444599pt;}
._21{width:84.088214pt;}
._1a{width:87.044684pt;}
._23{width:88.948809pt;}
._1d{width:96.578634pt;}
._1c{width:110.133246pt;}
._1b{width:130.317496pt;}
._20{width:142.224243pt;}
._22{width:150.078499pt;}
._1f{width:235.893507pt;}
._25{width:307.921983pt;}
._26{width:321.423778pt;}
._24{width:404.492714pt;}
._4{width:1537.038461pt;}
.fsc{font-size:32.436384pt;}
.fsb{font-size:40.245147pt;}
.fs4{font-size:40.249493pt;}
.fs3{font-size:42.652448pt;}
.fs8{font-size:49.855925pt;}
.fs0{font-size:49.861312pt;}
.fsa{font-size:55.261973pt;}
.fs7{font-size:55.267947pt;}
.fs9{font-size:60.067360pt;}
.fs5{font-size:60.073867pt;}
.fs2{font-size:64.879787pt;}
.fsd{font-size:70.278827pt;}
.fs6{font-size:70.286453pt;}
.fs1{font-size:100.323360pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.792480pt;}
.y87{bottom:3.003600pt;}
.y8f{bottom:3.153867pt;}
.y91{bottom:3.304000pt;}
.y93{bottom:3.454133pt;}
.y8b{bottom:6.608133pt;}
.y89{bottom:7.208800pt;}
.y86{bottom:18.923200pt;}
.y8e{bottom:18.923333pt;}
.y44{bottom:36.483040pt;}
.y6f{bottom:58.707987pt;}
.y42{bottom:63.109533pt;}
.y70{bottom:65.029960pt;}
.y55{bottom:68.168600pt;}
.y6e{bottom:89.943000pt;}
.y3{bottom:96.418560pt;}
.y23{bottom:98.821507pt;}
.y22{bottom:115.341840pt;}
.y6d{bottom:120.577400pt;}
.y21{bottom:131.111227pt;}
.y7c{bottom:132.763253pt;}
.y41{bottom:146.129653pt;}
.y20{bottom:146.880587pt;}
.y1f{bottom:162.800187pt;}
.y1e{bottom:178.569520pt;}
.y6c{bottom:178.842733pt;}
.y1d{bottom:194.489120pt;}
.y6b{bottom:210.528333pt;}
.y8a{bottom:220.813067pt;}
.y1c{bottom:226.027920pt;}
.y88{bottom:240.637467pt;}
.y6a{bottom:243.565400pt;}
.y69{bottom:259.333000pt;}
.y85{bottom:260.912400pt;}
.y54{bottom:289.516867pt;}
.y68{bottom:291.018600pt;}
.y67{bottom:306.936467pt;}
.y84{bottom:310.131387pt;}
.y40{bottom:313.285253pt;}
.y53{bottom:322.403800pt;}
.y66{bottom:322.704067pt;}
.y7b{bottom:333.560187pt;}
.y52{bottom:338.321667pt;}
.y3f{bottom:349.930320pt;}
.y51{bottom:354.089267pt;}
.y65{bottom:354.389667pt;}
.y83{bottom:355.186720pt;}
.yb0{bottom:364.348053pt;}
.y3e{bottom:365.699653pt;}
.y1b{bottom:367.501920pt;}
.y50{bottom:370.007133pt;}
.yaf{bottom:378.765787pt;}
.y82{bottom:382.220053pt;}
.y1a{bottom:383.421520pt;}
.y64{bottom:385.024067pt;}
.yae{bottom:393.183520pt;}
.y3d{bottom:398.439920pt;}
.y19{bottom:399.190853pt;}
.y4f{bottom:400.040867pt;}
.yad{bottom:407.601253pt;}
.y3c{bottom:414.359520pt;}
.y18{bottom:415.110453pt;}
.y63{bottom:415.808600pt;}
.yac{bottom:421.868720pt;}
.y3b{bottom:430.128853pt;}
.y17{bottom:430.879787pt;}
.yab{bottom:436.286453pt;}
.y16{bottom:446.799387pt;}
.yaa{bottom:450.704187pt;}
.y15{bottom:462.568853pt;}
.ya9{bottom:465.121920pt;}
.y3a{bottom:468.876587pt;}
.y14{bottom:478.338187pt;}
.ya8{bottom:479.539653pt;}
.y62{bottom:483.985000pt;}
.ya7{bottom:493.807253pt;}
.y61{bottom:499.902867pt;}
.y39{bottom:507.924587pt;}
.ya6{bottom:508.224987pt;}
.y13{bottom:510.627920pt;}
.y60{bottom:515.670600pt;}
.ya5{bottom:522.642720pt;}
.y38{bottom:523.844187pt;}
.ya4{bottom:537.060453pt;}
.y37{bottom:539.613520pt;}
.y12{bottom:544.569653pt;}
.y5f{bottom:547.356067pt;}
.ya3{bottom:551.478187pt;}
.y36{bottom:555.533120pt;}
.y7a{bottom:561.840853pt;}
.ya2{bottom:565.895920pt;}
.y81{bottom:568.148587pt;}
.y11{bottom:577.910587pt;}
.ya1{bottom:580.163387pt;}
.y5e{bottom:580.393133pt;}
.y35{bottom:588.273387pt;}
.ya0{bottom:594.581120pt;}
.y80{bottom:595.181920pt;}
.y5d{bottom:596.311000pt;}
.y9f{bottom:608.998853pt;}
.y10{bottom:610.650987pt;}
.y5c{bottom:612.078733pt;}
.y34{bottom:621.314053pt;}
.y9e{bottom:623.416587pt;}
.yf{bottom:625.068587pt;}
.y4e{bottom:628.747400pt;}
.y33{bottom:638.134720pt;}
.ye{bottom:639.486320pt;}
.y5b{bottom:646.617400pt;}
.yd{bottom:653.904053pt;}
.y9d{bottom:654.204453pt;}
.y32{bottom:654.955387pt;}
.y4d{bottom:664.337267pt;}
.yc{bottom:668.321787pt;}
.y4c{bottom:680.105000pt;}
.yb{bottom:682.589387pt;}
.y31{bottom:687.545520pt;}
.y9c{bottom:689.648053pt;}
.y4b{bottom:696.022867pt;}
.ya{bottom:697.007120pt;}
.y30{bottom:703.314853pt;}
.y9b{bottom:705.567653pt;}
.y2f{bottom:719.234453pt;}
.y9a{bottom:721.336987pt;}
.y9{bottom:730.348053pt;}
.y4a{bottom:732.363667pt;}
.y2e{bottom:735.003787pt;}
.y99{bottom:737.256587pt;}
.y79{bottom:739.058853pt;}
.y98{bottom:753.025920pt;}
.y78{bottom:754.828187pt;}
.y97{bottom:768.795387pt;}
.y49{bottom:770.055933pt;}
.y77{bottom:770.747787pt;}
.y2d{bottom:771.498720pt;}
.y7f{bottom:776.004187pt;}
.y8{bottom:778.106853pt;}
.y96{bottom:784.714987pt;}
.y5a{bottom:793.332067pt;}
.y7{bottom:795.378053pt;}
.y95{bottom:800.484320pt;}
.y76{bottom:802.887253pt;}
.y7e{bottom:803.037520pt;}
.y48{bottom:805.495667pt;}
.y2c{bottom:806.942320pt;}
.y6{bottom:818.656720pt;}
.y47{bottom:821.263400pt;}
.y2b{bottom:822.711653pt;}
.y59{bottom:823.666067pt;}
.y94{bottom:832.774053pt;}
.y46{bottom:837.031133pt;}
.y2a{bottom:838.631253pt;}
.y58{bottom:839.583933pt;}
.y75{bottom:839.832720pt;}
.y29{bottom:854.400587pt;}
.y57{bottom:855.351667pt;}
.y74{bottom:860.257787pt;}
.y92{bottom:866.156667pt;}
.y5{bottom:868.067520pt;}
.y45{bottom:869.767800pt;}
.y28{bottom:870.320187pt;}
.y56{bottom:871.119267pt;}
.y73{bottom:878.430187pt;}
.y27{bottom:886.089653pt;}
.y90{bottom:886.581733pt;}
.y4{bottom:896.302187pt;}
.y43{bottom:901.303133pt;}
.y26{bottom:902.009253pt;}
.y8d{bottom:907.457333pt;}
.y72{bottom:912.822453pt;}
.y25{bottom:917.778587pt;}
.y71{bottom:933.097387pt;}
.y24{bottom:933.547920pt;}
.y8c{bottom:958.028053pt;}
.y2{bottom:963.735120pt;}
.y7d{bottom:997.526587pt;}
.h19{height:19.003173pt;}
.h18{height:19.629467pt;}
.h1c{height:19.773227pt;}
.h1b{height:20.274933pt;}
.h16{height:31.628147pt;}
.h1a{height:31.676280pt;}
.h5{height:39.502677pt;}
.h7{height:48.911805pt;}
.hf{height:48.930864pt;}
.h2{height:48.936151pt;}
.h11{height:54.236605pt;}
.h9{height:54.242467pt;}
.h17{height:55.699728pt;}
.hc{height:59.908623pt;}
.h10{height:60.536636pt;}
.ha{height:60.543194pt;}
.h6{height:63.644283pt;}
.h3{height:66.865911pt;}
.h13{height:69.082934pt;}
.h14{height:70.827880pt;}
.h8{height:70.835566pt;}
.h4{height:71.897845pt;}
.hb{height:115.152096pt;}
.hd{height:139.376486pt;}
.h15{height:145.188896pt;}
.h12{height:146.975337pt;}
.he{height:991.218933pt;}
.h1{height:1053.695600pt;}
.h0{height:1056.000000pt;}
.wc{width:117.817867pt;}
.w8{width:119.124000pt;}
.wa{width:119.623333pt;}
.wb{width:134.820800pt;}
.w7{width:135.253067pt;}
.w6{width:135.272267pt;}
.w9{width:136.776933pt;}
.w5{width:145.504133pt;}
.w4{width:172.799053pt;}
.w2{width:286.978133pt;}
.w3{width:287.012933pt;}
.w1{width:746.480000pt;}
.w0{width:816.000000pt;}
.x1c{left:-466.204133pt;}
.x2b{left:-462.744400pt;}
.x1a{left:-429.801467pt;}
.x1d{left:-354.288267pt;}
.x2a{left:-341.351867pt;}
.x1f{left:-338.042400pt;}
.x1e{left:-329.618667pt;}
.x2d{left:-314.576267pt;}
.x20{left:-297.578267pt;}
.x14{left:-179.546133pt;}
.x26{left:-176.085733pt;}
.x12{left:-143.136400pt;}
.x15{left:-67.608800pt;}
.x25{left:-54.669867pt;}
.x17{left:-51.359867pt;}
.x16{left:-42.934400pt;}
.x28{left:-27.889067pt;}
.x2e{left:-17.186933pt;}
.x2c{left:-16.284400pt;}
.x18{left:-10.887867pt;}
.x0{left:0.000000pt;}
.x3b{left:8.275867pt;}
.x42{left:15.751333pt;}
.x4b{left:23.172267pt;}
.x48{left:26.633067pt;}
.x4f{left:29.793067pt;}
.x3d{left:30.996800pt;}
.x1{left:34.576013pt;}
.x4c{left:36.714533pt;}
.x43{left:37.719867pt;}
.x45{left:45.291333pt;}
.x49{left:47.096933pt;}
.x3e{left:47.999867pt;}
.x40{left:51.441467pt;}
.x50{left:55.222400pt;}
.x44{left:59.736400pt;}
.x1b{left:69.006267pt;}
.x3{left:107.284920pt;}
.x7{left:110.444653pt;}
.x31{left:119.322387pt;}
.x4{left:120.977587pt;}
.x2f{left:125.943053pt;}
.x34{left:126.996387pt;}
.x30{left:130.908653pt;}
.x51{left:135.573187pt;}
.x2{left:143.698520pt;}
.x47{left:157.208800pt;}
.x35{left:162.507187pt;}
.x37{left:169.428787pt;}
.x38{left:176.350387pt;}
.x46{left:180.112120pt;}
.x33{left:181.015053pt;}
.x3a{left:188.688920pt;}
.x39{left:195.761053pt;}
.x6{left:196.814253pt;}
.x36{left:198.920920pt;}
.x5{left:200.275053pt;}
.xa{left:213.516387pt;}
.xd{left:219.278520pt;}
.xb{left:224.952120pt;}
.x21{left:232.221453pt;}
.xf{left:235.532520pt;}
.xe{left:243.960520pt;}
.x23{left:259.010520pt;}
.x29{left:269.557333pt;}
.x27{left:270.460000pt;}
.xc{left:272.199587pt;}
.x10{left:276.016920pt;}
.x8{left:277.315587pt;}
.x3c{left:290.073467pt;}
.x4a{left:294.587600pt;}
.x32{left:307.259053pt;}
.x11{left:321.428800pt;}
.x13{left:355.767067pt;}
.x4d{left:414.812800pt;}
.x3f{left:426.117200pt;}
.x4e{left:550.235467pt;}
.x24{left:556.548920pt;}
.x22{left:557.451987pt;}
.x41{left:562.020133pt;}
.x19{left:608.281600pt;}
.x9{left:642.655853pt;}
}




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