
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_c0145a2670501cdd8388d60e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4b1ca9d8f8665c551455405b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3ebaaacb37eec2ba49d593c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_67fd071922806c46af0cd144.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4a91002731937de81c1a7a8b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_04660f8bddc86163b94e5548.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933594;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_e21da7d95baebf9c22156a8b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_58985701b4c755d552b4c977.woff2')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_fe22ff841ee2427617ef0c2a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2b3693223710cc886174f68a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.640625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.160000px;}
.v6{vertical-align:14.400000px;}
.v5{vertical-align:18.000000px;}
.v3{vertical-align:23.760000px;}
.v7{vertical-align:32.400000px;}
.v4{vertical-align:39.600000px;}
.ls29{letter-spacing:-1.134000px;}
.ls1b{letter-spacing:-0.870000px;}
.ls7{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.642000px;}
.ls8{letter-spacing:-0.457800px;}
.ls1d{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.334200px;}
.ls22{letter-spacing:-0.305400px;}
.lsa{letter-spacing:-0.274800px;}
.ls1e{letter-spacing:-0.109200px;}
.ls1f{letter-spacing:-0.089400px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.048960px;}
.ls23{letter-spacing:0.080400px;}
.ls2a{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.109440px;}
.ls16{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.152400px;}
.ls4{letter-spacing:0.238080px;}
.ls3{letter-spacing:0.262080px;}
.lsb{letter-spacing:0.262200px;}
.lse{letter-spacing:0.302400px;}
.ls14{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.501120px;}
.lsd{letter-spacing:0.547200px;}
.ls20{letter-spacing:2.160000px;}
.ls12{letter-spacing:2.309040px;}
.ls9{letter-spacing:3.240000px;}
.ls18{letter-spacing:6.480000px;}
.ls2b{letter-spacing:6.785280px;}
.ls28{letter-spacing:9.360000px;}
.ls21{letter-spacing:12.240000px;}
.ls25{letter-spacing:12.960000px;}
.ls11{letter-spacing:13.878720px;}
.ls24{letter-spacing:19.800000px;}
.ls19{letter-spacing:28.080000px;}
.ls26{letter-spacing:39.905280px;}
.ls10{letter-spacing:43.826400px;}
.ls1a{letter-spacing:53.976000px;}
.ls17{letter-spacing:56.465280px;}
.lsc{letter-spacing:59.345280px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.ws9{word-spacing:-66.240000px;}
.ws13{word-spacing:-28.987200px;}
.ws8{word-spacing:-28.712400px;}
.ws1{word-spacing:-18.000000px;}
.wsa{word-spacing:-16.865400px;}
.wse{word-spacing:-16.712400px;}
.ws3{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.450800px;}
.ws15{word-spacing:-16.254600px;}
.wsf{word-spacing:-16.145400px;}
.ws4{word-spacing:-15.840000px;}
.ws14{word-spacing:-15.426000px;}
.ws0{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.572800px;}
.wsd{word-spacing:-14.238600px;}
.ws7{word-spacing:-13.939200px;}
.ws6{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.ws11{word-spacing:-10.350600px;}
.ws12{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
.wsc{word-spacing:3.231720px;}
._9{margin-left:-2.104800px;}
._0{margin-left:-1.044000px;}
._1{width:1.596000px;}
._e{width:3.017280px;}
._b{width:4.777920px;}
._3{width:6.160320px;}
._4{width:8.147520px;}
._a{width:9.517440px;}
._8{width:11.380800px;}
._7{width:13.033440px;}
._11{width:14.421600px;}
._d{width:15.479040px;}
._c{width:17.423760px;}
._16{width:18.618720px;}
._14{width:20.203200px;}
._15{width:21.645600px;}
._1f{width:22.919040px;}
._1e{width:24.527520px;}
._1d{width:26.032320px;}
._22{width:27.092160px;}
._24{width:28.152000px;}
._23{width:30.006720px;}
._19{width:31.325520px;}
._f{width:32.656320px;}
._10{width:33.900000px;}
._26{width:35.391840px;}
._33{width:36.478560px;}
._1c{width:37.808160px;}
._1b{width:38.882880px;}
._1a{width:40.472640px;}
._20{width:41.532480px;}
._27{width:42.791040px;}
._29{width:43.869600px;}
._2a{width:44.976960px;}
._13{width:46.603200px;}
._12{width:48.421440px;}
._30{width:49.466400px;}
._5{width:51.667200px;}
._6{width:52.703520px;}
._21{width:54.108000px;}
._2d{width:56.061120px;}
._2c{width:57.216480px;}
._32{width:58.357440px;}
._31{width:59.630880px;}
._35{width:61.205760px;}
._34{width:62.846880px;}
._25{width:65.975040px;}
._18{width:68.272320px;}
._17{width:70.000800px;}
._39{width:72.180480px;}
._36{width:77.567040px;}
._2e{width:79.488000px;}
._2f{width:80.797920px;}
._37{width:105.056640px;}
._38{width:108.816480px;}
._3a{width:141.341280px;}
._2b{width:183.286080px;}
._2{width:961.680000px;}
._28{width:1460.536800px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc8{color:rgb(255,255,255);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs8{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.y173{bottom:13.494000px;}
.yaa{bottom:13.500000px;}
.y106{bottom:13.530000px;}
.yac{bottom:13.680000px;}
.y11e{bottom:13.860000px;}
.y119{bottom:14.040000px;}
.y131{bottom:14.580000px;}
.y13b{bottom:14.625000px;}
.y12f{bottom:14.940000px;}
.ya{bottom:20.880000px;}
.y167{bottom:27.720000px;}
.y164{bottom:27.765000px;}
.y172{bottom:28.074000px;}
.y11b{bottom:28.080000px;}
.y108{bottom:28.260000px;}
.y130{bottom:29.160000px;}
.y37{bottom:30.600000px;}
.y166{bottom:41.940000px;}
.y163{bottom:41.985000px;}
.y144{bottom:42.300000px;}
.y11d{bottom:42.330000px;}
.y15d{bottom:42.480000px;}
.y12e{bottom:43.380000px;}
.y36{bottom:46.980000px;}
.y38{bottom:48.420000px;}
.y39{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y7{bottom:53.280000px;}
.y35{bottom:63.000000px;}
.y5{bottom:68.976000px;}
.y34{bottom:79.056000px;}
.y10d{bottom:86.985000px;}
.y135{bottom:93.105000px;}
.y30{bottom:97.596000px;}
.yb3{bottom:99.936000px;}
.y121{bottom:101.160000px;}
.y175{bottom:105.156000px;}
.y182{bottom:107.496000px;}
.y104{bottom:108.396000px;}
.y5d{bottom:109.836000px;}
.y159{bottom:114.696000px;}
.y10c{bottom:115.425000px;}
.y12c{bottom:118.476000px;}
.y134{bottom:121.725000px;}
.y2f{bottom:126.036000px;}
.yb2{bottom:128.376000px;}
.yd1{bottom:131.976000px;}
.yc3{bottom:132.876000px;}
.y174{bottom:133.776000px;}
.y19f{bottom:135.936000px;}
.y181{bottom:136.116000px;}
.yea{bottom:136.836000px;}
.y69{bottom:137.196000px;}
.y5c{bottom:138.456000px;}
.y8c{bottom:142.596000px;}
.y158{bottom:143.136000px;}
.y12b{bottom:146.916000px;}
.y171{bottom:149.436000px;}
.y2e{bottom:154.470000px;}
.y103{bottom:156.090000px;}
.yb1{bottom:156.810000px;}
.yd0{bottom:160.410000px;}
.yc2{bottom:161.310000px;}
.y19e{bottom:164.550000px;}
.ye9{bottom:165.450000px;}
.y180{bottom:165.630000px;}
.y68{bottom:165.810000px;}
.y5b{bottom:166.890000px;}
.y8b{bottom:171.030000px;}
.y157{bottom:171.570000px;}
.yb0{bottom:172.470000px;}
.y12a{bottom:175.350000px;}
.y170{bottom:178.590000px;}
.y2d{bottom:182.910000px;}
.y102{bottom:184.710000px;}
.ycf{bottom:184.890000px;}
.yc1{bottom:185.790000px;}
.y19d{bottom:192.990000px;}
.ye8{bottom:193.890000px;}
.y17f{bottom:194.070000px;}
.y67{bottom:194.970000px;}
.y5a{bottom:195.330000px;}
.y8a{bottom:199.470000px;}
.y156{bottom:200.190000px;}
.yaf{bottom:201.810000px;}
.y129{bottom:203.790000px;}
.y16f{bottom:207.750000px;}
.y2c{bottom:211.350000px;}
.y101{bottom:213.150000px;}
.y19c{bottom:221.430000px;}
.ye7{bottom:222.330000px;}
.y17e{bottom:222.690000px;}
.y59{bottom:223.770000px;}
.y89{bottom:227.910000px;}
.y155{bottom:229.710000px;}
.yae{bottom:230.970000px;}
.y128{bottom:232.230000px;}
.y2b{bottom:239.790000px;}
.y100{bottom:241.590000px;}
.y14e{bottom:247.350000px;}
.y19b{bottom:249.870000px;}
.y16e{bottom:250.590000px;}
.ye6{bottom:250.770000px;}
.y17a{bottom:251.850000px;}
.y58{bottom:252.210000px;}
.y154{bottom:254.190000px;}
.y88{bottom:256.350000px;}
.yad{bottom:260.130000px;}
.y127{bottom:260.670000px;}
.y2a{bottom:268.230000px;}
.yff{bottom:270.030000px;}
.y14d{bottom:275.970000px;}
.y19a{bottom:278.310000px;}
.y16d{bottom:279.030000px;}
.ye5{bottom:279.210000px;}
.y179{bottom:280.290000px;}
.y57{bottom:280.650000px;}
.y87{bottom:284.790000px;}
.yab{bottom:289.290000px;}
.y29{bottom:296.850000px;}
.yfe{bottom:298.650000px;}
.y14c{bottom:305.490000px;}
.y199{bottom:306.750000px;}
.y16c{bottom:307.470000px;}
.ye4{bottom:307.650000px;}
.y178{bottom:308.730000px;}
.y56{bottom:309.090000px;}
.y86{bottom:313.410000px;}
.y126{bottom:318.495000px;}
.ya9{bottom:318.675000px;}
.y147{bottom:321.195000px;}
.y28{bottom:325.335000px;}
.yfd{bottom:327.855000px;}
.y120{bottom:334.515000px;}
.y198{bottom:335.235000px;}
.y16b{bottom:335.595000px;}
.ye3{bottom:336.135000px;}
.y177{bottom:337.215000px;}
.y55{bottom:337.575000px;}
.yc0{bottom:340.995000px;}
.y85{bottom:341.895000px;}
.y14b{bottom:350.355000px;}
.y27{bottom:353.775000px;}
.yfc{bottom:356.295000px;}
.ya8{bottom:360.975000px;}
.y125{bottom:363.675000px;}
.y16a{bottom:364.395000px;}
.ye2{bottom:364.575000px;}
.y66{bottom:365.655000px;}
.y54{bottom:366.015000px;}
.ybf{bottom:369.435000px;}
.y84{bottom:370.335000px;}
.y14a{bottom:379.695000px;}
.y26{bottom:382.215000px;}
.yfb{bottom:385.095000px;}
.y169{bottom:388.875000px;}
.y97{bottom:389.775000px;}
.y197{bottom:392.115000px;}
.ye1{bottom:393.015000px;}
.y53{bottom:394.635000px;}
.ybe{bottom:398.055000px;}
.y83{bottom:398.775000px;}
.y149{bottom:408.855000px;}
.y25{bottom:410.655000px;}
.yfa{bottom:413.535000px;}
.ya7{bottom:414.795000px;}
.y96{bottom:418.215000px;}
.y196{bottom:420.735000px;}
.ye0{bottom:421.635000px;}
.y124{bottom:422.175000px;}
.ybd{bottom:422.535000px;}
.y52{bottom:423.075000px;}
.y82{bottom:424.155000px;}
.y81{bottom:432.435000px;}
.y148{bottom:438.015000px;}
.y24{bottom:439.095000px;}
.yf9{bottom:442.155000px;}
.ya6{bottom:443.235000px;}
.y95{bottom:446.835000px;}
.y195{bottom:449.175000px;}
.ydf{bottom:450.075000px;}
.y65{bottom:451.155000px;}
.y123{bottom:451.335000px;}
.y51{bottom:451.515000px;}
.yce{bottom:452.595000px;}
.y23{bottom:467.175000px;}
.y31{bottom:467.535000px;}
.y80{bottom:468.075000px;}
.ya5{bottom:471.675000px;}
.y94{bottom:476.355000px;}
.y194{bottom:477.615000px;}
.yde{bottom:478.515000px;}
.y50{bottom:479.955000px;}
.y122{bottom:480.675000px;}
.ycd{bottom:481.035000px;}
.y7f{bottom:496.155000px;}
.y146{bottom:496.515000px;}
.y22{bottom:499.755000px;}
.ya4{bottom:500.115000px;}
.yf8{bottom:500.295000px;}
.y93{bottom:504.795000px;}
.ycc{bottom:505.515000px;}
.y193{bottom:506.055000px;}
.ydd{bottom:506.955000px;}
.y64{bottom:508.035000px;}
.y4f{bottom:508.395000px;}
.y11f{bottom:509.835000px;}
.y7e{bottom:524.595000px;}
.y143{bottom:525.675000px;}
.y21{bottom:528.195000px;}
.ya3{bottom:528.555000px;}
.yf7{bottom:529.455000px;}
.y92{bottom:533.415000px;}
.y192{bottom:534.495000px;}
.ydc{bottom:535.395000px;}
.y63{bottom:536.475000px;}
.y4e{bottom:536.835000px;}
.y11a{bottom:538.995000px;}
.y7d{bottom:553.575000px;}
.y145{bottom:554.835000px;}
.y20{bottom:556.635000px;}
.ya2{bottom:556.995000px;}
.yf6{bottom:557.895000px;}
.y91{bottom:562.575000px;}
.y191{bottom:562.935000px;}
.ydb{bottom:563.835000px;}
.y4d{bottom:564.915000px;}
.y5e{bottom:565.275000px;}
.y11c{bottom:568.185000px;}
.y7c{bottom:583.125000px;}
.y142{bottom:584.025000px;}
.y1f{bottom:585.105000px;}
.ya1{bottom:585.465000px;}
.ybc{bottom:586.365000px;}
.y190{bottom:591.405000px;}
.y90{bottom:591.585000px;}
.yda{bottom:592.305000px;}
.y17c{bottom:593.385000px;}
.y4c{bottom:593.745000px;}
.y118{bottom:597.525000px;}
.y7b{bottom:611.745000px;}
.y1e{bottom:613.725000px;}
.ya0{bottom:613.905000px;}
.ybb{bottom:614.805000px;}
.yf5{bottom:615.165000px;}
.y18f{bottom:619.845000px;}
.yd9{bottom:620.385000px;}
.y8f{bottom:621.105000px;}
.y17b{bottom:621.825000px;}
.y4b{bottom:622.185000px;}
.y153{bottom:624.165000px;}
.y141{bottom:626.865000px;}
.y117{bottom:641.265000px;}
.y7a{bottom:641.445000px;}
.y1d{bottom:642.165000px;}
.y9f{bottom:642.525000px;}
.yba{bottom:643.605000px;}
.yf4{bottom:643.785000px;}
.y18e{bottom:648.285000px;}
.yd8{bottom:649.185000px;}
.y62{bottom:650.445000px;}
.y4a{bottom:650.805000px;}
.y152{bottom:652.605000px;}
.ycb{bottom:654.225000px;}
.y140{bottom:655.305000px;}
.y116{bottom:669.705000px;}
.y1c{bottom:670.605000px;}
.y79{bottom:670.965000px;}
.yb9{bottom:672.225000px;}
.yf3{bottom:673.305000px;}
.y18d{bottom:676.905000px;}
.yd7{bottom:677.805000px;}
.y49{bottom:679.245000px;}
.y151{bottom:681.225000px;}
.yca{bottom:683.025000px;}
.y13f{bottom:683.745000px;}
.y115{bottom:698.145000px;}
.y1b{bottom:699.045000px;}
.y78{bottom:699.405000px;}
.y168{bottom:701.565000px;}
.yb8{bottom:701.745000px;}
.y18c{bottom:705.345000px;}
.yd6{bottom:706.245000px;}
.y48{bottom:707.685000px;}
.y150{bottom:709.665000px;}
.yc9{bottom:711.465000px;}
.y13e{bottom:712.185000px;}
.y114{bottom:726.585000px;}
.y1a{bottom:727.485000px;}
.y77{bottom:729.105000px;}
.yb7{bottom:730.185000px;}
.yd5{bottom:730.725000px;}
.yf2{bottom:731.445000px;}
.y18b{bottom:733.785000px;}
.y14f{bottom:734.145000px;}
.y47{bottom:736.125000px;}
.yc8{bottom:739.905000px;}
.y13d{bottom:740.805000px;}
.y165{bottom:745.845000px;}
.y113{bottom:755.205000px;}
.y19{bottom:755.925000px;}
.y76{bottom:758.265000px;}
.y9e{bottom:758.805000px;}
.yf1{bottom:759.885000px;}
.y18a{bottom:762.225000px;}
.yc7{bottom:764.385000px;}
.y46{bottom:764.565000px;}
.y13c{bottom:770.325000px;}
.y18{bottom:784.365000px;}
.y133{bottom:785.985000px;}
.y75{bottom:787.245000px;}
.y9d{bottom:788.325000px;}
.yf0{bottom:789.405000px;}
.y189{bottom:790.665000px;}
.y8e{bottom:792.645000px;}
.y45{bottom:793.005000px;}
.y10b{bottom:800.385000px;}
.y162{bottom:803.445000px;}
.y13a{bottom:815.145000px;}
.y74{bottom:816.765000px;}
.y9c{bottom:818.025000px;}
.y17{bottom:818.745000px;}
.y188{bottom:819.105000px;}
.y61{bottom:821.130000px;}
.y44{bottom:821.490000px;}
.y112{bottom:829.770000px;}
.y73{bottom:845.250000px;}
.yb6{bottom:845.430000px;}
.y139{bottom:846.510000px;}
.y16{bottom:847.230000px;}
.yef{bottom:847.590000px;}
.y9b{bottom:847.770000px;}
.y60{bottom:849.570000px;}
.y43{bottom:849.930000px;}
.y111{bottom:858.930000px;}
.y161{bottom:861.270000px;}
.y72{bottom:873.870000px;}
.yb5{bottom:874.950000px;}
.y15{bottom:875.850000px;}
.y187{bottom:876.030000px;}
.yee{bottom:876.210000px;}
.y9a{bottom:877.290000px;}
.y138{bottom:877.830000px;}
.y176{bottom:878.010000px;}
.y42{bottom:878.370000px;}
.y110{bottom:888.090000px;}
.y160{bottom:890.430000px;}
.y14{bottom:898.350000px;}
.y71{bottom:903.390000px;}
.yd4{bottom:903.930000px;}
.y186{bottom:904.650000px;}
.yed{bottom:905.730000px;}
.y99{bottom:906.630000px;}
.y41{bottom:906.990000px;}
.y137{bottom:909.150000px;}
.y10f{bottom:917.430000px;}
.y15f{bottom:919.590000px;}
.yc6{bottom:928.770000px;}
.y70{bottom:932.010000px;}
.yd3{bottom:932.370000px;}
.y13{bottom:932.730000px;}
.yb4{bottom:933.090000px;}
.y185{bottom:934.170000px;}
.yec{bottom:934.350000px;}
.y17d{bottom:935.070000px;}
.y40{bottom:935.430000px;}
.y136{bottom:940.290000px;}
.y10e{bottom:946.590000px;}
.y15c{bottom:948.750000px;}
.y12{bottom:954.870000px;}
.yd2{bottom:956.850000px;}
.yc5{bottom:957.210000px;}
.y6f{bottom:961.530000px;}
.y184{bottom:962.610000px;}
.yeb{bottom:963.510000px;}
.y3f{bottom:963.870000px;}
.y132{bottom:971.610000px;}
.y10a{bottom:975.750000px;}
.y15e{bottom:978.090000px;}
.yc4{bottom:981.690000px;}
.y11{bottom:983.310000px;}
.y6e{bottom:989.970000px;}
.y183{bottom:991.230000px;}
.y5f{bottom:991.950000px;}
.y3e{bottom:992.310000px;}
.y12d{bottom:1002.930000px;}
.y107{bottom:1004.910000px;}
.y10{bottom:1011.750000px;}
.y6d{bottom:1019.490000px;}
.y15b{bottom:1020.390000px;}
.y3d{bottom:1020.750000px;}
.y4{bottom:1032.810000px;}
.y109{bottom:1034.250000px;}
.y6c{bottom:1048.110000px;}
.y8d{bottom:1048.830000px;}
.y3c{bottom:1049.190000px;}
.y3{bottom:1052.790000px;}
.y105{bottom:1063.410000px;}
.y2{bottom:1072.620000px;}
.y6b{bottom:1076.580000px;}
.y15a{bottom:1077.300000px;}
.y3b{bottom:1077.660000px;}
.y6a{bottom:1105.020000px;}
.y98{bottom:1105.740000px;}
.y3a{bottom:1106.100000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1124.460000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1141.740000px;}
.h14{height:28.440000px;}
.h16{height:28.476000px;}
.h18{height:28.620000px;}
.h15{height:28.656000px;}
.h1a{height:29.520000px;}
.h20{height:30.420000px;}
.h1e{height:30.600000px;}
.h21{height:30.636000px;}
.h6{height:33.480000px;}
.hb{height:41.250937px;}
.h1{height:48.045938px;}
.hd{height:52.971680px;}
.hc{height:53.709961px;}
.h7{height:54.421875px;}
.h24{height:56.880000px;}
.h23{height:56.916000px;}
.h25{height:57.600000px;}
.h22{height:57.636000px;}
.h17{height:57.780000px;}
.h1b{height:57.816000px;}
.h2{height:58.621992px;}
.h1d{height:59.760000px;}
.h10{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h11{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562519px;}
.h12{height:99.879609px;}
.h13{height:110.951367px;}
.h26{height:111.043849px;}
.hf{height:111.043854px;}
.h4{height:167.250000px;}
.h1c{height:203.760000px;}
.h19{height:203.790000px;}
.h1f{height:216.210000px;}
.he{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w3f{width:52.380000px;}
.w40{width:53.100000px;}
.w3a{width:56.340000px;}
.w38{width:60.480000px;}
.w3e{width:63.000000px;}
.w39{width:66.600000px;}
.w25{width:75.420000px;}
.w37{width:79.740000px;}
.w19{width:83.340000px;}
.w30{width:84.420000px;}
.w26{width:84.816000px;}
.w13{width:86.076000px;}
.w11{width:86.436000px;}
.w1d{width:86.760000px;}
.w1b{width:86.940000px;}
.w34{width:92.916000px;}
.w35{width:93.060000px;}
.wf{width:93.096000px;}
.w42{width:95.400000px;}
.w36{width:95.616000px;}
.w14{width:96.660000px;}
.w1a{width:96.840000px;}
.w2f{width:97.920000px;}
.w2c{width:97.956000px;}
.w12{width:103.860000px;}
.w1c{width:105.876000px;}
.w41{width:110.196000px;}
.w2e{width:112.176000px;}
.w22{width:113.436000px;}
.w27{width:113.580000px;}
.w2d{width:114.300000px;}
.w3c{width:126.936000px;}
.w24{width:127.656000px;}
.w23{width:131.400000px;}
.w3d{width:137.736000px;}
.w10{width:142.380000px;}
.w8{width:149.796000px;}
.w31{width:150.690000px;}
.w3b{width:154.830000px;}
.w1f{width:158.610000px;}
.w2b{width:183.090000px;}
.we{width:183.450000px;}
.wd{width:191.190000px;}
.w18{width:193.350000px;}
.w17{width:193.530000px;}
.w29{width:195.510000px;}
.w21{width:199.110000px;}
.wc{width:200.370000px;}
.w20{width:203.790000px;}
.w2a{width:210.810000px;}
.w33{width:220.170000px;}
.w16{width:229.215000px;}
.w32{width:237.270000px;}
.w9{width:270.030000px;}
.w3{width:361.335000px;}
.wa{width:386.175000px;}
.w15{width:799.170000px;}
.w28{width:804.930000px;}
.w1e{width:809.430000px;}
.wb{width:813.390000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x3b{left:-2.880000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x12{left:34.740000px;}
.x17{left:52.380000px;}
.x2{left:53.999986px;}
.x2a{left:56.520000px;}
.x1d{left:59.400000px;}
.x32{left:60.480000px;}
.xc{left:80.999986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.x10{left:204.870000px;}
.x33{left:212.070000px;}
.x24{left:213.870000px;}
.x3d{left:215.130000px;}
.x18{left:253.470000px;}
.x13{left:265.709986px;}
.x1e{left:289.335000px;}
.x37{left:308.415000px;}
.x16{left:313.274986px;}
.x1b{left:340.815000px;}
.x28{left:342.255000px;}
.x2e{left:365.655000px;}
.x22{left:376.995000px;}
.x38{left:388.875000px;}
.x25{left:418.395000px;}
.x19{left:445.395000px;}
.x34{left:450.075000px;}
.x2b{left:464.475000px;}
.x11{left:475.635000px;}
.x8{left:482.144986px;}
.x1f{left:483.585000px;}
.x29{left:503.925000px;}
.xd{left:509.144986px;}
.x5{left:521.025000px;}
.xe{left:523.904986px;}
.x1c{left:532.185000px;}
.x3e{left:545.145000px;}
.x39{left:546.405000px;}
.x2f{left:563.145000px;}
.x23{left:571.065000px;}
.x3f{left:598.245000px;}
.x3a{left:613.905000px;}
.x26{left:618.225000px;}
.x1a{left:629.565000px;}
.x3c{left:639.464986px;}
.x2c{left:648.285000px;}
.x40{left:652.065000px;}
.x35{left:670.965000px;}
.x20{left:677.670000px;}
.x14{left:704.849986px;}
.x30{left:711.509986px;}
.x15{left:722.849986px;}
.x27{left:732.390000px;}
.x31{left:734.009986px;}
.x2d{left:747.150000px;}
.x21{left:761.730000px;}
.x41{left:762.990000px;}
.x36{left:764.610000px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.920000pt;}
.v6{vertical-align:12.800000pt;}
.v5{vertical-align:16.000000pt;}
.v3{vertical-align:21.120000pt;}
.v7{vertical-align:28.800000pt;}
.v4{vertical-align:35.200000pt;}
.ls29{letter-spacing:-1.008000pt;}
.ls1b{letter-spacing:-0.773333pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.570667pt;}
.ls8{letter-spacing:-0.406933pt;}
.ls1d{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.297067pt;}
.ls22{letter-spacing:-0.271467pt;}
.lsa{letter-spacing:-0.244267pt;}
.ls1e{letter-spacing:-0.097067pt;}
.ls1f{letter-spacing:-0.079467pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.043520pt;}
.ls23{letter-spacing:0.071467pt;}
.ls2a{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.097280pt;}
.ls16{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.135467pt;}
.ls4{letter-spacing:0.211627pt;}
.ls3{letter-spacing:0.232960pt;}
.lsb{letter-spacing:0.233067pt;}
.lse{letter-spacing:0.268800pt;}
.ls14{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.445440pt;}
.lsd{letter-spacing:0.486400pt;}
.ls20{letter-spacing:1.920000pt;}
.ls12{letter-spacing:2.052480pt;}
.ls9{letter-spacing:2.880000pt;}
.ls18{letter-spacing:5.760000pt;}
.ls2b{letter-spacing:6.031360pt;}
.ls28{letter-spacing:8.320000pt;}
.ls21{letter-spacing:10.880000pt;}
.ls25{letter-spacing:11.520000pt;}
.ls11{letter-spacing:12.336640pt;}
.ls24{letter-spacing:17.600000pt;}
.ls19{letter-spacing:24.960000pt;}
.ls26{letter-spacing:35.471360pt;}
.ls10{letter-spacing:38.956800pt;}
.ls1a{letter-spacing:47.978667pt;}
.ls17{letter-spacing:50.191360pt;}
.lsc{letter-spacing:52.751360pt;}
.ls0{letter-spacing:184.370347pt;}
.ws9{word-spacing:-58.880000pt;}
.ws13{word-spacing:-25.766400pt;}
.ws8{word-spacing:-25.522133pt;}
.ws1{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.855467pt;}
.ws3{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.622933pt;}
.ws15{word-spacing:-14.448533pt;}
.wsf{word-spacing:-14.351467pt;}
.ws4{word-spacing:-14.080000pt;}
.ws14{word-spacing:-13.712000pt;}
.ws0{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.953600pt;}
.wsd{word-spacing:-12.656533pt;}
.ws7{word-spacing:-12.390400pt;}
.ws6{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws11{word-spacing:-9.200533pt;}
.ws12{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
.wsc{word-spacing:2.872640pt;}
._9{margin-left:-1.870933pt;}
._0{margin-left:-0.928000pt;}
._1{width:1.418667pt;}
._e{width:2.682027pt;}
._b{width:4.247040pt;}
._3{width:5.475840pt;}
._4{width:7.242240pt;}
._a{width:8.459947pt;}
._8{width:10.116267pt;}
._7{width:11.585280pt;}
._11{width:12.819200pt;}
._d{width:13.759147pt;}
._c{width:15.487787pt;}
._16{width:16.549973pt;}
._14{width:17.958400pt;}
._15{width:19.240533pt;}
._1f{width:20.372480pt;}
._1e{width:21.802240pt;}
._1d{width:23.139840pt;}
._22{width:24.081920pt;}
._24{width:25.024000pt;}
._23{width:26.672640pt;}
._19{width:27.844907pt;}
._f{width:29.027840pt;}
._10{width:30.133333pt;}
._26{width:31.459413pt;}
._33{width:32.425387pt;}
._1c{width:33.607253pt;}
._1b{width:34.562560pt;}
._1a{width:35.975680pt;}
._20{width:36.917760pt;}
._27{width:38.036480pt;}
._29{width:38.995200pt;}
._2a{width:39.979520pt;}
._13{width:41.425067pt;}
._12{width:43.041280pt;}
._30{width:43.970133pt;}
._5{width:45.926400pt;}
._6{width:46.847573pt;}
._21{width:48.096000pt;}
._2d{width:49.832107pt;}
._2c{width:50.859093pt;}
._32{width:51.873280pt;}
._31{width:53.005227pt;}
._35{width:54.405120pt;}
._34{width:55.863893pt;}
._25{width:58.644480pt;}
._18{width:60.686507pt;}
._17{width:62.222933pt;}
._39{width:64.160427pt;}
._36{width:68.948480pt;}
._2e{width:70.656000pt;}
._2f{width:71.820373pt;}
._37{width:93.383680pt;}
._38{width:96.725760pt;}
._3a{width:125.636693pt;}
._2b{width:162.920960pt;}
._2{width:854.826667pt;}
._28{width:1298.254933pt;}
.fs8{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.y173{bottom:11.994667pt;}
.yaa{bottom:12.000000pt;}
.y106{bottom:12.026667pt;}
.yac{bottom:12.160000pt;}
.y11e{bottom:12.320000pt;}
.y119{bottom:12.480000pt;}
.y131{bottom:12.960000pt;}
.y13b{bottom:13.000000pt;}
.y12f{bottom:13.280000pt;}
.ya{bottom:18.560000pt;}
.y167{bottom:24.640000pt;}
.y164{bottom:24.680000pt;}
.y172{bottom:24.954667pt;}
.y11b{bottom:24.960000pt;}
.y108{bottom:25.120000pt;}
.y130{bottom:25.920000pt;}
.y37{bottom:27.200000pt;}
.y166{bottom:37.280000pt;}
.y163{bottom:37.320000pt;}
.y144{bottom:37.600000pt;}
.y11d{bottom:37.626667pt;}
.y15d{bottom:37.760000pt;}
.y12e{bottom:38.560000pt;}
.y36{bottom:41.760000pt;}
.y38{bottom:43.040000pt;}
.y39{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y7{bottom:47.360000pt;}
.y35{bottom:56.000000pt;}
.y5{bottom:61.312000pt;}
.y34{bottom:70.272000pt;}
.y10d{bottom:77.320000pt;}
.y135{bottom:82.760000pt;}
.y30{bottom:86.752000pt;}
.yb3{bottom:88.832000pt;}
.y121{bottom:89.920000pt;}
.y175{bottom:93.472000pt;}
.y182{bottom:95.552000pt;}
.y104{bottom:96.352000pt;}
.y5d{bottom:97.632000pt;}
.y159{bottom:101.952000pt;}
.y10c{bottom:102.600000pt;}
.y12c{bottom:105.312000pt;}
.y134{bottom:108.200000pt;}
.y2f{bottom:112.032000pt;}
.yb2{bottom:114.112000pt;}
.yd1{bottom:117.312000pt;}
.yc3{bottom:118.112000pt;}
.y174{bottom:118.912000pt;}
.y19f{bottom:120.832000pt;}
.y181{bottom:120.992000pt;}
.yea{bottom:121.632000pt;}
.y69{bottom:121.952000pt;}
.y5c{bottom:123.072000pt;}
.y8c{bottom:126.752000pt;}
.y158{bottom:127.232000pt;}
.y12b{bottom:130.592000pt;}
.y171{bottom:132.832000pt;}
.y2e{bottom:137.306667pt;}
.y103{bottom:138.746667pt;}
.yb1{bottom:139.386667pt;}
.yd0{bottom:142.586667pt;}
.yc2{bottom:143.386667pt;}
.y19e{bottom:146.266667pt;}
.ye9{bottom:147.066667pt;}
.y180{bottom:147.226667pt;}
.y68{bottom:147.386667pt;}
.y5b{bottom:148.346667pt;}
.y8b{bottom:152.026667pt;}
.y157{bottom:152.506667pt;}
.yb0{bottom:153.306667pt;}
.y12a{bottom:155.866667pt;}
.y170{bottom:158.746667pt;}
.y2d{bottom:162.586667pt;}
.y102{bottom:164.186667pt;}
.ycf{bottom:164.346667pt;}
.yc1{bottom:165.146667pt;}
.y19d{bottom:171.546667pt;}
.ye8{bottom:172.346667pt;}
.y17f{bottom:172.506667pt;}
.y67{bottom:173.306667pt;}
.y5a{bottom:173.626667pt;}
.y8a{bottom:177.306667pt;}
.y156{bottom:177.946667pt;}
.yaf{bottom:179.386667pt;}
.y129{bottom:181.146667pt;}
.y16f{bottom:184.666667pt;}
.y2c{bottom:187.866667pt;}
.y101{bottom:189.466667pt;}
.y19c{bottom:196.826667pt;}
.ye7{bottom:197.626667pt;}
.y17e{bottom:197.946667pt;}
.y59{bottom:198.906667pt;}
.y89{bottom:202.586667pt;}
.y155{bottom:204.186667pt;}
.yae{bottom:205.306667pt;}
.y128{bottom:206.426667pt;}
.y2b{bottom:213.146667pt;}
.y100{bottom:214.746667pt;}
.y14e{bottom:219.866667pt;}
.y19b{bottom:222.106667pt;}
.y16e{bottom:222.746667pt;}
.ye6{bottom:222.906667pt;}
.y17a{bottom:223.866667pt;}
.y58{bottom:224.186667pt;}
.y154{bottom:225.946667pt;}
.y88{bottom:227.866667pt;}
.yad{bottom:231.226667pt;}
.y127{bottom:231.706667pt;}
.y2a{bottom:238.426667pt;}
.yff{bottom:240.026667pt;}
.y14d{bottom:245.306667pt;}
.y19a{bottom:247.386667pt;}
.y16d{bottom:248.026667pt;}
.ye5{bottom:248.186667pt;}
.y179{bottom:249.146667pt;}
.y57{bottom:249.466667pt;}
.y87{bottom:253.146667pt;}
.yab{bottom:257.146667pt;}
.y29{bottom:263.866667pt;}
.yfe{bottom:265.466667pt;}
.y14c{bottom:271.546667pt;}
.y199{bottom:272.666667pt;}
.y16c{bottom:273.306667pt;}
.ye4{bottom:273.466667pt;}
.y178{bottom:274.426667pt;}
.y56{bottom:274.746667pt;}
.y86{bottom:278.586667pt;}
.y126{bottom:283.106667pt;}
.ya9{bottom:283.266667pt;}
.y147{bottom:285.506667pt;}
.y28{bottom:289.186667pt;}
.yfd{bottom:291.426667pt;}
.y120{bottom:297.346667pt;}
.y198{bottom:297.986667pt;}
.y16b{bottom:298.306667pt;}
.ye3{bottom:298.786667pt;}
.y177{bottom:299.746667pt;}
.y55{bottom:300.066667pt;}
.yc0{bottom:303.106667pt;}
.y85{bottom:303.906667pt;}
.y14b{bottom:311.426667pt;}
.y27{bottom:314.466667pt;}
.yfc{bottom:316.706667pt;}
.ya8{bottom:320.866667pt;}
.y125{bottom:323.266667pt;}
.y16a{bottom:323.906667pt;}
.ye2{bottom:324.066667pt;}
.y66{bottom:325.026667pt;}
.y54{bottom:325.346667pt;}
.ybf{bottom:328.386667pt;}
.y84{bottom:329.186667pt;}
.y14a{bottom:337.506667pt;}
.y26{bottom:339.746667pt;}
.yfb{bottom:342.306667pt;}
.y169{bottom:345.666667pt;}
.y97{bottom:346.466667pt;}
.y197{bottom:348.546667pt;}
.ye1{bottom:349.346667pt;}
.y53{bottom:350.786667pt;}
.ybe{bottom:353.826667pt;}
.y83{bottom:354.466667pt;}
.y149{bottom:363.426667pt;}
.y25{bottom:365.026667pt;}
.yfa{bottom:367.586667pt;}
.ya7{bottom:368.706667pt;}
.y96{bottom:371.746667pt;}
.y196{bottom:373.986667pt;}
.ye0{bottom:374.786667pt;}
.y124{bottom:375.266667pt;}
.ybd{bottom:375.586667pt;}
.y52{bottom:376.066667pt;}
.y82{bottom:377.026667pt;}
.y81{bottom:384.386667pt;}
.y148{bottom:389.346667pt;}
.y24{bottom:390.306667pt;}
.yf9{bottom:393.026667pt;}
.ya6{bottom:393.986667pt;}
.y95{bottom:397.186667pt;}
.y195{bottom:399.266667pt;}
.ydf{bottom:400.066667pt;}
.y65{bottom:401.026667pt;}
.y123{bottom:401.186667pt;}
.y51{bottom:401.346667pt;}
.yce{bottom:402.306667pt;}
.y23{bottom:415.266667pt;}
.y31{bottom:415.586667pt;}
.y80{bottom:416.066667pt;}
.ya5{bottom:419.266667pt;}
.y94{bottom:423.426667pt;}
.y194{bottom:424.546667pt;}
.yde{bottom:425.346667pt;}
.y50{bottom:426.626667pt;}
.y122{bottom:427.266667pt;}
.ycd{bottom:427.586667pt;}
.y7f{bottom:441.026667pt;}
.y146{bottom:441.346667pt;}
.y22{bottom:444.226667pt;}
.ya4{bottom:444.546667pt;}
.yf8{bottom:444.706667pt;}
.y93{bottom:448.706667pt;}
.ycc{bottom:449.346667pt;}
.y193{bottom:449.826667pt;}
.ydd{bottom:450.626667pt;}
.y64{bottom:451.586667pt;}
.y4f{bottom:451.906667pt;}
.y11f{bottom:453.186667pt;}
.y7e{bottom:466.306667pt;}
.y143{bottom:467.266667pt;}
.y21{bottom:469.506667pt;}
.ya3{bottom:469.826667pt;}
.yf7{bottom:470.626667pt;}
.y92{bottom:474.146667pt;}
.y192{bottom:475.106667pt;}
.ydc{bottom:475.906667pt;}
.y63{bottom:476.866667pt;}
.y4e{bottom:477.186667pt;}
.y11a{bottom:479.106667pt;}
.y7d{bottom:492.066667pt;}
.y145{bottom:493.186667pt;}
.y20{bottom:494.786667pt;}
.ya2{bottom:495.106667pt;}
.yf6{bottom:495.906667pt;}
.y91{bottom:500.066667pt;}
.y191{bottom:500.386667pt;}
.ydb{bottom:501.186667pt;}
.y4d{bottom:502.146667pt;}
.y5e{bottom:502.466667pt;}
.y11c{bottom:505.053333pt;}
.y7c{bottom:518.333333pt;}
.y142{bottom:519.133333pt;}
.y1f{bottom:520.093333pt;}
.ya1{bottom:520.413333pt;}
.ybc{bottom:521.213333pt;}
.y190{bottom:525.693333pt;}
.y90{bottom:525.853333pt;}
.yda{bottom:526.493333pt;}
.y17c{bottom:527.453333pt;}
.y4c{bottom:527.773333pt;}
.y118{bottom:531.133333pt;}
.y7b{bottom:543.773333pt;}
.y1e{bottom:545.533333pt;}
.ya0{bottom:545.693333pt;}
.ybb{bottom:546.493333pt;}
.yf5{bottom:546.813333pt;}
.y18f{bottom:550.973333pt;}
.yd9{bottom:551.453333pt;}
.y8f{bottom:552.093333pt;}
.y17b{bottom:552.733333pt;}
.y4b{bottom:553.053333pt;}
.y153{bottom:554.813333pt;}
.y141{bottom:557.213333pt;}
.y117{bottom:570.013333pt;}
.y7a{bottom:570.173333pt;}
.y1d{bottom:570.813333pt;}
.y9f{bottom:571.133333pt;}
.yba{bottom:572.093333pt;}
.yf4{bottom:572.253333pt;}
.y18e{bottom:576.253333pt;}
.yd8{bottom:577.053333pt;}
.y62{bottom:578.173333pt;}
.y4a{bottom:578.493333pt;}
.y152{bottom:580.093333pt;}
.ycb{bottom:581.533333pt;}
.y140{bottom:582.493333pt;}
.y116{bottom:595.293333pt;}
.y1c{bottom:596.093333pt;}
.y79{bottom:596.413333pt;}
.yb9{bottom:597.533333pt;}
.yf3{bottom:598.493333pt;}
.y18d{bottom:601.693333pt;}
.yd7{bottom:602.493333pt;}
.y49{bottom:603.773333pt;}
.y151{bottom:605.533333pt;}
.yca{bottom:607.133333pt;}
.y13f{bottom:607.773333pt;}
.y115{bottom:620.573333pt;}
.y1b{bottom:621.373333pt;}
.y78{bottom:621.693333pt;}
.y168{bottom:623.613333pt;}
.yb8{bottom:623.773333pt;}
.y18c{bottom:626.973333pt;}
.yd6{bottom:627.773333pt;}
.y48{bottom:629.053333pt;}
.y150{bottom:630.813333pt;}
.yc9{bottom:632.413333pt;}
.y13e{bottom:633.053333pt;}
.y114{bottom:645.853333pt;}
.y1a{bottom:646.653333pt;}
.y77{bottom:648.093333pt;}
.yb7{bottom:649.053333pt;}
.yd5{bottom:649.533333pt;}
.yf2{bottom:650.173333pt;}
.y18b{bottom:652.253333pt;}
.y14f{bottom:652.573333pt;}
.y47{bottom:654.333333pt;}
.yc8{bottom:657.693333pt;}
.y13d{bottom:658.493333pt;}
.y165{bottom:662.973333pt;}
.y113{bottom:671.293333pt;}
.y19{bottom:671.933333pt;}
.y76{bottom:674.013333pt;}
.y9e{bottom:674.493333pt;}
.yf1{bottom:675.453333pt;}
.y18a{bottom:677.533333pt;}
.yc7{bottom:679.453333pt;}
.y46{bottom:679.613333pt;}
.y13c{bottom:684.733333pt;}
.y18{bottom:697.213333pt;}
.y133{bottom:698.653333pt;}
.y75{bottom:699.773333pt;}
.y9d{bottom:700.733333pt;}
.yf0{bottom:701.693333pt;}
.y189{bottom:702.813333pt;}
.y8e{bottom:704.573333pt;}
.y45{bottom:704.893333pt;}
.y10b{bottom:711.453333pt;}
.y162{bottom:714.173333pt;}
.y13a{bottom:724.573333pt;}
.y74{bottom:726.013333pt;}
.y9c{bottom:727.133333pt;}
.y17{bottom:727.773333pt;}
.y188{bottom:728.093333pt;}
.y61{bottom:729.893333pt;}
.y44{bottom:730.213333pt;}
.y112{bottom:737.573333pt;}
.y73{bottom:751.333333pt;}
.yb6{bottom:751.493333pt;}
.y139{bottom:752.453333pt;}
.y16{bottom:753.093333pt;}
.yef{bottom:753.413333pt;}
.y9b{bottom:753.573333pt;}
.y60{bottom:755.173333pt;}
.y43{bottom:755.493333pt;}
.y111{bottom:763.493333pt;}
.y161{bottom:765.573333pt;}
.y72{bottom:776.773333pt;}
.yb5{bottom:777.733333pt;}
.y15{bottom:778.533333pt;}
.y187{bottom:778.693333pt;}
.yee{bottom:778.853333pt;}
.y9a{bottom:779.813333pt;}
.y138{bottom:780.293333pt;}
.y176{bottom:780.453333pt;}
.y42{bottom:780.773333pt;}
.y110{bottom:789.413333pt;}
.y160{bottom:791.493333pt;}
.y14{bottom:798.533333pt;}
.y71{bottom:803.013333pt;}
.yd4{bottom:803.493333pt;}
.y186{bottom:804.133333pt;}
.yed{bottom:805.093333pt;}
.y99{bottom:805.893333pt;}
.y41{bottom:806.213333pt;}
.y137{bottom:808.133333pt;}
.y10f{bottom:815.493333pt;}
.y15f{bottom:817.413333pt;}
.yc6{bottom:825.573333pt;}
.y70{bottom:828.453333pt;}
.yd3{bottom:828.773333pt;}
.y13{bottom:829.093333pt;}
.yb4{bottom:829.413333pt;}
.y185{bottom:830.373333pt;}
.yec{bottom:830.533333pt;}
.y17d{bottom:831.173333pt;}
.y40{bottom:831.493333pt;}
.y136{bottom:835.813333pt;}
.y10e{bottom:841.413333pt;}
.y15c{bottom:843.333333pt;}
.y12{bottom:848.773333pt;}
.yd2{bottom:850.533333pt;}
.yc5{bottom:850.853333pt;}
.y6f{bottom:854.693333pt;}
.y184{bottom:855.653333pt;}
.yeb{bottom:856.453333pt;}
.y3f{bottom:856.773333pt;}
.y132{bottom:863.653333pt;}
.y10a{bottom:867.333333pt;}
.y15e{bottom:869.413333pt;}
.yc4{bottom:872.613333pt;}
.y11{bottom:874.053333pt;}
.y6e{bottom:879.973333pt;}
.y183{bottom:881.093333pt;}
.y5f{bottom:881.733333pt;}
.y3e{bottom:882.053333pt;}
.y12d{bottom:891.493333pt;}
.y107{bottom:893.253333pt;}
.y10{bottom:899.333333pt;}
.y6d{bottom:906.213333pt;}
.y15b{bottom:907.013333pt;}
.y3d{bottom:907.333333pt;}
.y4{bottom:918.053333pt;}
.y109{bottom:919.333333pt;}
.y6c{bottom:931.653333pt;}
.y8d{bottom:932.293333pt;}
.y3c{bottom:932.613333pt;}
.y3{bottom:935.813333pt;}
.y105{bottom:945.253333pt;}
.y2{bottom:953.440000pt;}
.y6b{bottom:956.960000pt;}
.y15a{bottom:957.600000pt;}
.y3b{bottom:957.920000pt;}
.y6a{bottom:982.240000pt;}
.y98{bottom:982.880000pt;}
.y3a{bottom:983.200000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:999.520000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1014.880000pt;}
.h14{height:25.280000pt;}
.h16{height:25.312000pt;}
.h18{height:25.440000pt;}
.h15{height:25.472000pt;}
.h1a{height:26.240000pt;}
.h20{height:27.040000pt;}
.h1e{height:27.200000pt;}
.h21{height:27.232000pt;}
.h6{height:29.760000pt;}
.hb{height:36.667500pt;}
.h1{height:42.707500pt;}
.hd{height:47.085938pt;}
.hc{height:47.742188pt;}
.h7{height:48.375000pt;}
.h24{height:50.560000pt;}
.h23{height:50.592000pt;}
.h25{height:51.200000pt;}
.h22{height:51.232000pt;}
.h17{height:51.360000pt;}
.h1b{height:51.392000pt;}
.h2{height:52.108438pt;}
.h1d{height:53.120000pt;}
.h10{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h11{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500017pt;}
.h12{height:88.781875pt;}
.h13{height:98.623438pt;}
.h26{height:98.705643pt;}
.hf{height:98.705648pt;}
.h4{height:148.666667pt;}
.h1c{height:181.120000pt;}
.h19{height:181.146667pt;}
.h1f{height:192.186667pt;}
.he{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w3f{width:46.560000pt;}
.w40{width:47.200000pt;}
.w3a{width:50.080000pt;}
.w38{width:53.760000pt;}
.w3e{width:56.000000pt;}
.w39{width:59.200000pt;}
.w25{width:67.040000pt;}
.w37{width:70.880000pt;}
.w19{width:74.080000pt;}
.w30{width:75.040000pt;}
.w26{width:75.392000pt;}
.w13{width:76.512000pt;}
.w11{width:76.832000pt;}
.w1d{width:77.120000pt;}
.w1b{width:77.280000pt;}
.w34{width:82.592000pt;}
.w35{width:82.720000pt;}
.wf{width:82.752000pt;}
.w42{width:84.800000pt;}
.w36{width:84.992000pt;}
.w14{width:85.920000pt;}
.w1a{width:86.080000pt;}
.w2f{width:87.040000pt;}
.w2c{width:87.072000pt;}
.w12{width:92.320000pt;}
.w1c{width:94.112000pt;}
.w41{width:97.952000pt;}
.w2e{width:99.712000pt;}
.w22{width:100.832000pt;}
.w27{width:100.960000pt;}
.w2d{width:101.600000pt;}
.w3c{width:112.832000pt;}
.w24{width:113.472000pt;}
.w23{width:116.800000pt;}
.w3d{width:122.432000pt;}
.w10{width:126.560000pt;}
.w8{width:133.152000pt;}
.w31{width:133.946667pt;}
.w3b{width:137.626667pt;}
.w1f{width:140.986667pt;}
.w2b{width:162.746667pt;}
.we{width:163.066667pt;}
.wd{width:169.946667pt;}
.w18{width:171.866667pt;}
.w17{width:172.026667pt;}
.w29{width:173.786667pt;}
.w21{width:176.986667pt;}
.wc{width:178.106667pt;}
.w20{width:181.146667pt;}
.w2a{width:187.386667pt;}
.w33{width:195.706667pt;}
.w16{width:203.746667pt;}
.w32{width:210.906667pt;}
.w9{width:240.026667pt;}
.w3{width:321.186667pt;}
.wa{width:343.266667pt;}
.w15{width:710.373333pt;}
.w28{width:715.493333pt;}
.w1e{width:719.493333pt;}
.wb{width:723.013333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x3b{left:-2.560000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x12{left:30.880000pt;}
.x17{left:46.560000pt;}
.x2{left:47.999988pt;}
.x2a{left:50.240000pt;}
.x1d{left:52.800000pt;}
.x32{left:53.760000pt;}
.xc{left:71.999988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.x10{left:182.106667pt;}
.x33{left:188.506667pt;}
.x24{left:190.106667pt;}
.x3d{left:191.226667pt;}
.x18{left:225.306667pt;}
.x13{left:236.186655pt;}
.x1e{left:257.186667pt;}
.x37{left:274.146667pt;}
.x16{left:278.466655pt;}
.x1b{left:302.946667pt;}
.x28{left:304.226667pt;}
.x2e{left:325.026667pt;}
.x22{left:335.106667pt;}
.x38{left:345.666667pt;}
.x25{left:371.906667pt;}
.x19{left:395.906667pt;}
.x34{left:400.066667pt;}
.x2b{left:412.866667pt;}
.x11{left:422.786667pt;}
.x8{left:428.573321pt;}
.x1f{left:429.853333pt;}
.x29{left:447.933333pt;}
.xd{left:452.573321pt;}
.x5{left:463.133333pt;}
.xe{left:465.693321pt;}
.x1c{left:473.053333pt;}
.x3e{left:484.573333pt;}
.x39{left:485.693333pt;}
.x2f{left:500.573333pt;}
.x23{left:507.613333pt;}
.x3f{left:531.773333pt;}
.x3a{left:545.693333pt;}
.x26{left:549.533333pt;}
.x1a{left:559.613333pt;}
.x3c{left:568.413321pt;}
.x2c{left:576.253333pt;}
.x40{left:579.613333pt;}
.x35{left:596.413333pt;}
.x20{left:602.373333pt;}
.x14{left:626.533321pt;}
.x30{left:632.453321pt;}
.x15{left:642.533321pt;}
.x27{left:651.013333pt;}
.x31{left:652.453321pt;}
.x2d{left:664.133333pt;}
.x21{left:677.093333pt;}
.x41{left:678.213333pt;}
.x36{left:679.653333pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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