
    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_5fc0ada74dd0496c974ca21a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_5ab3e2175dc7e8c34170c440.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_d0d90840c1ebf3413bb7c3d0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;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_c32c5dabb658ec8ad29645eb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_790271ad2120e5274225af6e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.077000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e1ef8e8094e0abb895097019.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fa8341788724e3dd16ea29aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;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:ffa;src:url('chunks/assets/font_2b92d567bbc246d9e9845931.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.711000;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:ffb;src:url('chunks/assets/font_03042eef3f9c5eca48744c57.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c53460a62cd1d6531daed8db.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911000;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:ffd;src:url('chunks/assets/font_a3e399b26b2609b05e7e80d1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.715000;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:ffe;src:url('chunks/assets/font_d0612e530abdb918259dabaf.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.044000;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:fff;src:url('chunks/assets/font_876472533cb255510ae4530c.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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:ff10;src:url('chunks/assets/font_451327c379cc02fee2b48557.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.842285;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:ff11;src:url('chunks/assets/font_cdb2ca4943837489df053339.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.956543;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:ff12;src:url('chunks/assets/font_1addcd39993c1d39b70826a4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.041000;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:ff13;src:url('chunks/assets/font_856a2f867c6746617ece83d3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.947000;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:ff14;src:url('chunks/assets/font_11d7fa353d802548c12813a0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.880371;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:ff15;src:url('chunks/assets/font_feaf0eab66a4aa72afc954a7.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.956543;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:ff16;src:url('chunks/assets/font_7592831ed2d9ff8cdd3f72be.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.908203;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:ff17;src:url('chunks/assets/font_417f5b52774d8c24c038d150.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.710000;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:ff18;src:url('chunks/assets/font_d51b3517334e3805f62c1c59.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_1a3861a2e9004ba285aa6d07.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.824000;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:ff1a;src:url('chunks/assets/font_94b06fce9abbc866945dac47.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.721000;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:ff1b;src:url('chunks/assets/font_9e5caf2a08a607b484d0714f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.956543;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:ff1c;src:url('chunks/assets/font_1a3861a2e9004ba285aa6d07.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.824000;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:ff1d;src:url('chunks/assets/font_2acd0f253fba581833f1d900.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.934000;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;}
.m2{transform:matrix(0.190985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190985,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-26.991763px;}
.v2{vertical-align:-17.820000px;}
.v6{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.820000px;}
.v1{vertical-align:20.790000px;}
.v4{vertical-align:47.400000px;}
.ls3c{letter-spacing:-17.343600px;}
.ls34{letter-spacing:-3.000000px;}
.lsb{letter-spacing:-0.540000px;}
.ls46{letter-spacing:-0.180000px;}
.ls4d{letter-spacing:-0.162000px;}
.ls0{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.054000px;}
.ls1{letter-spacing:0.060000px;}
.lsc{letter-spacing:0.180000px;}
.ls4b{letter-spacing:0.216000px;}
.ls43{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.408900px;}
.ls7{letter-spacing:0.409050px;}
.ls8{letter-spacing:0.450000px;}
.ls48{letter-spacing:0.600000px;}
.ls4{letter-spacing:0.630000px;}
.ls47{letter-spacing:0.720000px;}
.ls4c{letter-spacing:0.810000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.900000px;}
.ls45{letter-spacing:4.230000px;}
.ls3f{letter-spacing:4.800000px;}
.ls9{letter-spacing:5.467200px;}
.ls2f{letter-spacing:7.674000px;}
.ls49{letter-spacing:9.157800px;}
.ls44{letter-spacing:19.494206px;}
.ls12{letter-spacing:35.299800px;}
.ls29{letter-spacing:40.200000px;}
.ls3a{letter-spacing:49.200000px;}
.ls31{letter-spacing:61.308000px;}
.ls2a{letter-spacing:62.367586px;}
.lsa{letter-spacing:65.412000px;}
.ls32{letter-spacing:70.800000px;}
.ls6{letter-spacing:71.943600px;}
.ls2b{letter-spacing:75.583409px;}
.ls41{letter-spacing:78.600000px;}
.ls3b{letter-spacing:84.671455px;}
.ls2e{letter-spacing:90.648343px;}
.ls33{letter-spacing:91.157962px;}
.ls42{letter-spacing:91.262023px;}
.ls28{letter-spacing:91.860000px;}
.ls1c{letter-spacing:97.840200px;}
.ls30{letter-spacing:101.002382px;}
.ls38{letter-spacing:106.860000px;}
.ls1b{letter-spacing:126.833400px;}
.ls18{letter-spacing:130.434600px;}
.ls2c{letter-spacing:165.483780px;}
.ls26{letter-spacing:172.623600px;}
.ls17{letter-spacing:175.504200px;}
.ls39{letter-spacing:177.000000px;}
.ls2d{letter-spacing:183.547980px;}
.lsd{letter-spacing:193.361400px;}
.ls1d{letter-spacing:195.712200px;}
.ls36{letter-spacing:214.178580px;}
.ls37{letter-spacing:217.320180px;}
.ls15{letter-spacing:221.055600px;}
.ls21{letter-spacing:227.968800px;}
.ls19{letter-spacing:229.119600px;}
.ls1e{letter-spacing:230.080200px;}
.ls23{letter-spacing:231.520800px;}
.ls3e{letter-spacing:233.813580px;}
.ls40{letter-spacing:235.384380px;}
.ls20{letter-spacing:241.120200px;}
.lsf{letter-spacing:246.016200px;}
.ls14{letter-spacing:254.320200px;}
.ls24{letter-spacing:259.215000px;}
.ls13{letter-spacing:263.439000px;}
.ls27{letter-spacing:269.391000px;}
.ls11{letter-spacing:272.847000px;}
.lse{letter-spacing:286.479600px;}
.ls1a{letter-spacing:286.555800px;}
.ls22{letter-spacing:295.359000px;}
.ls1f{letter-spacing:295.407000px;}
.ls16{letter-spacing:315.134400px;}
.ls25{letter-spacing:321.018600px;}
.ls10{letter-spacing:381.978600px;}
.ls3d{letter-spacing:385.270730px;}
.ls35{letter-spacing:547.973580px;}
.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;}
}
.wsd8{word-spacing:-547.973580px;}
.wsc9{word-spacing:-419.957930px;}
.wsdd{word-spacing:-235.384380px;}
.wsdc{word-spacing:-233.813580px;}
.wsda{word-spacing:-217.320180px;}
.wsd9{word-spacing:-214.178580px;}
.wsaf{word-spacing:-183.547980px;}
.wsae{word-spacing:-165.483780px;}
.wsc7{word-spacing:-119.358655px;}
.wsa8{word-spacing:-110.270609px;}
.wsdb{word-spacing:-106.860000px;}
.wsc6{word-spacing:-100.800000px;}
.wsdf{word-spacing:-91.262023px;}
.wsd7{word-spacing:-91.157962px;}
.wsc5{word-spacing:-89.400000px;}
.wsa7{word-spacing:-82.428000px;}
.wsde{word-spacing:-78.600000px;}
.wsad{word-spacing:-62.367586px;}
.wsc2{word-spacing:-48.600000px;}
.wsc1{word-spacing:-45.600000px;}
.wse3{word-spacing:-19.494206px;}
.wsc8{word-spacing:-17.343600px;}
.ws1{word-spacing:-13.986000px;}
.wsf5{word-spacing:-13.440000px;}
.ws56{word-spacing:-13.332000px;}
.ws10a{word-spacing:-13.320000px;}
.ws2c{word-spacing:-12.900000px;}
.ws5{word-spacing:-12.720000px;}
.ws172{word-spacing:-12.258000px;}
.ws144{word-spacing:-11.664000px;}
.ws120{word-spacing:-11.502000px;}
.ws11e{word-spacing:-11.448000px;}
.ws199{word-spacing:-11.286000px;}
.ws9d{word-spacing:-11.172000px;}
.ws173{word-spacing:-10.638000px;}
.ws145{word-spacing:-10.044000px;}
.ws121{word-spacing:-9.882000px;}
.ws11f{word-spacing:-9.828000px;}
.ws9{word-spacing:-9.810000px;}
.ws6{word-spacing:-9.696000px;}
.ws198{word-spacing:-9.666000px;}
.ws96{word-spacing:-9.408000px;}
.ws3{word-spacing:-9.360000px;}
.ws7{word-spacing:-8.820000px;}
.ws9c{word-spacing:-8.736000px;}
.ws8{word-spacing:-8.232000px;}
.ws197{word-spacing:-7.441200px;}
.ws2{word-spacing:-6.879600px;}
.wse4{word-spacing:-4.230000px;}
.ws4{word-spacing:-2.666400px;}
.wsd5{word-spacing:-2.400000px;}
.wsa9{word-spacing:-2.324700px;}
.ws177{word-spacing:-0.810000px;}
.wsf6{word-spacing:-0.720000px;}
.ws57{word-spacing:-0.450000px;}
.wsd3{word-spacing:-0.240000px;}
.ws14e{word-spacing:-0.216000px;}
.ws3f{word-spacing:-0.180000px;}
.ws137{word-spacing:-0.054000px;}
.ws97{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws1a6{word-spacing:0.162000px;}
.wsd6{word-spacing:0.900000px;}
.wsd4{word-spacing:1.020000px;}
.ws70{word-spacing:2.160000px;}
.ws158{word-spacing:2.808000px;}
.ws157{word-spacing:3.240000px;}
.ws116{word-spacing:4.200000px;}
.ws160{word-spacing:4.428000px;}
.ws4b{word-spacing:4.560000px;}
.ws149{word-spacing:4.752000px;}
.ws15a{word-spacing:4.806000px;}
.ws170{word-spacing:4.968000px;}
.ws17e{word-spacing:5.022000px;}
.wse7{word-spacing:5.040000px;}
.ws127{word-spacing:5.076000px;}
.ws10b{word-spacing:5.100000px;}
.ws15f{word-spacing:5.184000px;}
.ws26{word-spacing:5.424000px;}
.ws179{word-spacing:5.454000px;}
.ws4c{word-spacing:5.460000px;}
.ws113{word-spacing:5.580000px;}
.ws159{word-spacing:5.616000px;}
.ws163{word-spacing:5.778000px;}
.ws44{word-spacing:5.820000px;}
.ws17d{word-spacing:5.832000px;}
.ws17c{word-spacing:6.048000px;}
.ws114{word-spacing:6.060000px;}
.ws2e{word-spacing:6.180000px;}
.ws181{word-spacing:6.264000px;}
.ws126{word-spacing:6.318000px;}
.ws52{word-spacing:6.360000px;}
.ws178{word-spacing:6.372000px;}
.ws5e{word-spacing:6.420000px;}
.wse1{word-spacing:6.480000px;}
.ws138{word-spacing:6.588000px;}
.ws25{word-spacing:6.594000px;}
.wsf2{word-spacing:6.600000px;}
.wsb{word-spacing:6.615000px;}
.ws189{word-spacing:6.642000px;}
.ws2a{word-spacing:6.660000px;}
.ws100{word-spacing:6.720000px;}
.ws140{word-spacing:6.750000px;}
.wsb6{word-spacing:6.780000px;}
.ws143{word-spacing:6.804000px;}
.ws9b{word-spacing:6.816000px;}
.ws115{word-spacing:6.840000px;}
.ws22{word-spacing:6.900000px;}
.wsa1{word-spacing:6.960000px;}
.ws19f{word-spacing:6.966000px;}
.ws78{word-spacing:7.020000px;}
.wsc{word-spacing:7.065000px;}
.ws12{word-spacing:7.074000px;}
.ws86{word-spacing:7.080000px;}
.ws19c{word-spacing:7.128000px;}
.ws7c{word-spacing:7.140000px;}
.ws12b{word-spacing:7.182000px;}
.ws62{word-spacing:7.200000px;}
.ws12e{word-spacing:7.236000px;}
.ws35{word-spacing:7.260000px;}
.ws180{word-spacing:7.290000px;}
.ws8d{word-spacing:7.320000px;}
.ws17f{word-spacing:7.344000px;}
.wsbe{word-spacing:7.380000px;}
.ws9a{word-spacing:7.392000px;}
.ws7e{word-spacing:7.440000px;}
.ws184{word-spacing:7.452000px;}
.ws3c{word-spacing:7.500000px;}
.ws11c{word-spacing:7.506000px;}
.ws27{word-spacing:7.536000px;}
.ws1a{word-spacing:7.560000px;}
.ws128{word-spacing:7.614000px;}
.ws23{word-spacing:7.620000px;}
.ws16b{word-spacing:7.722000px;}
.wsf0{word-spacing:7.740000px;}
.ws192{word-spacing:7.776000px;}
.ws5a{word-spacing:7.800000px;}
.ws146{word-spacing:7.830000px;}
.wsb2{word-spacing:7.860000px;}
.ws13f{word-spacing:7.884000px;}
.ws107{word-spacing:7.920000px;}
.ws142{word-spacing:7.938000px;}
.ws8e{word-spacing:7.980000px;}
.ws17a{word-spacing:7.992000px;}
.ws55{word-spacing:8.040000px;}
.ws18e{word-spacing:8.046000px;}
.ws14a{word-spacing:8.100000px;}
.ws2b{word-spacing:8.160000px;}
.ws18f{word-spacing:8.208000px;}
.ws10c{word-spacing:8.220000px;}
.wsfb{word-spacing:8.280000px;}
.ws124{word-spacing:8.316000px;}
.ws85{word-spacing:8.340000px;}
.ws11b{word-spacing:8.370000px;}
.ws8f{word-spacing:8.400000px;}
.ws105{word-spacing:8.460000px;}
.wsf{word-spacing:8.478000px;}
.ws29{word-spacing:8.484000px;}
.wsf3{word-spacing:8.520000px;}
.ws122{word-spacing:8.532000px;}
.ws79{word-spacing:8.580000px;}
.ws16d{word-spacing:8.586000px;}
.wsa3{word-spacing:8.640000px;}
.ws18{word-spacing:8.694000px;}
.ws67{word-spacing:8.760000px;}
.ws98{word-spacing:8.778000px;}
.ws129{word-spacing:8.802000px;}
.ws31{word-spacing:8.820000px;}
.ws51{word-spacing:8.880000px;}
.ws190{word-spacing:8.910000px;}
.wsab{word-spacing:8.940000px;}
.ws99{word-spacing:8.949000px;}
.ws10f{word-spacing:9.000000px;}
.ws193{word-spacing:9.018000px;}
.ws48{word-spacing:9.060000px;}
.ws191{word-spacing:9.072000px;}
.ws118{word-spacing:9.120000px;}
.ws19{word-spacing:9.180000px;}
.wsd2{word-spacing:9.261000px;}
.ws32{word-spacing:9.300000px;}
.ws106{word-spacing:9.360000px;}
.ws150{word-spacing:9.396000px;}
.ws43{word-spacing:9.420000px;}
.ws18c{word-spacing:9.450000px;}
.ws6a{word-spacing:9.480000px;}
.ws18d{word-spacing:9.504000px;}
.ws168{word-spacing:9.558000px;}
.wsa{word-spacing:9.600000px;}
.ws21{word-spacing:9.660000px;}
.ws5d{word-spacing:9.720000px;}
.wsb1{word-spacing:9.780000px;}
.ws74{word-spacing:9.840000px;}
.ws123{word-spacing:9.882000px;}
.ws66{word-spacing:9.900000px;}
.ws183{word-spacing:9.936000px;}
.ws87{word-spacing:9.960000px;}
.ws34{word-spacing:10.020000px;}
.ws16c{word-spacing:10.044000px;}
.ws42{word-spacing:10.080000px;}
.ws131{word-spacing:10.098000px;}
.ws6e{word-spacing:10.140000px;}
.ws12f{word-spacing:10.152000px;}
.ws24{word-spacing:10.200000px;}
.ws17b{word-spacing:10.206000px;}
.ws19e{word-spacing:10.314000px;}
.wsa0{word-spacing:10.320000px;}
.ws112{word-spacing:10.380000px;}
.wsa6{word-spacing:10.440000px;}
.ws15e{word-spacing:10.476000px;}
.ws141{word-spacing:10.530000px;}
.ws50{word-spacing:10.560000px;}
.ws93{word-spacing:10.620000px;}
.ws14b{word-spacing:10.638000px;}
.ws36{word-spacing:10.680000px;}
.ws59{word-spacing:10.692000px;}
.wse{word-spacing:10.710000px;}
.ws2f{word-spacing:10.740000px;}
.wsbd{word-spacing:10.800000px;}
.ws148{word-spacing:10.962000px;}
.ws38{word-spacing:10.980000px;}
.ws9e{word-spacing:11.040000px;}
.ws196{word-spacing:11.070000px;}
.ws68{word-spacing:11.160000px;}
.ws49{word-spacing:11.220000px;}
.ws103{word-spacing:11.280000px;}
.ws28{word-spacing:11.298000px;}
.wsee{word-spacing:11.340000px;}
.wsaa{word-spacing:11.400000px;}
.ws108{word-spacing:11.460000px;}
.ws15{word-spacing:11.502000px;}
.wse2{word-spacing:11.520000px;}
.ws182{word-spacing:11.556000px;}
.ws73{word-spacing:11.580000px;}
.ws11d{word-spacing:11.610000px;}
.ws33{word-spacing:11.640000px;}
.ws1a1{word-spacing:11.664000px;}
.ws89{word-spacing:11.700000px;}
.ws156{word-spacing:11.718000px;}
.ws58{word-spacing:11.760000px;}
.ws119{word-spacing:11.820000px;}
.wsc0{word-spacing:11.880000px;}
.ws5f{word-spacing:11.940000px;}
.ws195{word-spacing:11.988000px;}
.wse9{word-spacing:12.000000px;}
.ws94{word-spacing:12.060000px;}
.ws14f{word-spacing:12.096000px;}
.ws37{word-spacing:12.120000px;}
.ws5c{word-spacing:12.180000px;}
.ws60{word-spacing:12.240000px;}
.ws15d{word-spacing:12.258000px;}
.ws5b{word-spacing:12.300000px;}
.ws1c{word-spacing:12.360000px;}
.ws101{word-spacing:12.420000px;}
.ws194{word-spacing:12.474000px;}
.wsce{word-spacing:12.480000px;}
.ws12a{word-spacing:12.528000px;}
.ws6f{word-spacing:12.540000px;}
.ws13a{word-spacing:12.582000px;}
.wsa5{word-spacing:12.600000px;}
.ws19d{word-spacing:12.636000px;}
.wsb3{word-spacing:12.660000px;}
.ws88{word-spacing:12.720000px;}
.ws147{word-spacing:12.744000px;}
.ws7b{word-spacing:12.780000px;}
.ws80{word-spacing:12.840000px;}
.wsa2{word-spacing:12.900000px;}
.ws1b{word-spacing:12.960000px;}
.ws54{word-spacing:13.020000px;}
.ws63{word-spacing:13.080000px;}
.ws2d{word-spacing:13.200000px;}
.ws75{word-spacing:13.260000px;}
.ws3b{word-spacing:13.320000px;}
.ws1a7{word-spacing:13.338000px;}
.ws11a{word-spacing:13.380000px;}
.ws13d{word-spacing:13.392000px;}
.ws82{word-spacing:13.440000px;}
.ws125{word-spacing:13.446000px;}
.ws7f{word-spacing:13.500000px;}
.ws18b{word-spacing:13.554000px;}
.wsfc{word-spacing:13.560000px;}
.ws6b{word-spacing:13.620000px;}
.ws162{word-spacing:13.662000px;}
.wsac{word-spacing:13.680000px;}
.ws8a{word-spacing:13.740000px;}
.wsd{word-spacing:13.944000px;}
.ws53{word-spacing:13.980000px;}
.ws1d{word-spacing:14.040000px;}
.ws16a{word-spacing:14.094000px;}
.wsfe{word-spacing:14.160000px;}
.ws133{word-spacing:14.202000px;}
.ws77{word-spacing:14.220000px;}
.ws13e{word-spacing:14.256000px;}
.wscd{word-spacing:14.280000px;}
.ws46{word-spacing:14.340000px;}
.ws1e{word-spacing:14.400000px;}
.ws8b{word-spacing:14.460000px;}
.ws13c{word-spacing:14.472000px;}
.ws110{word-spacing:14.520000px;}
.ws1a9{word-spacing:14.526000px;}
.ws6c{word-spacing:14.580000px;}
.ws39{word-spacing:14.760000px;}
.ws151{word-spacing:14.796000px;}
.ws72{word-spacing:14.820000px;}
.ws161{word-spacing:14.850000px;}
.wsf1{word-spacing:14.880000px;}
.ws3e{word-spacing:14.940000px;}
.wsbc{word-spacing:15.000000px;}
.ws71{word-spacing:15.120000px;}
.ws13{word-spacing:15.228000px;}
.wsb8{word-spacing:15.300000px;}
.wsea{word-spacing:15.360000px;}
.ws65{word-spacing:15.420000px;}
.wsb5{word-spacing:15.480000px;}
.ws12d{word-spacing:15.552000px;}
.ws81{word-spacing:15.600000px;}
.ws165{word-spacing:15.714000px;}
.ws104{word-spacing:15.720000px;}
.ws18a{word-spacing:15.768000px;}
.ws8c{word-spacing:15.840000px;}
.wsed{word-spacing:16.020000px;}
.ws152{word-spacing:16.038000px;}
.wsa4{word-spacing:16.080000px;}
.ws9f{word-spacing:16.200000px;}
.wsd0{word-spacing:16.260000px;}
.ws12c{word-spacing:16.308000px;}
.ws1a5{word-spacing:16.362000px;}
.ws6d{word-spacing:16.380000px;}
.ws169{word-spacing:16.416000px;}
.ws90{word-spacing:16.440000px;}
.ws132{word-spacing:16.524000px;}
.ws4d{word-spacing:16.560000px;}
.ws1a4{word-spacing:16.578000px;}
.ws91{word-spacing:16.620000px;}
.wsb4{word-spacing:16.680000px;}
.ws174{word-spacing:16.686000px;}
.ws1a0{word-spacing:16.794000px;}
.ws13b{word-spacing:16.848000px;}
.ws84{word-spacing:16.860000px;}
.ws45{word-spacing:16.980000px;}
.wsbf{word-spacing:17.040000px;}
.wsf8{word-spacing:17.100000px;}
.wsf7{word-spacing:17.160000px;}
.wse6{word-spacing:17.220000px;}
.wsd1{word-spacing:17.280000px;}
.wsba{word-spacing:17.340000px;}
.ws7a{word-spacing:17.400000px;}
.ws14{word-spacing:17.442000px;}
.ws3d{word-spacing:17.520000px;}
.wsef{word-spacing:17.580000px;}
.wse8{word-spacing:17.640000px;}
.ws4f{word-spacing:17.760000px;}
.ws134{word-spacing:17.766000px;}
.ws64{word-spacing:17.820000px;}
.ws111{word-spacing:17.940000px;}
.ws20{word-spacing:18.060000px;}
.wsb9{word-spacing:18.300000px;}
.ws164{word-spacing:18.306000px;}
.wsfd{word-spacing:18.420000px;}
.ws69{word-spacing:18.480000px;}
.wsfa{word-spacing:18.660000px;}
.wseb{word-spacing:18.720000px;}
.wscf{word-spacing:18.780000px;}
.ws92{word-spacing:18.900000px;}
.ws153{word-spacing:18.954000px;}
.ws136{word-spacing:19.170000px;}
.ws40{word-spacing:19.260000px;}
.ws130{word-spacing:19.278000px;}
.ws11{word-spacing:19.440000px;}
.ws41{word-spacing:19.560000px;}
.ws171{word-spacing:19.656000px;}
.ws19b{word-spacing:19.710000px;}
.wsf4{word-spacing:19.740000px;}
.ws188{word-spacing:19.764000px;}
.ws3a{word-spacing:19.800000px;}
.ws15c{word-spacing:19.818000px;}
.wsbb{word-spacing:20.040000px;}
.wsb7{word-spacing:20.100000px;}
.ws139{word-spacing:20.304000px;}
.ws7d{word-spacing:20.640000px;}
.ws117{word-spacing:20.760000px;}
.ws1a3{word-spacing:21.060000px;}
.ws109{word-spacing:21.300000px;}
.wscc{word-spacing:21.318753px;}
.ws61{word-spacing:21.480000px;}
.ws14d{word-spacing:21.492000px;}
.ws10{word-spacing:21.816000px;}
.ws154{word-spacing:22.086000px;}
.ws155{word-spacing:22.248000px;}
.ws135{word-spacing:22.302000px;}
.ws47{word-spacing:22.380000px;}
.ws19a{word-spacing:22.950000px;}
.ws187{word-spacing:23.004000px;}
.ws15b{word-spacing:23.112000px;}
.ws10e{word-spacing:23.160000px;}
.ws16f{word-spacing:23.328000px;}
.wsec{word-spacing:23.340000px;}
.ws1f{word-spacing:23.460000px;}
.ws4e{word-spacing:23.880000px;}
.wsb0{word-spacing:24.120000px;}
.ws1a2{word-spacing:24.516000px;}
.ws30{word-spacing:24.840000px;}
.ws14c{word-spacing:25.056000px;}
.ws76{word-spacing:25.860000px;}
.ws1a8{word-spacing:25.920000px;}
.ws17{word-spacing:25.974000px;}
.ws16e{word-spacing:27.162000px;}
.ws186{word-spacing:27.486000px;}
.ws4a{word-spacing:28.380000px;}
.ws102{word-spacing:30.300000px;}
.wsf9{word-spacing:30.720000px;}
.ws176{word-spacing:30.834000px;}
.ws185{word-spacing:32.022000px;}
.ws10d{word-spacing:34.800000px;}
.ws175{word-spacing:35.910000px;}
.ws83{word-spacing:38.880000px;}
.wscb{word-spacing:39.180000px;}
.ws167{word-spacing:39.528000px;}
.ws16{word-spacing:40.500000px;}
.wsff{word-spacing:42.660000px;}
.ws166{word-spacing:46.062000px;}
.wsca{word-spacing:64.926000px;}
.wsc4{word-spacing:111.732000px;}
.wsc3{word-spacing:162.732000px;}
.ws95{word-spacing:451.401600px;}
.wse0{word-spacing:593.946000px;}
.wse5{word-spacing:1002.456000px;}
._34{margin-left:-1116.600000px;}
._31{margin-left:-117.180000px;}
._33{margin-left:-107.400000px;}
._32{margin-left:-100.200000px;}
._43{margin-left:-48.168000px;}
._3b{margin-left:-27.972000px;}
._3d{margin-left:-19.332000px;}
._1{margin-left:-8.808015px;}
._3{margin-left:-7.019974px;}
._a{margin-left:-5.937015px;}
._2{margin-left:-4.140000px;}
._9{margin-left:-2.976015px;}
._0{margin-left:-1.919985px;}
._5{width:1.373985px;}
._8{width:2.525985px;}
._15{width:3.887971px;}
._d{width:5.247615px;}
._39{width:6.353985px;}
._4{width:7.379971px;}
._38{width:8.445600px;}
._14{width:9.593971px;}
._12{width:10.619985px;}
._e{width:11.802029px;}
._6{width:13.194000px;}
._7{width:15.144015px;}
._41{width:16.632556px;}
._10{width:17.903400px;}
._11{width:19.242000px;}
._f{width:20.406000px;}
._3c{width:22.672800px;}
._16{width:25.830000px;}
._42{width:27.220200px;}
._3f{width:32.618400px;}
._3e{width:33.755400px;}
._44{width:36.382800px;}
._2d{width:43.200000px;}
._40{width:45.682800px;}
._2a{width:51.000000px;}
._27{width:52.080000px;}
._20{width:54.893400px;}
._37{width:57.840000px;}
._3a{width:59.550000px;}
._b{width:60.823800px;}
._2c{width:87.138000px;}
._29{width:91.800000px;}
._13{width:131.698171px;}
._c{width:133.679400px;}
._19{width:151.037385px;}
._36{width:193.560000px;}
._28{width:201.450029px;}
._2f{width:205.272000px;}
._30{width:222.600000px;}
._2e{width:246.600000px;}
._2b{width:253.800000px;}
._26{width:260.141385px;}
._22{width:261.599400px;}
._1e{width:292.367400px;}
._1a{width:345.341400px;}
._21{width:350.285385px;}
._1c{width:354.317400px;}
._1b{width:357.917400px;}
._1f{width:361.901385px;}
._25{width:370.973400px;}
._1d{width:381.581400px;}
._24{width:401.261400px;}
._23{width:402.269385px;}
._18{width:457.148385px;}
._17{width:508.327785px;}
._35{width:1198.663800px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:25.125000px;}
.fsf{font-size:34.687200px;}
.fsc{font-size:35.100000px;}
.fsb{font-size:40.950000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs10{font-size:78.540000px;}
.fsa{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y14c{bottom:15.600750px;}
.y194{bottom:16.200900px;}
.y19b{bottom:16.500000px;}
.y14e{bottom:18.450750px;}
.y192{bottom:19.050900px;}
.y148{bottom:19.500750px;}
.y1aa{bottom:19.949700px;}
.y193{bottom:20.100900px;}
.y1a5{bottom:20.999700px;}
.y191{bottom:29.100900px;}
.y18b{bottom:55.500900px;}
.y18e{bottom:56.550900px;}
.y129{bottom:66.525000px;}
.y5{bottom:66.525004px;}
.y35{bottom:67.597501px;}
.y34{bottom:84.097501px;}
.ydc{bottom:85.275000px;}
.y5c{bottom:85.275600px;}
.y20b{bottom:87.225450px;}
.y179{bottom:88.352100px;}
.y22d{bottom:90.824400px;}
.y128{bottom:91.238700px;}
.y1eb{bottom:93.712500px;}
.y2cf{bottom:94.051200px;}
.y1cd{bottom:94.275000px;}
.y4{bottom:97.125005px;}
.y5b{bottom:97.275600px;}
.y262{bottom:97.925850px;}
.y1b6{bottom:100.143600px;}
.y1a4{bottom:103.069500px;}
.y127{bottom:104.738700px;}
.ydb{bottom:104.775000px;}
.y23a{bottom:104.850600px;}
.yaa{bottom:104.926200px;}
.y291{bottom:106.388400px;}
.y20a{bottom:106.725450px;}
.y1a9{bottom:107.269200px;}
.y1cc{bottom:107.775000px;}
.y178{bottom:107.852100px;}
.y5a{bottom:109.275600px;}
.y1a6{bottom:109.519200px;}
.y22c{bottom:110.324400px;}
.y2ce{bottom:110.551200px;}
.y13c{bottom:110.659800px;}
.y1ea{bottom:113.212500px;}
.y126{bottom:118.238700px;}
.y1b5{bottom:119.643600px;}
.y1a8{bottom:120.168170px;}
.y1ab{bottom:120.319200px;}
.y56{bottom:121.650600px;}
.y290{bottom:122.888400px;}
.y1a3{bottom:124.069200px;}
.yda{bottom:124.275000px;}
.y239{bottom:124.350600px;}
.ya9{bottom:124.426200px;}
.y261{bottom:125.490900px;}
.y209{bottom:126.225450px;}
.y2cd{bottom:127.051200px;}
.y177{bottom:127.352100px;}
.y22b{bottom:129.824400px;}
.y13b{bottom:130.159800px;}
.y1ac{bottom:130.817141px;}
.y125{bottom:131.738700px;}
.y58{bottom:132.525600px;}
.y1e9{bottom:132.712500px;}
.ydd{bottom:134.775000px;}
.y1b4{bottom:139.143600px;}
.y21{bottom:139.264499px;}
.y28f{bottom:139.388400px;}
.y1a7{bottom:139.671049px;}
.y2cc{bottom:143.551200px;}
.yd9{bottom:143.775000px;}
.y238{bottom:143.850600px;}
.ya8{bottom:143.926200px;}
.y124{bottom:145.238700px;}
.y208{bottom:145.725450px;}
.y57{bottom:146.025600px;}
.y176{bottom:146.852100px;}
.y22a{bottom:149.324400px;}
.y13a{bottom:149.659800px;}
.y1e8{bottom:152.212500px;}
.y28e{bottom:155.888400px;}
.y1b3{bottom:158.643600px;}
.y123{bottom:158.738700px;}
.y2cb{bottom:160.051200px;}
.y1a2{bottom:160.200600px;}
.yd8{bottom:163.275000px;}
.y237{bottom:163.350600px;}
.ya7{bottom:163.426200px;}
.y207{bottom:165.225450px;}
.y175{bottom:166.352100px;}
.y229{bottom:168.824400px;}
.y139{bottom:169.159800px;}
.y1e7{bottom:171.712500px;}
.y122{bottom:172.238700px;}
.y28d{bottom:172.388400px;}
.y2ca{bottom:176.551200px;}
.y260{bottom:177.262200px;}
.y1b2{bottom:178.143600px;}
.y1a1{bottom:179.700600px;}
.yd7{bottom:182.775000px;}
.y236{bottom:182.850600px;}
.ya6{bottom:182.926200px;}
.y206{bottom:184.725450px;}
.y121{bottom:185.738700px;}
.y174{bottom:185.852100px;}
.y228{bottom:188.324400px;}
.y28c{bottom:188.888400px;}
.y1e6{bottom:191.212500px;}
.y2c9{bottom:193.051200px;}
.y25f{bottom:194.327250px;}
.y18{bottom:196.933500px;}
.y1b1{bottom:197.643600px;}
.y1a0{bottom:199.200600px;}
.y120{bottom:199.238700px;}
.yd6{bottom:202.275000px;}
.y235{bottom:202.350600px;}
.ya5{bottom:202.426200px;}
.y205{bottom:204.225450px;}
.y173{bottom:205.352100px;}
.y28b{bottom:205.388400px;}
.y55{bottom:205.426200px;}
.y227{bottom:207.824400px;}
.y138{bottom:208.121250px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y2c8{bottom:209.551200px;}
.y25e{bottom:211.392150px;}
.y11f{bottom:212.738700px;}
.y1b0{bottom:217.143600px;}
.y19f{bottom:218.700600px;}
.y1e5{bottom:221.212500px;}
.yd5{bottom:221.775000px;}
.y234{bottom:221.850600px;}
.y28a{bottom:221.888400px;}
.ya4{bottom:221.926200px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y204{bottom:223.725450px;}
.y172{bottom:224.852100px;}
.y54{bottom:224.926200px;}
.y2c7{bottom:226.051200px;}
.y11e{bottom:226.238700px;}
.y226{bottom:227.324400px;}
.y137{bottom:227.621250px;}
.y25d{bottom:228.457050px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1af{bottom:236.643600px;}
.y19e{bottom:238.200600px;}
.y289{bottom:238.388400px;}
.y11d{bottom:239.738700px;}
.yd4{bottom:241.275000px;}
.y233{bottom:241.350600px;}
.ya3{bottom:241.426200px;}
.y2c6{bottom:242.551200px;}
.y203{bottom:243.225450px;}
.y171{bottom:244.352100px;}
.y53{bottom:244.426200px;}
.y225{bottom:246.824400px;}
.y136{bottom:247.121250px;}
.y11c{bottom:253.238700px;}
.y288{bottom:254.888400px;}
.y25c{bottom:256.022100px;}
.y1ae{bottom:256.143600px;}
.y2c5{bottom:259.051200px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yd3{bottom:260.775000px;}
.y19a{bottom:260.832000px;}
.y232{bottom:260.850600px;}
.ya2{bottom:260.926200px;}
.y170{bottom:263.852100px;}
.y52{bottom:263.926200px;}
.y19d{bottom:265.482000px;}
.y224{bottom:266.324400px;}
.y135{bottom:266.621250px;}
.y11b{bottom:266.738700px;}
.y287{bottom:271.388400px;}
.y1e4{bottom:272.468100px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y202{bottom:273.225450px;}
.y2c4{bottom:275.551200px;}
.y199{bottom:277.332000px;}
.y11a{bottom:280.238700px;}
.yd2{bottom:280.275000px;}
.y231{bottom:280.350600px;}
.ya1{bottom:280.426200px;}
.y16f{bottom:283.352100px;}
.y51{bottom:283.426200px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y223{bottom:285.824400px;}
.y134{bottom:286.121250px;}
.y1ad{bottom:286.143600px;}
.y33{bottom:286.426501px;}
.y19c{bottom:286.932000px;}
.y286{bottom:287.888400px;}
.y1e3{bottom:291.968100px;}
.y2c3{bottom:292.051200px;}
.y119{bottom:293.738700px;}
.yd1{bottom:299.775000px;}
.ya0{bottom:299.926200px;}
.y16e{bottom:302.852100px;}
.y50{bottom:302.926200px;}
.y285{bottom:304.388400px;}
.y222{bottom:305.324400px;}
.y133{bottom:305.621250px;}
.y118{bottom:307.238700px;}
.y25b{bottom:307.793400px;}
.y2c2{bottom:308.551200px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y230{bottom:310.350600px;}
.y1e2{bottom:311.468100px;}
.y198{bottom:313.463400px;}
.yd0{bottom:319.275000px;}
.y9f{bottom:319.426200px;}
.y117{bottom:320.738700px;}
.y284{bottom:320.888400px;}
.y16d{bottom:322.352100px;}
.y4f{bottom:322.426200px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y201{bottom:323.175900px;}
.y221{bottom:324.824400px;}
.y2c1{bottom:325.051200px;}
.y132{bottom:325.121250px;}
.y1e1{bottom:330.968100px;}
.y197{bottom:332.963400px;}
.y116{bottom:334.238700px;}
.y283{bottom:337.388400px;}
.y25a{bottom:338.358450px;}
.ycf{bottom:338.775000px;}
.y9e{bottom:338.926200px;}
.y2c0{bottom:341.551200px;}
.y16c{bottom:341.852100px;}
.y4e{bottom:341.926200px;}
.y200{bottom:342.675900px;}
.y220{bottom:344.324250px;}
.y131{bottom:344.621250px;}
.y115{bottom:347.738700px;}
.yf{bottom:348.133500px;}
.y1e0{bottom:350.468100px;}
.y32{bottom:350.776501px;}
.y196{bottom:352.463400px;}
.y282{bottom:353.888400px;}
.y2bf{bottom:358.051200px;}
.yce{bottom:358.275000px;}
.y9d{bottom:358.426200px;}
.y114{bottom:361.238700px;}
.y16b{bottom:361.352100px;}
.y4d{bottom:361.426200px;}
.y1ff{bottom:362.175750px;}
.y21f{bottom:363.824250px;}
.y130{bottom:364.121250px;}
.y1df{bottom:369.968100px;}
.y281{bottom:370.388400px;}
.y195{bottom:371.963400px;}
.y2be{bottom:374.551200px;}
.y113{bottom:374.738700px;}
.ycd{bottom:377.775000px;}
.y9c{bottom:377.926200px;}
.y4c{bottom:380.926200px;}
.y1fe{bottom:381.675750px;}
.y21e{bottom:383.324250px;}
.y12f{bottom:383.621250px;}
.ye{bottom:386.785499px;}
.y280{bottom:386.888400px;}
.y112{bottom:388.238700px;}
.y1de{bottom:389.468100px;}
.y2bd{bottom:391.051200px;}
.y16a{bottom:391.352100px;}
.y259{bottom:396.130350px;}
.ycc{bottom:397.275000px;}
.y9b{bottom:397.426200px;}
.y18a{bottom:397.462500px;}
.y4b{bottom:400.426200px;}
.y1fd{bottom:401.175750px;}
.y111{bottom:401.738700px;}
.y21d{bottom:402.824250px;}
.y187{bottom:403.013400px;}
.y12e{bottom:403.121250px;}
.y27f{bottom:403.388400px;}
.y2bc{bottom:407.551200px;}
.y1ba{bottom:407.730600px;}
.yd{bottom:408.044999px;}
.y1dd{bottom:408.968100px;}
.y190{bottom:413.659762px;}
.y189{bottom:413.662370px;}
.y18d{bottom:413.813400px;}
.y31{bottom:415.126501px;}
.y110{bottom:415.238700px;}
.y258{bottom:416.195250px;}
.y18c{bottom:416.513400px;}
.ycb{bottom:416.775000px;}
.y9a{bottom:416.926200px;}
.y186{bottom:417.563400px;}
.y27e{bottom:419.888400px;}
.y4a{bottom:419.926200px;}
.y1fc{bottom:420.675750px;}
.y1b9{bottom:421.230600px;}
.y21c{bottom:422.324250px;}
.y12d{bottom:422.621250px;}
.y2bb{bottom:424.051200px;}
.y18f{bottom:426.563400px;}
.y1dc{bottom:428.468100px;}
.y10f{bottom:428.738700px;}
.y184{bottom:430.463400px;}
.y188{bottom:433.165249px;}
.y257{bottom:436.260300px;}
.yca{bottom:436.275000px;}
.y27d{bottom:436.388400px;}
.y99{bottom:436.426200px;}
.y169{bottom:439.427700px;}
.y1fb{bottom:440.175750px;}
.y2ba{bottom:440.551200px;}
.y21b{bottom:441.824250px;}
.y12c{bottom:442.121250px;}
.y10e{bottom:442.238700px;}
.y1db{bottom:447.968100px;}
.y49{bottom:449.926200px;}
.y27c{bottom:452.888400px;}
.y185{bottom:454.013400px;}
.y10d{bottom:455.738700px;}
.yc9{bottom:455.775000px;}
.y98{bottom:455.926200px;}
.y2b9{bottom:457.051200px;}
.y168{bottom:458.927700px;}
.y1fa{bottom:459.675750px;}
.y21a{bottom:461.324250px;}
.y12b{bottom:461.621250px;}
.y256{bottom:466.825200px;}
.y1da{bottom:467.468100px;}
.y10c{bottom:469.238700px;}
.y27b{bottom:469.388400px;}
.y2b8{bottom:473.551200px;}
.yc8{bottom:475.275000px;}
.y97{bottom:475.426200px;}
.y167{bottom:478.427700px;}
.y1f9{bottom:479.175750px;}
.y219{bottom:480.824250px;}
.y12a{bottom:481.121250px;}
.y30{bottom:482.407500px;}
.y10b{bottom:482.738700px;}
.y27a{bottom:485.888400px;}
.y1d9{bottom:486.968100px;}
.y2b7{bottom:490.051200px;}
.y1cb{bottom:491.926200px;}
.y183{bottom:493.294800px;}
.yc7{bottom:494.775000px;}
.y96{bottom:494.926200px;}
.y10a{bottom:496.238700px;}
.y166{bottom:497.927700px;}
.y76{bottom:498.301350px;}
.y1f8{bottom:498.675750px;}
.y218{bottom:500.324250px;}
.yc{bottom:502.864502px;}
.y1d8{bottom:506.468100px;}
.y2b6{bottom:506.551200px;}
.y109{bottom:509.738700px;}
.y1ca{bottom:511.426200px;}
.y75{bottom:511.801350px;}
.y279{bottom:512.888400px;}
.yc6{bottom:514.275000px;}
.y95{bottom:514.426200px;}
.y165{bottom:517.427700px;}
.y1f7{bottom:518.175750px;}
.y255{bottom:518.596650px;}
.y217{bottom:519.824250px;}
.yb{bottom:520.864502px;}
.y2b5{bottom:523.051200px;}
.y108{bottom:523.238700px;}
.y74{bottom:525.301350px;}
.y1d7{bottom:525.968100px;}
.y182{bottom:530.794800px;}
.y1c9{bottom:530.926200px;}
.yc5{bottom:533.775000px;}
.y94{bottom:533.926200px;}
.y107{bottom:536.738700px;}
.y164{bottom:536.927700px;}
.y1f6{bottom:537.675750px;}
.y254{bottom:538.661550px;}
.y73{bottom:538.801350px;}
.ya{bottom:538.864499px;}
.y216{bottom:539.324250px;}
.y2b4{bottom:539.551200px;}
.y2f{bottom:543.826501px;}
.y145{bottom:544.832250px;}
.y1d6{bottom:545.468100px;}
.y106{bottom:550.238700px;}
.y181{bottom:550.294800px;}
.y1c8{bottom:550.426200px;}
.y72{bottom:552.301350px;}
.yc4{bottom:553.275000px;}
.y93{bottom:553.426200px;}
.y2b3{bottom:556.051200px;}
.y163{bottom:556.427700px;}
.y9{bottom:556.864499px;}
.y1f5{bottom:557.175750px;}
.y144{bottom:558.332250px;}
.y253{bottom:558.726450px;}
.y215{bottom:558.824250px;}
.y105{bottom:563.738700px;}
.y278{bottom:564.094800px;}
.y1d5{bottom:564.968100px;}
.y71{bottom:565.801350px;}
.y180{bottom:569.794800px;}
.y1c7{bottom:569.926200px;}
.y2b2{bottom:572.551200px;}
.yc3{bottom:572.775000px;}
.y92{bottom:572.926200px;}
.y162{bottom:575.927700px;}
.y1f4{bottom:576.675750px;}
.y104{bottom:577.238700px;}
.y214{bottom:578.324250px;}
.y252{bottom:578.791500px;}
.y70{bottom:579.301350px;}
.y277{bottom:580.594800px;}
.y1d4{bottom:584.468100px;}
.y2b1{bottom:589.051200px;}
.y17f{bottom:589.294800px;}
.y1c6{bottom:589.426200px;}
.y103{bottom:590.738700px;}
.yc2{bottom:592.275000px;}
.y91{bottom:592.426200px;}
.y6f{bottom:592.801350px;}
.y161{bottom:595.427700px;}
.y1f3{bottom:596.175750px;}
.y213{bottom:597.824250px;}
.y251{bottom:598.856400px;}
.y1d3{bottom:603.968100px;}
.y102{bottom:604.238700px;}
.y2b0{bottom:605.551200px;}
.y6e{bottom:606.301350px;}
.y276{bottom:607.594800px;}
.y17e{bottom:608.794800px;}
.y1c5{bottom:608.926200px;}
.y2e{bottom:611.107500px;}
.yc1{bottom:611.775000px;}
.y90{bottom:611.926200px;}
.y1f2{bottom:615.675750px;}
.y212{bottom:617.324250px;}
.y101{bottom:617.738700px;}
.y250{bottom:618.921450px;}
.y6d{bottom:619.801350px;}
.y2af{bottom:622.051200px;}
.y1d2{bottom:623.468100px;}
.y160{bottom:625.427700px;}
.y17d{bottom:628.294800px;}
.y1c4{bottom:628.426200px;}
.y100{bottom:631.238700px;}
.yc0{bottom:631.275000px;}
.y8f{bottom:631.426200px;}
.y6c{bottom:633.301350px;}
.y1f1{bottom:635.175750px;}
.y211{bottom:636.824250px;}
.y2ae{bottom:638.551200px;}
.y24f{bottom:638.986350px;}
.y1d1{bottom:642.968100px;}
.yff{bottom:644.738700px;}
.y2d{bottom:645.457501px;}
.y8{bottom:645.510000px;}
.y6b{bottom:646.801350px;}
.y17c{bottom:647.794800px;}
.y1c3{bottom:647.926200px;}
.ybf{bottom:650.775000px;}
.y8e{bottom:650.926200px;}
.y1f0{bottom:654.675750px;}
.y2ad{bottom:655.051200px;}
.yfe{bottom:658.238700px;}
.y275{bottom:658.801200px;}
.y24e{bottom:659.051400px;}
.y2c{bottom:660.457501px;}
.y1d0{bottom:662.468100px;}
.y7{bottom:666.771000px;}
.y210{bottom:666.824250px;}
.y17b{bottom:667.294800px;}
.y1c2{bottom:667.426200px;}
.ybe{bottom:670.275000px;}
.y8d{bottom:670.426200px;}
.y6a{bottom:671.113800px;}
.y2ac{bottom:671.551200px;}
.yfd{bottom:671.738700px;}
.y15f{bottom:673.503300px;}
.y1ef{bottom:674.175750px;}
.y274{bottom:675.301200px;}
.y2b{bottom:675.457500px;}
.y24d{bottom:679.116300px;}
.y1cf{bottom:681.968100px;}
.y69{bottom:684.613800px;}
.yfc{bottom:685.238700px;}
.y1c1{bottom:686.926200px;}
.y2ab{bottom:688.051200px;}
.ybd{bottom:689.775000px;}
.y8c{bottom:689.926200px;}
.y15e{bottom:693.003300px;}
.y1ee{bottom:693.675750px;}
.y68{bottom:698.113800px;}
.yfb{bottom:698.738700px;}
.y24c{bottom:699.181200px;}
.y273{bottom:702.301200px;}
.y2aa{bottom:704.551200px;}
.y1c0{bottom:706.426200px;}
.ybc{bottom:709.275000px;}
.y8b{bottom:709.426200px;}
.y67{bottom:711.613800px;}
.y1ce{bottom:711.968100px;}
.yfa{bottom:712.238700px;}
.y15d{bottom:712.503300px;}
.y17a{bottom:715.294800px;}
.y20f{bottom:716.774700px;}
.y48{bottom:716.926200px;}
.y24b{bottom:719.246250px;}
.y2a9{bottom:721.051200px;}
.yf9{bottom:725.738700px;}
.y1bf{bottom:725.926200px;}
.y6{bottom:726.298500px;}
.ybb{bottom:728.775000px;}
.y8a{bottom:728.926200px;}
.y47{bottom:731.926200px;}
.y15c{bottom:732.003300px;}
.y66{bottom:735.926400px;}
.y20e{bottom:736.274700px;}
.y2a8{bottom:737.551200px;}
.yf8{bottom:739.238700px;}
.y24a{bottom:739.311150px;}
.y20d{bottom:739.876200px;}
.y1be{bottom:745.426200px;}
.y46{bottom:746.926200px;}
.yba{bottom:748.275000px;}
.y89{bottom:748.426200px;}
.y65{bottom:749.426400px;}
.y15b{bottom:751.503300px;}
.y3{bottom:752.599495px;}
.yf7{bottom:752.738700px;}
.y272{bottom:753.301200px;}
.y20c{bottom:753.376200px;}
.y2a7{bottom:754.051200px;}
.y2a{bottom:756.817498px;}
.y249{bottom:759.376200px;}
.y1ed{bottom:760.036200px;}
.y45{bottom:761.926200px;}
.y64{bottom:762.926400px;}
.y1bd{bottom:764.926200px;}
.yf6{bottom:766.238700px;}
.yb9{bottom:767.775000px;}
.y88{bottom:767.926200px;}
.y2a6{bottom:770.551200px;}
.y15a{bottom:771.003300px;}
.y1ec{bottom:773.536200px;}
.y63{bottom:776.426400px;}
.y44{bottom:776.926200px;}
.y248{bottom:779.441100px;}
.yf5{bottom:779.738700px;}
.y271{bottom:780.301200px;}
.y1bc{bottom:784.426200px;}
.y29{bottom:786.817498px;}
.y2a5{bottom:787.051200px;}
.yb8{bottom:787.275000px;}
.y87{bottom:787.426200px;}
.y22f{bottom:788.656200px;}
.y62{bottom:789.926400px;}
.y159{bottom:790.503300px;}
.y43{bottom:791.926200px;}
.yf4{bottom:793.238700px;}
.y247{bottom:799.506000px;}
.y22e{bottom:802.156200px;}
.y61{bottom:803.426400px;}
.y2a4{bottom:803.551200px;}
.y28{bottom:804.817498px;}
.yf3{bottom:806.738700px;}
.yb7{bottom:806.775000px;}
.y42{bottom:806.926200px;}
.y158{bottom:810.003300px;}
.y1b8{bottom:813.316200px;}
.y1bb{bottom:814.426200px;}
.y246{bottom:819.571050px;}
.y2a3{bottom:820.051200px;}
.yf2{bottom:820.238700px;}
.y41{bottom:821.926200px;}
.y27{bottom:822.817498px;}
.yb6{bottom:826.275000px;}
.y86{bottom:826.426200px;}
.y1b7{bottom:826.816200px;}
.y60{bottom:827.738700px;}
.y157{bottom:829.503300px;}
.y270{bottom:831.301200px;}
.yf1{bottom:833.738700px;}
.y2a2{bottom:836.551200px;}
.y40{bottom:836.926200px;}
.y245{bottom:839.635950px;}
.y5f{bottom:841.238700px;}
.yb5{bottom:845.775000px;}
.y85{bottom:845.926200px;}
.yf0{bottom:847.238700px;}
.y26f{bottom:847.801200px;}
.y156{bottom:849.003300px;}
.y3f{bottom:851.926200px;}
.y2a1{bottom:853.051200px;}
.y5e{bottom:854.738700px;}
.y244{bottom:859.701000px;}
.yef{bottom:860.738700px;}
.y26e{bottom:864.301200px;}
.yb4{bottom:865.275000px;}
.y84{bottom:865.426200px;}
.y3e{bottom:866.926200px;}
.y5d{bottom:868.238700px;}
.y155{bottom:868.503300px;}
.y2a0{bottom:869.551200px;}
.yee{bottom:874.238700px;}
.y26{bottom:875.289002px;}
.y2{bottom:879.369000px;}
.y243{bottom:879.765900px;}
.y26d{bottom:880.801200px;}
.yb3{bottom:884.775000px;}
.y83{bottom:884.926200px;}
.y29f{bottom:886.051200px;}
.yed{bottom:887.738700px;}
.y154{bottom:888.003300px;}
.y26c{bottom:897.301200px;}
.y242{bottom:899.830950px;}
.yec{bottom:901.238700px;}
.y29e{bottom:902.551200px;}
.yb2{bottom:904.275000px;}
.y82{bottom:904.426200px;}
.y153{bottom:907.503300px;}
.y3d{bottom:913.801200px;}
.yeb{bottom:914.738700px;}
.y29d{bottom:919.051200px;}
.y241{bottom:919.895850px;}
.yb1{bottom:923.775000px;}
.y81{bottom:923.926200px;}
.y152{bottom:927.003300px;}
.yea{bottom:928.238700px;}
.y26b{bottom:930.301200px;}
.y3c{bottom:933.256200px;}
.y29c{bottom:935.551200px;}
.y25{bottom:938.940000px;}
.y240{bottom:939.960900px;}
.ye9{bottom:941.738700px;}
.yb0{bottom:943.275000px;}
.y80{bottom:943.426200px;}
.y29b{bottom:952.051200px;}
.ye8{bottom:955.238700px;}
.y3b{bottom:955.801200px;}
.y23f{bottom:960.025800px;}
.yaf{bottom:962.775000px;}
.y7f{bottom:962.926200px;}
.y147{bottom:965.964000px;}
.y1{bottom:966.726000px;}
.y29a{bottom:968.551200px;}
.ye7{bottom:968.738700px;}
.y24{bottom:970.440000px;}
.y14f{bottom:970.914750px;}
.y14a{bottom:970.915780px;}
.y26a{bottom:972.301200px;}
.y149{bottom:981.564750px;}
.y150{bottom:981.714750px;}
.ye6{bottom:982.238700px;}
.yae{bottom:982.275000px;}
.y7e{bottom:982.426200px;}
.y14d{bottom:984.414750px;}
.y299{bottom:985.051200px;}
.y146{bottom:985.464750px;}
.y269{bottom:988.801200px;}
.y143{bottom:988.988700px;}
.y23e{bottom:990.590850px;}
.y151{bottom:994.467359px;}
.y3a{bottom:994.801200px;}
.ye5{bottom:995.738700px;}
.y14b{bottom:1001.067628px;}
.y298{bottom:1001.551200px;}
.yad{bottom:1001.775000px;}
.y7d{bottom:1001.926200px;}
.y268{bottom:1005.301200px;}
.y142{bottom:1006.988700px;}
.ye4{bottom:1009.238700px;}
.y297{bottom:1018.051200px;}
.y39{bottom:1018.801200px;}
.y141{bottom:1020.488700px;}
.y7c{bottom:1021.426200px;}
.y267{bottom:1021.801200px;}
.ye3{bottom:1022.738700px;}
.yac{bottom:1031.775000px;}
.y140{bottom:1033.988700px;}
.y296{bottom:1034.551200px;}
.y23{bottom:1035.546001px;}
.ye2{bottom:1036.238700px;}
.y266{bottom:1038.301200px;}
.y23d{bottom:1039.231350px;}
.y7b{bottom:1040.926200px;}
.y13f{bottom:1047.488700px;}
.y36{bottom:1047.511200px;}
.ye1{bottom:1049.738700px;}
.y295{bottom:1051.051200px;}
.y265{bottom:1054.801200px;}
.y23c{bottom:1059.296250px;}
.y7a{bottom:1060.426200px;}
.y13e{bottom:1060.988700px;}
.ye0{bottom:1063.238700px;}
.y294{bottom:1067.551200px;}
.y264{bottom:1071.301200px;}
.y23b{bottom:1079.361300px;}
.y13d{bottom:1079.738700px;}
.y79{bottom:1079.926200px;}
.ydf{bottom:1081.238700px;}
.y59{bottom:1083.782250px;}
.y293{bottom:1084.051200px;}
.y38{bottom:1097.407950px;}
.y263{bottom:1098.301200px;}
.y78{bottom:1099.426200px;}
.yde{bottom:1099.988700px;}
.y292{bottom:1100.551200px;}
.y37{bottom:1110.907950px;}
.yab{bottom:1141.238100px;}
.y77{bottom:1141.313100px;}
.y22{bottom:1165.122003px;}
.h35{height:17.838750px;}
.h2d{height:23.119154px;}
.h2a{height:23.440959px;}
.h24{height:24.084570px;}
.h2f{height:24.099123px;}
.h36{height:24.281040px;}
.h34{height:24.627912px;}
.h16{height:25.096500px;}
.h28{height:25.693595px;}
.h1b{height:30.030000px;}
.h18{height:31.500000px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h1d{height:34.320000px;}
.h1c{height:34.608000px;}
.hb{height:36.726562px;}
.h1f{height:37.215000px;}
.h17{height:38.610000px;}
.h21{height:39.456000px;}
.h1e{height:39.696000px;}
.h2c{height:39.990234px;}
.h25{height:40.546875px;}
.h20{height:40.755000px;}
.hf{height:41.317383px;}
.h23{height:41.660156px;}
.h31{height:42.600000px;}
.h27{height:44.443359px;}
.h19{height:44.658000px;}
.h30{height:45.000000px;}
.h2b{height:45.423000px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h33{height:46.500000px;}
.h1a{height:47.586000px;}
.h22{height:48.000000px;}
.h3{height:48.195000px;}
.h12{height:49.620000px;}
.h15{height:54.655650px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h26{height:58.176357px;}
.h14{height:60.564000px;}
.h29{height:66.665039px;}
.ha{height:68.862305px;}
.h2e{height:73.501500px;}
.h5{height:78.030000px;}
.hc{height:82.620000px;}
.h32{height:92.058000px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w8{width:42.670500px;}
.w9{width:140.778000px;}
.w6{width:147.142500px;}
.w7{width:345.027000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x2f{left:49.512750px;}
.x1d{left:95.076000px;}
.x40{left:99.846000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:108.149850px;}
.x11{left:123.000000px;}
.xb{left:126.112350px;}
.x16{left:135.000000px;}
.x6{left:145.650000px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x28{left:206.562750px;}
.x9{left:228.743990px;}
.x33{left:237.612750px;}
.x12{left:261.103350px;}
.x27{left:273.943500px;}
.xe{left:276.103350px;}
.x2e{left:283.856250px;}
.x24{left:290.306250px;}
.x8{left:293.590494px;}
.x35{left:298.512750px;}
.x22{left:300.206250px;}
.x2a{left:301.406250px;}
.x23{left:309.506250px;}
.x26{left:311.756250px;}
.x25{left:316.711881px;}
.x29{left:323.756250px;}
.x30{left:352.706250px;}
.x2b{left:363.656250px;}
.x17{left:372.886500px;}
.x3a{left:376.068000px;}
.x1b{left:383.212500px;}
.x2c{left:385.406250px;}
.x18{left:396.412500px;}
.x1a{left:400.762500px;}
.x41{left:412.764000px;}
.x3b{left:415.764000px;}
.x3c{left:418.313509px;}
.x42{left:422.364000px;}
.x37{left:425.121000px;}
.x1c{left:428.362500px;}
.x3d{left:429.716926px;}
.x39{left:435.678750px;}
.x31{left:437.160910px;}
.xf{left:441.206700px;}
.x3f{left:443.514000px;}
.x2d{left:445.856250px;}
.x1e{left:450.412500px;}
.x19{left:452.510374px;}
.x3{left:454.959000px;}
.x13{left:456.206700px;}
.x38{left:458.178750px;}
.x1f{left:460.312500px;}
.x43{left:468.714771px;}
.x32{left:472.108264px;}
.x21{left:488.062500px;}
.x3e{left:493.766841px;}
.x20{left:513.262511px;}
.x34{left:520.256250px;}
.x44{left:565.175550px;}
.xd{left:570.946500px;}
.x36{left:618.971250px;}
.x14{left:621.310050px;}
.x10{left:636.310050px;}
.xc{left:650.025750px;}
.x15{left:732.354450px;}
@media print{
.v5{vertical-align:-23.992678pt;}
.v2{vertical-align:-15.840000pt;}
.v6{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.840000pt;}
.v1{vertical-align:18.480000pt;}
.v4{vertical-align:42.133333pt;}
.ls3c{letter-spacing:-15.416533pt;}
.ls34{letter-spacing:-2.666667pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls46{letter-spacing:-0.160000pt;}
.ls4d{letter-spacing:-0.144000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.048000pt;}
.ls1{letter-spacing:0.053333pt;}
.lsc{letter-spacing:0.160000pt;}
.ls4b{letter-spacing:0.192000pt;}
.ls43{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.363467pt;}
.ls7{letter-spacing:0.363600pt;}
.ls8{letter-spacing:0.400000pt;}
.ls48{letter-spacing:0.533333pt;}
.ls4{letter-spacing:0.560000pt;}
.ls47{letter-spacing:0.640000pt;}
.ls4c{letter-spacing:0.720000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.800000pt;}
.ls45{letter-spacing:3.760000pt;}
.ls3f{letter-spacing:4.266667pt;}
.ls9{letter-spacing:4.859733pt;}
.ls2f{letter-spacing:6.821333pt;}
.ls49{letter-spacing:8.140267pt;}
.ls44{letter-spacing:17.328183pt;}
.ls12{letter-spacing:31.377600pt;}
.ls29{letter-spacing:35.733333pt;}
.ls3a{letter-spacing:43.733333pt;}
.ls31{letter-spacing:54.496000pt;}
.ls2a{letter-spacing:55.437854pt;}
.lsa{letter-spacing:58.144000pt;}
.ls32{letter-spacing:62.933333pt;}
.ls6{letter-spacing:63.949867pt;}
.ls2b{letter-spacing:67.185252pt;}
.ls41{letter-spacing:69.866667pt;}
.ls3b{letter-spacing:75.263516pt;}
.ls2e{letter-spacing:80.576305pt;}
.ls33{letter-spacing:81.029299pt;}
.ls42{letter-spacing:81.121798pt;}
.ls28{letter-spacing:81.653333pt;}
.ls1c{letter-spacing:86.969067pt;}
.ls30{letter-spacing:89.779895pt;}
.ls38{letter-spacing:94.986667pt;}
.ls1b{letter-spacing:112.740800pt;}
.ls18{letter-spacing:115.941867pt;}
.ls2c{letter-spacing:147.096693pt;}
.ls26{letter-spacing:153.443200pt;}
.ls17{letter-spacing:156.003733pt;}
.ls39{letter-spacing:157.333333pt;}
.ls2d{letter-spacing:163.153760pt;}
.lsd{letter-spacing:171.876800pt;}
.ls1d{letter-spacing:173.966400pt;}
.ls36{letter-spacing:190.380960pt;}
.ls37{letter-spacing:193.173493pt;}
.ls15{letter-spacing:196.493867pt;}
.ls21{letter-spacing:202.638933pt;}
.ls19{letter-spacing:203.661867pt;}
.ls1e{letter-spacing:204.515733pt;}
.ls23{letter-spacing:205.796267pt;}
.ls3e{letter-spacing:207.834293pt;}
.ls40{letter-spacing:209.230560pt;}
.ls20{letter-spacing:214.329067pt;}
.lsf{letter-spacing:218.681067pt;}
.ls14{letter-spacing:226.062400pt;}
.ls24{letter-spacing:230.413333pt;}
.ls13{letter-spacing:234.168000pt;}
.ls27{letter-spacing:239.458667pt;}
.ls11{letter-spacing:242.530667pt;}
.lse{letter-spacing:254.648533pt;}
.ls1a{letter-spacing:254.716267pt;}
.ls22{letter-spacing:262.541333pt;}
.ls1f{letter-spacing:262.584000pt;}
.ls16{letter-spacing:280.119467pt;}
.ls25{letter-spacing:285.349867pt;}
.ls10{letter-spacing:339.536533pt;}
.ls3d{letter-spacing:342.462871pt;}
.ls35{letter-spacing:487.087627pt;}
.wsd8{word-spacing:-487.087627pt;}
.wsc9{word-spacing:-373.295938pt;}
.wsdd{word-spacing:-209.230560pt;}
.wsdc{word-spacing:-207.834293pt;}
.wsda{word-spacing:-193.173493pt;}
.wsd9{word-spacing:-190.380960pt;}
.wsaf{word-spacing:-163.153760pt;}
.wsae{word-spacing:-147.096693pt;}
.wsc7{word-spacing:-106.096582pt;}
.wsa8{word-spacing:-98.018319pt;}
.wsdb{word-spacing:-94.986667pt;}
.wsc6{word-spacing:-89.600000pt;}
.wsdf{word-spacing:-81.121798pt;}
.wsd7{word-spacing:-81.029299pt;}
.wsc5{word-spacing:-79.466667pt;}
.wsa7{word-spacing:-73.269333pt;}
.wsde{word-spacing:-69.866667pt;}
.wsad{word-spacing:-55.437854pt;}
.wsc2{word-spacing:-43.200000pt;}
.wsc1{word-spacing:-40.533333pt;}
.wse3{word-spacing:-17.328183pt;}
.wsc8{word-spacing:-15.416533pt;}
.ws1{word-spacing:-12.432000pt;}
.wsf5{word-spacing:-11.946667pt;}
.ws56{word-spacing:-11.850667pt;}
.ws10a{word-spacing:-11.840000pt;}
.ws2c{word-spacing:-11.466667pt;}
.ws5{word-spacing:-11.306667pt;}
.ws172{word-spacing:-10.896000pt;}
.ws144{word-spacing:-10.368000pt;}
.ws120{word-spacing:-10.224000pt;}
.ws11e{word-spacing:-10.176000pt;}
.ws199{word-spacing:-10.032000pt;}
.ws9d{word-spacing:-9.930667pt;}
.ws173{word-spacing:-9.456000pt;}
.ws145{word-spacing:-8.928000pt;}
.ws121{word-spacing:-8.784000pt;}
.ws11f{word-spacing:-8.736000pt;}
.ws9{word-spacing:-8.720000pt;}
.ws6{word-spacing:-8.618667pt;}
.ws198{word-spacing:-8.592000pt;}
.ws96{word-spacing:-8.362667pt;}
.ws3{word-spacing:-8.320000pt;}
.ws7{word-spacing:-7.840000pt;}
.ws9c{word-spacing:-7.765333pt;}
.ws8{word-spacing:-7.317333pt;}
.ws197{word-spacing:-6.614400pt;}
.ws2{word-spacing:-6.115200pt;}
.wse4{word-spacing:-3.760000pt;}
.ws4{word-spacing:-2.370133pt;}
.wsd5{word-spacing:-2.133333pt;}
.wsa9{word-spacing:-2.066400pt;}
.ws177{word-spacing:-0.720000pt;}
.wsf6{word-spacing:-0.640000pt;}
.ws57{word-spacing:-0.400000pt;}
.wsd3{word-spacing:-0.213333pt;}
.ws14e{word-spacing:-0.192000pt;}
.ws3f{word-spacing:-0.160000pt;}
.ws137{word-spacing:-0.048000pt;}
.ws97{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a6{word-spacing:0.144000pt;}
.wsd6{word-spacing:0.800000pt;}
.wsd4{word-spacing:0.906667pt;}
.ws70{word-spacing:1.920000pt;}
.ws158{word-spacing:2.496000pt;}
.ws157{word-spacing:2.880000pt;}
.ws116{word-spacing:3.733333pt;}
.ws160{word-spacing:3.936000pt;}
.ws4b{word-spacing:4.053333pt;}
.ws149{word-spacing:4.224000pt;}
.ws15a{word-spacing:4.272000pt;}
.ws170{word-spacing:4.416000pt;}
.ws17e{word-spacing:4.464000pt;}
.wse7{word-spacing:4.480000pt;}
.ws127{word-spacing:4.512000pt;}
.ws10b{word-spacing:4.533333pt;}
.ws15f{word-spacing:4.608000pt;}
.ws26{word-spacing:4.821333pt;}
.ws179{word-spacing:4.848000pt;}
.ws4c{word-spacing:4.853333pt;}
.ws113{word-spacing:4.960000pt;}
.ws159{word-spacing:4.992000pt;}
.ws163{word-spacing:5.136000pt;}
.ws44{word-spacing:5.173333pt;}
.ws17d{word-spacing:5.184000pt;}
.ws17c{word-spacing:5.376000pt;}
.ws114{word-spacing:5.386667pt;}
.ws2e{word-spacing:5.493333pt;}
.ws181{word-spacing:5.568000pt;}
.ws126{word-spacing:5.616000pt;}
.ws52{word-spacing:5.653333pt;}
.ws178{word-spacing:5.664000pt;}
.ws5e{word-spacing:5.706667pt;}
.wse1{word-spacing:5.760000pt;}
.ws138{word-spacing:5.856000pt;}
.ws25{word-spacing:5.861333pt;}
.wsf2{word-spacing:5.866667pt;}
.wsb{word-spacing:5.880000pt;}
.ws189{word-spacing:5.904000pt;}
.ws2a{word-spacing:5.920000pt;}
.ws100{word-spacing:5.973333pt;}
.ws140{word-spacing:6.000000pt;}
.wsb6{word-spacing:6.026667pt;}
.ws143{word-spacing:6.048000pt;}
.ws9b{word-spacing:6.058667pt;}
.ws115{word-spacing:6.080000pt;}
.ws22{word-spacing:6.133333pt;}
.wsa1{word-spacing:6.186667pt;}
.ws19f{word-spacing:6.192000pt;}
.ws78{word-spacing:6.240000pt;}
.wsc{word-spacing:6.280000pt;}
.ws12{word-spacing:6.288000pt;}
.ws86{word-spacing:6.293333pt;}
.ws19c{word-spacing:6.336000pt;}
.ws7c{word-spacing:6.346667pt;}
.ws12b{word-spacing:6.384000pt;}
.ws62{word-spacing:6.400000pt;}
.ws12e{word-spacing:6.432000pt;}
.ws35{word-spacing:6.453333pt;}
.ws180{word-spacing:6.480000pt;}
.ws8d{word-spacing:6.506667pt;}
.ws17f{word-spacing:6.528000pt;}
.wsbe{word-spacing:6.560000pt;}
.ws9a{word-spacing:6.570667pt;}
.ws7e{word-spacing:6.613333pt;}
.ws184{word-spacing:6.624000pt;}
.ws3c{word-spacing:6.666667pt;}
.ws11c{word-spacing:6.672000pt;}
.ws27{word-spacing:6.698667pt;}
.ws1a{word-spacing:6.720000pt;}
.ws128{word-spacing:6.768000pt;}
.ws23{word-spacing:6.773333pt;}
.ws16b{word-spacing:6.864000pt;}
.wsf0{word-spacing:6.880000pt;}
.ws192{word-spacing:6.912000pt;}
.ws5a{word-spacing:6.933333pt;}
.ws146{word-spacing:6.960000pt;}
.wsb2{word-spacing:6.986667pt;}
.ws13f{word-spacing:7.008000pt;}
.ws107{word-spacing:7.040000pt;}
.ws142{word-spacing:7.056000pt;}
.ws8e{word-spacing:7.093333pt;}
.ws17a{word-spacing:7.104000pt;}
.ws55{word-spacing:7.146667pt;}
.ws18e{word-spacing:7.152000pt;}
.ws14a{word-spacing:7.200000pt;}
.ws2b{word-spacing:7.253333pt;}
.ws18f{word-spacing:7.296000pt;}
.ws10c{word-spacing:7.306667pt;}
.wsfb{word-spacing:7.360000pt;}
.ws124{word-spacing:7.392000pt;}
.ws85{word-spacing:7.413333pt;}
.ws11b{word-spacing:7.440000pt;}
.ws8f{word-spacing:7.466667pt;}
.ws105{word-spacing:7.520000pt;}
.wsf{word-spacing:7.536000pt;}
.ws29{word-spacing:7.541333pt;}
.wsf3{word-spacing:7.573333pt;}
.ws122{word-spacing:7.584000pt;}
.ws79{word-spacing:7.626667pt;}
.ws16d{word-spacing:7.632000pt;}
.wsa3{word-spacing:7.680000pt;}
.ws18{word-spacing:7.728000pt;}
.ws67{word-spacing:7.786667pt;}
.ws98{word-spacing:7.802667pt;}
.ws129{word-spacing:7.824000pt;}
.ws31{word-spacing:7.840000pt;}
.ws51{word-spacing:7.893333pt;}
.ws190{word-spacing:7.920000pt;}
.wsab{word-spacing:7.946667pt;}
.ws99{word-spacing:7.954667pt;}
.ws10f{word-spacing:8.000000pt;}
.ws193{word-spacing:8.016000pt;}
.ws48{word-spacing:8.053333pt;}
.ws191{word-spacing:8.064000pt;}
.ws118{word-spacing:8.106667pt;}
.ws19{word-spacing:8.160000pt;}
.wsd2{word-spacing:8.232000pt;}
.ws32{word-spacing:8.266667pt;}
.ws106{word-spacing:8.320000pt;}
.ws150{word-spacing:8.352000pt;}
.ws43{word-spacing:8.373333pt;}
.ws18c{word-spacing:8.400000pt;}
.ws6a{word-spacing:8.426667pt;}
.ws18d{word-spacing:8.448000pt;}
.ws168{word-spacing:8.496000pt;}
.wsa{word-spacing:8.533333pt;}
.ws21{word-spacing:8.586667pt;}
.ws5d{word-spacing:8.640000pt;}
.wsb1{word-spacing:8.693333pt;}
.ws74{word-spacing:8.746667pt;}
.ws123{word-spacing:8.784000pt;}
.ws66{word-spacing:8.800000pt;}
.ws183{word-spacing:8.832000pt;}
.ws87{word-spacing:8.853333pt;}
.ws34{word-spacing:8.906667pt;}
.ws16c{word-spacing:8.928000pt;}
.ws42{word-spacing:8.960000pt;}
.ws131{word-spacing:8.976000pt;}
.ws6e{word-spacing:9.013333pt;}
.ws12f{word-spacing:9.024000pt;}
.ws24{word-spacing:9.066667pt;}
.ws17b{word-spacing:9.072000pt;}
.ws19e{word-spacing:9.168000pt;}
.wsa0{word-spacing:9.173333pt;}
.ws112{word-spacing:9.226667pt;}
.wsa6{word-spacing:9.280000pt;}
.ws15e{word-spacing:9.312000pt;}
.ws141{word-spacing:9.360000pt;}
.ws50{word-spacing:9.386667pt;}
.ws93{word-spacing:9.440000pt;}
.ws14b{word-spacing:9.456000pt;}
.ws36{word-spacing:9.493333pt;}
.ws59{word-spacing:9.504000pt;}
.wse{word-spacing:9.520000pt;}
.ws2f{word-spacing:9.546667pt;}
.wsbd{word-spacing:9.600000pt;}
.ws148{word-spacing:9.744000pt;}
.ws38{word-spacing:9.760000pt;}
.ws9e{word-spacing:9.813333pt;}
.ws196{word-spacing:9.840000pt;}
.ws68{word-spacing:9.920000pt;}
.ws49{word-spacing:9.973333pt;}
.ws103{word-spacing:10.026667pt;}
.ws28{word-spacing:10.042667pt;}
.wsee{word-spacing:10.080000pt;}
.wsaa{word-spacing:10.133333pt;}
.ws108{word-spacing:10.186667pt;}
.ws15{word-spacing:10.224000pt;}
.wse2{word-spacing:10.240000pt;}
.ws182{word-spacing:10.272000pt;}
.ws73{word-spacing:10.293333pt;}
.ws11d{word-spacing:10.320000pt;}
.ws33{word-spacing:10.346667pt;}
.ws1a1{word-spacing:10.368000pt;}
.ws89{word-spacing:10.400000pt;}
.ws156{word-spacing:10.416000pt;}
.ws58{word-spacing:10.453333pt;}
.ws119{word-spacing:10.506667pt;}
.wsc0{word-spacing:10.560000pt;}
.ws5f{word-spacing:10.613333pt;}
.ws195{word-spacing:10.656000pt;}
.wse9{word-spacing:10.666667pt;}
.ws94{word-spacing:10.720000pt;}
.ws14f{word-spacing:10.752000pt;}
.ws37{word-spacing:10.773333pt;}
.ws5c{word-spacing:10.826667pt;}
.ws60{word-spacing:10.880000pt;}
.ws15d{word-spacing:10.896000pt;}
.ws5b{word-spacing:10.933333pt;}
.ws1c{word-spacing:10.986667pt;}
.ws101{word-spacing:11.040000pt;}
.ws194{word-spacing:11.088000pt;}
.wsce{word-spacing:11.093333pt;}
.ws12a{word-spacing:11.136000pt;}
.ws6f{word-spacing:11.146667pt;}
.ws13a{word-spacing:11.184000pt;}
.wsa5{word-spacing:11.200000pt;}
.ws19d{word-spacing:11.232000pt;}
.wsb3{word-spacing:11.253333pt;}
.ws88{word-spacing:11.306667pt;}
.ws147{word-spacing:11.328000pt;}
.ws7b{word-spacing:11.360000pt;}
.ws80{word-spacing:11.413333pt;}
.wsa2{word-spacing:11.466667pt;}
.ws1b{word-spacing:11.520000pt;}
.ws54{word-spacing:11.573333pt;}
.ws63{word-spacing:11.626667pt;}
.ws2d{word-spacing:11.733333pt;}
.ws75{word-spacing:11.786667pt;}
.ws3b{word-spacing:11.840000pt;}
.ws1a7{word-spacing:11.856000pt;}
.ws11a{word-spacing:11.893333pt;}
.ws13d{word-spacing:11.904000pt;}
.ws82{word-spacing:11.946667pt;}
.ws125{word-spacing:11.952000pt;}
.ws7f{word-spacing:12.000000pt;}
.ws18b{word-spacing:12.048000pt;}
.wsfc{word-spacing:12.053333pt;}
.ws6b{word-spacing:12.106667pt;}
.ws162{word-spacing:12.144000pt;}
.wsac{word-spacing:12.160000pt;}
.ws8a{word-spacing:12.213333pt;}
.wsd{word-spacing:12.394667pt;}
.ws53{word-spacing:12.426667pt;}
.ws1d{word-spacing:12.480000pt;}
.ws16a{word-spacing:12.528000pt;}
.wsfe{word-spacing:12.586667pt;}
.ws133{word-spacing:12.624000pt;}
.ws77{word-spacing:12.640000pt;}
.ws13e{word-spacing:12.672000pt;}
.wscd{word-spacing:12.693333pt;}
.ws46{word-spacing:12.746667pt;}
.ws1e{word-spacing:12.800000pt;}
.ws8b{word-spacing:12.853333pt;}
.ws13c{word-spacing:12.864000pt;}
.ws110{word-spacing:12.906667pt;}
.ws1a9{word-spacing:12.912000pt;}
.ws6c{word-spacing:12.960000pt;}
.ws39{word-spacing:13.120000pt;}
.ws151{word-spacing:13.152000pt;}
.ws72{word-spacing:13.173333pt;}
.ws161{word-spacing:13.200000pt;}
.wsf1{word-spacing:13.226667pt;}
.ws3e{word-spacing:13.280000pt;}
.wsbc{word-spacing:13.333333pt;}
.ws71{word-spacing:13.440000pt;}
.ws13{word-spacing:13.536000pt;}
.wsb8{word-spacing:13.600000pt;}
.wsea{word-spacing:13.653333pt;}
.ws65{word-spacing:13.706667pt;}
.wsb5{word-spacing:13.760000pt;}
.ws12d{word-spacing:13.824000pt;}
.ws81{word-spacing:13.866667pt;}
.ws165{word-spacing:13.968000pt;}
.ws104{word-spacing:13.973333pt;}
.ws18a{word-spacing:14.016000pt;}
.ws8c{word-spacing:14.080000pt;}
.wsed{word-spacing:14.240000pt;}
.ws152{word-spacing:14.256000pt;}
.wsa4{word-spacing:14.293333pt;}
.ws9f{word-spacing:14.400000pt;}
.wsd0{word-spacing:14.453333pt;}
.ws12c{word-spacing:14.496000pt;}
.ws1a5{word-spacing:14.544000pt;}
.ws6d{word-spacing:14.560000pt;}
.ws169{word-spacing:14.592000pt;}
.ws90{word-spacing:14.613333pt;}
.ws132{word-spacing:14.688000pt;}
.ws4d{word-spacing:14.720000pt;}
.ws1a4{word-spacing:14.736000pt;}
.ws91{word-spacing:14.773333pt;}
.wsb4{word-spacing:14.826667pt;}
.ws174{word-spacing:14.832000pt;}
.ws1a0{word-spacing:14.928000pt;}
.ws13b{word-spacing:14.976000pt;}
.ws84{word-spacing:14.986667pt;}
.ws45{word-spacing:15.093333pt;}
.wsbf{word-spacing:15.146667pt;}
.wsf8{word-spacing:15.200000pt;}
.wsf7{word-spacing:15.253333pt;}
.wse6{word-spacing:15.306667pt;}
.wsd1{word-spacing:15.360000pt;}
.wsba{word-spacing:15.413333pt;}
.ws7a{word-spacing:15.466667pt;}
.ws14{word-spacing:15.504000pt;}
.ws3d{word-spacing:15.573333pt;}
.wsef{word-spacing:15.626667pt;}
.wse8{word-spacing:15.680000pt;}
.ws4f{word-spacing:15.786667pt;}
.ws134{word-spacing:15.792000pt;}
.ws64{word-spacing:15.840000pt;}
.ws111{word-spacing:15.946667pt;}
.ws20{word-spacing:16.053333pt;}
.wsb9{word-spacing:16.266667pt;}
.ws164{word-spacing:16.272000pt;}
.wsfd{word-spacing:16.373333pt;}
.ws69{word-spacing:16.426667pt;}
.wsfa{word-spacing:16.586667pt;}
.wseb{word-spacing:16.640000pt;}
.wscf{word-spacing:16.693333pt;}
.ws92{word-spacing:16.800000pt;}
.ws153{word-spacing:16.848000pt;}
.ws136{word-spacing:17.040000pt;}
.ws40{word-spacing:17.120000pt;}
.ws130{word-spacing:17.136000pt;}
.ws11{word-spacing:17.280000pt;}
.ws41{word-spacing:17.386667pt;}
.ws171{word-spacing:17.472000pt;}
.ws19b{word-spacing:17.520000pt;}
.wsf4{word-spacing:17.546667pt;}
.ws188{word-spacing:17.568000pt;}
.ws3a{word-spacing:17.600000pt;}
.ws15c{word-spacing:17.616000pt;}
.wsbb{word-spacing:17.813333pt;}
.wsb7{word-spacing:17.866667pt;}
.ws139{word-spacing:18.048000pt;}
.ws7d{word-spacing:18.346667pt;}
.ws117{word-spacing:18.453333pt;}
.ws1a3{word-spacing:18.720000pt;}
.ws109{word-spacing:18.933333pt;}
.wscc{word-spacing:18.950003pt;}
.ws61{word-spacing:19.093333pt;}
.ws14d{word-spacing:19.104000pt;}
.ws10{word-spacing:19.392000pt;}
.ws154{word-spacing:19.632000pt;}
.ws155{word-spacing:19.776000pt;}
.ws135{word-spacing:19.824000pt;}
.ws47{word-spacing:19.893333pt;}
.ws19a{word-spacing:20.400000pt;}
.ws187{word-spacing:20.448000pt;}
.ws15b{word-spacing:20.544000pt;}
.ws10e{word-spacing:20.586667pt;}
.ws16f{word-spacing:20.736000pt;}
.wsec{word-spacing:20.746667pt;}
.ws1f{word-spacing:20.853333pt;}
.ws4e{word-spacing:21.226667pt;}
.wsb0{word-spacing:21.440000pt;}
.ws1a2{word-spacing:21.792000pt;}
.ws30{word-spacing:22.080000pt;}
.ws14c{word-spacing:22.272000pt;}
.ws76{word-spacing:22.986667pt;}
.ws1a8{word-spacing:23.040000pt;}
.ws17{word-spacing:23.088000pt;}
.ws16e{word-spacing:24.144000pt;}
.ws186{word-spacing:24.432000pt;}
.ws4a{word-spacing:25.226667pt;}
.ws102{word-spacing:26.933333pt;}
.wsf9{word-spacing:27.306667pt;}
.ws176{word-spacing:27.408000pt;}
.ws185{word-spacing:28.464000pt;}
.ws10d{word-spacing:30.933333pt;}
.ws175{word-spacing:31.920000pt;}
.ws83{word-spacing:34.560000pt;}
.wscb{word-spacing:34.826667pt;}
.ws167{word-spacing:35.136000pt;}
.ws16{word-spacing:36.000000pt;}
.wsff{word-spacing:37.920000pt;}
.ws166{word-spacing:40.944000pt;}
.wsca{word-spacing:57.712000pt;}
.wsc4{word-spacing:99.317333pt;}
.wsc3{word-spacing:144.650667pt;}
.ws95{word-spacing:401.245867pt;}
.wse0{word-spacing:527.952000pt;}
.wse5{word-spacing:891.072000pt;}
._34{margin-left:-992.533333pt;}
._31{margin-left:-104.160000pt;}
._33{margin-left:-95.466667pt;}
._32{margin-left:-89.066667pt;}
._43{margin-left:-42.816000pt;}
._3b{margin-left:-24.864000pt;}
._3d{margin-left:-17.184000pt;}
._1{margin-left:-7.829346pt;}
._3{margin-left:-6.239977pt;}
._a{margin-left:-5.277346pt;}
._2{margin-left:-3.680000pt;}
._9{margin-left:-2.645346pt;}
._0{margin-left:-1.706654pt;}
._5{width:1.221320pt;}
._8{width:2.245320pt;}
._15{width:3.455974pt;}
._d{width:4.664546pt;}
._39{width:5.647987pt;}
._4{width:6.559974pt;}
._38{width:7.507200pt;}
._14{width:8.527974pt;}
._12{width:9.439987pt;}
._e{width:10.490693pt;}
._6{width:11.728000pt;}
._7{width:13.461346pt;}
._41{width:14.784494pt;}
._10{width:15.914133pt;}
._11{width:17.104000pt;}
._f{width:18.138667pt;}
._3c{width:20.153600pt;}
._16{width:22.960000pt;}
._42{width:24.195733pt;}
._3f{width:28.994133pt;}
._3e{width:30.004800pt;}
._44{width:32.340267pt;}
._2d{width:38.400000pt;}
._40{width:40.606933pt;}
._2a{width:45.333333pt;}
._27{width:46.293333pt;}
._20{width:48.794133pt;}
._37{width:51.413333pt;}
._3a{width:52.933333pt;}
._b{width:54.065600pt;}
._2c{width:77.456000pt;}
._29{width:81.600000pt;}
._13{width:117.065041pt;}
._c{width:118.826133pt;}
._19{width:134.255454pt;}
._36{width:172.053333pt;}
._28{width:179.066693pt;}
._2f{width:182.464000pt;}
._30{width:197.866667pt;}
._2e{width:219.200000pt;}
._2b{width:225.600000pt;}
._26{width:231.236787pt;}
._22{width:232.532800pt;}
._1e{width:259.882133pt;}
._1a{width:306.970133pt;}
._21{width:311.364787pt;}
._1c{width:314.948800pt;}
._1b{width:318.148800pt;}
._1f{width:321.690120pt;}
._25{width:329.754133pt;}
._1d{width:339.183467pt;}
._24{width:356.676800pt;}
._23{width:357.572787pt;}
._18{width:406.354120pt;}
._17{width:451.846920pt;}
._35{width:1065.478933pt;}
.fs11{font-size:22.333333pt;}
.fsf{font-size:30.833067pt;}
.fsc{font-size:31.200000pt;}
.fsb{font-size:36.400000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs10{font-size:69.813333pt;}
.fsa{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y14c{bottom:13.867333pt;}
.y194{bottom:14.400800pt;}
.y19b{bottom:14.666667pt;}
.y14e{bottom:16.400667pt;}
.y192{bottom:16.934133pt;}
.y148{bottom:17.334000pt;}
.y1aa{bottom:17.733067pt;}
.y193{bottom:17.867467pt;}
.y1a5{bottom:18.666400pt;}
.y191{bottom:25.867467pt;}
.y18b{bottom:49.334133pt;}
.y18e{bottom:50.267467pt;}
.y129{bottom:59.133333pt;}
.y5{bottom:59.133337pt;}
.y35{bottom:60.086668pt;}
.y34{bottom:74.753335pt;}
.ydc{bottom:75.800000pt;}
.y5c{bottom:75.800533pt;}
.y20b{bottom:77.533733pt;}
.y179{bottom:78.535200pt;}
.y22d{bottom:80.732800pt;}
.y128{bottom:81.101067pt;}
.y1eb{bottom:83.300000pt;}
.y2cf{bottom:83.601067pt;}
.y1cd{bottom:83.800000pt;}
.y4{bottom:86.333337pt;}
.y5b{bottom:86.467200pt;}
.y262{bottom:87.045200pt;}
.y1b6{bottom:89.016533pt;}
.y1a4{bottom:91.617333pt;}
.y127{bottom:93.101067pt;}
.ydb{bottom:93.133333pt;}
.y23a{bottom:93.200533pt;}
.yaa{bottom:93.267733pt;}
.y291{bottom:94.567467pt;}
.y20a{bottom:94.867067pt;}
.y1a9{bottom:95.350400pt;}
.y1cc{bottom:95.800000pt;}
.y178{bottom:95.868533pt;}
.y5a{bottom:97.133867pt;}
.y1a6{bottom:97.350400pt;}
.y22c{bottom:98.066133pt;}
.y2ce{bottom:98.267733pt;}
.y13c{bottom:98.364267pt;}
.y1ea{bottom:100.633333pt;}
.y126{bottom:105.101067pt;}
.y1b5{bottom:106.349867pt;}
.y1a8{bottom:106.816151pt;}
.y1ab{bottom:106.950400pt;}
.y56{bottom:108.133867pt;}
.y290{bottom:109.234133pt;}
.y1a3{bottom:110.283733pt;}
.yda{bottom:110.466667pt;}
.y239{bottom:110.533867pt;}
.ya9{bottom:110.601067pt;}
.y261{bottom:111.547467pt;}
.y209{bottom:112.200400pt;}
.y2cd{bottom:112.934400pt;}
.y177{bottom:113.201867pt;}
.y22b{bottom:115.399467pt;}
.y13b{bottom:115.697600pt;}
.y1ac{bottom:116.281903pt;}
.y125{bottom:117.101067pt;}
.y58{bottom:117.800533pt;}
.y1e9{bottom:117.966667pt;}
.ydd{bottom:119.800000pt;}
.y1b4{bottom:123.683200pt;}
.y21{bottom:123.790666pt;}
.y28f{bottom:123.900800pt;}
.y1a7{bottom:124.152043pt;}
.y2cc{bottom:127.601067pt;}
.yd9{bottom:127.800000pt;}
.y238{bottom:127.867200pt;}
.ya8{bottom:127.934400pt;}
.y124{bottom:129.101067pt;}
.y208{bottom:129.533733pt;}
.y57{bottom:129.800533pt;}
.y176{bottom:130.535200pt;}
.y22a{bottom:132.732800pt;}
.y13a{bottom:133.030933pt;}
.y1e8{bottom:135.300000pt;}
.y28e{bottom:138.567467pt;}
.y1b3{bottom:141.016533pt;}
.y123{bottom:141.101067pt;}
.y2cb{bottom:142.267733pt;}
.y1a2{bottom:142.400533pt;}
.yd8{bottom:145.133333pt;}
.y237{bottom:145.200533pt;}
.ya7{bottom:145.267733pt;}
.y207{bottom:146.867067pt;}
.y175{bottom:147.868533pt;}
.y229{bottom:150.066133pt;}
.y139{bottom:150.364267pt;}
.y1e7{bottom:152.633333pt;}
.y122{bottom:153.101067pt;}
.y28d{bottom:153.234133pt;}
.y2ca{bottom:156.934400pt;}
.y260{bottom:157.566400pt;}
.y1b2{bottom:158.349867pt;}
.y1a1{bottom:159.733867pt;}
.yd7{bottom:162.466667pt;}
.y236{bottom:162.533867pt;}
.ya6{bottom:162.601067pt;}
.y206{bottom:164.200400pt;}
.y121{bottom:165.101067pt;}
.y174{bottom:165.201867pt;}
.y228{bottom:167.399467pt;}
.y28c{bottom:167.900800pt;}
.y1e6{bottom:169.966667pt;}
.y2c9{bottom:171.601067pt;}
.y25f{bottom:172.735333pt;}
.y18{bottom:175.052000pt;}
.y1b1{bottom:175.683200pt;}
.y1a0{bottom:177.067200pt;}
.y120{bottom:177.101067pt;}
.yd6{bottom:179.800000pt;}
.y235{bottom:179.867200pt;}
.ya5{bottom:179.934400pt;}
.y205{bottom:181.533733pt;}
.y173{bottom:182.535200pt;}
.y28b{bottom:182.567467pt;}
.y55{bottom:182.601067pt;}
.y227{bottom:184.732800pt;}
.y138{bottom:184.996667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y2c8{bottom:186.267733pt;}
.y25e{bottom:187.904133pt;}
.y11f{bottom:189.101067pt;}
.y1b0{bottom:193.016533pt;}
.y19f{bottom:194.400533pt;}
.y1e5{bottom:196.633333pt;}
.yd5{bottom:197.133333pt;}
.y234{bottom:197.200533pt;}
.y28a{bottom:197.234133pt;}
.ya4{bottom:197.267733pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y204{bottom:198.867067pt;}
.y172{bottom:199.868533pt;}
.y54{bottom:199.934400pt;}
.y2c7{bottom:200.934400pt;}
.y11e{bottom:201.101067pt;}
.y226{bottom:202.066133pt;}
.y137{bottom:202.330000pt;}
.y25d{bottom:203.072933pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1af{bottom:210.349867pt;}
.y19e{bottom:211.733867pt;}
.y289{bottom:211.900800pt;}
.y11d{bottom:213.101067pt;}
.yd4{bottom:214.466667pt;}
.y233{bottom:214.533867pt;}
.ya3{bottom:214.601067pt;}
.y2c6{bottom:215.601067pt;}
.y203{bottom:216.200400pt;}
.y171{bottom:217.201867pt;}
.y53{bottom:217.267733pt;}
.y225{bottom:219.399467pt;}
.y136{bottom:219.663333pt;}
.y11c{bottom:225.101067pt;}
.y288{bottom:226.567467pt;}
.y25c{bottom:227.575200pt;}
.y1ae{bottom:227.683200pt;}
.y2c5{bottom:230.267733pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yd3{bottom:231.800000pt;}
.y19a{bottom:231.850667pt;}
.y232{bottom:231.867200pt;}
.ya2{bottom:231.934400pt;}
.y170{bottom:234.535200pt;}
.y52{bottom:234.601067pt;}
.y19d{bottom:235.984000pt;}
.y224{bottom:236.732800pt;}
.y135{bottom:236.996667pt;}
.y11b{bottom:237.101067pt;}
.y287{bottom:241.234133pt;}
.y1e4{bottom:242.193867pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y202{bottom:242.867067pt;}
.y2c4{bottom:244.934400pt;}
.y199{bottom:246.517333pt;}
.y11a{bottom:249.101067pt;}
.yd2{bottom:249.133333pt;}
.y231{bottom:249.200533pt;}
.ya1{bottom:249.267733pt;}
.y16f{bottom:251.868533pt;}
.y51{bottom:251.934400pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y223{bottom:254.066133pt;}
.y134{bottom:254.330000pt;}
.y1ad{bottom:254.349867pt;}
.y33{bottom:254.601334pt;}
.y19c{bottom:255.050667pt;}
.y286{bottom:255.900800pt;}
.y1e3{bottom:259.527200pt;}
.y2c3{bottom:259.601067pt;}
.y119{bottom:261.101067pt;}
.yd1{bottom:266.466667pt;}
.ya0{bottom:266.601067pt;}
.y16e{bottom:269.201867pt;}
.y50{bottom:269.267733pt;}
.y285{bottom:270.567467pt;}
.y222{bottom:271.399467pt;}
.y133{bottom:271.663333pt;}
.y118{bottom:273.101067pt;}
.y25b{bottom:273.594133pt;}
.y2c2{bottom:274.267733pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y230{bottom:275.867200pt;}
.y1e2{bottom:276.860533pt;}
.y198{bottom:278.634133pt;}
.yd0{bottom:283.800000pt;}
.y9f{bottom:283.934400pt;}
.y117{bottom:285.101067pt;}
.y284{bottom:285.234133pt;}
.y16d{bottom:286.535200pt;}
.y4f{bottom:286.601067pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y201{bottom:287.267467pt;}
.y221{bottom:288.732800pt;}
.y2c1{bottom:288.934400pt;}
.y132{bottom:288.996667pt;}
.y1e1{bottom:294.193867pt;}
.y197{bottom:295.967467pt;}
.y116{bottom:297.101067pt;}
.y283{bottom:299.900800pt;}
.y25a{bottom:300.763067pt;}
.ycf{bottom:301.133333pt;}
.y9e{bottom:301.267733pt;}
.y2c0{bottom:303.601067pt;}
.y16c{bottom:303.868533pt;}
.y4e{bottom:303.934400pt;}
.y200{bottom:304.600800pt;}
.y220{bottom:306.066000pt;}
.y131{bottom:306.330000pt;}
.y115{bottom:309.101067pt;}
.yf{bottom:309.452000pt;}
.y1e0{bottom:311.527200pt;}
.y32{bottom:311.801334pt;}
.y196{bottom:313.300800pt;}
.y282{bottom:314.567467pt;}
.y2bf{bottom:318.267733pt;}
.yce{bottom:318.466667pt;}
.y9d{bottom:318.601067pt;}
.y114{bottom:321.101067pt;}
.y16b{bottom:321.201867pt;}
.y4d{bottom:321.267733pt;}
.y1ff{bottom:321.934000pt;}
.y21f{bottom:323.399333pt;}
.y130{bottom:323.663333pt;}
.y1df{bottom:328.860533pt;}
.y281{bottom:329.234133pt;}
.y195{bottom:330.634133pt;}
.y2be{bottom:332.934400pt;}
.y113{bottom:333.101067pt;}
.ycd{bottom:335.800000pt;}
.y9c{bottom:335.934400pt;}
.y4c{bottom:338.601067pt;}
.y1fe{bottom:339.267333pt;}
.y21e{bottom:340.732667pt;}
.y12f{bottom:340.996667pt;}
.ye{bottom:343.809333pt;}
.y280{bottom:343.900800pt;}
.y112{bottom:345.101067pt;}
.y1de{bottom:346.193867pt;}
.y2bd{bottom:347.601067pt;}
.y16a{bottom:347.868533pt;}
.y259{bottom:352.115867pt;}
.ycc{bottom:353.133333pt;}
.y9b{bottom:353.267733pt;}
.y18a{bottom:353.300000pt;}
.y4b{bottom:355.934400pt;}
.y1fd{bottom:356.600667pt;}
.y111{bottom:357.101067pt;}
.y21d{bottom:358.066000pt;}
.y187{bottom:358.234133pt;}
.y12e{bottom:358.330000pt;}
.y27f{bottom:358.567467pt;}
.y2bc{bottom:362.267733pt;}
.y1ba{bottom:362.427200pt;}
.yd{bottom:362.706666pt;}
.y1dd{bottom:363.527200pt;}
.y190{bottom:367.697566pt;}
.y189{bottom:367.699885pt;}
.y18d{bottom:367.834133pt;}
.y31{bottom:369.001334pt;}
.y110{bottom:369.101067pt;}
.y258{bottom:369.951333pt;}
.y18c{bottom:370.234133pt;}
.ycb{bottom:370.466667pt;}
.y9a{bottom:370.601067pt;}
.y186{bottom:371.167467pt;}
.y27e{bottom:373.234133pt;}
.y4a{bottom:373.267733pt;}
.y1fc{bottom:373.934000pt;}
.y1b9{bottom:374.427200pt;}
.y21c{bottom:375.399333pt;}
.y12d{bottom:375.663333pt;}
.y2bb{bottom:376.934400pt;}
.y18f{bottom:379.167467pt;}
.y1dc{bottom:380.860533pt;}
.y10f{bottom:381.101067pt;}
.y184{bottom:382.634133pt;}
.y188{bottom:385.035777pt;}
.y257{bottom:387.786933pt;}
.yca{bottom:387.800000pt;}
.y27d{bottom:387.900800pt;}
.y99{bottom:387.934400pt;}
.y169{bottom:390.602400pt;}
.y1fb{bottom:391.267333pt;}
.y2ba{bottom:391.601067pt;}
.y21b{bottom:392.732667pt;}
.y12c{bottom:392.996667pt;}
.y10e{bottom:393.101067pt;}
.y1db{bottom:398.193867pt;}
.y49{bottom:399.934400pt;}
.y27c{bottom:402.567467pt;}
.y185{bottom:403.567467pt;}
.y10d{bottom:405.101067pt;}
.yc9{bottom:405.133333pt;}
.y98{bottom:405.267733pt;}
.y2b9{bottom:406.267733pt;}
.y168{bottom:407.935733pt;}
.y1fa{bottom:408.600667pt;}
.y21a{bottom:410.066000pt;}
.y12b{bottom:410.330000pt;}
.y256{bottom:414.955733pt;}
.y1da{bottom:415.527200pt;}
.y10c{bottom:417.101067pt;}
.y27b{bottom:417.234133pt;}
.y2b8{bottom:420.934400pt;}
.yc8{bottom:422.466667pt;}
.y97{bottom:422.601067pt;}
.y167{bottom:425.269067pt;}
.y1f9{bottom:425.934000pt;}
.y219{bottom:427.399333pt;}
.y12a{bottom:427.663333pt;}
.y30{bottom:428.806667pt;}
.y10b{bottom:429.101067pt;}
.y27a{bottom:431.900800pt;}
.y1d9{bottom:432.860533pt;}
.y2b7{bottom:435.601067pt;}
.y1cb{bottom:437.267733pt;}
.y183{bottom:438.484267pt;}
.yc7{bottom:439.800000pt;}
.y96{bottom:439.934400pt;}
.y10a{bottom:441.101067pt;}
.y166{bottom:442.602400pt;}
.y76{bottom:442.934533pt;}
.y1f8{bottom:443.267333pt;}
.y218{bottom:444.732667pt;}
.yc{bottom:446.990669pt;}
.y1d8{bottom:450.193867pt;}
.y2b6{bottom:450.267733pt;}
.y109{bottom:453.101067pt;}
.y1ca{bottom:454.601067pt;}
.y75{bottom:454.934533pt;}
.y279{bottom:455.900800pt;}
.yc6{bottom:457.133333pt;}
.y95{bottom:457.267733pt;}
.y165{bottom:459.935733pt;}
.y1f7{bottom:460.600667pt;}
.y255{bottom:460.974800pt;}
.y217{bottom:462.066000pt;}
.yb{bottom:462.990669pt;}
.y2b5{bottom:464.934400pt;}
.y108{bottom:465.101067pt;}
.y74{bottom:466.934533pt;}
.y1d7{bottom:467.527200pt;}
.y182{bottom:471.817600pt;}
.y1c9{bottom:471.934400pt;}
.yc5{bottom:474.466667pt;}
.y94{bottom:474.601067pt;}
.y107{bottom:477.101067pt;}
.y164{bottom:477.269067pt;}
.y1f6{bottom:477.934000pt;}
.y254{bottom:478.810267pt;}
.y73{bottom:478.934533pt;}
.ya{bottom:478.990666pt;}
.y216{bottom:479.399333pt;}
.y2b4{bottom:479.601067pt;}
.y2f{bottom:483.401334pt;}
.y145{bottom:484.295333pt;}
.y1d6{bottom:484.860533pt;}
.y106{bottom:489.101067pt;}
.y181{bottom:489.150933pt;}
.y1c8{bottom:489.267733pt;}
.y72{bottom:490.934533pt;}
.yc4{bottom:491.800000pt;}
.y93{bottom:491.934400pt;}
.y2b3{bottom:494.267733pt;}
.y163{bottom:494.602400pt;}
.y9{bottom:494.990666pt;}
.y1f5{bottom:495.267333pt;}
.y144{bottom:496.295333pt;}
.y253{bottom:496.645733pt;}
.y215{bottom:496.732667pt;}
.y105{bottom:501.101067pt;}
.y278{bottom:501.417600pt;}
.y1d5{bottom:502.193867pt;}
.y71{bottom:502.934533pt;}
.y180{bottom:506.484267pt;}
.y1c7{bottom:506.601067pt;}
.y2b2{bottom:508.934400pt;}
.yc3{bottom:509.133333pt;}
.y92{bottom:509.267733pt;}
.y162{bottom:511.935733pt;}
.y1f4{bottom:512.600667pt;}
.y104{bottom:513.101067pt;}
.y214{bottom:514.066000pt;}
.y252{bottom:514.481333pt;}
.y70{bottom:514.934533pt;}
.y277{bottom:516.084267pt;}
.y1d4{bottom:519.527200pt;}
.y2b1{bottom:523.601067pt;}
.y17f{bottom:523.817600pt;}
.y1c6{bottom:523.934400pt;}
.y103{bottom:525.101067pt;}
.yc2{bottom:526.466667pt;}
.y91{bottom:526.601067pt;}
.y6f{bottom:526.934533pt;}
.y161{bottom:529.269067pt;}
.y1f3{bottom:529.934000pt;}
.y213{bottom:531.399333pt;}
.y251{bottom:532.316800pt;}
.y1d3{bottom:536.860533pt;}
.y102{bottom:537.101067pt;}
.y2b0{bottom:538.267733pt;}
.y6e{bottom:538.934533pt;}
.y276{bottom:540.084267pt;}
.y17e{bottom:541.150933pt;}
.y1c5{bottom:541.267733pt;}
.y2e{bottom:543.206667pt;}
.yc1{bottom:543.800000pt;}
.y90{bottom:543.934400pt;}
.y1f2{bottom:547.267333pt;}
.y212{bottom:548.732667pt;}
.y101{bottom:549.101067pt;}
.y250{bottom:550.152400pt;}
.y6d{bottom:550.934533pt;}
.y2af{bottom:552.934400pt;}
.y1d2{bottom:554.193867pt;}
.y160{bottom:555.935733pt;}
.y17d{bottom:558.484267pt;}
.y1c4{bottom:558.601067pt;}
.y100{bottom:561.101067pt;}
.yc0{bottom:561.133333pt;}
.y8f{bottom:561.267733pt;}
.y6c{bottom:562.934533pt;}
.y1f1{bottom:564.600667pt;}
.y211{bottom:566.066000pt;}
.y2ae{bottom:567.601067pt;}
.y24f{bottom:567.987867pt;}
.y1d1{bottom:571.527200pt;}
.yff{bottom:573.101067pt;}
.y2d{bottom:573.740001pt;}
.y8{bottom:573.786667pt;}
.y6b{bottom:574.934533pt;}
.y17c{bottom:575.817600pt;}
.y1c3{bottom:575.934400pt;}
.ybf{bottom:578.466667pt;}
.y8e{bottom:578.601067pt;}
.y1f0{bottom:581.934000pt;}
.y2ad{bottom:582.267733pt;}
.yfe{bottom:585.101067pt;}
.y275{bottom:585.601067pt;}
.y24e{bottom:585.823467pt;}
.y2c{bottom:587.073335pt;}
.y1d0{bottom:588.860533pt;}
.y7{bottom:592.685334pt;}
.y210{bottom:592.732667pt;}
.y17b{bottom:593.150933pt;}
.y1c2{bottom:593.267733pt;}
.ybe{bottom:595.800000pt;}
.y8d{bottom:595.934400pt;}
.y6a{bottom:596.545600pt;}
.y2ac{bottom:596.934400pt;}
.yfd{bottom:597.101067pt;}
.y15f{bottom:598.669600pt;}
.y1ef{bottom:599.267333pt;}
.y274{bottom:600.267733pt;}
.y2b{bottom:600.406667pt;}
.y24d{bottom:603.658933pt;}
.y1cf{bottom:606.193867pt;}
.y69{bottom:608.545600pt;}
.yfc{bottom:609.101067pt;}
.y1c1{bottom:610.601067pt;}
.y2ab{bottom:611.601067pt;}
.ybd{bottom:613.133333pt;}
.y8c{bottom:613.267733pt;}
.y15e{bottom:616.002933pt;}
.y1ee{bottom:616.600667pt;}
.y68{bottom:620.545600pt;}
.yfb{bottom:621.101067pt;}
.y24c{bottom:621.494400pt;}
.y273{bottom:624.267733pt;}
.y2aa{bottom:626.267733pt;}
.y1c0{bottom:627.934400pt;}
.ybc{bottom:630.466667pt;}
.y8b{bottom:630.601067pt;}
.y67{bottom:632.545600pt;}
.y1ce{bottom:632.860533pt;}
.yfa{bottom:633.101067pt;}
.y15d{bottom:633.336267pt;}
.y17a{bottom:635.817600pt;}
.y20f{bottom:637.133067pt;}
.y48{bottom:637.267733pt;}
.y24b{bottom:639.330000pt;}
.y2a9{bottom:640.934400pt;}
.yf9{bottom:645.101067pt;}
.y1bf{bottom:645.267733pt;}
.y6{bottom:645.598667pt;}
.ybb{bottom:647.800000pt;}
.y8a{bottom:647.934400pt;}
.y47{bottom:650.601067pt;}
.y15c{bottom:650.669600pt;}
.y66{bottom:654.156800pt;}
.y20e{bottom:654.466400pt;}
.y2a8{bottom:655.601067pt;}
.yf8{bottom:657.101067pt;}
.y24a{bottom:657.165467pt;}
.y20d{bottom:657.667733pt;}
.y1be{bottom:662.601067pt;}
.y46{bottom:663.934400pt;}
.yba{bottom:665.133333pt;}
.y89{bottom:665.267733pt;}
.y65{bottom:666.156800pt;}
.y15b{bottom:668.002933pt;}
.y3{bottom:668.977329pt;}
.yf7{bottom:669.101067pt;}
.y272{bottom:669.601067pt;}
.y20c{bottom:669.667733pt;}
.y2a7{bottom:670.267733pt;}
.y2a{bottom:672.726665pt;}
.y249{bottom:675.001067pt;}
.y1ed{bottom:675.587733pt;}
.y45{bottom:677.267733pt;}
.y64{bottom:678.156800pt;}
.y1bd{bottom:679.934400pt;}
.yf6{bottom:681.101067pt;}
.yb9{bottom:682.466667pt;}
.y88{bottom:682.601067pt;}
.y2a6{bottom:684.934400pt;}
.y15a{bottom:685.336267pt;}
.y1ec{bottom:687.587733pt;}
.y63{bottom:690.156800pt;}
.y44{bottom:690.601067pt;}
.y248{bottom:692.836533pt;}
.yf5{bottom:693.101067pt;}
.y271{bottom:693.601067pt;}
.y1bc{bottom:697.267733pt;}
.y29{bottom:699.393332pt;}
.y2a5{bottom:699.601067pt;}
.yb8{bottom:699.800000pt;}
.y87{bottom:699.934400pt;}
.y22f{bottom:701.027733pt;}
.y62{bottom:702.156800pt;}
.y159{bottom:702.669600pt;}
.y43{bottom:703.934400pt;}
.yf4{bottom:705.101067pt;}
.y247{bottom:710.672000pt;}
.y22e{bottom:713.027733pt;}
.y61{bottom:714.156800pt;}
.y2a4{bottom:714.267733pt;}
.y28{bottom:715.393332pt;}
.yf3{bottom:717.101067pt;}
.yb7{bottom:717.133333pt;}
.y42{bottom:717.267733pt;}
.y158{bottom:720.002933pt;}
.y1b8{bottom:722.947733pt;}
.y1bb{bottom:723.934400pt;}
.y246{bottom:728.507600pt;}
.y2a3{bottom:728.934400pt;}
.yf2{bottom:729.101067pt;}
.y41{bottom:730.601067pt;}
.y27{bottom:731.393332pt;}
.yb6{bottom:734.466667pt;}
.y86{bottom:734.601067pt;}
.y1b7{bottom:734.947733pt;}
.y60{bottom:735.767733pt;}
.y157{bottom:737.336267pt;}
.y270{bottom:738.934400pt;}
.yf1{bottom:741.101067pt;}
.y2a2{bottom:743.601067pt;}
.y40{bottom:743.934400pt;}
.y245{bottom:746.343067pt;}
.y5f{bottom:747.767733pt;}
.yb5{bottom:751.800000pt;}
.y85{bottom:751.934400pt;}
.yf0{bottom:753.101067pt;}
.y26f{bottom:753.601067pt;}
.y156{bottom:754.669600pt;}
.y3f{bottom:757.267733pt;}
.y2a1{bottom:758.267733pt;}
.y5e{bottom:759.767733pt;}
.y244{bottom:764.178667pt;}
.yef{bottom:765.101067pt;}
.y26e{bottom:768.267733pt;}
.yb4{bottom:769.133333pt;}
.y84{bottom:769.267733pt;}
.y3e{bottom:770.601067pt;}
.y5d{bottom:771.767733pt;}
.y155{bottom:772.002933pt;}
.y2a0{bottom:772.934400pt;}
.yee{bottom:777.101067pt;}
.y26{bottom:778.034669pt;}
.y2{bottom:781.661334pt;}
.y243{bottom:782.014133pt;}
.y26d{bottom:782.934400pt;}
.yb3{bottom:786.466667pt;}
.y83{bottom:786.601067pt;}
.y29f{bottom:787.601067pt;}
.yed{bottom:789.101067pt;}
.y154{bottom:789.336267pt;}
.y26c{bottom:797.601067pt;}
.y242{bottom:799.849733pt;}
.yec{bottom:801.101067pt;}
.y29e{bottom:802.267733pt;}
.yb2{bottom:803.800000pt;}
.y82{bottom:803.934400pt;}
.y153{bottom:806.669600pt;}
.y3d{bottom:812.267733pt;}
.yeb{bottom:813.101067pt;}
.y29d{bottom:816.934400pt;}
.y241{bottom:817.685200pt;}
.yb1{bottom:821.133333pt;}
.y81{bottom:821.267733pt;}
.y152{bottom:824.002933pt;}
.yea{bottom:825.101067pt;}
.y26b{bottom:826.934400pt;}
.y3c{bottom:829.561067pt;}
.y29c{bottom:831.601067pt;}
.y25{bottom:834.613333pt;}
.y240{bottom:835.520800pt;}
.ye9{bottom:837.101067pt;}
.yb0{bottom:838.466667pt;}
.y80{bottom:838.601067pt;}
.y29b{bottom:846.267733pt;}
.ye8{bottom:849.101067pt;}
.y3b{bottom:849.601067pt;}
.y23f{bottom:853.356267pt;}
.yaf{bottom:855.800000pt;}
.y7f{bottom:855.934400pt;}
.y147{bottom:858.634667pt;}
.y1{bottom:859.312000pt;}
.y29a{bottom:860.934400pt;}
.ye7{bottom:861.101067pt;}
.y24{bottom:862.613333pt;}
.y14f{bottom:863.035333pt;}
.y14a{bottom:863.036249pt;}
.y26a{bottom:864.267733pt;}
.y149{bottom:872.502000pt;}
.y150{bottom:872.635333pt;}
.ye6{bottom:873.101067pt;}
.yae{bottom:873.133333pt;}
.y7e{bottom:873.267733pt;}
.y14d{bottom:875.035333pt;}
.y299{bottom:875.601067pt;}
.y146{bottom:875.968667pt;}
.y269{bottom:878.934400pt;}
.y143{bottom:879.101067pt;}
.y23e{bottom:880.525200pt;}
.y151{bottom:883.970986pt;}
.y3a{bottom:884.267733pt;}
.ye5{bottom:885.101067pt;}
.y14b{bottom:889.837892pt;}
.y298{bottom:890.267733pt;}
.yad{bottom:890.466667pt;}
.y7d{bottom:890.601067pt;}
.y268{bottom:893.601067pt;}
.y142{bottom:895.101067pt;}
.ye4{bottom:897.101067pt;}
.y297{bottom:904.934400pt;}
.y39{bottom:905.601067pt;}
.y141{bottom:907.101067pt;}
.y7c{bottom:907.934400pt;}
.y267{bottom:908.267733pt;}
.ye3{bottom:909.101067pt;}
.yac{bottom:917.133333pt;}
.y140{bottom:919.101067pt;}
.y296{bottom:919.601067pt;}
.y23{bottom:920.485335pt;}
.ye2{bottom:921.101067pt;}
.y266{bottom:922.934400pt;}
.y23d{bottom:923.761200pt;}
.y7b{bottom:925.267733pt;}
.y13f{bottom:931.101067pt;}
.y36{bottom:931.121067pt;}
.ye1{bottom:933.101067pt;}
.y295{bottom:934.267733pt;}
.y265{bottom:937.601067pt;}
.y23c{bottom:941.596667pt;}
.y7a{bottom:942.601067pt;}
.y13e{bottom:943.101067pt;}
.ye0{bottom:945.101067pt;}
.y294{bottom:948.934400pt;}
.y264{bottom:952.267733pt;}
.y23b{bottom:959.432267pt;}
.y13d{bottom:959.767733pt;}
.y79{bottom:959.934400pt;}
.ydf{bottom:961.101067pt;}
.y59{bottom:963.362000pt;}
.y293{bottom:963.601067pt;}
.y38{bottom:975.473733pt;}
.y263{bottom:976.267733pt;}
.y78{bottom:977.267733pt;}
.yde{bottom:977.767733pt;}
.y292{bottom:978.267733pt;}
.y37{bottom:987.473733pt;}
.yab{bottom:1014.433867pt;}
.y77{bottom:1014.500533pt;}
.y22{bottom:1035.664002pt;}
.h35{height:15.856667pt;}
.h2d{height:20.550359pt;}
.h2a{height:20.836408pt;}
.h24{height:21.408506pt;}
.h2f{height:21.421443pt;}
.h36{height:21.583147pt;}
.h34{height:21.891477pt;}
.h16{height:22.308000pt;}
.h28{height:22.838751pt;}
.h1b{height:26.693333pt;}
.h18{height:28.000000pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h1d{height:30.506667pt;}
.h1c{height:30.762667pt;}
.hb{height:32.645833pt;}
.h1f{height:33.080000pt;}
.h17{height:34.320000pt;}
.h21{height:35.072000pt;}
.h1e{height:35.285333pt;}
.h2c{height:35.546875pt;}
.h25{height:36.041667pt;}
.h20{height:36.226667pt;}
.hf{height:36.726562pt;}
.h23{height:37.031250pt;}
.h31{height:37.866667pt;}
.h27{height:39.505208pt;}
.h19{height:39.696000pt;}
.h30{height:40.000000pt;}
.h2b{height:40.376000pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h33{height:41.333333pt;}
.h1a{height:42.298667pt;}
.h22{height:42.666667pt;}
.h3{height:42.840000pt;}
.h12{height:44.106667pt;}
.h15{height:48.582800pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h26{height:51.712318pt;}
.h14{height:53.834667pt;}
.h29{height:59.257812pt;}
.ha{height:61.210938pt;}
.h2e{height:65.334667pt;}
.h5{height:69.360000pt;}
.hc{height:73.440000pt;}
.h32{height:81.829333pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w8{width:37.929333pt;}
.w9{width:125.136000pt;}
.w6{width:130.793333pt;}
.w7{width:306.690667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:44.011333pt;}
.x1d{left:84.512000pt;}
.x40{left:88.752000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:96.133200pt;}
.x11{left:109.333333pt;}
.xb{left:112.099867pt;}
.x16{left:120.000000pt;}
.x6{left:129.466667pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x28{left:183.611333pt;}
.x9{left:203.327991pt;}
.x33{left:211.211333pt;}
.x12{left:232.091867pt;}
.x27{left:243.505333pt;}
.xe{left:245.425200pt;}
.x2e{left:252.316667pt;}
.x24{left:258.050000pt;}
.x8{left:260.969328pt;}
.x35{left:265.344667pt;}
.x22{left:266.850000pt;}
.x2a{left:267.916667pt;}
.x23{left:275.116667pt;}
.x26{left:277.116667pt;}
.x25{left:281.521672pt;}
.x29{left:287.783333pt;}
.x30{left:313.516667pt;}
.x2b{left:323.250000pt;}
.x17{left:331.454667pt;}
.x3a{left:334.282667pt;}
.x1b{left:340.633333pt;}
.x2c{left:342.583333pt;}
.x18{left:352.366667pt;}
.x1a{left:356.233333pt;}
.x41{left:366.901333pt;}
.x3b{left:369.568000pt;}
.x3c{left:371.834230pt;}
.x42{left:375.434667pt;}
.x37{left:377.885333pt;}
.x1c{left:380.766667pt;}
.x3d{left:381.970601pt;}
.x39{left:387.270000pt;}
.x31{left:388.587476pt;}
.xf{left:392.183733pt;}
.x3f{left:394.234667pt;}
.x2d{left:396.316667pt;}
.x1e{left:400.366667pt;}
.x19{left:402.231444pt;}
.x3{left:404.408000pt;}
.x13{left:405.517067pt;}
.x38{left:407.270000pt;}
.x1f{left:409.166667pt;}
.x43{left:416.635352pt;}
.x32{left:419.651790pt;}
.x21{left:433.833333pt;}
.x3e{left:438.903859pt;}
.x20{left:456.233343pt;}
.x34{left:462.450000pt;}
.x44{left:502.378267pt;}
.xd{left:507.508000pt;}
.x36{left:550.196667pt;}
.x14{left:552.275600pt;}
.x10{left:565.608933pt;}
.xc{left:577.800667pt;}
.x15{left:650.981733pt;}
}




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