
    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_5ca71376a673a7837da01e9f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_57cd4c74070acd00976ee847.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_6aba58118b062a56b5ffd9e1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.902344;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_eecb12150f9962a1c014b5e4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.082031;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_c894cdcf89ee0fb3de69f8ec.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922852;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_01bf0155fb48735a2970b598.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_698a28d9aaf82440a43c4f1e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.708000;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_197597ba7c0034200919502e.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082031;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_774f282aef6a91959d13db3b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.028000;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_205a103669283accb781a5ee.woff')format("woff");}.ffa{font-family:ffa;line-height:0.705000;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_171e4e0e3d2812b4b7ad8299.woff')format("woff");}.ffb{font-family:ffb;line-height:0.922852;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_74d8ce847092a8a36c3826f3.woff')format("woff");}.ffc{font-family:ffc;line-height:0.902344;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_762ff6ccc7c4d131c021b3cc.woff')format("woff");}.ffd{font-family:ffd;line-height:0.666992;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_83380164e95b54c935df5edc.woff')format("woff");}.ffe{font-family:ffe;line-height:0.902344;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_9ee8919abbf0cafb48ff6da6.woff')format("woff");}.fff{font-family:fff;line-height:1.029000;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);}
.v3{vertical-align:-16.830000px;}
.v4{vertical-align:-14.400000px;}
.v6{vertical-align:-9.623400px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:19.808400px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:180.000000px;}
.ls29{letter-spacing:-14.760000px;}
.ls3a{letter-spacing:-5.580000px;}
.ls1b{letter-spacing:-4.800000px;}
.ls40{letter-spacing:-1.872000px;}
.ls30{letter-spacing:-1.800000px;}
.ls3f{letter-spacing:-1.632000px;}
.ls17{letter-spacing:-0.864000px;}
.ls24{letter-spacing:-0.792000px;}
.ls25{letter-spacing:-0.720000px;}
.ls34{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.600000px;}
.ls13{letter-spacing:-0.576000px;}
.ls16{letter-spacing:-0.504000px;}
.ls23{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.300000px;}
.ls14{letter-spacing:-0.288000px;}
.ls3b{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.060000px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.144000px;}
.ls3e{letter-spacing:0.168000px;}
.lsb{letter-spacing:0.216000px;}
.ls3d{letter-spacing:0.240000px;}
.ls1f{letter-spacing:0.288000px;}
.ls2a{letter-spacing:0.302400px;}
.lsf{letter-spacing:0.360000px;}
.lse{letter-spacing:0.432000px;}
.ls2b{letter-spacing:0.453600px;}
.ls1a{letter-spacing:0.504000px;}
.ls15{letter-spacing:0.576000px;}
.ls19{letter-spacing:0.648000px;}
.ls1e{letter-spacing:0.720000px;}
.ls12{letter-spacing:0.792000px;}
.lsd{letter-spacing:0.864000px;}
.ls28{letter-spacing:0.936000px;}
.ls2f{letter-spacing:1.008000px;}
.ls31{letter-spacing:1.296000px;}
.ls32{letter-spacing:1.368000px;}
.ls33{letter-spacing:1.512000px;}
.ls1{letter-spacing:2.850000px;}
.ls35{letter-spacing:3.660000px;}
.ls36{letter-spacing:3.690000px;}
.ls41{letter-spacing:4.416000px;}
.ls3{letter-spacing:4.512000px;}
.lsa{letter-spacing:4.560000px;}
.ls3c{letter-spacing:4.752000px;}
.ls26{letter-spacing:5.472000px;}
.ls20{letter-spacing:5.760000px;}
.ls2d{letter-spacing:7.200000px;}
.ls1c{letter-spacing:7.704000px;}
.ls42{letter-spacing:8.100000px;}
.ls0{letter-spacing:8.436000px;}
.ls6{letter-spacing:8.460000px;}
.ls4{letter-spacing:10.590684px;}
.ls2{letter-spacing:10.740000px;}
.ls21{letter-spacing:11.880000px;}
.ls2e{letter-spacing:11.952000px;}
.ls27{letter-spacing:13.795500px;}
.ls2c{letter-spacing:13.796100px;}
.ls39{letter-spacing:277.200000px;}
.ls37{letter-spacing:381.656400px;}
.ls38{letter-spacing:438.300000px;}
.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;}
}
.ws24{word-spacing:-54.360000px;}
.ws35{word-spacing:-29.664000px;}
.ws2{word-spacing:-25.320000px;}
.ws74{word-spacing:-23.274000px;}
.ws25{word-spacing:-20.232000px;}
.ws2e{word-spacing:-19.248000px;}
.ws1{word-spacing:-18.867000px;}
.ws29{word-spacing:-18.576000px;}
.ws51{word-spacing:-18.504000px;}
.ws1d{word-spacing:-18.432000px;}
.ws41{word-spacing:-18.360000px;}
.ws2b{word-spacing:-18.216000px;}
.ws2c{word-spacing:-18.072000px;}
.ws44{word-spacing:-18.000000px;}
.ws2a{word-spacing:-17.928000px;}
.ws2d{word-spacing:-17.856000px;}
.ws1c{word-spacing:-17.784000px;}
.ws3f{word-spacing:-17.712000px;}
.ws1b{word-spacing:-17.640000px;}
.ws36{word-spacing:-17.568000px;}
.ws1a{word-spacing:-17.424000px;}
.wse{word-spacing:-17.208000px;}
.ws4c{word-spacing:-16.860000px;}
.ws45{word-spacing:-14.820000px;}
.ws40{word-spacing:-14.616000px;}
.ws4d{word-spacing:-14.520000px;}
.ws3e{word-spacing:-14.464800px;}
.ws3{word-spacing:-14.220000px;}
.wsd{word-spacing:-14.162400px;}
.ws6e{word-spacing:-13.728000px;}
.ws2f{word-spacing:-13.488000px;}
.ws71{word-spacing:-12.336000px;}
.ws48{word-spacing:-11.952000px;}
.ws26{word-spacing:-11.856000px;}
.ws46{word-spacing:-11.802000px;}
.ws6b{word-spacing:-11.616000px;}
.wsc{word-spacing:-8.496000px;}
.ws27{word-spacing:-8.460000px;}
.ws49{word-spacing:-7.200000px;}
.ws4a{word-spacing:-5.760000px;}
.wsb{word-spacing:-4.560000px;}
.ws32{word-spacing:-3.528000px;}
.ws38{word-spacing:-2.016000px;}
.ws54{word-spacing:-1.512000px;}
.ws52{word-spacing:-1.368000px;}
.ws53{word-spacing:-1.296000px;}
.ws4f{word-spacing:-1.008000px;}
.ws42{word-spacing:-0.936000px;}
.ws16{word-spacing:-0.864000px;}
.ws15{word-spacing:-0.792000px;}
.ws1f{word-spacing:-0.720000px;}
.ws30{word-spacing:-0.648000px;}
.ws22{word-spacing:-0.576000px;}
.ws23{word-spacing:-0.504000px;}
.ws8{word-spacing:-0.480000px;}
.ws17{word-spacing:-0.432000px;}
.ws11{word-spacing:-0.360000px;}
.ws34{word-spacing:-0.288000px;}
.ws70{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.216000px;}
.ws31{word-spacing:-0.144000px;}
.ws13{word-spacing:-0.072000px;}
.ws72{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.ws9{word-spacing:0.060000px;}
.ws37{word-spacing:0.072000px;}
.ws21{word-spacing:0.144000px;}
.ws14{word-spacing:0.216000px;}
.ws6d{word-spacing:0.240000px;}
.ws19{word-spacing:0.288000px;}
.wsa{word-spacing:0.300000px;}
.ws12{word-spacing:0.360000px;}
.ws3a{word-spacing:0.432000px;}
.ws1e{word-spacing:0.504000px;}
.ws18{word-spacing:0.576000px;}
.ws7{word-spacing:0.600000px;}
.ws58{word-spacing:0.648000px;}
.ws3c{word-spacing:0.720000px;}
.ws3b{word-spacing:0.792000px;}
.ws20{word-spacing:0.864000px;}
.ws75{word-spacing:1.248000px;}
.ws6f{word-spacing:1.440000px;}
.ws6{word-spacing:1.800000px;}
.ws57{word-spacing:2.160000px;}
.ws50{word-spacing:2.400000px;}
.ws73{word-spacing:2.448000px;}
.ws4b{word-spacing:3.360000px;}
.ws4{word-spacing:3.600000px;}
.ws76{word-spacing:3.900000px;}
.ws55{word-spacing:4.140000px;}
.wsf{word-spacing:4.200000px;}
.ws47{word-spacing:4.536000px;}
.ws28{word-spacing:4.800000px;}
.ws33{word-spacing:5.400000px;}
.ws56{word-spacing:5.472000px;}
.ws6c{word-spacing:5.580000px;}
.ws59{word-spacing:5.832000px;}
.ws39{word-spacing:5.904000px;}
.ws3d{word-spacing:9.288000px;}
.ws4e{word-spacing:10.152000px;}
.ws43{word-spacing:10.728000px;}
.ws0{word-spacing:146.196000px;}
.ws5f{word-spacing:190.380000px;}
.ws5b{word-spacing:230.340000px;}
.ws60{word-spacing:260.340000px;}
.ws5c{word-spacing:272.904000px;}
.ws6a{word-spacing:274.122000px;}
.ws69{word-spacing:285.660000px;}
.ws62{word-spacing:299.880000px;}
.ws65{word-spacing:312.234000px;}
.ws5d{word-spacing:331.494000px;}
.ws61{word-spacing:340.200000px;}
.ws66{word-spacing:354.180000px;}
.ws68{word-spacing:367.500000px;}
.ws63{word-spacing:377.802000px;}
.ws67{word-spacing:383.580000px;}
.ws5e{word-spacing:385.800000px;}
.ws64{word-spacing:393.960000px;}
.ws5a{word-spacing:415.200000px;}
._d{margin-left:-948.820800px;}
._14{margin-left:-15.599700px;}
._12{margin-left:-14.345700px;}
._3{margin-left:-11.928000px;}
._17{margin-left:-10.848600px;}
._26{margin-left:-9.765000px;}
._11{margin-left:-8.469600px;}
._e{margin-left:-7.056000px;}
._0{margin-left:-5.784000px;}
._9{margin-left:-3.894000px;}
._4{margin-left:-2.484000px;}
._7{margin-left:-1.236000px;}
._2{width:1.738500px;}
._13{width:2.742000px;}
._1{width:3.744000px;}
._8{width:5.155200px;}
._a{width:6.318300px;}
._6{width:7.344000px;}
._5{width:8.364000px;}
._b{width:9.482400px;}
._c{width:10.570200px;}
._f{width:11.816700px;}
._15{width:12.937800px;}
._16{width:14.442900px;}
._10{width:31.646100px;}
._20{width:278.520000px;}
._1e{width:280.860000px;}
._1f{width:285.468600px;}
._21{width:317.605500px;}
._25{width:329.076000px;}
._1d{width:334.284000px;}
._18{width:374.820000px;}
._1a{width:384.720000px;}
._1b{width:390.604800px;}
._23{width:401.340000px;}
._1c{width:403.380000px;}
._22{width:412.920000px;}
._24{width:435.780000px;}
._19{width:449.160000px;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.600000px;}
.fs7{font-size:35.700000px;}
.fs8{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.fs5{font-size:423.828000px;}
.y0{bottom:0.000000px;}
.y1{bottom:72.000000px;}
.y91{bottom:117.000000px;}
.y6b{bottom:117.078000px;}
.y175{bottom:117.754650px;}
.y2a4{bottom:117.986250px;}
.y15d{bottom:118.475400px;}
.y27c{bottom:119.238000px;}
.y1ef{bottom:121.182750px;}
.y45{bottom:121.207500px;}
.y20e{bottom:121.652700px;}
.y139{bottom:121.705650px;}
.y249{bottom:121.716000px;}
.y20{bottom:121.725900px;}
.y1b7{bottom:121.776450px;}
.yb5{bottom:132.000000px;}
.y27b{bottom:134.238000px;}
.y90{bottom:136.207500px;}
.y2a3{bottom:136.736250px;}
.y248{bottom:137.016000px;}
.y15c{bottom:137.225400px;}
.y6a{bottom:138.984000px;}
.y44{bottom:139.500000px;}
.y174{bottom:140.110650px;}
.y1ee{bottom:140.532750px;}
.y138{bottom:140.755650px;}
.y1e{bottom:144.225900px;}
.y20d{bottom:144.458700px;}
.y1b6{bottom:144.726450px;}
.yb4{bottom:147.000000px;}
.y27a{bottom:149.238000px;}
.y226{bottom:151.207500px;}
.y247{bottom:152.316000px;}
.y8f{bottom:154.500000px;}
.y2a2{bottom:155.486250px;}
.y43{bottom:158.707500px;}
.y1ed{bottom:159.882750px;}
.yfb{bottom:160.382850px;}
.y1cc{bottom:160.848450px;}
.y69{bottom:160.890000px;}
.yb3{bottom:162.000000px;}
.y279{bottom:164.238000px;}
.y15b{bottom:164.480400px;}
.y116{bottom:166.207500px;}
.y1f{bottom:166.725900px;}
.y20c{bottom:167.264700px;}
.y246{bottom:167.616000px;}
.y1b5{bottom:167.676450px;}
.y137{bottom:168.310650px;}
.y8e{bottom:169.500000px;}
.y173{bottom:170.808150px;}
.y2a1{bottom:174.236250px;}
.yb2{bottom:177.000000px;}
.y278{bottom:179.238000px;}
.y1cb{bottom:179.598450px;}
.yfa{bottom:182.738850px;}
.y68{bottom:182.796000px;}
.y245{bottom:182.916000px;}
.y8d{bottom:184.500000px;}
.y136{bottom:187.360650px;}
.y1ec{bottom:187.737750px;}
.y172{bottom:189.258150px;}
.y20b{bottom:190.070700px;}
.y1b4{bottom:190.626450px;}
.y15a{bottom:191.734200px;}
.yb1{bottom:192.000000px;}
.y225{bottom:192.082350px;}
.y2a0{bottom:192.986250px;}
.y277{bottom:194.238000px;}
.yda{bottom:196.207500px;}
.y244{bottom:198.216000px;}
.y8c{bottom:199.500000px;}
.y42{bottom:199.800000px;}
.yd6{bottom:200.100000px;}
.y67{bottom:204.702000px;}
.yf9{bottom:205.094850px;}
.y115{bottom:205.506300px;}
.y195{bottom:206.566650px;}
.y1ca{bottom:206.852400px;}
.yb0{bottom:207.000000px;}
.y1eb{bottom:207.087750px;}
.y276{bottom:209.238000px;}
.y29f{bottom:211.736250px;}
.y20a{bottom:212.876700px;}
.y1b3{bottom:213.576450px;}
.y224{bottom:213.988350px;}
.y159{bottom:214.234200px;}
.yd9{bottom:214.500000px;}
.y135{bottom:214.836600px;}
.y171{bottom:216.213150px;}
.y8b{bottom:218.707500px;}
.y243{bottom:219.900000px;}
.y41{bottom:221.850000px;}
.yd5{bottom:222.600000px;}
.y114{bottom:224.106300px;}
.y275{bottom:224.238000px;}
.yaf{bottom:226.207500px;}
.y1ea{bottom:226.437750px;}
.y66{bottom:226.608000px;}
.y194{bottom:228.760650px;}
.y1c9{bottom:229.352400px;}
.y29e{bottom:230.486250px;}
.yd8{bottom:233.707500px;}
.y1d{bottom:234.225900px;}
.y170{bottom:234.663150px;}
.y209{bottom:235.682700px;}
.y223{bottom:235.894350px;}
.yf8{bottom:235.948800px;}
.y1b2{bottom:236.526450px;}
.y158{bottom:236.734200px;}
.y8a{bottom:237.000000px;}
.y134{bottom:237.642600px;}
.y274{bottom:239.238000px;}
.y40{bottom:243.900000px;}
.yae{bottom:244.500000px;}
.yd4{bottom:244.650000px;}
.y1e9{bottom:245.787750px;}
.y65{bottom:248.514000px;}
.y29d{bottom:249.236250px;}
.y113{bottom:251.211300px;}
.y89{bottom:252.000000px;}
.y1c{bottom:252.975900px;}
.y16f{bottom:253.113150px;}
.y273{bottom:254.238000px;}
.yf7{bottom:254.546700px;}
.yd7{bottom:256.207500px;}
.y222{bottom:257.800350px;}
.y208{bottom:258.488700px;}
.y157{bottom:259.234200px;}
.y193{bottom:259.461300px;}
.y1b1{bottom:259.476450px;}
.yad{bottom:259.500000px;}
.y1c8{bottom:260.354250px;}
.y133{bottom:260.448600px;}
.y242{bottom:265.326000px;}
.y3f{bottom:265.950000px;}
.yd3{bottom:266.700000px;}
.y88{bottom:267.000000px;}
.y29c{bottom:267.986250px;}
.y272{bottom:269.238000px;}
.y112{bottom:269.811300px;}
.y64{bottom:270.420000px;}
.y1e8{bottom:273.642750px;}
.y192{bottom:277.911300px;}
.yac{bottom:278.707500px;}
.y1c7{bottom:279.104250px;}
.y221{bottom:279.706350px;}
.y16e{bottom:280.068150px;}
.y1b{bottom:280.228800px;}
.y207{bottom:281.294700px;}
.yf6{bottom:281.651700px;}
.y156{bottom:281.734200px;}
.y87{bottom:282.000000px;}
.y132{bottom:283.254600px;}
.y271{bottom:284.238000px;}
.y29b{bottom:286.736250px;}
.y3e{bottom:288.000000px;}
.y241{bottom:288.132000px;}
.yd2{bottom:288.750000px;}
.y1b0{bottom:290.928150px;}
.y63{bottom:292.326000px;}
.y1e7{bottom:292.992750px;}
.y111{bottom:296.916300px;}
.yab{bottom:297.000000px;}
.y16d{bottom:298.518150px;}
.y1a{bottom:298.978800px;}
.y270{bottom:299.238000px;}
.yf5{bottom:300.251700px;}
.y86{bottom:301.207500px;}
.y220{bottom:301.612350px;}
.y206{bottom:304.100700px;}
.y155{bottom:304.234200px;}
.y191{bottom:304.866300px;}
.y29a{bottom:305.486250px;}
.y131{bottom:306.060600px;}
.y1c6{bottom:306.359250px;}
.y3d{bottom:310.050000px;}
.y1af{bottom:310.128150px;}
.yd1{bottom:310.800000px;}
.y240{bottom:310.938000px;}
.y62{bottom:314.232000px;}
.y26f{bottom:314.238000px;}
.y110{bottom:315.516300px;}
.yaa{bottom:316.207500px;}
.y19{bottom:317.728800px;}
.y1e6{bottom:320.847750px;}
.y190{bottom:323.316300px;}
.y21f{bottom:323.493150px;}
.y85{bottom:323.707500px;}
.y299{bottom:324.236250px;}
.y1c5{bottom:325.109250px;}
.y16c{bottom:325.473150px;}
.y154{bottom:326.734200px;}
.y205{bottom:326.906700px;}
.yf4{bottom:327.356700px;}
.y130{bottom:328.866600px;}
.y26e{bottom:329.238000px;}
.y3c{bottom:332.100000px;}
.yd0{bottom:332.850000px;}
.y23f{bottom:333.744000px;}
.y61{bottom:336.138000px;}
.y18{bottom:336.478800px;}
.y1ae{bottom:337.833150px;}
.y1e5{bottom:340.197750px;}
.y10f{bottom:342.621300px;}
.y298{bottom:342.986250px;}
.y16b{bottom:343.923150px;}
.y26d{bottom:344.238000px;}
.y153{bottom:349.234200px;}
.y18f{bottom:350.271300px;}
.y12f{bottom:351.672600px;}
.y1c4{bottom:352.364250px;}
.y3b{bottom:354.150000px;}
.yf3{bottom:354.454650px;}
.ycf{bottom:354.900000px;}
.y17{bottom:355.228800px;}
.y23e{bottom:356.550000px;}
.y1ad{bottom:357.033150px;}
.y60{bottom:358.044000px;}
.y26c{bottom:359.238000px;}
.y10e{bottom:361.221300px;}
.y297{bottom:361.736250px;}
.ya9{bottom:361.812000px;}
.y84{bottom:366.250050px;}
.y1e4{bottom:368.052750px;}
.y18e{bottom:368.721300px;}
.y16a{bottom:370.878150px;}
.y1c3{bottom:371.114250px;}
.y152{bottom:371.734200px;}
.y204{bottom:372.505650px;}
.y16{bottom:373.978800px;}
.y26b{bottom:374.238000px;}
.y12e{bottom:374.478600px;}
.y3a{bottom:376.200000px;}
.yf2{bottom:376.810650px;}
.yce{bottom:376.950000px;}
.y21e{bottom:378.678150px;}
.y23d{bottom:379.356000px;}
.y5f{bottom:379.950000px;}
.y296{bottom:380.486250px;}
.ya8{bottom:384.456000px;}
.y1ac{bottom:384.736050px;}
.y1e3{bottom:387.402750px;}
.y10d{bottom:388.326300px;}
.y83{bottom:388.894050px;}
.y26a{bottom:389.238000px;}
.y169{bottom:389.328150px;}
.y1c2{bottom:389.864250px;}
.y203{bottom:391.555650px;}
.y15{bottom:392.728800px;}
.y151{bottom:394.234200px;}
.y18d{bottom:395.676300px;}
.y12d{bottom:397.284600px;}
.y39{bottom:398.250000px;}
.ycd{bottom:399.000000px;}
.y295{bottom:399.236250px;}
.y5e{bottom:401.856000px;}
.y23c{bottom:402.162000px;}
.y269{bottom:404.238000px;}
.y21d{bottom:405.663150px;}
.ya7{bottom:407.130000px;}
.yf1{bottom:407.662500px;}
.y14{bottom:411.478800px;}
.y1ab{bottom:412.441050px;}
.y1e2{bottom:415.262700px;}
.y10c{bottom:415.406400px;}
.y168{bottom:416.283150px;}
.y150{bottom:416.734200px;}
.y1c1{bottom:417.118050px;}
.y294{bottom:417.986250px;}
.y202{bottom:419.110650px;}
.y268{bottom:419.238000px;}
.y82{bottom:420.052050px;}
.y12c{bottom:420.090600px;}
.y38{bottom:420.300000px;}
.ycc{bottom:421.050000px;}
.y18c{bottom:422.672250px;}
.y5d{bottom:423.762000px;}
.y23b{bottom:424.968000px;}
.yf0{bottom:426.262500px;}
.ya6{bottom:429.774000px;}
.y13{bottom:430.228800px;}
.y21c{bottom:432.648150px;}
.y267{bottom:434.238000px;}
.y167{bottom:434.733150px;}
.y293{bottom:436.736250px;}
.y10b{bottom:437.762400px;}
.y201{bottom:438.160650px;}
.y1e1{bottom:438.356700px;}
.y14f{bottom:439.234200px;}
.y1c0{bottom:439.618050px;}
.y1aa{bottom:440.146050px;}
.y37{bottom:442.350000px;}
.y81{bottom:442.744050px;}
.y12b{bottom:442.896600px;}
.ycb{bottom:443.100000px;}
.y18b{bottom:444.866250px;}
.y5c{bottom:445.668000px;}
.y23a{bottom:447.774000px;}
.y12{bottom:448.978800px;}
.y266{bottom:449.238000px;}
.ya5{bottom:452.418000px;}
.yef{bottom:453.367500px;}
.y292{bottom:455.486250px;}
.y21b{bottom:459.633150px;}
.y10a{bottom:460.118400px;}
.y166{bottom:461.688150px;}
.y14e{bottom:461.734200px;}
.y1bf{bottom:462.118050px;}
.y265{bottom:464.238000px;}
.y36{bottom:464.400000px;}
.yca{bottom:465.150000px;}
.y80{bottom:465.388050px;}
.y12a{bottom:465.702600px;}
.y18a{bottom:467.060250px;}
.y5b{bottom:467.574000px;}
.y1a9{bottom:467.850000px;}
.y1e0{bottom:469.957500px;}
.y239{bottom:470.580000px;}
.y291{bottom:474.236250px;}
.ya4{bottom:475.062000px;}
.y11{bottom:476.233800px;}
.y264{bottom:479.238000px;}
.y165{bottom:480.138150px;}
.yee{bottom:480.472500px;}
.y109{bottom:482.474400px;}
.y14d{bottom:484.234200px;}
.y1be{bottom:484.618050px;}
.y35{bottom:486.450000px;}
.y21a{bottom:486.618150px;}
.yc9{bottom:487.200000px;}
.y7f{bottom:488.032050px;}
.y129{bottom:488.508600px;}
.y189{bottom:489.254250px;}
.y1df{bottom:489.307500px;}
.y5a{bottom:489.480000px;}
.y1a8{bottom:490.800000px;}
.y290{bottom:492.986250px;}
.y238{bottom:493.386000px;}
.y263{bottom:494.238000px;}
.ya3{bottom:497.706000px;}
.yed{bottom:499.072500px;}
.y108{bottom:504.794400px;}
.y14c{bottom:506.734200px;}
.y1bd{bottom:507.118050px;}
.y164{bottom:507.128100px;}
.y34{bottom:508.500000px;}
.y262{bottom:509.238000px;}
.yc8{bottom:509.250000px;}
.y7e{bottom:510.676050px;}
.y128{bottom:511.314600px;}
.y59{bottom:511.386000px;}
.y188{bottom:511.448250px;}
.y28f{bottom:511.736250px;}
.y219{bottom:513.603150px;}
.y1a7{bottom:513.750000px;}
.y237{bottom:516.192000px;}
.y1de{bottom:517.162500px;}
.ya2{bottom:520.410000px;}
.y10{bottom:521.233800px;}
.y261{bottom:524.238000px;}
.yec{bottom:526.176300px;}
.y107{bottom:527.150400px;}
.y163{bottom:529.322100px;}
.y1bc{bottom:529.618050px;}
.y28e{bottom:530.486250px;}
.y33{bottom:530.550000px;}
.y58{bottom:533.292000px;}
.y7d{bottom:533.320050px;}
.y187{bottom:533.642250px;}
.y1a6{bottom:536.700000px;}
.y14b{bottom:537.736050px;}
.y236{bottom:538.998000px;}
.y260{bottom:539.238000px;}
.yf{bottom:539.983800px;}
.y218{bottom:540.588150px;}
.y200{bottom:542.616300px;}
.y127{bottom:542.617350px;}
.ya1{bottom:543.054000px;}
.y1dd{bottom:545.017500px;}
.y28d{bottom:549.236250px;}
.y106{bottom:549.506400px;}
.y162{bottom:551.516100px;}
.y1bb{bottom:552.118050px;}
.y32{bottom:552.600000px;}
.yc7{bottom:553.350000px;}
.y25f{bottom:554.238000px;}
.y57{bottom:555.198000px;}
.y186{bottom:555.836250px;}
.y7c{bottom:555.964050px;}
.yeb{bottom:557.029200px;}
.y1a5{bottom:559.650000px;}
.y1ff{bottom:561.666300px;}
.y126{bottom:561.667350px;}
.y235{bottom:561.804000px;}
.y1dc{bottom:564.367500px;}
.y14a{bottom:564.991050px;}
.ya0{bottom:565.698000px;}
.ye{bottom:567.236700px;}
.y217{bottom:567.573150px;}
.y28c{bottom:567.986250px;}
.y25e{bottom:569.238000px;}
.y105{bottom:571.862400px;}
.y161{bottom:573.710100px;}
.y1ba{bottom:574.618050px;}
.y31{bottom:574.650000px;}
.yc6{bottom:575.400000px;}
.yea{bottom:575.629200px;}
.y56{bottom:577.104000px;}
.y185{bottom:578.066400px;}
.y7b{bottom:578.608050px;}
.y1a4{bottom:582.600000px;}
.y149{bottom:583.741050px;}
.y25d{bottom:584.238000px;}
.y234{bottom:584.610000px;}
.yd{bottom:585.986700px;}
.y28b{bottom:586.736250px;}
.y9f{bottom:588.342000px;}
.y1fe{bottom:589.221300px;}
.y125{bottom:589.222350px;}
.y1db{bottom:592.222500px;}
.y104{bottom:594.218400px;}
.y216{bottom:594.558150px;}
.y160{bottom:595.904100px;}
.y30{bottom:596.700000px;}
.y1b9{bottom:597.118050px;}
.yc5{bottom:597.450000px;}
.y55{bottom:599.010000px;}
.y25c{bottom:599.238000px;}
.y184{bottom:600.260400px;}
.y7a{bottom:601.252050px;}
.ye9{bottom:602.734200px;}
.yc{bottom:604.736700px;}
.y28a{bottom:605.486250px;}
.y1a3{bottom:605.550000px;}
.y233{bottom:607.416000px;}
.y1fd{bottom:608.271300px;}
.y9e{bottom:610.986000px;}
.y148{bottom:610.996050px;}
.y1da{bottom:611.572500px;}
.y25b{bottom:614.238000px;}
.y103{bottom:616.574400px;}
.y124{bottom:616.770300px;}
.y15f{bottom:618.098100px;}
.y2f{bottom:618.750000px;}
.yc4{bottom:619.500000px;}
.y1b8{bottom:619.618050px;}
.y54{bottom:620.916000px;}
.ye8{bottom:621.334200px;}
.y215{bottom:621.543150px;}
.y183{bottom:622.454400px;}
.yb{bottom:623.486700px;}
.y79{bottom:623.946000px;}
.y289{bottom:624.236250px;}
.y1a2{bottom:628.500000px;}
.y25a{bottom:629.238000px;}
.y147{bottom:629.746050px;}
.y232{bottom:630.222000px;}
.y9d{bottom:633.630000px;}
.y1fc{bottom:635.826300px;}
.y102{bottom:638.930400px;}
.y1d9{bottom:639.432450px;}
.y123{bottom:639.576300px;}
.y15e{bottom:640.292100px;}
.y2e{bottom:640.800000px;}
.yc3{bottom:641.550000px;}
.ya{bottom:642.236700px;}
.y53{bottom:642.822000px;}
.y288{bottom:642.986250px;}
.y259{bottom:644.238000px;}
.y182{bottom:644.648400px;}
.y78{bottom:646.590000px;}
.ye7{bottom:648.432150px;}
.y214{bottom:648.528150px;}
.y1a1{bottom:651.450000px;}
.y231{bottom:653.028000px;}
.y9c{bottom:656.274000px;}
.y146{bottom:657.000000px;}
.y258{bottom:659.238000px;}
.y9{bottom:660.986700px;}
.y1d8{bottom:662.526450px;}
.y2d{bottom:662.850000px;}
.y1fb{bottom:663.374400px;}
.yc2{bottom:663.600000px;}
.y52{bottom:664.728000px;}
.y181{bottom:666.842400px;}
.y77{bottom:669.234000px;}
.y101{bottom:669.781050px;}
.ye6{bottom:670.788150px;}
.y122{bottom:670.879200px;}
.y257{bottom:674.238000px;}
.y1a0{bottom:674.400000px;}
.y287{bottom:674.492100px;}
.y213{bottom:675.508650px;}
.y230{bottom:675.834000px;}
.y9b{bottom:678.918000px;}
.y145{bottom:679.500000px;}
.y8{bottom:679.736700px;}
.y2c{bottom:684.900000px;}
.yc1{bottom:685.650000px;}
.y1fa{bottom:686.180400px;}
.y51{bottom:686.634000px;}
.y100{bottom:688.381050px;}
.y180{bottom:689.036400px;}
.y256{bottom:689.238000px;}
.y121{bottom:689.929200px;}
.y2ad{bottom:690.750000px;}
.y1d7{bottom:694.125000px;}
.y19f{bottom:697.350000px;}
.y7{bottom:698.486700px;}
.y22f{bottom:698.640000px;}
.y76{bottom:700.392000px;}
.y9a{bottom:701.562000px;}
.ye5{bottom:701.641050px;}
.y144{bottom:702.000000px;}
.y212{bottom:702.493650px;}
.y255{bottom:704.238000px;}
.y286{bottom:705.252000px;}
.y2b{bottom:706.950000px;}
.yc0{bottom:707.700000px;}
.y50{bottom:708.540000px;}
.y2ac{bottom:709.500000px;}
.y17f{bottom:711.230400px;}
.y1d6{bottom:713.475000px;}
.yff{bottom:715.486050px;}
.y1f9{bottom:717.481050px;}
.y120{bottom:717.484200px;}
.y254{bottom:719.238000px;}
.ye4{bottom:720.241050px;}
.y19e{bottom:720.300000px;}
.y22e{bottom:721.446000px;}
.y75{bottom:723.036000px;}
.y99{bottom:724.206000px;}
.y143{bottom:724.500000px;}
.y6{bottom:725.741700px;}
.y2ab{bottom:728.250000px;}
.y2a{bottom:729.000000px;}
.y211{bottom:729.478650px;}
.ybf{bottom:729.750000px;}
.y4f{bottom:730.446000px;}
.y11f{bottom:736.534200px;}
.y253{bottom:740.622000px;}
.y1d5{bottom:741.330000px;}
.y17e{bottom:741.931050px;}
.yfe{bottom:742.591050px;}
.y19d{bottom:743.250000px;}
.y22d{bottom:744.252000px;}
.y1f8{bottom:745.036050px;}
.y74{bottom:745.680000px;}
.y98{bottom:746.892000px;}
.y142{bottom:747.000000px;}
.ye3{bottom:747.346050px;}
.y29{bottom:751.050000px;}
.ybe{bottom:751.800000px;}
.y4e{bottom:752.352000px;}
.y285{bottom:754.500000px;}
.y210{bottom:756.463650px;}
.y17d{bottom:760.381050px;}
.y1d4{bottom:760.680000px;}
.yfd{bottom:761.191050px;}
.y11e{bottom:764.082150px;}
.y1f7{bottom:764.086050px;}
.ye2{bottom:765.946050px;}
.y19c{bottom:766.200000px;}
.y22c{bottom:767.058000px;}
.y73{bottom:768.324000px;}
.y141{bottom:769.500000px;}
.y97{bottom:769.536000px;}
.y5{bottom:771.627450px;}
.y28{bottom:773.100000px;}
.ybd{bottom:773.850000px;}
.y4d{bottom:774.258000px;}
.y2aa{bottom:777.000000px;}
.y284{bottom:784.500000px;}
.y252{bottom:785.622000px;}
.y11d{bottom:786.888150px;}
.y17c{bottom:787.336050px;}
.yfc{bottom:788.296050px;}
.y1d3{bottom:788.535000px;}
.y19b{bottom:789.150000px;}
.y22b{bottom:789.864000px;}
.y72{bottom:790.968000px;}
.y1f6{bottom:791.641050px;}
.y140{bottom:792.000000px;}
.y96{bottom:792.180000px;}
.ye1{bottom:793.014000px;}
.y4{bottom:794.127450px;}
.y27{bottom:795.150000px;}
.ybc{bottom:795.900000px;}
.y4c{bottom:796.164000px;}
.y20f{bottom:796.200000px;}
.y283{bottom:799.500000px;}
.y251{bottom:800.622000px;}
.y17b{bottom:805.786050px;}
.y1d2{bottom:807.885000px;}
.y1f5{bottom:810.691050px;}
.y19a{bottom:812.100000px;}
.y22a{bottom:812.670000px;}
.y71{bottom:813.612000px;}
.y13f{bottom:814.500000px;}
.y95{bottom:814.824000px;}
.ye0{bottom:815.370000px;}
.y250{bottom:815.622000px;}
.y26{bottom:817.200000px;}
.ybb{bottom:817.950000px;}
.y4b{bottom:818.070000px;}
.y11c{bottom:818.190000px;}
.y2a9{bottom:818.250000px;}
.y282{bottom:829.500000px;}
.y24f{bottom:830.622000px;}
.y17a{bottom:832.741050px;}
.y199{bottom:835.050000px;}
.y229{bottom:835.476000px;}
.y1d1{bottom:835.740000px;}
.y70{bottom:836.256000px;}
.y13e{bottom:837.000000px;}
.y11b{bottom:837.240000px;}
.y94{bottom:837.468000px;}
.ydf{bottom:837.726000px;}
.y1f4{bottom:838.246050px;}
.y25{bottom:839.250000px;}
.y4a{bottom:839.976000px;}
.yba{bottom:840.000000px;}
.y281{bottom:844.500000px;}
.y24e{bottom:845.622000px;}
.y179{bottom:851.191050px;}
.y2a8{bottom:855.750000px;}
.y1f3{bottom:857.296050px;}
.y198{bottom:858.000000px;}
.y228{bottom:858.282000px;}
.y6f{bottom:858.912000px;}
.y13d{bottom:859.500000px;}
.yde{bottom:860.082000px;}
.y93{bottom:860.112000px;}
.y24d{bottom:860.622000px;}
.y3{bottom:861.273150px;}
.y24{bottom:861.300000px;}
.y49{bottom:861.882000px;}
.yb9{bottom:862.050000px;}
.y1d0{bottom:863.595000px;}
.y11a{bottom:864.795000px;}
.y280{bottom:874.500000px;}
.y24c{bottom:875.622000px;}
.y1f2{bottom:876.346050px;}
.y178{bottom:878.146050px;}
.y197{bottom:880.950000px;}
.y227{bottom:881.088000px;}
.y6e{bottom:881.556000px;}
.y13c{bottom:882.000000px;}
.ydd{bottom:882.438000px;}
.y92{bottom:882.756000px;}
.y1cf{bottom:882.945000px;}
.y23{bottom:883.350000px;}
.y48{bottom:883.788000px;}
.y119{bottom:883.845000px;}
.yb8{bottom:884.100000px;}
.y27f{bottom:889.500000px;}
.y24b{bottom:890.622000px;}
.y2a7{bottom:893.250000px;}
.y1f1{bottom:903.894000px;}
.y196{bottom:903.900000px;}
.y6d{bottom:904.200000px;}
.y13b{bottom:904.500000px;}
.ydc{bottom:904.794000px;}
.y177{bottom:905.106000px;}
.y22{bottom:905.400000px;}
.y24a{bottom:905.628000px;}
.y47{bottom:905.694000px;}
.yb7{bottom:906.150000px;}
.y1ce{bottom:910.800000px;}
.y118{bottom:911.400000px;}
.y2a6{bottom:912.000000px;}
.y27e{bottom:919.500000px;}
.y1f0{bottom:926.700000px;}
.y6c{bottom:926.850000px;}
.y13a{bottom:927.000000px;}
.ydb{bottom:927.150000px;}
.y176{bottom:927.300000px;}
.y21{bottom:927.450000px;}
.y46{bottom:927.600000px;}
.yb6{bottom:928.200000px;}
.y1cd{bottom:930.150000px;}
.y117{bottom:930.450000px;}
.y2a5{bottom:930.750000px;}
.y27d{bottom:934.500000px;}
.y2{bottom:940.023150px;}
.h8{height:24.630908px;}
.hb{height:30.313623px;}
.h16{height:39.072000px;}
.h2{height:39.326660px;}
.h17{height:39.792000px;}
.h9{height:40.757812px;}
.h6{height:41.396484px;}
.h4{height:42.000000px;}
.h18{height:45.852539px;}
.hf{height:47.988281px;}
.h12{height:48.840000px;}
.h14{height:49.740000px;}
.h1{height:50.947266px;}
.h13{height:50.955666px;}
.h15{height:53.988000px;}
.h10{height:55.471486px;}
.h5{height:61.136719px;}
.h11{height:61.280719px;}
.ha{height:66.355903px;}
.hc{height:66.387703px;}
.hd{height:66.435703px;}
.he{height:66.555703px;}
.h3{height:101.894531px;}
.h7{height:296.679600px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x7{left:82.386000px;}
.x2{left:97.263750px;}
.x5{left:112.500000px;}
.x9{left:118.827900px;}
.x6{left:127.368000px;}
.x3{left:138.701850px;}
.x8{left:142.265700px;}
.xa{left:180.525000px;}
.x4{left:625.781250px;}
@media print{
.v3{vertical-align:-14.960000pt;}
.v4{vertical-align:-12.800000pt;}
.v6{vertical-align:-8.554133pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:17.607467pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:160.000000pt;}
.ls29{letter-spacing:-13.120000pt;}
.ls3a{letter-spacing:-4.960000pt;}
.ls1b{letter-spacing:-4.266667pt;}
.ls40{letter-spacing:-1.664000pt;}
.ls30{letter-spacing:-1.600000pt;}
.ls3f{letter-spacing:-1.450667pt;}
.ls17{letter-spacing:-0.768000pt;}
.ls24{letter-spacing:-0.704000pt;}
.ls25{letter-spacing:-0.640000pt;}
.ls34{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls16{letter-spacing:-0.448000pt;}
.ls23{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.266667pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls3b{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.053333pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls3e{letter-spacing:0.149333pt;}
.lsb{letter-spacing:0.192000pt;}
.ls3d{letter-spacing:0.213333pt;}
.ls1f{letter-spacing:0.256000pt;}
.ls2a{letter-spacing:0.268800pt;}
.lsf{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.384000pt;}
.ls2b{letter-spacing:0.403200pt;}
.ls1a{letter-spacing:0.448000pt;}
.ls15{letter-spacing:0.512000pt;}
.ls19{letter-spacing:0.576000pt;}
.ls1e{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.704000pt;}
.lsd{letter-spacing:0.768000pt;}
.ls28{letter-spacing:0.832000pt;}
.ls2f{letter-spacing:0.896000pt;}
.ls31{letter-spacing:1.152000pt;}
.ls32{letter-spacing:1.216000pt;}
.ls33{letter-spacing:1.344000pt;}
.ls1{letter-spacing:2.533333pt;}
.ls35{letter-spacing:3.253333pt;}
.ls36{letter-spacing:3.280000pt;}
.ls41{letter-spacing:3.925333pt;}
.ls3{letter-spacing:4.010667pt;}
.lsa{letter-spacing:4.053333pt;}
.ls3c{letter-spacing:4.224000pt;}
.ls26{letter-spacing:4.864000pt;}
.ls20{letter-spacing:5.120000pt;}
.ls2d{letter-spacing:6.400000pt;}
.ls1c{letter-spacing:6.848000pt;}
.ls42{letter-spacing:7.200000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls6{letter-spacing:7.520000pt;}
.ls4{letter-spacing:9.413941pt;}
.ls2{letter-spacing:9.546667pt;}
.ls21{letter-spacing:10.560000pt;}
.ls2e{letter-spacing:10.624000pt;}
.ls27{letter-spacing:12.262667pt;}
.ls2c{letter-spacing:12.263200pt;}
.ls39{letter-spacing:246.400000pt;}
.ls37{letter-spacing:339.250133pt;}
.ls38{letter-spacing:389.600000pt;}
.ws24{word-spacing:-48.320000pt;}
.ws35{word-spacing:-26.368000pt;}
.ws2{word-spacing:-22.506667pt;}
.ws74{word-spacing:-20.688000pt;}
.ws25{word-spacing:-17.984000pt;}
.ws2e{word-spacing:-17.109333pt;}
.ws1{word-spacing:-16.770667pt;}
.ws29{word-spacing:-16.512000pt;}
.ws51{word-spacing:-16.448000pt;}
.ws1d{word-spacing:-16.384000pt;}
.ws41{word-spacing:-16.320000pt;}
.ws2b{word-spacing:-16.192000pt;}
.ws2c{word-spacing:-16.064000pt;}
.ws44{word-spacing:-16.000000pt;}
.ws2a{word-spacing:-15.936000pt;}
.ws2d{word-spacing:-15.872000pt;}
.ws1c{word-spacing:-15.808000pt;}
.ws3f{word-spacing:-15.744000pt;}
.ws1b{word-spacing:-15.680000pt;}
.ws36{word-spacing:-15.616000pt;}
.ws1a{word-spacing:-15.488000pt;}
.wse{word-spacing:-15.296000pt;}
.ws4c{word-spacing:-14.986667pt;}
.ws45{word-spacing:-13.173333pt;}
.ws40{word-spacing:-12.992000pt;}
.ws4d{word-spacing:-12.906667pt;}
.ws3e{word-spacing:-12.857600pt;}
.ws3{word-spacing:-12.640000pt;}
.wsd{word-spacing:-12.588800pt;}
.ws6e{word-spacing:-12.202667pt;}
.ws2f{word-spacing:-11.989333pt;}
.ws71{word-spacing:-10.965333pt;}
.ws48{word-spacing:-10.624000pt;}
.ws26{word-spacing:-10.538667pt;}
.ws46{word-spacing:-10.490667pt;}
.ws6b{word-spacing:-10.325333pt;}
.wsc{word-spacing:-7.552000pt;}
.ws27{word-spacing:-7.520000pt;}
.ws49{word-spacing:-6.400000pt;}
.ws4a{word-spacing:-5.120000pt;}
.wsb{word-spacing:-4.053333pt;}
.ws32{word-spacing:-3.136000pt;}
.ws38{word-spacing:-1.792000pt;}
.ws54{word-spacing:-1.344000pt;}
.ws52{word-spacing:-1.216000pt;}
.ws53{word-spacing:-1.152000pt;}
.ws4f{word-spacing:-0.896000pt;}
.ws42{word-spacing:-0.832000pt;}
.ws16{word-spacing:-0.768000pt;}
.ws15{word-spacing:-0.704000pt;}
.ws1f{word-spacing:-0.640000pt;}
.ws30{word-spacing:-0.576000pt;}
.ws22{word-spacing:-0.512000pt;}
.ws23{word-spacing:-0.448000pt;}
.ws8{word-spacing:-0.426667pt;}
.ws17{word-spacing:-0.384000pt;}
.ws11{word-spacing:-0.320000pt;}
.ws34{word-spacing:-0.256000pt;}
.ws70{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.192000pt;}
.ws31{word-spacing:-0.128000pt;}
.ws13{word-spacing:-0.064000pt;}
.ws72{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.ws9{word-spacing:0.053333pt;}
.ws37{word-spacing:0.064000pt;}
.ws21{word-spacing:0.128000pt;}
.ws14{word-spacing:0.192000pt;}
.ws6d{word-spacing:0.213333pt;}
.ws19{word-spacing:0.256000pt;}
.wsa{word-spacing:0.266667pt;}
.ws12{word-spacing:0.320000pt;}
.ws3a{word-spacing:0.384000pt;}
.ws1e{word-spacing:0.448000pt;}
.ws18{word-spacing:0.512000pt;}
.ws7{word-spacing:0.533333pt;}
.ws58{word-spacing:0.576000pt;}
.ws3c{word-spacing:0.640000pt;}
.ws3b{word-spacing:0.704000pt;}
.ws20{word-spacing:0.768000pt;}
.ws75{word-spacing:1.109333pt;}
.ws6f{word-spacing:1.280000pt;}
.ws6{word-spacing:1.600000pt;}
.ws57{word-spacing:1.920000pt;}
.ws50{word-spacing:2.133333pt;}
.ws73{word-spacing:2.176000pt;}
.ws4b{word-spacing:2.986667pt;}
.ws4{word-spacing:3.200000pt;}
.ws76{word-spacing:3.466667pt;}
.ws55{word-spacing:3.680000pt;}
.wsf{word-spacing:3.733333pt;}
.ws47{word-spacing:4.032000pt;}
.ws28{word-spacing:4.266667pt;}
.ws33{word-spacing:4.800000pt;}
.ws56{word-spacing:4.864000pt;}
.ws6c{word-spacing:4.960000pt;}
.ws59{word-spacing:5.184000pt;}
.ws39{word-spacing:5.248000pt;}
.ws3d{word-spacing:8.256000pt;}
.ws4e{word-spacing:9.024000pt;}
.ws43{word-spacing:9.536000pt;}
.ws0{word-spacing:129.952000pt;}
.ws5f{word-spacing:169.226667pt;}
.ws5b{word-spacing:204.746667pt;}
.ws60{word-spacing:231.413333pt;}
.ws5c{word-spacing:242.581333pt;}
.ws6a{word-spacing:243.664000pt;}
.ws69{word-spacing:253.920000pt;}
.ws62{word-spacing:266.560000pt;}
.ws65{word-spacing:277.541333pt;}
.ws5d{word-spacing:294.661333pt;}
.ws61{word-spacing:302.400000pt;}
.ws66{word-spacing:314.826667pt;}
.ws68{word-spacing:326.666667pt;}
.ws63{word-spacing:335.824000pt;}
.ws67{word-spacing:340.960000pt;}
.ws5e{word-spacing:342.933333pt;}
.ws64{word-spacing:350.186667pt;}
.ws5a{word-spacing:369.066667pt;}
._d{margin-left:-843.396267pt;}
._14{margin-left:-13.866400pt;}
._12{margin-left:-12.751733pt;}
._3{margin-left:-10.602667pt;}
._17{margin-left:-9.643200pt;}
._26{margin-left:-8.680000pt;}
._11{margin-left:-7.528533pt;}
._e{margin-left:-6.272000pt;}
._0{margin-left:-5.141333pt;}
._9{margin-left:-3.461333pt;}
._4{margin-left:-2.208000pt;}
._7{margin-left:-1.098667pt;}
._2{width:1.545333pt;}
._13{width:2.437333pt;}
._1{width:3.328000pt;}
._8{width:4.582400pt;}
._a{width:5.616267pt;}
._6{width:6.528000pt;}
._5{width:7.434667pt;}
._b{width:8.428800pt;}
._c{width:9.395733pt;}
._f{width:10.503733pt;}
._15{width:11.500267pt;}
._16{width:12.838133pt;}
._10{width:28.129867pt;}
._20{width:247.573333pt;}
._1e{width:249.653333pt;}
._1f{width:253.749867pt;}
._21{width:282.316000pt;}
._25{width:292.512000pt;}
._1d{width:297.141333pt;}
._18{width:333.173333pt;}
._1a{width:341.973333pt;}
._1b{width:347.204267pt;}
._23{width:356.746667pt;}
._1c{width:358.560000pt;}
._22{width:367.040000pt;}
._24{width:387.360000pt;}
._19{width:399.253333pt;}
.fs9{font-size:29.866667pt;}
.fs7{font-size:31.733333pt;}
.fs8{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.fs5{font-size:376.736000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:64.000000pt;}
.y91{bottom:104.000000pt;}
.y6b{bottom:104.069333pt;}
.y175{bottom:104.670800pt;}
.y2a4{bottom:104.876667pt;}
.y15d{bottom:105.311467pt;}
.y27c{bottom:105.989333pt;}
.y1ef{bottom:107.718000pt;}
.y45{bottom:107.740000pt;}
.y20e{bottom:108.135733pt;}
.y139{bottom:108.182800pt;}
.y249{bottom:108.192000pt;}
.y20{bottom:108.200800pt;}
.y1b7{bottom:108.245733pt;}
.yb5{bottom:117.333333pt;}
.y27b{bottom:119.322667pt;}
.y90{bottom:121.073333pt;}
.y2a3{bottom:121.543333pt;}
.y248{bottom:121.792000pt;}
.y15c{bottom:121.978133pt;}
.y6a{bottom:123.541333pt;}
.y44{bottom:124.000000pt;}
.y174{bottom:124.542800pt;}
.y1ee{bottom:124.918000pt;}
.y138{bottom:125.116133pt;}
.y1e{bottom:128.200800pt;}
.y20d{bottom:128.407733pt;}
.y1b6{bottom:128.645733pt;}
.yb4{bottom:130.666667pt;}
.y27a{bottom:132.656000pt;}
.y226{bottom:134.406667pt;}
.y247{bottom:135.392000pt;}
.y8f{bottom:137.333333pt;}
.y2a2{bottom:138.210000pt;}
.y43{bottom:141.073333pt;}
.y1ed{bottom:142.118000pt;}
.yfb{bottom:142.562533pt;}
.y1cc{bottom:142.976400pt;}
.y69{bottom:143.013333pt;}
.yb3{bottom:144.000000pt;}
.y279{bottom:145.989333pt;}
.y15b{bottom:146.204800pt;}
.y116{bottom:147.740000pt;}
.y1f{bottom:148.200800pt;}
.y20c{bottom:148.679733pt;}
.y246{bottom:148.992000pt;}
.y1b5{bottom:149.045733pt;}
.y137{bottom:149.609467pt;}
.y8e{bottom:150.666667pt;}
.y173{bottom:151.829467pt;}
.y2a1{bottom:154.876667pt;}
.yb2{bottom:157.333333pt;}
.y278{bottom:159.322667pt;}
.y1cb{bottom:159.643067pt;}
.yfa{bottom:162.434533pt;}
.y68{bottom:162.485333pt;}
.y245{bottom:162.592000pt;}
.y8d{bottom:164.000000pt;}
.y136{bottom:166.542800pt;}
.y1ec{bottom:166.878000pt;}
.y172{bottom:168.229467pt;}
.y20b{bottom:168.951733pt;}
.y1b4{bottom:169.445733pt;}
.y15a{bottom:170.430400pt;}
.yb1{bottom:170.666667pt;}
.y225{bottom:170.739867pt;}
.y2a0{bottom:171.543333pt;}
.y277{bottom:172.656000pt;}
.yda{bottom:174.406667pt;}
.y244{bottom:176.192000pt;}
.y8c{bottom:177.333333pt;}
.y42{bottom:177.600000pt;}
.yd6{bottom:177.866667pt;}
.y67{bottom:181.957333pt;}
.yf9{bottom:182.306533pt;}
.y115{bottom:182.672267pt;}
.y195{bottom:183.614800pt;}
.y1ca{bottom:183.868800pt;}
.yb0{bottom:184.000000pt;}
.y1eb{bottom:184.078000pt;}
.y276{bottom:185.989333pt;}
.y29f{bottom:188.210000pt;}
.y20a{bottom:189.223733pt;}
.y1b3{bottom:189.845733pt;}
.y224{bottom:190.211867pt;}
.y159{bottom:190.430400pt;}
.yd9{bottom:190.666667pt;}
.y135{bottom:190.965867pt;}
.y171{bottom:192.189467pt;}
.y8b{bottom:194.406667pt;}
.y243{bottom:195.466667pt;}
.y41{bottom:197.200000pt;}
.yd5{bottom:197.866667pt;}
.y114{bottom:199.205600pt;}
.y275{bottom:199.322667pt;}
.yaf{bottom:201.073333pt;}
.y1ea{bottom:201.278000pt;}
.y66{bottom:201.429333pt;}
.y194{bottom:203.342800pt;}
.y1c9{bottom:203.868800pt;}
.y29e{bottom:204.876667pt;}
.yd8{bottom:207.740000pt;}
.y1d{bottom:208.200800pt;}
.y170{bottom:208.589467pt;}
.y209{bottom:209.495733pt;}
.y223{bottom:209.683867pt;}
.yf8{bottom:209.732267pt;}
.y1b2{bottom:210.245733pt;}
.y158{bottom:210.430400pt;}
.y8a{bottom:210.666667pt;}
.y134{bottom:211.237867pt;}
.y274{bottom:212.656000pt;}
.y40{bottom:216.800000pt;}
.yae{bottom:217.333333pt;}
.yd4{bottom:217.466667pt;}
.y1e9{bottom:218.478000pt;}
.y65{bottom:220.901333pt;}
.y29d{bottom:221.543333pt;}
.y113{bottom:223.298933pt;}
.y89{bottom:224.000000pt;}
.y1c{bottom:224.867467pt;}
.y16f{bottom:224.989467pt;}
.y273{bottom:225.989333pt;}
.yf7{bottom:226.263733pt;}
.yd7{bottom:227.740000pt;}
.y222{bottom:229.155867pt;}
.y208{bottom:229.767733pt;}
.y157{bottom:230.430400pt;}
.y193{bottom:230.632267pt;}
.y1b1{bottom:230.645733pt;}
.yad{bottom:230.666667pt;}
.y1c8{bottom:231.426000pt;}
.y133{bottom:231.509867pt;}
.y242{bottom:235.845333pt;}
.y3f{bottom:236.400000pt;}
.yd3{bottom:237.066667pt;}
.y88{bottom:237.333333pt;}
.y29c{bottom:238.210000pt;}
.y272{bottom:239.322667pt;}
.y112{bottom:239.832267pt;}
.y64{bottom:240.373333pt;}
.y1e8{bottom:243.238000pt;}
.y192{bottom:247.032267pt;}
.yac{bottom:247.740000pt;}
.y1c7{bottom:248.092667pt;}
.y221{bottom:248.627867pt;}
.y16e{bottom:248.949467pt;}
.y1b{bottom:249.092267pt;}
.y207{bottom:250.039733pt;}
.yf6{bottom:250.357067pt;}
.y156{bottom:250.430400pt;}
.y87{bottom:250.666667pt;}
.y132{bottom:251.781867pt;}
.y271{bottom:252.656000pt;}
.y29b{bottom:254.876667pt;}
.y3e{bottom:256.000000pt;}
.y241{bottom:256.117333pt;}
.yd2{bottom:256.666667pt;}
.y1b0{bottom:258.602800pt;}
.y63{bottom:259.845333pt;}
.y1e7{bottom:260.438000pt;}
.y111{bottom:263.925600pt;}
.yab{bottom:264.000000pt;}
.y16d{bottom:265.349467pt;}
.y1a{bottom:265.758933pt;}
.y270{bottom:265.989333pt;}
.yf5{bottom:266.890400pt;}
.y86{bottom:267.740000pt;}
.y220{bottom:268.099867pt;}
.y206{bottom:270.311733pt;}
.y155{bottom:270.430400pt;}
.y191{bottom:270.992267pt;}
.y29a{bottom:271.543333pt;}
.y131{bottom:272.053867pt;}
.y1c6{bottom:272.319333pt;}
.y3d{bottom:275.600000pt;}
.y1af{bottom:275.669467pt;}
.yd1{bottom:276.266667pt;}
.y240{bottom:276.389333pt;}
.y62{bottom:279.317333pt;}
.y26f{bottom:279.322667pt;}
.y110{bottom:280.458933pt;}
.yaa{bottom:281.073333pt;}
.y19{bottom:282.425600pt;}
.y1e6{bottom:285.198000pt;}
.y190{bottom:287.392267pt;}
.y21f{bottom:287.549467pt;}
.y85{bottom:287.740000pt;}
.y299{bottom:288.210000pt;}
.y1c5{bottom:288.986000pt;}
.y16c{bottom:289.309467pt;}
.y154{bottom:290.430400pt;}
.y205{bottom:290.583733pt;}
.yf4{bottom:290.983733pt;}
.y130{bottom:292.325867pt;}
.y26e{bottom:292.656000pt;}
.y3c{bottom:295.200000pt;}
.yd0{bottom:295.866667pt;}
.y23f{bottom:296.661333pt;}
.y61{bottom:298.789333pt;}
.y18{bottom:299.092267pt;}
.y1ae{bottom:300.296133pt;}
.y1e5{bottom:302.398000pt;}
.y10f{bottom:304.552267pt;}
.y298{bottom:304.876667pt;}
.y16b{bottom:305.709467pt;}
.y26d{bottom:305.989333pt;}
.y153{bottom:310.430400pt;}
.y18f{bottom:311.352267pt;}
.y12f{bottom:312.597867pt;}
.y1c4{bottom:313.212667pt;}
.y3b{bottom:314.800000pt;}
.yf3{bottom:315.070800pt;}
.ycf{bottom:315.466667pt;}
.y17{bottom:315.758933pt;}
.y23e{bottom:316.933333pt;}
.y1ad{bottom:317.362800pt;}
.y60{bottom:318.261333pt;}
.y26c{bottom:319.322667pt;}
.y10e{bottom:321.085600pt;}
.y297{bottom:321.543333pt;}
.ya9{bottom:321.610667pt;}
.y84{bottom:325.555600pt;}
.y1e4{bottom:327.158000pt;}
.y18e{bottom:327.752267pt;}
.y16a{bottom:329.669467pt;}
.y1c3{bottom:329.879333pt;}
.y152{bottom:330.430400pt;}
.y204{bottom:331.116133pt;}
.y16{bottom:332.425600pt;}
.y26b{bottom:332.656000pt;}
.y12e{bottom:332.869867pt;}
.y3a{bottom:334.400000pt;}
.yf2{bottom:334.942800pt;}
.yce{bottom:335.066667pt;}
.y21e{bottom:336.602800pt;}
.y23d{bottom:337.205333pt;}
.y5f{bottom:337.733333pt;}
.y296{bottom:338.210000pt;}
.ya8{bottom:341.738667pt;}
.y1ac{bottom:341.987600pt;}
.y1e3{bottom:344.358000pt;}
.y10d{bottom:345.178933pt;}
.y83{bottom:345.683600pt;}
.y26a{bottom:345.989333pt;}
.y169{bottom:346.069467pt;}
.y1c2{bottom:346.546000pt;}
.y203{bottom:348.049467pt;}
.y15{bottom:349.092267pt;}
.y151{bottom:350.430400pt;}
.y18d{bottom:351.712267pt;}
.y12d{bottom:353.141867pt;}
.y39{bottom:354.000000pt;}
.ycd{bottom:354.666667pt;}
.y295{bottom:354.876667pt;}
.y5e{bottom:357.205333pt;}
.y23c{bottom:357.477333pt;}
.y269{bottom:359.322667pt;}
.y21d{bottom:360.589467pt;}
.ya7{bottom:361.893333pt;}
.yf1{bottom:362.366667pt;}
.y14{bottom:365.758933pt;}
.y1ab{bottom:366.614267pt;}
.y1e2{bottom:369.122400pt;}
.y10c{bottom:369.250133pt;}
.y168{bottom:370.029467pt;}
.y150{bottom:370.430400pt;}
.y1c1{bottom:370.771600pt;}
.y294{bottom:371.543333pt;}
.y202{bottom:372.542800pt;}
.y268{bottom:372.656000pt;}
.y82{bottom:373.379600pt;}
.y12c{bottom:373.413867pt;}
.y38{bottom:373.600000pt;}
.ycc{bottom:374.266667pt;}
.y18c{bottom:375.708667pt;}
.y5d{bottom:376.677333pt;}
.y23b{bottom:377.749333pt;}
.yf0{bottom:378.900000pt;}
.ya6{bottom:382.021333pt;}
.y13{bottom:382.425600pt;}
.y21c{bottom:384.576133pt;}
.y267{bottom:385.989333pt;}
.y167{bottom:386.429467pt;}
.y293{bottom:388.210000pt;}
.y10b{bottom:389.122133pt;}
.y201{bottom:389.476133pt;}
.y1e1{bottom:389.650400pt;}
.y14f{bottom:390.430400pt;}
.y1c0{bottom:390.771600pt;}
.y1aa{bottom:391.240933pt;}
.y37{bottom:393.200000pt;}
.y81{bottom:393.550267pt;}
.y12b{bottom:393.685867pt;}
.ycb{bottom:393.866667pt;}
.y18b{bottom:395.436667pt;}
.y5c{bottom:396.149333pt;}
.y23a{bottom:398.021333pt;}
.y12{bottom:399.092267pt;}
.y266{bottom:399.322667pt;}
.ya5{bottom:402.149333pt;}
.yef{bottom:402.993333pt;}
.y292{bottom:404.876667pt;}
.y21b{bottom:408.562800pt;}
.y10a{bottom:408.994133pt;}
.y166{bottom:410.389467pt;}
.y14e{bottom:410.430400pt;}
.y1bf{bottom:410.771600pt;}
.y265{bottom:412.656000pt;}
.y36{bottom:412.800000pt;}
.yca{bottom:413.466667pt;}
.y80{bottom:413.678267pt;}
.y12a{bottom:413.957867pt;}
.y18a{bottom:415.164667pt;}
.y5b{bottom:415.621333pt;}
.y1a9{bottom:415.866667pt;}
.y1e0{bottom:417.740000pt;}
.y239{bottom:418.293333pt;}
.y291{bottom:421.543333pt;}
.ya4{bottom:422.277333pt;}
.y11{bottom:423.318933pt;}
.y264{bottom:425.989333pt;}
.y165{bottom:426.789467pt;}
.yee{bottom:427.086667pt;}
.y109{bottom:428.866133pt;}
.y14d{bottom:430.430400pt;}
.y1be{bottom:430.771600pt;}
.y35{bottom:432.400000pt;}
.y21a{bottom:432.549467pt;}
.yc9{bottom:433.066667pt;}
.y7f{bottom:433.806267pt;}
.y129{bottom:434.229867pt;}
.y189{bottom:434.892667pt;}
.y1df{bottom:434.940000pt;}
.y5a{bottom:435.093333pt;}
.y1a8{bottom:436.266667pt;}
.y290{bottom:438.210000pt;}
.y238{bottom:438.565333pt;}
.y263{bottom:439.322667pt;}
.ya3{bottom:442.405333pt;}
.yed{bottom:443.620000pt;}
.y108{bottom:448.706133pt;}
.y14c{bottom:450.430400pt;}
.y1bd{bottom:450.771600pt;}
.y164{bottom:450.780533pt;}
.y34{bottom:452.000000pt;}
.y262{bottom:452.656000pt;}
.yc8{bottom:452.666667pt;}
.y7e{bottom:453.934267pt;}
.y128{bottom:454.501867pt;}
.y59{bottom:454.565333pt;}
.y188{bottom:454.620667pt;}
.y28f{bottom:454.876667pt;}
.y219{bottom:456.536133pt;}
.y1a7{bottom:456.666667pt;}
.y237{bottom:458.837333pt;}
.y1de{bottom:459.700000pt;}
.ya2{bottom:462.586667pt;}
.y10{bottom:463.318933pt;}
.y261{bottom:465.989333pt;}
.yec{bottom:467.712267pt;}
.y107{bottom:468.578133pt;}
.y163{bottom:470.508533pt;}
.y1bc{bottom:470.771600pt;}
.y28e{bottom:471.543333pt;}
.y33{bottom:471.600000pt;}
.y58{bottom:474.037333pt;}
.y7d{bottom:474.062267pt;}
.y187{bottom:474.348667pt;}
.y1a6{bottom:477.066667pt;}
.y14b{bottom:477.987600pt;}
.y236{bottom:479.109333pt;}
.y260{bottom:479.322667pt;}
.yf{bottom:479.985600pt;}
.y218{bottom:480.522800pt;}
.y200{bottom:482.325600pt;}
.y127{bottom:482.326533pt;}
.ya1{bottom:482.714667pt;}
.y1dd{bottom:484.460000pt;}
.y28d{bottom:488.210000pt;}
.y106{bottom:488.450133pt;}
.y162{bottom:490.236533pt;}
.y1bb{bottom:490.771600pt;}
.y32{bottom:491.200000pt;}
.yc7{bottom:491.866667pt;}
.y25f{bottom:492.656000pt;}
.y57{bottom:493.509333pt;}
.y186{bottom:494.076667pt;}
.y7c{bottom:494.190267pt;}
.yeb{bottom:495.137067pt;}
.y1a5{bottom:497.466667pt;}
.y1ff{bottom:499.258933pt;}
.y126{bottom:499.259867pt;}
.y235{bottom:499.381333pt;}
.y1dc{bottom:501.660000pt;}
.y14a{bottom:502.214267pt;}
.ya0{bottom:502.842667pt;}
.ye{bottom:504.210400pt;}
.y217{bottom:504.509467pt;}
.y28c{bottom:504.876667pt;}
.y25e{bottom:505.989333pt;}
.y105{bottom:508.322133pt;}
.y161{bottom:509.964533pt;}
.y1ba{bottom:510.771600pt;}
.y31{bottom:510.800000pt;}
.yc6{bottom:511.466667pt;}
.yea{bottom:511.670400pt;}
.y56{bottom:512.981333pt;}
.y185{bottom:513.836800pt;}
.y7b{bottom:514.318267pt;}
.y1a4{bottom:517.866667pt;}
.y149{bottom:518.880933pt;}
.y25d{bottom:519.322667pt;}
.y234{bottom:519.653333pt;}
.yd{bottom:520.877067pt;}
.y28b{bottom:521.543333pt;}
.y9f{bottom:522.970667pt;}
.y1fe{bottom:523.752267pt;}
.y125{bottom:523.753200pt;}
.y1db{bottom:526.420000pt;}
.y104{bottom:528.194133pt;}
.y216{bottom:528.496133pt;}
.y160{bottom:529.692533pt;}
.y30{bottom:530.400000pt;}
.y1b9{bottom:530.771600pt;}
.yc5{bottom:531.066667pt;}
.y55{bottom:532.453333pt;}
.y25c{bottom:532.656000pt;}
.y184{bottom:533.564800pt;}
.y7a{bottom:534.446267pt;}
.ye9{bottom:535.763733pt;}
.yc{bottom:537.543733pt;}
.y28a{bottom:538.210000pt;}
.y1a3{bottom:538.266667pt;}
.y233{bottom:539.925333pt;}
.y1fd{bottom:540.685600pt;}
.y9e{bottom:543.098667pt;}
.y148{bottom:543.107600pt;}
.y1da{bottom:543.620000pt;}
.y25b{bottom:545.989333pt;}
.y103{bottom:548.066133pt;}
.y124{bottom:548.240267pt;}
.y15f{bottom:549.420533pt;}
.y2f{bottom:550.000000pt;}
.yc4{bottom:550.666667pt;}
.y1b8{bottom:550.771600pt;}
.y54{bottom:551.925333pt;}
.ye8{bottom:552.297067pt;}
.y215{bottom:552.482800pt;}
.y183{bottom:553.292800pt;}
.yb{bottom:554.210400pt;}
.y79{bottom:554.618667pt;}
.y289{bottom:554.876667pt;}
.y1a2{bottom:558.666667pt;}
.y25a{bottom:559.322667pt;}
.y147{bottom:559.774267pt;}
.y232{bottom:560.197333pt;}
.y9d{bottom:563.226667pt;}
.y1fc{bottom:565.178933pt;}
.y102{bottom:567.938133pt;}
.y1d9{bottom:568.384400pt;}
.y123{bottom:568.512267pt;}
.y15e{bottom:569.148533pt;}
.y2e{bottom:569.600000pt;}
.yc3{bottom:570.266667pt;}
.ya{bottom:570.877067pt;}
.y53{bottom:571.397333pt;}
.y288{bottom:571.543333pt;}
.y259{bottom:572.656000pt;}
.y182{bottom:573.020800pt;}
.y78{bottom:574.746667pt;}
.ye7{bottom:576.384133pt;}
.y214{bottom:576.469467pt;}
.y1a1{bottom:579.066667pt;}
.y231{bottom:580.469333pt;}
.y9c{bottom:583.354667pt;}
.y146{bottom:584.000000pt;}
.y258{bottom:585.989333pt;}
.y9{bottom:587.543733pt;}
.y1d8{bottom:588.912400pt;}
.y2d{bottom:589.200000pt;}
.y1fb{bottom:589.666133pt;}
.yc2{bottom:589.866667pt;}
.y52{bottom:590.869333pt;}
.y181{bottom:592.748800pt;}
.y77{bottom:594.874667pt;}
.y101{bottom:595.360933pt;}
.ye6{bottom:596.256133pt;}
.y122{bottom:596.337067pt;}
.y257{bottom:599.322667pt;}
.y1a0{bottom:599.466667pt;}
.y287{bottom:599.548533pt;}
.y213{bottom:600.452133pt;}
.y230{bottom:600.741333pt;}
.y9b{bottom:603.482667pt;}
.y145{bottom:604.000000pt;}
.y8{bottom:604.210400pt;}
.y2c{bottom:608.800000pt;}
.yc1{bottom:609.466667pt;}
.y1fa{bottom:609.938133pt;}
.y51{bottom:610.341333pt;}
.y100{bottom:611.894267pt;}
.y180{bottom:612.476800pt;}
.y256{bottom:612.656000pt;}
.y121{bottom:613.270400pt;}
.y2ad{bottom:614.000000pt;}
.y1d7{bottom:617.000000pt;}
.y19f{bottom:619.866667pt;}
.y7{bottom:620.877067pt;}
.y22f{bottom:621.013333pt;}
.y76{bottom:622.570667pt;}
.y9a{bottom:623.610667pt;}
.ye5{bottom:623.680933pt;}
.y144{bottom:624.000000pt;}
.y212{bottom:624.438800pt;}
.y255{bottom:625.989333pt;}
.y286{bottom:626.890667pt;}
.y2b{bottom:628.400000pt;}
.yc0{bottom:629.066667pt;}
.y50{bottom:629.813333pt;}
.y2ac{bottom:630.666667pt;}
.y17f{bottom:632.204800pt;}
.y1d6{bottom:634.200000pt;}
.yff{bottom:635.987600pt;}
.y1f9{bottom:637.760933pt;}
.y120{bottom:637.763733pt;}
.y254{bottom:639.322667pt;}
.ye4{bottom:640.214267pt;}
.y19e{bottom:640.266667pt;}
.y22e{bottom:641.285333pt;}
.y75{bottom:642.698667pt;}
.y99{bottom:643.738667pt;}
.y143{bottom:644.000000pt;}
.y6{bottom:645.103733pt;}
.y2ab{bottom:647.333333pt;}
.y2a{bottom:648.000000pt;}
.y211{bottom:648.425467pt;}
.ybf{bottom:648.666667pt;}
.y4f{bottom:649.285333pt;}
.y11f{bottom:654.697067pt;}
.y253{bottom:658.330667pt;}
.y1d5{bottom:658.960000pt;}
.y17e{bottom:659.494267pt;}
.yfe{bottom:660.080933pt;}
.y19d{bottom:660.666667pt;}
.y22d{bottom:661.557333pt;}
.y1f8{bottom:662.254267pt;}
.y74{bottom:662.826667pt;}
.y98{bottom:663.904000pt;}
.y142{bottom:664.000000pt;}
.ye3{bottom:664.307600pt;}
.y29{bottom:667.600000pt;}
.ybe{bottom:668.266667pt;}
.y4e{bottom:668.757333pt;}
.y285{bottom:670.666667pt;}
.y210{bottom:672.412133pt;}
.y17d{bottom:675.894267pt;}
.y1d4{bottom:676.160000pt;}
.yfd{bottom:676.614267pt;}
.y11e{bottom:679.184133pt;}
.y1f7{bottom:679.187600pt;}
.ye2{bottom:680.840933pt;}
.y19c{bottom:681.066667pt;}
.y22c{bottom:681.829333pt;}
.y73{bottom:682.954667pt;}
.y141{bottom:684.000000pt;}
.y97{bottom:684.032000pt;}
.y5{bottom:685.891067pt;}
.y28{bottom:687.200000pt;}
.ybd{bottom:687.866667pt;}
.y4d{bottom:688.229333pt;}
.y2aa{bottom:690.666667pt;}
.y284{bottom:697.333333pt;}
.y252{bottom:698.330667pt;}
.y11d{bottom:699.456133pt;}
.y17c{bottom:699.854267pt;}
.yfc{bottom:700.707600pt;}
.y1d3{bottom:700.920000pt;}
.y19b{bottom:701.466667pt;}
.y22b{bottom:702.101333pt;}
.y72{bottom:703.082667pt;}
.y1f6{bottom:703.680933pt;}
.y140{bottom:704.000000pt;}
.y96{bottom:704.160000pt;}
.ye1{bottom:704.901333pt;}
.y4{bottom:705.891067pt;}
.y27{bottom:706.800000pt;}
.ybc{bottom:707.466667pt;}
.y4c{bottom:707.701333pt;}
.y20f{bottom:707.733333pt;}
.y283{bottom:710.666667pt;}
.y251{bottom:711.664000pt;}
.y17b{bottom:716.254267pt;}
.y1d2{bottom:718.120000pt;}
.y1f5{bottom:720.614267pt;}
.y19a{bottom:721.866667pt;}
.y22a{bottom:722.373333pt;}
.y71{bottom:723.210667pt;}
.y13f{bottom:724.000000pt;}
.y95{bottom:724.288000pt;}
.ye0{bottom:724.773333pt;}
.y250{bottom:724.997333pt;}
.y26{bottom:726.400000pt;}
.ybb{bottom:727.066667pt;}
.y4b{bottom:727.173333pt;}
.y11c{bottom:727.280000pt;}
.y2a9{bottom:727.333333pt;}
.y282{bottom:737.333333pt;}
.y24f{bottom:738.330667pt;}
.y17a{bottom:740.214267pt;}
.y199{bottom:742.266667pt;}
.y229{bottom:742.645333pt;}
.y1d1{bottom:742.880000pt;}
.y70{bottom:743.338667pt;}
.y13e{bottom:744.000000pt;}
.y11b{bottom:744.213333pt;}
.y94{bottom:744.416000pt;}
.ydf{bottom:744.645333pt;}
.y1f4{bottom:745.107600pt;}
.y25{bottom:746.000000pt;}
.y4a{bottom:746.645333pt;}
.yba{bottom:746.666667pt;}
.y281{bottom:750.666667pt;}
.y24e{bottom:751.664000pt;}
.y179{bottom:756.614267pt;}
.y2a8{bottom:760.666667pt;}
.y1f3{bottom:762.040933pt;}
.y198{bottom:762.666667pt;}
.y228{bottom:762.917333pt;}
.y6f{bottom:763.477333pt;}
.y13d{bottom:764.000000pt;}
.yde{bottom:764.517333pt;}
.y93{bottom:764.544000pt;}
.y24d{bottom:764.997333pt;}
.y3{bottom:765.576133pt;}
.y24{bottom:765.600000pt;}
.y49{bottom:766.117333pt;}
.yb9{bottom:766.266667pt;}
.y1d0{bottom:767.640000pt;}
.y11a{bottom:768.706667pt;}
.y280{bottom:777.333333pt;}
.y24c{bottom:778.330667pt;}
.y1f2{bottom:778.974267pt;}
.y178{bottom:780.574267pt;}
.y197{bottom:783.066667pt;}
.y227{bottom:783.189333pt;}
.y6e{bottom:783.605333pt;}
.y13c{bottom:784.000000pt;}
.ydd{bottom:784.389333pt;}
.y92{bottom:784.672000pt;}
.y1cf{bottom:784.840000pt;}
.y23{bottom:785.200000pt;}
.y48{bottom:785.589333pt;}
.y119{bottom:785.640000pt;}
.yb8{bottom:785.866667pt;}
.y27f{bottom:790.666667pt;}
.y24b{bottom:791.664000pt;}
.y2a7{bottom:794.000000pt;}
.y1f1{bottom:803.461333pt;}
.y196{bottom:803.466667pt;}
.y6d{bottom:803.733333pt;}
.y13b{bottom:804.000000pt;}
.ydc{bottom:804.261333pt;}
.y177{bottom:804.538667pt;}
.y22{bottom:804.800000pt;}
.y24a{bottom:805.002667pt;}
.y47{bottom:805.061333pt;}
.yb7{bottom:805.466667pt;}
.y1ce{bottom:809.600000pt;}
.y118{bottom:810.133333pt;}
.y2a6{bottom:810.666667pt;}
.y27e{bottom:817.333333pt;}
.y1f0{bottom:823.733333pt;}
.y6c{bottom:823.866667pt;}
.y13a{bottom:824.000000pt;}
.ydb{bottom:824.133333pt;}
.y176{bottom:824.266667pt;}
.y21{bottom:824.400000pt;}
.y46{bottom:824.533333pt;}
.yb6{bottom:825.066667pt;}
.y1cd{bottom:826.800000pt;}
.y117{bottom:827.066667pt;}
.y2a5{bottom:827.333333pt;}
.y27d{bottom:830.666667pt;}
.y2{bottom:835.576133pt;}
.h8{height:21.894141pt;}
.hb{height:26.945443pt;}
.h16{height:34.730667pt;}
.h2{height:34.957031pt;}
.h17{height:35.370667pt;}
.h9{height:36.229167pt;}
.h6{height:36.796875pt;}
.h4{height:37.333333pt;}
.h18{height:40.757812pt;}
.hf{height:42.656250pt;}
.h12{height:43.413333pt;}
.h14{height:44.213333pt;}
.h1{height:45.286458pt;}
.h13{height:45.293925pt;}
.h15{height:47.989333pt;}
.h10{height:49.307988pt;}
.h5{height:54.343750pt;}
.h11{height:54.471750pt;}
.ha{height:58.983025pt;}
.hc{height:59.011292pt;}
.hd{height:59.053958pt;}
.he{height:59.160625pt;}
.h3{height:90.572917pt;}
.h7{height:263.715200pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x7{left:73.232000pt;}
.x2{left:86.456667pt;}
.x5{left:100.000000pt;}
.x9{left:105.624800pt;}
.x6{left:113.216000pt;}
.x3{left:123.290533pt;}
.x8{left:126.458400pt;}
.xa{left:160.466667pt;}
.x4{left:556.250000pt;}
}




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