
    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_af5eb207ee7bbc8004db311a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.115723;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_70ff6ed6ea5a760fedb20357.woff')format("woff");}.ff2{font-family:ff2;line-height:1.025879;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_dc364140f3939b69f680b1a6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.292969;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_9f4e042416f870b4c047ab74.woff')format("woff");}.ff4{font-family:ff4;line-height:1.115723;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_8c429c7a432ee56a16391337.woff')format("woff");}.ff5{font-family:ff5;line-height:0.907715;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_92c3750ca6fd9f48a42e9a71.woff')format("woff");}.ff6{font-family:ff6;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5c8e591bfa4b3187b02f0d8d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.055664;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-16.977000px;}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.939800px;}
.ls14{letter-spacing:-7.371000px;}
.lsd4{letter-spacing:-6.552000px;}
.lsd3{letter-spacing:-5.733000px;}
.ls45{letter-spacing:-4.968000px;}
.ls4e{letter-spacing:-4.554000px;}
.lsad{letter-spacing:-4.347000px;}
.lsca{letter-spacing:-4.221000px;}
.ls56{letter-spacing:-4.200000px;}
.lsc9{letter-spacing:-4.158000px;}
.lsa4{letter-spacing:-4.071000px;}
.lse5{letter-spacing:-3.840000px;}
.ls4c{letter-spacing:-3.795000px;}
.ls46{letter-spacing:-3.657000px;}
.ls47{letter-spacing:-3.174000px;}
.ls75{letter-spacing:-3.105000px;}
.ls76{letter-spacing:-3.036000px;}
.ls44{letter-spacing:-2.898000px;}
.lsda{letter-spacing:-2.772000px;}
.ls50{letter-spacing:-2.553000px;}
.lsd0{letter-spacing:-2.550000px;}
.ls1{letter-spacing:-2.475000px;}
.ls97{letter-spacing:-2.346000px;}
.lsc7{letter-spacing:-2.331000px;}
.ls6d{letter-spacing:-2.277000px;}
.ls7a{letter-spacing:-2.208000px;}
.lsc5{letter-spacing:-2.205000px;}
.ls5b{letter-spacing:-2.139000px;}
.lsbf{letter-spacing:-2.100000px;}
.lsa8{letter-spacing:-2.079000px;}
.ls59{letter-spacing:-2.070000px;}
.lse1{letter-spacing:-2.040000px;}
.ls30{letter-spacing:-2.001000px;}
.ls86{letter-spacing:-1.932000px;}
.ls7b{letter-spacing:-1.863000px;}
.lsd9{letter-spacing:-1.827000px;}
.lse0{letter-spacing:-1.800000px;}
.ls2c{letter-spacing:-1.794000px;}
.lscd{letter-spacing:-1.764000px;}
.lse2{letter-spacing:-1.740000px;}
.ls6c{letter-spacing:-1.725000px;}
.lsd2{letter-spacing:-1.701000px;}
.ls6b{letter-spacing:-1.656000px;}
.lsbb{letter-spacing:-1.638000px;}
.lse{letter-spacing:-1.620000px;}
.ls88{letter-spacing:-1.587000px;}
.ls42{letter-spacing:-1.518000px;}
.lsb7{letter-spacing:-1.512000px;}
.ls4b{letter-spacing:-1.449000px;}
.lsc8{letter-spacing:-1.386000px;}
.ls32{letter-spacing:-1.380000px;}
.ls4f{letter-spacing:-1.311000px;}
.ls10{letter-spacing:-1.260000px;}
.ls5e{letter-spacing:-1.242000px;}
.ls7{letter-spacing:-1.200000px;}
.lscc{letter-spacing:-1.197000px;}
.ls8e{letter-spacing:-1.188000px;}
.ls2f{letter-spacing:-1.173000px;}
.ls25{letter-spacing:-1.134000px;}
.ls43{letter-spacing:-1.104000px;}
.ls6f{letter-spacing:-1.086129px;}
.lsb5{letter-spacing:-1.071000px;}
.ls2b{letter-spacing:-1.035000px;}
.ls1a{letter-spacing:-1.026000px;}
.lsb0{letter-spacing:-1.008000px;}
.ls8d{letter-spacing:-0.972000px;}
.ls2d{letter-spacing:-0.966000px;}
.lsaf{letter-spacing:-0.945000px;}
.ls5a{letter-spacing:-0.925221px;}
.ls1e{letter-spacing:-0.918000px;}
.ls6a{letter-spacing:-0.897000px;}
.lsbd{letter-spacing:-0.882000px;}
.ls81{letter-spacing:-0.864000px;}
.ls40{letter-spacing:-0.855000px;}
.lse6{letter-spacing:-0.840000px;}
.ls3c{letter-spacing:-0.828000px;}
.lsae{letter-spacing:-0.819000px;}
.ls8c{letter-spacing:-0.810000px;}
.ls33{letter-spacing:-0.759000px;}
.ls8f{letter-spacing:-0.756000px;}
.ls70{letter-spacing:-0.724086px;}
.lse3{letter-spacing:-0.720000px;}
.ls23{letter-spacing:-0.702000px;}
.lsba{letter-spacing:-0.693000px;}
.ls2a{letter-spacing:-0.690000px;}
.ls85{letter-spacing:-0.683859px;}
.ls12{letter-spacing:-0.660000px;}
.ls18{letter-spacing:-0.648000px;}
.lsb3{letter-spacing:-0.630000px;}
.ls5d{letter-spacing:-0.621000px;}
.ls7d{letter-spacing:-0.603405px;}
.ls64{letter-spacing:-0.598158px;}
.ls24{letter-spacing:-0.594000px;}
.lsac{letter-spacing:-0.567000px;}
.ls21{letter-spacing:-0.540000px;}
.lsb6{letter-spacing:-0.504000px;}
.ls35{letter-spacing:-0.483000px;}
.lse4{letter-spacing:-0.480000px;}
.ls89{letter-spacing:-0.442497px;}
.lsc0{letter-spacing:-0.441000px;}
.ls6{letter-spacing:-0.420000px;}
.ls41{letter-spacing:-0.414000px;}
.ls8a{letter-spacing:-0.409266px;}
.ls22{letter-spacing:-0.378000px;}
.lsa{letter-spacing:-0.360000px;}
.ls80{letter-spacing:-0.346302px;}
.ls57{letter-spacing:-0.345000px;}
.ls20{letter-spacing:-0.324000px;}
.lsf{letter-spacing:-0.300000px;}
.ls15{letter-spacing:-0.276000px;}
.ls1f{letter-spacing:-0.270000px;}
.lsb1{letter-spacing:-0.252000px;}
.ls58{letter-spacing:-0.241362px;}
.ls11{letter-spacing:-0.240000px;}
.ls8b{letter-spacing:-0.220374px;}
.ls29{letter-spacing:-0.207000px;}
.ls6e{letter-spacing:-0.201135px;}
.lsb9{letter-spacing:-0.189000px;}
.lse7{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.162000px;}
.ls87{letter-spacing:-0.138000px;}
.lscb{letter-spacing:-0.126000px;}
.ls16{letter-spacing:-0.094446px;}
.lsa3{letter-spacing:-0.081000px;}
.ls34{letter-spacing:-0.069000px;}
.lsc2{letter-spacing:-0.063000px;}
.ls62{letter-spacing:-0.062964px;}
.ls1d{letter-spacing:-0.054000px;}
.ls7c{letter-spacing:-0.040227px;}
.ls4{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000300px;}
.ls95{letter-spacing:0.040227px;}
.lsb8{letter-spacing:0.063000px;}
.ls7e{letter-spacing:0.094446px;}
.ls1c{letter-spacing:0.108000px;}
.ls99{letter-spacing:0.125928px;}
.lsd5{letter-spacing:0.126000px;}
.ls9c{letter-spacing:0.138000px;}
.lsb2{letter-spacing:0.189000px;}
.ls9d{letter-spacing:0.276000px;}
.lsbc{letter-spacing:0.378000px;}
.ls36{letter-spacing:0.432000px;}
.ls5c{letter-spacing:0.552000px;}
.ls60{letter-spacing:0.563178px;}
.ls65{letter-spacing:0.566676px;}
.ls3f{letter-spacing:0.614100px;}
.lsc6{letter-spacing:0.630000px;}
.ls73{letter-spacing:0.655500px;}
.ls4d{letter-spacing:0.690000px;}
.lsb4{letter-spacing:0.756000px;}
.ls72{letter-spacing:0.759000px;}
.lsab{letter-spacing:0.812700px;}
.ls53{letter-spacing:0.897000px;}
.lsd1{letter-spacing:0.945000px;}
.ls9e{letter-spacing:0.966000px;}
.ls7f{letter-spacing:0.972000px;}
.ls63{letter-spacing:1.026000px;}
.lsa1{letter-spacing:1.035000px;}
.ls3b{letter-spacing:1.104000px;}
.ls9a{letter-spacing:1.133352px;}
.ls19{letter-spacing:1.188000px;}
.lsa6{letter-spacing:1.197000px;}
.ls39{letter-spacing:1.214700px;}
.ls1b{letter-spacing:1.242000px;}
.lsde{letter-spacing:1.260000px;}
.ls98{letter-spacing:1.287264px;}
.ls48{letter-spacing:1.311000px;}
.ls27{letter-spacing:1.311300px;}
.ls3{letter-spacing:1.344000px;}
.ls3d{letter-spacing:1.350000px;}
.ls31{letter-spacing:1.449000px;}
.ls5f{letter-spacing:1.587000px;}
.ls38{letter-spacing:1.635300px;}
.lsdc{letter-spacing:1.740000px;}
.ls4a{letter-spacing:1.932000px;}
.ls3a{letter-spacing:2.049300px;}
.ls83{letter-spacing:2.160000px;}
.ls84{letter-spacing:2.165400px;}
.lsd{letter-spacing:2.360100px;}
.ls28{letter-spacing:2.400000px;}
.lsa2{letter-spacing:2.622000px;}
.ls93{letter-spacing:2.691000px;}
.ls52{letter-spacing:3.243000px;}
.ls67{letter-spacing:3.312000px;}
.ls94{letter-spacing:3.546600px;}
.lsd6{letter-spacing:3.654000px;}
.ls91{letter-spacing:3.684600px;}
.ls13{letter-spacing:3.696000px;}
.ls92{letter-spacing:3.760500px;}
.ls96{letter-spacing:4.071000px;}
.ls8{letter-spacing:4.200000px;}
.lsdf{letter-spacing:4.320000px;}
.lsd8{letter-spacing:4.473000px;}
.ls61{letter-spacing:4.761000px;}
.ls74{letter-spacing:4.830000px;}
.ls79{letter-spacing:4.968000px;}
.lsaa{letter-spacing:5.607000px;}
.ls5{letter-spacing:5.760000px;}
.ls9{letter-spacing:5.880000px;}
.lsa7{letter-spacing:5.922000px;}
.ls2{letter-spacing:6.000000px;}
.lsd7{letter-spacing:6.048000px;}
.lsa5{letter-spacing:6.300000px;}
.ls9b{letter-spacing:7.452000px;}
.lsc3{letter-spacing:7.497000px;}
.lsce{letter-spacing:7.875000px;}
.ls55{letter-spacing:8.160156px;}
.ls69{letter-spacing:8.160756px;}
.lsc1{letter-spacing:8.316000px;}
.lsa0{letter-spacing:8.493900px;}
.lsdd{letter-spacing:8.640000px;}
.lsc4{letter-spacing:8.820000px;}
.ls78{letter-spacing:9.177000px;}
.ls77{letter-spacing:10.419000px;}
.ls54{letter-spacing:11.109000px;}
.ls2e{letter-spacing:13.110000px;}
.ls68{letter-spacing:13.220400px;}
.lsdb{letter-spacing:14.616000px;}
.lse8{letter-spacing:475.141800px;}
.ls0{letter-spacing:475.366800px;}
.lsbe{letter-spacing:475.441800px;}
.ls26{letter-spacing:475.854000px;}
.ls3e{letter-spacing:476.041800px;}
.ls90{letter-spacing:476.634000px;}
.ls51{letter-spacing:477.159000px;}
.ls9f{letter-spacing:477.234000px;}
.lsa9{letter-spacing:477.421800px;}
.lscf{letter-spacing:478.509000px;}
.ls71{letter-spacing:480.076800px;}
.ls49{letter-spacing:952.522800px;}
.ls82{letter-spacing:953.017800px;}
.lsb{letter-spacing:955.642800px;}
.ls37{letter-spacing:959.692800px;}
.ls66{letter-spacing:961.672800px;}
.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;}
}
.wsc0{word-spacing:-26.523000px;}
.wsd9{word-spacing:-25.500000px;}
.ws3{word-spacing:-22.740000px;}
.ws97{word-spacing:-22.680000px;}
.ws2{word-spacing:-22.620000px;}
.ws4f{word-spacing:-20.493000px;}
.ws93{word-spacing:-20.355000px;}
.ws7b{word-spacing:-20.286000px;}
.ws98{word-spacing:-19.389000px;}
.wsb7{word-spacing:-18.975000px;}
.wsa0{word-spacing:-18.900000px;}
.wscf{word-spacing:-18.648000px;}
.ws77{word-spacing:-18.630000px;}
.ws0{word-spacing:-18.600000px;}
.ws67{word-spacing:-18.561000px;}
.wsce{word-spacing:-18.525000px;}
.ws7a{word-spacing:-18.492000px;}
.wsa2{word-spacing:-18.459000px;}
.ws8a{word-spacing:-18.423000px;}
.ws7d{word-spacing:-18.354000px;}
.wsc2{word-spacing:-18.333000px;}
.wsd0{word-spacing:-17.829000px;}
.wsc6{word-spacing:-17.514000px;}
.ws79{word-spacing:-17.457000px;}
.wsc7{word-spacing:-17.451000px;}
.ws8c{word-spacing:-17.112000px;}
.ws8d{word-spacing:-17.043000px;}
.ws5f{word-spacing:-16.905000px;}
.ws4d{word-spacing:-16.875000px;}
.wsa{word-spacing:-16.620000px;}
.ws24{word-spacing:-16.353000px;}
.ws66{word-spacing:-16.284000px;}
.ws44{word-spacing:-16.215000px;}
.ws26{word-spacing:-16.077000px;}
.ws3b{word-spacing:-15.939000px;}
.ws27{word-spacing:-15.870000px;}
.wsa1{word-spacing:-15.750000px;}
.ws3d{word-spacing:-15.732000px;}
.ws29{word-spacing:-15.663000px;}
.ws96{word-spacing:-15.594000px;}
.ws3a{word-spacing:-15.525000px;}
.wsc1{word-spacing:-15.498000px;}
.wsb{word-spacing:-15.390000px;}
.ws5e{word-spacing:-15.387000px;}
.wsc3{word-spacing:-15.372000px;}
.ws25{word-spacing:-15.249000px;}
.wsb8{word-spacing:-15.183000px;}
.wsd{word-spacing:-15.174000px;}
.wsc4{word-spacing:-15.057000px;}
.ws28{word-spacing:-15.042000px;}
.wsba{word-spacing:-14.994000px;}
.wsb1{word-spacing:-14.931000px;}
.ws51{word-spacing:-14.904000px;}
.wsc5{word-spacing:-14.742000px;}
.wsb9{word-spacing:-14.616000px;}
.wsbb{word-spacing:-14.553000px;}
.wsb0{word-spacing:-14.490000px;}
.wsdb{word-spacing:-14.340000px;}
.ws9c{word-spacing:-14.301000px;}
.ws3c{word-spacing:-14.145000px;}
.wsa3{word-spacing:-14.049000px;}
.wsde{word-spacing:-13.980000px;}
.wsaf{word-spacing:-13.923000px;}
.wsdd{word-spacing:-13.620000px;}
.wsdc{word-spacing:-13.560000px;}
.ws9b{word-spacing:-13.482000px;}
.wse{word-spacing:-13.338000px;}
.wsda{word-spacing:-13.200000px;}
.ws1{word-spacing:-13.146000px;}
.ws2e{word-spacing:-13.110000px;}
.wsf{word-spacing:-12.960000px;}
.wsc{word-spacing:-12.690000px;}
.ws8e{word-spacing:-12.591051px;}
.ws7e{word-spacing:-12.582000px;}
.ws52{word-spacing:-11.866965px;}
.ws8b{word-spacing:-11.344014px;}
.ws34{word-spacing:-11.303787px;}
.ws68{word-spacing:-11.263560px;}
.ws60{word-spacing:-11.102652px;}
.ws4e{word-spacing:-11.062425px;}
.ws7c{word-spacing:-10.861290px;}
.ws69{word-spacing:-10.700382px;}
.ws78{word-spacing:-10.619928px;}
.ws6e{word-spacing:-10.419000px;}
.ws50{word-spacing:-10.378566px;}
.ws61{word-spacing:-10.217658px;}
.ws6f{word-spacing:-9.177000px;}
.wsbd{word-spacing:-8.316000px;}
.wscd{word-spacing:-7.875000px;}
.wsbf{word-spacing:-7.497000px;}
.ws9d{word-spacing:-6.300000px;}
.wsd5{word-spacing:-6.048000px;}
.ws5{word-spacing:-6.000000px;}
.ws9f{word-spacing:-5.922000px;}
.ws70{word-spacing:-4.968000px;}
.ws6a{word-spacing:-4.830000px;}
.ws59{word-spacing:-4.761000px;}
.wsd6{word-spacing:-4.473000px;}
.wse0{word-spacing:-4.320000px;}
.ws8{word-spacing:-4.200000px;}
.ws8f{word-spacing:-4.071000px;}
.ws14{word-spacing:-3.696000px;}
.wsd4{word-spacing:-3.654000px;}
.ws99{word-spacing:-2.622000px;}
.ws2a{word-spacing:-2.400000px;}
.wsea{word-spacing:-1.740000px;}
.ws58{word-spacing:-1.587000px;}
.ws2f{word-spacing:-1.449000px;}
.ws38{word-spacing:-1.350000px;}
.ws43{word-spacing:-1.311000px;}
.wsdf{word-spacing:-1.260000px;}
.ws1a{word-spacing:-1.242000px;}
.ws9e{word-spacing:-1.197000px;}
.ws18{word-spacing:-1.188000px;}
.ws92{word-spacing:-1.133352px;}
.ws35{word-spacing:-1.104000px;}
.ws5b{word-spacing:-1.026000px;}
.ws74{word-spacing:-0.972000px;}
.ws6b{word-spacing:-0.759000px;}
.wsb4{word-spacing:-0.756000px;}
.ws49{word-spacing:-0.690000px;}
.ws5d{word-spacing:-0.566676px;}
.ws55{word-spacing:-0.552000px;}
.ws33{word-spacing:-0.432000px;}
.wsb3{word-spacing:-0.378000px;}
.ws95{word-spacing:-0.276000px;}
.ws94{word-spacing:-0.138000px;}
.ws91{word-spacing:-0.125928px;}
.ws1b{word-spacing:-0.108000px;}
.ws73{word-spacing:-0.094446px;}
.wsad{word-spacing:-0.063000px;}
.ws4{word-spacing:0.000000px;}
.ws1c{word-spacing:0.054000px;}
.ws5a{word-spacing:0.062964px;}
.wsbe{word-spacing:0.063000px;}
.ws31{word-spacing:0.069000px;}
.ws16{word-spacing:0.094446px;}
.wscb{word-spacing:0.126000px;}
.ws7f{word-spacing:0.138000px;}
.ws17{word-spacing:0.162000px;}
.wse9{word-spacing:0.180000px;}
.wsae{word-spacing:0.189000px;}
.ws2b{word-spacing:0.207000px;}
.ws85{word-spacing:0.220374px;}
.wse6{word-spacing:0.240000px;}
.wsa9{word-spacing:0.252000px;}
.ws1e{word-spacing:0.270000px;}
.ws15{word-spacing:0.276000px;}
.ws11{word-spacing:0.300000px;}
.ws1f{word-spacing:0.324000px;}
.ws53{word-spacing:0.345000px;}
.ws75{word-spacing:0.346302px;}
.ws9{word-spacing:0.360000px;}
.ws86{word-spacing:0.378000px;}
.ws84{word-spacing:0.409266px;}
.ws40{word-spacing:0.414000px;}
.ws6{word-spacing:0.420000px;}
.wsbc{word-spacing:0.441000px;}
.wse5{word-spacing:0.480000px;}
.ws32{word-spacing:0.483000px;}
.wsac{word-spacing:0.504000px;}
.ws20{word-spacing:0.540000px;}
.wsa4{word-spacing:0.567000px;}
.ws22{word-spacing:0.594000px;}
.ws5c{word-spacing:0.598158px;}
.ws56{word-spacing:0.621000px;}
.wsaa{word-spacing:0.630000px;}
.ws39{word-spacing:0.648000px;}
.ws13{word-spacing:0.660000px;}
.ws2d{word-spacing:0.690000px;}
.wsb2{word-spacing:0.693000px;}
.ws21{word-spacing:0.702000px;}
.wse4{word-spacing:0.720000px;}
.ws65{word-spacing:0.724086px;}
.wsb5{word-spacing:0.756000px;}
.ws30{word-spacing:0.759000px;}
.ws87{word-spacing:0.810000px;}
.wsa6{word-spacing:0.819000px;}
.ws36{word-spacing:0.828000px;}
.wse8{word-spacing:0.840000px;}
.ws3e{word-spacing:0.855000px;}
.ws76{word-spacing:0.864000px;}
.wsb6{word-spacing:0.882000px;}
.ws62{word-spacing:0.897000px;}
.ws1d{word-spacing:0.918000px;}
.wsa7{word-spacing:0.945000px;}
.ws63{word-spacing:0.966000px;}
.ws88{word-spacing:0.972000px;}
.wsa8{word-spacing:1.008000px;}
.ws19{word-spacing:1.026000px;}
.ws2c{word-spacing:1.035000px;}
.wsab{word-spacing:1.071000px;}
.ws45{word-spacing:1.104000px;}
.ws23{word-spacing:1.134000px;}
.ws4b{word-spacing:1.173000px;}
.ws89{word-spacing:1.188000px;}
.wscc{word-spacing:1.197000px;}
.ws7{word-spacing:1.200000px;}
.ws57{word-spacing:1.242000px;}
.ws12{word-spacing:1.260000px;}
.ws83{word-spacing:1.311000px;}
.ws81{word-spacing:1.380000px;}
.wsc8{word-spacing:1.386000px;}
.ws46{word-spacing:1.449000px;}
.ws82{word-spacing:1.587000px;}
.ws10{word-spacing:1.620000px;}
.ws80{word-spacing:1.656000px;}
.wsd1{word-spacing:1.701000px;}
.ws90{word-spacing:1.725000px;}
.wse3{word-spacing:1.740000px;}
.ws3f{word-spacing:1.794000px;}
.wse1{word-spacing:1.800000px;}
.wsd7{word-spacing:1.827000px;}
.ws72{word-spacing:1.863000px;}
.wse2{word-spacing:2.040000px;}
.ws54{word-spacing:2.070000px;}
.ws71{word-spacing:2.208000px;}
.ws64{word-spacing:2.277000px;}
.ws4c{word-spacing:2.553000px;}
.wsd8{word-spacing:2.772000px;}
.ws6c{word-spacing:2.898000px;}
.ws6d{word-spacing:3.036000px;}
.ws42{word-spacing:3.174000px;}
.ws47{word-spacing:3.795000px;}
.wse7{word-spacing:3.840000px;}
.ws9a{word-spacing:4.071000px;}
.wsc9{word-spacing:4.158000px;}
.wsca{word-spacing:4.221000px;}
.wsa5{word-spacing:4.347000px;}
.ws4a{word-spacing:4.554000px;}
.ws41{word-spacing:4.968000px;}
.wsd2{word-spacing:5.733000px;}
.wsd3{word-spacing:6.552000px;}
.ws48{word-spacing:12.006000px;}
.ws37{word-spacing:43.445160px;}
._23{margin-left:-16.882500px;}
._18{margin-left:-15.877500px;}
._17{margin-left:-14.069100px;}
._15{margin-left:-13.050300px;}
._16{margin-left:-11.428500px;}
._8{margin-left:-10.141200px;}
._9{margin-left:-8.868600px;}
._20{margin-left:-7.199400px;}
._b{margin-left:-5.967600px;}
._a{margin-left:-4.648200px;}
._19{margin-left:-3.597000px;}
._4{margin-left:-2.570400px;}
._1{margin-left:-1.099800px;}
._2{width:1.248000px;}
._5{width:2.274000px;}
._0{width:3.405000px;}
._c{width:4.626000px;}
._3{width:6.126000px;}
._6{width:7.236000px;}
._7{width:8.520000px;}
._d{width:9.882000px;}
._12{width:11.220900px;}
._13{width:12.318900px;}
._14{width:14.050500px;}
._1a{width:15.370200px;}
._1b{width:16.540200px;}
._25{width:20.613750px;}
._24{width:22.021710px;}
._1c{width:24.024600px;}
._21{width:25.833600px;}
._22{width:27.767124px;}
._28{width:31.808400px;}
._27{width:33.096180px;}
._26{width:35.000400px;}
._1f{width:36.228000px;}
._1e{width:38.229000px;}
._11{width:43.445160px;}
._1d{width:45.675000px;}
._2a{width:51.781500px;}
._29{width:52.929000px;}
._e{width:71.400000px;}
._10{width:253.008000px;}
._f{width:578.400000px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fs9{font-size:40.227000px;}
.fs3{font-size:42.000000px;}
.fsc{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fsd{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fs7{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y206{bottom:106.087350px;}
.y1a4{bottom:106.122600px;}
.y284{bottom:106.174950px;}
.y263{bottom:106.181850px;}
.y1c6{bottom:106.215450px;}
.yd9{bottom:106.234350px;}
.y162{bottom:106.284300px;}
.y94{bottom:106.287300px;}
.y45{bottom:106.290300px;}
.y121{bottom:106.293300px;}
.y6c{bottom:106.296300px;}
.y1e6{bottom:106.307850px;}
.y1f{bottom:106.312200px;}
.y223{bottom:106.323600px;}
.y243{bottom:106.433850px;}
.y161{bottom:123.537300px;}
.y93{bottom:123.540300px;}
.y44{bottom:123.543300px;}
.y120{bottom:123.546300px;}
.y283{bottom:126.139950px;}
.y1e{bottom:126.202200px;}
.y1a3{bottom:126.494850px;}
.y6b{bottom:126.544800px;}
.y242{bottom:126.830100px;}
.y262{bottom:127.649100px;}
.yd8{bottom:129.659850px;}
.y205{bottom:131.145600px;}
.y1c5{bottom:131.352450px;}
.y1e5{bottom:131.492100px;}
.y222{bottom:136.280100px;}
.y160{bottom:140.790300px;}
.y92{bottom:140.793300px;}
.y43{bottom:140.796300px;}
.y11f{bottom:143.794800px;}
.yb8{bottom:145.045200px;}
.yfb{bottom:145.048200px;}
.y1d{bottom:146.092200px;}
.y282{bottom:146.104950px;}
.y1a2{bottom:146.867100px;}
.y241{bottom:147.226350px;}
.y261{bottom:149.116350px;}
.y204{bottom:151.951350px;}
.yd7{bottom:153.085350px;}
.y1c4{bottom:156.489450px;}
.y1e4{bottom:156.676350px;}
.y15f{bottom:158.043300px;}
.y91{bottom:158.046300px;}
.y42{bottom:161.044800px;}
.y11e{bottom:162.292200px;}
.yb7{bottom:162.298200px;}
.yfa{bottom:165.296700px;}
.y1c{bottom:165.982200px;}
.y281{bottom:166.069950px;}
.y221{bottom:166.236600px;}
.y1a1{bottom:167.239350px;}
.y6a{bottom:170.559600px;}
.y15e{bottom:175.296300px;}
.y240{bottom:176.127600px;}
.yd6{bottom:176.510850px;}
.y203{bottom:177.009600px;}
.y90{bottom:178.294800px;}
.y260{bottom:179.088600px;}
.y11d{bottom:179.545200px;}
.y41{bottom:179.548200px;}
.y1c3{bottom:181.626450px;}
.y1e3{bottom:181.860600px;}
.yb6{bottom:182.546700px;}
.yf9{bottom:183.800250px;}
.y280{bottom:186.034950px;}
.y1a0{bottom:187.611600px;}
.y220{bottom:187.688100px;}
.y69{bottom:190.897350px;}
.y15d{bottom:195.544800px;}
.y8f{bottom:196.795200px;}
.y11c{bottom:196.798200px;}
.y1b{bottom:198.622200px;}
.y40{bottom:199.796700px;}
.yd5{bottom:199.936350px;}
.y25f{bottom:200.555850px;}
.yb5{bottom:201.047250px;}
.y202{bottom:202.067850px;}
.yf8{bottom:204.048750px;}
.y23f{bottom:205.028850px;}
.y27f{bottom:205.999950px;}
.y1c2{bottom:206.763450px;}
.y1e2{bottom:207.044850px;}
.y19f{bottom:207.983850px;}
.y68{bottom:211.235100px;}
.y8e{bottom:214.048200px;}
.y11b{bottom:217.046700px;}
.y21f{bottom:217.644600px;}
.yb4{bottom:218.300250px;}
.y25e{bottom:222.023100px;}
.yd4{bottom:223.361850px;}
.y23e{bottom:225.425100px;}
.y27e{bottom:225.964950px;}
.y13f{bottom:226.571850px;}
.y201{bottom:227.126100px;}
.y19e{bottom:228.356100px;}
.y67{bottom:231.572850px;}
.y1c1{bottom:231.900450px;}
.y1e1{bottom:232.229100px;}
.y8d{bottom:234.296700px;}
.yb3{bottom:235.553250px;}
.y21e{bottom:239.096100px;}
.y3f{bottom:243.820500px;}
.y27d{bottom:245.929950px;}
.yd3{bottom:246.787350px;}
.yf7{bottom:248.073450px;}
.y1a{bottom:248.272200px;}
.y13e{bottom:248.382750px;}
.y19d{bottom:248.728350px;}
.y66{bottom:251.910600px;}
.y25d{bottom:251.995350px;}
.y200{bottom:252.184350px;}
.y8c{bottom:252.794250px;}
.y23d{bottom:254.326350px;}
.y1c0{bottom:257.037450px;}
.y1e0{bottom:257.413350px;}
.y21d{bottom:260.547600px;}
.y11a{bottom:261.042450px;}
.y180{bottom:261.050100px;}
.y3e{bottom:264.641250px;}
.y27c{bottom:265.894950px;}
.y19c{bottom:269.100600px;}
.yf6{bottom:269.187450px;}
.y19{bottom:269.677800px;}
.y8b{bottom:270.047250px;}
.yd2{bottom:270.212850px;}
.y13d{bottom:270.368100px;}
.y65{bottom:272.248350px;}
.y25c{bottom:273.462600px;}
.y23c{bottom:274.722600px;}
.y1ff{bottom:277.242600px;}
.y15c{bottom:278.275650px;}
.y119{bottom:281.742450px;}
.y21c{bottom:281.999100px;}
.y1bf{bottom:282.174450px;}
.y17f{bottom:282.440100px;}
.y1df{bottom:282.597600px;}
.yb2{bottom:282.614550px;}
.y3d{bottom:285.462000px;}
.y27b{bottom:285.859950px;}
.y8a{bottom:287.300250px;}
.y19b{bottom:289.472850px;}
.y18{bottom:289.567800px;}
.yf5{bottom:290.376000px;}
.y13c{bottom:292.172100px;}
.y64{bottom:292.568850px;}
.yd1{bottom:293.638350px;}
.y15b{bottom:299.096400px;}
.y1fe{bottom:302.300850px;}
.y118{bottom:302.442450px;}
.yb1{bottom:303.193800px;}
.y25b{bottom:303.434850px;}
.y23b{bottom:303.623850px;}
.y17e{bottom:303.830100px;}
.y89{bottom:304.553250px;}
.y27a{bottom:305.824950px;}
.y3c{bottom:306.297450px;}
.y1be{bottom:307.311450px;}
.y88{bottom:307.548750px;}
.y1de{bottom:307.781850px;}
.y17{bottom:309.457800px;}
.y19a{bottom:309.845100px;}
.yf4{bottom:311.490000px;}
.y21b{bottom:311.955600px;}
.y63{bottom:312.906600px;}
.y13b{bottom:313.976100px;}
.yd0{bottom:317.063850px;}
.y15a{bottom:319.917150px;}
.y117{bottom:323.142450px;}
.yb0{bottom:323.773050px;}
.y23a{bottom:324.020100px;}
.y25a{bottom:324.902100px;}
.y17d{bottom:325.220100px;}
.y279{bottom:325.789950px;}
.y87{bottom:326.046150px;}
.y3b{bottom:327.118200px;}
.y1fd{bottom:327.359100px;}
.y16{bottom:329.347800px;}
.y199{bottom:330.217350px;}
.y1bd{bottom:332.448450px;}
.yf3{bottom:332.604000px;}
.y1dd{bottom:332.966100px;}
.y62{bottom:333.244350px;}
.y13a{bottom:335.780100px;}
.ycf{bottom:340.489350px;}
.y159{bottom:340.737900px;}
.y86{bottom:343.299150px;}
.y116{bottom:343.842450px;}
.yaf{bottom:344.352300px;}
.y278{bottom:345.754950px;}
.y17c{bottom:346.610100px;}
.y3a{bottom:347.938950px;}
.y15{bottom:349.237800px;}
.y198{bottom:350.589600px;}
.y1fc{bottom:352.417350px;}
.y239{bottom:352.921350px;}
.y61{bottom:353.582100px;}
.yf2{bottom:353.718000px;}
.y259{bottom:354.874350px;}
.y139{bottom:357.584100px;}
.y1bc{bottom:357.585450px;}
.y1dc{bottom:358.150350px;}
.y85{bottom:360.552150px;}
.y158{bottom:361.558650px;}
.yce{bottom:363.914850px;}
.y115{bottom:364.542450px;}
.yae{bottom:364.931550px;}
.y277{bottom:365.719950px;}
.y17b{bottom:368.000100px;}
.y39{bottom:368.759700px;}
.y14{bottom:369.127800px;}
.y197{bottom:370.961850px;}
.y238{bottom:373.317600px;}
.y60{bottom:373.919850px;}
.yf1{bottom:374.832000px;}
.y258{bottom:376.341600px;}
.y1fb{bottom:377.475600px;}
.y138{bottom:379.388100px;}
.y84{bottom:380.800650px;}
.y157{bottom:382.207800px;}
.y1bb{bottom:382.722450px;}
.y1db{bottom:383.334600px;}
.y114{bottom:385.242450px;}
.yad{bottom:385.510800px;}
.y276{bottom:385.684950px;}
.ycd{bottom:387.340350px;}
.y13{bottom:389.017800px;}
.y17a{bottom:389.390100px;}
.y38{bottom:389.580450px;}
.y21a{bottom:389.618850px;}
.y196{bottom:391.334100px;}
.y5f{bottom:394.257600px;}
.yf0{bottom:395.946000px;}
.y137{bottom:401.192100px;}
.y237{bottom:402.218850px;}
.y1fa{bottom:402.533850px;}
.y156{bottom:403.028550px;}
.y275{bottom:405.649950px;}
.y113{bottom:405.942450px;}
.yac{bottom:406.090050px;}
.y257{bottom:406.313850px;}
.y1ba{bottom:407.859450px;}
.y1da{bottom:408.518850px;}
.y12{bottom:408.907800px;}
.y37{bottom:410.401200px;}
.y179{bottom:410.756850px;}
.ycc{bottom:410.765850px;}
.y195{bottom:411.706350px;}
.y5e{bottom:414.595350px;}
.y219{bottom:415.322850px;}
.yef{bottom:417.060000px;}
.y236{bottom:422.615100px;}
.y136{bottom:422.996100px;}
.y155{bottom:423.849300px;}
.y83{bottom:424.844400px;}
.y274{bottom:425.614950px;}
.y112{bottom:426.642450px;}
.yab{bottom:426.669300px;}
.y1f9{bottom:427.592100px;}
.y256{bottom:427.781100px;}
.y11{bottom:428.797800px;}
.y36{bottom:431.221950px;}
.y194{bottom:432.078600px;}
.y178{bottom:432.146850px;}
.y1b9{bottom:432.996450px;}
.y1d9{bottom:433.703100px;}
.ycb{bottom:434.191350px;}
.y5d{bottom:434.933100px;}
.yee{bottom:438.174000px;}
.y218{bottom:441.026850px;}
.y154{bottom:444.670050px;}
.y135{bottom:444.800100px;}
.y273{bottom:445.579950px;}
.y82{bottom:445.613400px;}
.yaa{bottom:447.248550px;}
.y111{bottom:447.342450px;}
.y10{bottom:448.687800px;}
.y235{bottom:451.516350px;}
.y35{bottom:452.042700px;}
.y193{bottom:452.450850px;}
.y1f8{bottom:452.650350px;}
.y177{bottom:453.536850px;}
.y1b8{bottom:454.621200px;}
.y5c{bottom:455.270850px;}
.yca{bottom:457.616850px;}
.y255{bottom:457.753350px;}
.y1d8{bottom:458.887350px;}
.yed{bottom:459.288000px;}
.y153{bottom:465.490800px;}
.y272{bottom:465.544950px;}
.y81{bottom:466.382400px;}
.y217{bottom:466.730850px;}
.ya9{bottom:467.827800px;}
.y110{bottom:468.042450px;}
.yf{bottom:468.577800px;}
.y192{bottom:472.823100px;}
.y34{bottom:472.872750px;}
.y176{bottom:474.926850px;}
.y5b{bottom:475.608600px;}
.y1f7{bottom:477.708600px;}
.yec{bottom:480.402000px;}
.y234{bottom:480.417600px;}
.yc9{bottom:481.042350px;}
.y1d7{bottom:484.071600px;}
.y271{bottom:485.509950px;}
.y152{bottom:486.311550px;}
.y80{bottom:487.210950px;}
.y254{bottom:487.725600px;}
.ya8{bottom:488.407050px;}
.y134{bottom:488.425350px;}
.ye{bottom:488.467800px;}
.y10f{bottom:488.740350px;}
.y216{bottom:492.434850px;}
.y191{bottom:493.195350px;}
.y33{bottom:493.693500px;}
.y5a{bottom:495.946350px;}
.y175{bottom:496.316850px;}
.y233{bottom:500.813850px;}
.yeb{bottom:501.516000px;}
.y1f6{bottom:502.766850px;}
.yc8{bottom:504.467850px;}
.y270{bottom:505.474950px;}
.y1b7{bottom:506.123850px;}
.y151{bottom:507.132300px;}
.y7f{bottom:507.979950px;}
.yd{bottom:508.357800px;}
.ya7{bottom:508.986300px;}
.y253{bottom:509.192850px;}
.y1d6{bottom:509.255850px;}
.y10e{bottom:509.401350px;}
.y133{bottom:510.229350px;}
.y190{bottom:513.567600px;}
.y32{bottom:514.514250px;}
.y296{bottom:515.442750px;}
.y59{bottom:516.284100px;}
.y174{bottom:517.706850px;}
.y215{bottom:518.138850px;}
.yea{bottom:522.630000px;}
.y26f{bottom:525.439950px;}
.y1b6{bottom:526.996350px;}
.y1f5{bottom:527.825100px;}
.yc7{bottom:527.893350px;}
.y150{bottom:527.953050px;}
.yc{bottom:528.247800px;}
.y7e{bottom:528.748950px;}
.ya6{bottom:529.565550px;}
.y232{bottom:529.715100px;}
.y10d{bottom:530.101350px;}
.y132{bottom:532.033350px;}
.y18f{bottom:533.939850px;}
.y1d5{bottom:534.440100px;}
.y31{bottom:535.335000px;}
.y295{bottom:535.692750px;}
.y58{bottom:536.621850px;}
.y173{bottom:539.096850px;}
.y252{bottom:539.165100px;}
.ye9{bottom:543.744000px;}
.y214{bottom:543.842850px;}
.y26e{bottom:545.404950px;}
.y1b5{bottom:547.868850px;}
.y14f{bottom:548.773800px;}
.y7d{bottom:549.517950px;}
.ya5{bottom:550.144800px;}
.y10c{bottom:550.801350px;}
.yc6{bottom:551.318850px;}
.y1f4{bottom:552.883350px;}
.y131{bottom:553.837350px;}
.y18e{bottom:554.312100px;}
.y294{bottom:555.942750px;}
.y30{bottom:556.155750px;}
.y57{bottom:556.959600px;}
.y231{bottom:558.616350px;}
.y1d4{bottom:559.624350px;}
.y172{bottom:560.486850px;}
.y251{bottom:560.632350px;}
.yb{bottom:560.887800px;}
.y26d{bottom:565.369950px;}
.y1b4{bottom:568.741350px;}
.y213{bottom:569.546850px;}
.y14e{bottom:569.594550px;}
.y7c{bottom:570.286950px;}
.ya4{bottom:570.724050px;}
.y10b{bottom:571.501350px;}
.y18d{bottom:574.684350px;}
.y130{bottom:575.641350px;}
.y293{bottom:576.192750px;}
.y2f{bottom:576.976500px;}
.y56{bottom:577.297350px;}
.y1f3{bottom:577.941600px;}
.y230{bottom:579.012600px;}
.y171{bottom:581.876850px;}
.y1d3{bottom:584.808600px;}
.y26c{bottom:585.334950px;}
.ye8{bottom:585.972000px;}
.y1b3{bottom:589.613850px;}
.y14d{bottom:590.415300px;}
.y250{bottom:590.604600px;}
.y7b{bottom:591.055950px;}
.ya3{bottom:591.303300px;}
.y10a{bottom:592.201350px;}
.y212{bottom:595.250850px;}
.y12f{bottom:597.445350px;}
.y55{bottom:597.635100px;}
.yc5{bottom:598.169850px;}
.y1f2{bottom:602.999850px;}
.y170{bottom:603.266850px;}
.y26b{bottom:605.299950px;}
.ye7{bottom:607.086000px;}
.y22f{bottom:607.913850px;}
.y292{bottom:609.192750px;}
.y1d2{bottom:609.992850px;}
.y1b2{bottom:610.486350px;}
.y14c{bottom:611.236050px;}
.y7a{bottom:611.824950px;}
.ya2{bottom:611.882550px;}
.y24f{bottom:612.071850px;}
.y109{bottom:612.901350px;}
.y18c{bottom:616.308750px;}
.y54{bottom:617.972850px;}
.ya{bottom:619.052850px;}
.y2e{bottom:619.058850px;}
.y12e{bottom:619.249350px;}
.y211{bottom:620.954850px;}
.yc4{bottom:621.595350px;}
.y16f{bottom:624.656850px;}
.y26a{bottom:625.264950px;}
.y1f1{bottom:628.058100px;}
.ye6{bottom:628.200000px;}
.y22e{bottom:628.310100px;}
.y1b1{bottom:631.358850px;}
.y14b{bottom:632.056800px;}
.ya1{bottom:632.487000px;}
.y79{bottom:632.636400px;}
.y24e{bottom:633.539100px;}
.y108{bottom:633.601350px;}
.y1d1{bottom:635.177100px;}
.y53{bottom:638.310600px;}
.y12d{bottom:641.053350px;}
.yc3{bottom:645.020850px;}
.y269{bottom:645.229950px;}
.y16e{bottom:646.021350px;}
.y9{bottom:646.436850px;}
.y210{bottom:646.658850px;}
.ye5{bottom:649.314000px;}
.y291{bottom:650.697750px;}
.y1b0{bottom:652.231350px;}
.y14a{bottom:652.877550px;}
.ya0{bottom:653.066250px;}
.y1f0{bottom:653.116350px;}
.y78{bottom:653.405400px;}
.y107{bottom:654.301350px;}
.y24d{bottom:655.006350px;}
.y22d{bottom:657.211350px;}
.y52{bottom:658.648350px;}
.y1d0{bottom:660.361350px;}
.y12c{bottom:662.857350px;}
.y16d{bottom:667.411350px;}
.yc2{bottom:668.446350px;}
.y290{bottom:670.197750px;}
.ye4{bottom:670.428000px;}
.y20f{bottom:672.362850px;}
.y1af{bottom:673.103850px;}
.y9f{bottom:673.645500px;}
.y77{bottom:674.174400px;}
.y106{bottom:675.001350px;}
.y22c{bottom:677.607600px;}
.y268{bottom:677.944950px;}
.y1ef{bottom:678.174600px;}
.y18b{bottom:678.606600px;}
.y51{bottom:678.986100px;}
.y2d{bottom:681.899250px;}
.y12b{bottom:684.661350px;}
.y24c{bottom:684.978600px;}
.y1cf{bottom:685.545600px;}
.y16c{bottom:688.801350px;}
.y28f{bottom:689.697750px;}
.ye3{bottom:691.542000px;}
.yc1{bottom:691.871850px;}
.y1ae{bottom:693.976350px;}
.y9e{bottom:694.224750px;}
.y149{bottom:694.501800px;}
.y76{bottom:694.943400px;}
.y8{bottom:695.098350px;}
.y105{bottom:695.701350px;}
.y20e{bottom:698.066850px;}
.y18a{bottom:698.978850px;}
.y50{bottom:699.323850px;}
.y1ee{bottom:703.232850px;}
.y2c{bottom:703.497750px;}
.y24b{bottom:706.445850px;}
.y12a{bottom:706.465350px;}
.y1ce{bottom:706.477350px;}
.y22b{bottom:706.508850px;}
.y28e{bottom:709.197750px;}
.y16b{bottom:710.191350px;}
.ye2{bottom:712.656000px;}
.y9d{bottom:714.804000px;}
.y1ad{bottom:714.848850px;}
.yc0{bottom:715.297350px;}
.y148{bottom:715.322550px;}
.y75{bottom:715.712400px;}
.y104{bottom:716.401350px;}
.y189{bottom:719.351100px;}
.y4f{bottom:719.661600px;}
.y2b{bottom:723.567750px;}
.y20d{bottom:723.770850px;}
.y22a{bottom:726.905100px;}
.y7{bottom:726.985350px;}
.y24a{bottom:727.913100px;}
.y129{bottom:728.269350px;}
.y1ed{bottom:728.291100px;}
.y28d{bottom:728.697750px;}
.y16a{bottom:731.581350px;}
.y1cd{bottom:731.661600px;}
.ye1{bottom:733.770000px;}
.y9c{bottom:735.383250px;}
.y1ac{bottom:735.721350px;}
.y147{bottom:736.143300px;}
.y267{bottom:736.165350px;}
.y74{bottom:736.549350px;}
.y103{bottom:737.101350px;}
.ybf{bottom:738.722850px;}
.y188{bottom:739.723350px;}
.y4e{bottom:739.999350px;}
.y2a{bottom:743.637750px;}
.y28c{bottom:748.197750px;}
.y20c{bottom:749.474850px;}
.y128{bottom:750.073350px;}
.y169{bottom:752.971350px;}
.y1ec{bottom:753.349350px;}
.ye0{bottom:754.884000px;}
.y229{bottom:755.806350px;}
.y9b{bottom:755.962500px;}
.y1ab{bottom:756.593850px;}
.y1cc{bottom:756.845850px;}
.y146{bottom:756.964050px;}
.y73{bottom:757.318350px;}
.y102{bottom:757.801350px;}
.y249{bottom:757.885350px;}
.y6{bottom:758.872350px;}
.y187{bottom:760.095600px;}
.y4d{bottom:760.337100px;}
.ybe{bottom:762.148350px;}
.y266{bottom:763.633350px;}
.y29{bottom:763.707750px;}
.y28b{bottom:767.697750px;}
.y127{bottom:771.877350px;}
.y168{bottom:774.361350px;}
.y20b{bottom:775.178850px;}
.ydf{bottom:776.010900px;}
.y228{bottom:776.202600px;}
.y9a{bottom:776.541750px;}
.y1aa{bottom:777.466350px;}
.y145{bottom:777.784800px;}
.y72{bottom:778.087350px;}
.y1eb{bottom:778.407600px;}
.y101{bottom:778.501350px;}
.y248{bottom:779.352600px;}
.y186{bottom:780.467850px;}
.y4c{bottom:780.674850px;}
.y1cb{bottom:782.030100px;}
.y28{bottom:783.777750px;}
.ybd{bottom:785.573850px;}
.y28a{bottom:787.197750px;}
.y5{bottom:790.759350px;}
.y126{bottom:793.681350px;}
.y167{bottom:795.751350px;}
.y99{bottom:797.121000px;}
.yde{bottom:797.124900px;}
.y1a9{bottom:798.338850px;}
.y144{bottom:798.605550px;}
.y71{bottom:798.856350px;}
.y100{bottom:799.201350px;}
.y185{bottom:800.840100px;}
.y20a{bottom:800.882850px;}
.y4b{bottom:801.012600px;}
.y1ea{bottom:803.465850px;}
.y27{bottom:803.847750px;}
.y227{bottom:805.103850px;}
.y289{bottom:806.697750px;}
.y1ca{bottom:807.214350px;}
.ybc{bottom:808.999350px;}
.y247{bottom:809.324850px;}
.y125{bottom:815.485350px;}
.y166{bottom:817.141350px;}
.y98{bottom:817.705800px;}
.ydd{bottom:818.238900px;}
.y1a8{bottom:819.211350px;}
.y143{bottom:819.426300px;}
.y70{bottom:819.625350px;}
.yff{bottom:819.901350px;}
.y184{bottom:821.212350px;}
.y4a{bottom:821.350350px;}
.y26{bottom:823.917750px;}
.y226{bottom:825.500100px;}
.y288{bottom:826.197750px;}
.y209{bottom:826.586850px;}
.y1e9{bottom:828.524100px;}
.y246{bottom:830.792100px;}
.y1c9{bottom:832.398600px;}
.ybb{bottom:832.424850px;}
.y124{bottom:837.289350px;}
.y97{bottom:838.285050px;}
.y165{bottom:838.531350px;}
.ydc{bottom:839.352900px;}
.y1a7{bottom:840.083850px;}
.y142{bottom:840.247050px;}
.y6f{bottom:840.394350px;}
.yfe{bottom:840.601350px;}
.y183{bottom:841.584600px;}
.y49{bottom:841.688100px;}
.y25{bottom:843.987750px;}
.y287{bottom:845.697750px;}
.y245{bottom:852.259350px;}
.y208{bottom:852.290850px;}
.y4{bottom:852.413250px;}
.y1e8{bottom:853.582350px;}
.y265{bottom:853.771350px;}
.y225{bottom:854.401350px;}
.yba{bottom:855.850350px;}
.y1c8{bottom:857.582850px;}
.y96{bottom:858.864300px;}
.y123{bottom:859.093350px;}
.y164{bottom:859.921350px;}
.ydb{bottom:860.473350px;}
.y1a6{bottom:860.956350px;}
.y141{bottom:861.067800px;}
.y6e{bottom:861.163350px;}
.yfd{bottom:861.301350px;}
.y182{bottom:861.956850px;}
.y48{bottom:862.025850px;}
.y24{bottom:864.057750px;}
.y286{bottom:865.197750px;}
.y224{bottom:874.797600px;}
.y207{bottom:877.994850px;}
.y1c7{bottom:878.514600px;}
.y1e7{bottom:878.640600px;}
.yb9{bottom:879.275850px;}
.y122{bottom:880.897350px;}
.y163{bottom:881.311350px;}
.yda{bottom:881.587350px;}
.y1a5{bottom:881.828850px;}
.y140{bottom:881.880600px;}
.y6d{bottom:881.932350px;}
.yfc{bottom:882.001350px;}
.y244{bottom:882.231600px;}
.y3{bottom:882.308250px;}
.y181{bottom:882.329100px;}
.y47{bottom:882.363600px;}
.y264{bottom:882.987600px;}
.y23{bottom:884.127750px;}
.y285{bottom:884.697750px;}
.y95{bottom:900.706200px;}
.y46{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y22{bottom:904.197750px;}
.y21{bottom:948.189000px;}
.y20{bottom:966.189000px;}
.h10{height:24.964242px;}
.ha{height:33.870539px;}
.hd{height:40.757812px;}
.h14{height:43.942805px;}
.hb{height:45.852539px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.hc{height:55.924805px;}
.h9{height:58.589355px;}
.h13{height:58.597755px;}
.h15{height:58.621155px;}
.hf{height:58.658355px;}
.h18{height:58.682355px;}
.h17{height:58.691355px;}
.h16{height:59.275755px;}
.h11{height:59.937012px;}
.h7{height:62.138672px;}
.h2{height:63.684082px;}
.h19{height:65.245605px;}
.h8{height:68.778809px;}
.h6{height:71.326172px;}
.he{height:71.459473px;}
.h12{height:71.615473px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xf{left:80.940150px;}
.x1{left:82.214250px;}
.x8{left:83.611650px;}
.x5{left:85.080750px;}
.xa{left:103.681800px;}
.x6{left:105.029250px;}
.x4{left:106.365750px;}
.xe{left:128.992950px;}
.xb{left:130.419300px;}
.xd{left:132.005400px;}
.xc{left:133.074900px;}
.x9{left:212.663850px;}
.x3{left:230.000700px;}
.x2{left:232.601400px;}
.x7{left:233.913000px;}
@media print{
.v3{vertical-align:-15.090667pt;}
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.057600pt;}
.ls14{letter-spacing:-6.552000pt;}
.lsd4{letter-spacing:-5.824000pt;}
.lsd3{letter-spacing:-5.096000pt;}
.ls45{letter-spacing:-4.416000pt;}
.ls4e{letter-spacing:-4.048000pt;}
.lsad{letter-spacing:-3.864000pt;}
.lsca{letter-spacing:-3.752000pt;}
.ls56{letter-spacing:-3.733333pt;}
.lsc9{letter-spacing:-3.696000pt;}
.lsa4{letter-spacing:-3.618667pt;}
.lse5{letter-spacing:-3.413333pt;}
.ls4c{letter-spacing:-3.373333pt;}
.ls46{letter-spacing:-3.250667pt;}
.ls47{letter-spacing:-2.821333pt;}
.ls75{letter-spacing:-2.760000pt;}
.ls76{letter-spacing:-2.698667pt;}
.ls44{letter-spacing:-2.576000pt;}
.lsda{letter-spacing:-2.464000pt;}
.ls50{letter-spacing:-2.269333pt;}
.lsd0{letter-spacing:-2.266667pt;}
.ls1{letter-spacing:-2.200000pt;}
.ls97{letter-spacing:-2.085333pt;}
.lsc7{letter-spacing:-2.072000pt;}
.ls6d{letter-spacing:-2.024000pt;}
.ls7a{letter-spacing:-1.962667pt;}
.lsc5{letter-spacing:-1.960000pt;}
.ls5b{letter-spacing:-1.901333pt;}
.lsbf{letter-spacing:-1.866667pt;}
.lsa8{letter-spacing:-1.848000pt;}
.ls59{letter-spacing:-1.840000pt;}
.lse1{letter-spacing:-1.813333pt;}
.ls30{letter-spacing:-1.778667pt;}
.ls86{letter-spacing:-1.717333pt;}
.ls7b{letter-spacing:-1.656000pt;}
.lsd9{letter-spacing:-1.624000pt;}
.lse0{letter-spacing:-1.600000pt;}
.ls2c{letter-spacing:-1.594667pt;}
.lscd{letter-spacing:-1.568000pt;}
.lse2{letter-spacing:-1.546667pt;}
.ls6c{letter-spacing:-1.533333pt;}
.lsd2{letter-spacing:-1.512000pt;}
.ls6b{letter-spacing:-1.472000pt;}
.lsbb{letter-spacing:-1.456000pt;}
.lse{letter-spacing:-1.440000pt;}
.ls88{letter-spacing:-1.410667pt;}
.ls42{letter-spacing:-1.349333pt;}
.lsb7{letter-spacing:-1.344000pt;}
.ls4b{letter-spacing:-1.288000pt;}
.lsc8{letter-spacing:-1.232000pt;}
.ls32{letter-spacing:-1.226667pt;}
.ls4f{letter-spacing:-1.165333pt;}
.ls10{letter-spacing:-1.120000pt;}
.ls5e{letter-spacing:-1.104000pt;}
.ls7{letter-spacing:-1.066667pt;}
.lscc{letter-spacing:-1.064000pt;}
.ls8e{letter-spacing:-1.056000pt;}
.ls2f{letter-spacing:-1.042667pt;}
.ls25{letter-spacing:-1.008000pt;}
.ls43{letter-spacing:-0.981333pt;}
.ls6f{letter-spacing:-0.965448pt;}
.lsb5{letter-spacing:-0.952000pt;}
.ls2b{letter-spacing:-0.920000pt;}
.ls1a{letter-spacing:-0.912000pt;}
.lsb0{letter-spacing:-0.896000pt;}
.ls8d{letter-spacing:-0.864000pt;}
.ls2d{letter-spacing:-0.858667pt;}
.lsaf{letter-spacing:-0.840000pt;}
.ls5a{letter-spacing:-0.822419pt;}
.ls1e{letter-spacing:-0.816000pt;}
.ls6a{letter-spacing:-0.797333pt;}
.lsbd{letter-spacing:-0.784000pt;}
.ls81{letter-spacing:-0.768000pt;}
.ls40{letter-spacing:-0.760000pt;}
.lse6{letter-spacing:-0.746667pt;}
.ls3c{letter-spacing:-0.736000pt;}
.lsae{letter-spacing:-0.728000pt;}
.ls8c{letter-spacing:-0.720000pt;}
.ls33{letter-spacing:-0.674667pt;}
.ls8f{letter-spacing:-0.672000pt;}
.ls70{letter-spacing:-0.643632pt;}
.lse3{letter-spacing:-0.640000pt;}
.ls23{letter-spacing:-0.624000pt;}
.lsba{letter-spacing:-0.616000pt;}
.ls2a{letter-spacing:-0.613333pt;}
.ls85{letter-spacing:-0.607875pt;}
.ls12{letter-spacing:-0.586667pt;}
.ls18{letter-spacing:-0.576000pt;}
.lsb3{letter-spacing:-0.560000pt;}
.ls5d{letter-spacing:-0.552000pt;}
.ls7d{letter-spacing:-0.536360pt;}
.ls64{letter-spacing:-0.531696pt;}
.ls24{letter-spacing:-0.528000pt;}
.lsac{letter-spacing:-0.504000pt;}
.ls21{letter-spacing:-0.480000pt;}
.lsb6{letter-spacing:-0.448000pt;}
.ls35{letter-spacing:-0.429333pt;}
.lse4{letter-spacing:-0.426667pt;}
.ls89{letter-spacing:-0.393331pt;}
.lsc0{letter-spacing:-0.392000pt;}
.ls6{letter-spacing:-0.373333pt;}
.ls41{letter-spacing:-0.368000pt;}
.ls8a{letter-spacing:-0.363792pt;}
.ls22{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls80{letter-spacing:-0.307824pt;}
.ls57{letter-spacing:-0.306667pt;}
.ls20{letter-spacing:-0.288000pt;}
.lsf{letter-spacing:-0.266667pt;}
.ls15{letter-spacing:-0.245333pt;}
.ls1f{letter-spacing:-0.240000pt;}
.lsb1{letter-spacing:-0.224000pt;}
.ls58{letter-spacing:-0.214544pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls8b{letter-spacing:-0.195888pt;}
.ls29{letter-spacing:-0.184000pt;}
.ls6e{letter-spacing:-0.178787pt;}
.lsb9{letter-spacing:-0.168000pt;}
.lse7{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.144000pt;}
.ls87{letter-spacing:-0.122667pt;}
.lscb{letter-spacing:-0.112000pt;}
.ls16{letter-spacing:-0.083952pt;}
.lsa3{letter-spacing:-0.072000pt;}
.ls34{letter-spacing:-0.061333pt;}
.lsc2{letter-spacing:-0.056000pt;}
.ls62{letter-spacing:-0.055968pt;}
.ls1d{letter-spacing:-0.048000pt;}
.ls7c{letter-spacing:-0.035757pt;}
.ls4{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000267pt;}
.ls95{letter-spacing:0.035757pt;}
.lsb8{letter-spacing:0.056000pt;}
.ls7e{letter-spacing:0.083952pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls99{letter-spacing:0.111936pt;}
.lsd5{letter-spacing:0.112000pt;}
.ls9c{letter-spacing:0.122667pt;}
.lsb2{letter-spacing:0.168000pt;}
.ls9d{letter-spacing:0.245333pt;}
.lsbc{letter-spacing:0.336000pt;}
.ls36{letter-spacing:0.384000pt;}
.ls5c{letter-spacing:0.490667pt;}
.ls60{letter-spacing:0.500603pt;}
.ls65{letter-spacing:0.503712pt;}
.ls3f{letter-spacing:0.545867pt;}
.lsc6{letter-spacing:0.560000pt;}
.ls73{letter-spacing:0.582667pt;}
.ls4d{letter-spacing:0.613333pt;}
.lsb4{letter-spacing:0.672000pt;}
.ls72{letter-spacing:0.674667pt;}
.lsab{letter-spacing:0.722400pt;}
.ls53{letter-spacing:0.797333pt;}
.lsd1{letter-spacing:0.840000pt;}
.ls9e{letter-spacing:0.858667pt;}
.ls7f{letter-spacing:0.864000pt;}
.ls63{letter-spacing:0.912000pt;}
.lsa1{letter-spacing:0.920000pt;}
.ls3b{letter-spacing:0.981333pt;}
.ls9a{letter-spacing:1.007424pt;}
.ls19{letter-spacing:1.056000pt;}
.lsa6{letter-spacing:1.064000pt;}
.ls39{letter-spacing:1.079733pt;}
.ls1b{letter-spacing:1.104000pt;}
.lsde{letter-spacing:1.120000pt;}
.ls98{letter-spacing:1.144235pt;}
.ls48{letter-spacing:1.165333pt;}
.ls27{letter-spacing:1.165600pt;}
.ls3{letter-spacing:1.194667pt;}
.ls3d{letter-spacing:1.200000pt;}
.ls31{letter-spacing:1.288000pt;}
.ls5f{letter-spacing:1.410667pt;}
.ls38{letter-spacing:1.453600pt;}
.lsdc{letter-spacing:1.546667pt;}
.ls4a{letter-spacing:1.717333pt;}
.ls3a{letter-spacing:1.821600pt;}
.ls83{letter-spacing:1.920000pt;}
.ls84{letter-spacing:1.924800pt;}
.lsd{letter-spacing:2.097867pt;}
.ls28{letter-spacing:2.133333pt;}
.lsa2{letter-spacing:2.330667pt;}
.ls93{letter-spacing:2.392000pt;}
.ls52{letter-spacing:2.882667pt;}
.ls67{letter-spacing:2.944000pt;}
.ls94{letter-spacing:3.152533pt;}
.lsd6{letter-spacing:3.248000pt;}
.ls91{letter-spacing:3.275200pt;}
.ls13{letter-spacing:3.285333pt;}
.ls92{letter-spacing:3.342667pt;}
.ls96{letter-spacing:3.618667pt;}
.ls8{letter-spacing:3.733333pt;}
.lsdf{letter-spacing:3.840000pt;}
.lsd8{letter-spacing:3.976000pt;}
.ls61{letter-spacing:4.232000pt;}
.ls74{letter-spacing:4.293333pt;}
.ls79{letter-spacing:4.416000pt;}
.lsaa{letter-spacing:4.984000pt;}
.ls5{letter-spacing:5.120000pt;}
.ls9{letter-spacing:5.226667pt;}
.lsa7{letter-spacing:5.264000pt;}
.ls2{letter-spacing:5.333333pt;}
.lsd7{letter-spacing:5.376000pt;}
.lsa5{letter-spacing:5.600000pt;}
.ls9b{letter-spacing:6.624000pt;}
.lsc3{letter-spacing:6.664000pt;}
.lsce{letter-spacing:7.000000pt;}
.ls55{letter-spacing:7.253472pt;}
.ls69{letter-spacing:7.254005pt;}
.lsc1{letter-spacing:7.392000pt;}
.lsa0{letter-spacing:7.550133pt;}
.lsdd{letter-spacing:7.680000pt;}
.lsc4{letter-spacing:7.840000pt;}
.ls78{letter-spacing:8.157333pt;}
.ls77{letter-spacing:9.261333pt;}
.ls54{letter-spacing:9.874667pt;}
.ls2e{letter-spacing:11.653333pt;}
.ls68{letter-spacing:11.751467pt;}
.lsdb{letter-spacing:12.992000pt;}
.lse8{letter-spacing:422.348267pt;}
.ls0{letter-spacing:422.548267pt;}
.lsbe{letter-spacing:422.614933pt;}
.ls26{letter-spacing:422.981333pt;}
.ls3e{letter-spacing:423.148267pt;}
.ls90{letter-spacing:423.674667pt;}
.ls51{letter-spacing:424.141333pt;}
.ls9f{letter-spacing:424.208000pt;}
.lsa9{letter-spacing:424.374933pt;}
.lscf{letter-spacing:425.341333pt;}
.ls71{letter-spacing:426.734933pt;}
.ls49{letter-spacing:846.686933pt;}
.ls82{letter-spacing:847.126933pt;}
.lsb{letter-spacing:849.460267pt;}
.ls37{letter-spacing:853.060267pt;}
.ls66{letter-spacing:854.820267pt;}
.wsc0{word-spacing:-23.576000pt;}
.wsd9{word-spacing:-22.666667pt;}
.ws3{word-spacing:-20.213333pt;}
.ws97{word-spacing:-20.160000pt;}
.ws2{word-spacing:-20.106667pt;}
.ws4f{word-spacing:-18.216000pt;}
.ws93{word-spacing:-18.093333pt;}
.ws7b{word-spacing:-18.032000pt;}
.ws98{word-spacing:-17.234667pt;}
.wsb7{word-spacing:-16.866667pt;}
.wsa0{word-spacing:-16.800000pt;}
.wscf{word-spacing:-16.576000pt;}
.ws77{word-spacing:-16.560000pt;}
.ws0{word-spacing:-16.533333pt;}
.ws67{word-spacing:-16.498667pt;}
.wsce{word-spacing:-16.466667pt;}
.ws7a{word-spacing:-16.437333pt;}
.wsa2{word-spacing:-16.408000pt;}
.ws8a{word-spacing:-16.376000pt;}
.ws7d{word-spacing:-16.314667pt;}
.wsc2{word-spacing:-16.296000pt;}
.wsd0{word-spacing:-15.848000pt;}
.wsc6{word-spacing:-15.568000pt;}
.ws79{word-spacing:-15.517333pt;}
.wsc7{word-spacing:-15.512000pt;}
.ws8c{word-spacing:-15.210667pt;}
.ws8d{word-spacing:-15.149333pt;}
.ws5f{word-spacing:-15.026667pt;}
.ws4d{word-spacing:-15.000000pt;}
.wsa{word-spacing:-14.773333pt;}
.ws24{word-spacing:-14.536000pt;}
.ws66{word-spacing:-14.474667pt;}
.ws44{word-spacing:-14.413333pt;}
.ws26{word-spacing:-14.290667pt;}
.ws3b{word-spacing:-14.168000pt;}
.ws27{word-spacing:-14.106667pt;}
.wsa1{word-spacing:-14.000000pt;}
.ws3d{word-spacing:-13.984000pt;}
.ws29{word-spacing:-13.922667pt;}
.ws96{word-spacing:-13.861333pt;}
.ws3a{word-spacing:-13.800000pt;}
.wsc1{word-spacing:-13.776000pt;}
.wsb{word-spacing:-13.680000pt;}
.ws5e{word-spacing:-13.677333pt;}
.wsc3{word-spacing:-13.664000pt;}
.ws25{word-spacing:-13.554667pt;}
.wsb8{word-spacing:-13.496000pt;}
.wsd{word-spacing:-13.488000pt;}
.wsc4{word-spacing:-13.384000pt;}
.ws28{word-spacing:-13.370667pt;}
.wsba{word-spacing:-13.328000pt;}
.wsb1{word-spacing:-13.272000pt;}
.ws51{word-spacing:-13.248000pt;}
.wsc5{word-spacing:-13.104000pt;}
.wsb9{word-spacing:-12.992000pt;}
.wsbb{word-spacing:-12.936000pt;}
.wsb0{word-spacing:-12.880000pt;}
.wsdb{word-spacing:-12.746667pt;}
.ws9c{word-spacing:-12.712000pt;}
.ws3c{word-spacing:-12.573333pt;}
.wsa3{word-spacing:-12.488000pt;}
.wsde{word-spacing:-12.426667pt;}
.wsaf{word-spacing:-12.376000pt;}
.wsdd{word-spacing:-12.106667pt;}
.wsdc{word-spacing:-12.053333pt;}
.ws9b{word-spacing:-11.984000pt;}
.wse{word-spacing:-11.856000pt;}
.wsda{word-spacing:-11.733333pt;}
.ws1{word-spacing:-11.685333pt;}
.ws2e{word-spacing:-11.653333pt;}
.wsf{word-spacing:-11.520000pt;}
.wsc{word-spacing:-11.280000pt;}
.ws8e{word-spacing:-11.192045pt;}
.ws7e{word-spacing:-11.184000pt;}
.ws52{word-spacing:-10.548413pt;}
.ws8b{word-spacing:-10.083568pt;}
.ws34{word-spacing:-10.047811pt;}
.ws68{word-spacing:-10.012053pt;}
.ws60{word-spacing:-9.869024pt;}
.ws4e{word-spacing:-9.833267pt;}
.ws7c{word-spacing:-9.654480pt;}
.ws69{word-spacing:-9.511451pt;}
.ws78{word-spacing:-9.439936pt;}
.ws6e{word-spacing:-9.261333pt;}
.ws50{word-spacing:-9.225392pt;}
.ws61{word-spacing:-9.082363pt;}
.ws6f{word-spacing:-8.157333pt;}
.wsbd{word-spacing:-7.392000pt;}
.wscd{word-spacing:-7.000000pt;}
.wsbf{word-spacing:-6.664000pt;}
.ws9d{word-spacing:-5.600000pt;}
.wsd5{word-spacing:-5.376000pt;}
.ws5{word-spacing:-5.333333pt;}
.ws9f{word-spacing:-5.264000pt;}
.ws70{word-spacing:-4.416000pt;}
.ws6a{word-spacing:-4.293333pt;}
.ws59{word-spacing:-4.232000pt;}
.wsd6{word-spacing:-3.976000pt;}
.wse0{word-spacing:-3.840000pt;}
.ws8{word-spacing:-3.733333pt;}
.ws8f{word-spacing:-3.618667pt;}
.ws14{word-spacing:-3.285333pt;}
.wsd4{word-spacing:-3.248000pt;}
.ws99{word-spacing:-2.330667pt;}
.ws2a{word-spacing:-2.133333pt;}
.wsea{word-spacing:-1.546667pt;}
.ws58{word-spacing:-1.410667pt;}
.ws2f{word-spacing:-1.288000pt;}
.ws38{word-spacing:-1.200000pt;}
.ws43{word-spacing:-1.165333pt;}
.wsdf{word-spacing:-1.120000pt;}
.ws1a{word-spacing:-1.104000pt;}
.ws9e{word-spacing:-1.064000pt;}
.ws18{word-spacing:-1.056000pt;}
.ws92{word-spacing:-1.007424pt;}
.ws35{word-spacing:-0.981333pt;}
.ws5b{word-spacing:-0.912000pt;}
.ws74{word-spacing:-0.864000pt;}
.ws6b{word-spacing:-0.674667pt;}
.wsb4{word-spacing:-0.672000pt;}
.ws49{word-spacing:-0.613333pt;}
.ws5d{word-spacing:-0.503712pt;}
.ws55{word-spacing:-0.490667pt;}
.ws33{word-spacing:-0.384000pt;}
.wsb3{word-spacing:-0.336000pt;}
.ws95{word-spacing:-0.245333pt;}
.ws94{word-spacing:-0.122667pt;}
.ws91{word-spacing:-0.111936pt;}
.ws1b{word-spacing:-0.096000pt;}
.ws73{word-spacing:-0.083952pt;}
.wsad{word-spacing:-0.056000pt;}
.ws4{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.048000pt;}
.ws5a{word-spacing:0.055968pt;}
.wsbe{word-spacing:0.056000pt;}
.ws31{word-spacing:0.061333pt;}
.ws16{word-spacing:0.083952pt;}
.wscb{word-spacing:0.112000pt;}
.ws7f{word-spacing:0.122667pt;}
.ws17{word-spacing:0.144000pt;}
.wse9{word-spacing:0.160000pt;}
.wsae{word-spacing:0.168000pt;}
.ws2b{word-spacing:0.184000pt;}
.ws85{word-spacing:0.195888pt;}
.wse6{word-spacing:0.213333pt;}
.wsa9{word-spacing:0.224000pt;}
.ws1e{word-spacing:0.240000pt;}
.ws15{word-spacing:0.245333pt;}
.ws11{word-spacing:0.266667pt;}
.ws1f{word-spacing:0.288000pt;}
.ws53{word-spacing:0.306667pt;}
.ws75{word-spacing:0.307824pt;}
.ws9{word-spacing:0.320000pt;}
.ws86{word-spacing:0.336000pt;}
.ws84{word-spacing:0.363792pt;}
.ws40{word-spacing:0.368000pt;}
.ws6{word-spacing:0.373333pt;}
.wsbc{word-spacing:0.392000pt;}
.wse5{word-spacing:0.426667pt;}
.ws32{word-spacing:0.429333pt;}
.wsac{word-spacing:0.448000pt;}
.ws20{word-spacing:0.480000pt;}
.wsa4{word-spacing:0.504000pt;}
.ws22{word-spacing:0.528000pt;}
.ws5c{word-spacing:0.531696pt;}
.ws56{word-spacing:0.552000pt;}
.wsaa{word-spacing:0.560000pt;}
.ws39{word-spacing:0.576000pt;}
.ws13{word-spacing:0.586667pt;}
.ws2d{word-spacing:0.613333pt;}
.wsb2{word-spacing:0.616000pt;}
.ws21{word-spacing:0.624000pt;}
.wse4{word-spacing:0.640000pt;}
.ws65{word-spacing:0.643632pt;}
.wsb5{word-spacing:0.672000pt;}
.ws30{word-spacing:0.674667pt;}
.ws87{word-spacing:0.720000pt;}
.wsa6{word-spacing:0.728000pt;}
.ws36{word-spacing:0.736000pt;}
.wse8{word-spacing:0.746667pt;}
.ws3e{word-spacing:0.760000pt;}
.ws76{word-spacing:0.768000pt;}
.wsb6{word-spacing:0.784000pt;}
.ws62{word-spacing:0.797333pt;}
.ws1d{word-spacing:0.816000pt;}
.wsa7{word-spacing:0.840000pt;}
.ws63{word-spacing:0.858667pt;}
.ws88{word-spacing:0.864000pt;}
.wsa8{word-spacing:0.896000pt;}
.ws19{word-spacing:0.912000pt;}
.ws2c{word-spacing:0.920000pt;}
.wsab{word-spacing:0.952000pt;}
.ws45{word-spacing:0.981333pt;}
.ws23{word-spacing:1.008000pt;}
.ws4b{word-spacing:1.042667pt;}
.ws89{word-spacing:1.056000pt;}
.wscc{word-spacing:1.064000pt;}
.ws7{word-spacing:1.066667pt;}
.ws57{word-spacing:1.104000pt;}
.ws12{word-spacing:1.120000pt;}
.ws83{word-spacing:1.165333pt;}
.ws81{word-spacing:1.226667pt;}
.wsc8{word-spacing:1.232000pt;}
.ws46{word-spacing:1.288000pt;}
.ws82{word-spacing:1.410667pt;}
.ws10{word-spacing:1.440000pt;}
.ws80{word-spacing:1.472000pt;}
.wsd1{word-spacing:1.512000pt;}
.ws90{word-spacing:1.533333pt;}
.wse3{word-spacing:1.546667pt;}
.ws3f{word-spacing:1.594667pt;}
.wse1{word-spacing:1.600000pt;}
.wsd7{word-spacing:1.624000pt;}
.ws72{word-spacing:1.656000pt;}
.wse2{word-spacing:1.813333pt;}
.ws54{word-spacing:1.840000pt;}
.ws71{word-spacing:1.962667pt;}
.ws64{word-spacing:2.024000pt;}
.ws4c{word-spacing:2.269333pt;}
.wsd8{word-spacing:2.464000pt;}
.ws6c{word-spacing:2.576000pt;}
.ws6d{word-spacing:2.698667pt;}
.ws42{word-spacing:2.821333pt;}
.ws47{word-spacing:3.373333pt;}
.wse7{word-spacing:3.413333pt;}
.ws9a{word-spacing:3.618667pt;}
.wsc9{word-spacing:3.696000pt;}
.wsca{word-spacing:3.752000pt;}
.wsa5{word-spacing:3.864000pt;}
.ws4a{word-spacing:4.048000pt;}
.ws41{word-spacing:4.416000pt;}
.wsd2{word-spacing:5.096000pt;}
.wsd3{word-spacing:5.824000pt;}
.ws48{word-spacing:10.672000pt;}
.ws37{word-spacing:38.617920pt;}
._23{margin-left:-15.006667pt;}
._18{margin-left:-14.113333pt;}
._17{margin-left:-12.505867pt;}
._15{margin-left:-11.600267pt;}
._16{margin-left:-10.158667pt;}
._8{margin-left:-9.014400pt;}
._9{margin-left:-7.883200pt;}
._20{margin-left:-6.399467pt;}
._b{margin-left:-5.304533pt;}
._a{margin-left:-4.131733pt;}
._19{margin-left:-3.197333pt;}
._4{margin-left:-2.284800pt;}
._1{margin-left:-0.977600pt;}
._2{width:1.109333pt;}
._5{width:2.021333pt;}
._0{width:3.026667pt;}
._c{width:4.112000pt;}
._3{width:5.445333pt;}
._6{width:6.432000pt;}
._7{width:7.573333pt;}
._d{width:8.784000pt;}
._12{width:9.974133pt;}
._13{width:10.950133pt;}
._14{width:12.489333pt;}
._1a{width:13.662400pt;}
._1b{width:14.702400pt;}
._25{width:18.323333pt;}
._24{width:19.574853pt;}
._1c{width:21.355200pt;}
._21{width:22.963200pt;}
._22{width:24.681888pt;}
._28{width:28.274133pt;}
._27{width:29.418827pt;}
._26{width:31.111467pt;}
._1f{width:32.202667pt;}
._1e{width:33.981333pt;}
._11{width:38.617920pt;}
._1d{width:40.600000pt;}
._2a{width:46.028000pt;}
._29{width:47.048000pt;}
._e{width:63.466667pt;}
._10{width:224.896000pt;}
._f{width:514.133333pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:35.757333pt;}
.fs3{font-size:37.333333pt;}
.fsc{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fsd{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fs7{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y206{bottom:94.299867pt;}
.y1a4{bottom:94.331200pt;}
.y284{bottom:94.377733pt;}
.y263{bottom:94.383867pt;}
.y1c6{bottom:94.413733pt;}
.yd9{bottom:94.430533pt;}
.y162{bottom:94.474933pt;}
.y94{bottom:94.477600pt;}
.y45{bottom:94.480267pt;}
.y121{bottom:94.482933pt;}
.y6c{bottom:94.485600pt;}
.y1e6{bottom:94.495867pt;}
.y1f{bottom:94.499733pt;}
.y223{bottom:94.509867pt;}
.y243{bottom:94.607867pt;}
.y161{bottom:109.810933pt;}
.y93{bottom:109.813600pt;}
.y44{bottom:109.816267pt;}
.y120{bottom:109.818933pt;}
.y283{bottom:112.124400pt;}
.y1e{bottom:112.179733pt;}
.y1a3{bottom:112.439867pt;}
.y6b{bottom:112.484267pt;}
.y242{bottom:112.737867pt;}
.y262{bottom:113.465867pt;}
.yd8{bottom:115.253200pt;}
.y205{bottom:116.573867pt;}
.y1c5{bottom:116.757733pt;}
.y1e5{bottom:116.881867pt;}
.y222{bottom:121.137867pt;}
.y160{bottom:125.146933pt;}
.y92{bottom:125.149600pt;}
.y43{bottom:125.152267pt;}
.y11f{bottom:127.817600pt;}
.yb8{bottom:128.929067pt;}
.yfb{bottom:128.931733pt;}
.y1d{bottom:129.859733pt;}
.y282{bottom:129.871067pt;}
.y1a2{bottom:130.548533pt;}
.y241{bottom:130.867867pt;}
.y261{bottom:132.547867pt;}
.y204{bottom:135.067867pt;}
.yd7{bottom:136.075867pt;}
.y1c4{bottom:139.101733pt;}
.y1e4{bottom:139.267867pt;}
.y15f{bottom:140.482933pt;}
.y91{bottom:140.485600pt;}
.y42{bottom:143.150933pt;}
.y11e{bottom:144.259733pt;}
.yb7{bottom:144.265067pt;}
.yfa{bottom:146.930400pt;}
.y1c{bottom:147.539733pt;}
.y281{bottom:147.617733pt;}
.y221{bottom:147.765867pt;}
.y1a1{bottom:148.657200pt;}
.y6a{bottom:151.608533pt;}
.y15e{bottom:155.818933pt;}
.y240{bottom:156.557867pt;}
.yd6{bottom:156.898533pt;}
.y203{bottom:157.341867pt;}
.y90{bottom:158.484267pt;}
.y260{bottom:159.189867pt;}
.y11d{bottom:159.595733pt;}
.y41{bottom:159.598400pt;}
.y1c3{bottom:161.445733pt;}
.y1e3{bottom:161.653867pt;}
.yb6{bottom:162.263733pt;}
.yf9{bottom:163.378000pt;}
.y280{bottom:165.364400pt;}
.y1a0{bottom:166.765867pt;}
.y220{bottom:166.833867pt;}
.y69{bottom:169.686533pt;}
.y15d{bottom:173.817600pt;}
.y8f{bottom:174.929067pt;}
.y11c{bottom:174.931733pt;}
.y1b{bottom:176.553067pt;}
.y40{bottom:177.597067pt;}
.yd5{bottom:177.721200pt;}
.y25f{bottom:178.271867pt;}
.yb5{bottom:178.708667pt;}
.y202{bottom:179.615867pt;}
.yf8{bottom:181.376667pt;}
.y23f{bottom:182.247867pt;}
.y27f{bottom:183.111067pt;}
.y1c2{bottom:183.789733pt;}
.y1e2{bottom:184.039867pt;}
.y19f{bottom:184.874533pt;}
.y68{bottom:187.764533pt;}
.y8e{bottom:190.265067pt;}
.y11b{bottom:192.930400pt;}
.y21f{bottom:193.461867pt;}
.yb4{bottom:194.044667pt;}
.y25e{bottom:197.353867pt;}
.yd4{bottom:198.543867pt;}
.y23e{bottom:200.377867pt;}
.y27e{bottom:200.857733pt;}
.y13f{bottom:201.397200pt;}
.y201{bottom:201.889867pt;}
.y19e{bottom:202.983200pt;}
.y67{bottom:205.842533pt;}
.y1c1{bottom:206.133733pt;}
.y1e1{bottom:206.425867pt;}
.y8d{bottom:208.263733pt;}
.yb3{bottom:209.380667pt;}
.y21e{bottom:212.529867pt;}
.y3f{bottom:216.729333pt;}
.y27d{bottom:218.604400pt;}
.yd3{bottom:219.366533pt;}
.yf7{bottom:220.509733pt;}
.y1a{bottom:220.686400pt;}
.y13e{bottom:220.784667pt;}
.y19d{bottom:221.091867pt;}
.y66{bottom:223.920533pt;}
.y25d{bottom:223.995867pt;}
.y200{bottom:224.163867pt;}
.y8c{bottom:224.706000pt;}
.y23d{bottom:226.067867pt;}
.y1c0{bottom:228.477733pt;}
.y1e0{bottom:228.811867pt;}
.y21d{bottom:231.597867pt;}
.y11a{bottom:232.037733pt;}
.y180{bottom:232.044533pt;}
.y3e{bottom:235.236667pt;}
.y27c{bottom:236.351067pt;}
.y19c{bottom:239.200533pt;}
.yf6{bottom:239.277733pt;}
.y19{bottom:239.713600pt;}
.y8b{bottom:240.042000pt;}
.yd2{bottom:240.189200pt;}
.y13d{bottom:240.327200pt;}
.y65{bottom:241.998533pt;}
.y25c{bottom:243.077867pt;}
.y23c{bottom:244.197867pt;}
.y1ff{bottom:246.437867pt;}
.y15c{bottom:247.356133pt;}
.y119{bottom:250.437733pt;}
.y21c{bottom:250.665867pt;}
.y1bf{bottom:250.821733pt;}
.y17f{bottom:251.057867pt;}
.y1df{bottom:251.197867pt;}
.yb2{bottom:251.212933pt;}
.y3d{bottom:253.744000pt;}
.y27b{bottom:254.097733pt;}
.y8a{bottom:255.378000pt;}
.y19b{bottom:257.309200pt;}
.y18{bottom:257.393600pt;}
.yf5{bottom:258.112000pt;}
.y13c{bottom:259.708533pt;}
.y64{bottom:260.061200pt;}
.yd1{bottom:261.011867pt;}
.y15b{bottom:265.863467pt;}
.y1fe{bottom:268.711867pt;}
.y118{bottom:268.837733pt;}
.yb1{bottom:269.505600pt;}
.y25b{bottom:269.719867pt;}
.y23b{bottom:269.887867pt;}
.y17e{bottom:270.071200pt;}
.y89{bottom:270.714000pt;}
.y27a{bottom:271.844400pt;}
.y3c{bottom:272.264400pt;}
.y1be{bottom:273.165733pt;}
.y88{bottom:273.376667pt;}
.y1de{bottom:273.583867pt;}
.y17{bottom:275.073600pt;}
.y19a{bottom:275.417867pt;}
.yf4{bottom:276.880000pt;}
.y21b{bottom:277.293867pt;}
.y63{bottom:278.139200pt;}
.y13b{bottom:279.089867pt;}
.yd0{bottom:281.834533pt;}
.y15a{bottom:284.370800pt;}
.y117{bottom:287.237733pt;}
.yb0{bottom:287.798267pt;}
.y23a{bottom:288.017867pt;}
.y25a{bottom:288.801867pt;}
.y17d{bottom:289.084533pt;}
.y279{bottom:289.591067pt;}
.y87{bottom:289.818800pt;}
.y3b{bottom:290.771733pt;}
.y1fd{bottom:290.985867pt;}
.y16{bottom:292.753600pt;}
.y199{bottom:293.526533pt;}
.y1bd{bottom:295.509733pt;}
.yf3{bottom:295.648000pt;}
.y1dd{bottom:295.969867pt;}
.y62{bottom:296.217200pt;}
.y13a{bottom:298.471200pt;}
.ycf{bottom:302.657200pt;}
.y159{bottom:302.878133pt;}
.y86{bottom:305.154800pt;}
.y116{bottom:305.637733pt;}
.yaf{bottom:306.090933pt;}
.y278{bottom:307.337733pt;}
.y17c{bottom:308.097867pt;}
.y3a{bottom:309.279067pt;}
.y15{bottom:310.433600pt;}
.y198{bottom:311.635200pt;}
.y1fc{bottom:313.259867pt;}
.y239{bottom:313.707867pt;}
.y61{bottom:314.295200pt;}
.yf2{bottom:314.416000pt;}
.y259{bottom:315.443867pt;}
.y139{bottom:317.852533pt;}
.y1bc{bottom:317.853733pt;}
.y1dc{bottom:318.355867pt;}
.y85{bottom:320.490800pt;}
.y158{bottom:321.385467pt;}
.yce{bottom:323.479867pt;}
.y115{bottom:324.037733pt;}
.yae{bottom:324.383600pt;}
.y277{bottom:325.084400pt;}
.y17b{bottom:327.111200pt;}
.y39{bottom:327.786400pt;}
.y14{bottom:328.113600pt;}
.y197{bottom:329.743867pt;}
.y238{bottom:331.837867pt;}
.y60{bottom:332.373200pt;}
.yf1{bottom:333.184000pt;}
.y258{bottom:334.525867pt;}
.y1fb{bottom:335.533867pt;}
.y138{bottom:337.233867pt;}
.y84{bottom:338.489467pt;}
.y157{bottom:339.740267pt;}
.y1bb{bottom:340.197733pt;}
.y1db{bottom:340.741867pt;}
.y114{bottom:342.437733pt;}
.yad{bottom:342.676267pt;}
.y276{bottom:342.831067pt;}
.ycd{bottom:344.302533pt;}
.y13{bottom:345.793600pt;}
.y17a{bottom:346.124533pt;}
.y38{bottom:346.293733pt;}
.y21a{bottom:346.327867pt;}
.y196{bottom:347.852533pt;}
.y5f{bottom:350.451200pt;}
.yf0{bottom:351.952000pt;}
.y137{bottom:356.615200pt;}
.y237{bottom:357.527867pt;}
.y1fa{bottom:357.807867pt;}
.y156{bottom:358.247600pt;}
.y275{bottom:360.577733pt;}
.y113{bottom:360.837733pt;}
.yac{bottom:360.968933pt;}
.y257{bottom:361.167867pt;}
.y1ba{bottom:362.541733pt;}
.y1da{bottom:363.127867pt;}
.y12{bottom:363.473600pt;}
.y37{bottom:364.801067pt;}
.y179{bottom:365.117200pt;}
.ycc{bottom:365.125200pt;}
.y195{bottom:365.961200pt;}
.y5e{bottom:368.529200pt;}
.y219{bottom:369.175867pt;}
.yef{bottom:370.720000pt;}
.y236{bottom:375.657867pt;}
.y136{bottom:375.996533pt;}
.y155{bottom:376.754933pt;}
.y83{bottom:377.639467pt;}
.y274{bottom:378.324400pt;}
.y112{bottom:379.237733pt;}
.yab{bottom:379.261600pt;}
.y1f9{bottom:380.081867pt;}
.y256{bottom:380.249867pt;}
.y11{bottom:381.153600pt;}
.y36{bottom:383.308400pt;}
.y194{bottom:384.069867pt;}
.y178{bottom:384.130533pt;}
.y1b9{bottom:384.885733pt;}
.y1d9{bottom:385.513867pt;}
.ycb{bottom:385.947867pt;}
.y5d{bottom:386.607200pt;}
.yee{bottom:389.488000pt;}
.y218{bottom:392.023867pt;}
.y154{bottom:395.262267pt;}
.y135{bottom:395.377867pt;}
.y273{bottom:396.071067pt;}
.y82{bottom:396.100800pt;}
.yaa{bottom:397.554267pt;}
.y111{bottom:397.637733pt;}
.y10{bottom:398.833600pt;}
.y235{bottom:401.347867pt;}
.y35{bottom:401.815733pt;}
.y193{bottom:402.178533pt;}
.y1f8{bottom:402.355867pt;}
.y177{bottom:403.143867pt;}
.y1b8{bottom:404.107733pt;}
.y5c{bottom:404.685200pt;}
.yca{bottom:406.770533pt;}
.y255{bottom:406.891867pt;}
.y1d8{bottom:407.899867pt;}
.yed{bottom:408.256000pt;}
.y153{bottom:413.769600pt;}
.y272{bottom:413.817733pt;}
.y81{bottom:414.562133pt;}
.y217{bottom:414.871867pt;}
.ya9{bottom:415.846933pt;}
.y110{bottom:416.037733pt;}
.yf{bottom:416.513600pt;}
.y192{bottom:420.287200pt;}
.y34{bottom:420.331333pt;}
.y176{bottom:422.157200pt;}
.y5b{bottom:422.763200pt;}
.y1f7{bottom:424.629867pt;}
.yec{bottom:427.024000pt;}
.y234{bottom:427.037867pt;}
.yc9{bottom:427.593200pt;}
.y1d7{bottom:430.285867pt;}
.y271{bottom:431.564400pt;}
.y152{bottom:432.276933pt;}
.y80{bottom:433.076400pt;}
.y254{bottom:433.533867pt;}
.ya8{bottom:434.139600pt;}
.y134{bottom:434.155867pt;}
.ye{bottom:434.193600pt;}
.y10f{bottom:434.435867pt;}
.y216{bottom:437.719867pt;}
.y191{bottom:438.395867pt;}
.y33{bottom:438.838667pt;}
.y5a{bottom:440.841200pt;}
.y175{bottom:441.170533pt;}
.y233{bottom:445.167867pt;}
.yeb{bottom:445.792000pt;}
.y1f6{bottom:446.903867pt;}
.yc8{bottom:448.415867pt;}
.y270{bottom:449.311067pt;}
.y1b7{bottom:449.887867pt;}
.y151{bottom:450.784267pt;}
.y7f{bottom:451.537733pt;}
.yd{bottom:451.873600pt;}
.ya7{bottom:452.432267pt;}
.y253{bottom:452.615867pt;}
.y1d6{bottom:452.671867pt;}
.y10e{bottom:452.801200pt;}
.y133{bottom:453.537200pt;}
.y190{bottom:456.504533pt;}
.y32{bottom:457.346000pt;}
.y296{bottom:458.171333pt;}
.y59{bottom:458.919200pt;}
.y174{bottom:460.183867pt;}
.y215{bottom:460.567867pt;}
.yea{bottom:464.560000pt;}
.y26f{bottom:467.057733pt;}
.y1b6{bottom:468.441200pt;}
.y1f5{bottom:469.177867pt;}
.yc7{bottom:469.238533pt;}
.y150{bottom:469.291600pt;}
.yc{bottom:469.553600pt;}
.y7e{bottom:469.999067pt;}
.ya6{bottom:470.724933pt;}
.y232{bottom:470.857867pt;}
.y10d{bottom:471.201200pt;}
.y132{bottom:472.918533pt;}
.y18f{bottom:474.613200pt;}
.y1d5{bottom:475.057867pt;}
.y31{bottom:475.853333pt;}
.y295{bottom:476.171333pt;}
.y58{bottom:476.997200pt;}
.y173{bottom:479.197200pt;}
.y252{bottom:479.257867pt;}
.ye9{bottom:483.328000pt;}
.y214{bottom:483.415867pt;}
.y26e{bottom:484.804400pt;}
.y1b5{bottom:486.994533pt;}
.y14f{bottom:487.798933pt;}
.y7d{bottom:488.460400pt;}
.ya5{bottom:489.017600pt;}
.y10c{bottom:489.601200pt;}
.yc6{bottom:490.061200pt;}
.y1f4{bottom:491.451867pt;}
.y131{bottom:492.299867pt;}
.y18e{bottom:492.721867pt;}
.y294{bottom:494.171333pt;}
.y30{bottom:494.360667pt;}
.y57{bottom:495.075200pt;}
.y231{bottom:496.547867pt;}
.y1d4{bottom:497.443867pt;}
.y172{bottom:498.210533pt;}
.y251{bottom:498.339867pt;}
.yb{bottom:498.566933pt;}
.y26d{bottom:502.551067pt;}
.y1b4{bottom:505.547867pt;}
.y213{bottom:506.263867pt;}
.y14e{bottom:506.306267pt;}
.y7c{bottom:506.921733pt;}
.ya4{bottom:507.310267pt;}
.y10b{bottom:508.001200pt;}
.y18d{bottom:510.830533pt;}
.y130{bottom:511.681200pt;}
.y293{bottom:512.171333pt;}
.y2f{bottom:512.868000pt;}
.y56{bottom:513.153200pt;}
.y1f3{bottom:513.725867pt;}
.y230{bottom:514.677867pt;}
.y171{bottom:517.223867pt;}
.y1d3{bottom:519.829867pt;}
.y26c{bottom:520.297733pt;}
.ye8{bottom:520.864000pt;}
.y1b3{bottom:524.101200pt;}
.y14d{bottom:524.813600pt;}
.y250{bottom:524.981867pt;}
.y7b{bottom:525.383067pt;}
.ya3{bottom:525.602933pt;}
.y10a{bottom:526.401200pt;}
.y212{bottom:529.111867pt;}
.y12f{bottom:531.062533pt;}
.y55{bottom:531.231200pt;}
.yc5{bottom:531.706533pt;}
.y1f2{bottom:535.999867pt;}
.y170{bottom:536.237200pt;}
.y26b{bottom:538.044400pt;}
.ye7{bottom:539.632000pt;}
.y22f{bottom:540.367867pt;}
.y292{bottom:541.504667pt;}
.y1d2{bottom:542.215867pt;}
.y1b2{bottom:542.654533pt;}
.y14c{bottom:543.320933pt;}
.y7a{bottom:543.844400pt;}
.ya2{bottom:543.895600pt;}
.y24f{bottom:544.063867pt;}
.y109{bottom:544.801200pt;}
.y18c{bottom:547.830000pt;}
.y54{bottom:549.309200pt;}
.ya{bottom:550.269200pt;}
.y2e{bottom:550.274533pt;}
.y12e{bottom:550.443867pt;}
.y211{bottom:551.959867pt;}
.yc4{bottom:552.529200pt;}
.y16f{bottom:555.250533pt;}
.y26a{bottom:555.791067pt;}
.y1f1{bottom:558.273867pt;}
.ye6{bottom:558.400000pt;}
.y22e{bottom:558.497867pt;}
.y1b1{bottom:561.207867pt;}
.y14b{bottom:561.828267pt;}
.ya1{bottom:562.210667pt;}
.y79{bottom:562.343467pt;}
.y24e{bottom:563.145867pt;}
.y108{bottom:563.201200pt;}
.y1d1{bottom:564.601867pt;}
.y53{bottom:567.387200pt;}
.y12d{bottom:569.825200pt;}
.yc3{bottom:573.351867pt;}
.y269{bottom:573.537733pt;}
.y16e{bottom:574.241200pt;}
.y9{bottom:574.610533pt;}
.y210{bottom:574.807867pt;}
.ye5{bottom:577.168000pt;}
.y291{bottom:578.398000pt;}
.y1b0{bottom:579.761200pt;}
.y14a{bottom:580.335600pt;}
.ya0{bottom:580.503333pt;}
.y1f0{bottom:580.547867pt;}
.y78{bottom:580.804800pt;}
.y107{bottom:581.601200pt;}
.y24d{bottom:582.227867pt;}
.y22d{bottom:584.187867pt;}
.y52{bottom:585.465200pt;}
.y1d0{bottom:586.987867pt;}
.y12c{bottom:589.206533pt;}
.y16d{bottom:593.254533pt;}
.yc2{bottom:594.174533pt;}
.y290{bottom:595.731333pt;}
.ye4{bottom:595.936000pt;}
.y20f{bottom:597.655867pt;}
.y1af{bottom:598.314533pt;}
.y9f{bottom:598.796000pt;}
.y77{bottom:599.266133pt;}
.y106{bottom:600.001200pt;}
.y22c{bottom:602.317867pt;}
.y268{bottom:602.617733pt;}
.y1ef{bottom:602.821867pt;}
.y18b{bottom:603.205867pt;}
.y51{bottom:603.543200pt;}
.y2d{bottom:606.132667pt;}
.y12b{bottom:608.587867pt;}
.y24c{bottom:608.869867pt;}
.y1cf{bottom:609.373867pt;}
.y16c{bottom:612.267867pt;}
.y28f{bottom:613.064667pt;}
.ye3{bottom:614.704000pt;}
.yc1{bottom:614.997200pt;}
.y1ae{bottom:616.867867pt;}
.y9e{bottom:617.088667pt;}
.y149{bottom:617.334933pt;}
.y76{bottom:617.727467pt;}
.y8{bottom:617.865200pt;}
.y105{bottom:618.401200pt;}
.y20e{bottom:620.503867pt;}
.y18a{bottom:621.314533pt;}
.y50{bottom:621.621200pt;}
.y1ee{bottom:625.095867pt;}
.y2c{bottom:625.331333pt;}
.y24b{bottom:627.951867pt;}
.y12a{bottom:627.969200pt;}
.y1ce{bottom:627.979867pt;}
.y22b{bottom:628.007867pt;}
.y28e{bottom:630.398000pt;}
.y16b{bottom:631.281200pt;}
.ye2{bottom:633.472000pt;}
.y9d{bottom:635.381333pt;}
.y1ad{bottom:635.421200pt;}
.yc0{bottom:635.819867pt;}
.y148{bottom:635.842267pt;}
.y75{bottom:636.188800pt;}
.y104{bottom:636.801200pt;}
.y189{bottom:639.423200pt;}
.y4f{bottom:639.699200pt;}
.y2b{bottom:643.171333pt;}
.y20d{bottom:643.351867pt;}
.y22a{bottom:646.137867pt;}
.y7{bottom:646.209200pt;}
.y24a{bottom:647.033867pt;}
.y129{bottom:647.350533pt;}
.y1ed{bottom:647.369867pt;}
.y28d{bottom:647.731333pt;}
.y16a{bottom:650.294533pt;}
.y1cd{bottom:650.365867pt;}
.ye1{bottom:652.240000pt;}
.y9c{bottom:653.674000pt;}
.y1ac{bottom:653.974533pt;}
.y147{bottom:654.349600pt;}
.y267{bottom:654.369200pt;}
.y74{bottom:654.710533pt;}
.y103{bottom:655.201200pt;}
.ybf{bottom:656.642533pt;}
.y188{bottom:657.531867pt;}
.y4e{bottom:657.777200pt;}
.y2a{bottom:661.011333pt;}
.y28c{bottom:665.064667pt;}
.y20c{bottom:666.199867pt;}
.y128{bottom:666.731867pt;}
.y169{bottom:669.307867pt;}
.y1ec{bottom:669.643867pt;}
.ye0{bottom:671.008000pt;}
.y229{bottom:671.827867pt;}
.y9b{bottom:671.966667pt;}
.y1ab{bottom:672.527867pt;}
.y1cc{bottom:672.751867pt;}
.y146{bottom:672.856933pt;}
.y73{bottom:673.171867pt;}
.y102{bottom:673.601200pt;}
.y249{bottom:673.675867pt;}
.y6{bottom:674.553200pt;}
.y187{bottom:675.640533pt;}
.y4d{bottom:675.855200pt;}
.ybe{bottom:677.465200pt;}
.y266{bottom:678.785200pt;}
.y29{bottom:678.851333pt;}
.y28b{bottom:682.398000pt;}
.y127{bottom:686.113200pt;}
.y168{bottom:688.321200pt;}
.y20b{bottom:689.047867pt;}
.ydf{bottom:689.787467pt;}
.y228{bottom:689.957867pt;}
.y9a{bottom:690.259333pt;}
.y1aa{bottom:691.081200pt;}
.y145{bottom:691.364267pt;}
.y72{bottom:691.633200pt;}
.y1eb{bottom:691.917867pt;}
.y101{bottom:692.001200pt;}
.y248{bottom:692.757867pt;}
.y186{bottom:693.749200pt;}
.y4c{bottom:693.933200pt;}
.y1cb{bottom:695.137867pt;}
.y28{bottom:696.691333pt;}
.ybd{bottom:698.287867pt;}
.y28a{bottom:699.731333pt;}
.y5{bottom:702.897200pt;}
.y126{bottom:705.494533pt;}
.y167{bottom:707.334533pt;}
.y99{bottom:708.552000pt;}
.yde{bottom:708.555467pt;}
.y1a9{bottom:709.634533pt;}
.y144{bottom:709.871600pt;}
.y71{bottom:710.094533pt;}
.y100{bottom:710.401200pt;}
.y185{bottom:711.857867pt;}
.y20a{bottom:711.895867pt;}
.y4b{bottom:712.011200pt;}
.y1ea{bottom:714.191867pt;}
.y27{bottom:714.531333pt;}
.y227{bottom:715.647867pt;}
.y289{bottom:717.064667pt;}
.y1ca{bottom:717.523867pt;}
.ybc{bottom:719.110533pt;}
.y247{bottom:719.399867pt;}
.y125{bottom:724.875867pt;}
.y166{bottom:726.347867pt;}
.y98{bottom:726.849600pt;}
.ydd{bottom:727.323467pt;}
.y1a8{bottom:728.187867pt;}
.y143{bottom:728.378933pt;}
.y70{bottom:728.555867pt;}
.yff{bottom:728.801200pt;}
.y184{bottom:729.966533pt;}
.y4a{bottom:730.089200pt;}
.y26{bottom:732.371333pt;}
.y226{bottom:733.777867pt;}
.y288{bottom:734.398000pt;}
.y209{bottom:734.743867pt;}
.y1e9{bottom:736.465867pt;}
.y246{bottom:738.481867pt;}
.y1c9{bottom:739.909867pt;}
.ybb{bottom:739.933200pt;}
.y124{bottom:744.257200pt;}
.y97{bottom:745.142267pt;}
.y165{bottom:745.361200pt;}
.ydc{bottom:746.091467pt;}
.y1a7{bottom:746.741200pt;}
.y142{bottom:746.886267pt;}
.y6f{bottom:747.017200pt;}
.yfe{bottom:747.201200pt;}
.y183{bottom:748.075200pt;}
.y49{bottom:748.167200pt;}
.y25{bottom:750.211333pt;}
.y287{bottom:751.731333pt;}
.y245{bottom:757.563867pt;}
.y208{bottom:757.591867pt;}
.y4{bottom:757.700667pt;}
.y1e8{bottom:758.739867pt;}
.y265{bottom:758.907867pt;}
.y225{bottom:759.467867pt;}
.yba{bottom:760.755867pt;}
.y1c8{bottom:762.295867pt;}
.y96{bottom:763.434933pt;}
.y123{bottom:763.638533pt;}
.y164{bottom:764.374533pt;}
.ydb{bottom:764.865200pt;}
.y1a6{bottom:765.294533pt;}
.y141{bottom:765.393600pt;}
.y6e{bottom:765.478533pt;}
.yfd{bottom:765.601200pt;}
.y182{bottom:766.183867pt;}
.y48{bottom:766.245200pt;}
.y24{bottom:768.051333pt;}
.y286{bottom:769.064667pt;}
.y224{bottom:777.597867pt;}
.y207{bottom:780.439867pt;}
.y1c7{bottom:780.901867pt;}
.y1e7{bottom:781.013867pt;}
.yb9{bottom:781.578533pt;}
.y122{bottom:783.019867pt;}
.y163{bottom:783.387867pt;}
.yda{bottom:783.633200pt;}
.y1a5{bottom:783.847867pt;}
.y140{bottom:783.893867pt;}
.y6d{bottom:783.939867pt;}
.yfc{bottom:784.001200pt;}
.y244{bottom:784.205867pt;}
.y3{bottom:784.274000pt;}
.y181{bottom:784.292533pt;}
.y47{bottom:784.323200pt;}
.y264{bottom:784.877867pt;}
.y23{bottom:785.891333pt;}
.y285{bottom:786.398000pt;}
.y95{bottom:800.627733pt;}
.y46{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y22{bottom:803.731333pt;}
.y21{bottom:842.834667pt;}
.y20{bottom:858.834667pt;}
.h10{height:22.190437pt;}
.ha{height:30.107146pt;}
.hd{height:36.229167pt;}
.h14{height:39.060271pt;}
.hb{height:40.757812pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.hc{height:49.710938pt;}
.h9{height:52.079427pt;}
.h13{height:52.086894pt;}
.h15{height:52.107694pt;}
.hf{height:52.140760pt;}
.h18{height:52.162094pt;}
.h17{height:52.170094pt;}
.h16{height:52.689560pt;}
.h11{height:53.277344pt;}
.h7{height:55.234375pt;}
.h2{height:56.608073pt;}
.h19{height:57.996094pt;}
.h8{height:61.136719pt;}
.h6{height:63.401042pt;}
.he{height:63.519531pt;}
.h12{height:63.658198pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xf{left:71.946800pt;}
.x1{left:73.079333pt;}
.x8{left:74.321467pt;}
.x5{left:75.627333pt;}
.xa{left:92.161600pt;}
.x6{left:93.359333pt;}
.x4{left:94.547333pt;}
.xe{left:114.660400pt;}
.xb{left:115.928267pt;}
.xd{left:117.338133pt;}
.xc{left:118.288800pt;}
.x9{left:189.034533pt;}
.x3{left:204.445067pt;}
.x2{left:206.756800pt;}
.x7{left:207.922667pt;}
}




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