
    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_9a4ed94b84ddbaaa8abc70ac.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.127000;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_df10c71d70a4ceb3e800c017.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.142000;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_8c2f99db40d0f858d6353563.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.984000;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_a5a8a67eb51bc835532a774d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.121000;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_792980e85018181fe43b9c38.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_fb3ac232dc7b62edf7b04b73.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vd{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.600000px;}
.vc{vertical-align:23.760000px;}
.v4{vertical-align:26.640000px;}
.v7{vertical-align:30.960000px;}
.v5{vertical-align:34.560000px;}
.v8{vertical-align:39.600000px;}
.v6{vertical-align:43.920000px;}
.v3{vertical-align:48.960000px;}
.v2{vertical-align:50.400000px;}
.va{vertical-align:52.560000px;}
.v9{vertical-align:54.000000px;}
.vb{vertical-align:58.320000px;}
.ls5b{letter-spacing:-2.489760px;}
.ls55{letter-spacing:-2.376000px;}
.ls12{letter-spacing:-2.232000px;}
.ls64{letter-spacing:-2.021760px;}
.ls3a{letter-spacing:-1.944000px;}
.ls5d{letter-spacing:-1.915200px;}
.ls25{letter-spacing:-1.872000px;}
.ls10{letter-spacing:-1.788480px;}
.ls43{letter-spacing:-1.728000px;}
.ls11{letter-spacing:-1.722240px;}
.ls37{letter-spacing:-1.656000px;}
.ls42{letter-spacing:-1.523520px;}
.ls24{letter-spacing:-1.512000px;}
.ls30{letter-spacing:-1.477440px;}
.ls38{letter-spacing:-1.440000px;}
.ls35{letter-spacing:-1.347840px;}
.ls5a{letter-spacing:-1.340640px;}
.ls27{letter-spacing:-1.152000px;}
.ls5c{letter-spacing:-1.149120px;}
.lse{letter-spacing:-1.126080px;}
.ls5e{letter-spacing:-1.080000px;}
.ls40{letter-spacing:-1.008000px;}
.ls72{letter-spacing:-0.936000px;}
.ls6f{letter-spacing:-0.896400px;}
.ls52{letter-spacing:-0.864000px;}
.ls63{letter-spacing:-0.792000px;}
.ls16{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.662400px;}
.ls41{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.596160px;}
.ls28{letter-spacing:-0.576000px;}
.ls23{letter-spacing:-0.537840px;}
.ls2b{letter-spacing:-0.504000px;}
.ls15{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.397440px;}
.ls29{letter-spacing:-0.360000px;}
.ls3b{letter-spacing:-0.358560px;}
.ls6b{letter-spacing:-0.331200px;}
.ls39{letter-spacing:-0.298800px;}
.ls13{letter-spacing:-0.288000px;}
.ls6a{letter-spacing:-0.264960px;}
.ls1f{letter-spacing:-0.239040px;}
.ls17{letter-spacing:-0.216000px;}
.ls32{letter-spacing:-0.198720px;}
.ls20{letter-spacing:-0.179280px;}
.ls5f{letter-spacing:-0.170640px;}
.ls14{letter-spacing:-0.144000px;}
.ls6e{letter-spacing:-0.132480px;}
.ls44{letter-spacing:-0.119520px;}
.ls60{letter-spacing:-0.113760px;}
.ls36{letter-spacing:-0.072000px;}
.ls69{letter-spacing:-0.066240px;}
.ls54{letter-spacing:-0.059760px;}
.lsb{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.007920px;}
.ls26{letter-spacing:0.072000px;}
.ls2c{letter-spacing:0.077760px;}
.ls22{letter-spacing:0.119520px;}
.ls68{letter-spacing:0.132480px;}
.ls61{letter-spacing:0.136800px;}
.ls2a{letter-spacing:0.144000px;}
.ls4e{letter-spacing:0.155376px;}
.ls46{letter-spacing:0.158400px;}
.ls4c{letter-spacing:0.161352px;}
.ls1e{letter-spacing:0.179280px;}
.ls19{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.216000px;}
.ls49{letter-spacing:0.218880px;}
.ls4a{letter-spacing:0.256968px;}
.ls33{letter-spacing:0.264960px;}
.ls4d{letter-spacing:0.268920px;}
.ls1a{letter-spacing:0.278640px;}
.ls9{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.298800px;}
.ls45{letter-spacing:0.311760px;}
.ls3f{letter-spacing:0.316800px;}
.ls21{letter-spacing:0.358560px;}
.ls18{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.397440px;}
.ls3{letter-spacing:0.432000px;}
.ls3d{letter-spacing:0.637920px;}
.ls0{letter-spacing:0.662400px;}
.ls2e{letter-spacing:0.691200px;}
.ls31{letter-spacing:0.699840px;}
.ls1{letter-spacing:0.720000px;}
.ls56{letter-spacing:0.766080px;}
.ls47{letter-spacing:0.907200px;}
.ls2d{letter-spacing:1.270080px;}
.ls8{letter-spacing:1.440000px;}
.ls6d{letter-spacing:1.613520px;}
.lsa{letter-spacing:2.160000px;}
.ls50{letter-spacing:2.508480px;}
.ls7{letter-spacing:2.880000px;}
.ls58{letter-spacing:3.600000px;}
.ls1b{letter-spacing:4.320000px;}
.ls62{letter-spacing:5.032800px;}
.ls6{letter-spacing:5.040000px;}
.ls70{letter-spacing:5.760000px;}
.ls59{letter-spacing:7.200000px;}
.ls5{letter-spacing:7.920000px;}
.ls57{letter-spacing:8.640000px;}
.ls1c{letter-spacing:10.800000px;}
.ls71{letter-spacing:14.400000px;}
.ls6c{letter-spacing:43.920000px;}
.ls65{letter-spacing:46.800000px;}
.ls66{letter-spacing:47.520000px;}
.ls67{letter-spacing:80.640000px;}
.ls4{letter-spacing:195.120000px;}
.ls4f{letter-spacing:522.720000px;}
.ls4b{letter-spacing:626.667120px;}
.ls53{letter-spacing:840.102480px;}
.ls1d{letter-spacing:846.000000px;}
.ls3c{letter-spacing:1542.960000px;}
.ls51{letter-spacing:1640.160000px;}
.ls3e{letter-spacing:2095.920000px;}
.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;}
}
.ws56{word-spacing:-22.982400px;}
.ws7b{word-spacing:-21.833280px;}
.ws7a{word-spacing:-21.641760px;}
.wsad{word-spacing:-20.217600px;}
.ws57{word-spacing:-19.362240px;}
.ws7{word-spacing:-18.360000px;}
.ws5b{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.216000px;}
.wsae{word-spacing:-18.195840px;}
.ws35{word-spacing:-18.144000px;}
.ws9a{word-spacing:-18.072000px;}
.ws32{word-spacing:-18.000000px;}
.ws6c{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.ws7c{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws34{word-spacing:-17.640000px;}
.ws58{word-spacing:-17.568000px;}
.ws36{word-spacing:-17.496000px;}
.ws37{word-spacing:-17.424000px;}
.ws6a{word-spacing:-17.352000px;}
.ws4{word-spacing:-17.280000px;}
.ws99{word-spacing:-17.136000px;}
.ws59{word-spacing:-16.824960px;}
.ws33{word-spacing:-16.704000px;}
.wsc2{word-spacing:-16.692480px;}
.wsc1{word-spacing:-16.560000px;}
.wsb7{word-spacing:-16.493760px;}
.wsc3{word-spacing:-16.427520px;}
.ws5a{word-spacing:-16.295040px;}
.wsb9{word-spacing:-16.228800px;}
.ws78{word-spacing:-16.128000px;}
.wsb8{word-spacing:-15.963840px;}
.ws1{word-spacing:-15.897600px;}
.ws5c{word-spacing:-15.840000px;}
.ws6f{word-spacing:-15.624000px;}
.ws73{word-spacing:-15.552000px;}
.ws0{word-spacing:-15.500160px;}
.ws77{word-spacing:-15.336000px;}
.ws2{word-spacing:-15.301440px;}
.ws2f{word-spacing:-15.298560px;}
.ws71{word-spacing:-15.238800px;}
.ws72{word-spacing:-15.119280px;}
.ws5d{word-spacing:-15.059520px;}
.ws30{word-spacing:-14.940000px;}
.ws6e{word-spacing:-14.820480px;}
.ws6d{word-spacing:-14.760720px;}
.ws2e{word-spacing:-14.700960px;}
.wsc6{word-spacing:-14.641200px;}
.ws74{word-spacing:-14.581440px;}
.ws31{word-spacing:-14.402160px;}
.ws6b{word-spacing:-14.374080px;}
.ws3{word-spacing:-14.109120px;}
.ws7d{word-spacing:-14.049360px;}
.wsc4{word-spacing:-10.440000px;}
.wsc5{word-spacing:-9.000000px;}
.wsb2{word-spacing:-4.608000px;}
.wsf2{word-spacing:-4.536000px;}
.wsf3{word-spacing:-4.392000px;}
.wsf1{word-spacing:-4.176000px;}
.ws9e{word-spacing:-4.032000px;}
.ws8e{word-spacing:-3.888000px;}
.ws55{word-spacing:-3.816000px;}
.ws54{word-spacing:-3.600000px;}
.ws91{word-spacing:-3.384000px;}
.ws8f{word-spacing:-3.312000px;}
.ws1d{word-spacing:-3.168000px;}
.ws1c{word-spacing:-3.096000px;}
.wsb5{word-spacing:-2.952000px;}
.wsb1{word-spacing:-2.880000px;}
.ws9f{word-spacing:-2.736000px;}
.wsb4{word-spacing:-2.592000px;}
.ws2b{word-spacing:-2.448000px;}
.ws83{word-spacing:-2.376000px;}
.wscb{word-spacing:-2.232000px;}
.ws8d{word-spacing:-2.160000px;}
.ws87{word-spacing:-2.016000px;}
.wse2{word-spacing:-1.944000px;}
.wse0{word-spacing:-1.872000px;}
.wseb{word-spacing:-1.800000px;}
.ws80{word-spacing:-1.728000px;}
.ws2d{word-spacing:-1.656000px;}
.wsd5{word-spacing:-1.613520px;}
.wsea{word-spacing:-1.512000px;}
.ws29{word-spacing:-1.440000px;}
.wsa2{word-spacing:-1.296000px;}
.ws88{word-spacing:-1.152000px;}
.wsa3{word-spacing:-1.137600px;}
.ws24{word-spacing:-1.008000px;}
.ws23{word-spacing:-0.936000px;}
.wsd2{word-spacing:-0.896400px;}
.wsc9{word-spacing:-0.864000px;}
.wsbc{word-spacing:-0.861120px;}
.wsdf{word-spacing:-0.792000px;}
.ws64{word-spacing:-0.720000px;}
.wsd8{word-spacing:-0.717120px;}
.wsbb{word-spacing:-0.662400px;}
.wsd7{word-spacing:-0.657360px;}
.wsa6{word-spacing:-0.576000px;}
.ws60{word-spacing:-0.529920px;}
.ws90{word-spacing:-0.504000px;}
.wsc7{word-spacing:-0.463680px;}
.ws95{word-spacing:-0.432000px;}
.ws47{word-spacing:-0.360000px;}
.ws70{word-spacing:-0.358560px;}
.wsd6{word-spacing:-0.298800px;}
.ws28{word-spacing:-0.288000px;}
.wsbf{word-spacing:-0.264960px;}
.ws1e{word-spacing:-0.216000px;}
.ws38{word-spacing:-0.179280px;}
.wsba{word-spacing:-0.132480px;}
.ws67{word-spacing:-0.119520px;}
.ws3e{word-spacing:-0.072000px;}
.ws9{word-spacing:0.000000px;}
.ws3a{word-spacing:0.059760px;}
.wsbe{word-spacing:0.066240px;}
.ws62{word-spacing:0.072000px;}
.ws13{word-spacing:0.144000px;}
.ws39{word-spacing:0.179280px;}
.ws27{word-spacing:0.216000px;}
.ws75{word-spacing:0.239040px;}
.wsbd{word-spacing:0.264960px;}
.ws14{word-spacing:0.288000px;}
.wsc0{word-spacing:0.331200px;}
.ws68{word-spacing:0.358560px;}
.ws4e{word-spacing:0.360000px;}
.ws65{word-spacing:0.418320px;}
.ws46{word-spacing:0.432000px;}
.ws66{word-spacing:0.478080px;}
.wsf{word-spacing:0.504000px;}
.ws69{word-spacing:0.537840px;}
.wsa{word-spacing:0.596160px;}
.wsca{word-spacing:0.648000px;}
.wsc{word-spacing:0.662400px;}
.ws48{word-spacing:0.720000px;}
.wsb0{word-spacing:0.792000px;}
.ws4d{word-spacing:0.864000px;}
.wsd3{word-spacing:0.896400px;}
.wse3{word-spacing:0.936000px;}
.wsac{word-spacing:1.008000px;}
.ws76{word-spacing:1.059840px;}
.ws81{word-spacing:1.080000px;}
.wsb{word-spacing:1.126080px;}
.ws25{word-spacing:1.152000px;}
.ws22{word-spacing:1.224000px;}
.wsd4{word-spacing:1.254960px;}
.ws5e{word-spacing:1.258560px;}
.ws61{word-spacing:1.347840px;}
.wse1{word-spacing:1.368000px;}
.ws44{word-spacing:1.440000px;}
.wsd1{word-spacing:1.494000px;}
.ws3c{word-spacing:1.512000px;}
.ws5f{word-spacing:1.555200px;}
.wsaf{word-spacing:1.584000px;}
.ws21{word-spacing:1.656000px;}
.ws45{word-spacing:1.728000px;}
.ws3b{word-spacing:1.788480px;}
.ws11{word-spacing:1.872000px;}
.ws10{word-spacing:1.944000px;}
.wsf0{word-spacing:2.088000px;}
.ws4b{word-spacing:2.160000px;}
.ws15{word-spacing:2.232000px;}
.wsa7{word-spacing:2.304000px;}
.ws63{word-spacing:2.376000px;}
.wsd{word-spacing:2.384640px;}
.ws12{word-spacing:2.448000px;}
.ws7e{word-spacing:2.489760px;}
.ws8a{word-spacing:2.520000px;}
.ws3d{word-spacing:2.592000px;}
.ws1f{word-spacing:2.664000px;}
.ws7f{word-spacing:2.681280px;}
.wsc8{word-spacing:2.695680px;}
.wse7{word-spacing:2.808000px;}
.ws20{word-spacing:2.880000px;}
.ws41{word-spacing:3.024000px;}
.ws79{word-spacing:3.096000px;}
.ws42{word-spacing:3.168000px;}
.ws50{word-spacing:3.312000px;}
.ws4f{word-spacing:3.384000px;}
.wse{word-spacing:3.672000px;}
.wsa0{word-spacing:3.744000px;}
.wsb6{word-spacing:3.816000px;}
.wsa4{word-spacing:3.888000px;}
.ws3f{word-spacing:4.032000px;}
.ws26{word-spacing:4.104000px;}
.wse6{word-spacing:4.248000px;}
.wsa5{word-spacing:4.320000px;}
.wsa9{word-spacing:4.464000px;}
.wsa1{word-spacing:4.608000px;}
.ws1a{word-spacing:4.752000px;}
.ws19{word-spacing:4.824000px;}
.wsda{word-spacing:4.968000px;}
.ws2a{word-spacing:5.112000px;}
.ws8c{word-spacing:5.184000px;}
.ws43{word-spacing:5.256000px;}
.ws1b{word-spacing:5.328000px;}
.ws52{word-spacing:5.472000px;}
.ws51{word-spacing:5.544000px;}
.ws53{word-spacing:5.688000px;}
.ws94{word-spacing:5.904000px;}
.wsd9{word-spacing:6.048000px;}
.ws93{word-spacing:6.192000px;}
.ws92{word-spacing:6.264000px;}
.ws84{word-spacing:6.912000px;}
.ws2c{word-spacing:6.984000px;}
.wse5{word-spacing:7.344000px;}
.ws8b{word-spacing:7.488000px;}
.ws85{word-spacing:7.560000px;}
.ws9d{word-spacing:7.632000px;}
.ws16{word-spacing:7.704000px;}
.wsb3{word-spacing:7.750080px;}
.wsdb{word-spacing:7.848000px;}
.ws86{word-spacing:8.064000px;}
.ws17{word-spacing:8.208000px;}
.ws18{word-spacing:8.352000px;}
.ws82{word-spacing:8.424000px;}
.ws89{word-spacing:8.928000px;}
.ws97{word-spacing:9.072000px;}
.ws96{word-spacing:9.144000px;}
.ws98{word-spacing:9.504000px;}
.wscc{word-spacing:10.080000px;}
.wscd{word-spacing:10.224000px;}
.ws4a{word-spacing:10.512000px;}
.ws49{word-spacing:10.584000px;}
.wscf{word-spacing:11.304000px;}
.wse8{word-spacing:11.448000px;}
.wse4{word-spacing:11.520000px;}
.wsd0{word-spacing:11.664000px;}
.wsce{word-spacing:11.808000px;}
.wsa8{word-spacing:11.952000px;}
.ws9b{word-spacing:12.024000px;}
.ws9c{word-spacing:12.384000px;}
.wse9{word-spacing:12.528000px;}
.wsdd{word-spacing:12.672000px;}
.wsdc{word-spacing:12.888000px;}
.wsde{word-spacing:13.104000px;}
.ws40{word-spacing:13.392000px;}
.ws4c{word-spacing:14.184000px;}
.wsed{word-spacing:14.544000px;}
.wsec{word-spacing:14.688000px;}
.wsab{word-spacing:16.272000px;}
.wsaa{word-spacing:16.344000px;}
.wsee{word-spacing:17.064000px;}
.wsef{word-spacing:17.568000px;}
._c{margin-left:-4.498560px;}
._8{margin-left:-3.312000px;}
._1{margin-left:-1.503360px;}
._2{width:1.203840px;}
._0{width:2.252160px;}
._5{width:3.499200px;}
._4{width:4.501440px;}
._a{width:5.728320px;}
._b{width:7.004160px;}
._3{width:8.536320px;}
._6{width:10.252800px;}
._7{width:15.079680px;}
._9{width:73.440000px;}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(54,95,145);}
.fc2{color:transparent;}
.fc1{color:rgb(102,102,153);}
.fc4{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs8{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y155{bottom:4.320000px;}
.y152{bottom:4.500000px;}
.y56{bottom:5.040000px;}
.y2c{bottom:5.400000px;}
.y5a{bottom:5.759850px;}
.y57{bottom:5.940000px;}
.yb4{bottom:6.120000px;}
.y9d{bottom:6.300000px;}
.ycd{bottom:6.480000px;}
.ydf{bottom:6.660000px;}
.y188{bottom:7.740000px;}
.y2{bottom:10.080000px;}
.y4f{bottom:11.340000px;}
.y8c{bottom:25.380000px;}
.yab{bottom:26.100000px;}
.y59{bottom:27.360000px;}
.yb8{bottom:32.220000px;}
.y79{bottom:48.240000px;}
.y9e{bottom:48.420000px;}
.y29{bottom:50.400000px;}
.y62{bottom:67.320000px;}
.y2d{bottom:90.540000px;}
.y2b{bottom:104.220000px;}
.y27{bottom:142.020000px;}
.y26{bottom:164.880000px;}
.y1bd{bottom:176.588100px;}
.yc4{bottom:183.600000px;}
.y185{bottom:185.220000px;}
.y1c6{bottom:185.940000px;}
.y131{bottom:186.120000px;}
.y25{bottom:187.740000px;}
.yc3{bottom:190.260000px;}
.y109{bottom:193.140000px;}
.y1bc{bottom:195.666480px;}
.y19f{bottom:201.060000px;}
.y16b{bottom:207.720000px;}
.y1c5{bottom:208.800000px;}
.y130{bottom:208.980000px;}
.y24{bottom:210.780000px;}
.y1bb{bottom:214.744860px;}
.yc1{bottom:215.460000px;}
.y108{bottom:216.000000px;}
.y183{bottom:219.960000px;}
.y1a0{bottom:223.200000px;}
.y16c{bottom:228.780000px;}
.y1c4{bottom:231.660000px;}
.yc2{bottom:231.840000px;}
.y12f{bottom:232.020000px;}
.y23{bottom:233.640000px;}
.y1ba{bottom:233.823240px;}
.y107{bottom:238.860000px;}
.y73{bottom:239.760000px;}
.y184{bottom:241.020000px;}
.y19d{bottom:250.560000px;}
.y99{bottom:251.640000px;}
.y1b9{bottom:252.901620px;}
.y1c3{bottom:254.520000px;}
.y12e{bottom:254.880000px;}
.y169{bottom:255.060000px;}
.y22{bottom:256.500000px;}
.yc0{bottom:257.400000px;}
.y14f{bottom:261.360000px;}
.y106{bottom:261.720000px;}
.y75{bottom:264.240000px;}
.y19e{bottom:272.700000px;}
.y16a{bottom:275.940000px;}
.y9b{bottom:276.120000px;}
.y1b8{bottom:277.200000px;}
.y1c2{bottom:277.380000px;}
.y12d{bottom:277.740000px;}
.y21{bottom:279.360000px;}
.y74{bottom:284.220000px;}
.y105{bottom:284.580000px;}
.y1b7{bottom:289.620000px;}
.y9a{bottom:296.100000px;}
.y76{bottom:299.520000px;}
.ybf{bottom:299.700000px;}
.y1c1{bottom:300.240000px;}
.y12c{bottom:300.600000px;}
.y167{bottom:301.860000px;}
.y20{bottom:302.220000px;}
.y4d{bottom:304.740000px;}
.y14e{bottom:307.080000px;}
.y104{bottom:307.440000px;}
.y19c{bottom:310.860000px;}
.y9c{bottom:311.220000px;}
.y168{bottom:322.920000px;}
.y1c0{bottom:323.100000px;}
.y12b{bottom:323.460000px;}
.y72{bottom:323.640000px;}
.y1f{bottom:325.080000px;}
.y4c{bottom:327.600000px;}
.y14d{bottom:329.940000px;}
.y103{bottom:330.300000px;}
.y98{bottom:335.520000px;}
.ybb{bottom:336.420000px;}
.y1bf{bottom:345.960000px;}
.y12a{bottom:346.320000px;}
.y165{bottom:349.020000px;}
.y1b6{bottom:350.460000px;}
.y4b{bottom:350.640000px;}
.y14c{bottom:352.800000px;}
.y102{bottom:353.160000px;}
.y6e{bottom:353.880000px;}
.y19b{bottom:356.760000px;}
.y1e{bottom:356.940000px;}
.ybd{bottom:360.900000px;}
.y182{bottom:362.520000px;}
.y94{bottom:365.580000px;}
.y1be{bottom:369.000000px;}
.y129{bottom:369.180000px;}
.y166{bottom:371.340000px;}
.y1b5{bottom:373.320000px;}
.y4a{bottom:373.500000px;}
.y14b{bottom:375.660000px;}
.y101{bottom:376.020000px;}
.y70{bottom:378.360000px;}
.ybc{bottom:380.880000px;}
.y96{bottom:390.060000px;}
.y128{bottom:391.860000px;}
.y199{bottom:393.660000px;}
.ybe{bottom:396.180000px;}
.y49{bottom:396.360000px;}
.y6f{bottom:398.340000px;}
.y14a{bottom:398.520000px;}
.y100{bottom:398.880000px;}
.y1b4{bottom:405.180000px;}
.y181{bottom:409.320000px;}
.y164{bottom:409.500000px;}
.y95{bottom:410.040000px;}
.y71{bottom:413.460000px;}
.y127{bottom:414.720000px;}
.y1d{bottom:415.800000px;}
.y19a{bottom:416.880000px;}
.y48{bottom:419.220000px;}
.yba{bottom:420.300000px;}
.y149{bottom:421.380000px;}
.yff{bottom:421.920000px;}
.y97{bottom:425.340000px;}
.y1b3{bottom:428.040000px;}
.y126{bottom:437.580000px;}
.y6d{bottom:437.760000px;}
.y1c{bottom:438.660000px;}
.y47{bottom:442.080000px;}
.y148{bottom:444.060000px;}
.yfe{bottom:444.780000px;}
.y197{bottom:445.320000px;}
.y93{bottom:449.460000px;}
.yb7{bottom:450.540000px;}
.y1b2{bottom:450.900000px;}
.y180{bottom:456.120000px;}
.y163{bottom:458.460000px;}
.y125{bottom:460.440000px;}
.y1b{bottom:461.520000px;}
.yb9{bottom:462.780000px;}
.y46{bottom:464.940000px;}
.y147{bottom:466.920000px;}
.yfd{bottom:467.640000px;}
.y68{bottom:467.820000px;}
.y198{bottom:468.720000px;}
.y6b{bottom:473.220000px;}
.y1b1{bottom:473.940000px;}
.y8f{bottom:479.700000px;}
.y124{bottom:483.300000px;}
.y1a{bottom:484.560000px;}
.y45{bottom:487.800000px;}
.y146{bottom:489.780000px;}
.yfc{bottom:490.500000px;}
.y161{bottom:492.120000px;}
.y6a{bottom:492.300000px;}
.y17e{bottom:493.020000px;}
.y1b0{bottom:496.800000px;}
.y195{bottom:497.160000px;}
.yb6{bottom:499.320000px;}
.y91{bottom:504.180000px;}
.y123{bottom:506.160000px;}
.y19{bottom:507.420000px;}
.y44{bottom:510.660000px;}
.y69{bottom:512.280000px;}
.y145{bottom:512.640000px;}
.y162{bottom:513.180000px;}
.yfb{bottom:513.360000px;}
.y17f{bottom:515.340000px;}
.y196{bottom:518.040000px;}
.ye3{bottom:519.840000px;}
.y90{bottom:524.160000px;}
.y6c{bottom:527.580000px;}
.y1af{bottom:528.300000px;}
.y122{bottom:529.020000px;}
.yb2{bottom:529.380000px;}
.y18{bottom:530.280000px;}
.y43{bottom:533.520000px;}
.yb3{bottom:535.500000px;}
.yfa{bottom:536.220000px;}
.y92{bottom:539.280000px;}
.y17c{bottom:542.520000px;}
.y193{bottom:543.960000px;}
.ye2{bottom:547.560000px;}
.yb5{bottom:547.740000px;}
.y160{bottom:549.360000px;}
.y67{bottom:551.700000px;}
.y121{bottom:551.880000px;}
.y17{bottom:553.140000px;}
.y42{bottom:556.380000px;}
.y144{bottom:558.360000px;}
.yf9{bottom:559.080000px;}
.y8e{bottom:563.580000px;}
.ye0{bottom:564.120000px;}
.y1ad{bottom:565.020000px;}
.y194{bottom:569.520000px;}
.y17d{bottom:570.420000px;}
.yb1{bottom:572.040000px;}
.y120{bottom:574.740000px;}
.y16{bottom:576.000000px;}
.y41{bottom:579.420000px;}
.ye1{bottom:580.500000px;}
.y143{bottom:581.220000px;}
.y61{bottom:581.940000px;}
.y65{bottom:587.341620px;}
.y8b{bottom:593.640000px;}
.y1ae{bottom:594.360000px;}
.y15f{bottom:594.900000px;}
.y11f{bottom:597.780000px;}
.y15{bottom:598.860000px;}
.y191{bottom:600.120000px;}
.yae{bottom:602.100000px;}
.y40{bottom:602.280000px;}
.y17a{bottom:603.360000px;}
.y142{bottom:604.080000px;}
.yf8{bottom:604.800000px;}
.yde{bottom:606.060000px;}
.y64{bottom:606.420000px;}
.y8d{bottom:611.460000px;}
.y11e{bottom:620.640000px;}
.y192{bottom:621.180000px;}
.y14{bottom:621.720000px;}
.y17b{bottom:624.240000px;}
.y3f{bottom:625.140000px;}
.y63{bottom:626.400000px;}
.y141{bottom:627.120000px;}
.yaf{bottom:627.480000px;}
.yf7{bottom:627.660000px;}
.y1ab{bottom:628.920000px;}
.y15d{bottom:633.060000px;}
.y8a{bottom:635.580000px;}
.ydc{bottom:637.920000px;}
.y66{bottom:641.520000px;}
.yb0{bottom:642.780000px;}
.y11d{bottom:643.500000px;}
.y3e{bottom:648.000000px;}
.y140{bottom:649.980000px;}
.yf6{bottom:650.700000px;}
.y1ac{bottom:652.320000px;}
.y15e{bottom:654.120000px;}
.ydd{bottom:654.300000px;}
.y179{bottom:657.540000px;}
.y190{bottom:660.600000px;}
.y13{bottom:662.580000px;}
.y60{bottom:665.820000px;}
.y11c{bottom:666.360000px;}
.yad{bottom:666.900000px;}
.y3d{bottom:670.860000px;}
.y88{bottom:671.220000px;}
.y13f{bottom:672.478740px;}
.yf5{bottom:673.560000px;}
.ydb{bottom:679.860000px;}
.y15b{bottom:680.220000px;}
.y1a9{bottom:680.760000px;}
.y12{bottom:685.440000px;}
.yda{bottom:686.520000px;}
.y11b{bottom:689.220000px;}
.y87{bottom:691.200000px;}
.yf4{bottom:696.420000px;}
.y3c{bottom:696.780000px;}
.y177{bottom:696.960000px;}
.yaa{bottom:697.140000px;}
.y18f{bottom:700.560000px;}
.y1aa{bottom:701.640000px;}
.yac{bottom:703.260000px;}
.y15c{bottom:704.700000px;}
.y89{bottom:706.320000px;}
.y5e{bottom:706.500000px;}
.y11{bottom:708.300000px;}
.yd8{bottom:711.720000px;}
.y11a{bottom:712.080000px;}
.yf3{bottom:719.280000px;}
.y178{bottom:724.680000px;}
.y1a7{bottom:727.560000px;}
.yd9{bottom:728.100000px;}
.y5d{bottom:729.180000px;}
.y86{bottom:730.620000px;}
.y10{bottom:731.340000px;}
.y119{bottom:734.940000px;}
.y3b{bottom:737.460000px;}
.ya9{bottom:739.800000px;}
.yf2{bottom:742.140000px;}
.y15a{bottom:742.860000px;}
.y18e{bottom:749.700000px;}
.y5c{bottom:751.500000px;}
.yd7{bottom:753.660000px;}
.yf{bottom:754.200000px;}
.y118{bottom:757.800000px;}
.y13e{bottom:758.160000px;}
.y5f{bottom:759.950280px;}
.y3a{bottom:760.320000px;}
.yd6{bottom:760.500000px;}
.y83{bottom:760.680000px;}
.y1a8{bottom:762.120000px;}
.yf1{bottom:765.000000px;}
.ya5{bottom:769.860000px;}
.y176{bottom:771.840000px;}
.ye{bottom:777.060000px;}
.y117{bottom:780.660000px;}
.y13d{bottom:781.020000px;}
.y39{bottom:783.180000px;}
.yd3{bottom:785.520000px;}
.y84{bottom:786.060000px;}
.yf0{bottom:787.860000px;}
.y58{bottom:788.220000px;}
.y159{bottom:793.260000px;}
.ya7{bottom:794.340000px;}
.yd{bottom:799.920000px;}
.y85{bottom:801.360000px;}
.y116{bottom:803.520000px;}
.y13c{bottom:803.880000px;}
.y173{bottom:804.420000px;}
.y38{bottom:806.040000px;}
.y5b{bottom:807.840000px;}
.yef{bottom:810.720000px;}
.yd4{bottom:810.900000px;}
.y1a6{bottom:812.700000px;}
.ya6{bottom:814.320000px;}
.y18d{bottom:814.500000px;}
.yc{bottom:822.780000px;}
.yd5{bottom:824.760000px;}
.y82{bottom:825.480000px;}
.y115{bottom:826.560000px;}
.y13b{bottom:826.740000px;}
.y37{bottom:828.900000px;}
.ya8{bottom:829.620000px;}
.y55{bottom:832.140000px;}
.yee{bottom:833.580000px;}
.y175{bottom:834.300000px;}
.y158{bottom:840.060000px;}
.yb{bottom:845.640000px;}
.y114{bottom:849.420000px;}
.y13a{bottom:849.600000px;}
.yd2{bottom:850.320000px;}
.y36{bottom:851.760000px;}
.ya4{bottom:853.740000px;}
.y174{bottom:855.000000px;}
.yed{bottom:856.440000px;}
.yd1{bottom:857.160000px;}
.y1a5{bottom:859.500000px;}
.y18c{bottom:860.580000px;}
.y81{bottom:866.160000px;}
.ya{bottom:868.500000px;}
.y113{bottom:872.280000px;}
.y139{bottom:872.460000px;}
.y35{bottom:874.620000px;}
.yec{bottom:879.480000px;}
.yce{bottom:882.180000px;}
.ya1{bottom:883.980000px;}
.y171{bottom:889.920000px;}
.y9{bottom:891.360000px;}
.y18a{bottom:893.160000px;}
.y112{bottom:895.140000px;}
.y138{bottom:895.320000px;}
.y54{bottom:896.050800px;}
.y34{bottom:897.480000px;}
.y157{bottom:900.180000px;}
.yeb{bottom:902.340000px;}
.y7d{bottom:902.880000px;}
.ycf{bottom:907.560000px;}
.y7f{bottom:908.280000px;}
.ya3{bottom:908.460000px;}
.y18b{bottom:914.220000px;}
.y111{bottom:918.000000px;}
.y137{bottom:918.360000px;}
.y33{bottom:920.340000px;}
.yd0{bottom:921.420000px;}
.y1a4{bottom:922.140000px;}
.y8{bottom:923.220000px;}
.y53{bottom:924.300000px;}
.yea{bottom:925.200000px;}
.y172{bottom:925.740000px;}
.y7e{bottom:928.260000px;}
.ya2{bottom:928.440000px;}
.y154{bottom:930.960000px;}
.y110{bottom:940.860000px;}
.y136{bottom:941.220000px;}
.y32{bottom:943.200000px;}
.y80{bottom:943.560000px;}
.y7{bottom:946.080000px;}
.ycc{bottom:946.980000px;}
.ye9{bottom:948.060000px;}
.ycb{bottom:953.820000px;}
.y156{bottom:956.520000px;}
.y10f{bottom:963.720000px;}
.y135{bottom:964.080000px;}
.y16f{bottom:966.420000px;}
.y7c{bottom:967.680000px;}
.ya0{bottom:967.860000px;}
.y6{bottom:969.120000px;}
.y31{bottom:969.300000px;}
.ye8{bottom:970.920000px;}
.y1a3{bottom:974.880000px;}
.yc9{bottom:979.020000px;}
.y4e{bottom:981.720000px;}
.y10e{bottom:986.580000px;}
.y134{bottom:986.940000px;}
.y151{bottom:987.120000px;}
.y170{bottom:987.480000px;}
.y52{bottom:992.154960px;}
.ye7{bottom:993.780000px;}
.yca{bottom:995.400000px;}
.y78{bottom:997.920000px;}
.y189{bottom:1008.000000px;}
.y10d{bottom:1009.440000px;}
.y30{bottom:1009.800000px;}
.y16d{bottom:1013.760000px;}
.y153{bottom:1015.020000px;}
.ye6{bottom:1016.640000px;}
.yc8{bottom:1020.960000px;}
.y1{bottom:1021.680000px;}
.y51{bottom:1022.940000px;}
.y7a{bottom:1023.300000px;}
.yc7{bottom:1027.620000px;}
.y5{bottom:1032.114960px;}
.y10c{bottom:1032.300000px;}
.y133{bottom:1032.660000px;}
.y186{bottom:1033.920000px;}
.y2f{bottom:1035.900000px;}
.y7b{bottom:1038.420000px;}
.y9f{bottom:1038.600000px;}
.ye5{bottom:1039.500000px;}
.y50{bottom:1043.460000px;}
.y1a1{bottom:1047.960000px;}
.y16e{bottom:1051.740000px;}
.yc5{bottom:1052.820000px;}
.y10b{bottom:1055.340000px;}
.y132{bottom:1055.520000px;}
.y187{bottom:1061.820000px;}
.y150{bottom:1062.180000px;}
.y4{bottom:1062.900000px;}
.y1a2{bottom:1068.840000px;}
.yc6{bottom:1069.200000px;}
.y77{bottom:1069.560000px;}
.ye4{bottom:1073.340000px;}
.y2e{bottom:1076.040000px;}
.y10a{bottom:1078.200000px;}
.y3{bottom:1083.420000px;}
.y2a{bottom:1100.160000px;}
.y28{bottom:1113.840000px;}
.h17{height:30.058500px;}
.hf{height:30.060000px;}
.h14{height:30.240000px;}
.h44{height:30.888000px;}
.h1b{height:31.860000px;}
.h21{height:32.040000px;}
.h20{height:41.938500px;}
.h1a{height:41.940000px;}
.h1d{height:42.660000px;}
.h11{height:43.920000px;}
.h3e{height:46.798500px;}
.h32{height:46.800000px;}
.h31{height:47.160000px;}
.h2b{height:47.161500px;}
.h33{height:47.338500px;}
.h2d{height:47.340000px;}
.h43{height:47.988281px;}
.h1f{height:48.781500px;}
.h30{height:49.500000px;}
.h16{height:49.959360px;}
.h9{height:51.274080px;}
.hd{height:51.300000px;}
.h3f{height:51.660000px;}
.h4{height:51.840000px;}
.h2a{height:54.000000px;}
.h25{height:55.376640px;}
.h26{height:56.160000px;}
.h27{height:56.340000px;}
.h10{height:56.833920px;}
.h24{height:57.784320px;}
.h6{height:57.827520px;}
.h3c{height:58.500000px;}
.h12{height:60.192000px;}
.h37{height:60.660000px;}
.h39{height:60.838500px;}
.h23{height:60.840000px;}
.h3{height:61.776000px;}
.h7{height:62.856000px;}
.ha{height:63.900000px;}
.h42{height:63.901500px;}
.h8{height:64.078500px;}
.h18{height:64.800000px;}
.h1c{height:64.980000px;}
.h5{height:72.277920px;}
.hb{height:73.541520px;}
.h41{height:74.161500px;}
.h35{height:76.500000px;}
.h34{height:81.000000px;}
.h22{height:82.016640px;}
.he{height:83.598480px;}
.h13{height:83.880000px;}
.h15{height:83.881500px;}
.h36{height:85.500000px;}
.h2e{height:86.336640px;}
.h28{height:89.936640px;}
.h3a{height:90.656640px;}
.h2f{height:94.976640px;}
.h40{height:95.696640px;}
.h2c{height:99.296640px;}
.h29{height:104.336640px;}
.h1e{height:105.793920px;}
.h19{height:107.233920px;}
.h3b{height:107.936640px;}
.h38{height:109.376640px;}
.hc{height:113.040000px;}
.h2{height:113.580000px;}
.h3d{height:115.153920px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:63.360000px;}
.w5{width:229.141500px;}
.wa{width:238.680000px;}
.w7{width:254.700000px;}
.w3{width:268.020000px;}
.w2{width:337.681500px;}
.w6{width:342.000000px;}
.w4{width:376.738500px;}
.w8{width:531.900000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:5.220000px;}
.x13{left:8.100000px;}
.x16{left:29.340000px;}
.x21{left:30.600000px;}
.x1a{left:38.880000px;}
.x15{left:55.440000px;}
.x22{left:85.680000px;}
.xd{left:138.780000px;}
.x1c{left:159.660000px;}
.x1{left:164.880000px;}
.xa{left:167.220000px;}
.x7{left:170.100000px;}
.xe{left:175.320000px;}
.x18{left:178.200000px;}
.x1b{left:199.440000px;}
.x28{left:205.920000px;}
.x29{left:212.580000px;}
.x1e{left:217.980000px;}
.x8{left:223.200000px;}
.x26{left:230.580000px;}
.x24{left:234.540000px;}
.x10{left:241.920000px;}
.x4{left:262.620000px;}
.x9{left:276.300000px;}
.x1d{left:326.520000px;}
.x2{left:340.380000px;}
.x23{left:384.120000px;}
.x20{left:389.700000px;}
.x25{left:400.680000px;}
.x1f{left:414.000000px;}
.x27{left:416.880000px;}
.x12{left:418.142700px;}
.x11{left:420.300000px;}
.x3{left:502.560000px;}
.xf{left:517.320000px;}
.xc{left:543.960000px;}
.x6{left:625.505760px;}
.x5{left:649.800000px;}
.x14{left:702.000000px;}
.x17{left:749.160000px;}
.x19{left:757.433340px;}
@media print{
.vd{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.200000pt;}
.vc{vertical-align:21.120000pt;}
.v4{vertical-align:23.680000pt;}
.v7{vertical-align:27.520000pt;}
.v5{vertical-align:30.720000pt;}
.v8{vertical-align:35.200000pt;}
.v6{vertical-align:39.040000pt;}
.v3{vertical-align:43.520000pt;}
.v2{vertical-align:44.800000pt;}
.va{vertical-align:46.720000pt;}
.v9{vertical-align:48.000000pt;}
.vb{vertical-align:51.840000pt;}
.ls5b{letter-spacing:-2.213120pt;}
.ls55{letter-spacing:-2.112000pt;}
.ls12{letter-spacing:-1.984000pt;}
.ls64{letter-spacing:-1.797120pt;}
.ls3a{letter-spacing:-1.728000pt;}
.ls5d{letter-spacing:-1.702400pt;}
.ls25{letter-spacing:-1.664000pt;}
.ls10{letter-spacing:-1.589760pt;}
.ls43{letter-spacing:-1.536000pt;}
.ls11{letter-spacing:-1.530880pt;}
.ls37{letter-spacing:-1.472000pt;}
.ls42{letter-spacing:-1.354240pt;}
.ls24{letter-spacing:-1.344000pt;}
.ls30{letter-spacing:-1.313280pt;}
.ls38{letter-spacing:-1.280000pt;}
.ls35{letter-spacing:-1.198080pt;}
.ls5a{letter-spacing:-1.191680pt;}
.ls27{letter-spacing:-1.024000pt;}
.ls5c{letter-spacing:-1.021440pt;}
.lse{letter-spacing:-1.000960pt;}
.ls5e{letter-spacing:-0.960000pt;}
.ls40{letter-spacing:-0.896000pt;}
.ls72{letter-spacing:-0.832000pt;}
.ls6f{letter-spacing:-0.796800pt;}
.ls52{letter-spacing:-0.768000pt;}
.ls63{letter-spacing:-0.704000pt;}
.ls16{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.588800pt;}
.ls41{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.529920pt;}
.ls28{letter-spacing:-0.512000pt;}
.ls23{letter-spacing:-0.478080pt;}
.ls2b{letter-spacing:-0.448000pt;}
.ls15{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.353280pt;}
.ls29{letter-spacing:-0.320000pt;}
.ls3b{letter-spacing:-0.318720pt;}
.ls6b{letter-spacing:-0.294400pt;}
.ls39{letter-spacing:-0.265600pt;}
.ls13{letter-spacing:-0.256000pt;}
.ls6a{letter-spacing:-0.235520pt;}
.ls1f{letter-spacing:-0.212480pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls32{letter-spacing:-0.176640pt;}
.ls20{letter-spacing:-0.159360pt;}
.ls5f{letter-spacing:-0.151680pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls6e{letter-spacing:-0.117760pt;}
.ls44{letter-spacing:-0.106240pt;}
.ls60{letter-spacing:-0.101120pt;}
.ls36{letter-spacing:-0.064000pt;}
.ls69{letter-spacing:-0.058880pt;}
.ls54{letter-spacing:-0.053120pt;}
.lsb{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.007040pt;}
.ls26{letter-spacing:0.064000pt;}
.ls2c{letter-spacing:0.069120pt;}
.ls22{letter-spacing:0.106240pt;}
.ls68{letter-spacing:0.117760pt;}
.ls61{letter-spacing:0.121600pt;}
.ls2a{letter-spacing:0.128000pt;}
.ls4e{letter-spacing:0.138112pt;}
.ls46{letter-spacing:0.140800pt;}
.ls4c{letter-spacing:0.143424pt;}
.ls1e{letter-spacing:0.159360pt;}
.ls19{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls49{letter-spacing:0.194560pt;}
.ls4a{letter-spacing:0.228416pt;}
.ls33{letter-spacing:0.235520pt;}
.ls4d{letter-spacing:0.239040pt;}
.ls1a{letter-spacing:0.247680pt;}
.ls9{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.265600pt;}
.ls45{letter-spacing:0.277120pt;}
.ls3f{letter-spacing:0.281600pt;}
.ls21{letter-spacing:0.318720pt;}
.ls18{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.353280pt;}
.ls3{letter-spacing:0.384000pt;}
.ls3d{letter-spacing:0.567040pt;}
.ls0{letter-spacing:0.588800pt;}
.ls2e{letter-spacing:0.614400pt;}
.ls31{letter-spacing:0.622080pt;}
.ls1{letter-spacing:0.640000pt;}
.ls56{letter-spacing:0.680960pt;}
.ls47{letter-spacing:0.806400pt;}
.ls2d{letter-spacing:1.128960pt;}
.ls8{letter-spacing:1.280000pt;}
.ls6d{letter-spacing:1.434240pt;}
.lsa{letter-spacing:1.920000pt;}
.ls50{letter-spacing:2.229760pt;}
.ls7{letter-spacing:2.560000pt;}
.ls58{letter-spacing:3.200000pt;}
.ls1b{letter-spacing:3.840000pt;}
.ls62{letter-spacing:4.473600pt;}
.ls6{letter-spacing:4.480000pt;}
.ls70{letter-spacing:5.120000pt;}
.ls59{letter-spacing:6.400000pt;}
.ls5{letter-spacing:7.040000pt;}
.ls57{letter-spacing:7.680000pt;}
.ls1c{letter-spacing:9.600000pt;}
.ls71{letter-spacing:12.800000pt;}
.ls6c{letter-spacing:39.040000pt;}
.ls65{letter-spacing:41.600000pt;}
.ls66{letter-spacing:42.240000pt;}
.ls67{letter-spacing:71.680000pt;}
.ls4{letter-spacing:173.440000pt;}
.ls4f{letter-spacing:464.640000pt;}
.ls4b{letter-spacing:557.037440pt;}
.ls53{letter-spacing:746.757760pt;}
.ls1d{letter-spacing:752.000000pt;}
.ls3c{letter-spacing:1371.520000pt;}
.ls51{letter-spacing:1457.920000pt;}
.ls3e{letter-spacing:1863.040000pt;}
.ws56{word-spacing:-20.428800pt;}
.ws7b{word-spacing:-19.407360pt;}
.ws7a{word-spacing:-19.237120pt;}
.wsad{word-spacing:-17.971200pt;}
.ws57{word-spacing:-17.210880pt;}
.ws7{word-spacing:-16.320000pt;}
.ws5b{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.192000pt;}
.wsae{word-spacing:-16.174080pt;}
.ws35{word-spacing:-16.128000pt;}
.ws9a{word-spacing:-16.064000pt;}
.ws32{word-spacing:-16.000000pt;}
.ws6c{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws7c{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws34{word-spacing:-15.680000pt;}
.ws58{word-spacing:-15.616000pt;}
.ws36{word-spacing:-15.552000pt;}
.ws37{word-spacing:-15.488000pt;}
.ws6a{word-spacing:-15.424000pt;}
.ws4{word-spacing:-15.360000pt;}
.ws99{word-spacing:-15.232000pt;}
.ws59{word-spacing:-14.955520pt;}
.ws33{word-spacing:-14.848000pt;}
.wsc2{word-spacing:-14.837760pt;}
.wsc1{word-spacing:-14.720000pt;}
.wsb7{word-spacing:-14.661120pt;}
.wsc3{word-spacing:-14.602240pt;}
.ws5a{word-spacing:-14.484480pt;}
.wsb9{word-spacing:-14.425600pt;}
.ws78{word-spacing:-14.336000pt;}
.wsb8{word-spacing:-14.190080pt;}
.ws1{word-spacing:-14.131200pt;}
.ws5c{word-spacing:-14.080000pt;}
.ws6f{word-spacing:-13.888000pt;}
.ws73{word-spacing:-13.824000pt;}
.ws0{word-spacing:-13.777920pt;}
.ws77{word-spacing:-13.632000pt;}
.ws2{word-spacing:-13.601280pt;}
.ws2f{word-spacing:-13.598720pt;}
.ws71{word-spacing:-13.545600pt;}
.ws72{word-spacing:-13.439360pt;}
.ws5d{word-spacing:-13.386240pt;}
.ws30{word-spacing:-13.280000pt;}
.ws6e{word-spacing:-13.173760pt;}
.ws6d{word-spacing:-13.120640pt;}
.ws2e{word-spacing:-13.067520pt;}
.wsc6{word-spacing:-13.014400pt;}
.ws74{word-spacing:-12.961280pt;}
.ws31{word-spacing:-12.801920pt;}
.ws6b{word-spacing:-12.776960pt;}
.ws3{word-spacing:-12.541440pt;}
.ws7d{word-spacing:-12.488320pt;}
.wsc4{word-spacing:-9.280000pt;}
.wsc5{word-spacing:-8.000000pt;}
.wsb2{word-spacing:-4.096000pt;}
.wsf2{word-spacing:-4.032000pt;}
.wsf3{word-spacing:-3.904000pt;}
.wsf1{word-spacing:-3.712000pt;}
.ws9e{word-spacing:-3.584000pt;}
.ws8e{word-spacing:-3.456000pt;}
.ws55{word-spacing:-3.392000pt;}
.ws54{word-spacing:-3.200000pt;}
.ws91{word-spacing:-3.008000pt;}
.ws8f{word-spacing:-2.944000pt;}
.ws1d{word-spacing:-2.816000pt;}
.ws1c{word-spacing:-2.752000pt;}
.wsb5{word-spacing:-2.624000pt;}
.wsb1{word-spacing:-2.560000pt;}
.ws9f{word-spacing:-2.432000pt;}
.wsb4{word-spacing:-2.304000pt;}
.ws2b{word-spacing:-2.176000pt;}
.ws83{word-spacing:-2.112000pt;}
.wscb{word-spacing:-1.984000pt;}
.ws8d{word-spacing:-1.920000pt;}
.ws87{word-spacing:-1.792000pt;}
.wse2{word-spacing:-1.728000pt;}
.wse0{word-spacing:-1.664000pt;}
.wseb{word-spacing:-1.600000pt;}
.ws80{word-spacing:-1.536000pt;}
.ws2d{word-spacing:-1.472000pt;}
.wsd5{word-spacing:-1.434240pt;}
.wsea{word-spacing:-1.344000pt;}
.ws29{word-spacing:-1.280000pt;}
.wsa2{word-spacing:-1.152000pt;}
.ws88{word-spacing:-1.024000pt;}
.wsa3{word-spacing:-1.011200pt;}
.ws24{word-spacing:-0.896000pt;}
.ws23{word-spacing:-0.832000pt;}
.wsd2{word-spacing:-0.796800pt;}
.wsc9{word-spacing:-0.768000pt;}
.wsbc{word-spacing:-0.765440pt;}
.wsdf{word-spacing:-0.704000pt;}
.ws64{word-spacing:-0.640000pt;}
.wsd8{word-spacing:-0.637440pt;}
.wsbb{word-spacing:-0.588800pt;}
.wsd7{word-spacing:-0.584320pt;}
.wsa6{word-spacing:-0.512000pt;}
.ws60{word-spacing:-0.471040pt;}
.ws90{word-spacing:-0.448000pt;}
.wsc7{word-spacing:-0.412160pt;}
.ws95{word-spacing:-0.384000pt;}
.ws47{word-spacing:-0.320000pt;}
.ws70{word-spacing:-0.318720pt;}
.wsd6{word-spacing:-0.265600pt;}
.ws28{word-spacing:-0.256000pt;}
.wsbf{word-spacing:-0.235520pt;}
.ws1e{word-spacing:-0.192000pt;}
.ws38{word-spacing:-0.159360pt;}
.wsba{word-spacing:-0.117760pt;}
.ws67{word-spacing:-0.106240pt;}
.ws3e{word-spacing:-0.064000pt;}
.ws9{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.053120pt;}
.wsbe{word-spacing:0.058880pt;}
.ws62{word-spacing:0.064000pt;}
.ws13{word-spacing:0.128000pt;}
.ws39{word-spacing:0.159360pt;}
.ws27{word-spacing:0.192000pt;}
.ws75{word-spacing:0.212480pt;}
.wsbd{word-spacing:0.235520pt;}
.ws14{word-spacing:0.256000pt;}
.wsc0{word-spacing:0.294400pt;}
.ws68{word-spacing:0.318720pt;}
.ws4e{word-spacing:0.320000pt;}
.ws65{word-spacing:0.371840pt;}
.ws46{word-spacing:0.384000pt;}
.ws66{word-spacing:0.424960pt;}
.wsf{word-spacing:0.448000pt;}
.ws69{word-spacing:0.478080pt;}
.wsa{word-spacing:0.529920pt;}
.wsca{word-spacing:0.576000pt;}
.wsc{word-spacing:0.588800pt;}
.ws48{word-spacing:0.640000pt;}
.wsb0{word-spacing:0.704000pt;}
.ws4d{word-spacing:0.768000pt;}
.wsd3{word-spacing:0.796800pt;}
.wse3{word-spacing:0.832000pt;}
.wsac{word-spacing:0.896000pt;}
.ws76{word-spacing:0.942080pt;}
.ws81{word-spacing:0.960000pt;}
.wsb{word-spacing:1.000960pt;}
.ws25{word-spacing:1.024000pt;}
.ws22{word-spacing:1.088000pt;}
.wsd4{word-spacing:1.115520pt;}
.ws5e{word-spacing:1.118720pt;}
.ws61{word-spacing:1.198080pt;}
.wse1{word-spacing:1.216000pt;}
.ws44{word-spacing:1.280000pt;}
.wsd1{word-spacing:1.328000pt;}
.ws3c{word-spacing:1.344000pt;}
.ws5f{word-spacing:1.382400pt;}
.wsaf{word-spacing:1.408000pt;}
.ws21{word-spacing:1.472000pt;}
.ws45{word-spacing:1.536000pt;}
.ws3b{word-spacing:1.589760pt;}
.ws11{word-spacing:1.664000pt;}
.ws10{word-spacing:1.728000pt;}
.wsf0{word-spacing:1.856000pt;}
.ws4b{word-spacing:1.920000pt;}
.ws15{word-spacing:1.984000pt;}
.wsa7{word-spacing:2.048000pt;}
.ws63{word-spacing:2.112000pt;}
.wsd{word-spacing:2.119680pt;}
.ws12{word-spacing:2.176000pt;}
.ws7e{word-spacing:2.213120pt;}
.ws8a{word-spacing:2.240000pt;}
.ws3d{word-spacing:2.304000pt;}
.ws1f{word-spacing:2.368000pt;}
.ws7f{word-spacing:2.383360pt;}
.wsc8{word-spacing:2.396160pt;}
.wse7{word-spacing:2.496000pt;}
.ws20{word-spacing:2.560000pt;}
.ws41{word-spacing:2.688000pt;}
.ws79{word-spacing:2.752000pt;}
.ws42{word-spacing:2.816000pt;}
.ws50{word-spacing:2.944000pt;}
.ws4f{word-spacing:3.008000pt;}
.wse{word-spacing:3.264000pt;}
.wsa0{word-spacing:3.328000pt;}
.wsb6{word-spacing:3.392000pt;}
.wsa4{word-spacing:3.456000pt;}
.ws3f{word-spacing:3.584000pt;}
.ws26{word-spacing:3.648000pt;}
.wse6{word-spacing:3.776000pt;}
.wsa5{word-spacing:3.840000pt;}
.wsa9{word-spacing:3.968000pt;}
.wsa1{word-spacing:4.096000pt;}
.ws1a{word-spacing:4.224000pt;}
.ws19{word-spacing:4.288000pt;}
.wsda{word-spacing:4.416000pt;}
.ws2a{word-spacing:4.544000pt;}
.ws8c{word-spacing:4.608000pt;}
.ws43{word-spacing:4.672000pt;}
.ws1b{word-spacing:4.736000pt;}
.ws52{word-spacing:4.864000pt;}
.ws51{word-spacing:4.928000pt;}
.ws53{word-spacing:5.056000pt;}
.ws94{word-spacing:5.248000pt;}
.wsd9{word-spacing:5.376000pt;}
.ws93{word-spacing:5.504000pt;}
.ws92{word-spacing:5.568000pt;}
.ws84{word-spacing:6.144000pt;}
.ws2c{word-spacing:6.208000pt;}
.wse5{word-spacing:6.528000pt;}
.ws8b{word-spacing:6.656000pt;}
.ws85{word-spacing:6.720000pt;}
.ws9d{word-spacing:6.784000pt;}
.ws16{word-spacing:6.848000pt;}
.wsb3{word-spacing:6.888960pt;}
.wsdb{word-spacing:6.976000pt;}
.ws86{word-spacing:7.168000pt;}
.ws17{word-spacing:7.296000pt;}
.ws18{word-spacing:7.424000pt;}
.ws82{word-spacing:7.488000pt;}
.ws89{word-spacing:7.936000pt;}
.ws97{word-spacing:8.064000pt;}
.ws96{word-spacing:8.128000pt;}
.ws98{word-spacing:8.448000pt;}
.wscc{word-spacing:8.960000pt;}
.wscd{word-spacing:9.088000pt;}
.ws4a{word-spacing:9.344000pt;}
.ws49{word-spacing:9.408000pt;}
.wscf{word-spacing:10.048000pt;}
.wse8{word-spacing:10.176000pt;}
.wse4{word-spacing:10.240000pt;}
.wsd0{word-spacing:10.368000pt;}
.wsce{word-spacing:10.496000pt;}
.wsa8{word-spacing:10.624000pt;}
.ws9b{word-spacing:10.688000pt;}
.ws9c{word-spacing:11.008000pt;}
.wse9{word-spacing:11.136000pt;}
.wsdd{word-spacing:11.264000pt;}
.wsdc{word-spacing:11.456000pt;}
.wsde{word-spacing:11.648000pt;}
.ws40{word-spacing:11.904000pt;}
.ws4c{word-spacing:12.608000pt;}
.wsed{word-spacing:12.928000pt;}
.wsec{word-spacing:13.056000pt;}
.wsab{word-spacing:14.464000pt;}
.wsaa{word-spacing:14.528000pt;}
.wsee{word-spacing:15.168000pt;}
.wsef{word-spacing:15.616000pt;}
._c{margin-left:-3.998720pt;}
._8{margin-left:-2.944000pt;}
._1{margin-left:-1.336320pt;}
._2{width:1.070080pt;}
._0{width:2.001920pt;}
._5{width:3.110400pt;}
._4{width:4.001280pt;}
._a{width:5.091840pt;}
._b{width:6.225920pt;}
._3{width:7.587840pt;}
._6{width:9.113600pt;}
._7{width:13.404160pt;}
._9{width:65.280000pt;}
.fsa{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs8{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y155{bottom:3.840000pt;}
.y152{bottom:4.000000pt;}
.y56{bottom:4.480000pt;}
.y2c{bottom:4.800000pt;}
.y5a{bottom:5.119867pt;}
.y57{bottom:5.280000pt;}
.yb4{bottom:5.440000pt;}
.y9d{bottom:5.600000pt;}
.ycd{bottom:5.760000pt;}
.ydf{bottom:5.920000pt;}
.y188{bottom:6.880000pt;}
.y2{bottom:8.960000pt;}
.y4f{bottom:10.080000pt;}
.y8c{bottom:22.560000pt;}
.yab{bottom:23.200000pt;}
.y59{bottom:24.320000pt;}
.yb8{bottom:28.640000pt;}
.y79{bottom:42.880000pt;}
.y9e{bottom:43.040000pt;}
.y29{bottom:44.800000pt;}
.y62{bottom:59.840000pt;}
.y2d{bottom:80.480000pt;}
.y2b{bottom:92.640000pt;}
.y27{bottom:126.240000pt;}
.y26{bottom:146.560000pt;}
.y1bd{bottom:156.967200pt;}
.yc4{bottom:163.200000pt;}
.y185{bottom:164.640000pt;}
.y1c6{bottom:165.280000pt;}
.y131{bottom:165.440000pt;}
.y25{bottom:166.880000pt;}
.yc3{bottom:169.120000pt;}
.y109{bottom:171.680000pt;}
.y1bc{bottom:173.925760pt;}
.y19f{bottom:178.720000pt;}
.y16b{bottom:184.640000pt;}
.y1c5{bottom:185.600000pt;}
.y130{bottom:185.760000pt;}
.y24{bottom:187.360000pt;}
.y1bb{bottom:190.884320pt;}
.yc1{bottom:191.520000pt;}
.y108{bottom:192.000000pt;}
.y183{bottom:195.520000pt;}
.y1a0{bottom:198.400000pt;}
.y16c{bottom:203.360000pt;}
.y1c4{bottom:205.920000pt;}
.yc2{bottom:206.080000pt;}
.y12f{bottom:206.240000pt;}
.y23{bottom:207.680000pt;}
.y1ba{bottom:207.842880pt;}
.y107{bottom:212.320000pt;}
.y73{bottom:213.120000pt;}
.y184{bottom:214.240000pt;}
.y19d{bottom:222.720000pt;}
.y99{bottom:223.680000pt;}
.y1b9{bottom:224.801440pt;}
.y1c3{bottom:226.240000pt;}
.y12e{bottom:226.560000pt;}
.y169{bottom:226.720000pt;}
.y22{bottom:228.000000pt;}
.yc0{bottom:228.800000pt;}
.y14f{bottom:232.320000pt;}
.y106{bottom:232.640000pt;}
.y75{bottom:234.880000pt;}
.y19e{bottom:242.400000pt;}
.y16a{bottom:245.280000pt;}
.y9b{bottom:245.440000pt;}
.y1b8{bottom:246.400000pt;}
.y1c2{bottom:246.560000pt;}
.y12d{bottom:246.880000pt;}
.y21{bottom:248.320000pt;}
.y74{bottom:252.640000pt;}
.y105{bottom:252.960000pt;}
.y1b7{bottom:257.440000pt;}
.y9a{bottom:263.200000pt;}
.y76{bottom:266.240000pt;}
.ybf{bottom:266.400000pt;}
.y1c1{bottom:266.880000pt;}
.y12c{bottom:267.200000pt;}
.y167{bottom:268.320000pt;}
.y20{bottom:268.640000pt;}
.y4d{bottom:270.880000pt;}
.y14e{bottom:272.960000pt;}
.y104{bottom:273.280000pt;}
.y19c{bottom:276.320000pt;}
.y9c{bottom:276.640000pt;}
.y168{bottom:287.040000pt;}
.y1c0{bottom:287.200000pt;}
.y12b{bottom:287.520000pt;}
.y72{bottom:287.680000pt;}
.y1f{bottom:288.960000pt;}
.y4c{bottom:291.200000pt;}
.y14d{bottom:293.280000pt;}
.y103{bottom:293.600000pt;}
.y98{bottom:298.240000pt;}
.ybb{bottom:299.040000pt;}
.y1bf{bottom:307.520000pt;}
.y12a{bottom:307.840000pt;}
.y165{bottom:310.240000pt;}
.y1b6{bottom:311.520000pt;}
.y4b{bottom:311.680000pt;}
.y14c{bottom:313.600000pt;}
.y102{bottom:313.920000pt;}
.y6e{bottom:314.560000pt;}
.y19b{bottom:317.120000pt;}
.y1e{bottom:317.280000pt;}
.ybd{bottom:320.800000pt;}
.y182{bottom:322.240000pt;}
.y94{bottom:324.960000pt;}
.y1be{bottom:328.000000pt;}
.y129{bottom:328.160000pt;}
.y166{bottom:330.080000pt;}
.y1b5{bottom:331.840000pt;}
.y4a{bottom:332.000000pt;}
.y14b{bottom:333.920000pt;}
.y101{bottom:334.240000pt;}
.y70{bottom:336.320000pt;}
.ybc{bottom:338.560000pt;}
.y96{bottom:346.720000pt;}
.y128{bottom:348.320000pt;}
.y199{bottom:349.920000pt;}
.ybe{bottom:352.160000pt;}
.y49{bottom:352.320000pt;}
.y6f{bottom:354.080000pt;}
.y14a{bottom:354.240000pt;}
.y100{bottom:354.560000pt;}
.y1b4{bottom:360.160000pt;}
.y181{bottom:363.840000pt;}
.y164{bottom:364.000000pt;}
.y95{bottom:364.480000pt;}
.y71{bottom:367.520000pt;}
.y127{bottom:368.640000pt;}
.y1d{bottom:369.600000pt;}
.y19a{bottom:370.560000pt;}
.y48{bottom:372.640000pt;}
.yba{bottom:373.600000pt;}
.y149{bottom:374.560000pt;}
.yff{bottom:375.040000pt;}
.y97{bottom:378.080000pt;}
.y1b3{bottom:380.480000pt;}
.y126{bottom:388.960000pt;}
.y6d{bottom:389.120000pt;}
.y1c{bottom:389.920000pt;}
.y47{bottom:392.960000pt;}
.y148{bottom:394.720000pt;}
.yfe{bottom:395.360000pt;}
.y197{bottom:395.840000pt;}
.y93{bottom:399.520000pt;}
.yb7{bottom:400.480000pt;}
.y1b2{bottom:400.800000pt;}
.y180{bottom:405.440000pt;}
.y163{bottom:407.520000pt;}
.y125{bottom:409.280000pt;}
.y1b{bottom:410.240000pt;}
.yb9{bottom:411.360000pt;}
.y46{bottom:413.280000pt;}
.y147{bottom:415.040000pt;}
.yfd{bottom:415.680000pt;}
.y68{bottom:415.840000pt;}
.y198{bottom:416.640000pt;}
.y6b{bottom:420.640000pt;}
.y1b1{bottom:421.280000pt;}
.y8f{bottom:426.400000pt;}
.y124{bottom:429.600000pt;}
.y1a{bottom:430.720000pt;}
.y45{bottom:433.600000pt;}
.y146{bottom:435.360000pt;}
.yfc{bottom:436.000000pt;}
.y161{bottom:437.440000pt;}
.y6a{bottom:437.600000pt;}
.y17e{bottom:438.240000pt;}
.y1b0{bottom:441.600000pt;}
.y195{bottom:441.920000pt;}
.yb6{bottom:443.840000pt;}
.y91{bottom:448.160000pt;}
.y123{bottom:449.920000pt;}
.y19{bottom:451.040000pt;}
.y44{bottom:453.920000pt;}
.y69{bottom:455.360000pt;}
.y145{bottom:455.680000pt;}
.y162{bottom:456.160000pt;}
.yfb{bottom:456.320000pt;}
.y17f{bottom:458.080000pt;}
.y196{bottom:460.480000pt;}
.ye3{bottom:462.080000pt;}
.y90{bottom:465.920000pt;}
.y6c{bottom:468.960000pt;}
.y1af{bottom:469.600000pt;}
.y122{bottom:470.240000pt;}
.yb2{bottom:470.560000pt;}
.y18{bottom:471.360000pt;}
.y43{bottom:474.240000pt;}
.yb3{bottom:476.000000pt;}
.yfa{bottom:476.640000pt;}
.y92{bottom:479.360000pt;}
.y17c{bottom:482.240000pt;}
.y193{bottom:483.520000pt;}
.ye2{bottom:486.720000pt;}
.yb5{bottom:486.880000pt;}
.y160{bottom:488.320000pt;}
.y67{bottom:490.400000pt;}
.y121{bottom:490.560000pt;}
.y17{bottom:491.680000pt;}
.y42{bottom:494.560000pt;}
.y144{bottom:496.320000pt;}
.yf9{bottom:496.960000pt;}
.y8e{bottom:500.960000pt;}
.ye0{bottom:501.440000pt;}
.y1ad{bottom:502.240000pt;}
.y194{bottom:506.240000pt;}
.y17d{bottom:507.040000pt;}
.yb1{bottom:508.480000pt;}
.y120{bottom:510.880000pt;}
.y16{bottom:512.000000pt;}
.y41{bottom:515.040000pt;}
.ye1{bottom:516.000000pt;}
.y143{bottom:516.640000pt;}
.y61{bottom:517.280000pt;}
.y65{bottom:522.081440pt;}
.y8b{bottom:527.680000pt;}
.y1ae{bottom:528.320000pt;}
.y15f{bottom:528.800000pt;}
.y11f{bottom:531.360000pt;}
.y15{bottom:532.320000pt;}
.y191{bottom:533.440000pt;}
.yae{bottom:535.200000pt;}
.y40{bottom:535.360000pt;}
.y17a{bottom:536.320000pt;}
.y142{bottom:536.960000pt;}
.yf8{bottom:537.600000pt;}
.yde{bottom:538.720000pt;}
.y64{bottom:539.040000pt;}
.y8d{bottom:543.520000pt;}
.y11e{bottom:551.680000pt;}
.y192{bottom:552.160000pt;}
.y14{bottom:552.640000pt;}
.y17b{bottom:554.880000pt;}
.y3f{bottom:555.680000pt;}
.y63{bottom:556.800000pt;}
.y141{bottom:557.440000pt;}
.yaf{bottom:557.760000pt;}
.yf7{bottom:557.920000pt;}
.y1ab{bottom:559.040000pt;}
.y15d{bottom:562.720000pt;}
.y8a{bottom:564.960000pt;}
.ydc{bottom:567.040000pt;}
.y66{bottom:570.240000pt;}
.yb0{bottom:571.360000pt;}
.y11d{bottom:572.000000pt;}
.y3e{bottom:576.000000pt;}
.y140{bottom:577.760000pt;}
.yf6{bottom:578.400000pt;}
.y1ac{bottom:579.840000pt;}
.y15e{bottom:581.440000pt;}
.ydd{bottom:581.600000pt;}
.y179{bottom:584.480000pt;}
.y190{bottom:587.200000pt;}
.y13{bottom:588.960000pt;}
.y60{bottom:591.840000pt;}
.y11c{bottom:592.320000pt;}
.yad{bottom:592.800000pt;}
.y3d{bottom:596.320000pt;}
.y88{bottom:596.640000pt;}
.y13f{bottom:597.758880pt;}
.yf5{bottom:598.720000pt;}
.ydb{bottom:604.320000pt;}
.y15b{bottom:604.640000pt;}
.y1a9{bottom:605.120000pt;}
.y12{bottom:609.280000pt;}
.yda{bottom:610.240000pt;}
.y11b{bottom:612.640000pt;}
.y87{bottom:614.400000pt;}
.yf4{bottom:619.040000pt;}
.y3c{bottom:619.360000pt;}
.y177{bottom:619.520000pt;}
.yaa{bottom:619.680000pt;}
.y18f{bottom:622.720000pt;}
.y1aa{bottom:623.680000pt;}
.yac{bottom:625.120000pt;}
.y15c{bottom:626.400000pt;}
.y89{bottom:627.840000pt;}
.y5e{bottom:628.000000pt;}
.y11{bottom:629.600000pt;}
.yd8{bottom:632.640000pt;}
.y11a{bottom:632.960000pt;}
.yf3{bottom:639.360000pt;}
.y178{bottom:644.160000pt;}
.y1a7{bottom:646.720000pt;}
.yd9{bottom:647.200000pt;}
.y5d{bottom:648.160000pt;}
.y86{bottom:649.440000pt;}
.y10{bottom:650.080000pt;}
.y119{bottom:653.280000pt;}
.y3b{bottom:655.520000pt;}
.ya9{bottom:657.600000pt;}
.yf2{bottom:659.680000pt;}
.y15a{bottom:660.320000pt;}
.y18e{bottom:666.400000pt;}
.y5c{bottom:668.000000pt;}
.yd7{bottom:669.920000pt;}
.yf{bottom:670.400000pt;}
.y118{bottom:673.600000pt;}
.y13e{bottom:673.920000pt;}
.y5f{bottom:675.511360pt;}
.y3a{bottom:675.840000pt;}
.yd6{bottom:676.000000pt;}
.y83{bottom:676.160000pt;}
.y1a8{bottom:677.440000pt;}
.yf1{bottom:680.000000pt;}
.ya5{bottom:684.320000pt;}
.y176{bottom:686.080000pt;}
.ye{bottom:690.720000pt;}
.y117{bottom:693.920000pt;}
.y13d{bottom:694.240000pt;}
.y39{bottom:696.160000pt;}
.yd3{bottom:698.240000pt;}
.y84{bottom:698.720000pt;}
.yf0{bottom:700.320000pt;}
.y58{bottom:700.640000pt;}
.y159{bottom:705.120000pt;}
.ya7{bottom:706.080000pt;}
.yd{bottom:711.040000pt;}
.y85{bottom:712.320000pt;}
.y116{bottom:714.240000pt;}
.y13c{bottom:714.560000pt;}
.y173{bottom:715.040000pt;}
.y38{bottom:716.480000pt;}
.y5b{bottom:718.080000pt;}
.yef{bottom:720.640000pt;}
.yd4{bottom:720.800000pt;}
.y1a6{bottom:722.400000pt;}
.ya6{bottom:723.840000pt;}
.y18d{bottom:724.000000pt;}
.yc{bottom:731.360000pt;}
.yd5{bottom:733.120000pt;}
.y82{bottom:733.760000pt;}
.y115{bottom:734.720000pt;}
.y13b{bottom:734.880000pt;}
.y37{bottom:736.800000pt;}
.ya8{bottom:737.440000pt;}
.y55{bottom:739.680000pt;}
.yee{bottom:740.960000pt;}
.y175{bottom:741.600000pt;}
.y158{bottom:746.720000pt;}
.yb{bottom:751.680000pt;}
.y114{bottom:755.040000pt;}
.y13a{bottom:755.200000pt;}
.yd2{bottom:755.840000pt;}
.y36{bottom:757.120000pt;}
.ya4{bottom:758.880000pt;}
.y174{bottom:760.000000pt;}
.yed{bottom:761.280000pt;}
.yd1{bottom:761.920000pt;}
.y1a5{bottom:764.000000pt;}
.y18c{bottom:764.960000pt;}
.y81{bottom:769.920000pt;}
.ya{bottom:772.000000pt;}
.y113{bottom:775.360000pt;}
.y139{bottom:775.520000pt;}
.y35{bottom:777.440000pt;}
.yec{bottom:781.760000pt;}
.yce{bottom:784.160000pt;}
.ya1{bottom:785.760000pt;}
.y171{bottom:791.040000pt;}
.y9{bottom:792.320000pt;}
.y18a{bottom:793.920000pt;}
.y112{bottom:795.680000pt;}
.y138{bottom:795.840000pt;}
.y54{bottom:796.489600pt;}
.y34{bottom:797.760000pt;}
.y157{bottom:800.160000pt;}
.yeb{bottom:802.080000pt;}
.y7d{bottom:802.560000pt;}
.ycf{bottom:806.720000pt;}
.y7f{bottom:807.360000pt;}
.ya3{bottom:807.520000pt;}
.y18b{bottom:812.640000pt;}
.y111{bottom:816.000000pt;}
.y137{bottom:816.320000pt;}
.y33{bottom:818.080000pt;}
.yd0{bottom:819.040000pt;}
.y1a4{bottom:819.680000pt;}
.y8{bottom:820.640000pt;}
.y53{bottom:821.600000pt;}
.yea{bottom:822.400000pt;}
.y172{bottom:822.880000pt;}
.y7e{bottom:825.120000pt;}
.ya2{bottom:825.280000pt;}
.y154{bottom:827.520000pt;}
.y110{bottom:836.320000pt;}
.y136{bottom:836.640000pt;}
.y32{bottom:838.400000pt;}
.y80{bottom:838.720000pt;}
.y7{bottom:840.960000pt;}
.ycc{bottom:841.760000pt;}
.ye9{bottom:842.720000pt;}
.ycb{bottom:847.840000pt;}
.y156{bottom:850.240000pt;}
.y10f{bottom:856.640000pt;}
.y135{bottom:856.960000pt;}
.y16f{bottom:859.040000pt;}
.y7c{bottom:860.160000pt;}
.ya0{bottom:860.320000pt;}
.y6{bottom:861.440000pt;}
.y31{bottom:861.600000pt;}
.ye8{bottom:863.040000pt;}
.y1a3{bottom:866.560000pt;}
.yc9{bottom:870.240000pt;}
.y4e{bottom:872.640000pt;}
.y10e{bottom:876.960000pt;}
.y134{bottom:877.280000pt;}
.y151{bottom:877.440000pt;}
.y170{bottom:877.760000pt;}
.y52{bottom:881.915520pt;}
.ye7{bottom:883.360000pt;}
.yca{bottom:884.800000pt;}
.y78{bottom:887.040000pt;}
.y189{bottom:896.000000pt;}
.y10d{bottom:897.280000pt;}
.y30{bottom:897.600000pt;}
.y16d{bottom:901.120000pt;}
.y153{bottom:902.240000pt;}
.ye6{bottom:903.680000pt;}
.yc8{bottom:907.520000pt;}
.y1{bottom:908.160000pt;}
.y51{bottom:909.280000pt;}
.y7a{bottom:909.600000pt;}
.yc7{bottom:913.440000pt;}
.y5{bottom:917.435520pt;}
.y10c{bottom:917.600000pt;}
.y133{bottom:917.920000pt;}
.y186{bottom:919.040000pt;}
.y2f{bottom:920.800000pt;}
.y7b{bottom:923.040000pt;}
.y9f{bottom:923.200000pt;}
.ye5{bottom:924.000000pt;}
.y50{bottom:927.520000pt;}
.y1a1{bottom:931.520000pt;}
.y16e{bottom:934.880000pt;}
.yc5{bottom:935.840000pt;}
.y10b{bottom:938.080000pt;}
.y132{bottom:938.240000pt;}
.y187{bottom:943.840000pt;}
.y150{bottom:944.160000pt;}
.y4{bottom:944.800000pt;}
.y1a2{bottom:950.080000pt;}
.yc6{bottom:950.400000pt;}
.y77{bottom:950.720000pt;}
.ye4{bottom:954.080000pt;}
.y2e{bottom:956.480000pt;}
.y10a{bottom:958.400000pt;}
.y3{bottom:963.040000pt;}
.y2a{bottom:977.920000pt;}
.y28{bottom:990.080000pt;}
.h17{height:26.718667pt;}
.hf{height:26.720000pt;}
.h14{height:26.880000pt;}
.h44{height:27.456000pt;}
.h1b{height:28.320000pt;}
.h21{height:28.480000pt;}
.h20{height:37.278667pt;}
.h1a{height:37.280000pt;}
.h1d{height:37.920000pt;}
.h11{height:39.040000pt;}
.h3e{height:41.598667pt;}
.h32{height:41.600000pt;}
.h31{height:41.920000pt;}
.h2b{height:41.921333pt;}
.h33{height:42.078667pt;}
.h2d{height:42.080000pt;}
.h43{height:42.656250pt;}
.h1f{height:43.361333pt;}
.h30{height:44.000000pt;}
.h16{height:44.408320pt;}
.h9{height:45.576960pt;}
.hd{height:45.600000pt;}
.h3f{height:45.920000pt;}
.h4{height:46.080000pt;}
.h2a{height:48.000000pt;}
.h25{height:49.223680pt;}
.h26{height:49.920000pt;}
.h27{height:50.080000pt;}
.h10{height:50.519040pt;}
.h24{height:51.363840pt;}
.h6{height:51.402240pt;}
.h3c{height:52.000000pt;}
.h12{height:53.504000pt;}
.h37{height:53.920000pt;}
.h39{height:54.078667pt;}
.h23{height:54.080000pt;}
.h3{height:54.912000pt;}
.h7{height:55.872000pt;}
.ha{height:56.800000pt;}
.h42{height:56.801333pt;}
.h8{height:56.958667pt;}
.h18{height:57.600000pt;}
.h1c{height:57.760000pt;}
.h5{height:64.247040pt;}
.hb{height:65.370240pt;}
.h41{height:65.921333pt;}
.h35{height:68.000000pt;}
.h34{height:72.000000pt;}
.h22{height:72.903680pt;}
.he{height:74.309760pt;}
.h13{height:74.560000pt;}
.h15{height:74.561333pt;}
.h36{height:76.000000pt;}
.h2e{height:76.743680pt;}
.h28{height:79.943680pt;}
.h3a{height:80.583680pt;}
.h2f{height:84.423680pt;}
.h40{height:85.063680pt;}
.h2c{height:88.263680pt;}
.h29{height:92.743680pt;}
.h1e{height:94.039040pt;}
.h19{height:95.319040pt;}
.h3b{height:95.943680pt;}
.h38{height:97.223680pt;}
.hc{height:100.480000pt;}
.h2{height:100.960000pt;}
.h3d{height:102.359040pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:56.320000pt;}
.w5{width:203.681333pt;}
.wa{width:212.160000pt;}
.w7{width:226.400000pt;}
.w3{width:238.240000pt;}
.w2{width:300.161333pt;}
.w6{width:304.000000pt;}
.w4{width:334.878667pt;}
.w8{width:472.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:4.640000pt;}
.x13{left:7.200000pt;}
.x16{left:26.080000pt;}
.x21{left:27.200000pt;}
.x1a{left:34.560000pt;}
.x15{left:49.280000pt;}
.x22{left:76.160000pt;}
.xd{left:123.360000pt;}
.x1c{left:141.920000pt;}
.x1{left:146.560000pt;}
.xa{left:148.640000pt;}
.x7{left:151.200000pt;}
.xe{left:155.840000pt;}
.x18{left:158.400000pt;}
.x1b{left:177.280000pt;}
.x28{left:183.040000pt;}
.x29{left:188.960000pt;}
.x1e{left:193.760000pt;}
.x8{left:198.400000pt;}
.x26{left:204.960000pt;}
.x24{left:208.480000pt;}
.x10{left:215.040000pt;}
.x4{left:233.440000pt;}
.x9{left:245.600000pt;}
.x1d{left:290.240000pt;}
.x2{left:302.560000pt;}
.x23{left:341.440000pt;}
.x20{left:346.400000pt;}
.x25{left:356.160000pt;}
.x1f{left:368.000000pt;}
.x27{left:370.560000pt;}
.x12{left:371.682400pt;}
.x11{left:373.600000pt;}
.x3{left:446.720000pt;}
.xf{left:459.840000pt;}
.xc{left:483.520000pt;}
.x6{left:556.005120pt;}
.x5{left:577.600000pt;}
.x14{left:624.000000pt;}
.x17{left:665.920000pt;}
.x19{left:673.274080pt;}
}




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