
    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_5262f8fb50a8d3089d32150d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_63fce6adfa64bb3a99bcf424.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_af977ac5a23ad9e8b4d7cabd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5c8bc678540cc092d1129848.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3a33ef9ae878e572a0d0209e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e7a96cd6a14b7a41c9e7733c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.744000;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_0ef77fef590b5ec67f9dc132.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239258;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_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.575000;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_dbfc046de13f9bdab24cd7f0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.244536,0.000000,-0.051981,0.244536,0,0);-ms-transform:matrix(0.244536,0.000000,-0.051981,0.244536,0,0);-webkit-transform:matrix(0.244536,0.000000,-0.051981,0.244536,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-74.148000px;}
.va{vertical-align:-29.988000px;}
.v1{vertical-align:-17.976000px;}
.v4{vertical-align:-14.640000px;}
.v3{vertical-align:-12.012000px;}
.vc{vertical-align:-7.512000px;}
.v9{vertical-align:-2.016000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.820000px;}
.vb{vertical-align:10.224000px;}
.v2{vertical-align:12.012000px;}
.vd{vertical-align:16.488000px;}
.ve{vertical-align:18.018000px;}
.v6{vertical-align:40.362000px;}
.v7{vertical-align:52.290000px;}
.ls58{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.006000px;}
.ls2b{letter-spacing:0.012000px;}
.ls2e{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.024000px;}
.ls30{letter-spacing:0.030000px;}
.ls2a{letter-spacing:0.036000px;}
.ls7{letter-spacing:0.210000px;}
.ls5e{letter-spacing:0.240000px;}
.ls8{letter-spacing:0.270000px;}
.ls6{letter-spacing:0.300000px;}
.ls52{letter-spacing:0.540000px;}
.ls34{letter-spacing:1.158000px;}
.ls25{letter-spacing:1.218000px;}
.ls37{letter-spacing:1.320000px;}
.ls12{letter-spacing:1.512000px;}
.lsa{letter-spacing:1.740000px;}
.ls5{letter-spacing:2.100000px;}
.ls4b{letter-spacing:2.136000px;}
.ls5f{letter-spacing:2.146922px;}
.ls11{letter-spacing:2.730000px;}
.ls9{letter-spacing:3.000000px;}
.lsd{letter-spacing:3.264000px;}
.ls57{letter-spacing:3.486000px;}
.ls31{letter-spacing:3.498000px;}
.ls23{letter-spacing:4.080000px;}
.ls56{letter-spacing:4.980000px;}
.ls33{letter-spacing:4.992000px;}
.ls61{letter-spacing:4.998000px;}
.ls63{letter-spacing:5.004000px;}
.lsb{letter-spacing:6.048000px;}
.ls3a{letter-spacing:6.240000px;}
.ls38{letter-spacing:6.300000px;}
.ls62{letter-spacing:8.490000px;}
.ls32{letter-spacing:8.970000px;}
.ls2c{letter-spacing:8.976000px;}
.ls4f{letter-spacing:9.780000px;}
.ls4d{letter-spacing:9.786000px;}
.ls2f{letter-spacing:9.996000px;}
.ls4{letter-spacing:10.500000px;}
.ls21{letter-spacing:12.474000px;}
.ls51{letter-spacing:20.040000px;}
.ls17{letter-spacing:21.540000px;}
.ls42{letter-spacing:24.840000px;}
.ls35{letter-spacing:37.632000px;}
.ls28{letter-spacing:44.700000px;}
.ls18{letter-spacing:45.192000px;}
.ls43{letter-spacing:48.468000px;}
.ls19{letter-spacing:51.480000px;}
.ls3b{letter-spacing:52.176000px;}
.ls44{letter-spacing:54.780000px;}
.lse{letter-spacing:55.200000px;}
.ls47{letter-spacing:60.906000px;}
.ls1c{letter-spacing:64.182000px;}
.ls48{letter-spacing:67.320000px;}
.ls3c{letter-spacing:67.872000px;}
.ls4e{letter-spacing:68.220000px;}
.ls53{letter-spacing:68.880000px;}
.ls46{letter-spacing:69.804000px;}
.ls1d{letter-spacing:70.560000px;}
.lsf{letter-spacing:70.896000px;}
.ls22{letter-spacing:70.920000px;}
.ls1a{letter-spacing:72.702000px;}
.ls1b{letter-spacing:73.080000px;}
.ls45{letter-spacing:75.978000px;}
.ls20{letter-spacing:77.340000px;}
.ls4c{letter-spacing:80.040000px;}
.ls1e{letter-spacing:83.160000px;}
.ls49{letter-spacing:86.460000px;}
.ls54{letter-spacing:92.526000px;}
.ls1f{letter-spacing:104.412000px;}
.ls3d{letter-spacing:107.568000px;}
.ls4a{letter-spacing:107.688000px;}
.ls27{letter-spacing:107.856000px;}
.ls5a{letter-spacing:110.166000px;}
.ls10{letter-spacing:110.544000px;}
.ls55{letter-spacing:114.840000px;}
.ls5c{letter-spacing:127.224000px;}
.ls5b{letter-spacing:127.248000px;}
.ls36{letter-spacing:133.164000px;}
.ls26{letter-spacing:154.080000px;}
.ls59{letter-spacing:157.380000px;}
.ls3f{letter-spacing:176.220000px;}
.ls5d{letter-spacing:177.936000px;}
.ls14{letter-spacing:179.436000px;}
.ls40{letter-spacing:182.664000px;}
.ls15{letter-spacing:185.904000px;}
.ls3e{letter-spacing:191.142000px;}
.ls13{letter-spacing:194.418000px;}
.ls24{letter-spacing:214.140000px;}
.ls41{letter-spacing:273.660000px;}
.ls16{letter-spacing:276.900000px;}
.ls29{letter-spacing:298.920000px;}
.ls60{letter-spacing:299.250000px;}
.ls39{letter-spacing:305.580000px;}
.lsc{letter-spacing:305.880000px;}
.ls1{letter-spacing:315.384000px;}
.ls50{letter-spacing:366.960000px;}
.ls2{letter-spacing:746.394000px;}
.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;}
}
.ws7e{word-spacing:-310.926000px;}
.ws67{word-spacing:-37.980000px;}
.ws50{word-spacing:-37.740000px;}
.ws1e{word-spacing:-21.000000px;}
.ws6b{word-spacing:-18.000000px;}
.ws4f{word-spacing:-16.740000px;}
.ws53{word-spacing:-15.000000px;}
.ws1c{word-spacing:-13.500000px;}
.ws1f{word-spacing:-12.600000px;}
.ws68{word-spacing:-12.000000px;}
.ws1d{word-spacing:-10.500000px;}
.ws1{word-spacing:-8.736000px;}
.ws25{word-spacing:-1.380000px;}
.ws54{word-spacing:-1.200000px;}
.wsc{word-spacing:-1.080000px;}
.ws10{word-spacing:-1.020000px;}
.ws30{word-spacing:-0.960000px;}
.ws63{word-spacing:-0.900000px;}
.ws8a{word-spacing:-0.810000px;}
.ws19{word-spacing:-0.780000px;}
.ws8{word-spacing:-0.720000px;}
.ws31{word-spacing:-0.672000px;}
.ws3{word-spacing:-0.660000px;}
.ws4{word-spacing:-0.600000px;}
.ws91{word-spacing:-0.540000px;}
.ws5b{word-spacing:-0.480000px;}
.ws48{word-spacing:-0.420000px;}
.ws44{word-spacing:-0.360000px;}
.ws88{word-spacing:-0.300000px;}
.ws70{word-spacing:-0.252000px;}
.ws38{word-spacing:-0.240000px;}
.ws3f{word-spacing:-0.180000px;}
.wsd{word-spacing:-0.120000px;}
.ws8b{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws37{word-spacing:0.120000px;}
.ws15{word-spacing:0.180000px;}
.ws65{word-spacing:0.240000px;}
.ws4d{word-spacing:0.300000px;}
.ws22{word-spacing:0.420000px;}
.ws7{word-spacing:0.540000px;}
.ws39{word-spacing:0.600000px;}
.ws5a{word-spacing:0.660000px;}
.ws81{word-spacing:0.672000px;}
.ws83{word-spacing:0.720000px;}
.ws73{word-spacing:0.756000px;}
.wsb{word-spacing:0.780000px;}
.ws66{word-spacing:0.840000px;}
.ws27{word-spacing:0.900000px;}
.wse{word-spacing:0.960000px;}
.ws35{word-spacing:1.020000px;}
.ws28{word-spacing:1.080000px;}
.ws92{word-spacing:1.140000px;}
.ws7c{word-spacing:1.176000px;}
.ws24{word-spacing:1.200000px;}
.ws8c{word-spacing:1.260000px;}
.ws55{word-spacing:1.500000px;}
.ws78{word-spacing:1.560000px;}
.ws5c{word-spacing:1.680000px;}
.ws1b{word-spacing:1.800000px;}
.ws89{word-spacing:1.836000px;}
.ws64{word-spacing:1.860000px;}
.ws77{word-spacing:1.974000px;}
.ws45{word-spacing:1.980000px;}
.ws7d{word-spacing:2.016000px;}
.ws29{word-spacing:2.040000px;}
.ws80{word-spacing:2.100000px;}
.ws49{word-spacing:2.160000px;}
.ws7b{word-spacing:2.268000px;}
.ws2c{word-spacing:2.340000px;}
.ws43{word-spacing:2.400000px;}
.ws71{word-spacing:2.436000px;}
.ws36{word-spacing:2.460000px;}
.ws61{word-spacing:2.580000px;}
.ws82{word-spacing:2.688000px;}
.ws4c{word-spacing:2.700000px;}
.ws5f{word-spacing:2.820000px;}
.ws2e{word-spacing:2.880000px;}
.ws7f{word-spacing:3.000000px;}
.wsa{word-spacing:3.060000px;}
.ws5d{word-spacing:3.120000px;}
.ws72{word-spacing:3.150000px;}
.ws6{word-spacing:3.180000px;}
.ws5e{word-spacing:3.240000px;}
.ws33{word-spacing:3.318000px;}
.ws59{word-spacing:3.360000px;}
.ws8e{word-spacing:3.444000px;}
.ws3c{word-spacing:3.480000px;}
.ws58{word-spacing:3.540000px;}
.ws6c{word-spacing:3.654000px;}
.ws86{word-spacing:3.822000px;}
.ws79{word-spacing:3.840000px;}
.ws13{word-spacing:3.900000px;}
.ws6f{word-spacing:3.960000px;}
.ws12{word-spacing:4.020000px;}
.ws3e{word-spacing:4.140000px;}
.ws4a{word-spacing:4.320000px;}
.ws9{word-spacing:4.440000px;}
.ws2f{word-spacing:4.500000px;}
.ws6e{word-spacing:4.704000px;}
.ws32{word-spacing:4.740000px;}
.ws40{word-spacing:4.800000px;}
.ws60{word-spacing:4.860000px;}
.ws8d{word-spacing:4.920000px;}
.ws42{word-spacing:4.980000px;}
.ws47{word-spacing:5.220000px;}
.ws34{word-spacing:5.280000px;}
.ws2a{word-spacing:5.340000px;}
.ws85{word-spacing:5.460000px;}
.ws41{word-spacing:5.520000px;}
.ws57{word-spacing:5.760000px;}
.ws16{word-spacing:6.000000px;}
.ws21{word-spacing:6.120000px;}
.ws76{word-spacing:6.174000px;}
.ws3b{word-spacing:6.180000px;}
.ws90{word-spacing:6.258000px;}
.ws56{word-spacing:6.540000px;}
.ws6d{word-spacing:6.720000px;}
.ws11{word-spacing:6.840000px;}
.wsf{word-spacing:6.960000px;}
.ws18{word-spacing:7.020000px;}
.ws3a{word-spacing:7.260000px;}
.ws62{word-spacing:7.320000px;}
.ws2d{word-spacing:7.500000px;}
.ws20{word-spacing:7.740000px;}
.ws2b{word-spacing:7.920000px;}
.ws4b{word-spacing:8.160000px;}
.ws75{word-spacing:8.820000px;}
.ws8f{word-spacing:8.940000px;}
.ws74{word-spacing:9.120000px;}
.ws2{word-spacing:9.240000px;}
.ws1a{word-spacing:9.720000px;}
.ws14{word-spacing:10.260000px;}
.ws46{word-spacing:10.440000px;}
.ws3d{word-spacing:10.800000px;}
.ws4e{word-spacing:11.520000px;}
.ws87{word-spacing:11.580000px;}
.ws84{word-spacing:11.880000px;}
.ws17{word-spacing:12.180000px;}
.ws26{word-spacing:13.080000px;}
.ws5{word-spacing:13.560000px;}
.ws7a{word-spacing:13.920000px;}
.ws23{word-spacing:16.080000px;}
.ws6a{word-spacing:40.656000px;}
.ws52{word-spacing:43.932000px;}
.ws69{word-spacing:155.946000px;}
.ws51{word-spacing:159.264000px;}
._b{margin-left:-429.000000px;}
._13{margin-left:-297.150000px;}
._e{margin-left:-129.060000px;}
._5{margin-left:-125.760000px;}
._d{margin-left:-78.840000px;}
._f{margin-left:-73.908000px;}
._a{margin-left:-51.660000px;}
._12{margin-left:-22.974000px;}
._2{margin-left:-10.500000px;}
._9{margin-left:-7.872000px;}
._c{margin-left:-6.720000px;}
._8{margin-left:-5.460000px;}
._11{margin-left:-3.108000px;}
._3{margin-left:-2.100000px;}
._6{width:1.800000px;}
._7{width:3.000000px;}
._0{width:8.736000px;}
._10{width:10.620000px;}
._4{width:308.160000px;}
._1{width:1109.136000px;}
.fc1{color:transparent;}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:24.000000px;}
.fs6{font-size:30.000000px;}
.fs5{font-size:42.000000px;}
.fs8{font-size:42.938435px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y78{bottom:41.745000px;}
.y26{bottom:41.790000px;}
.ye6{bottom:41.797500px;}
.y11f{bottom:42.298500px;}
.y3f{bottom:43.476000px;}
.yaf{bottom:48.427500px;}
.yab{bottom:48.432000px;}
.y11e{bottom:55.798500px;}
.y25{bottom:58.290000px;}
.ye5{bottom:58.297500px;}
.y77{bottom:58.920000px;}
.yaa{bottom:60.916500px;}
.yae{bottom:61.500000px;}
.yad{bottom:62.004000px;}
.ybd{bottom:64.485000px;}
.yb1{bottom:64.500000px;}
.ya9{bottom:64.560000px;}
.y11d{bottom:69.298500px;}
.y24{bottom:74.790000px;}
.y76{bottom:76.095000px;}
.y43{bottom:78.964500px;}
.yb0{bottom:80.032500px;}
.yac{bottom:80.037000px;}
.y11c{bottom:82.798500px;}
.ye3{bottom:84.967500px;}
.ya7{bottom:86.340000px;}
.ya8{bottom:88.500000px;}
.ya6{bottom:88.548000px;}
.ye4{bottom:89.466000px;}
.y23{bottom:91.290000px;}
.y75{bottom:93.270000px;}
.y11b{bottom:96.298500px;}
.y11a{bottom:96.300000px;}
.ya5{bottom:99.163500px;}
.ye2{bottom:101.467500px;}
.ya4{bottom:102.795000px;}
.ya0{bottom:102.802500px;}
.y9f{bottom:102.825000px;}
.ya2{bottom:103.500000px;}
.ya1{bottom:103.507500px;}
.y22{bottom:107.790000px;}
.y74{bottom:110.445000px;}
.ya3{bottom:110.755500px;}
.ye1{bottom:117.967500px;}
.y73{bottom:127.620000px;}
.y9e{bottom:129.750000px;}
.ye0{bottom:134.467500px;}
.y21{bottom:141.285000px;}
.y119{bottom:143.325000px;}
.y72{bottom:144.795000px;}
.y9d{bottom:146.250000px;}
.ydf{bottom:150.967500px;}
.y42{bottom:158.652000px;}
.y118{bottom:159.825000px;}
.y71{bottom:161.970000px;}
.y9c{bottom:162.750000px;}
.yde{bottom:167.467500px;}
.y117{bottom:176.325000px;}
.y70{bottom:179.145000px;}
.y9b{bottom:179.250000px;}
.ydd{bottom:183.967500px;}
.y1f{bottom:191.295000px;}
.y115{bottom:192.825000px;}
.y9a{bottom:195.750000px;}
.y6f{bottom:196.320000px;}
.y116{bottom:197.323500px;}
.ydc{bottom:200.467500px;}
.y4a{bottom:205.173000px;}
.y1e{bottom:207.795000px;}
.y49{bottom:208.176000px;}
.y114{bottom:209.325000px;}
.y99{bottom:212.250000px;}
.y6e{bottom:213.495000px;}
.ydb{bottom:216.967500px;}
.y1d{bottom:224.295000px;}
.y113{bottom:225.825000px;}
.y98{bottom:228.750000px;}
.y6d{bottom:230.670000px;}
.yda{bottom:233.467500px;}
.y1c{bottom:240.795000px;}
.y112{bottom:242.325000px;}
.y97{bottom:245.250000px;}
.y6c{bottom:247.845000px;}
.yd9{bottom:249.967500px;}
.y1b{bottom:257.295000px;}
.y10f{bottom:258.810000px;}
.y111{bottom:258.825000px;}
.y110{bottom:263.316000px;}
.y6b{bottom:265.020000px;}
.yd7{bottom:266.467500px;}
.y41{bottom:266.833500px;}
.yd8{bottom:270.964500px;}
.y1a{bottom:273.795000px;}
.y10e{bottom:275.310000px;}
.y96{bottom:276.105000px;}
.y6a{bottom:282.195000px;}
.yd6{bottom:282.967500px;}
.y48{bottom:285.798000px;}
.y47{bottom:288.801000px;}
.y19{bottom:290.295000px;}
.y10d{bottom:291.810000px;}
.y69{bottom:299.370000px;}
.yd5{bottom:299.467500px;}
.y18{bottom:306.795000px;}
.y40{bottom:314.839500px;}
.yd4{bottom:315.967500px;}
.y67{bottom:316.545000px;}
.y94{bottom:321.960000px;}
.y10c{bottom:323.715000px;}
.yd3{bottom:329.467500px;}
.y17{bottom:332.055000px;}
.yd2{bottom:332.460000px;}
.y45{bottom:333.048000px;}
.y66{bottom:333.720000px;}
.y44{bottom:336.045000px;}
.y46{bottom:336.051000px;}
.y93{bottom:338.460000px;}
.y10b{bottom:340.215000px;}
.yd0{bottom:345.963000px;}
.y16{bottom:348.555000px;}
.ycf{bottom:348.960000px;}
.yd1{bottom:353.460000px;}
.y92{bottom:354.960000px;}
.y109{bottom:356.715000px;}
.y10a{bottom:361.218000px;}
.y15{bottom:365.055000px;}
.y65{bottom:367.470000px;}
.y91{bottom:371.460000px;}
.yce{bottom:372.633000px;}
.y107{bottom:373.215000px;}
.ycc{bottom:375.630000px;}
.y108{bottom:377.724000px;}
.ycd{bottom:380.130000px;}
.y14{bottom:381.555000px;}
.y64{bottom:384.645000px;}
.y90{bottom:387.960000px;}
.y106{bottom:389.715000px;}
.ycb{bottom:392.130000px;}
.y13{bottom:398.055000px;}
.y63{bottom:401.820000px;}
.y8f{bottom:404.460000px;}
.y104{bottom:406.215000px;}
.y3e{bottom:407.010000px;}
.yc9{bottom:408.630000px;}
.y105{bottom:410.725500px;}
.yca{bottom:413.131500px;}
.y12{bottom:414.555000px;}
.y62{bottom:418.995000px;}
.y103{bottom:419.724000px;}
.y8e{bottom:420.960000px;}
.y102{bottom:422.715000px;}
.y3d{bottom:423.510000px;}
.yc8{bottom:425.130000px;}
.y11{bottom:431.055000px;}
.y61{bottom:436.170000px;}
.y8d{bottom:437.460000px;}
.y3c{bottom:440.010000px;}
.yc7{bottom:441.630000px;}
.y10{bottom:447.555000px;}
.y60{bottom:453.345000px;}
.y8c{bottom:453.960000px;}
.y3b{bottom:456.510000px;}
.yc6{bottom:458.130000px;}
.yf{bottom:464.055000px;}
.y8b{bottom:470.460000px;}
.y5f{bottom:470.520000px;}
.y3a{bottom:473.010000px;}
.ye{bottom:480.555000px;}
.yc5{bottom:484.800000px;}
.y13a{bottom:485.226000px;}
.y8a{bottom:486.960000px;}
.y5e{bottom:487.695000px;}
.yd{bottom:497.055000px;}
.yc3{bottom:498.297000px;}
.yc2{bottom:501.300000px;}
.y39{bottom:502.965000px;}
.y89{bottom:503.460000px;}
.y5d{bottom:504.870000px;}
.yc4{bottom:505.794000px;}
.yc{bottom:513.555000px;}
.ybe{bottom:514.792500px;}
.y138{bottom:516.544500px;}
.ybc{bottom:517.785000px;}
.yc0{bottom:517.800000px;}
.y38{bottom:519.465000px;}
.y88{bottom:519.960000px;}
.y5c{bottom:522.045000px;}
.ybf{bottom:522.289500px;}
.yc1{bottom:522.300000px;}
.y139{bottom:526.446000px;}
.yb{bottom:530.055000px;}
.y37{bottom:535.965000px;}
.y87{bottom:536.460000px;}
.y131{bottom:538.069500px;}
.y5b{bottom:539.220000px;}
.ya{bottom:546.555000px;}
.y36{bottom:552.465000px;}
.y86{bottom:552.960000px;}
.yfb{bottom:553.833000px;}
.yf7{bottom:553.837500px;}
.yfe{bottom:553.840500px;}
.y5a{bottom:556.395000px;}
.y9{bottom:563.055000px;}
.yf6{bottom:566.322000px;}
.yfa{bottom:567.000000px;}
.yf9{bottom:567.396000px;}
.y101{bottom:567.408000px;}
.y35{bottom:568.965000px;}
.y85{bottom:569.460000px;}
.yf5{bottom:569.955000px;}
.yfd{bottom:570.000000px;}
.yff{bottom:570.010500px;}
.y59{bottom:573.570000px;}
.y8{bottom:579.555000px;}
.yfc{bottom:585.438000px;}
.yf8{bottom:585.442500px;}
.y100{bottom:585.445500px;}
.y34{bottom:585.465000px;}
.y132{bottom:590.569500px;}
.y58{bottom:590.745000px;}
.yf3{bottom:591.742500px;}
.yf2{bottom:593.952000px;}
.yf4{bottom:594.000000px;}
.y84{bottom:596.565000px;}
.y33{bottom:601.965000px;}
.yf1{bottom:604.570500px;}
.yee{bottom:607.500000px;}
.yed{bottom:607.503000px;}
.yf0{bottom:608.205000px;}
.yec{bottom:608.208000px;}
.yeb{bottom:608.209500px;}
.y83{bottom:613.065000px;}
.yef{bottom:616.162500px;}
.y32{bottom:618.465000px;}
.y57{bottom:624.495000px;}
.y82{bottom:629.565000px;}
.y31{bottom:634.965000px;}
.ybb{bottom:635.445000px;}
.y56{bottom:641.670000px;}
.y133{bottom:645.883500px;}
.y81{bottom:646.065000px;}
.y30{bottom:651.465000px;}
.yba{bottom:651.945000px;}
.y55{bottom:658.845000px;}
.y120{bottom:660.169500px;}
.y80{bottom:662.565000px;}
.y2f{bottom:667.965000px;}
.y12e{bottom:669.321000px;}
.y54{bottom:676.020000px;}
.ye8{bottom:678.489000px;}
.y7f{bottom:679.065000px;}
.y121{bottom:679.297500px;}
.y2e{bottom:684.465000px;}
.y7{bottom:685.875000px;}
.yea{bottom:692.053500px;}
.y53{bottom:693.195000px;}
.ye7{bottom:694.597500px;}
.y7e{bottom:695.565000px;}
.y134{bottom:698.950500px;}
.y2d{bottom:700.965000px;}
.y128{bottom:706.297500px;}
.y6{bottom:706.638000px;}
.ye9{bottom:710.094000px;}
.y52{bottom:710.370000px;}
.y126{bottom:711.175500px;}
.y7d{bottom:712.065000px;}
.y142{bottom:714.417000px;}
.y127{bottom:720.547500px;}
.y129{bottom:720.925500px;}
.y122{bottom:722.797500px;}
.y12a{bottom:726.925500px;}
.y51{bottom:727.545000px;}
.y7c{bottom:728.565000px;}
.y141{bottom:730.917000px;}
.y2c{bottom:730.920000px;}
.yb9{bottom:737.250000px;}
.y12b{bottom:738.925500px;}
.y50{bottom:744.720000px;}
.y7b{bottom:745.065000px;}
.y140{bottom:747.417000px;}
.y2b{bottom:747.420000px;}
.y12d{bottom:748.903500px;}
.y135{bottom:753.141000px;}
.y12c{bottom:753.553500px;}
.yb8{bottom:753.750000px;}
.y5{bottom:756.432000px;}
.y124{bottom:758.047500px;}
.y7a{bottom:761.565000px;}
.y123{bottom:761.797500px;}
.y4f{bottom:761.895000px;}
.y13f{bottom:763.917000px;}
.y2a{bottom:763.920000px;}
.y4e{bottom:776.068500px;}
.yb6{bottom:777.418500px;}
.y79{bottom:778.065000px;}
.y4d{bottom:779.070000px;}
.y13e{bottom:780.417000px;}
.y29{bottom:780.420000px;}
.y4{bottom:781.920000px;}
.yb7{bottom:784.915500px;}
.y125{bottom:785.047500px;}
.y137{bottom:790.819500px;}
.y130{bottom:791.982000px;}
.y12f{bottom:792.339000px;}
.y4c{bottom:793.246500px;}
.yb4{bottom:793.914000px;}
.y4b{bottom:796.245000px;}
.y13d{bottom:796.917000px;}
.y28{bottom:796.920000px;}
.yb5{bottom:801.411000px;}
.yb3{bottom:801.421500px;}
.y3{bottom:807.408000px;}
.y136{bottom:808.077000px;}
.yb2{bottom:810.420000px;}
.y13c{bottom:813.417000px;}
.y27{bottom:813.420000px;}
.y13b{bottom:870.691500px;}
.y2{bottom:870.696000px;}
.y68{bottom:1046.970000px;}
.y20{bottom:1046.985000px;}
.y1{bottom:1047.000000px;}
.y95{bottom:1047.015000px;}
.h2f{height:25.608000px;}
.h13{height:29.428711px;}
.h31{height:35.208000px;}
.h12{height:35.232000px;}
.hb{height:41.200195px;}
.hc{height:41.220703px;}
.h30{height:42.096000px;}
.h18{height:43.572703px;}
.h33{height:43.804688px;}
.h28{height:43.950703px;}
.he{height:44.040000px;}
.h26{height:44.460938px;}
.h15{height:44.652938px;}
.h34{height:44.783446px;}
.h25{height:47.085938px;}
.h1{height:47.109375px;}
.h16{height:47.277938px;}
.h14{height:47.301375px;}
.h2{height:48.375000px;}
.ha{height:52.971680px;}
.h5{height:52.998047px;}
.hd{height:53.212195px;}
.h9{height:54.421875px;}
.hf{height:55.576172px;}
.h23{height:56.066719px;}
.h7{height:58.857422px;}
.h6{height:58.886719px;}
.h21{height:58.916719px;}
.h2d{height:59.066719px;}
.h27{height:59.078719px;}
.h20{height:59.097422px;}
.h1f{height:59.126719px;}
.h35{height:59.200195px;}
.h32{height:59.218195px;}
.h8{height:60.468750px;}
.h10{height:61.706719px;}
.h11{height:64.216195px;}
.h1b{height:66.691406px;}
.h1d{height:69.081422px;}
.h2c{height:69.093422px;}
.h22{height:69.110719px;}
.h2e{height:69.254719px;}
.h24{height:69.844195px;}
.h2b{height:70.677422px;}
.h1e{height:70.886719px;}
.h1c{height:71.097422px;}
.h4{height:72.562500px;}
.h17{height:81.562195px;}
.h1a{height:93.490195px;}
.h19{height:93.510703px;}
.h2a{height:93.868195px;}
.h29{height:93.888703px;}
.h3{height:96.750000px;}
.h0{height:924.000000px;}
.w0{width:598.500000px;}
.x1{left:-94.500000px;}
.x3{left:-91.500000px;}
.x5{left:-88.500000px;}
.x7{left:-82.500000px;}
.x8{left:-78.000000px;}
.x9{left:-75.000000px;}
.xa{left:-70.500000px;}
.xc{left:-67.500000px;}
.xf{left:-63.000000px;}
.x10{left:-60.000000px;}
.x11{left:-55.500000px;}
.x12{left:-52.500000px;}
.x14{left:-48.000000px;}
.x15{left:-45.000000px;}
.x17{left:-42.000000px;}
.x29{left:-21.000000px;}
.x2a{left:-18.000000px;}
.x2c{left:-15.000000px;}
.x2d{left:-10.500000px;}
.x2f{left:-7.500000px;}
.x31{left:-4.500000px;}
.x33{left:-1.500000px;}
.x0{left:0.000000px;}
.x35{left:3.000000px;}
.x37{left:6.000000px;}
.x39{left:9.000000px;}
.x3b{left:13.500000px;}
.x3d{left:16.500000px;}
.x3f{left:21.000000px;}
.x41{left:22.500000px;}
.x43{left:27.000000px;}
.x44{left:30.000000px;}
.x46{left:33.000000px;}
.x48{left:37.515000px;}
.x4a{left:40.500000px;}
.x4c{left:43.500000px;}
.x4e{left:46.500000px;}
.x50{left:51.000000px;}
.x6{left:53.892000px;}
.x52{left:57.000000px;}
.x54{left:60.000000px;}
.x11f{left:62.055000px;}
.x56{left:64.500000px;}
.x58{left:67.500000px;}
.x5a{left:70.500000px;}
.x16{left:71.880000px;}
.x5c{left:75.000000px;}
.xe{left:76.380000px;}
.x14a{left:77.655000px;}
.x5f{left:81.000000px;}
.x61{left:84.000000px;}
.x14c{left:86.970000px;}
.x63{left:88.500000px;}
.x162{left:90.537000px;}
.x13{left:92.220000px;}
.x14e{left:93.705000px;}
.x65{left:96.000000px;}
.x1a{left:97.861500px;}
.x67{left:99.000000px;}
.x126{left:100.770000px;}
.x19{left:102.870000px;}
.x69{left:106.500000px;}
.xb9{left:108.345000px;}
.x6b{left:111.000000px;}
.xc4{left:112.230000px;}
.x6c{left:114.000000px;}
.xc5{left:116.392500px;}
.x6e{left:118.500000px;}
.x70{left:121.500000px;}
.x150{left:124.185000px;}
.x3e{left:125.490000px;}
.xc8{left:127.305000px;}
.x73{left:129.000000px;}
.x66{left:130.800000px;}
.x40{left:133.066500px;}
.x75{left:136.500000px;}
.x42{left:138.375000px;}
.x74{left:140.280000px;}
.x78{left:144.000000px;}
.xe5{left:145.023000px;}
.x79{left:147.000000px;}
.x2e{left:149.445000px;}
.x12a{left:151.350000px;}
.x68{left:154.560000px;}
.x30{left:156.174000px;}
.x7a{left:157.500000px;}
.x32{left:161.475000px;}
.x45{left:163.528500px;}
.x6a{left:164.775000px;}
.x47{left:168.840000px;}
.x7d{left:172.500000px;}
.x34{left:176.220000px;}
.x7f{left:180.000000px;}
.xe9{left:181.374000px;}
.x36{left:182.949000px;}
.x6d{left:185.205000px;}
.x38{left:188.250000px;}
.x129{left:189.915000px;}
.x82{left:192.000000px;}
.x6f{left:193.260000px;}
.x83{left:195.000000px;}
.xc9{left:196.561500px;}
.xf7{left:198.150000px;}
.x84{left:199.500000px;}
.x86{left:202.500000px;}
.xab{left:205.659000px;}
.x88{left:207.015000px;}
.x1b{left:209.677500px;}
.x8b{left:212.970000px;}
.x8a{left:214.515000px;}
.xec{left:215.865000px;}
.x12d{left:217.291500px;}
.xac{left:220.317000px;}
.x12e{left:223.770000px;}
.xf1{left:225.165000px;}
.xa6{left:226.305000px;}
.x12b{left:231.000000px;}
.x8c{left:234.444000px;}
.x12c{left:237.000000px;}
.xa8{left:239.790000px;}
.x2{left:245.184000px;}
.xaa{left:247.575000px;}
.x160{left:251.373000px;}
.x12f{left:253.500000px;}
.x8d{left:256.494000px;}
.x157{left:257.730000px;}
.xae{left:261.472500px;}
.x8e{left:262.554000px;}
.x8f{left:264.000000px;}
.xaf{left:265.026000px;}
.x91{left:267.000000px;}
.x90{left:269.061000px;}
.x94{left:273.000000px;}
.x95{left:274.170000px;}
.x18{left:275.686500px;}
.x111{left:277.260000px;}
.xff{left:278.460000px;}
.x92{left:279.690000px;}
.xad{left:282.000000px;}
.x101{left:283.455000px;}
.x93{left:286.873500px;}
.x120{left:288.448500px;}
.x103{left:290.100000px;}
.xcc{left:295.453500px;}
.x7b{left:298.080000px;}
.x124{left:300.645000px;}
.x15a{left:303.375000px;}
.x130{left:304.500000px;}
.x7c{left:305.580000px;}
.x9a{left:307.224000px;}
.xb0{left:309.930000px;}
.x105{left:311.055000px;}
.x9c{left:313.680000px;}
.x96{left:315.030000px;}
.x121{left:316.605000px;}
.x9e{left:318.348000px;}
.x97{left:319.500000px;}
.x7e{left:321.540000px;}
.x71{left:323.385000px;}
.x72{left:327.630000px;}
.xcf{left:329.130000px;}
.x76{left:330.420000px;}
.xb{left:331.515000px;}
.x125{left:333.000000px;}
.x9f{left:334.512000px;}
.xa1{left:336.288000px;}
.xa0{left:337.512000px;}
.x80{left:338.595000px;}
.xa2{left:340.500000px;}
.xb1{left:342.000000px;}
.xb2{left:343.500000px;}
.xa3{left:345.000000px;}
.x127{left:346.500000px;}
.xa4{left:348.000000px;}
.x128{left:349.500000px;}
.xa5{left:351.000000px;}
.x11c{left:352.719000px;}
.xa7{left:354.000000px;}
.xd4{left:355.350000px;}
.x49{left:356.520000px;}
.x11e{left:358.845000px;}
.xa9{left:361.500000px;}
.xd6{left:362.844000px;}
.x4b{left:364.078500px;}
.x1c{left:368.239500px;}
.x4d{left:369.390000px;}
.x77{left:373.755000px;}
.x109{left:375.600000px;}
.x98{left:378.000000px;}
.x122{left:379.500000px;}
.x99{left:381.000000px;}
.x123{left:382.500000px;}
.xb3{left:384.000000px;}
.x4f{left:385.560000px;}
.x9b{left:387.000000px;}
.xb4{left:388.500000px;}
.x9d{left:390.000000px;}
.xb5{left:391.500000px;}
.x51{left:393.142500px;}
.x81{left:394.560000px;}
.x142{left:395.775000px;}
.xb6{left:397.500000px;}
.x1f{left:398.620500px;}
.x53{left:402.945000px;}
.xb7{left:405.000000px;}
.x25{left:406.120500px;}
.xb8{left:408.000000px;}
.x161{left:409.965000px;}
.xba{left:411.000000px;}
.x139{left:413.745000px;}
.x55{left:415.530000px;}
.xca{left:417.840000px;}
.x20{left:419.461500px;}
.x57{left:422.256000px;}
.x21{left:424.711500px;}
.xbd{left:426.000000px;}
.x59{left:427.560000px;}
.xbf{left:429.000000px;}
.x1d{left:431.947500px;}
.xc1{left:433.500000px;}
.x1e{left:435.391500px;}
.xc3{left:436.500000px;}
.xde{left:437.962500px;}
.xf9{left:439.245000px;}
.xbb{left:441.195000px;}
.xc6{left:442.500000px;}
.x5b{left:443.745000px;}
.x131{left:445.503000px;}
.xc7{left:447.000000px;}
.xbc{left:448.695000px;}
.x5d{left:450.480000px;}
.x22{left:452.788500px;}
.x132{left:454.470000px;}
.x5e{left:455.775000px;}
.x23{left:458.038500px;}
.x26{left:460.288500px;}
.x133{left:462.000000px;}
.x85{left:463.440000px;}
.x27{left:465.538500px;}
.x134{left:468.000000px;}
.xbe{left:469.395000px;}
.x24{left:470.901000px;}
.x135{left:472.500000px;}
.xcb{left:474.015000px;}
.x136{left:475.500000px;}
.x28{left:478.401000px;}
.x3a{left:480.270000px;}
.x87{left:481.500000px;}
.x15f{left:483.304500px;}
.xcd{left:484.500000px;}
.x137{left:486.000000px;}
.x89{left:488.160000px;}
.xce{left:490.500000px;}
.xc0{left:492.840000px;}
.xd0{left:495.000000px;}
.x60{left:496.560000px;}
.xd1{left:498.000000px;}
.x138{left:499.500000px;}
.xd2{left:501.000000px;}
.x4{left:502.860000px;}
.x62{left:504.135000px;}
.xd3{left:505.500000px;}
.xd5{left:508.500000px;}
.x13a{left:510.000000px;}
.xd7{left:511.500000px;}
.x13b{left:513.000000px;}
.xd8{left:514.500000px;}
.x13c{left:516.000000px;}
.xd{left:518.025000px;}
.x3c{left:519.060000px;}
.x13d{left:520.500000px;}
.xd9{left:522.000000px;}
.xc2{left:523.650000px;}
.x2b{left:524.856000px;}
.x64{left:526.290000px;}
.xda{left:529.500000px;}
.xdb{left:531.000000px;}
.x13e{left:534.000000px;}
.xdc{left:535.500000px;}
.x13f{left:537.000000px;}
.xdd{left:538.500000px;}
.x140{left:540.000000px;}
.xdf{left:541.500000px;}
.x141{left:543.000000px;}
.xe0{left:546.000000px;}
.xe1{left:549.000000px;}
.x143{left:550.515000px;}
.xe2{left:552.000000px;}
.x144{left:553.515000px;}
.xe3{left:555.000000px;}
.x145{left:558.015000px;}
.xe4{left:559.500000px;}
.x146{left:561.015000px;}
.xe6{left:562.500000px;}
.xe7{left:565.500000px;}
.x147{left:568.515000px;}
.xe8{left:570.000000px;}
.xea{left:571.500000px;}
.x148{left:573.015000px;}
.xeb{left:576.015000px;}
.xed{left:579.015000px;}
.x149{left:580.515000px;}
.xee{left:583.515000px;}
.xef{left:586.515000px;}
.x14b{left:588.015000px;}
.xf0{left:591.015000px;}
.xf2{left:594.015000px;}
.x14d{left:595.515000px;}
.xf3{left:598.530000px;}
.xf4{left:601.530000px;}
.x14f{left:603.015000px;}
.xf5{left:606.030000px;}
.xf6{left:609.030000px;}
.x151{left:610.515000px;}
.xf8{left:613.530000px;}
.xfa{left:616.500000px;}
.x152{left:618.015000px;}
.xfb{left:619.500000px;}
.x153{left:621.015000px;}
.xfc{left:624.015000px;}
.x154{left:625.515000px;}
.xfd{left:627.000000px;}
.x155{left:628.515000px;}
.xfe{left:630.000000px;}
.x100{left:633.000000px;}
.x156{left:636.015000px;}
.x102{left:637.500000px;}
.x104{left:640.500000px;}
.x158{left:643.515000px;}
.x106{left:645.000000px;}
.x107{left:648.000000px;}
.x159{left:651.015000px;}
.x108{left:652.500000px;}
.x10a{left:655.500000px;}
.x15b{left:658.515000px;}
.x10b{left:660.000000px;}
.x10c{left:663.000000px;}
.x10d{left:666.000000px;}
.x10e{left:670.500000px;}
.x10f{left:672.000000px;}
.x15c{left:673.500000px;}
.x110{left:676.515000px;}
.x112{left:679.500000px;}
.x15d{left:681.000000px;}
.x113{left:682.500000px;}
.x15e{left:684.000000px;}
.x114{left:687.000000px;}
.x115{left:690.000000px;}
.x116{left:693.000000px;}
.x117{left:696.000000px;}
.x118{left:700.500000px;}
.x119{left:703.500000px;}
.x11a{left:706.500000px;}
.x11b{left:711.000000px;}
.x11d{left:712.500000px;}
@media print{
.v8{vertical-align:-65.909333pt;}
.va{vertical-align:-26.656000pt;}
.v1{vertical-align:-15.978667pt;}
.v4{vertical-align:-13.013333pt;}
.v3{vertical-align:-10.677333pt;}
.vc{vertical-align:-6.677333pt;}
.v9{vertical-align:-1.792000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.506667pt;}
.vb{vertical-align:9.088000pt;}
.v2{vertical-align:10.677333pt;}
.vd{vertical-align:14.656000pt;}
.ve{vertical-align:16.016000pt;}
.v6{vertical-align:35.877333pt;}
.v7{vertical-align:46.480000pt;}
.ls58{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.005333pt;}
.ls2b{letter-spacing:0.010667pt;}
.ls2e{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.021333pt;}
.ls30{letter-spacing:0.026667pt;}
.ls2a{letter-spacing:0.032000pt;}
.ls7{letter-spacing:0.186667pt;}
.ls5e{letter-spacing:0.213333pt;}
.ls8{letter-spacing:0.240000pt;}
.ls6{letter-spacing:0.266667pt;}
.ls52{letter-spacing:0.480000pt;}
.ls34{letter-spacing:1.029333pt;}
.ls25{letter-spacing:1.082667pt;}
.ls37{letter-spacing:1.173333pt;}
.ls12{letter-spacing:1.344000pt;}
.lsa{letter-spacing:1.546667pt;}
.ls5{letter-spacing:1.866667pt;}
.ls4b{letter-spacing:1.898667pt;}
.ls5f{letter-spacing:1.908375pt;}
.ls11{letter-spacing:2.426667pt;}
.ls9{letter-spacing:2.666667pt;}
.lsd{letter-spacing:2.901333pt;}
.ls57{letter-spacing:3.098667pt;}
.ls31{letter-spacing:3.109333pt;}
.ls23{letter-spacing:3.626667pt;}
.ls56{letter-spacing:4.426667pt;}
.ls33{letter-spacing:4.437333pt;}
.ls61{letter-spacing:4.442667pt;}
.ls63{letter-spacing:4.448000pt;}
.lsb{letter-spacing:5.376000pt;}
.ls3a{letter-spacing:5.546667pt;}
.ls38{letter-spacing:5.600000pt;}
.ls62{letter-spacing:7.546667pt;}
.ls32{letter-spacing:7.973333pt;}
.ls2c{letter-spacing:7.978667pt;}
.ls4f{letter-spacing:8.693333pt;}
.ls4d{letter-spacing:8.698667pt;}
.ls2f{letter-spacing:8.885333pt;}
.ls4{letter-spacing:9.333333pt;}
.ls21{letter-spacing:11.088000pt;}
.ls51{letter-spacing:17.813333pt;}
.ls17{letter-spacing:19.146667pt;}
.ls42{letter-spacing:22.080000pt;}
.ls35{letter-spacing:33.450667pt;}
.ls28{letter-spacing:39.733333pt;}
.ls18{letter-spacing:40.170667pt;}
.ls43{letter-spacing:43.082667pt;}
.ls19{letter-spacing:45.760000pt;}
.ls3b{letter-spacing:46.378667pt;}
.ls44{letter-spacing:48.693333pt;}
.lse{letter-spacing:49.066667pt;}
.ls47{letter-spacing:54.138667pt;}
.ls1c{letter-spacing:57.050667pt;}
.ls48{letter-spacing:59.840000pt;}
.ls3c{letter-spacing:60.330667pt;}
.ls4e{letter-spacing:60.640000pt;}
.ls53{letter-spacing:61.226667pt;}
.ls46{letter-spacing:62.048000pt;}
.ls1d{letter-spacing:62.720000pt;}
.lsf{letter-spacing:63.018667pt;}
.ls22{letter-spacing:63.040000pt;}
.ls1a{letter-spacing:64.624000pt;}
.ls1b{letter-spacing:64.960000pt;}
.ls45{letter-spacing:67.536000pt;}
.ls20{letter-spacing:68.746667pt;}
.ls4c{letter-spacing:71.146667pt;}
.ls1e{letter-spacing:73.920000pt;}
.ls49{letter-spacing:76.853333pt;}
.ls54{letter-spacing:82.245333pt;}
.ls1f{letter-spacing:92.810667pt;}
.ls3d{letter-spacing:95.616000pt;}
.ls4a{letter-spacing:95.722667pt;}
.ls27{letter-spacing:95.872000pt;}
.ls5a{letter-spacing:97.925333pt;}
.ls10{letter-spacing:98.261333pt;}
.ls55{letter-spacing:102.080000pt;}
.ls5c{letter-spacing:113.088000pt;}
.ls5b{letter-spacing:113.109333pt;}
.ls36{letter-spacing:118.368000pt;}
.ls26{letter-spacing:136.960000pt;}
.ls59{letter-spacing:139.893333pt;}
.ls3f{letter-spacing:156.640000pt;}
.ls5d{letter-spacing:158.165333pt;}
.ls14{letter-spacing:159.498667pt;}
.ls40{letter-spacing:162.368000pt;}
.ls15{letter-spacing:165.248000pt;}
.ls3e{letter-spacing:169.904000pt;}
.ls13{letter-spacing:172.816000pt;}
.ls24{letter-spacing:190.346667pt;}
.ls41{letter-spacing:243.253333pt;}
.ls16{letter-spacing:246.133333pt;}
.ls29{letter-spacing:265.706667pt;}
.ls60{letter-spacing:266.000000pt;}
.ls39{letter-spacing:271.626667pt;}
.lsc{letter-spacing:271.893333pt;}
.ls1{letter-spacing:280.341333pt;}
.ls50{letter-spacing:326.186667pt;}
.ls2{letter-spacing:663.461333pt;}
.ws7e{word-spacing:-276.378667pt;}
.ws67{word-spacing:-33.760000pt;}
.ws50{word-spacing:-33.546667pt;}
.ws1e{word-spacing:-18.666667pt;}
.ws6b{word-spacing:-16.000000pt;}
.ws4f{word-spacing:-14.880000pt;}
.ws53{word-spacing:-13.333333pt;}
.ws1c{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.200000pt;}
.ws68{word-spacing:-10.666667pt;}
.ws1d{word-spacing:-9.333333pt;}
.ws1{word-spacing:-7.765333pt;}
.ws25{word-spacing:-1.226667pt;}
.ws54{word-spacing:-1.066667pt;}
.wsc{word-spacing:-0.960000pt;}
.ws10{word-spacing:-0.906667pt;}
.ws30{word-spacing:-0.853333pt;}
.ws63{word-spacing:-0.800000pt;}
.ws8a{word-spacing:-0.720000pt;}
.ws19{word-spacing:-0.693333pt;}
.ws8{word-spacing:-0.640000pt;}
.ws31{word-spacing:-0.597333pt;}
.ws3{word-spacing:-0.586667pt;}
.ws4{word-spacing:-0.533333pt;}
.ws91{word-spacing:-0.480000pt;}
.ws5b{word-spacing:-0.426667pt;}
.ws48{word-spacing:-0.373333pt;}
.ws44{word-spacing:-0.320000pt;}
.ws88{word-spacing:-0.266667pt;}
.ws70{word-spacing:-0.224000pt;}
.ws38{word-spacing:-0.213333pt;}
.ws3f{word-spacing:-0.160000pt;}
.wsd{word-spacing:-0.106667pt;}
.ws8b{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws37{word-spacing:0.106667pt;}
.ws15{word-spacing:0.160000pt;}
.ws65{word-spacing:0.213333pt;}
.ws4d{word-spacing:0.266667pt;}
.ws22{word-spacing:0.373333pt;}
.ws7{word-spacing:0.480000pt;}
.ws39{word-spacing:0.533333pt;}
.ws5a{word-spacing:0.586667pt;}
.ws81{word-spacing:0.597333pt;}
.ws83{word-spacing:0.640000pt;}
.ws73{word-spacing:0.672000pt;}
.wsb{word-spacing:0.693333pt;}
.ws66{word-spacing:0.746667pt;}
.ws27{word-spacing:0.800000pt;}
.wse{word-spacing:0.853333pt;}
.ws35{word-spacing:0.906667pt;}
.ws28{word-spacing:0.960000pt;}
.ws92{word-spacing:1.013333pt;}
.ws7c{word-spacing:1.045333pt;}
.ws24{word-spacing:1.066667pt;}
.ws8c{word-spacing:1.120000pt;}
.ws55{word-spacing:1.333333pt;}
.ws78{word-spacing:1.386667pt;}
.ws5c{word-spacing:1.493333pt;}
.ws1b{word-spacing:1.600000pt;}
.ws89{word-spacing:1.632000pt;}
.ws64{word-spacing:1.653333pt;}
.ws77{word-spacing:1.754667pt;}
.ws45{word-spacing:1.760000pt;}
.ws7d{word-spacing:1.792000pt;}
.ws29{word-spacing:1.813333pt;}
.ws80{word-spacing:1.866667pt;}
.ws49{word-spacing:1.920000pt;}
.ws7b{word-spacing:2.016000pt;}
.ws2c{word-spacing:2.080000pt;}
.ws43{word-spacing:2.133333pt;}
.ws71{word-spacing:2.165333pt;}
.ws36{word-spacing:2.186667pt;}
.ws61{word-spacing:2.293333pt;}
.ws82{word-spacing:2.389333pt;}
.ws4c{word-spacing:2.400000pt;}
.ws5f{word-spacing:2.506667pt;}
.ws2e{word-spacing:2.560000pt;}
.ws7f{word-spacing:2.666667pt;}
.wsa{word-spacing:2.720000pt;}
.ws5d{word-spacing:2.773333pt;}
.ws72{word-spacing:2.800000pt;}
.ws6{word-spacing:2.826667pt;}
.ws5e{word-spacing:2.880000pt;}
.ws33{word-spacing:2.949333pt;}
.ws59{word-spacing:2.986667pt;}
.ws8e{word-spacing:3.061333pt;}
.ws3c{word-spacing:3.093333pt;}
.ws58{word-spacing:3.146667pt;}
.ws6c{word-spacing:3.248000pt;}
.ws86{word-spacing:3.397333pt;}
.ws79{word-spacing:3.413333pt;}
.ws13{word-spacing:3.466667pt;}
.ws6f{word-spacing:3.520000pt;}
.ws12{word-spacing:3.573333pt;}
.ws3e{word-spacing:3.680000pt;}
.ws4a{word-spacing:3.840000pt;}
.ws9{word-spacing:3.946667pt;}
.ws2f{word-spacing:4.000000pt;}
.ws6e{word-spacing:4.181333pt;}
.ws32{word-spacing:4.213333pt;}
.ws40{word-spacing:4.266667pt;}
.ws60{word-spacing:4.320000pt;}
.ws8d{word-spacing:4.373333pt;}
.ws42{word-spacing:4.426667pt;}
.ws47{word-spacing:4.640000pt;}
.ws34{word-spacing:4.693333pt;}
.ws2a{word-spacing:4.746667pt;}
.ws85{word-spacing:4.853333pt;}
.ws41{word-spacing:4.906667pt;}
.ws57{word-spacing:5.120000pt;}
.ws16{word-spacing:5.333333pt;}
.ws21{word-spacing:5.440000pt;}
.ws76{word-spacing:5.488000pt;}
.ws3b{word-spacing:5.493333pt;}
.ws90{word-spacing:5.562667pt;}
.ws56{word-spacing:5.813333pt;}
.ws6d{word-spacing:5.973333pt;}
.ws11{word-spacing:6.080000pt;}
.wsf{word-spacing:6.186667pt;}
.ws18{word-spacing:6.240000pt;}
.ws3a{word-spacing:6.453333pt;}
.ws62{word-spacing:6.506667pt;}
.ws2d{word-spacing:6.666667pt;}
.ws20{word-spacing:6.880000pt;}
.ws2b{word-spacing:7.040000pt;}
.ws4b{word-spacing:7.253333pt;}
.ws75{word-spacing:7.840000pt;}
.ws8f{word-spacing:7.946667pt;}
.ws74{word-spacing:8.106667pt;}
.ws2{word-spacing:8.213333pt;}
.ws1a{word-spacing:8.640000pt;}
.ws14{word-spacing:9.120000pt;}
.ws46{word-spacing:9.280000pt;}
.ws3d{word-spacing:9.600000pt;}
.ws4e{word-spacing:10.240000pt;}
.ws87{word-spacing:10.293333pt;}
.ws84{word-spacing:10.560000pt;}
.ws17{word-spacing:10.826667pt;}
.ws26{word-spacing:11.626667pt;}
.ws5{word-spacing:12.053333pt;}
.ws7a{word-spacing:12.373333pt;}
.ws23{word-spacing:14.293333pt;}
.ws6a{word-spacing:36.138667pt;}
.ws52{word-spacing:39.050667pt;}
.ws69{word-spacing:138.618667pt;}
.ws51{word-spacing:141.568000pt;}
._b{margin-left:-381.333333pt;}
._13{margin-left:-264.133333pt;}
._e{margin-left:-114.720000pt;}
._5{margin-left:-111.786667pt;}
._d{margin-left:-70.080000pt;}
._f{margin-left:-65.696000pt;}
._a{margin-left:-45.920000pt;}
._12{margin-left:-20.421333pt;}
._2{margin-left:-9.333333pt;}
._9{margin-left:-6.997333pt;}
._c{margin-left:-5.973333pt;}
._8{margin-left:-4.853333pt;}
._11{margin-left:-2.762667pt;}
._3{margin-left:-1.866667pt;}
._6{width:1.600000pt;}
._7{width:2.666667pt;}
._0{width:7.765333pt;}
._10{width:9.440000pt;}
._4{width:273.920000pt;}
._1{width:985.898667pt;}
.fs7{font-size:21.333333pt;}
.fs6{font-size:26.666667pt;}
.fs5{font-size:37.333333pt;}
.fs8{font-size:38.167498pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:37.106667pt;}
.y26{bottom:37.146667pt;}
.ye6{bottom:37.153333pt;}
.y11f{bottom:37.598667pt;}
.y3f{bottom:38.645333pt;}
.yaf{bottom:43.046667pt;}
.yab{bottom:43.050667pt;}
.y11e{bottom:49.598667pt;}
.y25{bottom:51.813333pt;}
.ye5{bottom:51.820000pt;}
.y77{bottom:52.373333pt;}
.yaa{bottom:54.148000pt;}
.yae{bottom:54.666667pt;}
.yad{bottom:55.114667pt;}
.ybd{bottom:57.320000pt;}
.yb1{bottom:57.333333pt;}
.ya9{bottom:57.386667pt;}
.y11d{bottom:61.598667pt;}
.y24{bottom:66.480000pt;}
.y76{bottom:67.640000pt;}
.y43{bottom:70.190667pt;}
.yb0{bottom:71.140000pt;}
.yac{bottom:71.144000pt;}
.y11c{bottom:73.598667pt;}
.ye3{bottom:75.526667pt;}
.ya7{bottom:76.746667pt;}
.ya8{bottom:78.666667pt;}
.ya6{bottom:78.709333pt;}
.ye4{bottom:79.525333pt;}
.y23{bottom:81.146667pt;}
.y75{bottom:82.906667pt;}
.y11b{bottom:85.598667pt;}
.y11a{bottom:85.600000pt;}
.ya5{bottom:88.145333pt;}
.ye2{bottom:90.193333pt;}
.ya4{bottom:91.373333pt;}
.ya0{bottom:91.380000pt;}
.y9f{bottom:91.400000pt;}
.ya2{bottom:92.000000pt;}
.ya1{bottom:92.006667pt;}
.y22{bottom:95.813333pt;}
.y74{bottom:98.173333pt;}
.ya3{bottom:98.449333pt;}
.ye1{bottom:104.860000pt;}
.y73{bottom:113.440000pt;}
.y9e{bottom:115.333333pt;}
.ye0{bottom:119.526667pt;}
.y21{bottom:125.586667pt;}
.y119{bottom:127.400000pt;}
.y72{bottom:128.706667pt;}
.y9d{bottom:130.000000pt;}
.ydf{bottom:134.193333pt;}
.y42{bottom:141.024000pt;}
.y118{bottom:142.066667pt;}
.y71{bottom:143.973333pt;}
.y9c{bottom:144.666667pt;}
.yde{bottom:148.860000pt;}
.y117{bottom:156.733333pt;}
.y70{bottom:159.240000pt;}
.y9b{bottom:159.333333pt;}
.ydd{bottom:163.526667pt;}
.y1f{bottom:170.040000pt;}
.y115{bottom:171.400000pt;}
.y9a{bottom:174.000000pt;}
.y6f{bottom:174.506667pt;}
.y116{bottom:175.398667pt;}
.ydc{bottom:178.193333pt;}
.y4a{bottom:182.376000pt;}
.y1e{bottom:184.706667pt;}
.y49{bottom:185.045333pt;}
.y114{bottom:186.066667pt;}
.y99{bottom:188.666667pt;}
.y6e{bottom:189.773333pt;}
.ydb{bottom:192.860000pt;}
.y1d{bottom:199.373333pt;}
.y113{bottom:200.733333pt;}
.y98{bottom:203.333333pt;}
.y6d{bottom:205.040000pt;}
.yda{bottom:207.526667pt;}
.y1c{bottom:214.040000pt;}
.y112{bottom:215.400000pt;}
.y97{bottom:218.000000pt;}
.y6c{bottom:220.306667pt;}
.yd9{bottom:222.193333pt;}
.y1b{bottom:228.706667pt;}
.y10f{bottom:230.053333pt;}
.y111{bottom:230.066667pt;}
.y110{bottom:234.058667pt;}
.y6b{bottom:235.573333pt;}
.yd7{bottom:236.860000pt;}
.y41{bottom:237.185333pt;}
.yd8{bottom:240.857333pt;}
.y1a{bottom:243.373333pt;}
.y10e{bottom:244.720000pt;}
.y96{bottom:245.426667pt;}
.y6a{bottom:250.840000pt;}
.yd6{bottom:251.526667pt;}
.y48{bottom:254.042667pt;}
.y47{bottom:256.712000pt;}
.y19{bottom:258.040000pt;}
.y10d{bottom:259.386667pt;}
.y69{bottom:266.106667pt;}
.yd5{bottom:266.193333pt;}
.y18{bottom:272.706667pt;}
.y40{bottom:279.857333pt;}
.yd4{bottom:280.860000pt;}
.y67{bottom:281.373333pt;}
.y94{bottom:286.186667pt;}
.y10c{bottom:287.746667pt;}
.yd3{bottom:292.860000pt;}
.y17{bottom:295.160000pt;}
.yd2{bottom:295.520000pt;}
.y45{bottom:296.042667pt;}
.y66{bottom:296.640000pt;}
.y44{bottom:298.706667pt;}
.y46{bottom:298.712000pt;}
.y93{bottom:300.853333pt;}
.y10b{bottom:302.413333pt;}
.yd0{bottom:307.522667pt;}
.y16{bottom:309.826667pt;}
.ycf{bottom:310.186667pt;}
.yd1{bottom:314.186667pt;}
.y92{bottom:315.520000pt;}
.y109{bottom:317.080000pt;}
.y10a{bottom:321.082667pt;}
.y15{bottom:324.493333pt;}
.y65{bottom:326.640000pt;}
.y91{bottom:330.186667pt;}
.yce{bottom:331.229333pt;}
.y107{bottom:331.746667pt;}
.ycc{bottom:333.893333pt;}
.y108{bottom:335.754667pt;}
.ycd{bottom:337.893333pt;}
.y14{bottom:339.160000pt;}
.y64{bottom:341.906667pt;}
.y90{bottom:344.853333pt;}
.y106{bottom:346.413333pt;}
.ycb{bottom:348.560000pt;}
.y13{bottom:353.826667pt;}
.y63{bottom:357.173333pt;}
.y8f{bottom:359.520000pt;}
.y104{bottom:361.080000pt;}
.y3e{bottom:361.786667pt;}
.yc9{bottom:363.226667pt;}
.y105{bottom:365.089333pt;}
.yca{bottom:367.228000pt;}
.y12{bottom:368.493333pt;}
.y62{bottom:372.440000pt;}
.y103{bottom:373.088000pt;}
.y8e{bottom:374.186667pt;}
.y102{bottom:375.746667pt;}
.y3d{bottom:376.453333pt;}
.yc8{bottom:377.893333pt;}
.y11{bottom:383.160000pt;}
.y61{bottom:387.706667pt;}
.y8d{bottom:388.853333pt;}
.y3c{bottom:391.120000pt;}
.yc7{bottom:392.560000pt;}
.y10{bottom:397.826667pt;}
.y60{bottom:402.973333pt;}
.y8c{bottom:403.520000pt;}
.y3b{bottom:405.786667pt;}
.yc6{bottom:407.226667pt;}
.yf{bottom:412.493333pt;}
.y8b{bottom:418.186667pt;}
.y5f{bottom:418.240000pt;}
.y3a{bottom:420.453333pt;}
.ye{bottom:427.160000pt;}
.yc5{bottom:430.933333pt;}
.y13a{bottom:431.312000pt;}
.y8a{bottom:432.853333pt;}
.y5e{bottom:433.506667pt;}
.yd{bottom:441.826667pt;}
.yc3{bottom:442.930667pt;}
.yc2{bottom:445.600000pt;}
.y39{bottom:447.080000pt;}
.y89{bottom:447.520000pt;}
.y5d{bottom:448.773333pt;}
.yc4{bottom:449.594667pt;}
.yc{bottom:456.493333pt;}
.ybe{bottom:457.593333pt;}
.y138{bottom:459.150667pt;}
.ybc{bottom:460.253333pt;}
.yc0{bottom:460.266667pt;}
.y38{bottom:461.746667pt;}
.y88{bottom:462.186667pt;}
.y5c{bottom:464.040000pt;}
.ybf{bottom:464.257333pt;}
.yc1{bottom:464.266667pt;}
.y139{bottom:467.952000pt;}
.yb{bottom:471.160000pt;}
.y37{bottom:476.413333pt;}
.y87{bottom:476.853333pt;}
.y131{bottom:478.284000pt;}
.y5b{bottom:479.306667pt;}
.ya{bottom:485.826667pt;}
.y36{bottom:491.080000pt;}
.y86{bottom:491.520000pt;}
.yfb{bottom:492.296000pt;}
.yf7{bottom:492.300000pt;}
.yfe{bottom:492.302667pt;}
.y5a{bottom:494.573333pt;}
.y9{bottom:500.493333pt;}
.yf6{bottom:503.397333pt;}
.yfa{bottom:504.000000pt;}
.yf9{bottom:504.352000pt;}
.y101{bottom:504.362667pt;}
.y35{bottom:505.746667pt;}
.y85{bottom:506.186667pt;}
.yf5{bottom:506.626667pt;}
.yfd{bottom:506.666667pt;}
.yff{bottom:506.676000pt;}
.y59{bottom:509.840000pt;}
.y8{bottom:515.160000pt;}
.yfc{bottom:520.389333pt;}
.yf8{bottom:520.393333pt;}
.y100{bottom:520.396000pt;}
.y34{bottom:520.413333pt;}
.y132{bottom:524.950667pt;}
.y58{bottom:525.106667pt;}
.yf3{bottom:525.993333pt;}
.yf2{bottom:527.957333pt;}
.yf4{bottom:528.000000pt;}
.y84{bottom:530.280000pt;}
.y33{bottom:535.080000pt;}
.yf1{bottom:537.396000pt;}
.yee{bottom:540.000000pt;}
.yed{bottom:540.002667pt;}
.yf0{bottom:540.626667pt;}
.yec{bottom:540.629333pt;}
.yeb{bottom:540.630667pt;}
.y83{bottom:544.946667pt;}
.yef{bottom:547.700000pt;}
.y32{bottom:549.746667pt;}
.y57{bottom:555.106667pt;}
.y82{bottom:559.613333pt;}
.y31{bottom:564.413333pt;}
.ybb{bottom:564.840000pt;}
.y56{bottom:570.373333pt;}
.y133{bottom:574.118667pt;}
.y81{bottom:574.280000pt;}
.y30{bottom:579.080000pt;}
.yba{bottom:579.506667pt;}
.y55{bottom:585.640000pt;}
.y120{bottom:586.817333pt;}
.y80{bottom:588.946667pt;}
.y2f{bottom:593.746667pt;}
.y12e{bottom:594.952000pt;}
.y54{bottom:600.906667pt;}
.ye8{bottom:603.101333pt;}
.y7f{bottom:603.613333pt;}
.y121{bottom:603.820000pt;}
.y2e{bottom:608.413333pt;}
.y7{bottom:609.666667pt;}
.yea{bottom:615.158667pt;}
.y53{bottom:616.173333pt;}
.ye7{bottom:617.420000pt;}
.y7e{bottom:618.280000pt;}
.y134{bottom:621.289333pt;}
.y2d{bottom:623.080000pt;}
.y128{bottom:627.820000pt;}
.y6{bottom:628.122667pt;}
.ye9{bottom:631.194667pt;}
.y52{bottom:631.440000pt;}
.y126{bottom:632.156000pt;}
.y7d{bottom:632.946667pt;}
.y142{bottom:635.037333pt;}
.y127{bottom:640.486667pt;}
.y129{bottom:640.822667pt;}
.y122{bottom:642.486667pt;}
.y12a{bottom:646.156000pt;}
.y51{bottom:646.706667pt;}
.y7c{bottom:647.613333pt;}
.y141{bottom:649.704000pt;}
.y2c{bottom:649.706667pt;}
.yb9{bottom:655.333333pt;}
.y12b{bottom:656.822667pt;}
.y50{bottom:661.973333pt;}
.y7b{bottom:662.280000pt;}
.y140{bottom:664.370667pt;}
.y2b{bottom:664.373333pt;}
.y12d{bottom:665.692000pt;}
.y135{bottom:669.458667pt;}
.y12c{bottom:669.825333pt;}
.yb8{bottom:670.000000pt;}
.y5{bottom:672.384000pt;}
.y124{bottom:673.820000pt;}
.y7a{bottom:676.946667pt;}
.y123{bottom:677.153333pt;}
.y4f{bottom:677.240000pt;}
.y13f{bottom:679.037333pt;}
.y2a{bottom:679.040000pt;}
.y4e{bottom:689.838667pt;}
.yb6{bottom:691.038667pt;}
.y79{bottom:691.613333pt;}
.y4d{bottom:692.506667pt;}
.y13e{bottom:693.704000pt;}
.y29{bottom:693.706667pt;}
.y4{bottom:695.040000pt;}
.yb7{bottom:697.702667pt;}
.y125{bottom:697.820000pt;}
.y137{bottom:702.950667pt;}
.y130{bottom:703.984000pt;}
.y12f{bottom:704.301333pt;}
.y4c{bottom:705.108000pt;}
.yb4{bottom:705.701333pt;}
.y4b{bottom:707.773333pt;}
.y13d{bottom:708.370667pt;}
.y28{bottom:708.373333pt;}
.yb5{bottom:712.365333pt;}
.yb3{bottom:712.374667pt;}
.y3{bottom:717.696000pt;}
.y136{bottom:718.290667pt;}
.yb2{bottom:720.373333pt;}
.y13c{bottom:723.037333pt;}
.y27{bottom:723.040000pt;}
.y13b{bottom:773.948000pt;}
.y2{bottom:773.952000pt;}
.y68{bottom:930.640000pt;}
.y20{bottom:930.653333pt;}
.y1{bottom:930.666667pt;}
.y95{bottom:930.680000pt;}
.h2f{height:22.762667pt;}
.h13{height:26.158854pt;}
.h31{height:31.296000pt;}
.h12{height:31.317333pt;}
.hb{height:36.622396pt;}
.hc{height:36.640625pt;}
.h30{height:37.418667pt;}
.h18{height:38.731292pt;}
.h33{height:38.937500pt;}
.h28{height:39.067292pt;}
.he{height:39.146667pt;}
.h26{height:39.520833pt;}
.h15{height:39.691500pt;}
.h34{height:39.807507pt;}
.h25{height:41.854167pt;}
.h1{height:41.875000pt;}
.h16{height:42.024833pt;}
.h14{height:42.045667pt;}
.h2{height:43.000000pt;}
.ha{height:47.085938pt;}
.h5{height:47.109375pt;}
.hd{height:47.299729pt;}
.h9{height:48.375000pt;}
.hf{height:49.401042pt;}
.h23{height:49.837083pt;}
.h7{height:52.317708pt;}
.h6{height:52.343750pt;}
.h21{height:52.370417pt;}
.h2d{height:52.503750pt;}
.h27{height:52.514417pt;}
.h20{height:52.531042pt;}
.h1f{height:52.557083pt;}
.h35{height:52.622396pt;}
.h32{height:52.638396pt;}
.h8{height:53.750000pt;}
.h10{height:54.850417pt;}
.h11{height:57.081063pt;}
.h1b{height:59.281250pt;}
.h1d{height:61.405708pt;}
.h2c{height:61.416375pt;}
.h22{height:61.431750pt;}
.h2e{height:61.559750pt;}
.h24{height:62.083729pt;}
.h2b{height:62.824375pt;}
.h1e{height:63.010417pt;}
.h1c{height:63.197708pt;}
.h4{height:64.500000pt;}
.h17{height:72.499729pt;}
.h1a{height:83.102396pt;}
.h19{height:83.120625pt;}
.h2a{height:83.438396pt;}
.h29{height:83.456625pt;}
.h3{height:86.000000pt;}
.h0{height:821.333333pt;}
.w0{width:532.000000pt;}
.x1{left:-84.000000pt;}
.x3{left:-81.333333pt;}
.x5{left:-78.666667pt;}
.x7{left:-73.333333pt;}
.x8{left:-69.333333pt;}
.x9{left:-66.666667pt;}
.xa{left:-62.666667pt;}
.xc{left:-60.000000pt;}
.xf{left:-56.000000pt;}
.x10{left:-53.333333pt;}
.x11{left:-49.333333pt;}
.x12{left:-46.666667pt;}
.x14{left:-42.666667pt;}
.x15{left:-40.000000pt;}
.x17{left:-37.333333pt;}
.x29{left:-18.666667pt;}
.x2a{left:-16.000000pt;}
.x2c{left:-13.333333pt;}
.x2d{left:-9.333333pt;}
.x2f{left:-6.666667pt;}
.x31{left:-4.000000pt;}
.x33{left:-1.333333pt;}
.x0{left:0.000000pt;}
.x35{left:2.666667pt;}
.x37{left:5.333333pt;}
.x39{left:8.000000pt;}
.x3b{left:12.000000pt;}
.x3d{left:14.666667pt;}
.x3f{left:18.666667pt;}
.x41{left:20.000000pt;}
.x43{left:24.000000pt;}
.x44{left:26.666667pt;}
.x46{left:29.333333pt;}
.x48{left:33.346667pt;}
.x4a{left:36.000000pt;}
.x4c{left:38.666667pt;}
.x4e{left:41.333333pt;}
.x50{left:45.333333pt;}
.x6{left:47.904000pt;}
.x52{left:50.666667pt;}
.x54{left:53.333333pt;}
.x11f{left:55.160000pt;}
.x56{left:57.333333pt;}
.x58{left:60.000000pt;}
.x5a{left:62.666667pt;}
.x16{left:63.893333pt;}
.x5c{left:66.666667pt;}
.xe{left:67.893333pt;}
.x14a{left:69.026667pt;}
.x5f{left:72.000000pt;}
.x61{left:74.666667pt;}
.x14c{left:77.306667pt;}
.x63{left:78.666667pt;}
.x162{left:80.477333pt;}
.x13{left:81.973333pt;}
.x14e{left:83.293333pt;}
.x65{left:85.333333pt;}
.x1a{left:86.988000pt;}
.x67{left:88.000000pt;}
.x126{left:89.573333pt;}
.x19{left:91.440000pt;}
.x69{left:94.666667pt;}
.xb9{left:96.306667pt;}
.x6b{left:98.666667pt;}
.xc4{left:99.760000pt;}
.x6c{left:101.333333pt;}
.xc5{left:103.460000pt;}
.x6e{left:105.333333pt;}
.x70{left:108.000000pt;}
.x150{left:110.386667pt;}
.x3e{left:111.546667pt;}
.xc8{left:113.160000pt;}
.x73{left:114.666667pt;}
.x66{left:116.266667pt;}
.x40{left:118.281333pt;}
.x75{left:121.333333pt;}
.x42{left:123.000000pt;}
.x74{left:124.693333pt;}
.x78{left:128.000000pt;}
.xe5{left:128.909333pt;}
.x79{left:130.666667pt;}
.x2e{left:132.840000pt;}
.x12a{left:134.533333pt;}
.x68{left:137.386667pt;}
.x30{left:138.821333pt;}
.x7a{left:140.000000pt;}
.x32{left:143.533333pt;}
.x45{left:145.358667pt;}
.x6a{left:146.466667pt;}
.x47{left:150.080000pt;}
.x7d{left:153.333333pt;}
.x34{left:156.640000pt;}
.x7f{left:160.000000pt;}
.xe9{left:161.221333pt;}
.x36{left:162.621333pt;}
.x6d{left:164.626667pt;}
.x38{left:167.333333pt;}
.x129{left:168.813333pt;}
.x82{left:170.666667pt;}
.x6f{left:171.786667pt;}
.x83{left:173.333333pt;}
.xc9{left:174.721333pt;}
.xf7{left:176.133333pt;}
.x84{left:177.333333pt;}
.x86{left:180.000000pt;}
.xab{left:182.808000pt;}
.x88{left:184.013333pt;}
.x1b{left:186.380000pt;}
.x8b{left:189.306667pt;}
.x8a{left:190.680000pt;}
.xec{left:191.880000pt;}
.x12d{left:193.148000pt;}
.xac{left:195.837333pt;}
.x12e{left:198.906667pt;}
.xf1{left:200.146667pt;}
.xa6{left:201.160000pt;}
.x12b{left:205.333333pt;}
.x8c{left:208.394667pt;}
.x12c{left:210.666667pt;}
.xa8{left:213.146667pt;}
.x2{left:217.941333pt;}
.xaa{left:220.066667pt;}
.x160{left:223.442667pt;}
.x12f{left:225.333333pt;}
.x8d{left:227.994667pt;}
.x157{left:229.093333pt;}
.xae{left:232.420000pt;}
.x8e{left:233.381333pt;}
.x8f{left:234.666667pt;}
.xaf{left:235.578667pt;}
.x91{left:237.333333pt;}
.x90{left:239.165333pt;}
.x94{left:242.666667pt;}
.x95{left:243.706667pt;}
.x18{left:245.054667pt;}
.x111{left:246.453333pt;}
.xff{left:247.520000pt;}
.x92{left:248.613333pt;}
.xad{left:250.666667pt;}
.x101{left:251.960000pt;}
.x93{left:254.998667pt;}
.x120{left:256.398667pt;}
.x103{left:257.866667pt;}
.xcc{left:262.625333pt;}
.x7b{left:264.960000pt;}
.x124{left:267.240000pt;}
.x15a{left:269.666667pt;}
.x130{left:270.666667pt;}
.x7c{left:271.626667pt;}
.x9a{left:273.088000pt;}
.xb0{left:275.493333pt;}
.x105{left:276.493333pt;}
.x9c{left:278.826667pt;}
.x96{left:280.026667pt;}
.x121{left:281.426667pt;}
.x9e{left:282.976000pt;}
.x97{left:284.000000pt;}
.x7e{left:285.813333pt;}
.x71{left:287.453333pt;}
.x72{left:291.226667pt;}
.xcf{left:292.560000pt;}
.x76{left:293.706667pt;}
.xb{left:294.680000pt;}
.x125{left:296.000000pt;}
.x9f{left:297.344000pt;}
.xa1{left:298.922667pt;}
.xa0{left:300.010667pt;}
.x80{left:300.973333pt;}
.xa2{left:302.666667pt;}
.xb1{left:304.000000pt;}
.xb2{left:305.333333pt;}
.xa3{left:306.666667pt;}
.x127{left:308.000000pt;}
.xa4{left:309.333333pt;}
.x128{left:310.666667pt;}
.xa5{left:312.000000pt;}
.x11c{left:313.528000pt;}
.xa7{left:314.666667pt;}
.xd4{left:315.866667pt;}
.x49{left:316.906667pt;}
.x11e{left:318.973333pt;}
.xa9{left:321.333333pt;}
.xd6{left:322.528000pt;}
.x4b{left:323.625333pt;}
.x1c{left:327.324000pt;}
.x4d{left:328.346667pt;}
.x77{left:332.226667pt;}
.x109{left:333.866667pt;}
.x98{left:336.000000pt;}
.x122{left:337.333333pt;}
.x99{left:338.666667pt;}
.x123{left:340.000000pt;}
.xb3{left:341.333333pt;}
.x4f{left:342.720000pt;}
.x9b{left:344.000000pt;}
.xb4{left:345.333333pt;}
.x9d{left:346.666667pt;}
.xb5{left:348.000000pt;}
.x51{left:349.460000pt;}
.x81{left:350.720000pt;}
.x142{left:351.800000pt;}
.xb6{left:353.333333pt;}
.x1f{left:354.329333pt;}
.x53{left:358.173333pt;}
.xb7{left:360.000000pt;}
.x25{left:360.996000pt;}
.xb8{left:362.666667pt;}
.x161{left:364.413333pt;}
.xba{left:365.333333pt;}
.x139{left:367.773333pt;}
.x55{left:369.360000pt;}
.xca{left:371.413333pt;}
.x20{left:372.854667pt;}
.x57{left:375.338667pt;}
.x21{left:377.521333pt;}
.xbd{left:378.666667pt;}
.x59{left:380.053333pt;}
.xbf{left:381.333333pt;}
.x1d{left:383.953333pt;}
.xc1{left:385.333333pt;}
.x1e{left:387.014667pt;}
.xc3{left:388.000000pt;}
.xde{left:389.300000pt;}
.xf9{left:390.440000pt;}
.xbb{left:392.173333pt;}
.xc6{left:393.333333pt;}
.x5b{left:394.440000pt;}
.x131{left:396.002667pt;}
.xc7{left:397.333333pt;}
.xbc{left:398.840000pt;}
.x5d{left:400.426667pt;}
.x22{left:402.478667pt;}
.x132{left:403.973333pt;}
.x5e{left:405.133333pt;}
.x23{left:407.145333pt;}
.x26{left:409.145333pt;}
.x133{left:410.666667pt;}
.x85{left:411.946667pt;}
.x27{left:413.812000pt;}
.x134{left:416.000000pt;}
.xbe{left:417.240000pt;}
.x24{left:418.578667pt;}
.x135{left:420.000000pt;}
.xcb{left:421.346667pt;}
.x136{left:422.666667pt;}
.x28{left:425.245333pt;}
.x3a{left:426.906667pt;}
.x87{left:428.000000pt;}
.x15f{left:429.604000pt;}
.xcd{left:430.666667pt;}
.x137{left:432.000000pt;}
.x89{left:433.920000pt;}
.xce{left:436.000000pt;}
.xc0{left:438.080000pt;}
.xd0{left:440.000000pt;}
.x60{left:441.386667pt;}
.xd1{left:442.666667pt;}
.x138{left:444.000000pt;}
.xd2{left:445.333333pt;}
.x4{left:446.986667pt;}
.x62{left:448.120000pt;}
.xd3{left:449.333333pt;}
.xd5{left:452.000000pt;}
.x13a{left:453.333333pt;}
.xd7{left:454.666667pt;}
.x13b{left:456.000000pt;}
.xd8{left:457.333333pt;}
.x13c{left:458.666667pt;}
.xd{left:460.466667pt;}
.x3c{left:461.386667pt;}
.x13d{left:462.666667pt;}
.xd9{left:464.000000pt;}
.xc2{left:465.466667pt;}
.x2b{left:466.538667pt;}
.x64{left:467.813333pt;}
.xda{left:470.666667pt;}
.xdb{left:472.000000pt;}
.x13e{left:474.666667pt;}
.xdc{left:476.000000pt;}
.x13f{left:477.333333pt;}
.xdd{left:478.666667pt;}
.x140{left:480.000000pt;}
.xdf{left:481.333333pt;}
.x141{left:482.666667pt;}
.xe0{left:485.333333pt;}
.xe1{left:488.000000pt;}
.x143{left:489.346667pt;}
.xe2{left:490.666667pt;}
.x144{left:492.013333pt;}
.xe3{left:493.333333pt;}
.x145{left:496.013333pt;}
.xe4{left:497.333333pt;}
.x146{left:498.680000pt;}
.xe6{left:500.000000pt;}
.xe7{left:502.666667pt;}
.x147{left:505.346667pt;}
.xe8{left:506.666667pt;}
.xea{left:508.000000pt;}
.x148{left:509.346667pt;}
.xeb{left:512.013333pt;}
.xed{left:514.680000pt;}
.x149{left:516.013333pt;}
.xee{left:518.680000pt;}
.xef{left:521.346667pt;}
.x14b{left:522.680000pt;}
.xf0{left:525.346667pt;}
.xf2{left:528.013333pt;}
.x14d{left:529.346667pt;}
.xf3{left:532.026667pt;}
.xf4{left:534.693333pt;}
.x14f{left:536.013333pt;}
.xf5{left:538.693333pt;}
.xf6{left:541.360000pt;}
.x151{left:542.680000pt;}
.xf8{left:545.360000pt;}
.xfa{left:548.000000pt;}
.x152{left:549.346667pt;}
.xfb{left:550.666667pt;}
.x153{left:552.013333pt;}
.xfc{left:554.680000pt;}
.x154{left:556.013333pt;}
.xfd{left:557.333333pt;}
.x155{left:558.680000pt;}
.xfe{left:560.000000pt;}
.x100{left:562.666667pt;}
.x156{left:565.346667pt;}
.x102{left:566.666667pt;}
.x104{left:569.333333pt;}
.x158{left:572.013333pt;}
.x106{left:573.333333pt;}
.x107{left:576.000000pt;}
.x159{left:578.680000pt;}
.x108{left:580.000000pt;}
.x10a{left:582.666667pt;}
.x15b{left:585.346667pt;}
.x10b{left:586.666667pt;}
.x10c{left:589.333333pt;}
.x10d{left:592.000000pt;}
.x10e{left:596.000000pt;}
.x10f{left:597.333333pt;}
.x15c{left:598.666667pt;}
.x110{left:601.346667pt;}
.x112{left:604.000000pt;}
.x15d{left:605.333333pt;}
.x113{left:606.666667pt;}
.x15e{left:608.000000pt;}
.x114{left:610.666667pt;}
.x115{left:613.333333pt;}
.x116{left:616.000000pt;}
.x117{left:618.666667pt;}
.x118{left:622.666667pt;}
.x119{left:625.333333pt;}
.x11a{left:628.000000pt;}
.x11b{left:632.000000pt;}
.x11d{left:633.333333pt;}
}




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