
    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_667a680eec9d60c6c41ed696.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_bf249607bf0f9d2d4fc2f202.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.725000;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_32801e1690324f51884655ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_8011b633e88a65dec3ffd4e9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;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_500e56568467918fa78767b6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.164000;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);}
.v1{vertical-align:-35.988000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.260000px;}
.ls3a{letter-spacing:-3.300000px;}
.ls11{letter-spacing:-1.500000px;}
.ls3d{letter-spacing:-1.140000px;}
.ls3e{letter-spacing:-0.969000px;}
.ls19{letter-spacing:-0.840000px;}
.ls1d{letter-spacing:-0.570000px;}
.ls3f{letter-spacing:-0.540000px;}
.ls22{letter-spacing:-0.513000px;}
.lsa{letter-spacing:-0.510000px;}
.ls9{letter-spacing:-0.480000px;}
.ls1a{letter-spacing:-0.420000px;}
.ls1b{letter-spacing:-0.378000px;}
.ls37{letter-spacing:-0.342000px;}
.lsd{letter-spacing:-0.285000px;}
.ls3b{letter-spacing:-0.228000px;}
.ls40{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.171000px;}
.lse{letter-spacing:-0.114000px;}
.ls8{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.028500px;}
.ls1{letter-spacing:0.051000px;}
.ls16{letter-spacing:0.057000px;}
.ls2e{letter-spacing:0.084000px;}
.ls41{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.114000px;}
.ls3c{letter-spacing:0.142500px;}
.ls46{letter-spacing:0.162000px;}
.ls14{letter-spacing:0.168000px;}
.ls12{letter-spacing:0.171000px;}
.ls2d{letter-spacing:0.199500px;}
.ls21{letter-spacing:0.210000px;}
.ls44{letter-spacing:0.216000px;}
.ls1c{letter-spacing:0.228000px;}
.lsb{letter-spacing:0.255000px;}
.ls4b{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.280500px;}
.ls10{letter-spacing:0.285000px;}
.ls7{letter-spacing:0.306000px;}
.ls2c{letter-spacing:0.313500px;}
.ls42{letter-spacing:0.324000px;}
.ls26{letter-spacing:0.336000px;}
.ls24{letter-spacing:0.342000px;}
.ls43{letter-spacing:0.378000px;}
.ls1f{letter-spacing:0.399000px;}
.ls27{letter-spacing:0.420000px;}
.ls4e{letter-spacing:0.432000px;}
.ls23{letter-spacing:0.441000px;}
.ls34{letter-spacing:0.456000px;}
.ls32{letter-spacing:0.462000px;}
.ls39{letter-spacing:0.513000px;}
.lsf{letter-spacing:0.570000px;}
.ls13{letter-spacing:0.598500px;}
.ls2b{letter-spacing:0.627000px;}
.ls5{letter-spacing:0.637500px;}
.ls45{letter-spacing:0.648000px;}
.ls2f{letter-spacing:0.684000px;}
.ls28{letter-spacing:0.712500px;}
.ls4{letter-spacing:0.714000px;}
.ls30{letter-spacing:0.741000px;}
.ls6{letter-spacing:0.765000px;}
.ls2a{letter-spacing:0.798000px;}
.ls4d{letter-spacing:0.810000px;}
.ls2{letter-spacing:0.816000px;}
.ls29{letter-spacing:0.826500px;}
.ls35{letter-spacing:0.855000px;}
.ls4f{letter-spacing:0.864000px;}
.ls17{letter-spacing:0.912000px;}
.ls49{letter-spacing:0.918000px;}
.ls20{letter-spacing:1.026000px;}
.ls1e{letter-spacing:1.083000px;}
.ls4c{letter-spacing:1.134000px;}
.ls31{letter-spacing:1.140000px;}
.ls18{letter-spacing:1.197000px;}
.ls36{letter-spacing:1.225500px;}
.ls38{letter-spacing:1.425000px;}
.ls47{letter-spacing:1.512000px;}
.ls4a{letter-spacing:1.539000px;}
.ls50{letter-spacing:1.566000px;}
.ls48{letter-spacing:1.782000px;}
.ls0{letter-spacing:1.785000px;}
.ls33{letter-spacing:2.166000px;}
.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;}
}
.wse9{word-spacing:-16.680000px;}
.ws10f{word-spacing:-16.551000px;}
.ws0{word-spacing:-14.815500px;}
.wsc3{word-spacing:-14.193000px;}
.ws1{word-spacing:-13.668000px;}
.wsed{word-spacing:-13.380000px;}
.wsc2{word-spacing:-13.338000px;}
.ws96{word-spacing:-12.117000px;}
.ws87{word-spacing:-11.676000px;}
.ws1c{word-spacing:-9.180000px;}
.ws54{word-spacing:-8.721000px;}
.wsb2{word-spacing:-6.426000px;}
.ws4{word-spacing:-1.785000px;}
.ws117{word-spacing:-1.566000px;}
.ws10d{word-spacing:-1.512000px;}
.ws110{word-spacing:-1.134000px;}
.ws10e{word-spacing:-0.918000px;}
.ws114{word-spacing:-0.864000px;}
.ws111{word-spacing:-0.810000px;}
.wsb6{word-spacing:-0.741000px;}
.wsb8{word-spacing:-0.570000px;}
.wsc1{word-spacing:-0.462000px;}
.ws112{word-spacing:-0.432000px;}
.wsa7{word-spacing:-0.420000px;}
.wsbb{word-spacing:-0.336000px;}
.ws115{word-spacing:-0.270000px;}
.wsf{word-spacing:-0.255000px;}
.ws40{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.wsf9{word-spacing:0.054000px;}
.wsac{word-spacing:0.057000px;}
.ws34{word-spacing:0.084000px;}
.ws21{word-spacing:0.114000px;}
.wsd5{word-spacing:0.171000px;}
.wsd{word-spacing:0.204000px;}
.wsa8{word-spacing:0.210000px;}
.wsfc{word-spacing:0.216000px;}
.wsf8{word-spacing:0.228000px;}
.ws3f{word-spacing:0.285000px;}
.wse8{word-spacing:0.294000px;}
.ws10{word-spacing:0.306000px;}
.ws104{word-spacing:0.324000px;}
.wsb9{word-spacing:0.342000px;}
.ws90{word-spacing:0.378000px;}
.ws89{word-spacing:0.399000px;}
.wsb5{word-spacing:0.420000px;}
.ws7b{word-spacing:0.456000px;}
.ws17{word-spacing:0.459000px;}
.ws72{word-spacing:0.462000px;}
.ws36{word-spacing:0.504000px;}
.ws9{word-spacing:0.510000px;}
.ws35{word-spacing:0.546000px;}
.ws23{word-spacing:0.570000px;}
.wsa5{word-spacing:0.588000px;}
.ws9d{word-spacing:0.627000px;}
.ws5f{word-spacing:0.630000px;}
.wsbe{word-spacing:0.672000px;}
.wsd2{word-spacing:0.684000px;}
.ws2a{word-spacing:0.741000px;}
.wscb{word-spacing:0.756000px;}
.wsd6{word-spacing:0.798000px;}
.wsec{word-spacing:0.840000px;}
.wsd0{word-spacing:0.855000px;}
.ws4e{word-spacing:0.882000px;}
.wsba{word-spacing:0.912000px;}
.ws4b{word-spacing:0.966000px;}
.ws101{word-spacing:1.008000px;}
.ws3d{word-spacing:1.026000px;}
.ws56{word-spacing:1.083000px;}
.ws1a{word-spacing:1.122000px;}
.ws6c{word-spacing:1.134000px;}
.ws27{word-spacing:1.140000px;}
.wsa4{word-spacing:1.176000px;}
.wsdb{word-spacing:1.197000px;}
.wsff{word-spacing:1.242000px;}
.ws77{word-spacing:1.254000px;}
.ws74{word-spacing:1.260000px;}
.ws84{word-spacing:1.302000px;}
.ws7f{word-spacing:1.311000px;}
.ws30{word-spacing:1.344000px;}
.ws25{word-spacing:1.368000px;}
.ws73{word-spacing:1.428000px;}
.wsb4{word-spacing:1.470000px;}
.wsb0{word-spacing:1.482000px;}
.wse3{word-spacing:1.512000px;}
.ws3c{word-spacing:1.539000px;}
.wse1{word-spacing:1.554000px;}
.ws10a{word-spacing:1.566000px;}
.ws49{word-spacing:1.596000px;}
.ws32{word-spacing:1.638000px;}
.wsa0{word-spacing:1.680000px;}
.ws7e{word-spacing:1.710000px;}
.wse2{word-spacing:1.722000px;}
.ws14{word-spacing:1.734000px;}
.ws2e{word-spacing:1.764000px;}
.wsc4{word-spacing:1.767000px;}
.ws106{word-spacing:1.782000px;}
.wsb3{word-spacing:1.806000px;}
.wsae{word-spacing:1.824000px;}
.wsbd{word-spacing:1.848000px;}
.ws78{word-spacing:1.881000px;}
.ws93{word-spacing:1.890000px;}
.ws60{word-spacing:1.932000px;}
.ws8c{word-spacing:1.938000px;}
.ws10c{word-spacing:1.944000px;}
.wse4{word-spacing:1.974000px;}
.ws2b{word-spacing:1.995000px;}
.ws47{word-spacing:2.052000px;}
.ws5e{word-spacing:2.058000px;}
.wsf5{word-spacing:2.100000px;}
.ws53{word-spacing:2.109000px;}
.ws6a{word-spacing:2.142000px;}
.ws108{word-spacing:2.160000px;}
.ws4f{word-spacing:2.166000px;}
.wsa6{word-spacing:2.226000px;}
.ws33{word-spacing:2.268000px;}
.ws55{word-spacing:2.280000px;}
.ws16{word-spacing:2.295000px;}
.wsfb{word-spacing:2.322000px;}
.wsee{word-spacing:2.337000px;}
.ws2d{word-spacing:2.394000px;}
.wsa9{word-spacing:2.436000px;}
.wsf4{word-spacing:2.451000px;}
.wsbf{word-spacing:2.478000px;}
.ws3e{word-spacing:2.508000px;}
.ws113{word-spacing:2.538000px;}
.ws86{word-spacing:2.562000px;}
.wsab{word-spacing:2.565000px;}
.wsb{word-spacing:2.601000px;}
.ws4a{word-spacing:2.604000px;}
.ws71{word-spacing:2.646000px;}
.ws46{word-spacing:2.679000px;}
.ws95{word-spacing:2.730000px;}
.ws63{word-spacing:2.736000px;}
.wsca{word-spacing:2.772000px;}
.ws88{word-spacing:2.793000px;}
.wsbc{word-spacing:2.814000px;}
.wsad{word-spacing:2.850000px;}
.wsb1{word-spacing:2.856000px;}
.ws9e{word-spacing:2.898000px;}
.ws5a{word-spacing:2.907000px;}
.ws2f{word-spacing:2.940000px;}
.ws8a{word-spacing:2.964000px;}
.ws83{word-spacing:2.982000px;}
.wsd4{word-spacing:3.021000px;}
.wsa2{word-spacing:3.024000px;}
.ws91{word-spacing:3.066000px;}
.ws105{word-spacing:3.078000px;}
.ws92{word-spacing:3.108000px;}
.ws109{word-spacing:3.132000px;}
.ws76{word-spacing:3.135000px;}
.wsde{word-spacing:3.150000px;}
.ws18{word-spacing:3.162000px;}
.wsf7{word-spacing:3.192000px;}
.ws6b{word-spacing:3.234000px;}
.ws24{word-spacing:3.249000px;}
.wscc{word-spacing:3.276000px;}
.ws41{word-spacing:3.306000px;}
.wsdd{word-spacing:3.318000px;}
.ws70{word-spacing:3.402000px;}
.wsea{word-spacing:3.420000px;}
.ws85{word-spacing:3.444000px;}
.ws2c{word-spacing:3.477000px;}
.ws64{word-spacing:3.534000px;}
.ws100{word-spacing:3.564000px;}
.ws81{word-spacing:3.570000px;}
.ws62{word-spacing:3.591000px;}
.wsdf{word-spacing:3.612000px;}
.ws8f{word-spacing:3.648000px;}
.ws4c{word-spacing:3.696000px;}
.wsf3{word-spacing:3.705000px;}
.ws69{word-spacing:3.738000px;}
.ws99{word-spacing:3.762000px;}
.wse5{word-spacing:3.780000px;}
.ws1d{word-spacing:3.819000px;}
.wsc9{word-spacing:3.864000px;}
.ws8{word-spacing:3.876000px;}
.ws5b{word-spacing:3.906000px;}
.wse7{word-spacing:3.933000px;}
.ws5c{word-spacing:3.948000px;}
.ws3b{word-spacing:3.990000px;}
.wsc0{word-spacing:4.032000px;}
.wsc6{word-spacing:4.047000px;}
.ws75{word-spacing:4.104000px;}
.wsa3{word-spacing:4.116000px;}
.wsd7{word-spacing:4.158000px;}
.wse0{word-spacing:4.161000px;}
.wsd3{word-spacing:4.218000px;}
.ws6f{word-spacing:4.242000px;}
.ws8d{word-spacing:4.275000px;}
.wsa1{word-spacing:4.284000px;}
.ws44{word-spacing:4.332000px;}
.ws50{word-spacing:4.389000px;}
.ws6e{word-spacing:4.410000px;}
.ws9a{word-spacing:4.446000px;}
.ws68{word-spacing:4.503000px;}
.ws98{word-spacing:4.560000px;}
.ws61{word-spacing:4.578000px;}
.ws20{word-spacing:4.617000px;}
.ws9f{word-spacing:4.620000px;}
.wsfa{word-spacing:4.644000px;}
.ws1f{word-spacing:4.674000px;}
.ws116{word-spacing:4.698000px;}
.ws94{word-spacing:4.746000px;}
.ws7a{word-spacing:4.788000px;}
.wsfe{word-spacing:4.806000px;}
.wscd{word-spacing:4.830000px;}
.wsa{word-spacing:4.845000px;}
.ws7{word-spacing:4.896000px;}
.wsaa{word-spacing:4.902000px;}
.ws6d{word-spacing:4.914000px;}
.ws19{word-spacing:4.947000px;}
.wseb{word-spacing:4.959000px;}
.ws31{word-spacing:4.998000px;}
.wsb7{word-spacing:5.016000px;}
.ws48{word-spacing:5.073000px;}
.ws82{word-spacing:5.124000px;}
.ws3a{word-spacing:5.130000px;}
.ws59{word-spacing:5.187000px;}
.wsaf{word-spacing:5.244000px;}
.ws11{word-spacing:5.253000px;}
.ws102{word-spacing:5.292000px;}
.ws37{word-spacing:5.358000px;}
.wsd8{word-spacing:5.376000px;}
.ws42{word-spacing:5.415000px;}
.wsd9{word-spacing:5.460000px;}
.ws58{word-spacing:5.472000px;}
.ws39{word-spacing:5.529000px;}
.ws22{word-spacing:5.586000px;}
.wsda{word-spacing:5.628000px;}
.wsc5{word-spacing:5.643000px;}
.wsf6{word-spacing:5.700000px;}
.ws4d{word-spacing:5.754000px;}
.ws29{word-spacing:5.757000px;}
.ws10b{word-spacing:5.778000px;}
.ws13{word-spacing:5.814000px;}
.ws5d{word-spacing:5.838000px;}
.ws51{word-spacing:5.871000px;}
.ws79{word-spacing:5.928000px;}
.wsf1{word-spacing:5.985000px;}
.wscf{word-spacing:6.042000px;}
.ws8b{word-spacing:6.099000px;}
.ws67{word-spacing:6.156000px;}
.ws6{word-spacing:6.171000px;}
.wse{word-spacing:6.324000px;}
.ws7c{word-spacing:6.384000px;}
.ws8e{word-spacing:6.441000px;}
.ws12{word-spacing:6.477000px;}
.ws45{word-spacing:6.498000px;}
.wse6{word-spacing:6.555000px;}
.ws9b{word-spacing:6.612000px;}
.ws97{word-spacing:6.669000px;}
.ws15{word-spacing:6.681000px;}
.ws107{word-spacing:6.696000px;}
.ws66{word-spacing:6.726000px;}
.wsc{word-spacing:6.732000px;}
.wsef{word-spacing:6.783000px;}
.ws52{word-spacing:6.840000px;}
.ws80{word-spacing:6.897000px;}
.ws103{word-spacing:6.912000px;}
.wsc7{word-spacing:6.954000px;}
.ws57{word-spacing:7.011000px;}
.ws7d{word-spacing:7.068000px;}
.ws5{word-spacing:7.089000px;}
.wsf2{word-spacing:7.125000px;}
.ws9c{word-spacing:7.182000px;}
.wsd1{word-spacing:7.239000px;}
.ws26{word-spacing:7.296000px;}
.ws28{word-spacing:7.353000px;}
.wsce{word-spacing:7.467000px;}
.wsfd{word-spacing:7.506000px;}
.ws65{word-spacing:7.524000px;}
.wsdc{word-spacing:7.581000px;}
.ws43{word-spacing:7.695000px;}
.wsf0{word-spacing:7.752000px;}
.ws38{word-spacing:7.809000px;}
.wsc8{word-spacing:7.866000px;}
.ws1e{word-spacing:7.923000px;}
.ws1b{word-spacing:13.320000px;}
.ws2{word-spacing:530.604000px;}
._2{margin-left:-522.612000px;}
._13{margin-left:-23.085000px;}
._16{margin-left:-21.717000px;}
._14{margin-left:-20.349000px;}
._17{margin-left:-16.473000px;}
._11{margin-left:-15.120000px;}
._15{margin-left:-13.908000px;}
._19{margin-left:-12.264000px;}
._b{margin-left:-10.160100px;}
._c{margin-left:-8.994900px;}
._1{margin-left:-7.560000px;}
._12{margin-left:-6.426000px;}
._6{margin-left:-4.860000px;}
._0{margin-left:-3.420000px;}
._3{margin-left:-1.620000px;}
._5{width:1.440000px;}
._18{width:2.892600px;}
._8{width:4.392000px;}
._d{width:5.398800px;}
._f{width:7.104900px;}
._7{width:8.172000px;}
._a{width:10.101000px;}
._10{width:13.380000px;}
._1a{width:15.750000px;}
._1c{width:16.758000px;}
._1b{width:21.660000px;}
._9{width:328.737000px;}
._4{width:377.820000px;}
._e{width:767.097000px;}
._1d{width:770.397000px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.231000px;}
.fs0{font-size:36.000000px;}
.fs6{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:89.291250px;}
.y1{bottom:100.487250px;}
.y154{bottom:133.747950px;}
.y1d0{bottom:133.941600px;}
.y1bd{bottom:133.950600px;}
.y1d9{bottom:133.955100px;}
.y1ec{bottom:133.959450px;}
.y80{bottom:133.964100px;}
.y10a{bottom:133.974000px;}
.y1c8{bottom:133.978500px;}
.y19d{bottom:133.980750px;}
.yd0{bottom:133.982550px;}
.y9a{bottom:133.984050px;}
.y58{bottom:133.987050px;}
.y17d{bottom:133.992000px;}
.yba{bottom:133.993050px;}
.yde{bottom:133.996050px;}
.y11b{bottom:134.009400px;}
.yf1{bottom:134.019000px;}
.y190{bottom:134.019900px;}
.y216{bottom:135.001950px;}
.y1cf{bottom:146.730600px;}
.y1bc{bottom:146.739600px;}
.y1d8{bottom:146.744100px;}
.y1eb{bottom:146.748450px;}
.y7f{bottom:146.753100px;}
.y109{bottom:146.763000px;}
.y1c7{bottom:146.767500px;}
.y19c{bottom:146.769750px;}
.ycf{bottom:146.771550px;}
.y99{bottom:146.773050px;}
.y57{bottom:146.776050px;}
.y17c{bottom:146.781000px;}
.yb9{bottom:146.782050px;}
.ydd{bottom:146.785050px;}
.y11a{bottom:146.798400px;}
.yf0{bottom:146.808000px;}
.y153{bottom:151.375200px;}
.y215{bottom:151.795950px;}
.y12a{bottom:153.166050px;}
.y18f{bottom:153.203400px;}
.y23{bottom:159.109500px;}
.y1bb{bottom:159.528600px;}
.y1d7{bottom:159.533100px;}
.y1ea{bottom:159.537450px;}
.y7e{bottom:159.542100px;}
.y108{bottom:159.552000px;}
.y1c6{bottom:159.556500px;}
.y19b{bottom:159.558750px;}
.y98{bottom:159.562050px;}
.y56{bottom:159.565050px;}
.y17b{bottom:159.570000px;}
.yb8{bottom:159.571050px;}
.ydc{bottom:159.574050px;}
.y119{bottom:159.587400px;}
.yef{bottom:159.597000px;}
.yce{bottom:165.955050px;}
.y18e{bottom:165.992400px;}
.y214{bottom:168.589950px;}
.y152{bottom:169.002450px;}
.y1ba{bottom:172.317600px;}
.y1d6{bottom:172.322100px;}
.y1e9{bottom:172.326450px;}
.y7d{bottom:172.331100px;}
.y19a{bottom:172.347750px;}
.y55{bottom:172.354050px;}
.y17a{bottom:172.359000px;}
.ydb{bottom:172.363050px;}
.y118{bottom:172.376400px;}
.y107{bottom:178.735500px;}
.y1c5{bottom:178.740000px;}
.ycd{bottom:178.744050px;}
.y97{bottom:178.756050px;}
.yb7{bottom:178.765050px;}
.yee{bottom:178.780500px;}
.y18d{bottom:178.781400px;}
.y22{bottom:183.092250px;}
.y1d5{bottom:185.111100px;}
.y1e8{bottom:185.115450px;}
.y7c{bottom:185.120100px;}
.y199{bottom:185.136750px;}
.y54{bottom:185.143050px;}
.y179{bottom:185.148000px;}
.yda{bottom:185.152050px;}
.y117{bottom:185.165400px;}
.y213{bottom:185.383950px;}
.y151{bottom:186.629700px;}
.y1ce{bottom:190.240050px;}
.y1c4{bottom:191.529000px;}
.ycc{bottom:191.533050px;}
.yb6{bottom:191.554050px;}
.yed{bottom:191.569500px;}
.y18c{bottom:191.570400px;}
.y1e7{bottom:197.904450px;}
.y7b{bottom:197.909100px;}
.y106{bottom:197.919000px;}
.y198{bottom:197.925750px;}
.y178{bottom:197.937000px;}
.y96{bottom:197.939550px;}
.yd9{bottom:197.941050px;}
.y116{bottom:197.954400px;}
.y21{bottom:199.080750px;}
.y212{bottom:202.177950px;}
.y150{bottom:204.256950px;}
.y1c3{bottom:204.318000px;}
.ycb{bottom:204.322050px;}
.y53{bottom:204.326550px;}
.yec{bottom:204.358500px;}
.y18b{bottom:204.359400px;}
.y1cd{bottom:207.838800px;}
.y7a{bottom:210.698100px;}
.y105{bottom:210.708000px;}
.y197{bottom:210.714750px;}
.y95{bottom:210.728550px;}
.yd8{bottom:210.730050px;}
.y115{bottom:210.743400px;}
.yb5{bottom:210.748050px;}
.y1b9{bottom:213.861450px;}
.y20{bottom:215.069250px;}
.y1c2{bottom:217.107000px;}
.yca{bottom:217.111050px;}
.y52{bottom:217.115550px;}
.y177{bottom:217.120500px;}
.yeb{bottom:217.147500px;}
.y211{bottom:218.971950px;}
.y14f{bottom:221.884200px;}
.y104{bottom:223.497000px;}
.y196{bottom:223.503750px;}
.y94{bottom:223.517550px;}
.yd7{bottom:223.519050px;}
.y114{bottom:223.532400px;}
.yb4{bottom:223.537050px;}
.y18a{bottom:223.542900px;}
.y1cc{bottom:225.437550px;}
.yc9{bottom:229.900050px;}
.y51{bottom:229.904550px;}
.y176{bottom:229.909500px;}
.y1f{bottom:231.057750px;}
.y1b8{bottom:231.460200px;}
.y210{bottom:235.765950px;}
.y103{bottom:236.286000px;}
.y1c1{bottom:236.290500px;}
.y195{bottom:236.292750px;}
.y93{bottom:236.306550px;}
.yd6{bottom:236.308050px;}
.y113{bottom:236.321400px;}
.yb3{bottom:236.326050px;}
.yea{bottom:236.331000px;}
.y189{bottom:236.331900px;}
.y14e{bottom:239.511450px;}
.y1d4{bottom:240.537450px;}
.yc8{bottom:242.689050px;}
.y50{bottom:242.693550px;}
.y175{bottom:242.698500px;}
.y1cb{bottom:243.036300px;}
.y1e{bottom:247.046250px;}
.y1b7{bottom:249.058950px;}
.y102{bottom:249.075000px;}
.y1c0{bottom:249.079500px;}
.y194{bottom:249.081750px;}
.y92{bottom:249.095550px;}
.yd5{bottom:249.097050px;}
.y112{bottom:249.110400px;}
.yb2{bottom:249.115050px;}
.ye9{bottom:249.120000px;}
.y188{bottom:249.120900px;}
.y20f{bottom:252.559950px;}
.y1e6{bottom:252.667950px;}
.yc7{bottom:255.478050px;}
.y4f{bottom:255.482550px;}
.y174{bottom:255.487500px;}
.y14d{bottom:257.138700px;}
.y1d3{bottom:258.136200px;}
.y79{bottom:260.604450px;}
.y1ca{bottom:260.635050px;}
.y1bf{bottom:261.868500px;}
.y91{bottom:261.884550px;}
.yd4{bottom:261.886050px;}
.y111{bottom:261.899400px;}
.yb1{bottom:261.904050px;}
.ye8{bottom:261.909000px;}
.y187{bottom:261.909900px;}
.y1d{bottom:263.034750px;}
.y1b6{bottom:266.657700px;}
.yc6{bottom:268.267050px;}
.y4e{bottom:268.271550px;}
.y193{bottom:268.275750px;}
.y173{bottom:268.276500px;}
.y20e{bottom:269.353950px;}
.y1e5{bottom:269.461950px;}
.y90{bottom:274.673550px;}
.y110{bottom:274.688400px;}
.yb0{bottom:274.693050px;}
.ye7{bottom:274.698000px;}
.y186{bottom:274.698900px;}
.y14c{bottom:274.765950px;}
.y1d2{bottom:275.734950px;}
.y78{bottom:278.203200px;}
.y1c{bottom:279.023250px;}
.y4d{bottom:281.060550px;}
.y192{bottom:281.064750px;}
.y172{bottom:281.065500px;}
.yd3{bottom:281.069550px;}
.y1b5{bottom:284.256450px;}
.y1e4{bottom:286.255950px;}
.y10f{bottom:287.477400px;}
.ye6{bottom:287.487000px;}
.y185{bottom:287.487900px;}
.y14b{bottom:292.393200px;}
.y1d1{bottom:293.333700px;}
.y8f{bottom:293.857050px;}
.yd2{bottom:293.858550px;}
.yaf{bottom:293.887050px;}
.y1b{bottom:295.011750px;}
.y1c9{bottom:295.022700px;}
.y77{bottom:295.801950px;}
.y101{bottom:296.602950px;}
.y171{bottom:300.249000px;}
.y10e{bottom:300.266400px;}
.ye5{bottom:300.276000px;}
.y1b4{bottom:301.855200px;}
.y20d{bottom:302.935950px;}
.y1e3{bottom:303.049950px;}
.y8e{bottom:306.646050px;}
.yd1{bottom:306.647550px;}
.y184{bottom:306.671400px;}
.yae{bottom:306.676050px;}
.y14a{bottom:310.020450px;}
.y1be{bottom:310.932450px;}
.y129{bottom:310.946700px;}
.y1a{bottom:311.000250px;}
.ye4{bottom:313.065000px;}
.y76{bottom:313.400700px;}
.y100{bottom:314.201700px;}
.y10d{bottom:319.449900px;}
.y183{bottom:319.460400px;}
.yad{bottom:319.465050px;}
.yc5{bottom:319.738950px;}
.y1e2{bottom:319.843950px;}
.y4c{bottom:322.504950px;}
.ye3{bottom:325.854000px;}
.y149{bottom:327.647700px;}
.y191{bottom:328.531200px;}
.y128{bottom:328.545450px;}
.y75{bottom:330.999450px;}
.yff{bottom:331.800450px;}
.y10c{bottom:332.238900px;}
.y182{bottom:332.249400px;}
.yac{bottom:332.254050px;}
.y1e1{bottom:336.637950px;}
.y1b3{bottom:337.052700px;}
.yc4{bottom:337.337700px;}
.ye2{bottom:338.643000px;}
.y4b{bottom:340.103700px;}
.y10b{bottom:345.027900px;}
.y181{bottom:345.038400px;}
.yab{bottom:345.043050px;}
.y148{bottom:345.274950px;}
.y8d{bottom:346.129950px;}
.y127{bottom:346.144200px;}
.y74{bottom:348.598200px;}
.yfe{bottom:349.399200px;}
.ye1{bottom:351.432000px;}
.y1e0{bottom:353.431950px;}
.y20c{bottom:354.021450px;}
.y1b2{bottom:354.651450px;}
.yc3{bottom:354.936450px;}
.y170{bottom:355.748700px;}
.y4a{bottom:357.702450px;}
.y180{bottom:357.827400px;}
.y19{bottom:362.178750px;}
.y147{bottom:362.902200px;}
.y8c{bottom:363.728700px;}
.y126{bottom:363.742950px;}
.ye0{bottom:364.221000px;}
.yaa{bottom:364.237050px;}
.y73{bottom:366.196950px;}
.yfd{bottom:366.997950px;}
.y1df{bottom:370.225950px;}
.y20b{bottom:370.815450px;}
.y1b1{bottom:372.250200px;}
.yc2{bottom:372.535200px;}
.y16f{bottom:373.347450px;}
.y49{bottom:375.301200px;}
.ydf{bottom:377.010000px;}
.y17f{bottom:377.010900px;}
.ya9{bottom:377.026050px;}
.y18{bottom:378.167250px;}
.y146{bottom:380.529450px;}
.y8b{bottom:381.327450px;}
.y125{bottom:381.341700px;}
.y72{bottom:383.795700px;}
.yfc{bottom:384.596700px;}
.y1de{bottom:387.019950px;}
.y20a{bottom:387.609450px;}
.y17e{bottom:389.799900px;}
.ya8{bottom:389.815050px;}
.y1b0{bottom:389.848950px;}
.yc1{bottom:390.133950px;}
.y16e{bottom:390.946200px;}
.y48{bottom:392.899950px;}
.y145{bottom:398.156700px;}
.y8a{bottom:398.926200px;}
.y71{bottom:401.394450px;}
.y17{bottom:402.150000px;}
.yfb{bottom:402.195450px;}
.y1dd{bottom:403.813950px;}
.y209{bottom:404.403450px;}
.y1af{bottom:407.447700px;}
.yc0{bottom:407.732700px;}
.y16d{bottom:408.544950px;}
.ya7{bottom:409.009050px;}
.y47{bottom:410.498700px;}
.y144{bottom:415.783950px;}
.y89{bottom:416.524950px;}
.y16{bottom:418.138500px;}
.y70{bottom:418.993200px;}
.yfa{bottom:419.794200px;}
.y1dc{bottom:420.607950px;}
.y208{bottom:421.197450px;}
.ya6{bottom:421.798050px;}
.ybf{bottom:425.331450px;}
.y16c{bottom:426.143700px;}
.y46{bottom:428.097450px;}
.y143{bottom:433.411200px;}
.y88{bottom:434.123700px;}
.y15{bottom:434.127000px;}
.ya5{bottom:434.587050px;}
.y6f{bottom:436.591950px;}
.yf9{bottom:437.392950px;}
.y1db{bottom:437.401950px;}
.y207{bottom:437.991450px;}
.y1ae{bottom:442.645200px;}
.ybe{bottom:442.930200px;}
.y16b{bottom:443.742450px;}
.y45{bottom:445.696200px;}
.y14{bottom:450.115500px;}
.y142{bottom:451.038450px;}
.y87{bottom:451.722450px;}
.ya4{bottom:453.781050px;}
.y6e{bottom:454.190700px;}
.y206{bottom:454.785450px;}
.yf8{bottom:454.991700px;}
.y1ad{bottom:460.243950px;}
.ybd{bottom:460.528950px;}
.y16a{bottom:461.341200px;}
.y44{bottom:463.294950px;}
.y13{bottom:466.104000px;}
.ya3{bottom:466.570050px;}
.y141{bottom:468.665700px;}
.y86{bottom:469.321200px;}
.y1da{bottom:470.983950px;}
.y205{bottom:471.579450px;}
.y6d{bottom:471.789450px;}
.yf7{bottom:472.590450px;}
.y1ac{bottom:477.842700px;}
.ybc{bottom:478.127700px;}
.y169{bottom:478.939950px;}
.y43{bottom:480.893700px;}
.y12{bottom:482.092500px;}
.y140{bottom:486.292950px;}
.y85{bottom:486.919950px;}
.y204{bottom:488.373450px;}
.yf6{bottom:490.189200px;}
.y1ab{bottom:495.441450px;}
.ybb{bottom:495.726450px;}
.y168{bottom:496.538700px;}
.y11{bottom:498.081000px;}
.y42{bottom:498.492450px;}
.y13f{bottom:503.920200px;}
.y84{bottom:504.518700px;}
.y203{bottom:505.167450px;}
.y6c{bottom:506.178450px;}
.yf5{bottom:507.787950px;}
.y1aa{bottom:513.040200px;}
.ya2{bottom:513.325200px;}
.y10{bottom:514.069500px;}
.y167{bottom:514.137450px;}
.y41{bottom:516.091200px;}
.y13e{bottom:521.547450px;}
.y202{bottom:521.961450px;}
.y83{bottom:522.117450px;}
.y6b{bottom:523.773450px;}
.yf4{bottom:525.386700px;}
.yf{bottom:530.058000px;}
.y1a9{bottom:530.638950px;}
.ya1{bottom:530.923950px;}
.y166{bottom:531.736200px;}
.y40{bottom:533.689950px;}
.y201{bottom:538.755450px;}
.y13d{bottom:539.174700px;}
.y82{bottom:539.716200px;}
.ya0{bottom:548.522700px;}
.y165{bottom:549.334950px;}
.y3f{bottom:551.288700px;}
.y200{bottom:555.549450px;}
.y13c{bottom:556.801950px;}
.y81{bottom:557.314950px;}
.yf3{bottom:559.771950px;}
.y1a8{bottom:561.575700px;}
.y9f{bottom:566.121450px;}
.y164{bottom:566.933700px;}
.y3e{bottom:568.887450px;}
.y1ff{bottom:572.343450px;}
.y13b{bottom:574.429200px;}
.y6a{bottom:574.913700px;}
.y1a7{bottom:579.174450px;}
.y9e{bottom:583.720200px;}
.y163{bottom:584.532450px;}
.y3d{bottom:586.486200px;}
.y1fe{bottom:589.137450px;}
.y13a{bottom:592.056450px;}
.y69{bottom:592.512450px;}
.yf2{bottom:594.159450px;}
.y9d{bottom:601.318950px;}
.y162{bottom:602.131200px;}
.y3c{bottom:604.084950px;}
.y1fd{bottom:605.931450px;}
.y139{bottom:609.683700px;}
.y68{bottom:610.111200px;}
.y1a6{bottom:614.371950px;}
.y9c{bottom:618.917700px;}
.y161{bottom:619.729950px;}
.y3b{bottom:621.683700px;}
.ye{bottom:622.586250px;}
.y1fc{bottom:622.725450px;}
.y138{bottom:627.310950px;}
.y67{bottom:627.709950px;}
.y34{bottom:628.987800px;}
.y1a5{bottom:631.970700px;}
.y9b{bottom:636.516450px;}
.y160{bottom:637.328700px;}
.y3a{bottom:639.282450px;}
.y1fb{bottom:639.519450px;}
.y137{bottom:644.938200px;}
.y66{bottom:645.308700px;}
.y33{bottom:645.781800px;}
.y1a4{bottom:649.569450px;}
.yd{bottom:652.970250px;}
.y124{bottom:654.115200px;}
.y15f{bottom:654.927450px;}
.y1fa{bottom:656.313450px;}
.y39{bottom:656.881200px;}
.y136{bottom:662.565450px;}
.y65{bottom:662.907450px;}
.y1a3{bottom:667.168200px;}
.yc{bottom:667.358250px;}
.y123{bottom:671.713950px;}
.y15e{bottom:672.526200px;}
.y1f9{bottom:673.107450px;}
.y38{bottom:674.479950px;}
.y135{bottom:680.192700px;}
.y64{bottom:680.506200px;}
.yb{bottom:681.746250px;}
.y1a2{bottom:684.766950px;}
.y122{bottom:689.312700px;}
.y1f8{bottom:689.901450px;}
.y15d{bottom:690.124950px;}
.y32{bottom:691.310700px;}
.y37{bottom:692.078700px;}
.ya{bottom:696.134250px;}
.y134{bottom:697.819950px;}
.y63{bottom:698.104950px;}
.y1a1{bottom:702.365700px;}
.y1f7{bottom:706.695450px;}
.y121{bottom:706.911450px;}
.y31{bottom:707.299200px;}
.y15c{bottom:707.723700px;}
.y36{bottom:709.677450px;}
.y9{bottom:714.782250px;}
.y133{bottom:715.447200px;}
.y62{bottom:715.703700px;}
.y1a0{bottom:719.964450px;}
.y1f6{bottom:723.489450px;}
.y120{bottom:724.510200px;}
.y30{bottom:731.281950px;}
.y132{bottom:733.074450px;}
.y61{bottom:733.302450px;}
.y15b{bottom:734.114700px;}
.y19f{bottom:737.563200px;}
.y1f5{bottom:740.283450px;}
.y11f{bottom:742.108950px;}
.y35{bottom:744.064950px;}
.y2f{bottom:747.270450px;}
.y131{bottom:750.701700px;}
.y60{bottom:750.901200px;}
.y15a{bottom:751.713450px;}
.y8{bottom:754.680600px;}
.y19e{bottom:755.161950px;}
.y1f4{bottom:757.077450px;}
.y11e{bottom:759.707700px;}
.y2e{bottom:763.258950px;}
.y130{bottom:768.328950px;}
.y5f{bottom:768.499950px;}
.y159{bottom:769.312200px;}
.y1f3{bottom:773.871450px;}
.y7{bottom:775.470600px;}
.y11d{bottom:777.306450px;}
.y2d{bottom:779.247450px;}
.y12f{bottom:785.956200px;}
.y5e{bottom:786.098700px;}
.y158{bottom:786.910950px;}
.y1f2{bottom:790.665450px;}
.y11c{bottom:794.905200px;}
.y2c{bottom:795.235950px;}
.y6{bottom:796.260600px;}
.y12e{bottom:803.583450px;}
.y5d{bottom:803.697450px;}
.y157{bottom:804.509700px;}
.y1f1{bottom:807.459450px;}
.y2b{bottom:811.224450px;}
.y12d{bottom:821.210700px;}
.y5c{bottom:821.296200px;}
.y156{bottom:822.108450px;}
.y1f0{bottom:824.253450px;}
.y2a{bottom:827.212950px;}
.y5{bottom:829.797450px;}
.y12c{bottom:838.837950px;}
.y5b{bottom:838.894950px;}
.y155{bottom:839.707200px;}
.y1ef{bottom:841.047450px;}
.y29{bottom:843.201450px;}
.y4{bottom:850.587450px;}
.y12b{bottom:856.465200px;}
.y5a{bottom:856.493700px;}
.y1ee{bottom:857.841450px;}
.y28{bottom:859.189950px;}
.y3{bottom:871.377450px;}
.y59{bottom:874.092450px;}
.y1ed{bottom:874.635450px;}
.y27{bottom:875.178450px;}
.y26{bottom:913.834950px;}
.y25{bottom:922.831950px;}
.y24{bottom:936.334950px;}
.h2{height:26.676000px;}
.h9{height:31.122000px;}
.ha{height:39.060000px;}
.hf{height:42.237000px;}
.h10{height:42.351000px;}
.h3{height:42.480000px;}
.he{height:44.580000px;}
.h7{height:44.640000px;}
.h8{height:47.430000px;}
.h6{height:48.906000px;}
.hc{height:50.220000px;}
.hd{height:53.010000px;}
.h4{height:53.496000px;}
.hb{height:55.800000px;}
.h5{height:61.380000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:106.299300px;}
.x1{left:119.055150px;}
.xc{left:124.809150px;}
.x8{left:127.559100px;}
.xd{left:129.682350px;}
.x2{left:140.314950px;}
.xf{left:142.440900px;}
.xe{left:144.559350px;}
.x11{left:148.821150px;}
.xb{left:157.424850px;}
.x12{left:161.575950px;}
.x10{left:166.277400px;}
.x13{left:179.032200px;}
.x7{left:209.631600px;}
.xa{left:222.387450px;}
.x6{left:247.827600px;}
.x9{left:260.583450px;}
.x4{left:323.199750px;}
.x3{left:433.460250px;}
@media print{
.v1{vertical-align:-31.989333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.120000pt;}
.ls3a{letter-spacing:-2.933333pt;}
.ls11{letter-spacing:-1.333333pt;}
.ls3d{letter-spacing:-1.013333pt;}
.ls3e{letter-spacing:-0.861333pt;}
.ls19{letter-spacing:-0.746667pt;}
.ls1d{letter-spacing:-0.506667pt;}
.ls3f{letter-spacing:-0.480000pt;}
.ls22{letter-spacing:-0.456000pt;}
.lsa{letter-spacing:-0.453333pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls1a{letter-spacing:-0.373333pt;}
.ls1b{letter-spacing:-0.336000pt;}
.ls37{letter-spacing:-0.304000pt;}
.lsd{letter-spacing:-0.253333pt;}
.ls3b{letter-spacing:-0.202667pt;}
.ls40{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.152000pt;}
.lse{letter-spacing:-0.101333pt;}
.ls8{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.025333pt;}
.ls1{letter-spacing:0.045333pt;}
.ls16{letter-spacing:0.050667pt;}
.ls2e{letter-spacing:0.074667pt;}
.ls41{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.101333pt;}
.ls3c{letter-spacing:0.126667pt;}
.ls46{letter-spacing:0.144000pt;}
.ls14{letter-spacing:0.149333pt;}
.ls12{letter-spacing:0.152000pt;}
.ls2d{letter-spacing:0.177333pt;}
.ls21{letter-spacing:0.186667pt;}
.ls44{letter-spacing:0.192000pt;}
.ls1c{letter-spacing:0.202667pt;}
.lsb{letter-spacing:0.226667pt;}
.ls4b{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.249333pt;}
.ls10{letter-spacing:0.253333pt;}
.ls7{letter-spacing:0.272000pt;}
.ls2c{letter-spacing:0.278667pt;}
.ls42{letter-spacing:0.288000pt;}
.ls26{letter-spacing:0.298667pt;}
.ls24{letter-spacing:0.304000pt;}
.ls43{letter-spacing:0.336000pt;}
.ls1f{letter-spacing:0.354667pt;}
.ls27{letter-spacing:0.373333pt;}
.ls4e{letter-spacing:0.384000pt;}
.ls23{letter-spacing:0.392000pt;}
.ls34{letter-spacing:0.405333pt;}
.ls32{letter-spacing:0.410667pt;}
.ls39{letter-spacing:0.456000pt;}
.lsf{letter-spacing:0.506667pt;}
.ls13{letter-spacing:0.532000pt;}
.ls2b{letter-spacing:0.557333pt;}
.ls5{letter-spacing:0.566667pt;}
.ls45{letter-spacing:0.576000pt;}
.ls2f{letter-spacing:0.608000pt;}
.ls28{letter-spacing:0.633333pt;}
.ls4{letter-spacing:0.634667pt;}
.ls30{letter-spacing:0.658667pt;}
.ls6{letter-spacing:0.680000pt;}
.ls2a{letter-spacing:0.709333pt;}
.ls4d{letter-spacing:0.720000pt;}
.ls2{letter-spacing:0.725333pt;}
.ls29{letter-spacing:0.734667pt;}
.ls35{letter-spacing:0.760000pt;}
.ls4f{letter-spacing:0.768000pt;}
.ls17{letter-spacing:0.810667pt;}
.ls49{letter-spacing:0.816000pt;}
.ls20{letter-spacing:0.912000pt;}
.ls1e{letter-spacing:0.962667pt;}
.ls4c{letter-spacing:1.008000pt;}
.ls31{letter-spacing:1.013333pt;}
.ls18{letter-spacing:1.064000pt;}
.ls36{letter-spacing:1.089333pt;}
.ls38{letter-spacing:1.266667pt;}
.ls47{letter-spacing:1.344000pt;}
.ls4a{letter-spacing:1.368000pt;}
.ls50{letter-spacing:1.392000pt;}
.ls48{letter-spacing:1.584000pt;}
.ls0{letter-spacing:1.586667pt;}
.ls33{letter-spacing:1.925333pt;}
.wse9{word-spacing:-14.826667pt;}
.ws10f{word-spacing:-14.712000pt;}
.ws0{word-spacing:-13.169333pt;}
.wsc3{word-spacing:-12.616000pt;}
.ws1{word-spacing:-12.149333pt;}
.wsed{word-spacing:-11.893333pt;}
.wsc2{word-spacing:-11.856000pt;}
.ws96{word-spacing:-10.770667pt;}
.ws87{word-spacing:-10.378667pt;}
.ws1c{word-spacing:-8.160000pt;}
.ws54{word-spacing:-7.752000pt;}
.wsb2{word-spacing:-5.712000pt;}
.ws4{word-spacing:-1.586667pt;}
.ws117{word-spacing:-1.392000pt;}
.ws10d{word-spacing:-1.344000pt;}
.ws110{word-spacing:-1.008000pt;}
.ws10e{word-spacing:-0.816000pt;}
.ws114{word-spacing:-0.768000pt;}
.ws111{word-spacing:-0.720000pt;}
.wsb6{word-spacing:-0.658667pt;}
.wsb8{word-spacing:-0.506667pt;}
.wsc1{word-spacing:-0.410667pt;}
.ws112{word-spacing:-0.384000pt;}
.wsa7{word-spacing:-0.373333pt;}
.wsbb{word-spacing:-0.298667pt;}
.ws115{word-spacing:-0.240000pt;}
.wsf{word-spacing:-0.226667pt;}
.ws40{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.wsf9{word-spacing:0.048000pt;}
.wsac{word-spacing:0.050667pt;}
.ws34{word-spacing:0.074667pt;}
.ws21{word-spacing:0.101333pt;}
.wsd5{word-spacing:0.152000pt;}
.wsd{word-spacing:0.181333pt;}
.wsa8{word-spacing:0.186667pt;}
.wsfc{word-spacing:0.192000pt;}
.wsf8{word-spacing:0.202667pt;}
.ws3f{word-spacing:0.253333pt;}
.wse8{word-spacing:0.261333pt;}
.ws10{word-spacing:0.272000pt;}
.ws104{word-spacing:0.288000pt;}
.wsb9{word-spacing:0.304000pt;}
.ws90{word-spacing:0.336000pt;}
.ws89{word-spacing:0.354667pt;}
.wsb5{word-spacing:0.373333pt;}
.ws7b{word-spacing:0.405333pt;}
.ws17{word-spacing:0.408000pt;}
.ws72{word-spacing:0.410667pt;}
.ws36{word-spacing:0.448000pt;}
.ws9{word-spacing:0.453333pt;}
.ws35{word-spacing:0.485333pt;}
.ws23{word-spacing:0.506667pt;}
.wsa5{word-spacing:0.522667pt;}
.ws9d{word-spacing:0.557333pt;}
.ws5f{word-spacing:0.560000pt;}
.wsbe{word-spacing:0.597333pt;}
.wsd2{word-spacing:0.608000pt;}
.ws2a{word-spacing:0.658667pt;}
.wscb{word-spacing:0.672000pt;}
.wsd6{word-spacing:0.709333pt;}
.wsec{word-spacing:0.746667pt;}
.wsd0{word-spacing:0.760000pt;}
.ws4e{word-spacing:0.784000pt;}
.wsba{word-spacing:0.810667pt;}
.ws4b{word-spacing:0.858667pt;}
.ws101{word-spacing:0.896000pt;}
.ws3d{word-spacing:0.912000pt;}
.ws56{word-spacing:0.962667pt;}
.ws1a{word-spacing:0.997333pt;}
.ws6c{word-spacing:1.008000pt;}
.ws27{word-spacing:1.013333pt;}
.wsa4{word-spacing:1.045333pt;}
.wsdb{word-spacing:1.064000pt;}
.wsff{word-spacing:1.104000pt;}
.ws77{word-spacing:1.114667pt;}
.ws74{word-spacing:1.120000pt;}
.ws84{word-spacing:1.157333pt;}
.ws7f{word-spacing:1.165333pt;}
.ws30{word-spacing:1.194667pt;}
.ws25{word-spacing:1.216000pt;}
.ws73{word-spacing:1.269333pt;}
.wsb4{word-spacing:1.306667pt;}
.wsb0{word-spacing:1.317333pt;}
.wse3{word-spacing:1.344000pt;}
.ws3c{word-spacing:1.368000pt;}
.wse1{word-spacing:1.381333pt;}
.ws10a{word-spacing:1.392000pt;}
.ws49{word-spacing:1.418667pt;}
.ws32{word-spacing:1.456000pt;}
.wsa0{word-spacing:1.493333pt;}
.ws7e{word-spacing:1.520000pt;}
.wse2{word-spacing:1.530667pt;}
.ws14{word-spacing:1.541333pt;}
.ws2e{word-spacing:1.568000pt;}
.wsc4{word-spacing:1.570667pt;}
.ws106{word-spacing:1.584000pt;}
.wsb3{word-spacing:1.605333pt;}
.wsae{word-spacing:1.621333pt;}
.wsbd{word-spacing:1.642667pt;}
.ws78{word-spacing:1.672000pt;}
.ws93{word-spacing:1.680000pt;}
.ws60{word-spacing:1.717333pt;}
.ws8c{word-spacing:1.722667pt;}
.ws10c{word-spacing:1.728000pt;}
.wse4{word-spacing:1.754667pt;}
.ws2b{word-spacing:1.773333pt;}
.ws47{word-spacing:1.824000pt;}
.ws5e{word-spacing:1.829333pt;}
.wsf5{word-spacing:1.866667pt;}
.ws53{word-spacing:1.874667pt;}
.ws6a{word-spacing:1.904000pt;}
.ws108{word-spacing:1.920000pt;}
.ws4f{word-spacing:1.925333pt;}
.wsa6{word-spacing:1.978667pt;}
.ws33{word-spacing:2.016000pt;}
.ws55{word-spacing:2.026667pt;}
.ws16{word-spacing:2.040000pt;}
.wsfb{word-spacing:2.064000pt;}
.wsee{word-spacing:2.077333pt;}
.ws2d{word-spacing:2.128000pt;}
.wsa9{word-spacing:2.165333pt;}
.wsf4{word-spacing:2.178667pt;}
.wsbf{word-spacing:2.202667pt;}
.ws3e{word-spacing:2.229333pt;}
.ws113{word-spacing:2.256000pt;}
.ws86{word-spacing:2.277333pt;}
.wsab{word-spacing:2.280000pt;}
.wsb{word-spacing:2.312000pt;}
.ws4a{word-spacing:2.314667pt;}
.ws71{word-spacing:2.352000pt;}
.ws46{word-spacing:2.381333pt;}
.ws95{word-spacing:2.426667pt;}
.ws63{word-spacing:2.432000pt;}
.wsca{word-spacing:2.464000pt;}
.ws88{word-spacing:2.482667pt;}
.wsbc{word-spacing:2.501333pt;}
.wsad{word-spacing:2.533333pt;}
.wsb1{word-spacing:2.538667pt;}
.ws9e{word-spacing:2.576000pt;}
.ws5a{word-spacing:2.584000pt;}
.ws2f{word-spacing:2.613333pt;}
.ws8a{word-spacing:2.634667pt;}
.ws83{word-spacing:2.650667pt;}
.wsd4{word-spacing:2.685333pt;}
.wsa2{word-spacing:2.688000pt;}
.ws91{word-spacing:2.725333pt;}
.ws105{word-spacing:2.736000pt;}
.ws92{word-spacing:2.762667pt;}
.ws109{word-spacing:2.784000pt;}
.ws76{word-spacing:2.786667pt;}
.wsde{word-spacing:2.800000pt;}
.ws18{word-spacing:2.810667pt;}
.wsf7{word-spacing:2.837333pt;}
.ws6b{word-spacing:2.874667pt;}
.ws24{word-spacing:2.888000pt;}
.wscc{word-spacing:2.912000pt;}
.ws41{word-spacing:2.938667pt;}
.wsdd{word-spacing:2.949333pt;}
.ws70{word-spacing:3.024000pt;}
.wsea{word-spacing:3.040000pt;}
.ws85{word-spacing:3.061333pt;}
.ws2c{word-spacing:3.090667pt;}
.ws64{word-spacing:3.141333pt;}
.ws100{word-spacing:3.168000pt;}
.ws81{word-spacing:3.173333pt;}
.ws62{word-spacing:3.192000pt;}
.wsdf{word-spacing:3.210667pt;}
.ws8f{word-spacing:3.242667pt;}
.ws4c{word-spacing:3.285333pt;}
.wsf3{word-spacing:3.293333pt;}
.ws69{word-spacing:3.322667pt;}
.ws99{word-spacing:3.344000pt;}
.wse5{word-spacing:3.360000pt;}
.ws1d{word-spacing:3.394667pt;}
.wsc9{word-spacing:3.434667pt;}
.ws8{word-spacing:3.445333pt;}
.ws5b{word-spacing:3.472000pt;}
.wse7{word-spacing:3.496000pt;}
.ws5c{word-spacing:3.509333pt;}
.ws3b{word-spacing:3.546667pt;}
.wsc0{word-spacing:3.584000pt;}
.wsc6{word-spacing:3.597333pt;}
.ws75{word-spacing:3.648000pt;}
.wsa3{word-spacing:3.658667pt;}
.wsd7{word-spacing:3.696000pt;}
.wse0{word-spacing:3.698667pt;}
.wsd3{word-spacing:3.749333pt;}
.ws6f{word-spacing:3.770667pt;}
.ws8d{word-spacing:3.800000pt;}
.wsa1{word-spacing:3.808000pt;}
.ws44{word-spacing:3.850667pt;}
.ws50{word-spacing:3.901333pt;}
.ws6e{word-spacing:3.920000pt;}
.ws9a{word-spacing:3.952000pt;}
.ws68{word-spacing:4.002667pt;}
.ws98{word-spacing:4.053333pt;}
.ws61{word-spacing:4.069333pt;}
.ws20{word-spacing:4.104000pt;}
.ws9f{word-spacing:4.106667pt;}
.wsfa{word-spacing:4.128000pt;}
.ws1f{word-spacing:4.154667pt;}
.ws116{word-spacing:4.176000pt;}
.ws94{word-spacing:4.218667pt;}
.ws7a{word-spacing:4.256000pt;}
.wsfe{word-spacing:4.272000pt;}
.wscd{word-spacing:4.293333pt;}
.wsa{word-spacing:4.306667pt;}
.ws7{word-spacing:4.352000pt;}
.wsaa{word-spacing:4.357333pt;}
.ws6d{word-spacing:4.368000pt;}
.ws19{word-spacing:4.397333pt;}
.wseb{word-spacing:4.408000pt;}
.ws31{word-spacing:4.442667pt;}
.wsb7{word-spacing:4.458667pt;}
.ws48{word-spacing:4.509333pt;}
.ws82{word-spacing:4.554667pt;}
.ws3a{word-spacing:4.560000pt;}
.ws59{word-spacing:4.610667pt;}
.wsaf{word-spacing:4.661333pt;}
.ws11{word-spacing:4.669333pt;}
.ws102{word-spacing:4.704000pt;}
.ws37{word-spacing:4.762667pt;}
.wsd8{word-spacing:4.778667pt;}
.ws42{word-spacing:4.813333pt;}
.wsd9{word-spacing:4.853333pt;}
.ws58{word-spacing:4.864000pt;}
.ws39{word-spacing:4.914667pt;}
.ws22{word-spacing:4.965333pt;}
.wsda{word-spacing:5.002667pt;}
.wsc5{word-spacing:5.016000pt;}
.wsf6{word-spacing:5.066667pt;}
.ws4d{word-spacing:5.114667pt;}
.ws29{word-spacing:5.117333pt;}
.ws10b{word-spacing:5.136000pt;}
.ws13{word-spacing:5.168000pt;}
.ws5d{word-spacing:5.189333pt;}
.ws51{word-spacing:5.218667pt;}
.ws79{word-spacing:5.269333pt;}
.wsf1{word-spacing:5.320000pt;}
.wscf{word-spacing:5.370667pt;}
.ws8b{word-spacing:5.421333pt;}
.ws67{word-spacing:5.472000pt;}
.ws6{word-spacing:5.485333pt;}
.wse{word-spacing:5.621333pt;}
.ws7c{word-spacing:5.674667pt;}
.ws8e{word-spacing:5.725333pt;}
.ws12{word-spacing:5.757333pt;}
.ws45{word-spacing:5.776000pt;}
.wse6{word-spacing:5.826667pt;}
.ws9b{word-spacing:5.877333pt;}
.ws97{word-spacing:5.928000pt;}
.ws15{word-spacing:5.938667pt;}
.ws107{word-spacing:5.952000pt;}
.ws66{word-spacing:5.978667pt;}
.wsc{word-spacing:5.984000pt;}
.wsef{word-spacing:6.029333pt;}
.ws52{word-spacing:6.080000pt;}
.ws80{word-spacing:6.130667pt;}
.ws103{word-spacing:6.144000pt;}
.wsc7{word-spacing:6.181333pt;}
.ws57{word-spacing:6.232000pt;}
.ws7d{word-spacing:6.282667pt;}
.ws5{word-spacing:6.301333pt;}
.wsf2{word-spacing:6.333333pt;}
.ws9c{word-spacing:6.384000pt;}
.wsd1{word-spacing:6.434667pt;}
.ws26{word-spacing:6.485333pt;}
.ws28{word-spacing:6.536000pt;}
.wsce{word-spacing:6.637333pt;}
.wsfd{word-spacing:6.672000pt;}
.ws65{word-spacing:6.688000pt;}
.wsdc{word-spacing:6.738667pt;}
.ws43{word-spacing:6.840000pt;}
.wsf0{word-spacing:6.890667pt;}
.ws38{word-spacing:6.941333pt;}
.wsc8{word-spacing:6.992000pt;}
.ws1e{word-spacing:7.042667pt;}
.ws1b{word-spacing:11.840000pt;}
.ws2{word-spacing:471.648000pt;}
._2{margin-left:-464.544000pt;}
._13{margin-left:-20.520000pt;}
._16{margin-left:-19.304000pt;}
._14{margin-left:-18.088000pt;}
._17{margin-left:-14.642667pt;}
._11{margin-left:-13.440000pt;}
._15{margin-left:-12.362667pt;}
._19{margin-left:-10.901333pt;}
._b{margin-left:-9.031200pt;}
._c{margin-left:-7.995467pt;}
._1{margin-left:-6.720000pt;}
._12{margin-left:-5.712000pt;}
._6{margin-left:-4.320000pt;}
._0{margin-left:-3.040000pt;}
._3{margin-left:-1.440000pt;}
._5{width:1.280000pt;}
._18{width:2.571200pt;}
._8{width:3.904000pt;}
._d{width:4.798933pt;}
._f{width:6.315467pt;}
._7{width:7.264000pt;}
._a{width:8.978667pt;}
._10{width:11.893333pt;}
._1a{width:14.000000pt;}
._1c{width:14.896000pt;}
._1b{width:19.253333pt;}
._9{width:292.210667pt;}
._4{width:335.840000pt;}
._e{width:681.864000pt;}
._1d{width:684.797333pt;}
.fs9{font-size:29.538667pt;}
.fs0{font-size:32.000000pt;}
.fs6{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:79.370000pt;}
.y1{bottom:89.322000pt;}
.y154{bottom:118.887067pt;}
.y1d0{bottom:119.059200pt;}
.y1bd{bottom:119.067200pt;}
.y1d9{bottom:119.071200pt;}
.y1ec{bottom:119.075067pt;}
.y80{bottom:119.079200pt;}
.y10a{bottom:119.088000pt;}
.y1c8{bottom:119.092000pt;}
.y19d{bottom:119.094000pt;}
.yd0{bottom:119.095600pt;}
.y9a{bottom:119.096933pt;}
.y58{bottom:119.099600pt;}
.y17d{bottom:119.104000pt;}
.yba{bottom:119.104933pt;}
.yde{bottom:119.107600pt;}
.y11b{bottom:119.119467pt;}
.yf1{bottom:119.128000pt;}
.y190{bottom:119.128800pt;}
.y216{bottom:120.001733pt;}
.y1cf{bottom:130.427200pt;}
.y1bc{bottom:130.435200pt;}
.y1d8{bottom:130.439200pt;}
.y1eb{bottom:130.443067pt;}
.y7f{bottom:130.447200pt;}
.y109{bottom:130.456000pt;}
.y1c7{bottom:130.460000pt;}
.y19c{bottom:130.462000pt;}
.ycf{bottom:130.463600pt;}
.y99{bottom:130.464933pt;}
.y57{bottom:130.467600pt;}
.y17c{bottom:130.472000pt;}
.yb9{bottom:130.472933pt;}
.ydd{bottom:130.475600pt;}
.y11a{bottom:130.487467pt;}
.yf0{bottom:130.496000pt;}
.y153{bottom:134.555733pt;}
.y215{bottom:134.929733pt;}
.y12a{bottom:136.147600pt;}
.y18f{bottom:136.180800pt;}
.y23{bottom:141.430667pt;}
.y1bb{bottom:141.803200pt;}
.y1d7{bottom:141.807200pt;}
.y1ea{bottom:141.811067pt;}
.y7e{bottom:141.815200pt;}
.y108{bottom:141.824000pt;}
.y1c6{bottom:141.828000pt;}
.y19b{bottom:141.830000pt;}
.y98{bottom:141.832933pt;}
.y56{bottom:141.835600pt;}
.y17b{bottom:141.840000pt;}
.yb8{bottom:141.840933pt;}
.ydc{bottom:141.843600pt;}
.y119{bottom:141.855467pt;}
.yef{bottom:141.864000pt;}
.yce{bottom:147.515600pt;}
.y18e{bottom:147.548800pt;}
.y214{bottom:149.857733pt;}
.y152{bottom:150.224400pt;}
.y1ba{bottom:153.171200pt;}
.y1d6{bottom:153.175200pt;}
.y1e9{bottom:153.179067pt;}
.y7d{bottom:153.183200pt;}
.y19a{bottom:153.198000pt;}
.y55{bottom:153.203600pt;}
.y17a{bottom:153.208000pt;}
.ydb{bottom:153.211600pt;}
.y118{bottom:153.223467pt;}
.y107{bottom:158.876000pt;}
.y1c5{bottom:158.880000pt;}
.ycd{bottom:158.883600pt;}
.y97{bottom:158.894267pt;}
.yb7{bottom:158.902267pt;}
.yee{bottom:158.916000pt;}
.y18d{bottom:158.916800pt;}
.y22{bottom:162.748667pt;}
.y1d5{bottom:164.543200pt;}
.y1e8{bottom:164.547067pt;}
.y7c{bottom:164.551200pt;}
.y199{bottom:164.566000pt;}
.y54{bottom:164.571600pt;}
.y179{bottom:164.576000pt;}
.yda{bottom:164.579600pt;}
.y117{bottom:164.591467pt;}
.y213{bottom:164.785733pt;}
.y151{bottom:165.893067pt;}
.y1ce{bottom:169.102267pt;}
.y1c4{bottom:170.248000pt;}
.ycc{bottom:170.251600pt;}
.yb6{bottom:170.270267pt;}
.yed{bottom:170.284000pt;}
.y18c{bottom:170.284800pt;}
.y1e7{bottom:175.915067pt;}
.y7b{bottom:175.919200pt;}
.y106{bottom:175.928000pt;}
.y198{bottom:175.934000pt;}
.y178{bottom:175.944000pt;}
.y96{bottom:175.946267pt;}
.yd9{bottom:175.947600pt;}
.y116{bottom:175.959467pt;}
.y21{bottom:176.960667pt;}
.y212{bottom:179.713733pt;}
.y150{bottom:181.561733pt;}
.y1c3{bottom:181.616000pt;}
.ycb{bottom:181.619600pt;}
.y53{bottom:181.623600pt;}
.yec{bottom:181.652000pt;}
.y18b{bottom:181.652800pt;}
.y1cd{bottom:184.745600pt;}
.y7a{bottom:187.287200pt;}
.y105{bottom:187.296000pt;}
.y197{bottom:187.302000pt;}
.y95{bottom:187.314267pt;}
.yd8{bottom:187.315600pt;}
.y115{bottom:187.327467pt;}
.yb5{bottom:187.331600pt;}
.y1b9{bottom:190.099067pt;}
.y20{bottom:191.172667pt;}
.y1c2{bottom:192.984000pt;}
.yca{bottom:192.987600pt;}
.y52{bottom:192.991600pt;}
.y177{bottom:192.996000pt;}
.yeb{bottom:193.020000pt;}
.y211{bottom:194.641733pt;}
.y14f{bottom:197.230400pt;}
.y104{bottom:198.664000pt;}
.y196{bottom:198.670000pt;}
.y94{bottom:198.682267pt;}
.yd7{bottom:198.683600pt;}
.y114{bottom:198.695467pt;}
.yb4{bottom:198.699600pt;}
.y18a{bottom:198.704800pt;}
.y1cc{bottom:200.388933pt;}
.yc9{bottom:204.355600pt;}
.y51{bottom:204.359600pt;}
.y176{bottom:204.364000pt;}
.y1f{bottom:205.384667pt;}
.y1b8{bottom:205.742400pt;}
.y210{bottom:209.569733pt;}
.y103{bottom:210.032000pt;}
.y1c1{bottom:210.036000pt;}
.y195{bottom:210.038000pt;}
.y93{bottom:210.050267pt;}
.yd6{bottom:210.051600pt;}
.y113{bottom:210.063467pt;}
.yb3{bottom:210.067600pt;}
.yea{bottom:210.072000pt;}
.y189{bottom:210.072800pt;}
.y14e{bottom:212.899067pt;}
.y1d4{bottom:213.811067pt;}
.yc8{bottom:215.723600pt;}
.y50{bottom:215.727600pt;}
.y175{bottom:215.732000pt;}
.y1cb{bottom:216.032267pt;}
.y1e{bottom:219.596667pt;}
.y1b7{bottom:221.385733pt;}
.y102{bottom:221.400000pt;}
.y1c0{bottom:221.404000pt;}
.y194{bottom:221.406000pt;}
.y92{bottom:221.418267pt;}
.yd5{bottom:221.419600pt;}
.y112{bottom:221.431467pt;}
.yb2{bottom:221.435600pt;}
.ye9{bottom:221.440000pt;}
.y188{bottom:221.440800pt;}
.y20f{bottom:224.497733pt;}
.y1e6{bottom:224.593733pt;}
.yc7{bottom:227.091600pt;}
.y4f{bottom:227.095600pt;}
.y174{bottom:227.100000pt;}
.y14d{bottom:228.567733pt;}
.y1d3{bottom:229.454400pt;}
.y79{bottom:231.648400pt;}
.y1ca{bottom:231.675600pt;}
.y1bf{bottom:232.772000pt;}
.y91{bottom:232.786267pt;}
.yd4{bottom:232.787600pt;}
.y111{bottom:232.799467pt;}
.yb1{bottom:232.803600pt;}
.ye8{bottom:232.808000pt;}
.y187{bottom:232.808800pt;}
.y1d{bottom:233.808667pt;}
.y1b6{bottom:237.029067pt;}
.yc6{bottom:238.459600pt;}
.y4e{bottom:238.463600pt;}
.y193{bottom:238.467333pt;}
.y173{bottom:238.468000pt;}
.y20e{bottom:239.425733pt;}
.y1e5{bottom:239.521733pt;}
.y90{bottom:244.154267pt;}
.y110{bottom:244.167467pt;}
.yb0{bottom:244.171600pt;}
.ye7{bottom:244.176000pt;}
.y186{bottom:244.176800pt;}
.y14c{bottom:244.236400pt;}
.y1d2{bottom:245.097733pt;}
.y78{bottom:247.291733pt;}
.y1c{bottom:248.020667pt;}
.y4d{bottom:249.831600pt;}
.y192{bottom:249.835333pt;}
.y172{bottom:249.836000pt;}
.yd3{bottom:249.839600pt;}
.y1b5{bottom:252.672400pt;}
.y1e4{bottom:254.449733pt;}
.y10f{bottom:255.535467pt;}
.ye6{bottom:255.544000pt;}
.y185{bottom:255.544800pt;}
.y14b{bottom:259.905067pt;}
.y1d1{bottom:260.741067pt;}
.y8f{bottom:261.206267pt;}
.yd2{bottom:261.207600pt;}
.yaf{bottom:261.232933pt;}
.y1b{bottom:262.232667pt;}
.y1c9{bottom:262.242400pt;}
.y77{bottom:262.935067pt;}
.y101{bottom:263.647067pt;}
.y171{bottom:266.888000pt;}
.y10e{bottom:266.903467pt;}
.ye5{bottom:266.912000pt;}
.y1b4{bottom:268.315733pt;}
.y20d{bottom:269.276400pt;}
.y1e3{bottom:269.377733pt;}
.y8e{bottom:272.574267pt;}
.yd1{bottom:272.575600pt;}
.y184{bottom:272.596800pt;}
.yae{bottom:272.600933pt;}
.y14a{bottom:275.573733pt;}
.y1be{bottom:276.384400pt;}
.y129{bottom:276.397067pt;}
.y1a{bottom:276.444667pt;}
.ye4{bottom:278.280000pt;}
.y76{bottom:278.578400pt;}
.y100{bottom:279.290400pt;}
.y10d{bottom:283.955467pt;}
.y183{bottom:283.964800pt;}
.yad{bottom:283.968933pt;}
.yc5{bottom:284.212400pt;}
.y1e2{bottom:284.305733pt;}
.y4c{bottom:286.671067pt;}
.ye3{bottom:289.648000pt;}
.y149{bottom:291.242400pt;}
.y191{bottom:292.027733pt;}
.y128{bottom:292.040400pt;}
.y75{bottom:294.221733pt;}
.yff{bottom:294.933733pt;}
.y10c{bottom:295.323467pt;}
.y182{bottom:295.332800pt;}
.yac{bottom:295.336933pt;}
.y1e1{bottom:299.233733pt;}
.y1b3{bottom:299.602400pt;}
.yc4{bottom:299.855733pt;}
.ye2{bottom:301.016000pt;}
.y4b{bottom:302.314400pt;}
.y10b{bottom:306.691467pt;}
.y181{bottom:306.700800pt;}
.yab{bottom:306.704933pt;}
.y148{bottom:306.911067pt;}
.y8d{bottom:307.671067pt;}
.y127{bottom:307.683733pt;}
.y74{bottom:309.865067pt;}
.yfe{bottom:310.577067pt;}
.ye1{bottom:312.384000pt;}
.y1e0{bottom:314.161733pt;}
.y20c{bottom:314.685733pt;}
.y1b2{bottom:315.245733pt;}
.yc3{bottom:315.499067pt;}
.y170{bottom:316.221067pt;}
.y4a{bottom:317.957733pt;}
.y180{bottom:318.068800pt;}
.y19{bottom:321.936667pt;}
.y147{bottom:322.579733pt;}
.y8c{bottom:323.314400pt;}
.y126{bottom:323.327067pt;}
.ye0{bottom:323.752000pt;}
.yaa{bottom:323.766267pt;}
.y73{bottom:325.508400pt;}
.yfd{bottom:326.220400pt;}
.y1df{bottom:329.089733pt;}
.y20b{bottom:329.613733pt;}
.y1b1{bottom:330.889067pt;}
.yc2{bottom:331.142400pt;}
.y16f{bottom:331.864400pt;}
.y49{bottom:333.601067pt;}
.ydf{bottom:335.120000pt;}
.y17f{bottom:335.120800pt;}
.ya9{bottom:335.134267pt;}
.y18{bottom:336.148667pt;}
.y146{bottom:338.248400pt;}
.y8b{bottom:338.957733pt;}
.y125{bottom:338.970400pt;}
.y72{bottom:341.151733pt;}
.yfc{bottom:341.863733pt;}
.y1de{bottom:344.017733pt;}
.y20a{bottom:344.541733pt;}
.y17e{bottom:346.488800pt;}
.ya8{bottom:346.502267pt;}
.y1b0{bottom:346.532400pt;}
.yc1{bottom:346.785733pt;}
.y16e{bottom:347.507733pt;}
.y48{bottom:349.244400pt;}
.y145{bottom:353.917067pt;}
.y8a{bottom:354.601067pt;}
.y71{bottom:356.795067pt;}
.y17{bottom:357.466667pt;}
.yfb{bottom:357.507067pt;}
.y1dd{bottom:358.945733pt;}
.y209{bottom:359.469733pt;}
.y1af{bottom:362.175733pt;}
.yc0{bottom:362.429067pt;}
.y16d{bottom:363.151067pt;}
.ya7{bottom:363.563600pt;}
.y47{bottom:364.887733pt;}
.y144{bottom:369.585733pt;}
.y89{bottom:370.244400pt;}
.y16{bottom:371.678667pt;}
.y70{bottom:372.438400pt;}
.yfa{bottom:373.150400pt;}
.y1dc{bottom:373.873733pt;}
.y208{bottom:374.397733pt;}
.ya6{bottom:374.931600pt;}
.ybf{bottom:378.072400pt;}
.y16c{bottom:378.794400pt;}
.y46{bottom:380.531067pt;}
.y143{bottom:385.254400pt;}
.y88{bottom:385.887733pt;}
.y15{bottom:385.890667pt;}
.ya5{bottom:386.299600pt;}
.y6f{bottom:388.081733pt;}
.yf9{bottom:388.793733pt;}
.y1db{bottom:388.801733pt;}
.y207{bottom:389.325733pt;}
.y1ae{bottom:393.462400pt;}
.ybe{bottom:393.715733pt;}
.y16b{bottom:394.437733pt;}
.y45{bottom:396.174400pt;}
.y14{bottom:400.102667pt;}
.y142{bottom:400.923067pt;}
.y87{bottom:401.531067pt;}
.ya4{bottom:403.360933pt;}
.y6e{bottom:403.725067pt;}
.y206{bottom:404.253733pt;}
.yf8{bottom:404.437067pt;}
.y1ad{bottom:409.105733pt;}
.ybd{bottom:409.359067pt;}
.y16a{bottom:410.081067pt;}
.y44{bottom:411.817733pt;}
.y13{bottom:414.314667pt;}
.ya3{bottom:414.728933pt;}
.y141{bottom:416.591733pt;}
.y86{bottom:417.174400pt;}
.y1da{bottom:418.652400pt;}
.y205{bottom:419.181733pt;}
.y6d{bottom:419.368400pt;}
.yf7{bottom:420.080400pt;}
.y1ac{bottom:424.749067pt;}
.ybc{bottom:425.002400pt;}
.y169{bottom:425.724400pt;}
.y43{bottom:427.461067pt;}
.y12{bottom:428.526667pt;}
.y140{bottom:432.260400pt;}
.y85{bottom:432.817733pt;}
.y204{bottom:434.109733pt;}
.yf6{bottom:435.723733pt;}
.y1ab{bottom:440.392400pt;}
.ybb{bottom:440.645733pt;}
.y168{bottom:441.367733pt;}
.y11{bottom:442.738667pt;}
.y42{bottom:443.104400pt;}
.y13f{bottom:447.929067pt;}
.y84{bottom:448.461067pt;}
.y203{bottom:449.037733pt;}
.y6c{bottom:449.936400pt;}
.yf5{bottom:451.367067pt;}
.y1aa{bottom:456.035733pt;}
.ya2{bottom:456.289067pt;}
.y10{bottom:456.950667pt;}
.y167{bottom:457.011067pt;}
.y41{bottom:458.747733pt;}
.y13e{bottom:463.597733pt;}
.y202{bottom:463.965733pt;}
.y83{bottom:464.104400pt;}
.y6b{bottom:465.576400pt;}
.yf4{bottom:467.010400pt;}
.yf{bottom:471.162667pt;}
.y1a9{bottom:471.679067pt;}
.ya1{bottom:471.932400pt;}
.y166{bottom:472.654400pt;}
.y40{bottom:474.391067pt;}
.y201{bottom:478.893733pt;}
.y13d{bottom:479.266400pt;}
.y82{bottom:479.747733pt;}
.ya0{bottom:487.575733pt;}
.y165{bottom:488.297733pt;}
.y3f{bottom:490.034400pt;}
.y200{bottom:493.821733pt;}
.y13c{bottom:494.935067pt;}
.y81{bottom:495.391067pt;}
.yf3{bottom:497.575067pt;}
.y1a8{bottom:499.178400pt;}
.y9f{bottom:503.219067pt;}
.y164{bottom:503.941067pt;}
.y3e{bottom:505.677733pt;}
.y1ff{bottom:508.749733pt;}
.y13b{bottom:510.603733pt;}
.y6a{bottom:511.034400pt;}
.y1a7{bottom:514.821733pt;}
.y9e{bottom:518.862400pt;}
.y163{bottom:519.584400pt;}
.y3d{bottom:521.321067pt;}
.y1fe{bottom:523.677733pt;}
.y13a{bottom:526.272400pt;}
.y69{bottom:526.677733pt;}
.yf2{bottom:528.141733pt;}
.y9d{bottom:534.505733pt;}
.y162{bottom:535.227733pt;}
.y3c{bottom:536.964400pt;}
.y1fd{bottom:538.605733pt;}
.y139{bottom:541.941067pt;}
.y68{bottom:542.321067pt;}
.y1a6{bottom:546.108400pt;}
.y9c{bottom:550.149067pt;}
.y161{bottom:550.871067pt;}
.y3b{bottom:552.607733pt;}
.ye{bottom:553.410000pt;}
.y1fc{bottom:553.533733pt;}
.y138{bottom:557.609733pt;}
.y67{bottom:557.964400pt;}
.y34{bottom:559.100267pt;}
.y1a5{bottom:561.751733pt;}
.y9b{bottom:565.792400pt;}
.y160{bottom:566.514400pt;}
.y3a{bottom:568.251067pt;}
.y1fb{bottom:568.461733pt;}
.y137{bottom:573.278400pt;}
.y66{bottom:573.607733pt;}
.y33{bottom:574.028267pt;}
.y1a4{bottom:577.395067pt;}
.yd{bottom:580.418000pt;}
.y124{bottom:581.435733pt;}
.y15f{bottom:582.157733pt;}
.y1fa{bottom:583.389733pt;}
.y39{bottom:583.894400pt;}
.y136{bottom:588.947067pt;}
.y65{bottom:589.251067pt;}
.y1a3{bottom:593.038400pt;}
.yc{bottom:593.207333pt;}
.y123{bottom:597.079067pt;}
.y15e{bottom:597.801067pt;}
.y1f9{bottom:598.317733pt;}
.y38{bottom:599.537733pt;}
.y135{bottom:604.615733pt;}
.y64{bottom:604.894400pt;}
.yb{bottom:605.996667pt;}
.y1a2{bottom:608.681733pt;}
.y122{bottom:612.722400pt;}
.y1f8{bottom:613.245733pt;}
.y15d{bottom:613.444400pt;}
.y32{bottom:614.498400pt;}
.y37{bottom:615.181067pt;}
.ya{bottom:618.786000pt;}
.y134{bottom:620.284400pt;}
.y63{bottom:620.537733pt;}
.y1a1{bottom:624.325067pt;}
.y1f7{bottom:628.173733pt;}
.y121{bottom:628.365733pt;}
.y31{bottom:628.710400pt;}
.y15c{bottom:629.087733pt;}
.y36{bottom:630.824400pt;}
.y9{bottom:635.362000pt;}
.y133{bottom:635.953067pt;}
.y62{bottom:636.181067pt;}
.y1a0{bottom:639.968400pt;}
.y1f6{bottom:643.101733pt;}
.y120{bottom:644.009067pt;}
.y30{bottom:650.028400pt;}
.y132{bottom:651.621733pt;}
.y61{bottom:651.824400pt;}
.y15b{bottom:652.546400pt;}
.y19f{bottom:655.611733pt;}
.y1f5{bottom:658.029733pt;}
.y11f{bottom:659.652400pt;}
.y35{bottom:661.391067pt;}
.y2f{bottom:664.240400pt;}
.y131{bottom:667.290400pt;}
.y60{bottom:667.467733pt;}
.y15a{bottom:668.189733pt;}
.y8{bottom:670.827200pt;}
.y19e{bottom:671.255067pt;}
.y1f4{bottom:672.957733pt;}
.y11e{bottom:675.295733pt;}
.y2e{bottom:678.452400pt;}
.y130{bottom:682.959067pt;}
.y5f{bottom:683.111067pt;}
.y159{bottom:683.833067pt;}
.y1f3{bottom:687.885733pt;}
.y7{bottom:689.307200pt;}
.y11d{bottom:690.939067pt;}
.y2d{bottom:692.664400pt;}
.y12f{bottom:698.627733pt;}
.y5e{bottom:698.754400pt;}
.y158{bottom:699.476400pt;}
.y1f2{bottom:702.813733pt;}
.y11c{bottom:706.582400pt;}
.y2c{bottom:706.876400pt;}
.y6{bottom:707.787200pt;}
.y12e{bottom:714.296400pt;}
.y5d{bottom:714.397733pt;}
.y157{bottom:715.119733pt;}
.y1f1{bottom:717.741733pt;}
.y2b{bottom:721.088400pt;}
.y12d{bottom:729.965067pt;}
.y5c{bottom:730.041067pt;}
.y156{bottom:730.763067pt;}
.y1f0{bottom:732.669733pt;}
.y2a{bottom:735.300400pt;}
.y5{bottom:737.597733pt;}
.y12c{bottom:745.633733pt;}
.y5b{bottom:745.684400pt;}
.y155{bottom:746.406400pt;}
.y1ef{bottom:747.597733pt;}
.y29{bottom:749.512400pt;}
.y4{bottom:756.077733pt;}
.y12b{bottom:761.302400pt;}
.y5a{bottom:761.327733pt;}
.y1ee{bottom:762.525733pt;}
.y28{bottom:763.724400pt;}
.y3{bottom:774.557733pt;}
.y59{bottom:776.971067pt;}
.y1ed{bottom:777.453733pt;}
.y27{bottom:777.936400pt;}
.y26{bottom:812.297733pt;}
.y25{bottom:820.295067pt;}
.y24{bottom:832.297733pt;}
.h2{height:23.712000pt;}
.h9{height:27.664000pt;}
.ha{height:34.720000pt;}
.hf{height:37.544000pt;}
.h10{height:37.645333pt;}
.h3{height:37.760000pt;}
.he{height:39.626667pt;}
.h7{height:39.680000pt;}
.h8{height:42.160000pt;}
.h6{height:43.472000pt;}
.hc{height:44.640000pt;}
.hd{height:47.120000pt;}
.h4{height:47.552000pt;}
.hb{height:49.600000pt;}
.h5{height:54.560000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:94.488267pt;}
.x1{left:105.826800pt;}
.xc{left:110.941467pt;}
.x8{left:113.385867pt;}
.xd{left:115.273200pt;}
.x2{left:124.724400pt;}
.xf{left:126.614133pt;}
.xe{left:128.497200pt;}
.x11{left:132.285467pt;}
.xb{left:139.933200pt;}
.x12{left:143.623067pt;}
.x10{left:147.802133pt;}
.x13{left:159.139733pt;}
.x7{left:186.339200pt;}
.xa{left:197.677733pt;}
.x6{left:220.291200pt;}
.x9{left:231.629733pt;}
.x4{left:287.288667pt;}
.x3{left:385.298000pt;}
}




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