
    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_97cc993b1e08178d0c607268.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.208008;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_61107056c05384c5ad150086.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.207031;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_fce97ed56765a4257662b5c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.207031;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_8ceb5b1651bfac9d544f38ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_fce97ed56765a4257662b5c5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.207031;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_2b86fba7e03d13c27db89d50.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v2{vertical-align:-22.050000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.031200px;}
.v3{vertical-align:22.050000px;}
.ls23{letter-spacing:-5.985000px;}
.ls24{letter-spacing:-5.859000px;}
.ls16{letter-spacing:-5.670000px;}
.ls1a{letter-spacing:-5.418000px;}
.ls19{letter-spacing:-5.229000px;}
.ls17{letter-spacing:-1.440000px;}
.ls22{letter-spacing:-1.323000px;}
.ls3{letter-spacing:-1.296000px;}
.ls21{letter-spacing:-1.260000px;}
.ls14{letter-spacing:-1.197000px;}
.ls2a{letter-spacing:-1.116000px;}
.ls6{letter-spacing:-0.972000px;}
.ls1d{letter-spacing:-0.945000px;}
.ls2f{letter-spacing:-0.765000px;}
.ls8{letter-spacing:-0.744000px;}
.ls20{letter-spacing:-0.693000px;}
.lsb{letter-spacing:-0.651000px;}
.ls1f{letter-spacing:-0.630000px;}
.ls25{letter-spacing:-0.558000px;}
.ls2b{letter-spacing:-0.510000px;}
.ls18{letter-spacing:-0.504000px;}
.ls1e{letter-spacing:-0.441000px;}
.ls13{letter-spacing:-0.378000px;}
.ls9{letter-spacing:-0.315000px;}
.ls1c{letter-spacing:-0.189000px;}
.lsd{letter-spacing:-0.126000px;}
.lse{letter-spacing:-0.063000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.315000px;}
.lsc{letter-spacing:0.450000px;}
.ls26{letter-spacing:0.510000px;}
.ls4{letter-spacing:0.546000px;}
.ls12{letter-spacing:0.630000px;}
.lsf{letter-spacing:0.720960px;}
.ls1b{letter-spacing:0.945000px;}
.ls7{letter-spacing:1.020000px;}
.ls5{letter-spacing:1.131000px;}
.ls10{letter-spacing:1.260000px;}
.ls29{letter-spacing:1.275000px;}
.ls2c{letter-spacing:1.530000px;}
.lsa{letter-spacing:1.575000px;}
.ls28{letter-spacing:1.785000px;}
.ls27{letter-spacing:1.938000px;}
.ls2d{letter-spacing:2.040000px;}
.ls11{letter-spacing:2.205000px;}
.ls2e{letter-spacing:5.457000px;}
.ls0{letter-spacing:89.217000px;}
.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;}
}
.ws115{word-spacing:-31.248000px;}
.ws1f{word-spacing:-31.062000px;}
.ws122{word-spacing:-30.690000px;}
.ws1{word-spacing:-23.598000px;}
.wsc3{word-spacing:-22.176000px;}
.ws10c{word-spacing:-21.798000px;}
.ws96{word-spacing:-20.979000px;}
.ws10d{word-spacing:-20.853000px;}
.ws1e{word-spacing:-20.064000px;}
.ws0{word-spacing:-19.008000px;}
.wsd6{word-spacing:-16.758000px;}
.ws83{word-spacing:-16.506000px;}
.ws10e{word-spacing:-16.191000px;}
.ws65{word-spacing:-15.840000px;}
.ws64{word-spacing:-12.862080px;}
.wsb3{word-spacing:-4.977000px;}
.ws90{word-spacing:-4.914000px;}
.wsa2{word-spacing:-4.536000px;}
.ws120{word-spacing:-4.473000px;}
.wsb8{word-spacing:-4.410000px;}
.ws5d{word-spacing:-4.347000px;}
.ws9d{word-spacing:-4.221000px;}
.wscc{word-spacing:-4.158000px;}
.ws6b{word-spacing:-4.095000px;}
.ws87{word-spacing:-4.032000px;}
.ws46{word-spacing:-3.969000px;}
.ws8b{word-spacing:-3.906000px;}
.wsf8{word-spacing:-3.843000px;}
.ws2c{word-spacing:-3.780000px;}
.wsba{word-spacing:-3.717000px;}
.ws66{word-spacing:-3.654000px;}
.wsb1{word-spacing:-3.591000px;}
.ws77{word-spacing:-3.528000px;}
.ws183{word-spacing:-3.468000px;}
.ws8a{word-spacing:-3.465000px;}
.ws163{word-spacing:-3.417000px;}
.ws11e{word-spacing:-3.402000px;}
.ws5c{word-spacing:-3.339000px;}
.wse4{word-spacing:-3.213000px;}
.ws179{word-spacing:-3.162000px;}
.wsf6{word-spacing:-3.150000px;}
.wsb7{word-spacing:-3.087000px;}
.ws132{word-spacing:-3.060000px;}
.ws71{word-spacing:-3.024000px;}
.wse1{word-spacing:-2.961000px;}
.ws117{word-spacing:-2.898000px;}
.wscb{word-spacing:-2.835000px;}
.ws164{word-spacing:-2.805000px;}
.wsfe{word-spacing:-2.772000px;}
.ws6e{word-spacing:-2.709000px;}
.ws8f{word-spacing:-2.646000px;}
.ws160{word-spacing:-2.601000px;}
.ws38{word-spacing:-2.583000px;}
.ws41{word-spacing:-2.550000px;}
.wsbd{word-spacing:-2.520000px;}
.ws178{word-spacing:-2.499000px;}
.wsa5{word-spacing:-2.457000px;}
.ws157{word-spacing:-2.448000px;}
.ws130{word-spacing:-2.397000px;}
.ws32{word-spacing:-2.394000px;}
.wsc{word-spacing:-2.346000px;}
.ws6c{word-spacing:-2.331000px;}
.ws173{word-spacing:-2.295000px;}
.wsc1{word-spacing:-2.268000px;}
.ws7{word-spacing:-2.244000px;}
.wsf2{word-spacing:-2.205000px;}
.ws14d{word-spacing:-2.193000px;}
.wsf1{word-spacing:-2.142000px;}
.ws28{word-spacing:-2.079000px;}
.ws172{word-spacing:-2.040000px;}
.ws52{word-spacing:-2.016000px;}
.wsd0{word-spacing:-1.953000px;}
.ws149{word-spacing:-1.887000px;}
.ws13f{word-spacing:-1.836000px;}
.wsc2{word-spacing:-1.827000px;}
.ws15e{word-spacing:-1.785000px;}
.wse9{word-spacing:-1.764000px;}
.ws137{word-spacing:-1.734000px;}
.ws4d{word-spacing:-1.701000px;}
.ws17b{word-spacing:-1.683000px;}
.ws68{word-spacing:-1.638000px;}
.ws10{word-spacing:-1.581000px;}
.ws84{word-spacing:-1.575000px;}
.ws175{word-spacing:-1.530000px;}
.ws92{word-spacing:-1.512000px;}
.ws151{word-spacing:-1.479000px;}
.ws62{word-spacing:-1.449000px;}
.wscd{word-spacing:-1.386000px;}
.ws177{word-spacing:-1.377000px;}
.wse7{word-spacing:-1.323000px;}
.wsb0{word-spacing:-1.260000px;}
.ws42{word-spacing:-1.224000px;}
.wsbe{word-spacing:-1.197000px;}
.wsae{word-spacing:-1.134000px;}
.ws1c{word-spacing:-1.131000px;}
.ws17{word-spacing:-1.122000px;}
.wsfa{word-spacing:-1.071000px;}
.ws44{word-spacing:-1.020000px;}
.wsa0{word-spacing:-1.008000px;}
.ws14e{word-spacing:-0.969000px;}
.ws55{word-spacing:-0.945000px;}
.ws12f{word-spacing:-0.918000px;}
.wsdc{word-spacing:-0.882000px;}
.ws14b{word-spacing:-0.867000px;}
.ws73{word-spacing:-0.819000px;}
.ws15{word-spacing:-0.765000px;}
.wsfb{word-spacing:-0.756000px;}
.ws14{word-spacing:-0.714000px;}
.ws54{word-spacing:-0.693000px;}
.ws135{word-spacing:-0.663000px;}
.wsa4{word-spacing:-0.630000px;}
.ws142{word-spacing:-0.612000px;}
.wsb9{word-spacing:-0.567000px;}
.ws1b{word-spacing:-0.546000px;}
.ws153{word-spacing:-0.510000px;}
.ws11f{word-spacing:-0.504000px;}
.ws82{word-spacing:-0.450000px;}
.ws50{word-spacing:-0.441000px;}
.ws162{word-spacing:-0.408000px;}
.wsa8{word-spacing:-0.378000px;}
.ws174{word-spacing:-0.357000px;}
.ws49{word-spacing:-0.315000px;}
.ws17a{word-spacing:-0.306000px;}
.ws8{word-spacing:-0.255000px;}
.wsc8{word-spacing:-0.252000px;}
.ws11{word-spacing:-0.204000px;}
.ws51{word-spacing:-0.189000px;}
.ws74{word-spacing:-0.126000px;}
.ws3{word-spacing:-0.108000px;}
.ws15d{word-spacing:-0.102000px;}
.wsff{word-spacing:-0.063000px;}
.ws170{word-spacing:-0.051000px;}
.ws97{word-spacing:-0.047250px;}
.ws2{word-spacing:0.000000px;}
.ws16d{word-spacing:0.051000px;}
.wsa9{word-spacing:0.063000px;}
.ws165{word-spacing:0.102000px;}
.ws9e{word-spacing:0.126000px;}
.ws13b{word-spacing:0.153000px;}
.ws86{word-spacing:0.189000px;}
.ws15c{word-spacing:0.204000px;}
.ws47{word-spacing:0.252000px;}
.ws181{word-spacing:0.306000px;}
.ws81{word-spacing:0.315000px;}
.ws167{word-spacing:0.357000px;}
.ws80{word-spacing:0.378000px;}
.ws16e{word-spacing:0.408000px;}
.ws2f{word-spacing:0.441000px;}
.ws148{word-spacing:0.459000px;}
.wsab{word-spacing:0.504000px;}
.ws182{word-spacing:0.510000px;}
.ws102{word-spacing:0.567000px;}
.ws141{word-spacing:0.612000px;}
.ws88{word-spacing:0.630000px;}
.ws53{word-spacing:0.651000px;}
.ws24{word-spacing:0.693000px;}
.ws9{word-spacing:0.714000px;}
.ws98{word-spacing:0.744000px;}
.ws59{word-spacing:0.756000px;}
.ws129{word-spacing:0.765000px;}
.ws145{word-spacing:0.816000px;}
.ws37{word-spacing:0.819000px;}
.wsc7{word-spacing:0.882000px;}
.ws17e{word-spacing:0.918000px;}
.ws79{word-spacing:0.945000px;}
.ws16c{word-spacing:0.969000px;}
.ws1d{word-spacing:0.972000px;}
.ws78{word-spacing:1.008000px;}
.ws12e{word-spacing:1.020000px;}
.ws89{word-spacing:1.071000px;}
.ws8c{word-spacing:1.134000px;}
.ws156{word-spacing:1.173000px;}
.wsd8{word-spacing:1.197000px;}
.wsfc{word-spacing:1.260000px;}
.ws4{word-spacing:1.296000px;}
.wsbf{word-spacing:1.323000px;}
.ws144{word-spacing:1.326000px;}
.ws27{word-spacing:1.386000px;}
.ws8d{word-spacing:1.449000px;}
.ws139{word-spacing:1.479000px;}
.ws5a{word-spacing:1.512000px;}
.ws14a{word-spacing:1.530000px;}
.ws5b{word-spacing:1.575000px;}
.ws101{word-spacing:1.638000px;}
.ws111{word-spacing:1.701000px;}
.ws4a{word-spacing:1.764000px;}
.ws9f{word-spacing:1.827000px;}
.ws176{word-spacing:1.887000px;}
.ws4c{word-spacing:1.890000px;}
.ws136{word-spacing:1.938000px;}
.ws118{word-spacing:1.953000px;}
.wsde{word-spacing:2.016000px;}
.ws158{word-spacing:2.040000px;}
.ws61{word-spacing:2.079000px;}
.ws70{word-spacing:2.142000px;}
.ws23{word-spacing:2.268000px;}
.ws22{word-spacing:2.331000px;}
.ws169{word-spacing:2.346000px;}
.ws3e{word-spacing:2.394000px;}
.ws146{word-spacing:2.448000px;}
.ws4e{word-spacing:2.457000px;}
.wse0{word-spacing:2.520000px;}
.ws12{word-spacing:2.550000px;}
.ws72{word-spacing:2.583000px;}
.wse{word-spacing:2.601000px;}
.ws14f{word-spacing:2.652000px;}
.ws11c{word-spacing:2.709000px;}
.wse8{word-spacing:2.772000px;}
.ws2d{word-spacing:2.835000px;}
.ws10f{word-spacing:2.898000px;}
.ws127{word-spacing:2.907000px;}
.wsd{word-spacing:3.009000px;}
.wsb2{word-spacing:3.024000px;}
.ws15f{word-spacing:3.060000px;}
.wsb5{word-spacing:3.087000px;}
.ws125{word-spacing:3.111000px;}
.ws3a{word-spacing:3.150000px;}
.wsac{word-spacing:3.213000px;}
.ws18{word-spacing:3.264000px;}
.ws69{word-spacing:3.276000px;}
.ws63{word-spacing:3.339000px;}
.ws161{word-spacing:3.366000px;}
.wsa7{word-spacing:3.402000px;}
.ws36{word-spacing:3.465000px;}
.ws16b{word-spacing:3.519000px;}
.ws85{word-spacing:3.528000px;}
.ws25{word-spacing:3.591000px;}
.ws91{word-spacing:3.654000px;}
.ws168{word-spacing:3.672000px;}
.ws3d{word-spacing:3.717000px;}
.wsaf{word-spacing:3.780000px;}
.ws140{word-spacing:3.825000px;}
.ws13{word-spacing:3.876000px;}
.ws3c{word-spacing:3.906000px;}
.ws150{word-spacing:3.927000px;}
.ws31{word-spacing:3.969000px;}
.ws180{word-spacing:4.029000px;}
.ws9b{word-spacing:4.032000px;}
.ws138{word-spacing:4.080000px;}
.wsad{word-spacing:4.095000px;}
.ws67{word-spacing:4.158000px;}
.ws12a{word-spacing:4.182000px;}
.wsed{word-spacing:4.221000px;}
.ws12b{word-spacing:4.233000px;}
.ws19{word-spacing:4.284000px;}
.ws171{word-spacing:4.335000px;}
.wsf7{word-spacing:4.410000px;}
.ws152{word-spacing:4.437000px;}
.ws75{word-spacing:4.473000px;}
.ws123{word-spacing:4.488000px;}
.ws7d{word-spacing:4.536000px;}
.ws43{word-spacing:4.590000px;}
.ws7c{word-spacing:4.599000px;}
.ws93{word-spacing:4.662000px;}
.ws76{word-spacing:4.725000px;}
.ws12d{word-spacing:4.743000px;}
.ws33{word-spacing:4.788000px;}
.ws4b{word-spacing:4.851000px;}
.wsa6{word-spacing:4.914000px;}
.ws16{word-spacing:4.998000px;}
.ws2b{word-spacing:5.040000px;}
.ws26{word-spacing:5.103000px;}
.wsc6{word-spacing:5.166000px;}
.wsb{word-spacing:5.253000px;}
.ws6a{word-spacing:5.292000px;}
.ws110{word-spacing:5.355000px;}
.ws13d{word-spacing:5.406000px;}
.ws5f{word-spacing:5.418000px;}
.ws8e{word-spacing:5.481000px;}
.ws15b{word-spacing:5.508000px;}
.ws48{word-spacing:5.544000px;}
.ws112{word-spacing:5.607000px;}
.wsf{word-spacing:5.610000px;}
.ws4f{word-spacing:5.670000px;}
.wsa{word-spacing:5.763000px;}
.wsbb{word-spacing:5.796000px;}
.ws119{word-spacing:5.859000px;}
.ws1a{word-spacing:5.865000px;}
.ws113{word-spacing:5.922000px;}
.ws13c{word-spacing:5.967000px;}
.ws13a{word-spacing:6.018000px;}
.wsdf{word-spacing:6.048000px;}
.ws133{word-spacing:6.069000px;}
.wsb4{word-spacing:6.111000px;}
.ws154{word-spacing:6.120000px;}
.wsd9{word-spacing:6.174000px;}
.wsf0{word-spacing:6.237000px;}
.ws166{word-spacing:6.273000px;}
.ws6d{word-spacing:6.300000px;}
.ws58{word-spacing:6.363000px;}
.wsc4{word-spacing:6.426000px;}
.ws13e{word-spacing:6.477000px;}
.wsa3{word-spacing:6.489000px;}
.wsec{word-spacing:6.615000px;}
.ws155{word-spacing:6.630000px;}
.ws30{word-spacing:6.678000px;}
.ws9c{word-spacing:6.741000px;}
.ws17d{word-spacing:6.783000px;}
.ws11d{word-spacing:6.804000px;}
.wseb{word-spacing:6.867000px;}
.ws128{word-spacing:6.885000px;}
.ws3b{word-spacing:6.930000px;}
.ws15a{word-spacing:6.987000px;}
.ws7e{word-spacing:6.993000px;}
.ws3f{word-spacing:7.038000px;}
.wsd1{word-spacing:7.056000px;}
.ws12c{word-spacing:7.089000px;}
.wsaa{word-spacing:7.245000px;}
.wsce{word-spacing:7.308000px;}
.wsd7{word-spacing:7.371000px;}
.ws116{word-spacing:7.434000px;}
.ws5e{word-spacing:7.497000px;}
.ws17f{word-spacing:7.599000px;}
.ws2e{word-spacing:7.623000px;}
.ws34{word-spacing:7.749000px;}
.ws159{word-spacing:7.803000px;}
.wsdd{word-spacing:7.812000px;}
.ws124{word-spacing:7.854000px;}
.ws7f{word-spacing:7.875000px;}
.ws108{word-spacing:7.938000px;}
.ws2a{word-spacing:8.001000px;}
.wsee{word-spacing:8.064000px;}
.ws39{word-spacing:8.127000px;}
.ws16a{word-spacing:8.160000px;}
.ws6f{word-spacing:8.190000px;}
.ws106{word-spacing:8.253000px;}
.wsb6{word-spacing:8.316000px;}
.ws10a{word-spacing:8.379000px;}
.ws57{word-spacing:8.442000px;}
.ws40{word-spacing:8.466000px;}
.wscf{word-spacing:8.505000px;}
.wsa1{word-spacing:8.568000px;}
.wsd5{word-spacing:8.631000px;}
.ws105{word-spacing:8.694000px;}
.ws29{word-spacing:8.757000px;}
.wsc0{word-spacing:8.820000px;}
.ws126{word-spacing:8.874000px;}
.ws56{word-spacing:8.883000px;}
.wse5{word-spacing:8.946000px;}
.ws11a{word-spacing:9.009000px;}
.wse2{word-spacing:9.072000px;}
.wsd2{word-spacing:9.135000px;}
.ws35{word-spacing:9.198000px;}
.wsef{word-spacing:9.324000px;}
.ws143{word-spacing:9.333000px;}
.ws147{word-spacing:9.384000px;}
.ws10b{word-spacing:9.387000px;}
.ws107{word-spacing:9.450000px;}
.ws103{word-spacing:9.513000px;}
.wsea{word-spacing:9.639000px;}
.ws20{word-spacing:9.765000px;}
.ws99{word-spacing:9.891000px;}
.wsbc{word-spacing:9.954000px;}
.wsc9{word-spacing:10.080000px;}
.ws7a{word-spacing:10.143000px;}
.ws11b{word-spacing:10.206000px;}
.ws121{word-spacing:10.332000px;}
.wsc5{word-spacing:10.395000px;}
.wse6{word-spacing:10.458000px;}
.ws100{word-spacing:10.521000px;}
.ws134{word-spacing:10.557000px;}
.ws131{word-spacing:10.710000px;}
.wsfd{word-spacing:10.773000px;}
.wse3{word-spacing:11.025000px;}
.wsd3{word-spacing:11.088000px;}
.ws17c{word-spacing:11.118000px;}
.wsdb{word-spacing:11.214000px;}
.wsda{word-spacing:11.466000px;}
.ws109{word-spacing:11.592000px;}
.ws45{word-spacing:11.628000px;}
.wsf5{word-spacing:11.655000px;}
.ws94{word-spacing:11.844000px;}
.ws16f{word-spacing:11.934000px;}
.ws21{word-spacing:12.096000px;}
.ws95{word-spacing:12.285000px;}
.ws14c{word-spacing:12.393000px;}
.ws60{word-spacing:12.474000px;}
.ws9a{word-spacing:12.600000px;}
.wsd4{word-spacing:13.230000px;}
.ws7b{word-spacing:13.293000px;}
.wsf3{word-spacing:13.356000px;}
.ws114{word-spacing:13.482000px;}
.wsf4{word-spacing:13.671000px;}
.ws6{word-spacing:13.923000px;}
.wsf9{word-spacing:18.081000px;}
.wsca{word-spacing:19.908000px;}
.ws104{word-spacing:24.507000px;}
.ws5{word-spacing:89.217000px;}
._5{margin-left:-8.191800px;}
._a{margin-left:-6.961800px;}
._1{margin-left:-5.551200px;}
._4{margin-left:-4.546800px;}
._6{margin-left:-2.932200px;}
._0{margin-left:-1.609200px;}
._3{width:1.749600px;}
._2{width:3.099600px;}
._e{width:4.918500px;}
._f{width:6.749100px;}
._c{width:12.342000px;}
._b{width:24.741000px;}
._d{width:40.590000px;}
._8{width:69.414000px;}
._7{width:89.210100px;}
._9{width:158.631000px;}
.fc5{color:rgb(244,110,37);}
.fc4{color:rgb(123,121,121);}
.fc6{color:rgb(35,31,32);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc1{color:transparent;}
.fc0{color:rgb(33,4,0);}
.fsb{font-size:36.540000px;}
.fs6{font-size:39.000000px;}
.fs8{font-size:45.000000px;}
.fsd{font-size:47.250000px;}
.fs3{font-size:51.000000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:62.640000px;}
.fsa{font-size:63.000000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:69.000000px;}
.fsc{font-size:72.000000px;}
.fs9{font-size:93.000000px;}
.fs0{font-size:108.000000px;}
.y9{bottom:-21.572400px;}
.y4a{bottom:-4.823400px;}
.y0{bottom:0.000000px;}
.y10{bottom:0.202950px;}
.y8{bottom:0.405600px;}
.y2{bottom:0.459600px;}
.y12{bottom:1.485450px;}
.y14{bottom:1.998450px;}
.y17{bottom:2.713950px;}
.y5{bottom:5.427600px;}
.ye{bottom:5.562600px;}
.y27{bottom:63.758550px;}
.y48{bottom:63.775050px;}
.y45{bottom:63.779550px;}
.y47{bottom:75.777300px;}
.y26{bottom:84.010050px;}
.y46{bottom:87.779550px;}
.y25{bottom:104.261550px;}
.y24{bottom:124.513050px;}
.y1ec{bottom:139.445850px;}
.y71{bottom:139.778850px;}
.y3b7{bottom:139.955400px;}
.y341{bottom:140.143500px;}
.yf3{bottom:140.198700px;}
.y1b7{bottom:140.238450px;}
.y2ae{bottom:140.257050px;}
.y253{bottom:140.277450px;}
.y15d{bottom:140.284950px;}
.y2e2{bottom:140.288700px;}
.y21a{bottom:140.293350px;}
.y126{bottom:140.296200px;}
.y4c{bottom:140.311200px;}
.ya6{bottom:140.400000px;}
.y37d{bottom:140.476200px;}
.yd3{bottom:141.351000px;}
.y1e6{bottom:141.718200px;}
.y248{bottom:141.832350px;}
.y2da{bottom:141.853500px;}
.y154{bottom:141.962400px;}
.y18b{bottom:142.125450px;}
.y23{bottom:144.764550px;}
.y1eb{bottom:153.699600px;}
.yf2{bottom:154.452450px;}
.y252{bottom:154.531200px;}
.y15c{bottom:154.538700px;}
.y2e1{bottom:154.542450px;}
.y125{bottom:154.549950px;}
.y4b{bottom:154.564950px;}
.y37c{bottom:157.956450px;}
.y3b6{bottom:158.047650px;}
.y340{bottom:158.248500px;}
.y70{bottom:161.970600px;}
.y2ad{bottom:162.023550px;}
.y1b6{bottom:162.162450px;}
.ya5{bottom:162.308250px;}
.y219{bottom:162.500850px;}
.y2d9{bottom:163.651500px;}
.y1e5{bottom:163.689450px;}
.y153{bottom:163.886400px;}
.yd2{bottom:164.015250px;}
.y247{bottom:164.134350px;}
.y18a{bottom:164.285700px;}
.y22{bottom:165.016050px;}
.y1ea{bottom:167.953350px;}
.yf1{bottom:168.706200px;}
.y251{bottom:168.784950px;}
.y15b{bottom:168.792450px;}
.y2e0{bottom:168.796200px;}
.y124{bottom:168.803700px;}
.y37b{bottom:175.436700px;}
.y3b5{bottom:176.139900px;}
.y33f{bottom:176.353500px;}
.y1e9{bottom:182.207100px;}
.y120{bottom:182.925900px;}
.yf0{bottom:182.959950px;}
.y250{bottom:183.038700px;}
.y15a{bottom:183.046200px;}
.y2df{bottom:183.049950px;}
.y123{bottom:183.057450px;}
.y2ac{bottom:183.790050px;}
.y1b5{bottom:184.086450px;}
.ya4{bottom:184.216500px;}
.y218{bottom:184.708350px;}
.y21{bottom:185.267550px;}
.y2d8{bottom:185.449500px;}
.y1e4{bottom:185.660700px;}
.y152{bottom:185.810400px;}
.y246{bottom:186.436350px;}
.y189{bottom:186.445950px;}
.yd1{bottom:186.679500px;}
.y6f{bottom:190.541100px;}
.y37a{bottom:192.916950px;}
.y3b4{bottom:194.232150px;}
.y33e{bottom:194.458500px;}
.y1e8{bottom:196.460850px;}
.yef{bottom:197.213700px;}
.y24f{bottom:197.292450px;}
.y159{bottom:197.299950px;}
.y2de{bottom:197.303700px;}
.y122{bottom:197.311200px;}
.y11f{bottom:204.960150px;}
.y20{bottom:205.519050px;}
.y2ab{bottom:205.556550px;}
.y1b4{bottom:206.010450px;}
.ya3{bottom:206.124750px;}
.y217{bottom:206.915850px;}
.y2d7{bottom:207.247500px;}
.y1e3{bottom:207.631950px;}
.y188{bottom:208.606200px;}
.y245{bottom:208.738350px;}
.yd0{bottom:209.343750px;}
.y379{bottom:210.397200px;}
.y1e7{bottom:210.714600px;}
.yee{bottom:211.467450px;}
.y24e{bottom:211.546200px;}
.y158{bottom:211.553700px;}
.y2dd{bottom:211.557450px;}
.y121{bottom:211.564950px;}
.y3b3{bottom:212.324400px;}
.y33d{bottom:212.563500px;}
.y6e{bottom:212.732850px;}
.y151{bottom:214.113150px;}
.y27f{bottom:224.641500px;}
.yed{bottom:225.721200px;}
.y1f{bottom:225.770550px;}
.y24d{bottom:225.799950px;}
.y157{bottom:225.807450px;}
.y2dc{bottom:225.811200px;}
.y11e{bottom:226.994400px;}
.y2aa{bottom:227.323050px;}
.y378{bottom:227.877450px;}
.y1b3{bottom:227.934450px;}
.ya2{bottom:228.033000px;}
.y2d6{bottom:229.045500px;}
.y216{bottom:229.123350px;}
.y1e2{bottom:229.603200px;}
.y44{bottom:230.358150px;}
.y3b2{bottom:230.416650px;}
.y33c{bottom:230.668500px;}
.y187{bottom:230.766450px;}
.y244{bottom:231.040350px;}
.ycf{bottom:232.008000px;}
.y6d{bottom:234.924600px;}
.y150{bottom:236.037150px;}
.yec{bottom:239.974950px;}
.y24c{bottom:240.053700px;}
.y156{bottom:240.061200px;}
.y2db{bottom:240.064950px;}
.y377{bottom:245.357700px;}
.y1e{bottom:246.022050px;}
.y43{bottom:246.104400px;}
.y27e{bottom:246.471000px;}
.y3b1{bottom:248.508900px;}
.y33b{bottom:248.773500px;}
.y11d{bottom:249.028650px;}
.y2a9{bottom:249.089550px;}
.y1b2{bottom:249.858450px;}
.ya1{bottom:249.941250px;}
.y2d5{bottom:250.843500px;}
.y215{bottom:251.330850px;}
.y1e1{bottom:251.574450px;}
.y186{bottom:252.926700px;}
.y243{bottom:253.342350px;}
.yeb{bottom:254.228700px;}
.y24b{bottom:254.307450px;}
.y155{bottom:254.314950px;}
.yce{bottom:254.672250px;}
.y6c{bottom:257.116350px;}
.y14f{bottom:257.961150px;}
.y42{bottom:261.850650px;}
.y376{bottom:262.837950px;}
.y1d{bottom:266.273550px;}
.y3b0{bottom:266.601150px;}
.y33a{bottom:266.878500px;}
.y27d{bottom:268.300500px;}
.yea{bottom:268.482450px;}
.y24a{bottom:268.561200px;}
.y2a8{bottom:270.856050px;}
.y11c{bottom:271.062900px;}
.y1b1{bottom:271.782450px;}
.ya0{bottom:271.849500px;}
.y2d4{bottom:272.641500px;}
.y214{bottom:273.538350px;}
.y1e0{bottom:273.545700px;}
.y185{bottom:275.086950px;}
.y242{bottom:275.795700px;}
.ycd{bottom:277.336500px;}
.y41{bottom:277.596900px;}
.y6b{bottom:279.308100px;}
.y14e{bottom:279.885150px;}
.y375{bottom:280.318200px;}
.ye9{bottom:282.736200px;}
.y249{bottom:282.814950px;}
.y3af{bottom:284.693400px;}
.y339{bottom:284.983500px;}
.y1c{bottom:286.525050px;}
.y27c{bottom:290.130000px;}
.y2a7{bottom:292.622550px;}
.y11b{bottom:293.097150px;}
.y40{bottom:293.343150px;}
.y1b0{bottom:293.706450px;}
.y9f{bottom:293.757750px;}
.y2d3{bottom:294.439500px;}
.y1df{bottom:295.516950px;}
.ye8{bottom:296.989950px;}
.y184{bottom:297.247200px;}
.y374{bottom:297.798450px;}
.y241{bottom:298.097700px;}
.ycc{bottom:300.000750px;}
.y6a{bottom:301.499850px;}
.y14d{bottom:301.809150px;}
.y3ae{bottom:302.785650px;}
.y338{bottom:303.088500px;}
.y213{bottom:304.246200px;}
.y1b{bottom:306.776550px;}
.y3f{bottom:309.089400px;}
.ye7{bottom:311.243700px;}
.y27b{bottom:311.959500px;}
.y2a6{bottom:314.389050px;}
.y11a{bottom:315.131400px;}
.y373{bottom:315.278700px;}
.y1af{bottom:315.630450px;}
.y2d2{bottom:316.237500px;}
.y1de{bottom:317.488200px;}
.y183{bottom:319.407450px;}
.y240{bottom:320.399700px;}
.y3ad{bottom:320.877900px;}
.y337{bottom:321.193500px;}
.y9e{bottom:322.044750px;}
.ycb{bottom:322.919700px;}
.y69{bottom:323.691600px;}
.y14c{bottom:323.733150px;}
.ye6{bottom:325.497450px;}
.y309{bottom:325.975200px;}
.y1a{bottom:327.028050px;}
.y3e{bottom:329.091300px;}
.y372{bottom:332.758950px;}
.y27a{bottom:333.789000px;}
.y2a5{bottom:336.155550px;}
.y119{bottom:337.165650px;}
.y2d1{bottom:338.035500px;}
.y3ac{bottom:338.970150px;}
.y336{bottom:339.298500px;}
.y1dd{bottom:339.459450px;}
.ye5{bottom:339.751200px;}
.y182{bottom:341.567700px;}
.y23f{bottom:342.701700px;}
.y1ae{bottom:343.933200px;}
.y9d{bottom:343.953000px;}
.yca{bottom:345.583950px;}
.y14b{bottom:345.657150px;}
.y68{bottom:345.883350px;}
.y19{bottom:347.279550px;}
.y308{bottom:347.725950px;}
.y371{bottom:350.239200px;}
.ye4{bottom:354.004950px;}
.y279{bottom:355.618500px;}
.y3ab{bottom:357.062400px;}
.y335{bottom:357.403500px;}
.y2a4{bottom:357.922050px;}
.y212{bottom:358.955550px;}
.y118{bottom:358.987200px;}
.y2d0{bottom:359.833500px;}
.y1dc{bottom:361.430700px;}
.y3d{bottom:362.135400px;}
.y181{bottom:363.727950px;}
.y23e{bottom:365.003700px;}
.y1ad{bottom:365.857200px;}
.y9c{bottom:365.861250px;}
.y14a{bottom:367.581150px;}
.y370{bottom:367.719450px;}
.y67{bottom:368.075100px;}
.yc9{bottom:368.248200px;}
.ye3{bottom:368.258700px;}
.y307{bottom:369.476700px;}
.y3aa{bottom:375.154650px;}
.y334{bottom:375.508500px;}
.y278{bottom:377.448000px;}
.y3c{bottom:377.881650px;}
.y2a3{bottom:379.688550px;}
.y117{bottom:381.021450px;}
.y211{bottom:381.163050px;}
.y2cf{bottom:381.631500px;}
.ye2{bottom:382.512450px;}
.y1db{bottom:383.401950px;}
.y36f{bottom:385.199700px;}
.y180{bottom:385.888200px;}
.y23d{bottom:387.305700px;}
.y9b{bottom:387.769500px;}
.y1ac{bottom:387.781200px;}
.y149{bottom:389.505150px;}
.y66{bottom:390.266850px;}
.yc8{bottom:390.912450px;}
.y306{bottom:391.227450px;}
.y3a9{bottom:393.246900px;}
.y333{bottom:393.613500px;}
.y3b{bottom:393.627900px;}
.ye1{bottom:396.766200px;}
.y277{bottom:399.277500px;}
.y2a2{bottom:401.455050px;}
.y36e{bottom:402.679950px;}
.y116{bottom:403.055700px;}
.y210{bottom:403.370550px;}
.y1da{bottom:405.373200px;}
.y17f{bottom:408.048450px;}
.y3a{bottom:409.374150px;}
.y23c{bottom:409.607700px;}
.y9a{bottom:409.677750px;}
.y1ab{bottom:409.705200px;}
.ye0{bottom:411.019950px;}
.y3a8{bottom:411.339150px;}
.y148{bottom:411.429150px;}
.y332{bottom:411.718500px;}
.y65{bottom:412.458600px;}
.y305{bottom:412.978200px;}
.yc7{bottom:419.955450px;}
.y36d{bottom:420.160200px;}
.y276{bottom:421.107000px;}
.y2a1{bottom:423.221550px;}
.y2ce{bottom:424.698900px;}
.y115{bottom:425.089950px;}
.ydf{bottom:425.273700px;}
.y20f{bottom:425.578050px;}
.y1d9{bottom:427.344450px;}
.y3a7{bottom:429.431400px;}
.y331{bottom:429.823500px;}
.y17e{bottom:430.208700px;}
.y99{bottom:431.586000px;}
.y1aa{bottom:431.629200px;}
.y23b{bottom:431.909700px;}
.y147{bottom:433.353150px;}
.y304{bottom:434.728950px;}
.y36c{bottom:437.640450px;}
.yde{bottom:439.527450px;}
.y64{bottom:441.029100px;}
.yc6{bottom:442.619700px;}
.y275{bottom:442.936500px;}
.y2a0{bottom:444.988050px;}
.y3a6{bottom:447.523650px;}
.y20e{bottom:447.785550px;}
.y330{bottom:447.928500px;}
.y2cd{bottom:447.995400px;}
.y1d8{bottom:449.315700px;}
.y39{bottom:449.383650px;}
.y17d{bottom:452.368950px;}
.y98{bottom:453.494250px;}
.y114{bottom:453.502950px;}
.y1a9{bottom:453.553200px;}
.ydd{bottom:453.781200px;}
.y23a{bottom:454.211700px;}
.y36b{bottom:455.120700px;}
.y146{bottom:455.277150px;}
.y303{bottom:456.479700px;}
.y63{bottom:463.220850px;}
.y274{bottom:464.766000px;}
.yc5{bottom:465.283950px;}
.y3a5{bottom:465.615900px;}
.y32f{bottom:466.033500px;}
.ydc{bottom:468.034950px;}
.y38{bottom:469.388400px;}
.y20d{bottom:469.993050px;}
.y1d7{bottom:471.286950px;}
.y36a{bottom:472.600950px;}
.y29f{bottom:473.133300px;}
.y97{bottom:475.402500px;}
.y113{bottom:475.537200px;}
.y239{bottom:476.513700px;}
.y145{bottom:477.201150px;}
.y302{bottom:478.230450px;}
.y17c{bottom:480.907950px;}
.y1a8{bottom:481.855950px;}
.ydb{bottom:482.288700px;}
.y3a4{bottom:483.708150px;}
.y32e{bottom:484.138500px;}
.y37{bottom:485.134650px;}
.y62{bottom:485.412600px;}
.y273{bottom:486.595500px;}
.yc4{bottom:487.948200px;}
.y369{bottom:490.081200px;}
.y20c{bottom:492.200550px;}
.y1d6{bottom:493.258200px;}
.y29e{bottom:494.899800px;}
.yda{bottom:496.542450px;}
.y96{bottom:497.310750px;}
.y112{bottom:497.571450px;}
.y238{bottom:498.815700px;}
.y144{bottom:499.125150px;}
.y301{bottom:499.981200px;}
.y36{bottom:500.880900px;}
.y3a3{bottom:501.800400px;}
.y32d{bottom:502.243500px;}
.y17b{bottom:503.068200px;}
.y1a7{bottom:503.779950px;}
.y368{bottom:507.561450px;}
.y61{bottom:507.604350px;}
.y272{bottom:508.425000px;}
.yc3{bottom:510.612450px;}
.yd9{bottom:510.796200px;}
.y20b{bottom:514.408050px;}
.y1d5{bottom:515.229450px;}
.y35{bottom:516.627150px;}
.y29d{bottom:516.666300px;}
.y95{bottom:519.219000px;}
.y111{bottom:519.605700px;}
.y3a2{bottom:519.892650px;}
.y2cc{bottom:520.211250px;}
.y32c{bottom:520.348500px;}
.y143{bottom:521.049150px;}
.y237{bottom:521.117700px;}
.y300{bottom:521.731950px;}
.y367{bottom:525.041700px;}
.yd8{bottom:525.049950px;}
.y17a{bottom:525.228450px;}
.y1a6{bottom:525.703950px;}
.y60{bottom:529.796100px;}
.y271{bottom:530.254500px;}
.y34{bottom:532.373400px;}
.yc2{bottom:533.276700px;}
.y3dd{bottom:533.777400px;}
.y20a{bottom:536.615550px;}
.y3a1{bottom:537.984900px;}
.y29c{bottom:538.432800px;}
.y32b{bottom:538.453500px;}
.yd7{bottom:539.303700px;}
.y94{bottom:541.127250px;}
.y110{bottom:541.639950px;}
.y2cb{bottom:542.009250px;}
.y366{bottom:542.521950px;}
.y142{bottom:542.973150px;}
.y236{bottom:543.419700px;}
.y2ff{bottom:543.482700px;}
.y1d4{bottom:543.579450px;}
.y179{bottom:547.388700px;}
.y1a5{bottom:547.627950px;}
.y33{bottom:548.119650px;}
.y3dc{bottom:551.028150px;}
.y5f{bottom:551.987850px;}
.y270{bottom:552.084000px;}
.yd6{bottom:553.557450px;}
.yc1{bottom:555.940950px;}
.y3a0{bottom:556.077150px;}
.y32a{bottom:556.558500px;}
.y209{bottom:558.823050px;}
.y365{bottom:560.002200px;}
.y29b{bottom:560.199300px;}
.y93{bottom:563.035500px;}
.y10f{bottom:563.674200px;}
.y2ca{bottom:563.807250px;}
.y32{bottom:563.865900px;}
.y141{bottom:564.897150px;}
.y1d3{bottom:565.550700px;}
.y235{bottom:565.721700px;}
.yd5{bottom:567.811200px;}
.y3db{bottom:568.278900px;}
.y178{bottom:569.548950px;}
.y1a4{bottom:569.551950px;}
.y2fe{bottom:571.612200px;}
.y39f{bottom:574.169400px;}
.y5e{bottom:574.179600px;}
.y329{bottom:574.663500px;}
.y364{bottom:577.482450px;}
.yc0{bottom:578.605200px;}
.y31{bottom:579.612150px;}
.y26f{bottom:580.276500px;}
.y208{bottom:581.030550px;}
.y29a{bottom:581.965800px;}
.yd4{bottom:582.064950px;}
.y3da{bottom:585.529650px;}
.y2c9{bottom:585.605250px;}
.y10e{bottom:585.708450px;}
.y1d2{bottom:587.521950px;}
.y1a3{bottom:591.475950px;}
.y177{bottom:591.709200px;}
.y39e{bottom:592.261650px;}
.y328{bottom:592.768500px;}
.y140{bottom:593.199900px;}
.y2fd{bottom:593.362950px;}
.y234{bottom:594.402450px;}
.y363{bottom:594.962700px;}
.y30{bottom:595.358400px;}
.y5d{bottom:596.371350px;}
.y26e{bottom:602.106000px;}
.y3d9{bottom:602.780400px;}
.y207{bottom:603.238050px;}
.y299{bottom:603.732300px;}
.y92{bottom:606.208050px;}
.y2c8{bottom:607.506450px;}
.ybf{bottom:607.648200px;}
.y10d{bottom:607.742700px;}
.y1d1{bottom:609.380700px;}
.y39d{bottom:610.353900px;}
.y327{bottom:610.873500px;}
.y2f{bottom:611.104650px;}
.y362{bottom:612.442950px;}
.y1a2{bottom:613.399950px;}
.y176{bottom:613.869450px;}
.y2fc{bottom:615.113700px;}
.y13f{bottom:615.123900px;}
.y233{bottom:616.704450px;}
.y5c{bottom:618.563100px;}
.y3d8{bottom:620.031150px;}
.y26d{bottom:623.935500px;}
.y206{bottom:625.445550px;}
.y298{bottom:625.498800px;}
.y2e{bottom:626.850900px;}
.y39c{bottom:628.446150px;}
.y326{bottom:628.978500px;}
.y2c7{bottom:629.304450px;}
.y91{bottom:629.620800px;}
.y10c{bottom:629.776950px;}
.y361{bottom:629.923200px;}
.ybe{bottom:630.312450px;}
.y1d0{bottom:631.351950px;}
.y175{bottom:636.029700px;}
.y2fb{bottom:636.864450px;}
.y13e{bottom:637.047900px;}
.y3d7{bottom:637.281900px;}
.y232{bottom:639.006450px;}
.y5b{bottom:640.754850px;}
.y2d{bottom:642.597150px;}
.y1a1{bottom:643.824300px;}
.y26c{bottom:645.765000px;}
.y39b{bottom:646.538400px;}
.y325{bottom:647.083500px;}
.y297{bottom:647.265300px;}
.y360{bottom:647.403450px;}
.y205{bottom:647.653050px;}
.y2c6{bottom:651.102450px;}
.y10b{bottom:651.811200px;}
.ybd{bottom:652.976700px;}
.y90{bottom:653.033550px;}
.y1cf{bottom:653.323200px;}
.y3d6{bottom:654.532650px;}
.y174{bottom:658.189950px;}
.y2fa{bottom:658.615200px;}
.y13d{bottom:658.971900px;}
.y231{bottom:661.308450px;}
.y2c{bottom:662.599200px;}
.y5a{bottom:662.946600px;}
.y39a{bottom:664.630650px;}
.y35f{bottom:664.883700px;}
.y324{bottom:665.188500px;}
.y26b{bottom:667.594500px;}
.y296{bottom:669.031800px;}
.y3d5{bottom:671.783400px;}
.y2c5{bottom:672.900450px;}
.y10a{bottom:673.845450px;}
.y1ce{bottom:675.294450px;}
.ybc{bottom:675.640950px;}
.y204{bottom:676.239300px;}
.y8f{bottom:676.446300px;}
.y173{bottom:680.350200px;}
.y2f9{bottom:680.365950px;}
.y13c{bottom:680.895900px;}
.y35e{bottom:682.363950px;}
.y399{bottom:682.722900px;}
.y323{bottom:683.293500px;}
.y230{bottom:683.610450px;}
.y59{bottom:685.138350px;}
.y3d4{bottom:689.034150px;}
.y26a{bottom:689.424000px;}
.y295{bottom:690.798300px;}
.y2c4{bottom:694.698450px;}
.y2b{bottom:695.610450px;}
.y109{bottom:695.879700px;}
.y1cd{bottom:697.265700px;}
.ybb{bottom:698.305200px;}
.y203{bottom:698.446800px;}
.y35d{bottom:699.844200px;}
.y398{bottom:700.815150px;}
.y322{bottom:701.398500px;}
.y2f8{bottom:702.116700px;}
.y13b{bottom:702.819900px;}
.y22f{bottom:705.912450px;}
.y3d3{bottom:706.284900px;}
.y58{bottom:707.330100px;}
.y172{bottom:708.889200px;}
.y269{bottom:711.253500px;}
.y2a{bottom:711.356700px;}
.y294{bottom:712.564800px;}
.y2c3{bottom:716.496450px;}
.y35c{bottom:717.324450px;}
.y108{bottom:717.913950px;}
.y397{bottom:718.907400px;}
.y1cc{bottom:719.236950px;}
.y321{bottom:719.503500px;}
.y1a0{bottom:720.229200px;}
.y202{bottom:720.654300px;}
.yba{bottom:720.969450px;}
.y3d2{bottom:723.535650px;}
.y2f7{bottom:723.867450px;}
.y13a{bottom:724.743900px;}
.y29{bottom:727.102950px;}
.y22e{bottom:728.214450px;}
.y171{bottom:731.049450px;}
.y268{bottom:733.083000px;}
.y293{bottom:734.331300px;}
.y35b{bottom:734.804700px;}
.y57{bottom:735.900600px;}
.y396{bottom:736.999650px;}
.y320{bottom:737.608500px;}
.y2c2{bottom:738.294450px;}
.y107{bottom:739.948200px;}
.y3d1{bottom:740.786400px;}
.y1cb{bottom:741.208200px;}
.y19f{bottom:742.153200px;}
.y28{bottom:742.849200px;}
.y201{bottom:742.861800px;}
.yb9{bottom:743.633700px;}
.y2f6{bottom:745.618200px;}
.y139{bottom:746.667900px;}
.y8e{bottom:748.846950px;}
.y22d{bottom:750.516450px;}
.y35a{bottom:752.284950px;}
.y170{bottom:753.209700px;}
.y267{bottom:754.912500px;}
.y395{bottom:755.091900px;}
.y31f{bottom:755.713500px;}
.y3d0{bottom:758.037150px;}
.y56{bottom:758.092350px;}
.y2c1{bottom:760.092450px;}
.y106{bottom:761.982450px;}
.y292{bottom:762.476550px;}
.y1ca{bottom:763.179450px;}
.y19e{bottom:764.077200px;}
.y200{bottom:765.069300px;}
.yb8{bottom:766.297950px;}
.y2f5{bottom:767.368950px;}
.y138{bottom:768.591900px;}
.y359{bottom:769.765200px;}
.y8d{bottom:770.755200px;}
.y22c{bottom:772.818450px;}
.y394{bottom:773.184150px;}
.y31e{bottom:773.818500px;}
.y3cf{bottom:775.287900px;}
.y16f{bottom:775.369950px;}
.y266{bottom:776.742000px;}
.y55{bottom:780.284100px;}
.y2c0{bottom:781.890450px;}
.y105{bottom:784.016700px;}
.y291{bottom:784.243050px;}
.y1c9{bottom:785.150700px;}
.y19d{bottom:786.001200px;}
.y358{bottom:787.245450px;}
.y1ff{bottom:787.276800px;}
.yb7{bottom:788.962200px;}
.y2f4{bottom:789.119700px;}
.y137{bottom:790.547100px;}
.y393{bottom:791.276400px;}
.y31d{bottom:791.923500px;}
.y3ce{bottom:792.538650px;}
.y8c{bottom:792.663450px;}
.y16e{bottom:797.530200px;}
.y265{bottom:798.571500px;}
.y22b{bottom:801.499200px;}
.y54{bottom:802.475850px;}
.y357{bottom:804.725700px;}
.y290{bottom:806.009550px;}
.y104{bottom:806.050950px;}
.y1c8{bottom:807.121950px;}
.y19c{bottom:807.925200px;}
.y392{bottom:809.368650px;}
.y1fe{bottom:809.484300px;}
.y3cd{bottom:809.789400px;}
.y31c{bottom:810.028500px;}
.y2bf{bottom:810.067200px;}
.y2f3{bottom:810.870450px;}
.yb6{bottom:811.626450px;}
.y136{bottom:812.471100px;}
.y8b{bottom:814.571700px;}
.y16d{bottom:819.690450px;}
.y264{bottom:820.401000px;}
.y356{bottom:822.205950px;}
.y22a{bottom:823.801200px;}
.y53{bottom:824.667600px;}
.y3cc{bottom:827.040150px;}
.y391{bottom:827.460900px;}
.y28f{bottom:827.776050px;}
.y103{bottom:828.085200px;}
.y31b{bottom:828.133500px;}
.y1c7{bottom:829.093200px;}
.y19b{bottom:829.849200px;}
.y1fd{bottom:831.691800px;}
.y2be{bottom:831.865200px;}
.y2f2{bottom:832.621200px;}
.yb5{bottom:834.290700px;}
.y135{bottom:834.395100px;}
.y8a{bottom:836.479950px;}
.y355{bottom:839.686200px;}
.y16c{bottom:841.850700px;}
.y263{bottom:842.230500px;}
.y3cb{bottom:844.290900px;}
.y390{bottom:845.553150px;}
.y229{bottom:846.103200px;}
.y31a{bottom:846.238500px;}
.y52{bottom:846.859350px;}
.y28e{bottom:849.542550px;}
.y102{bottom:850.119450px;}
.y1c6{bottom:851.064450px;}
.y19a{bottom:851.773200px;}
.y2bd{bottom:853.663200px;}
.y1fc{bottom:853.899300px;}
.y2f1{bottom:854.371950px;}
.yb4{bottom:856.954950px;}
.y354{bottom:857.166450px;}
.y89{bottom:858.388200px;}
.y3ca{bottom:861.541650px;}
.y134{bottom:862.697850px;}
.y38f{bottom:863.645400px;}
.y16b{bottom:864.010950px;}
.y262{bottom:864.060000px;}
.y319{bottom:864.343500px;}
.y228{bottom:868.405200px;}
.y51{bottom:869.051100px;}
.y28d{bottom:871.309050px;}
.y101{bottom:872.153700px;}
.y1c5{bottom:873.035700px;}
.y199{bottom:873.697200px;}
.y353{bottom:874.646700px;}
.y2bc{bottom:875.461200px;}
.y1fb{bottom:876.106800px;}
.y2f0{bottom:876.122700px;}
.y3c9{bottom:878.792400px;}
.yb3{bottom:879.619200px;}
.y88{bottom:880.296450px;}
.y38e{bottom:881.737650px;}
.y318{bottom:882.448500px;}
.y133{bottom:884.621850px;}
.y261{bottom:885.889500px;}
.y227{bottom:890.707200px;}
.y50{bottom:891.242850px;}
.y352{bottom:892.126950px;}
.y16a{bottom:892.549950px;}
.y28c{bottom:893.075550px;}
.y1c4{bottom:895.006950px;}
.y198{bottom:895.621200px;}
.y3c8{bottom:896.043150px;}
.y2bb{bottom:897.259200px;}
.y2ef{bottom:897.873450px;}
.y1fa{bottom:898.314300px;}
.y38d{bottom:899.829900px;}
.y317{bottom:900.553500px;}
.y100{bottom:900.566700px;}
.y87{bottom:902.204700px;}
.yb2{bottom:902.283450px;}
.y132{bottom:906.545850px;}
.y260{bottom:907.719000px;}
.y351{bottom:909.607200px;}
.y226{bottom:913.009200px;}
.y3c7{bottom:913.293900px;}
.y4f{bottom:913.434600px;}
.y169{bottom:914.710200px;}
.y28b{bottom:914.842050px;}
.y1c3{bottom:916.978200px;}
.y197{bottom:917.545200px;}
.y38c{bottom:917.922150px;}
.y316{bottom:918.658500px;}
.y2ba{bottom:919.057200px;}
.y2ee{bottom:919.624200px;}
.y1f9{bottom:920.521800px;}
.yff{bottom:922.600950px;}
.y86{bottom:924.112950px;}
.y350{bottom:927.087450px;}
.y131{bottom:928.501950px;}
.y25f{bottom:929.548500px;}
.yd{bottom:929.847000px;}
.y3c6{bottom:930.544650px;}
.yb1{bottom:931.326450px;}
.y225{bottom:935.311200px;}
.y38b{bottom:936.014400px;}
.y28a{bottom:936.608550px;}
.y315{bottom:936.763500px;}
.y168{bottom:936.870450px;}
.y1c2{bottom:938.949450px;}
.y196{bottom:939.469200px;}
.y2b9{bottom:940.855200px;}
.y2ed{bottom:941.374950px;}
.y1f8{bottom:942.729300px;}
.y34f{bottom:944.567700px;}
.yfe{bottom:944.635200px;}
.y85{bottom:946.021200px;}
.y3c5{bottom:947.795400px;}
.y130{bottom:950.425950px;}
.y25e{bottom:951.378000px;}
.yb0{bottom:953.990700px;}
.y38a{bottom:954.106650px;}
.y314{bottom:954.868500px;}
.y4e{bottom:956.892300px;}
.y224{bottom:957.613200px;}
.y289{bottom:958.375050px;}
.y167{bottom:959.030700px;}
.y1c1{bottom:960.920700px;}
.yc{bottom:961.950000px;}
.y34e{bottom:962.047950px;}
.y2b8{bottom:962.653200px;}
.y2ec{bottom:963.125700px;}
.y1f7{bottom:964.936800px;}
.y3c4{bottom:965.046150px;}
.yfd{bottom:966.669450px;}
.y195{bottom:967.771950px;}
.y84{bottom:967.929450px;}
.y389{bottom:972.198900px;}
.y12f{bottom:972.349950px;}
.y313{bottom:972.973500px;}
.y25d{bottom:973.207500px;}
.yaf{bottom:976.654950px;}
.y34d{bottom:979.528200px;}
.y223{bottom:979.915200px;}
.y288{bottom:980.141550px;}
.y4d{bottom:980.584050px;}
.y166{bottom:981.190950px;}
.y3c3{bottom:982.296900px;}
.y1c0{bottom:982.891950px;}
.yb{bottom:983.982000px;}
.y2b7{bottom:984.451200px;}
.y2eb{bottom:984.876450px;}
.y1f6{bottom:987.144300px;}
.yfc{bottom:988.703700px;}
.y194{bottom:989.695950px;}
.y83{bottom:989.837700px;}
.y388{bottom:990.291150px;}
.y312{bottom:991.078500px;}
.y12e{bottom:994.273950px;}
.y34c{bottom:997.008450px;}
.yae{bottom:999.319200px;}
.y3c2{bottom:999.547650px;}
.y25c{bottom:1001.415750px;}
.y287{bottom:1001.908050px;}
.y222{bottom:1002.217200px;}
.y165{bottom:1003.351200px;}
.y1bf{bottom:1004.863200px;}
.y2b6{bottom:1006.249200px;}
.y2ea{bottom:1006.627200px;}
.y387{bottom:1008.383400px;}
.y311{bottom:1009.183500px;}
.y1f5{bottom:1009.351800px;}
.yfb{bottom:1010.737950px;}
.ya{bottom:1010.982000px;}
.y193{bottom:1011.619950px;}
.y82{bottom:1011.745950px;}
.y34b{bottom:1014.488700px;}
.y12d{bottom:1016.197950px;}
.y3c1{bottom:1016.798400px;}
.yad{bottom:1021.983450px;}
.y25b{bottom:1023.245250px;}
.y286{bottom:1023.674550px;}
.y221{bottom:1024.519200px;}
.y164{bottom:1025.511450px;}
.y386{bottom:1026.475650px;}
.y1be{bottom:1026.834450px;}
.y310{bottom:1027.288500px;}
.y2b5{bottom:1028.047200px;}
.y2e9{bottom:1028.377950px;}
.y1f4{bottom:1031.559300px;}
.y34a{bottom:1031.968950px;}
.yfa{bottom:1032.772200px;}
.y192{bottom:1033.543950px;}
.y81{bottom:1033.654200px;}
.y3c0{bottom:1034.049150px;}
.y12c{bottom:1038.121950px;}
.y385{bottom:1044.567900px;}
.yac{bottom:1044.647700px;}
.y25a{bottom:1045.074750px;}
.y30f{bottom:1045.393500px;}
.y285{bottom:1045.441050px;}
.y220{bottom:1046.821200px;}
.y163{bottom:1047.671700px;}
.y1bd{bottom:1048.805700px;}
.y349{bottom:1049.449200px;}
.y2b4{bottom:1049.845200px;}
.y3bf{bottom:1051.299900px;}
.y1f3{bottom:1053.766800px;}
.yf9{bottom:1054.806450px;}
.y191{bottom:1055.467950px;}
.y80{bottom:1055.562450px;}
.y2e8{bottom:1056.507450px;}
.y12b{bottom:1060.045950px;}
.y384{bottom:1062.660150px;}
.y30e{bottom:1063.498500px;}
.y259{bottom:1066.904250px;}
.y348{bottom:1066.929450px;}
.y284{bottom:1067.207550px;}
.yab{bottom:1067.311950px;}
.y3be{bottom:1068.550650px;}
.y21f{bottom:1069.123200px;}
.y162{bottom:1069.831950px;}
.y7{bottom:1070.004000px;}
.y2b3{bottom:1071.643200px;}
.y79{bottom:1074.823650px;}
.y1f2{bottom:1075.974300px;}
.yf8{bottom:1076.840700px;}
.y1bc{bottom:1077.155700px;}
.y190{bottom:1077.391950px;}
.y7f{bottom:1077.470700px;}
.y2e7{bottom:1078.258200px;}
.y383{bottom:1080.752400px;}
.y30d{bottom:1081.603500px;}
.y347{bottom:1084.409700px;}
.y49{bottom:1084.683000px;}
.y3bd{bottom:1085.801400px;}
.y258{bottom:1088.733750px;}
.y283{bottom:1088.974050px;}
.y12a{bottom:1090.479150px;}
.y78{bottom:1090.569900px;}
.y6{bottom:1091.982000px;}
.yaa{bottom:1096.354950px;}
.y21e{bottom:1097.803950px;}
.y1f1{bottom:1098.181800px;}
.y161{bottom:1098.370950px;}
.y382{bottom:1098.844650px;}
.yf7{bottom:1098.874950px;}
.y1bb{bottom:1099.126950px;}
.y18f{bottom:1099.315950px;}
.y7e{bottom:1099.378950px;}
.y30c{bottom:1099.708500px;}
.y2b2{bottom:1099.819950px;}
.y2e6{bottom:1100.008950px;}
.y346{bottom:1101.904650px;}
.y3bc{bottom:1103.052150px;}
.y257{bottom:1110.563250px;}
.y77{bottom:1110.574650px;}
.y282{bottom:1110.740550px;}
.y18{bottom:1111.018500px;}
.y381{bottom:1116.936900px;}
.y30b{bottom:1117.813500px;}
.y4{bottom:1118.982000px;}
.ya9{bottom:1119.019200px;}
.y345{bottom:1119.384900px;}
.y21d{bottom:1120.105950px;}
.y3bb{bottom:1120.302900px;}
.y1f0{bottom:1120.389300px;}
.y160{bottom:1120.531200px;}
.yf6{bottom:1120.909200px;}
.y1ba{bottom:1121.098200px;}
.y18e{bottom:1121.239950px;}
.y7d{bottom:1121.287200px;}
.y2b1{bottom:1121.617950px;}
.y2e5{bottom:1121.759700px;}
.y16{bottom:1126.018500px;}
.y76{bottom:1126.320900px;}
.y256{bottom:1132.392750px;}
.y281{bottom:1132.507050px;}
.y129{bottom:1134.405150px;}
.y380{bottom:1135.029150px;}
.y344{bottom:1136.865150px;}
.y3ba{bottom:1137.553650px;}
.ya8{bottom:1141.683450px;}
.y75{bottom:1142.067150px;}
.y21c{bottom:1142.407950px;}
.y1ef{bottom:1142.596800px;}
.y15f{bottom:1142.691450px;}
.yf5{bottom:1142.943450px;}
.y1b9{bottom:1143.069450px;}
.y18d{bottom:1143.163950px;}
.y7c{bottom:1143.195450px;}
.y2b0{bottom:1143.415950px;}
.y2e4{bottom:1143.510450px;}
.y15{bottom:1143.529500px;}
.y3{bottom:1150.950000px;}
.y37f{bottom:1153.121400px;}
.y343{bottom:1154.345400px;}
.y3b9{bottom:1154.804400px;}
.y13{bottom:1156.734000px;}
.y30a{bottom:1157.166900px;}
.y74{bottom:1157.813400px;}
.y128{bottom:1157.841150px;}
.y255{bottom:1162.719450px;}
.y280{bottom:1162.773450px;}
.ya7{bottom:1164.347700px;}
.y21b{bottom:1164.709950px;}
.y1ee{bottom:1164.804300px;}
.y15e{bottom:1164.851700px;}
.yf4{bottom:1164.977700px;}
.y1b8{bottom:1165.040700px;}
.y18c{bottom:1165.087950px;}
.y7b{bottom:1165.103700px;}
.y2af{bottom:1165.213950px;}
.y2e3{bottom:1165.261200px;}
.y37e{bottom:1171.213650px;}
.y342{bottom:1171.825650px;}
.y3b8{bottom:1172.055150px;}
.y11{bottom:1172.247000px;}
.y73{bottom:1173.559650px;}
.y1{bottom:1177.950000px;}
.y127{bottom:1181.277150px;}
.y254{bottom:1185.291450px;}
.y1ed{bottom:1187.011800px;}
.y7a{bottom:1187.011950px;}
.yf{bottom:1188.529500px;}
.y72{bottom:1189.305900px;}
.h7{height:5.427000px;}
.h15{height:7.078500px;}
.ha{height:10.462500px;}
.hc{height:11.745000px;}
.he{height:12.973500px;}
.hd{height:13.054500px;}
.hf{height:13.378500px;}
.h8{height:20.979000px;}
.h2{height:22.545000px;}
.h4{height:25.947000px;}
.h5{height:26.082000px;}
.h9{height:26.217000px;}
.h6{height:27.405000px;}
.h14{height:39.019043px;}
.h17{height:45.021973px;}
.h11{height:51.024902px;}
.hb{height:54.026367px;}
.h13{height:57.027832px;}
.h16{height:62.670586px;}
.h1d{height:62.971962px;}
.h19{height:63.030762px;}
.h1c{height:63.480762px;}
.h1a{height:63.881562px;}
.h12{height:66.032227px;}
.h10{height:69.033691px;}
.h1b{height:72.035156px;}
.h18{height:93.045410px;}
.h3{height:108.052734px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w12{width:7.273500px;}
.w10{width:58.623000px;}
.wf{width:71.826000px;}
.wc{width:130.834500px;}
.w7{width:170.407500px;}
.wd{width:183.957000px;}
.wb{width:189.394500px;}
.we{width:195.690000px;}
.w3{width:233.206500px;}
.w2{width:263.257500px;}
.w4{width:285.316500px;}
.w8{width:288.499500px;}
.w5{width:334.270500px;}
.w11{width:373.746000px;}
.w6{width:375.837000px;}
.w9{width:421.021500px;}
.wa{width:440.584500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x2{left:-1.323450px;}
.x0{left:0.000000px;}
.x3{left:64.096500px;}
.x1{left:65.103000px;}
.xe{left:85.042050px;}
.x1a{left:93.538050px;}
.xf{left:97.795200px;}
.x18{left:106.295550px;}
.xa{left:191.338650px;}
.xb{left:221.102400px;}
.x10{left:297.637800px;}
.x13{left:303.594060px;}
.x19{left:327.396300px;}
.x11{left:331.653450px;}
.x17{left:340.153800px;}
.x12{left:367.402350px;}
.x14{left:437.211180px;}
.xd{left:441.702000px;}
.x15{left:625.039350px;}
.x7{left:632.287500px;}
.x4{left:638.874000px;}
.x6{left:644.716500px;}
.x16{left:646.301850px;}
.x5{left:697.746000px;}
.x8{left:756.117000px;}
.x9{left:769.321500px;}
.xc{left:800.884350px;}
@media print{
.v2{vertical-align:-19.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.694400pt;}
.v3{vertical-align:19.600000pt;}
.ls23{letter-spacing:-5.320000pt;}
.ls24{letter-spacing:-5.208000pt;}
.ls16{letter-spacing:-5.040000pt;}
.ls1a{letter-spacing:-4.816000pt;}
.ls19{letter-spacing:-4.648000pt;}
.ls17{letter-spacing:-1.280000pt;}
.ls22{letter-spacing:-1.176000pt;}
.ls3{letter-spacing:-1.152000pt;}
.ls21{letter-spacing:-1.120000pt;}
.ls14{letter-spacing:-1.064000pt;}
.ls2a{letter-spacing:-0.992000pt;}
.ls6{letter-spacing:-0.864000pt;}
.ls1d{letter-spacing:-0.840000pt;}
.ls2f{letter-spacing:-0.680000pt;}
.ls8{letter-spacing:-0.661333pt;}
.ls20{letter-spacing:-0.616000pt;}
.lsb{letter-spacing:-0.578667pt;}
.ls1f{letter-spacing:-0.560000pt;}
.ls25{letter-spacing:-0.496000pt;}
.ls2b{letter-spacing:-0.453333pt;}
.ls18{letter-spacing:-0.448000pt;}
.ls1e{letter-spacing:-0.392000pt;}
.ls13{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:-0.280000pt;}
.ls1c{letter-spacing:-0.168000pt;}
.lsd{letter-spacing:-0.112000pt;}
.lse{letter-spacing:-0.056000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.280000pt;}
.lsc{letter-spacing:0.400000pt;}
.ls26{letter-spacing:0.453333pt;}
.ls4{letter-spacing:0.485333pt;}
.ls12{letter-spacing:0.560000pt;}
.lsf{letter-spacing:0.640853pt;}
.ls1b{letter-spacing:0.840000pt;}
.ls7{letter-spacing:0.906667pt;}
.ls5{letter-spacing:1.005333pt;}
.ls10{letter-spacing:1.120000pt;}
.ls29{letter-spacing:1.133333pt;}
.ls2c{letter-spacing:1.360000pt;}
.lsa{letter-spacing:1.400000pt;}
.ls28{letter-spacing:1.586667pt;}
.ls27{letter-spacing:1.722667pt;}
.ls2d{letter-spacing:1.813333pt;}
.ls11{letter-spacing:1.960000pt;}
.ls2e{letter-spacing:4.850667pt;}
.ls0{letter-spacing:79.304000pt;}
.ws115{word-spacing:-27.776000pt;}
.ws1f{word-spacing:-27.610667pt;}
.ws122{word-spacing:-27.280000pt;}
.ws1{word-spacing:-20.976000pt;}
.wsc3{word-spacing:-19.712000pt;}
.ws10c{word-spacing:-19.376000pt;}
.ws96{word-spacing:-18.648000pt;}
.ws10d{word-spacing:-18.536000pt;}
.ws1e{word-spacing:-17.834667pt;}
.ws0{word-spacing:-16.896000pt;}
.wsd6{word-spacing:-14.896000pt;}
.ws83{word-spacing:-14.672000pt;}
.ws10e{word-spacing:-14.392000pt;}
.ws65{word-spacing:-14.080000pt;}
.ws64{word-spacing:-11.432960pt;}
.wsb3{word-spacing:-4.424000pt;}
.ws90{word-spacing:-4.368000pt;}
.wsa2{word-spacing:-4.032000pt;}
.ws120{word-spacing:-3.976000pt;}
.wsb8{word-spacing:-3.920000pt;}
.ws5d{word-spacing:-3.864000pt;}
.ws9d{word-spacing:-3.752000pt;}
.wscc{word-spacing:-3.696000pt;}
.ws6b{word-spacing:-3.640000pt;}
.ws87{word-spacing:-3.584000pt;}
.ws46{word-spacing:-3.528000pt;}
.ws8b{word-spacing:-3.472000pt;}
.wsf8{word-spacing:-3.416000pt;}
.ws2c{word-spacing:-3.360000pt;}
.wsba{word-spacing:-3.304000pt;}
.ws66{word-spacing:-3.248000pt;}
.wsb1{word-spacing:-3.192000pt;}
.ws77{word-spacing:-3.136000pt;}
.ws183{word-spacing:-3.082667pt;}
.ws8a{word-spacing:-3.080000pt;}
.ws163{word-spacing:-3.037333pt;}
.ws11e{word-spacing:-3.024000pt;}
.ws5c{word-spacing:-2.968000pt;}
.wse4{word-spacing:-2.856000pt;}
.ws179{word-spacing:-2.810667pt;}
.wsf6{word-spacing:-2.800000pt;}
.wsb7{word-spacing:-2.744000pt;}
.ws132{word-spacing:-2.720000pt;}
.ws71{word-spacing:-2.688000pt;}
.wse1{word-spacing:-2.632000pt;}
.ws117{word-spacing:-2.576000pt;}
.wscb{word-spacing:-2.520000pt;}
.ws164{word-spacing:-2.493333pt;}
.wsfe{word-spacing:-2.464000pt;}
.ws6e{word-spacing:-2.408000pt;}
.ws8f{word-spacing:-2.352000pt;}
.ws160{word-spacing:-2.312000pt;}
.ws38{word-spacing:-2.296000pt;}
.ws41{word-spacing:-2.266667pt;}
.wsbd{word-spacing:-2.240000pt;}
.ws178{word-spacing:-2.221333pt;}
.wsa5{word-spacing:-2.184000pt;}
.ws157{word-spacing:-2.176000pt;}
.ws130{word-spacing:-2.130667pt;}
.ws32{word-spacing:-2.128000pt;}
.wsc{word-spacing:-2.085333pt;}
.ws6c{word-spacing:-2.072000pt;}
.ws173{word-spacing:-2.040000pt;}
.wsc1{word-spacing:-2.016000pt;}
.ws7{word-spacing:-1.994667pt;}
.wsf2{word-spacing:-1.960000pt;}
.ws14d{word-spacing:-1.949333pt;}
.wsf1{word-spacing:-1.904000pt;}
.ws28{word-spacing:-1.848000pt;}
.ws172{word-spacing:-1.813333pt;}
.ws52{word-spacing:-1.792000pt;}
.wsd0{word-spacing:-1.736000pt;}
.ws149{word-spacing:-1.677333pt;}
.ws13f{word-spacing:-1.632000pt;}
.wsc2{word-spacing:-1.624000pt;}
.ws15e{word-spacing:-1.586667pt;}
.wse9{word-spacing:-1.568000pt;}
.ws137{word-spacing:-1.541333pt;}
.ws4d{word-spacing:-1.512000pt;}
.ws17b{word-spacing:-1.496000pt;}
.ws68{word-spacing:-1.456000pt;}
.ws10{word-spacing:-1.405333pt;}
.ws84{word-spacing:-1.400000pt;}
.ws175{word-spacing:-1.360000pt;}
.ws92{word-spacing:-1.344000pt;}
.ws151{word-spacing:-1.314667pt;}
.ws62{word-spacing:-1.288000pt;}
.wscd{word-spacing:-1.232000pt;}
.ws177{word-spacing:-1.224000pt;}
.wse7{word-spacing:-1.176000pt;}
.wsb0{word-spacing:-1.120000pt;}
.ws42{word-spacing:-1.088000pt;}
.wsbe{word-spacing:-1.064000pt;}
.wsae{word-spacing:-1.008000pt;}
.ws1c{word-spacing:-1.005333pt;}
.ws17{word-spacing:-0.997333pt;}
.wsfa{word-spacing:-0.952000pt;}
.ws44{word-spacing:-0.906667pt;}
.wsa0{word-spacing:-0.896000pt;}
.ws14e{word-spacing:-0.861333pt;}
.ws55{word-spacing:-0.840000pt;}
.ws12f{word-spacing:-0.816000pt;}
.wsdc{word-spacing:-0.784000pt;}
.ws14b{word-spacing:-0.770667pt;}
.ws73{word-spacing:-0.728000pt;}
.ws15{word-spacing:-0.680000pt;}
.wsfb{word-spacing:-0.672000pt;}
.ws14{word-spacing:-0.634667pt;}
.ws54{word-spacing:-0.616000pt;}
.ws135{word-spacing:-0.589333pt;}
.wsa4{word-spacing:-0.560000pt;}
.ws142{word-spacing:-0.544000pt;}
.wsb9{word-spacing:-0.504000pt;}
.ws1b{word-spacing:-0.485333pt;}
.ws153{word-spacing:-0.453333pt;}
.ws11f{word-spacing:-0.448000pt;}
.ws82{word-spacing:-0.400000pt;}
.ws50{word-spacing:-0.392000pt;}
.ws162{word-spacing:-0.362667pt;}
.wsa8{word-spacing:-0.336000pt;}
.ws174{word-spacing:-0.317333pt;}
.ws49{word-spacing:-0.280000pt;}
.ws17a{word-spacing:-0.272000pt;}
.ws8{word-spacing:-0.226667pt;}
.wsc8{word-spacing:-0.224000pt;}
.ws11{word-spacing:-0.181333pt;}
.ws51{word-spacing:-0.168000pt;}
.ws74{word-spacing:-0.112000pt;}
.ws3{word-spacing:-0.096000pt;}
.ws15d{word-spacing:-0.090667pt;}
.wsff{word-spacing:-0.056000pt;}
.ws170{word-spacing:-0.045333pt;}
.ws97{word-spacing:-0.042000pt;}
.ws2{word-spacing:0.000000pt;}
.ws16d{word-spacing:0.045333pt;}
.wsa9{word-spacing:0.056000pt;}
.ws165{word-spacing:0.090667pt;}
.ws9e{word-spacing:0.112000pt;}
.ws13b{word-spacing:0.136000pt;}
.ws86{word-spacing:0.168000pt;}
.ws15c{word-spacing:0.181333pt;}
.ws47{word-spacing:0.224000pt;}
.ws181{word-spacing:0.272000pt;}
.ws81{word-spacing:0.280000pt;}
.ws167{word-spacing:0.317333pt;}
.ws80{word-spacing:0.336000pt;}
.ws16e{word-spacing:0.362667pt;}
.ws2f{word-spacing:0.392000pt;}
.ws148{word-spacing:0.408000pt;}
.wsab{word-spacing:0.448000pt;}
.ws182{word-spacing:0.453333pt;}
.ws102{word-spacing:0.504000pt;}
.ws141{word-spacing:0.544000pt;}
.ws88{word-spacing:0.560000pt;}
.ws53{word-spacing:0.578667pt;}
.ws24{word-spacing:0.616000pt;}
.ws9{word-spacing:0.634667pt;}
.ws98{word-spacing:0.661333pt;}
.ws59{word-spacing:0.672000pt;}
.ws129{word-spacing:0.680000pt;}
.ws145{word-spacing:0.725333pt;}
.ws37{word-spacing:0.728000pt;}
.wsc7{word-spacing:0.784000pt;}
.ws17e{word-spacing:0.816000pt;}
.ws79{word-spacing:0.840000pt;}
.ws16c{word-spacing:0.861333pt;}
.ws1d{word-spacing:0.864000pt;}
.ws78{word-spacing:0.896000pt;}
.ws12e{word-spacing:0.906667pt;}
.ws89{word-spacing:0.952000pt;}
.ws8c{word-spacing:1.008000pt;}
.ws156{word-spacing:1.042667pt;}
.wsd8{word-spacing:1.064000pt;}
.wsfc{word-spacing:1.120000pt;}
.ws4{word-spacing:1.152000pt;}
.wsbf{word-spacing:1.176000pt;}
.ws144{word-spacing:1.178667pt;}
.ws27{word-spacing:1.232000pt;}
.ws8d{word-spacing:1.288000pt;}
.ws139{word-spacing:1.314667pt;}
.ws5a{word-spacing:1.344000pt;}
.ws14a{word-spacing:1.360000pt;}
.ws5b{word-spacing:1.400000pt;}
.ws101{word-spacing:1.456000pt;}
.ws111{word-spacing:1.512000pt;}
.ws4a{word-spacing:1.568000pt;}
.ws9f{word-spacing:1.624000pt;}
.ws176{word-spacing:1.677333pt;}
.ws4c{word-spacing:1.680000pt;}
.ws136{word-spacing:1.722667pt;}
.ws118{word-spacing:1.736000pt;}
.wsde{word-spacing:1.792000pt;}
.ws158{word-spacing:1.813333pt;}
.ws61{word-spacing:1.848000pt;}
.ws70{word-spacing:1.904000pt;}
.ws23{word-spacing:2.016000pt;}
.ws22{word-spacing:2.072000pt;}
.ws169{word-spacing:2.085333pt;}
.ws3e{word-spacing:2.128000pt;}
.ws146{word-spacing:2.176000pt;}
.ws4e{word-spacing:2.184000pt;}
.wse0{word-spacing:2.240000pt;}
.ws12{word-spacing:2.266667pt;}
.ws72{word-spacing:2.296000pt;}
.wse{word-spacing:2.312000pt;}
.ws14f{word-spacing:2.357333pt;}
.ws11c{word-spacing:2.408000pt;}
.wse8{word-spacing:2.464000pt;}
.ws2d{word-spacing:2.520000pt;}
.ws10f{word-spacing:2.576000pt;}
.ws127{word-spacing:2.584000pt;}
.wsd{word-spacing:2.674667pt;}
.wsb2{word-spacing:2.688000pt;}
.ws15f{word-spacing:2.720000pt;}
.wsb5{word-spacing:2.744000pt;}
.ws125{word-spacing:2.765333pt;}
.ws3a{word-spacing:2.800000pt;}
.wsac{word-spacing:2.856000pt;}
.ws18{word-spacing:2.901333pt;}
.ws69{word-spacing:2.912000pt;}
.ws63{word-spacing:2.968000pt;}
.ws161{word-spacing:2.992000pt;}
.wsa7{word-spacing:3.024000pt;}
.ws36{word-spacing:3.080000pt;}
.ws16b{word-spacing:3.128000pt;}
.ws85{word-spacing:3.136000pt;}
.ws25{word-spacing:3.192000pt;}
.ws91{word-spacing:3.248000pt;}
.ws168{word-spacing:3.264000pt;}
.ws3d{word-spacing:3.304000pt;}
.wsaf{word-spacing:3.360000pt;}
.ws140{word-spacing:3.400000pt;}
.ws13{word-spacing:3.445333pt;}
.ws3c{word-spacing:3.472000pt;}
.ws150{word-spacing:3.490667pt;}
.ws31{word-spacing:3.528000pt;}
.ws180{word-spacing:3.581333pt;}
.ws9b{word-spacing:3.584000pt;}
.ws138{word-spacing:3.626667pt;}
.wsad{word-spacing:3.640000pt;}
.ws67{word-spacing:3.696000pt;}
.ws12a{word-spacing:3.717333pt;}
.wsed{word-spacing:3.752000pt;}
.ws12b{word-spacing:3.762667pt;}
.ws19{word-spacing:3.808000pt;}
.ws171{word-spacing:3.853333pt;}
.wsf7{word-spacing:3.920000pt;}
.ws152{word-spacing:3.944000pt;}
.ws75{word-spacing:3.976000pt;}
.ws123{word-spacing:3.989333pt;}
.ws7d{word-spacing:4.032000pt;}
.ws43{word-spacing:4.080000pt;}
.ws7c{word-spacing:4.088000pt;}
.ws93{word-spacing:4.144000pt;}
.ws76{word-spacing:4.200000pt;}
.ws12d{word-spacing:4.216000pt;}
.ws33{word-spacing:4.256000pt;}
.ws4b{word-spacing:4.312000pt;}
.wsa6{word-spacing:4.368000pt;}
.ws16{word-spacing:4.442667pt;}
.ws2b{word-spacing:4.480000pt;}
.ws26{word-spacing:4.536000pt;}
.wsc6{word-spacing:4.592000pt;}
.wsb{word-spacing:4.669333pt;}
.ws6a{word-spacing:4.704000pt;}
.ws110{word-spacing:4.760000pt;}
.ws13d{word-spacing:4.805333pt;}
.ws5f{word-spacing:4.816000pt;}
.ws8e{word-spacing:4.872000pt;}
.ws15b{word-spacing:4.896000pt;}
.ws48{word-spacing:4.928000pt;}
.ws112{word-spacing:4.984000pt;}
.wsf{word-spacing:4.986667pt;}
.ws4f{word-spacing:5.040000pt;}
.wsa{word-spacing:5.122667pt;}
.wsbb{word-spacing:5.152000pt;}
.ws119{word-spacing:5.208000pt;}
.ws1a{word-spacing:5.213333pt;}
.ws113{word-spacing:5.264000pt;}
.ws13c{word-spacing:5.304000pt;}
.ws13a{word-spacing:5.349333pt;}
.wsdf{word-spacing:5.376000pt;}
.ws133{word-spacing:5.394667pt;}
.wsb4{word-spacing:5.432000pt;}
.ws154{word-spacing:5.440000pt;}
.wsd9{word-spacing:5.488000pt;}
.wsf0{word-spacing:5.544000pt;}
.ws166{word-spacing:5.576000pt;}
.ws6d{word-spacing:5.600000pt;}
.ws58{word-spacing:5.656000pt;}
.wsc4{word-spacing:5.712000pt;}
.ws13e{word-spacing:5.757333pt;}
.wsa3{word-spacing:5.768000pt;}
.wsec{word-spacing:5.880000pt;}
.ws155{word-spacing:5.893333pt;}
.ws30{word-spacing:5.936000pt;}
.ws9c{word-spacing:5.992000pt;}
.ws17d{word-spacing:6.029333pt;}
.ws11d{word-spacing:6.048000pt;}
.wseb{word-spacing:6.104000pt;}
.ws128{word-spacing:6.120000pt;}
.ws3b{word-spacing:6.160000pt;}
.ws15a{word-spacing:6.210667pt;}
.ws7e{word-spacing:6.216000pt;}
.ws3f{word-spacing:6.256000pt;}
.wsd1{word-spacing:6.272000pt;}
.ws12c{word-spacing:6.301333pt;}
.wsaa{word-spacing:6.440000pt;}
.wsce{word-spacing:6.496000pt;}
.wsd7{word-spacing:6.552000pt;}
.ws116{word-spacing:6.608000pt;}
.ws5e{word-spacing:6.664000pt;}
.ws17f{word-spacing:6.754667pt;}
.ws2e{word-spacing:6.776000pt;}
.ws34{word-spacing:6.888000pt;}
.ws159{word-spacing:6.936000pt;}
.wsdd{word-spacing:6.944000pt;}
.ws124{word-spacing:6.981333pt;}
.ws7f{word-spacing:7.000000pt;}
.ws108{word-spacing:7.056000pt;}
.ws2a{word-spacing:7.112000pt;}
.wsee{word-spacing:7.168000pt;}
.ws39{word-spacing:7.224000pt;}
.ws16a{word-spacing:7.253333pt;}
.ws6f{word-spacing:7.280000pt;}
.ws106{word-spacing:7.336000pt;}
.wsb6{word-spacing:7.392000pt;}
.ws10a{word-spacing:7.448000pt;}
.ws57{word-spacing:7.504000pt;}
.ws40{word-spacing:7.525333pt;}
.wscf{word-spacing:7.560000pt;}
.wsa1{word-spacing:7.616000pt;}
.wsd5{word-spacing:7.672000pt;}
.ws105{word-spacing:7.728000pt;}
.ws29{word-spacing:7.784000pt;}
.wsc0{word-spacing:7.840000pt;}
.ws126{word-spacing:7.888000pt;}
.ws56{word-spacing:7.896000pt;}
.wse5{word-spacing:7.952000pt;}
.ws11a{word-spacing:8.008000pt;}
.wse2{word-spacing:8.064000pt;}
.wsd2{word-spacing:8.120000pt;}
.ws35{word-spacing:8.176000pt;}
.wsef{word-spacing:8.288000pt;}
.ws143{word-spacing:8.296000pt;}
.ws147{word-spacing:8.341333pt;}
.ws10b{word-spacing:8.344000pt;}
.ws107{word-spacing:8.400000pt;}
.ws103{word-spacing:8.456000pt;}
.wsea{word-spacing:8.568000pt;}
.ws20{word-spacing:8.680000pt;}
.ws99{word-spacing:8.792000pt;}
.wsbc{word-spacing:8.848000pt;}
.wsc9{word-spacing:8.960000pt;}
.ws7a{word-spacing:9.016000pt;}
.ws11b{word-spacing:9.072000pt;}
.ws121{word-spacing:9.184000pt;}
.wsc5{word-spacing:9.240000pt;}
.wse6{word-spacing:9.296000pt;}
.ws100{word-spacing:9.352000pt;}
.ws134{word-spacing:9.384000pt;}
.ws131{word-spacing:9.520000pt;}
.wsfd{word-spacing:9.576000pt;}
.wse3{word-spacing:9.800000pt;}
.wsd3{word-spacing:9.856000pt;}
.ws17c{word-spacing:9.882667pt;}
.wsdb{word-spacing:9.968000pt;}
.wsda{word-spacing:10.192000pt;}
.ws109{word-spacing:10.304000pt;}
.ws45{word-spacing:10.336000pt;}
.wsf5{word-spacing:10.360000pt;}
.ws94{word-spacing:10.528000pt;}
.ws16f{word-spacing:10.608000pt;}
.ws21{word-spacing:10.752000pt;}
.ws95{word-spacing:10.920000pt;}
.ws14c{word-spacing:11.016000pt;}
.ws60{word-spacing:11.088000pt;}
.ws9a{word-spacing:11.200000pt;}
.wsd4{word-spacing:11.760000pt;}
.ws7b{word-spacing:11.816000pt;}
.wsf3{word-spacing:11.872000pt;}
.ws114{word-spacing:11.984000pt;}
.wsf4{word-spacing:12.152000pt;}
.ws6{word-spacing:12.376000pt;}
.wsf9{word-spacing:16.072000pt;}
.wsca{word-spacing:17.696000pt;}
.ws104{word-spacing:21.784000pt;}
.ws5{word-spacing:79.304000pt;}
._5{margin-left:-7.281600pt;}
._a{margin-left:-6.188267pt;}
._1{margin-left:-4.934400pt;}
._4{margin-left:-4.041600pt;}
._6{margin-left:-2.606400pt;}
._0{margin-left:-1.430400pt;}
._3{width:1.555200pt;}
._2{width:2.755200pt;}
._e{width:4.372000pt;}
._f{width:5.999200pt;}
._c{width:10.970667pt;}
._b{width:21.992000pt;}
._d{width:36.080000pt;}
._8{width:61.701333pt;}
._7{width:79.297867pt;}
._9{width:141.005333pt;}
.fsb{font-size:32.480000pt;}
.fs6{font-size:34.666667pt;}
.fs8{font-size:40.000000pt;}
.fsd{font-size:42.000000pt;}
.fs3{font-size:45.333333pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:55.680000pt;}
.fsa{font-size:56.000000pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:61.333333pt;}
.fsc{font-size:64.000000pt;}
.fs9{font-size:82.666667pt;}
.fs0{font-size:96.000000pt;}
.y9{bottom:-19.175467pt;}
.y4a{bottom:-4.287467pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:0.180400pt;}
.y8{bottom:0.360533pt;}
.y2{bottom:0.408533pt;}
.y12{bottom:1.320400pt;}
.y14{bottom:1.776400pt;}
.y17{bottom:2.412400pt;}
.y5{bottom:4.824533pt;}
.ye{bottom:4.944533pt;}
.y27{bottom:56.674267pt;}
.y48{bottom:56.688933pt;}
.y45{bottom:56.692933pt;}
.y47{bottom:67.357600pt;}
.y26{bottom:74.675600pt;}
.y46{bottom:78.026267pt;}
.y25{bottom:92.676933pt;}
.y24{bottom:110.678267pt;}
.y1ec{bottom:123.951867pt;}
.y71{bottom:124.247867pt;}
.y3b7{bottom:124.404800pt;}
.y341{bottom:124.572000pt;}
.yf3{bottom:124.621067pt;}
.y1b7{bottom:124.656400pt;}
.y2ae{bottom:124.672933pt;}
.y253{bottom:124.691067pt;}
.y15d{bottom:124.697733pt;}
.y2e2{bottom:124.701067pt;}
.y21a{bottom:124.705200pt;}
.y126{bottom:124.707733pt;}
.y4c{bottom:124.721067pt;}
.ya6{bottom:124.800000pt;}
.y37d{bottom:124.867733pt;}
.yd3{bottom:125.645333pt;}
.y1e6{bottom:125.971733pt;}
.y248{bottom:126.073200pt;}
.y2da{bottom:126.092000pt;}
.y154{bottom:126.188800pt;}
.y18b{bottom:126.333733pt;}
.y23{bottom:128.679600pt;}
.y1eb{bottom:136.621867pt;}
.yf2{bottom:137.291067pt;}
.y252{bottom:137.361067pt;}
.y15c{bottom:137.367733pt;}
.y2e1{bottom:137.371067pt;}
.y125{bottom:137.377733pt;}
.y4b{bottom:137.391067pt;}
.y37c{bottom:140.405733pt;}
.y3b6{bottom:140.486800pt;}
.y340{bottom:140.665333pt;}
.y70{bottom:143.973867pt;}
.y2ad{bottom:144.020933pt;}
.y1b6{bottom:144.144400pt;}
.ya5{bottom:144.274000pt;}
.y219{bottom:144.445200pt;}
.y2d9{bottom:145.468000pt;}
.y1e5{bottom:145.501733pt;}
.y153{bottom:145.676800pt;}
.yd2{bottom:145.791333pt;}
.y247{bottom:145.897200pt;}
.y18a{bottom:146.031733pt;}
.y22{bottom:146.680933pt;}
.y1ea{bottom:149.291867pt;}
.yf1{bottom:149.961067pt;}
.y251{bottom:150.031067pt;}
.y15b{bottom:150.037733pt;}
.y2e0{bottom:150.041067pt;}
.y124{bottom:150.047733pt;}
.y37b{bottom:155.943733pt;}
.y3b5{bottom:156.568800pt;}
.y33f{bottom:156.758667pt;}
.y1e9{bottom:161.961867pt;}
.y120{bottom:162.600800pt;}
.yf0{bottom:162.631067pt;}
.y250{bottom:162.701067pt;}
.y15a{bottom:162.707733pt;}
.y2df{bottom:162.711067pt;}
.y123{bottom:162.717733pt;}
.y2ac{bottom:163.368933pt;}
.y1b5{bottom:163.632400pt;}
.ya4{bottom:163.748000pt;}
.y218{bottom:164.185200pt;}
.y21{bottom:164.682267pt;}
.y2d8{bottom:164.844000pt;}
.y1e4{bottom:165.031733pt;}
.y152{bottom:165.164800pt;}
.y246{bottom:165.721200pt;}
.y189{bottom:165.729733pt;}
.yd1{bottom:165.937333pt;}
.y6f{bottom:169.369867pt;}
.y37a{bottom:171.481733pt;}
.y3b4{bottom:172.650800pt;}
.y33e{bottom:172.852000pt;}
.y1e8{bottom:174.631867pt;}
.yef{bottom:175.301067pt;}
.y24f{bottom:175.371067pt;}
.y159{bottom:175.377733pt;}
.y2de{bottom:175.381067pt;}
.y122{bottom:175.387733pt;}
.y11f{bottom:182.186800pt;}
.y20{bottom:182.683600pt;}
.y2ab{bottom:182.716933pt;}
.y1b4{bottom:183.120400pt;}
.ya3{bottom:183.222000pt;}
.y217{bottom:183.925200pt;}
.y2d7{bottom:184.220000pt;}
.y1e3{bottom:184.561733pt;}
.y188{bottom:185.427733pt;}
.y245{bottom:185.545200pt;}
.yd0{bottom:186.083333pt;}
.y379{bottom:187.019733pt;}
.y1e7{bottom:187.301867pt;}
.yee{bottom:187.971067pt;}
.y24e{bottom:188.041067pt;}
.y158{bottom:188.047733pt;}
.y2dd{bottom:188.051067pt;}
.y121{bottom:188.057733pt;}
.y3b3{bottom:188.732800pt;}
.y33d{bottom:188.945333pt;}
.y6e{bottom:189.095867pt;}
.y151{bottom:190.322800pt;}
.y27f{bottom:199.681333pt;}
.yed{bottom:200.641067pt;}
.y1f{bottom:200.684933pt;}
.y24d{bottom:200.711067pt;}
.y157{bottom:200.717733pt;}
.y2dc{bottom:200.721067pt;}
.y11e{bottom:201.772800pt;}
.y2aa{bottom:202.064933pt;}
.y378{bottom:202.557733pt;}
.y1b3{bottom:202.608400pt;}
.ya2{bottom:202.696000pt;}
.y2d6{bottom:203.596000pt;}
.y216{bottom:203.665200pt;}
.y1e2{bottom:204.091733pt;}
.y44{bottom:204.762800pt;}
.y3b2{bottom:204.814800pt;}
.y33c{bottom:205.038667pt;}
.y187{bottom:205.125733pt;}
.y244{bottom:205.369200pt;}
.ycf{bottom:206.229333pt;}
.y6d{bottom:208.821867pt;}
.y150{bottom:209.810800pt;}
.yec{bottom:213.311067pt;}
.y24c{bottom:213.381067pt;}
.y156{bottom:213.387733pt;}
.y2db{bottom:213.391067pt;}
.y377{bottom:218.095733pt;}
.y1e{bottom:218.686267pt;}
.y43{bottom:218.759467pt;}
.y27e{bottom:219.085333pt;}
.y3b1{bottom:220.896800pt;}
.y33b{bottom:221.132000pt;}
.y11d{bottom:221.358800pt;}
.y2a9{bottom:221.412933pt;}
.y1b2{bottom:222.096400pt;}
.ya1{bottom:222.170000pt;}
.y2d5{bottom:222.972000pt;}
.y215{bottom:223.405200pt;}
.y1e1{bottom:223.621733pt;}
.y186{bottom:224.823733pt;}
.y243{bottom:225.193200pt;}
.yeb{bottom:225.981067pt;}
.y24b{bottom:226.051067pt;}
.y155{bottom:226.057733pt;}
.yce{bottom:226.375333pt;}
.y6c{bottom:228.547867pt;}
.y14f{bottom:229.298800pt;}
.y42{bottom:232.756133pt;}
.y376{bottom:233.633733pt;}
.y1d{bottom:236.687600pt;}
.y3b0{bottom:236.978800pt;}
.y33a{bottom:237.225333pt;}
.y27d{bottom:238.489333pt;}
.yea{bottom:238.651067pt;}
.y24a{bottom:238.721067pt;}
.y2a8{bottom:240.760933pt;}
.y11c{bottom:240.944800pt;}
.y1b1{bottom:241.584400pt;}
.ya0{bottom:241.644000pt;}
.y2d4{bottom:242.348000pt;}
.y214{bottom:243.145200pt;}
.y1e0{bottom:243.151733pt;}
.y185{bottom:244.521733pt;}
.y242{bottom:245.151733pt;}
.ycd{bottom:246.521333pt;}
.y41{bottom:246.752800pt;}
.y6b{bottom:248.273867pt;}
.y14e{bottom:248.786800pt;}
.y375{bottom:249.171733pt;}
.ye9{bottom:251.321067pt;}
.y249{bottom:251.391067pt;}
.y3af{bottom:253.060800pt;}
.y339{bottom:253.318667pt;}
.y1c{bottom:254.688933pt;}
.y27c{bottom:257.893333pt;}
.y2a7{bottom:260.108933pt;}
.y11b{bottom:260.530800pt;}
.y40{bottom:260.749467pt;}
.y1b0{bottom:261.072400pt;}
.y9f{bottom:261.118000pt;}
.y2d3{bottom:261.724000pt;}
.y1df{bottom:262.681733pt;}
.ye8{bottom:263.991067pt;}
.y184{bottom:264.219733pt;}
.y374{bottom:264.709733pt;}
.y241{bottom:264.975733pt;}
.ycc{bottom:266.667333pt;}
.y6a{bottom:267.999867pt;}
.y14d{bottom:268.274800pt;}
.y3ae{bottom:269.142800pt;}
.y338{bottom:269.412000pt;}
.y213{bottom:270.441067pt;}
.y1b{bottom:272.690267pt;}
.y3f{bottom:274.746133pt;}
.ye7{bottom:276.661067pt;}
.y27b{bottom:277.297333pt;}
.y2a6{bottom:279.456933pt;}
.y11a{bottom:280.116800pt;}
.y373{bottom:280.247733pt;}
.y1af{bottom:280.560400pt;}
.y2d2{bottom:281.100000pt;}
.y1de{bottom:282.211733pt;}
.y183{bottom:283.917733pt;}
.y240{bottom:284.799733pt;}
.y3ad{bottom:285.224800pt;}
.y337{bottom:285.505333pt;}
.y9e{bottom:286.262000pt;}
.ycb{bottom:287.039733pt;}
.y69{bottom:287.725867pt;}
.y14c{bottom:287.762800pt;}
.ye6{bottom:289.331067pt;}
.y309{bottom:289.755733pt;}
.y1a{bottom:290.691600pt;}
.y3e{bottom:292.525600pt;}
.y372{bottom:295.785733pt;}
.y27a{bottom:296.701333pt;}
.y2a5{bottom:298.804933pt;}
.y119{bottom:299.702800pt;}
.y2d1{bottom:300.476000pt;}
.y3ac{bottom:301.306800pt;}
.y336{bottom:301.598667pt;}
.y1dd{bottom:301.741733pt;}
.ye5{bottom:302.001067pt;}
.y182{bottom:303.615733pt;}
.y23f{bottom:304.623733pt;}
.y1ae{bottom:305.718400pt;}
.y9d{bottom:305.736000pt;}
.yca{bottom:307.185733pt;}
.y14b{bottom:307.250800pt;}
.y68{bottom:307.451867pt;}
.y19{bottom:308.692933pt;}
.y308{bottom:309.089733pt;}
.y371{bottom:311.323733pt;}
.ye4{bottom:314.671067pt;}
.y279{bottom:316.105333pt;}
.y3ab{bottom:317.388800pt;}
.y335{bottom:317.692000pt;}
.y2a4{bottom:318.152933pt;}
.y212{bottom:319.071600pt;}
.y118{bottom:319.099733pt;}
.y2d0{bottom:319.852000pt;}
.y1dc{bottom:321.271733pt;}
.y3d{bottom:321.898133pt;}
.y181{bottom:323.313733pt;}
.y23e{bottom:324.447733pt;}
.y1ad{bottom:325.206400pt;}
.y9c{bottom:325.210000pt;}
.y14a{bottom:326.738800pt;}
.y370{bottom:326.861733pt;}
.y67{bottom:327.177867pt;}
.yc9{bottom:327.331733pt;}
.ye3{bottom:327.341067pt;}
.y307{bottom:328.423733pt;}
.y3aa{bottom:333.470800pt;}
.y334{bottom:333.785333pt;}
.y278{bottom:335.509333pt;}
.y3c{bottom:335.894800pt;}
.y2a3{bottom:337.500933pt;}
.y117{bottom:338.685733pt;}
.y211{bottom:338.811600pt;}
.y2cf{bottom:339.228000pt;}
.ye2{bottom:340.011067pt;}
.y1db{bottom:340.801733pt;}
.y36f{bottom:342.399733pt;}
.y180{bottom:343.011733pt;}
.y23d{bottom:344.271733pt;}
.y9b{bottom:344.684000pt;}
.y1ac{bottom:344.694400pt;}
.y149{bottom:346.226800pt;}
.y66{bottom:346.903867pt;}
.yc8{bottom:347.477733pt;}
.y306{bottom:347.757733pt;}
.y3a9{bottom:349.552800pt;}
.y333{bottom:349.878667pt;}
.y3b{bottom:349.891467pt;}
.ye1{bottom:352.681067pt;}
.y277{bottom:354.913333pt;}
.y2a2{bottom:356.848933pt;}
.y36e{bottom:357.937733pt;}
.y116{bottom:358.271733pt;}
.y210{bottom:358.551600pt;}
.y1da{bottom:360.331733pt;}
.y17f{bottom:362.709733pt;}
.y3a{bottom:363.888133pt;}
.y23c{bottom:364.095733pt;}
.y9a{bottom:364.158000pt;}
.y1ab{bottom:364.182400pt;}
.ye0{bottom:365.351067pt;}
.y3a8{bottom:365.634800pt;}
.y148{bottom:365.714800pt;}
.y332{bottom:365.972000pt;}
.y65{bottom:366.629867pt;}
.y305{bottom:367.091733pt;}
.yc7{bottom:373.293733pt;}
.y36d{bottom:373.475733pt;}
.y276{bottom:374.317333pt;}
.y2a1{bottom:376.196933pt;}
.y2ce{bottom:377.510133pt;}
.y115{bottom:377.857733pt;}
.ydf{bottom:378.021067pt;}
.y20f{bottom:378.291600pt;}
.y1d9{bottom:379.861733pt;}
.y3a7{bottom:381.716800pt;}
.y331{bottom:382.065333pt;}
.y17e{bottom:382.407733pt;}
.y99{bottom:383.632000pt;}
.y1aa{bottom:383.670400pt;}
.y23b{bottom:383.919733pt;}
.y147{bottom:385.202800pt;}
.y304{bottom:386.425733pt;}
.y36c{bottom:389.013733pt;}
.yde{bottom:390.691067pt;}
.y64{bottom:392.025867pt;}
.yc6{bottom:393.439733pt;}
.y275{bottom:393.721333pt;}
.y2a0{bottom:395.544933pt;}
.y3a6{bottom:397.798800pt;}
.y20e{bottom:398.031600pt;}
.y330{bottom:398.158667pt;}
.y2cd{bottom:398.218133pt;}
.y1d8{bottom:399.391733pt;}
.y39{bottom:399.452133pt;}
.y17d{bottom:402.105733pt;}
.y98{bottom:403.106000pt;}
.y114{bottom:403.113733pt;}
.y1a9{bottom:403.158400pt;}
.ydd{bottom:403.361067pt;}
.y23a{bottom:403.743733pt;}
.y36b{bottom:404.551733pt;}
.y146{bottom:404.690800pt;}
.y303{bottom:405.759733pt;}
.y63{bottom:411.751867pt;}
.y274{bottom:413.125333pt;}
.yc5{bottom:413.585733pt;}
.y3a5{bottom:413.880800pt;}
.y32f{bottom:414.252000pt;}
.ydc{bottom:416.031067pt;}
.y38{bottom:417.234133pt;}
.y20d{bottom:417.771600pt;}
.y1d7{bottom:418.921733pt;}
.y36a{bottom:420.089733pt;}
.y29f{bottom:420.562933pt;}
.y97{bottom:422.580000pt;}
.y113{bottom:422.699733pt;}
.y239{bottom:423.567733pt;}
.y145{bottom:424.178800pt;}
.y302{bottom:425.093733pt;}
.y17c{bottom:427.473733pt;}
.y1a8{bottom:428.316400pt;}
.ydb{bottom:428.701067pt;}
.y3a4{bottom:429.962800pt;}
.y32e{bottom:430.345333pt;}
.y37{bottom:431.230800pt;}
.y62{bottom:431.477867pt;}
.y273{bottom:432.529333pt;}
.yc4{bottom:433.731733pt;}
.y369{bottom:435.627733pt;}
.y20c{bottom:437.511600pt;}
.y1d6{bottom:438.451733pt;}
.y29e{bottom:439.910933pt;}
.yda{bottom:441.371067pt;}
.y96{bottom:442.054000pt;}
.y112{bottom:442.285733pt;}
.y238{bottom:443.391733pt;}
.y144{bottom:443.666800pt;}
.y301{bottom:444.427733pt;}
.y36{bottom:445.227467pt;}
.y3a3{bottom:446.044800pt;}
.y32d{bottom:446.438667pt;}
.y17b{bottom:447.171733pt;}
.y1a7{bottom:447.804400pt;}
.y368{bottom:451.165733pt;}
.y61{bottom:451.203867pt;}
.y272{bottom:451.933333pt;}
.yc3{bottom:453.877733pt;}
.yd9{bottom:454.041067pt;}
.y20b{bottom:457.251600pt;}
.y1d5{bottom:457.981733pt;}
.y35{bottom:459.224133pt;}
.y29d{bottom:459.258933pt;}
.y95{bottom:461.528000pt;}
.y111{bottom:461.871733pt;}
.y3a2{bottom:462.126800pt;}
.y2cc{bottom:462.410000pt;}
.y32c{bottom:462.532000pt;}
.y143{bottom:463.154800pt;}
.y237{bottom:463.215733pt;}
.y300{bottom:463.761733pt;}
.y367{bottom:466.703733pt;}
.yd8{bottom:466.711067pt;}
.y17a{bottom:466.869733pt;}
.y1a6{bottom:467.292400pt;}
.y60{bottom:470.929867pt;}
.y271{bottom:471.337333pt;}
.y34{bottom:473.220800pt;}
.yc2{bottom:474.023733pt;}
.y3dd{bottom:474.468800pt;}
.y20a{bottom:476.991600pt;}
.y3a1{bottom:478.208800pt;}
.y29c{bottom:478.606933pt;}
.y32b{bottom:478.625333pt;}
.yd7{bottom:479.381067pt;}
.y94{bottom:481.002000pt;}
.y110{bottom:481.457733pt;}
.y2cb{bottom:481.786000pt;}
.y366{bottom:482.241733pt;}
.y142{bottom:482.642800pt;}
.y236{bottom:483.039733pt;}
.y2ff{bottom:483.095733pt;}
.y1d4{bottom:483.181733pt;}
.y179{bottom:486.567733pt;}
.y1a5{bottom:486.780400pt;}
.y33{bottom:487.217467pt;}
.y3dc{bottom:489.802800pt;}
.y5f{bottom:490.655867pt;}
.y270{bottom:490.741333pt;}
.yd6{bottom:492.051067pt;}
.yc1{bottom:494.169733pt;}
.y3a0{bottom:494.290800pt;}
.y32a{bottom:494.718667pt;}
.y209{bottom:496.731600pt;}
.y365{bottom:497.779733pt;}
.y29b{bottom:497.954933pt;}
.y93{bottom:500.476000pt;}
.y10f{bottom:501.043733pt;}
.y2ca{bottom:501.162000pt;}
.y32{bottom:501.214133pt;}
.y141{bottom:502.130800pt;}
.y1d3{bottom:502.711733pt;}
.y235{bottom:502.863733pt;}
.yd5{bottom:504.721067pt;}
.y3db{bottom:505.136800pt;}
.y178{bottom:506.265733pt;}
.y1a4{bottom:506.268400pt;}
.y2fe{bottom:508.099733pt;}
.y39f{bottom:510.372800pt;}
.y5e{bottom:510.381867pt;}
.y329{bottom:510.812000pt;}
.y364{bottom:513.317733pt;}
.yc0{bottom:514.315733pt;}
.y31{bottom:515.210800pt;}
.y26f{bottom:515.801333pt;}
.y208{bottom:516.471600pt;}
.y29a{bottom:517.302933pt;}
.yd4{bottom:517.391067pt;}
.y3da{bottom:520.470800pt;}
.y2c9{bottom:520.538000pt;}
.y10e{bottom:520.629733pt;}
.y1d2{bottom:522.241733pt;}
.y1a3{bottom:525.756400pt;}
.y177{bottom:525.963733pt;}
.y39e{bottom:526.454800pt;}
.y328{bottom:526.905333pt;}
.y140{bottom:527.288800pt;}
.y2fd{bottom:527.433733pt;}
.y234{bottom:528.357733pt;}
.y363{bottom:528.855733pt;}
.y30{bottom:529.207467pt;}
.y5d{bottom:530.107867pt;}
.y26e{bottom:535.205333pt;}
.y3d9{bottom:535.804800pt;}
.y207{bottom:536.211600pt;}
.y299{bottom:536.650933pt;}
.y92{bottom:538.851600pt;}
.y2c8{bottom:540.005733pt;}
.ybf{bottom:540.131733pt;}
.y10d{bottom:540.215733pt;}
.y1d1{bottom:541.671733pt;}
.y39d{bottom:542.536800pt;}
.y327{bottom:542.998667pt;}
.y2f{bottom:543.204133pt;}
.y362{bottom:544.393733pt;}
.y1a2{bottom:545.244400pt;}
.y176{bottom:545.661733pt;}
.y2fc{bottom:546.767733pt;}
.y13f{bottom:546.776800pt;}
.y233{bottom:548.181733pt;}
.y5c{bottom:549.833867pt;}
.y3d8{bottom:551.138800pt;}
.y26d{bottom:554.609333pt;}
.y206{bottom:555.951600pt;}
.y298{bottom:555.998933pt;}
.y2e{bottom:557.200800pt;}
.y39c{bottom:558.618800pt;}
.y326{bottom:559.092000pt;}
.y2c7{bottom:559.381733pt;}
.y91{bottom:559.662933pt;}
.y10c{bottom:559.801733pt;}
.y361{bottom:559.931733pt;}
.ybe{bottom:560.277733pt;}
.y1d0{bottom:561.201733pt;}
.y175{bottom:565.359733pt;}
.y2fb{bottom:566.101733pt;}
.y13e{bottom:566.264800pt;}
.y3d7{bottom:566.472800pt;}
.y232{bottom:568.005733pt;}
.y5b{bottom:569.559867pt;}
.y2d{bottom:571.197467pt;}
.y1a1{bottom:572.288267pt;}
.y26c{bottom:574.013333pt;}
.y39b{bottom:574.700800pt;}
.y325{bottom:575.185333pt;}
.y297{bottom:575.346933pt;}
.y360{bottom:575.469733pt;}
.y205{bottom:575.691600pt;}
.y2c6{bottom:578.757733pt;}
.y10b{bottom:579.387733pt;}
.ybd{bottom:580.423733pt;}
.y90{bottom:580.474267pt;}
.y1cf{bottom:580.731733pt;}
.y3d6{bottom:581.806800pt;}
.y174{bottom:585.057733pt;}
.y2fa{bottom:585.435733pt;}
.y13d{bottom:585.752800pt;}
.y231{bottom:587.829733pt;}
.y2c{bottom:588.977067pt;}
.y5a{bottom:589.285867pt;}
.y39a{bottom:590.782800pt;}
.y35f{bottom:591.007733pt;}
.y324{bottom:591.278667pt;}
.y26b{bottom:593.417333pt;}
.y296{bottom:594.694933pt;}
.y3d5{bottom:597.140800pt;}
.y2c5{bottom:598.133733pt;}
.y10a{bottom:598.973733pt;}
.y1ce{bottom:600.261733pt;}
.ybc{bottom:600.569733pt;}
.y204{bottom:601.101600pt;}
.y8f{bottom:601.285600pt;}
.y173{bottom:604.755733pt;}
.y2f9{bottom:604.769733pt;}
.y13c{bottom:605.240800pt;}
.y35e{bottom:606.545733pt;}
.y399{bottom:606.864800pt;}
.y323{bottom:607.372000pt;}
.y230{bottom:607.653733pt;}
.y59{bottom:609.011867pt;}
.y3d4{bottom:612.474800pt;}
.y26a{bottom:612.821333pt;}
.y295{bottom:614.042933pt;}
.y2c4{bottom:617.509733pt;}
.y2b{bottom:618.320400pt;}
.y109{bottom:618.559733pt;}
.y1cd{bottom:619.791733pt;}
.ybb{bottom:620.715733pt;}
.y203{bottom:620.841600pt;}
.y35d{bottom:622.083733pt;}
.y398{bottom:622.946800pt;}
.y322{bottom:623.465333pt;}
.y2f8{bottom:624.103733pt;}
.y13b{bottom:624.728800pt;}
.y22f{bottom:627.477733pt;}
.y3d3{bottom:627.808800pt;}
.y58{bottom:628.737867pt;}
.y172{bottom:630.123733pt;}
.y269{bottom:632.225333pt;}
.y2a{bottom:632.317067pt;}
.y294{bottom:633.390933pt;}
.y2c3{bottom:636.885733pt;}
.y35c{bottom:637.621733pt;}
.y108{bottom:638.145733pt;}
.y397{bottom:639.028800pt;}
.y1cc{bottom:639.321733pt;}
.y321{bottom:639.558667pt;}
.y1a0{bottom:640.203733pt;}
.y202{bottom:640.581600pt;}
.yba{bottom:640.861733pt;}
.y3d2{bottom:643.142800pt;}
.y2f7{bottom:643.437733pt;}
.y13a{bottom:644.216800pt;}
.y29{bottom:646.313733pt;}
.y22e{bottom:647.301733pt;}
.y171{bottom:649.821733pt;}
.y268{bottom:651.629333pt;}
.y293{bottom:652.738933pt;}
.y35b{bottom:653.159733pt;}
.y57{bottom:654.133867pt;}
.y396{bottom:655.110800pt;}
.y320{bottom:655.652000pt;}
.y2c2{bottom:656.261733pt;}
.y107{bottom:657.731733pt;}
.y3d1{bottom:658.476800pt;}
.y1cb{bottom:658.851733pt;}
.y19f{bottom:659.691733pt;}
.y28{bottom:660.310400pt;}
.y201{bottom:660.321600pt;}
.yb9{bottom:661.007733pt;}
.y2f6{bottom:662.771733pt;}
.y139{bottom:663.704800pt;}
.y8e{bottom:665.641733pt;}
.y22d{bottom:667.125733pt;}
.y35a{bottom:668.697733pt;}
.y170{bottom:669.519733pt;}
.y267{bottom:671.033333pt;}
.y395{bottom:671.192800pt;}
.y31f{bottom:671.745333pt;}
.y3d0{bottom:673.810800pt;}
.y56{bottom:673.859867pt;}
.y2c1{bottom:675.637733pt;}
.y106{bottom:677.317733pt;}
.y292{bottom:677.756933pt;}
.y1ca{bottom:678.381733pt;}
.y19e{bottom:679.179733pt;}
.y200{bottom:680.061600pt;}
.yb8{bottom:681.153733pt;}
.y2f5{bottom:682.105733pt;}
.y138{bottom:683.192800pt;}
.y359{bottom:684.235733pt;}
.y8d{bottom:685.115733pt;}
.y22c{bottom:686.949733pt;}
.y394{bottom:687.274800pt;}
.y31e{bottom:687.838667pt;}
.y3cf{bottom:689.144800pt;}
.y16f{bottom:689.217733pt;}
.y266{bottom:690.437333pt;}
.y55{bottom:693.585867pt;}
.y2c0{bottom:695.013733pt;}
.y105{bottom:696.903733pt;}
.y291{bottom:697.104933pt;}
.y1c9{bottom:697.911733pt;}
.y19d{bottom:698.667733pt;}
.y358{bottom:699.773733pt;}
.y1ff{bottom:699.801600pt;}
.yb7{bottom:701.299733pt;}
.y2f4{bottom:701.439733pt;}
.y137{bottom:702.708533pt;}
.y393{bottom:703.356800pt;}
.y31d{bottom:703.932000pt;}
.y3ce{bottom:704.478800pt;}
.y8c{bottom:704.589733pt;}
.y16e{bottom:708.915733pt;}
.y265{bottom:709.841333pt;}
.y22b{bottom:712.443733pt;}
.y54{bottom:713.311867pt;}
.y357{bottom:715.311733pt;}
.y290{bottom:716.452933pt;}
.y104{bottom:716.489733pt;}
.y1c8{bottom:717.441733pt;}
.y19c{bottom:718.155733pt;}
.y392{bottom:719.438800pt;}
.y1fe{bottom:719.541600pt;}
.y3cd{bottom:719.812800pt;}
.y31c{bottom:720.025333pt;}
.y2bf{bottom:720.059733pt;}
.y2f3{bottom:720.773733pt;}
.yb6{bottom:721.445733pt;}
.y136{bottom:722.196533pt;}
.y8b{bottom:724.063733pt;}
.y16d{bottom:728.613733pt;}
.y264{bottom:729.245333pt;}
.y356{bottom:730.849733pt;}
.y22a{bottom:732.267733pt;}
.y53{bottom:733.037867pt;}
.y3cc{bottom:735.146800pt;}
.y391{bottom:735.520800pt;}
.y28f{bottom:735.800933pt;}
.y103{bottom:736.075733pt;}
.y31b{bottom:736.118667pt;}
.y1c7{bottom:736.971733pt;}
.y19b{bottom:737.643733pt;}
.y1fd{bottom:739.281600pt;}
.y2be{bottom:739.435733pt;}
.y2f2{bottom:740.107733pt;}
.yb5{bottom:741.591733pt;}
.y135{bottom:741.684533pt;}
.y8a{bottom:743.537733pt;}
.y355{bottom:746.387733pt;}
.y16c{bottom:748.311733pt;}
.y263{bottom:748.649333pt;}
.y3cb{bottom:750.480800pt;}
.y390{bottom:751.602800pt;}
.y229{bottom:752.091733pt;}
.y31a{bottom:752.212000pt;}
.y52{bottom:752.763867pt;}
.y28e{bottom:755.148933pt;}
.y102{bottom:755.661733pt;}
.y1c6{bottom:756.501733pt;}
.y19a{bottom:757.131733pt;}
.y2bd{bottom:758.811733pt;}
.y1fc{bottom:759.021600pt;}
.y2f1{bottom:759.441733pt;}
.yb4{bottom:761.737733pt;}
.y354{bottom:761.925733pt;}
.y89{bottom:763.011733pt;}
.y3ca{bottom:765.814800pt;}
.y134{bottom:766.842533pt;}
.y38f{bottom:767.684800pt;}
.y16b{bottom:768.009733pt;}
.y262{bottom:768.053333pt;}
.y319{bottom:768.305333pt;}
.y228{bottom:771.915733pt;}
.y51{bottom:772.489867pt;}
.y28d{bottom:774.496933pt;}
.y101{bottom:775.247733pt;}
.y1c5{bottom:776.031733pt;}
.y199{bottom:776.619733pt;}
.y353{bottom:777.463733pt;}
.y2bc{bottom:778.187733pt;}
.y1fb{bottom:778.761600pt;}
.y2f0{bottom:778.775733pt;}
.y3c9{bottom:781.148800pt;}
.yb3{bottom:781.883733pt;}
.y88{bottom:782.485733pt;}
.y38e{bottom:783.766800pt;}
.y318{bottom:784.398667pt;}
.y133{bottom:786.330533pt;}
.y261{bottom:787.457333pt;}
.y227{bottom:791.739733pt;}
.y50{bottom:792.215867pt;}
.y352{bottom:793.001733pt;}
.y16a{bottom:793.377733pt;}
.y28c{bottom:793.844933pt;}
.y1c4{bottom:795.561733pt;}
.y198{bottom:796.107733pt;}
.y3c8{bottom:796.482800pt;}
.y2bb{bottom:797.563733pt;}
.y2ef{bottom:798.109733pt;}
.y1fa{bottom:798.501600pt;}
.y38d{bottom:799.848800pt;}
.y317{bottom:800.492000pt;}
.y100{bottom:800.503733pt;}
.y87{bottom:801.959733pt;}
.yb2{bottom:802.029733pt;}
.y132{bottom:805.818533pt;}
.y260{bottom:806.861333pt;}
.y351{bottom:808.539733pt;}
.y226{bottom:811.563733pt;}
.y3c7{bottom:811.816800pt;}
.y4f{bottom:811.941867pt;}
.y169{bottom:813.075733pt;}
.y28b{bottom:813.192933pt;}
.y1c3{bottom:815.091733pt;}
.y197{bottom:815.595733pt;}
.y38c{bottom:815.930800pt;}
.y316{bottom:816.585333pt;}
.y2ba{bottom:816.939733pt;}
.y2ee{bottom:817.443733pt;}
.y1f9{bottom:818.241600pt;}
.yff{bottom:820.089733pt;}
.y86{bottom:821.433733pt;}
.y350{bottom:824.077733pt;}
.y131{bottom:825.335067pt;}
.y25f{bottom:826.265333pt;}
.yd{bottom:826.530667pt;}
.y3c6{bottom:827.150800pt;}
.yb1{bottom:827.845733pt;}
.y225{bottom:831.387733pt;}
.y38b{bottom:832.012800pt;}
.y28a{bottom:832.540933pt;}
.y315{bottom:832.678667pt;}
.y168{bottom:832.773733pt;}
.y1c2{bottom:834.621733pt;}
.y196{bottom:835.083733pt;}
.y2b9{bottom:836.315733pt;}
.y2ed{bottom:836.777733pt;}
.y1f8{bottom:837.981600pt;}
.y34f{bottom:839.615733pt;}
.yfe{bottom:839.675733pt;}
.y85{bottom:840.907733pt;}
.y3c5{bottom:842.484800pt;}
.y130{bottom:844.823067pt;}
.y25e{bottom:845.669333pt;}
.yb0{bottom:847.991733pt;}
.y38a{bottom:848.094800pt;}
.y314{bottom:848.772000pt;}
.y4e{bottom:850.570933pt;}
.y224{bottom:851.211733pt;}
.y289{bottom:851.888933pt;}
.y167{bottom:852.471733pt;}
.y1c1{bottom:854.151733pt;}
.yc{bottom:855.066667pt;}
.y34e{bottom:855.153733pt;}
.y2b8{bottom:855.691733pt;}
.y2ec{bottom:856.111733pt;}
.y1f7{bottom:857.721600pt;}
.y3c4{bottom:857.818800pt;}
.yfd{bottom:859.261733pt;}
.y195{bottom:860.241733pt;}
.y84{bottom:860.381733pt;}
.y389{bottom:864.176800pt;}
.y12f{bottom:864.311067pt;}
.y313{bottom:864.865333pt;}
.y25d{bottom:865.073333pt;}
.yaf{bottom:868.137733pt;}
.y34d{bottom:870.691733pt;}
.y223{bottom:871.035733pt;}
.y288{bottom:871.236933pt;}
.y4d{bottom:871.630267pt;}
.y166{bottom:872.169733pt;}
.y3c3{bottom:873.152800pt;}
.y1c0{bottom:873.681733pt;}
.yb{bottom:874.650667pt;}
.y2b7{bottom:875.067733pt;}
.y2eb{bottom:875.445733pt;}
.y1f6{bottom:877.461600pt;}
.yfc{bottom:878.847733pt;}
.y194{bottom:879.729733pt;}
.y83{bottom:879.855733pt;}
.y388{bottom:880.258800pt;}
.y312{bottom:880.958667pt;}
.y12e{bottom:883.799067pt;}
.y34c{bottom:886.229733pt;}
.yae{bottom:888.283733pt;}
.y3c2{bottom:888.486800pt;}
.y25c{bottom:890.147333pt;}
.y287{bottom:890.584933pt;}
.y222{bottom:890.859733pt;}
.y165{bottom:891.867733pt;}
.y1bf{bottom:893.211733pt;}
.y2b6{bottom:894.443733pt;}
.y2ea{bottom:894.779733pt;}
.y387{bottom:896.340800pt;}
.y311{bottom:897.052000pt;}
.y1f5{bottom:897.201600pt;}
.yfb{bottom:898.433733pt;}
.ya{bottom:898.650667pt;}
.y193{bottom:899.217733pt;}
.y82{bottom:899.329733pt;}
.y34b{bottom:901.767733pt;}
.y12d{bottom:903.287067pt;}
.y3c1{bottom:903.820800pt;}
.yad{bottom:908.429733pt;}
.y25b{bottom:909.551333pt;}
.y286{bottom:909.932933pt;}
.y221{bottom:910.683733pt;}
.y164{bottom:911.565733pt;}
.y386{bottom:912.422800pt;}
.y1be{bottom:912.741733pt;}
.y310{bottom:913.145333pt;}
.y2b5{bottom:913.819733pt;}
.y2e9{bottom:914.113733pt;}
.y1f4{bottom:916.941600pt;}
.y34a{bottom:917.305733pt;}
.yfa{bottom:918.019733pt;}
.y192{bottom:918.705733pt;}
.y81{bottom:918.803733pt;}
.y3c0{bottom:919.154800pt;}
.y12c{bottom:922.775067pt;}
.y385{bottom:928.504800pt;}
.yac{bottom:928.575733pt;}
.y25a{bottom:928.955333pt;}
.y30f{bottom:929.238667pt;}
.y285{bottom:929.280933pt;}
.y220{bottom:930.507733pt;}
.y163{bottom:931.263733pt;}
.y1bd{bottom:932.271733pt;}
.y349{bottom:932.843733pt;}
.y2b4{bottom:933.195733pt;}
.y3bf{bottom:934.488800pt;}
.y1f3{bottom:936.681600pt;}
.yf9{bottom:937.605733pt;}
.y191{bottom:938.193733pt;}
.y80{bottom:938.277733pt;}
.y2e8{bottom:939.117733pt;}
.y12b{bottom:942.263067pt;}
.y384{bottom:944.586800pt;}
.y30e{bottom:945.332000pt;}
.y259{bottom:948.359333pt;}
.y348{bottom:948.381733pt;}
.y284{bottom:948.628933pt;}
.yab{bottom:948.721733pt;}
.y3be{bottom:949.822800pt;}
.y21f{bottom:950.331733pt;}
.y162{bottom:950.961733pt;}
.y7{bottom:951.114667pt;}
.y2b3{bottom:952.571733pt;}
.y79{bottom:955.398800pt;}
.y1f2{bottom:956.421600pt;}
.yf8{bottom:957.191733pt;}
.y1bc{bottom:957.471733pt;}
.y190{bottom:957.681733pt;}
.y7f{bottom:957.751733pt;}
.y2e7{bottom:958.451733pt;}
.y383{bottom:960.668800pt;}
.y30d{bottom:961.425333pt;}
.y347{bottom:963.919733pt;}
.y49{bottom:964.162667pt;}
.y3bd{bottom:965.156800pt;}
.y258{bottom:967.763333pt;}
.y283{bottom:967.976933pt;}
.y12a{bottom:969.314800pt;}
.y78{bottom:969.395467pt;}
.y6{bottom:970.650667pt;}
.yaa{bottom:974.537733pt;}
.y21e{bottom:975.825733pt;}
.y1f1{bottom:976.161600pt;}
.y161{bottom:976.329733pt;}
.y382{bottom:976.750800pt;}
.yf7{bottom:976.777733pt;}
.y1bb{bottom:977.001733pt;}
.y18f{bottom:977.169733pt;}
.y7e{bottom:977.225733pt;}
.y30c{bottom:977.518667pt;}
.y2b2{bottom:977.617733pt;}
.y2e6{bottom:977.785733pt;}
.y346{bottom:979.470800pt;}
.y3bc{bottom:980.490800pt;}
.y257{bottom:987.167333pt;}
.y77{bottom:987.177467pt;}
.y282{bottom:987.324933pt;}
.y18{bottom:987.572000pt;}
.y381{bottom:992.832800pt;}
.y30b{bottom:993.612000pt;}
.y4{bottom:994.650667pt;}
.ya9{bottom:994.683733pt;}
.y345{bottom:995.008800pt;}
.y21d{bottom:995.649733pt;}
.y3bb{bottom:995.824800pt;}
.y1f0{bottom:995.901600pt;}
.y160{bottom:996.027733pt;}
.yf6{bottom:996.363733pt;}
.y1ba{bottom:996.531733pt;}
.y18e{bottom:996.657733pt;}
.y7d{bottom:996.699733pt;}
.y2b1{bottom:996.993733pt;}
.y2e5{bottom:997.119733pt;}
.y16{bottom:1000.905333pt;}
.y76{bottom:1001.174133pt;}
.y256{bottom:1006.571333pt;}
.y281{bottom:1006.672933pt;}
.y129{bottom:1008.360133pt;}
.y380{bottom:1008.914800pt;}
.y344{bottom:1010.546800pt;}
.y3ba{bottom:1011.158800pt;}
.ya8{bottom:1014.829733pt;}
.y75{bottom:1015.170800pt;}
.y21c{bottom:1015.473733pt;}
.y1ef{bottom:1015.641600pt;}
.y15f{bottom:1015.725733pt;}
.yf5{bottom:1015.949733pt;}
.y1b9{bottom:1016.061733pt;}
.y18d{bottom:1016.145733pt;}
.y7c{bottom:1016.173733pt;}
.y2b0{bottom:1016.369733pt;}
.y2e4{bottom:1016.453733pt;}
.y15{bottom:1016.470667pt;}
.y3{bottom:1023.066667pt;}
.y37f{bottom:1024.996800pt;}
.y343{bottom:1026.084800pt;}
.y3b9{bottom:1026.492800pt;}
.y13{bottom:1028.208000pt;}
.y30a{bottom:1028.592800pt;}
.y74{bottom:1029.167467pt;}
.y128{bottom:1029.192133pt;}
.y255{bottom:1033.528400pt;}
.y280{bottom:1033.576400pt;}
.ya7{bottom:1034.975733pt;}
.y21b{bottom:1035.297733pt;}
.y1ee{bottom:1035.381600pt;}
.y15e{bottom:1035.423733pt;}
.yf4{bottom:1035.535733pt;}
.y1b8{bottom:1035.591733pt;}
.y18c{bottom:1035.633733pt;}
.y7b{bottom:1035.647733pt;}
.y2af{bottom:1035.745733pt;}
.y2e3{bottom:1035.787733pt;}
.y37e{bottom:1041.078800pt;}
.y342{bottom:1041.622800pt;}
.y3b8{bottom:1041.826800pt;}
.y11{bottom:1041.997333pt;}
.y73{bottom:1043.164133pt;}
.y1{bottom:1047.066667pt;}
.y127{bottom:1050.024133pt;}
.y254{bottom:1053.592400pt;}
.y1ed{bottom:1055.121600pt;}
.y7a{bottom:1055.121733pt;}
.yf{bottom:1056.470667pt;}
.y72{bottom:1057.160800pt;}
.h7{height:4.824000pt;}
.h15{height:6.292000pt;}
.ha{height:9.300000pt;}
.hc{height:10.440000pt;}
.he{height:11.532000pt;}
.hd{height:11.604000pt;}
.hf{height:11.892000pt;}
.h8{height:18.648000pt;}
.h2{height:20.040000pt;}
.h4{height:23.064000pt;}
.h5{height:23.184000pt;}
.h9{height:23.304000pt;}
.h6{height:24.360000pt;}
.h14{height:34.683594pt;}
.h17{height:40.019531pt;}
.h11{height:45.355469pt;}
.hb{height:48.023438pt;}
.h13{height:50.691406pt;}
.h16{height:55.707187pt;}
.h1d{height:55.975077pt;}
.h19{height:56.027344pt;}
.h1c{height:56.427344pt;}
.h1a{height:56.783610pt;}
.h12{height:58.695312pt;}
.h10{height:61.363281pt;}
.h1b{height:64.031250pt;}
.h18{height:82.707031pt;}
.h3{height:96.046875pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w12{width:6.465333pt;}
.w10{width:52.109333pt;}
.wf{width:63.845333pt;}
.wc{width:116.297333pt;}
.w7{width:151.473333pt;}
.wd{width:163.517333pt;}
.wb{width:168.350667pt;}
.we{width:173.946667pt;}
.w3{width:207.294667pt;}
.w2{width:234.006667pt;}
.w4{width:253.614667pt;}
.w8{width:256.444000pt;}
.w5{width:297.129333pt;}
.w11{width:332.218667pt;}
.w6{width:334.077333pt;}
.w9{width:374.241333pt;}
.wa{width:391.630667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x2{left:-1.176400pt;}
.x0{left:0.000000pt;}
.x3{left:56.974667pt;}
.x1{left:57.869333pt;}
.xe{left:75.592933pt;}
.x1a{left:83.144933pt;}
.xf{left:86.929067pt;}
.x18{left:94.484933pt;}
.xa{left:170.078800pt;}
.xb{left:196.535467pt;}
.x10{left:264.566933pt;}
.x13{left:269.861387pt;}
.x19{left:291.018933pt;}
.x11{left:294.803067pt;}
.x17{left:302.358933pt;}
.x12{left:326.579867pt;}
.x14{left:388.632160pt;}
.xd{left:392.624000pt;}
.x15{left:555.590533pt;}
.x7{left:562.033333pt;}
.x4{left:567.888000pt;}
.x6{left:573.081333pt;}
.x16{left:574.490533pt;}
.x5{left:620.218667pt;}
.x8{left:672.104000pt;}
.x9{left:683.841333pt;}
.xc{left:711.897200pt;}
}




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