
    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_71c2e149f8d5c1d07ca99dfa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.145000;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_63c10ad2f29429da39d7d951.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_aaa9d8e55706ef820751a7d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.139000;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_02d0141d0c79e6057ad18a9a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914000;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_d5e3254e3a0ea3fd33ed8519.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.696000;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_fe97aeb3a88e7b700087b8c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.462000;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_88ec89033ad72e0bdee6f1ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.969000;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_f0ee484a15d0298276c05f53.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.668000;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.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);}
.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-17.359200px;}
.v6{vertical-align:-8.070000px;}
.v4{vertical-align:-1.265149px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.444000px;}
.v2{vertical-align:19.528800px;}
.v1{vertical-align:26.038200px;}
.lsa{letter-spacing:-10.161840px;}
.lse{letter-spacing:-9.325017px;}
.lsb{letter-spacing:-8.607708px;}
.lsc{letter-spacing:-7.699117px;}
.ls4{letter-spacing:-2.528525px;}
.lsd{letter-spacing:-1.960645px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000787px;}
.ls8{letter-spacing:0.001238px;}
.ls0{letter-spacing:2.988826px;}
.ls2{letter-spacing:20.921222px;}
.ls5{letter-spacing:23.910125px;}
.ls1{letter-spacing:24.060826px;}
.ls6{letter-spacing:30.670027px;}
.ls9{letter-spacing:44.107426px;}
.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:-20.084736px;}
.ws6{word-spacing:-15.063552px;}
.ws5{word-spacing:-14.226576px;}
.ws0{word-spacing:-13.389768px;}
.ws7{word-spacing:-12.535027px;}
.ws12{word-spacing:-11.429123px;}
.ws2{word-spacing:-0.119552px;}
.ws4{word-spacing:-0.071731px;}
.ws11{word-spacing:-0.065753px;}
.ws9{word-spacing:-0.050809px;}
.ws1{word-spacing:-0.047821px;}
.ws8{word-spacing:0.000000px;}
.ws10{word-spacing:13.867882px;}
.wsc{word-spacing:402.485078px;}
.wsb{word-spacing:409.741873px;}
.wse{word-spacing:431.578426px;}
.wsf{word-spacing:579.067371px;}
.wsd{word-spacing:592.562295px;}
.wsa{word-spacing:1192.446196px;}
._1{margin-left:-11.964714px;}
._4{margin-left:-6.307579px;}
._2{margin-left:-3.591327px;}
._0{margin-left:-2.247568px;}
._6{width:1.960645px;}
._3{width:2.988795px;}
._5{width:7.962038px;}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,128,172);}
.fs1{font-size:0.001200px;}
.fs9{font-size:35.566200px;}
.fs8{font-size:35.865600px;}
.fs0{font-size:47.820600px;}
.fs6{font-size:50.809200px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:65.753400px;}
.fs3{font-size:71.731200px;}
.fs5{font-size:83.686200px;}
.fs4{font-size:95.641200px;}
.fs2{font-size:119.551800px;}
.y0{bottom:0.000000px;}
.y4c{bottom:92.053612px;}
.y4b{bottom:106.997550px;}
.y4a{bottom:121.941450px;}
.y41{bottom:163.911863px;}
.y42{bottom:163.911900px;}
.y40{bottom:178.855800px;}
.y49{bottom:182.070900px;}
.y48{bottom:182.071149px;}
.y3f{bottom:183.195750px;}
.y47{bottom:198.509250px;}
.y46{bottom:198.509499px;}
.y45{bottom:214.947600px;}
.y44{bottom:214.947849px;}
.ybb{bottom:230.397900px;}
.ybc{bottom:230.398050px;}
.yba{bottom:230.398299px;}
.y3e{bottom:231.385950px;}
.y3d{bottom:231.386199px;}
.yb9{bottom:246.836400px;}
.yb8{bottom:246.836799px;}
.y3c{bottom:247.824300px;}
.y43{bottom:247.824399px;}
.y3b{bottom:247.824549px;}
.yb7{bottom:263.274900px;}
.yb6{bottom:263.275149px;}
.y39{bottom:264.262500px;}
.y3a{bottom:264.262650px;}
.y38{bottom:264.262749px;}
.yb4{bottom:279.713250px;}
.yb5{bottom:279.713400px;}
.yb3{bottom:279.713799px;}
.y37{bottom:280.700850px;}
.y35{bottom:280.701000px;}
.y36{bottom:280.701150px;}
.y34{bottom:280.701399px;}
.ybd{bottom:284.982750px;}
.yb2{bottom:296.151900px;}
.yb1{bottom:296.152149px;}
.y33{bottom:297.139500px;}
.y32{bottom:297.139749px;}
.yb0{bottom:312.590250px;}
.yaf{bottom:312.590499px;}
.y30{bottom:313.577850px;}
.y31{bottom:313.578000px;}
.y2f{bottom:313.578249px;}
.yae{bottom:329.028600px;}
.yad{bottom:329.028849px;}
.y2e{bottom:330.016350px;}
.y2d{bottom:330.016749px;}
.yac{bottom:345.466950px;}
.yab{bottom:345.467199px;}
.y2c{bottom:346.454850px;}
.y2b{bottom:346.455099px;}
.yaa{bottom:361.905300px;}
.ya9{bottom:361.905549px;}
.y2a{bottom:362.893200px;}
.y29{bottom:362.893449px;}
.ya8{bottom:378.343650px;}
.ya7{bottom:378.343899px;}
.y28{bottom:379.331550px;}
.y27{bottom:379.331799px;}
.ya6{bottom:394.782000px;}
.ya5{bottom:394.782249px;}
.y26{bottom:395.769900px;}
.y25{bottom:395.770299px;}
.ya4{bottom:411.220350px;}
.ya3{bottom:411.220599px;}
.y24{bottom:412.208400px;}
.y23{bottom:412.208649px;}
.ya2{bottom:427.658700px;}
.ya1{bottom:427.658949px;}
.y22{bottom:428.646750px;}
.y21{bottom:428.646999px;}
.ya0{bottom:444.097050px;}
.y9f{bottom:444.097548px;}
.y20{bottom:445.085100px;}
.y1f{bottom:445.085349px;}
.y9e{bottom:460.535649px;}
.y1e{bottom:461.523450px;}
.y1d{bottom:461.523699px;}
.y9d{bottom:476.973750px;}
.y9c{bottom:476.973999px;}
.y1c{bottom:477.961800px;}
.y1b{bottom:477.962049px;}
.y9b{bottom:493.412100px;}
.y9a{bottom:493.412349px;}
.y1a{bottom:494.400150px;}
.y19{bottom:494.400399px;}
.y99{bottom:509.850450px;}
.y98{bottom:509.851098px;}
.y18{bottom:510.838500px;}
.y17{bottom:510.838749px;}
.y97{bottom:526.289199px;}
.y16{bottom:527.276850px;}
.y15{bottom:527.277099px;}
.y96{bottom:542.727300px;}
.y95{bottom:542.727549px;}
.y14{bottom:543.715200px;}
.y94{bottom:559.165650px;}
.y93{bottom:559.165749px;}
.y91{bottom:575.603799px;}
.y92{bottom:575.603850px;}
.y90{bottom:592.041900px;}
.y8f{bottom:592.042050px;}
.y8d{bottom:592.042200px;}
.y8c{bottom:592.042299px;}
.y8e{bottom:592.042350px;}
.y8b{bottom:608.480400px;}
.y8a{bottom:608.480550px;}
.y89{bottom:608.480700px;}
.y88{bottom:608.480799px;}
.y87{bottom:624.918900px;}
.y85{bottom:624.919050px;}
.y84{bottom:624.919149px;}
.y86{bottom:624.919200px;}
.y83{bottom:641.357250px;}
.y81{bottom:641.357400px;}
.y82{bottom:641.357550px;}
.y80{bottom:641.357799px;}
.y7f{bottom:657.795900px;}
.y7e{bottom:657.796050px;}
.y7d{bottom:657.796149px;}
.y7c{bottom:674.234250px;}
.y7a{bottom:674.234400px;}
.y7b{bottom:674.234550px;}
.y79{bottom:674.234649px;}
.y13{bottom:674.964900px;}
.y12{bottom:674.965552px;}
.y78{bottom:690.672750px;}
.y76{bottom:690.672900px;}
.y77{bottom:690.673050px;}
.y75{bottom:690.673149px;}
.y74{bottom:707.111250px;}
.y73{bottom:707.111400px;}
.y72{bottom:707.111499px;}
.y11{bottom:711.129000px;}
.y10{bottom:711.129150px;}
.yf{bottom:711.129300px;}
.y71{bottom:723.549600px;}
.y6f{bottom:723.549750px;}
.y70{bottom:723.549900px;}
.y6e{bottom:723.549999px;}
.y6d{bottom:739.988100px;}
.y6c{bottom:739.988250px;}
.y6b{bottom:739.988400px;}
.ye{bottom:759.697050px;}
.yd{bottom:759.697896px;}
.yc{bottom:780.618300px;}
.yb{bottom:780.618450px;}
.ya{bottom:780.618600px;}
.y9{bottom:780.618750px;}
.y8{bottom:825.313050px;}
.y6a{bottom:825.643950px;}
.y69{bottom:829.983600px;}
.y68{bottom:840.588000px;}
.y67{bottom:844.927650px;}
.y66{bottom:855.531862px;}
.y7{bottom:863.868450px;}
.y6{bottom:863.868525px;}
.y65{bottom:870.475800px;}
.y64{bottom:870.475913px;}
.y62{bottom:885.419812px;}
.y63{bottom:885.419850px;}
.y5{bottom:893.756400px;}
.y61{bottom:900.363750px;}
.y60{bottom:900.363862px;}
.y5f{bottom:915.307800px;}
.y4{bottom:935.599500px;}
.y5d{bottom:937.702350px;}
.y5e{bottom:937.702500px;}
.y5c{bottom:937.702654px;}
.ycd{bottom:941.187113px;}
.yce{bottom:941.187150px;}
.ye2{bottom:947.255362px;}
.ye3{bottom:947.255550px;}
.y5b{bottom:954.140700px;}
.y5a{bottom:954.140850px;}
.y59{bottom:954.141154px;}
.ycb{bottom:956.131013px;}
.ycc{bottom:956.131050px;}
.yde{bottom:962.199263px;}
.ye1{bottom:962.199300px;}
.ydf{bottom:962.199450px;}
.ye0{bottom:962.199600px;}
.y58{bottom:970.579200px;}
.y57{bottom:970.579350px;}
.y56{bottom:970.579500px;}
.yca{bottom:971.074950px;}
.yc9{bottom:971.075062px;}
.ydd{bottom:977.143200px;}
.ydc{bottom:977.143350px;}
.ydb{bottom:977.143613px;}
.yc7{bottom:986.018963px;}
.yc8{bottom:986.019000px;}
.y55{bottom:987.017700px;}
.y54{bottom:987.017850px;}
.yda{bottom:992.087550px;}
.y2{bottom:996.293550px;}
.yc6{bottom:1000.962900px;}
.yd8{bottom:1007.031412px;}
.yd9{bottom:1007.031450px;}
.y53{bottom:1009.882050px;}
.yc5{bottom:1015.906912px;}
.yd7{bottom:1021.975350px;}
.yc3{bottom:1030.850812px;}
.yc4{bottom:1030.850850px;}
.y52{bottom:1036.781250px;}
.yd5{bottom:1036.919362px;}
.yd6{bottom:1036.919400px;}
.yc2{bottom:1045.794750px;}
.yc1{bottom:1045.794862px;}
.yd4{bottom:1051.863300px;}
.yc0{bottom:1060.738800px;}
.y51{bottom:1063.680450px;}
.y50{bottom:1063.997250px;}
.yd2{bottom:1066.807312px;}
.yd3{bottom:1066.807350px;}
.y3{bottom:1070.415750px;}
.yd1{bottom:1081.751250px;}
.yd0{bottom:1081.751362px;}
.y4f{bottom:1089.073800px;}
.y4e{bottom:1089.073950px;}
.ybf{bottom:1094.661450px;}
.ycf{bottom:1096.695300px;}
.y4d{bottom:1128.463350px;}
.ybe{bottom:1129.788900px;}
.y1{bottom:1133.905950px;}
.h3{height:0.000000px;}
.h12{height:27.400882px;}
.h19{height:31.944161px;}
.h1a{height:33.570202px;}
.h17{height:33.940546px;}
.h4{height:34.478653px;}
.h1c{height:35.937331px;}
.h13{height:36.391477px;}
.ha{height:38.665801px;}
.hb{height:39.123084px;}
.h11{height:40.940582px;}
.h2{height:44.760082px;}
.h15{height:44.760232px;}
.h14{height:45.190467px;}
.h16{height:46.592036px;}
.hc{height:47.557411px;}
.hd{height:50.355302px;}
.h10{height:50.839488px;}
.h18{height:51.733963px;}
.hf{height:53.098006px;}
.h1b{height:53.098402px;}
.he{height:53.099002px;}
.h1d{height:60.295868px;}
.h9{height:65.777510px;}
.h6{height:67.140403px;}
.h8{height:76.740245px;}
.h5{height:82.132087px;}
.h7{height:87.702980px;}
.h1{height:1190.250000px;}
.h0{height:1190.550000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b9{left:67.140000px;}
.x1{left:68.199600px;}
.x9c{left:74.830200px;}
.xcb{left:76.230450px;}
.x38{left:77.775450px;}
.x9d{left:80.843850px;}
.x39{left:83.173200px;}
.xb5{left:86.989050px;}
.x5f{left:89.235300px;}
.x96{left:90.492000px;}
.x2{left:93.029100px;}
.xb6{left:94.067250px;}
.x1b4{left:95.514750px;}
.x3{left:96.627600px;}
.xa4{left:98.193000px;}
.x19a{left:99.221850px;}
.x1b0{left:100.639200px;}
.x171{left:101.984250px;}
.xa5{left:103.523550px;}
.x91{left:104.891100px;}
.x183{left:106.448100px;}
.x182{left:108.994050px;}
.x92{left:110.828550px;}
.x7f{left:112.033050px;}
.x19c{left:113.080500px;}
.xa6{left:114.552450px;}
.x19d{left:115.776750px;}
.x80{left:116.807250px;}
.xa{left:118.464150px;}
.xa7{left:119.883000px;}
.x3c{left:121.424700px;}
.x1a9{left:122.450100px;}
.xb{left:123.861900px;}
.x75{left:125.200650px;}
.x52{left:126.950700px;}
.x6d{left:128.512050px;}
.x93{left:129.543450px;}
.x53{left:130.774050px;}
.x174{left:132.120450px;}
.x1a3{left:133.796550px;}
.x3d{left:135.321750px;}
.x1bd{left:136.471050px;}
.x8c{left:137.630700px;}
.x3e{left:139.145100px;}
.x30{left:140.449350px;}
.x1ae{left:141.865950px;}
.x1b{left:143.372700px;}
.x54{left:144.633000px;}
.x4{left:145.712550px;}
.x97{left:147.216450px;}
.x5{left:149.311050px;}
.x60{left:150.751800px;}
.x84{left:152.158800px;}
.xc4{left:153.709500px;}
.x193{left:155.389500px;}
.x61{left:157.219350px;}
.x76{left:159.519450px;}
.x1af{left:160.729950px;}
.x98{left:162.038400px;}
.x77{left:163.827300px;}
.x17f{left:165.389850px;}
.xc{left:166.806000px;}
.x99{left:169.509000px;}
.x9e{left:171.740400px;}
.xab{left:172.794150px;}
.xd{left:174.003000px;}
.x194{left:175.609350px;}
.x85{left:177.135600px;}
.xbc{left:178.870950px;}
.x3a{left:180.080100px;}
.xc1{left:182.088150px;}
.x86{left:184.243050px;}
.x3b{left:185.477850px;}
.x62{left:187.358850px;}
.x1aa{left:188.514450px;}
.x3f{left:189.778800px;}
.xa8{left:191.804550px;}
.xbd{left:193.585200px;}
.x55{left:194.707650px;}
.x6e{left:196.275900px;}
.x1a4{left:197.436750px;}
.x56{left:198.531150px;}
.x1b1{left:199.540650px;}
.xc0{left:200.857200px;}
.x1b5{left:201.931500px;}
.x40{left:203.675700px;}
.xb7{left:205.645650px;}
.x41{left:207.499200px;}
.x57{left:209.201550px;}
.x63{left:210.464100px;}
.x78{left:211.938000px;}
.x58{left:213.024900px;}
.x9a{left:214.168800px;}
.x6f{left:216.668850px;}
.x42{left:218.233200px;}
.xb8{left:219.354750px;}
.x17{left:220.939050px;}
.x43{left:222.056550px;}
.x9f{left:223.309050px;}
.xc2{left:224.455650px;}
.x59{left:226.337550px;}
.x18{left:228.136050px;}
.x5a{left:230.161050px;}
.x1a5{left:231.182250px;}
.x1c{left:232.207650px;}
.x70{left:233.268900px;}
.xc5{left:234.826050px;}
.x19f{left:235.861650px;}
.x19b{left:236.947800px;}
.x1d{left:238.505100px;}
.x8d{left:240.804150px;}
.xb1{left:242.035350px;}
.x5b{left:244.159650px;}
.x1b6{left:245.557650px;}
.xca{left:246.919050px;}
.x5c{left:247.983000px;}
.xac{left:250.064700px;}
.x175{left:251.128650px;}
.x1a7{left:253.334250px;}
.xc6{left:254.476500px;}
.x19{left:255.776400px;}
.x195{left:257.392350px;}
.x1e{left:258.673950px;}
.x64{left:259.906350px;}
.x44{left:261.537150px;}
.x1a{left:262.973400px;}
.x1f{left:264.971250px;}
.x65{left:266.373750px;}
.xa0{left:267.602850px;}
.x176{left:268.810950px;}
.xe{left:271.055100px;}
.x79{left:272.726400px;}
.x1ad{left:274.510800px;}
.x20{left:276.122700px;}
.xf{left:278.252100px;}
.x87{left:279.738150px;}
.x1a1{left:281.232150px;}
.x21{left:282.420150px;}
.x1ab{left:284.191500px;}
.xad{left:285.438150px;}
.x31{left:286.616700px;}
.x66{left:288.539400px;}
.x180{left:289.658100px;}
.xae{left:290.795850px;}
.x32{left:292.014450px;}
.x165{left:293.710500px;}
.x67{left:295.006800px;}
.xc3{left:297.819450px;}
.xbe{left:299.279250px;}
.x5d{left:300.814350px;}
.x71{left:302.983050px;}
.x5e{left:304.637700px;}
.xa9{left:306.667350px;}
.x72{left:308.554050px;}
.x1ba{left:309.581700px;}
.x166{left:311.439000px;}
.x81{left:312.986700px;}
.xc7{left:314.422950px;}
.xa2{left:316.445250px;}
.x82{left:317.760900px;}
.x7a{left:318.877350px;}
.x1a2{left:320.407350px;}
.xa3{left:321.895500px;}
.x7b{left:323.185200px;}
.x8e{left:324.233100px;}
.xc8{left:325.452000px;}
.xb2{left:327.302850px;}
.x45{left:328.811850px;}
.x1b2{left:329.862150px;}
.xc9{left:331.450500px;}
.x46{left:332.635200px;}
.xb3{left:335.007000px;}
.x7{left:337.340400px;}
.xa1{left:339.306150px;}
.x18b{left:341.427600px;}
.xaf{left:343.062600px;}
.x94{left:344.122350px;}
.xb9{left:345.363300px;}
.x47{left:346.532250px;}
.x18c{left:347.691750px;}
.x68{left:349.183500px;}
.x48{left:350.355750px;}
.x1a8{left:352.371600px;}
.x196{left:353.752650px;}
.x69{left:355.651050px;}
.x88{left:357.571950px;}
.x9b{left:358.816200px;}
.x167{left:359.826450px;}
.x73{left:361.587450px;}
.x1b3{left:362.957700px;}
.x95{left:364.068600px;}
.x1bc{left:365.260500px;}
.x74{left:367.158450px;}
.x1bb{left:368.478600px;}
.x33{left:369.661800px;}
.xaa{left:371.841450px;}
.x7c{left:373.192500px;}
.x22{left:374.456400px;}
.x1a0{left:375.492450px;}
.x6a{left:376.940400px;}
.x89{left:379.353450px;}
.x23{left:380.753700px;}
.xb4{left:381.874800px;}
.x168{left:384.010523px;}
.xbf{left:385.416150px;}
.x1ac{left:387.203100px;}
.x6{left:388.448550px;}
.x8a{left:390.382350px;}
.x7d{left:392.174250px;}
.xb0{left:395.347350px;}
.x7e{left:396.482250px;}
.x8b{left:397.489950px;}
.x6b{left:398.689200px;}
.x24{left:400.336800px;}
.x49{left:402.920400px;}
.x19e{left:403.926300px;}
.x6c{left:405.156600px;}
.x25{left:406.634100px;}
.xba{left:408.487800px;}
.x1a6{left:409.526250px;}
.x184{left:410.907300px;}
.x83{left:412.044150px;}
.x8f{left:413.302950px;}
.xbb{left:415.566000px;}
.x10{left:416.788800px;}
.x90{left:420.233700px;}
.x1b7{left:422.177400px;}
.x11{left:423.985800px;}
.x18d{left:426.191850px;}
.x185{left:428.456700px;}
.x18e{left:429.905400px;}
.x186{left:432.832350px;}
.x169{left:437.241600px;}
.x16a{left:440.574750px;}
.x181{left:441.810750px;}
.x177{left:442.840350px;}
.x8{left:444.191100px;}
.x178{left:446.663850px;}
.x17d{left:447.666750px;}
.x4a{left:450.848400px;}
.x9{left:452.499900px;}
.x4b{left:454.671900px;}
.x179{left:456.749700px;}
.x12{left:458.823150px;}
.x14e{left:460.801650px;}
.x14f{left:463.043250px;}
.xe5{left:464.782800px;}
.x132{left:466.531200px;}
.x15e{left:467.849400px;}
.x26{left:469.086600px;}
.xe6{left:470.382450px;}
.x4c{left:472.392300px;}
.x10c{left:474.376950px;}
.x27{left:475.384050px;}
.x13{left:478.620900px;}
.x16b{left:481.096200px;}
.x115{left:482.683050px;}
.x148{left:483.778200px;}
.x14{left:485.818050px;}
.x1c0{left:487.739700px;}
.x141{left:488.858250px;}
.x13a{left:491.449050px;}
.x28{left:493.962750px;}
.x142{left:494.995800px;}
.x13c{left:496.692450px;}
.x139{left:497.748750px;}
.xcc{left:498.903150px;}
.x29{left:500.260200px;}
.x116{left:501.472650px;}
.x18f{left:502.556100px;}
.x12b{left:504.231750px;}
.xfc{left:505.881900px;}
.x150{left:507.576300px;}
.x151{left:508.680150px;}
.x4d{left:510.551850px;}
.x104{left:511.561950px;}
.x15f{left:512.666700px;}
.x4e{left:514.375200px;}
.xf5{left:516.008850px;}
.x34{left:518.016900px;}
.xf6{left:519.969750px;}
.x152{left:521.457750px;}
.x35{left:523.414650px;}
.x12c{left:524.496750px;}
.xfd{left:526.362300px;}
.x160{left:527.488500px;}
.x10d{left:529.109550px;}
.xcd{left:531.411750px;}
.x133{left:532.570200px;}
.x1be{left:534.135450px;}
.xce{left:536.520450px;}
.x121{left:539.005500px;}
.x17a{left:540.505350px;}
.xd9{left:541.784100px;}
.x15{left:543.944100px;}
.xda{left:544.971150px;}
.xcf{left:548.260050px;}
.x16{left:551.141100px;}
.x4f{left:552.534900px;}
.xe7{left:554.467200px;}
.x50{left:556.358250px;}
.x117{left:558.378000px;}
.x10e{left:561.012900px;}
.x118{left:562.249800px;}
.x161{left:564.424200px;}
.xe8{left:565.496250px;}
.x10f{left:566.814300px;}
.x36{left:568.891200px;}
.x16c{left:570.033300px;}
.xe9{left:571.095750px;}
.x1c2{left:572.444700px;}
.x37{left:574.288950px;}
.x157{left:576.206250px;}
.x17e{left:578.106000px;}
.x12d{left:580.283400px;}
.x51{left:582.056273px;}
.x2a{left:583.760250px;}
.x12e{left:585.726600px;}
.xdb{left:586.746900px;}
.x2b{left:590.057550px;}
.x153{left:591.937350px;}
.x1b8{left:592.941150px;}
.x119{left:594.220500px;}
.xd0{left:596.142000px;}
.x11a{left:598.092450px;}
.x17b{left:599.611650px;}
.xd1{left:601.250700px;}
.xfe{left:602.821500px;}
.xdc{left:604.607700px;}
.x134{left:605.696250px;}
.x1c3{left:606.787650px;}
.xdd{left:607.794750px;}
.x105{left:609.913200px;}
.x158{left:610.949400px;}
.xf1{left:611.966100px;}
.x122{left:613.158900px;}
.x187{left:614.362800px;}
.xd2{left:616.072650px;}
.x17c{left:617.433750px;}
.xde{left:618.823650px;}
.x1c6{left:620.033550px;}
.xd3{left:621.181200px;}
.x1c1{left:622.443750px;}
.xff{left:623.449800px;}
.x162{left:625.056150px;}
.x154{left:626.803200px;}
.x123{left:627.980850px;}
.x100{left:629.256150px;}
.x163{left:630.361800px;}
.x124{left:631.698600px;}
.x1c7{left:633.207300px;}
.xea{left:634.485600px;}
.x16d{left:635.527800px;}
.x2c{left:636.546450px;}
.x1c8{left:637.556550px;}
.xf7{left:639.358800px;}
.xd4{left:640.977300px;}
.x2d{left:642.843750px;}
.x143{left:645.593850px;}
.x13d{left:647.445300px;}
.x101{left:649.158150px;}
.x13e{left:650.773800px;}
.xf2{left:652.584750px;}
.xeb{left:654.907200px;}
.xf3{left:656.633100px;}
.x106{left:657.898800px;}
.xec{left:660.506700px;}
.x197{left:661.743300px;}
.x12f{left:662.921550px;}
.xdf{left:664.956600px;}
.x144{left:666.555300px;}
.xe0{left:668.143650px;}
.x149{left:670.238250px;}
.x110{left:671.289300px;}
.x107{left:672.720750px;}
.x2e{left:675.565950px;}
.x172{left:676.830900px;}
.x108{left:678.152550px;}
.x159{left:679.615200px;}
.x2f{left:681.863400px;}
.x11b{left:683.496600px;}
.x125{left:684.966450px;}
.xe1{left:686.933100px;}
.x1c4{left:688.978050px;}
.xe2{left:690.120150px;}
.x155{left:692.659350px;}
.x109{left:694.613400px;}
.x135{left:695.945100px;}
.x164{left:697.174350px;}
.xd5{left:698.193750px;}
.x126{left:699.788250px;}
.x11c{left:702.269400px;}
.xd6{left:703.302450px;}
.x14a{left:704.337600px;}
.x13f{left:706.153650px;}
.x130{left:707.898450px;}
.xed{left:709.760700px;}
.x16e{left:711.121650px;}
.x188{left:712.474200px;}
.xf4{left:713.714700px;}
.xee{left:715.360200px;}
.x15a{left:716.860050px;}
.xd7{left:718.124400px;}
.x111{left:720.251550px;}
.x15b{left:721.340850px;}
.xd8{left:723.232950px;}
.x102{left:724.245450px;}
.x1c5{left:727.366650px;}
.x15c{left:728.402100px;}
.x131{left:729.961800px;}
.x11d{left:733.581000px;}
.x136{left:735.689400px;}
.x198{left:737.274150px;}
.xf8{left:738.377700px;}
.x137{left:740.060100px;}
.x189{left:741.212700px;}
.xf9{left:742.338750px;}
.x145{left:744.779850px;}
.x140{left:745.963950px;}
.x112{left:747.097800px;}
.xfa{left:748.969500px;}
.x127{left:750.586800px;}
.xfb{left:752.930550px;}
.x128{left:754.304700px;}
.x190{left:755.857800px;}
.x10a{left:757.075200px;}
.x18a{left:758.630700px;}
.x11e{left:760.114350px;}
.x15d{left:761.331150px;}
.x10b{left:762.507000px;}
.x113{left:763.928100px;}
.x16f{left:765.081600px;}
.x170{left:768.414600px;}
.x114{left:769.729500px;}
.x1bf{left:770.992800px;}
.xe3{left:772.326750px;}
.xe4{left:775.513800px;}
.x138{left:777.706650px;}
.x14b{left:780.388050px;}
.x103{left:782.170650px;}
.x129{left:783.873450px;}
.x14c{left:785.380950px;}
.x12a{left:787.591350px;}
.x13b{left:789.796500px;}
.x156{left:791.465550px;}
.x14d{left:792.603750px;}
.x11f{left:793.873950px;}
.x146{left:795.250650px;}
.x120{left:797.745900px;}
.x191{left:799.160400px;}
.xef{left:800.189400px;}
.x147{left:801.390150px;}
.x192{left:802.873800px;}
.x199{left:804.690300px;}
.xf0{left:805.789050px;}
.x173{left:809.837550px;}
@media print{
.v3{vertical-align:-15.430400pt;}
.v6{vertical-align:-7.173333pt;}
.v4{vertical-align:-1.124577pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.394667pt;}
.v2{vertical-align:17.358933pt;}
.v1{vertical-align:23.145067pt;}
.lsa{letter-spacing:-9.032747pt;}
.lse{letter-spacing:-8.288904pt;}
.lsb{letter-spacing:-7.651296pt;}
.lsc{letter-spacing:-6.843659pt;}
.ls4{letter-spacing:-2.247578pt;}
.lsd{letter-spacing:-1.742795pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000700pt;}
.ls8{letter-spacing:0.001101pt;}
.ls0{letter-spacing:2.656734pt;}
.ls2{letter-spacing:18.596642pt;}
.ls5{letter-spacing:21.253444pt;}
.ls1{letter-spacing:21.387401pt;}
.ls6{letter-spacing:27.262246pt;}
.ls9{letter-spacing:39.206601pt;}
.ws3{word-spacing:-17.853099pt;}
.ws6{word-spacing:-13.389824pt;}
.ws5{word-spacing:-12.645845pt;}
.ws0{word-spacing:-11.902016pt;}
.ws7{word-spacing:-11.142246pt;}
.ws12{word-spacing:-10.159221pt;}
.ws2{word-spacing:-0.106268pt;}
.ws4{word-spacing:-0.063761pt;}
.ws11{word-spacing:-0.058447pt;}
.ws9{word-spacing:-0.045164pt;}
.ws1{word-spacing:-0.042507pt;}
.ws8{word-spacing:0.000000pt;}
.ws10{word-spacing:12.327006pt;}
.wsc{word-spacing:357.764514pt;}
.wsb{word-spacing:364.214998pt;}
.wse{word-spacing:383.625267pt;}
.wsf{word-spacing:514.726552pt;}
.wsd{word-spacing:526.722040pt;}
.wsa{word-spacing:1059.952174pt;}
._1{margin-left:-10.635301pt;}
._4{margin-left:-5.606736pt;}
._2{margin-left:-3.192291pt;}
._0{margin-left:-1.997838pt;}
._6{width:1.742795pt;}
._3{width:2.656707pt;}
._5{width:7.077367pt;}
.fs1{font-size:0.001067pt;}
.fs9{font-size:31.614400pt;}
.fs8{font-size:31.880533pt;}
.fs0{font-size:42.507200pt;}
.fs6{font-size:45.163733pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:58.447467pt;}
.fs3{font-size:63.761067pt;}
.fs5{font-size:74.387733pt;}
.fs4{font-size:85.014400pt;}
.fs2{font-size:106.268267pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:81.825433pt;}
.y4b{bottom:95.108933pt;}
.y4a{bottom:108.392400pt;}
.y41{bottom:145.699433pt;}
.y42{bottom:145.699467pt;}
.y40{bottom:158.982933pt;}
.y49{bottom:161.840800pt;}
.y48{bottom:161.841021pt;}
.y3f{bottom:162.840667pt;}
.y47{bottom:176.452667pt;}
.y46{bottom:176.452888pt;}
.y45{bottom:191.064533pt;}
.y44{bottom:191.064755pt;}
.ybb{bottom:204.798133pt;}
.ybc{bottom:204.798267pt;}
.yba{bottom:204.798488pt;}
.y3e{bottom:205.676400pt;}
.y3d{bottom:205.676621pt;}
.yb9{bottom:219.410133pt;}
.yb8{bottom:219.410488pt;}
.y3c{bottom:220.288267pt;}
.y43{bottom:220.288355pt;}
.y3b{bottom:220.288488pt;}
.yb7{bottom:234.022133pt;}
.yb6{bottom:234.022355pt;}
.y39{bottom:234.900000pt;}
.y3a{bottom:234.900133pt;}
.y38{bottom:234.900221pt;}
.yb4{bottom:248.634000pt;}
.yb5{bottom:248.634133pt;}
.yb3{bottom:248.634488pt;}
.y37{bottom:249.511867pt;}
.y35{bottom:249.512000pt;}
.y36{bottom:249.512133pt;}
.y34{bottom:249.512355pt;}
.ybd{bottom:253.318000pt;}
.yb2{bottom:263.246133pt;}
.yb1{bottom:263.246355pt;}
.y33{bottom:264.124000pt;}
.y32{bottom:264.124221pt;}
.yb0{bottom:277.858000pt;}
.yaf{bottom:277.858221pt;}
.y30{bottom:278.735867pt;}
.y31{bottom:278.736000pt;}
.y2f{bottom:278.736221pt;}
.yae{bottom:292.469867pt;}
.yad{bottom:292.470088pt;}
.y2e{bottom:293.347867pt;}
.y2d{bottom:293.348221pt;}
.yac{bottom:307.081733pt;}
.yab{bottom:307.081955pt;}
.y2c{bottom:307.959867pt;}
.y2b{bottom:307.960088pt;}
.yaa{bottom:321.693600pt;}
.ya9{bottom:321.693821pt;}
.y2a{bottom:322.571733pt;}
.y29{bottom:322.571955pt;}
.ya8{bottom:336.305467pt;}
.ya7{bottom:336.305688pt;}
.y28{bottom:337.183600pt;}
.y27{bottom:337.183821pt;}
.ya6{bottom:350.917333pt;}
.ya5{bottom:350.917555pt;}
.y26{bottom:351.795467pt;}
.y25{bottom:351.795821pt;}
.ya4{bottom:365.529200pt;}
.ya3{bottom:365.529421pt;}
.y24{bottom:366.407467pt;}
.y23{bottom:366.407688pt;}
.ya2{bottom:380.141067pt;}
.ya1{bottom:380.141288pt;}
.y22{bottom:381.019333pt;}
.y21{bottom:381.019555pt;}
.ya0{bottom:394.752933pt;}
.y9f{bottom:394.753376pt;}
.y20{bottom:395.631200pt;}
.y1f{bottom:395.631421pt;}
.y9e{bottom:409.365021pt;}
.y1e{bottom:410.243067pt;}
.y1d{bottom:410.243288pt;}
.y9d{bottom:423.976667pt;}
.y9c{bottom:423.976888pt;}
.y1c{bottom:424.854933pt;}
.y1b{bottom:424.855155pt;}
.y9b{bottom:438.588533pt;}
.y9a{bottom:438.588755pt;}
.y1a{bottom:439.466800pt;}
.y19{bottom:439.467021pt;}
.y99{bottom:453.200400pt;}
.y98{bottom:453.200976pt;}
.y18{bottom:454.078667pt;}
.y17{bottom:454.078888pt;}
.y97{bottom:467.812621pt;}
.y16{bottom:468.690533pt;}
.y15{bottom:468.690755pt;}
.y96{bottom:482.424267pt;}
.y95{bottom:482.424488pt;}
.y14{bottom:483.302400pt;}
.y94{bottom:497.036133pt;}
.y93{bottom:497.036221pt;}
.y91{bottom:511.647821pt;}
.y92{bottom:511.647867pt;}
.y90{bottom:526.259467pt;}
.y8f{bottom:526.259600pt;}
.y8d{bottom:526.259733pt;}
.y8c{bottom:526.259821pt;}
.y8e{bottom:526.259867pt;}
.y8b{bottom:540.871467pt;}
.y8a{bottom:540.871600pt;}
.y89{bottom:540.871733pt;}
.y88{bottom:540.871821pt;}
.y87{bottom:555.483467pt;}
.y85{bottom:555.483600pt;}
.y84{bottom:555.483688pt;}
.y86{bottom:555.483733pt;}
.y83{bottom:570.095333pt;}
.y81{bottom:570.095467pt;}
.y82{bottom:570.095600pt;}
.y80{bottom:570.095821pt;}
.y7f{bottom:584.707467pt;}
.y7e{bottom:584.707600pt;}
.y7d{bottom:584.707688pt;}
.y7c{bottom:599.319333pt;}
.y7a{bottom:599.319467pt;}
.y7b{bottom:599.319600pt;}
.y79{bottom:599.319688pt;}
.y13{bottom:599.968800pt;}
.y12{bottom:599.969379pt;}
.y78{bottom:613.931333pt;}
.y76{bottom:613.931467pt;}
.y77{bottom:613.931600pt;}
.y75{bottom:613.931688pt;}
.y74{bottom:628.543333pt;}
.y73{bottom:628.543467pt;}
.y72{bottom:628.543555pt;}
.y11{bottom:632.114667pt;}
.y10{bottom:632.114800pt;}
.yf{bottom:632.114933pt;}
.y71{bottom:643.155200pt;}
.y6f{bottom:643.155333pt;}
.y70{bottom:643.155467pt;}
.y6e{bottom:643.155555pt;}
.y6d{bottom:657.767200pt;}
.y6c{bottom:657.767333pt;}
.y6b{bottom:657.767467pt;}
.ye{bottom:675.286267pt;}
.yd{bottom:675.287018pt;}
.yc{bottom:693.882933pt;}
.yb{bottom:693.883067pt;}
.ya{bottom:693.883200pt;}
.y9{bottom:693.883333pt;}
.y8{bottom:733.611600pt;}
.y6a{bottom:733.905733pt;}
.y69{bottom:737.763200pt;}
.y68{bottom:747.189333pt;}
.y67{bottom:751.046800pt;}
.y66{bottom:760.472767pt;}
.y7{bottom:767.883067pt;}
.y6{bottom:767.883133pt;}
.y65{bottom:773.756267pt;}
.y64{bottom:773.756367pt;}
.y62{bottom:787.039833pt;}
.y63{bottom:787.039867pt;}
.y5{bottom:794.450133pt;}
.y61{bottom:800.323333pt;}
.y60{bottom:800.323433pt;}
.y5f{bottom:813.606933pt;}
.y4{bottom:831.644000pt;}
.y5d{bottom:833.513200pt;}
.y5e{bottom:833.513333pt;}
.y5c{bottom:833.513470pt;}
.ycd{bottom:836.610767pt;}
.yce{bottom:836.610800pt;}
.ye2{bottom:842.004767pt;}
.ye3{bottom:842.004933pt;}
.y5b{bottom:848.125067pt;}
.y5a{bottom:848.125200pt;}
.y59{bottom:848.125470pt;}
.ycb{bottom:849.894233pt;}
.ycc{bottom:849.894267pt;}
.yde{bottom:855.288233pt;}
.ye1{bottom:855.288267pt;}
.ydf{bottom:855.288400pt;}
.ye0{bottom:855.288533pt;}
.y58{bottom:862.737067pt;}
.y57{bottom:862.737200pt;}
.y56{bottom:862.737333pt;}
.yca{bottom:863.177733pt;}
.yc9{bottom:863.177833pt;}
.ydd{bottom:868.571733pt;}
.ydc{bottom:868.571867pt;}
.ydb{bottom:868.572100pt;}
.yc7{bottom:876.461300pt;}
.yc8{bottom:876.461333pt;}
.y55{bottom:877.349067pt;}
.y54{bottom:877.349200pt;}
.yda{bottom:881.855600pt;}
.y2{bottom:885.594267pt;}
.yc6{bottom:889.744800pt;}
.yd8{bottom:895.139033pt;}
.yd9{bottom:895.139067pt;}
.y53{bottom:897.672933pt;}
.yc5{bottom:903.028367pt;}
.yd7{bottom:908.422533pt;}
.yc3{bottom:916.311833pt;}
.yc4{bottom:916.311867pt;}
.y52{bottom:921.583333pt;}
.yd5{bottom:921.706100pt;}
.yd6{bottom:921.706133pt;}
.yc2{bottom:929.595333pt;}
.yc1{bottom:929.595433pt;}
.yd4{bottom:934.989600pt;}
.yc0{bottom:942.878933pt;}
.y51{bottom:945.493733pt;}
.y50{bottom:945.775333pt;}
.yd2{bottom:948.273167pt;}
.yd3{bottom:948.273200pt;}
.y3{bottom:951.480667pt;}
.yd1{bottom:961.556667pt;}
.yd0{bottom:961.556767pt;}
.y4f{bottom:968.065600pt;}
.y4e{bottom:968.065733pt;}
.ybf{bottom:973.032400pt;}
.ycf{bottom:974.840267pt;}
.y4d{bottom:1003.078533pt;}
.ybe{bottom:1004.256800pt;}
.y1{bottom:1007.916400pt;}
.h3{height:0.000000pt;}
.h12{height:24.356339pt;}
.h19{height:28.394810pt;}
.h1a{height:29.840179pt;}
.h17{height:30.169374pt;}
.h4{height:30.647691pt;}
.h1c{height:31.944294pt;}
.h13{height:32.347979pt;}
.ha{height:34.369601pt;}
.hb{height:34.776075pt;}
.h11{height:36.391629pt;}
.h2{height:39.786739pt;}
.h15{height:39.786873pt;}
.h14{height:40.169304pt;}
.h16{height:41.415143pt;}
.hc{height:42.273254pt;}
.hd{height:44.760269pt;}
.h10{height:45.190656pt;}
.h18{height:45.985745pt;}
.hf{height:47.198228pt;}
.h1b{height:47.198579pt;}
.he{height:47.199113pt;}
.h1d{height:53.596327pt;}
.h9{height:58.468898pt;}
.h6{height:59.680358pt;}
.h8{height:68.213551pt;}
.h5{height:73.006299pt;}
.h7{height:77.958205pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.266667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b9{left:59.680000pt;}
.x1{left:60.621867pt;}
.x9c{left:66.515733pt;}
.xcb{left:67.760400pt;}
.x38{left:69.133733pt;}
.x9d{left:71.861200pt;}
.x39{left:73.931733pt;}
.xb5{left:77.323600pt;}
.x5f{left:79.320267pt;}
.x96{left:80.437333pt;}
.x2{left:82.692533pt;}
.xb6{left:83.615333pt;}
.x1b4{left:84.902000pt;}
.x3{left:85.891200pt;}
.xa4{left:87.282667pt;}
.x19a{left:88.197200pt;}
.x1b0{left:89.457067pt;}
.x171{left:90.652667pt;}
.xa5{left:92.020933pt;}
.x91{left:93.236533pt;}
.x183{left:94.620533pt;}
.x182{left:96.883600pt;}
.x92{left:98.514267pt;}
.x7f{left:99.584933pt;}
.x19c{left:100.516000pt;}
.xa6{left:101.824400pt;}
.x19d{left:102.912667pt;}
.x80{left:103.828667pt;}
.xa{left:105.301467pt;}
.xa7{left:106.562667pt;}
.x3c{left:107.933067pt;}
.x1a9{left:108.844533pt;}
.xb{left:110.099467pt;}
.x75{left:111.289467pt;}
.x52{left:112.845067pt;}
.x6d{left:114.232933pt;}
.x93{left:115.149733pt;}
.x53{left:116.243600pt;}
.x174{left:117.440400pt;}
.x1a3{left:118.930267pt;}
.x3d{left:120.286000pt;}
.x1bd{left:121.307600pt;}
.x8c{left:122.338400pt;}
.x3e{left:123.684533pt;}
.x30{left:124.843867pt;}
.x1ae{left:126.103067pt;}
.x1b{left:127.442400pt;}
.x54{left:128.562667pt;}
.x4{left:129.522267pt;}
.x97{left:130.859067pt;}
.x5{left:132.720933pt;}
.x60{left:134.001600pt;}
.x84{left:135.252267pt;}
.xc4{left:136.630667pt;}
.x193{left:138.124000pt;}
.x61{left:139.750533pt;}
.x76{left:141.795067pt;}
.x1af{left:142.871067pt;}
.x98{left:144.034133pt;}
.x77{left:145.624267pt;}
.x17f{left:147.013200pt;}
.xc{left:148.272000pt;}
.x99{left:150.674667pt;}
.x9e{left:152.658133pt;}
.xab{left:153.594800pt;}
.xd{left:154.669333pt;}
.x194{left:156.097200pt;}
.x85{left:157.453867pt;}
.xbc{left:158.996400pt;}
.x3a{left:160.071200pt;}
.xc1{left:161.856133pt;}
.x86{left:163.771600pt;}
.x3b{left:164.869200pt;}
.x62{left:166.541200pt;}
.x1aa{left:167.568400pt;}
.x3f{left:168.692267pt;}
.xa8{left:170.492933pt;}
.xbd{left:172.075733pt;}
.x55{left:173.073467pt;}
.x6e{left:174.467467pt;}
.x1a4{left:175.499333pt;}
.x56{left:176.472133pt;}
.x1b1{left:177.369467pt;}
.xc0{left:178.539733pt;}
.x1b5{left:179.494667pt;}
.x40{left:181.045067pt;}
.xb7{left:182.796133pt;}
.x41{left:184.443733pt;}
.x57{left:185.956933pt;}
.x63{left:187.079200pt;}
.x78{left:188.389333pt;}
.x58{left:189.355467pt;}
.x9a{left:190.372267pt;}
.x6f{left:192.594533pt;}
.x42{left:193.985067pt;}
.xb8{left:194.982000pt;}
.x17{left:196.390267pt;}
.x43{left:197.383600pt;}
.x9f{left:198.496933pt;}
.xc2{left:199.516133pt;}
.x59{left:201.188933pt;}
.x18{left:202.787600pt;}
.x5a{left:204.587600pt;}
.x1a5{left:205.495333pt;}
.x1c{left:206.406800pt;}
.x70{left:207.350133pt;}
.xc5{left:208.734267pt;}
.x19f{left:209.654800pt;}
.x19b{left:210.620267pt;}
.x1d{left:212.004533pt;}
.x8d{left:214.048133pt;}
.xb1{left:215.142533pt;}
.x5b{left:217.030800pt;}
.x1b6{left:218.273467pt;}
.xca{left:219.483600pt;}
.x5c{left:220.429333pt;}
.xac{left:222.279733pt;}
.x175{left:223.225467pt;}
.x1a7{left:225.186000pt;}
.xc6{left:226.201333pt;}
.x19{left:227.356800pt;}
.x195{left:228.793200pt;}
.x1e{left:229.932400pt;}
.x64{left:231.027867pt;}
.x44{left:232.477467pt;}
.x1a{left:233.754133pt;}
.x1f{left:235.530000pt;}
.x65{left:236.776667pt;}
.xa0{left:237.869200pt;}
.x176{left:238.943067pt;}
.xe{left:240.937867pt;}
.x79{left:242.423467pt;}
.x1ad{left:244.009600pt;}
.x20{left:245.442400pt;}
.xf{left:247.335200pt;}
.x87{left:248.656133pt;}
.x1a1{left:249.984133pt;}
.x21{left:251.040133pt;}
.x1ab{left:252.614667pt;}
.xad{left:253.722800pt;}
.x31{left:254.770400pt;}
.x66{left:256.479467pt;}
.x180{left:257.473867pt;}
.xae{left:258.485200pt;}
.x32{left:259.568400pt;}
.x165{left:261.076000pt;}
.x67{left:262.228267pt;}
.xc3{left:264.728400pt;}
.xbe{left:266.026000pt;}
.x5d{left:267.390533pt;}
.x71{left:269.318267pt;}
.x5e{left:270.789067pt;}
.xa9{left:272.593200pt;}
.x72{left:274.270267pt;}
.x1ba{left:275.183733pt;}
.x166{left:276.834667pt;}
.x81{left:278.210400pt;}
.xc7{left:279.487067pt;}
.xa2{left:281.284667pt;}
.x82{left:282.454133pt;}
.x7a{left:283.446533pt;}
.x1a2{left:284.806533pt;}
.xa3{left:286.129333pt;}
.x7b{left:287.275733pt;}
.x8e{left:288.207200pt;}
.xc8{left:289.290667pt;}
.xb2{left:290.935867pt;}
.x45{left:292.277200pt;}
.x1b2{left:293.210800pt;}
.xc9{left:294.622667pt;}
.x46{left:295.675733pt;}
.xb3{left:297.784000pt;}
.x7{left:299.858133pt;}
.xa1{left:301.605467pt;}
.x18b{left:303.491200pt;}
.xaf{left:304.944533pt;}
.x94{left:305.886533pt;}
.xb9{left:306.989600pt;}
.x47{left:308.028667pt;}
.x18c{left:309.059333pt;}
.x68{left:310.385333pt;}
.x48{left:311.427333pt;}
.x1a8{left:313.219200pt;}
.x196{left:314.446800pt;}
.x69{left:316.134267pt;}
.x88{left:317.841733pt;}
.x9b{left:318.947733pt;}
.x167{left:319.845733pt;}
.x73{left:321.411067pt;}
.x1b3{left:322.629067pt;}
.x95{left:323.616533pt;}
.x1bc{left:324.676000pt;}
.x74{left:326.363067pt;}
.x1bb{left:327.536533pt;}
.x33{left:328.588267pt;}
.xaa{left:330.525733pt;}
.x7c{left:331.726667pt;}
.x22{left:332.850133pt;}
.x1a0{left:333.771067pt;}
.x6a{left:335.058133pt;}
.x89{left:337.203067pt;}
.x23{left:338.447733pt;}
.xb4{left:339.444267pt;}
.x168{left:341.342687pt;}
.xbf{left:342.592133pt;}
.x1ac{left:344.180533pt;}
.x6{left:345.287600pt;}
.x8a{left:347.006533pt;}
.x7d{left:348.599333pt;}
.xb0{left:351.419867pt;}
.x7e{left:352.428667pt;}
.x8b{left:353.324400pt;}
.x6b{left:354.390400pt;}
.x24{left:355.854933pt;}
.x49{left:358.151467pt;}
.x19e{left:359.045600pt;}
.x6c{left:360.139200pt;}
.x25{left:361.452533pt;}
.xba{left:363.100267pt;}
.x1a6{left:364.023333pt;}
.x184{left:365.250933pt;}
.x83{left:366.261467pt;}
.x8f{left:367.380400pt;}
.xbb{left:369.392000pt;}
.x10{left:370.478933pt;}
.x90{left:373.541067pt;}
.x1b7{left:375.268800pt;}
.x11{left:376.876267pt;}
.x18d{left:378.837200pt;}
.x185{left:380.850400pt;}
.x18e{left:382.138133pt;}
.x186{left:384.739867pt;}
.x169{left:388.659200pt;}
.x16a{left:391.622000pt;}
.x181{left:392.720667pt;}
.x177{left:393.635867pt;}
.x8{left:394.836533pt;}
.x178{left:397.034533pt;}
.x17d{left:397.926000pt;}
.x4a{left:400.754133pt;}
.x9{left:402.222133pt;}
.x4b{left:404.152800pt;}
.x179{left:405.999733pt;}
.x12{left:407.842800pt;}
.x14e{left:409.601467pt;}
.x14f{left:411.594000pt;}
.xe5{left:413.140267pt;}
.x132{left:414.694400pt;}
.x15e{left:415.866133pt;}
.x26{left:416.965867pt;}
.xe6{left:418.117733pt;}
.x4c{left:419.904267pt;}
.x10c{left:421.668400pt;}
.x27{left:422.563600pt;}
.x13{left:425.440800pt;}
.x16b{left:427.641067pt;}
.x115{left:429.051600pt;}
.x148{left:430.025067pt;}
.x14{left:431.838267pt;}
.x1c0{left:433.546400pt;}
.x141{left:434.540667pt;}
.x13a{left:436.843600pt;}
.x28{left:439.078000pt;}
.x142{left:439.996267pt;}
.x13c{left:441.504400pt;}
.x139{left:442.443333pt;}
.xcc{left:443.469467pt;}
.x29{left:444.675733pt;}
.x116{left:445.753467pt;}
.x18f{left:446.716533pt;}
.x12b{left:448.206000pt;}
.xfc{left:449.672800pt;}
.x150{left:451.178933pt;}
.x151{left:452.160133pt;}
.x4d{left:453.823867pt;}
.x104{left:454.721733pt;}
.x15f{left:455.703733pt;}
.x4e{left:457.222400pt;}
.xf5{left:458.674533pt;}
.x34{left:460.459467pt;}
.xf6{left:462.195333pt;}
.x152{left:463.518000pt;}
.x35{left:465.257467pt;}
.x12c{left:466.219333pt;}
.xfd{left:467.877600pt;}
.x160{left:468.878667pt;}
.x10d{left:470.319600pt;}
.xcd{left:472.366000pt;}
.x133{left:473.395733pt;}
.x1be{left:474.787067pt;}
.xce{left:476.907067pt;}
.x121{left:479.116000pt;}
.x17a{left:480.449200pt;}
.xd9{left:481.585867pt;}
.x15{left:483.505867pt;}
.xda{left:484.418800pt;}
.xcf{left:487.342267pt;}
.x16{left:489.903200pt;}
.x4f{left:491.142133pt;}
.xe7{left:492.859733pt;}
.x50{left:494.540667pt;}
.x117{left:496.336000pt;}
.x10e{left:498.678133pt;}
.x118{left:499.777600pt;}
.x161{left:501.710400pt;}
.xe8{left:502.663333pt;}
.x10f{left:503.834933pt;}
.x36{left:505.681067pt;}
.x16c{left:506.696267pt;}
.xe9{left:507.640667pt;}
.x1c2{left:508.839733pt;}
.x37{left:510.479067pt;}
.x157{left:512.183333pt;}
.x17e{left:513.872000pt;}
.x12d{left:515.807467pt;}
.x51{left:517.383354pt;}
.x2a{left:518.898000pt;}
.x12e{left:520.645867pt;}
.xdb{left:521.552800pt;}
.x2b{left:524.495600pt;}
.x153{left:526.166533pt;}
.x1b8{left:527.058800pt;}
.x119{left:528.196000pt;}
.xd0{left:529.904000pt;}
.x11a{left:531.637733pt;}
.x17b{left:532.988133pt;}
.xd1{left:534.445067pt;}
.xfe{left:535.841333pt;}
.xdc{left:537.429067pt;}
.x134{left:538.396667pt;}
.x1c3{left:539.366800pt;}
.xdd{left:540.262000pt;}
.x105{left:542.145067pt;}
.x158{left:543.066133pt;}
.xf1{left:543.969867pt;}
.x122{left:545.030133pt;}
.x187{left:546.100267pt;}
.xd2{left:547.620133pt;}
.x17c{left:548.830000pt;}
.xde{left:550.065467pt;}
.x1c6{left:551.140933pt;}
.xd3{left:552.161067pt;}
.x1c1{left:553.283333pt;}
.xff{left:554.177600pt;}
.x162{left:555.605467pt;}
.x154{left:557.158400pt;}
.x123{left:558.205200pt;}
.x100{left:559.338800pt;}
.x163{left:560.321600pt;}
.x124{left:561.509867pt;}
.x1c7{left:562.850933pt;}
.xea{left:563.987200pt;}
.x16d{left:564.913600pt;}
.x2c{left:565.819067pt;}
.x1c8{left:566.716933pt;}
.xf7{left:568.318933pt;}
.xd4{left:569.757600pt;}
.x2d{left:571.416667pt;}
.x143{left:573.861200pt;}
.x13d{left:575.506933pt;}
.x101{left:577.029467pt;}
.x13e{left:578.465600pt;}
.xf2{left:580.075333pt;}
.xeb{left:582.139733pt;}
.xf3{left:583.673867pt;}
.x106{left:584.798933pt;}
.xec{left:587.117067pt;}
.x197{left:588.216267pt;}
.x12f{left:589.263600pt;}
.xdf{left:591.072533pt;}
.x144{left:592.493600pt;}
.xe0{left:593.905467pt;}
.x149{left:595.767333pt;}
.x110{left:596.701600pt;}
.x107{left:597.974000pt;}
.x2e{left:600.503067pt;}
.x172{left:601.627467pt;}
.x108{left:602.802267pt;}
.x159{left:604.102400pt;}
.x2f{left:606.100800pt;}
.x11b{left:607.552533pt;}
.x125{left:608.859067pt;}
.xe1{left:610.607200pt;}
.x1c4{left:612.424933pt;}
.xe2{left:613.440133pt;}
.x155{left:615.697200pt;}
.x109{left:617.434133pt;}
.x135{left:618.617867pt;}
.x164{left:619.710533pt;}
.xd5{left:620.616667pt;}
.x126{left:622.034000pt;}
.x11c{left:624.239467pt;}
.xd6{left:625.157733pt;}
.x14a{left:626.077867pt;}
.x13f{left:627.692133pt;}
.x130{left:629.243067pt;}
.xed{left:630.898400pt;}
.x16e{left:632.108133pt;}
.x188{left:633.310400pt;}
.xf4{left:634.413067pt;}
.xee{left:635.875733pt;}
.x15a{left:637.208933pt;}
.xd7{left:638.332800pt;}
.x111{left:640.223600pt;}
.x15b{left:641.191867pt;}
.xd8{left:642.873733pt;}
.x102{left:643.773733pt;}
.x1c5{left:646.548133pt;}
.x15c{left:647.468533pt;}
.x131{left:648.854933pt;}
.x11d{left:652.072000pt;}
.x136{left:653.946133pt;}
.x198{left:655.354800pt;}
.xf8{left:656.335733pt;}
.x137{left:657.831200pt;}
.x189{left:658.855733pt;}
.xf9{left:659.856667pt;}
.x145{left:662.026533pt;}
.x140{left:663.079067pt;}
.x112{left:664.086933pt;}
.xfa{left:665.750667pt;}
.x127{left:667.188267pt;}
.xfb{left:669.271600pt;}
.x128{left:670.493067pt;}
.x190{left:671.873600pt;}
.x10a{left:672.955733pt;}
.x18a{left:674.338400pt;}
.x11e{left:675.657200pt;}
.x15d{left:676.738800pt;}
.x10b{left:677.784000pt;}
.x113{left:679.047200pt;}
.x16f{left:680.072533pt;}
.x170{left:683.035200pt;}
.x114{left:684.204000pt;}
.x1bf{left:685.326933pt;}
.xe3{left:686.512667pt;}
.xe4{left:689.345600pt;}
.x138{left:691.294800pt;}
.x14b{left:693.678267pt;}
.x103{left:695.262800pt;}
.x129{left:696.776400pt;}
.x14c{left:698.116400pt;}
.x12a{left:700.081200pt;}
.x13b{left:702.041333pt;}
.x156{left:703.524933pt;}
.x14d{left:704.536667pt;}
.x11f{left:705.665733pt;}
.x146{left:706.889467pt;}
.x120{left:709.107467pt;}
.x191{left:710.364800pt;}
.xef{left:711.279467pt;}
.x147{left:712.346800pt;}
.x192{left:713.665600pt;}
.x199{left:715.280267pt;}
.xf0{left:716.256933pt;}
.x173{left:719.855600pt;}
}




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