
    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_bca5bbdc6c65e6ff2cde17b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_0a83fa23487189529967f4ca.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.263000;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_a9990f4f372f172cc50a4018.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_706ba2bfb445008edacd152c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_4fa6763b5b311340ee7e09bf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_d1166b21928071c89877e767.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.896973;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_409fe9cee0b9101c7a6b4c42.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.710938;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_74954b68295afe88f033f480.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f7946c14fe7c8460a19b69e2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a1d1b712cd89712c2b0718a7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093262;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_0a83fa23487189529967f4ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.263000;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_e74fdc0248b395ca1701c818.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973145;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_ee203cf4840ac2561a50aa64.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.104004;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_c4eb7699424dcb7677cf94eb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f1e5fa082684baa23f3e8473.woff2')format("woff");}.fff{font-family:fff;line-height:1.095703;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_96feab29819737d7b55ae8d4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_3bcbc1180a7a698389150f04.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_d1166b21928071c89877e767.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.896973;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;}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls13{letter-spacing:-0.936000px;}
.ls42{letter-spacing:-0.576000px;}
.ls2b{letter-spacing:-0.432000px;}
.ls3c{letter-spacing:-0.358560px;}
.ls1c{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.288000px;}
.ls3b{letter-spacing:-0.264960px;}
.ls3d{letter-spacing:-0.239040px;}
.ls23{letter-spacing:-0.227684px;}
.lsf{letter-spacing:-0.216000px;}
.ls34{letter-spacing:-0.177594px;}
.ls24{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.088797px;}
.ls21{letter-spacing:-0.084240px;}
.ls25{letter-spacing:-0.075895px;}
.ls1e{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.072000px;}
.ls3e{letter-spacing:0.077688px;}
.ls1a{letter-spacing:0.084240px;}
.ls39{letter-spacing:0.119520px;}
.lse{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.149760px;}
.ls33{letter-spacing:0.168480px;}
.ls1d{letter-spacing:0.177594px;}
.ls38{letter-spacing:0.179280px;}
.ls2a{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.186473px;}
.ls29{letter-spacing:0.216000px;}
.ls20{letter-spacing:0.252720px;}
.ls35{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.288000px;}
.ls2f{letter-spacing:0.345384px;}
.ls3a{letter-spacing:0.358560px;}
.ls1f{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.511200px;}
.ls9{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.864000px;}
.ls41{letter-spacing:0.896400px;}
.ls14{letter-spacing:1.347840px;}
.ls16{letter-spacing:1.432080px;}
.ls15{letter-spacing:1.507896px;}
.ls6{letter-spacing:1.836000px;}
.ls17{letter-spacing:2.021760px;}
.ls4{letter-spacing:2.052000px;}
.ls48{letter-spacing:2.160000px;}
.ls3{letter-spacing:2.451600px;}
.ls2{letter-spacing:2.592000px;}
.ls0{letter-spacing:2.736000px;}
.lsb{letter-spacing:2.880000px;}
.ls1{letter-spacing:3.168000px;}
.lsc{letter-spacing:3.600000px;}
.lsd{letter-spacing:4.320000px;}
.ls28{letter-spacing:6.480000px;}
.ls44{letter-spacing:7.920000px;}
.ls45{letter-spacing:8.640000px;}
.ls47{letter-spacing:10.278720px;}
.ls26{letter-spacing:10.800000px;}
.ls2d{letter-spacing:13.752000px;}
.ls2c{letter-spacing:19.512000px;}
.lsa{letter-spacing:23.760000px;}
.ls30{letter-spacing:25.200000px;}
.ls27{letter-spacing:26.640000px;}
.ls37{letter-spacing:27.360000px;}
.ls3f{letter-spacing:33.984000px;}
.ls40{letter-spacing:53.424000px;}
.ls46{letter-spacing:54.864000px;}
.ls43{letter-spacing:64.224000px;}
.ls36{letter-spacing:73.584000px;}
.ls4a{letter-spacing:89.280000px;}
.ls2e{letter-spacing:176.549760px;}
.ls32{letter-spacing:308.309760px;}
.ls49{letter-spacing:431.280000px;}
.ls18{letter-spacing:846.000000px;}
.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;}
}
.ws0{word-spacing:-44.352000px;}
.ws1{word-spacing:-33.264000px;}
.ws2{word-spacing:-31.212000px;}
.ws26{word-spacing:-30.888000px;}
.ws27{word-spacing:-25.839856px;}
.ws21{word-spacing:-25.777440px;}
.ws77{word-spacing:-25.662263px;}
.ws2b{word-spacing:-25.573466px;}
.ws95{word-spacing:-25.484669px;}
.ws2a{word-spacing:-24.598080px;}
.ws94{word-spacing:-24.513840px;}
.ws22{word-spacing:-24.345360px;}
.ws2c{word-spacing:-21.857663px;}
.ws2d{word-spacing:-21.096000px;}
.ws62{word-spacing:-20.952000px;}
.ws29{word-spacing:-20.808000px;}
.ws28{word-spacing:-20.736000px;}
.ws61{word-spacing:-20.664000px;}
.ws8f{word-spacing:-20.592000px;}
.ws3e{word-spacing:-20.520000px;}
.wsd{word-spacing:-18.864000px;}
.wsb{word-spacing:-18.288000px;}
.ws5b{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.ws81{word-spacing:-17.928000px;}
.ws93{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.wse7{word-spacing:-17.568000px;}
.wse6{word-spacing:-17.064000px;}
.wsa8{word-spacing:-15.298560px;}
.wsa6{word-spacing:-15.059520px;}
.wsa7{word-spacing:-14.700960px;}
.wsda{word-spacing:-9.720000px;}
.wsa5{word-spacing:-9.000000px;}
.ws70{word-spacing:-5.256000px;}
.ws3c{word-spacing:-4.680000px;}
.ws39{word-spacing:-4.536000px;}
.wsdd{word-spacing:-4.320000px;}
.wsc7{word-spacing:-3.600000px;}
.ws92{word-spacing:-3.456000px;}
.wsce{word-spacing:-3.312000px;}
.ws91{word-spacing:-3.240000px;}
.wsa3{word-spacing:-3.096000px;}
.wsd1{word-spacing:-3.024000px;}
.wsd0{word-spacing:-2.880000px;}
.ws35{word-spacing:-2.376000px;}
.wsc6{word-spacing:-2.304000px;}
.wsc5{word-spacing:-2.160000px;}
.ws6b{word-spacing:-2.088000px;}
.ws23{word-spacing:-2.052000px;}
.ws36{word-spacing:-1.973261px;}
.ws37{word-spacing:-1.944000px;}
.wsd9{word-spacing:-1.872000px;}
.ws8{word-spacing:-1.836000px;}
.ws89{word-spacing:-1.800000px;}
.ws74{word-spacing:-1.656000px;}
.ws55{word-spacing:-1.440000px;}
.wsaf{word-spacing:-1.152000px;}
.ws4d{word-spacing:-0.936000px;}
.wsaa{word-spacing:-0.896400px;}
.wsd4{word-spacing:-0.864000px;}
.ws49{word-spacing:-0.720000px;}
.ws32{word-spacing:-0.589680px;}
.ws4e{word-spacing:-0.576000px;}
.ws33{word-spacing:-0.532781px;}
.ws7b{word-spacing:-0.505440px;}
.wsb0{word-spacing:-0.432000px;}
.ws25{word-spacing:-0.421200px;}
.ws4f{word-spacing:-0.360000px;}
.ws30{word-spacing:-0.288000px;}
.ws2e{word-spacing:-0.216000px;}
.wsbe{word-spacing:-0.179280px;}
.ws1b{word-spacing:-0.144000px;}
.ws9{word-spacing:-0.108000px;}
.ws3d{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.wsa9{word-spacing:0.059760px;}
.ws31{word-spacing:0.072000px;}
.ws7{word-spacing:0.108000px;}
.wsae{word-spacing:0.132480px;}
.ws43{word-spacing:0.144000px;}
.wsad{word-spacing:0.168480px;}
.ws1a{word-spacing:0.179280px;}
.ws8a{word-spacing:0.216000px;}
.wsbd{word-spacing:0.239040px;}
.ws24{word-spacing:0.252720px;}
.ws7c{word-spacing:0.266390px;}
.ws6{word-spacing:0.288000px;}
.wsbc{word-spacing:0.358560px;}
.ws2f{word-spacing:0.360000px;}
.ws3b{word-spacing:0.504000px;}
.wsca{word-spacing:0.537840px;}
.wsc8{word-spacing:0.576000px;}
.ws1d{word-spacing:0.720000px;}
.wsc9{word-spacing:0.776880px;}
.ws86{word-spacing:0.792000px;}
.ws20{word-spacing:0.936000px;}
.ws1e{word-spacing:1.008000px;}
.ws4a{word-spacing:1.440000px;}
.wsba{word-spacing:1.728000px;}
.ws3a{word-spacing:1.800000px;}
.ws5f{word-spacing:1.944000px;}
.ws57{word-spacing:2.160000px;}
.ws38{word-spacing:2.232000px;}
.wsac{word-spacing:2.274480px;}
.wsd8{word-spacing:2.448000px;}
.ws34{word-spacing:2.520000px;}
.ws88{word-spacing:2.664000px;}
.ws54{word-spacing:2.880000px;}
.wscc{word-spacing:3.168000px;}
.ws97{word-spacing:3.384000px;}
.wsb5{word-spacing:3.600000px;}
.wsb4{word-spacing:3.888000px;}
.ws96{word-spacing:3.960000px;}
.ws66{word-spacing:4.104000px;}
.wsd3{word-spacing:4.176000px;}
.ws58{word-spacing:4.320000px;}
.ws60{word-spacing:4.392000px;}
.wsa1{word-spacing:4.464000px;}
.wsa2{word-spacing:4.608000px;}
.wsa0{word-spacing:4.680000px;}
.ws45{word-spacing:4.824000px;}
.ws7a{word-spacing:4.896000px;}
.ws5a{word-spacing:5.040000px;}
.wsab{word-spacing:5.222880px;}
.ws42{word-spacing:5.544000px;}
.ws1c{word-spacing:5.760000px;}
.ws53{word-spacing:6.264000px;}
.ws56{word-spacing:6.480000px;}
.ws51{word-spacing:6.624000px;}
.ws52{word-spacing:6.696000px;}
.wsbb{word-spacing:6.768000px;}
.ws5e{word-spacing:6.840000px;}
.ws4b{word-spacing:7.200000px;}
.wsb1{word-spacing:7.488000px;}
.ws9c{word-spacing:7.560000px;}
.wsdb{word-spacing:7.776000px;}
.ws99{word-spacing:7.920000px;}
.ws98{word-spacing:8.208000px;}
.ws9f{word-spacing:8.280000px;}
.ws9b{word-spacing:8.424000px;}
.ws80{word-spacing:8.640000px;}
.ws9a{word-spacing:8.712000px;}
.wsd2{word-spacing:8.928000px;}
.wsd6{word-spacing:9.360000px;}
.wsd7{word-spacing:9.648000px;}
.ws46{word-spacing:9.864000px;}
.wsa4{word-spacing:9.936000px;}
.ws44{word-spacing:10.080000px;}
.wse0{word-spacing:10.159200px;}
.ws69{word-spacing:10.440000px;}
.ws9e{word-spacing:10.584000px;}
.ws41{word-spacing:10.800000px;}
.ws84{word-spacing:10.872000px;}
.wse4{word-spacing:11.088000px;}
.ws85{word-spacing:11.160000px;}
.ws67{word-spacing:11.304000px;}
.wsc1{word-spacing:11.520000px;}
.wscb{word-spacing:11.593440px;}
.wsc0{word-spacing:11.808000px;}
.ws68{word-spacing:11.880000px;}
.ws50{word-spacing:12.024000px;}
.ws4c{word-spacing:12.240000px;}
.wsd5{word-spacing:12.528000px;}
.ws65{word-spacing:12.744000px;}
.wsb6{word-spacing:12.960000px;}
.wsc3{word-spacing:13.248000px;}
.ws3f{word-spacing:13.464000px;}
.ws87{word-spacing:13.680000px;}
.ws40{word-spacing:13.824000px;}
.ws59{word-spacing:14.040000px;}
.ws8e{word-spacing:14.400000px;}
.wse5{word-spacing:14.688000px;}
.ws6e{word-spacing:14.904000px;}
.ws7f{word-spacing:15.912000px;}
.ws7d{word-spacing:15.984000px;}
.ws7e{word-spacing:16.200000px;}
.wsdc{word-spacing:16.560000px;}
.wsb2{word-spacing:16.848000px;}
.ws71{word-spacing:16.920000px;}
.wsb9{word-spacing:18.000000px;}
.wscd{word-spacing:18.720000px;}
.ws1f{word-spacing:19.008000px;}
.ws75{word-spacing:19.224000px;}
.wsb3{word-spacing:19.440000px;}
.ws76{word-spacing:19.512000px;}
.wsbf{word-spacing:20.160000px;}
.ws90{word-spacing:20.448000px;}
.wsde{word-spacing:20.736000px;}
.wsdf{word-spacing:21.168000px;}
.wscf{word-spacing:22.320000px;}
.ws5d{word-spacing:22.392000px;}
.ws78{word-spacing:24.264000px;}
.ws9d{word-spacing:24.840000px;}
.ws6d{word-spacing:24.984000px;}
.ws83{word-spacing:25.200000px;}
.ws82{word-spacing:25.488000px;}
.ws6c{word-spacing:25.560000px;}
.ws72{word-spacing:25.704000px;}
.ws73{word-spacing:25.848000px;}
.wse3{word-spacing:25.920000px;}
.ws48{word-spacing:26.640000px;}
.ws47{word-spacing:27.144000px;}
.wsb7{word-spacing:27.216000px;}
.wsb8{word-spacing:27.648000px;}
.ws5c{word-spacing:27.864000px;}
.wse2{word-spacing:28.080000px;}
.ws6a{word-spacing:28.152000px;}
.wse1{word-spacing:28.368000px;}
.ws17{word-spacing:30.417840px;}
.wsc4{word-spacing:31.968000px;}
.wsc2{word-spacing:33.408000px;}
.ws6f{word-spacing:33.624000px;}
.ws63{word-spacing:35.064000px;}
.ws64{word-spacing:35.424000px;}
.ws79{word-spacing:36.360000px;}
.ws8c{word-spacing:37.224000px;}
.ws8b{word-spacing:37.656000px;}
.ws8d{word-spacing:37.800000px;}
.ws11{word-spacing:38.160000px;}
.ws19{word-spacing:46.254240px;}
.ws16{word-spacing:46.971360px;}
.ws14{word-spacing:74.160000px;}
.wsf{word-spacing:74.880000px;}
.ws12{word-spacing:76.320000px;}
.ws13{word-spacing:83.520000px;}
.ws15{word-spacing:103.680000px;}
.ws18{word-spacing:109.599840px;}
.ws10{word-spacing:180.720000px;}
._1a{margin-left:-30.239352px;}
._f{margin-left:-16.560000px;}
._2d{margin-left:-15.480000px;}
._29{margin-left:-13.536000px;}
._2a{margin-left:-12.240000px;}
._2c{margin-left:-10.008000px;}
._2b{margin-left:-7.920000px;}
._25{margin-left:-5.472000px;}
._26{margin-left:-4.104000px;}
._27{margin-left:-2.880000px;}
._22{margin-left:-1.440216px;}
._0{width:1.296000px;}
._1{width:2.300400px;}
._2{width:3.315600px;}
._23{width:5.256000px;}
._2f{width:7.272216px;}
._2e{width:8.496216px;}
._4{width:15.840000px;}
._24{width:23.760000px;}
._5{width:33.120000px;}
._16{width:43.202880px;}
._1c{width:46.098864px;}
._14{width:49.690440px;}
._8{width:51.840000px;}
._12{width:68.400000px;}
._b{width:75.600000px;}
._1f{width:86.406984px;}
._30{width:89.496000px;}
._d{width:92.160000px;}
._e{width:97.200000px;}
._21{width:113.050080px;}
._20{width:119.525976px;}
._31{width:121.104000px;}
._18{width:123.843024px;}
._10{width:128.160000px;}
._c{width:139.680000px;}
._a{width:144.000000px;}
._11{width:158.400000px;}
._1d{width:169.939512px;}
._6{width:171.360000px;}
._3{width:191.520000px;}
._7{width:208.080000px;}
._13{width:234.720000px;}
._19{width:240.486192px;}
._17{width:269.284536px;}
._9{width:284.400000px;}
._1e{width:296.668584px;}
._1b{width:305.313840px;}
._15{width:370.095480px;}
._28{width:846.000000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:36.000000px;}
.fsd{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fsb{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs5{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:75.894664px;}
.fs6{font-size:84.240000px;}
.fs8{font-size:88.796757px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:144.000000px;}
.y1b6{bottom:-22.140000px;}
.y0{bottom:0.000000px;}
.y190{bottom:3.240000px;}
.y2c{bottom:9.180000px;}
.y29{bottom:16.200000px;}
.y18f{bottom:20.520000px;}
.y1b5{bottom:23.940000px;}
.y2b{bottom:28.980000px;}
.y274{bottom:39.780000px;}
.y28{bottom:39.960000px;}
.y1b4{bottom:50.220000px;}
.y18e{bottom:53.100000px;}
.y21{bottom:57.060000px;}
.y1{bottom:57.960000px;}
.y27{bottom:63.720000px;}
.y18d{bottom:77.760000px;}
.y26{bottom:87.480000px;}
.y299{bottom:96.480000px;}
.y25{bottom:111.420000px;}
.y93{bottom:121.500000px;}
.y50{bottom:122.760000px;}
.y224{bottom:122.765220px;}
.y1d6{bottom:122.769720px;}
.y2b2{bottom:126.540000px;}
.y25a{bottom:126.720000px;}
.y1b3{bottom:127.260000px;}
.yd4{bottom:130.140000px;}
.y297{bottom:130.860000px;}
.y24{bottom:135.180000px;}
.y6b{bottom:136.440000px;}
.y13a{bottom:138.600000px;}
.y1d5{bottom:142.744500px;}
.yed{bottom:144.900000px;}
.y186{bottom:145.800000px;}
.y92{bottom:146.520000px;}
.y223{bottom:147.960000px;}
.y2b1{bottom:150.300000px;}
.yb5{bottom:150.480000px;}
.y120{bottom:151.560000px;}
.yd3{bottom:152.460000px;}
.y108{bottom:154.440000px;}
.y296{bottom:154.620000px;}
.y4f{bottom:155.700000px;}
.y1b2{bottom:156.240000px;}
.y158{bottom:156.780000px;}
.y23{bottom:158.940000px;}
.y259{bottom:159.480000px;}
.y222{bottom:160.740000px;}
.y272{bottom:161.100000px;}
.y1d4{bottom:167.760000px;}
.yec{bottom:169.920000px;}
.y171{bottom:170.100000px;}
.y6a{bottom:170.820000px;}
.y185{bottom:171.000000px;}
.y91{bottom:172.800000px;}
.y1f3{bottom:173.340000px;}
.y2b0{bottom:174.060000px;}
.y20c{bottom:176.400000px;}
.yd2{bottom:177.480000px;}
.y295{bottom:178.380000px;}
.y1d3{bottom:180.540000px;}
.y157{bottom:181.980000px;}
.yb4{bottom:183.240000px;}
.y11f{bottom:184.320000px;}
.y271{bottom:184.860000px;}
.y1b1{bottom:185.040000px;}
.y107{bottom:185.760000px;}
.y4e{bottom:188.460000px;}
.y139{bottom:192.240000px;}
.y184{bottom:197.100000px;}
.y2af{bottom:198.000000px;}
.y1b0{bottom:198.540000px;}
.y20b{bottom:200.160000px;}
.y69{bottom:201.249720px;}
.y170{bottom:201.420000px;}
.yd1{bottom:203.580000px;}
.y270{bottom:208.620000px;}
.y106{bottom:210.780000px;}
.y294{bottom:211.140000px;}
.yeb{bottom:211.320000px;}
.y90{bottom:214.200000px;}
.yb3{bottom:214.560000px;}
.y1f2{bottom:215.100000px;}
.y11e{bottom:215.640000px;}
.y138{bottom:217.260000px;}
.y4d{bottom:221.220000px;}
.y2ae{bottom:221.760000px;}
.y156{bottom:223.380000px;}
.y20a{bottom:224.100000px;}
.y221{bottom:225.900000px;}
.y16f{bottom:226.620000px;}
.y68{bottom:227.167560px;}
.yd0{bottom:229.680000px;}
.y26f{bottom:232.380000px;}
.y293{bottom:235.080000px;}
.yea{bottom:236.340000px;}
.y105{bottom:236.880000px;}
.y183{bottom:238.500000px;}
.y1f1{bottom:238.860000px;}
.y258{bottom:239.040000px;}
.y8f{bottom:239.220000px;}
.yb2{bottom:239.760000px;}
.y11d{bottom:240.840000px;}
.y137{bottom:243.360000px;}
.y2ad{bottom:245.520000px;}
.y1f{bottom:245.522160px;}
.y209{bottom:247.860000px;}
.y155{bottom:248.400000px;}
.y220{bottom:249.840000px;}
.y16e{bottom:252.720000px;}
.y67{bottom:253.085400px;}
.y4c{bottom:253.980000px;}
.y1d2{bottom:254.880000px;}
.y26e{bottom:256.140000px;}
.y1af{bottom:262.440000px;}
.ye9{bottom:262.620000px;}
.y257{bottom:262.800000px;}
.y182{bottom:263.520000px;}
.ycf{bottom:271.260000px;}
.y1e{bottom:271.440000px;}
.y208{bottom:271.620000px;}
.y21f{bottom:273.600000px;}
.y104{bottom:278.280000px;}
.y1d1{bottom:278.640000px;}
.y66{bottom:278.824320px;}
.y8e{bottom:280.620000px;}
.yb1{bottom:281.160000px;}
.y11c{bottom:282.240000px;}
.y136{bottom:284.760000px;}
.y292{bottom:285.120000px;}
.y1ae{bottom:286.380000px;}
.y256{bottom:286.560000px;}
.y4b{bottom:286.920000px;}
.y26d{bottom:289.080000px;}
.y154{bottom:289.800000px;}
.y16d{bottom:294.120000px;}
.y1f0{bottom:295.380000px;}
.yce{bottom:296.280000px;}
.y21e{bottom:297.360000px;}
.y1d{bottom:299.520000px;}
.y2ac{bottom:302.220000px;}
.y103{bottom:303.480000px;}
.ye8{bottom:304.020000px;}
.y65{bottom:304.742160px;}
.y8d{bottom:305.640000px;}
.yb0{bottom:306.180000px;}
.y11b{bottom:307.260000px;}
.y291{bottom:308.880000px;}
.y135{bottom:309.960000px;}
.y1ad{bottom:310.140000px;}
.y26c{bottom:312.840000px;}
.y153{bottom:314.820000px;}
.y4a{bottom:317.340000px;}
.y16c{bottom:319.140000px;}
.y1ef{bottom:319.320000px;}
.y1d0{bottom:321.840000px;}
.y2ab{bottom:325.980000px;}
.ye7{bottom:329.040000px;}
.y102{bottom:329.580000px;}
.y64{bottom:330.660000px;}
.y181{bottom:331.200000px;}
.y8c{bottom:331.920000px;}
.yaf{bottom:332.280000px;}
.y1c{bottom:332.460000px;}
.y21d{bottom:333.180000px;}
.y11a{bottom:333.360000px;}
.y1ac{bottom:333.900000px;}
.y26b{bottom:336.600000px;}
.ycd{bottom:337.500000px;}
.y49{bottom:338.760000px;}
.y290{bottom:341.640000px;}
.y207{bottom:343.080000px;}
.y255{bottom:343.260000px;}
.y2aa{bottom:349.740000px;}
.y75{bottom:350.280000px;}
.y134{bottom:351.360000px;}
.y1ee{bottom:352.080000px;}
.y1cf{bottom:354.600000px;}
.ye6{bottom:355.140000px;}
.y152{bottom:356.220000px;}
.y21c{bottom:356.940000px;}
.y1ab{bottom:357.660000px;}
.y8b{bottom:358.020000px;}
.y48{bottom:360.180000px;}
.y16b{bottom:360.540000px;}
.y23d{bottom:360.900000px;}
.ycc{bottom:362.880000px;}
.y1b{bottom:365.220000px;}
.y28f{bottom:365.580000px;}
.y206{bottom:366.840000px;}
.y254{bottom:367.020000px;}
.y26a{bottom:369.360000px;}
.y101{bottom:370.980000px;}
.y2a9{bottom:373.500000px;}
.yae{bottom:373.680000px;}
.y119{bottom:374.760000px;}
.y1ed{bottom:375.840000px;}
.y133{bottom:376.380000px;}
.y151{bottom:378.540000px;}
.y21b{bottom:380.700000px;}
.ye5{bottom:381.420000px;}
.y1aa{bottom:381.600000px;}
.y47{bottom:381.780000px;}
.y180{bottom:382.320000px;}
.y74{bottom:384.480000px;}
.y16a{bottom:385.740000px;}
.y205{bottom:390.600000px;}
.y269{bottom:393.300000px;}
.y23c{bottom:393.660000px;}
.y63{bottom:394.560000px;}
.y100{bottom:396.000000px;}
.y2a8{bottom:397.440000px;}
.y1a{bottom:397.980000px;}
.y28e{bottom:398.340000px;}
.yad{bottom:398.880000px;}
.y8a{bottom:399.420000px;}
.y118{bottom:399.780000px;}
.y1ce{bottom:402.300000px;}
.y132{bottom:402.480000px;}
.y46{bottom:403.200000px;}
.y150{bottom:403.740000px;}
.ycb{bottom:404.280000px;}
.y21a{bottom:404.460000px;}
.y1a9{bottom:405.360000px;}
.y28c{bottom:407.340000px;}
.y17f{bottom:408.420000px;}
.y1ec{bottom:408.600000px;}
.y169{bottom:411.840000px;}
.y204{bottom:414.540000px;}
.y268{bottom:417.060000px;}
.y23b{bottom:417.420000px;}
.y28d{bottom:422.100000px;}
.yff{bottom:422.280000px;}
.ye4{bottom:422.820000px;}
.y253{bottom:423.540000px;}
.y89{bottom:424.440000px;}
.yac{bottom:424.980000px;}
.y1cd{bottom:426.060000px;}
.y62{bottom:428.940000px;}
.y1a8{bottom:429.120000px;}
.yca{bottom:429.300000px;}
.y14f{bottom:429.840000px;}
.y2a7{bottom:430.200000px;}
.y19{bottom:430.740000px;}
.y28b{bottom:431.100000px;}
.y1eb{bottom:432.540000px;}
.y45{bottom:435.060000px;}
.y203{bottom:438.300000px;}
.y117{bottom:441.360000px;}
.y219{bottom:441.720000px;}
.y252{bottom:447.480000px;}
.ye3{bottom:447.840000px;}
.y17e{bottom:449.820000px;}
.y88{bottom:450.540000px;}
.yab{bottom:451.080000px;}
.y1a7{bottom:452.880000px;}
.y168{bottom:453.240000px;}
.y28a{bottom:454.860000px;}
.y131{bottom:455.040000px;}
.yc9{bottom:455.400000px;}
.y1ea{bottom:456.300000px;}
.y202{bottom:462.060000px;}
.y61{bottom:463.320000px;}
.y18{bottom:463.680000px;}
.y23a{bottom:465.120000px;}
.y218{bottom:465.300000px;}
.y116{bottom:466.380000px;}
.y14e{bottom:471.240000px;}
.y267{bottom:473.580000px;}
.y1cc{bottom:473.760000px;}
.ye2{bottom:473.940000px;}
.y17d{bottom:475.020000px;}
.y1a6{bottom:476.820000px;}
.y167{bottom:478.260000px;}
.y289{bottom:478.620000px;}
.y130{bottom:483.660000px;}
.y201{bottom:485.820000px;}
.yfe{bottom:488.700000px;}
.y239{bottom:488.880000px;}
.y1e9{bottom:489.060000px;}
.y87{bottom:492.120000px;}
.yaa{bottom:492.480000px;}
.y17{bottom:494.128980px;}
.y14d{bottom:496.260000px;}
.yc8{bottom:496.800000px;}
.y1cb{bottom:497.520000px;}
.y60{bottom:497.700000px;}
.y1a5{bottom:500.580000px;}
.y17c{bottom:501.120000px;}
.y217{bottom:502.380000px;}
.y251{bottom:504.000000px;}
.y44{bottom:507.420000px;}
.y2a6{bottom:509.580000px;}
.y1e8{bottom:512.820000px;}
.ya9{bottom:514.800000px;}
.ye1{bottom:515.340000px;}
.y86{bottom:517.140000px;}
.y115{bottom:518.580000px;}
.y200{bottom:518.760000px;}
.yc7{bottom:519.120000px;}
.y166{bottom:519.660000px;}
.y16{bottom:520.046820px;}
.y1ca{bottom:521.280000px;}
.y238{bottom:521.640000px;}
.y14c{bottom:522.360000px;}
.y250{bottom:527.760000px;}
.y288{bottom:528.840000px;}
.y5f{bottom:531.900000px;}
.y1a4{bottom:533.340000px;}
.y1e7{bottom:536.760000px;}
.y43{bottom:537.120000px;}
.ye0{bottom:540.360000px;}
.y165{bottom:541.980000px;}
.y17b{bottom:542.520000px;}
.y85{bottom:543.240000px;}
.yc6{bottom:544.320000px;}
.y15{bottom:545.964660px;}
.y266{bottom:547.560000px;}
.y14b{bottom:548.640000px;}
.y287{bottom:552.600000px;}
.yfd{bottom:556.200000px;}
.y42{bottom:557.820000px;}
.ya8{bottom:559.440000px;}
.y114{bottom:559.980000px;}
.y216{bottom:560.520000px;}
.y1c9{bottom:563.040000px;}
.y237{bottom:563.580000px;}
.y5e{bottom:566.280000px;}
.y164{bottom:567.180000px;}
.y17a{bottom:567.540000px;}
.y84{bottom:569.340000px;}
.y265{bottom:571.320000px;}
.y14{bottom:571.703580px;}
.y1a3{bottom:575.100000px;}
.y24f{bottom:577.800000px;}
.yfc{bottom:581.220000px;}
.ya7{bottom:581.940000px;}
.y12f{bottom:584.640000px;}
.y113{bottom:585.180000px;}
.y286{bottom:585.360000px;}
.yc5{bottom:585.720000px;}
.y1c8{bottom:586.800000px;}
.y236{bottom:587.340000px;}
.y14a{bottom:590.040000px;}
.y41{bottom:593.280000px;}
.y179{bottom:593.820000px;}
.y13{bottom:597.621420px;}
.y5d{bottom:599.040000px;}
.ya6{bottom:604.260000px;}
.yc4{bottom:608.040000px;}
.y163{bottom:608.580000px;}
.y285{bottom:609.120000px;}
.y12e{bottom:610.740000px;}
.y235{bottom:611.100000px;}
.y1e6{bottom:612.540000px;}
.y1ff{bottom:613.800000px;}
.y149{bottom:615.060000px;}
.y215{bottom:617.040000px;}
.y1c7{bottom:619.740000px;}
.y264{bottom:621.360000px;}
.y83{bottom:621.900000px;}
.yfb{bottom:622.800000px;}
.y12{bottom:623.539260px;}
.y112{bottom:626.580000px;}
.y24e{bottom:627.840000px;}
.y40{bottom:628.740000px;}
.ya5{bottom:629.280000px;}
.y5c{bottom:631.980000px;}
.yc3{bottom:633.060000px;}
.y162{bottom:633.600000px;}
.y234{bottom:634.860000px;}
.y178{bottom:635.220000px;}
.y1e5{bottom:636.480000px;}
.y1fe{bottom:637.740000px;}
.y214{bottom:640.800000px;}
.y148{bottom:641.160000px;}
.y284{bottom:642.060000px;}
.y1c6{bottom:643.500000px;}
.y263{bottom:645.120000px;}
.y1a2{bottom:646.560000px;}
.yfa{bottom:647.820000px;}
.y11{bottom:649.278180px;}
.y82{bottom:650.520000px;}
.y111{bottom:651.600000px;}
.y24d{bottom:651.780000px;}
.y12d{bottom:652.140000px;}
.ya4{bottom:655.380000px;}
.y233{bottom:658.620000px;}
.y177{bottom:660.240000px;}
.y3f{bottom:661.500000px;}
.y5b{bottom:664.740000px;}
.y283{bottom:665.820000px;}
.y262{bottom:669.060000px;}
.y1e4{bottom:669.240000px;}
.y1a1{bottom:670.320000px;}
.y2a5{bottom:672.840000px;}
.yf9{bottom:673.920000px;}
.yc2{bottom:674.460000px;}
.y161{bottom:675.000000px;}
.y10{bottom:675.196020px;}
.y1c5{bottom:676.260000px;}
.y12c{bottom:677.160000px;}
.y110{bottom:677.700000px;}
.ydf{bottom:681.480000px;}
.y147{bottom:682.560000px;}
.y1fd{bottom:685.260000px;}
.y176{bottom:686.340000px;}
.y282{bottom:689.580000px;}
.y261{bottom:692.820000px;}
.y1e3{bottom:693.000000px;}
.y1a0{bottom:694.260000px;}
.y3e{bottom:694.440000px;}
.y232{bottom:695.880000px;}
.ya3{bottom:696.780000px;}
.y213{bottom:697.500000px;}
.y281{bottom:698.580000px;}
.yc1{bottom:699.480000px;}
.y5a{bottom:700.020000px;}
.yf{bottom:701.113860px;}
.y24c{bottom:701.820000px;}
.y12b{bottom:703.440000px;}
.y81{bottom:703.980000px;}
.y146{bottom:707.760000px;}
.y1c4{bottom:709.020000px;}
.y1e2{bottom:716.760000px;}
.y19f{bottom:718.020000px;}
.y3d{bottom:718.200000px;}
.y10f{bottom:719.100000px;}
.y231{bottom:719.640000px;}
.y212{bottom:721.260000px;}
.ya2{bottom:721.800000px;}
.y280{bottom:722.340000px;}
.yde{bottom:722.880000px;}
.y24b{bottom:725.580000px;}
.y160{bottom:726.300000px;}
.ye{bottom:726.852780px;}
.y80{bottom:729.180000px;}
.y2a4{bottom:729.540000px;}
.y249{bottom:734.580000px;}
.y175{bottom:738.900000px;}
.yc0{bottom:740.880000px;}
.yf8{bottom:741.420000px;}
.y1c3{bottom:741.960000px;}
.y260{bottom:742.860000px;}
.y230{bottom:743.400000px;}
.y10e{bottom:744.300000px;}
.y12a{bottom:744.840000px;}
.y211{bottom:745.020000px;}
.y27f{bottom:746.100000px;}
.y3c{bottom:747.185940px;}
.ydd{bottom:748.080000px;}
.y145{bottom:749.160000px;}
.y24a{bottom:749.340000px;}
.y1e1{bottom:749.520000px;}
.y19e{bottom:750.780000px;}
.y59{bottom:751.095000px;}
.yd{bottom:752.770620px;}
.y2a3{bottom:753.300000px;}
.y248{bottom:758.340000px;}
.y1fc{bottom:759.960000px;}
.ya1{bottom:763.380000px;}
.ybf{bottom:766.080000px;}
.yf7{bottom:766.620000px;}
.y174{bottom:767.520000px;}
.y15f{bottom:767.700000px;}
.y210{bottom:768.960000px;}
.y129{bottom:769.860000px;}
.y10d{bottom:770.400000px;}
.y7f{bottom:770.580000px;}
.y2b8{bottom:772.920000px;}
.y3b{bottom:773.286120px;}
.y1e0{bottom:773.460000px;}
.y144{bottom:774.180000px;}
.y19d{bottom:774.540000px;}
.y1c2{bottom:774.720000px;}
.yc{bottom:778.688460px;}
.y22f{bottom:779.220000px;}
.y247{bottom:782.100000px;}
.y1fb{bottom:783.720000px;}
.y2a2{bottom:786.060000px;}
.ya0{bottom:788.400000px;}
.ydc{bottom:789.480000px;}
.y58{bottom:790.326000px;}
.ybe{bottom:792.180000px;}
.y15e{bottom:792.720000px;}
.y7e{bottom:795.600000px;}
.y128{bottom:795.960000px;}
.y173{bottom:796.140000px;}
.y10c{bottom:796.500000px;}
.y27e{bottom:797.040000px;}
.y1df{bottom:797.220000px;}
.y19c{bottom:798.480000px;}
.y25f{bottom:799.380000px;}
.y3a{bottom:799.565580px;}
.y22e{bottom:802.980000px;}
.yb{bottom:804.427380px;}
.y2b7{bottom:805.680000px;}
.y246{bottom:806.040000px;}
.y1c1{bottom:807.480000px;}
.yf6{bottom:808.020000px;}
.y2a1{bottom:810.000000px;}
.ydb{bottom:811.800000px;}
.y9f{bottom:814.500000px;}
.y143{bottom:815.580000px;}
.y1fa{bottom:816.480000px;}
.y1de{bottom:820.980000px;}
.y25e{bottom:823.320000px;}
.y172{bottom:824.760000px;}
.y39{bottom:825.845040px;}
.y2b6{bottom:829.440000px;}
.ya{bottom:830.345220px;}
.y19b{bottom:831.240000px;}
.yf5{bottom:833.040000px;}
.ybd{bottom:833.580000px;}
.y15d{bottom:834.120000px;}
.yda{bottom:836.820000px;}
.y7d{bottom:837.000000px;}
.y127{bottom:837.360000px;}
.y10b{bottom:837.900000px;}
.y57{bottom:838.575000px;}
.y22d{bottom:838.800000px;}
.y20f{bottom:840.240000px;}
.y2a0{bottom:842.760000px;}
.y27d{bottom:843.660000px;}
.y1dd{bottom:844.740000px;}
.y25d{bottom:847.080000px;}
.y1f9{bottom:849.240000px;}
.y38{bottom:852.124500px;}
.y9{bottom:854.649000px;}
.y19a{bottom:855.000000px;}
.y9e{bottom:855.900000px;}
.y245{bottom:856.080000px;}
.yf4{bottom:859.140000px;}
.y7c{bottom:862.020000px;}
.y126{bottom:862.380000px;}
.y22c{bottom:862.560000px;}
.y10a{bottom:862.920000px;}
.y1c0{bottom:864.180000px;}
.y29f{bottom:866.520000px;}
.y2b5{bottom:869.220000px;}
.y1f8{bottom:873.180000px;}
.y27c{bottom:876.420000px;}
.y1dc{bottom:877.500000px;}
.yd9{bottom:878.220000px;}
.y37{bottom:878.403960px;}
.y199{bottom:878.760000px;}
.y244{bottom:879.840000px;}
.y9d{bottom:880.920000px;}
.y15c{bottom:885.240000px;}
.y22b{bottom:886.500000px;}
.y56{bottom:886.824000px;}
.y1bf{bottom:887.940000px;}
.y125{bottom:888.660000px;}
.y142{bottom:889.200000px;}
.y2b4{bottom:891.000000px;}
.y8{bottom:893.880000px;}
.y1f7{bottom:896.940000px;}
.y73{bottom:897.840000px;}
.y29e{bottom:899.280000px;}
.yf3{bottom:900.540000px;}
.y198{bottom:902.520000px;}
.yd8{bottom:903.240000px;}
.y243{bottom:903.600000px;}
.y109{bottom:904.320000px;}
.y36{bottom:904.683420px;}
.y7b{bottom:906.300000px;}
.y9c{bottom:907.200000px;}
.y18b{bottom:911.520000px;}
.y1be{bottom:911.700000px;}
.y1db{bottom:920.700000px;}
.y22a{bottom:922.140000px;}
.ybc{bottom:922.320000px;}
.y29d{bottom:923.220000px;}
.yf2{bottom:925.740000px;}
.y197{bottom:926.460000px;}
.y15b{bottom:926.820000px;}
.y25c{bottom:927.360000px;}
.yd7{bottom:929.520000px;}
.y124{bottom:930.060000px;}
.y141{bottom:930.600000px;}
.y35{bottom:930.783600px;}
.y72{bottom:932.040000px;}
.y27b{bottom:932.220000px;}
.y55{bottom:935.073000px;}
.y242{bottom:936.360000px;}
.y1bd{bottom:944.460000px;}
.y229{bottom:946.080000px;}
.y7{bottom:946.260000px;}
.ybb{bottom:947.520000px;}
.y9b{bottom:948.600000px;}
.y7a{bottom:951.660000px;}
.yf1{bottom:951.840000px;}
.y123{bottom:952.380000px;}
.y18a{bottom:952.920000px;}
.y1f6{bottom:953.460000px;}
.y140{bottom:955.620000px;}
.y27a{bottom:955.980000px;}
.y34{bottom:957.063060px;}
.y196{bottom:959.220000px;}
.y241{bottom:960.300000px;}
.y71{bottom:966.420000px;}
.y1da{bottom:968.400000px;}
.y228{bottom:969.660000px;}
.y9a{bottom:970.920000px;}
.y122{bottom:974.700000px;}
.y1f5{bottom:977.400000px;}
.yf0{bottom:977.940000px;}
.y279{bottom:979.740000px;}
.y13f{bottom:981.720000px;}
.y54{bottom:983.133000px;}
.y33{bottom:983.342520px;}
.y240{bottom:984.060000px;}
.y1bc{bottom:986.400000px;}
.yba{bottom:988.920000px;}
.y2b3{bottom:992.160000px;}
.y15a{bottom:993.240000px;}
.y79{bottom:993.789000px;}
.y99{bottom:995.940000px;}
.y121{bottom:997.020000px;}
.y6{bottom:998.640000px;}
.y70{bottom:1000.800000px;}
.y1d9{bottom:1001.160000px;}
.y29c{bottom:1003.500000px;}
.y189{bottom:1004.040000px;}
.y227{bottom:1006.920000px;}
.y23f{bottom:1007.820000px;}
.y32{bottom:1009.621980px;}
.y1bb{bottom:1010.160000px;}
.yb9{bottom:1011.240000px;}
.y278{bottom:1012.500000px;}
.y159{bottom:1018.260000px;}
.y195{bottom:1018.440000px;}
.yef{bottom:1019.340000px;}
.y98{bottom:1022.040000px;}
.y13e{bottom:1023.120000px;}
.y1d8{bottom:1024.920000px;}
.y53{bottom:1031.382000px;}
.yb8{bottom:1033.560000px;}
.y1ba{bottom:1033.920000px;}
.y6f{bottom:1035.180000px;}
.y31{bottom:1035.901440px;}
.y277{bottom:1036.440000px;}
.yd6{bottom:1037.340000px;}
.y298{bottom:1037.520000px;}
.y78{bottom:1040.229000px;}
.y226{bottom:1042.740000px;}
.y20e{bottom:1042.920000px;}
.yee{bottom:1044.360000px;}
.y188{bottom:1045.440000px;}
.y5{bottom:1048.145400px;}
.y13d{bottom:1048.320000px;}
.y1d7{bottom:1048.680000px;}
.y194{bottom:1049.580000px;}
.y29b{bottom:1053.540000px;}
.y1b9{bottom:1057.680000px;}
.yb7{bottom:1058.580000px;}
.yd5{bottom:1059.660000px;}
.y276{bottom:1060.200000px;}
.y30{bottom:1062.180900px;}
.y97{bottom:1063.440000px;}
.y20d{bottom:1066.680000px;}
.y6e{bottom:1069.380000px;}
.y187{bottom:1070.640000px;}
.y4{bottom:1074.063240px;}
.y29a{bottom:1077.480000px;}
.y225{bottom:1078.560000px;}
.y52{bottom:1079.631000px;}
.y193{bottom:1080.907740px;}
.y1b8{bottom:1081.620000px;}
.yb6{bottom:1084.860000px;}
.y77{bottom:1085.049000px;}
.y96{bottom:1085.940000px;}
.y2f{bottom:1088.281080px;}
.y13c{bottom:1089.720000px;}
.y1f4{bottom:1090.620000px;}
.y273{bottom:1094.220000px;}
.y3{bottom:1099.981080px;}
.y6d{bottom:1103.760000px;}
.y23e{bottom:1105.380000px;}
.y192{bottom:1107.548640px;}
.y275{bottom:1110.240000px;}
.y95{bottom:1110.960000px;}
.y13b{bottom:1112.040000px;}
.y1b7{bottom:1114.380000px;}
.y2e{bottom:1114.560540px;}
.y2{bottom:1125.720000px;}
.y51{bottom:1127.880000px;}
.y76{bottom:1129.680000px;}
.y191{bottom:1134.000000px;}
.y94{bottom:1137.060000px;}
.y25b{bottom:1137.960000px;}
.y6c{bottom:1138.140000px;}
.y2d{bottom:1140.840000px;}
.y18c{bottom:1184.040000px;}
.y20{bottom:1193.040000px;}
.y2a{bottom:1236.420000px;}
.y22{bottom:1577.160000px;}
.h9{height:-314.280000px;}
.ha{height:26.460000px;}
.h1c{height:34.114922px;}
.h15{height:34.380000px;}
.h1a{height:34.435898px;}
.h1b{height:37.980000px;}
.h3{height:44.854805px;}
.hc{height:49.908867px;}
.h18{height:50.100469px;}
.h16{height:52.435898px;}
.hb{height:52.581797px;}
.h13{height:53.956363px;}
.h11{height:54.628594px;}
.h1d{height:56.520000px;}
.h2{height:63.175781px;}
.h6{height:63.351562px;}
.h19{height:63.949219px;}
.h17{height:69.687773px;}
.h14{height:69.805547px;}
.h10{height:71.640000px;}
.h12{height:75.515191px;}
.hd{height:83.818800px;}
.hf{height:88.352773px;}
.he{height:94.763672px;}
.h5{height:107.460000px;}
.h1e{height:113.220000px;}
.h4{height:143.280000px;}
.h7{height:1262.880000px;}
.h8{height:1263.000000px;}
.h1{height:1266.750000px;}
.h0{height:1266.840000px;}
.w5{width:-6455.340000px;}
.w4{width:288.540000px;}
.w7{width:575.458500px;}
.w8{width:580.680000px;}
.w6{width:628.380000px;}
.w2{width:892.980000px;}
.w3{width:893.250000px;}
.w0{width:896.940000px;}
.w1{width:897.000000px;}
.x0{left:0.000000px;}
.x48{left:4.140000px;}
.x40{left:10.800000px;}
.xd{left:27.900000px;}
.x15{left:33.300000px;}
.x16{left:39.060000px;}
.x12{left:42.660000px;}
.x13{left:45.720000px;}
.xf{left:58.680000px;}
.x11{left:64.620000px;}
.xe{left:68.760000px;}
.x2{left:70.560000px;}
.x10{left:76.680000px;}
.x3d{left:78.840000px;}
.xc{left:81.000000px;}
.x45{left:85.140000px;}
.x3e{left:100.080000px;}
.x2a{left:105.480000px;}
.x41{left:108.000000px;}
.x2b{left:110.160000px;}
.x30{left:120.780000px;}
.x1d{left:124.740000px;}
.x17{left:127.620000px;}
.x3c{left:132.120000px;}
.x42{left:134.460000px;}
.x1b{left:135.711000px;}
.x3{left:137.700000px;}
.x4{left:140.040000px;}
.x33{left:145.260000px;}
.x7{left:147.960000px;}
.x1e{left:156.600000px;}
.x9{left:158.760000px;}
.x43{left:162.000000px;}
.x24{left:166.680000px;}
.x2c{left:186.120000px;}
.x44{left:189.000000px;}
.x2d{left:190.800000px;}
.x6{left:204.858000px;}
.x35{left:206.460000px;}
.x3b{left:209.160000px;}
.xb{left:211.140000px;}
.x20{left:215.273700px;}
.x31{left:225.720000px;}
.x25{left:227.340000px;}
.x2e{left:239.760000px;}
.x2f{left:244.440000px;}
.x47{left:255.240000px;}
.x46{left:259.380000px;}
.x18{left:262.620000px;}
.x5{left:282.780000px;}
.x1c{left:292.662000px;}
.x3f{left:297.000000px;}
.x34{left:357.120000px;}
.x37{left:370.980000px;}
.x23{left:404.640000px;}
.x22{left:412.731000px;}
.x1f{left:415.980000px;}
.xa{left:417.960000px;}
.x1a{left:446.400000px;}
.x8{left:448.560000px;}
.x27{left:495.900000px;}
.x38{left:521.820000px;}
.x26{left:665.640000px;}
.x32{left:667.260000px;}
.x36{left:686.520000px;}
.x28{left:696.420000px;}
.x21{left:706.320000px;}
.x29{left:769.500000px;}
.x39{left:811.980000px;}
.x3a{left:830.160000px;}
.x19{left:857.160000px;}
.x1{left:871.740000px;}
.x14{left:7348.320000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls13{letter-spacing:-0.832000pt;}
.ls42{letter-spacing:-0.512000pt;}
.ls2b{letter-spacing:-0.384000pt;}
.ls3c{letter-spacing:-0.318720pt;}
.ls1c{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls3b{letter-spacing:-0.235520pt;}
.ls3d{letter-spacing:-0.212480pt;}
.ls23{letter-spacing:-0.202386pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls34{letter-spacing:-0.157861pt;}
.ls24{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.078930pt;}
.ls21{letter-spacing:-0.074880pt;}
.ls25{letter-spacing:-0.067462pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.064000pt;}
.ls3e{letter-spacing:0.069056pt;}
.ls1a{letter-spacing:0.074880pt;}
.ls39{letter-spacing:0.106240pt;}
.lse{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.133120pt;}
.ls33{letter-spacing:0.149760pt;}
.ls1d{letter-spacing:0.157861pt;}
.ls38{letter-spacing:0.159360pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.165754pt;}
.ls29{letter-spacing:0.192000pt;}
.ls20{letter-spacing:0.224640pt;}
.ls35{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.256000pt;}
.ls2f{letter-spacing:0.307008pt;}
.ls3a{letter-spacing:0.318720pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.454400pt;}
.ls9{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.768000pt;}
.ls41{letter-spacing:0.796800pt;}
.ls14{letter-spacing:1.198080pt;}
.ls16{letter-spacing:1.272960pt;}
.ls15{letter-spacing:1.340352pt;}
.ls6{letter-spacing:1.632000pt;}
.ls17{letter-spacing:1.797120pt;}
.ls4{letter-spacing:1.824000pt;}
.ls48{letter-spacing:1.920000pt;}
.ls3{letter-spacing:2.179200pt;}
.ls2{letter-spacing:2.304000pt;}
.ls0{letter-spacing:2.432000pt;}
.lsb{letter-spacing:2.560000pt;}
.ls1{letter-spacing:2.816000pt;}
.lsc{letter-spacing:3.200000pt;}
.lsd{letter-spacing:3.840000pt;}
.ls28{letter-spacing:5.760000pt;}
.ls44{letter-spacing:7.040000pt;}
.ls45{letter-spacing:7.680000pt;}
.ls47{letter-spacing:9.136640pt;}
.ls26{letter-spacing:9.600000pt;}
.ls2d{letter-spacing:12.224000pt;}
.ls2c{letter-spacing:17.344000pt;}
.lsa{letter-spacing:21.120000pt;}
.ls30{letter-spacing:22.400000pt;}
.ls27{letter-spacing:23.680000pt;}
.ls37{letter-spacing:24.320000pt;}
.ls3f{letter-spacing:30.208000pt;}
.ls40{letter-spacing:47.488000pt;}
.ls46{letter-spacing:48.768000pt;}
.ls43{letter-spacing:57.088000pt;}
.ls36{letter-spacing:65.408000pt;}
.ls4a{letter-spacing:79.360000pt;}
.ls2e{letter-spacing:156.933120pt;}
.ls32{letter-spacing:274.053120pt;}
.ls49{letter-spacing:383.360000pt;}
.ls18{letter-spacing:752.000000pt;}
.ws0{word-spacing:-39.424000pt;}
.ws1{word-spacing:-29.568000pt;}
.ws2{word-spacing:-27.744000pt;}
.ws26{word-spacing:-27.456000pt;}
.ws27{word-spacing:-22.968761pt;}
.ws21{word-spacing:-22.913280pt;}
.ws77{word-spacing:-22.810900pt;}
.ws2b{word-spacing:-22.731970pt;}
.ws95{word-spacing:-22.653039pt;}
.ws2a{word-spacing:-21.864960pt;}
.ws94{word-spacing:-21.790080pt;}
.ws22{word-spacing:-21.640320pt;}
.ws2c{word-spacing:-19.429034pt;}
.ws2d{word-spacing:-18.752000pt;}
.ws62{word-spacing:-18.624000pt;}
.ws29{word-spacing:-18.496000pt;}
.ws28{word-spacing:-18.432000pt;}
.ws61{word-spacing:-18.368000pt;}
.ws8f{word-spacing:-18.304000pt;}
.ws3e{word-spacing:-18.240000pt;}
.wsd{word-spacing:-16.768000pt;}
.wsb{word-spacing:-16.256000pt;}
.ws5b{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws81{word-spacing:-15.936000pt;}
.ws93{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.wse7{word-spacing:-15.616000pt;}
.wse6{word-spacing:-15.168000pt;}
.wsa8{word-spacing:-13.598720pt;}
.wsa6{word-spacing:-13.386240pt;}
.wsa7{word-spacing:-13.067520pt;}
.wsda{word-spacing:-8.640000pt;}
.wsa5{word-spacing:-8.000000pt;}
.ws70{word-spacing:-4.672000pt;}
.ws3c{word-spacing:-4.160000pt;}
.ws39{word-spacing:-4.032000pt;}
.wsdd{word-spacing:-3.840000pt;}
.wsc7{word-spacing:-3.200000pt;}
.ws92{word-spacing:-3.072000pt;}
.wsce{word-spacing:-2.944000pt;}
.ws91{word-spacing:-2.880000pt;}
.wsa3{word-spacing:-2.752000pt;}
.wsd1{word-spacing:-2.688000pt;}
.wsd0{word-spacing:-2.560000pt;}
.ws35{word-spacing:-2.112000pt;}
.wsc6{word-spacing:-2.048000pt;}
.wsc5{word-spacing:-1.920000pt;}
.ws6b{word-spacing:-1.856000pt;}
.ws23{word-spacing:-1.824000pt;}
.ws36{word-spacing:-1.754010pt;}
.ws37{word-spacing:-1.728000pt;}
.wsd9{word-spacing:-1.664000pt;}
.ws8{word-spacing:-1.632000pt;}
.ws89{word-spacing:-1.600000pt;}
.ws74{word-spacing:-1.472000pt;}
.ws55{word-spacing:-1.280000pt;}
.wsaf{word-spacing:-1.024000pt;}
.ws4d{word-spacing:-0.832000pt;}
.wsaa{word-spacing:-0.796800pt;}
.wsd4{word-spacing:-0.768000pt;}
.ws49{word-spacing:-0.640000pt;}
.ws32{word-spacing:-0.524160pt;}
.ws4e{word-spacing:-0.512000pt;}
.ws33{word-spacing:-0.473583pt;}
.ws7b{word-spacing:-0.449280pt;}
.wsb0{word-spacing:-0.384000pt;}
.ws25{word-spacing:-0.374400pt;}
.ws4f{word-spacing:-0.320000pt;}
.ws30{word-spacing:-0.256000pt;}
.ws2e{word-spacing:-0.192000pt;}
.wsbe{word-spacing:-0.159360pt;}
.ws1b{word-spacing:-0.128000pt;}
.ws9{word-spacing:-0.096000pt;}
.ws3d{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.wsa9{word-spacing:0.053120pt;}
.ws31{word-spacing:0.064000pt;}
.ws7{word-spacing:0.096000pt;}
.wsae{word-spacing:0.117760pt;}
.ws43{word-spacing:0.128000pt;}
.wsad{word-spacing:0.149760pt;}
.ws1a{word-spacing:0.159360pt;}
.ws8a{word-spacing:0.192000pt;}
.wsbd{word-spacing:0.212480pt;}
.ws24{word-spacing:0.224640pt;}
.ws7c{word-spacing:0.236791pt;}
.ws6{word-spacing:0.256000pt;}
.wsbc{word-spacing:0.318720pt;}
.ws2f{word-spacing:0.320000pt;}
.ws3b{word-spacing:0.448000pt;}
.wsca{word-spacing:0.478080pt;}
.wsc8{word-spacing:0.512000pt;}
.ws1d{word-spacing:0.640000pt;}
.wsc9{word-spacing:0.690560pt;}
.ws86{word-spacing:0.704000pt;}
.ws20{word-spacing:0.832000pt;}
.ws1e{word-spacing:0.896000pt;}
.ws4a{word-spacing:1.280000pt;}
.wsba{word-spacing:1.536000pt;}
.ws3a{word-spacing:1.600000pt;}
.ws5f{word-spacing:1.728000pt;}
.ws57{word-spacing:1.920000pt;}
.ws38{word-spacing:1.984000pt;}
.wsac{word-spacing:2.021760pt;}
.wsd8{word-spacing:2.176000pt;}
.ws34{word-spacing:2.240000pt;}
.ws88{word-spacing:2.368000pt;}
.ws54{word-spacing:2.560000pt;}
.wscc{word-spacing:2.816000pt;}
.ws97{word-spacing:3.008000pt;}
.wsb5{word-spacing:3.200000pt;}
.wsb4{word-spacing:3.456000pt;}
.ws96{word-spacing:3.520000pt;}
.ws66{word-spacing:3.648000pt;}
.wsd3{word-spacing:3.712000pt;}
.ws58{word-spacing:3.840000pt;}
.ws60{word-spacing:3.904000pt;}
.wsa1{word-spacing:3.968000pt;}
.wsa2{word-spacing:4.096000pt;}
.wsa0{word-spacing:4.160000pt;}
.ws45{word-spacing:4.288000pt;}
.ws7a{word-spacing:4.352000pt;}
.ws5a{word-spacing:4.480000pt;}
.wsab{word-spacing:4.642560pt;}
.ws42{word-spacing:4.928000pt;}
.ws1c{word-spacing:5.120000pt;}
.ws53{word-spacing:5.568000pt;}
.ws56{word-spacing:5.760000pt;}
.ws51{word-spacing:5.888000pt;}
.ws52{word-spacing:5.952000pt;}
.wsbb{word-spacing:6.016000pt;}
.ws5e{word-spacing:6.080000pt;}
.ws4b{word-spacing:6.400000pt;}
.wsb1{word-spacing:6.656000pt;}
.ws9c{word-spacing:6.720000pt;}
.wsdb{word-spacing:6.912000pt;}
.ws99{word-spacing:7.040000pt;}
.ws98{word-spacing:7.296000pt;}
.ws9f{word-spacing:7.360000pt;}
.ws9b{word-spacing:7.488000pt;}
.ws80{word-spacing:7.680000pt;}
.ws9a{word-spacing:7.744000pt;}
.wsd2{word-spacing:7.936000pt;}
.wsd6{word-spacing:8.320000pt;}
.wsd7{word-spacing:8.576000pt;}
.ws46{word-spacing:8.768000pt;}
.wsa4{word-spacing:8.832000pt;}
.ws44{word-spacing:8.960000pt;}
.wse0{word-spacing:9.030400pt;}
.ws69{word-spacing:9.280000pt;}
.ws9e{word-spacing:9.408000pt;}
.ws41{word-spacing:9.600000pt;}
.ws84{word-spacing:9.664000pt;}
.wse4{word-spacing:9.856000pt;}
.ws85{word-spacing:9.920000pt;}
.ws67{word-spacing:10.048000pt;}
.wsc1{word-spacing:10.240000pt;}
.wscb{word-spacing:10.305280pt;}
.wsc0{word-spacing:10.496000pt;}
.ws68{word-spacing:10.560000pt;}
.ws50{word-spacing:10.688000pt;}
.ws4c{word-spacing:10.880000pt;}
.wsd5{word-spacing:11.136000pt;}
.ws65{word-spacing:11.328000pt;}
.wsb6{word-spacing:11.520000pt;}
.wsc3{word-spacing:11.776000pt;}
.ws3f{word-spacing:11.968000pt;}
.ws87{word-spacing:12.160000pt;}
.ws40{word-spacing:12.288000pt;}
.ws59{word-spacing:12.480000pt;}
.ws8e{word-spacing:12.800000pt;}
.wse5{word-spacing:13.056000pt;}
.ws6e{word-spacing:13.248000pt;}
.ws7f{word-spacing:14.144000pt;}
.ws7d{word-spacing:14.208000pt;}
.ws7e{word-spacing:14.400000pt;}
.wsdc{word-spacing:14.720000pt;}
.wsb2{word-spacing:14.976000pt;}
.ws71{word-spacing:15.040000pt;}
.wsb9{word-spacing:16.000000pt;}
.wscd{word-spacing:16.640000pt;}
.ws1f{word-spacing:16.896000pt;}
.ws75{word-spacing:17.088000pt;}
.wsb3{word-spacing:17.280000pt;}
.ws76{word-spacing:17.344000pt;}
.wsbf{word-spacing:17.920000pt;}
.ws90{word-spacing:18.176000pt;}
.wsde{word-spacing:18.432000pt;}
.wsdf{word-spacing:18.816000pt;}
.wscf{word-spacing:19.840000pt;}
.ws5d{word-spacing:19.904000pt;}
.ws78{word-spacing:21.568000pt;}
.ws9d{word-spacing:22.080000pt;}
.ws6d{word-spacing:22.208000pt;}
.ws83{word-spacing:22.400000pt;}
.ws82{word-spacing:22.656000pt;}
.ws6c{word-spacing:22.720000pt;}
.ws72{word-spacing:22.848000pt;}
.ws73{word-spacing:22.976000pt;}
.wse3{word-spacing:23.040000pt;}
.ws48{word-spacing:23.680000pt;}
.ws47{word-spacing:24.128000pt;}
.wsb7{word-spacing:24.192000pt;}
.wsb8{word-spacing:24.576000pt;}
.ws5c{word-spacing:24.768000pt;}
.wse2{word-spacing:24.960000pt;}
.ws6a{word-spacing:25.024000pt;}
.wse1{word-spacing:25.216000pt;}
.ws17{word-spacing:27.038080pt;}
.wsc4{word-spacing:28.416000pt;}
.wsc2{word-spacing:29.696000pt;}
.ws6f{word-spacing:29.888000pt;}
.ws63{word-spacing:31.168000pt;}
.ws64{word-spacing:31.488000pt;}
.ws79{word-spacing:32.320000pt;}
.ws8c{word-spacing:33.088000pt;}
.ws8b{word-spacing:33.472000pt;}
.ws8d{word-spacing:33.600000pt;}
.ws11{word-spacing:33.920000pt;}
.ws19{word-spacing:41.114880pt;}
.ws16{word-spacing:41.752320pt;}
.ws14{word-spacing:65.920000pt;}
.wsf{word-spacing:66.560000pt;}
.ws12{word-spacing:67.840000pt;}
.ws13{word-spacing:74.240000pt;}
.ws15{word-spacing:92.160000pt;}
.ws18{word-spacing:97.422080pt;}
.ws10{word-spacing:160.640000pt;}
._1a{margin-left:-26.879424pt;}
._f{margin-left:-14.720000pt;}
._2d{margin-left:-13.760000pt;}
._29{margin-left:-12.032000pt;}
._2a{margin-left:-10.880000pt;}
._2c{margin-left:-8.896000pt;}
._2b{margin-left:-7.040000pt;}
._25{margin-left:-4.864000pt;}
._26{margin-left:-3.648000pt;}
._27{margin-left:-2.560000pt;}
._22{margin-left:-1.280192pt;}
._0{width:1.152000pt;}
._1{width:2.044800pt;}
._2{width:2.947200pt;}
._23{width:4.672000pt;}
._2f{width:6.464192pt;}
._2e{width:7.552192pt;}
._4{width:14.080000pt;}
._24{width:21.120000pt;}
._5{width:29.440000pt;}
._16{width:38.402560pt;}
._1c{width:40.976768pt;}
._14{width:44.169280pt;}
._8{width:46.080000pt;}
._12{width:60.800000pt;}
._b{width:67.200000pt;}
._1f{width:76.806208pt;}
._30{width:79.552000pt;}
._d{width:81.920000pt;}
._e{width:86.400000pt;}
._21{width:100.488960pt;}
._20{width:106.245312pt;}
._31{width:107.648000pt;}
._18{width:110.082688pt;}
._10{width:113.920000pt;}
._c{width:124.160000pt;}
._a{width:128.000000pt;}
._11{width:140.800000pt;}
._1d{width:151.057344pt;}
._6{width:152.320000pt;}
._3{width:170.240000pt;}
._7{width:184.960000pt;}
._13{width:208.640000pt;}
._19{width:213.765504pt;}
._17{width:239.364032pt;}
._9{width:252.800000pt;}
._1e{width:263.705408pt;}
._1b{width:271.390080pt;}
._15{width:328.973760pt;}
._28{width:752.000000pt;}
.fsc{font-size:32.000000pt;}
.fsd{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fsb{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs5{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:67.461923pt;}
.fs6{font-size:74.880000pt;}
.fs8{font-size:78.930450pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:128.000000pt;}
.y1b6{bottom:-19.680000pt;}
.y0{bottom:0.000000pt;}
.y190{bottom:2.880000pt;}
.y2c{bottom:8.160000pt;}
.y29{bottom:14.400000pt;}
.y18f{bottom:18.240000pt;}
.y1b5{bottom:21.280000pt;}
.y2b{bottom:25.760000pt;}
.y274{bottom:35.360000pt;}
.y28{bottom:35.520000pt;}
.y1b4{bottom:44.640000pt;}
.y18e{bottom:47.200000pt;}
.y21{bottom:50.720000pt;}
.y1{bottom:51.520000pt;}
.y27{bottom:56.640000pt;}
.y18d{bottom:69.120000pt;}
.y26{bottom:77.760000pt;}
.y299{bottom:85.760000pt;}
.y25{bottom:99.040000pt;}
.y93{bottom:108.000000pt;}
.y50{bottom:109.120000pt;}
.y224{bottom:109.124640pt;}
.y1d6{bottom:109.128640pt;}
.y2b2{bottom:112.480000pt;}
.y25a{bottom:112.640000pt;}
.y1b3{bottom:113.120000pt;}
.yd4{bottom:115.680000pt;}
.y297{bottom:116.320000pt;}
.y24{bottom:120.160000pt;}
.y6b{bottom:121.280000pt;}
.y13a{bottom:123.200000pt;}
.y1d5{bottom:126.884000pt;}
.yed{bottom:128.800000pt;}
.y186{bottom:129.600000pt;}
.y92{bottom:130.240000pt;}
.y223{bottom:131.520000pt;}
.y2b1{bottom:133.600000pt;}
.yb5{bottom:133.760000pt;}
.y120{bottom:134.720000pt;}
.yd3{bottom:135.520000pt;}
.y108{bottom:137.280000pt;}
.y296{bottom:137.440000pt;}
.y4f{bottom:138.400000pt;}
.y1b2{bottom:138.880000pt;}
.y158{bottom:139.360000pt;}
.y23{bottom:141.280000pt;}
.y259{bottom:141.760000pt;}
.y222{bottom:142.880000pt;}
.y272{bottom:143.200000pt;}
.y1d4{bottom:149.120000pt;}
.yec{bottom:151.040000pt;}
.y171{bottom:151.200000pt;}
.y6a{bottom:151.840000pt;}
.y185{bottom:152.000000pt;}
.y91{bottom:153.600000pt;}
.y1f3{bottom:154.080000pt;}
.y2b0{bottom:154.720000pt;}
.y20c{bottom:156.800000pt;}
.yd2{bottom:157.760000pt;}
.y295{bottom:158.560000pt;}
.y1d3{bottom:160.480000pt;}
.y157{bottom:161.760000pt;}
.yb4{bottom:162.880000pt;}
.y11f{bottom:163.840000pt;}
.y271{bottom:164.320000pt;}
.y1b1{bottom:164.480000pt;}
.y107{bottom:165.120000pt;}
.y4e{bottom:167.520000pt;}
.y139{bottom:170.880000pt;}
.y184{bottom:175.200000pt;}
.y2af{bottom:176.000000pt;}
.y1b0{bottom:176.480000pt;}
.y20b{bottom:177.920000pt;}
.y69{bottom:178.888640pt;}
.y170{bottom:179.040000pt;}
.yd1{bottom:180.960000pt;}
.y270{bottom:185.440000pt;}
.y106{bottom:187.360000pt;}
.y294{bottom:187.680000pt;}
.yeb{bottom:187.840000pt;}
.y90{bottom:190.400000pt;}
.yb3{bottom:190.720000pt;}
.y1f2{bottom:191.200000pt;}
.y11e{bottom:191.680000pt;}
.y138{bottom:193.120000pt;}
.y4d{bottom:196.640000pt;}
.y2ae{bottom:197.120000pt;}
.y156{bottom:198.560000pt;}
.y20a{bottom:199.200000pt;}
.y221{bottom:200.800000pt;}
.y16f{bottom:201.440000pt;}
.y68{bottom:201.926720pt;}
.yd0{bottom:204.160000pt;}
.y26f{bottom:206.560000pt;}
.y293{bottom:208.960000pt;}
.yea{bottom:210.080000pt;}
.y105{bottom:210.560000pt;}
.y183{bottom:212.000000pt;}
.y1f1{bottom:212.320000pt;}
.y258{bottom:212.480000pt;}
.y8f{bottom:212.640000pt;}
.yb2{bottom:213.120000pt;}
.y11d{bottom:214.080000pt;}
.y137{bottom:216.320000pt;}
.y2ad{bottom:218.240000pt;}
.y1f{bottom:218.241920pt;}
.y209{bottom:220.320000pt;}
.y155{bottom:220.800000pt;}
.y220{bottom:222.080000pt;}
.y16e{bottom:224.640000pt;}
.y67{bottom:224.964800pt;}
.y4c{bottom:225.760000pt;}
.y1d2{bottom:226.560000pt;}
.y26e{bottom:227.680000pt;}
.y1af{bottom:233.280000pt;}
.ye9{bottom:233.440000pt;}
.y257{bottom:233.600000pt;}
.y182{bottom:234.240000pt;}
.ycf{bottom:241.120000pt;}
.y1e{bottom:241.280000pt;}
.y208{bottom:241.440000pt;}
.y21f{bottom:243.200000pt;}
.y104{bottom:247.360000pt;}
.y1d1{bottom:247.680000pt;}
.y66{bottom:247.843840pt;}
.y8e{bottom:249.440000pt;}
.yb1{bottom:249.920000pt;}
.y11c{bottom:250.880000pt;}
.y136{bottom:253.120000pt;}
.y292{bottom:253.440000pt;}
.y1ae{bottom:254.560000pt;}
.y256{bottom:254.720000pt;}
.y4b{bottom:255.040000pt;}
.y26d{bottom:256.960000pt;}
.y154{bottom:257.600000pt;}
.y16d{bottom:261.440000pt;}
.y1f0{bottom:262.560000pt;}
.yce{bottom:263.360000pt;}
.y21e{bottom:264.320000pt;}
.y1d{bottom:266.240000pt;}
.y2ac{bottom:268.640000pt;}
.y103{bottom:269.760000pt;}
.ye8{bottom:270.240000pt;}
.y65{bottom:270.881920pt;}
.y8d{bottom:271.680000pt;}
.yb0{bottom:272.160000pt;}
.y11b{bottom:273.120000pt;}
.y291{bottom:274.560000pt;}
.y135{bottom:275.520000pt;}
.y1ad{bottom:275.680000pt;}
.y26c{bottom:278.080000pt;}
.y153{bottom:279.840000pt;}
.y4a{bottom:282.080000pt;}
.y16c{bottom:283.680000pt;}
.y1ef{bottom:283.840000pt;}
.y1d0{bottom:286.080000pt;}
.y2ab{bottom:289.760000pt;}
.ye7{bottom:292.480000pt;}
.y102{bottom:292.960000pt;}
.y64{bottom:293.920000pt;}
.y181{bottom:294.400000pt;}
.y8c{bottom:295.040000pt;}
.yaf{bottom:295.360000pt;}
.y1c{bottom:295.520000pt;}
.y21d{bottom:296.160000pt;}
.y11a{bottom:296.320000pt;}
.y1ac{bottom:296.800000pt;}
.y26b{bottom:299.200000pt;}
.ycd{bottom:300.000000pt;}
.y49{bottom:301.120000pt;}
.y290{bottom:303.680000pt;}
.y207{bottom:304.960000pt;}
.y255{bottom:305.120000pt;}
.y2aa{bottom:310.880000pt;}
.y75{bottom:311.360000pt;}
.y134{bottom:312.320000pt;}
.y1ee{bottom:312.960000pt;}
.y1cf{bottom:315.200000pt;}
.ye6{bottom:315.680000pt;}
.y152{bottom:316.640000pt;}
.y21c{bottom:317.280000pt;}
.y1ab{bottom:317.920000pt;}
.y8b{bottom:318.240000pt;}
.y48{bottom:320.160000pt;}
.y16b{bottom:320.480000pt;}
.y23d{bottom:320.800000pt;}
.ycc{bottom:322.560000pt;}
.y1b{bottom:324.640000pt;}
.y28f{bottom:324.960000pt;}
.y206{bottom:326.080000pt;}
.y254{bottom:326.240000pt;}
.y26a{bottom:328.320000pt;}
.y101{bottom:329.760000pt;}
.y2a9{bottom:332.000000pt;}
.yae{bottom:332.160000pt;}
.y119{bottom:333.120000pt;}
.y1ed{bottom:334.080000pt;}
.y133{bottom:334.560000pt;}
.y151{bottom:336.480000pt;}
.y21b{bottom:338.400000pt;}
.ye5{bottom:339.040000pt;}
.y1aa{bottom:339.200000pt;}
.y47{bottom:339.360000pt;}
.y180{bottom:339.840000pt;}
.y74{bottom:341.760000pt;}
.y16a{bottom:342.880000pt;}
.y205{bottom:347.200000pt;}
.y269{bottom:349.600000pt;}
.y23c{bottom:349.920000pt;}
.y63{bottom:350.720000pt;}
.y100{bottom:352.000000pt;}
.y2a8{bottom:353.280000pt;}
.y1a{bottom:353.760000pt;}
.y28e{bottom:354.080000pt;}
.yad{bottom:354.560000pt;}
.y8a{bottom:355.040000pt;}
.y118{bottom:355.360000pt;}
.y1ce{bottom:357.600000pt;}
.y132{bottom:357.760000pt;}
.y46{bottom:358.400000pt;}
.y150{bottom:358.880000pt;}
.ycb{bottom:359.360000pt;}
.y21a{bottom:359.520000pt;}
.y1a9{bottom:360.320000pt;}
.y28c{bottom:362.080000pt;}
.y17f{bottom:363.040000pt;}
.y1ec{bottom:363.200000pt;}
.y169{bottom:366.080000pt;}
.y204{bottom:368.480000pt;}
.y268{bottom:370.720000pt;}
.y23b{bottom:371.040000pt;}
.y28d{bottom:375.200000pt;}
.yff{bottom:375.360000pt;}
.ye4{bottom:375.840000pt;}
.y253{bottom:376.480000pt;}
.y89{bottom:377.280000pt;}
.yac{bottom:377.760000pt;}
.y1cd{bottom:378.720000pt;}
.y62{bottom:381.280000pt;}
.y1a8{bottom:381.440000pt;}
.yca{bottom:381.600000pt;}
.y14f{bottom:382.080000pt;}
.y2a7{bottom:382.400000pt;}
.y19{bottom:382.880000pt;}
.y28b{bottom:383.200000pt;}
.y1eb{bottom:384.480000pt;}
.y45{bottom:386.720000pt;}
.y203{bottom:389.600000pt;}
.y117{bottom:392.320000pt;}
.y219{bottom:392.640000pt;}
.y252{bottom:397.760000pt;}
.ye3{bottom:398.080000pt;}
.y17e{bottom:399.840000pt;}
.y88{bottom:400.480000pt;}
.yab{bottom:400.960000pt;}
.y1a7{bottom:402.560000pt;}
.y168{bottom:402.880000pt;}
.y28a{bottom:404.320000pt;}
.y131{bottom:404.480000pt;}
.yc9{bottom:404.800000pt;}
.y1ea{bottom:405.600000pt;}
.y202{bottom:410.720000pt;}
.y61{bottom:411.840000pt;}
.y18{bottom:412.160000pt;}
.y23a{bottom:413.440000pt;}
.y218{bottom:413.600000pt;}
.y116{bottom:414.560000pt;}
.y14e{bottom:418.880000pt;}
.y267{bottom:420.960000pt;}
.y1cc{bottom:421.120000pt;}
.ye2{bottom:421.280000pt;}
.y17d{bottom:422.240000pt;}
.y1a6{bottom:423.840000pt;}
.y167{bottom:425.120000pt;}
.y289{bottom:425.440000pt;}
.y130{bottom:429.920000pt;}
.y201{bottom:431.840000pt;}
.yfe{bottom:434.400000pt;}
.y239{bottom:434.560000pt;}
.y1e9{bottom:434.720000pt;}
.y87{bottom:437.440000pt;}
.yaa{bottom:437.760000pt;}
.y17{bottom:439.225760pt;}
.y14d{bottom:441.120000pt;}
.yc8{bottom:441.600000pt;}
.y1cb{bottom:442.240000pt;}
.y60{bottom:442.400000pt;}
.y1a5{bottom:444.960000pt;}
.y17c{bottom:445.440000pt;}
.y217{bottom:446.560000pt;}
.y251{bottom:448.000000pt;}
.y44{bottom:451.040000pt;}
.y2a6{bottom:452.960000pt;}
.y1e8{bottom:455.840000pt;}
.ya9{bottom:457.600000pt;}
.ye1{bottom:458.080000pt;}
.y86{bottom:459.680000pt;}
.y115{bottom:460.960000pt;}
.y200{bottom:461.120000pt;}
.yc7{bottom:461.440000pt;}
.y166{bottom:461.920000pt;}
.y16{bottom:462.263840pt;}
.y1ca{bottom:463.360000pt;}
.y238{bottom:463.680000pt;}
.y14c{bottom:464.320000pt;}
.y250{bottom:469.120000pt;}
.y288{bottom:470.080000pt;}
.y5f{bottom:472.800000pt;}
.y1a4{bottom:474.080000pt;}
.y1e7{bottom:477.120000pt;}
.y43{bottom:477.440000pt;}
.ye0{bottom:480.320000pt;}
.y165{bottom:481.760000pt;}
.y17b{bottom:482.240000pt;}
.y85{bottom:482.880000pt;}
.yc6{bottom:483.840000pt;}
.y15{bottom:485.301920pt;}
.y266{bottom:486.720000pt;}
.y14b{bottom:487.680000pt;}
.y287{bottom:491.200000pt;}
.yfd{bottom:494.400000pt;}
.y42{bottom:495.840000pt;}
.ya8{bottom:497.280000pt;}
.y114{bottom:497.760000pt;}
.y216{bottom:498.240000pt;}
.y1c9{bottom:500.480000pt;}
.y237{bottom:500.960000pt;}
.y5e{bottom:503.360000pt;}
.y164{bottom:504.160000pt;}
.y17a{bottom:504.480000pt;}
.y84{bottom:506.080000pt;}
.y265{bottom:507.840000pt;}
.y14{bottom:508.180960pt;}
.y1a3{bottom:511.200000pt;}
.y24f{bottom:513.600000pt;}
.yfc{bottom:516.640000pt;}
.ya7{bottom:517.280000pt;}
.y12f{bottom:519.680000pt;}
.y113{bottom:520.160000pt;}
.y286{bottom:520.320000pt;}
.yc5{bottom:520.640000pt;}
.y1c8{bottom:521.600000pt;}
.y236{bottom:522.080000pt;}
.y14a{bottom:524.480000pt;}
.y41{bottom:527.360000pt;}
.y179{bottom:527.840000pt;}
.y13{bottom:531.219040pt;}
.y5d{bottom:532.480000pt;}
.ya6{bottom:537.120000pt;}
.yc4{bottom:540.480000pt;}
.y163{bottom:540.960000pt;}
.y285{bottom:541.440000pt;}
.y12e{bottom:542.880000pt;}
.y235{bottom:543.200000pt;}
.y1e6{bottom:544.480000pt;}
.y1ff{bottom:545.600000pt;}
.y149{bottom:546.720000pt;}
.y215{bottom:548.480000pt;}
.y1c7{bottom:550.880000pt;}
.y264{bottom:552.320000pt;}
.y83{bottom:552.800000pt;}
.yfb{bottom:553.600000pt;}
.y12{bottom:554.257120pt;}
.y112{bottom:556.960000pt;}
.y24e{bottom:558.080000pt;}
.y40{bottom:558.880000pt;}
.ya5{bottom:559.360000pt;}
.y5c{bottom:561.760000pt;}
.yc3{bottom:562.720000pt;}
.y162{bottom:563.200000pt;}
.y234{bottom:564.320000pt;}
.y178{bottom:564.640000pt;}
.y1e5{bottom:565.760000pt;}
.y1fe{bottom:566.880000pt;}
.y214{bottom:569.600000pt;}
.y148{bottom:569.920000pt;}
.y284{bottom:570.720000pt;}
.y1c6{bottom:572.000000pt;}
.y263{bottom:573.440000pt;}
.y1a2{bottom:574.720000pt;}
.yfa{bottom:575.840000pt;}
.y11{bottom:577.136160pt;}
.y82{bottom:578.240000pt;}
.y111{bottom:579.200000pt;}
.y24d{bottom:579.360000pt;}
.y12d{bottom:579.680000pt;}
.ya4{bottom:582.560000pt;}
.y233{bottom:585.440000pt;}
.y177{bottom:586.880000pt;}
.y3f{bottom:588.000000pt;}
.y5b{bottom:590.880000pt;}
.y283{bottom:591.840000pt;}
.y262{bottom:594.720000pt;}
.y1e4{bottom:594.880000pt;}
.y1a1{bottom:595.840000pt;}
.y2a5{bottom:598.080000pt;}
.yf9{bottom:599.040000pt;}
.yc2{bottom:599.520000pt;}
.y161{bottom:600.000000pt;}
.y10{bottom:600.174240pt;}
.y1c5{bottom:601.120000pt;}
.y12c{bottom:601.920000pt;}
.y110{bottom:602.400000pt;}
.ydf{bottom:605.760000pt;}
.y147{bottom:606.720000pt;}
.y1fd{bottom:609.120000pt;}
.y176{bottom:610.080000pt;}
.y282{bottom:612.960000pt;}
.y261{bottom:615.840000pt;}
.y1e3{bottom:616.000000pt;}
.y1a0{bottom:617.120000pt;}
.y3e{bottom:617.280000pt;}
.y232{bottom:618.560000pt;}
.ya3{bottom:619.360000pt;}
.y213{bottom:620.000000pt;}
.y281{bottom:620.960000pt;}
.yc1{bottom:621.760000pt;}
.y5a{bottom:622.240000pt;}
.yf{bottom:623.212320pt;}
.y24c{bottom:623.840000pt;}
.y12b{bottom:625.280000pt;}
.y81{bottom:625.760000pt;}
.y146{bottom:629.120000pt;}
.y1c4{bottom:630.240000pt;}
.y1e2{bottom:637.120000pt;}
.y19f{bottom:638.240000pt;}
.y3d{bottom:638.400000pt;}
.y10f{bottom:639.200000pt;}
.y231{bottom:639.680000pt;}
.y212{bottom:641.120000pt;}
.ya2{bottom:641.600000pt;}
.y280{bottom:642.080000pt;}
.yde{bottom:642.560000pt;}
.y24b{bottom:644.960000pt;}
.y160{bottom:645.600000pt;}
.ye{bottom:646.091360pt;}
.y80{bottom:648.160000pt;}
.y2a4{bottom:648.480000pt;}
.y249{bottom:652.960000pt;}
.y175{bottom:656.800000pt;}
.yc0{bottom:658.560000pt;}
.yf8{bottom:659.040000pt;}
.y1c3{bottom:659.520000pt;}
.y260{bottom:660.320000pt;}
.y230{bottom:660.800000pt;}
.y10e{bottom:661.600000pt;}
.y12a{bottom:662.080000pt;}
.y211{bottom:662.240000pt;}
.y27f{bottom:663.200000pt;}
.y3c{bottom:664.165280pt;}
.ydd{bottom:664.960000pt;}
.y145{bottom:665.920000pt;}
.y24a{bottom:666.080000pt;}
.y1e1{bottom:666.240000pt;}
.y19e{bottom:667.360000pt;}
.y59{bottom:667.640000pt;}
.yd{bottom:669.129440pt;}
.y2a3{bottom:669.600000pt;}
.y248{bottom:674.080000pt;}
.y1fc{bottom:675.520000pt;}
.ya1{bottom:678.560000pt;}
.ybf{bottom:680.960000pt;}
.yf7{bottom:681.440000pt;}
.y174{bottom:682.240000pt;}
.y15f{bottom:682.400000pt;}
.y210{bottom:683.520000pt;}
.y129{bottom:684.320000pt;}
.y10d{bottom:684.800000pt;}
.y7f{bottom:684.960000pt;}
.y2b8{bottom:687.040000pt;}
.y3b{bottom:687.365440pt;}
.y1e0{bottom:687.520000pt;}
.y144{bottom:688.160000pt;}
.y19d{bottom:688.480000pt;}
.y1c2{bottom:688.640000pt;}
.yc{bottom:692.167520pt;}
.y22f{bottom:692.640000pt;}
.y247{bottom:695.200000pt;}
.y1fb{bottom:696.640000pt;}
.y2a2{bottom:698.720000pt;}
.ya0{bottom:700.800000pt;}
.ydc{bottom:701.760000pt;}
.y58{bottom:702.512000pt;}
.ybe{bottom:704.160000pt;}
.y15e{bottom:704.640000pt;}
.y7e{bottom:707.200000pt;}
.y128{bottom:707.520000pt;}
.y173{bottom:707.680000pt;}
.y10c{bottom:708.000000pt;}
.y27e{bottom:708.480000pt;}
.y1df{bottom:708.640000pt;}
.y19c{bottom:709.760000pt;}
.y25f{bottom:710.560000pt;}
.y3a{bottom:710.724960pt;}
.y22e{bottom:713.760000pt;}
.yb{bottom:715.046560pt;}
.y2b7{bottom:716.160000pt;}
.y246{bottom:716.480000pt;}
.y1c1{bottom:717.760000pt;}
.yf6{bottom:718.240000pt;}
.y2a1{bottom:720.000000pt;}
.ydb{bottom:721.600000pt;}
.y9f{bottom:724.000000pt;}
.y143{bottom:724.960000pt;}
.y1fa{bottom:725.760000pt;}
.y1de{bottom:729.760000pt;}
.y25e{bottom:731.840000pt;}
.y172{bottom:733.120000pt;}
.y39{bottom:734.084480pt;}
.y2b6{bottom:737.280000pt;}
.ya{bottom:738.084640pt;}
.y19b{bottom:738.880000pt;}
.yf5{bottom:740.480000pt;}
.ybd{bottom:740.960000pt;}
.y15d{bottom:741.440000pt;}
.yda{bottom:743.840000pt;}
.y7d{bottom:744.000000pt;}
.y127{bottom:744.320000pt;}
.y10b{bottom:744.800000pt;}
.y57{bottom:745.400000pt;}
.y22d{bottom:745.600000pt;}
.y20f{bottom:746.880000pt;}
.y2a0{bottom:749.120000pt;}
.y27d{bottom:749.920000pt;}
.y1dd{bottom:750.880000pt;}
.y25d{bottom:752.960000pt;}
.y1f9{bottom:754.880000pt;}
.y38{bottom:757.444000pt;}
.y9{bottom:759.688000pt;}
.y19a{bottom:760.000000pt;}
.y9e{bottom:760.800000pt;}
.y245{bottom:760.960000pt;}
.yf4{bottom:763.680000pt;}
.y7c{bottom:766.240000pt;}
.y126{bottom:766.560000pt;}
.y22c{bottom:766.720000pt;}
.y10a{bottom:767.040000pt;}
.y1c0{bottom:768.160000pt;}
.y29f{bottom:770.240000pt;}
.y2b5{bottom:772.640000pt;}
.y1f8{bottom:776.160000pt;}
.y27c{bottom:779.040000pt;}
.y1dc{bottom:780.000000pt;}
.yd9{bottom:780.640000pt;}
.y37{bottom:780.803520pt;}
.y199{bottom:781.120000pt;}
.y244{bottom:782.080000pt;}
.y9d{bottom:783.040000pt;}
.y15c{bottom:786.880000pt;}
.y22b{bottom:788.000000pt;}
.y56{bottom:788.288000pt;}
.y1bf{bottom:789.280000pt;}
.y125{bottom:789.920000pt;}
.y142{bottom:790.400000pt;}
.y2b4{bottom:792.000000pt;}
.y8{bottom:794.560000pt;}
.y1f7{bottom:797.280000pt;}
.y73{bottom:798.080000pt;}
.y29e{bottom:799.360000pt;}
.yf3{bottom:800.480000pt;}
.y198{bottom:802.240000pt;}
.yd8{bottom:802.880000pt;}
.y243{bottom:803.200000pt;}
.y109{bottom:803.840000pt;}
.y36{bottom:804.163040pt;}
.y7b{bottom:805.600000pt;}
.y9c{bottom:806.400000pt;}
.y18b{bottom:810.240000pt;}
.y1be{bottom:810.400000pt;}
.y1db{bottom:818.400000pt;}
.y22a{bottom:819.680000pt;}
.ybc{bottom:819.840000pt;}
.y29d{bottom:820.640000pt;}
.yf2{bottom:822.880000pt;}
.y197{bottom:823.520000pt;}
.y15b{bottom:823.840000pt;}
.y25c{bottom:824.320000pt;}
.yd7{bottom:826.240000pt;}
.y124{bottom:826.720000pt;}
.y141{bottom:827.200000pt;}
.y35{bottom:827.363200pt;}
.y72{bottom:828.480000pt;}
.y27b{bottom:828.640000pt;}
.y55{bottom:831.176000pt;}
.y242{bottom:832.320000pt;}
.y1bd{bottom:839.520000pt;}
.y229{bottom:840.960000pt;}
.y7{bottom:841.120000pt;}
.ybb{bottom:842.240000pt;}
.y9b{bottom:843.200000pt;}
.y7a{bottom:845.920000pt;}
.yf1{bottom:846.080000pt;}
.y123{bottom:846.560000pt;}
.y18a{bottom:847.040000pt;}
.y1f6{bottom:847.520000pt;}
.y140{bottom:849.440000pt;}
.y27a{bottom:849.760000pt;}
.y34{bottom:850.722720pt;}
.y196{bottom:852.640000pt;}
.y241{bottom:853.600000pt;}
.y71{bottom:859.040000pt;}
.y1da{bottom:860.800000pt;}
.y228{bottom:861.920000pt;}
.y9a{bottom:863.040000pt;}
.y122{bottom:866.400000pt;}
.y1f5{bottom:868.800000pt;}
.yf0{bottom:869.280000pt;}
.y279{bottom:870.880000pt;}
.y13f{bottom:872.640000pt;}
.y54{bottom:873.896000pt;}
.y33{bottom:874.082240pt;}
.y240{bottom:874.720000pt;}
.y1bc{bottom:876.800000pt;}
.yba{bottom:879.040000pt;}
.y2b3{bottom:881.920000pt;}
.y15a{bottom:882.880000pt;}
.y79{bottom:883.368000pt;}
.y99{bottom:885.280000pt;}
.y121{bottom:886.240000pt;}
.y6{bottom:887.680000pt;}
.y70{bottom:889.600000pt;}
.y1d9{bottom:889.920000pt;}
.y29c{bottom:892.000000pt;}
.y189{bottom:892.480000pt;}
.y227{bottom:895.040000pt;}
.y23f{bottom:895.840000pt;}
.y32{bottom:897.441760pt;}
.y1bb{bottom:897.920000pt;}
.yb9{bottom:898.880000pt;}
.y278{bottom:900.000000pt;}
.y159{bottom:905.120000pt;}
.y195{bottom:905.280000pt;}
.yef{bottom:906.080000pt;}
.y98{bottom:908.480000pt;}
.y13e{bottom:909.440000pt;}
.y1d8{bottom:911.040000pt;}
.y53{bottom:916.784000pt;}
.yb8{bottom:918.720000pt;}
.y1ba{bottom:919.040000pt;}
.y6f{bottom:920.160000pt;}
.y31{bottom:920.801280pt;}
.y277{bottom:921.280000pt;}
.yd6{bottom:922.080000pt;}
.y298{bottom:922.240000pt;}
.y78{bottom:924.648000pt;}
.y226{bottom:926.880000pt;}
.y20e{bottom:927.040000pt;}
.yee{bottom:928.320000pt;}
.y188{bottom:929.280000pt;}
.y5{bottom:931.684800pt;}
.y13d{bottom:931.840000pt;}
.y1d7{bottom:932.160000pt;}
.y194{bottom:932.960000pt;}
.y29b{bottom:936.480000pt;}
.y1b9{bottom:940.160000pt;}
.yb7{bottom:940.960000pt;}
.yd5{bottom:941.920000pt;}
.y276{bottom:942.400000pt;}
.y30{bottom:944.160800pt;}
.y97{bottom:945.280000pt;}
.y20d{bottom:948.160000pt;}
.y6e{bottom:950.560000pt;}
.y187{bottom:951.680000pt;}
.y4{bottom:954.722880pt;}
.y29a{bottom:957.760000pt;}
.y225{bottom:958.720000pt;}
.y52{bottom:959.672000pt;}
.y193{bottom:960.806880pt;}
.y1b8{bottom:961.440000pt;}
.yb6{bottom:964.320000pt;}
.y77{bottom:964.488000pt;}
.y96{bottom:965.280000pt;}
.y2f{bottom:967.360960pt;}
.y13c{bottom:968.640000pt;}
.y1f4{bottom:969.440000pt;}
.y273{bottom:972.640000pt;}
.y3{bottom:977.760960pt;}
.y6d{bottom:981.120000pt;}
.y23e{bottom:982.560000pt;}
.y192{bottom:984.487680pt;}
.y275{bottom:986.880000pt;}
.y95{bottom:987.520000pt;}
.y13b{bottom:988.480000pt;}
.y1b7{bottom:990.560000pt;}
.y2e{bottom:990.720480pt;}
.y2{bottom:1000.640000pt;}
.y51{bottom:1002.560000pt;}
.y76{bottom:1004.160000pt;}
.y191{bottom:1008.000000pt;}
.y94{bottom:1010.720000pt;}
.y25b{bottom:1011.520000pt;}
.y6c{bottom:1011.680000pt;}
.y2d{bottom:1014.080000pt;}
.y18c{bottom:1052.480000pt;}
.y20{bottom:1060.480000pt;}
.y2a{bottom:1099.040000pt;}
.y22{bottom:1401.920000pt;}
.h9{height:-279.360000pt;}
.ha{height:23.520000pt;}
.h1c{height:30.324375pt;}
.h15{height:30.560000pt;}
.h1a{height:30.609688pt;}
.h1b{height:33.760000pt;}
.h3{height:39.870937pt;}
.hc{height:44.363437pt;}
.h18{height:44.533750pt;}
.h16{height:46.609688pt;}
.hb{height:46.739375pt;}
.h13{height:47.961211pt;}
.h11{height:48.558750pt;}
.h1d{height:50.240000pt;}
.h2{height:56.156250pt;}
.h6{height:56.312500pt;}
.h19{height:56.843750pt;}
.h17{height:61.944688pt;}
.h14{height:62.049375pt;}
.h10{height:63.680000pt;}
.h12{height:67.124614pt;}
.hd{height:74.505600pt;}
.hf{height:78.535798pt;}
.he{height:84.234375pt;}
.h5{height:95.520000pt;}
.h1e{height:100.640000pt;}
.h4{height:127.360000pt;}
.h7{height:1122.560000pt;}
.h8{height:1122.666667pt;}
.h1{height:1126.000000pt;}
.h0{height:1126.080000pt;}
.w5{width:-5738.080000pt;}
.w4{width:256.480000pt;}
.w7{width:511.518667pt;}
.w8{width:516.160000pt;}
.w6{width:558.560000pt;}
.w2{width:793.760000pt;}
.w3{width:794.000000pt;}
.w0{width:797.280000pt;}
.w1{width:797.333333pt;}
.x0{left:0.000000pt;}
.x48{left:3.680000pt;}
.x40{left:9.600000pt;}
.xd{left:24.800000pt;}
.x15{left:29.600000pt;}
.x16{left:34.720000pt;}
.x12{left:37.920000pt;}
.x13{left:40.640000pt;}
.xf{left:52.160000pt;}
.x11{left:57.440000pt;}
.xe{left:61.120000pt;}
.x2{left:62.720000pt;}
.x10{left:68.160000pt;}
.x3d{left:70.080000pt;}
.xc{left:72.000000pt;}
.x45{left:75.680000pt;}
.x3e{left:88.960000pt;}
.x2a{left:93.760000pt;}
.x41{left:96.000000pt;}
.x2b{left:97.920000pt;}
.x30{left:107.360000pt;}
.x1d{left:110.880000pt;}
.x17{left:113.440000pt;}
.x3c{left:117.440000pt;}
.x42{left:119.520000pt;}
.x1b{left:120.632000pt;}
.x3{left:122.400000pt;}
.x4{left:124.480000pt;}
.x33{left:129.120000pt;}
.x7{left:131.520000pt;}
.x1e{left:139.200000pt;}
.x9{left:141.120000pt;}
.x43{left:144.000000pt;}
.x24{left:148.160000pt;}
.x2c{left:165.440000pt;}
.x44{left:168.000000pt;}
.x2d{left:169.600000pt;}
.x6{left:182.096000pt;}
.x35{left:183.520000pt;}
.x3b{left:185.920000pt;}
.xb{left:187.680000pt;}
.x20{left:191.354400pt;}
.x31{left:200.640000pt;}
.x25{left:202.080000pt;}
.x2e{left:213.120000pt;}
.x2f{left:217.280000pt;}
.x47{left:226.880000pt;}
.x46{left:230.560000pt;}
.x18{left:233.440000pt;}
.x5{left:251.360000pt;}
.x1c{left:260.144000pt;}
.x3f{left:264.000000pt;}
.x34{left:317.440000pt;}
.x37{left:329.760000pt;}
.x23{left:359.680000pt;}
.x22{left:366.872000pt;}
.x1f{left:369.760000pt;}
.xa{left:371.520000pt;}
.x1a{left:396.800000pt;}
.x8{left:398.720000pt;}
.x27{left:440.800000pt;}
.x38{left:463.840000pt;}
.x26{left:591.680000pt;}
.x32{left:593.120000pt;}
.x36{left:610.240000pt;}
.x28{left:619.040000pt;}
.x21{left:627.840000pt;}
.x29{left:684.000000pt;}
.x39{left:721.760000pt;}
.x3a{left:737.920000pt;}
.x19{left:761.920000pt;}
.x1{left:774.880000pt;}
.x14{left:6531.840000pt;}
}




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