
    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_a2f4ad56dba0f41191250759.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1b96e39360f18d922ef8c900.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ceb2ea0c8073c7c04c68d99d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_4d296e82db9a2a5975817b93.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5ac01f145b940cdbdcc80c2f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_951d2ce2b43b0508ce8b247b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.100000;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_dfc89798081fff2c87764cf6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_86e7dc5787d444453dd5f022.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.696000;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_b8d17d4b35c2df6ea6d293c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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_92305fcacc3c926f7a914ef0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.060000;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_139401a5cbc493f7906c7e2a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.930000;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_1ab378bb09a047de39d81734.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;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_83cb09523cb73cc7fc396469.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.515000;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_a933a14da8d49510643afd1c.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b1bb62b31090226b27c8044d.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_abba2aab1741844bcddd0bc8.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_768859dd83e2fadef7c60cd0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.579000;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_e1e009e46947822083a93207.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.668000;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_4c8d7765977d85c50c628d8b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.774000;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_091321dba75026f678beef9f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.964000;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_71a7a8da18b5bcf947b41099.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.870000;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_79815f7cd66fd19603f87f8f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281275,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-11.723997px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.742236px;}
.v4{vertical-align:17.370786px;}
.v3{vertical-align:21.718134px;}
.ls12{letter-spacing:-1.008010px;}
.ls13{letter-spacing:-0.960010px;}
.ls15{letter-spacing:-0.942009px;}
.ls1b{letter-spacing:-0.936009px;}
.ls19{letter-spacing:-0.924009px;}
.ls11{letter-spacing:-0.912009px;}
.ls16{letter-spacing:-0.906009px;}
.ls18{letter-spacing:-0.888009px;}
.ls14{letter-spacing:-0.846008px;}
.ls10{letter-spacing:-0.834008px;}
.ls1a{letter-spacing:-0.828008px;}
.ls8{letter-spacing:-0.743389px;}
.ls0{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.010200px;}
.ls2a{letter-spacing:0.015300px;}
.ls27{letter-spacing:0.048000px;}
.lsa{letter-spacing:0.060001px;}
.ls1f{letter-spacing:0.067199px;}
.ls6{letter-spacing:0.096001px;}
.ls5{letter-spacing:0.114001px;}
.ls28{letter-spacing:0.115199px;}
.ls23{letter-spacing:0.153598px;}
.lsd{letter-spacing:0.270003px;}
.ls3{letter-spacing:0.314968px;}
.ls4{letter-spacing:0.575342px;}
.ls1{letter-spacing:0.617338px;}
.ls2{letter-spacing:0.680332px;}
.lsb{letter-spacing:2.810700px;}
.ls24{letter-spacing:2.929800px;}
.lsc{letter-spacing:3.151500px;}
.ls20{letter-spacing:7.924701px;}
.ls21{letter-spacing:7.939101px;}
.ls22{letter-spacing:8.265497px;}
.ls1d{letter-spacing:9.924099px;}
.ls1c{letter-spacing:9.960100px;}
.ls9{letter-spacing:10.266103px;}
.ls1e{letter-spacing:10.296103px;}
.ls7{letter-spacing:13.922801px;}
.ls17{letter-spacing:28.284283px;}
.lse{letter-spacing:28.326283px;}
.ls25{letter-spacing:33.264333px;}
.ls26{letter-spacing:33.426334px;}
.lsf{letter-spacing:38.868389px;}
.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;}
}
.ws71{word-spacing:-28.344283px;}
.ws0{word-spacing:-13.986000px;}
.ws37{word-spacing:-0.060001px;}
.ws1e{word-spacing:-0.054000px;}
.ws1e2{word-spacing:-0.051000px;}
.ws5b{word-spacing:-0.047999px;}
.ws5e{word-spacing:-0.041999px;}
.ws1{word-spacing:0.000000px;}
.ws70{word-spacing:0.846008px;}
.ws6b{word-spacing:0.948009px;}
.ws10e{word-spacing:7.742303px;}
.ws117{word-spacing:7.799902px;}
.ws120{word-spacing:7.910301px;}
.ws1f9{word-spacing:8.517000px;}
.ws8a{word-spacing:9.678097px;}
.ws82{word-spacing:9.690097px;}
.ws91{word-spacing:9.924099px;}
.wsec{word-spacing:9.960100px;}
.wsa1{word-spacing:10.013469px;}
.wsa4{word-spacing:10.030642px;}
.ws8c{word-spacing:10.032100px;}
.wse1{word-spacing:10.092101px;}
.ws5c{word-spacing:13.792603px;}
.wsd9{word-spacing:14.845302px;}
.ws2e{word-spacing:14.858802px;}
.ws60{word-spacing:14.859388px;}
.ws123{word-spacing:14.872302px;}
.ws61{word-spacing:14.876802px;}
.ws30{word-spacing:14.980613px;}
.ws5d{word-spacing:15.002186px;}
.ws2f{word-spacing:15.067012px;}
.ws31{word-spacing:15.110211px;}
.ws17a{word-spacing:15.614205px;}
.ws109{word-spacing:15.638205px;}
.ws183{word-spacing:15.657404px;}
.ws103{word-spacing:15.667004px;}
.ws191{word-spacing:15.671804px;}
.ws122{word-spacing:15.695804px;}
.ws59{word-spacing:15.700604px;}
.ws5a{word-spacing:15.705404px;}
.ws17b{word-spacing:15.719804px;}
.ws18e{word-spacing:15.724603px;}
.ws18a{word-spacing:15.729403px;}
.ws119{word-spacing:15.743803px;}
.ws102{word-spacing:15.767803px;}
.ws106{word-spacing:15.777403px;}
.ws17c{word-spacing:15.782203px;}
.ws114{word-spacing:15.787003px;}
.ws17d{word-spacing:15.796603px;}
.ws184{word-spacing:15.801402px;}
.ws113{word-spacing:15.815802px;}
.ws57{word-spacing:15.835002px;}
.ws18b{word-spacing:15.839802px;}
.ws33{word-spacing:15.844602px;}
.ws110{word-spacing:15.849402px;}
.ws111{word-spacing:15.854202px;}
.ws32{word-spacing:15.859002px;}
.ws11b{word-spacing:15.868602px;}
.ws118{word-spacing:15.878202px;}
.ws107{word-spacing:15.883001px;}
.ws108{word-spacing:15.892601px;}
.ws115{word-spacing:15.897401px;}
.ws112{word-spacing:15.902201px;}
.ws10f{word-spacing:15.911801px;}
.ws104{word-spacing:15.921401px;}
.ws105{word-spacing:15.931001px;}
.ws56{word-spacing:15.940601px;}
.ws10c{word-spacing:15.964600px;}
.ws116{word-spacing:16.007800px;}
.ws186{word-spacing:16.022200px;}
.ws11e{word-spacing:16.031800px;}
.ws17f{word-spacing:16.041399px;}
.ws1d3{word-spacing:16.626000px;}
.ws207{word-spacing:16.631100px;}
.ws21e{word-spacing:16.656600px;}
.ws1df{word-spacing:16.666800px;}
.ws1dc{word-spacing:16.677000px;}
.ws210{word-spacing:16.707600px;}
.ws1e8{word-spacing:16.738200px;}
.ws1ec{word-spacing:16.758600px;}
.ws1eb{word-spacing:16.763700px;}
.ws206{word-spacing:16.773900px;}
.ws1f6{word-spacing:16.784100px;}
.ws1d6{word-spacing:16.799400px;}
.ws216{word-spacing:16.824900px;}
.ws203{word-spacing:16.845300px;}
.ws1f1{word-spacing:16.926900px;}
.ws1d1{word-spacing:16.947300px;}
.ws221{word-spacing:16.962600px;}
.ws200{word-spacing:17.003400px;}
.ws1ee{word-spacing:17.008500px;}
.ws25{word-spacing:17.112600px;}
.ws205{word-spacing:17.232900px;}
.ws2d{word-spacing:17.339400px;}
.ws1dd{word-spacing:17.380800px;}
.ws20b{word-spacing:17.457300px;}
.ws1fa{word-spacing:17.493000px;}
.ws1d{word-spacing:17.496000px;}
.ws1e7{word-spacing:17.640900px;}
.ws12{word-spacing:17.663400px;}
.ws22{word-spacing:17.674200px;}
.ws1f{word-spacing:17.679600px;}
.ws16{word-spacing:17.685000px;}
.wsd{word-spacing:17.690400px;}
.wsf{word-spacing:17.717400px;}
.ws15{word-spacing:17.760600px;}
.ws14{word-spacing:17.776800px;}
.wse{word-spacing:17.787600px;}
.ws10{word-spacing:17.793000px;}
.ws18{word-spacing:17.798400px;}
.ws19{word-spacing:17.841600px;}
.ws11{word-spacing:17.901000px;}
.ws17{word-spacing:18.009000px;}
.ws1a{word-spacing:18.127800px;}
.ws13{word-spacing:18.181800px;}
.ws1cf{word-spacing:18.319200px;}
.ws1de{word-spacing:18.370200px;}
.ws1d7{word-spacing:18.390600px;}
.ws28{word-spacing:18.392400px;}
.ws1c{word-spacing:18.473400px;}
.ws1b{word-spacing:18.478800px;}
.ws182{word-spacing:18.647767px;}
.ws1f3{word-spacing:18.650700px;}
.ws20f{word-spacing:18.671100px;}
.ws2c{word-spacing:18.700200px;}
.ws1e3{word-spacing:18.931200px;}
.ws24{word-spacing:19.072800px;}
.ws21b{word-spacing:19.079100px;}
.ws198{word-spacing:19.248192px;}
.ws199{word-spacing:19.272193px;}
.ws1ce{word-spacing:19.283100px;}
.wsed{word-spacing:19.320193px;}
.ws5f{word-spacing:19.323924px;}
.ws1d4{word-spacing:19.344300px;}
.ws209{word-spacing:19.390200px;}
.ws1d5{word-spacing:19.507500px;}
.ws217{word-spacing:19.527900px;}
.wsf6{word-spacing:19.566196px;}
.wsfb{word-spacing:19.650196px;}
.ws3c{word-spacing:19.656197px;}
.wsf5{word-spacing:19.662197px;}
.ws20a{word-spacing:19.680900px;}
.ws65{word-spacing:19.686197px;}
.ws1b2{word-spacing:19.692197px;}
.ws2{word-spacing:19.698197px;}
.wse5{word-spacing:19.704197px;}
.wsf8{word-spacing:19.710197px;}
.wse6{word-spacing:19.740197px;}
.ws193{word-spacing:19.752198px;}
.ws1cd{word-spacing:19.764198px;}
.ws7c{word-spacing:19.776198px;}
.wsae{word-spacing:19.854199px;}
.wsfc{word-spacing:19.860199px;}
.ws13f{word-spacing:19.878199px;}
.ws66{word-spacing:19.884199px;}
.wsfa{word-spacing:19.908199px;}
.wsdc{word-spacing:19.932199px;}
.ws51{word-spacing:19.944199px;}
.wsd2{word-spacing:19.950200px;}
.ws13a{word-spacing:19.962200px;}
.ws4e{word-spacing:19.980200px;}
.wsdb{word-spacing:20.010200px;}
.ws23{word-spacing:20.017800px;}
.ws4c{word-spacing:20.034200px;}
.ws1e6{word-spacing:20.043000px;}
.wsaf{word-spacing:20.064201px;}
.ws49{word-spacing:20.100201px;}
.ws215{word-spacing:20.109300px;}
.ws20c{word-spacing:20.145000px;}
.wsa6{word-spacing:20.154202px;}
.ws52{word-spacing:20.166202px;}
.wsf9{word-spacing:20.196202px;}
.ws99{word-spacing:20.238202px;}
.ws7d{word-spacing:20.250202px;}
.ws1ed{word-spacing:20.277600px;}
.wsde{word-spacing:20.292203px;}
.ws146{word-spacing:20.370204px;}
.ws11f{word-spacing:20.399745px;}
.ws2b{word-spacing:20.449800px;}
.ws1b4{word-spacing:20.556206px;}
.ws13c{word-spacing:20.568206px;}
.wsc1{word-spacing:20.574206px;}
.ws175{word-spacing:20.598206px;}
.ws1a1{word-spacing:20.676207px;}
.wsa{word-spacing:20.695697px;}
.ws1b6{word-spacing:20.706207px;}
.ws8{word-spacing:20.739798px;}
.ws9{word-spacing:20.746098px;}
.ws5{word-spacing:20.758698px;}
.wsb{word-spacing:20.764998px;}
.ws1c0{word-spacing:20.772208px;}
.ws4f{word-spacing:20.790198px;}
.ws213{word-spacing:20.864100px;}
.ws20d{word-spacing:20.884500px;}
.ws21{word-spacing:20.887200px;}
.ws6{word-spacing:20.909899px;}
.ws1db{word-spacing:20.915100px;}
.ws41{word-spacing:20.940209px;}
.ws7{word-spacing:20.941399px;}
.ws7b{word-spacing:20.958210px;}
.ws1a6{word-spacing:20.976210px;}
.wsc{word-spacing:21.017000px;}
.ws63{word-spacing:21.018210px;}
.ws1d2{word-spacing:21.086301px;}
.ws140{word-spacing:21.132211px;}
.ws2a{word-spacing:21.195000px;}
.ws1d8{word-spacing:21.200700px;}
.ws21c{word-spacing:21.205800px;}
.wsbe{word-spacing:21.360214px;}
.wsbd{word-spacing:21.366214px;}
.ws10b{word-spacing:21.374133px;}
.wsbc{word-spacing:21.390214px;}
.ws212{word-spacing:21.430200px;}
.ws55{word-spacing:21.486215px;}
.ws121{word-spacing:21.513331px;}
.ws1f5{word-spacing:21.516900px;}
.wsac{word-spacing:21.582216px;}
.ws1cb{word-spacing:21.588216px;}
.ws10a{word-spacing:21.628530px;}
.ws14b{word-spacing:21.636216px;}
.ws149{word-spacing:21.666217px;}
.ws201{word-spacing:21.736200px;}
.ws1fd{word-spacing:21.751500px;}
.ws14a{word-spacing:21.774218px;}
.ws15b{word-spacing:21.792218px;}
.ws1f4{word-spacing:21.792300px;}
.wse9{word-spacing:21.828218px;}
.ws220{word-spacing:21.833100px;}
.ws20{word-spacing:21.875400px;}
.ws15a{word-spacing:21.900219px;}
.ws78{word-spacing:21.972220px;}
.ws148{word-spacing:21.978220px;}
.ws141{word-spacing:21.996220px;}
.ws1e9{word-spacing:21.996300px;}
.ws64{word-spacing:22.038220px;}
.ws202{word-spacing:22.047300px;}
.wscc{word-spacing:22.116221px;}
.wse0{word-spacing:22.158222px;}
.ws9a{word-spacing:22.356224px;}
.ws9b{word-spacing:22.374224px;}
.ws21d{word-spacing:22.455300px;}
.wsb1{word-spacing:22.464225px;}
.ws44{word-spacing:22.470225px;}
.ws12a{word-spacing:22.536225px;}
.ws19a{word-spacing:22.560226px;}
.wsab{word-spacing:22.578226px;}
.ws12b{word-spacing:22.596226px;}
.ws153{word-spacing:22.662227px;}
.ws27{word-spacing:22.663800px;}
.ws21a{word-spacing:22.674600px;}
.ws16f{word-spacing:22.710227px;}
.wsff{word-spacing:22.734227px;}
.wsea{word-spacing:22.812228px;}
.ws1fc{word-spacing:22.960200px;}
.ws16e{word-spacing:23.088231px;}
.ws152{word-spacing:23.136231px;}
.ws1e0{word-spacing:23.159100px;}
.ws145{word-spacing:23.214232px;}
.ws178{word-spacing:23.226910px;}
.ws26{word-spacing:23.236200px;}
.ws159{word-spacing:23.244232px;}
.ws147{word-spacing:23.262233px;}
.wse8{word-spacing:23.292233px;}
.ws177{word-spacing:23.327708px;}
.ws3f{word-spacing:23.370234px;}
.wsf3{word-spacing:23.430234px;}
.ws204{word-spacing:23.475300px;}
.ws40{word-spacing:23.478235px;}
.wsf4{word-spacing:23.556236px;}
.ws1bc{word-spacing:23.616236px;}
.ws97{word-spacing:23.694237px;}
.ws12e{word-spacing:23.742237px;}
.ws124{word-spacing:23.916239px;}
.ws86{word-spacing:24.030240px;}
.wsc8{word-spacing:24.072241px;}
.ws85{word-spacing:24.114241px;}
.ws218{word-spacing:24.153600px;}
.ws1c7{word-spacing:24.162242px;}
.ws223{word-spacing:24.163800px;}
.ws1e4{word-spacing:24.214800px;}
.ws156{word-spacing:24.282243px;}
.ws8f{word-spacing:24.300243px;}
.ws39{word-spacing:24.312243px;}
.wsd8{word-spacing:24.390244px;}
.ws3d{word-spacing:24.396244px;}
.wsb7{word-spacing:24.408244px;}
.ws155{word-spacing:24.426244px;}
.ws19e{word-spacing:24.438244px;}
.wsa0{word-spacing:24.450244px;}
.wsd6{word-spacing:24.474245px;}
.ws211{word-spacing:24.500400px;}
.wsd7{word-spacing:24.546245px;}
.wsa2{word-spacing:24.636246px;}
.ws1cc{word-spacing:24.654247px;}
.ws1f8{word-spacing:24.663600px;}
.ws16d{word-spacing:24.690247px;}
.ws54{word-spacing:24.714247px;}
.ws19b{word-spacing:24.792248px;}
.ws96{word-spacing:24.960250px;}
.wsb3{word-spacing:25.002250px;}
.wsef{word-spacing:25.038250px;}
.ws34{word-spacing:25.062251px;}
.ws150{word-spacing:25.068251px;}
.ws161{word-spacing:25.098251px;}
.ws9e{word-spacing:25.170252px;}
.ws1e5{word-spacing:25.173600px;}
.ws142{word-spacing:25.188252px;}
.ws176{word-spacing:25.194252px;}
.ws1a7{word-spacing:25.260253px;}
.ws67{word-spacing:25.272253px;}
.ws151{word-spacing:25.284253px;}
.ws4a{word-spacing:25.398254px;}
.ws197{word-spacing:25.422254px;}
.ws19f{word-spacing:25.446254px;}
.ws42{word-spacing:25.458255px;}
.ws129{word-spacing:25.470255px;}
.ws160{word-spacing:25.476255px;}
.ws12f{word-spacing:25.482255px;}
.ws196{word-spacing:25.488255px;}
.ws1c6{word-spacing:25.530255px;}
.ws1a2{word-spacing:25.620256px;}
.ws1b1{word-spacing:25.728257px;}
.ws1a3{word-spacing:25.770258px;}
.ws1b8{word-spacing:25.782258px;}
.ws13b{word-spacing:25.812258px;}
.ws1bf{word-spacing:25.902259px;}
.ws214{word-spacing:25.974300px;}
.ws92{word-spacing:26.040260px;}
.wsb4{word-spacing:26.046260px;}
.ws62{word-spacing:26.100261px;}
.wsb8{word-spacing:26.148261px;}
.wsb0{word-spacing:26.160262px;}
.wsb9{word-spacing:26.250263px;}
.ws7e{word-spacing:26.382264px;}
.ws38{word-spacing:26.448264px;}
.ws36{word-spacing:26.454265px;}
.ws195{word-spacing:26.460265px;}
.wsba{word-spacing:26.562266px;}
.ws35{word-spacing:26.700267px;}
.wsfd{word-spacing:26.808268px;}
.wsa9{word-spacing:26.820268px;}
.ws1d0{word-spacing:26.902500px;}
.ws208{word-spacing:26.948400px;}
.ws1af{word-spacing:27.006270px;}
.ws95{word-spacing:27.012270px;}
.ws3e{word-spacing:27.126271px;}
.ws173{word-spacing:27.132271px;}
.ws8e{word-spacing:27.168272px;}
.wsc2{word-spacing:27.180272px;}
.ws94{word-spacing:27.222272px;}
.ws68{word-spacing:27.288273px;}
.ws14c{word-spacing:27.324273px;}
.wsc6{word-spacing:27.336273px;}
.ws1c2{word-spacing:27.402274px;}
.wsf0{word-spacing:27.414274px;}
.ws1fb{word-spacing:27.417600px;}
.ws79{word-spacing:27.420274px;}
.ws1ef{word-spacing:27.438000px;}
.ws138{word-spacing:27.480275px;}
.ws4b{word-spacing:27.576276px;}
.ws50{word-spacing:27.642276px;}
.ws3{word-spacing:27.736800px;}
.wsa7{word-spacing:27.774278px;}
.ws81{word-spacing:27.786278px;}
.ws4{word-spacing:27.787200px;}
.ws29{word-spacing:27.815400px;}
.ws1a0{word-spacing:27.912279px;}
.ws1b5{word-spacing:27.918279px;}
.ws12c{word-spacing:27.966280px;}
.ws1b3{word-spacing:27.996280px;}
.ws130{word-spacing:28.020280px;}
.wsc3{word-spacing:28.032280px;}
.ws1a5{word-spacing:28.044280px;}
.wsad{word-spacing:28.056281px;}
.wsc5{word-spacing:28.086281px;}
.ws14f{word-spacing:28.116281px;}
.ws12d{word-spacing:28.152282px;}
.wsc4{word-spacing:28.218282px;}
.ws171{word-spacing:28.308283px;}
.ws162{word-spacing:28.434284px;}
.wse4{word-spacing:28.500285px;}
.wsf1{word-spacing:28.506285px;}
.ws3a{word-spacing:28.704287px;}
.ws77{word-spacing:28.794288px;}
.ws3b{word-spacing:28.800288px;}
.ws1f2{word-spacing:28.835400px;}
.wsf2{word-spacing:28.836288px;}
.wsd1{word-spacing:29.022290px;}
.ws8b{word-spacing:29.358294px;}
.ws144{word-spacing:29.364294px;}
.ws172{word-spacing:29.436294px;}
.ws143{word-spacing:29.484295px;}
.wsb6{word-spacing:29.508295px;}
.ws16a{word-spacing:29.532295px;}
.wsd3{word-spacing:29.580296px;}
.wsdd{word-spacing:29.586296px;}
.ws1fe{word-spacing:29.676900px;}
.ws1ac{word-spacing:29.742297px;}
.ws169{word-spacing:29.784298px;}
.ws1ea{word-spacing:29.886000px;}
.ws190{word-spacing:29.894026px;}
.ws6f{word-spacing:29.982300px;}
.wsdf{word-spacing:30.042300px;}
.ws21f{word-spacing:30.074700px;}
.ws6d{word-spacing:30.132301px;}
.ws84{word-spacing:30.156302px;}
.ws89{word-spacing:30.222302px;}
.ws1a8{word-spacing:30.240302px;}
.ws1c5{word-spacing:30.300303px;}
.wsa8{word-spacing:30.348303px;}
.ws163{word-spacing:30.384304px;}
.ws72{word-spacing:30.462305px;}
.wsaa{word-spacing:30.504305px;}
.ws14e{word-spacing:30.690307px;}
.ws133{word-spacing:30.744307px;}
.ws90{word-spacing:30.966310px;}
.ws165{word-spacing:31.092311px;}
.ws20e{word-spacing:31.166100px;}
.ws80{word-spacing:31.176312px;}
.ws166{word-spacing:31.206312px;}
.ws1bd{word-spacing:31.212312px;}
.ws47{word-spacing:31.308313px;}
.ws14d{word-spacing:31.344313px;}
.wse3{word-spacing:31.452315px;}
.ws19d{word-spacing:31.572316px;}
.ws7f{word-spacing:31.638316px;}
.ws1c4{word-spacing:31.662317px;}
.ws219{word-spacing:31.839300px;}
.ws1ba{word-spacing:31.848318px;}
.ws46{word-spacing:31.854319px;}
.ws1ad{word-spacing:31.902319px;}
.ws1ff{word-spacing:32.058600px;}
.ws192{word-spacing:32.178322px;}
.ws6c{word-spacing:32.184322px;}
.ws75{word-spacing:32.478325px;}
.ws1ca{word-spacing:32.550326px;}
.ws154{word-spacing:32.568326px;}
.ws1a4{word-spacing:32.640326px;}
.ws74{word-spacing:32.730327px;}
.ws158{word-spacing:32.736327px;}
.ws1b9{word-spacing:32.760328px;}
.wsbf{word-spacing:32.766328px;}
.ws1c1{word-spacing:32.844328px;}
.ws6a{word-spacing:32.862329px;}
.ws128{word-spacing:32.874329px;}
.ws126{word-spacing:32.892329px;}
.ws127{word-spacing:32.916329px;}
.ws1b0{word-spacing:33.018330px;}
.ws167{word-spacing:33.090331px;}
.ws1bb{word-spacing:33.222332px;}
.ws164{word-spacing:33.240332px;}
.ws170{word-spacing:33.270333px;}
.ws15c{word-spacing:33.318333px;}
.ws15d{word-spacing:33.342333px;}
.ws9d{word-spacing:33.354334px;}
.ws168{word-spacing:33.372334px;}
.ws15e{word-spacing:33.498335px;}
.ws53{word-spacing:33.546335px;}
.ws8d{word-spacing:33.558336px;}
.ws9c{word-spacing:33.570336px;}
.ws45{word-spacing:33.618336px;}
.ws1e1{word-spacing:33.685500px;}
.ws48{word-spacing:33.942339px;}
.wsbb{word-spacing:34.038340px;}
.ws132{word-spacing:34.080341px;}
.ws131{word-spacing:34.098341px;}
.wsda{word-spacing:34.656347px;}
.ws1d9{word-spacing:35.184900px;}
.ws139{word-spacing:35.262353px;}
.wse7{word-spacing:35.700357px;}
.ws157{word-spacing:35.766358px;}
.ws1f7{word-spacing:36.148800px;}
.wsb2{word-spacing:36.234362px;}
.ws1f0{word-spacing:36.327300px;}
.wsd4{word-spacing:36.618366px;}
.ws16c{word-spacing:36.654367px;}
.ws13e{word-spacing:36.696367px;}
.ws16b{word-spacing:36.714367px;}
.ws4d{word-spacing:36.864369px;}
.ws13d{word-spacing:36.972370px;}
.wsb5{word-spacing:37.674377px;}
.ws1be{word-spacing:37.746377px;}
.wsf7{word-spacing:37.848378px;}
.ws1c8{word-spacing:37.920379px;}
.ws98{word-spacing:37.992380px;}
.wseb{word-spacing:38.352384px;}
.ws222{word-spacing:38.510100px;}
.wsca{word-spacing:38.628386px;}
.wscb{word-spacing:38.658387px;}
.wsc9{word-spacing:39.018390px;}
.ws1c3{word-spacing:39.078391px;}
.ws7a{word-spacing:39.300393px;}
.wsce{word-spacing:39.624396px;}
.ws1b7{word-spacing:39.660397px;}
.wsd0{word-spacing:39.936399px;}
.ws83{word-spacing:40.032400px;}
.wsd5{word-spacing:40.248402px;}
.wsa5{word-spacing:40.308403px;}
.ws43{word-spacing:40.362404px;}
.ws1ab{word-spacing:40.440404px;}
.ws194{word-spacing:40.554406px;}
.wsa3{word-spacing:40.560406px;}
.ws1ae{word-spacing:40.566406px;}
.wscf{word-spacing:41.382414px;}
.wsfe{word-spacing:41.472415px;}
.ws19c{word-spacing:41.688417px;}
.wsc7{word-spacing:41.718417px;}
.ws69{word-spacing:42.390424px;}
.ws76{word-spacing:42.444424px;}
.ws15f{word-spacing:42.972430px;}
.wscd{word-spacing:43.224432px;}
.ws174{word-spacing:43.446434px;}
.wsc0{word-spacing:43.800438px;}
.ws93{word-spacing:44.244442px;}
.ws87{word-spacing:44.460445px;}
.wsee{word-spacing:45.750458px;}
.ws1c9{word-spacing:46.902469px;}
.ws9f{word-spacing:47.916479px;}
.ws137{word-spacing:48.090481px;}
.ws135{word-spacing:48.198482px;}
.ws136{word-spacing:48.222482px;}
.ws1da{word-spacing:48.276600px;}
.ws134{word-spacing:48.288483px;}
.ws1aa{word-spacing:49.506495px;}
.ws1a9{word-spacing:49.530495px;}
.ws125{word-spacing:51.282513px;}
.ws6e{word-spacing:53.670537px;}
.ws88{word-spacing:55.206552px;}
.ws100{word-spacing:59.856599px;}
.ws101{word-spacing:59.934599px;}
.ws73{word-spacing:60.234602px;}
.wse2{word-spacing:76.110761px;}
.ws11a{word-spacing:82.990963px;}
.ws58{word-spacing:92.043797px;}
.ws11c{word-spacing:105.781078px;}
.ws180{word-spacing:117.814527px;}
.ws11d{word-spacing:128.580793px;}
.ws10d{word-spacing:135.713504px;}
.ws17e{word-spacing:137.422282px;}
.ws179{word-spacing:157.481231px;}
.ws181{word-spacing:183.012112px;}
.ws18c{word-spacing:261.001537px;}
.ws188{word-spacing:272.228597px;}
.ws185{word-spacing:286.503619px;}
.ws18d{word-spacing:297.740278px;}
.ws187{word-spacing:309.303334px;}
.ws189{word-spacing:671.103611px;}
.ws18f{word-spacing:682.671467px;}
._18{margin-left:-29.862299px;}
._19{margin-left:-28.764288px;}
._2{margin-left:-4.968000px;}
._0{margin-left:-3.726000px;}
._1{margin-left:-2.160000px;}
._3{margin-left:-1.080000px;}
._7{width:1.688416px;}
._75{width:7.804702px;}
._20{width:9.948099px;}
._16{width:13.778272px;}
._15{width:14.842588px;}
._c{width:15.897602px;}
._9{width:17.118000px;}
._8{width:18.819000px;}
._1d{width:20.003588px;}
._b{width:21.211200px;}
._a{width:22.966203px;}
._d{width:23.970601px;}
._1b{width:25.302253px;}
._e{width:26.316263px;}
._f{width:27.594276px;}
._6{width:28.845600px;}
._17{width:30.627907px;}
._11{width:32.454325px;}
._13{width:34.686347px;}
._1a{width:36.681968px;}
._12{width:37.992380px;}
._21{width:39.120391px;}
._8d{width:40.182402px;}
._10{width:41.658417px;}
._1e{width:43.122431px;}
._22{width:44.862449px;}
._24{width:47.028470px;}
._1f{width:49.206492px;}
._64{width:52.608526px;}
._1c{width:56.436564px;}
._8e{width:73.674600px;}
._14{width:91.911812px;}
._5e{width:98.888364px;}
._3c{width:108.277047px;}
._3f{width:118.932913px;}
._51{width:131.004762px;}
._23{width:137.810108px;}
._60{width:144.367795px;}
._63{width:151.738979px;}
._33{width:161.119586px;}
._79{width:163.716354px;}
._52{width:164.863539px;}
._34{width:165.909926px;}
._62{width:167.119511px;}
._76{width:172.812240px;}
._3e{width:174.377020px;}
._58{width:179.987949px;}
._41{width:181.528931px;}
._37{width:183.900101px;}
._38{width:188.680841px;}
._6d{width:193.216785px;}
._68{width:197.186335px;}
._4b{width:204.309446px;}
._27{width:206.699816px;}
._6c{width:208.062999px;}
._3a{width:211.538156px;}
._43{width:227.181160px;}
._42{width:228.477144px;}
._26{width:229.489931px;}
._6a{width:231.150711px;}
._28{width:234.232272px;}
._66{width:243.798552px;}
._44{width:248.776090px;}
._82{width:250.566468px;}
._2a{width:252.280046px;}
._67{width:253.652829px;}
._2d{width:257.060787px;}
._7a{width:261.548731px;}
._4f{width:267.323058px;}
._2c{width:275.098961px;}
._73{width:276.442944px;}
._30{width:279.841302px;}
._6e{width:282.279671px;}
._4e{width:285.514831px;}
._2f{width:297.831477px;}
._31{width:302.631417px;}
._74{width:304.719391px;}
._5f{width:306.860164px;}
._71{width:307.973750px;}
._78{width:310.013725px;}
._6f{width:316.848839px;}
._49{width:318.653617px;}
._50{width:319.738403px;}
._77{width:322.272772px;}
._59{width:325.311134px;}
._88{width:326.981513px;}
._5b{width:353.309184px;}
._4a{width:354.941163px;}
._69{width:356.045149px;}
._32{width:367.056212px;}
._39{width:368.390595px;}
._35{width:369.792178px;}
._36{width:372.432145px;}
._7c{width:377.227285px;}
._86{width:378.528068px;}
._6b{width:380.755240px;}
._65{width:383.443207px;}
._5c{width:391.108711px;}
._45{width:405.398132px;}
._48{width:410.361270px;}
._46{width:417.421982px;}
._7d{width:423.426707px;}
._3b{width:432.426595px;}
._5d{width:437.581730px;}
._61{width:452.403945px;}
._25{width:458.216672px;}
._2e{width:459.551056px;}
._29{width:460.952638px;}
._2b{width:463.592605px;}
._4d{width:464.893389px;}
._40{width:469.717328px;}
._4c{width:473.048487px;}
._81{width:479.782803px;}
._7f{width:491.077061px;}
._80{width:505.712079px;}
._4{width:556.740000px;}
._7b{width:579.712754px;}
._72{width:590.623017px;}
._55{width:608.205197px;}
._54{width:611.613155px;}
._56{width:613.677129px;}
._70{width:620.046649px;}
._47{width:623.857802px;}
._7e{width:641.886376px;}
._85{width:649.695879px;}
._89{width:653.449432px;}
._8c{width:661.263734px;}
._3d{width:665.041287px;}
._83{width:673.887576px;}
._84{width:676.527543px;}
._8a{width:685.455432px;}
._87{width:686.809015px;}
._8b{width:688.095399px;}
._5{width:886.788000px;}
._57{width:909.017437px;}
._5a{width:967.528706px;}
._53{width:1230.267821px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,21,126);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:33.598800px;}
.fsa{font-size:35.995200px;}
.fs9{font-size:41.995800px;}
.fsd{font-size:41.999400px;}
.fsb{font-size:44.999400px;}
.fsc{font-size:47.999400px;}
.fs2{font-size:48.000000px;}
.fsf{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:60.000600px;}
.fs8{font-size:63.000600px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y75{bottom:44.814965px;}
.y74{bottom:56.805794px;}
.y185{bottom:60.449232px;}
.ye2{bottom:60.451162px;}
.y227{bottom:60.455925px;}
.y14e{bottom:60.460950px;}
.y104{bottom:60.466970px;}
.yaa{bottom:60.473349px;}
.y1f1{bottom:60.542350px;}
.y2{bottom:67.597501px;}
.y73{bottom:68.796623px;}
.y226{bottom:75.847725px;}
.ye1{bottom:78.479842px;}
.y14d{bottom:78.489630px;}
.y108{bottom:78.495650px;}
.y1f0{bottom:78.740532px;}
.y184{bottom:79.073418px;}
.y103{bottom:79.260658px;}
.ya9{bottom:79.267037px;}
.y72{bottom:80.872500px;}
.y1{bottom:84.097501px;}
.y225{bottom:91.155375px;}
.ye0{bottom:96.508523px;}
.y14c{bottom:96.518310px;}
.y107{bottom:96.524331px;}
.y1ef{bottom:97.024215px;}
.y183{bottom:97.612103px;}
.y102{bottom:97.968845px;}
.ya8{bottom:97.975224px;}
.y71{bottom:98.050350px;}
.y224{bottom:106.122600px;}
.y14b{bottom:114.461490px;}
.y106{bottom:114.467510px;}
.ydf{bottom:114.537203px;}
.y70{bottom:114.888150px;}
.y1ee{bottom:115.307897px;}
.y182{bottom:116.236290px;}
.y101{bottom:116.762533px;}
.ya7{bottom:116.768912px;}
.y223{bottom:121.430250px;}
.yde{bottom:132.480382px;}
.y14a{bottom:132.490170px;}
.y1ed{bottom:133.506079px;}
.y181{bottom:134.774975px;}
.ya6{bottom:135.477099px;}
.y222{bottom:136.822050px;}
.y105{bottom:142.615292px;}
.y100{bottom:144.910314px;}
.y61{bottom:150.007171px;}
.y6f{bottom:150.011143px;}
.ydd{bottom:150.509063px;}
.y149{bottom:150.518850px;}
.y221{bottom:151.789275px;}
.y1ec{bottom:151.789762px;}
.y180{bottom:153.399161px;}
.ya5{bottom:154.270787px;}
.y220{bottom:167.096925px;}
.y60{bottom:167.950351px;}
.y148{bottom:168.462030px;}
.y6e{bottom:168.464328px;}
.ydc{bottom:168.537743px;}
.y1eb{bottom:170.073445px;}
.y17f{bottom:171.937847px;}
.ya4{bottom:172.978974px;}
.y21f{bottom:182.488725px;}
.y5f{bottom:185.893530px;}
.y147{bottom:186.490710px;}
.ydb{bottom:186.566423px;}
.y6d{bottom:186.917512px;}
.y1ea{bottom:188.357128px;}
.y17e{bottom:190.476532px;}
.ya3{bottom:191.772662px;}
.y21e{bottom:197.455950px;}
.yff{bottom:201.036376px;}
.y5e{bottom:203.836710px;}
.yda{bottom:204.509603px;}
.y146{bottom:204.519390px;}
.y1e9{bottom:206.555310px;}
.y17d{bottom:209.100718px;}
.ya2{bottom:210.480849px;}
.y21d{bottom:212.763600px;}
.y6c{bottom:215.065294px;}
.y143{bottom:216.510136px;}
.yfe{bottom:219.744563px;}
.y5d{bottom:221.779889px;}
.y145{bottom:222.462570px;}
.yd9{bottom:222.538283px;}
.y1e8{bottom:224.838993px;}
.y17c{bottom:227.639404px;}
.y21c{bottom:228.155400px;}
.ya1{bottom:229.274537px;}
.y142{bottom:230.031567px;}
.yfd{bottom:238.538251px;}
.y5c{bottom:239.723069px;}
.y144{bottom:240.491250px;}
.yd8{bottom:240.566963px;}
.y21b{bottom:243.122625px;}
.y1e7{bottom:243.122676px;}
.y141{bottom:243.467799px;}
.y17b{bottom:246.263590px;}
.ya0{bottom:247.982724px;}
.y140{bottom:256.989230px;}
.yfc{bottom:257.246438px;}
.y5b{bottom:257.666248px;}
.y21a{bottom:258.430275px;}
.yd7{bottom:258.595643px;}
.y1e6{bottom:261.320858px;}
.y6b{bottom:262.261765px;}
.y17a{bottom:264.802275px;}
.y9f{bottom:266.776412px;}
.y219{bottom:273.737925px;}
.y13f{bottom:275.351803px;}
.y5a{bottom:275.523927px;}
.yfb{bottom:276.040126px;}
.yd6{bottom:276.538823px;}
.y1e5{bottom:279.604540px;}
.y6a{bottom:280.714950px;}
.y179{bottom:283.340961px;}
.y9e{bottom:285.484599px;}
.y218{bottom:288.789300px;}
.y13e{bottom:288.873234px;}
.y59{bottom:293.467106px;}
.yd5{bottom:294.567503px;}
.yfa{bottom:294.748313px;}
.y1e4{bottom:297.888223px;}
.y1b8{bottom:301.037677px;}
.y178{bottom:301.965147px;}
.y13d{bottom:302.394665px;}
.y217{bottom:304.096950px;}
.y9d{bottom:304.278287px;}
.y69{bottom:308.862900px;}
.y58{bottom:311.410285px;}
.yd4{bottom:312.596183px;}
.yf9{bottom:313.542001px;}
.y1b7{bottom:314.559108px;}
.y13c{bottom:315.830897px;}
.y1e3{bottom:316.171906px;}
.y216{bottom:319.404600px;}
.y177{bottom:320.503832px;}
.y9c{bottom:322.986474px;}
.y1b6{bottom:327.995340px;}
.y13b{bottom:329.352328px;}
.y57{bottom:329.438966px;}
.yd3{bottom:330.624864px;}
.yf8{bottom:332.250188px;}
.y1e2{bottom:334.370088px;}
.y19{bottom:334.792501px;}
.y215{bottom:334.796400px;}
.y176{bottom:338.532513px;}
.y9b{bottom:341.780162px;}
.y13a{bottom:342.873759px;}
.y1b5{bottom:346.363510px;}
.y56{bottom:347.467646px;}
.yd2{bottom:348.568043px;}
.y214{bottom:349.763625px;}
.y1e1{bottom:352.653771px;}
.y68{bottom:356.143733px;}
.y139{bottom:356.395190px;}
.y175{bottom:357.071198px;}
.y1b4{bottom:359.884941px;}
.yf7{bottom:360.397969px;}
.y9a{bottom:360.488349px;}
.y213{bottom:365.071275px;}
.y55{bottom:365.581827px;}
.yd1{bottom:366.596723px;}
.y138{bottom:369.831422px;}
.y1e0{bottom:370.937454px;}
.y1b3{bottom:373.406372px;}
.y67{bottom:374.596917px;}
.y174{bottom:375.695384px;}
.y99{bottom:379.282037px;}
.y212{bottom:380.378925px;}
.y137{bottom:383.352853px;}
.y54{bottom:383.696008px;}
.yd0{bottom:384.625404px;}
.y1b2{bottom:386.927803px;}
.y1df{bottom:389.221136px;}
.y66{bottom:392.966101px;}
.y173{bottom:394.234070px;}
.y211{bottom:395.430300px;}
.y136{bottom:396.874284px;}
.y98{bottom:397.990224px;}
.y1b1{bottom:400.364035px;}
.y53{bottom:401.724689px;}
.y18{bottom:402.073500px;}
.ycf{bottom:402.654084px;}
.y1de{bottom:407.419318px;}
.y135{bottom:410.395715px;}
.y210{bottom:410.737950px;}
.y65{bottom:411.419286px;}
.y172{bottom:412.858256px;}
.y1b0{bottom:413.885466px;}
.yf6{bottom:416.524031px;}
.y97{bottom:416.783912px;}
.y52{bottom:419.838870px;}
.yce{bottom:420.597263px;}
.y134{bottom:423.831947px;}
.y1dd{bottom:425.703001px;}
.y20f{bottom:426.045600px;}
.y1af{bottom:427.406897px;}
.y64{bottom:429.872470px;}
.y171{bottom:431.396941px;}
.yf5{bottom:435.317718px;}
.y96{bottom:435.492099px;}
.y133{bottom:437.353378px;}
.y51{bottom:437.867550px;}
.ycd{bottom:438.625944px;}
.y1ae{bottom:440.928328px;}
.y20e{bottom:441.096975px;}
.y1dc{bottom:443.986684px;}
.y63{bottom:447.815649px;}
.y170{bottom:449.935627px;}
.y132{bottom:450.874809px;}
.yf4{bottom:454.025906px;}
.y95{bottom:454.200286px;}
.y1ad{bottom:454.364560px;}
.y20d{bottom:456.404625px;}
.ycc{bottom:456.654624px;}
.y1db{bottom:462.184866px;}
.y131{bottom:464.396240px;}
.y50{bottom:466.015650px;}
.y62{bottom:466.099332px;}
.y17{bottom:466.423500px;}
.y16f{bottom:468.559813px;}
.y20c{bottom:471.712275px;}
.y1ac{bottom:472.393135px;}
.yf3{bottom:472.819594px;}
.y94{bottom:472.993974px;}
.ycb{bottom:474.683304px;}
.y130{bottom:477.832472px;}
.y1da{bottom:480.468549px;}
.y20b{bottom:486.763650px;}
.y16e{bottom:487.098498px;}
.y93{bottom:491.022654px;}
.y1ab{bottom:491.187300px;}
.y12f{bottom:491.353903px;}
.yf2{bottom:491.527781px;}
.yca{bottom:492.711985px;}
.y1d9{bottom:498.752232px;}
.y15{bottom:500.773501px;}
.y20a{bottom:502.071300px;}
.y12e{bottom:504.875334px;}
.y16d{bottom:505.722684px;}
.y92{bottom:509.730842px;}
.yf1{bottom:510.321469px;}
.yc9{bottom:510.655164px;}
.y14{bottom:515.773501px;}
.y1d8{bottom:516.780912px;}
.y209{bottom:517.378950px;}
.y12d{bottom:518.396765px;}
.y16c{bottom:524.261370px;}
.y16{bottom:527.842501px;}
.y91{bottom:528.524530px;}
.yc8{bottom:528.683844px;}
.y13{bottom:530.773500px;}
.y12c{bottom:531.832997px;}
.y48{bottom:531.914250px;}
.y208{bottom:532.686600px;}
.y1d7{bottom:534.979094px;}
.y1aa{bottom:537.446995px;}
.yf0{bottom:538.469250px;}
.y16b{bottom:542.800055px;}
.y12b{bottom:545.354428px;}
.yc7{bottom:546.712525px;}
.y47{bottom:546.881700px;}
.y90{bottom:547.232717px;}
.y1a9{bottom:550.968426px;}
.y1d6{bottom:553.262777px;}
.y207{bottom:558.198300px;}
.y12a{bottom:558.875859px;}
.y16a{bottom:561.424241px;}
.y46{bottom:561.849150px;}
.yc6{bottom:564.741205px;}
.y8f{bottom:566.026405px;}
.yef{bottom:566.532150px;}
.y1a8{bottom:569.336596px;}
.y1d5{bottom:571.546460px;}
.y129{bottom:572.397290px;}
.y45{bottom:576.901650px;}
.y169{bottom:579.962927px;}
.yc5{bottom:582.684384px;}
.y1a7{bottom:582.858027px;}
.y1d4{bottom:589.744642px;}
.y44{bottom:591.869100px;}
.y8e{bottom:594.090185px;}
.y1a6{bottom:596.294259px;}
.y168{bottom:598.587113px;}
.y128{bottom:599.354953px;}
.yc4{bottom:600.713065px;}
.y206{bottom:604.714875px;}
.y43{bottom:606.921600px;}
.y1d3{bottom:608.028325px;}
.y1a5{bottom:609.815690px;}
.y12{bottom:612.561009px;}
.y127{bottom:612.876384px;}
.y167{bottom:617.125798px;}
.yc3{bottom:618.741745px;}
.y205{bottom:619.851675px;}
.y42{bottom:621.889050px;}
.yee{bottom:622.745475px;}
.y1a4{bottom:623.337121px;}
.y1d2{bottom:626.312007px;}
.y126{bottom:626.397815px;}
.y204{bottom:635.073900px;}
.y166{bottom:635.664484px;}
.yc2{bottom:636.770425px;}
.y41{bottom:636.856500px;}
.y1a3{bottom:636.858552px;}
.y125{bottom:639.834047px;}
.yed{bottom:641.453662px;}
.y11{bottom:642.951001px;}
.y1d1{bottom:644.595690px;}
.y4f{bottom:647.064169px;}
.y1a2{bottom:650.294784px;}
.y40{bottom:651.909000px;}
.y124{bottom:653.355478px;}
.y165{bottom:654.288670px;}
.yc1{bottom:654.713605px;}
.y8d{bottom:655.148296px;}
.yec{bottom:660.247350px;}
.y4e{bottom:660.585600px;}
.y203{bottom:660.925800px;}
.y10{bottom:661.010991px;}
.y1d0{bottom:662.793872px;}
.y1a1{bottom:663.816215px;}
.y3f{bottom:666.876450px;}
.y123{bottom:666.876909px;}
.y245{bottom:667.045575px;}
.y261{bottom:667.054500px;}
.yc0{bottom:672.742285px;}
.y164{bottom:672.827355px;}
.y8c{bottom:673.856483px;}
.y4d{bottom:674.106900px;}
.y1a0{bottom:677.337646px;}
.yeb{bottom:678.955537px;}
.yf{bottom:679.071004px;}
.y122{bottom:680.398340px;}
.y1cf{bottom:681.077555px;}
.y3e{bottom:681.928950px;}
.y244{bottom:682.098225px;}
.y260{bottom:683.551725px;}
.ybf{bottom:690.770965px;}
.y19f{bottom:690.859077px;}
.y163{bottom:691.451542px;}
.y8b{bottom:692.650171px;}
.y121{bottom:693.834572px;}
.y3d{bottom:696.896400px;}
.y243{bottom:697.065450px;}
.ye{bottom:697.130994px;}
.yea{bottom:697.749225px;}
.y1ce{bottom:699.361238px;}
.y25f{bottom:700.048950px;}
.y4c{bottom:701.064038px;}
.y19e{bottom:704.295309px;}
.y120{bottom:707.356003px;}
.y202{bottom:707.442300px;}
.ybe{bottom:708.799645px;}
.y162{bottom:709.990227px;}
.y8a{bottom:711.358358px;}
.y3c{bottom:711.863850px;}
.y242{bottom:712.116825px;}
.y4b{bottom:714.585469px;}
.y25e{bottom:715.101600px;}
.yd{bottom:715.191006px;}
.ye9{bottom:716.457412px;}
.y1cd{bottom:717.644921px;}
.y11f{bottom:720.877434px;}
.y19d{bottom:722.323884px;}
.y3b{bottom:726.916350px;}
.y241{bottom:727.084050px;}
.y4a{bottom:728.106900px;}
.y161{bottom:728.528912px;}
.y89{bottom:730.152046px;}
.y25d{bottom:731.598825px;}
.y201{bottom:733.294350px;}
.yc{bottom:733.715993px;}
.y11e{bottom:734.398865px;}
.ye8{bottom:735.251100px;}
.y1cc{bottom:735.843103px;}
.ybd{bottom:736.863426px;}
.y19c{bottom:741.032850px;}
.y49{bottom:741.628200px;}
.y3a{bottom:741.883350px;}
.y240{bottom:742.051275px;}
.y160{bottom:747.153099px;}
.y11d{bottom:747.835097px;}
.y25c{bottom:748.096050px;}
.y88{bottom:748.860233px;}
.ye7{bottom:753.959287px;}
.y1cb{bottom:754.126786px;}
.y23f{bottom:757.102650px;}
.y11c{bottom:761.356528px;}
.y25b{bottom:764.593275px;}
.y15f{bottom:765.691784px;}
.y87{bottom:767.653921px;}
.y23e{bottom:772.069875px;}
.y1ca{bottom:772.410468px;}
.ye6{bottom:772.752975px;}
.y19b{bottom:777.427815px;}
.y11b{bottom:779.385103px;}
.y25a{bottom:779.560500px;}
.y200{bottom:779.811075px;}
.ybc{bottom:784.145399px;}
.y15e{bottom:784.315970px;}
.y86{bottom:786.362108px;}
.yb{bottom:786.615002px;}
.y23d{bottom:787.037100px;}
.y39{bottom:788.909550px;}
.y1c9{bottom:790.608650px;}
.y19a{bottom:790.949246px;}
.ye5{bottom:791.461162px;}
.y1ff{bottom:794.947875px;}
.y259{bottom:796.057725px;}
.y11a{bottom:798.094069px;}
.y23c{bottom:802.088475px;}
.ybb{bottom:802.174079px;}
.y15d{bottom:802.854656px;}
.y36{bottom:803.961450px;}
.y38{bottom:803.962050px;}
.y199{bottom:804.470677px;}
.y85{bottom:805.155796px;}
.ya{bottom:807.615002px;}
.y1c8{bottom:808.892333px;}
.y37{bottom:809.914800px;}
.y1fe{bottom:810.084675px;}
.ye4{bottom:810.254850px;}
.y119{bottom:811.615500px;}
.y258{bottom:812.554950px;}
.y23b{bottom:817.055700px;}
.y33{bottom:818.928450px;}
.y35{bottom:818.928900px;}
.yba{bottom:820.202759px;}
.y15c{bottom:821.478842px;}
.y198{bottom:822.838847px;}
.y84{bottom:823.863983px;}
.y34{bottom:824.966700px;}
.y1fd{bottom:825.306900px;}
.y1c7{bottom:827.176016px;}
.y257{bottom:827.607600px;}
.y9{bottom:828.615002px;}
.y23a{bottom:832.107075px;}
.y30{bottom:833.980350px;}
.y32{bottom:833.980950px;}
.y197{bottom:836.360278px;}
.yb9{bottom:838.145939px;}
.y31{bottom:839.933700px;}
.y15b{bottom:840.017527px;}
.y83{bottom:842.657671px;}
.y256{bottom:844.104825px;}
.y1c6{bottom:845.204696px;}
.y239{bottom:847.074300px;}
.y2d{bottom:848.947350px;}
.y2f{bottom:848.947800px;}
.y8{bottom:849.615002px;}
.y196{bottom:849.796510px;}
.y1fc{bottom:850.818750px;}
.y2e{bottom:854.900550px;}
.yb8{bottom:856.174619px;}
.y15a{bottom:858.046208px;}
.y255{bottom:860.602050px;}
.y82{bottom:861.365858px;}
.y238{bottom:862.041525px;}
.y195{bottom:863.317941px;}
.y1c5{bottom:863.402878px;}
.y2a{bottom:863.914200px;}
.y2c{bottom:863.914800px;}
.y118{bottom:866.719899px;}
.y2b{bottom:869.952600px;}
.yb7{bottom:874.203299px;}
.y159{bottom:876.584893px;}
.y194{bottom:876.839372px;}
.y237{bottom:877.092900px;}
.y254{bottom:877.099275px;}
.y27{bottom:878.966250px;}
.y29{bottom:878.966700px;}
.y81{bottom:880.159546px;}
.y1c4{bottom:881.686561px;}
.y28{bottom:884.919450px;}
.y117{bottom:885.088069px;}
.y193{bottom:890.360803px;}
.y236{bottom:892.060125px;}
.y253{bottom:892.066500px;}
.yb6{bottom:892.231980px;}
.y26{bottom:893.933700px;}
.y158{bottom:895.123578px;}
.y1fb{bottom:898.017023px;}
.y116{bottom:898.609500px;}
.y80{bottom:898.867733px;}
.y1c3{bottom:899.970244px;}
.y25{bottom:899.971500px;}
.y192{bottom:903.797035px;}
.y235{bottom:907.111500px;}
.y7{bottom:907.279504px;}
.y252{bottom:908.563725px;}
.yb5{bottom:910.175159px;}
.y115{bottom:912.130931px;}
.y157{bottom:913.747765px;}
.y1fa{bottom:916.215205px;}
.y191{bottom:917.318466px;}
.y7f{bottom:917.661421px;}
.y1c2{bottom:918.168426px;}
.y24{bottom:920.806050px;}
.y22{bottom:920.806778px;}
.y234{bottom:922.078725px;}
.y251{bottom:925.060950px;}
.y114{bottom:925.567163px;}
.y23{bottom:927.779250px;}
.yb4{bottom:928.203839px;}
.y190{bottom:930.839897px;}
.y156{bottom:932.286450px;}
.y1f9{bottom:934.327886px;}
.y7e{bottom:936.369608px;}
.y1c1{bottom:936.452109px;}
.y233{bottom:937.045950px;}
.y6{bottom:938.779498px;}
.y21{bottom:938.834400px;}
.y1f{bottom:938.835129px;}
.y250{bottom:940.112325px;}
.y112{bottom:943.935334px;}
.y18f{bottom:944.361328px;}
.y20{bottom:945.807750px;}
.yb3{bottom:946.232520px;}
.y232{bottom:952.097325px;}
.y1f8{bottom:952.526068px;}
.y1c0{bottom:954.735792px;}
.y7d{bottom:955.163296px;}
.y24f{bottom:956.609550px;}
.y1d{bottom:956.777700px;}
.y113{bottom:957.456765px;}
.y18e{bottom:957.797560px;}
.y155{bottom:960.434400px;}
.y1e{bottom:963.750900px;}
.yb2{bottom:964.261321px;}
.y231{bottom:967.064550px;}
.y5{bottom:970.279498px;}
.y1f7{bottom:970.724250px;}
.y18d{bottom:971.318991px;}
.y1bf{bottom:973.019474px;}
.y24e{bottom:973.106775px;}
.y111{bottom:975.824935px;}
.y230{bottom:982.117200px;}
.yb1{bottom:982.217566px;}
.y7c{bottom:983.311077px;}
.y18c{bottom:984.840422px;}
.y24d{bottom:988.074000px;}
.y110{bottom:989.346366px;}
.y1be{bottom:991.217656px;}
.y1c{bottom:995.809950px;}
.y22f{bottom:997.084425px;}
.y18b{bottom:998.361853px;}
.y1f6{bottom:998.787300px;}
.yb0{bottom:1000.246247px;}
.y10f{bottom:1002.867797px;}
.y24c{bottom:1004.571225px;}
.y154{bottom:1007.717422px;}
.y1bd{bottom:1009.501339px;}
.y22e{bottom:1012.051650px;}
.y10e{bottom:1016.304029px;}
.yaf{bottom:1018.274927px;}
.y1b{bottom:1019.791950px;}
.y24b{bottom:1021.068450px;}
.y18a{bottom:1025.319516px;}
.y153{bottom:1026.256108px;}
.y22d{bottom:1027.103025px;}
.y1bc{bottom:1027.785022px;}
.y10d{bottom:1029.825460px;}
.y4{bottom:1035.546001px;}
.yae{bottom:1036.303607px;}
.y24a{bottom:1037.565675px;}
.y189{bottom:1038.840947px;}
.y22c{bottom:1042.070250px;}
.y7b{bottom:1044.283687px;}
.y152{bottom:1044.794793px;}
.y1f5{bottom:1046.067205px;}
.y1bb{bottom:1046.068705px;}
.y10b{bottom:1047.854035px;}
.y188{bottom:1052.362378px;}
.y249{bottom:1052.617050px;}
.yad{bottom:1054.246787px;}
.y1a{bottom:1055.763600px;}
.y22b{bottom:1057.037475px;}
.y10c{bottom:1061.375466px;}
.y7a{bottom:1063.077375px;}
.y151{bottom:1063.418979px;}
.y1f4{bottom:1064.181386px;}
.y1ba{bottom:1064.266887px;}
.y248{bottom:1069.114275px;}
.y187{bottom:1070.305754px;}
.y22a{bottom:1072.090125px;}
.yac{bottom:1072.275467px;}
.y79{bottom:1081.785562px;}
.y150{bottom:1081.957665px;}
.y1b9{bottom:1082.295567px;}
.y1f3{bottom:1082.379568px;}
.y10a{bottom:1083.825985px;}
.y247{bottom:1085.611500px;}
.y229{bottom:1087.057350px;}
.y186{bottom:1089.098719px;}
.y77{bottom:1091.820255px;}
.yab{bottom:1100.423248px;}
.y1f2{bottom:1100.577750px;}
.y78{bottom:1100.579250px;}
.y14f{bottom:1100.581851px;}
.y246{bottom:1102.108725px;}
.y228{bottom:1102.110000px;}
.y109{bottom:1102.620150px;}
.y76{bottom:1105.341450px;}
.ye3{bottom:1141.228050px;}
.y3{bottom:1165.122003px;}
.h10{height:25.736568px;}
.h17{height:30.029571px;}
.he{height:30.278972px;}
.h12{height:30.824589px;}
.h18{height:32.174571px;}
.h1b{height:32.444567px;}
.h14{height:34.319571px;}
.h1d{height:36.312000px;}
.h1e{height:36.516000px;}
.h4{height:36.726562px;}
.h11{height:38.610000px;}
.h1c{height:38.706024px;}
.h13{height:38.934000px;}
.h2{height:41.317383px;}
.h15{height:42.720427px;}
.h16{height:42.960430px;}
.hb{height:43.260433px;}
.h8{height:45.000000px;}
.hd{height:45.423433px;}
.hf{height:45.889637px;}
.h7{height:45.908203px;}
.h19{height:48.387753px;}
.h1a{height:48.439537px;}
.h6{height:55.089844px;}
.hc{height:60.564000px;}
.h3{height:68.862305px;}
.h5{height:82.634766px;}
.ha{height:1190.250000px;}
.h9{height:1190.551500px;}
.h1{height:1249.500000px;}
.h0{height:1249.560000px;}
.w2{width:914.173500px;}
.w3{width:914.250000px;}
.w0{width:951.480000px;}
.w1{width:951.750000px;}
.x0{left:0.000000px;}
.x7{left:71.773200px;}
.x23{left:76.280250px;}
.x4a{left:83.763450px;}
.x33{left:89.716500px;}
.x4c{left:111.146475px;}
.x4{left:145.650000px;}
.x27{left:167.867700px;}
.x28{left:173.055150px;}
.x1d{left:175.351200px;}
.x1e{left:182.069250px;}
.x11{left:185.045700px;}
.x3{left:191.880000px;}
.x5{left:197.700000px;}
.x8{left:207.325950px;}
.x2{left:234.562509px;}
.x41{left:277.225032px;}
.x38{left:282.923761px;}
.x37{left:287.601302px;}
.x1{left:293.590494px;}
.x12{left:299.678700px;}
.x13{left:303.250350px;}
.x9{left:305.036100px;}
.x1f{left:307.502250px;}
.xa{left:310.478700px;}
.x2d{left:328.081800px;}
.x2e{left:333.184200px;}
.x25{left:355.634550px;}
.x26{left:359.716500px;}
.x42{left:376.125396px;}
.x3a{left:381.824124px;}
.x39{left:384.204895px;}
.x20{left:414.311700px;}
.x14{left:419.584200px;}
.x15{left:426.472350px;}
.xb{left:428.938500px;}
.xc{left:435.741600px;}
.x47{left:464.740050px;}
.x35{left:466.019142px;}
.x43{left:469.327031px;}
.x31{left:471.798300px;}
.x32{left:474.009300px;}
.x48{left:476.730300px;}
.x3b{left:477.832524px;}
.x36{left:484.047823px;}
.x16{left:500.626650px;}
.x4b{left:505.474650px;}
.x17{left:507.429750px;}
.x6{left:527.100000px;}
.xd{left:565.171500px;}
.x24{left:567.042450px;}
.xe{left:571.294350px;}
.x44{left:573.924923px;}
.x21{left:580.478550px;}
.x3d{left:582.515616px;}
.x49{left:587.621850px;}
.x3c{left:592.635089px;}
.x18{left:654.122700px;}
.x19{left:669.514800px;}
.x45{left:676.821237px;}
.x3f{left:685.413129px;}
.x3e{left:691.110658px;}
.x22{left:699.618750px;}
.x34{left:707.442300px;}
.x29{left:731.933700px;}
.xf{left:733.209300px;}
.x1a{left:734.399118px;}
.x2a{left:736.525800px;}
.x10{left:739.332150px;}
.x2b{left:751.067550px;}
.x2c{left:753.873900px;}
.x2f{left:761.612400px;}
.x30{left:766.799850px;}
.x1b{left:773.688000px;}
.x46{left:779.802750px;}
.x40{left:785.674276px;}
.x1c{left:788.995050px;}
@media print{
.v1{vertical-align:-10.421331pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.326432pt;}
.v4{vertical-align:15.440699pt;}
.v3{vertical-align:19.305008pt;}
.ls12{letter-spacing:-0.896009pt;}
.ls13{letter-spacing:-0.853342pt;}
.ls15{letter-spacing:-0.837342pt;}
.ls1b{letter-spacing:-0.832008pt;}
.ls19{letter-spacing:-0.821342pt;}
.ls11{letter-spacing:-0.810675pt;}
.ls16{letter-spacing:-0.805341pt;}
.ls18{letter-spacing:-0.789341pt;}
.ls14{letter-spacing:-0.752008pt;}
.ls10{letter-spacing:-0.741341pt;}
.ls1a{letter-spacing:-0.736007pt;}
.ls8{letter-spacing:-0.660791pt;}
.ls0{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.009067pt;}
.ls2a{letter-spacing:0.013600pt;}
.ls27{letter-spacing:0.042667pt;}
.lsa{letter-spacing:0.053334pt;}
.ls1f{letter-spacing:0.059733pt;}
.ls6{letter-spacing:0.085334pt;}
.ls5{letter-spacing:0.101334pt;}
.ls28{letter-spacing:0.102399pt;}
.ls23{letter-spacing:0.136532pt;}
.lsd{letter-spacing:0.240002pt;}
.ls3{letter-spacing:0.279972pt;}
.ls4{letter-spacing:0.511416pt;}
.ls1{letter-spacing:0.548745pt;}
.ls2{letter-spacing:0.604740pt;}
.lsb{letter-spacing:2.498400pt;}
.ls24{letter-spacing:2.604267pt;}
.lsc{letter-spacing:2.801333pt;}
.ls20{letter-spacing:7.044179pt;}
.ls21{letter-spacing:7.056978pt;}
.ls22{letter-spacing:7.347108pt;}
.ls1d{letter-spacing:8.821422pt;}
.ls1c{letter-spacing:8.853422pt;}
.ls9{letter-spacing:9.125425pt;}
.ls1e{letter-spacing:9.152092pt;}
.ls7{letter-spacing:12.375823pt;}
.ls17{letter-spacing:25.141585pt;}
.lse{letter-spacing:25.178918pt;}
.ls25{letter-spacing:29.568296pt;}
.ls26{letter-spacing:29.712297pt;}
.lsf{letter-spacing:34.549679pt;}
.ws71{word-spacing:-25.194919pt;}
.ws0{word-spacing:-12.432000pt;}
.ws37{word-spacing:-0.053334pt;}
.ws1e{word-spacing:-0.048000pt;}
.ws1e2{word-spacing:-0.045333pt;}
.ws5b{word-spacing:-0.042666pt;}
.ws5e{word-spacing:-0.037333pt;}
.ws1{word-spacing:0.000000pt;}
.ws70{word-spacing:0.752008pt;}
.ws6b{word-spacing:0.842675pt;}
.ws10e{word-spacing:6.882047pt;}
.ws117{word-spacing:6.933247pt;}
.ws120{word-spacing:7.031379pt;}
.ws1f9{word-spacing:7.570667pt;}
.ws8a{word-spacing:8.602753pt;}
.ws82{word-spacing:8.613419pt;}
.ws91{word-spacing:8.821422pt;}
.wsec{word-spacing:8.853422pt;}
.wsa1{word-spacing:8.900862pt;}
.wsa4{word-spacing:8.916126pt;}
.ws8c{word-spacing:8.917423pt;}
.wse1{word-spacing:8.970756pt;}
.ws5c{word-spacing:12.260092pt;}
.wsd9{word-spacing:13.195824pt;}
.ws2e{word-spacing:13.207824pt;}
.ws60{word-spacing:13.208345pt;}
.ws123{word-spacing:13.219824pt;}
.ws61{word-spacing:13.223824pt;}
.ws30{word-spacing:13.316100pt;}
.ws5d{word-spacing:13.335276pt;}
.ws2f{word-spacing:13.392899pt;}
.ws31{word-spacing:13.431299pt;}
.ws17a{word-spacing:13.879293pt;}
.ws109{word-spacing:13.900626pt;}
.ws183{word-spacing:13.917693pt;}
.ws103{word-spacing:13.926226pt;}
.ws191{word-spacing:13.930493pt;}
.ws122{word-spacing:13.951826pt;}
.ws59{word-spacing:13.956092pt;}
.ws5a{word-spacing:13.960359pt;}
.ws17b{word-spacing:13.973159pt;}
.ws18e{word-spacing:13.977425pt;}
.ws18a{word-spacing:13.981692pt;}
.ws119{word-spacing:13.994492pt;}
.ws102{word-spacing:14.015825pt;}
.ws106{word-spacing:14.024358pt;}
.ws17c{word-spacing:14.028625pt;}
.ws114{word-spacing:14.032891pt;}
.ws17d{word-spacing:14.041424pt;}
.ws184{word-spacing:14.045691pt;}
.ws113{word-spacing:14.058491pt;}
.ws57{word-spacing:14.075557pt;}
.ws18b{word-spacing:14.079824pt;}
.ws33{word-spacing:14.084091pt;}
.ws110{word-spacing:14.088357pt;}
.ws111{word-spacing:14.092624pt;}
.ws32{word-spacing:14.096890pt;}
.ws11b{word-spacing:14.105424pt;}
.ws118{word-spacing:14.113957pt;}
.ws107{word-spacing:14.118224pt;}
.ws108{word-spacing:14.126757pt;}
.ws115{word-spacing:14.131023pt;}
.ws112{word-spacing:14.135290pt;}
.ws10f{word-spacing:14.143823pt;}
.ws104{word-spacing:14.152356pt;}
.ws105{word-spacing:14.160890pt;}
.ws56{word-spacing:14.169423pt;}
.ws10c{word-spacing:14.190756pt;}
.ws116{word-spacing:14.229155pt;}
.ws186{word-spacing:14.241955pt;}
.ws11e{word-spacing:14.250489pt;}
.ws17f{word-spacing:14.259022pt;}
.ws1d3{word-spacing:14.778667pt;}
.ws207{word-spacing:14.783200pt;}
.ws21e{word-spacing:14.805867pt;}
.ws1df{word-spacing:14.814933pt;}
.ws1dc{word-spacing:14.824000pt;}
.ws210{word-spacing:14.851200pt;}
.ws1e8{word-spacing:14.878400pt;}
.ws1ec{word-spacing:14.896533pt;}
.ws1eb{word-spacing:14.901067pt;}
.ws206{word-spacing:14.910133pt;}
.ws1f6{word-spacing:14.919200pt;}
.ws1d6{word-spacing:14.932800pt;}
.ws216{word-spacing:14.955467pt;}
.ws203{word-spacing:14.973600pt;}
.ws1f1{word-spacing:15.046133pt;}
.ws1d1{word-spacing:15.064267pt;}
.ws221{word-spacing:15.077867pt;}
.ws200{word-spacing:15.114133pt;}
.ws1ee{word-spacing:15.118667pt;}
.ws25{word-spacing:15.211200pt;}
.ws205{word-spacing:15.318133pt;}
.ws2d{word-spacing:15.412800pt;}
.ws1dd{word-spacing:15.449600pt;}
.ws20b{word-spacing:15.517600pt;}
.ws1fa{word-spacing:15.549333pt;}
.ws1d{word-spacing:15.552000pt;}
.ws1e7{word-spacing:15.680800pt;}
.ws12{word-spacing:15.700800pt;}
.ws22{word-spacing:15.710400pt;}
.ws1f{word-spacing:15.715200pt;}
.ws16{word-spacing:15.720000pt;}
.wsd{word-spacing:15.724800pt;}
.wsf{word-spacing:15.748800pt;}
.ws15{word-spacing:15.787200pt;}
.ws14{word-spacing:15.801600pt;}
.wse{word-spacing:15.811200pt;}
.ws10{word-spacing:15.816000pt;}
.ws18{word-spacing:15.820800pt;}
.ws19{word-spacing:15.859200pt;}
.ws11{word-spacing:15.912000pt;}
.ws17{word-spacing:16.008000pt;}
.ws1a{word-spacing:16.113600pt;}
.ws13{word-spacing:16.161600pt;}
.ws1cf{word-spacing:16.283733pt;}
.ws1de{word-spacing:16.329067pt;}
.ws1d7{word-spacing:16.347200pt;}
.ws28{word-spacing:16.348800pt;}
.ws1c{word-spacing:16.420800pt;}
.ws1b{word-spacing:16.425600pt;}
.ws182{word-spacing:16.575793pt;}
.ws1f3{word-spacing:16.578400pt;}
.ws20f{word-spacing:16.596533pt;}
.ws2c{word-spacing:16.622400pt;}
.ws1e3{word-spacing:16.827733pt;}
.ws24{word-spacing:16.953600pt;}
.ws21b{word-spacing:16.959200pt;}
.ws198{word-spacing:17.109504pt;}
.ws199{word-spacing:17.130838pt;}
.ws1ce{word-spacing:17.140533pt;}
.wsed{word-spacing:17.173505pt;}
.ws5f{word-spacing:17.176821pt;}
.ws1d4{word-spacing:17.194933pt;}
.ws209{word-spacing:17.235733pt;}
.ws1d5{word-spacing:17.340000pt;}
.ws217{word-spacing:17.358133pt;}
.wsf6{word-spacing:17.392174pt;}
.wsfb{word-spacing:17.466841pt;}
.ws3c{word-spacing:17.472175pt;}
.wsf5{word-spacing:17.477508pt;}
.ws20a{word-spacing:17.494133pt;}
.ws65{word-spacing:17.498842pt;}
.ws1b2{word-spacing:17.504175pt;}
.ws2{word-spacing:17.509508pt;}
.wse5{word-spacing:17.514842pt;}
.wsf8{word-spacing:17.520175pt;}
.wse6{word-spacing:17.546842pt;}
.ws193{word-spacing:17.557509pt;}
.ws1cd{word-spacing:17.568176pt;}
.ws7c{word-spacing:17.578842pt;}
.wsae{word-spacing:17.648176pt;}
.wsfc{word-spacing:17.653510pt;}
.ws13f{word-spacing:17.669510pt;}
.ws66{word-spacing:17.674843pt;}
.wsfa{word-spacing:17.696177pt;}
.wsdc{word-spacing:17.717511pt;}
.ws51{word-spacing:17.728177pt;}
.wsd2{word-spacing:17.733511pt;}
.ws13a{word-spacing:17.744177pt;}
.ws4e{word-spacing:17.760178pt;}
.wsdb{word-spacing:17.786845pt;}
.ws23{word-spacing:17.793600pt;}
.ws4c{word-spacing:17.808178pt;}
.ws1e6{word-spacing:17.816000pt;}
.wsaf{word-spacing:17.834845pt;}
.ws49{word-spacing:17.866845pt;}
.ws215{word-spacing:17.874933pt;}
.ws20c{word-spacing:17.906667pt;}
.wsa6{word-spacing:17.914846pt;}
.ws52{word-spacing:17.925513pt;}
.wsf9{word-spacing:17.952180pt;}
.ws99{word-spacing:17.989513pt;}
.ws7d{word-spacing:18.000180pt;}
.ws1ed{word-spacing:18.024533pt;}
.wsde{word-spacing:18.037514pt;}
.ws146{word-spacing:18.106848pt;}
.ws11f{word-spacing:18.133107pt;}
.ws2b{word-spacing:18.177600pt;}
.ws1b4{word-spacing:18.272183pt;}
.ws13c{word-spacing:18.282849pt;}
.wsc1{word-spacing:18.288183pt;}
.ws175{word-spacing:18.309516pt;}
.ws1a1{word-spacing:18.378850pt;}
.wsa{word-spacing:18.396175pt;}
.ws1b6{word-spacing:18.405517pt;}
.ws8{word-spacing:18.435376pt;}
.ws9{word-spacing:18.440976pt;}
.ws5{word-spacing:18.452176pt;}
.wsb{word-spacing:18.457776pt;}
.ws1c0{word-spacing:18.464185pt;}
.ws4f{word-spacing:18.480176pt;}
.ws213{word-spacing:18.545867pt;}
.ws20d{word-spacing:18.564000pt;}
.ws21{word-spacing:18.566400pt;}
.ws6{word-spacing:18.586577pt;}
.ws1db{word-spacing:18.591200pt;}
.ws41{word-spacing:18.613519pt;}
.ws7{word-spacing:18.614577pt;}
.ws7b{word-spacing:18.629520pt;}
.ws1a6{word-spacing:18.645520pt;}
.wsc{word-spacing:18.681778pt;}
.ws63{word-spacing:18.682853pt;}
.ws1d2{word-spacing:18.743379pt;}
.ws140{word-spacing:18.784188pt;}
.ws2a{word-spacing:18.840000pt;}
.ws1d8{word-spacing:18.845067pt;}
.ws21c{word-spacing:18.849600pt;}
.wsbe{word-spacing:18.986857pt;}
.wsbd{word-spacing:18.992190pt;}
.ws10b{word-spacing:18.999229pt;}
.wsbc{word-spacing:19.013523pt;}
.ws212{word-spacing:19.049067pt;}
.ws55{word-spacing:19.098858pt;}
.ws121{word-spacing:19.122961pt;}
.ws1f5{word-spacing:19.126133pt;}
.wsac{word-spacing:19.184192pt;}
.ws1cb{word-spacing:19.189525pt;}
.ws10a{word-spacing:19.225360pt;}
.ws14b{word-spacing:19.232192pt;}
.ws149{word-spacing:19.258859pt;}
.ws201{word-spacing:19.321067pt;}
.ws1fd{word-spacing:19.334667pt;}
.ws14a{word-spacing:19.354860pt;}
.ws15b{word-spacing:19.370860pt;}
.ws1f4{word-spacing:19.370933pt;}
.wse9{word-spacing:19.402861pt;}
.ws220{word-spacing:19.407200pt;}
.ws20{word-spacing:19.444800pt;}
.ws15a{word-spacing:19.466861pt;}
.ws78{word-spacing:19.530862pt;}
.ws148{word-spacing:19.536195pt;}
.ws141{word-spacing:19.552196pt;}
.ws1e9{word-spacing:19.552267pt;}
.ws64{word-spacing:19.589529pt;}
.ws202{word-spacing:19.597600pt;}
.wscc{word-spacing:19.658863pt;}
.wse0{word-spacing:19.696197pt;}
.ws9a{word-spacing:19.872199pt;}
.ws9b{word-spacing:19.888199pt;}
.ws21d{word-spacing:19.960267pt;}
.wsb1{word-spacing:19.968200pt;}
.ws44{word-spacing:19.973533pt;}
.ws12a{word-spacing:20.032200pt;}
.ws19a{word-spacing:20.053534pt;}
.wsab{word-spacing:20.069534pt;}
.ws12b{word-spacing:20.085534pt;}
.ws153{word-spacing:20.144201pt;}
.ws27{word-spacing:20.145600pt;}
.ws21a{word-spacing:20.155200pt;}
.ws16f{word-spacing:20.186869pt;}
.wsff{word-spacing:20.208202pt;}
.wsea{word-spacing:20.277536pt;}
.ws1fc{word-spacing:20.409067pt;}
.ws16e{word-spacing:20.522872pt;}
.ws152{word-spacing:20.565539pt;}
.ws1e0{word-spacing:20.585867pt;}
.ws145{word-spacing:20.634873pt;}
.ws178{word-spacing:20.646142pt;}
.ws26{word-spacing:20.654400pt;}
.ws159{word-spacing:20.661540pt;}
.ws147{word-spacing:20.677540pt;}
.wse8{word-spacing:20.704207pt;}
.ws177{word-spacing:20.735741pt;}
.ws3f{word-spacing:20.773541pt;}
.wsf3{word-spacing:20.826875pt;}
.ws204{word-spacing:20.866933pt;}
.ws40{word-spacing:20.869542pt;}
.wsf4{word-spacing:20.938876pt;}
.ws1bc{word-spacing:20.992210pt;}
.ws97{word-spacing:21.061544pt;}
.ws12e{word-spacing:21.104211pt;}
.ws124{word-spacing:21.258879pt;}
.ws86{word-spacing:21.360214pt;}
.wsc8{word-spacing:21.397547pt;}
.ws85{word-spacing:21.434881pt;}
.ws218{word-spacing:21.469867pt;}
.ws1c7{word-spacing:21.477548pt;}
.ws223{word-spacing:21.478933pt;}
.ws1e4{word-spacing:21.524267pt;}
.ws156{word-spacing:21.584216pt;}
.ws8f{word-spacing:21.600216pt;}
.ws39{word-spacing:21.610883pt;}
.wsd8{word-spacing:21.680217pt;}
.ws3d{word-spacing:21.685550pt;}
.wsb7{word-spacing:21.696217pt;}
.ws155{word-spacing:21.712217pt;}
.ws19e{word-spacing:21.722884pt;}
.wsa0{word-spacing:21.733551pt;}
.wsd6{word-spacing:21.754884pt;}
.ws211{word-spacing:21.778133pt;}
.wsd7{word-spacing:21.818885pt;}
.wsa2{word-spacing:21.898886pt;}
.ws1cc{word-spacing:21.914886pt;}
.ws1f8{word-spacing:21.923200pt;}
.ws16d{word-spacing:21.946886pt;}
.ws54{word-spacing:21.968220pt;}
.ws19b{word-spacing:22.037554pt;}
.ws96{word-spacing:22.186889pt;}
.wsb3{word-spacing:22.224222pt;}
.wsef{word-spacing:22.256223pt;}
.ws34{word-spacing:22.277556pt;}
.ws150{word-spacing:22.282889pt;}
.ws161{word-spacing:22.309556pt;}
.ws9e{word-spacing:22.373557pt;}
.ws1e5{word-spacing:22.376533pt;}
.ws142{word-spacing:22.389557pt;}
.ws176{word-spacing:22.394891pt;}
.ws1a7{word-spacing:22.453558pt;}
.ws67{word-spacing:22.464225pt;}
.ws151{word-spacing:22.474891pt;}
.ws4a{word-spacing:22.576226pt;}
.ws197{word-spacing:22.597559pt;}
.ws19f{word-spacing:22.618893pt;}
.ws42{word-spacing:22.629560pt;}
.ws129{word-spacing:22.640226pt;}
.ws160{word-spacing:22.645560pt;}
.ws12f{word-spacing:22.650893pt;}
.ws196{word-spacing:22.656227pt;}
.ws1c6{word-spacing:22.693560pt;}
.ws1a2{word-spacing:22.773561pt;}
.ws1b1{word-spacing:22.869562pt;}
.ws1a3{word-spacing:22.906896pt;}
.ws1b8{word-spacing:22.917563pt;}
.ws13b{word-spacing:22.944229pt;}
.ws1bf{word-spacing:23.024230pt;}
.ws214{word-spacing:23.088267pt;}
.ws92{word-spacing:23.146898pt;}
.wsb4{word-spacing:23.152232pt;}
.ws62{word-spacing:23.200232pt;}
.wsb8{word-spacing:23.242899pt;}
.wsb0{word-spacing:23.253566pt;}
.wsb9{word-spacing:23.333567pt;}
.ws7e{word-spacing:23.450901pt;}
.ws38{word-spacing:23.509568pt;}
.ws36{word-spacing:23.514902pt;}
.ws195{word-spacing:23.520235pt;}
.wsba{word-spacing:23.610903pt;}
.ws35{word-spacing:23.733571pt;}
.wsfd{word-spacing:23.829572pt;}
.wsa9{word-spacing:23.840238pt;}
.ws1d0{word-spacing:23.913333pt;}
.ws208{word-spacing:23.954133pt;}
.ws1af{word-spacing:24.005573pt;}
.ws95{word-spacing:24.010907pt;}
.ws3e{word-spacing:24.112241pt;}
.ws173{word-spacing:24.117575pt;}
.ws8e{word-spacing:24.149575pt;}
.wsc2{word-spacing:24.160242pt;}
.ws94{word-spacing:24.197575pt;}
.ws68{word-spacing:24.256243pt;}
.ws14c{word-spacing:24.288243pt;}
.wsc6{word-spacing:24.298910pt;}
.ws1c2{word-spacing:24.357577pt;}
.wsf0{word-spacing:24.368244pt;}
.ws1fb{word-spacing:24.371200pt;}
.ws79{word-spacing:24.373577pt;}
.ws1ef{word-spacing:24.389333pt;}
.ws138{word-spacing:24.426911pt;}
.ws4b{word-spacing:24.512245pt;}
.ws50{word-spacing:24.570912pt;}
.ws3{word-spacing:24.654933pt;}
.wsa7{word-spacing:24.688247pt;}
.ws81{word-spacing:24.698914pt;}
.ws4{word-spacing:24.699733pt;}
.ws29{word-spacing:24.724800pt;}
.ws1a0{word-spacing:24.810915pt;}
.ws1b5{word-spacing:24.816248pt;}
.ws12c{word-spacing:24.858915pt;}
.ws1b3{word-spacing:24.885582pt;}
.ws130{word-spacing:24.906916pt;}
.wsc3{word-spacing:24.917583pt;}
.ws1a5{word-spacing:24.928249pt;}
.wsad{word-spacing:24.938916pt;}
.wsc5{word-spacing:24.965583pt;}
.ws14f{word-spacing:24.992250pt;}
.ws12d{word-spacing:25.024250pt;}
.wsc4{word-spacing:25.082917pt;}
.ws171{word-spacing:25.162918pt;}
.ws162{word-spacing:25.274919pt;}
.wse4{word-spacing:25.333587pt;}
.wsf1{word-spacing:25.338920pt;}
.ws3a{word-spacing:25.514922pt;}
.ws77{word-spacing:25.594923pt;}
.ws3b{word-spacing:25.600256pt;}
.ws1f2{word-spacing:25.631467pt;}
.wsf2{word-spacing:25.632256pt;}
.wsd1{word-spacing:25.797591pt;}
.ws8b{word-spacing:26.096261pt;}
.ws144{word-spacing:26.101594pt;}
.ws172{word-spacing:26.165595pt;}
.ws143{word-spacing:26.208262pt;}
.wsb6{word-spacing:26.229596pt;}
.ws16a{word-spacing:26.250929pt;}
.wsd3{word-spacing:26.293596pt;}
.wsdd{word-spacing:26.298930pt;}
.ws1fe{word-spacing:26.379467pt;}
.ws1ac{word-spacing:26.437598pt;}
.ws169{word-spacing:26.474931pt;}
.ws1ea{word-spacing:26.565333pt;}
.ws190{word-spacing:26.572468pt;}
.ws6f{word-spacing:26.650933pt;}
.wsdf{word-spacing:26.704267pt;}
.ws21f{word-spacing:26.733067pt;}
.ws6d{word-spacing:26.784268pt;}
.ws84{word-spacing:26.805601pt;}
.ws89{word-spacing:26.864269pt;}
.ws1a8{word-spacing:26.880269pt;}
.ws1c5{word-spacing:26.933603pt;}
.wsa8{word-spacing:26.976270pt;}
.ws163{word-spacing:27.008270pt;}
.ws72{word-spacing:27.077604pt;}
.wsaa{word-spacing:27.114938pt;}
.ws14e{word-spacing:27.280273pt;}
.ws133{word-spacing:27.328273pt;}
.ws90{word-spacing:27.525609pt;}
.ws165{word-spacing:27.637610pt;}
.ws20e{word-spacing:27.703200pt;}
.ws80{word-spacing:27.712277pt;}
.ws166{word-spacing:27.738944pt;}
.ws1bd{word-spacing:27.744277pt;}
.ws47{word-spacing:27.829612pt;}
.ws14d{word-spacing:27.861612pt;}
.wse3{word-spacing:27.957613pt;}
.ws19d{word-spacing:28.064281pt;}
.ws7f{word-spacing:28.122948pt;}
.ws1c4{word-spacing:28.144281pt;}
.ws219{word-spacing:28.301600pt;}
.ws1ba{word-spacing:28.309616pt;}
.ws46{word-spacing:28.314950pt;}
.ws1ad{word-spacing:28.357617pt;}
.ws1ff{word-spacing:28.496533pt;}
.ws192{word-spacing:28.602953pt;}
.ws6c{word-spacing:28.608286pt;}
.ws75{word-spacing:28.869622pt;}
.ws1ca{word-spacing:28.933623pt;}
.ws154{word-spacing:28.949623pt;}
.ws1a4{word-spacing:29.013623pt;}
.ws74{word-spacing:29.093624pt;}
.ws158{word-spacing:29.098958pt;}
.ws1b9{word-spacing:29.120291pt;}
.wsbf{word-spacing:29.125625pt;}
.ws1c1{word-spacing:29.194959pt;}
.ws6a{word-spacing:29.210959pt;}
.ws128{word-spacing:29.221626pt;}
.ws126{word-spacing:29.237626pt;}
.ws127{word-spacing:29.258959pt;}
.ws1b0{word-spacing:29.349627pt;}
.ws167{word-spacing:29.413627pt;}
.ws1bb{word-spacing:29.530962pt;}
.ws164{word-spacing:29.546962pt;}
.ws170{word-spacing:29.573629pt;}
.ws15c{word-spacing:29.616296pt;}
.ws15d{word-spacing:29.637630pt;}
.ws9d{word-spacing:29.648296pt;}
.ws168{word-spacing:29.664297pt;}
.ws15e{word-spacing:29.776298pt;}
.ws53{word-spacing:29.818965pt;}
.ws8d{word-spacing:29.829632pt;}
.ws9c{word-spacing:29.840298pt;}
.ws45{word-spacing:29.882965pt;}
.ws1e1{word-spacing:29.942667pt;}
.ws48{word-spacing:30.170968pt;}
.wsbb{word-spacing:30.256303pt;}
.ws132{word-spacing:30.293636pt;}
.ws131{word-spacing:30.309636pt;}
.wsda{word-spacing:30.805641pt;}
.ws1d9{word-spacing:31.275467pt;}
.ws139{word-spacing:31.344313pt;}
.wse7{word-spacing:31.733651pt;}
.ws157{word-spacing:31.792318pt;}
.ws1f7{word-spacing:32.132267pt;}
.wsb2{word-spacing:32.208322pt;}
.ws1f0{word-spacing:32.290933pt;}
.wsd4{word-spacing:32.549659pt;}
.ws16c{word-spacing:32.581659pt;}
.ws13e{word-spacing:32.618993pt;}
.ws16b{word-spacing:32.634993pt;}
.ws4d{word-spacing:32.768328pt;}
.ws13d{word-spacing:32.864329pt;}
.wsb5{word-spacing:33.488335pt;}
.ws1be{word-spacing:33.552336pt;}
.wsf7{word-spacing:33.643003pt;}
.ws1c8{word-spacing:33.707004pt;}
.ws98{word-spacing:33.771004pt;}
.wseb{word-spacing:34.091008pt;}
.ws222{word-spacing:34.231200pt;}
.wsca{word-spacing:34.336343pt;}
.wscb{word-spacing:34.363010pt;}
.wsc9{word-spacing:34.683013pt;}
.ws1c3{word-spacing:34.736347pt;}
.ws7a{word-spacing:34.933683pt;}
.wsce{word-spacing:35.221686pt;}
.ws1b7{word-spacing:35.253686pt;}
.wsd0{word-spacing:35.499022pt;}
.ws83{word-spacing:35.584356pt;}
.wsd5{word-spacing:35.776358pt;}
.wsa5{word-spacing:35.829692pt;}
.ws43{word-spacing:35.877692pt;}
.ws1ab{word-spacing:35.947026pt;}
.ws194{word-spacing:36.048360pt;}
.wsa3{word-spacing:36.053694pt;}
.ws1ae{word-spacing:36.059027pt;}
.wscf{word-spacing:36.784368pt;}
.wsfe{word-spacing:36.864369pt;}
.ws19c{word-spacing:37.056371pt;}
.wsc7{word-spacing:37.083037pt;}
.ws69{word-spacing:37.680377pt;}
.ws76{word-spacing:37.728377pt;}
.ws15f{word-spacing:38.197715pt;}
.wscd{word-spacing:38.421718pt;}
.ws174{word-spacing:38.619053pt;}
.wsc0{word-spacing:38.933723pt;}
.ws93{word-spacing:39.328393pt;}
.ws87{word-spacing:39.520395pt;}
.wsee{word-spacing:40.667073pt;}
.ws1c9{word-spacing:41.691084pt;}
.ws9f{word-spacing:42.592426pt;}
.ws137{word-spacing:42.747094pt;}
.ws135{word-spacing:42.843095pt;}
.ws136{word-spacing:42.864429pt;}
.ws1da{word-spacing:42.912533pt;}
.ws134{word-spacing:42.923096pt;}
.ws1aa{word-spacing:44.005773pt;}
.ws1a9{word-spacing:44.027107pt;}
.ws125{word-spacing:45.584456pt;}
.ws6e{word-spacing:47.707144pt;}
.ws88{word-spacing:49.072491pt;}
.ws100{word-spacing:53.205865pt;}
.ws101{word-spacing:53.275199pt;}
.ws73{word-spacing:53.541869pt;}
.wse2{word-spacing:67.654010pt;}
.ws11a{word-spacing:73.769745pt;}
.ws58{word-spacing:81.816709pt;}
.ws11c{word-spacing:94.027625pt;}
.ws180{word-spacing:104.724024pt;}
.ws11d{word-spacing:114.294038pt;}
.ws10d{word-spacing:120.634225pt;}
.ws17e{word-spacing:122.153140pt;}
.ws179{word-spacing:139.983317pt;}
.ws181{word-spacing:162.677433pt;}
.ws18c{word-spacing:232.001367pt;}
.ws188{word-spacing:241.980975pt;}
.ws185{word-spacing:254.669883pt;}
.ws18d{word-spacing:264.658025pt;}
.ws187{word-spacing:274.936297pt;}
.ws189{word-spacing:596.536543pt;}
.ws18f{word-spacing:606.819081pt;}
._18{margin-left:-26.544265pt;}
._19{margin-left:-25.568256pt;}
._2{margin-left:-4.416000pt;}
._0{margin-left:-3.312000pt;}
._1{margin-left:-1.920000pt;}
._3{margin-left:-0.960000pt;}
._7{width:1.500814pt;}
._75{width:6.937513pt;}
._20{width:8.842755pt;}
._16{width:12.247353pt;}
._15{width:13.193412pt;}
._c{width:14.131202pt;}
._9{width:15.216000pt;}
._8{width:16.728000pt;}
._1d{width:17.780967pt;}
._b{width:18.854400pt;}
._a{width:20.414403pt;}
._d{width:21.307201pt;}
._1b{width:22.490892pt;}
._e{width:23.392234pt;}
._f{width:24.528245pt;}
._6{width:25.640533pt;}
._17{width:27.224806pt;}
._11{width:28.848288pt;}
._13{width:30.832308pt;}
._1a{width:32.606193pt;}
._12{width:33.771004pt;}
._21{width:34.773681pt;}
._8d{width:35.717691pt;}
._10{width:37.029704pt;}
._1e{width:38.331050pt;}
._22{width:39.877732pt;}
._24{width:41.803085pt;}
._1f{width:43.739104pt;}
._64{width:46.763134pt;}
._1c{width:50.165835pt;}
._8e{width:65.488533pt;}
._14{width:81.699388pt;}
._5e{width:87.900768pt;}
._3c{width:96.246264pt;}
._3f{width:105.718145pt;}
._51{width:116.448678pt;}
._23{width:122.497874pt;}
._60{width:128.326929pt;}
._63{width:134.879093pt;}
._33{width:143.217410pt;}
._79{width:145.525648pt;}
._52{width:146.545368pt;}
._34{width:147.475490pt;}
._62{width:148.550676pt;}
._76{width:153.610880pt;}
._3e{width:155.001796pt;}
._58{width:159.989288pt;}
._41{width:161.359050pt;}
._37{width:163.466757pt;}
._38{width:167.716304pt;}
._6d{width:171.748253pt;}
._68{width:175.276742pt;}
._4b{width:181.608397pt;}
._27{width:183.733170pt;}
._6c{width:184.944888pt;}
._3a{width:188.033916pt;}
._43{width:201.938809pt;}
._42{width:203.090795pt;}
._26{width:203.991050pt;}
._6a{width:205.467298pt;}
._28{width:208.206464pt;}
._66{width:216.709824pt;}
._44{width:221.134302pt;}
._82{width:222.725749pt;}
._2a{width:224.248930pt;}
._67{width:225.469182pt;}
._2d{width:228.498477pt;}
._7a{width:232.487761pt;}
._4f{width:237.620496pt;}
._2c{width:244.532410pt;}
._73{width:245.727062pt;}
._30{width:248.747824pt;}
._6e{width:250.915264pt;}
._4e{width:253.790961pt;}
._2f{width:264.739091pt;}
._31{width:269.005704pt;}
._74{width:270.861681pt;}
._5f{width:272.764590pt;}
._71{width:273.754445pt;}
._78{width:275.567755pt;}
._6f{width:281.643413pt;}
._49{width:283.247659pt;}
._50{width:284.211914pt;}
._77{width:286.464686pt;}
._59{width:289.165452pt;}
._88{width:290.650233pt;}
._5b{width:314.052608pt;}
._4a{width:315.503256pt;}
._69{width:316.484577pt;}
._32{width:326.272188pt;}
._39{width:327.458307pt;}
._35{width:328.704158pt;}
._36{width:331.050795pt;}
._7c{width:335.313142pt;}
._86{width:336.469394pt;}
._6b{width:338.449103pt;}
._65{width:340.838406pt;}
._5c{width:347.652188pt;}
._45{width:360.353896pt;}
._48{width:364.765574pt;}
._46{width:371.041762pt;}
._7d{width:376.379295pt;}
._3b{width:384.379195pt;}
._5d{width:388.961538pt;}
._61{width:402.136840pt;}
._25{width:407.303709pt;}
._2e{width:408.489827pt;}
._29{width:409.735678pt;}
._2b{width:412.082316pt;}
._4d{width:413.238568pt;}
._40{width:417.526514pt;}
._4c{width:420.487544pt;}
._81{width:426.473602pt;}
._7f{width:436.512944pt;}
._80{width:449.521848pt;}
._4{width:494.880000pt;}
._7b{width:515.300225pt;}
._72{width:524.998237pt;}
._55{width:540.626842pt;}
._54{width:543.656138pt;}
._56{width:545.490781pt;}
._70{width:551.152577pt;}
._47{width:554.540268pt;}
._7e{width:570.565668pt;}
._85{width:577.507448pt;}
._89{width:580.843939pt;}
._8c{width:587.789986pt;}
._3d{width:591.147811pt;}
._83{width:599.011179pt;}
._84{width:601.357816pt;}
._8a{width:609.293717pt;}
._87{width:610.496902pt;}
._8b{width:611.640354pt;}
._5{width:788.256000pt;}
._57{width:808.015500pt;}
._5a{width:860.025516pt;}
._53{width:1093.571397pt;}
.fse{font-size:29.865600pt;}
.fsa{font-size:31.995733pt;}
.fs9{font-size:37.329600pt;}
.fsd{font-size:37.332800pt;}
.fsb{font-size:39.999467pt;}
.fsc{font-size:42.666133pt;}
.fs2{font-size:42.666667pt;}
.fsf{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:53.333867pt;}
.fs8{font-size:56.000533pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:39.835525pt;}
.y74{bottom:50.494039pt;}
.y185{bottom:53.732650pt;}
.ye2{bottom:53.734366pt;}
.y227{bottom:53.738600pt;}
.y14e{bottom:53.743066pt;}
.y104{bottom:53.748418pt;}
.yaa{bottom:53.754088pt;}
.y1f1{bottom:53.815422pt;}
.y2{bottom:60.086668pt;}
.y73{bottom:61.152553pt;}
.y226{bottom:67.420200pt;}
.ye1{bottom:69.759860pt;}
.y14d{bottom:69.768560pt;}
.y108{bottom:69.773911pt;}
.y1f0{bottom:69.991584pt;}
.y184{bottom:70.287483pt;}
.y103{bottom:70.453918pt;}
.ya9{bottom:70.459588pt;}
.y72{bottom:71.886667pt;}
.y1{bottom:74.753335pt;}
.y225{bottom:81.027000pt;}
.ye0{bottom:85.785353pt;}
.y14c{bottom:85.794054pt;}
.y107{bottom:85.799405pt;}
.y1ef{bottom:86.243746pt;}
.y183{bottom:86.766314pt;}
.y102{bottom:87.083418pt;}
.ya8{bottom:87.089088pt;}
.y71{bottom:87.155867pt;}
.y224{bottom:94.331200pt;}
.y14b{bottom:101.743546pt;}
.y106{bottom:101.748898pt;}
.ydf{bottom:101.810847pt;}
.y70{bottom:102.122800pt;}
.y1ee{bottom:102.495909pt;}
.y182{bottom:103.321146pt;}
.y101{bottom:103.788918pt;}
.ya7{bottom:103.794588pt;}
.y223{bottom:107.938000pt;}
.yde{bottom:117.760340pt;}
.y14a{bottom:117.769040pt;}
.y1ed{bottom:118.672071pt;}
.y181{bottom:119.799978pt;}
.ya6{bottom:120.424088pt;}
.y222{bottom:121.619600pt;}
.y105{bottom:126.769148pt;}
.y100{bottom:128.809168pt;}
.y61{bottom:133.339708pt;}
.y6f{bottom:133.343238pt;}
.ydd{bottom:133.785833pt;}
.y149{bottom:133.794534pt;}
.y221{bottom:134.923800pt;}
.y1ec{bottom:134.924233pt;}
.y180{bottom:136.354810pt;}
.ya5{bottom:137.129588pt;}
.y220{bottom:148.530600pt;}
.y60{bottom:149.289201pt;}
.y148{bottom:149.744026pt;}
.y6e{bottom:149.746069pt;}
.ydc{bottom:149.811327pt;}
.y1eb{bottom:151.176396pt;}
.y17f{bottom:152.833641pt;}
.ya4{bottom:153.759088pt;}
.y21f{bottom:162.212200pt;}
.y5f{bottom:165.238694pt;}
.y147{bottom:165.769520pt;}
.ydb{bottom:165.836821pt;}
.y6d{bottom:166.148900pt;}
.y1ea{bottom:167.428558pt;}
.y17e{bottom:169.312473pt;}
.ya3{bottom:170.464588pt;}
.y21e{bottom:175.516400pt;}
.yff{bottom:178.699001pt;}
.y5e{bottom:181.188186pt;}
.yda{bottom:181.786313pt;}
.y146{bottom:181.795014pt;}
.y1e9{bottom:183.604720pt;}
.y17d{bottom:185.867305pt;}
.ya2{bottom:187.094088pt;}
.y21d{bottom:189.123200pt;}
.y6c{bottom:191.169150pt;}
.y143{bottom:192.453454pt;}
.yfe{bottom:195.328500pt;}
.y5d{bottom:197.137679pt;}
.y145{bottom:197.744506pt;}
.yd9{bottom:197.811807pt;}
.y1e8{bottom:199.856882pt;}
.y17c{bottom:202.346137pt;}
.y21c{bottom:202.804800pt;}
.ya1{bottom:203.799588pt;}
.y142{bottom:204.472504pt;}
.yfd{bottom:212.034001pt;}
.y5c{bottom:213.087172pt;}
.y144{bottom:213.770000pt;}
.yd8{bottom:213.837301pt;}
.y21b{bottom:216.109000pt;}
.y1e7{bottom:216.109045pt;}
.y141{bottom:216.415821pt;}
.y17b{bottom:218.900969pt;}
.ya0{bottom:220.429088pt;}
.y140{bottom:228.434871pt;}
.yfc{bottom:228.663500pt;}
.y5b{bottom:229.036665pt;}
.y21a{bottom:229.715800pt;}
.yd7{bottom:229.862794pt;}
.y1e6{bottom:232.285207pt;}
.y6b{bottom:233.121569pt;}
.y17a{bottom:235.379800pt;}
.y9f{bottom:237.134588pt;}
.y219{bottom:243.322600pt;}
.y13f{bottom:244.757159pt;}
.y5a{bottom:244.910157pt;}
.yfb{bottom:245.369001pt;}
.yd6{bottom:245.812287pt;}
.y1e5{bottom:248.537369pt;}
.y6a{bottom:249.524400pt;}
.y179{bottom:251.858632pt;}
.y9e{bottom:253.764088pt;}
.y218{bottom:256.701600pt;}
.y13e{bottom:256.776208pt;}
.y59{bottom:260.859650pt;}
.yd5{bottom:261.837781pt;}
.yfa{bottom:261.998500pt;}
.y1e4{bottom:264.789532pt;}
.y1b8{bottom:267.589046pt;}
.y178{bottom:268.413464pt;}
.y13d{bottom:268.795258pt;}
.y217{bottom:270.308400pt;}
.y9d{bottom:270.469589pt;}
.y69{bottom:274.544800pt;}
.y58{bottom:276.809143pt;}
.yd4{bottom:277.863274pt;}
.yf9{bottom:278.704001pt;}
.y1b7{bottom:279.608096pt;}
.y13c{bottom:280.738575pt;}
.y1e3{bottom:281.041694pt;}
.y216{bottom:283.915200pt;}
.y177{bottom:284.892295pt;}
.y9c{bottom:287.099088pt;}
.y1b6{bottom:291.551413pt;}
.y13b{bottom:292.757625pt;}
.y57{bottom:292.834636pt;}
.yd3{bottom:293.888768pt;}
.yf8{bottom:295.333500pt;}
.y1e2{bottom:297.217856pt;}
.y19{bottom:297.593334pt;}
.y215{bottom:297.596800pt;}
.y176{bottom:300.917789pt;}
.y9b{bottom:303.804589pt;}
.y13a{bottom:304.776675pt;}
.y1b5{bottom:307.878676pt;}
.y56{bottom:308.860130pt;}
.yd2{bottom:309.838261pt;}
.y214{bottom:310.901000pt;}
.y1e1{bottom:313.470019pt;}
.y68{bottom:316.572207pt;}
.y139{bottom:316.795725pt;}
.y175{bottom:317.396620pt;}
.y1b4{bottom:319.897726pt;}
.yf7{bottom:320.353750pt;}
.y9a{bottom:320.434088pt;}
.y213{bottom:324.507800pt;}
.y55{bottom:324.961624pt;}
.yd1{bottom:325.863754pt;}
.y138{bottom:328.739042pt;}
.y1e0{bottom:329.722181pt;}
.y1b3{bottom:331.916775pt;}
.y67{bottom:332.975038pt;}
.y174{bottom:333.951453pt;}
.y99{bottom:337.139589pt;}
.y212{bottom:338.114600pt;}
.y137{bottom:340.758092pt;}
.y54{bottom:341.063118pt;}
.yd0{bottom:341.889248pt;}
.y1b2{bottom:343.935825pt;}
.y1df{bottom:345.974344pt;}
.y66{bottom:349.303201pt;}
.y173{bottom:350.430284pt;}
.y211{bottom:351.493600pt;}
.y136{bottom:352.777142pt;}
.y98{bottom:353.769088pt;}
.y1b1{bottom:355.879142pt;}
.y53{bottom:357.088612pt;}
.y18{bottom:357.398667pt;}
.ycf{bottom:357.914741pt;}
.y1de{bottom:362.150505pt;}
.y135{bottom:364.796191pt;}
.y210{bottom:365.100400pt;}
.y65{bottom:365.706032pt;}
.y172{bottom:366.985116pt;}
.y1b0{bottom:367.898192pt;}
.yf6{bottom:370.243583pt;}
.y97{bottom:370.474589pt;}
.y52{bottom:373.190106pt;}
.yce{bottom:373.864234pt;}
.y134{bottom:376.739509pt;}
.y1dd{bottom:378.402668pt;}
.y20f{bottom:378.707200pt;}
.y1af{bottom:379.917242pt;}
.y64{bottom:382.108862pt;}
.y171{bottom:383.463948pt;}
.yf5{bottom:386.949083pt;}
.y96{bottom:387.104088pt;}
.y133{bottom:388.758559pt;}
.y51{bottom:389.215600pt;}
.ycd{bottom:389.889728pt;}
.y1ae{bottom:391.936292pt;}
.y20e{bottom:392.086200pt;}
.y1dc{bottom:394.654830pt;}
.y63{bottom:398.058355pt;}
.y170{bottom:399.942779pt;}
.y132{bottom:400.777608pt;}
.yf4{bottom:403.578583pt;}
.y95{bottom:403.733588pt;}
.y1ad{bottom:403.879609pt;}
.y20d{bottom:405.693000pt;}
.ycc{bottom:405.915221pt;}
.y1db{bottom:410.830992pt;}
.y131{bottom:412.796658pt;}
.y50{bottom:414.236133pt;}
.y62{bottom:414.310518pt;}
.y17{bottom:414.598667pt;}
.y16f{bottom:416.497611pt;}
.y20c{bottom:419.299800pt;}
.y1ac{bottom:419.905009pt;}
.yf3{bottom:420.284083pt;}
.y94{bottom:420.439088pt;}
.ycb{bottom:421.940715pt;}
.y130{bottom:424.739975pt;}
.y1da{bottom:427.083155pt;}
.y20b{bottom:432.678800pt;}
.y16e{bottom:432.976443pt;}
.y93{bottom:436.464582pt;}
.y1ab{bottom:436.610933pt;}
.y12f{bottom:436.759025pt;}
.yf2{bottom:436.913583pt;}
.yca{bottom:437.966208pt;}
.y1d9{bottom:443.335317pt;}
.y15{bottom:445.132001pt;}
.y20a{bottom:446.285600pt;}
.y12e{bottom:448.778075pt;}
.y16d{bottom:449.531275pt;}
.y92{bottom:453.094081pt;}
.yf1{bottom:453.619083pt;}
.yc9{bottom:453.915701pt;}
.y14{bottom:458.465335pt;}
.y1d8{bottom:459.360811pt;}
.y209{bottom:459.892400pt;}
.y12d{bottom:460.797125pt;}
.y16c{bottom:466.010106pt;}
.y16{bottom:469.193334pt;}
.y91{bottom:469.799582pt;}
.yc8{bottom:469.941195pt;}
.y13{bottom:471.798667pt;}
.y12c{bottom:472.740442pt;}
.y48{bottom:472.812667pt;}
.y208{bottom:473.499200pt;}
.y1d7{bottom:475.536972pt;}
.y1aa{bottom:477.730662pt;}
.yf0{bottom:478.639333pt;}
.y16b{bottom:482.488938pt;}
.y12b{bottom:484.759492pt;}
.yc7{bottom:485.966688pt;}
.y47{bottom:486.117067pt;}
.y90{bottom:486.429081pt;}
.y1a9{bottom:489.749712pt;}
.y1d6{bottom:491.789135pt;}
.y207{bottom:496.176267pt;}
.y12a{bottom:496.778542pt;}
.y16a{bottom:499.043770pt;}
.y46{bottom:499.421467pt;}
.yc6{bottom:501.992182pt;}
.y8f{bottom:503.134582pt;}
.yef{bottom:503.584133pt;}
.y1a8{bottom:506.076974pt;}
.y1d5{bottom:508.041298pt;}
.y129{bottom:508.797591pt;}
.y45{bottom:512.801467pt;}
.y169{bottom:515.522602pt;}
.yc5{bottom:517.941675pt;}
.y1a7{bottom:518.096024pt;}
.y1d4{bottom:524.217459pt;}
.y44{bottom:526.105867pt;}
.y8e{bottom:528.080165pt;}
.y1a6{bottom:530.039342pt;}
.y168{bottom:532.077434pt;}
.y128{bottom:532.759958pt;}
.yc4{bottom:533.967168pt;}
.y206{bottom:537.524333pt;}
.y43{bottom:539.485867pt;}
.y1d3{bottom:540.469622pt;}
.y1a5{bottom:542.058391pt;}
.y12{bottom:544.498675pt;}
.y127{bottom:544.779008pt;}
.y167{bottom:548.556265pt;}
.yc3{bottom:549.992662pt;}
.y205{bottom:550.979267pt;}
.y42{bottom:552.790267pt;}
.yee{bottom:553.551533pt;}
.y1a4{bottom:554.077441pt;}
.y1d2{bottom:556.721784pt;}
.y126{bottom:556.798058pt;}
.y204{bottom:564.510133pt;}
.y166{bottom:565.035097pt;}
.yc2{bottom:566.018156pt;}
.y41{bottom:566.094667pt;}
.y1a3{bottom:566.096491pt;}
.y125{bottom:568.741375pt;}
.yed{bottom:570.181033pt;}
.y11{bottom:571.512001pt;}
.y1d1{bottom:572.973947pt;}
.y4f{bottom:575.168150pt;}
.y1a2{bottom:578.039808pt;}
.y40{bottom:579.474667pt;}
.y124{bottom:580.760425pt;}
.y165{bottom:581.589929pt;}
.yc1{bottom:581.967648pt;}
.y8d{bottom:582.354041pt;}
.yec{bottom:586.886533pt;}
.y4e{bottom:587.187200pt;}
.y203{bottom:587.489600pt;}
.y10{bottom:587.565325pt;}
.y1d0{bottom:589.150109pt;}
.y1a1{bottom:590.058858pt;}
.y3f{bottom:592.779067pt;}
.y123{bottom:592.779475pt;}
.y245{bottom:592.929400pt;}
.y261{bottom:592.937333pt;}
.yc0{bottom:597.993142pt;}
.y164{bottom:598.068760pt;}
.y8c{bottom:598.983540pt;}
.y4d{bottom:599.206133pt;}
.y1a0{bottom:602.077908pt;}
.yeb{bottom:603.516033pt;}
.yf{bottom:603.618670pt;}
.y122{bottom:604.798525pt;}
.y1cf{bottom:605.402271pt;}
.y3e{bottom:606.159067pt;}
.y244{bottom:606.309533pt;}
.y260{bottom:607.601533pt;}
.ybf{bottom:614.018636pt;}
.y19f{bottom:614.096957pt;}
.y163{bottom:614.623593pt;}
.y8b{bottom:615.689041pt;}
.y121{bottom:616.741842pt;}
.y3d{bottom:619.463467pt;}
.y243{bottom:619.613733pt;}
.ye{bottom:619.671994pt;}
.yea{bottom:620.221533pt;}
.y1ce{bottom:621.654434pt;}
.y25f{bottom:622.265733pt;}
.y4c{bottom:623.168034pt;}
.y19e{bottom:626.040275pt;}
.y120{bottom:628.760892pt;}
.y202{bottom:628.837600pt;}
.ybe{bottom:630.044129pt;}
.y162{bottom:631.102424pt;}
.y8a{bottom:632.318540pt;}
.y3c{bottom:632.767867pt;}
.y242{bottom:632.992733pt;}
.y4b{bottom:635.187084pt;}
.y25e{bottom:635.645867pt;}
.yd{bottom:635.725339pt;}
.ye9{bottom:636.851033pt;}
.y1cd{bottom:637.906596pt;}
.y11f{bottom:640.779942pt;}
.y19d{bottom:642.065675pt;}
.y3b{bottom:646.147867pt;}
.y241{bottom:646.296933pt;}
.y4a{bottom:647.206133pt;}
.y161{bottom:647.581256pt;}
.y89{bottom:649.024041pt;}
.y25d{bottom:650.310067pt;}
.y201{bottom:651.817200pt;}
.yc{bottom:652.191993pt;}
.y11e{bottom:652.798991pt;}
.ye8{bottom:653.556533pt;}
.y1cc{bottom:654.082758pt;}
.ybd{bottom:654.989712pt;}
.y19c{bottom:658.695867pt;}
.y49{bottom:659.225067pt;}
.y3a{bottom:659.451867pt;}
.y240{bottom:659.601133pt;}
.y160{bottom:664.136088pt;}
.y11d{bottom:664.742309pt;}
.y25c{bottom:664.974267pt;}
.y88{bottom:665.653540pt;}
.ye7{bottom:670.186033pt;}
.y1cb{bottom:670.334920pt;}
.y23f{bottom:672.980133pt;}
.y11c{bottom:676.761358pt;}
.y25b{bottom:679.638467pt;}
.y15f{bottom:680.614919pt;}
.y87{bottom:682.359041pt;}
.y23e{bottom:686.284333pt;}
.y1ca{bottom:686.587083pt;}
.ye6{bottom:686.891533pt;}
.y19b{bottom:691.046947pt;}
.y11b{bottom:692.786758pt;}
.y25a{bottom:692.942667pt;}
.y200{bottom:693.165400pt;}
.ybc{bottom:697.018132pt;}
.y15e{bottom:697.169751pt;}
.y86{bottom:698.988540pt;}
.yb{bottom:699.213335pt;}
.y23d{bottom:699.588533pt;}
.y39{bottom:701.252933pt;}
.y1c9{bottom:702.763245pt;}
.y19a{bottom:703.065996pt;}
.ye5{bottom:703.521033pt;}
.y1ff{bottom:706.620333pt;}
.y259{bottom:707.606867pt;}
.y11a{bottom:709.416950pt;}
.y23c{bottom:712.967533pt;}
.ybb{bottom:713.043626pt;}
.y15d{bottom:713.648583pt;}
.y36{bottom:714.632400pt;}
.y38{bottom:714.632933pt;}
.y199{bottom:715.085046pt;}
.y85{bottom:715.694041pt;}
.ya{bottom:717.880002pt;}
.y1c8{bottom:719.015407pt;}
.y37{bottom:719.924267pt;}
.y1fe{bottom:720.075267pt;}
.ye4{bottom:720.226533pt;}
.y119{bottom:721.436000pt;}
.y258{bottom:722.271067pt;}
.y23b{bottom:726.271733pt;}
.y33{bottom:727.936400pt;}
.y35{bottom:727.936800pt;}
.yba{bottom:729.069119pt;}
.y15c{bottom:730.203415pt;}
.y198{bottom:731.412309pt;}
.y84{bottom:732.323540pt;}
.y34{bottom:733.303733pt;}
.y1fd{bottom:733.606133pt;}
.y1c7{bottom:735.267570pt;}
.y257{bottom:735.651200pt;}
.y9{bottom:736.546669pt;}
.y23a{bottom:739.650733pt;}
.y30{bottom:741.315867pt;}
.y32{bottom:741.316400pt;}
.y197{bottom:743.431358pt;}
.yb9{bottom:745.018612pt;}
.y31{bottom:746.607733pt;}
.y15b{bottom:746.682247pt;}
.y83{bottom:749.029041pt;}
.y256{bottom:750.315400pt;}
.y1c6{bottom:751.293063pt;}
.y239{bottom:752.954933pt;}
.y2d{bottom:754.619867pt;}
.y2f{bottom:754.620267pt;}
.y8{bottom:755.213335pt;}
.y196{bottom:755.374676pt;}
.y1fc{bottom:756.283333pt;}
.y2e{bottom:759.911600pt;}
.yb8{bottom:761.044106pt;}
.y15a{bottom:762.707740pt;}
.y255{bottom:764.979600pt;}
.y82{bottom:765.658540pt;}
.y238{bottom:766.259133pt;}
.y195{bottom:767.393726pt;}
.y1c5{bottom:767.469225pt;}
.y2a{bottom:767.923733pt;}
.y2c{bottom:767.924267pt;}
.y118{bottom:770.417688pt;}
.y2b{bottom:773.291200pt;}
.yb7{bottom:777.069599pt;}
.y159{bottom:779.186572pt;}
.y194{bottom:779.412775pt;}
.y237{bottom:779.638133pt;}
.y254{bottom:779.643800pt;}
.y27{bottom:781.303333pt;}
.y29{bottom:781.303733pt;}
.y81{bottom:782.364041pt;}
.y1c4{bottom:783.721388pt;}
.y28{bottom:786.595067pt;}
.y117{bottom:786.744950pt;}
.y193{bottom:791.431825pt;}
.y236{bottom:792.942333pt;}
.y253{bottom:792.948000pt;}
.yb6{bottom:793.095093pt;}
.y26{bottom:794.607733pt;}
.y158{bottom:795.665403pt;}
.y1fb{bottom:798.237354pt;}
.y116{bottom:798.764000pt;}
.y80{bottom:798.993540pt;}
.y1c3{bottom:799.973550pt;}
.y25{bottom:799.974667pt;}
.y192{bottom:803.375143pt;}
.y235{bottom:806.321333pt;}
.y7{bottom:806.470670pt;}
.y252{bottom:807.612200pt;}
.yb5{bottom:809.044586pt;}
.y115{bottom:810.783050pt;}
.y157{bottom:812.220235pt;}
.y1fa{bottom:814.413515pt;}
.y191{bottom:815.394192pt;}
.y7f{bottom:815.699041pt;}
.y1c2{bottom:816.149712pt;}
.y24{bottom:818.494267pt;}
.y22{bottom:818.494914pt;}
.y234{bottom:819.625533pt;}
.y251{bottom:822.276400pt;}
.y114{bottom:822.726367pt;}
.y23{bottom:824.692667pt;}
.yb4{bottom:825.070079pt;}
.y190{bottom:827.413242pt;}
.y156{bottom:828.699067pt;}
.y1f9{bottom:830.513676pt;}
.y7e{bottom:832.328540pt;}
.y1c1{bottom:832.401874pt;}
.y233{bottom:832.929733pt;}
.y6{bottom:834.470665pt;}
.y21{bottom:834.519467pt;}
.y1f{bottom:834.520115pt;}
.y250{bottom:835.655400pt;}
.y112{bottom:839.053630pt;}
.y18f{bottom:839.432292pt;}
.y20{bottom:840.718000pt;}
.yb3{bottom:841.095573pt;}
.y232{bottom:846.308733pt;}
.y1f8{bottom:846.689838pt;}
.y1c0{bottom:848.654037pt;}
.y7d{bottom:849.034041pt;}
.y24f{bottom:850.319600pt;}
.y1d{bottom:850.469067pt;}
.y113{bottom:851.072680pt;}
.y18e{bottom:851.375609pt;}
.y155{bottom:853.719467pt;}
.y1e{bottom:856.667467pt;}
.yb2{bottom:857.121174pt;}
.y231{bottom:859.612933pt;}
.y5{bottom:862.470665pt;}
.y1f7{bottom:862.866000pt;}
.y18d{bottom:863.394659pt;}
.y1bf{bottom:864.906199pt;}
.y24e{bottom:864.983800pt;}
.y111{bottom:867.399942pt;}
.y230{bottom:872.993067pt;}
.yb1{bottom:873.082281pt;}
.y7c{bottom:874.054291pt;}
.y18c{bottom:875.413709pt;}
.y24d{bottom:878.288000pt;}
.y110{bottom:879.418992pt;}
.y1be{bottom:881.082361pt;}
.y1c{bottom:885.164400pt;}
.y22f{bottom:886.297267pt;}
.y18b{bottom:887.432758pt;}
.y1f6{bottom:887.810933pt;}
.yb0{bottom:889.107775pt;}
.y10f{bottom:891.438042pt;}
.y24c{bottom:892.952200pt;}
.y154{bottom:895.748820pt;}
.y1bd{bottom:897.334524pt;}
.y22e{bottom:899.601467pt;}
.y10e{bottom:903.381359pt;}
.yaf{bottom:905.133268pt;}
.y1b{bottom:906.481733pt;}
.y24b{bottom:907.616400pt;}
.y18a{bottom:911.395126pt;}
.y153{bottom:912.227651pt;}
.y22d{bottom:912.980467pt;}
.y1bc{bottom:913.586686pt;}
.y10d{bottom:915.400409pt;}
.y4{bottom:920.485335pt;}
.yae{bottom:921.158762pt;}
.y24a{bottom:922.280600pt;}
.y189{bottom:923.414175pt;}
.y22c{bottom:926.284667pt;}
.y7b{bottom:928.252166pt;}
.y152{bottom:928.706483pt;}
.y1f5{bottom:929.837515pt;}
.y1bb{bottom:929.838849pt;}
.y10b{bottom:931.425809pt;}
.y188{bottom:935.433225pt;}
.y249{bottom:935.659600pt;}
.yad{bottom:937.108255pt;}
.y1a{bottom:938.456533pt;}
.y22b{bottom:939.588867pt;}
.y10c{bottom:943.444858pt;}
.y7a{bottom:944.957667pt;}
.y151{bottom:945.261315pt;}
.y1f4{bottom:945.939010pt;}
.y1ba{bottom:946.015011pt;}
.y248{bottom:950.323800pt;}
.y187{bottom:951.382892pt;}
.y22a{bottom:952.969000pt;}
.yac{bottom:953.133748pt;}
.y79{bottom:961.587166pt;}
.y150{bottom:961.740146pt;}
.y1b9{bottom:962.040504pt;}
.y1f3{bottom:962.115172pt;}
.y10a{bottom:963.400875pt;}
.y247{bottom:964.988000pt;}
.y229{bottom:966.273200pt;}
.y186{bottom:968.087750pt;}
.y77{bottom:970.506894pt;}
.yab{bottom:978.153999pt;}
.y1f2{bottom:978.291333pt;}
.y78{bottom:978.292667pt;}
.y14f{bottom:978.294979pt;}
.y246{bottom:979.652200pt;}
.y228{bottom:979.653333pt;}
.y109{bottom:980.106800pt;}
.y76{bottom:982.525733pt;}
.ye3{bottom:1014.424933pt;}
.y3{bottom:1035.664002pt;}
.h10{height:22.876949pt;}
.h17{height:26.692952pt;}
.he{height:26.914642pt;}
.h12{height:27.399635pt;}
.h18{height:28.599619pt;}
.h1b{height:28.839615pt;}
.h14{height:30.506285pt;}
.h1d{height:32.277333pt;}
.h1e{height:32.458667pt;}
.h4{height:32.645833pt;}
.h11{height:34.320000pt;}
.h1c{height:34.405355pt;}
.h13{height:34.608000pt;}
.h2{height:36.726562pt;}
.h15{height:37.973713pt;}
.h16{height:38.187049pt;}
.hb{height:38.453718pt;}
.h8{height:40.000000pt;}
.hd{height:40.376385pt;}
.hf{height:40.790788pt;}
.h7{height:40.807292pt;}
.h19{height:43.011336pt;}
.h1a{height:43.057366pt;}
.h6{height:48.968750pt;}
.hc{height:53.834667pt;}
.h3{height:61.210938pt;}
.h5{height:73.453125pt;}
.ha{height:1058.000000pt;}
.h9{height:1058.268000pt;}
.h1{height:1110.666667pt;}
.h0{height:1110.720000pt;}
.w2{width:812.598667pt;}
.w3{width:812.666667pt;}
.w0{width:845.760000pt;}
.w1{width:846.000000pt;}
.x0{left:0.000000pt;}
.x7{left:63.798400pt;}
.x23{left:67.804667pt;}
.x4a{left:74.456400pt;}
.x33{left:79.748000pt;}
.x4c{left:98.796867pt;}
.x4{left:129.466667pt;}
.x27{left:149.215733pt;}
.x28{left:153.826800pt;}
.x1d{left:155.867733pt;}
.x1e{left:161.839333pt;}
.x11{left:164.485067pt;}
.x3{left:170.560000pt;}
.x5{left:175.733333pt;}
.x8{left:184.289733pt;}
.x2{left:208.500008pt;}
.x41{left:246.422251pt;}
.x38{left:251.487787pt;}
.x37{left:255.645602pt;}
.x1{left:260.969328pt;}
.x12{left:266.381067pt;}
.x13{left:269.555867pt;}
.x9{left:271.143200pt;}
.x1f{left:273.335333pt;}
.xa{left:275.981067pt;}
.x2d{left:291.628267pt;}
.x2e{left:296.163733pt;}
.x25{left:316.119600pt;}
.x26{left:319.748000pt;}
.x42{left:334.333685pt;}
.x3a{left:339.399222pt;}
.x39{left:341.515462pt;}
.x20{left:368.277067pt;}
.x14{left:372.963733pt;}
.x15{left:379.086533pt;}
.xb{left:381.278667pt;}
.xc{left:387.325867pt;}
.x47{left:413.102267pt;}
.x35{left:414.239238pt;}
.x43{left:417.179583pt;}
.x31{left:419.376267pt;}
.x32{left:421.341600pt;}
.x48{left:423.760267pt;}
.x3b{left:424.740022pt;}
.x36{left:430.264731pt;}
.x16{left:445.001467pt;}
.x4b{left:449.310800pt;}
.x17{left:451.048667pt;}
.x6{left:468.533333pt;}
.xd{left:502.374667pt;}
.x24{left:504.037733pt;}
.xe{left:507.817200pt;}
.x44{left:510.155487pt;}
.x21{left:515.980933pt;}
.x3d{left:517.791658pt;}
.x49{left:522.330533pt;}
.x3c{left:526.786746pt;}
.x18{left:581.442400pt;}
.x19{left:595.124267pt;}
.x45{left:601.618877pt;}
.x3f{left:609.256115pt;}
.x3e{left:614.320585pt;}
.x22{left:621.883333pt;}
.x34{left:628.837600pt;}
.x29{left:650.607733pt;}
.xf{left:651.741600pt;}
.x1a{left:652.799216pt;}
.x2a{left:654.689600pt;}
.x10{left:657.184133pt;}
.x2b{left:667.615600pt;}
.x2c{left:670.110133pt;}
.x2f{left:676.988800pt;}
.x30{left:681.599867pt;}
.x1b{left:687.722667pt;}
.x46{left:693.158000pt;}
.x40{left:698.377134pt;}
.x1c{left:701.328933pt;}
}




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