
    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_34f775e844a77d9903ee1f13.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_f1a68cd83d69a3ed03c77872.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056000;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_0ac9e16896a6ac6df958ccd4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003000;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_ec7a36d573337de6c5453e39.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_879515bd03e73c35beee01b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.711426;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_1224a5bed0553b143e652a1a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095215;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_ba7a473b71bab38da047aa48.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.392000;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_eb3b05ffb20d57bd0b2838dd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.999000;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_7b991fb3d0e7e79825c6d491.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006000;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_f749ba49602c3d27573a61e2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4a1605fbc77e8720e4108a45.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.094000;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_891f1e8b9f7ce0392560bfeb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064000;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_5dda8d8b3bf274b3dad80efd.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.930664;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_8c4412bdc2b4c52442fe9a9c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.734000;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_609c1c718e3d5731f1b00c0b.woff2')format("woff");}.fff{font-family:fff;line-height:1.112000;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_a04fe744331ede7967111af8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.999000;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_3b28051c2d312bcbe1d90895.woff2')format("woff");}.ff11{font-family:ff11;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;}
@font-face{font-family:ff12;src:url('chunks/assets/font_2cc0b3f39ebefe4f2695675b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.147000;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_a93b4c373512094feefaf29c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.676000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_ae73e4d279c357bde8251f90.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_193b1de9df84d9b5e1927fa4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-7.141200px;}
.v3{vertical-align:-5.778000px;}
.v1{vertical-align:-1.015200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:17.348441px;}
.ls2d{letter-spacing:-1.500000px;}
.ls2e{letter-spacing:-1.331847px;}
.lsf{letter-spacing:-1.263600px;}
.ls14{letter-spacing:-1.200600px;}
.ls19{letter-spacing:-1.199985px;}
.ls37{letter-spacing:-0.780000px;}
.ls2c{letter-spacing:-0.600000px;}
.ls46{letter-spacing:-0.479994px;}
.ls18{letter-spacing:-0.240000px;}
.lse{letter-spacing:-0.239997px;}
.ls15{letter-spacing:-0.239400px;}
.ls12{letter-spacing:-0.238497px;}
.ls10{letter-spacing:-0.237600px;}
.ls17{letter-spacing:-0.237598px;}
.ls30{letter-spacing:-0.214367px;}
.ls16{letter-spacing:-0.212772px;}
.ls11{letter-spacing:-0.212372px;}
.ls1d{letter-spacing:-0.211976px;}
.ls13{letter-spacing:0.000000px;}
.ls3c{letter-spacing:0.792000px;}
.ls3a{letter-spacing:1.128000px;}
.ls39{letter-spacing:1.134000px;}
.lsc{letter-spacing:1.363183px;}
.lsa{letter-spacing:1.703979px;}
.ls2b{letter-spacing:2.467169px;}
.ls34{letter-spacing:3.168000px;}
.ls33{letter-spacing:3.174000px;}
.ls3b{letter-spacing:3.510000px;}
.ls32{letter-spacing:3.516000px;}
.ls3d{letter-spacing:4.761540px;}
.ls40{letter-spacing:4.766340px;}
.ls3f{letter-spacing:5.102336px;}
.ls3e{letter-spacing:5.107136px;}
.ls0{letter-spacing:5.486400px;}
.ls2{letter-spacing:5.826600px;}
.ls3{letter-spacing:5.832000px;}
.ls4{letter-spacing:7.187400px;}
.ls5{letter-spacing:7.192800px;}
.lsd{letter-spacing:9.446282px;}
.ls1{letter-spacing:9.574800px;}
.ls45{letter-spacing:10.166273px;}
.ls7{letter-spacing:10.257472px;}
.ls2a{letter-spacing:10.262272px;}
.ls29{letter-spacing:10.372670px;}
.ls8{letter-spacing:10.387070px;}
.ls28{letter-spacing:10.430270px;}
.ls20{letter-spacing:10.833465px;}
.ls1f{letter-spacing:10.924663px;}
.ls21{letter-spacing:11.011062px;}
.lsb{letter-spacing:11.908651px;}
.ls9{letter-spacing:12.323400px;}
.ls35{letter-spacing:12.690000px;}
.ls1c{letter-spacing:12.822000px;}
.ls31{letter-spacing:12.828000px;}
.ls24{letter-spacing:12.858000px;}
.ls1e{letter-spacing:12.966000px;}
.ls23{letter-spacing:12.996000px;}
.ls1b{letter-spacing:13.098000px;}
.ls25{letter-spacing:13.134000px;}
.ls36{letter-spacing:13.164000px;}
.ls38{letter-spacing:13.170000px;}
.ls22{letter-spacing:13.176000px;}
.ls2f{letter-spacing:13.200000px;}
.ls26{letter-spacing:13.314000px;}
.ls1a{letter-spacing:13.326000px;}
.ls27{letter-spacing:13.476600px;}
.ls44{letter-spacing:15.307009px;}
.ls42{letter-spacing:15.311809px;}
.ls41{letter-spacing:15.647804px;}
.ls43{letter-spacing:15.652604px;}
.ls6{letter-spacing:20.783740px;}
.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;}
}
.ws37{word-spacing:-25.247684px;}
.ws104{word-spacing:-22.895714px;}
.ws163{word-spacing:-19.994233px;}
.wscb{word-spacing:-15.342000px;}
.wscc{word-spacing:-15.324000px;}
.ws7c{word-spacing:-15.312000px;}
.ws12f{word-spacing:-15.300000px;}
.ws14a{word-spacing:-15.294000px;}
.ws2c{word-spacing:-15.210000px;}
.ws64{word-spacing:-15.120000px;}
.ws159{word-spacing:-15.060000px;}
.wsca{word-spacing:-15.006000px;}
.ws154{word-spacing:-14.952000px;}
.wsb{word-spacing:-14.936400px;}
.ws136{word-spacing:-13.500000px;}
.ws175{word-spacing:-13.247834px;}
.wsa8{word-spacing:-10.991863px;}
.ws3a{word-spacing:-10.799865px;}
.wsd9{word-spacing:-10.751866px;}
.ws131{word-spacing:-4.456763px;}
.ws164{word-spacing:-4.233565px;}
.ws160{word-spacing:-4.082366px;}
.ws1ba{word-spacing:-3.695954px;}
.ws1ae{word-spacing:-3.619155px;}
.ws1bd{word-spacing:-3.561555px;}
.ws19b{word-spacing:-3.513556px;}
.ws1b8{word-spacing:-3.508756px;}
.ws1b9{word-spacing:-3.503956px;}
.ws1c0{word-spacing:-3.499156px;}
.ws1c4{word-spacing:-3.460757px;}
.ws1ca{word-spacing:-3.431957px;}
.ws1a3{word-spacing:-3.422357px;}
.ws1af{word-spacing:-3.407957px;}
.ws188{word-spacing:-3.388758px;}
.ws18d{word-spacing:-3.383958px;}
.ws1cd{word-spacing:-3.374358px;}
.ws1c6{word-spacing:-3.369558px;}
.ws1a5{word-spacing:-3.364758px;}
.ws19f{word-spacing:-3.359958px;}
.ws6{word-spacing:-3.342600px;}
.ws189{word-spacing:-3.340758px;}
.ws1b4{word-spacing:-3.335958px;}
.ws1bc{word-spacing:-3.331158px;}
.ws1a0{word-spacing:-3.326358px;}
.ws1c8{word-spacing:-3.311959px;}
.wsa{word-spacing:-3.310200px;}
.ws13{word-spacing:-3.302359px;}
.ws18a{word-spacing:-3.297559px;}
.ws12{word-spacing:-3.292759px;}
.ws1c7{word-spacing:-3.287959px;}
.ws1a7{word-spacing:-3.283159px;}
.ws174{word-spacing:-3.278359px;}
.ws183{word-spacing:-3.273559px;}
.wsc{word-spacing:-3.267000px;}
.ws1aa{word-spacing:-3.263959px;}
.ws187{word-spacing:-3.259159px;}
.ws20{word-spacing:-3.254700px;}
.ws17e{word-spacing:-3.254359px;}
.ws9{word-spacing:-3.250800px;}
.ws17f{word-spacing:-3.249559px;}
.ws1b{word-spacing:-3.249000px;}
.wsd{word-spacing:-3.244759px;}
.ws19a{word-spacing:-3.239959px;}
.ws197{word-spacing:-3.225560px;}
.ws196{word-spacing:-3.220760px;}
.ws1ac{word-spacing:-3.215960px;}
.ws4{word-spacing:-3.213000px;}
.ws1b3{word-spacing:-3.211160px;}
.ws18e{word-spacing:-3.206360px;}
.ws1a2{word-spacing:-3.201560px;}
.ws1bf{word-spacing:-3.196760px;}
.ws1c{word-spacing:-3.192000px;}
.ws1b6{word-spacing:-3.191960px;}
.ws1f{word-spacing:-3.186300px;}
.ws19c{word-spacing:-3.182360px;}
.ws18{word-spacing:-3.180600px;}
.wsf{word-spacing:-3.177560px;}
.ws1a4{word-spacing:-3.172760px;}
.ws7{word-spacing:-3.169800px;}
.ws10f{word-spacing:-3.167960px;}
.ws14{word-spacing:-3.158361px;}
.ws180{word-spacing:-3.153561px;}
.ws1d{word-spacing:-3.152100px;}
.ws17c{word-spacing:-3.148761px;}
.ws1e{word-spacing:-3.146400px;}
.ws24{word-spacing:-3.129300px;}
.ws34{word-spacing:-3.124761px;}
.ws177{word-spacing:-3.115161px;}
.ws184{word-spacing:-3.105561px;}
.ws172{word-spacing:-3.100761px;}
.ws1c2{word-spacing:-3.095961px;}
.ws1b0{word-spacing:-3.091161px;}
.ws1be{word-spacing:-3.086361px;}
.ws1a{word-spacing:-3.083700px;}
.ws21{word-spacing:-3.078000px;}
.ws36{word-spacing:-3.076762px;}
.ws19d{word-spacing:-3.071962px;}
.ws1b1{word-spacing:-3.067162px;}
.ws199{word-spacing:-3.062362px;}
.ws192{word-spacing:-3.052762px;}
.ws3{word-spacing:-3.051000px;}
.ws1cc{word-spacing:-3.047962px;}
.ws17b{word-spacing:-3.038362px;}
.ws173{word-spacing:-3.033562px;}
.ws1ab{word-spacing:-3.023962px;}
.ws22{word-spacing:-3.021000px;}
.ws185{word-spacing:-3.019162px;}
.ws2{word-spacing:-3.013200px;}
.ws8{word-spacing:-3.007800px;}
.ws1ad{word-spacing:-3.004762px;}
.ws5{word-spacing:-3.002400px;}
.ws1b5{word-spacing:-2.999963px;}
.ws1c9{word-spacing:-2.990363px;}
.ws1a6{word-spacing:-2.985563px;}
.ws81{word-spacing:-2.980763px;}
.ws1b7{word-spacing:-2.971163px;}
.ws1a8{word-spacing:-2.966363px;}
.ws1bb{word-spacing:-2.961563px;}
.ws181{word-spacing:-2.956763px;}
.ws19e{word-spacing:-2.942363px;}
.ws193{word-spacing:-2.937563px;}
.ws16{word-spacing:-2.927963px;}
.ws1cb{word-spacing:-2.923163px;}
.ws17a{word-spacing:-2.913564px;}
.ws176{word-spacing:-2.908764px;}
.ws10{word-spacing:-2.894364px;}
.ws1c3{word-spacing:-2.879964px;}
.ws1c5{word-spacing:-2.875164px;}
.ws1c1{word-spacing:-2.870364px;}
.ws1b2{word-spacing:-2.855964px;}
.ws1a1{word-spacing:-2.831965px;}
.ws198{word-spacing:-2.827165px;}
.ws18c{word-spacing:-2.817565px;}
.ws178{word-spacing:-2.812765px;}
.ws23{word-spacing:-2.810100px;}
.ws17d{word-spacing:-2.807965px;}
.ws190{word-spacing:-2.779165px;}
.ws19{word-spacing:-2.775900px;}
.ws182{word-spacing:-2.769565px;}
.ws186{word-spacing:-2.764765px;}
.ws1a9{word-spacing:-2.759965px;}
.ws191{word-spacing:-2.750366px;}
.ws179{word-spacing:-2.745566px;}
.ws1{word-spacing:-2.743200px;}
.ws195{word-spacing:-2.721566px;}
.ws17{word-spacing:-2.707166px;}
.ws15{word-spacing:-2.687966px;}
.ws11{word-spacing:-2.683166px;}
.ws0{word-spacing:-2.649567px;}
.ws18b{word-spacing:-2.635167px;}
.wse{word-spacing:-2.630367px;}
.ws56{word-spacing:-1.060787px;}
.ws4b{word-spacing:-1.055987px;}
.ws92{word-spacing:-1.002000px;}
.ws3d{word-spacing:-0.950388px;}
.ws66{word-spacing:-0.942000px;}
.ws4e{word-spacing:-0.916789px;}
.ws117{word-spacing:-0.911989px;}
.ws48{word-spacing:-0.892789px;}
.ws44{word-spacing:-0.878389px;}
.ws5a{word-spacing:-0.876000px;}
.ws11f{word-spacing:-0.870000px;}
.ws87{word-spacing:-0.859189px;}
.ws3f{word-spacing:-0.854389px;}
.wsbd{word-spacing:-0.835190px;}
.ws50{word-spacing:-0.815990px;}
.ws124{word-spacing:-0.806390px;}
.ws90{word-spacing:-0.798000px;}
.ws84{word-spacing:-0.796790px;}
.ws42{word-spacing:-0.791990px;}
.wsb9{word-spacing:-0.772790px;}
.ws12c{word-spacing:-0.768000px;}
.ws54{word-spacing:-0.767990px;}
.ws10e{word-spacing:-0.758391px;}
.wsc4{word-spacing:-0.748791px;}
.ws46{word-spacing:-0.743991px;}
.ws52{word-spacing:-0.739191px;}
.wsd2{word-spacing:-0.729591px;}
.ws67{word-spacing:-0.726000px;}
.ws4a{word-spacing:-0.724791px;}
.wsb8{word-spacing:-0.719991px;}
.ws39{word-spacing:-0.715191px;}
.ws12d{word-spacing:-0.710391px;}
.ws11e{word-spacing:-0.708000px;}
.ws85{word-spacing:-0.705591px;}
.ws155{word-spacing:-0.702000px;}
.ws83{word-spacing:-0.695991px;}
.ws128{word-spacing:-0.691191px;}
.ws88{word-spacing:-0.681591px;}
.ws14e{word-spacing:-0.678000px;}
.ws4c{word-spacing:-0.676792px;}
.ws4f{word-spacing:-0.671992px;}
.wsac{word-spacing:-0.667192px;}
.ws86{word-spacing:-0.662392px;}
.ws47{word-spacing:-0.652792px;}
.ws55{word-spacing:-0.647992px;}
.ws116{word-spacing:-0.643192px;}
.ws43{word-spacing:-0.638392px;}
.ws49{word-spacing:-0.633592px;}
.ws38{word-spacing:-0.623992px;}
.ws89{word-spacing:-0.619192px;}
.wsdc{word-spacing:-0.618000px;}
.ws51{word-spacing:-0.609592px;}
.ws3e{word-spacing:-0.604792px;}
.ws149{word-spacing:-0.594000px;}
.wsc5{word-spacing:-0.585593px;}
.ws58{word-spacing:-0.575993px;}
.ws40{word-spacing:-0.571193px;}
.ws153{word-spacing:-0.570000px;}
.wsd6{word-spacing:-0.566393px;}
.wsae{word-spacing:-0.556793px;}
.ws12b{word-spacing:-0.552000px;}
.wsbc{word-spacing:-0.551993px;}
.ws53{word-spacing:-0.542393px;}
.ws7d{word-spacing:-0.528000px;}
.ws8a{word-spacing:-0.527993px;}
.ws119{word-spacing:-0.516000px;}
.ws7a{word-spacing:-0.510000px;}
.wsd5{word-spacing:-0.508794px;}
.ws14d{word-spacing:-0.504000px;}
.ws45{word-spacing:-0.499194px;}
.ws112{word-spacing:-0.498000px;}
.wsa5{word-spacing:-0.494394px;}
.ws3c{word-spacing:-0.489594px;}
.ws157{word-spacing:-0.486000px;}
.wsf8{word-spacing:-0.484794px;}
.ws91{word-spacing:-0.480000px;}
.wsaa{word-spacing:-0.479994px;}
.ws41{word-spacing:-0.475194px;}
.ws32{word-spacing:-0.474000px;}
.ws4d{word-spacing:-0.470394px;}
.ws76{word-spacing:-0.468000px;}
.ws57{word-spacing:-0.465594px;}
.ws121{word-spacing:-0.462000px;}
.ws82{word-spacing:-0.460794px;}
.ws80{word-spacing:-0.456000px;}
.wsba{word-spacing:-0.451194px;}
.ws9e{word-spacing:-0.446394px;}
.ws69{word-spacing:-0.444000px;}
.wsd7{word-spacing:-0.441594px;}
.ws2d{word-spacing:-0.438000px;}
.wsa6{word-spacing:-0.436795px;}
.ws60{word-spacing:-0.432000px;}
.ws6b{word-spacing:-0.426000px;}
.wsd8{word-spacing:-0.417595px;}
.wsb1{word-spacing:-0.414000px;}
.ws96{word-spacing:-0.408000px;}
.ws106{word-spacing:-0.402000px;}
.ws10b{word-spacing:-0.398395px;}
.ws115{word-spacing:-0.396000px;}
.ws61{word-spacing:-0.390000px;}
.wsb2{word-spacing:-0.384000px;}
.ws9a{word-spacing:-0.383995px;}
.ws2a{word-spacing:-0.378000px;}
.wsb6{word-spacing:-0.372000px;}
.ws123{word-spacing:-0.369595px;}
.ws26{word-spacing:-0.366000px;}
.ws10d{word-spacing:-0.364795px;}
.wsda{word-spacing:-0.360000px;}
.ws8c{word-spacing:-0.354000px;}
.ws68{word-spacing:-0.348000px;}
.ws77{word-spacing:-0.342000px;}
.wsa9{word-spacing:-0.340796px;}
.ws6e{word-spacing:-0.336000px;}
.wsab{word-spacing:-0.335996px;}
.wsa4{word-spacing:-0.331196px;}
.ws72{word-spacing:-0.330000px;}
.ws95{word-spacing:-0.324000px;}
.ws65{word-spacing:-0.318000px;}
.ws7e{word-spacing:-0.312000px;}
.wsb0{word-spacing:-0.307196px;}
.ws5e{word-spacing:-0.306000px;}
.ws8e{word-spacing:-0.300000px;}
.ws5f{word-spacing:-0.294000px;}
.ws3b{word-spacing:-0.292796px;}
.ws29{word-spacing:-0.288000px;}
.ws10c{word-spacing:-0.287996px;}
.ws5d{word-spacing:-0.282000px;}
.ws93{word-spacing:-0.276000px;}
.ws9f{word-spacing:-0.273597px;}
.ws5b{word-spacing:-0.270000px;}
.ws120{word-spacing:-0.264000px;}
.ws122{word-spacing:-0.263997px;}
.ws2f{word-spacing:-0.258000px;}
.wsaf{word-spacing:-0.254397px;}
.wsb3{word-spacing:-0.252000px;}
.wsa7{word-spacing:-0.249597px;}
.ws30{word-spacing:-0.246000px;}
.ws125{word-spacing:-0.244797px;}
.ws33{word-spacing:-0.240000px;}
.ws2b{word-spacing:-0.234000px;}
.ws28{word-spacing:-0.228000px;}
.ws98{word-spacing:-0.222000px;}
.ws25{word-spacing:-0.216000px;}
.ws70{word-spacing:-0.210000px;}
.ws99{word-spacing:-0.206397px;}
.ws63{word-spacing:-0.204000px;}
.ws9d{word-spacing:-0.201597px;}
.ws114{word-spacing:-0.198000px;}
.ws6c{word-spacing:-0.192000px;}
.ws5c{word-spacing:-0.186000px;}
.wsc2{word-spacing:-0.182398px;}
.ws11c{word-spacing:-0.180000px;}
.ws6f{word-spacing:-0.174000px;}
.wsb7{word-spacing:-0.172798px;}
.ws110{word-spacing:-0.168000px;}
.wsc3{word-spacing:-0.167998px;}
.wsbb{word-spacing:-0.167088px;}
.wsf6{word-spacing:-0.163198px;}
.ws7f{word-spacing:-0.162000px;}
.ws9b{word-spacing:-0.158398px;}
.ws11a{word-spacing:-0.156000px;}
.wsf9{word-spacing:-0.153598px;}
.ws15a{word-spacing:-0.150000px;}
.ws12e{word-spacing:-0.148798px;}
.ws108{word-spacing:-0.144000px;}
.wsf7{word-spacing:-0.139198px;}
.ws135{word-spacing:-0.138000px;}
.ws15f{word-spacing:-0.132000px;}
.ws133{word-spacing:-0.126000px;}
.ws134{word-spacing:-0.120000px;}
.ws129{word-spacing:-0.115199px;}
.ws62{word-spacing:-0.114000px;}
.ws79{word-spacing:-0.108000px;}
.ws8d{word-spacing:-0.102000px;}
.wsdb{word-spacing:-0.096000px;}
.ws127{word-spacing:-0.095999px;}
.ws75{word-spacing:-0.090000px;}
.ws6d{word-spacing:-0.084000px;}
.ws27{word-spacing:-0.078000px;}
.ws126{word-spacing:-0.076799px;}
.ws94{word-spacing:-0.072000px;}
.ws9c{word-spacing:-0.067199px;}
.ws107{word-spacing:-0.066000px;}
.wsa3{word-spacing:-0.062399px;}
.ws11b{word-spacing:-0.060000px;}
.wsa2{word-spacing:-0.057599px;}
.ws6a{word-spacing:-0.054000px;}
.ws14b{word-spacing:-0.048000px;}
.wsbe{word-spacing:-0.042000px;}
.ws130{word-spacing:-0.036000px;}
.wsdf{word-spacing:-0.030000px;}
.ws150{word-spacing:-0.024000px;}
.wsce{word-spacing:-0.018000px;}
.ws31{word-spacing:-0.012000px;}
.wsd4{word-spacing:-0.006000px;}
.ws59{word-spacing:0.000000px;}
.wse3{word-spacing:0.006000px;}
.ws14f{word-spacing:0.012000px;}
.ws71{word-spacing:0.018000px;}
.ws78{word-spacing:0.024000px;}
.ws8f{word-spacing:0.030000px;}
.wscf{word-spacing:0.033600px;}
.ws14c{word-spacing:0.036000px;}
.ws113{word-spacing:0.048000px;}
.wsde{word-spacing:0.054000px;}
.wsbf{word-spacing:0.060000px;}
.wse2{word-spacing:0.066000px;}
.wse4{word-spacing:0.078000px;}
.ws158{word-spacing:0.084000px;}
.wsb4{word-spacing:0.090000px;}
.ws73{word-spacing:0.096000px;}
.wsd3{word-spacing:0.100799px;}
.wscd{word-spacing:0.102000px;}
.ws2e{word-spacing:0.108000px;}
.wsc6{word-spacing:0.114000px;}
.ws15d{word-spacing:0.120000px;}
.ws139{word-spacing:0.122399px;}
.ws152{word-spacing:0.126000px;}
.ws111{word-spacing:0.136799px;}
.wse7{word-spacing:0.138000px;}
.ws15c{word-spacing:0.144000px;}
.ws146{word-spacing:0.156000px;}
.wsc0{word-spacing:0.162000px;}
.wsc7{word-spacing:0.168000px;}
.ws11d{word-spacing:0.174000px;}
.ws105{word-spacing:0.180000px;}
.wsdd{word-spacing:0.186000px;}
.wsc8{word-spacing:0.187198px;}
.wsf5{word-spacing:0.196798px;}
.ws148{word-spacing:0.204000px;}
.ws74{word-spacing:0.210000px;}
.ws147{word-spacing:0.222000px;}
.ws13f{word-spacing:0.228000px;}
.ws12a{word-spacing:0.234000px;}
.wsf4{word-spacing:0.235197px;}
.ws97{word-spacing:0.240000px;}
.ws8b{word-spacing:0.244798px;}
.ws7b{word-spacing:0.252000px;}
.wsa0{word-spacing:0.254397px;}
.ws118{word-spacing:0.259198px;}
.ws137{word-spacing:0.266398px;}
.ws15e{word-spacing:0.273598px;}
.wsd1{word-spacing:0.283196px;}
.ws156{word-spacing:0.287998px;}
.ws15b{word-spacing:0.302397px;}
.wse6{word-spacing:0.306000px;}
.ws13b{word-spacing:0.312000px;}
.ws109{word-spacing:0.316796px;}
.wse8{word-spacing:0.323997px;}
.wsf2{word-spacing:0.326396px;}
.wse0{word-spacing:0.330000px;}
.wsd0{word-spacing:0.335996px;}
.ws140{word-spacing:0.336000px;}
.ws170{word-spacing:0.342000px;}
.ws161{word-spacing:0.348000px;}
.ws13d{word-spacing:0.354000px;}
.ws138{word-spacing:0.359997px;}
.wse5{word-spacing:0.366000px;}
.ws13a{word-spacing:0.367197px;}
.wse1{word-spacing:0.372000px;}
.wsf1{word-spacing:0.374395px;}
.ws145{word-spacing:0.378000px;}
.ws132{word-spacing:0.388797px;}
.ws151{word-spacing:0.402000px;}
.wsb5{word-spacing:0.414000px;}
.ws143{word-spacing:0.432000px;}
.wsc9{word-spacing:0.450000px;}
.wsc1{word-spacing:0.456000px;}
.ws144{word-spacing:0.474000px;}
.ws166{word-spacing:0.480000px;}
.ws162{word-spacing:0.486000px;}
.ws141{word-spacing:0.510000px;}
.ws13c{word-spacing:0.546000px;}
.ws142{word-spacing:0.642000px;}
.ws167{word-spacing:0.666000px;}
.ws16b{word-spacing:0.708000px;}
.ws13e{word-spacing:0.726000px;}
.ws168{word-spacing:0.762000px;}
.wsec{word-spacing:0.798000px;}
.ws16c{word-spacing:0.846000px;}
.wsee{word-spacing:0.864000px;}
.ws16a{word-spacing:0.900000px;}
.wsed{word-spacing:0.912000px;}
.wsef{word-spacing:0.924000px;}
.ws169{word-spacing:0.978000px;}
.wse9{word-spacing:1.008000px;}
.ws16e{word-spacing:1.014000px;}
.ws16f{word-spacing:1.020000px;}
.ws16d{word-spacing:1.026000px;}
.wseb{word-spacing:1.062000px;}
.ws165{word-spacing:1.158000px;}
.wsea{word-spacing:1.206000px;}
.wsf0{word-spacing:1.212000px;}
.wsfe{word-spacing:28.310046px;}
.ws35{word-spacing:34.588368px;}
.ws18f{word-spacing:46.842614px;}
.ws194{word-spacing:46.847414px;}
.ws171{word-spacing:46.909814px;}
.wsf3{word-spacing:50.538568px;}
.ws103{word-spacing:53.600930px;}
.wsff{word-spacing:55.501706px;}
.ws102{word-spacing:63.124011px;}
.ws101{word-spacing:67.141561px;}
.ws10a{word-spacing:67.146361px;}
.wsfc{word-spacing:78.027825px;}
.wsfa{word-spacing:79.386208px;}
.wsfb{word-spacing:80.187798px;}
.ws100{word-spacing:103.995500px;}
.wsfd{word-spacing:207.395808px;}
.wsad{word-spacing:861.061237px;}
.wsa1{word-spacing:928.073199px;}
._5d{margin-left:-26.310000px;}
._5f{margin-left:-24.960000px;}
._5e{margin-left:-23.863200px;}
._16{margin-left:-21.374133px;}
._60{margin-left:-19.934151px;}
._a{margin-left:-18.345371px;}
._9{margin-left:-17.106986px;}
._0{margin-left:-1.113586px;}
._6{width:1.100100px;}
._2{width:3.921600px;}
._3{width:9.172685px;}
._4{width:11.126261px;}
._b{width:12.372000px;}
._5{width:13.862400px;}
._7{width:15.019200px;}
._15{width:16.386995px;}
._d{width:21.206135px;}
._5a{width:23.865302px;}
._1{width:25.239600px;}
._5c{width:26.385270px;}
._1a{width:38.644317px;}
._1b{width:47.082611px;}
._c{width:49.261500px;}
._1c{width:53.082536px;}
._19{width:54.239322px;}
._40{width:57.978475px;}
._43{width:60.541643px;}
._48{width:61.693629px;}
._30{width:62.999212px;}
._55{width:67.299959px;}
._41{width:69.800727px;}
._1f{width:78.138223px;}
._44{width:79.165410px;}
._20{width:80.182998px;}
._1e{width:81.910976px;}
._32{width:83.586155px;}
._57{width:85.501331px;}
._2c{width:86.523718px;}
._2b{width:88.218097px;}
._31{width:89.254884px;}
._45{width:90.277272px;}
._50{width:91.491656px;}
._37{width:92.653242px;}
._25{width:93.896426px;}
._24{width:94.918814px;}
._3b{width:96.401995px;}
._3a{width:97.765178px;}
._1d{width:99.339558px;}
._4d{width:101.053137px;}
._42{width:102.065924px;}
._2a{width:103.093111px;}
._51{width:104.441894px;}
._2e{width:105.469082px;}
._49{width:106.702666px;}
._4b{width:107.725053px;}
._21{width:109.304234px;}
._36{width:110.557018px;}
._4e{width:111.857802px;}
._28{width:113.288184px;}
._56{width:114.992163px;}
._2d{width:116.124948px;}
._4a{width:118.040124px;}
._26{width:119.412907px;}
._23{width:120.771290px;}
._52{width:123.070462px;}
._2f{width:130.207972px;}
._46{width:134.508719px;}
._4c{width:135.857502px;}
._54{width:137.014287px;}
._58{width:138.214272px;}
._53{width:139.534256px;}
._4f{width:140.839839px;}
._27{width:144.242997px;}
._22{width:150.367720px;}
._34{width:198.722316px;}
._39{width:290.161173px;}
._3c{width:323.511156px;}
._35{width:340.565343px;}
._3f{width:371.716953px;}
._3e{width:418.837964px;}
._18{width:461.831027px;}
._17{width:509.110436px;}
._47{width:537.934076px;}
._33{width:557.762628px;}
._3d{width:593.608580px;}
._38{width:607.509206px;}
._13{width:674.367570px;}
._59{width:755.164960px;}
._12{width:845.687029px;}
._14{width:905.499081px;}
._f{width:1005.395432px;}
._e{width:1010.867364px;}
._10{width:1022.324821px;}
._11{width:1066.148273px;}
._29{width:1343.124011px;}
._5b{width:1460.376945px;}
._8{width:1486.047024px;}
.fc3{color:transparent;}
.fc2{color:rgb(66,93,177);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.995000px;}
.fsc{font-size:33.598800px;}
.fs3{font-size:35.995200px;}
.fs7{font-size:37.995000px;}
.fsa{font-size:39.995400px;}
.fs4{font-size:44.999400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs8{font-size:71.999400px;}
.fs5{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:54.000000px;}
.y198{bottom:102.898903px;}
.yda{bottom:112.592888px;}
.y205{bottom:119.651446px;}
.y289{bottom:122.031450px;}
.y212{bottom:122.796750px;}
.y28a{bottom:124.497600px;}
.y31{bottom:124.498500px;}
.y234{bottom:124.498650px;}
.y271{bottom:124.500000px;}
.y54{bottom:124.500064px;}
.y306{bottom:124.500835px;}
.y1ca{bottom:124.501500px;}
.y253{bottom:124.503000px;}
.y88{bottom:125.097000px;}
.y213{bottom:125.347950px;}
.y211{bottom:125.350500px;}
.y197{bottom:126.115013px;}
.y344{bottom:126.373509px;}
.yed{bottom:126.625500px;}
.y176{bottom:128.837662px;}
.y116{bottom:130.962000px;}
.y378{bottom:131.561044px;}
.y2cf{bottom:131.982000px;}
.yfd{bottom:135.214500px;}
.y1cf{bottom:136.318378px;}
.y305{bottom:138.786656px;}
.yd9{bottom:139.634550px;}
.y196{bottom:140.402035px;}
.y343{bottom:140.575331px;}
.y53{bottom:140.997458px;}
.y288{bottom:141.505500px;}
.y204{bottom:142.866356px;}
.y130{bottom:143.971500px;}
.y233{bottom:143.971650px;}
.y30{bottom:143.973000px;}
.y1c9{bottom:143.974500px;}
.y1ed{bottom:143.976000px;}
.y87{bottom:144.570000px;}
.y210{bottom:144.823500px;}
.yd8{bottom:144.907050px;}
.y377{bottom:145.846866px;}
.yec{bottom:146.100000px;}
.y1cd{bottom:148.563750px;}
.y1ce{bottom:150.519000px;}
.y115{bottom:150.520500px;}
.y1cc{bottom:150.520679px;}
.y175{bottom:150.607790px;}
.y2ce{bottom:151.540500px;}
.y303{bottom:152.988479px;}
.y304{bottom:153.244075px;}
.y195{bottom:154.687856px;}
.yfc{bottom:154.689000px;}
.y203{bottom:157.153378px;}
.y52{bottom:157.494852px;}
.yd7{bottom:157.578000px;}
.y342{bottom:160.048688px;}
.y12e{bottom:160.980000px;}
.yd6{bottom:162.936000px;}
.y12f{bottom:163.530000px;}
.y2f{bottom:163.531500px;}
.y270{bottom:163.533000px;}
.y1c8{bottom:163.534500px;}
.y86{bottom:164.130000px;}
.y20f{bottom:164.298000px;}
.y1cb{bottom:164.806500px;}
.y174{bottom:164.809613px;}
.yeb{bottom:165.574500px;}
.y194{bottom:168.889679px;}
.y232{bottom:169.483500px;}
.y114{bottom:169.993500px;}
.y202{bottom:171.354000px;}
.y302{bottom:172.463035px;}
.y51{bottom:173.993445px;}
.yfb{bottom:174.247500px;}
.y341{bottom:174.335709px;}
.yd5{bottom:175.606500px;}
.y2cd{bottom:178.498500px;}
.y376{bottom:179.607244px;}
.yd4{bottom:180.963000px;}
.y2ac{bottom:183.004500px;}
.y2e{bottom:183.006000px;}
.y1c7{bottom:183.007500px;}
.y1ec{bottom:183.009000px;}
.y193{bottom:183.175500px;}
.y173{bottom:183.602578px;}
.y85{bottom:183.603000px;}
.y20e{bottom:183.856500px;}
.yea{bottom:185.133000px;}
.y300{bottom:186.748857px;}
.y301{bottom:187.004453px;}
.y50{bottom:190.490839px;}
.yfa{bottom:193.720500px;}
.y340{bottom:193.809066px;}
.y113{bottom:195.505500px;}
.y172{bottom:197.804400px;}
.y287{bottom:200.013000px;}
.y10c{bottom:202.479000px;}
.y2d{bottom:202.480500px;}
.y1c6{bottom:202.482000px;}
.y1eb{bottom:202.483500px;}
.y84{bottom:203.077500px;}
.y20d{bottom:203.331000px;}
.yd3{bottom:203.754638px;}
.ye9{bottom:204.606000px;}
.y2cc{bottom:205.540500px;}
.y2ff{bottom:206.223413px;}
.y4f{bottom:206.988233px;}
.y33f{bottom:208.096087px;}
.y231{bottom:208.774500px;}
.yf9{bottom:213.195000px;}
.y171{bottom:216.598565px;}
.y2fe{bottom:220.509235px;}
.y10b{bottom:222.037500px;}
.y2c{bottom:222.039000px;}
.y1c5{bottom:222.040500px;}
.y1ea{bottom:222.042000px;}
.y33e{bottom:222.296710px;}
.yd2{bottom:222.463604px;}
.y83{bottom:222.636000px;}
.y20c{bottom:222.805500px;}
.y4e{bottom:223.485627px;}
.ye8{bottom:224.080500px;}
.y2cb{bottom:225.013500px;}
.y375{bottom:227.569444px;}
.y230{bottom:228.334500px;}
.y11e{bottom:229.521760px;}
.y170{bottom:230.799188px;}
.yf8{bottom:232.753500px;}
.y2fc{bottom:234.711057px;}
.y2fd{bottom:234.966654px;}
.y4d{bottom:239.983020px;}
.yd1{bottom:241.256569px;}
.y2b{bottom:241.512000px;}
.y26f{bottom:241.513500px;}
.y1c4{bottom:241.515000px;}
.y252{bottom:241.516500px;}
.y33d{bottom:241.856465px;}
.y82{bottom:242.110500px;}
.y20b{bottom:242.364000px;}
.ye7{bottom:243.555000px;}
.y22f{bottom:247.807500px;}
.y16f{bottom:249.593353px;}
.y2ca{bottom:250.525500px;}
.yf7{bottom:252.228000px;}
.y11d{bottom:252.737869px;}
.y2fb{bottom:254.269613px;}
.y33c{bottom:256.058288px;}
.yd0{bottom:259.965535px;}
.y2ab{bottom:260.985000px;}
.y2a{bottom:260.986500px;}
.y1c3{bottom:260.988000px;}
.y1e9{bottom:260.989500px;}
.y374{bottom:261.329822px;}
.y81{bottom:261.583500px;}
.y20a{bottom:261.837000px;}
.ye6{bottom:263.113500px;}
.y16e{bottom:263.880374px;}
.y396{bottom:265.071375px;}
.y4c{bottom:265.494701px;}
.y11c{bottom:267.023691px;}
.y22e{bottom:267.282000px;}
.y2fa{bottom:268.471435px;}
.y33b{bottom:270.344109px;}
.yf6{bottom:271.701000px;}
.y373{bottom:275.616843px;}
.ycd{bottom:276.718500px;}
.y16d{bottom:278.080997px;}
.yce{bottom:278.758500px;}
.ycc{bottom:278.760234px;}
.y395{bottom:279.358397px;}
.y10a{bottom:280.459500px;}
.y29{bottom:280.461000px;}
.y1c2{bottom:280.462500px;}
.y1e8{bottom:280.464000px;}
.y80{bottom:281.143500px;}
.y11b{bottom:281.225513px;}
.y209{bottom:281.311500px;}
.y4b{bottom:281.992095px;}
.ye5{bottom:282.586500px;}
.y2f9{bottom:282.758456px;}
.ycf{bottom:284.031000px;}
.y2aa{bottom:286.497000px;}
.y22d{bottom:286.840500px;}
.y33a{bottom:289.818666px;}
.y2c9{bottom:293.047500px;}
.y393{bottom:293.560219px;}
.y394{bottom:293.814616px;}
.y372{bottom:295.090200px;}
.yc9{bottom:295.426500px;}
.y11a{bottom:295.512535px;}
.y16c{bottom:296.875162px;}
.y2f7{bottom:296.959079px;}
.y2f8{bottom:297.214676px;}
.yca{bottom:297.468000px;}
.yc8{bottom:297.469303px;}
.y4a{bottom:298.489489px;}
.y109{bottom:300.018000px;}
.y28{bottom:300.019500px;}
.y1c1{bottom:300.021000px;}
.y1e7{bottom:300.022500px;}
.y7f{bottom:300.616500px;}
.y208{bottom:300.786000px;}
.ye4{bottom:302.061000px;}
.ycb{bottom:302.824500px;}
.y102{bottom:303.761925px;}
.y339{bottom:304.104487px;}
.y243{bottom:305.971500px;}
.y22c{bottom:306.315000px;}
.y371{bottom:309.292022px;}
.y119{bottom:309.713157px;}
.y16b{bottom:311.076984px;}
.y2c8{bottom:312.522000px;}
.y392{bottom:313.118775px;}
.yc7{bottom:316.177069px;}
.y2f6{bottom:316.518834px;}
.y12d{bottom:317.026500px;}
.y338{bottom:318.306310px;}
.y27{bottom:319.492500px;}
.y12c{bottom:319.494000px;}
.y1c0{bottom:319.495500px;}
.y1e6{bottom:319.497000px;}
.y7e{bottom:320.091000px;}
.y207{bottom:320.344500px;}
.ye3{bottom:321.619500px;}
.y118{bottom:324.000179px;}
.y49{bottom:324.001170px;}
.y108{bottom:325.530000px;}
.y22b{bottom:325.788000px;}
.y2a9{bottom:326.212500px;}
.y101{bottom:326.978035px;}
.y391{bottom:327.320597px;}
.y370{bottom:328.850578px;}
.y16a{bottom:329.869949px;}
.y2f5{bottom:330.719457px;}
.y2c7{bottom:331.996500px;}
.yc6{bottom:334.971234px;}
.y337{bottom:337.864865px;}
.y117{bottom:338.286000px;}
.y12b{bottom:338.967000px;}
.y26e{bottom:338.968500px;}
.y1bf{bottom:338.970000px;}
.y7d{bottom:339.565500px;}
.y206{bottom:339.817500px;}
.y48{bottom:340.499764px;}
.ye2{bottom:341.094000px;}
.y100{bottom:341.263856px;}
.y36f{bottom:343.052400px;}
.y169{bottom:344.071772px;}
.y26{bottom:345.004500px;}
.y2f4{bottom:345.006478px;}
.y22a{bottom:345.262500px;}
.y2a8{bottom:345.685500px;}
.y390{bottom:346.793954px;}
.y242{bottom:349.087500px;}
.y2c6{bottom:351.555000px;}
.y336{bottom:352.066688px;}
.yc5{bottom:353.679000px;}
.yc3{bottom:353.679535px;}
.yff{bottom:355.465679px;}
.y47{bottom:356.997158px;}
.y36e{bottom:357.339422px;}
.y12a{bottom:358.525500px;}
.y26d{bottom:358.527000px;}
.y1be{bottom:358.528500px;}
.y251{bottom:358.530000px;}
.yc4{bottom:359.035500px;}
.y7c{bottom:359.124000px;}
.y2f3{bottom:359.293500px;}
.ye1{bottom:360.568500px;}
.y38f{bottom:361.080975px;}
.y168{bottom:362.864737px;}
.y229{bottom:364.821000px;}
.y2a7{bottom:365.160000px;}
.y241{bottom:368.562000px;}
.yfe{bottom:369.751500px;}
.yc0{bottom:370.431000px;}
.y2c5{bottom:371.028000px;}
.y335{bottom:371.540044px;}
.y21a{bottom:371.877590px;}
.y107{bottom:371.962500px;}
.yc1{bottom:372.472500px;}
.ybf{bottom:372.472734px;}
.y46{bottom:373.494551px;}
.y38d{bottom:375.366796px;}
.y38e{bottom:375.622393px;}
.y36d{bottom:376.812778px;}
.y167{bottom:377.066559px;}
.yc2{bottom:377.830500px;}
.y1bd{bottom:378.001500px;}
.y1e5{bottom:378.003000px;}
.y7b{bottom:378.597000px;}
.y2f2{bottom:378.766856px;}
.ye0{bottom:380.127000px;}
.y129{bottom:384.037500px;}
.y228{bottom:384.295500px;}
.y2a6{bottom:384.718500px;}
.y334{bottom:385.827066px;}
.y240{bottom:388.035000px;}
.y45{bottom:389.991945px;}
.y2c4{bottom:390.502500px;}
.y36c{bottom:391.099800px;}
.ybe{bottom:391.180500px;}
.ybc{bottom:391.182535px;}
.y106{bottom:391.437000px;}
.y2f1{bottom:392.968679px;}
.y218{bottom:393.136500px;}
.y38c{bottom:394.841353px;}
.y219{bottom:395.092500px;}
.y217{bottom:395.092856px;}
.y166{bottom:395.860724px;}
.ybd{bottom:396.538500px;}
.y26c{bottom:397.474500px;}
.y1bc{bottom:397.476000px;}
.y1e4{bottom:397.477500px;}
.y7a{bottom:398.071500px;}
.ydf{bottom:399.600000px;}
.y333{bottom:400.114087px;}
.y227{bottom:403.768500px;}
.y2a5{bottom:404.193000px;}
.y36a{bottom:405.301622px;}
.y36b{bottom:405.556019px;}
.y44{bottom:406.489339px;}
.y2ef{bottom:407.254500px;}
.y23f{bottom:407.509500px;}
.y2f0{bottom:407.510097px;}
.y38b{bottom:409.043176px;}
.y216{bottom:409.379878px;}
.ybb{bottom:409.975500px;}
.yb9{bottom:409.975734px;}
.y2c3{bottom:410.061000px;}
.y165{bottom:410.061347px;}
.y105{bottom:410.911500px;}
.yba{bottom:415.332000px;}
.y1bb{bottom:417.034500px;}
.y1e3{bottom:417.036000px;}
.y79{bottom:417.630000px;}
.yde{bottom:419.074500px;}
.y332{bottom:419.587444px;}
.y215{bottom:421.624500px;}
.y226{bottom:423.328500px;}
.y38a{bottom:423.328997px;}
.y214{bottom:423.580500px;}
.y2a4{bottom:423.666000px;}
.y369{bottom:424.860178px;}
.y2ee{bottom:426.729057px;}
.y23e{bottom:427.068000px;}
.yb8{bottom:428.683500px;}
.yb6{bottom:428.684035px;}
.y164{bottom:428.855512px;}
.y2c2{bottom:429.535500px;}
.y104{bottom:430.470000px;}
.y43{bottom:432.001020px;}
.y331{bottom:433.874465px;}
.yb7{bottom:434.041500px;}
.y26b{bottom:436.507500px;}
.y1ba{bottom:436.509000px;}
.y250{bottom:436.510500px;}
.y78{bottom:437.104500px;}
.ydd{bottom:438.549000px;}
.y368{bottom:439.062000px;}
.y2ed{bottom:441.016078px;}
.y225{bottom:442.801500px;}
.y389{bottom:442.803554px;}
.y163{bottom:443.057334px;}
.y25{bottom:443.907000px;}
.y23d{bottom:446.542500px;}
.yb5{bottom:447.477000px;}
.yb3{bottom:447.478706px;}
.y32f{bottom:448.076288px;}
.y330{bottom:448.330684px;}
.y2c1{bottom:449.008500px;}
.y2a3{bottom:449.178000px;}
.y103{bottom:449.943000px;}
.yb4{bottom:452.835000px;}
.y366{bottom:453.347822px;}
.y367{bottom:453.603419px;}
.y2eb{bottom:455.216701px;}
.y2ec{bottom:455.472298px;}
.y1b9{bottom:455.982000px;}
.y1e2{bottom:455.983500px;}
.y77{bottom:456.577500px;}
.y128{bottom:456.579000px;}
.y388{bottom:457.089375px;}
.y42{bottom:457.512701px;}
.ydc{bottom:458.107500px;}
.y162{bottom:461.850300px;}
.y224{bottom:462.276000px;}
.y24{bottom:464.911500px;}
.y23c{bottom:466.015500px;}
.y286{bottom:466.017000px;}
.yb2{bottom:466.187672px;}
.y32e{bottom:467.549644px;}
.y386{bottom:471.291197px;}
.y387{bottom:471.546794px;}
.y365{bottom:472.822378px;}
.y2c0{bottom:474.519000px;}
.y2ea{bottom:474.776456px;}
.y26a{bottom:475.540500px;}
.y1b8{bottom:475.542000px;}
.y161{bottom:476.052122px;}
.y76{bottom:476.137500px;}
.ydb{bottom:477.580500px;}
.y223{bottom:481.834500px;}
.y32d{bottom:481.836666px;}
.y112{bottom:482.004102px;}
.y41{bottom:483.024382px;}
.yb1{bottom:484.980638px;}
.y285{bottom:485.575500px;}
.y23{bottom:485.916000px;}
.y364{bottom:487.108200px;}
.y2a2{bottom:488.892000px;}
.y2e9{bottom:488.977079px;}
.y385{bottom:490.849753px;}
.y23b{bottom:491.527500px;}
.y160{bottom:494.846287px;}
.y1b7{bottom:495.015000px;}
.y1e1{bottom:495.016500px;}
.y75{bottom:495.610500px;}
.y32c{bottom:496.122487px;}
.y222{bottom:501.309000px;}
.y283{bottom:502.582500px;}
.y2e7{bottom:503.264100px;}
.y2e8{bottom:503.519697px;}
.yb0{bottom:503.689604px;}
.y284{bottom:505.048500px;}
.y282{bottom:505.050000px;}
.y384{bottom:505.051575px;}
.y111{bottom:505.220212px;}
.y363{bottom:506.582756px;}
.y22{bottom:506.920500px;}
.y2a1{bottom:508.366500px;}
.y40{bottom:508.536063px;}
.y15f{bottom:509.046910px;}
.yf5{bottom:509.641069px;}
.y269{bottom:514.488000px;}
.y1b6{bottom:514.489500px;}
.y1e0{bottom:514.491000px;}
.y74{bottom:515.085000px;}
.y32b{bottom:515.597044px;}
.y383{bottom:519.338597px;}
.y110{bottom:519.506034px;}
.y221{bottom:520.782000px;}
.y362{bottom:520.868578px;}
.y280{bottom:522.057000px;}
.yaf{bottom:522.482569px;}
.y2e6{bottom:522.737457px;}
.y281{bottom:524.523000px;}
.y27f{bottom:524.524500px;}
.y3f{bottom:525.033457px;}
.y2bf{bottom:526.054500px;}
.y15e{bottom:527.841075px;}
.y21{bottom:527.925000px;}
.y32a{bottom:529.797666px;}
.yf4{bottom:532.857179px;}
.y10f{bottom:533.707856px;}
.y268{bottom:533.962500px;}
.y1b5{bottom:533.964000px;}
.y73{bottom:534.643500px;}
.y23a{bottom:534.646500px;}
.y361{bottom:535.070400px;}
.y2e5{bottom:537.024478px;}
.y382{bottom:538.811953px;}
.y220{bottom:540.342000px;}
.yae{bottom:541.191535px;}
.y15d{bottom:542.126896px;}
.y27e{bottom:544.083000px;}
.y329{bottom:544.084687px;}
.y29f{bottom:544.932000px;}
.y2be{bottom:545.529000px;}
.yf3{bottom:547.143890px;}
.y2a0{bottom:547.398000px;}
.y29e{bottom:547.399500px;}
.y10e{bottom:547.994878px;}
.y20{bottom:548.929500px;}
.y3e{bottom:550.545138px;}
.y2e4{bottom:551.226301px;}
.y381{bottom:553.098975px;}
.y267{bottom:553.521000px;}
.y1b4{bottom:553.522500px;}
.y24f{bottom:553.524000px;}
.y72{bottom:554.118000px;}
.y239{bottom:554.119500px;}
.y360{bottom:554.544957px;}
.yad{bottom:557.943000px;}
.y21f{bottom:559.815000px;}
.yac{bottom:559.984500px;}
.y15c{bottom:560.835862px;}
.yf2{bottom:561.345712px;}
.y10d{bottom:562.195500px;}
.y187{bottom:563.475000px;}
.y27d{bottom:563.557500px;}
.y328{bottom:563.559244px;}
.y2bd{bottom:565.087500px;}
.y29d{bottom:566.874000px;}
.y3d{bottom:567.042532px;}
.y35f{bottom:568.830778px;}
.y1f{bottom:569.934000px;}
.y2e3{bottom:570.784856px;}
.y380{bottom:572.572331px;}
.y1b3{bottom:572.995500px;}
.y1df{bottom:572.997000px;}
.y71{bottom:573.591000px;}
.y127{bottom:573.592500px;}
.y238{bottom:573.594000px;}
.y15b{bottom:575.122884px;}
.yf1{bottom:575.631534px;}
.y327{bottom:577.845065px;}
.yaa{bottom:578.693379px;}
.y21e{bottom:579.289500px;}
.y27c{bottom:580.564500px;}
.y186{bottom:582.948000px;}
.y27b{bottom:583.030500px;}
.y3c{bottom:583.541126px;}
.yab{bottom:584.050500px;}
.y2e2{bottom:584.986679px;}
.y29c{bottom:586.432500px;}
.y37f{bottom:586.859353px;}
.y35e{bottom:588.305335px;}
.yf0{bottom:589.833356px;}
.y265{bottom:590.002500px;}
.y1e{bottom:590.938500px;}
.y325{bottom:592.046888px;}
.y326{bottom:592.301285px;}
.y266{bottom:592.468500px;}
.y1b2{bottom:592.470000px;}
.y1de{bottom:592.471500px;}
.y70{bottom:593.065500px;}
.y237{bottom:593.068500px;}
.y2bc{bottom:593.575500px;}
.y15a{bottom:593.830650px;}
.y21d{bottom:598.762500px;}
.y2e0{bottom:599.272500px;}
.y2e1{bottom:599.526897px;}
.y3b{bottom:600.038520px;}
.ya9{bottom:600.973500px;}
.y185{bottom:602.506500px;}
.y27a{bottom:602.589000px;}
.y35d{bottom:602.591156px;}
.yef{bottom:604.120378px;}
.y29b{bottom:605.907000px;}
.y37e{bottom:606.332709px;}
.y159{bottom:608.117671px;}
.y324{bottom:611.605443px;}
.y1d{bottom:611.943000px;}
.y1b1{bottom:612.028500px;}
.y1dd{bottom:612.030000px;}
.y264{bottom:612.031500px;}
.y6f{bottom:612.624000px;}
.y236{bottom:612.627000px;}
.y2bb{bottom:613.050000px;}
.y3a{bottom:616.535913px;}
.y35b{bottom:616.792979px;}
.y35c{bottom:617.048575px;}
.yee{bottom:618.321000px;}
.y2df{bottom:619.512000px;}
.y37d{bottom:620.619731px;}
.y184{bottom:621.981000px;}
.y279{bottom:622.063500px;}
.y21c{bottom:624.275325px;}
.y29a{bottom:625.380000px;}
.y323{bottom:625.807266px;}
.y158{bottom:626.826637px;}
.y1a{bottom:630.567000px;}
.y1b0{bottom:631.503000px;}
.y24e{bottom:631.504500px;}
.y6e{bottom:632.098500px;}
.y235{bottom:632.101500px;}
.y2ba{bottom:632.523000px;}
.y1b{bottom:632.947500px;}
.y19{bottom:632.949000px;}
.y39{bottom:633.033307px;}
.ya8{bottom:635.842500px;}
.y35a{bottom:636.351534px;}
.y1c{bottom:639.241500px;}
.y321{bottom:640.094287px;}
.y322{bottom:640.348684px;}
.y157{bottom:641.112459px;}
.y183{bottom:641.455500px;}
.y278{bottom:641.538000px;}
.y298{bottom:642.387000px;}
.y299{bottom:644.938500px;}
.y297{bottom:644.940000px;}
.y6b{bottom:649.105500px;}
.y359{bottom:650.553357px;}
.y1af{bottom:650.976000px;}
.y24d{bottom:650.977500px;}
.y263{bottom:650.979000px;}
.y21b{bottom:651.316500px;}
.y6c{bottom:651.571500px;}
.y126{bottom:651.573000px;}
.y6a{bottom:651.574500px;}
.y18{bottom:653.868000px;}
.y37c{bottom:654.294910px;}
.ya7{bottom:655.401000px;}
.y1dc{bottom:657.013500px;}
.y38{bottom:657.609000px;}
.y2b9{bottom:658.035000px;}
.y6d{bottom:658.290000px;}
.y320{bottom:659.567644px;}
.y156{bottom:659.821425px;}
.y277{bottom:661.011000px;}
.y182{bottom:661.014000px;}
.y296{bottom:664.413000px;}
.y357{bottom:664.840378px;}
.y358{bottom:665.179974px;}
.y24c{bottom:670.536000px;}
.y262{bottom:670.537500px;}
.y125{bottom:671.131500px;}
.y69{bottom:671.133000px;}
.y31f{bottom:673.854665px;}
.y155{bottom:674.108446px;}
.ya6{bottom:674.874000px;}
.y1ae{bottom:676.488000px;}
.y275{bottom:678.018000px;}
.y181{bottom:680.487000px;}
.y276{bottom:680.569500px;}
.y274{bottom:680.571000px;}
.y2de{bottom:681.594000px;}
.y295{bottom:683.887500px;}
.y356{bottom:684.313735px;}
.y17{bottom:686.947500px;}
.y37b{bottom:688.055288px;}
.y123{bottom:688.138500px;}
.y261{bottom:690.012000px;}
.y124{bottom:690.604500px;}
.y122{bottom:690.606000px;}
.y68{bottom:690.607500px;}
.y154{bottom:692.816212px;}
.y31e{bottom:693.328022px;}
.ya5{bottom:694.348500px;}
.y24b{bottom:695.962500px;}
.y355{bottom:698.600756px;}
.y180{bottom:699.961500px;}
.y273{bottom:700.044000px;}
.y2b8{bottom:700.555500px;}
.y2dd{bottom:701.067000px;}
.y37a{bottom:702.342309px;}
.y294{bottom:703.360500px;}
.y153{bottom:707.103234px;}
.y31d{bottom:707.615043px;}
.y260{bottom:709.485000px;}
.y121{bottom:710.079000px;}
.y67{bottom:710.082000px;}
.y1db{bottom:710.505000px;}
.y354{bottom:712.802578px;}
.ya4{bottom:713.907000px;}
.y17f{bottom:719.436000px;}
.y1ad{bottom:719.518500px;}
.y2b7{bottom:720.115500px;}
.y2dc{bottom:720.627000px;}
.y31c{bottom:721.815666px;}
.y152{bottom:725.811000px;}
.y293{bottom:728.872500px;}
.y25f{bottom:728.959500px;}
.y120{bottom:729.637500px;}
.y66{bottom:729.640500px;}
.y1da{bottom:729.979500px;}
.y353{bottom:732.361134px;}
.ya3{bottom:733.381500px;}
.y11f{bottom:736.270500px;}
.y1ab{bottom:736.525500px;}
.y17e{bottom:738.994500px;}
.y1ac{bottom:739.077000px;}
.y1aa{bottom:739.078500px;}
.y2b6{bottom:739.588500px;}
.y31b{bottom:741.290222px;}
.y37{bottom:744.520500px;}
.y150{bottom:744.605212px;}
.y352{bottom:746.562956px;}
.y16{bottom:747.242925px;}
.y2db{bottom:747.583500px;}
.y25e{bottom:748.518000px;}
.y65{bottom:749.115000px;}
.y1d9{bottom:749.538000px;}
.y151{bottom:749.877000px;}
.ya2{bottom:752.854500px;}
.y31a{bottom:755.577244px;}
.y1a9{bottom:756.085500px;}
.y17d{bottom:758.469000px;}
.y1a8{bottom:758.551500px;}
.y2b5{bottom:759.063000px;}
.y351{bottom:760.848778px;}
.y36{bottom:761.782500px;}
.y15{bottom:762.209138px;}
.y14c{bottom:763.314281px;}
.y25d{bottom:767.992500px;}
.y292{bottom:768.586500px;}
.y64{bottom:768.588000px;}
.y14d{bottom:768.670500px;}
.y1d8{bottom:769.012500px;}
.y319{bottom:769.863065px;}
.ya1{bottom:772.414500px;}
.y2da{bottom:774.625500px;}
.y34f{bottom:775.050600px;}
.y350{bottom:775.306197px;}
.y1a6{bottom:775.558500px;}
.y2b3{bottom:776.070000px;}
.y14e{bottom:777.600000px;}
.y14b{bottom:777.601303px;}
.y17c{bottom:777.942000px;}
.y1a7{bottom:778.024500px;}
.y24a{bottom:778.026000px;}
.y1a5{bottom:778.027500px;}
.y2b4{bottom:778.536000px;}
.y2b2{bottom:778.537500px;}
.y35{bottom:778.960500px;}
.y14f{bottom:782.958000px;}
.y25c{bottom:787.465500px;}
.y291{bottom:788.061000px;}
.y63{bottom:788.062500px;}
.y1d7{bottom:788.487000px;}
.y318{bottom:789.337622px;}
.ya0{bottom:791.887500px;}
.y14{bottom:792.227962px;}
.y34e{bottom:794.609156px;}
.y34{bottom:796.224000px;}
.y14a{bottom:796.309069px;}
.y17b{bottom:797.500500px;}
.y249{bottom:797.584500px;}
.y1a4{bottom:797.586000px;}
.y2b1{bottom:798.096000px;}
.y2d9{bottom:801.583500px;}
.y272{bottom:803.536500px;}
.y317{bottom:803.623443px;}
.y25b{bottom:807.025500px;}
.y13{bottom:807.195375px;}
.y290{bottom:807.619500px;}
.y62{bottom:807.621000px;}
.y1d6{bottom:808.045500px;}
.y34d{bottom:808.810978px;}
.y9f{bottom:811.362000px;}
.y33{bottom:813.486000px;}
.y149{bottom:815.103234px;}
.y17a{bottom:816.975000px;}
.y248{bottom:817.059000px;}
.y1a3{bottom:817.060500px;}
.y2b0{bottom:817.570500px;}
.y316{bottom:817.825266px;}
.y2d8{bottom:821.142000px;}
.y12{bottom:822.246787px;}
.y34b{bottom:823.098000px;}
.y34c{bottom:823.352397px;}
.y25a{bottom:826.498500px;}
.y28f{bottom:827.094000px;}
.y61{bottom:827.095500px;}
.y1d5{bottom:827.518500px;}
.y9e{bottom:830.920500px;}
.y148{bottom:833.811000px;}
.y246{bottom:834.066000px;}
.y179{bottom:836.449500px;}
.y247{bottom:836.532000px;}
.y1a2{bottom:836.533500px;}
.y2af{bottom:837.043500px;}
.y11{bottom:837.213000px;}
.y315{bottom:837.298622px;}
.y34a{bottom:842.571356px;}
.y28d{bottom:844.101000px;}
.y259{bottom:845.973000px;}
.y28e{bottom:846.567000px;}
.y60{bottom:846.568500px;}
.y1d4{bottom:846.993000px;}
.y2d7{bottom:848.100000px;}
.y9d{bottom:850.395000px;}
.y313{bottom:851.585644px;}
.y314{bottom:851.841240px;}
.y146{bottom:852.605212px;}
.y178{bottom:856.008000px;}
.y1a1{bottom:856.092000px;}
.y245{bottom:856.093500px;}
.y2ae{bottom:856.602000px;}
.y349{bottom:856.858378px;}
.y147{bottom:857.877000px;}
.yf{bottom:864.169500px;}
.yd{bottom:864.171000px;}
.y10{bottom:864.508350px;}
.y258{bottom:865.531500px;}
.y5f{bottom:866.127000px;}
.y1d3{bottom:866.551500px;}
.y9c{bottom:869.868000px;}
.ye{bottom:870.208500px;}
.y312{bottom:871.059000px;}
.y348{bottom:871.314597px;}
.y142{bottom:871.315247px;}
.y95{bottom:872.584168px;}
.y2d6{bottom:875.142000px;}
.y177{bottom:875.481000px;}
.y1a0{bottom:875.566500px;}
.y143{bottom:876.670500px;}
.yb{bottom:880.668000px;}
.y8{bottom:880.668450px;}
.yc{bottom:881.006850px;}
.y9{bottom:881.008650px;}
.y2ad{bottom:882.114000px;}
.y257{bottom:885.006000px;}
.y311{bottom:885.346022px;}
.y144{bottom:885.600000px;}
.y141{bottom:885.601069px;}
.y5e{bottom:885.601500px;}
.y1d2{bottom:886.026000px;}
.ya{bottom:886.705500px;}
.y94{bottom:889.081561px;}
.y9b{bottom:889.342500px;}
.y347{bottom:890.618756px;}
.y145{bottom:890.958000px;}
.y19f{bottom:895.041000px;}
.y5{bottom:897.250500px;}
.y7{bottom:897.504300px;}
.y379{bottom:899.547844px;}
.y2d5{bottom:902.098500px;}
.y6{bottom:903.202500px;}
.y140{bottom:904.310035px;}
.y256{bottom:904.479000px;}
.y310{bottom:904.820578px;}
.y5d{bottom:905.076000px;}
.y1d1{bottom:905.499000px;}
.y93{bottom:905.580155px;}
.y9a{bottom:908.901000px;}
.y192{bottom:912.388537px;}
.y19e{bottom:914.514000px;}
.y30f{bottom:919.106400px;}
.y92{bottom:922.077549px;}
.y13f{bottom:923.103000px;}
.y255{bottom:924.037500px;}
.y5c{bottom:924.634500px;}
.y99{bottom:928.375500px;}
.y201{bottom:928.462116px;}
.y2d4{bottom:929.142000px;}
.y1d0{bottom:931.011000px;}
.y19d{bottom:931.521000px;}
.y30d{bottom:933.308222px;}
.y30e{bottom:933.563819px;}
.y19c{bottom:934.072500px;}
.y4{bottom:934.670100px;}
.y91{bottom:938.574943px;}
.y346{bottom:938.580956px;}
.y191{bottom:939.345000px;}
.y244{bottom:940.024500px;}
.y28b{bottom:941.641500px;}
.y13d{bottom:941.811712px;}
.y28c{bottom:944.107500px;}
.y5b{bottom:944.109000px;}
.y190{bottom:944.703000px;}
.y13e{bottom:947.169000px;}
.y98{bottom:947.848500px;}
.y2d3{bottom:948.615000px;}
.y254{bottom:949.464000px;}
.y200{bottom:951.677025px;}
.y30c{bottom:952.866778px;}
.y19b{bottom:953.547000px;}
.y18f{bottom:957.373500px;}
.y13a{bottom:960.605212px;}
.y18e{bottom:962.730000px;}
.y5a{bottom:963.582000px;}
.y90{bottom:964.086624px;}
.y1ff{bottom:965.964047px;}
.y30b{bottom:967.068600px;}
.y2d2{bottom:968.089500px;}
.y3{bottom:968.430900px;}
.y1f7{bottom:968.598590px;}
.y19a{bottom:973.020000px;}
.y97{bottom:973.361325px;}
.y13c{bottom:974.806500px;}
.y139{bottom:974.807035px;}
.y18d{bottom:975.402000px;}
.y13b{bottom:980.163000px;}
.y1fe{bottom:980.165869px;}
.y8f{bottom:980.584018px;}
.y18c{bottom:980.674500px;}
.y30a{bottom:981.355622px;}
.y59{bottom:983.140500px;}
.y345{bottom:986.541957px;}
.y1f5{bottom:989.857500px;}
.y1f6{bottom:991.813500px;}
.y1f4{bottom:991.815179px;}
.y137{bottom:993.600000px;}
.y135{bottom:993.600268px;}
.y1fd{bottom:994.451691px;}
.y2d1{bottom:995.131500px;}
.y8e{bottom:997.081411px;}
.y199{bottom:998.532000px;}
.y136{bottom:998.958000px;}
.y96{bottom:1000.402500px;}
.y309{bottom:1000.828978px;}
.y2{bottom:1002.189000px;}
.y58{bottom:1002.615000px;}
.y18b{bottom:1003.464441px;}
.y1f2{bottom:1004.059500px;}
.y1f3{bottom:1006.101000px;}
.y1f1{bottom:1006.101712px;}
.y134{bottom:1007.802091px;}
.y1fc{bottom:1008.738712px;}
.y8d{bottom:1013.578805px;}
.y2d0{bottom:1014.606000px;}
.y308{bottom:1015.116000px;}
.y18a{bottom:1017.751462px;}
.y1f0{bottom:1020.303535px;}
.y138{bottom:1022.087644px;}
.y133{bottom:1022.089112px;}
.y57{bottom:1022.089500px;}
.y1fb{bottom:1022.940535px;}
.y8c{bottom:1030.076199px;}
.y1ef{bottom:1034.589356px;}
.y1{bottom:1035.949500px;}
.y189{bottom:1036.460428px;}
.y1fa{bottom:1037.226356px;}
.y132{bottom:1040.796879px;}
.y56{bottom:1041.562500px;}
.y8b{bottom:1046.574793px;}
.y1ee{bottom:1048.791179px;}
.y1f9{bottom:1051.428179px;}
.y55{bottom:1061.121000px;}
.y188{bottom:1062.736500px;}
.y8a{bottom:1063.072186px;}
.y131{bottom:1063.077000px;}
.y307{bottom:1063.331397px;}
.y1f8{bottom:1065.714000px;}
.y89{bottom:1118.692500px;}
.h17{height:23.996250px;}
.h4{height:27.932275px;}
.ha{height:29.446125px;}
.h12{height:29.996550px;}
.hb{height:34.061924px;}
.h14{height:34.196067px;}
.h16{height:35.999550px;}
.h1{height:37.199535px;}
.h7{height:37.247534px;}
.h5{height:38.416992px;}
.h10{height:39.119511px;}
.hf{height:40.559493px;}
.h18{height:41.039487px;}
.h3{height:41.904000px;}
.h6{height:43.030712px;}
.h1a{height:43.387511px;}
.h9{height:44.175000px;}
.h11{height:44.249447px;}
.he{height:45.000000px;}
.h19{height:49.440000px;}
.hc{height:51.099609px;}
.h13{height:51.300000px;}
.h15{height:53.999550px;}
.hd{height:55.871534px;}
.h8{height:70.905000px;}
.h2{height:88.020000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x29{left:54.000000px;}
.x64{left:57.911700px;}
.x5a{left:59.952750px;}
.x2a{left:71.433000px;}
.x70{left:108.000000px;}
.x5e{left:110.976300px;}
.x53{left:113.276532px;}
.x4e{left:150.688791px;}
.x6f{left:233.433000px;}
.x73{left:246.954000px;}
.x43{left:248.995500px;}
.x65{left:250.525500px;}
.x5b{left:252.825267px;}
.x5c{left:264.217500px;}
.x42{left:268.725000px;}
.x41{left:283.861500px;}
.x57{left:298.661094px;}
.x1{left:300.018000px;}
.x40{left:303.930000px;}
.x39{left:307.501500px;}
.x34{left:311.076194px;}
.x2b{left:317.961000px;}
.x59{left:320.512850px;}
.x77{left:322.213500px;}
.x3e{left:323.914500px;}
.xe{left:328.252050px;}
.x5d{left:329.611883px;}
.x3a{left:331.312500px;}
.x54{left:332.931386px;}
.x84{left:334.375500px;}
.xf{left:335.650050px;}
.x3f{left:341.263500px;}
.x90{left:343.473148px;}
.x3d{left:346.195500px;}
.x3b{left:348.661500px;}
.x91{left:350.021466px;}
.x10{left:351.978300px;}
.x67{left:353.934000px;}
.x11{left:357.846000px;}
.x80{left:359.292000px;}
.x12{left:363.373500px;}
.xa5{left:365.073696px;}
.x98{left:366.178064px;}
.x3c{left:367.369500px;}
.x35{left:371.196000px;}
.x44{left:379.191000px;}
.x2{left:384.718500px;}
.x75{left:386.248500px;}
.x38{left:392.202000px;}
.x45{left:394.582500px;}
.x3{left:397.813500px;}
.x81{left:400.705500px;}
.x37{left:401.980500px;}
.x8c{left:403.936500px;}
.x1e{left:405.637500px;}
.x6e{left:407.934000px;}
.x4c{left:410.059500px;}
.x1f{left:411.165000px;}
.xaa{left:413.715088px;}
.x9b{left:414.821475px;}
.xa1{left:417.882636px;}
.x4d{left:419.244000px;}
.x9c{left:421.368593px;}
.x13{left:423.410700px;}
.x93{left:424.685733px;}
.x55{left:425.879824px;}
.x46{left:427.663500px;}
.x8f{left:431.488448px;}
.x6b{left:435.231000px;}
.x47{left:441.099000px;}
.x6c{left:442.630500px;}
.x82{left:445.011000px;}
.x14{left:446.881800px;}
.x83{left:450.369000px;}
.xad{left:464.908848px;}
.xae{left:467.545215px;}
.xa0{left:471.457167px;}
.x15{left:477.070500px;}
.xa2{left:479.535466px;}
.x16{left:482.598000px;}
.x94{left:483.872593px;}
.xa3{left:486.083784px;}
.x20{left:490.931100px;}
.x8e{left:492.291688px;}
.xac{left:496.798450px;}
.xa4{left:499.180420px;}
.x95{left:500.879981px;}
.x4{left:506.664000px;}
.x9f{left:510.234682px;}
.x5{left:519.675000px;}
.x96{left:531.834794px;}
.x21{left:533.112000px;}
.x92{left:535.150352px;}
.x97{left:538.381912px;}
.x76{left:539.404500px;}
.x66{left:545.101500px;}
.x22{left:546.973500px;}
.x48{left:551.650500px;}
.x99{left:559.217251px;}
.x49{left:560.835000px;}
.x88{left:563.725500px;}
.x17{left:566.532000px;}
.x89{left:569.083500px;}
.x18{left:572.145000px;}
.x9a{left:576.224639px;}
.x8a{left:591.534000px;}
.xab{left:594.764025px;}
.x8b{left:596.892000px;}
.xa7{left:599.185970px;}
.x6{left:602.928150px;}
.x4a{left:605.565000px;}
.x36{left:611.773500px;}
.x4b{left:614.409000px;}
.xa6{left:616.873749px;}
.xa8{left:618.234532px;}
.x6d{left:619.426500px;}
.x31{left:624.189000px;}
.x9d{left:626.142433px;}
.x74{left:627.250500px;}
.x7{left:628.779300px;}
.x32{left:634.224000px;}
.x33{left:638.560500px;}
.x8{left:646.725000px;}
.x9{left:652.252500px;}
.x8d{left:664.158000px;}
.x5f{left:666.451272px;}
.x19{left:671.810100px;}
.x23{left:673.936500px;}
.x24{left:679.464000px;}
.x1a{left:688.903500px;}
.x86{left:690.945000px;}
.x1b{left:694.431000px;}
.x87{left:696.217500px;}
.xa9{left:698.171533px;}
.x25{left:701.319000px;}
.x9e{left:703.613465px;}
.x26{left:710.248500px;}
.xa{left:722.070000px;}
.x4f{left:724.362020px;}
.xb{left:727.681500px;}
.x61{left:734.142426px;}
.x27{left:737.290500px;}
.x60{left:740.095551px;}
.x30{left:741.714000px;}
.x78{left:747.751500px;}
.x68{left:751.578000px;}
.x6a{left:754.639500px;}
.x28{left:758.296500px;}
.x79{left:761.017500px;}
.x69{left:764.079000px;}
.x7a{left:766.374000px;}
.x50{left:767.905500px;}
.x51{left:771.817500px;}
.x2c{left:774.198000px;}
.x58{left:775.899000px;}
.x56{left:778.195500px;}
.x2d{left:783.382500px;}
.x7b{left:785.934000px;}
.x7c{left:791.292000px;}
.xc{left:801.835500px;}
.x63{left:804.299549px;}
.x85{left:806.343000px;}
.xd{left:807.363000px;}
.x62{left:812.292649px;}
.x52{left:813.400580px;}
.x7d{left:819.099000px;}
.x71{left:821.055000px;}
.x1c{left:822.925500px;}
.x7f{left:825.477000px;}
.x1d{left:828.453000px;}
.x72{left:830.325000px;}
.x2e{left:834.916500px;}
.x2f{left:850.053000px;}
.x7e{left:855.496500px;}
@media print{
.v2{vertical-align:-6.347733pt;}
.v3{vertical-align:-5.136000pt;}
.v1{vertical-align:-0.902400pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:15.420837pt;}
.ls2d{letter-spacing:-1.333333pt;}
.ls2e{letter-spacing:-1.183864pt;}
.lsf{letter-spacing:-1.123200pt;}
.ls14{letter-spacing:-1.067200pt;}
.ls19{letter-spacing:-1.066653pt;}
.ls37{letter-spacing:-0.693333pt;}
.ls2c{letter-spacing:-0.533333pt;}
.ls46{letter-spacing:-0.426661pt;}
.ls18{letter-spacing:-0.213333pt;}
.lse{letter-spacing:-0.213331pt;}
.ls15{letter-spacing:-0.212800pt;}
.ls12{letter-spacing:-0.211997pt;}
.ls10{letter-spacing:-0.211200pt;}
.ls17{letter-spacing:-0.211198pt;}
.ls30{letter-spacing:-0.190548pt;}
.ls16{letter-spacing:-0.189131pt;}
.ls11{letter-spacing:-0.188775pt;}
.ls1d{letter-spacing:-0.188423pt;}
.ls13{letter-spacing:0.000000pt;}
.ls3c{letter-spacing:0.704000pt;}
.ls3a{letter-spacing:1.002667pt;}
.ls39{letter-spacing:1.008000pt;}
.lsc{letter-spacing:1.211718pt;}
.lsa{letter-spacing:1.514648pt;}
.ls2b{letter-spacing:2.193039pt;}
.ls34{letter-spacing:2.816000pt;}
.ls33{letter-spacing:2.821333pt;}
.ls3b{letter-spacing:3.120000pt;}
.ls32{letter-spacing:3.125333pt;}
.ls3d{letter-spacing:4.232480pt;}
.ls40{letter-spacing:4.236747pt;}
.ls3f{letter-spacing:4.535410pt;}
.ls3e{letter-spacing:4.539677pt;}
.ls0{letter-spacing:4.876800pt;}
.ls2{letter-spacing:5.179200pt;}
.ls3{letter-spacing:5.184000pt;}
.ls4{letter-spacing:6.388800pt;}
.ls5{letter-spacing:6.393600pt;}
.lsd{letter-spacing:8.396695pt;}
.ls1{letter-spacing:8.510933pt;}
.ls45{letter-spacing:9.036687pt;}
.ls7{letter-spacing:9.117753pt;}
.ls2a{letter-spacing:9.122019pt;}
.ls29{letter-spacing:9.220151pt;}
.ls8{letter-spacing:9.232951pt;}
.ls28{letter-spacing:9.271351pt;}
.ls20{letter-spacing:9.629746pt;}
.ls1f{letter-spacing:9.710812pt;}
.ls21{letter-spacing:9.787611pt;}
.lsb{letter-spacing:10.585468pt;}
.ls9{letter-spacing:10.954133pt;}
.ls35{letter-spacing:11.280000pt;}
.ls1c{letter-spacing:11.397333pt;}
.ls31{letter-spacing:11.402667pt;}
.ls24{letter-spacing:11.429333pt;}
.ls1e{letter-spacing:11.525333pt;}
.ls23{letter-spacing:11.552000pt;}
.ls1b{letter-spacing:11.642667pt;}
.ls25{letter-spacing:11.674667pt;}
.ls36{letter-spacing:11.701333pt;}
.ls38{letter-spacing:11.706667pt;}
.ls22{letter-spacing:11.712000pt;}
.ls2f{letter-spacing:11.733333pt;}
.ls26{letter-spacing:11.834667pt;}
.ls1a{letter-spacing:11.845333pt;}
.ls27{letter-spacing:11.979200pt;}
.ls44{letter-spacing:13.606230pt;}
.ls42{letter-spacing:13.610497pt;}
.ls41{letter-spacing:13.909159pt;}
.ls43{letter-spacing:13.913426pt;}
.ls6{letter-spacing:18.474436pt;}
.ws37{word-spacing:-22.442386pt;}
.ws104{word-spacing:-20.351746pt;}
.ws163{word-spacing:-17.772652pt;}
.wscb{word-spacing:-13.637333pt;}
.wscc{word-spacing:-13.621333pt;}
.ws7c{word-spacing:-13.610667pt;}
.ws12f{word-spacing:-13.600000pt;}
.ws14a{word-spacing:-13.594667pt;}
.ws2c{word-spacing:-13.520000pt;}
.ws64{word-spacing:-13.440000pt;}
.ws159{word-spacing:-13.386667pt;}
.wsca{word-spacing:-13.338667pt;}
.ws154{word-spacing:-13.290667pt;}
.wsb{word-spacing:-13.276800pt;}
.ws136{word-spacing:-12.000000pt;}
.ws175{word-spacing:-11.775853pt;}
.wsa8{word-spacing:-9.770545pt;}
.ws3a{word-spacing:-9.599880pt;}
.wsd9{word-spacing:-9.557214pt;}
.ws131{word-spacing:-3.961567pt;}
.ws164{word-spacing:-3.763169pt;}
.ws160{word-spacing:-3.628770pt;}
.ws1ba{word-spacing:-3.285292pt;}
.ws1ae{word-spacing:-3.217026pt;}
.ws1bd{word-spacing:-3.165827pt;}
.ws19b{word-spacing:-3.123161pt;}
.ws1b8{word-spacing:-3.118894pt;}
.ws1b9{word-spacing:-3.114628pt;}
.ws1c0{word-spacing:-3.110361pt;}
.ws1c4{word-spacing:-3.076228pt;}
.ws1ca{word-spacing:-3.050629pt;}
.ws1a3{word-spacing:-3.042095pt;}
.ws1af{word-spacing:-3.029295pt;}
.ws188{word-spacing:-3.012229pt;}
.ws18d{word-spacing:-3.007962pt;}
.ws1cd{word-spacing:-2.999429pt;}
.ws1c6{word-spacing:-2.995163pt;}
.ws1a5{word-spacing:-2.990896pt;}
.ws19f{word-spacing:-2.986629pt;}
.ws6{word-spacing:-2.971200pt;}
.ws189{word-spacing:-2.969563pt;}
.ws1b4{word-spacing:-2.965296pt;}
.ws1bc{word-spacing:-2.961030pt;}
.ws1a0{word-spacing:-2.956763pt;}
.ws1c8{word-spacing:-2.943963pt;}
.wsa{word-spacing:-2.942400pt;}
.ws13{word-spacing:-2.935430pt;}
.ws18a{word-spacing:-2.931163pt;}
.ws12{word-spacing:-2.926897pt;}
.ws1c7{word-spacing:-2.922630pt;}
.ws1a7{word-spacing:-2.918364pt;}
.ws174{word-spacing:-2.914097pt;}
.ws183{word-spacing:-2.909830pt;}
.wsc{word-spacing:-2.904000pt;}
.ws1aa{word-spacing:-2.901297pt;}
.ws187{word-spacing:-2.897030pt;}
.ws20{word-spacing:-2.893067pt;}
.ws17e{word-spacing:-2.892764pt;}
.ws9{word-spacing:-2.889600pt;}
.ws17f{word-spacing:-2.888497pt;}
.ws1b{word-spacing:-2.888000pt;}
.wsd{word-spacing:-2.884231pt;}
.ws19a{word-spacing:-2.879964pt;}
.ws197{word-spacing:-2.867164pt;}
.ws196{word-spacing:-2.862898pt;}
.ws1ac{word-spacing:-2.858631pt;}
.ws4{word-spacing:-2.856000pt;}
.ws1b3{word-spacing:-2.854364pt;}
.ws18e{word-spacing:-2.850098pt;}
.ws1a2{word-spacing:-2.845831pt;}
.ws1bf{word-spacing:-2.841564pt;}
.ws1c{word-spacing:-2.837333pt;}
.ws1b6{word-spacing:-2.837298pt;}
.ws1f{word-spacing:-2.832267pt;}
.ws19c{word-spacing:-2.828765pt;}
.ws18{word-spacing:-2.827200pt;}
.wsf{word-spacing:-2.824498pt;}
.ws1a4{word-spacing:-2.820231pt;}
.ws7{word-spacing:-2.817600pt;}
.ws10f{word-spacing:-2.815965pt;}
.ws14{word-spacing:-2.807432pt;}
.ws180{word-spacing:-2.803165pt;}
.ws1d{word-spacing:-2.801867pt;}
.ws17c{word-spacing:-2.798898pt;}
.ws1e{word-spacing:-2.796800pt;}
.ws24{word-spacing:-2.781600pt;}
.ws34{word-spacing:-2.777565pt;}
.ws177{word-spacing:-2.769032pt;}
.ws184{word-spacing:-2.760499pt;}
.ws172{word-spacing:-2.756232pt;}
.ws1c2{word-spacing:-2.751966pt;}
.ws1b0{word-spacing:-2.747699pt;}
.ws1be{word-spacing:-2.743432pt;}
.ws1a{word-spacing:-2.741067pt;}
.ws21{word-spacing:-2.736000pt;}
.ws36{word-spacing:-2.734899pt;}
.ws19d{word-spacing:-2.730633pt;}
.ws1b1{word-spacing:-2.726366pt;}
.ws199{word-spacing:-2.722099pt;}
.ws192{word-spacing:-2.713566pt;}
.ws3{word-spacing:-2.712000pt;}
.ws1cc{word-spacing:-2.709299pt;}
.ws17b{word-spacing:-2.700766pt;}
.ws173{word-spacing:-2.696500pt;}
.ws1ab{word-spacing:-2.687966pt;}
.ws22{word-spacing:-2.685333pt;}
.ws185{word-spacing:-2.683700pt;}
.ws2{word-spacing:-2.678400pt;}
.ws8{word-spacing:-2.673600pt;}
.ws1ad{word-spacing:-2.670900pt;}
.ws5{word-spacing:-2.668800pt;}
.ws1b5{word-spacing:-2.666633pt;}
.ws1c9{word-spacing:-2.658100pt;}
.ws1a6{word-spacing:-2.653833pt;}
.ws81{word-spacing:-2.649567pt;}
.ws1b7{word-spacing:-2.641034pt;}
.ws1a8{word-spacing:-2.636767pt;}
.ws1bb{word-spacing:-2.632500pt;}
.ws181{word-spacing:-2.628234pt;}
.ws19e{word-spacing:-2.615434pt;}
.ws193{word-spacing:-2.611167pt;}
.ws16{word-spacing:-2.602634pt;}
.ws1cb{word-spacing:-2.598368pt;}
.ws17a{word-spacing:-2.589834pt;}
.ws176{word-spacing:-2.585568pt;}
.ws10{word-spacing:-2.572768pt;}
.ws1c3{word-spacing:-2.559968pt;}
.ws1c5{word-spacing:-2.555701pt;}
.ws1c1{word-spacing:-2.551435pt;}
.ws1b2{word-spacing:-2.538635pt;}
.ws1a1{word-spacing:-2.517302pt;}
.ws198{word-spacing:-2.513035pt;}
.ws18c{word-spacing:-2.504502pt;}
.ws178{word-spacing:-2.500235pt;}
.ws23{word-spacing:-2.497867pt;}
.ws17d{word-spacing:-2.495969pt;}
.ws190{word-spacing:-2.470369pt;}
.ws19{word-spacing:-2.467467pt;}
.ws182{word-spacing:-2.461836pt;}
.ws186{word-spacing:-2.457569pt;}
.ws1a9{word-spacing:-2.453303pt;}
.ws191{word-spacing:-2.444769pt;}
.ws179{word-spacing:-2.440503pt;}
.ws1{word-spacing:-2.438400pt;}
.ws195{word-spacing:-2.419170pt;}
.ws17{word-spacing:-2.406370pt;}
.ws15{word-spacing:-2.389303pt;}
.ws11{word-spacing:-2.385037pt;}
.ws0{word-spacing:-2.355171pt;}
.ws18b{word-spacing:-2.342371pt;}
.wse{word-spacing:-2.338104pt;}
.ws56{word-spacing:-0.942922pt;}
.ws4b{word-spacing:-0.938655pt;}
.ws92{word-spacing:-0.890667pt;}
.ws3d{word-spacing:-0.844789pt;}
.ws66{word-spacing:-0.837333pt;}
.ws4e{word-spacing:-0.814923pt;}
.ws117{word-spacing:-0.810657pt;}
.ws48{word-spacing:-0.793590pt;}
.ws44{word-spacing:-0.780790pt;}
.ws5a{word-spacing:-0.778667pt;}
.ws11f{word-spacing:-0.773333pt;}
.ws87{word-spacing:-0.763724pt;}
.ws3f{word-spacing:-0.759457pt;}
.wsbd{word-spacing:-0.742391pt;}
.ws50{word-spacing:-0.725324pt;}
.ws124{word-spacing:-0.716791pt;}
.ws90{word-spacing:-0.709333pt;}
.ws84{word-spacing:-0.708258pt;}
.ws42{word-spacing:-0.703991pt;}
.wsb9{word-spacing:-0.686925pt;}
.ws12c{word-spacing:-0.682667pt;}
.ws54{word-spacing:-0.682658pt;}
.ws10e{word-spacing:-0.674125pt;}
.wsc4{word-spacing:-0.665592pt;}
.ws46{word-spacing:-0.661325pt;}
.ws52{word-spacing:-0.657058pt;}
.wsd2{word-spacing:-0.648525pt;}
.ws67{word-spacing:-0.645333pt;}
.ws4a{word-spacing:-0.644259pt;}
.wsb8{word-spacing:-0.639992pt;}
.ws39{word-spacing:-0.635725pt;}
.ws12d{word-spacing:-0.631459pt;}
.ws11e{word-spacing:-0.629333pt;}
.ws85{word-spacing:-0.627192pt;}
.ws155{word-spacing:-0.624000pt;}
.ws83{word-spacing:-0.618659pt;}
.ws128{word-spacing:-0.614392pt;}
.ws88{word-spacing:-0.605859pt;}
.ws14e{word-spacing:-0.602667pt;}
.ws4c{word-spacing:-0.601592pt;}
.ws4f{word-spacing:-0.597326pt;}
.wsac{word-spacing:-0.593059pt;}
.ws86{word-spacing:-0.588793pt;}
.ws47{word-spacing:-0.580259pt;}
.ws55{word-spacing:-0.575993pt;}
.ws116{word-spacing:-0.571726pt;}
.ws43{word-spacing:-0.567460pt;}
.ws49{word-spacing:-0.563193pt;}
.ws38{word-spacing:-0.554660pt;}
.ws89{word-spacing:-0.550393pt;}
.wsdc{word-spacing:-0.549333pt;}
.ws51{word-spacing:-0.541860pt;}
.ws3e{word-spacing:-0.537593pt;}
.ws149{word-spacing:-0.528000pt;}
.wsc5{word-spacing:-0.520527pt;}
.ws58{word-spacing:-0.511994pt;}
.ws40{word-spacing:-0.507727pt;}
.ws153{word-spacing:-0.506667pt;}
.wsd6{word-spacing:-0.503460pt;}
.wsae{word-spacing:-0.494927pt;}
.ws12b{word-spacing:-0.490667pt;}
.wsbc{word-spacing:-0.490661pt;}
.ws53{word-spacing:-0.482127pt;}
.ws7d{word-spacing:-0.469333pt;}
.ws8a{word-spacing:-0.469327pt;}
.ws119{word-spacing:-0.458667pt;}
.ws7a{word-spacing:-0.453333pt;}
.wsd5{word-spacing:-0.452261pt;}
.ws14d{word-spacing:-0.448000pt;}
.ws45{word-spacing:-0.443728pt;}
.ws112{word-spacing:-0.442667pt;}
.wsa5{word-spacing:-0.439461pt;}
.ws3c{word-spacing:-0.435195pt;}
.ws157{word-spacing:-0.432000pt;}
.wsf8{word-spacing:-0.430928pt;}
.ws91{word-spacing:-0.426667pt;}
.wsaa{word-spacing:-0.426661pt;}
.ws41{word-spacing:-0.422395pt;}
.ws32{word-spacing:-0.421333pt;}
.ws4d{word-spacing:-0.418128pt;}
.ws76{word-spacing:-0.416000pt;}
.ws57{word-spacing:-0.413861pt;}
.ws121{word-spacing:-0.410667pt;}
.ws82{word-spacing:-0.409595pt;}
.ws80{word-spacing:-0.405333pt;}
.wsba{word-spacing:-0.401062pt;}
.ws9e{word-spacing:-0.396795pt;}
.ws69{word-spacing:-0.394667pt;}
.wsd7{word-spacing:-0.392528pt;}
.ws2d{word-spacing:-0.389333pt;}
.wsa6{word-spacing:-0.388262pt;}
.ws60{word-spacing:-0.384000pt;}
.ws6b{word-spacing:-0.378667pt;}
.wsd8{word-spacing:-0.371195pt;}
.wsb1{word-spacing:-0.368000pt;}
.ws96{word-spacing:-0.362667pt;}
.ws106{word-spacing:-0.357333pt;}
.ws10b{word-spacing:-0.354129pt;}
.ws115{word-spacing:-0.352000pt;}
.ws61{word-spacing:-0.346667pt;}
.wsb2{word-spacing:-0.341333pt;}
.ws9a{word-spacing:-0.341329pt;}
.ws2a{word-spacing:-0.336000pt;}
.wsb6{word-spacing:-0.330667pt;}
.ws123{word-spacing:-0.328529pt;}
.ws26{word-spacing:-0.325333pt;}
.ws10d{word-spacing:-0.324263pt;}
.wsda{word-spacing:-0.320000pt;}
.ws8c{word-spacing:-0.314667pt;}
.ws68{word-spacing:-0.309333pt;}
.ws77{word-spacing:-0.304000pt;}
.wsa9{word-spacing:-0.302930pt;}
.ws6e{word-spacing:-0.298667pt;}
.wsab{word-spacing:-0.298663pt;}
.wsa4{word-spacing:-0.294396pt;}
.ws72{word-spacing:-0.293333pt;}
.ws95{word-spacing:-0.288000pt;}
.ws65{word-spacing:-0.282667pt;}
.ws7e{word-spacing:-0.277333pt;}
.wsb0{word-spacing:-0.273063pt;}
.ws5e{word-spacing:-0.272000pt;}
.ws8e{word-spacing:-0.266667pt;}
.ws5f{word-spacing:-0.261333pt;}
.ws3b{word-spacing:-0.260263pt;}
.ws29{word-spacing:-0.256000pt;}
.ws10c{word-spacing:-0.255997pt;}
.ws5d{word-spacing:-0.250667pt;}
.ws93{word-spacing:-0.245333pt;}
.ws9f{word-spacing:-0.243197pt;}
.ws5b{word-spacing:-0.240000pt;}
.ws120{word-spacing:-0.234667pt;}
.ws122{word-spacing:-0.234664pt;}
.ws2f{word-spacing:-0.229333pt;}
.wsaf{word-spacing:-0.226131pt;}
.wsb3{word-spacing:-0.224000pt;}
.wsa7{word-spacing:-0.221864pt;}
.ws30{word-spacing:-0.218667pt;}
.ws125{word-spacing:-0.217597pt;}
.ws33{word-spacing:-0.213333pt;}
.ws2b{word-spacing:-0.208000pt;}
.ws28{word-spacing:-0.202667pt;}
.ws98{word-spacing:-0.197333pt;}
.ws25{word-spacing:-0.192000pt;}
.ws70{word-spacing:-0.186667pt;}
.ws99{word-spacing:-0.183464pt;}
.ws63{word-spacing:-0.181333pt;}
.ws9d{word-spacing:-0.179198pt;}
.ws114{word-spacing:-0.176000pt;}
.ws6c{word-spacing:-0.170667pt;}
.ws5c{word-spacing:-0.165333pt;}
.wsc2{word-spacing:-0.162131pt;}
.ws11c{word-spacing:-0.160000pt;}
.ws6f{word-spacing:-0.154667pt;}
.wsb7{word-spacing:-0.153598pt;}
.ws110{word-spacing:-0.149333pt;}
.wsc3{word-spacing:-0.149331pt;}
.wsbb{word-spacing:-0.148523pt;}
.wsf6{word-spacing:-0.145065pt;}
.ws7f{word-spacing:-0.144000pt;}
.ws9b{word-spacing:-0.140798pt;}
.ws11a{word-spacing:-0.138667pt;}
.wsf9{word-spacing:-0.136532pt;}
.ws15a{word-spacing:-0.133333pt;}
.ws12e{word-spacing:-0.132265pt;}
.ws108{word-spacing:-0.128000pt;}
.wsf7{word-spacing:-0.123732pt;}
.ws135{word-spacing:-0.122667pt;}
.ws15f{word-spacing:-0.117333pt;}
.ws133{word-spacing:-0.112000pt;}
.ws134{word-spacing:-0.106667pt;}
.ws129{word-spacing:-0.102399pt;}
.ws62{word-spacing:-0.101333pt;}
.ws79{word-spacing:-0.096000pt;}
.ws8d{word-spacing:-0.090667pt;}
.wsdb{word-spacing:-0.085333pt;}
.ws127{word-spacing:-0.085332pt;}
.ws75{word-spacing:-0.080000pt;}
.ws6d{word-spacing:-0.074667pt;}
.ws27{word-spacing:-0.069333pt;}
.ws126{word-spacing:-0.068266pt;}
.ws94{word-spacing:-0.064000pt;}
.ws9c{word-spacing:-0.059733pt;}
.ws107{word-spacing:-0.058667pt;}
.wsa3{word-spacing:-0.055466pt;}
.ws11b{word-spacing:-0.053333pt;}
.wsa2{word-spacing:-0.051199pt;}
.ws6a{word-spacing:-0.048000pt;}
.ws14b{word-spacing:-0.042667pt;}
.wsbe{word-spacing:-0.037333pt;}
.ws130{word-spacing:-0.032000pt;}
.wsdf{word-spacing:-0.026667pt;}
.ws150{word-spacing:-0.021333pt;}
.wsce{word-spacing:-0.016000pt;}
.ws31{word-spacing:-0.010667pt;}
.wsd4{word-spacing:-0.005333pt;}
.ws59{word-spacing:0.000000pt;}
.wse3{word-spacing:0.005333pt;}
.ws14f{word-spacing:0.010667pt;}
.ws71{word-spacing:0.016000pt;}
.ws78{word-spacing:0.021333pt;}
.ws8f{word-spacing:0.026667pt;}
.wscf{word-spacing:0.029866pt;}
.ws14c{word-spacing:0.032000pt;}
.ws113{word-spacing:0.042667pt;}
.wsde{word-spacing:0.048000pt;}
.wsbf{word-spacing:0.053333pt;}
.wse2{word-spacing:0.058667pt;}
.wse4{word-spacing:0.069333pt;}
.ws158{word-spacing:0.074667pt;}
.wsb4{word-spacing:0.080000pt;}
.ws73{word-spacing:0.085333pt;}
.wsd3{word-spacing:0.089599pt;}
.wscd{word-spacing:0.090667pt;}
.ws2e{word-spacing:0.096000pt;}
.wsc6{word-spacing:0.101333pt;}
.ws15d{word-spacing:0.106667pt;}
.ws139{word-spacing:0.108799pt;}
.ws152{word-spacing:0.112000pt;}
.ws111{word-spacing:0.121599pt;}
.wse7{word-spacing:0.122667pt;}
.ws15c{word-spacing:0.128000pt;}
.ws146{word-spacing:0.138667pt;}
.wsc0{word-spacing:0.144000pt;}
.wsc7{word-spacing:0.149333pt;}
.ws11d{word-spacing:0.154667pt;}
.ws105{word-spacing:0.160000pt;}
.wsdd{word-spacing:0.165333pt;}
.wsc8{word-spacing:0.166399pt;}
.wsf5{word-spacing:0.174931pt;}
.ws148{word-spacing:0.181333pt;}
.ws74{word-spacing:0.186667pt;}
.ws147{word-spacing:0.197333pt;}
.ws13f{word-spacing:0.202667pt;}
.ws12a{word-spacing:0.208000pt;}
.wsf4{word-spacing:0.209064pt;}
.ws97{word-spacing:0.213333pt;}
.ws8b{word-spacing:0.217598pt;}
.ws7b{word-spacing:0.224000pt;}
.wsa0{word-spacing:0.226131pt;}
.ws118{word-spacing:0.230398pt;}
.ws137{word-spacing:0.236798pt;}
.ws15e{word-spacing:0.243198pt;}
.wsd1{word-spacing:0.251730pt;}
.ws156{word-spacing:0.255998pt;}
.ws15b{word-spacing:0.268798pt;}
.wse6{word-spacing:0.272000pt;}
.ws13b{word-spacing:0.277333pt;}
.ws109{word-spacing:0.281596pt;}
.wse8{word-spacing:0.287998pt;}
.wsf2{word-spacing:0.290130pt;}
.wse0{word-spacing:0.293333pt;}
.wsd0{word-spacing:0.298663pt;}
.ws140{word-spacing:0.298667pt;}
.ws170{word-spacing:0.304000pt;}
.ws161{word-spacing:0.309333pt;}
.ws13d{word-spacing:0.314667pt;}
.ws138{word-spacing:0.319997pt;}
.wse5{word-spacing:0.325333pt;}
.ws13a{word-spacing:0.326397pt;}
.wse1{word-spacing:0.330667pt;}
.wsf1{word-spacing:0.332796pt;}
.ws145{word-spacing:0.336000pt;}
.ws132{word-spacing:0.345597pt;}
.ws151{word-spacing:0.357333pt;}
.wsb5{word-spacing:0.368000pt;}
.ws143{word-spacing:0.384000pt;}
.wsc9{word-spacing:0.400000pt;}
.wsc1{word-spacing:0.405333pt;}
.ws144{word-spacing:0.421333pt;}
.ws166{word-spacing:0.426667pt;}
.ws162{word-spacing:0.432000pt;}
.ws141{word-spacing:0.453333pt;}
.ws13c{word-spacing:0.485333pt;}
.ws142{word-spacing:0.570667pt;}
.ws167{word-spacing:0.592000pt;}
.ws16b{word-spacing:0.629333pt;}
.ws13e{word-spacing:0.645333pt;}
.ws168{word-spacing:0.677333pt;}
.wsec{word-spacing:0.709333pt;}
.ws16c{word-spacing:0.752000pt;}
.wsee{word-spacing:0.768000pt;}
.ws16a{word-spacing:0.800000pt;}
.wsed{word-spacing:0.810667pt;}
.wsef{word-spacing:0.821333pt;}
.ws169{word-spacing:0.869333pt;}
.wse9{word-spacing:0.896000pt;}
.ws16e{word-spacing:0.901333pt;}
.ws16f{word-spacing:0.906667pt;}
.ws16d{word-spacing:0.912000pt;}
.wseb{word-spacing:0.944000pt;}
.ws165{word-spacing:1.029333pt;}
.wsea{word-spacing:1.072000pt;}
.wsf0{word-spacing:1.077333pt;}
.wsfe{word-spacing:25.164485pt;}
.ws35{word-spacing:30.745216pt;}
.ws18f{word-spacing:41.637880pt;}
.ws194{word-spacing:41.642146pt;}
.ws171{word-spacing:41.697612pt;}
.wsf3{word-spacing:44.923172pt;}
.ws103{word-spacing:47.645271pt;}
.wsff{word-spacing:49.334850pt;}
.ws102{word-spacing:56.110232pt;}
.ws101{word-spacing:59.681387pt;}
.ws10a{word-spacing:59.685654pt;}
.wsfc{word-spacing:69.358066pt;}
.wsfa{word-spacing:70.565518pt;}
.wsfb{word-spacing:71.278042pt;}
.ws100{word-spacing:92.440444pt;}
.wsfd{word-spacing:184.351829pt;}
.wsad{word-spacing:765.387766pt;}
.wsa1{word-spacing:824.953955pt;}
._5d{margin-left:-23.386667pt;}
._5f{margin-left:-22.186667pt;}
._5e{margin-left:-21.211733pt;}
._16{margin-left:-18.999229pt;}
._60{margin-left:-17.719245pt;}
._a{margin-left:-16.306996pt;}
._9{margin-left:-15.206210pt;}
._0{margin-left:-0.989854pt;}
._6{width:0.977867pt;}
._2{width:3.485867pt;}
._3{width:8.153498pt;}
._4{width:9.890010pt;}
._b{width:10.997333pt;}
._5{width:12.322133pt;}
._7{width:13.350400pt;}
._15{width:14.566218pt;}
._d{width:18.849898pt;}
._5a{width:21.213601pt;}
._1{width:22.435200pt;}
._5c{width:23.453573pt;}
._1a{width:34.350504pt;}
._1b{width:41.851210pt;}
._c{width:43.788000pt;}
._1c{width:47.184477pt;}
._19{width:48.212731pt;}
._40{width:51.536422pt;}
._43{width:53.814794pt;}
._48{width:54.838781pt;}
._30{width:55.999300pt;}
._55{width:59.822186pt;}
._41{width:62.045091pt;}
._1f{width:69.456198pt;}
._44{width:70.369254pt;}
._20{width:71.273776pt;}
._1e{width:72.809757pt;}
._32{width:74.298805pt;}
._57{width:76.001183pt;}
._2c{width:76.909972pt;}
._2b{width:78.416086pt;}
._31{width:79.337675pt;}
._45{width:80.246464pt;}
._50{width:81.325917pt;}
._37{width:82.358437pt;}
._25{width:83.463490pt;}
._24{width:84.372279pt;}
._3b{width:85.690662pt;}
._3a{width:86.902380pt;}
._1d{width:88.301830pt;}
._4d{width:89.825011pt;}
._42{width:90.725266pt;}
._2a{width:91.638321pt;}
._51{width:92.837240pt;}
._2e{width:93.750295pt;}
._49{width:94.846814pt;}
._4b{width:95.755603pt;}
._21{width:97.159319pt;}
._36{width:98.272905pt;}
._4e{width:99.429157pt;}
._28{width:100.700608pt;}
._56{width:102.215256pt;}
._2d{width:103.222176pt;}
._4a{width:104.924555pt;}
._26{width:106.144807pt;}
._23{width:107.352258pt;}
._52{width:109.395966pt;}
._2f{width:115.740420pt;}
._46{width:119.563305pt;}
._4c{width:120.762224pt;}
._54{width:121.790478pt;}
._58{width:122.857131pt;}
._53{width:124.030450pt;}
._4f{width:125.190968pt;}
._27{width:128.215997pt;}
._22{width:133.660196pt;}
._34{width:176.642059pt;}
._39{width:257.921043pt;}
._3c{width:287.565472pt;}
._35{width:302.724749pt;}
._3f{width:330.415070pt;}
._3e{width:372.300413pt;}
._18{width:410.516468pt;}
._17{width:452.542610pt;}
._47{width:478.163623pt;}
._33{width:495.789003pt;}
._3d{width:527.652071pt;}
._38{width:540.008183pt;}
._13{width:599.437840pt;}
._59{width:671.257743pt;}
._12{width:751.721803pt;}
._14{width:804.888072pt;}
._f{width:893.684829pt;}
._e{width:898.548768pt;}
._10{width:908.733174pt;}
._11{width:947.687354pt;}
._29{width:1193.888010pt;}
._5b{width:1298.112840pt;}
._8{width:1320.930688pt;}
.fsb{font-size:28.440000pt;}
.fsc{font-size:29.865600pt;}
.fs3{font-size:31.995733pt;}
.fs7{font-size:33.773333pt;}
.fsa{font-size:35.551467pt;}
.fs4{font-size:39.999467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs8{font-size:63.999467pt;}
.fs5{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:48.000000pt;}
.y198{bottom:91.465692pt;}
.yda{bottom:100.082567pt;}
.y205{bottom:106.356841pt;}
.y289{bottom:108.472400pt;}
.y212{bottom:109.152667pt;}
.y28a{bottom:110.664533pt;}
.y31{bottom:110.665333pt;}
.y234{bottom:110.665467pt;}
.y271{bottom:110.666667pt;}
.y54{bottom:110.666724pt;}
.y306{bottom:110.667409pt;}
.y1ca{bottom:110.668000pt;}
.y253{bottom:110.669333pt;}
.y88{bottom:111.197333pt;}
.y213{bottom:111.420400pt;}
.y211{bottom:111.422667pt;}
.y197{bottom:112.102234pt;}
.y344{bottom:112.332008pt;}
.yed{bottom:112.556000pt;}
.y176{bottom:114.522366pt;}
.y116{bottom:116.410667pt;}
.y378{bottom:116.943150pt;}
.y2cf{bottom:117.317333pt;}
.yfd{bottom:120.190667pt;}
.y1cf{bottom:121.171891pt;}
.y305{bottom:123.365917pt;}
.yd9{bottom:124.119600pt;}
.y196{bottom:124.801809pt;}
.y343{bottom:124.955850pt;}
.y53{bottom:125.331074pt;}
.y288{bottom:125.782667pt;}
.y204{bottom:126.992317pt;}
.y130{bottom:127.974667pt;}
.y233{bottom:127.974800pt;}
.y30{bottom:127.976000pt;}
.y1c9{bottom:127.977333pt;}
.y1ed{bottom:127.978667pt;}
.y87{bottom:128.506667pt;}
.y210{bottom:128.732000pt;}
.yd8{bottom:128.806267pt;}
.y377{bottom:129.641658pt;}
.yec{bottom:129.866667pt;}
.y1cd{bottom:132.056667pt;}
.y1ce{bottom:133.794667pt;}
.y115{bottom:133.796000pt;}
.y1cc{bottom:133.796159pt;}
.y175{bottom:133.873591pt;}
.y2ce{bottom:134.702667pt;}
.y303{bottom:135.989759pt;}
.y304{bottom:136.216956pt;}
.y195{bottom:137.500317pt;}
.yfc{bottom:137.501333pt;}
.y203{bottom:139.691891pt;}
.y52{bottom:139.995424pt;}
.yd7{bottom:140.069333pt;}
.y342{bottom:142.265500pt;}
.y12e{bottom:143.093333pt;}
.yd6{bottom:144.832000pt;}
.y12f{bottom:145.360000pt;}
.y2f{bottom:145.361333pt;}
.y270{bottom:145.362667pt;}
.y1c8{bottom:145.364000pt;}
.y86{bottom:145.893333pt;}
.y20f{bottom:146.042667pt;}
.y1cb{bottom:146.494667pt;}
.y174{bottom:146.497433pt;}
.yeb{bottom:147.177333pt;}
.y194{bottom:150.124159pt;}
.y232{bottom:150.652000pt;}
.y114{bottom:151.105333pt;}
.y202{bottom:152.314667pt;}
.y302{bottom:153.300476pt;}
.y51{bottom:154.660840pt;}
.yfb{bottom:154.886667pt;}
.y341{bottom:154.965075pt;}
.yd5{bottom:156.094667pt;}
.y2cd{bottom:158.665333pt;}
.y376{bottom:159.650883pt;}
.yd4{bottom:160.856000pt;}
.y2ac{bottom:162.670667pt;}
.y2e{bottom:162.672000pt;}
.y1c7{bottom:162.673333pt;}
.y1ec{bottom:162.674667pt;}
.y193{bottom:162.822667pt;}
.y173{bottom:163.202291pt;}
.y85{bottom:163.202667pt;}
.y20e{bottom:163.428000pt;}
.yea{bottom:164.562667pt;}
.y300{bottom:165.998984pt;}
.y301{bottom:166.226181pt;}
.y50{bottom:169.325190pt;}
.yfa{bottom:172.196000pt;}
.y340{bottom:172.274725pt;}
.y113{bottom:173.782667pt;}
.y172{bottom:175.826133pt;}
.y287{bottom:177.789333pt;}
.y10c{bottom:179.981333pt;}
.y2d{bottom:179.982667pt;}
.y1c6{bottom:179.984000pt;}
.y1eb{bottom:179.985333pt;}
.y84{bottom:180.513333pt;}
.y20d{bottom:180.738667pt;}
.yd3{bottom:181.115233pt;}
.ye9{bottom:181.872000pt;}
.y2cc{bottom:182.702667pt;}
.y2ff{bottom:183.309701pt;}
.y4f{bottom:183.989540pt;}
.y33f{bottom:184.974300pt;}
.y231{bottom:185.577333pt;}
.yf9{bottom:189.506667pt;}
.y171{bottom:192.532058pt;}
.y2fe{bottom:196.008209pt;}
.y10b{bottom:197.366667pt;}
.y2c{bottom:197.368000pt;}
.y1c5{bottom:197.369333pt;}
.y1ea{bottom:197.370667pt;}
.y33e{bottom:197.597075pt;}
.yd2{bottom:197.745426pt;}
.y83{bottom:197.898667pt;}
.y20c{bottom:198.049333pt;}
.y4e{bottom:198.653890pt;}
.ye8{bottom:199.182667pt;}
.y2cb{bottom:200.012000pt;}
.y375{bottom:202.283950pt;}
.y230{bottom:202.964000pt;}
.y11e{bottom:204.019342pt;}
.y170{bottom:205.154834pt;}
.yf8{bottom:206.892000pt;}
.y2fc{bottom:208.632051pt;}
.y2fd{bottom:208.859248pt;}
.y4d{bottom:213.318240pt;}
.yd1{bottom:214.450283pt;}
.y2b{bottom:214.677333pt;}
.y26f{bottom:214.678667pt;}
.y1c4{bottom:214.680000pt;}
.y252{bottom:214.681333pt;}
.y33d{bottom:214.983525pt;}
.y82{bottom:215.209333pt;}
.y20b{bottom:215.434667pt;}
.ye7{bottom:216.493333pt;}
.y22f{bottom:220.273333pt;}
.y16f{bottom:221.860758pt;}
.y2ca{bottom:222.689333pt;}
.yf7{bottom:224.202667pt;}
.y11d{bottom:224.655884pt;}
.y2fb{bottom:226.017433pt;}
.y33c{bottom:227.607367pt;}
.yd0{bottom:231.080475pt;}
.y2ab{bottom:231.986667pt;}
.y2a{bottom:231.988000pt;}
.y1c3{bottom:231.989333pt;}
.y1e9{bottom:231.990667pt;}
.y374{bottom:232.293175pt;}
.y81{bottom:232.518667pt;}
.y20a{bottom:232.744000pt;}
.ye6{bottom:233.878667pt;}
.y16e{bottom:234.560333pt;}
.y396{bottom:235.619000pt;}
.y4c{bottom:235.995290pt;}
.y11c{bottom:237.354392pt;}
.y22e{bottom:237.584000pt;}
.y2fa{bottom:238.641276pt;}
.y33b{bottom:240.305875pt;}
.yf6{bottom:241.512000pt;}
.y373{bottom:244.992750pt;}
.ycd{bottom:245.972000pt;}
.y16d{bottom:247.183108pt;}
.yce{bottom:247.785333pt;}
.ycc{bottom:247.786875pt;}
.y395{bottom:248.318575pt;}
.y10a{bottom:249.297333pt;}
.y29{bottom:249.298667pt;}
.y1c2{bottom:249.300000pt;}
.y1e8{bottom:249.301333pt;}
.y80{bottom:249.905333pt;}
.y11b{bottom:249.978234pt;}
.y209{bottom:250.054667pt;}
.y4b{bottom:250.659640pt;}
.ye5{bottom:251.188000pt;}
.y2f9{bottom:251.340850pt;}
.ycf{bottom:252.472000pt;}
.y2aa{bottom:254.664000pt;}
.y22d{bottom:254.969333pt;}
.y33a{bottom:257.616592pt;}
.y2c9{bottom:260.486667pt;}
.y393{bottom:260.942417pt;}
.y394{bottom:261.168547pt;}
.y372{bottom:262.302400pt;}
.yc9{bottom:262.601333pt;}
.y11a{bottom:262.677809pt;}
.y16c{bottom:263.889033pt;}
.y2f7{bottom:263.963626pt;}
.y2f8{bottom:264.190823pt;}
.yca{bottom:264.416000pt;}
.yc8{bottom:264.417158pt;}
.y4a{bottom:265.323990pt;}
.y109{bottom:266.682667pt;}
.y28{bottom:266.684000pt;}
.y1c1{bottom:266.685333pt;}
.y1e7{bottom:266.686667pt;}
.y7f{bottom:267.214667pt;}
.y208{bottom:267.365333pt;}
.ye4{bottom:268.498667pt;}
.ycb{bottom:269.177333pt;}
.y102{bottom:270.010600pt;}
.y339{bottom:270.315100pt;}
.y243{bottom:271.974667pt;}
.y22c{bottom:272.280000pt;}
.y371{bottom:274.926242pt;}
.y119{bottom:275.300584pt;}
.y16b{bottom:276.512875pt;}
.y2c8{bottom:277.797333pt;}
.y392{bottom:278.327800pt;}
.yc7{bottom:281.046283pt;}
.y2f6{bottom:281.350075pt;}
.y12d{bottom:281.801333pt;}
.y338{bottom:282.938942pt;}
.y27{bottom:283.993333pt;}
.y12c{bottom:283.994667pt;}
.y1c0{bottom:283.996000pt;}
.y1e6{bottom:283.997333pt;}
.y7e{bottom:284.525333pt;}
.y207{bottom:284.750667pt;}
.ye3{bottom:285.884000pt;}
.y118{bottom:288.000159pt;}
.y49{bottom:288.001040pt;}
.y108{bottom:289.360000pt;}
.y22b{bottom:289.589333pt;}
.y2a9{bottom:289.966667pt;}
.y101{bottom:290.647142pt;}
.y391{bottom:290.951642pt;}
.y370{bottom:292.311625pt;}
.y16a{bottom:293.217733pt;}
.y2f5{bottom:293.972851pt;}
.y2c7{bottom:295.108000pt;}
.yc6{bottom:297.752208pt;}
.y337{bottom:300.324325pt;}
.y117{bottom:300.698667pt;}
.y12b{bottom:301.304000pt;}
.y26e{bottom:301.305333pt;}
.y1bf{bottom:301.306667pt;}
.y7d{bottom:301.836000pt;}
.y206{bottom:302.060000pt;}
.y48{bottom:302.666457pt;}
.ye2{bottom:303.194667pt;}
.y100{bottom:303.345650pt;}
.y36f{bottom:304.935467pt;}
.y169{bottom:305.841575pt;}
.y26{bottom:306.670667pt;}
.y2f4{bottom:306.672425pt;}
.y22a{bottom:306.900000pt;}
.y2a8{bottom:307.276000pt;}
.y390{bottom:308.261292pt;}
.y242{bottom:310.300000pt;}
.y2c6{bottom:312.493333pt;}
.y336{bottom:312.948167pt;}
.yc5{bottom:314.381333pt;}
.yc3{bottom:314.381809pt;}
.yff{bottom:315.969492pt;}
.y47{bottom:317.330807pt;}
.y36e{bottom:317.635042pt;}
.y12a{bottom:318.689333pt;}
.y26d{bottom:318.690667pt;}
.y1be{bottom:318.692000pt;}
.y251{bottom:318.693333pt;}
.yc4{bottom:319.142667pt;}
.y7c{bottom:319.221333pt;}
.y2f3{bottom:319.372000pt;}
.ye1{bottom:320.505333pt;}
.y38f{bottom:320.960867pt;}
.y168{bottom:322.546433pt;}
.y229{bottom:324.285333pt;}
.y2a7{bottom:324.586667pt;}
.y241{bottom:327.610667pt;}
.yfe{bottom:328.668000pt;}
.yc0{bottom:329.272000pt;}
.y2c5{bottom:329.802667pt;}
.y335{bottom:330.257817pt;}
.y21a{bottom:330.557858pt;}
.y107{bottom:330.633333pt;}
.yc1{bottom:331.086667pt;}
.ybf{bottom:331.086875pt;}
.y46{bottom:331.995157pt;}
.y38d{bottom:333.659375pt;}
.y38e{bottom:333.886572pt;}
.y36d{bottom:334.944692pt;}
.y167{bottom:335.170275pt;}
.yc2{bottom:335.849333pt;}
.y1bd{bottom:336.001333pt;}
.y1e5{bottom:336.002667pt;}
.y7b{bottom:336.530667pt;}
.y2f2{bottom:336.681650pt;}
.ye0{bottom:337.890667pt;}
.y129{bottom:341.366667pt;}
.y228{bottom:341.596000pt;}
.y2a6{bottom:341.972000pt;}
.y334{bottom:342.957392pt;}
.y240{bottom:344.920000pt;}
.y45{bottom:346.659507pt;}
.y2c4{bottom:347.113333pt;}
.y36c{bottom:347.644267pt;}
.ybe{bottom:347.716000pt;}
.ybc{bottom:347.717809pt;}
.y106{bottom:347.944000pt;}
.y2f1{bottom:349.305492pt;}
.y218{bottom:349.454667pt;}
.y38c{bottom:350.970092pt;}
.y219{bottom:351.193333pt;}
.y217{bottom:351.193650pt;}
.y166{bottom:351.876199pt;}
.ybd{bottom:352.478667pt;}
.y26c{bottom:353.310667pt;}
.y1bc{bottom:353.312000pt;}
.y1e4{bottom:353.313333pt;}
.y7a{bottom:353.841333pt;}
.ydf{bottom:355.200000pt;}
.y333{bottom:355.656966pt;}
.y227{bottom:358.905333pt;}
.y2a5{bottom:359.282667pt;}
.y36a{bottom:360.268109pt;}
.y36b{bottom:360.494239pt;}
.y44{bottom:361.323857pt;}
.y2ef{bottom:362.004000pt;}
.y23f{bottom:362.230667pt;}
.y2f0{bottom:362.231197pt;}
.y38b{bottom:363.593934pt;}
.y216{bottom:363.893224pt;}
.ybb{bottom:364.422667pt;}
.yb9{bottom:364.422875pt;}
.y2c3{bottom:364.498667pt;}
.y165{bottom:364.498975pt;}
.y105{bottom:365.254667pt;}
.yba{bottom:369.184000pt;}
.y1bb{bottom:370.697333pt;}
.y1e3{bottom:370.698667pt;}
.y79{bottom:371.226667pt;}
.yde{bottom:372.510667pt;}
.y332{bottom:372.966617pt;}
.y215{bottom:374.777333pt;}
.y226{bottom:376.292000pt;}
.y38a{bottom:376.292442pt;}
.y214{bottom:376.516000pt;}
.y2a4{bottom:376.592000pt;}
.y369{bottom:377.653491pt;}
.y2ee{bottom:379.314717pt;}
.y23e{bottom:379.616000pt;}
.yb8{bottom:381.052000pt;}
.yb6{bottom:381.052475pt;}
.y164{bottom:381.204900pt;}
.y2c2{bottom:381.809333pt;}
.y104{bottom:382.640000pt;}
.y43{bottom:384.000907pt;}
.y331{bottom:385.666191pt;}
.yb7{bottom:385.814667pt;}
.y26b{bottom:388.006667pt;}
.y1ba{bottom:388.008000pt;}
.y250{bottom:388.009333pt;}
.y78{bottom:388.537333pt;}
.ydd{bottom:389.821333pt;}
.y368{bottom:390.277334pt;}
.y2ed{bottom:392.014292pt;}
.y225{bottom:393.601333pt;}
.y389{bottom:393.603159pt;}
.y163{bottom:393.828742pt;}
.y25{bottom:394.584000pt;}
.y23d{bottom:396.926667pt;}
.yb5{bottom:397.757333pt;}
.yb3{bottom:397.758850pt;}
.y32f{bottom:398.290033pt;}
.y330{bottom:398.516164pt;}
.y2c1{bottom:399.118667pt;}
.y2a3{bottom:399.269333pt;}
.y103{bottom:399.949333pt;}
.yb4{bottom:402.520000pt;}
.y366{bottom:402.975842pt;}
.y367{bottom:403.203039pt;}
.y2eb{bottom:404.637067pt;}
.y2ec{bottom:404.864264pt;}
.y1b9{bottom:405.317333pt;}
.y1e2{bottom:405.318667pt;}
.y77{bottom:405.846667pt;}
.y128{bottom:405.848000pt;}
.y388{bottom:406.301667pt;}
.y42{bottom:406.677957pt;}
.ydc{bottom:407.206667pt;}
.y162{bottom:410.533600pt;}
.y224{bottom:410.912000pt;}
.y24{bottom:413.254667pt;}
.y23c{bottom:414.236000pt;}
.y286{bottom:414.237333pt;}
.yb2{bottom:414.389042pt;}
.y32e{bottom:415.599684pt;}
.y386{bottom:418.925509pt;}
.y387{bottom:419.152706pt;}
.y365{bottom:420.286558pt;}
.y2c0{bottom:421.794667pt;}
.y2ea{bottom:422.023517pt;}
.y26a{bottom:422.702667pt;}
.y1b8{bottom:422.704000pt;}
.y161{bottom:423.157442pt;}
.y76{bottom:423.233333pt;}
.ydb{bottom:424.516000pt;}
.y223{bottom:428.297333pt;}
.y32d{bottom:428.299258pt;}
.y112{bottom:428.448091pt;}
.y41{bottom:429.355007pt;}
.yb1{bottom:431.093900pt;}
.y285{bottom:431.622667pt;}
.y23{bottom:431.925333pt;}
.y364{bottom:432.985066pt;}
.y2a2{bottom:434.570667pt;}
.y2e9{bottom:434.646292pt;}
.y385{bottom:436.310891pt;}
.y23b{bottom:436.913333pt;}
.y160{bottom:439.863366pt;}
.y1b7{bottom:440.013333pt;}
.y1e1{bottom:440.014667pt;}
.y75{bottom:440.542667pt;}
.y32c{bottom:440.997766pt;}
.y222{bottom:445.608000pt;}
.y283{bottom:446.740000pt;}
.y2e7{bottom:447.345867pt;}
.y2e8{bottom:447.573064pt;}
.yb0{bottom:447.724092pt;}
.y284{bottom:448.932000pt;}
.y282{bottom:448.933333pt;}
.y384{bottom:448.934734pt;}
.y111{bottom:449.084633pt;}
.y363{bottom:450.295783pt;}
.y22{bottom:450.596000pt;}
.y2a1{bottom:451.881333pt;}
.y40{bottom:452.032056pt;}
.y15f{bottom:452.486142pt;}
.yf5{bottom:453.014283pt;}
.y269{bottom:457.322667pt;}
.y1b6{bottom:457.324000pt;}
.y1e0{bottom:457.325333pt;}
.y74{bottom:457.853333pt;}
.y32b{bottom:458.308483pt;}
.y383{bottom:461.634308pt;}
.y110{bottom:461.783141pt;}
.y221{bottom:462.917333pt;}
.y362{bottom:462.994291pt;}
.y280{bottom:464.050667pt;}
.yaf{bottom:464.428950pt;}
.y2e6{bottom:464.655517pt;}
.y281{bottom:466.242667pt;}
.y27f{bottom:466.244000pt;}
.y3f{bottom:466.696406pt;}
.y2bf{bottom:467.604000pt;}
.y15e{bottom:469.192066pt;}
.y21{bottom:469.266667pt;}
.y32a{bottom:470.931259pt;}
.yf4{bottom:473.650825pt;}
.y10f{bottom:474.406983pt;}
.y268{bottom:474.633333pt;}
.y1b5{bottom:474.634667pt;}
.y73{bottom:475.238667pt;}
.y23a{bottom:475.241333pt;}
.y361{bottom:475.618133pt;}
.y2e5{bottom:477.355092pt;}
.y382{bottom:478.943959pt;}
.y220{bottom:480.304000pt;}
.yae{bottom:481.059142pt;}
.y15d{bottom:481.890574pt;}
.y27e{bottom:483.629333pt;}
.y329{bottom:483.630833pt;}
.y29f{bottom:484.384000pt;}
.y2be{bottom:484.914667pt;}
.yf3{bottom:486.350124pt;}
.y2a0{bottom:486.576000pt;}
.y29e{bottom:486.577333pt;}
.y10e{bottom:487.106558pt;}
.y20{bottom:487.937333pt;}
.y3e{bottom:489.373456pt;}
.y2e4{bottom:489.978934pt;}
.y381{bottom:491.643533pt;}
.y267{bottom:492.018667pt;}
.y1b4{bottom:492.020000pt;}
.y24f{bottom:492.021333pt;}
.y72{bottom:492.549333pt;}
.y239{bottom:492.550667pt;}
.y360{bottom:492.928850pt;}
.yad{bottom:495.949333pt;}
.y21f{bottom:497.613333pt;}
.yac{bottom:497.764000pt;}
.y15c{bottom:498.520766pt;}
.yf2{bottom:498.973966pt;}
.y10d{bottom:499.729333pt;}
.y187{bottom:500.866667pt;}
.y27d{bottom:500.940000pt;}
.y328{bottom:500.941550pt;}
.y2bd{bottom:502.300000pt;}
.y29d{bottom:503.888000pt;}
.y3d{bottom:504.037806pt;}
.y35f{bottom:505.627358pt;}
.y1f{bottom:506.608000pt;}
.y2e3{bottom:507.364317pt;}
.y380{bottom:508.953183pt;}
.y1b3{bottom:509.329333pt;}
.y1df{bottom:509.330667pt;}
.y71{bottom:509.858667pt;}
.y127{bottom:509.860000pt;}
.y238{bottom:509.861333pt;}
.y15b{bottom:511.220341pt;}
.yf1{bottom:511.672474pt;}
.y327{bottom:513.640058pt;}
.yaa{bottom:514.394114pt;}
.y21e{bottom:514.924000pt;}
.y27c{bottom:516.057333pt;}
.y186{bottom:518.176000pt;}
.y27b{bottom:518.249333pt;}
.y3c{bottom:518.703223pt;}
.yab{bottom:519.156000pt;}
.y2e2{bottom:519.988159pt;}
.y29c{bottom:521.273333pt;}
.y37f{bottom:521.652758pt;}
.y35e{bottom:522.938075pt;}
.yf0{bottom:524.296317pt;}
.y265{bottom:524.446667pt;}
.y1e{bottom:525.278667pt;}
.y325{bottom:526.263900pt;}
.y326{bottom:526.490031pt;}
.y266{bottom:526.638667pt;}
.y1b2{bottom:526.640000pt;}
.y1de{bottom:526.641333pt;}
.y70{bottom:527.169333pt;}
.y237{bottom:527.172000pt;}
.y2bc{bottom:527.622667pt;}
.y15a{bottom:527.849466pt;}
.y21d{bottom:532.233333pt;}
.y2e0{bottom:532.686667pt;}
.y2e1{bottom:532.912797pt;}
.y3b{bottom:533.367573pt;}
.ya9{bottom:534.198667pt;}
.y185{bottom:535.561333pt;}
.y27a{bottom:535.634667pt;}
.y35d{bottom:535.636583pt;}
.yef{bottom:536.995891pt;}
.y29b{bottom:538.584000pt;}
.y37e{bottom:538.962408pt;}
.y159{bottom:540.549041pt;}
.y324{bottom:543.649283pt;}
.y1d{bottom:543.949333pt;}
.y1b1{bottom:544.025333pt;}
.y1dd{bottom:544.026667pt;}
.y264{bottom:544.028000pt;}
.y6f{bottom:544.554667pt;}
.y236{bottom:544.557333pt;}
.y2bb{bottom:544.933333pt;}
.y3a{bottom:548.031923pt;}
.y35b{bottom:548.260425pt;}
.y35c{bottom:548.487623pt;}
.yee{bottom:549.618667pt;}
.y2df{bottom:550.677333pt;}
.y37d{bottom:551.661983pt;}
.y184{bottom:552.872000pt;}
.y279{bottom:552.945333pt;}
.y21c{bottom:554.911400pt;}
.y29a{bottom:555.893333pt;}
.y323{bottom:556.273125pt;}
.y158{bottom:557.179233pt;}
.y1a{bottom:560.504000pt;}
.y1b0{bottom:561.336000pt;}
.y24e{bottom:561.337333pt;}
.y6e{bottom:561.865333pt;}
.y235{bottom:561.868000pt;}
.y2ba{bottom:562.242667pt;}
.y1b{bottom:562.620000pt;}
.y19{bottom:562.621333pt;}
.y39{bottom:562.696273pt;}
.ya8{bottom:565.193333pt;}
.y35a{bottom:565.645808pt;}
.y1c{bottom:568.214667pt;}
.y321{bottom:568.972700pt;}
.y322{bottom:569.198830pt;}
.y157{bottom:569.877741pt;}
.y183{bottom:570.182667pt;}
.y278{bottom:570.256000pt;}
.y298{bottom:571.010667pt;}
.y299{bottom:573.278667pt;}
.y297{bottom:573.280000pt;}
.y6b{bottom:576.982667pt;}
.y359{bottom:578.269650pt;}
.y1af{bottom:578.645333pt;}
.y24d{bottom:578.646667pt;}
.y263{bottom:578.648000pt;}
.y21b{bottom:578.948000pt;}
.y6c{bottom:579.174667pt;}
.y126{bottom:579.176000pt;}
.y6a{bottom:579.177333pt;}
.y18{bottom:581.216000pt;}
.y37c{bottom:581.595475pt;}
.ya7{bottom:582.578667pt;}
.y1dc{bottom:584.012000pt;}
.y38{bottom:584.541333pt;}
.y2b9{bottom:584.920000pt;}
.y6d{bottom:585.146667pt;}
.y320{bottom:586.282350pt;}
.y156{bottom:586.507933pt;}
.y277{bottom:587.565333pt;}
.y182{bottom:587.568000pt;}
.y296{bottom:590.589333pt;}
.y357{bottom:590.969225pt;}
.y358{bottom:591.271088pt;}
.y24c{bottom:596.032000pt;}
.y262{bottom:596.033333pt;}
.y125{bottom:596.561333pt;}
.y69{bottom:596.562667pt;}
.y31f{bottom:598.981925pt;}
.y155{bottom:599.207508pt;}
.ya6{bottom:599.888000pt;}
.y1ae{bottom:601.322667pt;}
.y275{bottom:602.682667pt;}
.y181{bottom:604.877333pt;}
.y276{bottom:604.950667pt;}
.y274{bottom:604.952000pt;}
.y2de{bottom:605.861333pt;}
.y295{bottom:607.900000pt;}
.y356{bottom:608.278875pt;}
.y17{bottom:610.620000pt;}
.y37b{bottom:611.604700pt;}
.y123{bottom:611.678667pt;}
.y261{bottom:613.344000pt;}
.y124{bottom:613.870667pt;}
.y122{bottom:613.872000pt;}
.y68{bottom:613.873333pt;}
.y154{bottom:615.836633pt;}
.y31e{bottom:616.291575pt;}
.ya5{bottom:617.198667pt;}
.y24b{bottom:618.633333pt;}
.y355{bottom:620.978450pt;}
.y180{bottom:622.188000pt;}
.y273{bottom:622.261333pt;}
.y2b8{bottom:622.716000pt;}
.y2dd{bottom:623.170667pt;}
.y37a{bottom:624.304275pt;}
.y294{bottom:625.209333pt;}
.y153{bottom:628.536208pt;}
.y31d{bottom:628.991150pt;}
.y260{bottom:630.653333pt;}
.y121{bottom:631.181333pt;}
.y67{bottom:631.184000pt;}
.y1db{bottom:631.560000pt;}
.y354{bottom:633.602292pt;}
.ya4{bottom:634.584000pt;}
.y17f{bottom:639.498667pt;}
.y1ad{bottom:639.572000pt;}
.y2b7{bottom:640.102667pt;}
.y2dc{bottom:640.557333pt;}
.y31c{bottom:641.613925pt;}
.y152{bottom:645.165333pt;}
.y293{bottom:647.886667pt;}
.y25f{bottom:647.964000pt;}
.y120{bottom:648.566667pt;}
.y66{bottom:648.569333pt;}
.y1da{bottom:648.870667pt;}
.y353{bottom:650.987675pt;}
.ya3{bottom:651.894667pt;}
.y11f{bottom:654.462667pt;}
.y1ab{bottom:654.689333pt;}
.y17e{bottom:656.884000pt;}
.y1ac{bottom:656.957333pt;}
.y1aa{bottom:656.958667pt;}
.y2b6{bottom:657.412000pt;}
.y31b{bottom:658.924642pt;}
.y37{bottom:661.796000pt;}
.y150{bottom:661.871300pt;}
.y352{bottom:663.611517pt;}
.y16{bottom:664.215933pt;}
.y2db{bottom:664.518667pt;}
.y25e{bottom:665.349333pt;}
.y65{bottom:665.880000pt;}
.y1d9{bottom:666.256000pt;}
.y151{bottom:666.557333pt;}
.ya2{bottom:669.204000pt;}
.y31a{bottom:671.624217pt;}
.y1a9{bottom:672.076000pt;}
.y17d{bottom:674.194667pt;}
.y1a8{bottom:674.268000pt;}
.y2b5{bottom:674.722667pt;}
.y351{bottom:676.310025pt;}
.y36{bottom:677.140000pt;}
.y15{bottom:677.519233pt;}
.y14c{bottom:678.501583pt;}
.y25d{bottom:682.660000pt;}
.y292{bottom:683.188000pt;}
.y64{bottom:683.189333pt;}
.y14d{bottom:683.262667pt;}
.y1d8{bottom:683.566667pt;}
.y319{bottom:684.322725pt;}
.ya1{bottom:686.590667pt;}
.y2da{bottom:688.556000pt;}
.y34f{bottom:688.933867pt;}
.y350{bottom:689.161064pt;}
.y1a6{bottom:689.385333pt;}
.y2b3{bottom:689.840000pt;}
.y14e{bottom:691.200000pt;}
.y14b{bottom:691.201158pt;}
.y17c{bottom:691.504000pt;}
.y1a7{bottom:691.577333pt;}
.y24a{bottom:691.578667pt;}
.y1a5{bottom:691.580000pt;}
.y2b4{bottom:692.032000pt;}
.y2b2{bottom:692.033333pt;}
.y35{bottom:692.409333pt;}
.y14f{bottom:695.962667pt;}
.y25c{bottom:699.969333pt;}
.y291{bottom:700.498667pt;}
.y63{bottom:700.500000pt;}
.y1d7{bottom:700.877333pt;}
.y318{bottom:701.633442pt;}
.ya0{bottom:703.900000pt;}
.y14{bottom:704.202633pt;}
.y34e{bottom:706.319250pt;}
.y34{bottom:707.754667pt;}
.y14a{bottom:707.830283pt;}
.y17b{bottom:708.889333pt;}
.y249{bottom:708.964000pt;}
.y1a4{bottom:708.965333pt;}
.y2b1{bottom:709.418667pt;}
.y2d9{bottom:712.518667pt;}
.y272{bottom:714.254667pt;}
.y317{bottom:714.331950pt;}
.y25b{bottom:717.356000pt;}
.y13{bottom:717.507000pt;}
.y290{bottom:717.884000pt;}
.y62{bottom:717.885333pt;}
.y1d6{bottom:718.262667pt;}
.y34d{bottom:718.943092pt;}
.y9f{bottom:721.210667pt;}
.y33{bottom:723.098667pt;}
.y149{bottom:724.536208pt;}
.y17a{bottom:726.200000pt;}
.y248{bottom:726.274667pt;}
.y1a3{bottom:726.276000pt;}
.y2b0{bottom:726.729333pt;}
.y316{bottom:726.955792pt;}
.y2d8{bottom:729.904000pt;}
.y12{bottom:730.886033pt;}
.y34b{bottom:731.642666pt;}
.y34c{bottom:731.868797pt;}
.y25a{bottom:734.665333pt;}
.y28f{bottom:735.194667pt;}
.y61{bottom:735.196000pt;}
.y1d5{bottom:735.572000pt;}
.y9e{bottom:738.596000pt;}
.y148{bottom:741.165333pt;}
.y246{bottom:741.392000pt;}
.y179{bottom:743.510667pt;}
.y247{bottom:743.584000pt;}
.y1a2{bottom:743.585333pt;}
.y2af{bottom:744.038667pt;}
.y11{bottom:744.189333pt;}
.y315{bottom:744.265442pt;}
.y34a{bottom:748.952317pt;}
.y28d{bottom:750.312000pt;}
.y259{bottom:751.976000pt;}
.y28e{bottom:752.504000pt;}
.y60{bottom:752.505333pt;}
.y1d4{bottom:752.882667pt;}
.y2d7{bottom:753.866667pt;}
.y9d{bottom:755.906667pt;}
.y313{bottom:756.965017pt;}
.y314{bottom:757.192214pt;}
.y146{bottom:757.871300pt;}
.y178{bottom:760.896000pt;}
.y1a1{bottom:760.970667pt;}
.y245{bottom:760.972000pt;}
.y2ae{bottom:761.424000pt;}
.y349{bottom:761.651891pt;}
.y147{bottom:762.557333pt;}
.yf{bottom:768.150667pt;}
.yd{bottom:768.152000pt;}
.y10{bottom:768.451867pt;}
.y258{bottom:769.361333pt;}
.y5f{bottom:769.890667pt;}
.y1d3{bottom:770.268000pt;}
.y9c{bottom:773.216000pt;}
.ye{bottom:773.518667pt;}
.y312{bottom:774.274667pt;}
.y348{bottom:774.501864pt;}
.y142{bottom:774.502442pt;}
.y95{bottom:775.630371pt;}
.y2d6{bottom:777.904000pt;}
.y177{bottom:778.205333pt;}
.y1a0{bottom:778.281333pt;}
.y143{bottom:779.262667pt;}
.yb{bottom:782.816000pt;}
.y8{bottom:782.816400pt;}
.yc{bottom:783.117200pt;}
.y9{bottom:783.118800pt;}
.y2ad{bottom:784.101333pt;}
.y257{bottom:786.672000pt;}
.y311{bottom:786.974241pt;}
.y144{bottom:787.200000pt;}
.y141{bottom:787.200950pt;}
.y5e{bottom:787.201333pt;}
.y1d2{bottom:787.578667pt;}
.ya{bottom:788.182667pt;}
.y94{bottom:790.294721pt;}
.y9b{bottom:790.526667pt;}
.y347{bottom:791.661116pt;}
.y145{bottom:791.962667pt;}
.y19f{bottom:795.592000pt;}
.y5{bottom:797.556000pt;}
.y7{bottom:797.781600pt;}
.y379{bottom:799.598084pt;}
.y2d5{bottom:801.865333pt;}
.y6{bottom:802.846667pt;}
.y140{bottom:803.831142pt;}
.y256{bottom:803.981333pt;}
.y310{bottom:804.284958pt;}
.y5d{bottom:804.512000pt;}
.y1d1{bottom:804.888000pt;}
.y93{bottom:804.960138pt;}
.y9a{bottom:807.912000pt;}
.y192{bottom:811.012033pt;}
.y19e{bottom:812.901333pt;}
.y30f{bottom:816.983466pt;}
.y92{bottom:819.624488pt;}
.y13f{bottom:820.536000pt;}
.y255{bottom:821.366667pt;}
.y5c{bottom:821.897333pt;}
.y99{bottom:825.222667pt;}
.y201{bottom:825.299658pt;}
.y2d4{bottom:825.904000pt;}
.y1d0{bottom:827.565333pt;}
.y19d{bottom:828.018667pt;}
.y30d{bottom:829.607309pt;}
.y30e{bottom:829.834506pt;}
.y19c{bottom:830.286667pt;}
.y4{bottom:830.817867pt;}
.y91{bottom:834.288838pt;}
.y346{bottom:834.294183pt;}
.y191{bottom:834.973333pt;}
.y244{bottom:835.577333pt;}
.y28b{bottom:837.014667pt;}
.y13d{bottom:837.165967pt;}
.y28c{bottom:839.206667pt;}
.y5b{bottom:839.208000pt;}
.y190{bottom:839.736000pt;}
.y13e{bottom:841.928000pt;}
.y98{bottom:842.532000pt;}
.y2d3{bottom:843.213333pt;}
.y254{bottom:843.968000pt;}
.y200{bottom:845.935134pt;}
.y30c{bottom:846.992691pt;}
.y19b{bottom:847.597333pt;}
.y18f{bottom:850.998667pt;}
.y13a{bottom:853.871300pt;}
.y18e{bottom:855.760000pt;}
.y5a{bottom:856.517333pt;}
.y90{bottom:856.965888pt;}
.y1ff{bottom:858.634708pt;}
.y30b{bottom:859.616533pt;}
.y2d2{bottom:860.524000pt;}
.y3{bottom:860.827467pt;}
.y1f7{bottom:860.976525pt;}
.y19a{bottom:864.906667pt;}
.y97{bottom:865.210067pt;}
.y13c{bottom:866.494667pt;}
.y139{bottom:866.495142pt;}
.y18d{bottom:867.024000pt;}
.y13b{bottom:871.256000pt;}
.y1fe{bottom:871.258551pt;}
.y8f{bottom:871.630238pt;}
.y18c{bottom:871.710667pt;}
.y30a{bottom:872.316108pt;}
.y59{bottom:873.902667pt;}
.y345{bottom:876.926184pt;}
.y1f5{bottom:879.873333pt;}
.y1f6{bottom:881.612000pt;}
.y1f4{bottom:881.613492pt;}
.y137{bottom:883.200000pt;}
.y135{bottom:883.200239pt;}
.y1fd{bottom:883.957058pt;}
.y2d1{bottom:884.561333pt;}
.y8e{bottom:886.294588pt;}
.y199{bottom:887.584000pt;}
.y136{bottom:887.962667pt;}
.y96{bottom:889.246667pt;}
.y309{bottom:889.625758pt;}
.y2{bottom:890.834667pt;}
.y58{bottom:891.213333pt;}
.y18b{bottom:891.968392pt;}
.y1f2{bottom:892.497333pt;}
.y1f3{bottom:894.312000pt;}
.y1f1{bottom:894.312633pt;}
.y134{bottom:895.824081pt;}
.y1fc{bottom:896.656633pt;}
.y8d{bottom:900.958938pt;}
.y2d0{bottom:901.872000pt;}
.y308{bottom:902.325333pt;}
.y18a{bottom:904.667967pt;}
.y1f0{bottom:906.936475pt;}
.y138{bottom:908.522350pt;}
.y133{bottom:908.523655pt;}
.y57{bottom:908.524000pt;}
.y1fb{bottom:909.280475pt;}
.y8c{bottom:915.623288pt;}
.y1ef{bottom:919.634983pt;}
.y1{bottom:920.844000pt;}
.y189{bottom:921.298159pt;}
.y1fa{bottom:921.978983pt;}
.y132{bottom:925.152781pt;}
.y56{bottom:925.833333pt;}
.y8b{bottom:930.288705pt;}
.y1ee{bottom:932.258825pt;}
.y1f9{bottom:934.602825pt;}
.y55{bottom:943.218667pt;}
.y188{bottom:944.654667pt;}
.y8a{bottom:944.953055pt;}
.y131{bottom:944.957333pt;}
.y307{bottom:945.183464pt;}
.y1f8{bottom:947.301333pt;}
.y89{bottom:994.393333pt;}
.h17{height:21.330000pt;}
.h4{height:24.828689pt;}
.ha{height:26.174333pt;}
.h12{height:26.663600pt;}
.hb{height:30.277266pt;}
.h14{height:30.396504pt;}
.h16{height:31.999600pt;}
.h1{height:33.066253pt;}
.h7{height:33.108919pt;}
.h5{height:34.148438pt;}
.h10{height:34.772899pt;}
.hf{height:36.052883pt;}
.h18{height:36.479544pt;}
.h3{height:37.248000pt;}
.h6{height:38.249522pt;}
.h1a{height:38.566677pt;}
.h9{height:39.266667pt;}
.h11{height:39.332842pt;}
.he{height:40.000000pt;}
.h19{height:43.946667pt;}
.hc{height:45.421875pt;}
.h13{height:45.600000pt;}
.h15{height:47.999600pt;}
.hd{height:49.663586pt;}
.h8{height:63.026667pt;}
.h2{height:78.240000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x29{left:48.000000pt;}
.x64{left:51.477067pt;}
.x5a{left:53.291333pt;}
.x2a{left:63.496000pt;}
.x70{left:96.000000pt;}
.x5e{left:98.645600pt;}
.x53{left:100.690251pt;}
.x4e{left:133.945592pt;}
.x6f{left:207.496000pt;}
.x73{left:219.514667pt;}
.x43{left:221.329333pt;}
.x65{left:222.689333pt;}
.x5b{left:224.733571pt;}
.x5c{left:234.860000pt;}
.x42{left:238.866667pt;}
.x41{left:252.321333pt;}
.x57{left:265.476528pt;}
.x1{left:266.682667pt;}
.x40{left:270.160000pt;}
.x39{left:273.334667pt;}
.x34{left:276.512172pt;}
.x2b{left:282.632000pt;}
.x59{left:284.900311pt;}
.x77{left:286.412000pt;}
.x3e{left:287.924000pt;}
.xe{left:291.779600pt;}
.x5d{left:292.988340pt;}
.x3a{left:294.500000pt;}
.x54{left:295.939010pt;}
.x84{left:297.222667pt;}
.xf{left:298.355600pt;}
.x3f{left:303.345333pt;}
.x90{left:305.309465pt;}
.x3d{left:307.729333pt;}
.x3b{left:309.921333pt;}
.x91{left:311.130192pt;}
.x10{left:312.869600pt;}
.x67{left:314.608000pt;}
.x11{left:318.085333pt;}
.x80{left:319.370667pt;}
.x12{left:322.998667pt;}
.xa5{left:324.509952pt;}
.x98{left:325.491613pt;}
.x3c{left:326.550667pt;}
.x35{left:329.952000pt;}
.x44{left:337.058667pt;}
.x2{left:341.972000pt;}
.x75{left:343.332000pt;}
.x38{left:348.624000pt;}
.x45{left:350.740000pt;}
.x3{left:353.612000pt;}
.x81{left:356.182667pt;}
.x37{left:357.316000pt;}
.x8c{left:359.054667pt;}
.x1e{left:360.566667pt;}
.x6e{left:362.608000pt;}
.x4c{left:364.497333pt;}
.x1f{left:365.480000pt;}
.xaa{left:367.746745pt;}
.x9b{left:368.730200pt;}
.xa1{left:371.451232pt;}
.x4d{left:372.661333pt;}
.x9c{left:374.549860pt;}
.x13{left:376.365067pt;}
.x93{left:377.498429pt;}
.x55{left:378.559844pt;}
.x46{left:380.145333pt;}
.x8f{left:383.545287pt;}
.x6b{left:386.872000pt;}
.x47{left:392.088000pt;}
.x6c{left:393.449333pt;}
.x82{left:395.565333pt;}
.x14{left:397.228267pt;}
.x83{left:400.328000pt;}
.xad{left:413.252310pt;}
.xae{left:415.595747pt;}
.xa0{left:419.073037pt;}
.x15{left:424.062667pt;}
.xa2{left:426.253747pt;}
.x16{left:428.976000pt;}
.x94{left:430.108972pt;}
.xa3{left:432.074474pt;}
.x20{left:436.383200pt;}
.x8e{left:437.592612pt;}
.xac{left:441.598622pt;}
.xa4{left:443.715929pt;}
.x95{left:445.226649pt;}
.x4{left:450.368000pt;}
.x9f{left:453.541939pt;}
.x5{left:461.933333pt;}
.x96{left:472.742039pt;}
.x21{left:473.877333pt;}
.x92{left:475.689202pt;}
.x97{left:478.561699pt;}
.x76{left:479.470667pt;}
.x66{left:484.534667pt;}
.x22{left:486.198667pt;}
.x48{left:490.356000pt;}
.x99{left:497.082001pt;}
.x49{left:498.520000pt;}
.x88{left:501.089333pt;}
.x17{left:503.584000pt;}
.x89{left:505.852000pt;}
.x18{left:508.573333pt;}
.x9a{left:512.199679pt;}
.x8a{left:525.808000pt;}
.xab{left:528.679134pt;}
.x8b{left:530.570667pt;}
.xa7{left:532.609751pt;}
.x6{left:535.936133pt;}
.x4a{left:538.280000pt;}
.x36{left:543.798667pt;}
.x4b{left:546.141333pt;}
.xa6{left:548.332221pt;}
.xa8{left:549.541806pt;}
.x6d{left:550.601333pt;}
.x31{left:554.834667pt;}
.x9d{left:556.571052pt;}
.x74{left:557.556000pt;}
.x7{left:558.914933pt;}
.x32{left:563.754667pt;}
.x33{left:567.609333pt;}
.x8{left:574.866667pt;}
.x9{left:579.780000pt;}
.x8d{left:590.362667pt;}
.x5f{left:592.401131pt;}
.x19{left:597.164533pt;}
.x23{left:599.054667pt;}
.x24{left:603.968000pt;}
.x1a{left:612.358667pt;}
.x86{left:614.173333pt;}
.x1b{left:617.272000pt;}
.x87{left:618.860000pt;}
.xa9{left:620.596918pt;}
.x25{left:623.394667pt;}
.x9e{left:625.434191pt;}
.x26{left:631.332000pt;}
.xa{left:641.840000pt;}
.x4f{left:643.877351pt;}
.xb{left:646.828000pt;}
.x61{left:652.571045pt;}
.x27{left:655.369333pt;}
.x60{left:657.862712pt;}
.x30{left:659.301333pt;}
.x78{left:664.668000pt;}
.x68{left:668.069333pt;}
.x6a{left:670.790667pt;}
.x28{left:674.041333pt;}
.x79{left:676.460000pt;}
.x69{left:679.181333pt;}
.x7a{left:681.221333pt;}
.x50{left:682.582667pt;}
.x51{left:686.060000pt;}
.x2c{left:688.176000pt;}
.x58{left:689.688000pt;}
.x56{left:691.729333pt;}
.x2d{left:696.340000pt;}
.x7b{left:698.608000pt;}
.x7c{left:703.370667pt;}
.xc{left:712.742667pt;}
.x63{left:714.932932pt;}
.x85{left:716.749333pt;}
.xd{left:717.656000pt;}
.x62{left:722.037910pt;}
.x52{left:723.022738pt;}
.x7d{left:728.088000pt;}
.x71{left:729.826667pt;}
.x1c{left:731.489333pt;}
.x7f{left:733.757333pt;}
.x1d{left:736.402667pt;}
.x72{left:738.066667pt;}
.x2e{left:742.148000pt;}
.x2f{left:755.602667pt;}
.x7e{left:760.441333pt;}
}




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