
    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_3b7d5e29aedb9cf3b15a6e2e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2aa7f51c21af92c5111da4c8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_fc9b3dce22bcd79be79f7df7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_f2bdcd5f9199f62d649599b7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_6ac82c332042025d105fd847.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_093dffa21744cbef86ca3541.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2efa75f2f75e480ae930fc38.woff')format("woff");}.ff9{font-family:ff9;line-height:0.730469;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7d40c1916640866cbdc122c9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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:ffb;src:url('chunks/assets/font_a1d300464f49f8ae7cb1d884.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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:ffc;src:url('chunks/assets/font_5cf039ade0b93af22cf57970.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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:ffd;src:url('chunks/assets/font_0b9d65f356ddc6b970f207cc.woff')format("woff");}.ffd{font-family:ffd;line-height:0.694336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_2e091b1023c819ac12f750a5.woff')format("woff");}.ffe{font-family:ffe;line-height:0.851562;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-2.160000px;}
.ls1f{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.025920px;}
.lsb{letter-spacing:-0.017280px;}
.lsc{letter-spacing:-0.008640px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.012960px;}
.ls5{letter-spacing:0.017280px;}
.ls10{letter-spacing:0.025920px;}
.ls9{letter-spacing:0.034560px;}
.ls1e{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.153600px;}
.ls7{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.216000px;}
.ls1d{letter-spacing:0.305280px;}
.ls2{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.504000px;}
.ls1b{letter-spacing:0.720000px;}
.ls11{letter-spacing:1.440000px;}
.ls1c{letter-spacing:6.065280px;}
.lsf{letter-spacing:77.904000px;}
.ls14{letter-spacing:198.000000px;}
.ls15{letter-spacing:1193.916000px;}
.ls13{letter-spacing:1203.276000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.wsf{word-spacing:-66.240000px;}
.ws3{word-spacing:-19.474560px;}
.ws4{word-spacing:-19.457280px;}
.ws2{word-spacing:-19.448640px;}
.wsd{word-spacing:-19.440000px;}
.ws6{word-spacing:-19.431360px;}
.ws5{word-spacing:-19.422720px;}
.ws14{word-spacing:-18.720000px;}
.ws10{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.144000px;}
.ws12{word-spacing:-18.072000px;}
.wsa{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws13{word-spacing:-17.208000px;}
.wse{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.093600px;}
.ws1{word-spacing:-14.940000px;}
.ws7{word-spacing:0.000000px;}
._1b{margin-left:-84.984000px;}
._10{margin-left:-4.896000px;}
._11{margin-left:-3.796320px;}
._13{margin-left:-2.200320px;}
._3{margin-left:-1.123440px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._9{width:3.640800px;}
._5{width:5.445840px;}
._6{width:6.938160px;}
._c{width:8.037840px;}
._f{width:9.072000px;}
._7{width:10.080000px;}
._8{width:11.088000px;}
._14{width:12.744000px;}
._12{width:14.040000px;}
._d{width:15.120000px;}
._e{width:16.472160px;}
._a{width:19.224000px;}
._b{width:20.236320px;}
._15{width:21.715440px;}
._21{width:23.555760px;}
._17{width:24.624000px;}
._18{width:25.704000px;}
._22{width:27.088080px;}
._16{width:28.200000px;}
._23{width:29.503440px;}
._19{width:37.872000px;}
._1a{width:39.016080px;}
._24{width:41.736000px;}
._1f{width:51.408000px;}
._20{width:53.392320px;}
._1d{width:113.016000px;}
._1e{width:198.000000px;}
._2{width:532.260000px;}
._1c{width:1183.116000px;}
._4{width:1513.560000px;}
.fc4{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(46,46,46);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs9{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fsa{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.yed{bottom:-15.150000px;}
.y0{bottom:0.000000px;}
.yec{bottom:0.195000px;}
.ye0{bottom:2.535000px;}
.y113{bottom:4.500000px;}
.y135{bottom:4.530000px;}
.y12a{bottom:4.545000px;}
.ye9{bottom:6.855000px;}
.yef{bottom:9.000000px;}
.ye2{bottom:12.615000px;}
.y136{bottom:14.760000px;}
.y127{bottom:14.805000px;}
.y115{bottom:14.940000px;}
.y117{bottom:14.955000px;}
.y133{bottom:15.120000px;}
.y124{bottom:15.135000px;}
.y11c{bottom:15.315000px;}
.yeb{bottom:20.895000px;}
.y111{bottom:25.200000px;}
.y129{bottom:25.230000px;}
.y119{bottom:25.560000px;}
.y121{bottom:25.575000px;}
.ybe{bottom:27.525000px;}
.ye8{bottom:28.095000px;}
.y114{bottom:35.640000px;}
.y125{bottom:35.820000px;}
.y123{bottom:35.835000px;}
.y11a{bottom:36.000000px;}
.y7{bottom:39.276000px;}
.ye4{bottom:43.590000px;}
.y112{bottom:45.900000px;}
.y11e{bottom:46.260000px;}
.ye7{bottom:47.355000px;}
.ye5{bottom:50.610000px;}
.y122{bottom:56.520000px;}
.y6{bottom:58.536000px;}
.ybd{bottom:64.065000px;}
.ybc{bottom:102.270000px;}
.y2b{bottom:131.436000px;}
.y53{bottom:133.596000px;}
.yde{bottom:134.316000px;}
.y2a{bottom:136.656000px;}
.y6f{bottom:137.736000px;}
.ybb{bottom:140.430000px;}
.y15e{bottom:140.796000px;}
.y1af{bottom:147.816000px;}
.y29{bottom:150.330000px;}
.y17e{bottom:152.310000px;}
.y52{bottom:154.290000px;}
.y94{bottom:156.090000px;}
.y10e{bottom:156.990000px;}
.y142{bottom:157.530000px;}
.y15d{bottom:161.490000px;}
.y1ae{bottom:168.510000px;}
.ydd{bottom:173.010000px;}
.y51{bottom:174.990000px;}
.y93{bottom:176.790000px;}
.y6e{bottom:177.690000px;}
.yba{bottom:178.590000px;}
.yb6{bottom:179.490000px;}
.y28{bottom:181.290000px;}
.y1ad{bottom:189.210000px;}
.y50{bottom:195.690000px;}
.y10d{bottom:195.870000px;}
.y141{bottom:196.410000px;}
.y92{bottom:197.490000px;}
.yb5{bottom:200.190000px;}
.y27{bottom:201.990000px;}
.y198{bottom:210.990000px;}
.ydc{bottom:211.530000px;}
.y17d{bottom:211.710000px;}
.y4f{bottom:216.390000px;}
.yb9{bottom:216.750000px;}
.y140{bottom:217.110000px;}
.y6d{bottom:217.650000px;}
.y91{bottom:218.190000px;}
.y15c{bottom:220.890000px;}
.y1ac{bottom:227.910000px;}
.y197{bottom:231.690000px;}
.y17c{bottom:232.410000px;}
.y10c{bottom:236.010000px;}
.y4e{bottom:237.090000px;}
.y90{bottom:238.890000px;}
.y26{bottom:240.510000px;}
.y15b{bottom:241.590000px;}
.y1ab{bottom:248.610000px;}
.ydb{bottom:250.410000px;}
.y196{bottom:252.390000px;}
.y17b{bottom:253.110000px;}
.yb8{bottom:254.910000px;}
.y13f{bottom:255.810000px;}
.y10b{bottom:256.710000px;}
.y6c{bottom:257.790000px;}
.y8f{bottom:259.590000px;}
.y15a{bottom:262.290000px;}
.y1aa{bottom:269.310000px;}
.yda{bottom:271.110000px;}
.y17a{bottom:273.855000px;}
.y4d{bottom:275.835000px;}
.y13e{bottom:276.555000px;}
.y10a{bottom:277.275000px;}
.y6b{bottom:278.535000px;}
.y8e{bottom:280.335000px;}
.y25{bottom:280.515000px;}
.y195{bottom:291.135000px;}
.yd9{bottom:291.855000px;}
.y179{bottom:294.555000px;}
.y4c{bottom:296.535000px;}
.y24{bottom:297.795000px;}
.yb4{bottom:298.335000px;}
.y8d{bottom:301.035000px;}
.y1a9{bottom:308.055000px;}
.y194{bottom:311.835000px;}
.yd8{bottom:312.555000px;}
.y23{bottom:314.895000px;}
.y178{bottom:315.255000px;}
.y13d{bottom:315.435000px;}
.y4b{bottom:317.235000px;}
.y109{bottom:317.415000px;}
.y159{bottom:321.735000px;}
.y1a8{bottom:328.755000px;}
.yb3{bottom:337.035000px;}
.y4a{bottom:337.935000px;}
.y108{bottom:338.115000px;}
.y8c{bottom:339.735000px;}
.y158{bottom:342.435000px;}
.y193{bottom:350.535000px;}
.y22{bottom:350.895000px;}
.yd7{bottom:351.615000px;}
.y177{bottom:353.955000px;}
.y13c{bottom:355.575000px;}
.yb2{bottom:357.735000px;}
.y49{bottom:358.635000px;}
.y8b{bottom:360.435000px;}
.y1a7{bottom:367.455000px;}
.y192{bottom:371.235000px;}
.y21{bottom:371.595000px;}
.y176{bottom:374.655000px;}
.y107{bottom:377.175000px;}
.y6a{bottom:379.335000px;}
.y8a{bottom:381.135000px;}
.y1a6{bottom:388.155000px;}
.yd6{bottom:391.755000px;}
.y13b{bottom:394.275000px;}
.y175{bottom:395.355000px;}
.yb1{bottom:396.435000px;}
.y48{bottom:397.695000px;}
.y69{bottom:400.035000px;}
.y89{bottom:401.835000px;}
.y1a5{bottom:408.855000px;}
.y191{bottom:409.935000px;}
.y20{bottom:412.095000px;}
.yd5{bottom:412.455000px;}
.y13a{bottom:414.975000px;}
.y174{bottom:416.055000px;}
.yb0{bottom:417.135000px;}
.y106{bottom:417.315000px;}
.y88{bottom:422.535000px;}
.y190{bottom:430.635000px;}
.y1f{bottom:432.795000px;}
.yd4{bottom:433.155000px;}
.y139{bottom:435.675000px;}
.y173{bottom:436.755000px;}
.y47{bottom:437.475000px;}
.y105{bottom:438.015000px;}
.y68{bottom:439.095000px;}
.y87{bottom:443.235000px;}
.y1a4{bottom:447.555000px;}
.y1e{bottom:453.495000px;}
.yd3{bottom:453.855000px;}
.yaf{bottom:455.835000px;}
.y138{bottom:456.375000px;}
.y104{bottom:458.715000px;}
.y157{bottom:463.935000px;}
.y1a3{bottom:468.255000px;}
.y18f{bottom:469.335000px;}
.y1d{bottom:474.195000px;}
.yd2{bottom:474.555000px;}
.y172{bottom:475.455000px;}
.yae{bottom:476.535000px;}
.y46{bottom:478.155000px;}
.y67{bottom:479.235000px;}
.y103{bottom:479.415000px;}
.y86{bottom:481.935000px;}
.y1a2{bottom:488.955000px;}
.y18e{bottom:489.855000px;}
.y137{bottom:491.295000px;}
.y1c{bottom:494.895000px;}
.yd1{bottom:495.255000px;}
.y171{bottom:496.155000px;}
.y45{bottom:498.855000px;}
.y66{bottom:499.935000px;}
.y85{bottom:502.635000px;}
.y132{bottom:512.895000px;}
.yad{bottom:515.235000px;}
.y1b{bottom:515.595000px;}
.yd0{bottom:515.955000px;}
.y170{bottom:516.855000px;}
.y102{bottom:517.755000px;}
.y44{bottom:519.555000px;}
.y65{bottom:520.635000px;}
.y84{bottom:523.335000px;}
.y1a1{bottom:527.655000px;}
.y18d{bottom:528.555000px;}
.yac{bottom:535.935000px;}
.y1a{bottom:536.295000px;}
.ycf{bottom:536.655000px;}
.y16f{bottom:537.555000px;}
.y43{bottom:540.255000px;}
.y64{bottom:541.335000px;}
.y156{bottom:543.855000px;}
.y83{bottom:544.035000px;}
.y1a0{bottom:548.355000px;}
.y134{bottom:555.015000px;}
.yab{bottom:556.665000px;}
.y19{bottom:557.025000px;}
.yce{bottom:557.385000px;}
.y16e{bottom:558.285000px;}
.y101{bottom:558.465000px;}
.y42{bottom:560.985000px;}
.y63{bottom:561.885000px;}
.y155{bottom:564.585000px;}
.y18c{bottom:567.285000px;}
.y131{bottom:576.465000px;}
.yaa{bottom:577.365000px;}
.y18{bottom:577.725000px;}
.ycd{bottom:578.085000px;}
.y16d{bottom:578.985000px;}
.y100{bottom:579.165000px;}
.y41{bottom:581.685000px;}
.y82{bottom:582.765000px;}
.y19f{bottom:587.085000px;}
.y18b{bottom:587.985000px;}
.ya9{bottom:597.885000px;}
.y17{bottom:598.425000px;}
.y16c{bottom:599.685000px;}
.y62{bottom:600.585000px;}
.y154{bottom:603.105000px;}
.y81{bottom:603.465000px;}
.y19e{bottom:607.785000px;}
.ycc{bottom:616.965000px;}
.yff{bottom:617.865000px;}
.y16{bottom:619.125000px;}
.y40{bottom:620.385000px;}
.y61{bottom:621.285000px;}
.y18a{bottom:626.685000px;}
.ya8{bottom:636.585000px;}
.yfe{bottom:638.565000px;}
.y15{bottom:639.825000px;}
.y3f{bottom:641.085000px;}
.y60{bottom:641.985000px;}
.y80{bottom:642.165000px;}
.y153{bottom:643.785000px;}
.y19d{bottom:646.485000px;}
.y189{bottom:647.385000px;}
.ycb{bottom:656.925000px;}
.ya7{bottom:657.285000px;}
.y16b{bottom:659.085000px;}
.yfd{bottom:659.265000px;}
.y130{bottom:659.445000px;}
.y3e{bottom:661.785000px;}
.y5f{bottom:662.685000px;}
.y7f{bottom:662.865000px;}
.y152{bottom:664.485000px;}
.y19c{bottom:667.185000px;}
.y188{bottom:668.085000px;}
.ya6{bottom:677.985000px;}
.y14{bottom:678.345000px;}
.y16a{bottom:679.785000px;}
.y3d{bottom:682.485000px;}
.y5e{bottom:683.385000px;}
.y7e{bottom:683.565000px;}
.y151{bottom:685.185000px;}
.yfc{bottom:697.965000px;}
.y12f{bottom:698.325000px;}
.ya5{bottom:698.685000px;}
.y3c{bottom:703.185000px;}
.y7d{bottom:704.265000px;}
.y150{bottom:705.885000px;}
.y187{bottom:706.785000px;}
.yca{bottom:707.685000px;}
.y169{bottom:718.485000px;}
.y13{bottom:718.665000px;}
.y12e{bottom:719.025000px;}
.ya4{bottom:719.385000px;}
.y5d{bottom:722.445000px;}
.y14f{bottom:726.585000px;}
.y186{bottom:727.485000px;}
.yc9{bottom:738.465000px;}
.y168{bottom:739.185000px;}
.yfb{bottom:739.365000px;}
.y12d{bottom:739.545000px;}
.y3b{bottom:741.885000px;}
.y7c{bottom:742.965000px;}
.y19b{bottom:744.585000px;}
.y14e{bottom:747.285000px;}
.ya3{bottom:758.085000px;}
.y12{bottom:759.705000px;}
.y167{bottom:759.885000px;}
.yfa{bottom:760.065000px;}
.y3a{bottom:762.585000px;}
.y7b{bottom:763.665000px;}
.y19a{bottom:765.285000px;}
.y185{bottom:766.185000px;}
.yb7{bottom:767.640000px;}
.yc8{bottom:769.425000px;}
.y12c{bottom:778.245000px;}
.ya2{bottom:778.785000px;}
.y166{bottom:780.585000px;}
.yf9{bottom:780.765000px;}
.y14d{bottom:782.205000px;}
.y11{bottom:782.385000px;}
.y5c{bottom:783.285000px;}
.y7a{bottom:784.365000px;}
.y199{bottom:785.985000px;}
.y184{bottom:786.885000px;}
.y12b{bottom:798.945000px;}
.ya1{bottom:799.485000px;}
.yc7{bottom:800.565000px;}
.y39{bottom:801.285000px;}
.yf8{bottom:801.465000px;}
.y5b{bottom:803.985000px;}
.y79{bottom:805.065000px;}
.ye3{bottom:812.640000px;}
.ya0{bottom:820.185000px;}
.y38{bottom:821.985000px;}
.yf7{bottom:822.165000px;}
.y10{bottom:824.145000px;}
.y14c{bottom:824.325000px;}
.y5a{bottom:824.685000px;}
.y183{bottom:825.585000px;}
.y78{bottom:825.765000px;}
.yc6{bottom:831.525000px;}
.y126{bottom:834.045000px;}
.y128{bottom:834.060000px;}
.y165{bottom:840.030000px;}
.y9f{bottom:840.930000px;}
.y37{bottom:842.730000px;}
.y59{bottom:845.430000px;}
.y14b{bottom:845.790000px;}
.y182{bottom:846.330000px;}
.y77{bottom:846.510000px;}
.ye{bottom:847.050000px;}
.yea{bottom:848.295000px;}
.yf{bottom:854.610000px;}
.y164{bottom:860.730000px;}
.yf6{bottom:860.910000px;}
.y9e{bottom:861.630000px;}
.yc5{bottom:862.710000px;}
.y36{bottom:863.430000px;}
.y58{bottom:866.130000px;}
.y14a{bottom:867.390000px;}
.y120{bottom:876.195000px;}
.y11d{bottom:876.210000px;}
.y163{bottom:881.430000px;}
.yf5{bottom:881.610000px;}
.y9d{bottom:882.330000px;}
.y35{bottom:884.130000px;}
.y181{bottom:885.030000px;}
.y76{bottom:885.570000px;}
.y1b0{bottom:886.830000px;}
.yd{bottom:888.810000px;}
.yc4{bottom:893.670000px;}
.ye6{bottom:899.415000px;}
.y162{bottom:902.130000px;}
.y9c{bottom:903.030000px;}
.y34{bottom:904.830000px;}
.y180{bottom:905.730000px;}
.y149{bottom:908.070000px;}
.yc{bottom:911.490000px;}
.y11f{bottom:918.330000px;}
.yf4{bottom:920.670000px;}
.yc3{bottom:922.470000px;}
.y161{bottom:922.830000px;}
.y9b{bottom:923.730000px;}
.ye1{bottom:924.795000px;}
.y57{bottom:925.530000px;}
.y75{bottom:925.710000px;}
.yb{bottom:937.230000px;}
.y33{bottom:943.530000px;}
.y17f{bottom:944.250000px;}
.y56{bottom:946.230000px;}
.y74{bottom:946.410000px;}
.y148{bottom:946.950000px;}
.yc2{bottom:950.550000px;}
.yf3{bottom:957.030000px;}
.y11b{bottom:960.435000px;}
.y118{bottom:960.450000px;}
.y9a{bottom:962.430000px;}
.y32{bottom:964.230000px;}
.y55{bottom:966.930000px;}
.y147{bottom:967.650000px;}
.yc1{bottom:979.350000px;}
.yf2{bottom:982.950000px;}
.y99{bottom:983.130000px;}
.y31{bottom:984.930000px;}
.y73{bottom:985.110000px;}
.y146{bottom:988.350000px;}
.ya{bottom:989.790000px;}
.y98{bottom:1003.830000px;}
.ydf{bottom:1005.255000px;}
.y30{bottom:1005.630000px;}
.y72{bottom:1005.810000px;}
.yc0{bottom:1007.610000px;}
.yf1{bottom:1008.870000px;}
.y145{bottom:1009.050000px;}
.y160{bottom:1023.630000px;}
.y116{bottom:1023.975000px;}
.y110{bottom:1023.990000px;}
.y9{bottom:1024.170000px;}
.y97{bottom:1024.530000px;}
.y2f{bottom:1026.330000px;}
.y71{bottom:1026.510000px;}
.yf0{bottom:1034.790000px;}
.ybf{bottom:1037.490000px;}
.y144{bottom:1043.970000px;}
.y15f{bottom:1044.330000px;}
.y96{bottom:1045.230000px;}
.y2e{bottom:1047.030000px;}
.yee{bottom:1060.890000px;}
.y54{bottom:1065.030000px;}
.y143{bottom:1065.390000px;}
.y95{bottom:1065.930000px;}
.y8{bottom:1076.730000px;}
.y2d{bottom:1085.730000px;}
.y70{bottom:1104.990000px;}
.y10f{bottom:1106.250000px;}
.y2c{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h19{height:19.260000px;}
.h34{height:20.685000px;}
.h31{height:20.700000px;}
.h35{height:20.722500px;}
.h33{height:20.730000px;}
.h22{height:25.185000px;}
.h11{height:27.945000px;}
.h20{height:37.080000px;}
.hc{height:37.494141px;}
.h1a{height:38.340000px;}
.h2b{height:41.385000px;}
.h30{height:41.395500px;}
.h2f{height:41.400000px;}
.h2e{height:41.422500px;}
.h6{height:41.756133px;}
.h4{height:45.184219px;}
.h21{height:47.344922px;}
.h1f{height:48.616875px;}
.h16{height:49.992188px;}
.hf{height:50.027344px;}
.h5{height:53.640000px;}
.h1e{height:58.320000px;}
.h12{height:58.621992px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h24{height:62.085000px;}
.h25{height:62.091000px;}
.h26{height:62.100000px;}
.h27{height:62.805000px;}
.h28{height:62.811000px;}
.h29{height:62.820000px;}
.h32{height:62.850000px;}
.h18{height:66.757500px;}
.h14{height:70.628906px;}
.he{height:70.664062px;}
.h10{height:72.562500px;}
.h1d{height:72.562522px;}
.h1c{height:72.562525px;}
.h36{height:73.775391px;}
.h15{height:74.004654px;}
.h13{height:76.279219px;}
.ha{height:76.317188px;}
.hd{height:78.367500px;}
.h8{height:81.490781px;}
.h9{height:82.676953px;}
.h2a{height:83.505000px;}
.h2c{height:83.511000px;}
.h2d{height:83.520000px;}
.h23{height:84.898125px;}
.h7{height:121.179375px;}
.h1b{height:170.310000px;}
.h17{height:270.570000px;}
.hb{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:33.285000px;}
.wa{width:33.480000px;}
.w7{width:39.780000px;}
.wc{width:46.836000px;}
.w27{width:52.371000px;}
.w2a{width:62.985000px;}
.w29{width:63.021000px;}
.w9{width:68.421000px;}
.w16{width:74.511000px;}
.w26{width:79.005000px;}
.w24{width:82.605000px;}
.w22{width:82.800000px;}
.w23{width:82.836000px;}
.w25{width:87.681000px;}
.w20{width:94.671000px;}
.w1d{width:99.525000px;}
.w1a{width:99.535500px;}
.w1b{width:99.540000px;}
.w15{width:105.465000px;}
.w12{width:105.471000px;}
.w13{width:105.480000px;}
.w1e{width:109.461000px;}
.w1c{width:109.462500px;}
.wb{width:112.500000px;}
.w19{width:112.896000px;}
.w21{width:114.141000px;}
.w2{width:125.460000px;}
.wd{width:140.745000px;}
.w17{width:155.355000px;}
.w11{width:180.015000px;}
.w10{width:180.030000px;}
.w14{width:180.045000px;}
.w8{width:216.750000px;}
.w6{width:223.575000px;}
.wf{width:230.601000px;}
.w1f{width:237.075000px;}
.w5{width:275.250000px;}
.w18{width:312.321000px;}
.w4{width:333.030000px;}
.w28{width:435.300000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:7.725000px;}
.x27{left:9.180000px;}
.x14{left:10.791000px;}
.x2e{left:12.225000px;}
.x2d{left:14.220000px;}
.x19{left:15.465000px;}
.x1b{left:16.731000px;}
.x45{left:18.165000px;}
.x35{left:20.160000px;}
.x4c{left:21.225000px;}
.x3e{left:22.485000px;}
.x20{left:23.565000px;}
.x36{left:25.740000px;}
.x49{left:26.820000px;}
.x17{left:30.225000px;}
.x2f{left:32.205000px;}
.x30{left:34.185000px;}
.x2c{left:35.280000px;}
.x3c{left:36.900000px;}
.x3b{left:39.060000px;}
.x1c{left:41.025000px;}
.x3a{left:44.985000px;}
.x39{left:48.075000px;}
.x2{left:50.399998px;}
.x33{left:53.805000px;}
.x1f{left:55.065000px;}
.x46{left:63.345000px;}
.x31{left:70.185000px;}
.x15{left:76.665000px;}
.x44{left:85.845000px;}
.x21{left:88.725000px;}
.x40{left:94.665000px;}
.x13{left:99.585000px;}
.x1e{left:108.345000px;}
.x22{left:111.765000px;}
.x1a{left:117.405000px;}
.x1{left:127.656000px;}
.x12{left:133.056000px;}
.x47{left:136.485000px;}
.x50{left:138.645000px;}
.x10{left:148.896000px;}
.x4{left:151.410000px;}
.xf{left:159.510000px;}
.x5{left:166.170000px;}
.x18{left:178.605000px;}
.xe{left:180.750000px;}
.x52{left:187.050000px;}
.x51{left:191.745000px;}
.x3d{left:203.625000px;}
.x4f{left:214.410000px;}
.x24{left:226.845000px;}
.x48{left:231.885000px;}
.xd{left:244.290000px;}
.xb{left:245.910000px;}
.x7{left:247.530000px;}
.x3f{left:269.130000px;}
.x32{left:278.670000px;}
.x16{left:289.470000px;}
.x26{left:295.995000px;}
.x28{left:330.195000px;}
.x11{left:343.695000px;}
.x23{left:346.935000px;}
.x34{left:359.715000px;}
.x6{left:369.975000px;}
.x8{left:395.715000px;}
.xc{left:406.335000px;}
.x4a{left:430.275000px;}
.x41{left:441.435000px;}
.x29{left:443.595000px;}
.x3{left:457.275000px;}
.x2a{left:491.340000px;}
.x9{left:511.822500px;}
.x4b{left:514.020000px;}
.xa{left:518.685000px;}
.x37{left:540.660000px;}
.x42{left:555.060000px;}
.x1d{left:566.400000px;}
.x4d{left:597.360000px;}
.x53{left:627.780000px;}
.x2b{left:633.000000px;}
.x43{left:655.320000px;}
.x4e{left:685.770000px;}
.x54{left:691.530000px;}
.x38{left:721.410000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-1.920000pt;}
.ls1f{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.023040pt;}
.lsb{letter-spacing:-0.015360pt;}
.lsc{letter-spacing:-0.007680pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.011520pt;}
.ls5{letter-spacing:0.015360pt;}
.ls10{letter-spacing:0.023040pt;}
.ls9{letter-spacing:0.030720pt;}
.ls1e{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.136533pt;}
.ls7{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.192000pt;}
.ls1d{letter-spacing:0.271360pt;}
.ls2{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls11{letter-spacing:1.280000pt;}
.ls1c{letter-spacing:5.391360pt;}
.lsf{letter-spacing:69.248000pt;}
.ls14{letter-spacing:176.000000pt;}
.ls15{letter-spacing:1061.258667pt;}
.ls13{letter-spacing:1069.578667pt;}
.wsb{word-spacing:-64.000000pt;}
.wsf{word-spacing:-58.880000pt;}
.ws3{word-spacing:-17.310720pt;}
.ws4{word-spacing:-17.295360pt;}
.ws2{word-spacing:-17.287680pt;}
.wsd{word-spacing:-17.280000pt;}
.ws6{word-spacing:-17.272320pt;}
.ws5{word-spacing:-17.264640pt;}
.ws14{word-spacing:-16.640000pt;}
.ws10{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws12{word-spacing:-16.064000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws13{word-spacing:-15.296000pt;}
.wse{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.416533pt;}
.ws1{word-spacing:-13.280000pt;}
.ws7{word-spacing:0.000000pt;}
._1b{margin-left:-75.541333pt;}
._10{margin-left:-4.352000pt;}
._11{margin-left:-3.374507pt;}
._13{margin-left:-1.955840pt;}
._3{margin-left:-0.998613pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._9{width:3.236267pt;}
._5{width:4.840747pt;}
._6{width:6.167253pt;}
._c{width:7.144747pt;}
._f{width:8.064000pt;}
._7{width:8.960000pt;}
._8{width:9.856000pt;}
._14{width:11.328000pt;}
._12{width:12.480000pt;}
._d{width:13.440000pt;}
._e{width:14.641920pt;}
._a{width:17.088000pt;}
._b{width:17.987840pt;}
._15{width:19.302613pt;}
._21{width:20.938453pt;}
._17{width:21.888000pt;}
._18{width:22.848000pt;}
._22{width:24.078293pt;}
._16{width:25.066667pt;}
._23{width:26.225280pt;}
._19{width:33.664000pt;}
._1a{width:34.680960pt;}
._24{width:37.098667pt;}
._1f{width:45.696000pt;}
._20{width:47.459840pt;}
._1d{width:100.458667pt;}
._1e{width:176.000000pt;}
._2{width:473.120000pt;}
._1c{width:1051.658667pt;}
._4{width:1345.386667pt;}
.fs7{font-size:34.560000pt;}
.fs9{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fsa{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.yed{bottom:-13.466667pt;}
.y0{bottom:0.000000pt;}
.yec{bottom:0.173333pt;}
.ye0{bottom:2.253333pt;}
.y113{bottom:4.000000pt;}
.y135{bottom:4.026667pt;}
.y12a{bottom:4.040000pt;}
.ye9{bottom:6.093333pt;}
.yef{bottom:8.000000pt;}
.ye2{bottom:11.213333pt;}
.y136{bottom:13.120000pt;}
.y127{bottom:13.160000pt;}
.y115{bottom:13.280000pt;}
.y117{bottom:13.293333pt;}
.y133{bottom:13.440000pt;}
.y124{bottom:13.453333pt;}
.y11c{bottom:13.613333pt;}
.yeb{bottom:18.573333pt;}
.y111{bottom:22.400000pt;}
.y129{bottom:22.426667pt;}
.y119{bottom:22.720000pt;}
.y121{bottom:22.733333pt;}
.ybe{bottom:24.466667pt;}
.ye8{bottom:24.973333pt;}
.y114{bottom:31.680000pt;}
.y125{bottom:31.840000pt;}
.y123{bottom:31.853333pt;}
.y11a{bottom:32.000000pt;}
.y7{bottom:34.912000pt;}
.ye4{bottom:38.746667pt;}
.y112{bottom:40.800000pt;}
.y11e{bottom:41.120000pt;}
.ye7{bottom:42.093333pt;}
.ye5{bottom:44.986667pt;}
.y122{bottom:50.240000pt;}
.y6{bottom:52.032000pt;}
.ybd{bottom:56.946667pt;}
.ybc{bottom:90.906667pt;}
.y2b{bottom:116.832000pt;}
.y53{bottom:118.752000pt;}
.yde{bottom:119.392000pt;}
.y2a{bottom:121.472000pt;}
.y6f{bottom:122.432000pt;}
.ybb{bottom:124.826667pt;}
.y15e{bottom:125.152000pt;}
.y1af{bottom:131.392000pt;}
.y29{bottom:133.626667pt;}
.y17e{bottom:135.386667pt;}
.y52{bottom:137.146667pt;}
.y94{bottom:138.746667pt;}
.y10e{bottom:139.546667pt;}
.y142{bottom:140.026667pt;}
.y15d{bottom:143.546667pt;}
.y1ae{bottom:149.786667pt;}
.ydd{bottom:153.786667pt;}
.y51{bottom:155.546667pt;}
.y93{bottom:157.146667pt;}
.y6e{bottom:157.946667pt;}
.yba{bottom:158.746667pt;}
.yb6{bottom:159.546667pt;}
.y28{bottom:161.146667pt;}
.y1ad{bottom:168.186667pt;}
.y50{bottom:173.946667pt;}
.y10d{bottom:174.106667pt;}
.y141{bottom:174.586667pt;}
.y92{bottom:175.546667pt;}
.yb5{bottom:177.946667pt;}
.y27{bottom:179.546667pt;}
.y198{bottom:187.546667pt;}
.ydc{bottom:188.026667pt;}
.y17d{bottom:188.186667pt;}
.y4f{bottom:192.346667pt;}
.yb9{bottom:192.666667pt;}
.y140{bottom:192.986667pt;}
.y6d{bottom:193.466667pt;}
.y91{bottom:193.946667pt;}
.y15c{bottom:196.346667pt;}
.y1ac{bottom:202.586667pt;}
.y197{bottom:205.946667pt;}
.y17c{bottom:206.586667pt;}
.y10c{bottom:209.786667pt;}
.y4e{bottom:210.746667pt;}
.y90{bottom:212.346667pt;}
.y26{bottom:213.786667pt;}
.y15b{bottom:214.746667pt;}
.y1ab{bottom:220.986667pt;}
.ydb{bottom:222.586667pt;}
.y196{bottom:224.346667pt;}
.y17b{bottom:224.986667pt;}
.yb8{bottom:226.586667pt;}
.y13f{bottom:227.386667pt;}
.y10b{bottom:228.186667pt;}
.y6c{bottom:229.146667pt;}
.y8f{bottom:230.746667pt;}
.y15a{bottom:233.146667pt;}
.y1aa{bottom:239.386667pt;}
.yda{bottom:240.986667pt;}
.y17a{bottom:243.426667pt;}
.y4d{bottom:245.186667pt;}
.y13e{bottom:245.826667pt;}
.y10a{bottom:246.466667pt;}
.y6b{bottom:247.586667pt;}
.y8e{bottom:249.186667pt;}
.y25{bottom:249.346667pt;}
.y195{bottom:258.786667pt;}
.yd9{bottom:259.426667pt;}
.y179{bottom:261.826667pt;}
.y4c{bottom:263.586667pt;}
.y24{bottom:264.706667pt;}
.yb4{bottom:265.186667pt;}
.y8d{bottom:267.586667pt;}
.y1a9{bottom:273.826667pt;}
.y194{bottom:277.186667pt;}
.yd8{bottom:277.826667pt;}
.y23{bottom:279.906667pt;}
.y178{bottom:280.226667pt;}
.y13d{bottom:280.386667pt;}
.y4b{bottom:281.986667pt;}
.y109{bottom:282.146667pt;}
.y159{bottom:285.986667pt;}
.y1a8{bottom:292.226667pt;}
.yb3{bottom:299.586667pt;}
.y4a{bottom:300.386667pt;}
.y108{bottom:300.546667pt;}
.y8c{bottom:301.986667pt;}
.y158{bottom:304.386667pt;}
.y193{bottom:311.586667pt;}
.y22{bottom:311.906667pt;}
.yd7{bottom:312.546667pt;}
.y177{bottom:314.626667pt;}
.y13c{bottom:316.066667pt;}
.yb2{bottom:317.986667pt;}
.y49{bottom:318.786667pt;}
.y8b{bottom:320.386667pt;}
.y1a7{bottom:326.626667pt;}
.y192{bottom:329.986667pt;}
.y21{bottom:330.306667pt;}
.y176{bottom:333.026667pt;}
.y107{bottom:335.266667pt;}
.y6a{bottom:337.186667pt;}
.y8a{bottom:338.786667pt;}
.y1a6{bottom:345.026667pt;}
.yd6{bottom:348.226667pt;}
.y13b{bottom:350.466667pt;}
.y175{bottom:351.426667pt;}
.yb1{bottom:352.386667pt;}
.y48{bottom:353.506667pt;}
.y69{bottom:355.586667pt;}
.y89{bottom:357.186667pt;}
.y1a5{bottom:363.426667pt;}
.y191{bottom:364.386667pt;}
.y20{bottom:366.306667pt;}
.yd5{bottom:366.626667pt;}
.y13a{bottom:368.866667pt;}
.y174{bottom:369.826667pt;}
.yb0{bottom:370.786667pt;}
.y106{bottom:370.946667pt;}
.y88{bottom:375.586667pt;}
.y190{bottom:382.786667pt;}
.y1f{bottom:384.706667pt;}
.yd4{bottom:385.026667pt;}
.y139{bottom:387.266667pt;}
.y173{bottom:388.226667pt;}
.y47{bottom:388.866667pt;}
.y105{bottom:389.346667pt;}
.y68{bottom:390.306667pt;}
.y87{bottom:393.986667pt;}
.y1a4{bottom:397.826667pt;}
.y1e{bottom:403.106667pt;}
.yd3{bottom:403.426667pt;}
.yaf{bottom:405.186667pt;}
.y138{bottom:405.666667pt;}
.y104{bottom:407.746667pt;}
.y157{bottom:412.386667pt;}
.y1a3{bottom:416.226667pt;}
.y18f{bottom:417.186667pt;}
.y1d{bottom:421.506667pt;}
.yd2{bottom:421.826667pt;}
.y172{bottom:422.626667pt;}
.yae{bottom:423.586667pt;}
.y46{bottom:425.026667pt;}
.y67{bottom:425.986667pt;}
.y103{bottom:426.146667pt;}
.y86{bottom:428.386667pt;}
.y1a2{bottom:434.626667pt;}
.y18e{bottom:435.426667pt;}
.y137{bottom:436.706667pt;}
.y1c{bottom:439.906667pt;}
.yd1{bottom:440.226667pt;}
.y171{bottom:441.026667pt;}
.y45{bottom:443.426667pt;}
.y66{bottom:444.386667pt;}
.y85{bottom:446.786667pt;}
.y132{bottom:455.906667pt;}
.yad{bottom:457.986667pt;}
.y1b{bottom:458.306667pt;}
.yd0{bottom:458.626667pt;}
.y170{bottom:459.426667pt;}
.y102{bottom:460.226667pt;}
.y44{bottom:461.826667pt;}
.y65{bottom:462.786667pt;}
.y84{bottom:465.186667pt;}
.y1a1{bottom:469.026667pt;}
.y18d{bottom:469.826667pt;}
.yac{bottom:476.386667pt;}
.y1a{bottom:476.706667pt;}
.ycf{bottom:477.026667pt;}
.y16f{bottom:477.826667pt;}
.y43{bottom:480.226667pt;}
.y64{bottom:481.186667pt;}
.y156{bottom:483.426667pt;}
.y83{bottom:483.586667pt;}
.y1a0{bottom:487.426667pt;}
.y134{bottom:493.346667pt;}
.yab{bottom:494.813333pt;}
.y19{bottom:495.133333pt;}
.yce{bottom:495.453333pt;}
.y16e{bottom:496.253333pt;}
.y101{bottom:496.413333pt;}
.y42{bottom:498.653333pt;}
.y63{bottom:499.453333pt;}
.y155{bottom:501.853333pt;}
.y18c{bottom:504.253333pt;}
.y131{bottom:512.413333pt;}
.yaa{bottom:513.213333pt;}
.y18{bottom:513.533333pt;}
.ycd{bottom:513.853333pt;}
.y16d{bottom:514.653333pt;}
.y100{bottom:514.813333pt;}
.y41{bottom:517.053333pt;}
.y82{bottom:518.013333pt;}
.y19f{bottom:521.853333pt;}
.y18b{bottom:522.653333pt;}
.ya9{bottom:531.453333pt;}
.y17{bottom:531.933333pt;}
.y16c{bottom:533.053333pt;}
.y62{bottom:533.853333pt;}
.y154{bottom:536.093333pt;}
.y81{bottom:536.413333pt;}
.y19e{bottom:540.253333pt;}
.ycc{bottom:548.413333pt;}
.yff{bottom:549.213333pt;}
.y16{bottom:550.333333pt;}
.y40{bottom:551.453333pt;}
.y61{bottom:552.253333pt;}
.y18a{bottom:557.053333pt;}
.ya8{bottom:565.853333pt;}
.yfe{bottom:567.613333pt;}
.y15{bottom:568.733333pt;}
.y3f{bottom:569.853333pt;}
.y60{bottom:570.653333pt;}
.y80{bottom:570.813333pt;}
.y153{bottom:572.253333pt;}
.y19d{bottom:574.653333pt;}
.y189{bottom:575.453333pt;}
.ycb{bottom:583.933333pt;}
.ya7{bottom:584.253333pt;}
.y16b{bottom:585.853333pt;}
.yfd{bottom:586.013333pt;}
.y130{bottom:586.173333pt;}
.y3e{bottom:588.253333pt;}
.y5f{bottom:589.053333pt;}
.y7f{bottom:589.213333pt;}
.y152{bottom:590.653333pt;}
.y19c{bottom:593.053333pt;}
.y188{bottom:593.853333pt;}
.ya6{bottom:602.653333pt;}
.y14{bottom:602.973333pt;}
.y16a{bottom:604.253333pt;}
.y3d{bottom:606.653333pt;}
.y5e{bottom:607.453333pt;}
.y7e{bottom:607.613333pt;}
.y151{bottom:609.053333pt;}
.yfc{bottom:620.413333pt;}
.y12f{bottom:620.733333pt;}
.ya5{bottom:621.053333pt;}
.y3c{bottom:625.053333pt;}
.y7d{bottom:626.013333pt;}
.y150{bottom:627.453333pt;}
.y187{bottom:628.253333pt;}
.yca{bottom:629.053333pt;}
.y169{bottom:638.653333pt;}
.y13{bottom:638.813333pt;}
.y12e{bottom:639.133333pt;}
.ya4{bottom:639.453333pt;}
.y5d{bottom:642.173333pt;}
.y14f{bottom:645.853333pt;}
.y186{bottom:646.653333pt;}
.yc9{bottom:656.413333pt;}
.y168{bottom:657.053333pt;}
.yfb{bottom:657.213333pt;}
.y12d{bottom:657.373333pt;}
.y3b{bottom:659.453333pt;}
.y7c{bottom:660.413333pt;}
.y19b{bottom:661.853333pt;}
.y14e{bottom:664.253333pt;}
.ya3{bottom:673.853333pt;}
.y12{bottom:675.293333pt;}
.y167{bottom:675.453333pt;}
.yfa{bottom:675.613333pt;}
.y3a{bottom:677.853333pt;}
.y7b{bottom:678.813333pt;}
.y19a{bottom:680.253333pt;}
.y185{bottom:681.053333pt;}
.yb7{bottom:682.346667pt;}
.yc8{bottom:683.933333pt;}
.y12c{bottom:691.773333pt;}
.ya2{bottom:692.253333pt;}
.y166{bottom:693.853333pt;}
.yf9{bottom:694.013333pt;}
.y14d{bottom:695.293333pt;}
.y11{bottom:695.453333pt;}
.y5c{bottom:696.253333pt;}
.y7a{bottom:697.213333pt;}
.y199{bottom:698.653333pt;}
.y184{bottom:699.453333pt;}
.y12b{bottom:710.173333pt;}
.ya1{bottom:710.653333pt;}
.yc7{bottom:711.613333pt;}
.y39{bottom:712.253333pt;}
.yf8{bottom:712.413333pt;}
.y5b{bottom:714.653333pt;}
.y79{bottom:715.613333pt;}
.ye3{bottom:722.346667pt;}
.ya0{bottom:729.053333pt;}
.y38{bottom:730.653333pt;}
.yf7{bottom:730.813333pt;}
.y10{bottom:732.573333pt;}
.y14c{bottom:732.733333pt;}
.y5a{bottom:733.053333pt;}
.y183{bottom:733.853333pt;}
.y78{bottom:734.013333pt;}
.yc6{bottom:739.133333pt;}
.y126{bottom:741.373333pt;}
.y128{bottom:741.386667pt;}
.y165{bottom:746.693333pt;}
.y9f{bottom:747.493333pt;}
.y37{bottom:749.093333pt;}
.y59{bottom:751.493333pt;}
.y14b{bottom:751.813333pt;}
.y182{bottom:752.293333pt;}
.y77{bottom:752.453333pt;}
.ye{bottom:752.933333pt;}
.yea{bottom:754.040000pt;}
.yf{bottom:759.653333pt;}
.y164{bottom:765.093333pt;}
.yf6{bottom:765.253333pt;}
.y9e{bottom:765.893333pt;}
.yc5{bottom:766.853333pt;}
.y36{bottom:767.493333pt;}
.y58{bottom:769.893333pt;}
.y14a{bottom:771.013333pt;}
.y120{bottom:778.840000pt;}
.y11d{bottom:778.853333pt;}
.y163{bottom:783.493333pt;}
.yf5{bottom:783.653333pt;}
.y9d{bottom:784.293333pt;}
.y35{bottom:785.893333pt;}
.y181{bottom:786.693333pt;}
.y76{bottom:787.173333pt;}
.y1b0{bottom:788.293333pt;}
.yd{bottom:790.053333pt;}
.yc4{bottom:794.373333pt;}
.ye6{bottom:799.480000pt;}
.y162{bottom:801.893333pt;}
.y9c{bottom:802.693333pt;}
.y34{bottom:804.293333pt;}
.y180{bottom:805.093333pt;}
.y149{bottom:807.173333pt;}
.yc{bottom:810.213333pt;}
.y11f{bottom:816.293333pt;}
.yf4{bottom:818.373333pt;}
.yc3{bottom:819.973333pt;}
.y161{bottom:820.293333pt;}
.y9b{bottom:821.093333pt;}
.ye1{bottom:822.040000pt;}
.y57{bottom:822.693333pt;}
.y75{bottom:822.853333pt;}
.yb{bottom:833.093333pt;}
.y33{bottom:838.693333pt;}
.y17f{bottom:839.333333pt;}
.y56{bottom:841.093333pt;}
.y74{bottom:841.253333pt;}
.y148{bottom:841.733333pt;}
.yc2{bottom:844.933333pt;}
.yf3{bottom:850.693333pt;}
.y11b{bottom:853.720000pt;}
.y118{bottom:853.733333pt;}
.y9a{bottom:855.493333pt;}
.y32{bottom:857.093333pt;}
.y55{bottom:859.493333pt;}
.y147{bottom:860.133333pt;}
.yc1{bottom:870.533333pt;}
.yf2{bottom:873.733333pt;}
.y99{bottom:873.893333pt;}
.y31{bottom:875.493333pt;}
.y73{bottom:875.653333pt;}
.y146{bottom:878.533333pt;}
.ya{bottom:879.813333pt;}
.y98{bottom:892.293333pt;}
.ydf{bottom:893.560000pt;}
.y30{bottom:893.893333pt;}
.y72{bottom:894.053333pt;}
.yc0{bottom:895.653333pt;}
.yf1{bottom:896.773333pt;}
.y145{bottom:896.933333pt;}
.y160{bottom:909.893333pt;}
.y116{bottom:910.200000pt;}
.y110{bottom:910.213333pt;}
.y9{bottom:910.373333pt;}
.y97{bottom:910.693333pt;}
.y2f{bottom:912.293333pt;}
.y71{bottom:912.453333pt;}
.yf0{bottom:919.813333pt;}
.ybf{bottom:922.213333pt;}
.y144{bottom:927.973333pt;}
.y15f{bottom:928.293333pt;}
.y96{bottom:929.093333pt;}
.y2e{bottom:930.693333pt;}
.yee{bottom:943.013333pt;}
.y54{bottom:946.693333pt;}
.y143{bottom:947.013333pt;}
.y95{bottom:947.493333pt;}
.y8{bottom:957.093333pt;}
.y2d{bottom:965.093333pt;}
.y70{bottom:982.213333pt;}
.y10f{bottom:983.333333pt;}
.y2c{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h19{height:17.120000pt;}
.h34{height:18.386667pt;}
.h31{height:18.400000pt;}
.h35{height:18.420000pt;}
.h33{height:18.426667pt;}
.h22{height:22.386667pt;}
.h11{height:24.840000pt;}
.h20{height:32.960000pt;}
.hc{height:33.328125pt;}
.h1a{height:34.080000pt;}
.h2b{height:36.786667pt;}
.h30{height:36.796000pt;}
.h2f{height:36.800000pt;}
.h2e{height:36.820000pt;}
.h6{height:37.116563pt;}
.h4{height:40.163750pt;}
.h21{height:42.084375pt;}
.h1f{height:43.215000pt;}
.h16{height:44.437500pt;}
.hf{height:44.468750pt;}
.h5{height:47.680000pt;}
.h1e{height:51.840000pt;}
.h12{height:52.108438pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h24{height:55.186667pt;}
.h25{height:55.192000pt;}
.h26{height:55.200000pt;}
.h27{height:55.826667pt;}
.h28{height:55.832000pt;}
.h29{height:55.840000pt;}
.h32{height:55.866667pt;}
.h18{height:59.340000pt;}
.h14{height:62.781250pt;}
.he{height:62.812500pt;}
.h10{height:64.500000pt;}
.h1d{height:64.500020pt;}
.h1c{height:64.500022pt;}
.h36{height:65.578125pt;}
.h15{height:65.781915pt;}
.h13{height:67.803750pt;}
.ha{height:67.837500pt;}
.hd{height:69.660000pt;}
.h8{height:72.436250pt;}
.h9{height:73.490625pt;}
.h2a{height:74.226667pt;}
.h2c{height:74.232000pt;}
.h2d{height:74.240000pt;}
.h23{height:75.465000pt;}
.h7{height:107.715000pt;}
.h1b{height:151.386667pt;}
.h17{height:240.506667pt;}
.hb{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:29.586667pt;}
.wa{width:29.760000pt;}
.w7{width:35.360000pt;}
.wc{width:41.632000pt;}
.w27{width:46.552000pt;}
.w2a{width:55.986667pt;}
.w29{width:56.018667pt;}
.w9{width:60.818667pt;}
.w16{width:66.232000pt;}
.w26{width:70.226667pt;}
.w24{width:73.426667pt;}
.w22{width:73.600000pt;}
.w23{width:73.632000pt;}
.w25{width:77.938667pt;}
.w20{width:84.152000pt;}
.w1d{width:88.466667pt;}
.w1a{width:88.476000pt;}
.w1b{width:88.480000pt;}
.w15{width:93.746667pt;}
.w12{width:93.752000pt;}
.w13{width:93.760000pt;}
.w1e{width:97.298667pt;}
.w1c{width:97.300000pt;}
.wb{width:100.000000pt;}
.w19{width:100.352000pt;}
.w21{width:101.458667pt;}
.w2{width:111.520000pt;}
.wd{width:125.106667pt;}
.w17{width:138.093333pt;}
.w11{width:160.013333pt;}
.w10{width:160.026667pt;}
.w14{width:160.040000pt;}
.w8{width:192.666667pt;}
.w6{width:198.733333pt;}
.wf{width:204.978667pt;}
.w1f{width:210.733333pt;}
.w5{width:244.666667pt;}
.w18{width:277.618667pt;}
.w4{width:296.026667pt;}
.w28{width:386.933333pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.866667pt;}
.x27{left:8.160000pt;}
.x14{left:9.592000pt;}
.x2e{left:10.866667pt;}
.x2d{left:12.640000pt;}
.x19{left:13.746667pt;}
.x1b{left:14.872000pt;}
.x45{left:16.146667pt;}
.x35{left:17.920000pt;}
.x4c{left:18.866667pt;}
.x3e{left:19.986667pt;}
.x20{left:20.946667pt;}
.x36{left:22.880000pt;}
.x49{left:23.840000pt;}
.x17{left:26.866667pt;}
.x2f{left:28.626667pt;}
.x30{left:30.386667pt;}
.x2c{left:31.360000pt;}
.x3c{left:32.800000pt;}
.x3b{left:34.720000pt;}
.x1c{left:36.466667pt;}
.x3a{left:39.986667pt;}
.x39{left:42.733333pt;}
.x2{left:44.799998pt;}
.x33{left:47.826667pt;}
.x1f{left:48.946667pt;}
.x46{left:56.306667pt;}
.x31{left:62.386667pt;}
.x15{left:68.146667pt;}
.x44{left:76.306667pt;}
.x21{left:78.866667pt;}
.x40{left:84.146667pt;}
.x13{left:88.520000pt;}
.x1e{left:96.306667pt;}
.x22{left:99.346667pt;}
.x1a{left:104.360000pt;}
.x1{left:113.472000pt;}
.x12{left:118.272000pt;}
.x47{left:121.320000pt;}
.x50{left:123.240000pt;}
.x10{left:132.352000pt;}
.x4{left:134.586667pt;}
.xf{left:141.786667pt;}
.x5{left:147.706667pt;}
.x18{left:158.760000pt;}
.xe{left:160.666667pt;}
.x52{left:166.266667pt;}
.x51{left:170.440000pt;}
.x3d{left:181.000000pt;}
.x4f{left:190.586667pt;}
.x24{left:201.640000pt;}
.x48{left:206.120000pt;}
.xd{left:217.146667pt;}
.xb{left:218.586667pt;}
.x7{left:220.026667pt;}
.x3f{left:239.226667pt;}
.x32{left:247.706667pt;}
.x16{left:257.306667pt;}
.x26{left:263.106667pt;}
.x28{left:293.506667pt;}
.x11{left:305.506667pt;}
.x23{left:308.386667pt;}
.x34{left:319.746667pt;}
.x6{left:328.866667pt;}
.x8{left:351.746667pt;}
.xc{left:361.186667pt;}
.x4a{left:382.466667pt;}
.x41{left:392.386667pt;}
.x29{left:394.306667pt;}
.x3{left:406.466667pt;}
.x2a{left:436.746667pt;}
.x9{left:454.953333pt;}
.x4b{left:456.906667pt;}
.xa{left:461.053333pt;}
.x37{left:480.586667pt;}
.x42{left:493.386667pt;}
.x1d{left:503.466667pt;}
.x4d{left:530.986667pt;}
.x53{left:558.026667pt;}
.x2b{left:562.666667pt;}
.x43{left:582.506667pt;}
.x4e{left:609.573333pt;}
.x54{left:614.693333pt;}
.x38{left:641.253333pt;}
}




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