
    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_4705eb357f6a25dce576c4ee.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.977000;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_fcfb3711a83deff2eae1ffcb.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.983000;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_257740de78d0dec1118d432b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.761000;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_3864f842fb8189a4c77a9a18.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.698000;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_bf8968b4f03bafa38a0266d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.173000;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_0e139abaf30b4cf1190f1daa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971000;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_3edd203b98317d81a24de87f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_41a7fa5234aeda2f9639026b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.909000;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_557bea1dd7d537b4e7018a35.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.983000;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_1bd9452832fd288c3fee2bcd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.948000;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_89f1e56f2b68db5b1c115b60.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.355000;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_91d0dd68693cc281ad6d4c89.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.694000;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_92382abf65586a5bb2dcb250.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.142000;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_1c87deb6b11be47637fc7470.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.702000;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_3a1d3d7c03653fc27c19f4d3.woff2')format("woff");}.fff{font-family:fff;line-height:0.978000;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_80def24597cf04f0b91e6d8a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.698151;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_74a9a2f8aadc1c8fc040156e.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_8929472c6786a77a346ef33d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.288000;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_e98b72cabe6dc697b17ac359.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.892000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-ms-transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-webkit-transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);}
.m3{transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-ms-transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-webkit-transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);}
.m4{transform:matrix(0.246464,0.000000,-0.041898,0.246464,0,0);-ms-transform:matrix(0.246464,0.000000,-0.041898,0.246464,0,0);-webkit-transform:matrix(0.246464,0.000000,-0.041898,0.246464,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-13.266537px;}
.v9{vertical-align:-11.905453px;}
.v3{vertical-align:-10.544369px;}
.v6{vertical-align:-7.485355px;}
.v2{vertical-align:-6.123000px;}
.v1{vertical-align:-1.362904px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.605464px;}
.v8{vertical-align:18.368589px;}
.v4{vertical-align:19.725396px;}
.va{vertical-align:23.520000px;}
.lsf{letter-spacing:-4.303836px;}
.lse{letter-spacing:-4.260798px;}
.ls32{letter-spacing:-0.010760px;}
.ls33{letter-spacing:-0.005380px;}
.lsd{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.000401px;}
.lsc{letter-spacing:0.005380px;}
.ls30{letter-spacing:0.016139px;}
.ls11{letter-spacing:0.021519px;}
.ls7{letter-spacing:0.025978px;}
.ls1a{letter-spacing:0.026899px;}
.ls2{letter-spacing:0.089662px;}
.lsa{letter-spacing:0.102216px;}
.ls34{letter-spacing:0.112975px;}
.ls0{letter-spacing:0.119553px;}
.ls1e{letter-spacing:0.150580px;}
.lsb{letter-spacing:0.151180px;}
.ls12{letter-spacing:0.156014px;}
.ls1c{letter-spacing:0.188292px;}
.ls2a{letter-spacing:0.220200px;}
.ls45{letter-spacing:0.227065px;}
.ls15{letter-spacing:0.236710px;}
.ls27{letter-spacing:0.296427px;}
.ls19{letter-spacing:2.695270px;}
.ls20{letter-spacing:4.319963px;}
.ls13{letter-spacing:5.756365px;}
.ls3{letter-spacing:5.872835px;}
.ls14{letter-spacing:6.095291px;}
.ls4{letter-spacing:6.213549px;}
.ls53{letter-spacing:6.293270px;}
.ls1{letter-spacing:6.584979px;}
.ls50{letter-spacing:6.632800px;}
.ls5{letter-spacing:7.576405px;}
.ls4f{letter-spacing:7.651392px;}
.ls52{letter-spacing:7.990923px;}
.ls6{letter-spacing:9.032651px;}
.ls2f{letter-spacing:9.979492px;}
.ls40{letter-spacing:10.372418px;}
.ls51{letter-spacing:10.711949px;}
.ls8{letter-spacing:11.754819px;}
.ls2c{letter-spacing:13.266537px;}
.ls28{letter-spacing:13.341854px;}
.ls18{letter-spacing:13.578565px;}
.ls10{letter-spacing:15.681814px;}
.ls9{letter-spacing:16.970626px;}
.ls38{letter-spacing:18.679732px;}
.ls36{letter-spacing:18.680432px;}
.ls1b{letter-spacing:19.754552px;}
.ls41{letter-spacing:20.916993px;}
.ls31{letter-spacing:20.969400px;}
.ls2e{letter-spacing:21.115637px;}
.ls2d{letter-spacing:21.454563px;}
.ls29{letter-spacing:24.047617px;}
.ls2b{letter-spacing:25.198890px;}
.ls16{letter-spacing:29.626448px;}
.ls3d{letter-spacing:32.012365px;}
.ls26{letter-spacing:35.953070px;}
.ls17{letter-spacing:47.842200px;}
.ls49{letter-spacing:279.845396px;}
.ls24{letter-spacing:293.407821px;}
.ls3a{letter-spacing:303.661682px;}
.ls3b{letter-spacing:304.000608px;}
.ls4d{letter-spacing:309.439566px;}
.ls4a{letter-spacing:309.783872px;}
.ls46{letter-spacing:322.028251px;}
.ls48{letter-spacing:327.811515px;}
.ls3c{letter-spacing:329.511525px;}
.ls3e{letter-spacing:333.594778px;}
.ls4e{letter-spacing:339.716968px;}
.ls4c{letter-spacing:357.405684px;}
.ls47{letter-spacing:363.866800px;}
.ls44{letter-spacing:387.677706px;}
.ls1f{letter-spacing:391.034689px;}
.ls4b{letter-spacing:393.460970px;}
.ls3f{letter-spacing:404.979079px;}
.ls43{letter-spacing:405.366423px;}
.ls25{letter-spacing:426.751049px;}
.ls42{letter-spacing:441.421709px;}
.ls39{letter-spacing:445.117617px;}
.ls1d{letter-spacing:483.556146px;}
.ls21{letter-spacing:496.822683px;}
.ls23{letter-spacing:501.244862px;}
.ls22{letter-spacing:530.839032px;}
.ls37{letter-spacing:1145.806348px;}
.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;}
}
.wsa6{word-spacing:-483.609943px;}
.ws172{word-spacing:-445.171415px;}
.ws1aa{word-spacing:-441.475506px;}
.ws1ab{word-spacing:-405.420221px;}
.wsaa{word-spacing:-391.088487px;}
.ws1ac{word-spacing:-387.731504px;}
.ws1b8{word-spacing:-363.920598px;}
.ws1b9{word-spacing:-327.865312px;}
.ws1bb{word-spacing:-309.837670px;}
.ws174{word-spacing:-304.054406px;}
.ws173{word-spacing:-303.715480px;}
.ws177{word-spacing:-300.261661px;}
.ws1ba{word-spacing:-279.899194px;}
.ws1b6{word-spacing:-279.511850px;}
.ws8e{word-spacing:-43.075898px;}
.ws167{word-spacing:-32.023598px;}
.ws16a{word-spacing:-32.022397px;}
.ws6f{word-spacing:-13.449450px;}
.ws19d{word-spacing:-13.437757px;}
.ws160{word-spacing:-11.675500px;}
.ws3f{word-spacing:-9.414300px;}
.wse2{word-spacing:-4.319963px;}
.ws1e6{word-spacing:-2.419753px;}
.ws101{word-spacing:-1.958240px;}
.ws10c{word-spacing:-1.651592px;}
.ws108{word-spacing:-0.591776px;}
.ws71{word-spacing:-0.236710px;}
.wse1{word-spacing:-0.209811px;}
.ws3c{word-spacing:-0.059776px;}
.wsf{word-spacing:-0.053798px;}
.ws168{word-spacing:-0.047997px;}
.ws1d{word-spacing:-0.044831px;}
.ws15f{word-spacing:-0.041998px;}
.ws19b{word-spacing:-0.041843px;}
.wsa5{word-spacing:-0.037657px;}
.ws1{word-spacing:-0.035866px;}
.ws66{word-spacing:0.000000px;}
.wsda{word-spacing:0.053798px;}
.ws75{word-spacing:0.102216px;}
.ws130{word-spacing:0.129115px;}
.ws1db{word-spacing:0.205631px;}
.ws1e2{word-spacing:0.306056px;}
.ws1d3{word-spacing:0.315620px;}
.ws10a{word-spacing:0.322787px;}
.ws1da{word-spacing:0.339531px;}
.ws1bf{word-spacing:0.344313px;}
.ws1a3{word-spacing:0.425609px;}
.ws1bc{word-spacing:0.449519px;}
.ws1d8{word-spacing:0.463866px;}
.ws19c{word-spacing:0.478212px;}
.ws1de{word-spacing:0.530815px;}
.ws1c3{word-spacing:0.540380px;}
.ws1c1{word-spacing:0.611191px;}
.ws1e7{word-spacing:0.621676px;}
.ws1c8{word-spacing:0.645586px;}
.ws1bd{word-spacing:0.683843px;}
.ws1e1{word-spacing:0.698190px;}
.ws1cb{word-spacing:0.765139px;}
.ws1ec{word-spacing:0.774703px;}
.ws88{word-spacing:0.780068px;}
.ws19e{word-spacing:0.955593px;}
.wsf7{word-spacing:0.989880px;}
.ws1f2{word-spacing:1.108235px;}
.ws98{word-spacing:1.393363px;}
.ws19a{word-spacing:1.490199px;}
.wsfe{word-spacing:1.624694px;}
.ws10b{word-spacing:1.786087px;}
.wsd6{word-spacing:1.829125px;}
.ws1c4{word-spacing:2.146532px;}
.ws111{word-spacing:2.173431px;}
.ws1a7{word-spacing:2.211090px;}
.ws1e8{word-spacing:2.221849px;}
.ws106{word-spacing:2.248748px;}
.ws19f{word-spacing:2.275647px;}
.wse7{word-spacing:2.340204px;}
.ws194{word-spacing:2.463939px;}
.ws1df{word-spacing:2.512357px;}
.ws1dd{word-spacing:2.566155px;}
.ws159{word-spacing:2.587674px;}
.ws1dc{word-spacing:2.593054px;}
.ws1c6{word-spacing:2.598434px;}
.ws115{word-spacing:2.603814px;}
.ws86{word-spacing:2.614573px;}
.ws1d9{word-spacing:2.619953px;}
.ws1a5{word-spacing:2.625333px;}
.ws1d4{word-spacing:2.636092px;}
.ws186{word-spacing:2.641472px;}
.ws1a4{word-spacing:2.657611px;}
.wsd1{word-spacing:2.662991px;}
.ws107{word-spacing:2.668371px;}
.ws1ea{word-spacing:2.673751px;}
.wsce{word-spacing:2.679130px;}
.ws1d6{word-spacing:2.684510px;}
.ws1a0{word-spacing:2.689890px;}
.wsd4{word-spacing:2.695270px;}
.ws1c9{word-spacing:2.700650px;}
.ws1a2{word-spacing:2.727548px;}
.ws1ca{word-spacing:2.759827px;}
.ws1d1{word-spacing:2.765207px;}
.ws102{word-spacing:2.770587px;}
.ws8b{word-spacing:2.808245px;}
.ws1d5{word-spacing:2.835144px;}
.ws18d{word-spacing:2.851283px;}
.ws1c2{word-spacing:2.905081px;}
.wsd2{word-spacing:2.915841px;}
.ws1e9{word-spacing:3.001917px;}
.ws64{word-spacing:3.039576px;}
.ws197{word-spacing:3.389261px;}
.wsf2{word-spacing:3.486097px;}
.wscb{word-spacing:3.722808px;}
.ws196{word-spacing:3.948759px;}
.ws67{word-spacing:4.061734px;}
.wsf6{word-spacing:4.137051px;}
.ws15a{word-spacing:4.212368px;}
.ws85{word-spacing:4.282305px;}
.ws156{word-spacing:4.309204px;}
.ws13d{word-spacing:4.438319px;}
.ws99{word-spacing:4.449078px;}
.ws10f{word-spacing:4.551294px;}
.wsdf{word-spacing:4.583573px;}
.ws92{word-spacing:4.718067px;}
.wsf9{word-spacing:4.782624px;}
.ws6b{word-spacing:4.847182px;}
.ws18f{word-spacing:4.970917px;}
.ws169{word-spacing:5.337266px;}
.wsc9{word-spacing:5.347501px;}
.ws18a{word-spacing:5.374400px;}
.ws93{word-spacing:5.395919px;}
.ws154{word-spacing:5.422818px;}
.ws190{word-spacing:5.525034px;}
.ws95{word-spacing:5.530414px;}
.ws110{word-spacing:5.557313px;}
.wse8{word-spacing:5.638009px;}
.ws113{word-spacing:5.648769px;}
.ws94{word-spacing:5.869340px;}
.ws118{word-spacing:6.025354px;}
.ws13a{word-spacing:6.100671px;}
.ws9a{word-spacing:6.106050px;}
.ws14c{word-spacing:6.122190px;}
.wsdc{word-spacing:6.208266px;}
.ws1f0{word-spacing:6.245925px;}
.ws1cd{word-spacing:6.345873px;}
.wsdb{word-spacing:6.369660px;}
.wscd{word-spacing:6.385799px;}
.wsf1{word-spacing:6.471875px;}
.ws8c{word-spacing:6.482635px;}
.wsef{word-spacing:6.606370px;}
.ws68{word-spacing:6.627889px;}
.ws152{word-spacing:6.821561px;}
.ws126{word-spacing:6.880739px;}
.wscf{word-spacing:6.886118px;}
.ws120{word-spacing:7.090550px;}
.wse9{word-spacing:7.122829px;}
.ws128{word-spacing:7.338020px;}
.ws11f{word-spacing:7.370299px;}
.ws5a{word-spacing:7.510173px;}
.ws14e{word-spacing:7.612389px;}
.ws1ef{word-spacing:7.639288px;}
.ws180{word-spacing:7.671566px;}
.wsea{word-spacing:7.768402px;}
.ws153{word-spacing:7.779162px;}
.ws9d{word-spacing:7.806061px;}
.ws104{word-spacing:7.919036px;}
.ws183{word-spacing:8.026632px;}
.ws143{word-spacing:8.032012px;}
.wseb{word-spacing:8.096569px;}
.ws63{word-spacing:8.123468px;}
.ws5c{word-spacing:8.139607px;}
.ws127{word-spacing:8.144987px;}
.ws149{word-spacing:8.247203px;}
.wse4{word-spacing:8.397837px;}
.ws140{word-spacing:8.424735px;}
.wsca{word-spacing:8.462394px;}
.ws5e{word-spacing:8.634547px;}
.wse5{word-spacing:8.677585px;}
.ws131{word-spacing:8.704484px;}
.ws11b{word-spacing:8.747522px;}
.ws41{word-spacing:8.774421px;}
.ws11a{word-spacing:8.930435px;}
.ws1ce{word-spacing:8.973473px;}
.ws1cf{word-spacing:9.113347px;}
.ws81{word-spacing:9.269361px;}
.ws43{word-spacing:9.355437px;}
.ws80{word-spacing:9.409235px;}
.wsd5{word-spacing:9.608287px;}
.ws4d{word-spacing:9.844997px;}
.ws181{word-spacing:9.941833px;}
.ws10d{word-spacing:9.947213px;}
.ws147{word-spacing:10.108607px;}
.ws49{word-spacing:10.264620px;}
.ws109{word-spacing:10.291519px;}
.wsdd{word-spacing:10.447533px;}
.ws60{word-spacing:10.463672px;}
.ws4e{word-spacing:10.603546px;}
.wsf8{word-spacing:10.614306px;}
.wsde{word-spacing:10.630445px;}
.ws12e{word-spacing:10.759560px;}
.ws184{word-spacing:10.851016px;}
.ws44{word-spacing:10.867156px;}
.ws17f{word-spacing:10.937093px;}
.ws139{word-spacing:10.969371px;}
.ws112{word-spacing:11.130765px;}
.wsc8{word-spacing:11.206082px;}
.ws136{word-spacing:11.292158px;}
.ws4f{word-spacing:11.308298px;}
.ws114{word-spacing:11.313677px;}
.ws1ee{word-spacing:11.360968px;}
.wse6{word-spacing:11.410513px;}
.ws14b{word-spacing:11.469691px;}
.ws198{word-spacing:11.647224px;}
.ws129{word-spacing:11.695642px;}
.ws18b{word-spacing:11.733300px;}
.wse0{word-spacing:11.812273px;}
.ws6d{word-spacing:11.824756px;}
.ws12f{word-spacing:11.851655px;}
.ws6c{word-spacing:11.889314px;}
.wsd0{word-spacing:11.905453px;}
.ws70{word-spacing:12.007669px;}
.ws51{word-spacing:12.034568px;}
.ws45{word-spacing:12.088366px;}
.ws4a{word-spacing:12.142163px;}
.ws58{word-spacing:12.147543px;}
.ws6e{word-spacing:12.169062px;}
.ws76{word-spacing:12.174442px;}
.ws162{word-spacing:12.178965px;}
.ws59{word-spacing:12.217480px;}
.ws2{word-spacing:12.230374px;}
.ws0{word-spacing:12.241134px;}
.ws4{word-spacing:12.244721px;}
.ws56{word-spacing:12.260519px;}
.ws148{word-spacing:12.330456px;}
.ws12a{word-spacing:12.368114px;}
.ws46{word-spacing:12.373494px;}
.ws3{word-spacing:12.384599px;}
.ws187{word-spacing:12.427292px;}
.ws15b{word-spacing:12.454191px;}
.ws15c{word-spacing:12.491849px;}
.ws55{word-spacing:12.545647px;}
.wsbb{word-spacing:12.676895px;}
.ws13e{word-spacing:12.820016px;}
.ws141{word-spacing:12.906092px;}
.wsfd{word-spacing:13.137423px;}
.ws4c{word-spacing:13.158942px;}
.ws73{word-spacing:13.196600px;}
.ws54{word-spacing:13.352614px;}
.ws14f{word-spacing:13.395652px;}
.ws72{word-spacing:13.438690px;}
.ws74{word-spacing:13.530147px;}
.ws199{word-spacing:13.842174px;}
.ws40{word-spacing:13.928250px;}
.ws5f{word-spacing:14.078884px;}
.ws3e{word-spacing:14.089644px;}
.ws6a{word-spacing:14.143442px;}
.ws4b{word-spacing:14.304835px;}
.ws155{word-spacing:14.337114px;}
.ws3d{word-spacing:14.482368px;}
.ws13c{word-spacing:14.525406px;}
.ws65{word-spacing:14.713698px;}
.ws189{word-spacing:14.869712px;}
.wse3{word-spacing:14.945029px;}
.wsbd{word-spacing:14.958228px;}
.ws16f{word-spacing:14.988714px;}
.ws16c{word-spacing:14.993795px;}
.wsfa{word-spacing:15.014966px;}
.wsc4{word-spacing:15.024280px;}
.wsc6{word-spacing:15.034442px;}
.ws17e{word-spacing:15.049685px;}
.wsc5{word-spacing:15.054766px;}
.ws16e{word-spacing:15.075090px;}
.wsee{word-spacing:15.095663px;}
.ws17d{word-spacing:15.110656px;}
.ws17b{word-spacing:15.141142px;}
.ws125{word-spacing:15.144081px;}
.ws17c{word-spacing:15.151303px;}
.ws165{word-spacing:15.156384px;}
.ws163{word-spacing:15.186870px;}
.ws7b{word-spacing:15.187119px;}
.ws16b{word-spacing:15.191951px;}
.ws7d{word-spacing:15.230157px;}
.ws7c{word-spacing:15.235537px;}
.ws1b2{word-spacing:15.278326px;}
.wsc7{word-spacing:15.293569px;}
.ws16d{word-spacing:15.298650px;}
.ws1a1{word-spacing:15.326993px;}
.ws164{word-spacing:15.354540px;}
.ws12d{word-spacing:15.391551px;}
.wsbc{word-spacing:15.430754px;}
.ws1e4{word-spacing:15.456108px;}
.ws22{word-spacing:15.466626px;}
.ws2e{word-spacing:15.471109px;}
.ws134{word-spacing:15.483007px;}
.ws1c{word-spacing:15.493524px;}
.ws47{word-spacing:15.515286px;}
.ws15{word-spacing:15.542838px;}
.wsfb{word-spacing:15.563704px;}
.ws29{word-spacing:15.592152px;}
.ws1e0{word-spacing:15.606742px;}
.ws1cc{word-spacing:15.612122px;}
.ws1c5{word-spacing:15.622881px;}
.ws1e{word-spacing:15.628017px;}
.ws8a{word-spacing:15.628261px;}
.ws19{word-spacing:15.636983px;}
.ws28{word-spacing:15.650432px;}
.ws13{word-spacing:15.659398px;}
.ws26{word-spacing:15.663882px;}
.ws1d2{word-spacing:15.671299px;}
.ws1a{word-spacing:15.677331px;}
.ws2c{word-spacing:15.695263px;}
.ws10{word-spacing:15.708712px;}
.ws61{word-spacing:15.708958px;}
.ws20{word-spacing:15.717678px;}
.ws16{word-spacing:15.722162px;}
.ws7e{word-spacing:15.751996px;}
.ws117{word-spacing:15.800414px;}
.ws12{word-spacing:15.807340px;}
.ws1e5{word-spacing:15.832693px;}
.ws11{word-spacing:15.834239px;}
.ws171{word-spacing:15.838072px;}
.ws1f{word-spacing:15.838722px;}
.ws1be{word-spacing:15.854212px;}
.ws1ed{word-spacing:15.875731px;}
.ws179{word-spacing:15.881111px;}
.ws3b{word-spacing:15.951048px;}
.ws53{word-spacing:15.967187px;}
.ws25{word-spacing:15.977697px;}
.ws9e{word-spacing:15.977947px;}
.wsab{word-spacing:15.983326px;}
.ws1eb{word-spacing:15.994086px;}
.ws2f{word-spacing:16.000113px;}
.wsb6{word-spacing:16.010225px;}
.wsa4{word-spacing:16.058643px;}
.wsec{word-spacing:16.069403px;}
.ws2a{word-spacing:16.071842px;}
.ws69{word-spacing:16.074783px;}
.wsb4{word-spacing:16.085542px;}
.wsbf{word-spacing:16.090922px;}
.wsff{word-spacing:16.096302px;}
.ws1c0{word-spacing:16.101682px;}
.wsae{word-spacing:16.107061px;}
.ws23{word-spacing:16.112190px;}
.ws87{word-spacing:16.112441px;}
.wsb0{word-spacing:16.128580px;}
.ws82{word-spacing:16.133960px;}
.ws5{word-spacing:16.149219px;}
.wsb3{word-spacing:16.166239px;}
.ws7{word-spacing:16.168348px;}
.ws3a{word-spacing:16.171619px;}
.ws170{word-spacing:16.176998px;}
.ws1b3{word-spacing:16.182378px;}
.ws1e3{word-spacing:16.187758px;}
.ws1af{word-spacing:16.209277px;}
.wsa9{word-spacing:16.220037px;}
.wsd3{word-spacing:16.225416px;}
.ws1a6{word-spacing:16.236176px;}
.ws9f{word-spacing:16.241556px;}
.ws145{word-spacing:16.295354px;}
.ws1a8{word-spacing:16.306113px;}
.ws6{word-spacing:16.307029px;}
.ws9{word-spacing:16.316593px;}
.wsc2{word-spacing:16.316873px;}
.wsbe{word-spacing:16.322253px;}
.ws14d{word-spacing:16.327632px;}
.ws1d7{word-spacing:16.338392px;}
.ws1c7{word-spacing:16.376050px;}
.ws1ad{word-spacing:16.402949px;}
.ws8d{word-spacing:16.456747px;}
.ws37{word-spacing:16.478266px;}
.wsa{word-spacing:16.584392px;}
.ws103{word-spacing:16.612761px;}
.ws7f{word-spacing:16.623520px;}
.ws62{word-spacing:16.650419px;}
.ws124{word-spacing:16.914028px;}
.ws8{word-spacing:16.923923px;}
.ws15d{word-spacing:17.048523px;}
.ws144{word-spacing:17.139979px;}
.ws32{word-spacing:17.156118px;}
.ws33{word-spacing:17.193777px;}
.ws100{word-spacing:17.252954px;}
.ws195{word-spacing:17.317512px;}
.ws18c{word-spacing:17.430487px;}
.ws39{word-spacing:17.634919px;}
.ws77{word-spacing:17.785553px;}
.ws116{word-spacing:17.825084px;}
.ws12c{word-spacing:17.850110px;}
.ws5d{word-spacing:17.980500px;}
.ws13f{word-spacing:18.501063px;}
.ws78{word-spacing:18.630178px;}
.ws1b{word-spacing:18.657077px;}
.ws17{word-spacing:18.667837px;}
.ws2d{word-spacing:18.673216px;}
.ws18{word-spacing:18.764673px;}
.wsed{word-spacing:18.791572px;}
.ws7a{word-spacing:18.813091px;}
.ws2b{word-spacing:18.888408px;}
.ws27{word-spacing:18.893787px;}
.ws14{word-spacing:18.899167px;}
.wse{word-spacing:18.942205px;}
.ws157{word-spacing:18.952965px;}
.ws193{word-spacing:18.963725px;}
.ws79{word-spacing:18.969104px;}
.ws21{word-spacing:18.985244px;}
.wsf0{word-spacing:19.022902px;}
.ws24{word-spacing:19.039041px;}
.ws48{word-spacing:19.055181px;}
.ws9b{word-spacing:19.065940px;}
.ws9c{word-spacing:19.157397px;}
.ws50{word-spacing:19.178916px;}
.ws38{word-spacing:19.571640px;}
.wsf3{word-spacing:19.577019px;}
.wsf5{word-spacing:19.700754px;}
.ws185{word-spacing:19.867528px;}
.wscc{word-spacing:19.969743px;}
.ws137{word-spacing:20.125757px;}
.ws150{word-spacing:20.174175px;}
.ws12b{word-spacing:20.491582px;}
.ws123{word-spacing:20.540000px;}
.ws97{word-spacing:20.615317px;}
.ws96{word-spacing:20.835888px;}
.ws105{word-spacing:20.991902px;}
.ws135{word-spacing:21.174814px;}
.ws11e{word-spacing:21.228612px;}
.ws5b{word-spacing:21.330828px;}
.ws119{word-spacing:21.492221px;}
.ws11d{word-spacing:21.513740px;}
.ws188{word-spacing:21.562158px;}
.ws36{word-spacing:21.615956px;}
.ws52{word-spacing:21.750451px;}
.ws42{word-spacing:21.976401px;}
.wsd8{word-spacing:22.083997px;}
.ws1d0{word-spacing:22.132415px;}
.wsd7{word-spacing:22.191592px;}
.ws142{word-spacing:22.196972px;}
.ws158{word-spacing:22.476721px;}
.ws14a{word-spacing:22.498240px;}
.ws138{word-spacing:22.503620px;}
.ws191{word-spacing:22.638114px;}
.ws132{word-spacing:22.740330px;}
.ws182{word-spacing:22.874825px;}
.ws133{word-spacing:22.923243px;}
.ws121{word-spacing:23.267549px;}
.ws83{word-spacing:23.412803px;}
.ws192{word-spacing:23.423562px;}
.ws84{word-spacing:23.644133px;}
.ws31{word-spacing:23.757108px;}
.ws34{word-spacing:24.284327px;}
.ws151{word-spacing:24.472619px;}
.ws35{word-spacing:24.677051px;}
.ws57{word-spacing:25.753007px;}
.ws13b{word-spacing:26.097313px;}
.ws1f1{word-spacing:26.608392px;}
.ws89{word-spacing:26.662190px;}
.wsd9{word-spacing:26.823583px;}
.ws146{word-spacing:26.855862px;}
.ws10e{word-spacing:27.576752px;}
.ws122{word-spacing:28.415998px;}
.wsfc{word-spacing:28.814102px;}
.ws18e{word-spacing:29.201446px;}
.ws11c{word-spacing:29.610309px;}
.ws8f{word-spacing:31.740702px;}
.ws30{word-spacing:32.466972px;}
.wsf4{word-spacing:33.236281px;}
.ws90{word-spacing:34.322996px;}
.ws91{word-spacing:34.984709px;}
.wsb{word-spacing:46.825736px;}
.wsd{word-spacing:46.897466px;}
.wsc{word-spacing:47.155696px;}
.ws15e{word-spacing:189.758456px;}
.ws161{word-spacing:191.616009px;}
.wsb9{word-spacing:229.350781px;}
.wsba{word-spacing:247.717350px;}
.wsa2{word-spacing:258.944951px;}
.wsa8{word-spacing:277.311520px;}
.wsa7{word-spacing:288.878047px;}
.wsb8{word-spacing:298.061331px;}
.ws17a{word-spacing:303.844595px;}
.wsa3{word-spacing:306.905689px;}
.wsb2{word-spacing:307.583542px;}
.wsa1{word-spacing:327.994427px;}
.wsb5{word-spacing:337.328345px;}
.wsad{word-spacing:357.588597px;}
.wsc0{word-spacing:378.467523px;}
.wsa0{word-spacing:387.521693px;}
.wsc1{word-spacing:411.332599px;}
.wsac{word-spacing:417.115863px;}
.wsc3{word-spacing:429.360242px;}
.ws166{word-spacing:454.181212px;}
.wsb1{word-spacing:477.191866px;}
.wsaf{word-spacing:504.063867px;}
.ws1b0{word-spacing:506.285716px;}
.ws1a9{word-spacing:560.691431px;}
.ws1ae{word-spacing:734.237754px;}
.wsb7{word-spacing:810.679048px;}
.ws1b4{word-spacing:867.199017px;}
.ws1b5{word-spacing:869.404727px;}
.ws1b7{word-spacing:893.554559px;}
.ws176{word-spacing:901.581191px;}
.ws175{word-spacing:954.787215px;}
.ws178{word-spacing:978.937047px;}
.ws1b1{word-spacing:1040.164324px;}
._3f{margin-left:-492.238283px;}
._21{margin-left:-483.152422px;}
._41{margin-left:-445.045914px;}
._47{margin-left:-441.488890px;}
._48{margin-left:-405.366423px;}
._22{margin-left:-391.085498px;}
._49{margin-left:-387.828340px;}
._4b{margin-left:-363.769964px;}
._4c{margin-left:-327.811515px;}
._4e{margin-left:-309.783872px;}
._42{margin-left:-303.661682px;}
._4d{margin-left:-279.845396px;}
._1a{margin-left:-29.717905px;}
._f{margin-left:-21.542437px;}
._40{margin-left:-18.680432px;}
._43{margin-left:-15.994086px;}
._2e{margin-left:-11.464311px;}
._13{margin-left:-9.602907px;}
._36{margin-left:-8.361977px;}
._12{margin-left:-6.159848px;}
._4{margin-left:-5.121551px;}
._38{margin-left:-3.905720px;}
._e{margin-left:-2.905081px;}
._3{margin-left:-1.753808px;}
._0{width:1.836303px;}
._17{width:2.883562px;}
._8{width:4.309204px;}
._1c{width:12.540267px;}
._15{width:13.551666px;}
._2{width:14.812096px;}
._19{width:15.845773px;}
._1{width:16.910178px;}
._9{width:18.289723px;}
._16{width:19.442525px;}
._a{width:20.921964px;}
._6{width:22.460582px;}
._d{width:24.020718px;}
._7{width:25.634652px;}
._11{width:27.173269px;}
._b{width:29.061572px;}
._10{width:30.137528px;}
._14{width:31.342598px;}
._18{width:32.362958px;}
._5{width:33.833436px;}
._35{width:35.339775px;}
._c{width:36.437250px;}
._34{width:37.846752px;}
._37{width:39.127140px;}
._2f{width:40.321451px;}
._32{width:42.478743px;}
._33{width:44.888884px;}
._1b{width:46.206930px;}
._31{width:49.208848px;}
._30{width:50.440817px;}
._46{width:62.227915px;}
._45{width:75.160906px;}
._1f{width:89.078397px;}
._1e{width:91.736009px;}
._44{width:106.455087px;}
._1d{width:110.038020px;}
._3a{width:216.445789px;}
._3c{width:218.303342px;}
._39{width:229.789455px;}
._3b{width:231.647009px;}
._2a{width:363.963636px;}
._29{width:412.559189px;}
._23{width:415.340535px;}
._28{width:423.490902px;}
._25{width:453.719886px;}
._2c{width:457.421174px;}
._3d{width:469.012285px;}
._3e{width:470.289005px;}
._20{width:482.480190px;}
._24{width:507.340153px;}
._2b{width:513.058859px;}
._26{width:516.496538px;}
._4a{width:553.573982px;}
._27{width:611.223705px;}
._2d{width:870.001527px;}
.fc1{color:rgb(146,144,145);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:29.399400px;}
.fs5{font-size:31.381200px;}
.fsf{font-size:33.596400px;}
.fsb{font-size:33.598200px;}
.fs0{font-size:35.866200px;}
.fs6{font-size:37.657200px;}
.fs12{font-size:38.854200px;}
.fs10{font-size:41.842800px;}
.fsa{font-size:41.998200px;}
.fs4{font-size:44.830800px;}
.fs1{font-size:47.821200px;}
.fse{font-size:47.995200px;}
.fsd{font-size:47.997000px;}
.fs9{font-size:47.998800px;}
.fs11{font-size:48.507260px;}
.fs8{font-size:50.809200px;}
.fs3{font-size:53.797800px;}
.fs7{font-size:59.775600px;}
.fs2{font-size:143.461200px;}
.y0{bottom:0.000000px;}
.y18d{bottom:1.653450px;}
.y19a{bottom:1.656000px;}
.yb0{bottom:25.511850px;}
.y25a{bottom:25.512250px;}
.y61{bottom:25.514344px;}
.y11f{bottom:25.520775px;}
.y20e{bottom:68.031839px;}
.y259{bottom:68.032687px;}
.y1f4{bottom:68.033075px;}
.y60{bottom:68.034780px;}
.y7b{bottom:68.038202px;}
.y11e{bottom:68.041211px;}
.yeb{bottom:68.041950px;}
.y87{bottom:68.204342px;}
.y4f{bottom:68.207283px;}
.y134{bottom:68.208520px;}
.y148{bottom:68.215244px;}
.y1dc{bottom:81.467793px;}
.y20d{bottom:85.974750px;}
.y258{bottom:85.975598px;}
.y1f3{bottom:85.975987px;}
.y5f{bottom:85.977692px;}
.y7a{bottom:85.981113px;}
.y11d{bottom:85.984123px;}
.yea{bottom:85.984861px;}
.y86{bottom:86.147253px;}
.y4e{bottom:86.150194px;}
.y133{bottom:86.151431px;}
.y147{bottom:86.158156px;}
.y1db{bottom:99.411062px;}
.y257{bottom:103.918509px;}
.y1f2{bottom:103.918898px;}
.y20c{bottom:103.918978px;}
.y5e{bottom:103.920603px;}
.y79{bottom:103.924025px;}
.y11c{bottom:103.927034px;}
.ye9{bottom:103.927772px;}
.y85{bottom:104.090164px;}
.y4d{bottom:104.093106px;}
.y132{bottom:104.094342px;}
.y146{bottom:104.101067px;}
.y1da{bottom:117.354331px;}
.y256{bottom:121.861420px;}
.y1f1{bottom:121.861809px;}
.y20b{bottom:121.861889px;}
.y5d{bottom:121.863514px;}
.y78{bottom:121.866936px;}
.y11b{bottom:121.869945px;}
.ye8{bottom:121.870684px;}
.y84{bottom:121.948344px;}
.y4c{bottom:121.951285px;}
.y131{bottom:121.952522px;}
.y145{bottom:121.959247px;}
.y1d9{bottom:135.297600px;}
.y255{bottom:139.719600px;}
.y1f0{bottom:139.719989px;}
.y5c{bottom:139.721694px;}
.y11a{bottom:139.728125px;}
.y207{bottom:139.804800px;}
.y77{bottom:139.809847px;}
.ye7{bottom:139.813595px;}
.y83{bottom:139.891255px;}
.y4b{bottom:139.894197px;}
.y130{bottom:139.895433px;}
.y209{bottom:139.974565px;}
.y20a{bottom:140.144331px;}
.y208{bottom:142.271178px;}
.y1ef{bottom:157.662900px;}
.y5b{bottom:157.664605px;}
.y119{bottom:157.671036px;}
.ye6{bottom:157.671775px;}
.y82{bottom:157.834166px;}
.y4a{bottom:157.837108px;}
.y12f{bottom:157.838344px;}
.y144{bottom:157.846414px;}
.y1d7{bottom:165.232687px;}
.y1d8{bottom:168.548084px;}
.y1ee{bottom:175.606350px;}
.y5a{bottom:175.607516px;}
.y118{bottom:175.613947px;}
.ye5{bottom:175.614686px;}
.y81{bottom:175.777078px;}
.y49{bottom:175.780019px;}
.y12e{bottom:175.781256px;}
.y143{bottom:175.789325px;}
.y76{bottom:181.649741px;}
.y1d5{bottom:183.090866px;}
.y1d6{bottom:186.492232px;}
.y59{bottom:193.550428px;}
.y117{bottom:193.556858px;}
.ye4{bottom:193.557597px;}
.y80{bottom:193.719989px;}
.y48{bottom:193.722930px;}
.y12d{bottom:193.724167px;}
.y142{bottom:193.732237px;}
.y75{bottom:199.592652px;}
.y1d3{bottom:201.033778px;}
.y1d4{bottom:204.435143px;}
.y206{bottom:208.177925px;}
.y58{bottom:211.493339px;}
.y116{bottom:211.499770px;}
.ye3{bottom:211.500508px;}
.y47{bottom:211.665842px;}
.y12c{bottom:211.667078px;}
.y7f{bottom:211.671603px;}
.y141{bottom:211.675148px;}
.y74{bottom:217.535564px;}
.y1d1{bottom:218.976689px;}
.y1d2{bottom:222.378055px;}
.y205{bottom:226.120837px;}
.y57{bottom:229.436250px;}
.y115{bottom:229.442681px;}
.ye2{bottom:229.443420px;}
.y46{bottom:229.608753px;}
.y1ed{bottom:229.609702px;}
.y12b{bottom:229.609989px;}
.y7e{bottom:229.614515px;}
.y140{bottom:229.618059px;}
.y73{bottom:235.478475px;}
.y1cf{bottom:236.919900px;}
.y1d0{bottom:240.320966px;}
.y204{bottom:244.063748px;}
.y114{bottom:247.385592px;}
.ye1{bottom:247.386331px;}
.y45{bottom:247.551664px;}
.y1ec{bottom:247.552614px;}
.y12a{bottom:247.552901px;}
.y7d{bottom:247.557426px;}
.y13f{bottom:247.560970px;}
.y72{bottom:253.421386px;}
.y56{bottom:256.308600px;}
.y203{bottom:262.006659px;}
.y113{bottom:265.328503px;}
.y44{bottom:265.409844px;}
.y1eb{bottom:265.410793px;}
.y129{bottom:265.411080px;}
.y7c{bottom:265.415606px;}
.y13e{bottom:265.419150px;}
.y1ce{bottom:270.340439px;}
.y202{bottom:279.949570px;}
.y112{bottom:283.186683px;}
.ye0{bottom:283.273498px;}
.y43{bottom:283.352755px;}
.y1ea{bottom:283.353705px;}
.y128{bottom:283.353992px;}
.y13d{bottom:283.362061px;}
.y1cd{bottom:288.283350px;}
.y71{bottom:295.261280px;}
.y201{bottom:297.807750px;}
.y111{bottom:301.129594px;}
.ydf{bottom:301.216409px;}
.y42{bottom:301.295666px;}
.y1e9{bottom:301.296616px;}
.y127{bottom:301.296903px;}
.y55{bottom:301.303736px;}
.y13c{bottom:301.304972px;}
.y70{bottom:313.204191px;}
.y200{bottom:315.751200px;}
.y110{bottom:319.072506px;}
.ydd{bottom:319.159321px;}
.y41{bottom:319.238578px;}
.y1e8{bottom:319.239527px;}
.y126{bottom:319.239814px;}
.y54{bottom:319.246647px;}
.y13b{bottom:319.247884px;}
.yde{bottom:322.135684px;}
.yaf{bottom:329.782774px;}
.y6f{bottom:331.147103px;}
.y10f{bottom:337.015417px;}
.ydc{bottom:337.102232px;}
.y40{bottom:337.181489px;}
.y1e7{bottom:337.182438px;}
.y125{bottom:337.182725px;}
.y53{bottom:337.189558px;}
.y13a{bottom:337.190795px;}
.yae{bottom:347.726043px;}
.y6e{bottom:349.090014px;}
.y10e{bottom:354.958328px;}
.ydb{bottom:355.045143px;}
.y3f{bottom:355.124789px;}
.y1e6{bottom:355.125349px;}
.y124{bottom:355.125637px;}
.y1ff{bottom:355.130415px;}
.y52{bottom:355.132470px;}
.y139{bottom:355.133706px;}
.yad{bottom:365.669312px;}
.y6d{bottom:367.032925px;}
.y10d{bottom:372.901239px;}
.yda{bottom:372.988054px;}
.y3e{bottom:373.067700px;}
.y123{bottom:373.068548px;}
.y1fe{bottom:373.073326px;}
.y51{bottom:373.075381px;}
.y138{bottom:373.076617px;}
.y1cc{bottom:373.748012px;}
.yac{bottom:383.612581px;}
.y6c{bottom:384.975836px;}
.y10c{bottom:390.844151px;}
.yd9{bottom:390.930966px;}
.y3d{bottom:391.011000px;}
.y122{bottom:391.011459px;}
.y1e5{bottom:391.012517px;}
.y1fd{bottom:391.016237px;}
.y50{bottom:391.018292px;}
.y137{bottom:391.019529px;}
.y1cb{bottom:391.691281px;}
.yab{bottom:401.555850px;}
.y6b{bottom:402.918748px;}
.y10b{bottom:408.787062px;}
.y121{bottom:408.869639px;}
.y1e4{bottom:408.870697px;}
.yd8{bottom:408.873877px;}
.y1fc{bottom:408.874417px;}
.y136{bottom:408.877708px;}
.y1ca{bottom:409.634550px;}
.y6a{bottom:420.776927px;}
.y10a{bottom:426.645242px;}
.yd7{bottom:426.732057px;}
.y120{bottom:426.812550px;}
.y1e3{bottom:426.813608px;}
.y1fb{bottom:426.817328px;}
.y135{bottom:426.820620px;}
.yaa{bottom:431.406576px;}
.y3c{bottom:434.128678px;}
.y1a2{bottom:438.697439px;}
.y69{bottom:438.719839px;}
.y109{bottom:444.588153px;}
.yd6{bottom:444.674968px;}
.y1e2{bottom:444.756519px;}
.y1fa{bottom:444.760239px;}
.ya9{bottom:449.349487px;}
.y1a0{bottom:454.367259px;}
.y3b{bottom:455.047953px;}
.y68{bottom:456.662750px;}
.y108{bottom:462.531064px;}
.yd5{bottom:462.617879px;}
.y1e1{bottom:462.699430px;}
.y1f9{bottom:462.703151px;}
.ya8{bottom:467.292398px;}
.y19f{bottom:468.913950px;}
.y67{bottom:474.605661px;}
.y3a{bottom:475.967227px;}
.y107{bottom:480.473975px;}
.yd4{bottom:480.560790px;}
.y1f8{bottom:480.646062px;}
.ya7{bottom:485.235309px;}
.y66{bottom:492.548572px;}
.y39{bottom:496.886502px;}
.y106{bottom:498.416887px;}
.yd3{bottom:498.503702px;}
.y1e0{bottom:498.586598px;}
.y1f7{bottom:498.588973px;}
.ya6{bottom:503.178221px;}
.y19e{bottom:505.814162px;}
.y65{bottom:510.491484px;}
.y105{bottom:516.359798px;}
.yd2{bottom:516.446613px;}
.y1df{bottom:516.529509px;}
.y38{bottom:517.805776px;}
.ya5{bottom:521.121132px;}
.y19d{bottom:523.757431px;}
.y104{bottom:534.302709px;}
.y1de{bottom:534.472420px;}
.y254{bottom:534.472809px;}
.y1f6{bottom:534.476141px;}
.y37{bottom:538.725051px;}
.y19c{bottom:541.700700px;}
.y103{bottom:552.245620px;}
.y1dd{bottom:552.330600px;}
.y23b{bottom:552.330989px;}
.y64{bottom:552.331378px;}
.yd1{bottom:552.333780px;}
.y1f5{bottom:552.334320px;}
.ya4{bottom:554.541670px;}
.y36{bottom:559.644325px;}
.y18c{bottom:568.573500px;}
.y1c0{bottom:568.697250px;}
.y102{bottom:570.107130px;}
.y18e{bottom:570.226950px;}
.y19b{bottom:570.229500px;}
.y23a{bottom:570.273900px;}
.y63{bottom:570.274289px;}
.yd0{bottom:570.276692px;}
.y253{bottom:570.699509px;}
.y1c4{bottom:571.618800px;}
.ya3{bottom:572.399850px;}
.y1bc{bottom:576.680700px;}
.y35{bottom:580.564551px;}
.y1a9{bottom:582.744450px;}
.y18b{bottom:584.158650px;}
.y199{bottom:584.161533px;}
.y101{bottom:588.050042px;}
.y62{bottom:588.217200px;}
.y239{bottom:588.217978px;}
.y252{bottom:588.218366px;}
.ycf{bottom:588.219603px;}
.y1aa{bottom:590.747700px;}
.y1c1{bottom:592.023900px;}
.y1c5{bottom:594.945300px;}
.y189{bottom:597.496650px;}
.y198{bottom:597.499200px;}
.y1bd{bottom:600.007350px;}
.y34{bottom:601.483825px;}
.y1c8{bottom:605.288250px;}
.y100{bottom:605.992953px;}
.y238{bottom:606.160889px;}
.y251{bottom:606.161278px;}
.yce{bottom:606.162514px;}
.y223{bottom:606.330662px;}
.y180{bottom:611.646300px;}
.y18f{bottom:611.648850px;}
.y1c9{bottom:613.291500px;}
.y33{bottom:622.403100px;}
.yff{bottom:623.935864px;}
.y237{bottom:624.103800px;}
.y250{bottom:624.104189px;}
.ycd{bottom:624.105425px;}
.y222{bottom:624.273931px;}
.y1b1{bottom:628.304550px;}
.y172{bottom:628.427039px;}
.y16e{bottom:628.886920px;}
.y170{bottom:629.051762px;}
.y174{bottom:629.650237px;}
.y1ad{bottom:630.903300px;}
.y181{bottom:634.816521px;}
.y190{bottom:635.014666px;}
.y1ae{bottom:638.906400px;}
.yfe{bottom:641.878775px;}
.y24d{bottom:642.047100px;}
.y236{bottom:642.047948px;}
.ycc{bottom:642.048337px;}
.y24e{bottom:642.131983px;}
.y221{bottom:642.217200px;}
.y24f{bottom:642.301748px;}
.y16a{bottom:649.064955px;}
.y166{bottom:649.147901px;}
.y16c{bottom:649.241347px;}
.y168{bottom:649.313794px;}
.y1b2{bottom:651.631050px;}
.y182{bottom:657.986741px;}
.y191{bottom:658.380482px;}
.yfd{bottom:659.821687px;}
.y235{bottom:659.990859px;}
.ycb{bottom:659.991248px;}
.y18a{bottom:660.464100px;}
.ya2{bottom:663.392012px;}
.y160{bottom:669.162143px;}
.y162{bottom:669.457181px;}
.y164{bottom:669.634623px;}
.y15e{bottom:670.400040px;}
.y21f{bottom:672.067537px;}
.y220{bottom:675.468903px;}
.yfc{bottom:677.764598px;}
.y234{bottom:677.933770px;}
.yca{bottom:677.934159px;}
.y1b6{bottom:680.215650px;}
.y183{bottom:681.156962px;}
.ya1{bottom:681.335281px;}
.y192{bottom:681.746298px;}
.y1b4{bottom:687.676950px;}
.y156{bottom:688.927050px;}
.y15a{bottom:689.001043px;}
.y21d{bottom:690.010448px;}
.y158{bottom:690.569250px;}
.y15c{bottom:690.643173px;}
.y21e{bottom:693.411814px;}
.y30{bottom:695.112468px;}
.yfb{bottom:695.707509px;}
.y233{bottom:695.791950px;}
.yc9{bottom:695.792339px;}
.ya0{bottom:699.278550px;}
.y1b7{bottom:703.542150px;}
.y184{bottom:704.327183px;}
.y193{bottom:705.112113px;}
.y21b{bottom:707.953359px;}
.y2d{bottom:708.548259px;}
.y2e{bottom:708.887853px;}
.y2f{bottom:709.058210px;}
.yc8{bottom:709.143103px;}
.y1b5{bottom:711.003450px;}
.y21c{bottom:711.269994px;}
.yfa{bottom:713.565689px;}
.y24b{bottom:713.735250px;}
.y232{bottom:713.736028px;}
.yc7{bottom:713.737194px;}
.y24c{bottom:713.905015px;}
.y2a{bottom:721.984050px;}
.y2b{bottom:722.408822px;}
.y2c{bottom:722.494000px;}
.y219{bottom:725.896271px;}
.y185{bottom:727.497404px;}
.y194{bottom:728.477929px;}
.y1a5{bottom:729.094800px;}
.y9f{bottom:729.128128px;}
.y21a{bottom:729.212905px;}
.yf9{bottom:731.508600px;}
.y231{bottom:731.678939px;}
.yc6{bottom:731.680105px;}
.y29{bottom:735.505350px;}
.y1a6{bottom:737.097900px;}
.y32{bottom:738.141442px;}
.y217{bottom:743.839182px;}
.y9e{bottom:747.071039px;}
.y218{bottom:747.155816px;}
.y230{bottom:749.621850px;}
.y24a{bottom:749.622239px;}
.yc5{bottom:749.623016px;}
.y186{bottom:750.667624px;}
.y195{bottom:751.843745px;}
.y27{bottom:753.193959px;}
.y28{bottom:753.618731px;}
.yf8{bottom:758.466000px;}
.y9c{bottom:765.014489px;}
.y26{bottom:766.629750px;}
.y249{bottom:767.565150px;}
.yc4{bottom:767.565928px;}
.y9d{bottom:768.415316px;}
.y1a1{bottom:769.868339px;}
.y187{bottom:773.837845px;}
.y196{bottom:775.209561px;}
.y216{bottom:777.174989px;}
.y24{bottom:780.066000px;}
.y25{bottom:780.321540px;}
.y9a{bottom:782.958566px;}
.yc3{bottom:785.508839px;}
.y248{bottom:785.509298px;}
.y9b{bottom:786.358766px;}
.y215{bottom:795.117900px;}
.y188{bottom:797.008066px;}
.y22{bottom:797.754609px;}
.y23{bottom:798.264560px;}
.y197{bottom:798.575377px;}
.y99{bottom:800.901478px;}
.yc2{bottom:803.451750px;}
.y247{bottom:803.452209px;}
.yf7{bottom:803.467291px;}
.y1f{bottom:811.190400px;}
.y20{bottom:811.529993px;}
.y21{bottom:811.700350px;}
.y98{bottom:818.844389px;}
.y246{bottom:821.395120px;}
.y22f{bottom:821.395509px;}
.yc1{bottom:821.397883px;}
.yf6{bottom:821.410202px;}
.y31{bottom:824.542087px;}
.y1e{bottom:824.711550px;}
.y154{bottom:830.536050px;}
.y17f{bottom:832.623935px;}
.y96{bottom:836.787998px;}
.y243{bottom:839.253300px;}
.y22e{bottom:839.253689px;}
.yc0{bottom:839.256063px;}
.yf5{bottom:839.268381px;}
.y244{bottom:839.678909px;}
.y97{bottom:840.103934px;}
.y245{bottom:841.804561px;}
.y1c{bottom:842.400309px;}
.y1d{bottom:842.825081px;}
.y152{bottom:843.944604px;}
.y17e{bottom:846.034800px;}
.y1a7{bottom:851.918100px;}
.y1be{bottom:853.535100px;}
.y95{bottom:854.646178px;}
.y19{bottom:855.836100px;}
.y1b{bottom:856.175693px;}
.y1a{bottom:856.260872px;}
.y22d{bottom:857.196600px;}
.y242{bottom:857.197528px;}
.ybf{bottom:857.198974px;}
.yf4{bottom:857.211293px;}
.y149{bottom:858.095850px;}
.y1a8{bottom:859.921350px;}
.y175{bottom:860.184450px;}
.y1c2{bottom:865.855200px;}
.y18{bottom:869.272200px;}
.y1ba{bottom:871.439250px;}
.y94{bottom:872.589089px;}
.y241{bottom:875.140439px;}
.y22c{bottom:875.141066px;}
.yf3{bottom:875.154204px;}
.y171{bottom:875.563347px;}
.y16d{bottom:876.023228px;}
.y1bf{bottom:876.861750px;}
.y214{bottom:878.626767px;}
.y16f{bottom:879.601474px;}
.y173{bottom:880.199949px;}
.y14a{bottom:881.330869px;}
.y176{bottom:883.387070px;}
.y16{bottom:886.960809px;}
.y17{bottom:887.470760px;}
.y1c3{bottom:889.181700px;}
.y93{bottom:890.532539px;}
.y240{bottom:893.083350px;}
.y22b{bottom:893.083978px;}
.ybe{bottom:893.086142px;}
.y1bb{bottom:894.765750px;}
.y1c6{bottom:896.391750px;}
.y169{bottom:896.462702px;}
.y165{bottom:896.545648px;}
.y213{bottom:896.570036px;}
.y13{bottom:900.396600px;}
.y14{bottom:900.736193px;}
.y16b{bottom:900.837864px;}
.y15{bottom:900.906550px;}
.y167{bottom:900.920810px;}
.y1c7{bottom:904.395000px;}
.y14b{bottom:904.565888px;}
.y177{bottom:906.589690px;}
.y153{bottom:907.174650px;}
.y92{bottom:908.475689px;}
.y22a{bottom:911.026889px;}
.y23f{bottom:911.027816px;}
.ybd{bottom:911.029053px;}
.yf2{bottom:911.041371px;}
.y10{bottom:913.832850px;}
.y11{bottom:914.002313px;}
.y12{bottom:914.173121px;}
.y212{bottom:914.428200px;}
.y15d{bottom:916.308951px;}
.y161{bottom:916.854928px;}
.y163{bottom:919.826300px;}
.y15f{bottom:920.769160px;}
.y90{bottom:926.419139px;}
.y14c{bottom:927.800907px;}
.y229{bottom:928.969800px;}
.y23e{bottom:928.970728px;}
.ybc{bottom:928.971964px;}
.yf1{bottom:928.984283px;}
.y178{bottom:929.792310px;}
.y91{bottom:929.819966px;}
.y155{bottom:934.922550px;}
.y159{bottom:934.996050px;}
.y15b{bottom:940.773952px;}
.y157{bottom:940.774050px;}
.yf{bottom:942.149722px;}
.y8e{bottom:944.362439px;}
.y23d{bottom:946.913639px;}
.y228{bottom:946.913948px;}
.ybb{bottom:946.914875px;}
.yf0{bottom:946.927194px;}
.y8f{bottom:947.678684px;}
.y211{bottom:947.679073px;}
.y14d{bottom:951.035926px;}
.y179{bottom:952.994930px;}
.y8c{bottom:962.305739px;}
.y23c{bottom:964.856550px;}
.y227{bottom:964.856859px;}
.yba{bottom:964.857787px;}
.yef{bottom:964.870105px;}
.y8d{bottom:965.621984px;}
.y1b3{bottom:966.079500px;}
.y14e{bottom:974.270946px;}
.y1a3{bottom:974.772150px;}
.y17a{bottom:976.197550px;}
.y1ab{bottom:979.964250px;}
.y210{bottom:980.248570px;}
.y8a{bottom:980.248632px;}
.ye{bottom:981.013361px;}
.y226{bottom:982.715039px;}
.yb9{bottom:982.715966px;}
.yee{bottom:982.728285px;}
.y1a4{bottom:982.775250px;}
.y8b{bottom:983.565284px;}
.y1ac{bottom:987.967500px;}
.y14f{bottom:997.505965px;}
.y89{bottom:998.106812px;}
.y17b{bottom:999.400170px;}
.y224{bottom:1000.657950px;}
.yb8{bottom:1000.658878px;}
.y225{bottom:1001.083559px;}
.y20f{bottom:1001.508116px;}
.y1af{bottom:1003.994550px;}
.y1b8{bottom:1008.913200px;}
.yb7{bottom:1018.601789px;}
.yed{bottom:1018.615452px;}
.yd{bottom:1019.877000px;}
.y150{bottom:1020.740984px;}
.y17c{bottom:1022.602789px;}
.y1b0{bottom:1027.321050px;}
.y88{bottom:1031.527350px;}
.y1b9{bottom:1032.239700px;}
.yb6{bottom:1036.544700px;}
.yec{bottom:1036.558364px;}
.y151{bottom:1043.976003px;}
.y17d{bottom:1045.805409px;}
.ya{bottom:1144.714305px;}
.yb{bottom:1145.055031px;}
.yc{bottom:1145.224796px;}
.y5{bottom:1151.603668px;}
.y9{bottom:1159.681145px;}
.yb3{bottom:1167.080280px;}
.yb4{bottom:1167.505888px;}
.yb5{bottom:1167.590771px;}
.y8{bottom:1174.563102px;}
.y4{bottom:1175.499524px;}
.yb2{bottom:1182.047120px;}
.y3{bottom:1187.405309px;}
.y7{bottom:1189.529942px;}
.yb1{bottom:1197.013960px;}
.y2{bottom:1199.395379px;}
.y1{bottom:1211.385450px;}
.y6{bottom:1211.980800px;}
.h21{height:25.600457px;}
.h1e{height:25.601828px;}
.h2{height:27.330044px;}
.h2a{height:29.140650px;}
.h22{height:31.884214px;}
.h1b{height:32.002628px;}
.h6{height:34.161070px;}
.h3{height:36.439754px;}
.h20{height:36.572342px;}
.h1d{height:36.573714px;}
.h18{height:36.575086px;}
.h27{height:36.762992px;}
.h23{height:36.962532px;}
.h28{height:37.335673px;}
.h29{height:37.446835px;}
.ha{height:38.465427px;}
.h14{height:38.716610px;}
.he{height:38.842012px;}
.hd{height:39.487585px;}
.h5{height:40.993924px;}
.h10{height:40.993996px;}
.h7{height:41.671776px;}
.h1a{height:42.981143px;}
.h9{height:44.831700px;}
.h15{height:46.646323px;}
.h8{height:48.420183px;}
.h19{height:49.121828px;}
.hc{height:51.731964px;}
.h17{height:52.057569px;}
.hb{height:52.070891px;}
.h26{height:54.258906px;}
.h13{height:54.260461px;}
.h25{height:54.260780px;}
.h12{height:54.597232px;}
.h11{height:54.598432px;}
.h24{height:54.599140px;}
.hf{height:54.599387px;}
.h16{height:57.210601px;}
.h1f{height:60.458105px;}
.h4{height:109.317434px;}
.h1c{height:485.914500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:730.488000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:59.527500px;}
.x43{left:68.457000px;}
.x2e{left:78.239550px;}
.x2c{left:82.757267px;}
.x2{left:85.039350px;}
.x2b{left:89.429100px;}
.x9{left:96.604576px;}
.x2d{left:101.268004px;}
.x7b{left:106.299150px;}
.x3{left:108.850721px;}
.xc{left:112.336824px;}
.x27{left:130.620450px;}
.x13{left:133.426353px;}
.xe{left:135.977226px;}
.xd{left:141.165250px;}
.x4{left:143.632275px;}
.x5{left:155.877603px;}
.x42{left:191.295750px;}
.x6{left:198.736965px;}
.x45{left:199.738050px;}
.x60{left:222.389850px;}
.x61{left:225.750450px;}
.x3c{left:228.890750px;}
.x3b{left:232.187609px;}
.x14{left:235.047690px;}
.x10{left:238.534405px;}
.xf{left:240.065377px;}
.x7{left:254.266654px;}
.x2f{left:258.817350px;}
.x44{left:262.867200px;}
.x1f{left:275.782650px;}
.x15{left:277.567462px;}
.x39{left:279.726421px;}
.x38{left:283.023280px;}
.x36{left:287.207351px;}
.x35{left:290.504209px;}
.x11{left:293.809661px;}
.x73{left:295.341750px;}
.x30{left:297.502350px;}
.xa{left:299.507656px;}
.x8{left:309.541909px;}
.x20{left:313.880793px;}
.x7c{left:316.091250px;}
.x7d{left:320.173200px;}
.x28{left:324.000427px;}
.x64{left:337.606673px;}
.x63{left:345.514950px;}
.x1{left:352.913250px;}
.xb{left:354.782911px;}
.x51{left:366.762450px;}
.x4c{left:370.920927px;}
.x52{left:372.344100px;}
.x53{left:375.704100px;}
.x12{left:379.443214px;}
.x5c{left:384.868500px;}
.x5d{left:388.229250px;}
.x32{left:391.048950px;}
.x75{left:405.468536px;}
.x74{left:413.376813px;}
.x65{left:440.759920px;}
.x5e{left:442.674600px;}
.x5f{left:444.079050px;}
.x1e{left:446.456072px;}
.x47{left:447.650417px;}
.x6c{left:449.092694px;}
.x3f{left:452.837850px;}
.x46{left:454.322250px;}
.x40{left:464.677350px;}
.x48{left:466.161600px;}
.x62{left:468.131850px;}
.x25{left:470.269764px;}
.x16{left:471.968400px;}
.x18{left:474.944763px;}
.x83{left:480.132674px;}
.x17{left:483.873853px;}
.x59{left:486.826500px;}
.x5a{left:490.187100px;}
.x80{left:493.226705px;}
.x29{left:495.781614px;}
.x71{left:498.331379px;}
.x26{left:505.051319px;}
.x58{left:508.613250px;}
.x77{left:514.574510px;}
.x76{left:522.482786px;}
.x2a{left:530.563169px;}
.x56{left:540.397950px;}
.x57{left:543.758550px;}
.x86{left:545.782813px;}
.x5b{left:546.948900px;}
.x89{left:548.079426px;}
.x21{left:551.905350px;}
.x49{left:557.348520px;}
.x84{left:558.454236px;}
.x4b{left:566.463300px;}
.x54{left:569.131500px;}
.x69{left:577.249241px;}
.x4f{left:586.050300px;}
.x50{left:589.410300px;}
.x3d{left:593.490774px;}
.x22{left:602.589602px;}
.x4d{left:611.274900px;}
.x4e{left:614.635050px;}
.x78{left:619.258304px;}
.x19{left:620.701304px;}
.x41{left:621.890220px;}
.x55{left:624.316200px;}
.x72{left:626.910811px;}
.x4a{left:628.248300px;}
.x6d{left:629.461109px;}
.x8a{left:638.136310px;}
.x3a{left:644.326445px;}
.x67{left:646.980337px;}
.x7a{left:648.509513px;}
.x37{left:651.807374px;}
.x66{left:656.080235px;}
.x31{left:659.099400px;}
.x6e{left:667.388103px;}
.x87{left:670.705350px;}
.x8b{left:673.426650px;}
.x1a{left:675.976559px;}
.x6a{left:680.402488px;}
.x6f{left:690.859650px;}
.x23{left:696.473488px;}
.x88{left:702.765150px;}
.x8c{left:705.486450px;}
.x7e{left:713.395050px;}
.x81{left:714.925800px;}
.x70{left:722.919600px;}
.x79{left:732.955919px;}
.x24{left:736.610682px;}
.x7f{left:745.455000px;}
.x82{left:746.985600px;}
.x68{left:750.133584px;}
.x33{left:752.352115px;}
.x34{left:757.474845px;}
.x3e{left:758.932183px;}
.x85{left:765.864300px;}
.x6b{left:783.555735px;}
.x1b{left:792.735016px;}
.x1c{left:825.988858px;}
@media print{
.v7{vertical-align:-11.792478pt;}
.v9{vertical-align:-10.582625pt;}
.v3{vertical-align:-9.372772pt;}
.v6{vertical-align:-6.653649pt;}
.v2{vertical-align:-5.442667pt;}
.v1{vertical-align:-1.211470pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.093745pt;}
.v8{vertical-align:16.327635pt;}
.v4{vertical-align:17.533686pt;}
.va{vertical-align:20.906667pt;}
.lsf{letter-spacing:-3.825632pt;}
.lse{letter-spacing:-3.787376pt;}
.ls32{letter-spacing:-0.009564pt;}
.ls33{letter-spacing:-0.004782pt;}
.lsd{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.000356pt;}
.lsc{letter-spacing:0.004782pt;}
.ls30{letter-spacing:0.014346pt;}
.ls11{letter-spacing:0.019128pt;}
.ls7{letter-spacing:0.023091pt;}
.ls1a{letter-spacing:0.023910pt;}
.ls2{letter-spacing:0.079699pt;}
.lsa{letter-spacing:0.090859pt;}
.ls34{letter-spacing:0.100423pt;}
.ls0{letter-spacing:0.106269pt;}
.ls1e{letter-spacing:0.133849pt;}
.lsb{letter-spacing:0.134382pt;}
.ls12{letter-spacing:0.138679pt;}
.ls1c{letter-spacing:0.167371pt;}
.ls2a{letter-spacing:0.195733pt;}
.ls45{letter-spacing:0.201836pt;}
.ls15{letter-spacing:0.210409pt;}
.ls27{letter-spacing:0.263491pt;}
.ls19{letter-spacing:2.395795pt;}
.ls20{letter-spacing:3.839967pt;}
.ls13{letter-spacing:5.116769pt;}
.ls3{letter-spacing:5.220298pt;}
.ls14{letter-spacing:5.418036pt;}
.ls4{letter-spacing:5.523155pt;}
.ls53{letter-spacing:5.594018pt;}
.ls1{letter-spacing:5.853315pt;}
.ls50{letter-spacing:5.895823pt;}
.ls5{letter-spacing:6.734582pt;}
.ls4f{letter-spacing:6.801237pt;}
.ls52{letter-spacing:7.103042pt;}
.ls6{letter-spacing:8.029023pt;}
.ls2f{letter-spacing:8.870659pt;}
.ls40{letter-spacing:9.219927pt;}
.ls51{letter-spacing:9.521732pt;}
.ls8{letter-spacing:10.448728pt;}
.ls2c{letter-spacing:11.792478pt;}
.ls28{letter-spacing:11.859426pt;}
.ls18{letter-spacing:12.069835pt;}
.ls10{letter-spacing:13.939390pt;}
.ls9{letter-spacing:15.085001pt;}
.ls38{letter-spacing:16.604206pt;}
.ls36{letter-spacing:16.604829pt;}
.ls1b{letter-spacing:17.559602pt;}
.ls41{letter-spacing:18.592883pt;}
.ls31{letter-spacing:18.639467pt;}
.ls2e{letter-spacing:18.769455pt;}
.ls2d{letter-spacing:19.070722pt;}
.ls29{letter-spacing:21.375659pt;}
.ls2b{letter-spacing:22.399013pt;}
.ls16{letter-spacing:26.334621pt;}
.ls3d{letter-spacing:28.455436pt;}
.ls26{letter-spacing:31.958284pt;}
.ls17{letter-spacing:42.526400pt;}
.ls49{letter-spacing:248.751463pt;}
.ls24{letter-spacing:260.806952pt;}
.ls3a{letter-spacing:269.921495pt;}
.ls3b{letter-spacing:270.222763pt;}
.ls4d{letter-spacing:275.057392pt;}
.ls4a{letter-spacing:275.363442pt;}
.ls46{letter-spacing:286.247334pt;}
.ls48{letter-spacing:291.388013pt;}
.ls3c{letter-spacing:292.899133pt;}
.ls3e{letter-spacing:296.528692pt;}
.ls4e{letter-spacing:301.970638pt;}
.ls4c{letter-spacing:317.693942pt;}
.ls47{letter-spacing:323.437156pt;}
.ls44{letter-spacing:344.602406pt;}
.ls1f{letter-spacing:347.586390pt;}
.ls4b{letter-spacing:349.743084pt;}
.ls3f{letter-spacing:359.981403pt;}
.ls43{letter-spacing:360.325709pt;}
.ls25{letter-spacing:379.334265pt;}
.ls42{letter-spacing:392.374852pt;}
.ls39{letter-spacing:395.660104pt;}
.ls1d{letter-spacing:429.827685pt;}
.ls21{letter-spacing:441.620163pt;}
.ls23{letter-spacing:445.550989pt;}
.ls22{letter-spacing:471.856917pt;}
.ls37{letter-spacing:1018.494532pt;}
.wsa6{word-spacing:-429.875505pt;}
.ws172{word-spacing:-395.707925pt;}
.ws1aa{word-spacing:-392.422672pt;}
.ws1ab{word-spacing:-360.373530pt;}
.wsaa{word-spacing:-347.634211pt;}
.ws1ac{word-spacing:-344.650226pt;}
.ws1b8{word-spacing:-323.484976pt;}
.ws1b9{word-spacing:-291.435833pt;}
.ws1bb{word-spacing:-275.411262pt;}
.ws174{word-spacing:-270.270583pt;}
.ws173{word-spacing:-269.969315pt;}
.ws177{word-spacing:-266.899254pt;}
.ws1ba{word-spacing:-248.799283pt;}
.ws1b6{word-spacing:-248.454977pt;}
.ws8e{word-spacing:-38.289688pt;}
.ws167{word-spacing:-28.465421pt;}
.ws16a{word-spacing:-28.464353pt;}
.ws6f{word-spacing:-11.955067pt;}
.ws19d{word-spacing:-11.944673pt;}
.ws160{word-spacing:-10.378222pt;}
.ws3f{word-spacing:-8.368267pt;}
.wse2{word-spacing:-3.839967pt;}
.ws1e6{word-spacing:-2.150891pt;}
.ws101{word-spacing:-1.740658pt;}
.ws10c{word-spacing:-1.468082pt;}
.ws108{word-spacing:-0.526023pt;}
.ws71{word-spacing:-0.210409pt;}
.wse1{word-spacing:-0.186499pt;}
.ws3c{word-spacing:-0.053134pt;}
.wsf{word-spacing:-0.047820pt;}
.ws168{word-spacing:-0.042664pt;}
.ws1d{word-spacing:-0.039850pt;}
.ws15f{word-spacing:-0.037332pt;}
.ws19b{word-spacing:-0.037194pt;}
.wsa5{word-spacing:-0.033473pt;}
.ws1{word-spacing:-0.031881pt;}
.ws66{word-spacing:0.000000pt;}
.wsda{word-spacing:0.047820pt;}
.ws75{word-spacing:0.090859pt;}
.ws130{word-spacing:0.114769pt;}
.ws1db{word-spacing:0.182783pt;}
.ws1e2{word-spacing:0.272049pt;}
.ws1d3{word-spacing:0.280551pt;}
.ws10a{word-spacing:0.286922pt;}
.ws1da{word-spacing:0.301805pt;}
.ws1bf{word-spacing:0.306056pt;}
.ws1a3{word-spacing:0.378319pt;}
.ws1bc{word-spacing:0.399573pt;}
.ws1d8{word-spacing:0.412325pt;}
.ws19c{word-spacing:0.425077pt;}
.ws1de{word-spacing:0.471836pt;}
.ws1c3{word-spacing:0.480337pt;}
.ws1c1{word-spacing:0.543281pt;}
.ws1e7{word-spacing:0.552601pt;}
.ws1c8{word-spacing:0.573854pt;}
.ws1bd{word-spacing:0.607861pt;}
.ws1e1{word-spacing:0.620613pt;}
.ws1cb{word-spacing:0.680124pt;}
.ws1ec{word-spacing:0.688625pt;}
.ws88{word-spacing:0.693394pt;}
.ws19e{word-spacing:0.849416pt;}
.wsf7{word-spacing:0.879893pt;}
.ws1f2{word-spacing:0.985097pt;}
.ws98{word-spacing:1.238545pt;}
.ws19a{word-spacing:1.324621pt;}
.wsfe{word-spacing:1.444172pt;}
.ws10b{word-spacing:1.587633pt;}
.wsd6{word-spacing:1.625889pt;}
.ws1c4{word-spacing:1.908029pt;}
.ws111{word-spacing:1.931939pt;}
.ws1a7{word-spacing:1.965413pt;}
.ws1e8{word-spacing:1.974977pt;}
.ws106{word-spacing:1.998887pt;}
.ws19f{word-spacing:2.022797pt;}
.wse7{word-spacing:2.080182pt;}
.ws194{word-spacing:2.190168pt;}
.ws1df{word-spacing:2.233206pt;}
.ws1dd{word-spacing:2.281027pt;}
.ws159{word-spacing:2.300155pt;}
.ws1dc{word-spacing:2.304937pt;}
.ws1c6{word-spacing:2.309719pt;}
.ws115{word-spacing:2.314501pt;}
.ws86{word-spacing:2.324065pt;}
.ws1d9{word-spacing:2.328847pt;}
.ws1a5{word-spacing:2.333629pt;}
.ws1d4{word-spacing:2.343193pt;}
.ws186{word-spacing:2.347975pt;}
.ws1a4{word-spacing:2.362321pt;}
.wsd1{word-spacing:2.367103pt;}
.ws107{word-spacing:2.371885pt;}
.ws1ea{word-spacing:2.376667pt;}
.wsce{word-spacing:2.381449pt;}
.ws1d6{word-spacing:2.386231pt;}
.ws1a0{word-spacing:2.391013pt;}
.wsd4{word-spacing:2.395795pt;}
.ws1c9{word-spacing:2.400577pt;}
.ws1a2{word-spacing:2.424488pt;}
.ws1ca{word-spacing:2.453180pt;}
.ws1d1{word-spacing:2.457962pt;}
.ws102{word-spacing:2.462744pt;}
.ws8b{word-spacing:2.496218pt;}
.ws1d5{word-spacing:2.520128pt;}
.ws18d{word-spacing:2.534474pt;}
.ws1c2{word-spacing:2.582294pt;}
.wsd2{word-spacing:2.591858pt;}
.ws1e9{word-spacing:2.668371pt;}
.ws64{word-spacing:2.701845pt;}
.ws197{word-spacing:3.012677pt;}
.wsf2{word-spacing:3.098753pt;}
.wscb{word-spacing:3.309162pt;}
.ws196{word-spacing:3.510008pt;}
.ws67{word-spacing:3.610430pt;}
.wsf6{word-spacing:3.677379pt;}
.ws15a{word-spacing:3.744327pt;}
.ws85{word-spacing:3.806493pt;}
.ws156{word-spacing:3.830403pt;}
.ws13d{word-spacing:3.945172pt;}
.ws99{word-spacing:3.954736pt;}
.ws10f{word-spacing:4.045595pt;}
.wsdf{word-spacing:4.074287pt;}
.ws92{word-spacing:4.193837pt;}
.wsf9{word-spacing:4.251222pt;}
.ws6b{word-spacing:4.308606pt;}
.ws18f{word-spacing:4.418593pt;}
.ws169{word-spacing:4.744237pt;}
.wsc9{word-spacing:4.753335pt;}
.ws18a{word-spacing:4.777245pt;}
.ws93{word-spacing:4.796373pt;}
.ws154{word-spacing:4.820283pt;}
.ws190{word-spacing:4.911141pt;}
.ws95{word-spacing:4.915923pt;}
.ws110{word-spacing:4.939834pt;}
.wse8{word-spacing:5.011564pt;}
.ws113{word-spacing:5.021128pt;}
.ws94{word-spacing:5.217191pt;}
.ws118{word-spacing:5.355870pt;}
.ws13a{word-spacing:5.422818pt;}
.ws9a{word-spacing:5.427600pt;}
.ws14c{word-spacing:5.441946pt;}
.wsdc{word-spacing:5.518459pt;}
.ws1f0{word-spacing:5.551933pt;}
.ws1cd{word-spacing:5.640776pt;}
.wsdb{word-spacing:5.661920pt;}
.wscd{word-spacing:5.676266pt;}
.wsf1{word-spacing:5.752778pt;}
.ws8c{word-spacing:5.762342pt;}
.wsef{word-spacing:5.872329pt;}
.ws68{word-spacing:5.891457pt;}
.ws152{word-spacing:6.063610pt;}
.ws126{word-spacing:6.116212pt;}
.wscf{word-spacing:6.120994pt;}
.ws120{word-spacing:6.302711pt;}
.wse9{word-spacing:6.331403pt;}
.ws128{word-spacing:6.522684pt;}
.ws11f{word-spacing:6.551377pt;}
.ws5a{word-spacing:6.675709pt;}
.ws14e{word-spacing:6.766568pt;}
.ws1ef{word-spacing:6.790478pt;}
.ws180{word-spacing:6.819170pt;}
.wsea{word-spacing:6.905247pt;}
.ws153{word-spacing:6.914811pt;}
.ws9d{word-spacing:6.938721pt;}
.ws104{word-spacing:7.039143pt;}
.ws183{word-spacing:7.134784pt;}
.ws143{word-spacing:7.139566pt;}
.wseb{word-spacing:7.196950pt;}
.ws63{word-spacing:7.220860pt;}
.ws5c{word-spacing:7.235206pt;}
.ws127{word-spacing:7.239988pt;}
.ws149{word-spacing:7.330847pt;}
.wse4{word-spacing:7.464744pt;}
.ws140{word-spacing:7.488654pt;}
.wsca{word-spacing:7.522128pt;}
.ws5e{word-spacing:7.675153pt;}
.wse5{word-spacing:7.713409pt;}
.ws131{word-spacing:7.737319pt;}
.ws11b{word-spacing:7.775575pt;}
.ws41{word-spacing:7.799485pt;}
.ws11a{word-spacing:7.938164pt;}
.ws1ce{word-spacing:7.976420pt;}
.ws1cf{word-spacing:8.100753pt;}
.ws81{word-spacing:8.239432pt;}
.ws43{word-spacing:8.315944pt;}
.ws80{word-spacing:8.363765pt;}
.wsd5{word-spacing:8.540700pt;}
.ws4d{word-spacing:8.751109pt;}
.ws181{word-spacing:8.837185pt;}
.ws10d{word-spacing:8.841967pt;}
.ws147{word-spacing:8.985428pt;}
.ws49{word-spacing:9.124107pt;}
.ws109{word-spacing:9.148017pt;}
.wsdd{word-spacing:9.286696pt;}
.ws60{word-spacing:9.301042pt;}
.ws4e{word-spacing:9.425375pt;}
.wsf8{word-spacing:9.434939pt;}
.wsde{word-spacing:9.449285pt;}
.ws12e{word-spacing:9.564053pt;}
.ws184{word-spacing:9.645348pt;}
.ws44{word-spacing:9.659694pt;}
.ws17f{word-spacing:9.721860pt;}
.ws139{word-spacing:9.750552pt;}
.ws112{word-spacing:9.894013pt;}
.wsc8{word-spacing:9.960962pt;}
.ws136{word-spacing:10.037474pt;}
.ws4f{word-spacing:10.051820pt;}
.ws114{word-spacing:10.056602pt;}
.ws1ee{word-spacing:10.098638pt;}
.wse6{word-spacing:10.142679pt;}
.ws14b{word-spacing:10.195281pt;}
.ws198{word-spacing:10.353088pt;}
.ws129{word-spacing:10.396126pt;}
.ws18b{word-spacing:10.429600pt;}
.wse0{word-spacing:10.499798pt;}
.ws6d{word-spacing:10.510895pt;}
.ws12f{word-spacing:10.534805pt;}
.ws6c{word-spacing:10.568279pt;}
.wsd0{word-spacing:10.582625pt;}
.ws70{word-spacing:10.673484pt;}
.ws51{word-spacing:10.697394pt;}
.ws45{word-spacing:10.745214pt;}
.ws4a{word-spacing:10.793034pt;}
.ws58{word-spacing:10.797816pt;}
.ws6e{word-spacing:10.816944pt;}
.ws76{word-spacing:10.821726pt;}
.ws162{word-spacing:10.825747pt;}
.ws59{word-spacing:10.859983pt;}
.ws2{word-spacing:10.871444pt;}
.ws0{word-spacing:10.881008pt;}
.ws4{word-spacing:10.884196pt;}
.ws56{word-spacing:10.898239pt;}
.ws148{word-spacing:10.960405pt;}
.ws12a{word-spacing:10.993879pt;}
.ws46{word-spacing:10.998661pt;}
.ws3{word-spacing:11.008532pt;}
.ws187{word-spacing:11.046482pt;}
.ws15b{word-spacing:11.070392pt;}
.ws15c{word-spacing:11.103866pt;}
.ws55{word-spacing:11.151686pt;}
.wsbb{word-spacing:11.268351pt;}
.ws13e{word-spacing:11.395570pt;}
.ws141{word-spacing:11.472082pt;}
.wsfd{word-spacing:11.677709pt;}
.ws4c{word-spacing:11.696837pt;}
.ws73{word-spacing:11.730311pt;}
.ws54{word-spacing:11.868990pt;}
.ws14f{word-spacing:11.907246pt;}
.ws72{word-spacing:11.945503pt;}
.ws74{word-spacing:12.026797pt;}
.ws199{word-spacing:12.304155pt;}
.ws40{word-spacing:12.380667pt;}
.ws5f{word-spacing:12.514564pt;}
.ws3e{word-spacing:12.524128pt;}
.ws6a{word-spacing:12.571948pt;}
.ws4b{word-spacing:12.715409pt;}
.ws155{word-spacing:12.744101pt;}
.ws3d{word-spacing:12.873216pt;}
.ws13c{word-spacing:12.911472pt;}
.ws65{word-spacing:13.078843pt;}
.ws189{word-spacing:13.217522pt;}
.wse3{word-spacing:13.284470pt;}
.wsbd{word-spacing:13.296203pt;}
.ws16f{word-spacing:13.323301pt;}
.ws16c{word-spacing:13.327818pt;}
.wsfa{word-spacing:13.346636pt;}
.wsc4{word-spacing:13.354916pt;}
.wsc6{word-spacing:13.363949pt;}
.ws17e{word-spacing:13.377498pt;}
.wsc5{word-spacing:13.382014pt;}
.ws16e{word-spacing:13.400080pt;}
.wsee{word-spacing:13.418367pt;}
.ws17d{word-spacing:13.431694pt;}
.ws17b{word-spacing:13.458793pt;}
.ws125{word-spacing:13.461405pt;}
.ws17c{word-spacing:13.467825pt;}
.ws165{word-spacing:13.472342pt;}
.ws163{word-spacing:13.499440pt;}
.ws7b{word-spacing:13.499661pt;}
.ws16b{word-spacing:13.503956pt;}
.ws7d{word-spacing:13.537917pt;}
.ws7c{word-spacing:13.542700pt;}
.ws1b2{word-spacing:13.580735pt;}
.wsc7{word-spacing:13.594284pt;}
.ws16d{word-spacing:13.598800pt;}
.ws1a1{word-spacing:13.623994pt;}
.ws164{word-spacing:13.648480pt;}
.ws12d{word-spacing:13.681378pt;}
.wsbc{word-spacing:13.716226pt;}
.ws1e4{word-spacing:13.738763pt;}
.ws22{word-spacing:13.748112pt;}
.ws2e{word-spacing:13.752097pt;}
.ws134{word-spacing:13.762673pt;}
.ws1c{word-spacing:13.772022pt;}
.ws47{word-spacing:13.791365pt;}
.ws15{word-spacing:13.815856pt;}
.wsfb{word-spacing:13.834403pt;}
.ws29{word-spacing:13.859691pt;}
.ws1e0{word-spacing:13.872659pt;}
.ws1cc{word-spacing:13.877441pt;}
.ws1c5{word-spacing:13.887005pt;}
.ws1e{word-spacing:13.891571pt;}
.ws8a{word-spacing:13.891787pt;}
.ws19{word-spacing:13.899540pt;}
.ws28{word-spacing:13.911495pt;}
.ws13{word-spacing:13.919465pt;}
.ws26{word-spacing:13.923450pt;}
.ws1d2{word-spacing:13.930044pt;}
.ws1a{word-spacing:13.935405pt;}
.ws2c{word-spacing:13.951345pt;}
.ws10{word-spacing:13.963300pt;}
.ws61{word-spacing:13.963518pt;}
.ws20{word-spacing:13.971270pt;}
.ws16{word-spacing:13.975255pt;}
.ws7e{word-spacing:14.001774pt;}
.ws117{word-spacing:14.044812pt;}
.ws12{word-spacing:14.050969pt;}
.ws1e5{word-spacing:14.073504pt;}
.ws11{word-spacing:14.074879pt;}
.ws171{word-spacing:14.078287pt;}
.ws1f{word-spacing:14.078864pt;}
.ws1be{word-spacing:14.092633pt;}
.ws1ed{word-spacing:14.111761pt;}
.ws179{word-spacing:14.116543pt;}
.ws3b{word-spacing:14.178709pt;}
.ws53{word-spacing:14.193055pt;}
.ws25{word-spacing:14.202397pt;}
.ws9e{word-spacing:14.202619pt;}
.wsab{word-spacing:14.207401pt;}
.ws1eb{word-spacing:14.216965pt;}
.ws2f{word-spacing:14.222322pt;}
.wsb6{word-spacing:14.231311pt;}
.wsa4{word-spacing:14.274350pt;}
.wsec{word-spacing:14.283914pt;}
.ws2a{word-spacing:14.286082pt;}
.ws69{word-spacing:14.288696pt;}
.wsb4{word-spacing:14.298260pt;}
.wsbf{word-spacing:14.303042pt;}
.wsff{word-spacing:14.307824pt;}
.ws1c0{word-spacing:14.312606pt;}
.wsae{word-spacing:14.317388pt;}
.ws23{word-spacing:14.321946pt;}
.ws87{word-spacing:14.322170pt;}
.wsb0{word-spacing:14.336516pt;}
.ws82{word-spacing:14.341298pt;}
.ws5{word-spacing:14.354862pt;}
.wsb3{word-spacing:14.369990pt;}
.ws7{word-spacing:14.371865pt;}
.ws3a{word-spacing:14.374772pt;}
.ws170{word-spacing:14.379554pt;}
.ws1b3{word-spacing:14.384336pt;}
.ws1e3{word-spacing:14.389118pt;}
.ws1af{word-spacing:14.408246pt;}
.wsa9{word-spacing:14.417810pt;}
.wsd3{word-spacing:14.422592pt;}
.ws1a6{word-spacing:14.432156pt;}
.ws9f{word-spacing:14.436939pt;}
.ws145{word-spacing:14.484759pt;}
.ws1a8{word-spacing:14.494323pt;}
.ws6{word-spacing:14.495137pt;}
.ws9{word-spacing:14.503639pt;}
.wsc2{word-spacing:14.503887pt;}
.wsbe{word-spacing:14.508669pt;}
.ws14d{word-spacing:14.513451pt;}
.ws1d7{word-spacing:14.523015pt;}
.ws1c7{word-spacing:14.556489pt;}
.ws1ad{word-spacing:14.580399pt;}
.ws8d{word-spacing:14.628220pt;}
.ws37{word-spacing:14.647348pt;}
.wsa{word-spacing:14.741682pt;}
.ws103{word-spacing:14.766898pt;}
.ws7f{word-spacing:14.776462pt;}
.ws62{word-spacing:14.800373pt;}
.ws124{word-spacing:15.034692pt;}
.ws8{word-spacing:15.043487pt;}
.ws15d{word-spacing:15.154243pt;}
.ws144{word-spacing:15.235537pt;}
.ws32{word-spacing:15.249883pt;}
.ws33{word-spacing:15.283357pt;}
.ws100{word-spacing:15.335960pt;}
.ws195{word-spacing:15.393344pt;}
.ws18c{word-spacing:15.493766pt;}
.ws39{word-spacing:15.675483pt;}
.ws77{word-spacing:15.809380pt;}
.ws116{word-spacing:15.844519pt;}
.ws12c{word-spacing:15.866764pt;}
.ws5d{word-spacing:15.982667pt;}
.ws13f{word-spacing:16.445390pt;}
.ws78{word-spacing:16.560158pt;}
.ws1b{word-spacing:16.584068pt;}
.ws17{word-spacing:16.593633pt;}
.ws2d{word-spacing:16.598415pt;}
.ws18{word-spacing:16.679709pt;}
.wsed{word-spacing:16.703619pt;}
.ws7a{word-spacing:16.722747pt;}
.ws2b{word-spacing:16.789696pt;}
.ws27{word-spacing:16.794478pt;}
.ws14{word-spacing:16.799260pt;}
.wse{word-spacing:16.837516pt;}
.ws157{word-spacing:16.847080pt;}
.ws193{word-spacing:16.856644pt;}
.ws79{word-spacing:16.861426pt;}
.ws21{word-spacing:16.875772pt;}
.wsf0{word-spacing:16.909246pt;}
.ws24{word-spacing:16.923592pt;}
.ws48{word-spacing:16.937938pt;}
.ws9b{word-spacing:16.947503pt;}
.ws9c{word-spacing:17.028797pt;}
.ws50{word-spacing:17.047925pt;}
.ws38{word-spacing:17.397013pt;}
.wsf3{word-spacing:17.401795pt;}
.wsf5{word-spacing:17.511782pt;}
.ws185{word-spacing:17.660024pt;}
.wscc{word-spacing:17.750883pt;}
.ws137{word-spacing:17.889562pt;}
.ws150{word-spacing:17.932600pt;}
.ws12b{word-spacing:18.214740pt;}
.ws123{word-spacing:18.257778pt;}
.ws97{word-spacing:18.324726pt;}
.ws96{word-spacing:18.520789pt;}
.ws105{word-spacing:18.659468pt;}
.ws135{word-spacing:18.822057pt;}
.ws11e{word-spacing:18.869877pt;}
.ws5b{word-spacing:18.960736pt;}
.ws119{word-spacing:19.104197pt;}
.ws11d{word-spacing:19.123325pt;}
.ws188{word-spacing:19.166363pt;}
.ws36{word-spacing:19.214183pt;}
.ws52{word-spacing:19.333734pt;}
.ws42{word-spacing:19.534579pt;}
.wsd8{word-spacing:19.630219pt;}
.ws1d0{word-spacing:19.673258pt;}
.wsd7{word-spacing:19.725860pt;}
.ws142{word-spacing:19.730642pt;}
.ws158{word-spacing:19.979307pt;}
.ws14a{word-spacing:19.998436pt;}
.ws138{word-spacing:20.003218pt;}
.ws191{word-spacing:20.122768pt;}
.ws132{word-spacing:20.213627pt;}
.ws182{word-spacing:20.333177pt;}
.ws133{word-spacing:20.376216pt;}
.ws121{word-spacing:20.682265pt;}
.ws83{word-spacing:20.811380pt;}
.ws192{word-spacing:20.820944pt;}
.ws84{word-spacing:21.017007pt;}
.ws31{word-spacing:21.117430pt;}
.ws34{word-spacing:21.586068pt;}
.ws151{word-spacing:21.753439pt;}
.ws35{word-spacing:21.935156pt;}
.ws57{word-spacing:22.891562pt;}
.ws13b{word-spacing:23.197611pt;}
.ws1f1{word-spacing:23.651904pt;}
.ws89{word-spacing:23.699724pt;}
.wsd9{word-spacing:23.843185pt;}
.ws146{word-spacing:23.871877pt;}
.ws10e{word-spacing:24.512669pt;}
.ws122{word-spacing:25.258665pt;}
.wsfc{word-spacing:25.612535pt;}
.ws18e{word-spacing:25.956841pt;}
.ws11c{word-spacing:26.320275pt;}
.ws8f{word-spacing:28.213957pt;}
.ws30{word-spacing:28.859531pt;}
.wsf4{word-spacing:29.543361pt;}
.ws90{word-spacing:30.509330pt;}
.ws91{word-spacing:31.097519pt;}
.wsb{word-spacing:41.622876pt;}
.wsd{word-spacing:41.686637pt;}
.wsc{word-spacing:41.916175pt;}
.ws15e{word-spacing:168.674183pt;}
.ws161{word-spacing:170.325342pt;}
.wsb9{word-spacing:203.867361pt;}
.wsba{word-spacing:220.193200pt;}
.wsa2{word-spacing:230.173290pt;}
.wsa8{word-spacing:246.499129pt;}
.wsa7{word-spacing:256.780486pt;}
.wsb8{word-spacing:264.943405pt;}
.ws17a{word-spacing:270.084084pt;}
.wsa3{word-spacing:272.805057pt;}
.wsb2{word-spacing:273.407593pt;}
.wsa1{word-spacing:291.550602pt;}
.wsb5{word-spacing:299.847418pt;}
.wsad{word-spacing:317.856531pt;}
.wsc0{word-spacing:336.415576pt;}
.wsa0{word-spacing:344.463727pt;}
.wsc1{word-spacing:365.628977pt;}
.wsac{word-spacing:370.769656pt;}
.wsc3{word-spacing:381.653548pt;}
.ws166{word-spacing:403.716633pt;}
.wsb1{word-spacing:424.170547pt;}
.wsaf{word-spacing:448.056771pt;}
.ws1b0{word-spacing:450.031748pt;}
.ws1a9{word-spacing:498.392383pt;}
.ws1ae{word-spacing:652.655781pt;}
.wsb7{word-spacing:720.603598pt;}
.ws1b4{word-spacing:770.843571pt;}
.ws1b5{word-spacing:772.804201pt;}
.ws1b7{word-spacing:794.270719pt;}
.ws176{word-spacing:801.405503pt;}
.ws175{word-spacing:848.699747pt;}
.ws178{word-spacing:870.166264pt;}
.ws1b1{word-spacing:924.590510pt;}
._3f{margin-left:-437.545140pt;}
._21{margin-left:-429.468820pt;}
._41{margin-left:-395.596368pt;}
._47{margin-left:-392.434568pt;}
._48{margin-left:-360.325709pt;}
._22{margin-left:-347.631554pt;}
._49{margin-left:-344.736302pt;}
._4b{margin-left:-323.351079pt;}
._4c{margin-left:-291.388013pt;}
._4e{margin-left:-275.363442pt;}
._42{margin-left:-269.921495pt;}
._4d{margin-left:-248.751463pt;}
._1a{margin-left:-26.415915pt;}
._f{margin-left:-19.148833pt;}
._40{margin-left:-16.604829pt;}
._43{margin-left:-14.216965pt;}
._2e{margin-left:-10.190499pt;}
._13{margin-left:-8.535918pt;}
._36{margin-left:-7.432868pt;}
._12{margin-left:-5.475421pt;}
._4{margin-left:-4.552489pt;}
._38{margin-left:-3.471751pt;}
._e{margin-left:-2.582294pt;}
._3{margin-left:-1.558941pt;}
._0{width:1.632270pt;}
._17{width:2.563166pt;}
._8{width:3.830403pt;}
._1c{width:11.146904pt;}
._15{width:12.045925pt;}
._2{width:13.166308pt;}
._19{width:14.085132pt;}
._1{width:15.031269pt;}
._9{width:16.257531pt;}
._16{width:17.282244pt;}
._a{width:18.597302pt;}
._6{width:19.964961pt;}
._d{width:21.351749pt;}
._7{width:22.786357pt;}
._11{width:24.154017pt;}
._b{width:25.832508pt;}
._10{width:26.788913pt;}
._14{width:27.860087pt;}
._18{width:28.767074pt;}
._5{width:30.074166pt;}
._35{width:31.413133pt;}
._c{width:32.388667pt;}
._34{width:33.641558pt;}
._37{width:34.779680pt;}
._2f{width:35.841290pt;}
._32{width:37.758883pt;}
._33{width:39.901231pt;}
._1b{width:41.072827pt;}
._31{width:43.741198pt;}
._30{width:44.836282pt;}
._46{width:55.313702pt;}
._45{width:66.809695pt;}
._1f{width:79.180798pt;}
._1e{width:81.543119pt;}
._44{width:94.626744pt;}
._1d{width:97.811573pt;}
._3a{width:192.396257pt;}
._3c{width:194.047415pt;}
._39{width:204.257293pt;}
._3b{width:205.908452pt;}
._2a{width:323.523232pt;}
._29{width:366.719279pt;}
._23{width:369.191587pt;}
._28{width:376.436357pt;}
._25{width:403.306565pt;}
._2c{width:406.596599pt;}
._3d{width:416.899809pt;}
._3e{width:418.034671pt;}
._20{width:428.871280pt;}
._24{width:450.969025pt;}
._2b{width:456.052319pt;}
._26{width:459.108034pt;}
._4a{width:492.065762pt;}
._27{width:543.309960pt;}
._2d{width:773.334691pt;}
.fsc{font-size:26.132800pt;}
.fs5{font-size:27.894400pt;}
.fsf{font-size:29.863467pt;}
.fsb{font-size:29.865067pt;}
.fs0{font-size:31.881067pt;}
.fs6{font-size:33.473067pt;}
.fs12{font-size:34.537067pt;}
.fs10{font-size:37.193600pt;}
.fsa{font-size:37.331733pt;}
.fs4{font-size:39.849600pt;}
.fs1{font-size:42.507733pt;}
.fse{font-size:42.662400pt;}
.fsd{font-size:42.664000pt;}
.fs9{font-size:42.665600pt;}
.fs11{font-size:43.117565pt;}
.fs8{font-size:45.163733pt;}
.fs3{font-size:47.820267pt;}
.fs7{font-size:53.133867pt;}
.fs2{font-size:127.521067pt;}
.y0{bottom:0.000000pt;}
.y18d{bottom:1.469733pt;}
.y19a{bottom:1.472000pt;}
.yb0{bottom:22.677200pt;}
.y25a{bottom:22.677556pt;}
.y61{bottom:22.679417pt;}
.y11f{bottom:22.685133pt;}
.y20e{bottom:60.472746pt;}
.y259{bottom:60.473499pt;}
.y1f4{bottom:60.473845pt;}
.y60{bottom:60.475360pt;}
.y7b{bottom:60.478402pt;}
.y11e{bottom:60.481077pt;}
.yeb{bottom:60.481733pt;}
.y87{bottom:60.626081pt;}
.y4f{bottom:60.628696pt;}
.y134{bottom:60.629795pt;}
.y148{bottom:60.635773pt;}
.y1dc{bottom:72.415816pt;}
.y20d{bottom:76.422000pt;}
.y258{bottom:76.422754pt;}
.y1f3{bottom:76.423099pt;}
.y5f{bottom:76.424615pt;}
.y7a{bottom:76.427656pt;}
.y11d{bottom:76.430331pt;}
.yea{bottom:76.430988pt;}
.y86{bottom:76.575336pt;}
.y4e{bottom:76.577951pt;}
.y133{bottom:76.579050pt;}
.y147{bottom:76.585027pt;}
.y1db{bottom:88.365388pt;}
.y257{bottom:92.372008pt;}
.y1f2{bottom:92.372354pt;}
.y20c{bottom:92.372424pt;}
.y5e{bottom:92.373869pt;}
.y79{bottom:92.376911pt;}
.y11c{bottom:92.379586pt;}
.ye9{bottom:92.380242pt;}
.y85{bottom:92.524590pt;}
.y4d{bottom:92.527205pt;}
.y132{bottom:92.528304pt;}
.y146{bottom:92.534282pt;}
.y1da{bottom:104.314961pt;}
.y256{bottom:108.321262pt;}
.y1f1{bottom:108.321608pt;}
.y20b{bottom:108.321679pt;}
.y5d{bottom:108.323124pt;}
.y78{bottom:108.326165pt;}
.y11b{bottom:108.328840pt;}
.ye8{bottom:108.329497pt;}
.y84{bottom:108.398528pt;}
.y4c{bottom:108.401143pt;}
.y131{bottom:108.402242pt;}
.y145{bottom:108.408219pt;}
.y1d9{bottom:120.264533pt;}
.y255{bottom:124.195200pt;}
.y1f0{bottom:124.195546pt;}
.y5c{bottom:124.197061pt;}
.y11a{bottom:124.202778pt;}
.y207{bottom:124.270933pt;}
.y77{bottom:124.275420pt;}
.ye7{bottom:124.278751pt;}
.y83{bottom:124.347782pt;}
.y4b{bottom:124.350397pt;}
.y130{bottom:124.351496pt;}
.y209{bottom:124.421836pt;}
.y20a{bottom:124.572738pt;}
.y208{bottom:126.463270pt;}
.y1ef{bottom:140.144800pt;}
.y5b{bottom:140.146316pt;}
.y119{bottom:140.152032pt;}
.ye6{bottom:140.152689pt;}
.y82{bottom:140.297037pt;}
.y4a{bottom:140.299651pt;}
.y12f{bottom:140.300751pt;}
.y144{bottom:140.307924pt;}
.y1d7{bottom:146.873499pt;}
.y1d8{bottom:149.820519pt;}
.y1ee{bottom:156.094533pt;}
.y5a{bottom:156.095570pt;}
.y118{bottom:156.101286pt;}
.ye5{bottom:156.101943pt;}
.y81{bottom:156.246291pt;}
.y49{bottom:156.248906pt;}
.y12e{bottom:156.250005pt;}
.y143{bottom:156.257178pt;}
.y76{bottom:161.466437pt;}
.y1d5{bottom:162.747437pt;}
.y1d6{bottom:165.770873pt;}
.y59{bottom:172.044824pt;}
.y117{bottom:172.050541pt;}
.ye4{bottom:172.051197pt;}
.y80{bottom:172.195546pt;}
.y48{bottom:172.198160pt;}
.y12d{bottom:172.199259pt;}
.y142{bottom:172.206432pt;}
.y75{bottom:177.415691pt;}
.y1d3{bottom:178.696691pt;}
.y1d4{bottom:181.720127pt;}
.y206{bottom:185.047045pt;}
.y58{bottom:187.994079pt;}
.y116{bottom:187.999795pt;}
.ye3{bottom:188.000452pt;}
.y47{bottom:188.147415pt;}
.y12c{bottom:188.148514pt;}
.y7f{bottom:188.152536pt;}
.y141{bottom:188.155687pt;}
.y74{bottom:193.364945pt;}
.y1d1{bottom:194.645946pt;}
.y1d2{bottom:197.669382pt;}
.y205{bottom:200.996299pt;}
.y57{bottom:203.943333pt;}
.y115{bottom:203.949050pt;}
.ye2{bottom:203.949706pt;}
.y46{bottom:204.096669pt;}
.y1ed{bottom:204.097513pt;}
.y12b{bottom:204.097768pt;}
.y7e{bottom:204.101791pt;}
.y140{bottom:204.104941pt;}
.y73{bottom:209.314200pt;}
.y1cf{bottom:210.595467pt;}
.y1d0{bottom:213.618636pt;}
.y204{bottom:216.945554pt;}
.y114{bottom:219.898304pt;}
.ye1{bottom:219.898961pt;}
.y45{bottom:220.045924pt;}
.y1ec{bottom:220.046768pt;}
.y12a{bottom:220.047023pt;}
.y7d{bottom:220.051045pt;}
.y13f{bottom:220.054196pt;}
.y72{bottom:225.263454pt;}
.y56{bottom:227.829867pt;}
.y203{bottom:232.894808pt;}
.y113{bottom:235.847559pt;}
.y44{bottom:235.919861pt;}
.y1eb{bottom:235.920705pt;}
.y129{bottom:235.920960pt;}
.y7c{bottom:235.924983pt;}
.y13e{bottom:235.928133pt;}
.y1ce{bottom:240.302612pt;}
.y202{bottom:248.844062pt;}
.y112{bottom:251.721496pt;}
.ye0{bottom:251.798665pt;}
.y43{bottom:251.869116pt;}
.y1ea{bottom:251.869960pt;}
.y128{bottom:251.870215pt;}
.y13d{bottom:251.877388pt;}
.y1cd{bottom:256.251867pt;}
.y71{bottom:262.454471pt;}
.y201{bottom:264.718000pt;}
.y111{bottom:267.670751pt;}
.ydf{bottom:267.747920pt;}
.y42{bottom:267.818370pt;}
.y1e9{bottom:267.819214pt;}
.y127{bottom:267.819469pt;}
.y55{bottom:267.825543pt;}
.y13c{bottom:267.826642pt;}
.y70{bottom:278.403726pt;}
.y200{bottom:280.667733pt;}
.y110{bottom:283.620005pt;}
.ydd{bottom:283.697174pt;}
.y41{bottom:283.767624pt;}
.y1e8{bottom:283.768468pt;}
.y126{bottom:283.768724pt;}
.y54{bottom:283.774797pt;}
.y13b{bottom:283.775897pt;}
.yde{bottom:286.342830pt;}
.yaf{bottom:293.140244pt;}
.y6f{bottom:294.352980pt;}
.y10f{bottom:299.569259pt;}
.ydc{bottom:299.646428pt;}
.y40{bottom:299.716879pt;}
.y1e7{bottom:299.717723pt;}
.y125{bottom:299.717978pt;}
.y53{bottom:299.724052pt;}
.y13a{bottom:299.725151pt;}
.yae{bottom:309.089816pt;}
.y6e{bottom:310.302235pt;}
.y10e{bottom:315.518514pt;}
.ydb{bottom:315.595683pt;}
.y3f{bottom:315.666479pt;}
.y1e6{bottom:315.666977pt;}
.y124{bottom:315.667232pt;}
.y1ff{bottom:315.671480pt;}
.y52{bottom:315.673306pt;}
.y139{bottom:315.674406pt;}
.yad{bottom:325.039388pt;}
.y6d{bottom:326.251489pt;}
.y10d{bottom:331.467768pt;}
.yda{bottom:331.544937pt;}
.y3e{bottom:331.615733pt;}
.y123{bottom:331.616487pt;}
.y1fe{bottom:331.620734pt;}
.y51{bottom:331.622561pt;}
.y138{bottom:331.623660pt;}
.y1cc{bottom:332.220455pt;}
.yac{bottom:340.988961pt;}
.y6c{bottom:342.200743pt;}
.y10c{bottom:347.417023pt;}
.yd9{bottom:347.494192pt;}
.y3d{bottom:347.565333pt;}
.y122{bottom:347.565741pt;}
.y1e5{bottom:347.566682pt;}
.y1fd{bottom:347.569989pt;}
.y50{bottom:347.571815pt;}
.y137{bottom:347.572914pt;}
.y1cb{bottom:348.170028pt;}
.yab{bottom:356.938533pt;}
.y6b{bottom:358.149998pt;}
.y10b{bottom:363.366277pt;}
.y121{bottom:363.439679pt;}
.y1e4{bottom:363.440619pt;}
.yd8{bottom:363.443446pt;}
.y1fc{bottom:363.443926pt;}
.y136{bottom:363.446852pt;}
.y1ca{bottom:364.119600pt;}
.y6a{bottom:374.023935pt;}
.y10a{bottom:379.240215pt;}
.yd7{bottom:379.317384pt;}
.y120{bottom:379.388933pt;}
.y1e3{bottom:379.389874pt;}
.y1fb{bottom:379.393181pt;}
.y135{bottom:379.396106pt;}
.yaa{bottom:383.472512pt;}
.y3c{bottom:385.892158pt;}
.y1a2{bottom:389.953279pt;}
.y69{bottom:389.973190pt;}
.y109{bottom:395.189469pt;}
.yd6{bottom:395.266638pt;}
.y1e2{bottom:395.339128pt;}
.y1fa{bottom:395.342435pt;}
.ya9{bottom:399.421766pt;}
.y1a0{bottom:403.882008pt;}
.y3b{bottom:404.487069pt;}
.y68{bottom:405.922444pt;}
.y108{bottom:411.138724pt;}
.yd5{bottom:411.215893pt;}
.y1e1{bottom:411.288383pt;}
.y1f9{bottom:411.291690pt;}
.ya8{bottom:415.371021pt;}
.y19f{bottom:416.812400pt;}
.y67{bottom:421.871699pt;}
.y3a{bottom:423.081980pt;}
.y107{bottom:427.087978pt;}
.yd4{bottom:427.165147pt;}
.y1f8{bottom:427.240944pt;}
.ya7{bottom:431.320275pt;}
.y66{bottom:437.820953pt;}
.y39{bottom:441.676891pt;}
.y106{bottom:443.037232pt;}
.yd3{bottom:443.114401pt;}
.y1e0{bottom:443.188087pt;}
.y1f7{bottom:443.190198pt;}
.ya6{bottom:447.269530pt;}
.y19e{bottom:449.612588pt;}
.y65{bottom:453.770208pt;}
.y105{bottom:458.986487pt;}
.yd2{bottom:459.063656pt;}
.y1df{bottom:459.137341pt;}
.y38{bottom:460.271801pt;}
.ya5{bottom:463.218784pt;}
.y19d{bottom:465.562161pt;}
.y104{bottom:474.935741pt;}
.y1de{bottom:475.086596pt;}
.y254{bottom:475.086941pt;}
.y1f6{bottom:475.089903pt;}
.y37{bottom:478.866712pt;}
.y19c{bottom:481.511733pt;}
.y103{bottom:490.884996pt;}
.y1dd{bottom:490.960533pt;}
.y23b{bottom:490.960879pt;}
.y64{bottom:490.961224pt;}
.yd1{bottom:490.963360pt;}
.y1f5{bottom:490.963840pt;}
.ya4{bottom:492.925929pt;}
.y36{bottom:497.461623pt;}
.y18c{bottom:505.398667pt;}
.y1c0{bottom:505.508667pt;}
.y102{bottom:506.761894pt;}
.y18e{bottom:506.868400pt;}
.y19b{bottom:506.870667pt;}
.y23a{bottom:506.910133pt;}
.y63{bottom:506.910479pt;}
.yd0{bottom:506.912615pt;}
.y253{bottom:507.288452pt;}
.y1c4{bottom:508.105600pt;}
.ya3{bottom:508.799867pt;}
.y1bc{bottom:512.605067pt;}
.y35{bottom:516.057379pt;}
.y1a9{bottom:517.995067pt;}
.y18b{bottom:519.252133pt;}
.y199{bottom:519.254696pt;}
.y101{bottom:522.711148pt;}
.y62{bottom:522.859733pt;}
.y239{bottom:522.860424pt;}
.y252{bottom:522.860770pt;}
.ycf{bottom:522.861869pt;}
.y1aa{bottom:525.109067pt;}
.y1c1{bottom:526.243467pt;}
.y1c5{bottom:528.840267pt;}
.y189{bottom:531.108133pt;}
.y198{bottom:531.110400pt;}
.y1bd{bottom:533.339867pt;}
.y34{bottom:534.652289pt;}
.y1c8{bottom:538.034000pt;}
.y100{bottom:538.660403pt;}
.y238{bottom:538.809679pt;}
.y251{bottom:538.810024pt;}
.yce{bottom:538.811124pt;}
.y223{bottom:538.960588pt;}
.y180{bottom:543.685600pt;}
.y18f{bottom:543.687867pt;}
.y1c9{bottom:545.148000pt;}
.y33{bottom:553.247200pt;}
.yff{bottom:554.609657pt;}
.y237{bottom:554.758933pt;}
.y250{bottom:554.759279pt;}
.ycd{bottom:554.760378pt;}
.y222{bottom:554.910161pt;}
.y1b1{bottom:558.492933pt;}
.y172{bottom:558.601813pt;}
.y16e{bottom:559.010595pt;}
.y170{bottom:559.157122pt;}
.y174{bottom:559.689099pt;}
.y1ad{bottom:560.802933pt;}
.y181{bottom:564.281352pt;}
.y190{bottom:564.457481pt;}
.y1ae{bottom:567.916800pt;}
.yfe{bottom:570.558911pt;}
.y24d{bottom:570.708533pt;}
.y236{bottom:570.709287pt;}
.ycc{bottom:570.709632pt;}
.y24e{bottom:570.783985pt;}
.y221{bottom:570.859733pt;}
.y24f{bottom:570.934887pt;}
.y16a{bottom:576.946626pt;}
.y166{bottom:577.020357pt;}
.y16c{bottom:577.103420pt;}
.y168{bottom:577.167817pt;}
.y1b2{bottom:579.227600pt;}
.y182{bottom:584.877104pt;}
.y191{bottom:585.227095pt;}
.yfd{bottom:586.508166pt;}
.y235{bottom:586.658541pt;}
.ycb{bottom:586.658887pt;}
.y18a{bottom:587.079200pt;}
.ya2{bottom:589.681788pt;}
.y160{bottom:594.810794pt;}
.y162{bottom:595.073050pt;}
.y164{bottom:595.230776pt;}
.y15e{bottom:595.911147pt;}
.y21f{bottom:597.393366pt;}
.y220{bottom:600.416803pt;}
.yfc{bottom:602.457420pt;}
.y234{bottom:602.607796pt;}
.yca{bottom:602.608141pt;}
.y1b6{bottom:604.636133pt;}
.y183{bottom:605.472855pt;}
.ya1{bottom:605.631361pt;}
.y192{bottom:605.996709pt;}
.y1b4{bottom:611.268400pt;}
.y156{bottom:612.379600pt;}
.y15a{bottom:612.445372pt;}
.y21d{bottom:613.342621pt;}
.y158{bottom:613.839333pt;}
.y15c{bottom:613.905042pt;}
.y21e{bottom:616.366057pt;}
.y30{bottom:617.877750pt;}
.yfb{bottom:618.406675pt;}
.y233{bottom:618.481733pt;}
.yc9{bottom:618.482079pt;}
.ya0{bottom:621.580933pt;}
.y1b7{bottom:625.370800pt;}
.y184{bottom:626.068607pt;}
.y193{bottom:626.766323pt;}
.y21b{bottom:629.291875pt;}
.y2d{bottom:629.820675pt;}
.y2e{bottom:630.122536pt;}
.y2f{bottom:630.273964pt;}
.yc8{bottom:630.349425pt;}
.y1b5{bottom:632.003067pt;}
.y21c{bottom:632.239995pt;}
.yfa{bottom:634.280612pt;}
.y24b{bottom:634.431333pt;}
.y232{bottom:634.432024pt;}
.yc7{bottom:634.433061pt;}
.y24c{bottom:634.582236pt;}
.y2a{bottom:641.763600pt;}
.y2b{bottom:642.141175pt;}
.y2c{bottom:642.216889pt;}
.y219{bottom:645.241130pt;}
.y185{bottom:646.664359pt;}
.y194{bottom:647.535937pt;}
.y1a5{bottom:648.084267pt;}
.y9f{bottom:648.113891pt;}
.y21a{bottom:648.189249pt;}
.yf9{bottom:650.229867pt;}
.y231{bottom:650.381279pt;}
.yc6{bottom:650.382316pt;}
.y29{bottom:653.782533pt;}
.y1a6{bottom:655.198133pt;}
.y32{bottom:656.125726pt;}
.y217{bottom:661.190384pt;}
.y9e{bottom:664.063146pt;}
.y218{bottom:664.138503pt;}
.y230{bottom:666.330533pt;}
.y24a{bottom:666.330879pt;}
.yc5{bottom:666.331570pt;}
.y186{bottom:667.260111pt;}
.y195{bottom:668.305551pt;}
.y27{bottom:669.505742pt;}
.y28{bottom:669.883317pt;}
.yf8{bottom:674.192000pt;}
.y9c{bottom:680.012879pt;}
.y26{bottom:681.448667pt;}
.y249{bottom:682.280133pt;}
.yc4{bottom:682.280824pt;}
.y9d{bottom:683.035836pt;}
.y1a1{bottom:684.327413pt;}
.y187{bottom:687.855862pt;}
.y196{bottom:689.075165pt;}
.y216{bottom:690.822212pt;}
.y24{bottom:693.392000pt;}
.y25{bottom:693.619146pt;}
.y9a{bottom:695.963170pt;}
.yc3{bottom:698.230079pt;}
.y248{bottom:698.230487pt;}
.y9b{bottom:698.985570pt;}
.y215{bottom:706.771467pt;}
.y188{bottom:708.451614pt;}
.y22{bottom:709.115208pt;}
.y23{bottom:709.568497pt;}
.y197{bottom:709.844779pt;}
.y99{bottom:711.912424pt;}
.yc2{bottom:714.179333pt;}
.y247{bottom:714.179741pt;}
.yf7{bottom:714.193147pt;}
.y1f{bottom:721.058133pt;}
.y20{bottom:721.359994pt;}
.y21{bottom:721.511423pt;}
.y98{bottom:727.861679pt;}
.y246{bottom:730.128996pt;}
.y22f{bottom:730.129341pt;}
.yc1{bottom:730.131452pt;}
.yf6{bottom:730.142402pt;}
.y31{bottom:732.926299pt;}
.y1e{bottom:733.076933pt;}
.y154{bottom:738.254267pt;}
.y17f{bottom:740.110165pt;}
.y96{bottom:743.811554pt;}
.y243{bottom:746.002933pt;}
.y22e{bottom:746.003279pt;}
.yc0{bottom:746.005389pt;}
.yf5{bottom:746.016339pt;}
.y244{bottom:746.381252pt;}
.y97{bottom:746.759053pt;}
.y245{bottom:748.270721pt;}
.y1c{bottom:748.800275pt;}
.y1d{bottom:749.177850pt;}
.y152{bottom:750.172981pt;}
.y17e{bottom:752.030933pt;}
.y1a7{bottom:757.260533pt;}
.y1be{bottom:758.697867pt;}
.y95{bottom:759.685491pt;}
.y19{bottom:760.743200pt;}
.y1b{bottom:761.045061pt;}
.y1a{bottom:761.120775pt;}
.y22d{bottom:761.952533pt;}
.y242{bottom:761.953358pt;}
.ybf{bottom:761.954644pt;}
.yf4{bottom:761.965594pt;}
.y149{bottom:762.751867pt;}
.y1a8{bottom:764.374533pt;}
.y175{bottom:764.608400pt;}
.y1c2{bottom:769.649067pt;}
.y18{bottom:772.686400pt;}
.y1ba{bottom:774.612667pt;}
.y94{bottom:775.634746pt;}
.y241{bottom:777.902612pt;}
.y22c{bottom:777.903170pt;}
.yf3{bottom:777.914848pt;}
.y171{bottom:778.278531pt;}
.y16d{bottom:778.687313pt;}
.y1bf{bottom:779.432667pt;}
.y214{bottom:781.001571pt;}
.y16f{bottom:781.867977pt;}
.y173{bottom:782.399954pt;}
.y14a{bottom:783.405217pt;}
.y176{bottom:785.232951pt;}
.y16{bottom:788.409608pt;}
.y17{bottom:788.862897pt;}
.y1c3{bottom:790.383733pt;}
.y93{bottom:791.584479pt;}
.y240{bottom:793.851867pt;}
.y22b{bottom:793.852424pt;}
.ybe{bottom:793.854348pt;}
.y1bb{bottom:795.347333pt;}
.y1c6{bottom:796.792667pt;}
.y169{bottom:796.855735pt;}
.y165{bottom:796.929465pt;}
.y213{bottom:796.951143pt;}
.y13{bottom:800.352533pt;}
.y14{bottom:800.654394pt;}
.y16b{bottom:800.744768pt;}
.y15{bottom:800.805823pt;}
.y167{bottom:800.818498pt;}
.y1c7{bottom:803.906667pt;}
.y14b{bottom:804.058567pt;}
.y177{bottom:805.857502pt;}
.y153{bottom:806.377467pt;}
.y92{bottom:807.533946pt;}
.y22a{bottom:809.801679pt;}
.y23f{bottom:809.802503pt;}
.ybd{bottom:809.803603pt;}
.yf2{bottom:809.814552pt;}
.y10{bottom:812.295867pt;}
.y11{bottom:812.446501pt;}
.y12{bottom:812.598330pt;}
.y212{bottom:812.825067pt;}
.y15d{bottom:814.496845pt;}
.y161{bottom:814.982158pt;}
.y163{bottom:817.623378pt;}
.y15f{bottom:818.461475pt;}
.y90{bottom:823.483679pt;}
.y14c{bottom:824.711918pt;}
.y229{bottom:825.750933pt;}
.y23e{bottom:825.751758pt;}
.ybc{bottom:825.752857pt;}
.yf1{bottom:825.763807pt;}
.y178{bottom:826.482053pt;}
.y91{bottom:826.506636pt;}
.y155{bottom:831.042267pt;}
.y159{bottom:831.107600pt;}
.y15b{bottom:836.243513pt;}
.y157{bottom:836.243600pt;}
.yf{bottom:837.466419pt;}
.y8e{bottom:839.433279pt;}
.y23d{bottom:841.701012pt;}
.y228{bottom:841.701287pt;}
.ybb{bottom:841.702111pt;}
.yf0{bottom:841.713061pt;}
.y8f{bottom:842.381053pt;}
.y211{bottom:842.381398pt;}
.y14d{bottom:845.365268pt;}
.y179{bottom:847.106604pt;}
.y8c{bottom:855.382879pt;}
.y23c{bottom:857.650267pt;}
.y227{bottom:857.650541pt;}
.yba{bottom:857.651366pt;}
.yef{bottom:857.662316pt;}
.y8d{bottom:858.330653pt;}
.y1b3{bottom:858.737333pt;}
.y14e{bottom:866.018618pt;}
.y1a3{bottom:866.464133pt;}
.y17a{bottom:867.731155pt;}
.y1ab{bottom:871.079333pt;}
.y210{bottom:871.332062pt;}
.y8a{bottom:871.332117pt;}
.ye{bottom:872.011876pt;}
.y226{bottom:873.524479pt;}
.yb9{bottom:873.525303pt;}
.yee{bottom:873.536253pt;}
.y1a4{bottom:873.578000pt;}
.y8b{bottom:874.280253pt;}
.y1ac{bottom:878.193333pt;}
.y14f{bottom:886.671969pt;}
.y89{bottom:887.206055pt;}
.y17b{bottom:888.355706pt;}
.y224{bottom:889.473733pt;}
.yb8{bottom:889.474558pt;}
.y225{bottom:889.852052pt;}
.y20f{bottom:890.229436pt;}
.y1af{bottom:892.439600pt;}
.y1b8{bottom:896.811733pt;}
.yb7{bottom:905.423812pt;}
.yed{bottom:905.435958pt;}
.yd{bottom:906.557333pt;}
.y150{bottom:907.325319pt;}
.y17c{bottom:908.980257pt;}
.y1b0{bottom:913.174267pt;}
.y88{bottom:916.913200pt;}
.y1b9{bottom:917.546400pt;}
.yb6{bottom:921.373067pt;}
.yec{bottom:921.385212pt;}
.y151{bottom:927.978669pt;}
.y17d{bottom:929.604808pt;}
.ya{bottom:1017.523826pt;}
.yb{bottom:1017.826694pt;}
.yc{bottom:1017.977596pt;}
.y5{bottom:1023.647705pt;}
.y9{bottom:1030.827684pt;}
.yb3{bottom:1037.404693pt;}
.yb4{bottom:1037.783012pt;}
.yb5{bottom:1037.858463pt;}
.y8{bottom:1044.056091pt;}
.y4{bottom:1044.888465pt;}
.yb2{bottom:1050.708551pt;}
.y3{bottom:1055.471385pt;}
.y7{bottom:1057.359949pt;}
.yb1{bottom:1064.012409pt;}
.y2{bottom:1066.129226pt;}
.y1{bottom:1076.787067pt;}
.y6{bottom:1077.316267pt;}
.h21{height:22.755962pt;}
.h1e{height:22.757181pt;}
.h2{height:24.293373pt;}
.h2a{height:25.902800pt;}
.h22{height:28.341523pt;}
.h1b{height:28.446781pt;}
.h6{height:30.365395pt;}
.h3{height:32.390893pt;}
.h20{height:32.508749pt;}
.h1d{height:32.509968pt;}
.h18{height:32.511187pt;}
.h27{height:32.678215pt;}
.h23{height:32.855584pt;}
.h28{height:33.187265pt;}
.h29{height:33.286076pt;}
.ha{height:34.191491pt;}
.h14{height:34.414765pt;}
.he{height:34.526233pt;}
.hd{height:35.100076pt;}
.h5{height:36.439043pt;}
.h10{height:36.439107pt;}
.h7{height:37.041579pt;}
.h1a{height:38.205460pt;}
.h9{height:39.850400pt;}
.h15{height:41.463398pt;}
.h8{height:43.040162pt;}
.h19{height:43.663847pt;}
.hc{height:45.983968pt;}
.h17{height:46.273395pt;}
.hb{height:46.285236pt;}
.h26{height:48.230139pt;}
.h13{height:48.231521pt;}
.h25{height:48.231804pt;}
.h12{height:48.530873pt;}
.h11{height:48.531940pt;}
.h24{height:48.532569pt;}
.hf{height:48.532789pt;}
.h16{height:50.853867pt;}
.h1f{height:53.740538pt;}
.h4{height:97.171053pt;}
.h1c{height:431.924000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:649.322667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:52.913333pt;}
.x43{left:60.850667pt;}
.x2e{left:69.546267pt;}
.x2c{left:73.562015pt;}
.x2{left:75.590533pt;}
.x2b{left:79.492533pt;}
.x9{left:85.870734pt;}
.x2d{left:90.016004pt;}
.x7b{left:94.488133pt;}
.x3{left:96.756196pt;}
.xc{left:99.854955pt;}
.x27{left:116.107067pt;}
.x13{left:118.601203pt;}
.xe{left:120.868645pt;}
.xd{left:125.480222pt;}
.x4{left:127.673134pt;}
.x5{left:138.557869pt;}
.x42{left:170.040667pt;}
.x6{left:176.655080pt;}
.x45{left:177.544933pt;}
.x60{left:197.679867pt;}
.x61{left:200.667067pt;}
.x3c{left:203.458444pt;}
.x3b{left:206.388985pt;}
.x14{left:208.931280pt;}
.x10{left:212.030583pt;}
.xf{left:213.391446pt;}
.x7{left:226.014803pt;}
.x2f{left:230.059867pt;}
.x44{left:233.659733pt;}
.x1f{left:245.140133pt;}
.x15{left:246.726633pt;}
.x39{left:248.645708pt;}
.x38{left:251.576249pt;}
.x36{left:255.295423pt;}
.x35{left:258.225964pt;}
.x11{left:261.164143pt;}
.x73{left:262.526000pt;}
.x30{left:264.446533pt;}
.xa{left:266.229027pt;}
.x8{left:275.148364pt;}
.x20{left:279.005149pt;}
.x7c{left:280.970000pt;}
.x7d{left:284.598400pt;}
.x28{left:288.000379pt;}
.x64{left:300.094821pt;}
.x63{left:307.124400pt;}
.x1{left:313.700667pt;}
.xb{left:315.362588pt;}
.x51{left:326.011067pt;}
.x4c{left:329.707491pt;}
.x52{left:330.972533pt;}
.x53{left:333.959200pt;}
.x12{left:337.282857pt;}
.x5c{left:342.105333pt;}
.x5d{left:345.092667pt;}
.x32{left:347.599067pt;}
.x75{left:360.416477pt;}
.x74{left:367.446056pt;}
.x65{left:391.786596pt;}
.x5e{left:393.488533pt;}
.x5f{left:394.736933pt;}
.x1e{left:396.849842pt;}
.x47{left:397.911482pt;}
.x6c{left:399.193505pt;}
.x3f{left:402.522533pt;}
.x46{left:403.842000pt;}
.x40{left:413.046533pt;}
.x48{left:414.365867pt;}
.x62{left:416.117200pt;}
.x25{left:418.017568pt;}
.x16{left:419.527467pt;}
.x18{left:422.173123pt;}
.x83{left:426.784599pt;}
.x17{left:430.110092pt;}
.x59{left:432.734667pt;}
.x5a{left:435.721867pt;}
.x80{left:438.423737pt;}
.x29{left:440.694768pt;}
.x71{left:442.961226pt;}
.x26{left:448.934506pt;}
.x58{left:452.100667pt;}
.x77{left:457.399564pt;}
.x76{left:464.429143pt;}
.x2a{left:471.611706pt;}
.x56{left:480.353733pt;}
.x57{left:483.340933pt;}
.x86{left:485.140278pt;}
.x5b{left:486.176800pt;}
.x89{left:487.181712pt;}
.x21{left:490.582533pt;}
.x49{left:495.420907pt;}
.x84{left:496.403765pt;}
.x4b{left:503.522933pt;}
.x54{left:505.894667pt;}
.x69{left:513.110437pt;}
.x4f{left:520.933600pt;}
.x50{left:523.920267pt;}
.x3d{left:527.547354pt;}
.x22{left:535.635202pt;}
.x4d{left:543.355467pt;}
.x4e{left:546.342267pt;}
.x78{left:550.451826pt;}
.x19{left:551.734492pt;}
.x41{left:552.791306pt;}
.x55{left:554.947733pt;}
.x72{left:557.254054pt;}
.x4a{left:558.442933pt;}
.x6d{left:559.520986pt;}
.x8a{left:567.232276pt;}
.x3a{left:572.734618pt;}
.x67{left:575.093633pt;}
.x7a{left:576.452900pt;}
.x37{left:579.384333pt;}
.x66{left:583.182431pt;}
.x31{left:585.866133pt;}
.x6e{left:593.233869pt;}
.x87{left:596.182533pt;}
.x8b{left:598.601467pt;}
.x1a{left:600.868053pt;}
.x6a{left:604.802212pt;}
.x6f{left:614.097467pt;}
.x23{left:619.087545pt;}
.x88{left:624.680133pt;}
.x8c{left:627.099067pt;}
.x7e{left:634.128933pt;}
.x81{left:635.489600pt;}
.x70{left:642.595200pt;}
.x79{left:651.516373pt;}
.x24{left:654.765050pt;}
.x7f{left:662.626667pt;}
.x82{left:663.987200pt;}
.x68{left:666.785408pt;}
.x33{left:668.757435pt;}
.x34{left:673.310974pt;}
.x3e{left:674.606385pt;}
.x85{left:680.768267pt;}
.x6b{left:696.493986pt;}
.x1b{left:704.653347pt;}
.x1c{left:734.212318pt;}
}




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