
    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_27a46b9c8c0651b98250e3c0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_64896a6a3b62ab2db62259d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_69d0e172b710f647d135b42e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f46c0c8e468dbda5168fe0cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.977539;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_f0c2f4a0fe101182f9b3a145.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.977539;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_d3b88186f1bea31d3d661df8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.093262;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_7274adb2050db90d8e3cfc83.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1bd68b64bbb10621923fd2d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939941;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_34acb7be3f714fe9736c444f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.846191;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_f68f6f855d02af6953e60812.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.783691;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_938c0f1c46797d3e45ed355c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.063477;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_cfc5764cecf140aa5238e021.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6fb7a004434c0434b7164f5c.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_0fb7daa49da84ad27ea36d7a.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_8d731e7d6ce7a873a9e89dc4.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_f423f6265783c5b00f004690.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.728027;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:ff13;src:url('chunks/assets/font_a8b9eaba2ae5c33651edc554.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_8b7025dd430484eb4a1c123d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.688477;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);}
.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:-27.360000px;}
.v4{vertical-align:-14.400000px;}
.v7{vertical-align:-12.960000px;}
.va{vertical-align:-6.360000px;}
.v9{vertical-align:-4.320000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:4.320000px;}
.vb{vertical-align:12.960000px;}
.v5{vertical-align:14.400000px;}
.v1{vertical-align:27.360000px;}
.v6{vertical-align:47.520000px;}
.v3{vertical-align:54.720000px;}
.ls7{letter-spacing:-1.296000px;}
.ls22{letter-spacing:-0.936000px;}
.ls2{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.496200px;}
.ls5{letter-spacing:-0.472200px;}
.ls3{letter-spacing:-0.463800px;}
.ls4{letter-spacing:-0.452400px;}
.ls15{letter-spacing:-0.423600px;}
.ls12{letter-spacing:-0.305400px;}
.ls16{letter-spacing:-0.288000px;}
.ls1{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000001px;}
.ls11{letter-spacing:0.072000px;}
.ls25{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.501000px;}
.ls13{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.540000px;}
.lse{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.648000px;}
.ls0{letter-spacing:0.720000px;}
.ls1e{letter-spacing:2.160000px;}
.lsb{letter-spacing:2.268000px;}
.lsd{letter-spacing:2.340000px;}
.ls28{letter-spacing:3.600000px;}
.lsc{letter-spacing:3.830400px;}
.ls24{letter-spacing:5.040000px;}
.ls27{letter-spacing:5.160000px;}
.ls1f{letter-spacing:7.920000px;}
.ls1c{letter-spacing:9.360000px;}
.ls26{letter-spacing:12.252000px;}
.ls1d{letter-spacing:18.000000px;}
.ls23{letter-spacing:19.440000px;}
.ls9{letter-spacing:19.656000px;}
.lsa{letter-spacing:21.189600px;}
.ls20{letter-spacing:22.320000px;}
.ls19{letter-spacing:30.396000px;}
.ls8{letter-spacing:31.836000px;}
.ls21{letter-spacing:32.400000px;}
.ls1a{letter-spacing:51.996000px;}
.ls14{letter-spacing:63.516000px;}
.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;}
}
.ws1{word-spacing:-119.520000px;}
.wsc{word-spacing:-72.072000px;}
.ws7{word-spacing:-72.000000px;}
.ws9{word-spacing:-56.664000px;}
.ws8{word-spacing:-50.400000px;}
.wsa{word-spacing:-48.480000px;}
.ws10{word-spacing:-24.408000px;}
.ws2{word-spacing:-23.425920px;}
.ws13{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.712000px;}
.wsb{word-spacing:-16.254600px;}
.ws12{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.970240px;}
.ws0{word-spacing:-14.506440px;}
.wsf{word-spacing:-13.701024px;}
.wse{word-spacing:-13.668480px;}
.wsd{word-spacing:-13.244880px;}
.ws6{word-spacing:-12.381000px;}
.ws5{word-spacing:0.000000px;}
._24{margin-left:-10.157760px;}
._19{margin-left:-8.519040px;}
._1e{margin-left:-6.552000px;}
._1b{margin-left:-5.422080px;}
._18{margin-left:-3.240000px;}
._d{margin-left:-2.151360px;}
._0{margin-left:-1.028160px;}
._1{width:1.816800px;}
._8{width:3.255360px;}
._9{width:4.637760px;}
._15{width:5.802240px;}
._10{width:6.984000px;}
._f{width:8.280000px;}
._b{width:10.008000px;}
._2{width:11.712960px;}
._3{width:13.218720px;}
._14{width:14.409600px;}
._17{width:15.615840px;}
._e{width:16.799040px;}
._c{width:19.512000px;}
._13{width:21.428640px;}
._12{width:22.536000px;}
._16{width:24.399360px;}
._7{width:26.136000px;}
._6{width:27.288000px;}
._11{width:28.985280px;}
._20{width:30.112800px;}
._5{width:31.983840px;}
._4{width:33.048000px;}
._1d{width:34.702080px;}
._a{width:37.944000px;}
._23{width:39.346560px;}
._1a{width:40.824000px;}
._21{width:41.839200px;}
._25{width:47.376000px;}
._26{width:48.735360px;}
._22{width:66.076320px;}
._1c{width:206.064000px;}
._1f{width:1208.040000px;}
.fc6{color:rgb(0,0,255);}
.fc4{color:rgb(0,29,53);}
.fc3{color:transparent;}
.fc2{color:rgb(118,113,113);}
.fc1{color:rgb(83,129,53);}
.fc5{color:rgb(53,53,53);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:47.520000px;}
.fs6{font-size:50.400000px;}
.fs1{font-size:60.480000px;}
.fs7{font-size:60.624000px;}
.fs2{font-size:66.240000px;}
.fs9{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fs8{font-size:108.000000px;}
.fs3{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y160{bottom:3.240000px;}
.y15e{bottom:3.960000px;}
.ye{bottom:4.320000px;}
.yec{bottom:5.760000px;}
.yad{bottom:14.760000px;}
.ye9{bottom:17.850000px;}
.ycc{bottom:17.895000px;}
.y164{bottom:20.520000px;}
.yae{bottom:22.680000px;}
.yb5{bottom:22.710000px;}
.yb3{bottom:23.760000px;}
.ybc{bottom:24.114000px;}
.yb7{bottom:24.120000px;}
.yb0{bottom:24.165000px;}
.y15d{bottom:24.870000px;}
.yee{bottom:25.920000px;}
.yf2{bottom:25.950000px;}
.yea{bottom:25.965000px;}
.yf0{bottom:26.280000px;}
.yeb{bottom:26.325000px;}
.yac{bottom:33.840000px;}
.y165{bottom:37.800000px;}
.yd{bottom:39.960000px;}
.ya{bottom:57.240000px;}
.yc{bottom:75.240000px;}
.ye3{bottom:85.170000px;}
.y35{bottom:109.836000px;}
.y15a{bottom:112.716000px;}
.ye4{bottom:113.790000px;}
.y70{bottom:114.156000px;}
.y17e{bottom:114.876000px;}
.y93{bottom:117.756000px;}
.y109{bottom:120.636000px;}
.ye1{bottom:125.316000px;}
.ybb{bottom:126.396000px;}
.y34{bottom:130.716000px;}
.y12d{bottom:132.876000px;}
.y55{bottom:137.916000px;}
.yc9{bottom:138.135000px;}
.ye5{bottom:142.410000px;}
.y119{bottom:142.596000px;}
.y159{bottom:143.676000px;}
.y6f{bottom:145.116000px;}
.y17d{bottom:145.836000px;}
.y92{bottom:148.716000px;}
.y13e{bottom:158.790000px;}
.y108{bottom:163.830000px;}
.yba{bottom:165.270000px;}
.y175{bottom:165.990000px;}
.y18d{bottom:167.430000px;}
.ye0{bottom:168.870000px;}
.y54{bottom:169.230000px;}
.ye6{bottom:171.075000px;}
.y33{bottom:172.470000px;}
.yc6{bottom:173.265000px;}
.y6e{bottom:176.070000px;}
.yc7{bottom:176.505000px;}
.y17c{bottom:176.790000px;}
.yca{bottom:178.665000px;}
.y91{bottom:179.670000px;}
.ybe{bottom:187.890000px;}
.yc0{bottom:188.970000px;}
.y13d{bottom:189.750000px;}
.y18c{bottom:191.550000px;}
.yc8{bottom:191.730000px;}
.y32{bottom:192.270000px;}
.ybf{bottom:192.960000px;}
.yc2{bottom:194.115000px;}
.y107{bottom:194.790000px;}
.y12c{bottom:195.150000px;}
.y158{bottom:195.510000px;}
.y118{bottom:195.870000px;}
.yc1{bottom:196.020000px;}
.yc4{bottom:196.740000px;}
.y174{bottom:196.950000px;}
.yc3{bottom:199.440000px;}
.ye7{bottom:199.695000px;}
.y53{bottom:200.235000px;}
.yc5{bottom:201.165000px;}
.yb9{bottom:202.755000px;}
.y6d{bottom:207.075000px;}
.y17b{bottom:208.155000px;}
.y90{bottom:211.035000px;}
.ydf{bottom:212.475000px;}
.y31{bottom:213.195000px;}
.y13c{bottom:220.755000px;}
.y106{bottom:225.795000px;}
.y12b{bottom:226.155000px;}
.y157{bottom:226.875000px;}
.y173{bottom:227.955000px;}
.ye8{bottom:228.315000px;}
.y18b{bottom:230.115000px;}
.y52{bottom:231.195000px;}
.y30{bottom:233.715000px;}
.y6c{bottom:238.395000px;}
.y17a{bottom:239.115000px;}
.yb8{bottom:241.275000px;}
.y8f{bottom:241.995000px;}
.ycb{bottom:243.510000px;}
.yde{bottom:244.155000px;}
.y117{bottom:250.635000px;}
.y13b{bottom:251.715000px;}
.y18a{bottom:253.875000px;}
.y2f{bottom:254.595000px;}
.y105{bottom:256.755000px;}
.y12a{bottom:257.115000px;}
.y156{bottom:257.835000px;}
.y172{bottom:259.275000px;}
.y51{bottom:262.155000px;}
.y8e{bottom:262.875000px;}
.y179{bottom:270.075000px;}
.y2e{bottom:275.115000px;}
.ydd{bottom:275.835000px;}
.ya0{bottom:277.275000px;}
.yb6{bottom:278.715000px;}
.y6b{bottom:281.235000px;}
.y13a{bottom:283.035000px;}
.y116{bottom:284.115000px;}
.y104{bottom:288.075000px;}
.y155{bottom:288.795000px;}
.y171{bottom:290.235000px;}
.y189{bottom:292.755000px;}
.y50{bottom:293.475000px;}
.y8d{bottom:293.835000px;}
.y2d{bottom:295.995000px;}
.y1a5{bottom:296.355000px;}
.y178{bottom:301.035000px;}
.ydc{bottom:307.155000px;}
.y9f{bottom:308.235000px;}
.y139{bottom:313.995000px;}
.y115{bottom:315.075000px;}
.y2c{bottom:316.515000px;}
.yb4{bottom:317.595000px;}
.y154{bottom:319.755000px;}
.y1a4{bottom:320.475000px;}
.y170{bottom:321.195000px;}
.y4f{bottom:324.465000px;}
.y8c{bottom:324.825000px;}
.y103{bottom:330.945000px;}
.y177{bottom:332.025000px;}
.y2b{bottom:337.425000px;}
.ydb{bottom:338.865000px;}
.y9e{bottom:339.225000px;}
.y129{bottom:340.665000px;}
.y1a3{bottom:344.265000px;}
.y114{bottom:346.425000px;}
.y153{bottom:351.105000px;}
.y16f{bottom:352.185000px;}
.yb2{bottom:355.065000px;}
.y4e{bottom:355.425000px;}
.y8b{bottom:355.785000px;}
.y138{bottom:356.865000px;}
.y2a{bottom:357.945000px;}
.y102{bottom:362.265000px;}
.y176{bottom:363.345000px;}
.y188{bottom:364.425000px;}
.y6a{bottom:367.305000px;}
.y1a2{bottom:368.025000px;}
.y9d{bottom:370.185000px;}
.yda{bottom:370.545000px;}
.y113{bottom:377.385000px;}
.y29{bottom:378.825000px;}
.y152{bottom:382.065000px;}
.y16e{bottom:383.505000px;}
.y4d{bottom:386.385000px;}
.y8a{bottom:386.745000px;}
.y137{bottom:388.185000px;}
.y1a1{bottom:391.785000px;}
.y101{bottom:393.225000px;}
.yb1{bottom:393.585000px;}
.y128{bottom:394.305000px;}
.y28{bottom:399.345000px;}
.y187{bottom:400.065000px;}
.y9c{bottom:401.505000px;}
.yd9{bottom:401.865000px;}
.y112{bottom:408.345000px;}
.y69{bottom:410.505000px;}
.y151{bottom:413.025000px;}
.y16d{bottom:414.465000px;}
.y1a0{bottom:415.545000px;}
.y4c{bottom:417.705000px;}
.y136{bottom:419.145000px;}
.y27{bottom:420.225000px;}
.y186{bottom:420.945000px;}
.y100{bottom:424.185000px;}
.y127{bottom:425.265000px;}
.yaf{bottom:431.025000px;}
.y9b{bottom:432.465000px;}
.y111{bottom:439.305000px;}
.y26{bottom:440.745000px;}
.y185{bottom:441.825000px;}
.y150{bottom:443.985000px;}
.y16c{bottom:445.425000px;}
.y4b{bottom:448.665000px;}
.y89{bottom:449.025000px;}
.y135{bottom:450.150000px;}
.y68{bottom:453.750000px;}
.yff{bottom:455.190000px;}
.y126{bottom:456.270000px;}
.y25{bottom:461.670000px;}
.y19f{bottom:463.110000px;}
.y9a{bottom:463.470000px;}
.y88{bottom:469.950000px;}
.y110{bottom:470.670000px;}
.y184{bottom:472.470000px;}
.y14f{bottom:475.350000px;}
.y16b{bottom:476.430000px;}
.y4a{bottom:479.670000px;}
.y134{bottom:481.110000px;}
.yfe{bottom:486.510000px;}
.y125{bottom:487.590000px;}
.y87{bottom:490.470000px;}
.y183{bottom:493.710000px;}
.y99{bottom:494.430000px;}
.y67{bottom:496.590000px;}
.y24{bottom:499.830000px;}
.yd8{bottom:501.990000px;}
.ye2{bottom:504.720000px;}
.y14e{bottom:506.310000px;}
.yab{bottom:507.390000px;}
.y49{bottom:510.630000px;}
.y85{bottom:511.710000px;}
.y133{bottom:512.430000px;}
.y10f{bottom:513.510000px;}
.y182{bottom:514.230000px;}
.y86{bottom:514.950000px;}
.yfd{bottom:517.470000px;}
.y124{bottom:518.550000px;}
.y98{bottom:525.750000px;}
.y84{bottom:533.310000px;}
.y23{bottom:535.830000px;}
.y14d{bottom:537.270000px;}
.y16a{bottom:538.710000px;}
.y66{bottom:539.790000px;}
.y48{bottom:541.950000px;}
.y10e{bottom:544.470000px;}
.yfc{bottom:548.430000px;}
.y123{bottom:549.510000px;}
.y83{bottom:554.190000px;}
.y132{bottom:555.270000px;}
.y22{bottom:556.710000px;}
.y14c{bottom:568.230000px;}
.y169{bottom:569.670000px;}
.yfb{bottom:570.390000px;}
.y181{bottom:570.750000px;}
.y47{bottom:572.910000px;}
.y19e{bottom:573.270000px;}
.y10d{bottom:575.820000px;}
.y21{bottom:577.620000px;}
.y122{bottom:580.500000px;}
.y65{bottom:582.660000px;}
.yaa{bottom:583.380000px;}
.y82{bottom:584.460000px;}
.y97{bottom:587.700000px;}
.yfa{bottom:590.940000px;}
.y180{bottom:591.300000px;}
.y19d{bottom:597.420000px;}
.y20{bottom:598.140000px;}
.y14b{bottom:599.580000px;}
.y168{bottom:600.660000px;}
.y46{bottom:603.900000px;}
.y131{bottom:604.260000px;}
.y10c{bottom:606.780000px;}
.yf9{bottom:611.460000px;}
.y121{bottom:611.820000px;}
.y81{bottom:614.340000px;}
.y96{bottom:618.660000px;}
.y1f{bottom:619.020000px;}
.y19c{bottom:621.180000px;}
.y17f{bottom:621.900000px;}
.y64{bottom:625.860000px;}
.y7f{bottom:626.220000px;}
.ya9{bottom:626.580000px;}
.y14a{bottom:630.540000px;}
.y130{bottom:631.620000px;}
.y45{bottom:634.860000px;}
.y10b{bottom:637.740000px;}
.y1e{bottom:639.540000px;}
.y120{bottom:642.780000px;}
.y80{bottom:643.140000px;}
.y19b{bottom:644.940000px;}
.y95{bottom:649.620000px;}
.yf8{bottom:652.860000px;}
.ya8{bottom:657.540000px;}
.y1d{bottom:660.420000px;}
.y149{bottom:661.500000px;}
.y44{bottom:666.180000px;}
.y63{bottom:668.700000px;}
.y11f{bottom:673.740000px;}
.y1c{bottom:680.940000px;}
.y7e{bottom:683.820000px;}
.ya7{bottom:688.860000px;}
.y148{bottom:692.460000px;}
.y167{bottom:694.620000px;}
.y43{bottom:697.140000px;}
.y1b{bottom:701.850000px;}
.y11e{bottom:704.730000px;}
.y62{bottom:711.930000px;}
.y7d{bottom:714.810000px;}
.yf7{bottom:715.170000px;}
.ya6{bottom:719.850000px;}
.y1a{bottom:722.370000px;}
.y10a{bottom:723.810000px;}
.y42{bottom:728.130000px;}
.y19a{bottom:731.370000px;}
.y166{bottom:733.170000px;}
.y11d{bottom:736.050000px;}
.y19{bottom:743.250000px;}
.y7c{bottom:745.770000px;}
.yf6{bottom:746.130000px;}
.ya5{bottom:750.810000px;}
.y147{bottom:754.770000px;}
.y61{bottom:755.130000px;}
.y41{bottom:759.090000px;}
.y18{bottom:763.770000px;}
.y11c{bottom:767.010000px;}
.y199{bottom:778.890000px;}
.ya4{bottom:781.770000px;}
.y146{bottom:785.730000px;}
.y60{bottom:786.090000px;}
.y17{bottom:787.170000px;}
.y7b{bottom:788.970000px;}
.yd7{bottom:789.330000px;}
.y40{bottom:790.410000px;}
.y11b{bottom:797.970000px;}
.yf5{bottom:806.970000px;}
.y16{bottom:810.930000px;}
.ya3{bottom:813.090000px;}
.y145{bottom:816.690000px;}
.y5f{bottom:817.050000px;}
.y198{bottom:817.770000px;}
.y7a{bottom:819.930000px;}
.yd6{bottom:820.290000px;}
.y3f{bottom:821.370000px;}
.y11a{bottom:828.975000px;}
.y15{bottom:834.735000px;}
.y163{bottom:838.335000px;}
.y12f{bottom:840.495000px;}
.y197{bottom:841.575000px;}
.ya2{bottom:844.095000px;}
.y5e{bottom:848.055000px;}
.yf4{bottom:850.575000px;}
.y79{bottom:850.935000px;}
.yd5{bottom:851.295000px;}
.y3e{bottom:852.375000px;}
.y14{bottom:858.855000px;}
.y94{bottom:860.295000px;}
.y196{bottom:865.335000px;}
.ya1{bottom:872.895000px;}
.y162{bottom:873.615000px;}
.ybd{bottom:876.240000px;}
.y144{bottom:879.015000px;}
.y12e{bottom:879.375000px;}
.y78{bottom:881.895000px;}
.yd4{bottom:882.255000px;}
.y13{bottom:882.615000px;}
.y3d{bottom:883.335000px;}
.y5d{bottom:891.255000px;}
.y161{bottom:891.615000px;}
.yf3{bottom:894.495000px;}
.y195{bottom:904.215000px;}
.y12{bottom:906.375000px;}
.y15f{bottom:909.615000px;}
.y143{bottom:909.975000px;}
.y77{bottom:913.215000px;}
.yd3{bottom:913.575000px;}
.y3c{bottom:914.655000px;}
.y5c{bottom:922.215000px;}
.y15c{bottom:927.615000px;}
.y194{bottom:927.975000px;}
.y11{bottom:930.135000px;}
.yf1{bottom:938.415000px;}
.y142{bottom:940.935000px;}
.y76{bottom:944.175000px;}
.y3b{bottom:945.615000px;}
.yd2{bottom:947.775000px;}
.y5b{bottom:953.205000px;}
.yd1{bottom:965.445000px;}
.y193{bottom:966.885000px;}
.y10{bottom:970.485000px;}
.y141{bottom:972.285000px;}
.y75{bottom:975.165000px;}
.y3a{bottom:976.605000px;}
.yef{bottom:982.005000px;}
.y5a{bottom:984.525000px;}
.y192{bottom:990.645000px;}
.y15b{bottom:994.245000px;}
.yf{bottom:998.205000px;}
.y140{bottom:1003.245000px;}
.yd0{bottom:1004.325000px;}
.y39{bottom:1007.565000px;}
.y74{bottom:1010.085000px;}
.y191{bottom:1014.405000px;}
.y59{bottom:1015.485000px;}
.y9{bottom:1021.965000px;}
.yed{bottom:1025.925000px;}
.y38{bottom:1038.885000px;}
.y8{bottom:1041.045000px;}
.ycf{bottom:1041.765000px;}
.y58{bottom:1046.445000px;}
.y190{bottom:1053.285000px;}
.y13f{bottom:1055.445000px;}
.y7{bottom:1058.325000px;}
.y37{bottom:1069.845000px;}
.y73{bottom:1072.005000px;}
.y6{bottom:1075.965000px;}
.y18f{bottom:1077.045000px;}
.y57{bottom:1077.405000px;}
.yce{bottom:1080.330000px;}
.y5{bottom:1097.970000px;}
.yb{bottom:1100.850000px;}
.y72{bottom:1103.370000px;}
.y56{bottom:1108.770000px;}
.y18e{bottom:1115.970000px;}
.ycd{bottom:1119.210000px;}
.y4{bottom:1121.730000px;}
.y71{bottom:1137.930000px;}
.y36{bottom:1139.730000px;}
.y3{bottom:1145.490000px;}
.y2{bottom:1169.250000px;}
.y1{bottom:1193.010000px;}
.h29{height:17.280000px;}
.h2a{height:34.560000px;}
.h15{height:36.360000px;}
.h17{height:36.720000px;}
.h19{height:36.756000px;}
.h18{height:37.800000px;}
.h20{height:37.836000px;}
.h1a{height:38.160000px;}
.h16{height:38.196000px;}
.h28{height:41.436000px;}
.h24{height:42.840000px;}
.h23{height:42.876000px;}
.h25{height:43.200000px;}
.h26{height:46.380937px;}
.h14{height:47.965781px;}
.h13{height:49.320000px;}
.h27{height:50.414062px;}
.h2c{height:51.840000px;}
.h2b{height:51.876000px;}
.h2{height:52.136719px;}
.hc{height:52.804688px;}
.h4{height:53.067656px;}
.h3{height:58.121719px;}
.h12{height:59.343750px;}
.h1c{height:60.155156px;}
.h1e{height:60.298383px;}
.h8{height:60.478594px;}
.he{height:60.679688px;}
.h9{height:63.175781px;}
.h10{height:64.999688px;}
.h5{height:65.884219px;}
.ha{height:67.824844px;}
.h21{height:68.748750px;}
.hb{height:69.056016px;}
.h1d{height:73.115156px;}
.h11{height:73.283906px;}
.h7{height:95.300859px;}
.h6{height:104.796000px;}
.hf{height:105.641719px;}
.h1f{height:110.583984px;}
.hd{height:115.399688px;}
.h22{height:249.840000px;}
.h1b{height:280.440000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:63.000000px;}
.wa{width:73.800000px;}
.wf{width:105.516000px;}
.w7{width:115.596000px;}
.wb{width:137.592000px;}
.w5{width:158.835000px;}
.we{width:164.235000px;}
.wc{width:169.275000px;}
.wd{width:180.075000px;}
.w6{width:180.795000px;}
.w11{width:222.555000px;}
.w10{width:243.825000px;}
.w9{width:451.800000px;}
.w8{width:461.520000px;}
.w3{width:566.130000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x19{left:7.920000px;}
.x5{left:10.800000px;}
.x1b{left:14.400000px;}
.x21{left:16.560000px;}
.x1f{left:18.720000px;}
.x20{left:20.520000px;}
.x29{left:22.110000px;}
.x39{left:25.410000px;}
.x1c{left:28.125000px;}
.x3f{left:32.043000px;}
.x47{left:33.120000px;}
.x24{left:37.110000px;}
.x27{left:40.710000px;}
.x46{left:42.870000px;}
.x41{left:45.720000px;}
.x1d{left:47.910000px;}
.x40{left:52.950000px;}
.x44{left:56.550000px;}
.x22{left:58.365000px;}
.x45{left:60.150000px;}
.x42{left:61.950000px;}
.x25{left:64.125000px;}
.x43{left:69.165000px;}
.x26{left:71.310000px;}
.x2a{left:72.930000px;}
.x23{left:76.710000px;}
.x4c{left:98.676000px;}
.x1{left:106.235987px;}
.x6{left:114.515987px;}
.x9{left:133.271987px;}
.x3b{left:138.672000px;}
.x2b{left:157.350000px;}
.xa{left:160.274987px;}
.x3a{left:177.945000px;}
.x2c{left:190.875000px;}
.x34{left:193.530000px;}
.x3c{left:213.195000px;}
.x28{left:214.560000px;}
.x7{left:216.794987px;}
.x38{left:218.594987px;}
.x18{left:223.665000px;}
.x35{left:229.215000px;}
.x11{left:233.744987px;}
.x49{left:239.144987px;}
.x2d{left:241.740000px;}
.x17{left:244.184987px;}
.x4{left:249.945000px;}
.x15{left:251.024987px;}
.x4d{left:263.625000px;}
.x2e{left:269.850000px;}
.xf{left:271.904987px;}
.x4b{left:285.944987px;}
.x1a{left:287.385000px;}
.x13{left:291.704987px;}
.x2f{left:297.975000px;}
.x8{left:299.264987px;}
.x12{left:300.344987px;}
.x10{left:303.224987px;}
.x16{left:324.869987px;}
.x30{left:326.130000px;}
.x36{left:328.469987px;}
.x48{left:336.389987px;}
.x3d{left:351.510000px;}
.x31{left:354.240000px;}
.x50{left:368.069987px;}
.x4e{left:370.230000px;}
.x32{left:382.395000px;}
.xb{left:401.219987px;}
.x33{left:415.905000px;}
.xe{left:436.499987px;}
.x4a{left:445.139987px;}
.x2{left:446.579987px;}
.xd{left:448.019987px;}
.xc{left:483.299987px;}
.x3e{left:521.490000px;}
.x4f{left:614.775000px;}
.x1e{left:628.455000px;}
.x37{left:673.844987px;}
.x14{left:678.164987px;}
.x3{left:753.449987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-12.800000pt;}
.v7{vertical-align:-11.520000pt;}
.va{vertical-align:-5.653333pt;}
.v9{vertical-align:-3.840000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:3.840000pt;}
.vb{vertical-align:11.520000pt;}
.v5{vertical-align:12.800000pt;}
.v1{vertical-align:24.320000pt;}
.v6{vertical-align:42.240000pt;}
.v3{vertical-align:48.640000pt;}
.ls7{letter-spacing:-1.152000pt;}
.ls22{letter-spacing:-0.832000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.441067pt;}
.ls5{letter-spacing:-0.419733pt;}
.ls3{letter-spacing:-0.412267pt;}
.ls4{letter-spacing:-0.402133pt;}
.ls15{letter-spacing:-0.376533pt;}
.ls12{letter-spacing:-0.271467pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000001pt;}
.ls11{letter-spacing:0.064000pt;}
.ls25{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.445333pt;}
.ls13{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.480000pt;}
.lse{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.576000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:1.920000pt;}
.lsb{letter-spacing:2.016000pt;}
.lsd{letter-spacing:2.080000pt;}
.ls28{letter-spacing:3.200000pt;}
.lsc{letter-spacing:3.404800pt;}
.ls24{letter-spacing:4.480000pt;}
.ls27{letter-spacing:4.586667pt;}
.ls1f{letter-spacing:7.040000pt;}
.ls1c{letter-spacing:8.320000pt;}
.ls26{letter-spacing:10.890667pt;}
.ls1d{letter-spacing:16.000000pt;}
.ls23{letter-spacing:17.280000pt;}
.ls9{letter-spacing:17.472000pt;}
.lsa{letter-spacing:18.835200pt;}
.ls20{letter-spacing:19.840000pt;}
.ls19{letter-spacing:27.018667pt;}
.ls8{letter-spacing:28.298667pt;}
.ls21{letter-spacing:28.800000pt;}
.ls1a{letter-spacing:46.218667pt;}
.ls14{letter-spacing:56.458667pt;}
.ws1{word-spacing:-106.240000pt;}
.wsc{word-spacing:-64.064000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws9{word-spacing:-50.368000pt;}
.ws8{word-spacing:-44.800000pt;}
.wsa{word-spacing:-43.093333pt;}
.ws10{word-spacing:-21.696000pt;}
.ws2{word-spacing:-20.823040pt;}
.ws13{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.744000pt;}
.wsb{word-spacing:-14.448533pt;}
.ws12{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.306880pt;}
.ws0{word-spacing:-12.894613pt;}
.wsf{word-spacing:-12.178688pt;}
.wse{word-spacing:-12.149760pt;}
.wsd{word-spacing:-11.773227pt;}
.ws6{word-spacing:-11.005333pt;}
.ws5{word-spacing:0.000000pt;}
._24{margin-left:-9.029120pt;}
._19{margin-left:-7.572480pt;}
._1e{margin-left:-5.824000pt;}
._1b{margin-left:-4.819627pt;}
._18{margin-left:-2.880000pt;}
._d{margin-left:-1.912320pt;}
._0{margin-left:-0.913920pt;}
._1{width:1.614933pt;}
._8{width:2.893653pt;}
._9{width:4.122453pt;}
._15{width:5.157547pt;}
._10{width:6.208000pt;}
._f{width:7.360000pt;}
._b{width:8.896000pt;}
._2{width:10.411520pt;}
._3{width:11.749973pt;}
._14{width:12.808533pt;}
._17{width:13.880747pt;}
._e{width:14.932480pt;}
._c{width:17.344000pt;}
._13{width:19.047680pt;}
._12{width:20.032000pt;}
._16{width:21.688320pt;}
._7{width:23.232000pt;}
._6{width:24.256000pt;}
._11{width:25.764693pt;}
._20{width:26.766933pt;}
._5{width:28.430080pt;}
._4{width:29.376000pt;}
._1d{width:30.846293pt;}
._a{width:33.728000pt;}
._23{width:34.974720pt;}
._1a{width:36.288000pt;}
._21{width:37.190400pt;}
._25{width:42.112000pt;}
._26{width:43.320320pt;}
._22{width:58.734507pt;}
._1c{width:183.168000pt;}
._1f{width:1073.813333pt;}
.fs5{font-size:42.240000pt;}
.fs6{font-size:44.800000pt;}
.fs1{font-size:53.760000pt;}
.fs7{font-size:53.888000pt;}
.fs2{font-size:58.880000pt;}
.fs9{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fs8{font-size:96.000000pt;}
.fs3{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y160{bottom:2.880000pt;}
.y15e{bottom:3.520000pt;}
.ye{bottom:3.840000pt;}
.yec{bottom:5.120000pt;}
.yad{bottom:13.120000pt;}
.ye9{bottom:15.866667pt;}
.ycc{bottom:15.906667pt;}
.y164{bottom:18.240000pt;}
.yae{bottom:20.160000pt;}
.yb5{bottom:20.186667pt;}
.yb3{bottom:21.120000pt;}
.ybc{bottom:21.434667pt;}
.yb7{bottom:21.440000pt;}
.yb0{bottom:21.480000pt;}
.y15d{bottom:22.106667pt;}
.yee{bottom:23.040000pt;}
.yf2{bottom:23.066667pt;}
.yea{bottom:23.080000pt;}
.yf0{bottom:23.360000pt;}
.yeb{bottom:23.400000pt;}
.yac{bottom:30.080000pt;}
.y165{bottom:33.600000pt;}
.yd{bottom:35.520000pt;}
.ya{bottom:50.880000pt;}
.yc{bottom:66.880000pt;}
.ye3{bottom:75.706667pt;}
.y35{bottom:97.632000pt;}
.y15a{bottom:100.192000pt;}
.ye4{bottom:101.146667pt;}
.y70{bottom:101.472000pt;}
.y17e{bottom:102.112000pt;}
.y93{bottom:104.672000pt;}
.y109{bottom:107.232000pt;}
.ye1{bottom:111.392000pt;}
.ybb{bottom:112.352000pt;}
.y34{bottom:116.192000pt;}
.y12d{bottom:118.112000pt;}
.y55{bottom:122.592000pt;}
.yc9{bottom:122.786667pt;}
.ye5{bottom:126.586667pt;}
.y119{bottom:126.752000pt;}
.y159{bottom:127.712000pt;}
.y6f{bottom:128.992000pt;}
.y17d{bottom:129.632000pt;}
.y92{bottom:132.192000pt;}
.y13e{bottom:141.146667pt;}
.y108{bottom:145.626667pt;}
.yba{bottom:146.906667pt;}
.y175{bottom:147.546667pt;}
.y18d{bottom:148.826667pt;}
.ye0{bottom:150.106667pt;}
.y54{bottom:150.426667pt;}
.ye6{bottom:152.066667pt;}
.y33{bottom:153.306667pt;}
.yc6{bottom:154.013333pt;}
.y6e{bottom:156.506667pt;}
.yc7{bottom:156.893333pt;}
.y17c{bottom:157.146667pt;}
.yca{bottom:158.813333pt;}
.y91{bottom:159.706667pt;}
.ybe{bottom:167.013333pt;}
.yc0{bottom:167.973333pt;}
.y13d{bottom:168.666667pt;}
.y18c{bottom:170.266667pt;}
.yc8{bottom:170.426667pt;}
.y32{bottom:170.906667pt;}
.ybf{bottom:171.520000pt;}
.yc2{bottom:172.546667pt;}
.y107{bottom:173.146667pt;}
.y12c{bottom:173.466667pt;}
.y158{bottom:173.786667pt;}
.y118{bottom:174.106667pt;}
.yc1{bottom:174.240000pt;}
.yc4{bottom:174.880000pt;}
.y174{bottom:175.066667pt;}
.yc3{bottom:177.280000pt;}
.ye7{bottom:177.506667pt;}
.y53{bottom:177.986667pt;}
.yc5{bottom:178.813333pt;}
.yb9{bottom:180.226667pt;}
.y6d{bottom:184.066667pt;}
.y17b{bottom:185.026667pt;}
.y90{bottom:187.586667pt;}
.ydf{bottom:188.866667pt;}
.y31{bottom:189.506667pt;}
.y13c{bottom:196.226667pt;}
.y106{bottom:200.706667pt;}
.y12b{bottom:201.026667pt;}
.y157{bottom:201.666667pt;}
.y173{bottom:202.626667pt;}
.ye8{bottom:202.946667pt;}
.y18b{bottom:204.546667pt;}
.y52{bottom:205.506667pt;}
.y30{bottom:207.746667pt;}
.y6c{bottom:211.906667pt;}
.y17a{bottom:212.546667pt;}
.yb8{bottom:214.466667pt;}
.y8f{bottom:215.106667pt;}
.ycb{bottom:216.453333pt;}
.yde{bottom:217.026667pt;}
.y117{bottom:222.786667pt;}
.y13b{bottom:223.746667pt;}
.y18a{bottom:225.666667pt;}
.y2f{bottom:226.306667pt;}
.y105{bottom:228.226667pt;}
.y12a{bottom:228.546667pt;}
.y156{bottom:229.186667pt;}
.y172{bottom:230.466667pt;}
.y51{bottom:233.026667pt;}
.y8e{bottom:233.666667pt;}
.y179{bottom:240.066667pt;}
.y2e{bottom:244.546667pt;}
.ydd{bottom:245.186667pt;}
.ya0{bottom:246.466667pt;}
.yb6{bottom:247.746667pt;}
.y6b{bottom:249.986667pt;}
.y13a{bottom:251.586667pt;}
.y116{bottom:252.546667pt;}
.y104{bottom:256.066667pt;}
.y155{bottom:256.706667pt;}
.y171{bottom:257.986667pt;}
.y189{bottom:260.226667pt;}
.y50{bottom:260.866667pt;}
.y8d{bottom:261.186667pt;}
.y2d{bottom:263.106667pt;}
.y1a5{bottom:263.426667pt;}
.y178{bottom:267.586667pt;}
.ydc{bottom:273.026667pt;}
.y9f{bottom:273.986667pt;}
.y139{bottom:279.106667pt;}
.y115{bottom:280.066667pt;}
.y2c{bottom:281.346667pt;}
.yb4{bottom:282.306667pt;}
.y154{bottom:284.226667pt;}
.y1a4{bottom:284.866667pt;}
.y170{bottom:285.506667pt;}
.y4f{bottom:288.413333pt;}
.y8c{bottom:288.733333pt;}
.y103{bottom:294.173333pt;}
.y177{bottom:295.133333pt;}
.y2b{bottom:299.933333pt;}
.ydb{bottom:301.213333pt;}
.y9e{bottom:301.533333pt;}
.y129{bottom:302.813333pt;}
.y1a3{bottom:306.013333pt;}
.y114{bottom:307.933333pt;}
.y153{bottom:312.093333pt;}
.y16f{bottom:313.053333pt;}
.yb2{bottom:315.613333pt;}
.y4e{bottom:315.933333pt;}
.y8b{bottom:316.253333pt;}
.y138{bottom:317.213333pt;}
.y2a{bottom:318.173333pt;}
.y102{bottom:322.013333pt;}
.y176{bottom:322.973333pt;}
.y188{bottom:323.933333pt;}
.y6a{bottom:326.493333pt;}
.y1a2{bottom:327.133333pt;}
.y9d{bottom:329.053333pt;}
.yda{bottom:329.373333pt;}
.y113{bottom:335.453333pt;}
.y29{bottom:336.733333pt;}
.y152{bottom:339.613333pt;}
.y16e{bottom:340.893333pt;}
.y4d{bottom:343.453333pt;}
.y8a{bottom:343.773333pt;}
.y137{bottom:345.053333pt;}
.y1a1{bottom:348.253333pt;}
.y101{bottom:349.533333pt;}
.yb1{bottom:349.853333pt;}
.y128{bottom:350.493333pt;}
.y28{bottom:354.973333pt;}
.y187{bottom:355.613333pt;}
.y9c{bottom:356.893333pt;}
.yd9{bottom:357.213333pt;}
.y112{bottom:362.973333pt;}
.y69{bottom:364.893333pt;}
.y151{bottom:367.133333pt;}
.y16d{bottom:368.413333pt;}
.y1a0{bottom:369.373333pt;}
.y4c{bottom:371.293333pt;}
.y136{bottom:372.573333pt;}
.y27{bottom:373.533333pt;}
.y186{bottom:374.173333pt;}
.y100{bottom:377.053333pt;}
.y127{bottom:378.013333pt;}
.yaf{bottom:383.133333pt;}
.y9b{bottom:384.413333pt;}
.y111{bottom:390.493333pt;}
.y26{bottom:391.773333pt;}
.y185{bottom:392.733333pt;}
.y150{bottom:394.653333pt;}
.y16c{bottom:395.933333pt;}
.y4b{bottom:398.813333pt;}
.y89{bottom:399.133333pt;}
.y135{bottom:400.133333pt;}
.y68{bottom:403.333333pt;}
.yff{bottom:404.613333pt;}
.y126{bottom:405.573333pt;}
.y25{bottom:410.373333pt;}
.y19f{bottom:411.653333pt;}
.y9a{bottom:411.973333pt;}
.y88{bottom:417.733333pt;}
.y110{bottom:418.373333pt;}
.y184{bottom:419.973333pt;}
.y14f{bottom:422.533333pt;}
.y16b{bottom:423.493333pt;}
.y4a{bottom:426.373333pt;}
.y134{bottom:427.653333pt;}
.yfe{bottom:432.453333pt;}
.y125{bottom:433.413333pt;}
.y87{bottom:435.973333pt;}
.y183{bottom:438.853333pt;}
.y99{bottom:439.493333pt;}
.y67{bottom:441.413333pt;}
.y24{bottom:444.293333pt;}
.yd8{bottom:446.213333pt;}
.ye2{bottom:448.640000pt;}
.y14e{bottom:450.053333pt;}
.yab{bottom:451.013333pt;}
.y49{bottom:453.893333pt;}
.y85{bottom:454.853333pt;}
.y133{bottom:455.493333pt;}
.y10f{bottom:456.453333pt;}
.y182{bottom:457.093333pt;}
.y86{bottom:457.733333pt;}
.yfd{bottom:459.973333pt;}
.y124{bottom:460.933333pt;}
.y98{bottom:467.333333pt;}
.y84{bottom:474.053333pt;}
.y23{bottom:476.293333pt;}
.y14d{bottom:477.573333pt;}
.y16a{bottom:478.853333pt;}
.y66{bottom:479.813333pt;}
.y48{bottom:481.733333pt;}
.y10e{bottom:483.973333pt;}
.yfc{bottom:487.493333pt;}
.y123{bottom:488.453333pt;}
.y83{bottom:492.613333pt;}
.y132{bottom:493.573333pt;}
.y22{bottom:494.853333pt;}
.y14c{bottom:505.093333pt;}
.y169{bottom:506.373333pt;}
.yfb{bottom:507.013333pt;}
.y181{bottom:507.333333pt;}
.y47{bottom:509.253333pt;}
.y19e{bottom:509.573333pt;}
.y10d{bottom:511.840000pt;}
.y21{bottom:513.440000pt;}
.y122{bottom:516.000000pt;}
.y65{bottom:517.920000pt;}
.yaa{bottom:518.560000pt;}
.y82{bottom:519.520000pt;}
.y97{bottom:522.400000pt;}
.yfa{bottom:525.280000pt;}
.y180{bottom:525.600000pt;}
.y19d{bottom:531.040000pt;}
.y20{bottom:531.680000pt;}
.y14b{bottom:532.960000pt;}
.y168{bottom:533.920000pt;}
.y46{bottom:536.800000pt;}
.y131{bottom:537.120000pt;}
.y10c{bottom:539.360000pt;}
.yf9{bottom:543.520000pt;}
.y121{bottom:543.840000pt;}
.y81{bottom:546.080000pt;}
.y96{bottom:549.920000pt;}
.y1f{bottom:550.240000pt;}
.y19c{bottom:552.160000pt;}
.y17f{bottom:552.800000pt;}
.y64{bottom:556.320000pt;}
.y7f{bottom:556.640000pt;}
.ya9{bottom:556.960000pt;}
.y14a{bottom:560.480000pt;}
.y130{bottom:561.440000pt;}
.y45{bottom:564.320000pt;}
.y10b{bottom:566.880000pt;}
.y1e{bottom:568.480000pt;}
.y120{bottom:571.360000pt;}
.y80{bottom:571.680000pt;}
.y19b{bottom:573.280000pt;}
.y95{bottom:577.440000pt;}
.yf8{bottom:580.320000pt;}
.ya8{bottom:584.480000pt;}
.y1d{bottom:587.040000pt;}
.y149{bottom:588.000000pt;}
.y44{bottom:592.160000pt;}
.y63{bottom:594.400000pt;}
.y11f{bottom:598.880000pt;}
.y1c{bottom:605.280000pt;}
.y7e{bottom:607.840000pt;}
.ya7{bottom:612.320000pt;}
.y148{bottom:615.520000pt;}
.y167{bottom:617.440000pt;}
.y43{bottom:619.680000pt;}
.y1b{bottom:623.866667pt;}
.y11e{bottom:626.426667pt;}
.y62{bottom:632.826667pt;}
.y7d{bottom:635.386667pt;}
.yf7{bottom:635.706667pt;}
.ya6{bottom:639.866667pt;}
.y1a{bottom:642.106667pt;}
.y10a{bottom:643.386667pt;}
.y42{bottom:647.226667pt;}
.y19a{bottom:650.106667pt;}
.y166{bottom:651.706667pt;}
.y11d{bottom:654.266667pt;}
.y19{bottom:660.666667pt;}
.y7c{bottom:662.906667pt;}
.yf6{bottom:663.226667pt;}
.ya5{bottom:667.386667pt;}
.y147{bottom:670.906667pt;}
.y61{bottom:671.226667pt;}
.y41{bottom:674.746667pt;}
.y18{bottom:678.906667pt;}
.y11c{bottom:681.786667pt;}
.y199{bottom:692.346667pt;}
.ya4{bottom:694.906667pt;}
.y146{bottom:698.426667pt;}
.y60{bottom:698.746667pt;}
.y17{bottom:699.706667pt;}
.y7b{bottom:701.306667pt;}
.yd7{bottom:701.626667pt;}
.y40{bottom:702.586667pt;}
.y11b{bottom:709.306667pt;}
.yf5{bottom:717.306667pt;}
.y16{bottom:720.826667pt;}
.ya3{bottom:722.746667pt;}
.y145{bottom:725.946667pt;}
.y5f{bottom:726.266667pt;}
.y198{bottom:726.906667pt;}
.y7a{bottom:728.826667pt;}
.yd6{bottom:729.146667pt;}
.y3f{bottom:730.106667pt;}
.y11a{bottom:736.866667pt;}
.y15{bottom:741.986667pt;}
.y163{bottom:745.186667pt;}
.y12f{bottom:747.106667pt;}
.y197{bottom:748.066667pt;}
.ya2{bottom:750.306667pt;}
.y5e{bottom:753.826667pt;}
.yf4{bottom:756.066667pt;}
.y79{bottom:756.386667pt;}
.yd5{bottom:756.706667pt;}
.y3e{bottom:757.666667pt;}
.y14{bottom:763.426667pt;}
.y94{bottom:764.706667pt;}
.y196{bottom:769.186667pt;}
.ya1{bottom:775.906667pt;}
.y162{bottom:776.546667pt;}
.ybd{bottom:778.880000pt;}
.y144{bottom:781.346667pt;}
.y12e{bottom:781.666667pt;}
.y78{bottom:783.906667pt;}
.yd4{bottom:784.226667pt;}
.y13{bottom:784.546667pt;}
.y3d{bottom:785.186667pt;}
.y5d{bottom:792.226667pt;}
.y161{bottom:792.546667pt;}
.yf3{bottom:795.106667pt;}
.y195{bottom:803.746667pt;}
.y12{bottom:805.666667pt;}
.y15f{bottom:808.546667pt;}
.y143{bottom:808.866667pt;}
.y77{bottom:811.746667pt;}
.yd3{bottom:812.066667pt;}
.y3c{bottom:813.026667pt;}
.y5c{bottom:819.746667pt;}
.y15c{bottom:824.546667pt;}
.y194{bottom:824.866667pt;}
.y11{bottom:826.786667pt;}
.yf1{bottom:834.146667pt;}
.y142{bottom:836.386667pt;}
.y76{bottom:839.266667pt;}
.y3b{bottom:840.546667pt;}
.yd2{bottom:842.466667pt;}
.y5b{bottom:847.293333pt;}
.yd1{bottom:858.173333pt;}
.y193{bottom:859.453333pt;}
.y10{bottom:862.653333pt;}
.y141{bottom:864.253333pt;}
.y75{bottom:866.813333pt;}
.y3a{bottom:868.093333pt;}
.yef{bottom:872.893333pt;}
.y5a{bottom:875.133333pt;}
.y192{bottom:880.573333pt;}
.y15b{bottom:883.773333pt;}
.yf{bottom:887.293333pt;}
.y140{bottom:891.773333pt;}
.yd0{bottom:892.733333pt;}
.y39{bottom:895.613333pt;}
.y74{bottom:897.853333pt;}
.y191{bottom:901.693333pt;}
.y59{bottom:902.653333pt;}
.y9{bottom:908.413333pt;}
.yed{bottom:911.933333pt;}
.y38{bottom:923.453333pt;}
.y8{bottom:925.373333pt;}
.ycf{bottom:926.013333pt;}
.y58{bottom:930.173333pt;}
.y190{bottom:936.253333pt;}
.y13f{bottom:938.173333pt;}
.y7{bottom:940.733333pt;}
.y37{bottom:950.973333pt;}
.y73{bottom:952.893333pt;}
.y6{bottom:956.413333pt;}
.y18f{bottom:957.373333pt;}
.y57{bottom:957.693333pt;}
.yce{bottom:960.293333pt;}
.y5{bottom:975.973333pt;}
.yb{bottom:978.533333pt;}
.y72{bottom:980.773333pt;}
.y56{bottom:985.573333pt;}
.y18e{bottom:991.973333pt;}
.ycd{bottom:994.853333pt;}
.y4{bottom:997.093333pt;}
.y71{bottom:1011.493333pt;}
.y36{bottom:1013.093333pt;}
.y3{bottom:1018.213333pt;}
.y2{bottom:1039.333333pt;}
.y1{bottom:1060.453333pt;}
.h29{height:15.360000pt;}
.h2a{height:30.720000pt;}
.h15{height:32.320000pt;}
.h17{height:32.640000pt;}
.h19{height:32.672000pt;}
.h18{height:33.600000pt;}
.h20{height:33.632000pt;}
.h1a{height:33.920000pt;}
.h16{height:33.952000pt;}
.h28{height:36.832000pt;}
.h24{height:38.080000pt;}
.h23{height:38.112000pt;}
.h25{height:38.400000pt;}
.h26{height:41.227500pt;}
.h14{height:42.636250pt;}
.h13{height:43.840000pt;}
.h27{height:44.812500pt;}
.h2c{height:46.080000pt;}
.h2b{height:46.112000pt;}
.h2{height:46.343750pt;}
.hc{height:46.937500pt;}
.h4{height:47.171250pt;}
.h3{height:51.663750pt;}
.h12{height:52.750000pt;}
.h1c{height:53.471250pt;}
.h1e{height:53.598562pt;}
.h8{height:53.758750pt;}
.he{height:53.937500pt;}
.h9{height:56.156250pt;}
.h10{height:57.777500pt;}
.h5{height:58.563750pt;}
.ha{height:60.288750pt;}
.h21{height:61.110000pt;}
.hb{height:61.383125pt;}
.h1d{height:64.991250pt;}
.h11{height:65.141250pt;}
.h7{height:84.711875pt;}
.h6{height:93.152000pt;}
.hf{height:93.903750pt;}
.h1f{height:98.296875pt;}
.hd{height:102.577500pt;}
.h22{height:222.080000pt;}
.h1b{height:249.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:56.000000pt;}
.wa{width:65.600000pt;}
.wf{width:93.792000pt;}
.w7{width:102.752000pt;}
.wb{width:122.304000pt;}
.w5{width:141.186667pt;}
.we{width:145.986667pt;}
.wc{width:150.466667pt;}
.wd{width:160.066667pt;}
.w6{width:160.706667pt;}
.w11{width:197.826667pt;}
.w10{width:216.733333pt;}
.w9{width:401.600000pt;}
.w8{width:410.240000pt;}
.w3{width:503.226667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x19{left:7.040000pt;}
.x5{left:9.600000pt;}
.x1b{left:12.800000pt;}
.x21{left:14.720000pt;}
.x1f{left:16.640000pt;}
.x20{left:18.240000pt;}
.x29{left:19.653333pt;}
.x39{left:22.586667pt;}
.x1c{left:25.000000pt;}
.x3f{left:28.482667pt;}
.x47{left:29.440000pt;}
.x24{left:32.986667pt;}
.x27{left:36.186667pt;}
.x46{left:38.106667pt;}
.x41{left:40.640000pt;}
.x1d{left:42.586667pt;}
.x40{left:47.066667pt;}
.x44{left:50.266667pt;}
.x22{left:51.880000pt;}
.x45{left:53.466667pt;}
.x42{left:55.066667pt;}
.x25{left:57.000000pt;}
.x43{left:61.480000pt;}
.x26{left:63.386667pt;}
.x2a{left:64.826667pt;}
.x23{left:68.186667pt;}
.x4c{left:87.712000pt;}
.x1{left:94.431988pt;}
.x6{left:101.791988pt;}
.x9{left:118.463988pt;}
.x3b{left:123.264000pt;}
.x2b{left:139.866667pt;}
.xa{left:142.466655pt;}
.x3a{left:158.173333pt;}
.x2c{left:169.666667pt;}
.x34{left:172.026667pt;}
.x3c{left:189.506667pt;}
.x28{left:190.720000pt;}
.x7{left:192.706655pt;}
.x38{left:194.306655pt;}
.x18{left:198.813333pt;}
.x35{left:203.746667pt;}
.x11{left:207.773322pt;}
.x49{left:212.573322pt;}
.x2d{left:214.880000pt;}
.x17{left:217.053322pt;}
.x4{left:222.173333pt;}
.x15{left:223.133322pt;}
.x4d{left:234.333333pt;}
.x2e{left:239.866667pt;}
.xf{left:241.693322pt;}
.x4b{left:254.173322pt;}
.x1a{left:255.453333pt;}
.x13{left:259.293322pt;}
.x2f{left:264.866667pt;}
.x8{left:266.013322pt;}
.x12{left:266.973322pt;}
.x10{left:269.533322pt;}
.x16{left:288.773322pt;}
.x30{left:289.893333pt;}
.x36{left:291.973322pt;}
.x48{left:299.013322pt;}
.x3d{left:312.453333pt;}
.x31{left:314.880000pt;}
.x50{left:327.173322pt;}
.x4e{left:329.093333pt;}
.x32{left:339.906667pt;}
.xb{left:356.639988pt;}
.x33{left:369.693333pt;}
.xe{left:387.999988pt;}
.x4a{left:395.679988pt;}
.x2{left:396.959988pt;}
.xd{left:398.239988pt;}
.xc{left:429.599988pt;}
.x3e{left:463.546667pt;}
.x4f{left:546.466667pt;}
.x1e{left:558.626667pt;}
.x37{left:598.973322pt;}
.x14{left:602.813322pt;}
.x3{left:669.733322pt;}
}




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