
    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_f053f45523ec60579c5068b4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_138b8ddfa8e9991a7f7bb05b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_e0052ddd5cfba0cd9412d00d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_47fb28bfb528835813be6e78.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d3abade80039b57cf55c975c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_1f039661180bc31085041b3a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_e4ca169ba06ebc475083a697.woff')format("woff");}.ff9{font-family:ff9;line-height:0.754395;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_7baffc10c188e3f33b8c4e8b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_d72072a65c6f220c75394463.woff')format("woff");}.ffb{font-family:ffb;line-height:0.921387;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_3008b2f9975aea4015224fe6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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_0aa7f54cd686f296dba163bd.woff')format("woff");}.ffd{font-family:ffd;line-height:0.934082;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;line-height:0.739746;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:ff10;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff10{font-family:ff10;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,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);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls10{letter-spacing:-2.766000px;}
.lsc{letter-spacing:-2.724000px;}
.ls18{letter-spacing:-1.740000px;}
.ls1e{letter-spacing:-1.494000px;}
.ls19{letter-spacing:-1.026000px;}
.lse{letter-spacing:-0.852000px;}
.lsd{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.513000px;}
.lsb{letter-spacing:-0.378000px;}
.ls23{letter-spacing:-0.256200px;}
.lsa{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.013500px;}
.ls15{letter-spacing:0.090000px;}
.ls14{letter-spacing:0.120000px;}
.ls2a{letter-spacing:0.180000px;}
.ls28{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.279000px;}
.ls5{letter-spacing:0.864000px;}
.ls1f{letter-spacing:1.026000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.ls21{letter-spacing:1.482000px;}
.ls17{letter-spacing:1.740000px;}
.ls2{letter-spacing:1.854000px;}
.ls4{letter-spacing:1.906500px;}
.ls3{letter-spacing:1.966500px;}
.ls9{letter-spacing:1.980000px;}
.ls24{letter-spacing:2.164500px;}
.ls12{letter-spacing:2.190000px;}
.ls13{letter-spacing:2.227500px;}
.ls6{letter-spacing:2.250000px;}
.ls29{letter-spacing:2.310000px;}
.ls7{letter-spacing:2.322000px;}
.ls1b{letter-spacing:2.370000px;}
.ls11{letter-spacing:2.430000px;}
.ls1c{letter-spacing:3.018000px;}
.ls27{letter-spacing:3.375000px;}
.lsf{letter-spacing:5.526000px;}
.ls25{letter-spacing:15.387000px;}
.ls26{letter-spacing:16.875000px;}
.ls20{letter-spacing:25.875000px;}
.ls1a{letter-spacing:46.887000px;}
.ls16{letter-spacing:64.887000px;}
.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;}
}
.wsa{word-spacing:-20.151000px;}
.ws13{word-spacing:-17.643000px;}
.ws8{word-spacing:-16.875000px;}
.ws1b{word-spacing:-16.789500px;}
.ws10{word-spacing:-16.365000px;}
.ws4{word-spacing:-16.146000px;}
.ws17{word-spacing:-16.107000px;}
.ws16{word-spacing:-15.651000px;}
.ws3{word-spacing:-15.354000px;}
.ws1a{word-spacing:-14.881200px;}
.ws7{word-spacing:-14.625000px;}
.ws19{word-spacing:-14.368800px;}
.ws0{word-spacing:-14.184000px;}
.ws14{word-spacing:-14.112000px;}
.ws12{word-spacing:-13.599000px;}
.ws9{word-spacing:-13.221000px;}
.ws15{word-spacing:-13.131000px;}
.ws11{word-spacing:-12.885000px;}
.ws2{word-spacing:-12.531000px;}
.wsf{word-spacing:-12.375000px;}
.ws5{word-spacing:-12.369000px;}
.wse{word-spacing:-12.352500px;}
.wsb{word-spacing:-11.859000px;}
.ws1{word-spacing:-11.826000px;}
.ws18{word-spacing:-10.138500px;}
.wsd{word-spacing:-10.125000px;}
.ws6{word-spacing:-8.136000px;}
.wsc{word-spacing:0.000000px;}
._8{margin-left:-10.904100px;}
._9{margin-left:-9.641550px;}
._16{margin-left:-7.071000px;}
._6{margin-left:-5.785500px;}
._7{margin-left:-4.643550px;}
._0{margin-left:-3.150000px;}
._2{margin-left:-1.404000px;}
._1{width:1.782000px;}
._3{width:2.898000px;}
._4{width:4.638000px;}
._b{width:5.740500px;}
._c{width:7.519500px;}
._a{width:8.766000px;}
._1d{width:10.065000px;}
._5{width:11.166000px;}
._e{width:13.030500px;}
._d{width:16.735500px;}
._19{width:18.385500px;}
._11{width:20.461500px;}
._12{width:22.024500px;}
._17{width:25.408500px;}
._18{width:26.583000px;}
._15{width:29.658000px;}
._14{width:30.717000px;}
._13{width:34.213500px;}
._f{width:35.535000px;}
._10{width:38.838000px;}
._1e{width:44.280000px;}
._1a{width:49.159500px;}
._1b{width:107.428500px;}
._1c{width:247.423500px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:1.110000px;}
.y3{bottom:3.375000px;}
.ya8{bottom:3.390000px;}
.yd2{bottom:3.420000px;}
.y19{bottom:4.500000px;}
.yd8{bottom:4.515000px;}
.yda{bottom:4.530000px;}
.y113{bottom:4.545000px;}
.ye8{bottom:5.625000px;}
.yeb{bottom:5.640000px;}
.yc6{bottom:6.750000px;}
.ye{bottom:11.250000px;}
.y1c{bottom:12.360000px;}
.yc{bottom:13.500000px;}
.y4{bottom:18.000000px;}
.y2{bottom:20.250000px;}
.yd4{bottom:20.265000px;}
.yf4{bottom:20.295000px;}
.yd6{bottom:21.375000px;}
.yff{bottom:21.420000px;}
.y4c{bottom:22.500000px;}
.y4b{bottom:25.875000px;}
.y18{bottom:28.125000px;}
.y5{bottom:29.250000px;}
.yb{bottom:30.405000px;}
.yf2{bottom:30.420000px;}
.y130{bottom:38.250000px;}
.y49{bottom:38.280000px;}
.y131{bottom:38.295000px;}
.yf8{bottom:40.530000px;}
.y103{bottom:40.545000px;}
.y17{bottom:45.045000px;}
.ya{bottom:46.155000px;}
.y1{bottom:50.662500px;}
.y48{bottom:55.155000px;}
.yf7{bottom:57.405000px;}
.y102{bottom:57.420000px;}
.y117{bottom:58.545000px;}
.y16{bottom:60.795000px;}
.y47{bottom:72.030000px;}
.y9{bottom:73.185000px;}
.yf6{bottom:74.325000px;}
.y101{bottom:75.450000px;}
.y116{bottom:76.590000px;}
.y15{bottom:77.670000px;}
.y14{bottom:87.825000px;}
.y46{bottom:90.075000px;}
.y8{bottom:93.435000px;}
.y115{bottom:93.465000px;}
.y133{bottom:94.575000px;}
.y90{bottom:99.075000px;}
.yfc{bottom:102.450000px;}
.y13{bottom:105.825000px;}
.y45{bottom:106.950000px;}
.y7{bottom:110.310000px;}
.y52{bottom:111.450000px;}
.y12e{bottom:111.495000px;}
.y14c{bottom:112.575000px;}
.y8f{bottom:117.075000px;}
.y44{bottom:123.870000px;}
.y12{bottom:124.995000px;}
.y12d{bottom:128.370000px;}
.y51{bottom:129.487500px;}
.y8e{bottom:135.112500px;}
.y43{bottom:141.855000px;}
.y12c{bottom:145.275000px;}
.y50{bottom:146.362500px;}
.y14b{bottom:147.487500px;}
.y11{bottom:150.870000px;}
.y8d{bottom:154.245000px;}
.y42{bottom:158.730000px;}
.y4f{bottom:163.275000px;}
.y12b{bottom:163.290000px;}
.y14a{bottom:164.400000px;}
.y8c{bottom:171.150000px;}
.y10{bottom:175.650000px;}
.y12a{bottom:180.165000px;}
.y4e{bottom:181.275000px;}
.y8b{bottom:188.025000px;}
.y41{bottom:193.650000px;}
.y129{bottom:197.070000px;}
.y4d{bottom:198.150000px;}
.y149{bottom:199.275000px;}
.y8a{bottom:206.070000px;}
.y40{bottom:210.570000px;}
.y4a{bottom:211.695000px;}
.y128{bottom:215.070000px;}
.y148{bottom:216.195000px;}
.y89{bottom:222.945000px;}
.y3f{bottom:227.445000px;}
.y147{bottom:233.070000px;}
.y88{bottom:239.820000px;}
.y3e{bottom:245.475000px;}
.y1d{bottom:248.850000px;}
.y146{bottom:251.100000px;}
.y87{bottom:257.850000px;}
.y3d{bottom:262.350000px;}
.ye0{bottom:264.600000px;}
.y145{bottom:267.975000px;}
.y86{bottom:274.725000px;}
.y3c{bottom:279.225000px;}
.ydf{bottom:282.600000px;}
.y144{bottom:284.895000px;}
.y2c{bottom:288.270000px;}
.y85{bottom:291.645000px;}
.y114{bottom:292.755000px;}
.y3b{bottom:297.270000px;}
.yde{bottom:299.505000px;}
.y143{bottom:302.880000px;}
.ybb{bottom:304.005000px;}
.y2b{bottom:304.020000px;}
.y84{bottom:309.630000px;}
.y11a{bottom:310.755000px;}
.y3a{bottom:314.145000px;}
.ydd{bottom:316.380000px;}
.y142{bottom:319.755000px;}
.y2a{bottom:322.020000px;}
.y83{bottom:326.550000px;}
.y119{bottom:328.800000px;}
.y39{bottom:331.050000px;}
.ydc{bottom:334.425000px;}
.y141{bottom:336.675000px;}
.y29{bottom:338.925000px;}
.y82{bottom:343.425000px;}
.y118{bottom:346.800000px;}
.ydb{bottom:347.925000px;}
.y38{bottom:349.050000px;}
.y140{bottom:354.675000px;}
.yba{bottom:355.800000px;}
.y28{bottom:356.925000px;}
.y81{bottom:361.425000px;}
.y112{bottom:364.800000px;}
.y37{bottom:365.925000px;}
.y13f{bottom:371.580000px;}
.yb9{bottom:373.830000px;}
.y27{bottom:373.845000px;}
.y80{bottom:378.330000px;}
.y132{bottom:381.705000px;}
.y36{bottom:382.845000px;}
.yd9{bottom:383.955000px;}
.y13e{bottom:388.455000px;}
.yb8{bottom:390.705000px;}
.y26{bottom:390.720000px;}
.y7f{bottom:395.205000px;}
.y127{bottom:396.330000px;}
.y111{bottom:400.830000px;}
.y35{bottom:400.845000px;}
.yd7{bottom:401.955000px;}
.y13d{bottom:406.470000px;}
.yb7{bottom:407.580000px;}
.y25{bottom:407.595000px;}
.y7e{bottom:413.250000px;}
.yfb{bottom:416.625000px;}
.y34{bottom:417.750000px;}
.yd5{bottom:420.000000px;}
.y110{bottom:422.250000px;}
.y24{bottom:423.375000px;}
.y7d{bottom:430.125000px;}
.yf5{bottom:431.250000px;}
.y33{bottom:434.625000px;}
.y10f{bottom:439.125000px;}
.y23{bottom:440.250000px;}
.yb6{bottom:441.375000px;}
.y7c{bottom:447.000000px;}
.yfa{bottom:449.250000px;}
.y32{bottom:452.625000px;}
.yd3{bottom:456.030000px;}
.y10e{bottom:457.170000px;}
.y22{bottom:458.280000px;}
.yb5{bottom:460.530000px;}
.y7b{bottom:465.030000px;}
.yf9{bottom:467.280000px;}
.y31{bottom:469.530000px;}
.y10d{bottom:474.045000px;}
.y21{bottom:475.155000px;}
.yb4{bottom:479.655000px;}
.y7a{bottom:481.905000px;}
.yf3{bottom:485.280000px;}
.y30{bottom:486.405000px;}
.yd1{bottom:490.905000px;}
.y10c{bottom:490.920000px;}
.y13c{bottom:492.030000px;}
.y20{bottom:495.450000px;}
.y79{bottom:498.825000px;}
.yb3{bottom:502.200000px;}
.y2f{bottom:504.450000px;}
.y10b{bottom:508.950000px;}
.y13b{bottom:510.075000px;}
.yd0{bottom:512.325000px;}
.y78{bottom:516.825000px;}
.yb2{bottom:519.075000px;}
.yf1{bottom:520.200000px;}
.y2e{bottom:521.325000px;}
.y1f{bottom:522.450000px;}
.y10a{bottom:525.825000px;}
.y13a{bottom:526.950000px;}
.ycf{bottom:530.325000px;}
.y77{bottom:533.700000px;}
.yb1{bottom:535.995000px;}
.y12f{bottom:537.105000px;}
.y2d{bottom:538.230000px;}
.y1e{bottom:540.480000px;}
.y109{bottom:542.745000px;}
.y139{bottom:543.870000px;}
.yce{bottom:547.245000px;}
.y76{bottom:550.620000px;}
.yb0{bottom:553.995000px;}
.y108{bottom:560.745000px;}
.y138{bottom:561.855000px;}
.ycd{bottom:564.120000px;}
.y75{bottom:568.605000px;}
.yaf{bottom:570.870000px;}
.y107{bottom:574.245000px;}
.y137{bottom:578.775000px;}
.ycc{bottom:582.150000px;}
.y74{bottom:585.525000px;}
.yf0{bottom:586.650000px;}
.yae{bottom:587.775000px;}
.y126{bottom:590.025000px;}
.y136{bottom:595.650000px;}
.ycb{bottom:599.025000px;}
.y73{bottom:602.400000px;}
.yef{bottom:603.525000px;}
.yad{bottom:605.775000px;}
.y135{bottom:613.650000px;}
.yca{bottom:615.900000px;}
.y72{bottom:620.445000px;}
.yac{bottom:622.695000px;}
.y125{bottom:624.945000px;}
.yc9{bottom:630.570000px;}
.y71{bottom:637.320000px;}
.yee{bottom:638.445000px;}
.y134{bottom:644.070000px;}
.y124{bottom:647.445000px;}
.yc8{bottom:650.820000px;}
.y70{bottom:654.195000px;}
.yed{bottom:655.320000px;}
.yab{bottom:656.445000px;}
.y123{bottom:664.350000px;}
.yc7{bottom:671.100000px;}
.y6f{bottom:672.225000px;}
.yaa{bottom:675.600000px;}
.y122{bottom:681.225000px;}
.yec{bottom:686.850000px;}
.y6e{bottom:689.100000px;}
.yc5{bottom:691.350000px;}
.ya9{bottom:693.600000px;}
.y121{bottom:699.225000px;}
.y6d{bottom:706.020000px;}
.yea{bottom:707.130000px;}
.ya7{bottom:712.755000px;}
.y120{bottom:716.145000px;}
.y6c{bottom:724.005000px;}
.ye9{bottom:726.255000px;}
.ya6{bottom:731.880000px;}
.y11f{bottom:733.020000px;}
.yc4{bottom:734.130000px;}
.y6b{bottom:740.880000px;}
.ye7{bottom:746.550000px;}
.yc3{bottom:751.050000px;}
.ya5{bottom:754.425000px;}
.y6a{bottom:757.800000px;}
.y11e{bottom:767.925000px;}
.yc2{bottom:769.050000px;}
.ye6{bottom:770.175000px;}
.ya4{bottom:771.300000px;}
.y69{bottom:775.800000px;}
.y11d{bottom:784.800000px;}
.yc1{bottom:785.955000px;}
.ya3{bottom:788.205000px;}
.y68{bottom:792.705000px;}
.y1a{bottom:800.595000px;}
.yc0{bottom:802.830000px;}
.ye5{bottom:805.080000px;}
.ya2{bottom:806.205000px;}
.y67{bottom:809.580000px;}
.y11c{bottom:819.705000px;}
.ybf{bottom:820.830000px;}
.ye4{bottom:821.955000px;}
.ya1{bottom:823.080000px;}
.y66{bottom:827.625000px;}
.yf{bottom:831.000000px;}
.y11b{bottom:833.250000px;}
.ybe{bottom:837.750000px;}
.ya0{bottom:840.000000px;}
.y65{bottom:844.500000px;}
.ybd{bottom:854.625000px;}
.ye3{bottom:856.875000px;}
.y9f{bottom:858.000000px;}
.y64{bottom:861.375000px;}
.ybc{bottom:868.125000px;}
.ye2{bottom:873.795000px;}
.y9e{bottom:874.920000px;}
.y63{bottom:879.420000px;}
.y9d{bottom:891.795000px;}
.y62{bottom:896.295000px;}
.ye1{bottom:905.295000px;}
.y106{bottom:908.670000px;}
.y9c{bottom:909.795000px;}
.y61{bottom:913.200000px;}
.y100{bottom:923.325000px;}
.y9b{bottom:926.700000px;}
.y60{bottom:931.200000px;}
.y105{bottom:941.325000px;}
.y9a{bottom:943.575000px;}
.y5f{bottom:948.075000px;}
.y104{bottom:959.370000px;}
.y99{bottom:961.620000px;}
.y5e{bottom:964.995000px;}
.yfe{bottom:977.355000px;}
.y98{bottom:978.495000px;}
.y5d{bottom:982.995000px;}
.y97{bottom:995.400000px;}
.y5c{bottom:999.900000px;}
.yfd{bottom:1012.275000px;}
.y96{bottom:1013.400000px;}
.y5b{bottom:1016.775000px;}
.yd{bottom:1021.275000px;}
.y95{bottom:1030.275000px;}
.y5a{bottom:1034.775000px;}
.y6{bottom:1047.195000px;}
.y59{bottom:1051.695000px;}
.y94{bottom:1064.070000px;}
.y58{bottom:1068.570000px;}
.y93{bottom:1083.225000px;}
.y57{bottom:1086.600000px;}
.y92{bottom:1101.225000px;}
.y56{bottom:1103.475000px;}
.y91{bottom:1119.255000px;}
.y55{bottom:1120.380000px;}
.y54{bottom:1138.380000px;}
.y53{bottom:1155.255000px;}
.h23{height:16.875000px;}
.h22{height:16.912500px;}
.h25{height:17.985000px;}
.h2c{height:18.000000px;}
.h24{height:18.037500px;}
.h2d{height:19.125000px;}
.h2e{height:19.162500px;}
.h28{height:20.250000px;}
.h29{height:20.272500px;}
.h27{height:20.287500px;}
.hc{height:25.912500px;}
.h13{height:29.953125px;}
.h14{height:30.397500px;}
.h2{height:32.662500px;}
.h2a{height:33.750000px;}
.h30{height:33.787500px;}
.h2b{height:34.912500px;}
.h12{height:35.806641px;}
.h9{height:37.125000px;}
.h1d{height:37.162500px;}
.h1b{height:39.832031px;}
.h18{height:40.847168px;}
.h1c{height:41.275635px;}
.h21{height:42.589600px;}
.he{height:43.075195px;}
.hb{height:43.875000px;}
.h2f{height:43.912500px;}
.h20{height:46.218809px;}
.h1e{height:46.278809px;}
.h39{height:46.308809px;}
.h37{height:46.338809px;}
.h38{height:46.398809px;}
.h1f{height:46.458809px;}
.h26{height:46.575439px;}
.h19{height:47.074219px;}
.h6{height:47.131348px;}
.h1a{height:48.216797px;}
.h17{height:49.234131px;}
.h35{height:51.787500px;}
.h36{height:51.825000px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h10{height:58.185791px;}
.h11{height:59.899658px;}
.hf{height:63.066504px;}
.h5{height:69.114990px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h31{height:87.825000px;}
.h32{height:88.950000px;}
.h33{height:106.950000px;}
.h7{height:121.612500px;}
.hd{height:190.275000px;}
.h34{height:228.600000px;}
.h16{height:551.745000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w25{width:51.825000px;}
.w2f{width:55.162500px;}
.w1a{width:58.575000px;}
.w38{width:60.825000px;}
.w31{width:70.950000px;}
.w39{width:73.237500px;}
.w33{width:74.325000px;}
.w2{width:74.362500px;}
.w28{width:75.450000px;}
.w30{width:76.612500px;}
.w3a{width:77.700000px;}
.w3c{width:78.862500px;}
.w1e{width:81.112500px;}
.w1b{width:83.362500px;}
.w1f{width:86.737500px;}
.w37{width:87.862500px;}
.w1c{width:90.112500px;}
.w26{width:91.237500px;}
.w1d{width:92.362500px;}
.w32{width:93.487500px;}
.w2e{width:96.900000px;}
.w29{width:104.775000px;}
.w19{width:106.987500px;}
.w27{width:107.025000px;}
.w20{width:108.112500px;}
.w23{width:108.150000px;}
.w3b{width:112.650000px;}
.w15{width:114.900000px;}
.w21{width:129.525000px;}
.w2b{width:131.775000px;}
.w34{width:135.187500px;}
.w16{width:141.937500px;}
.w22{width:143.062500px;}
.w3d{width:148.687500px;}
.w3e{width:149.812500px;}
.w4{width:152.055000px;}
.w2d{width:165.555000px;}
.w2c{width:165.600000px;}
.w2a{width:167.805000px;}
.w18{width:168.975000px;}
.wa{width:179.100000px;}
.w17{width:182.475000px;}
.w35{width:186.975000px;}
.w36{width:192.630000px;}
.we{width:207.270000px;}
.w9{width:210.645000px;}
.w7{width:223.020000px;}
.w12{width:242.175000px;}
.w13{width:242.220000px;}
.wf{width:243.300000px;}
.w14{width:243.345000px;}
.w10{width:244.425000px;}
.w11{width:244.470000px;}
.wc{width:260.220000px;}
.wd{width:262.455000px;}
.w24{width:272.595000px;}
.wb{width:340.200000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x80{left:5.662500px;}
.x62{left:6.750000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x16{left:12.420000px;}
.x86{left:15.780000px;}
.x83{left:16.905000px;}
.x8b{left:19.155000px;}
.x79{left:20.280000px;}
.x8c{left:21.405000px;}
.x82{left:22.530000px;}
.x7a{left:23.662500px;}
.x85{left:24.780000px;}
.x7b{left:25.905000px;}
.x87{left:27.045000px;}
.x89{left:29.280000px;}
.x7d{left:30.405000px;}
.x75{left:31.545000px;}
.x73{left:32.700000px;}
.x77{left:40.560000px;}
.x1a{left:43.905000px;}
.x84{left:46.200000px;}
.x18{left:48.412500px;}
.x3e{left:49.537500px;}
.x88{left:50.700000px;}
.x2d{left:51.825000px;}
.x8a{left:52.950000px;}
.x81{left:54.067500px;}
.x3b{left:55.200000px;}
.x38{left:56.325000px;}
.x2f{left:57.450000px;}
.x40{left:59.700000px;}
.x31{left:60.825000px;}
.x34{left:61.950000px;}
.x33{left:64.200000px;}
.x24{left:67.575000px;}
.x3a{left:69.855000px;}
.xf{left:70.950000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x3c{left:75.442500px;}
.x4{left:81.112487px;}
.x47{left:83.362500px;}
.x1f{left:85.612500px;}
.x57{left:86.737487px;}
.x36{left:87.862500px;}
.x29{left:88.995000px;}
.x67{left:90.112487px;}
.x11{left:92.362500px;}
.x1d{left:93.487500px;}
.x41{left:96.862500px;}
.x6{left:97.987500px;}
.x72{left:100.237500px;}
.x5f{left:101.362487px;}
.x70{left:104.774987px;}
.x27{left:106.987500px;}
.x46{left:108.112500px;}
.x25{left:110.407500px;}
.x13{left:111.487500px;}
.x3d{left:112.650000px;}
.x32{left:113.775000px;}
.x3f{left:117.150000px;}
.x12{left:120.532500px;}
.x28{left:122.775000px;}
.x26{left:127.275000px;}
.x2c{left:130.649987px;}
.x1c{left:134.055000px;}
.x10{left:153.187500px;}
.x1e{left:155.445000px;}
.x20{left:158.850000px;}
.x43{left:186.974987px;}
.x2b{left:188.099987px;}
.x93{left:199.394987px;}
.x35{left:202.769987px;}
.x58{left:203.895000px;}
.x14{left:214.012500px;}
.x48{left:217.394987px;}
.x8e{left:223.050000px;}
.x7{left:225.300000px;}
.x49{left:236.549987px;}
.x74{left:244.425000px;}
.x69{left:250.095000px;}
.x4a{left:256.829987px;}
.x17{left:260.204987px;}
.x5b{left:262.470000px;}
.x4b{left:275.969987px;}
.xb{left:290.625000px;}
.x19{left:292.875000px;}
.x15{left:296.250000px;}
.x6d{left:305.250000px;}
.x7c{left:306.375000px;}
.x4c{left:307.499987px;}
.x37{left:323.295000px;}
.x2e{left:324.420000px;}
.x44{left:325.545000px;}
.x4d{left:326.654987px;}
.x22{left:342.450000px;}
.x9{left:344.670000px;}
.x21{left:345.824987px;}
.x4e{left:346.949987px;}
.x63{left:348.075000px;}
.xa{left:364.950000px;}
.xd{left:366.075000px;}
.x68{left:367.244987px;}
.x8f{left:372.870000px;}
.xe{left:373.957500px;}
.x76{left:380.745000px;}
.x6a{left:382.995000px;}
.x94{left:397.649987px;}
.x71{left:417.899987px;}
.x5c{left:435.945000px;}
.xc{left:453.945000px;}
.x60{left:455.100000px;}
.x1b{left:473.100000px;}
.x4f{left:480.974987px;}
.x7e{left:490.020000px;}
.x50{left:500.129987px;}
.x90{left:522.675000px;}
.x59{left:528.300000px;}
.x64{left:531.675000px;}
.x51{left:541.799987px;}
.x6b{left:549.720000px;}
.x52{left:559.844987px;}
.x39{left:566.595000px;}
.x30{left:568.845000px;}
.x45{left:569.970000px;}
.x53{left:586.874987px;}
.x54{left:604.919987px;}
.x23{left:606.030000px;}
.x5d{left:609.405000px;}
.x65{left:622.905000px;}
.x6e{left:640.950000px;}
.x92{left:643.199987px;}
.x42{left:651.074987px;}
.x8d{left:656.699987px;}
.x91{left:671.370000px;}
.x2a{left:675.869987px;}
.x55{left:678.119987px;}
.x7f{left:682.620000px;}
.x66{left:683.729987px;}
.x5e{left:689.369987px;}
.x56{left:696.149987px;}
.x5a{left:697.275000px;}
.x6f{left:700.649987px;}
.x6c{left:716.400000px;}
.x61{left:728.820000px;}
.x3{left:746.820000px;}
.x78{left:761.475000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls10{letter-spacing:-2.458667pt;}
.lsc{letter-spacing:-2.421333pt;}
.ls18{letter-spacing:-1.546667pt;}
.ls1e{letter-spacing:-1.328000pt;}
.ls19{letter-spacing:-0.912000pt;}
.lse{letter-spacing:-0.757333pt;}
.lsd{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.456000pt;}
.lsb{letter-spacing:-0.336000pt;}
.ls23{letter-spacing:-0.227733pt;}
.lsa{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.012000pt;}
.ls15{letter-spacing:0.080000pt;}
.ls14{letter-spacing:0.106667pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls28{letter-spacing:0.227733pt;}
.ls8{letter-spacing:0.248000pt;}
.ls5{letter-spacing:0.768000pt;}
.ls1f{letter-spacing:0.912000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls21{letter-spacing:1.317333pt;}
.ls17{letter-spacing:1.546667pt;}
.ls2{letter-spacing:1.648000pt;}
.ls4{letter-spacing:1.694667pt;}
.ls3{letter-spacing:1.748000pt;}
.ls9{letter-spacing:1.760000pt;}
.ls24{letter-spacing:1.924000pt;}
.ls12{letter-spacing:1.946667pt;}
.ls13{letter-spacing:1.980000pt;}
.ls6{letter-spacing:2.000000pt;}
.ls29{letter-spacing:2.053333pt;}
.ls7{letter-spacing:2.064000pt;}
.ls1b{letter-spacing:2.106667pt;}
.ls11{letter-spacing:2.160000pt;}
.ls1c{letter-spacing:2.682667pt;}
.ls27{letter-spacing:3.000000pt;}
.lsf{letter-spacing:4.912000pt;}
.ls25{letter-spacing:13.677333pt;}
.ls26{letter-spacing:15.000000pt;}
.ls20{letter-spacing:23.000000pt;}
.ls1a{letter-spacing:41.677333pt;}
.ls16{letter-spacing:57.677333pt;}
.wsa{word-spacing:-17.912000pt;}
.ws13{word-spacing:-15.682667pt;}
.ws8{word-spacing:-15.000000pt;}
.ws1b{word-spacing:-14.924000pt;}
.ws10{word-spacing:-14.546667pt;}
.ws4{word-spacing:-14.352000pt;}
.ws17{word-spacing:-14.317333pt;}
.ws16{word-spacing:-13.912000pt;}
.ws3{word-spacing:-13.648000pt;}
.ws1a{word-spacing:-13.227733pt;}
.ws7{word-spacing:-13.000000pt;}
.ws19{word-spacing:-12.772267pt;}
.ws0{word-spacing:-12.608000pt;}
.ws14{word-spacing:-12.544000pt;}
.ws12{word-spacing:-12.088000pt;}
.ws9{word-spacing:-11.752000pt;}
.ws15{word-spacing:-11.672000pt;}
.ws11{word-spacing:-11.453333pt;}
.ws2{word-spacing:-11.138667pt;}
.wsf{word-spacing:-11.000000pt;}
.ws5{word-spacing:-10.994667pt;}
.wse{word-spacing:-10.980000pt;}
.wsb{word-spacing:-10.541333pt;}
.ws1{word-spacing:-10.512000pt;}
.ws18{word-spacing:-9.012000pt;}
.wsd{word-spacing:-9.000000pt;}
.ws6{word-spacing:-7.232000pt;}
.wsc{word-spacing:0.000000pt;}
._8{margin-left:-9.692533pt;}
._9{margin-left:-8.570267pt;}
._16{margin-left:-6.285333pt;}
._6{margin-left:-5.142667pt;}
._7{margin-left:-4.127600pt;}
._0{margin-left:-2.800000pt;}
._2{margin-left:-1.248000pt;}
._1{width:1.584000pt;}
._3{width:2.576000pt;}
._4{width:4.122667pt;}
._b{width:5.102667pt;}
._c{width:6.684000pt;}
._a{width:7.792000pt;}
._1d{width:8.946667pt;}
._5{width:9.925333pt;}
._e{width:11.582667pt;}
._d{width:14.876000pt;}
._19{width:16.342667pt;}
._11{width:18.188000pt;}
._12{width:19.577333pt;}
._17{width:22.585333pt;}
._18{width:23.629333pt;}
._15{width:26.362667pt;}
._14{width:27.304000pt;}
._13{width:30.412000pt;}
._f{width:31.586667pt;}
._10{width:34.522667pt;}
._1e{width:39.360000pt;}
._1a{width:43.697333pt;}
._1b{width:95.492000pt;}
._1c{width:219.932000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:0.986667pt;}
.y3{bottom:3.000000pt;}
.ya8{bottom:3.013333pt;}
.yd2{bottom:3.040000pt;}
.y19{bottom:4.000000pt;}
.yd8{bottom:4.013333pt;}
.yda{bottom:4.026667pt;}
.y113{bottom:4.040000pt;}
.ye8{bottom:5.000000pt;}
.yeb{bottom:5.013333pt;}
.yc6{bottom:6.000000pt;}
.ye{bottom:10.000000pt;}
.y1c{bottom:10.986667pt;}
.yc{bottom:12.000000pt;}
.y4{bottom:16.000000pt;}
.y2{bottom:18.000000pt;}
.yd4{bottom:18.013333pt;}
.yf4{bottom:18.040000pt;}
.yd6{bottom:19.000000pt;}
.yff{bottom:19.040000pt;}
.y4c{bottom:20.000000pt;}
.y4b{bottom:23.000000pt;}
.y18{bottom:25.000000pt;}
.y5{bottom:26.000000pt;}
.yb{bottom:27.026667pt;}
.yf2{bottom:27.040000pt;}
.y130{bottom:34.000000pt;}
.y49{bottom:34.026667pt;}
.y131{bottom:34.040000pt;}
.yf8{bottom:36.026667pt;}
.y103{bottom:36.040000pt;}
.y17{bottom:40.040000pt;}
.ya{bottom:41.026667pt;}
.y1{bottom:45.033333pt;}
.y48{bottom:49.026667pt;}
.yf7{bottom:51.026667pt;}
.y102{bottom:51.040000pt;}
.y117{bottom:52.040000pt;}
.y16{bottom:54.040000pt;}
.y47{bottom:64.026667pt;}
.y9{bottom:65.053333pt;}
.yf6{bottom:66.066667pt;}
.y101{bottom:67.066667pt;}
.y116{bottom:68.080000pt;}
.y15{bottom:69.040000pt;}
.y14{bottom:78.066667pt;}
.y46{bottom:80.066667pt;}
.y8{bottom:83.053333pt;}
.y115{bottom:83.080000pt;}
.y133{bottom:84.066667pt;}
.y90{bottom:88.066667pt;}
.yfc{bottom:91.066667pt;}
.y13{bottom:94.066667pt;}
.y45{bottom:95.066667pt;}
.y7{bottom:98.053333pt;}
.y52{bottom:99.066667pt;}
.y12e{bottom:99.106667pt;}
.y14c{bottom:100.066667pt;}
.y8f{bottom:104.066667pt;}
.y44{bottom:110.106667pt;}
.y12{bottom:111.106667pt;}
.y12d{bottom:114.106667pt;}
.y51{bottom:115.100000pt;}
.y8e{bottom:120.100000pt;}
.y43{bottom:126.093333pt;}
.y12c{bottom:129.133333pt;}
.y50{bottom:130.100000pt;}
.y14b{bottom:131.100000pt;}
.y11{bottom:134.106667pt;}
.y8d{bottom:137.106667pt;}
.y42{bottom:141.093333pt;}
.y4f{bottom:145.133333pt;}
.y12b{bottom:145.146667pt;}
.y14a{bottom:146.133333pt;}
.y8c{bottom:152.133333pt;}
.y10{bottom:156.133333pt;}
.y12a{bottom:160.146667pt;}
.y4e{bottom:161.133333pt;}
.y8b{bottom:167.133333pt;}
.y41{bottom:172.133333pt;}
.y129{bottom:175.173333pt;}
.y4d{bottom:176.133333pt;}
.y149{bottom:177.133333pt;}
.y8a{bottom:183.173333pt;}
.y40{bottom:187.173333pt;}
.y4a{bottom:188.173333pt;}
.y128{bottom:191.173333pt;}
.y148{bottom:192.173333pt;}
.y89{bottom:198.173333pt;}
.y3f{bottom:202.173333pt;}
.y147{bottom:207.173333pt;}
.y88{bottom:213.173333pt;}
.y3e{bottom:218.200000pt;}
.y1d{bottom:221.200000pt;}
.y146{bottom:223.200000pt;}
.y87{bottom:229.200000pt;}
.y3d{bottom:233.200000pt;}
.ye0{bottom:235.200000pt;}
.y145{bottom:238.200000pt;}
.y86{bottom:244.200000pt;}
.y3c{bottom:248.200000pt;}
.ydf{bottom:251.200000pt;}
.y144{bottom:253.240000pt;}
.y2c{bottom:256.240000pt;}
.y85{bottom:259.240000pt;}
.y114{bottom:260.226667pt;}
.y3b{bottom:264.240000pt;}
.yde{bottom:266.226667pt;}
.y143{bottom:269.226667pt;}
.ybb{bottom:270.226667pt;}
.y2b{bottom:270.240000pt;}
.y84{bottom:275.226667pt;}
.y11a{bottom:276.226667pt;}
.y3a{bottom:279.240000pt;}
.ydd{bottom:281.226667pt;}
.y142{bottom:284.226667pt;}
.y2a{bottom:286.240000pt;}
.y83{bottom:290.266667pt;}
.y119{bottom:292.266667pt;}
.y39{bottom:294.266667pt;}
.ydc{bottom:297.266667pt;}
.y141{bottom:299.266667pt;}
.y29{bottom:301.266667pt;}
.y82{bottom:305.266667pt;}
.y118{bottom:308.266667pt;}
.ydb{bottom:309.266667pt;}
.y38{bottom:310.266667pt;}
.y140{bottom:315.266667pt;}
.yba{bottom:316.266667pt;}
.y28{bottom:317.266667pt;}
.y81{bottom:321.266667pt;}
.y112{bottom:324.266667pt;}
.y37{bottom:325.266667pt;}
.y13f{bottom:330.293333pt;}
.yb9{bottom:332.293333pt;}
.y27{bottom:332.306667pt;}
.y80{bottom:336.293333pt;}
.y132{bottom:339.293333pt;}
.y36{bottom:340.306667pt;}
.yd9{bottom:341.293333pt;}
.y13e{bottom:345.293333pt;}
.yb8{bottom:347.293333pt;}
.y26{bottom:347.306667pt;}
.y7f{bottom:351.293333pt;}
.y127{bottom:352.293333pt;}
.y111{bottom:356.293333pt;}
.y35{bottom:356.306667pt;}
.yd7{bottom:357.293333pt;}
.y13d{bottom:361.306667pt;}
.yb7{bottom:362.293333pt;}
.y25{bottom:362.306667pt;}
.y7e{bottom:367.333333pt;}
.yfb{bottom:370.333333pt;}
.y34{bottom:371.333333pt;}
.yd5{bottom:373.333333pt;}
.y110{bottom:375.333333pt;}
.y24{bottom:376.333333pt;}
.y7d{bottom:382.333333pt;}
.yf5{bottom:383.333333pt;}
.y33{bottom:386.333333pt;}
.y10f{bottom:390.333333pt;}
.y23{bottom:391.333333pt;}
.yb6{bottom:392.333333pt;}
.y7c{bottom:397.333333pt;}
.yfa{bottom:399.333333pt;}
.y32{bottom:402.333333pt;}
.yd3{bottom:405.360000pt;}
.y10e{bottom:406.373333pt;}
.y22{bottom:407.360000pt;}
.yb5{bottom:409.360000pt;}
.y7b{bottom:413.360000pt;}
.yf9{bottom:415.360000pt;}
.y31{bottom:417.360000pt;}
.y10d{bottom:421.373333pt;}
.y21{bottom:422.360000pt;}
.yb4{bottom:426.360000pt;}
.y7a{bottom:428.360000pt;}
.yf3{bottom:431.360000pt;}
.y30{bottom:432.360000pt;}
.yd1{bottom:436.360000pt;}
.y10c{bottom:436.373333pt;}
.y13c{bottom:437.360000pt;}
.y20{bottom:440.400000pt;}
.y79{bottom:443.400000pt;}
.yb3{bottom:446.400000pt;}
.y2f{bottom:448.400000pt;}
.y10b{bottom:452.400000pt;}
.y13b{bottom:453.400000pt;}
.yd0{bottom:455.400000pt;}
.y78{bottom:459.400000pt;}
.yb2{bottom:461.400000pt;}
.yf1{bottom:462.400000pt;}
.y2e{bottom:463.400000pt;}
.y1f{bottom:464.400000pt;}
.y10a{bottom:467.400000pt;}
.y13a{bottom:468.400000pt;}
.ycf{bottom:471.400000pt;}
.y77{bottom:474.400000pt;}
.yb1{bottom:476.440000pt;}
.y12f{bottom:477.426667pt;}
.y2d{bottom:478.426667pt;}
.y1e{bottom:480.426667pt;}
.y109{bottom:482.440000pt;}
.y139{bottom:483.440000pt;}
.yce{bottom:486.440000pt;}
.y76{bottom:489.440000pt;}
.yb0{bottom:492.440000pt;}
.y108{bottom:498.440000pt;}
.y138{bottom:499.426667pt;}
.ycd{bottom:501.440000pt;}
.y75{bottom:505.426667pt;}
.yaf{bottom:507.440000pt;}
.y107{bottom:510.440000pt;}
.y137{bottom:514.466667pt;}
.ycc{bottom:517.466667pt;}
.y74{bottom:520.466667pt;}
.yf0{bottom:521.466667pt;}
.yae{bottom:522.466667pt;}
.y126{bottom:524.466667pt;}
.y136{bottom:529.466667pt;}
.ycb{bottom:532.466667pt;}
.y73{bottom:535.466667pt;}
.yef{bottom:536.466667pt;}
.yad{bottom:538.466667pt;}
.y135{bottom:545.466667pt;}
.yca{bottom:547.466667pt;}
.y72{bottom:551.506667pt;}
.yac{bottom:553.506667pt;}
.y125{bottom:555.506667pt;}
.yc9{bottom:560.506667pt;}
.y71{bottom:566.506667pt;}
.yee{bottom:567.506667pt;}
.y134{bottom:572.506667pt;}
.y124{bottom:575.506667pt;}
.yc8{bottom:578.506667pt;}
.y70{bottom:581.506667pt;}
.yed{bottom:582.506667pt;}
.yab{bottom:583.506667pt;}
.y123{bottom:590.533333pt;}
.yc7{bottom:596.533333pt;}
.y6f{bottom:597.533333pt;}
.yaa{bottom:600.533333pt;}
.y122{bottom:605.533333pt;}
.yec{bottom:610.533333pt;}
.y6e{bottom:612.533333pt;}
.yc5{bottom:614.533333pt;}
.ya9{bottom:616.533333pt;}
.y121{bottom:621.533333pt;}
.y6d{bottom:627.573333pt;}
.yea{bottom:628.560000pt;}
.ya7{bottom:633.560000pt;}
.y120{bottom:636.573333pt;}
.y6c{bottom:643.560000pt;}
.ye9{bottom:645.560000pt;}
.ya6{bottom:650.560000pt;}
.y11f{bottom:651.573333pt;}
.yc4{bottom:652.560000pt;}
.y6b{bottom:658.560000pt;}
.ye7{bottom:663.600000pt;}
.yc3{bottom:667.600000pt;}
.ya5{bottom:670.600000pt;}
.y6a{bottom:673.600000pt;}
.y11e{bottom:682.600000pt;}
.yc2{bottom:683.600000pt;}
.ye6{bottom:684.600000pt;}
.ya4{bottom:685.600000pt;}
.y69{bottom:689.600000pt;}
.y11d{bottom:697.600000pt;}
.yc1{bottom:698.626667pt;}
.ya3{bottom:700.626667pt;}
.y68{bottom:704.626667pt;}
.y1a{bottom:711.640000pt;}
.yc0{bottom:713.626667pt;}
.ye5{bottom:715.626667pt;}
.ya2{bottom:716.626667pt;}
.y67{bottom:719.626667pt;}
.y11c{bottom:728.626667pt;}
.ybf{bottom:729.626667pt;}
.ye4{bottom:730.626667pt;}
.ya1{bottom:731.626667pt;}
.y66{bottom:735.666667pt;}
.yf{bottom:738.666667pt;}
.y11b{bottom:740.666667pt;}
.ybe{bottom:744.666667pt;}
.ya0{bottom:746.666667pt;}
.y65{bottom:750.666667pt;}
.ybd{bottom:759.666667pt;}
.ye3{bottom:761.666667pt;}
.y9f{bottom:762.666667pt;}
.y64{bottom:765.666667pt;}
.ybc{bottom:771.666667pt;}
.ye2{bottom:776.706667pt;}
.y9e{bottom:777.706667pt;}
.y63{bottom:781.706667pt;}
.y9d{bottom:792.706667pt;}
.y62{bottom:796.706667pt;}
.ye1{bottom:804.706667pt;}
.y106{bottom:807.706667pt;}
.y9c{bottom:808.706667pt;}
.y61{bottom:811.733333pt;}
.y100{bottom:820.733333pt;}
.y9b{bottom:823.733333pt;}
.y60{bottom:827.733333pt;}
.y105{bottom:836.733333pt;}
.y9a{bottom:838.733333pt;}
.y5f{bottom:842.733333pt;}
.y104{bottom:852.773333pt;}
.y99{bottom:854.773333pt;}
.y5e{bottom:857.773333pt;}
.yfe{bottom:868.760000pt;}
.y98{bottom:869.773333pt;}
.y5d{bottom:873.773333pt;}
.y97{bottom:884.800000pt;}
.y5c{bottom:888.800000pt;}
.yfd{bottom:899.800000pt;}
.y96{bottom:900.800000pt;}
.y5b{bottom:903.800000pt;}
.yd{bottom:907.800000pt;}
.y95{bottom:915.800000pt;}
.y5a{bottom:919.800000pt;}
.y6{bottom:930.840000pt;}
.y59{bottom:934.840000pt;}
.y94{bottom:945.840000pt;}
.y58{bottom:949.840000pt;}
.y93{bottom:962.866667pt;}
.y57{bottom:965.866667pt;}
.y92{bottom:978.866667pt;}
.y56{bottom:980.866667pt;}
.y91{bottom:994.893333pt;}
.y55{bottom:995.893333pt;}
.y54{bottom:1011.893333pt;}
.y53{bottom:1026.893333pt;}
.h23{height:15.000000pt;}
.h22{height:15.033333pt;}
.h25{height:15.986667pt;}
.h2c{height:16.000000pt;}
.h24{height:16.033333pt;}
.h2d{height:17.000000pt;}
.h2e{height:17.033333pt;}
.h28{height:18.000000pt;}
.h29{height:18.020000pt;}
.h27{height:18.033333pt;}
.hc{height:23.033333pt;}
.h13{height:26.625000pt;}
.h14{height:27.020000pt;}
.h2{height:29.033333pt;}
.h2a{height:30.000000pt;}
.h30{height:30.033333pt;}
.h2b{height:31.033333pt;}
.h12{height:31.828125pt;}
.h9{height:33.000000pt;}
.h1d{height:33.033333pt;}
.h1b{height:35.406250pt;}
.h18{height:36.308594pt;}
.h1c{height:36.689453pt;}
.h21{height:37.857422pt;}
.he{height:38.289062pt;}
.hb{height:39.000000pt;}
.h2f{height:39.033333pt;}
.h20{height:41.083385pt;}
.h1e{height:41.136719pt;}
.h39{height:41.163385pt;}
.h37{height:41.190052pt;}
.h38{height:41.243385pt;}
.h1f{height:41.296719pt;}
.h26{height:41.400391pt;}
.h19{height:41.843750pt;}
.h6{height:41.894531pt;}
.h1a{height:42.859375pt;}
.h17{height:43.763672pt;}
.h35{height:46.033333pt;}
.h36{height:46.066667pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h10{height:51.720703pt;}
.h11{height:53.244141pt;}
.hf{height:56.059115pt;}
.h5{height:61.435547pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h31{height:78.066667pt;}
.h32{height:79.066667pt;}
.h33{height:95.066667pt;}
.h7{height:108.100000pt;}
.hd{height:169.133333pt;}
.h34{height:203.200000pt;}
.h16{height:490.440000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w25{width:46.066667pt;}
.w2f{width:49.033333pt;}
.w1a{width:52.066667pt;}
.w38{width:54.066667pt;}
.w31{width:63.066667pt;}
.w39{width:65.100000pt;}
.w33{width:66.066667pt;}
.w2{width:66.100000pt;}
.w28{width:67.066667pt;}
.w30{width:68.100000pt;}
.w3a{width:69.066667pt;}
.w3c{width:70.100000pt;}
.w1e{width:72.100000pt;}
.w1b{width:74.100000pt;}
.w1f{width:77.100000pt;}
.w37{width:78.100000pt;}
.w1c{width:80.100000pt;}
.w26{width:81.100000pt;}
.w1d{width:82.100000pt;}
.w32{width:83.100000pt;}
.w2e{width:86.133333pt;}
.w29{width:93.133333pt;}
.w19{width:95.100000pt;}
.w27{width:95.133333pt;}
.w20{width:96.100000pt;}
.w23{width:96.133333pt;}
.w3b{width:100.133333pt;}
.w15{width:102.133333pt;}
.w21{width:115.133333pt;}
.w2b{width:117.133333pt;}
.w34{width:120.166667pt;}
.w16{width:126.166667pt;}
.w22{width:127.166667pt;}
.w3d{width:132.166667pt;}
.w3e{width:133.166667pt;}
.w4{width:135.160000pt;}
.w2d{width:147.160000pt;}
.w2c{width:147.200000pt;}
.w2a{width:149.160000pt;}
.w18{width:150.200000pt;}
.wa{width:159.200000pt;}
.w17{width:162.200000pt;}
.w35{width:166.200000pt;}
.w36{width:171.226667pt;}
.we{width:184.240000pt;}
.w9{width:187.240000pt;}
.w7{width:198.240000pt;}
.w12{width:215.266667pt;}
.w13{width:215.306667pt;}
.wf{width:216.266667pt;}
.w14{width:216.306667pt;}
.w10{width:217.266667pt;}
.w11{width:217.306667pt;}
.wc{width:231.306667pt;}
.wd{width:233.293333pt;}
.w24{width:242.306667pt;}
.wb{width:302.400000pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x80{left:5.033333pt;}
.x62{left:6.000000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x16{left:11.040000pt;}
.x86{left:14.026667pt;}
.x83{left:15.026667pt;}
.x8b{left:17.026667pt;}
.x79{left:18.026667pt;}
.x8c{left:19.026667pt;}
.x82{left:20.026667pt;}
.x7a{left:21.033333pt;}
.x85{left:22.026667pt;}
.x7b{left:23.026667pt;}
.x87{left:24.040000pt;}
.x89{left:26.026667pt;}
.x7d{left:27.026667pt;}
.x75{left:28.040000pt;}
.x73{left:29.066667pt;}
.x77{left:36.053333pt;}
.x1a{left:39.026667pt;}
.x84{left:41.066667pt;}
.x18{left:43.033333pt;}
.x3e{left:44.033333pt;}
.x88{left:45.066667pt;}
.x2d{left:46.066667pt;}
.x8a{left:47.066667pt;}
.x81{left:48.060000pt;}
.x3b{left:49.066667pt;}
.x38{left:50.066667pt;}
.x2f{left:51.066667pt;}
.x40{left:53.066667pt;}
.x31{left:54.066667pt;}
.x34{left:55.066667pt;}
.x33{left:57.066667pt;}
.x24{left:60.066667pt;}
.x3a{left:62.093333pt;}
.xf{left:63.066667pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x3c{left:67.060000pt;}
.x4{left:72.099988pt;}
.x47{left:74.100000pt;}
.x1f{left:76.100000pt;}
.x57{left:77.099988pt;}
.x36{left:78.100000pt;}
.x29{left:79.106667pt;}
.x67{left:80.099988pt;}
.x11{left:82.100000pt;}
.x1d{left:83.100000pt;}
.x41{left:86.100000pt;}
.x6{left:87.100000pt;}
.x72{left:89.100000pt;}
.x5f{left:90.099988pt;}
.x70{left:93.133322pt;}
.x27{left:95.100000pt;}
.x46{left:96.100000pt;}
.x25{left:98.140000pt;}
.x13{left:99.100000pt;}
.x3d{left:100.133333pt;}
.x32{left:101.133333pt;}
.x3f{left:104.133333pt;}
.x12{left:107.140000pt;}
.x28{left:109.133333pt;}
.x26{left:113.133333pt;}
.x2c{left:116.133322pt;}
.x1c{left:119.160000pt;}
.x10{left:136.166667pt;}
.x1e{left:138.173333pt;}
.x20{left:141.200000pt;}
.x43{left:166.199988pt;}
.x2b{left:167.199988pt;}
.x93{left:177.239988pt;}
.x35{left:180.239988pt;}
.x58{left:181.240000pt;}
.x14{left:190.233333pt;}
.x48{left:193.239988pt;}
.x8e{left:198.266667pt;}
.x7{left:200.266667pt;}
.x49{left:210.266655pt;}
.x74{left:217.266667pt;}
.x69{left:222.306667pt;}
.x4a{left:228.293322pt;}
.x17{left:231.293322pt;}
.x5b{left:233.306667pt;}
.x4b{left:245.306655pt;}
.xb{left:258.333333pt;}
.x19{left:260.333333pt;}
.x15{left:263.333333pt;}
.x6d{left:271.333333pt;}
.x7c{left:272.333333pt;}
.x4c{left:273.333322pt;}
.x37{left:287.373333pt;}
.x2e{left:288.373333pt;}
.x44{left:289.373333pt;}
.x4d{left:290.359988pt;}
.x22{left:304.400000pt;}
.x9{left:306.373333pt;}
.x21{left:307.399988pt;}
.x4e{left:308.399988pt;}
.x63{left:309.400000pt;}
.xa{left:324.400000pt;}
.xd{left:325.400000pt;}
.x68{left:326.439988pt;}
.x8f{left:331.440000pt;}
.xe{left:332.406667pt;}
.x76{left:338.440000pt;}
.x6a{left:340.440000pt;}
.x94{left:353.466655pt;}
.x71{left:371.466655pt;}
.x5c{left:387.506667pt;}
.xc{left:403.506667pt;}
.x60{left:404.533333pt;}
.x1b{left:420.533333pt;}
.x4f{left:427.533322pt;}
.x7e{left:435.573333pt;}
.x50{left:444.559988pt;}
.x90{left:464.600000pt;}
.x59{left:469.600000pt;}
.x64{left:472.600000pt;}
.x51{left:481.599988pt;}
.x6b{left:488.640000pt;}
.x52{left:497.639988pt;}
.x39{left:503.640000pt;}
.x30{left:505.640000pt;}
.x45{left:506.640000pt;}
.x53{left:521.666655pt;}
.x54{left:537.706655pt;}
.x23{left:538.693333pt;}
.x5d{left:541.693333pt;}
.x65{left:553.693333pt;}
.x6e{left:569.733333pt;}
.x92{left:571.733322pt;}
.x42{left:578.733322pt;}
.x8d{left:583.733322pt;}
.x91{left:596.773333pt;}
.x2a{left:600.773322pt;}
.x55{left:602.773322pt;}
.x7f{left:606.773333pt;}
.x66{left:607.759988pt;}
.x5e{left:612.773322pt;}
.x56{left:618.799988pt;}
.x5a{left:619.800000pt;}
.x6f{left:622.799988pt;}
.x6c{left:636.800000pt;}
.x61{left:647.840000pt;}
.x3{left:663.840000pt;}
.x78{left:676.866667pt;}
}




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