
    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_a37f32b4073d76065730a160.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.024902;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_f5c1217c3fd4912c5d9b07c9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_b39db7de8b8d3d0bd0c9dd33.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940000;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_35d26273c1f99ccf6d891a26.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_d14d81c2a7dbf9fef752836f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_22956e277ab3f8b50560150b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.763184;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:46.546232px;}
.v2{vertical-align:158.179682px;}
.ls20{letter-spacing:-12.952126px;}
.ls1e{letter-spacing:-9.498226px;}
.ls1a{letter-spacing:-7.502369px;}
.lsa{letter-spacing:-6.247167px;}
.ls1f{letter-spacing:-1.893504px;}
.ls12{letter-spacing:-1.013280px;}
.ls7{letter-spacing:-0.069785px;}
.ls3{letter-spacing:-0.066994px;}
.ls13{letter-spacing:-0.051176px;}
.ls1b{letter-spacing:-0.050245px;}
.lsf{letter-spacing:-0.044662px;}
.lsb{letter-spacing:-0.041871px;}
.ls17{letter-spacing:-0.040941px;}
.ls6{letter-spacing:-0.033497px;}
.ls10{letter-spacing:-0.020470px;}
.ls2{letter-spacing:-0.016748px;}
.ls4{letter-spacing:-0.013957px;}
.ls11{letter-spacing:-0.010235px;}
.ls9{letter-spacing:-0.009305px;}
.lse{letter-spacing:-0.005583px;}
.ls1{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.010235px;}
.ls19{letter-spacing:0.016748px;}
.ls16{letter-spacing:0.020470px;}
.lsd{letter-spacing:0.022331px;}
.ls15{letter-spacing:0.030705px;}
.ls1d{letter-spacing:0.040941px;}
.ls0{letter-spacing:0.044662px;}
.ls14{letter-spacing:0.051176px;}
.ls18{letter-spacing:0.055828px;}
.lsc{letter-spacing:0.057689px;}
.ls5{letter-spacing:0.083742px;}
.ls8{letter-spacing:0.293098px;}
.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;}
}
.ws19{word-spacing:-69.919141px;}
.ws1a{word-spacing:-69.896810px;}
.ws4{word-spacing:-52.389111px;}
.ws0{word-spacing:-46.560655px;}
.ws6{word-spacing:-43.685506px;}
.ws3{word-spacing:-43.671549px;}
.ws7{word-spacing:-43.643635px;}
.ws10{word-spacing:-35.004233px;}
.ws11{word-spacing:-34.914908px;}
.ws14{word-spacing:-32.076979px;}
.ws18{word-spacing:-32.066743px;}
.ws16{word-spacing:-32.036038px;}
.wse{word-spacing:-32.025803px;}
.wsc{word-spacing:-31.995097px;}
.ws9{word-spacing:-31.984862px;}
.ws8{word-spacing:-31.022758px;}
.ws12{word-spacing:-30.040183px;}
.wsa{word-spacing:-30.019712px;}
.wsb{word-spacing:-30.009477px;}
.ws13{word-spacing:-29.999242px;}
.wsd{word-spacing:-29.948066px;}
.ws15{word-spacing:-29.937831px;}
.ws5{word-spacing:-29.114366px;}
.wsf{word-spacing:-24.533669px;}
.ws17{word-spacing:-22.537812px;}
.ws2{word-spacing:-8.472848px;}
.ws1{word-spacing:0.000000px;}
._10{margin-left:-32.036038px;}
._15{margin-left:-29.812218px;}
._f{margin-left:-26.468113px;}
._5{margin-left:-24.765355px;}
._c{margin-left:-22.052109px;}
._d{margin-left:-16.297160px;}
._8{margin-left:-14.250128px;}
._9{margin-left:-12.491543px;}
._e{margin-left:-10.796229px;}
._3{margin-left:-9.663848px;}
._11{margin-left:-8.658942px;}
._4{margin-left:-7.047370px;}
._1{margin-left:-5.136187px;}
._6{margin-left:-3.584166px;}
._2{margin-left:-2.166131px;}
._0{margin-left:-1.116562px;}
._7{width:1.049569px;}
._b{width:2.847234px;}
._14{width:5.015226px;}
._a{width:6.364406px;}
._12{width:7.471664px;}
._16{width:9.518695px;}
._17{width:10.607343px;}
._18{width:12.003046px;}
._19{width:13.677890px;}
._13{width:194.520348px;}
.fc4{color:rgb(0,54,100);}
.fc3{color:transparent;}
.fc1{color:rgb(117,181,5);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:55.828123px;}
.fsa{font-size:66.993748px;}
.fs7{font-size:93.046872px;}
.fs9{font-size:102.351559px;}
.fs3{font-size:111.656246px;}
.fsc{font-size:122.821871px;}
.fs2{font-size:130.265621px;}
.fs6{font-size:139.570308px;}
.fsb{font-size:147.386245px;}
.fs1{font-size:167.484370px;}
.fs4{font-size:172.136713px;}
.fs0{font-size:223.312493px;}
.fs5{font-size:288.445303px;}
.y82{bottom:-26.169382px;}
.ybd{bottom:-15.717405px;}
.y110{bottom:-10.855446px;}
.y0{bottom:0.000000px;}
.yc3{bottom:0.565797px;}
.yd{bottom:3.902346px;}
.y81{bottom:5.233937px;}
.y25{bottom:9.691936px;}
.y73{bottom:9.886131px;}
.yea{bottom:9.886236px;}
.y76{bottom:9.886281px;}
.y6c{bottom:10.467667px;}
.y93{bottom:10.467681px;}
.ye5{bottom:10.467772px;}
.y6a{bottom:10.467817px;}
.y75{bottom:10.467831px;}
.y7f{bottom:10.467848px;}
.y57{bottom:10.839845px;}
.y51{bottom:11.027045px;}
.y63{bottom:12.002945px;}
.y5e{bottom:12.356740px;}
.y61{bottom:12.863290px;}
.y68{bottom:13.254779px;}
.y10e{bottom:15.120061px;}
.y85{bottom:15.120068px;}
.y108{bottom:15.120096px;}
.ybc{bottom:15.685914px;}
.y11b{bottom:16.477065px;}
.y114{bottom:16.477215px;}
.y115{bottom:17.058615px;}
.y11d{bottom:17.640165px;}
.y11f{bottom:18.221579px;}
.y118{bottom:18.221715px;}
.y121{bottom:18.221729px;}
.yce{bottom:20.059258px;}
.yc8{bottom:20.082943px;}
.yd0{bottom:20.082958px;}
.yca{bottom:20.083048px;}
.yd2{bottom:20.338198px;}
.yc6{bottom:20.640793px;}
.ycc{bottom:20.919733px;}
.yc2{bottom:20.919793px;}
.y8{bottom:20.935473px;}
.yed{bottom:22.098752px;}
.ya4{bottom:22.671386px;}
.yae{bottom:23.024876px;}
.yb8{bottom:23.127311px;}
.ya6{bottom:23.127372px;}
.yb2{bottom:23.127386px;}
.yac{bottom:23.127447px;}
.yb0{bottom:23.252936px;}
.yb9{bottom:23.606411px;}
.ya2{bottom:23.731886px;}
.yc0{bottom:25.572045px;}
.yef{bottom:26.101164px;}
.y109{bottom:27.706845px;}
.y55{bottom:27.983392px;}
.y53{bottom:28.058392px;}
.y26{bottom:28.869930px;}
.y79{bottom:30.033015px;}
.y7e{bottom:30.240308px;}
.y3c{bottom:31.403278px;}
.yf{bottom:32.566395px;}
.y1a{bottom:34.685355px;}
.y130{bottom:37.218787px;}
.yf6{bottom:37.800269px;}
.yf5{bottom:37.800405px;}
.yf1{bottom:38.381805px;}
.yf3{bottom:38.381819px;}
.yf9{bottom:38.381955px;}
.yf8{bottom:39.544919px;}
.yc4{bottom:41.855247px;}
.y5d{bottom:43.760059px;}
.y60{bottom:44.266609px;}
.y67{bottom:44.658099px;}
.y112{bottom:45.166554px;}
.y5b{bottom:45.239635px;}
.y84{bottom:46.523387px;}
.y2f{bottom:49.288932px;}
.ye6{bottom:52.751955px;}
.yad{bottom:52.984650px;}
.y4d{bottom:53.501989px;}
.yec{bottom:53.502072px;}
.y7{bottom:54.664964px;}
.ybf{bottom:56.975364px;}
.y7d{bottom:59.317455px;}
.yc{bottom:60.893579px;}
.y10d{bottom:61.643497px;}
.y107{bottom:65.132789px;}
.y3b{bottom:73.274370px;}
.y66{bottom:76.061418px;}
.y35{bottom:78.339850px;}
.y19{bottom:81.855337px;}
.y3{bottom:82.579010px;}
.ycb{bottom:82.930020px;}
.y7c{bottom:87.231517px;}
.y104{bottom:92.839650px;}
.ye9{bottom:94.041510px;}
.ye4{bottom:94.623045px;}
.y6{bottom:96.536056px;}
.y127{bottom:98.862339px;}
.yb{bottom:99.275414px;}
.y7b{bottom:107.003977px;}
.y10c{bottom:115.145448px;}
.y4c{bottom:115.145542px;}
.yd5{bottom:116.308714px;}
.y2e{bottom:116.747914px;}
.y17{bottom:118.634687px;}
.yb7{bottom:120.788325px;}
.yab{bottom:121.369875px;}
.y4a{bottom:123.287143px;}
.y3a{bottom:124.450150px;}
.y106{bottom:125.613256px;}
.y24{bottom:130.265734px;}
.y5a{bottom:130.911255px;}
.ye8{bottom:135.912600px;}
.y7a{bottom:136.081125px;}
.ye3{bottom:136.494135px;}
.ya{bottom:141.146506px;}
.y34{bottom:144.635800px;}
.yd1{bottom:145.139310px;}
.yc9{bottom:145.720845px;}
.y5{bottom:146.548750px;}
.yf4{bottom:156.266550px;}
.y10b{bottom:159.342713px;}
.y126{bottom:159.342806px;}
.y4f{bottom:159.755805px;}
.y12f{bottom:162.832064px;}
.y2{bottom:163.995023px;}
.y39{bottom:166.321242px;}
.y23{bottom:172.136826px;}
.y49{bottom:174.462923px;}
.y105{bottom:175.625950px;}
.y4b{bottom:176.789095px;}
.ye7{bottom:177.783750px;}
.ye2{bottom:178.365300px;}
.y4e{bottom:186.506781px;}
.yb6{bottom:188.112900px;}
.yaa{bottom:188.694450px;}
.y90{bottom:189.996150px;}
.y9{bottom:191.159200px;}
.y32{bottom:201.213856px;}
.y10a{bottom:205.866149px;}
.ycf{bottom:207.093450px;}
.yc7{bottom:207.675000px;}
.y38{bottom:208.192334px;}
.y125{bottom:209.355500px;}
.y12e{bottom:214.007843px;}
.ye1{bottom:222.562500px;}
.y22{bottom:223.312606px;}
.y33{bottom:223.725550px;}
.y48{bottom:227.964874px;}
.y9a{bottom:231.285600px;}
.y8f{bottom:231.867150px;}
.y4{bottom:236.519550px;}
.y65{bottom:241.865250px;}
.y59{bottom:242.446800px;}
.y31{bottom:251.226550px;}
.yf7{bottom:252.802800px;}
.yf2{bottom:253.384350px;}
.yb5{bottom:255.437550px;}
.ya9{bottom:256.019100px;}
.y37{bottom:260.531200px;}
.y21{bottom:265.183698px;}
.y12d{bottom:266.346709px;}
.ydd{bottom:267.922800px;}
.ycd{bottom:269.047500px;}
.yc5{bottom:269.629050px;}
.y124{bottom:270.999052px;}
.y99{bottom:273.156750px;}
.y8e{bottom:273.738300px;}
.y47{bottom:277.977568px;}
.y2d{bottom:287.282255px;}
.y11a{bottom:308.630850px;}
.ye0{bottom:309.212400px;}
.y9e{bottom:309.793905px;}
.ydc{bottom:309.793950px;}
.y98{bottom:315.027900px;}
.y8d{bottom:315.609300px;}
.y20{bottom:317.522563px;}
.y64{bottom:319.861350px;}
.y58{bottom:320.442900px;}
.yb4{bottom:322.762200px;}
.ya8{bottom:323.343750px;}
.y12c{bottom:326.827176px;}
.y123{bottom:331.479519px;}
.ybe{bottom:334.467150px;}
.y9d{bottom:336.544881px;}
.y46{bottom:337.294949px;}
.y2c{bottom:338.458035px;}
.ydf{bottom:351.083550px;}
.ydb{bottom:351.665100px;}
.yf0{bottom:352.246650px;}
.y71{bottom:354.223800px;}
.y97{bottom:356.898900px;}
.y8c{bottom:357.480450px;}
.y102{bottom:359.806650px;}
.y120{bottom:364.071300px;}
.y119{bottom:364.652850px;}
.y15{bottom:367.948122px;}
.y36{bottom:371.980350px;}
.ybb{bottom:375.756600px;}
.yc1{bottom:376.338150px;}
.y12b{bottom:379.166041px;}
.y1f{bottom:379.166116px;}
.y30{bottom:381.285000px;}
.y45{bottom:388.470728px;}
.y2b{bottom:389.633814px;}
.yb3{bottom:390.086850px;}
.ya7{bottom:390.668400px;}
.yde{bottom:392.954550px;}
.y122{bottom:393.123072px;}
.yda{bottom:393.536100px;}
.y78{bottom:395.513250px;}
.y70{bottom:396.094800px;}
.y62{bottom:397.857450px;}
.y56{bottom:398.439000px;}
.y96{bottom:398.770050px;}
.y8b{bottom:399.351600px;}
.y103{bottom:401.096250px;}
.y101{bottom:401.677800px;}
.y42{bottom:405.166978px;}
.y11e{bottom:421.837950px;}
.y117{bottom:422.419350px;}
.y14{bottom:430.754761px;}
.y77{bottom:437.384400px;}
.yd9{bottom:437.733450px;}
.y6f{bottom:437.965950px;}
.y12a{bottom:438.483422px;}
.y44{bottom:439.646508px;}
.y1e{bottom:439.646583px;}
.y95{bottom:440.641050px;}
.y8a{bottom:441.222600px;}
.y5f{bottom:442.426800px;}
.y54{bottom:443.008350px;}
.y2a{bottom:443.135766px;}
.y100{bottom:445.875000px;}
.y41{bottom:447.038070px;}
.yeb{bottom:452.271900px;}
.yba{bottom:453.603539px;}
.yb1{bottom:457.411500px;}
.ya5{bottom:457.993050px;}
.y11c{bottom:479.604450px;}
.y116{bottom:480.186000px;}
.y6e{bottom:481.000050px;}
.y94{bottom:482.512200px;}
.y89{bottom:483.093750px;}
.y129{bottom:491.985373px;}
.y13{bottom:492.398314px;}
.y43{bottom:493.148459px;}
.y40{bottom:498.213850px;}
.y1d{bottom:500.127050px;}
.y16{bottom:500.540100px;}
.y29{bottom:503.616232px;}
.yfd{bottom:504.029250px;}
.y5c{bottom:520.422900px;}
.y52{bottom:521.004450px;}
.y9c{bottom:521.475555px;}
.y74{bottom:522.289650px;}
.y6d{bottom:522.871200px;}
.y92{bottom:524.383350px;}
.yaf{bottom:524.736150px;}
.y88{bottom:524.964900px;}
.ya3{bottom:525.317700px;}
.y1{bottom:536.595750px;}
.y111{bottom:539.115750px;}
.y3f{bottom:540.084942px;}
.yd3{bottom:543.161153px;}
.yff{bottom:545.318850px;}
.yfc{bottom:545.900400px;}
.y9b{bottom:548.226531px;}
.yee{bottom:549.971250px;}
.y128{bottom:551.302754px;}
.y1c{bottom:551.302829px;}
.y12{bottom:552.878780px;}
.y28{bottom:553.628926px;}
.y72{bottom:564.160800px;}
.y6b{bottom:564.742350px;}
.y91{bottom:566.254350px;}
.y87{bottom:566.835900px;}
.y3e{bottom:581.956034px;}
.yfe{bottom:587.190000px;}
.yfb{bottom:587.771550px;}
.y10f{bottom:595.137750px;}
.ya1{bottom:595.675500px;}
.y113{bottom:595.719150px;}
.y50{bottom:601.401750px;}
.y27{bottom:603.641620px;}
.y1b{bottom:603.641695px;}
.yd8{bottom:608.125500px;}
.yd7{bottom:608.707050px;}
.y69{bottom:608.939550px;}
.y83{bottom:611.033250px;}
.y11{bottom:614.522333px;}
.yfa{bottom:631.968750px;}
.y3d{bottom:634.294900px;}
.y80{bottom:652.322700px;}
.y86{bottom:652.904250px;}
.y10{bottom:675.002800px;}
.y18{bottom:677.871900px;}
.yd4{bottom:678.091500px;}
.yd6{bottom:694.775400px;}
.ya0{bottom:711.058629px;}
.y9f{bottom:750.603550px;}
.ye{bottom:776.010450px;}
.h21{height:40.708005px;}
.h22{height:41.289555px;}
.h23{height:41.871090px;}
.h1b{height:43.406160px;}
.h16{height:43.593525px;}
.h1f{height:44.569245px;}
.h12{height:45.687468px;}
.h25{height:54.824962px;}
.h47{height:54.858885px;}
.h44{height:54.858900px;}
.h4a{height:55.440420px;}
.h42{height:55.440450px;}
.h43{height:56.021985px;}
.h46{height:56.603505px;}
.h45{height:56.603535px;}
.h49{height:57.766590px;}
.h48{height:57.766620px;}
.h31{height:60.790995px;}
.h30{height:61.348830px;}
.h32{height:61.627740px;}
.h2f{height:61.627755px;}
.h33{height:61.930365px;}
.h34{height:61.954080px;}
.h35{height:62.209290px;}
.h2e{height:62.209305px;}
.h29{height:66.161550px;}
.h28{height:66.868605px;}
.h2a{height:67.222140px;}
.h2c{height:67.324635px;}
.h2b{height:67.450155px;}
.h2d{height:67.803675px;}
.h27{height:67.929150px;}
.h38{height:72.624705px;}
.h1a{height:76.833075px;}
.h18{height:76.908000px;}
.h1d{height:77.489550px;}
.h1e{height:77.996160px;}
.h17{height:78.262960px;}
.h6{height:81.620716px;}
.h19{height:83.760358px;}
.h8{height:91.374936px;}
.h7{height:95.224169px;}
.h3a{height:95.954595px;}
.h5{height:95.981847px;}
.h37{height:96.536130px;}
.h3d{height:96.536145px;}
.h3b{height:97.117680px;}
.h39{height:97.699215px;}
.h3c{height:98.862300px;}
.h41{height:100.512430px;}
.h1c{height:110.372400px;}
.h9{height:110.493150px;}
.h20{height:110.953950px;}
.h10{height:114.218670px;}
.h40{height:120.614916px;}
.h11{height:122.692012px;}
.h4{height:123.405231px;}
.h4b{height:128.066662px;}
.hb{height:137.062404px;}
.hc{height:140.869693px;}
.h24{height:155.853585px;}
.h2{height:182.749872px;}
.h3{height:191.909100px;}
.h36{height:208.192500px;}
.he{height:208.631700px;}
.hd{height:212.531232px;}
.h3e{height:220.986300px;}
.h3f{height:246.574155px;}
.h1{height:290.771400px;}
.h26{height:295.242086px;}
.h14{height:296.586900px;}
.h15{height:305.891550px;}
.h13{height:649.001970px;}
.hf{height:649.002045px;}
.ha{height:720.363150px;}
.h0{height:892.500000px;}
.w27{width:70.421190px;}
.w33{width:71.584275px;}
.w77{width:82.079340px;}
.w6c{width:83.242425px;}
.w2d{width:86.363715px;}
.w39{width:86.945250px;}
.wf{width:87.590325px;}
.w13{width:88.753425px;}
.w2f{width:99.580140px;}
.w26{width:100.161690px;}
.w32{width:100.743240px;}
.w30{width:101.329320px;}
.w10{width:101.983515px;}
.w31{width:102.319755px;}
.w24{width:102.492405px;}
.w14{width:102.565065px;}
.w2e{width:102.901305px;}
.w25{width:103.482840px;}
.w11{width:105.463725px;}
.wd{width:106.626810px;}
.wb{width:112.117515px;}
.w9{width:113.280600px;}
.w2b{width:117.099150px;}
.w37{width:118.262235px;}
.w5b{width:121.025580px;}
.w55{width:122.188665px;}
.w58{width:122.770200px;}
.w5c{width:123.351750px;}
.w5a{width:123.933240px;}
.w59{width:123.933285px;}
.w57{width:124.514790px;}
.w56{width:124.514835px;}
.w5e{width:125.096325px;}
.w5d{width:125.096370px;}
.w2a{width:130.788120px;}
.w36{width:131.951205px;}
.w29{width:136.326420px;}
.w35{width:137.489505px;}
.w28{width:137.584905px;}
.w34{width:138.747990px;}
.w68{width:144.790560px;}
.w6a{width:145.372095px;}
.w62{width:147.098550px;}
.w66{width:147.680100px;}
.w42{width:152.119200px;}
.w3b{width:153.282300px;}
.w1a{width:153.409050px;}
.w3c{width:153.863850px;}
.w64{width:153.922650px;}
.w48{width:154.471350px;}
.w60{width:154.504200px;}
.w61{width:154.545000px;}
.w16{width:154.572150px;}
.w65{width:155.708100px;}
.w50{width:156.120600px;}
.w44{width:156.216000px;}
.w4b{width:157.865100px;}
.w2c{width:163.245450px;}
.w38{width:164.408550px;}
.w4f{width:166.067100px;}
.w53{width:166.648650px;}
.w74{width:172.359300px;}
.w75{width:172.454700px;}
.w73{width:172.854600px;}
.w6f{width:172.940850px;}
.w70{width:173.036250px;}
.w76{width:173.163450px;}
.w6e{width:173.436150px;}
.w72{width:173.522400px;}
.w71{width:173.745000px;}
.w6d{width:174.103950px;}
.w51{width:192.377400px;}
.w3f{width:192.766200px;}
.w41{width:193.347750px;}
.w4d{width:193.540500px;}
.w49{width:193.560900px;}
.w43{width:193.929300px;}
.w4c{width:194.122050px;}
.w3d{width:194.510850px;}
.w3e{width:194.511000px;}
.w46{width:194.724000px;}
.w45{width:195.305550px;}
.w40{width:195.673950px;}
.w47{width:201.711750px;}
.w4a{width:202.293300px;}
.w69{width:204.466800px;}
.w63{width:204.466950px;}
.w4e{width:205.030500px;}
.w67{width:205.629900px;}
.w5f{width:205.630050px;}
.w52{width:206.193450px;}
.w20{width:257.355450px;}
.w22{width:275.796750px;}
.w1e{width:276.959850px;}
.w19{width:282.955350px;}
.w1d{width:283.536900px;}
.w1b{width:285.022800px;}
.w17{width:285.604350px;}
.w18{width:286.426800px;}
.w1c{width:287.589900px;}
.w23{width:293.252100px;}
.w1f{width:294.415200px;}
.w21{width:295.973550px;}
.w8{width:553.628865px;}
.w6b{width:649.001850px;}
.w12{width:747.664350px;}
.we{width:748.245900px;}
.wc{width:1046.316150px;}
.wa{width:1047.479250px;}
.w6{width:1086.322230px;}
.w1{width:1086.322245px;}
.w2{width:1116.562515px;}
.w5{width:1130.519565px;}
.w15{width:1130.519625px;}
.w7{width:1131.682620px;}
.w4{width:1131.682665px;}
.w78{width:1146.802815px;}
.w3a{width:1147.965870px;}
.w54{width:1171.744470px;}
.w3{width:1191.000000px;}
.w0{width:1263.000000px;}
.x84{left:-433.431400px;}
.x73{left:-380.478979px;}
.x7c{left:-339.192956px;}
.x83{left:-239.309350px;}
.x72{left:-184.805029px;}
.x7a{left:-143.887556px;}
.x4f{left:-131.120382px;}
.xa1{left:-129.303554px;}
.xa5{left:-78.455023px;}
.x9e{left:-57.775621px;}
.x8c{left:-48.620762px;}
.x82{left:-45.187450px;}
.xa8{left:-38.621410px;}
.x92{left:-33.438211px;}
.x5f{left:-27.948194px;}
.x0{left:0.000000px;}
.x10{left:3.489258px;}
.x24{left:4.652344px;}
.x2b{left:6.127746px;}
.x21{left:8.331915px;}
.x3c{left:10.149095px;}
.x68{left:11.353149px;}
.x6c{left:13.261901px;}
.x6b{left:14.380127px;}
.x26{left:16.260453px;}
.x95{left:17.867535px;}
.x27{left:19.134089px;}
.x86{left:20.175749px;}
.x33{left:21.755615px;}
.x63{left:23.496836px;}
.x5c{left:25.014861px;}
.x36{left:27.300150px;}
.x6a{left:28.655761px;}
.x93{left:30.091335px;}
.x94{left:31.835964px;}
.x2{left:32.870807px;}
.x18{left:34.892583px;}
.x9{left:36.000000px;}
.x7{left:37.894560px;}
.x8a{left:39.342125px;}
.x16{left:41.394041px;}
.x9a{left:42.394632px;}
.x96{left:44.059718px;}
.x3{left:46.323524px;}
.x52{left:48.453775px;}
.x1c{left:52.131580px;}
.x20{left:53.446290px;}
.x15{left:55.255530px;}
.x88{left:57.249286px;}
.xf{left:58.744785px;}
.x53{left:61.403329px;}
.x89{left:62.443314px;}
.x7f{left:64.953707px;}
.xc{left:66.488992px;}
.x11{left:68.101185px;}
.x54{left:69.280282px;}
.x80{left:70.439634px;}
.x2e{left:72.055665px;}
.x4b{left:73.218750px;}
.x4{left:74.381835px;}
.x13{left:76.162819px;}
.x75{left:77.225484px;}
.x76{left:79.099599px;}
.x3b{left:82.421220px;}
.x3f{left:84.228832px;}
.x7e{left:85.902780px;}
.x6{left:87.026995px;}
.x12{left:88.338870px;}
.x1{left:89.501955px;}
.x58{left:90.508867px;}
.x59{left:91.869585px;}
.xa3{left:95.290127px;}
.x8{left:99.227685px;}
.x56{left:100.740953px;}
.x77{left:102.836054px;}
.x46{left:104.023344px;}
.x5a{left:107.375881px;}
.x44{left:110.083452px;}
.x45{left:111.985016px;}
.x81{left:113.839591px;}
.x9c{left:116.328479px;}
.x42{left:117.685684px;}
.x55{left:118.689311px;}
.xd{left:120.630338px;}
.x43{left:125.953364px;}
.x5b{left:127.034219px;}
.xa7{left:134.319440px;}
.x57{left:141.002532px;}
.x2d{left:151.396449px;}
.x9b{left:156.461100px;}
.xa6{left:157.624200px;}
.x5d{left:159.427950px;}
.x69{left:160.591050px;}
.x29{left:162.278862px;}
.x4d{left:163.294818px;}
.x6e{left:164.732741px;}
.x22{left:167.890050px;}
.x25{left:169.053000px;}
.x6d{left:175.756004px;}
.x2f{left:179.845500px;}
.x34{left:181.008600px;}
.x4a{left:183.731284px;}
.x3a{left:196.790994px;}
.x78{left:207.633979px;}
.x39{left:216.743965px;}
.x6f{left:226.519200px;}
.x74{left:227.682300px;}
.x35{left:229.356818px;}
.x87{left:231.665400px;}
.x2c{left:235.844046px;}
.x3d{left:238.156500px;}
.x41{left:239.319600px;}
.x5e{left:262.910850px;}
.x38{left:271.543106px;}
.x97{left:278.866950px;}
.x37{left:280.819879px;}
.x30{left:300.782621px;}
.x8b{left:321.085350px;}
.x9d{left:330.565200px;}
.x1f{left:334.784739px;}
.x4c{left:351.341700px;}
.x51{left:352.504800px;}
.x60{left:364.235550px;}
.x2a{left:367.519210px;}
.x23{left:397.143241px;}
.x70{left:422.193150px;}
.x79{left:423.577200px;}
.x98{left:434.534250px;}
.x61{left:435.819900px;}
.x8d{left:446.763300px;}
.x28{left:455.971079px;}
.x5{left:480.314699px;}
.xb{left:496.595692px;}
.x48{left:498.963858px;}
.xa{left:500.081461px;}
.x9f{left:506.327400px;}
.x3e{left:524.923800px;}
.x8e{left:571.278150px;}
.x62{left:574.567800px;}
.x99{left:590.242200px;}
.x71{left:617.867100px;}
.x7b{left:618.882600px;}
.x1b{left:632.718708px;}
.x4e{left:645.756900px;}
.x1a{left:664.306027px;}
.x19{left:670.623491px;}
.xa0{left:679.268250px;}
.x8f{left:696.955950px;}
.x64{left:712.057350px;}
.x49{left:776.941458px;}
.x40{left:812.513700px;}
.x7d{left:814.769850px;}
.x90{left:821.470800px;}
.x65{left:844.008600px;}
.xa2{left:854.630700px;}
.x50{left:905.438550px;}
.x31{left:929.254650px;}
.x1e{left:946.751958px;}
.x66{left:962.270700px;}
.x14{left:990.949158px;}
.xe{left:1002.580008px;}
.x32{left:1018.008000px;}
.x85{left:1019.061900px;}
.xa4{left:1028.375850px;}
.x91{left:1071.663450px;}
.x47{left:1083.996108px;}
.x67{left:1126.679250px;}
.x1d{left:1172.272594px;}
.x17{left:1179.891694px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:41.374429pt;}
.v2{vertical-align:140.604162pt;}
.ls20{letter-spacing:-11.513001pt;}
.ls1e{letter-spacing:-8.442867pt;}
.ls1a{letter-spacing:-6.668773pt;}
.lsa{letter-spacing:-5.553037pt;}
.ls1f{letter-spacing:-1.683115pt;}
.ls12{letter-spacing:-0.900694pt;}
.ls7{letter-spacing:-0.062031pt;}
.ls3{letter-spacing:-0.059550pt;}
.ls13{letter-spacing:-0.045490pt;}
.ls1b{letter-spacing:-0.044662pt;}
.lsf{letter-spacing:-0.039700pt;}
.lsb{letter-spacing:-0.037219pt;}
.ls17{letter-spacing:-0.036392pt;}
.ls6{letter-spacing:-0.029775pt;}
.ls10{letter-spacing:-0.018196pt;}
.ls2{letter-spacing:-0.014887pt;}
.ls4{letter-spacing:-0.012406pt;}
.ls11{letter-spacing:-0.009098pt;}
.ls9{letter-spacing:-0.008271pt;}
.lse{letter-spacing:-0.004962pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.009098pt;}
.ls19{letter-spacing:0.014887pt;}
.ls16{letter-spacing:0.018196pt;}
.lsd{letter-spacing:0.019850pt;}
.ls15{letter-spacing:0.027294pt;}
.ls1d{letter-spacing:0.036392pt;}
.ls0{letter-spacing:0.039700pt;}
.ls14{letter-spacing:0.045490pt;}
.ls18{letter-spacing:0.049625pt;}
.lsc{letter-spacing:0.051279pt;}
.ls5{letter-spacing:0.074437pt;}
.ls8{letter-spacing:0.260531pt;}
.ws19{word-spacing:-62.150348pt;}
.ws1a{word-spacing:-62.130498pt;}
.ws4{word-spacing:-46.568098pt;}
.ws0{word-spacing:-41.387249pt;}
.ws6{word-spacing:-38.831561pt;}
.ws3{word-spacing:-38.819155pt;}
.ws7{word-spacing:-38.794342pt;}
.ws10{word-spacing:-31.114874pt;}
.ws11{word-spacing:-31.035474pt;}
.ws14{word-spacing:-28.512870pt;}
.ws18{word-spacing:-28.503772pt;}
.ws16{word-spacing:-28.476478pt;}
.wse{word-spacing:-28.467380pt;}
.wsc{word-spacing:-28.440087pt;}
.ws9{word-spacing:-28.430989pt;}
.ws8{word-spacing:-27.575785pt;}
.ws12{word-spacing:-26.702385pt;}
.wsa{word-spacing:-26.684189pt;}
.wsb{word-spacing:-26.675091pt;}
.ws13{word-spacing:-26.665993pt;}
.wsd{word-spacing:-26.620503pt;}
.ws15{word-spacing:-26.611405pt;}
.ws5{word-spacing:-25.879437pt;}
.wsf{word-spacing:-21.807706pt;}
.ws17{word-spacing:-20.033611pt;}
.ws2{word-spacing:-7.531421pt;}
.ws1{word-spacing:0.000000pt;}
._10{margin-left:-28.476478pt;}
._15{margin-left:-26.499749pt;}
._f{margin-left:-23.527212pt;}
._5{margin-left:-22.013649pt;}
._c{margin-left:-19.601874pt;}
._d{margin-left:-14.486364pt;}
._8{margin-left:-12.666781pt;}
._9{margin-left:-11.103593pt;}
._e{margin-left:-9.596648pt;}
._3{margin-left:-8.590087pt;}
._11{margin-left:-7.696837pt;}
._4{margin-left:-6.264329pt;}
._1{margin-left:-4.565500pt;}
._6{margin-left:-3.185925pt;}
._2{margin-left:-1.925450pt;}
._0{margin-left:-0.992500pt;}
._7{width:0.932950pt;}
._b{width:2.530875pt;}
._14{width:4.457979pt;}
._a{width:5.657250pt;}
._12{width:6.641479pt;}
._16{width:8.461062pt;}
._17{width:9.428750pt;}
._18{width:10.669375pt;}
._19{width:12.158125pt;}
._13{width:172.906976pt;}
.fs8{font-size:49.624998pt;}
.fsa{font-size:59.549998pt;}
.fs7{font-size:82.708331pt;}
.fs9{font-size:90.979164pt;}
.fs3{font-size:99.249997pt;}
.fsc{font-size:109.174996pt;}
.fs2{font-size:115.791663pt;}
.fs6{font-size:124.062496pt;}
.fsb{font-size:131.009996pt;}
.fs1{font-size:148.874995pt;}
.fs4{font-size:153.010412pt;}
.fs0{font-size:198.499994pt;}
.fs5{font-size:256.395825pt;}
.y82{bottom:-23.261673pt;}
.ybd{bottom:-13.971027pt;}
.y110{bottom:-9.649286pt;}
.y0{bottom:0.000000pt;}
.yc3{bottom:0.502931pt;}
.yd{bottom:3.468752pt;}
.y81{bottom:4.652389pt;}
.y25{bottom:8.615055pt;}
.y73{bottom:8.787672pt;}
.yea{bottom:8.787765pt;}
.y76{bottom:8.787805pt;}
.y6c{bottom:9.304593pt;}
.y93{bottom:9.304605pt;}
.ye5{bottom:9.304686pt;}
.y6a{bottom:9.304726pt;}
.y75{bottom:9.304738pt;}
.y7f{bottom:9.304753pt;}
.y57{bottom:9.635418pt;}
.y51{bottom:9.801818pt;}
.y63{bottom:10.669284pt;}
.y5e{bottom:10.983769pt;}
.y61{bottom:11.434035pt;}
.y68{bottom:11.782026pt;}
.y10e{bottom:13.440054pt;}
.y85{bottom:13.440060pt;}
.y108{bottom:13.440085pt;}
.ybc{bottom:13.943035pt;}
.y11b{bottom:14.646280pt;}
.y114{bottom:14.646414pt;}
.y115{bottom:15.163214pt;}
.y11d{bottom:15.680147pt;}
.y11f{bottom:16.196959pt;}
.y118{bottom:16.197080pt;}
.y121{bottom:16.197093pt;}
.yce{bottom:17.830451pt;}
.yc8{bottom:17.851505pt;}
.yd0{bottom:17.851518pt;}
.yca{bottom:17.851599pt;}
.yd2{bottom:18.078398pt;}
.yc6{bottom:18.347372pt;}
.ycc{bottom:18.595319pt;}
.yc2{bottom:18.595372pt;}
.y8{bottom:18.609309pt;}
.yed{bottom:19.643335pt;}
.ya4{bottom:20.152343pt;}
.yae{bottom:20.466556pt;}
.yb8{bottom:20.557610pt;}
.ya6{bottom:20.557664pt;}
.yb2{bottom:20.557676pt;}
.yac{bottom:20.557730pt;}
.yb0{bottom:20.669276pt;}
.yb9{bottom:20.983476pt;}
.ya2{bottom:21.095010pt;}
.yc0{bottom:22.730706pt;}
.yef{bottom:23.201035pt;}
.y109{bottom:24.628307pt;}
.y55{bottom:24.874126pt;}
.y53{bottom:24.940793pt;}
.y26{bottom:25.662160pt;}
.y79{bottom:26.696013pt;}
.y7e{bottom:26.880274pt;}
.y3c{bottom:27.914025pt;}
.yf{bottom:28.947906pt;}
.y1a{bottom:30.831427pt;}
.y130{bottom:33.083366pt;}
.yf6{bottom:33.600239pt;}
.yf5{bottom:33.600360pt;}
.yf1{bottom:34.117160pt;}
.yf3{bottom:34.117173pt;}
.yf9{bottom:34.117293pt;}
.yf8{bottom:35.151039pt;}
.yc4{bottom:37.204664pt;}
.y5d{bottom:38.897830pt;}
.y60{bottom:39.348097pt;}
.y67{bottom:39.696088pt;}
.y112{bottom:40.148048pt;}
.y5b{bottom:40.213009pt;}
.y84{bottom:41.354122pt;}
.y2f{bottom:43.812384pt;}
.ye6{bottom:46.890627pt;}
.yad{bottom:47.097467pt;}
.y4d{bottom:47.557324pt;}
.yec{bottom:47.557397pt;}
.y7{bottom:48.591079pt;}
.ybf{bottom:50.644768pt;}
.y7d{bottom:52.726627pt;}
.yc{bottom:54.127626pt;}
.y10d{bottom:54.794219pt;}
.y107{bottom:57.895813pt;}
.y3b{bottom:65.132773pt;}
.y66{bottom:67.610149pt;}
.y35{bottom:69.635422pt;}
.y19{bottom:72.760299pt;}
.y3{bottom:73.403564pt;}
.ycb{bottom:73.715573pt;}
.y7c{bottom:77.539126pt;}
.y104{bottom:82.524133pt;}
.ye9{bottom:83.592453pt;}
.ye4{bottom:84.109373pt;}
.y6{bottom:85.809828pt;}
.y127{bottom:87.877635pt;}
.yb{bottom:88.244812pt;}
.y7b{bottom:95.114646pt;}
.y10c{bottom:102.351510pt;}
.y4c{bottom:102.351593pt;}
.yd5{bottom:103.385523pt;}
.y2e{bottom:103.775923pt;}
.y17{bottom:105.453055pt;}
.yb7{bottom:107.367400pt;}
.yab{bottom:107.884333pt;}
.y4a{bottom:109.588572pt;}
.y3a{bottom:110.622355pt;}
.y106{bottom:111.656228pt;}
.y24{bottom:115.791763pt;}
.y5a{bottom:116.365560pt;}
.ye8{bottom:120.811200pt;}
.y7a{bottom:120.961000pt;}
.ye3{bottom:121.328120pt;}
.ya{bottom:125.463561pt;}
.y34{bottom:128.565155pt;}
.yd1{bottom:129.012720pt;}
.yc9{bottom:129.529640pt;}
.y5{bottom:130.265555pt;}
.yf4{bottom:138.903600pt;}
.y10b{bottom:141.637967pt;}
.y126{bottom:141.638050pt;}
.y4f{bottom:142.005160pt;}
.y12f{bottom:144.739612pt;}
.y2{bottom:145.773354pt;}
.y39{bottom:147.841104pt;}
.y23{bottom:153.010512pt;}
.y49{bottom:155.078154pt;}
.y105{bottom:156.111955pt;}
.y4b{bottom:157.145862pt;}
.ye7{bottom:158.030000pt;}
.ye2{bottom:158.546933pt;}
.y4e{bottom:165.783805pt;}
.yb6{bottom:167.211467pt;}
.yaa{bottom:167.728400pt;}
.y90{bottom:168.885467pt;}
.y9{bottom:169.919289pt;}
.y32{bottom:178.856761pt;}
.y10a{bottom:182.992132pt;}
.ycf{bottom:184.083067pt;}
.yc7{bottom:184.600000pt;}
.y38{bottom:185.059853pt;}
.y125{bottom:186.093778pt;}
.y12e{bottom:190.229194pt;}
.ye1{bottom:197.833333pt;}
.y22{bottom:198.500094pt;}
.y33{bottom:198.867155pt;}
.y48{bottom:202.635444pt;}
.y9a{bottom:205.587200pt;}
.y8f{bottom:206.104133pt;}
.y4{bottom:210.239600pt;}
.y65{bottom:214.991333pt;}
.y59{bottom:215.508267pt;}
.y31{bottom:223.312489pt;}
.yf7{bottom:224.713600pt;}
.yf2{bottom:225.230533pt;}
.yb5{bottom:227.055600pt;}
.ya9{bottom:227.572533pt;}
.y37{bottom:231.583289pt;}
.y21{bottom:235.718843pt;}
.y12d{bottom:236.752630pt;}
.ydd{bottom:238.153600pt;}
.ycd{bottom:239.153333pt;}
.yc5{bottom:239.670267pt;}
.y124{bottom:240.888047pt;}
.y99{bottom:242.806000pt;}
.y8e{bottom:243.322933pt;}
.y47{bottom:247.091171pt;}
.y2d{bottom:255.362005pt;}
.y11a{bottom:274.338533pt;}
.ye0{bottom:274.855467pt;}
.y9e{bottom:275.372360pt;}
.ydc{bottom:275.372400pt;}
.y98{bottom:280.024800pt;}
.y8d{bottom:280.541600pt;}
.y20{bottom:282.242279pt;}
.y64{bottom:284.321200pt;}
.y58{bottom:284.838133pt;}
.yb4{bottom:286.899733pt;}
.ya8{bottom:287.416667pt;}
.y12c{bottom:290.513045pt;}
.y123{bottom:294.648462pt;}
.ybe{bottom:297.304133pt;}
.y9d{bottom:299.151005pt;}
.y46{bottom:299.817732pt;}
.y2c{bottom:300.851586pt;}
.ydf{bottom:312.074267pt;}
.ydb{bottom:312.591200pt;}
.yf0{bottom:313.108133pt;}
.y71{bottom:314.865600pt;}
.y97{bottom:317.243467pt;}
.y8c{bottom:317.760400pt;}
.y102{bottom:319.828133pt;}
.y120{bottom:323.618933pt;}
.y119{bottom:324.135867pt;}
.y15{bottom:327.064998pt;}
.y36{bottom:330.649200pt;}
.ybb{bottom:334.005867pt;}
.yc1{bottom:334.522800pt;}
.y12b{bottom:337.036481pt;}
.y1f{bottom:337.036548pt;}
.y30{bottom:338.920000pt;}
.y45{bottom:345.307314pt;}
.y2b{bottom:346.341168pt;}
.yb3{bottom:346.743867pt;}
.ya7{bottom:347.260800pt;}
.yde{bottom:349.292933pt;}
.y122{bottom:349.442731pt;}
.yda{bottom:349.809867pt;}
.y78{bottom:351.567333pt;}
.y70{bottom:352.084267pt;}
.y62{bottom:353.651067pt;}
.y56{bottom:354.168000pt;}
.y96{bottom:354.462267pt;}
.y8b{bottom:354.979200pt;}
.y103{bottom:356.530000pt;}
.y101{bottom:357.046933pt;}
.y42{bottom:360.148425pt;}
.y11e{bottom:374.967067pt;}
.y117{bottom:375.483867pt;}
.y14{bottom:382.893121pt;}
.y77{bottom:388.786133pt;}
.yd9{bottom:389.096400pt;}
.y6f{bottom:389.303067pt;}
.y12a{bottom:389.763042pt;}
.y44{bottom:390.796896pt;}
.y1e{bottom:390.796963pt;}
.y95{bottom:391.680933pt;}
.y8a{bottom:392.197867pt;}
.y5f{bottom:393.268267pt;}
.y54{bottom:393.785200pt;}
.y2a{bottom:393.898458pt;}
.y100{bottom:396.333333pt;}
.y41{bottom:397.367173pt;}
.yeb{bottom:402.019467pt;}
.yba{bottom:403.203146pt;}
.yb1{bottom:406.588000pt;}
.ya5{bottom:407.104933pt;}
.y11c{bottom:426.315067pt;}
.y116{bottom:426.832000pt;}
.y6e{bottom:427.555600pt;}
.y94{bottom:428.899733pt;}
.y89{bottom:429.416667pt;}
.y129{bottom:437.320332pt;}
.y13{bottom:437.687390pt;}
.y43{bottom:438.354186pt;}
.y40{bottom:442.856755pt;}
.y1d{bottom:444.557378pt;}
.y16{bottom:444.924533pt;}
.y29{bottom:447.658873pt;}
.yfd{bottom:448.026000pt;}
.y5c{bottom:462.598133pt;}
.y52{bottom:463.115067pt;}
.y9c{bottom:463.533827pt;}
.y74{bottom:464.257467pt;}
.y6d{bottom:464.774400pt;}
.y92{bottom:466.118533pt;}
.yaf{bottom:466.432133pt;}
.y88{bottom:466.635467pt;}
.ya3{bottom:466.949067pt;}
.y1{bottom:476.974000pt;}
.y111{bottom:479.214000pt;}
.y3f{bottom:480.075504pt;}
.yd3{bottom:482.809914pt;}
.yff{bottom:484.727867pt;}
.yfc{bottom:485.244800pt;}
.y9b{bottom:487.312472pt;}
.yee{bottom:488.863333pt;}
.y128{bottom:490.046893pt;}
.y1c{bottom:490.046959pt;}
.y12{bottom:491.447805pt;}
.y28{bottom:492.114601pt;}
.y72{bottom:501.476267pt;}
.y6b{bottom:501.993200pt;}
.y91{bottom:503.337200pt;}
.y87{bottom:503.854133pt;}
.y3e{bottom:517.294253pt;}
.yfe{bottom:521.946667pt;}
.yfb{bottom:522.463600pt;}
.y10f{bottom:529.011333pt;}
.ya1{bottom:529.489333pt;}
.y113{bottom:529.528133pt;}
.y50{bottom:534.579333pt;}
.y27{bottom:536.570329pt;}
.y1b{bottom:536.570395pt;}
.yd8{bottom:540.556000pt;}
.yd7{bottom:541.072933pt;}
.y69{bottom:541.279600pt;}
.y83{bottom:543.140667pt;}
.y11{bottom:546.242074pt;}
.yfa{bottom:561.750000pt;}
.y3d{bottom:563.817689pt;}
.y80{bottom:579.842400pt;}
.y86{bottom:580.359333pt;}
.y10{bottom:600.002489pt;}
.y18{bottom:602.552800pt;}
.yd4{bottom:602.748000pt;}
.yd6{bottom:617.578133pt;}
.ya0{bottom:632.052115pt;}
.y9f{bottom:667.203155pt;}
.ye{bottom:689.787067pt;}
.h21{height:36.184893pt;}
.h22{height:36.701827pt;}
.h23{height:37.218747pt;}
.h1b{height:38.583253pt;}
.h16{height:38.749800pt;}
.h1f{height:39.617107pt;}
.h12{height:40.611083pt;}
.h25{height:48.733299pt;}
.h47{height:48.763453pt;}
.h44{height:48.763467pt;}
.h4a{height:49.280373pt;}
.h42{height:49.280400pt;}
.h43{height:49.797320pt;}
.h46{height:50.314227pt;}
.h45{height:50.314253pt;}
.h49{height:51.348080pt;}
.h48{height:51.348107pt;}
.h31{height:54.036440pt;}
.h30{height:54.532293pt;}
.h32{height:54.780213pt;}
.h2f{height:54.780227pt;}
.h33{height:55.049213pt;}
.h34{height:55.070293pt;}
.h35{height:55.297147pt;}
.h2e{height:55.297160pt;}
.h29{height:58.810267pt;}
.h28{height:59.438760pt;}
.h2a{height:59.753013pt;}
.h2c{height:59.844120pt;}
.h2b{height:59.955693pt;}
.h2d{height:60.269933pt;}
.h27{height:60.381467pt;}
.h38{height:64.555293pt;}
.h1a{height:68.296067pt;}
.h18{height:68.362667pt;}
.h1d{height:68.879600pt;}
.h1e{height:69.329920pt;}
.h17{height:69.567075pt;}
.h6{height:72.551748pt;}
.h19{height:74.453652pt;}
.h8{height:81.222165pt;}
.h7{height:84.643706pt;}
.h3a{height:85.292973pt;}
.h5{height:85.317197pt;}
.h37{height:85.809893pt;}
.h3d{height:85.809907pt;}
.h3b{height:86.326827pt;}
.h39{height:86.843747pt;}
.h3c{height:87.877600pt;}
.h41{height:89.344382pt;}
.h1c{height:98.108800pt;}
.h9{height:98.216133pt;}
.h20{height:98.625733pt;}
.h10{height:101.527707pt;}
.h40{height:107.213258pt;}
.h11{height:109.059567pt;}
.h4{height:109.693539pt;}
.h4b{height:113.837032pt;}
.hb{height:121.833248pt;}
.hc{height:125.217505pt;}
.h24{height:138.536520pt;}
.h2{height:162.444331pt;}
.h3{height:170.585867pt;}
.h36{height:185.060000pt;}
.he{height:185.450400pt;}
.hd{height:188.916650pt;}
.h3e{height:196.432267pt;}
.h3f{height:219.177027pt;}
.h1{height:258.463467pt;}
.h26{height:262.437410pt;}
.h14{height:263.632800pt;}
.h15{height:271.903600pt;}
.h13{height:576.890640pt;}
.hf{height:576.890707pt;}
.ha{height:640.322800pt;}
.h0{height:793.333333pt;}
.w27{width:62.596613pt;}
.w33{width:63.630467pt;}
.w77{width:72.959413pt;}
.w6c{width:73.993267pt;}
.w2d{width:76.767747pt;}
.w39{width:77.284667pt;}
.wf{width:77.858067pt;}
.w13{width:78.891933pt;}
.w2f{width:88.515680pt;}
.w26{width:89.032613pt;}
.w32{width:89.549547pt;}
.w30{width:90.070507pt;}
.w10{width:90.652013pt;}
.w31{width:90.950893pt;}
.w24{width:91.104360pt;}
.w14{width:91.168947pt;}
.w2e{width:91.467827pt;}
.w25{width:91.984747pt;}
.w11{width:93.745533pt;}
.wd{width:94.779387pt;}
.wb{width:99.660013pt;}
.w9{width:100.693867pt;}
.w2b{width:104.088133pt;}
.w37{width:105.121987pt;}
.w5b{width:107.578293pt;}
.w55{width:108.612147pt;}
.w58{width:109.129067pt;}
.w5c{width:109.646000pt;}
.w5a{width:110.162880pt;}
.w59{width:110.162920pt;}
.w57{width:110.679813pt;}
.w56{width:110.679853pt;}
.w5e{width:111.196733pt;}
.w5d{width:111.196773pt;}
.w2a{width:116.256107pt;}
.w36{width:117.289960pt;}
.w29{width:121.179040pt;}
.w35{width:122.212893pt;}
.w28{width:122.297693pt;}
.w34{width:123.331547pt;}
.w68{width:128.702720pt;}
.w6a{width:129.219640pt;}
.w62{width:130.754267pt;}
.w66{width:131.271200pt;}
.w42{width:135.217067pt;}
.w3b{width:136.250933pt;}
.w1a{width:136.363600pt;}
.w3c{width:136.767867pt;}
.w64{width:136.820133pt;}
.w48{width:137.307867pt;}
.w60{width:137.337067pt;}
.w61{width:137.373333pt;}
.w16{width:137.397467pt;}
.w65{width:138.407200pt;}
.w50{width:138.773867pt;}
.w44{width:138.858667pt;}
.w4b{width:140.324533pt;}
.w2c{width:145.107067pt;}
.w38{width:146.140933pt;}
.w4f{width:147.615200pt;}
.w53{width:148.132133pt;}
.w74{width:153.208267pt;}
.w75{width:153.293067pt;}
.w73{width:153.648533pt;}
.w6f{width:153.725200pt;}
.w70{width:153.810000pt;}
.w76{width:153.923067pt;}
.w6e{width:154.165467pt;}
.w72{width:154.242133pt;}
.w71{width:154.440000pt;}
.w6d{width:154.759067pt;}
.w51{width:171.002133pt;}
.w3f{width:171.347733pt;}
.w41{width:171.864667pt;}
.w4d{width:172.036000pt;}
.w49{width:172.054133pt;}
.w43{width:172.381600pt;}
.w4c{width:172.552933pt;}
.w3d{width:172.898533pt;}
.w3e{width:172.898667pt;}
.w46{width:173.088000pt;}
.w45{width:173.604933pt;}
.w40{width:173.932400pt;}
.w47{width:179.299333pt;}
.w4a{width:179.816267pt;}
.w69{width:181.748267pt;}
.w63{width:181.748400pt;}
.w4e{width:182.249333pt;}
.w67{width:182.782133pt;}
.w5f{width:182.782267pt;}
.w52{width:183.283067pt;}
.w20{width:228.760400pt;}
.w22{width:245.152667pt;}
.w1e{width:246.186533pt;}
.w19{width:251.515867pt;}
.w1d{width:252.032800pt;}
.w1b{width:253.353600pt;}
.w17{width:253.870533pt;}
.w18{width:254.601600pt;}
.w1c{width:255.635467pt;}
.w23{width:260.668533pt;}
.w1f{width:261.702400pt;}
.w21{width:263.087600pt;}
.w8{width:492.114547pt;}
.w6b{width:576.890533pt;}
.w12{width:664.590533pt;}
.we{width:665.107467pt;}
.wc{width:930.058800pt;}
.wa{width:931.092667pt;}
.w6{width:965.619760pt;}
.w1{width:965.619773pt;}
.w2{width:992.500013pt;}
.w5{width:1004.906280pt;}
.w15{width:1004.906333pt;}
.w7{width:1005.940107pt;}
.w4{width:1005.940147pt;}
.w78{width:1019.380280pt;}
.w3a{width:1020.414107pt;}
.w54{width:1041.550640pt;}
.w3{width:1058.666667pt;}
.w0{width:1122.666667pt;}
.x84{left:-385.272356pt;}
.x73{left:-338.203537pt;}
.x7c{left:-301.504850pt;}
.x83{left:-212.719422pt;}
.x72{left:-164.271137pt;}
.x7a{left:-127.900050pt;}
.x4f{left:-116.551451pt;}
.xa1{left:-114.936492pt;}
.xa5{left:-69.737798pt;}
.x9e{left:-51.356108pt;}
.x8c{left:-43.218455pt;}
.x82{left:-40.166622pt;}
.xa8{left:-34.330142pt;}
.x92{left:-29.722854pt;}
.x5f{left:-24.842839pt;}
.x0{left:0.000000pt;}
.x10{left:3.101562pt;}
.x24{left:4.135417pt;}
.x2b{left:5.446885pt;}
.x21{left:7.406146pt;}
.x3c{left:9.021417pt;}
.x68{left:10.091688pt;}
.x6c{left:11.788356pt;}
.x6b{left:12.782335pt;}
.x26{left:14.453736pt;}
.x95{left:15.882253pt;}
.x27{left:17.008079pt;}
.x86{left:17.933999pt;}
.x33{left:19.338324pt;}
.x63{left:20.886076pt;}
.x5c{left:22.235432pt;}
.x36{left:24.266800pt;}
.x6a{left:25.471788pt;}
.x93{left:26.747853pt;}
.x94{left:28.298635pt;}
.x2{left:29.218495pt;}
.x18{left:31.015629pt;}
.x9{left:32.000000pt;}
.x7{left:33.684053pt;}
.x8a{left:34.970778pt;}
.x16{left:36.794703pt;}
.x9a{left:37.684118pt;}
.x96{left:39.164193pt;}
.x3{left:41.176466pt;}
.x52{left:43.070022pt;}
.x1c{left:46.339183pt;}
.x20{left:47.507813pt;}
.x15{left:49.116027pt;}
.x88{left:50.888254pt;}
.xf{left:52.217587pt;}
.x53{left:54.580737pt;}
.x89{left:55.505168pt;}
.x7f{left:57.736628pt;}
.xc{left:59.101326pt;}
.x11{left:60.534387pt;}
.x54{left:61.582473pt;}
.x80{left:62.613008pt;}
.x2e{left:64.049480pt;}
.x4b{left:65.083333pt;}
.x4{left:66.117187pt;}
.x13{left:67.700284pt;}
.x75{left:68.644875pt;}
.x76{left:70.310755pt;}
.x3b{left:73.263307pt;}
.x3f{left:74.870073pt;}
.x7e{left:76.358026pt;}
.x6{left:77.357329pt;}
.x12{left:78.523440pt;}
.x1{left:79.557293pt;}
.x58{left:80.452327pt;}
.x59{left:81.661853pt;}
.xa3{left:84.702335pt;}
.x8{left:88.202387pt;}
.x56{left:89.547514pt;}
.x77{left:91.409826pt;}
.x46{left:92.465195pt;}
.x5a{left:95.445227pt;}
.x44{left:97.851957pt;}
.x45{left:99.542236pt;}
.x81{left:101.190748pt;}
.x9c{left:103.403092pt;}
.x42{left:104.609497pt;}
.x55{left:105.501609pt;}
.xd{left:107.226967pt;}
.x43{left:111.958545pt;}
.x5b{left:112.919306pt;}
.xa7{left:119.395058pt;}
.x57{left:125.335584pt;}
.x2d{left:134.574621pt;}
.x9b{left:139.076533pt;}
.xa6{left:140.110400pt;}
.x5d{left:141.713733pt;}
.x69{left:142.747600pt;}
.x29{left:144.247878pt;}
.x4d{left:145.150949pt;}
.x6e{left:146.429103pt;}
.x22{left:149.235600pt;}
.x25{left:150.269333pt;}
.x6d{left:156.227559pt;}
.x2f{left:159.862667pt;}
.x34{left:160.896533pt;}
.x4a{left:163.316697pt;}
.x3a{left:174.925328pt;}
.x78{left:184.563536pt;}
.x39{left:192.661302pt;}
.x6f{left:201.350400pt;}
.x74{left:202.384267pt;}
.x35{left:203.872727pt;}
.x87{left:205.924800pt;}
.x2c{left:209.639152pt;}
.x3d{left:211.694667pt;}
.x41{left:212.728533pt;}
.x5e{left:233.698533pt;}
.x38{left:241.371650pt;}
.x97{left:247.881733pt;}
.x37{left:249.617671pt;}
.x30{left:267.362329pt;}
.x8b{left:285.409200pt;}
.x9d{left:293.835733pt;}
.x1f{left:297.586435pt;}
.x4c{left:312.303733pt;}
.x51{left:313.337600pt;}
.x60{left:323.764933pt;}
.x2a{left:326.683742pt;}
.x23{left:353.016214pt;}
.x70{left:375.282800pt;}
.x79{left:376.513067pt;}
.x98{left:386.252667pt;}
.x61{left:387.395467pt;}
.x8d{left:397.122933pt;}
.x28{left:405.307625pt;}
.x5{left:426.946399pt;}
.xb{left:441.418393pt;}
.x48{left:443.523429pt;}
.xa{left:444.516854pt;}
.x9f{left:450.068800pt;}
.x3e{left:466.598933pt;}
.x8e{left:507.802800pt;}
.x62{left:510.726933pt;}
.x99{left:524.659733pt;}
.x71{left:549.215200pt;}
.x7b{left:550.117867pt;}
.x1b{left:562.416629pt;}
.x4e{left:574.006133pt;}
.x1a{left:590.494246pt;}
.x19{left:596.109770pt;}
.xa0{left:603.794000pt;}
.x8f{left:619.516400pt;}
.x64{left:632.939867pt;}
.x49{left:690.614629pt;}
.x40{left:722.234400pt;}
.x7d{left:724.239867pt;}
.x90{left:730.196267pt;}
.x65{left:750.229867pt;}
.xa2{left:759.671733pt;}
.x50{left:804.834267pt;}
.x31{left:826.004133pt;}
.x1e{left:841.557296pt;}
.x66{left:855.351733pt;}
.x14{left:880.843696pt;}
.xe{left:891.182229pt;}
.x32{left:904.896000pt;}
.x85{left:905.832800pt;}
.xa4{left:914.111867pt;}
.x91{left:952.589733pt;}
.x47{left:963.552096pt;}
.x67{left:1001.492667pt;}
.x1d{left:1042.020083pt;}
.x17{left:1048.792617pt;}
}




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