
    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_696b7d46e03038373cd12f93.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_004c584b20e1ee5d4d082b45.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133301;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_e2639594db47142939af8944.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ec1577a1f60bcdf361ca8377.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.157227;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_ff4ef1eb390a6d3ff5c0fba4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a34d29a8f4e929d8e685b521.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_4d8ee57ba7c05e38d7bfb998.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.916504;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_6364c7c1b41d4fe5ce218385.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.702148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.081120px;}
.v2{vertical-align:20.638080px;}
.ls67{letter-spacing:-1.374480px;}
.ls3f{letter-spacing:-0.956160px;}
.ls6d{letter-spacing:-0.836640px;}
.ls3e{letter-spacing:-0.657360px;}
.ls66{letter-spacing:-0.597600px;}
.ls30{letter-spacing:-0.418320px;}
.ls11{letter-spacing:-0.358560px;}
.lsd{letter-spacing:-0.336960px;}
.ls12{letter-spacing:-0.298800px;}
.ls54{letter-spacing:-0.292320px;}
.ls29{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.239040px;}
.lsc{letter-spacing:-0.216000px;}
.ls2d{letter-spacing:-0.208800px;}
.ls14{letter-spacing:-0.179280px;}
.ls65{letter-spacing:-0.167040px;}
.lsb{letter-spacing:-0.144000px;}
.ls56{letter-spacing:-0.125280px;}
.lsf{letter-spacing:-0.119520px;}
.lsa{letter-spacing:-0.108000px;}
.ls28{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.054000px;}
.lse{letter-spacing:0.059760px;}
.ls49{letter-spacing:0.060480px;}
.ls5d{letter-spacing:0.077760px;}
.ls1f{letter-spacing:0.080640px;}
.ls5a{letter-spacing:0.083520px;}
.ls2f{letter-spacing:0.119520px;}
.ls55{letter-spacing:0.125280px;}
.ls21{letter-spacing:0.155376px;}
.ls74{letter-spacing:0.155520px;}
.ls1{letter-spacing:0.162000px;}
.ls3{letter-spacing:0.179280px;}
.ls4a{letter-spacing:0.190080px;}
.ls5e{letter-spacing:0.191520px;}
.ls2b{letter-spacing:0.208800px;}
.ls2a{letter-spacing:0.216000px;}
.ls78{letter-spacing:0.239040px;}
.ls2e{letter-spacing:0.250560px;}
.ls6f{letter-spacing:0.250992px;}
.ls4d{letter-spacing:0.256968px;}
.ls7{letter-spacing:0.275040px;}
.ls2{letter-spacing:0.288000px;}
.ls53{letter-spacing:0.292320px;}
.ls5{letter-spacing:0.298800px;}
.ls76{letter-spacing:0.328680px;}
.ls2c{letter-spacing:0.334080px;}
.ls75{letter-spacing:0.334656px;}
.ls9{letter-spacing:0.337680px;}
.ls15{letter-spacing:0.358560px;}
.ls41{letter-spacing:0.376488px;}
.ls73{letter-spacing:0.418320px;}
.ls77{letter-spacing:0.478080px;}
.ls47{letter-spacing:0.537840px;}
.ls57{letter-spacing:0.597600px;}
.ls46{letter-spacing:0.657360px;}
.ls4{letter-spacing:0.896400px;}
.ls31{letter-spacing:1.015920px;}
.ls32{letter-spacing:1.733040px;}
.ls6b{letter-spacing:2.034432px;}
.ls4b{letter-spacing:2.088000px;}
.ls3d{letter-spacing:2.450160px;}
.ls20{letter-spacing:3.167280px;}
.ls1a{letter-spacing:3.884400px;}
.ls3b{letter-spacing:4.601520px;}
.ls3c{letter-spacing:4.667256px;}
.ls39{letter-spacing:5.318640px;}
.ls6{letter-spacing:5.414256px;}
.ls3a{letter-spacing:6.035760px;}
.ls6a{letter-spacing:6.752880px;}
.ls1e{letter-spacing:6.812640px;}
.ls25{letter-spacing:6.848496px;}
.ls59{letter-spacing:7.529760px;}
.ls35{letter-spacing:8.246880px;}
.ls19{letter-spacing:8.964000px;}
.ls61{letter-spacing:9.681120px;}
.ls48{letter-spacing:10.177200px;}
.ls4f{letter-spacing:10.231920px;}
.ls40{letter-spacing:10.356408px;}
.ls17{letter-spacing:10.398240px;}
.ls36{letter-spacing:11.115360px;}
.ls5c{letter-spacing:11.442240px;}
.ls34{letter-spacing:11.832480px;}
.ls64{letter-spacing:11.850408px;}
.ls38{letter-spacing:12.549600px;}
.ls24{letter-spacing:12.627288px;}
.ls45{letter-spacing:12.967920px;}
.ls1c{letter-spacing:13.266720px;}
.ls4e{letter-spacing:13.685040px;}
.ls37{letter-spacing:13.983840px;}
.ls50{letter-spacing:14.157144px;}
.ls1b{letter-spacing:14.700960px;}
.ls52{letter-spacing:14.712912px;}
.ls27{letter-spacing:15.418080px;}
.ls5f{letter-spacing:15.495768px;}
.ls60{letter-spacing:15.531624px;}
.ls26{letter-spacing:16.135200px;}
.ls44{letter-spacing:16.553520px;}
.ls62{letter-spacing:16.852320px;}
.ls4c{letter-spacing:17.270640px;}
.ls23{letter-spacing:17.730792px;}
.ls42{letter-spacing:19.003680px;}
.ls43{letter-spacing:19.224792px;}
.ls6c{letter-spacing:21.155040px;}
.ls68{letter-spacing:22.649040px;}
.ls33{letter-spacing:24.800400px;}
.ls51{letter-spacing:25.529472px;}
.ls70{letter-spacing:32.688720px;}
.ls5b{letter-spacing:35.203680px;}
.ls69{letter-spacing:36.274320px;}
.ls72{letter-spacing:37.051200px;}
.ls58{letter-spacing:41.718240px;}
.ls16{letter-spacing:45.504000px;}
.ls6e{letter-spacing:45.656640px;}
.ls71{letter-spacing:50.676480px;}
.ls1d{letter-spacing:51.072480px;}
.ls63{letter-spacing:53.604720px;}
.ls18{letter-spacing:58.965120px;}
.ls22{letter-spacing:77.329440px;}
.ls79{letter-spacing:91.193760px;}
.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;}
}
.ws98{word-spacing:-60.058800px;}
.ws97{word-spacing:-60.016968px;}
.ws8e{word-spacing:-59.939280px;}
.ws95{word-spacing:-59.819760px;}
.ws8f{word-spacing:-59.760000px;}
.ws93{word-spacing:-59.640480px;}
.ws90{word-spacing:-59.580720px;}
.ws92{word-spacing:-59.520960px;}
.ws91{word-spacing:-59.401440px;}
.ws99{word-spacing:-46.314000px;}
.ws3{word-spacing:-33.408000px;}
.ws2{word-spacing:-25.056000px;}
.wsd5{word-spacing:-18.720000px;}
.ws28{word-spacing:-18.648000px;}
.wsd6{word-spacing:-18.432000px;}
.wsf0{word-spacing:-15.955920px;}
.wsd{word-spacing:-15.896160px;}
.ws29{word-spacing:-15.836400px;}
.wsb{word-spacing:-15.716880px;}
.ws2d{word-spacing:-15.657120px;}
.ws9{word-spacing:-15.597360px;}
.ws8{word-spacing:-15.537600px;}
.wsa{word-spacing:-15.477840px;}
.ws7{word-spacing:-15.418080px;}
.wsc{word-spacing:-15.358320px;}
.ws2a{word-spacing:-15.298560px;}
.ws2e{word-spacing:-15.238800px;}
.ws100{word-spacing:-15.119280px;}
.wsd7{word-spacing:-14.700960px;}
.ws5{word-spacing:-14.040000px;}
.wsfe{word-spacing:-13.983840px;}
.ws104{word-spacing:-13.924080px;}
.wsff{word-spacing:-13.864320px;}
.ws6{word-spacing:-13.824000px;}
.ws103{word-spacing:-13.744800px;}
.ws101{word-spacing:-13.625280px;}
.ws102{word-spacing:-13.565520px;}
.ws94{word-spacing:-13.147200px;}
.ws1{word-spacing:-12.744000px;}
.ws4{word-spacing:-12.582000px;}
.wsba{word-spacing:-11.149920px;}
.wsbd{word-spacing:-11.108160px;}
.wsbb{word-spacing:-11.066400px;}
.ws96{word-spacing:-10.982880px;}
.ws2b{word-spacing:-10.857600px;}
.wsbe{word-spacing:-10.732320px;}
.wscd{word-spacing:-10.690560px;}
.ws2c{word-spacing:-10.648800px;}
.wsf1{word-spacing:-10.264320px;}
.wsbc{word-spacing:-10.186560px;}
.wsd8{word-spacing:-7.305120px;}
.ws71{word-spacing:-3.585600px;}
.ws65{word-spacing:-3.346560px;}
.ws3f{word-spacing:-3.167280px;}
.wsc2{word-spacing:-3.047760px;}
.ws82{word-spacing:-2.868480px;}
.ws31{word-spacing:-2.629440px;}
.wsf6{word-spacing:-2.569680px;}
.ws9d{word-spacing:-2.450160px;}
.ws86{word-spacing:-2.330640px;}
.ws9c{word-spacing:-2.270880px;}
.ws33{word-spacing:-2.151360px;}
.ws1d{word-spacing:-1.912320px;}
.wsb2{word-spacing:-1.852560px;}
.wsb4{word-spacing:-1.795680px;}
.wsac{word-spacing:-1.753920px;}
.wsee{word-spacing:-1.553760px;}
.ws19{word-spacing:-1.434240px;}
.wsdf{word-spacing:-1.254960px;}
.ws18{word-spacing:-1.195200px;}
.ws77{word-spacing:-1.135440px;}
.wsb6{word-spacing:-1.085760px;}
.wsab{word-spacing:-1.044000px;}
.wsaa{word-spacing:-1.002240px;}
.wsdd{word-spacing:-0.896400px;}
.wsf2{word-spacing:-0.836640px;}
.wsf{word-spacing:-0.771840px;}
.ws11{word-spacing:-0.720000px;}
.ws1b{word-spacing:-0.717120px;}
.wsbf{word-spacing:-0.657360px;}
.ws1c{word-spacing:-0.478080px;}
.ws9b{word-spacing:-0.418320px;}
.wsc5{word-spacing:-0.375840px;}
.wsa6{word-spacing:-0.334080px;}
.ws1a{word-spacing:-0.298800px;}
.ws42{word-spacing:-0.292320px;}
.wscb{word-spacing:-0.250560px;}
.ws108{word-spacing:-0.239040px;}
.ws30{word-spacing:-0.216000px;}
.ws40{word-spacing:-0.208800px;}
.wsc8{word-spacing:-0.191520px;}
.ws106{word-spacing:-0.179280px;}
.ws105{word-spacing:-0.162000px;}
.wsb0{word-spacing:-0.119520px;}
.ws1f{word-spacing:-0.059760px;}
.wse{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws3b{word-spacing:0.059760px;}
.ws7d{word-spacing:0.072000px;}
.wsb9{word-spacing:0.083520px;}
.ws4b{word-spacing:0.119520px;}
.ws13{word-spacing:0.168480px;}
.ws22{word-spacing:0.239040px;}
.wsa7{word-spacing:0.250560px;}
.ws2f{word-spacing:0.288000px;}
.wse6{word-spacing:0.292320px;}
.ws107{word-spacing:0.298800px;}
.wseb{word-spacing:0.334080px;}
.ws26{word-spacing:0.358560px;}
.wsec{word-spacing:0.417600px;}
.ws23{word-spacing:0.418320px;}
.ws10{word-spacing:0.432000px;}
.wsa5{word-spacing:0.504000px;}
.wse5{word-spacing:0.537840px;}
.ws12{word-spacing:0.594000px;}
.ws27{word-spacing:0.597600px;}
.ws7f{word-spacing:0.657360px;}
.ws62{word-spacing:0.717120px;}
.ws3e{word-spacing:0.956160px;}
.ws6c{word-spacing:1.015920px;}
.wsb3{word-spacing:1.085760px;}
.ws6d{word-spacing:1.135440px;}
.ws8d{word-spacing:1.254960px;}
.wsd4{word-spacing:1.374480px;}
.ws70{word-spacing:1.434240px;}
.ws35{word-spacing:1.673280px;}
.wsa9{word-spacing:1.795680px;}
.ws89{word-spacing:2.151360px;}
.wsa8{word-spacing:2.255040px;}
.wsa3{word-spacing:2.390400px;}
.wsa4{word-spacing:2.450160px;}
.wsc6{word-spacing:2.505600px;}
.ws46{word-spacing:2.569680px;}
.wsc7{word-spacing:2.589120px;}
.ws5c{word-spacing:2.928240px;}
.ws5b{word-spacing:3.167280px;}
.ws7b{word-spacing:3.227040px;}
.wsed{word-spacing:3.346560px;}
.ws15{word-spacing:3.645360px;}
.ws14{word-spacing:3.884400px;}
.wse4{word-spacing:3.944160px;}
.wsb7{word-spacing:3.967200px;}
.wsca{word-spacing:4.008960px;}
.ws60{word-spacing:4.063680px;}
.ws7e{word-spacing:4.362480px;}
.wsc9{word-spacing:4.384800px;}
.ws3a{word-spacing:4.601520px;}
.ws87{word-spacing:4.661280px;}
.wsb5{word-spacing:4.718880px;}
.ws9f{word-spacing:4.780800px;}
.ws9e{word-spacing:4.900320px;}
.ws25{word-spacing:5.079600px;}
.ws17{word-spacing:5.318640px;}
.ws64{word-spacing:5.378400px;}
.ws41{word-spacing:5.387040px;}
.wsfc{word-spacing:5.497920px;}
.ws49{word-spacing:5.796720px;}
.ws58{word-spacing:5.976000px;}
.ws56{word-spacing:6.035760px;}
.ws83{word-spacing:6.095520px;}
.wse0{word-spacing:6.155280px;}
.ws57{word-spacing:6.215040px;}
.ws47{word-spacing:6.513840px;}
.ws48{word-spacing:6.752880px;}
.ws5a{word-spacing:6.932160px;}
.ws3c{word-spacing:7.230960px;}
.ws5f{word-spacing:7.470000px;}
.wsef{word-spacing:7.529760px;}
.ws3d{word-spacing:7.828560px;}
.ws4e{word-spacing:7.948080px;}
.ws59{word-spacing:8.187120px;}
.ws88{word-spacing:8.246880px;}
.wsc4{word-spacing:8.310240px;}
.wsc3{word-spacing:8.352000px;}
.ws76{word-spacing:8.366400px;}
.ws44{word-spacing:8.665200px;}
.ws24{word-spacing:8.904240px;}
.ws81{word-spacing:9.083520px;}
.ws66{word-spacing:9.621360px;}
.ws67{word-spacing:10.039680px;}
.ws16{word-spacing:10.099440px;}
.ws32{word-spacing:10.338480px;}
.wsad{word-spacing:10.440000px;}
.ws80{word-spacing:10.517760px;}
.wsdc{word-spacing:10.995840px;}
.ws79{word-spacing:11.055600px;}
.ws78{word-spacing:11.115360px;}
.wscc{word-spacing:11.149920px;}
.ws7c{word-spacing:11.234880px;}
.wsb1{word-spacing:11.354400px;}
.ws50{word-spacing:11.533680px;}
.ws69{word-spacing:11.772720px;}
.wsd3{word-spacing:11.832480px;}
.ws72{word-spacing:12.071520px;}
.wsa1{word-spacing:12.250800px;}
.ws5d{word-spacing:12.430080px;}
.ws5e{word-spacing:12.489840px;}
.ws68{word-spacing:12.549600px;}
.ws36{word-spacing:12.967920px;}
.ws37{word-spacing:13.206960px;}
.ws4d{word-spacing:13.386240px;}
.ws4f{word-spacing:13.685040px;}
.ws7a{word-spacing:13.864320px;}
.ws8c{word-spacing:13.924080px;}
.wsd1{word-spacing:13.983840px;}
.wsae{word-spacing:14.103360px;}
.ws20{word-spacing:14.402160px;}
.ws1e{word-spacing:14.641200px;}
.ws4c{word-spacing:14.700960px;}
.ws21{word-spacing:14.940000px;}
.ws4a{word-spacing:15.119280px;}
.ws34{word-spacing:15.358320px;}
.wsce{word-spacing:15.418080px;}
.wsa0{word-spacing:15.537600px;}
.ws8b{word-spacing:15.836400px;}
.ws43{word-spacing:16.075440px;}
.ws51{word-spacing:16.135200px;}
.ws84{word-spacing:16.254720px;}
.ws55{word-spacing:16.553520px;}
.ws38{word-spacing:16.792560px;}
.ws39{word-spacing:16.971840px;}
.ws6f{word-spacing:17.330400px;}
.ws63{word-spacing:17.569440px;}
.ws6a{word-spacing:18.047520px;}
.ws85{word-spacing:18.286560px;}
.ws6b{word-spacing:18.465840px;}
.ws53{word-spacing:18.764640px;}
.ws74{word-spacing:19.003680px;}
.wsc1{word-spacing:19.182960px;}
.ws52{word-spacing:19.302480px;}
.wscf{word-spacing:19.481760px;}
.wse3{word-spacing:20.437920px;}
.wse9{word-spacing:20.916000px;}
.wse8{word-spacing:21.453840px;}
.ws73{word-spacing:21.872160px;}
.wsdb{word-spacing:22.350240px;}
.wsda{word-spacing:22.589280px;}
.wsc0{word-spacing:23.784480px;}
.ws9a{word-spacing:24.023520px;}
.ws75{word-spacing:24.501600px;}
.wsa2{word-spacing:24.740640px;}
.wsaf{word-spacing:25.457760px;}
.wsd9{word-spacing:26.174880px;}
.wsf8{word-spacing:26.892000px;}
.ws8a{word-spacing:27.370080px;}
.wsd0{word-spacing:29.043360px;}
.ws54{word-spacing:30.477600px;}
.wse2{word-spacing:30.955680px;}
.wse1{word-spacing:31.194720px;}
.wse7{word-spacing:31.911840px;}
.wsf9{word-spacing:32.688720px;}
.wsde{word-spacing:36.035280px;}
.wsfd{word-spacing:36.991440px;}
.wsf4{word-spacing:45.596880px;}
.wsfa{word-spacing:50.437440px;}
.wsfb{word-spacing:50.676480px;}
.wsd2{word-spacing:53.544960px;}
.wsf7{word-spacing:57.130560px;}
.ws45{word-spacing:65.078640px;}
.wsb8{word-spacing:65.855520px;}
.ws61{word-spacing:77.329440px;}
.wsf3{word-spacing:86.652000px;}
.wsea{word-spacing:144.738720px;}
.ws6e{word-spacing:161.292240px;}
.wsf5{word-spacing:193.921200px;}
._11{margin-left:-24.935040px;}
._12{margin-left:-10.338480px;}
._1a{margin-left:-9.143280px;}
._1e{margin-left:-5.190192px;}
._8{margin-left:-3.525840px;}
._3{margin-left:-2.360376px;}
._0{margin-left:-1.157760px;}
._1{width:1.022400px;}
._5{width:2.928240px;}
._7{width:4.541760px;}
._4{width:5.903280px;}
._a{width:6.984000px;}
._b{width:8.784720px;}
._9{width:9.852696px;}
._f{width:10.876320px;}
._c{width:12.662640px;}
._2{width:14.216400px;}
._e{width:16.562880px;}
._6{width:17.569440px;}
._1b{width:18.943920px;}
._13{width:19.953360px;}
._19{width:21.080160px;}
._10{width:22.589280px;}
._17{width:31.567680px;}
._18{width:39.049920px;}
._15{width:47.439360px;}
._14{width:55.082880px;}
._1d{width:57.608640px;}
._d{width:77.867280px;}
._1c{width:82.462320px;}
._1f{width:91.193760px;}
._16{width:1448.640000px;}
.fc6{color:rgb(237,107,123);}
.fc5{color:rgb(33,41,79);}
.fc4{color:transparent;}
.fc3{color:rgb(24,28,68);}
.fc2{color:rgb(246,244,248);}
.fc1{color:rgb(238,97,116);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:27.360000px;}
.fsd{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fse{font-size:62.992571px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:108.000000px;}
.fs9{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:4.140000px;}
.y3a{bottom:6.840000px;}
.y22{bottom:12.780000px;}
.y30{bottom:24.660000px;}
.y37{bottom:31.140000px;}
.y20{bottom:57.060000px;}
.y48{bottom:77.760000px;}
.y32{bottom:78.660000px;}
.y133{bottom:90.361800px;}
.y6e{bottom:94.140000px;}
.y4{bottom:97.125005px;}
.y2e{bottom:102.240000px;}
.y6d{bottom:106.020000px;}
.yf5{bottom:106.741440px;}
.y137{bottom:106.741800px;}
.y132{bottom:106.742160px;}
.y10e{bottom:106.745400px;}
.y188{bottom:110.520000px;}
.y1ae{bottom:112.680000px;}
.y1f6{bottom:116.555760px;}
.yf4{bottom:123.299280px;}
.y136{bottom:123.299640px;}
.y10d{bottom:123.303240px;}
.y131{bottom:127.080000px;}
.yc0{bottom:132.203520px;}
.y1d4{bottom:132.310800px;}
.y1ad{bottom:137.160000px;}
.y1e{bottom:139.264499px;}
.yf3{bottom:139.679640px;}
.y10c{bottom:139.683600px;}
.y1f5{bottom:139.951800px;}
.y2d{bottom:140.925420px;}
.y135{bottom:143.460000px;}
.y187{bottom:155.340000px;}
.y1d3{bottom:155.706840px;}
.ybf{bottom:155.778840px;}
.y134{bottom:156.060720px;}
.y10b{bottom:156.063960px;}
.yf2{bottom:159.840000px;}
.y89{bottom:160.292160px;}
.y1ac{bottom:161.640000px;}
.y6c{bottom:162.956340px;}
.y1f4{bottom:163.347840px;}
.y130{bottom:171.720000px;}
.y10a{bottom:172.621800px;}
.y2c{bottom:176.378040px;}
.yf1{bottom:176.400000px;}
.ybe{bottom:179.174880px;}
.y88{bottom:183.867480px;}
.y1ab{bottom:186.120000px;}
.y1f3{bottom:186.923160px;}
.y109{bottom:189.002160px;}
.y1d2{bottom:191.353680px;}
.yf0{bottom:192.780000px;}
.y15{bottom:196.933500px;}
.y18a{bottom:197.696520px;}
.y6b{bottom:198.603180px;}
.yc6{bottom:202.750200px;}
.y108{bottom:205.560000px;}
.y87{bottom:207.263520px;}
.yef{bottom:209.340000px;}
.y1d{bottom:209.518500px;}
.y14{bottom:209.533503px;}
.y159{bottom:210.095460px;}
.y1f2{bottom:210.319200px;}
.y1aa{bottom:210.600000px;}
.y2b{bottom:211.845600px;}
.y1d1{bottom:214.749720px;}
.ybd{bottom:215.001000px;}
.y12f{bottom:217.620000px;}
.y47{bottom:219.960000px;}
.yee{bottom:221.040000px;}
.y189{bottom:221.092560px;}
.y186{bottom:221.271840px;}
.y6a{bottom:221.819940px;}
.y1c{bottom:222.118502px;}
.y13{bottom:222.133505px;}
.yc5{bottom:226.146240px;}
.y4b{bottom:227.348640px;}
.y86{bottom:230.838840px;}
.y14c{bottom:233.856360px;}
.y1f1{bottom:233.894520px;}
.y1b{bottom:234.718504px;}
.y12{bottom:234.733496px;}
.y1a9{bottom:235.080000px;}
.y11f{bottom:236.170440px;}
.y1d0{bottom:238.145760px;}
.ybc{bottom:238.217760px;}
.y185{bottom:244.667880px;}
.y69{bottom:245.395260px;}
.y158{bottom:245.563020px;}
.y2a{bottom:247.492440px;}
.y12e{bottom:248.286780px;}
.yc4{bottom:249.721560px;}
.y4a{bottom:250.744680px;}
.y85{bottom:254.234880px;}
.y1f0{bottom:257.290560px;}
.y14b{bottom:257.431680px;}
.y11e{bottom:259.566480px;}
.y1a8{bottom:259.740000px;}
.y1a{bottom:259.918497px;}
.y11{bottom:259.933500px;}
.ybb{bottom:261.793080px;}
.y184{bottom:268.063920px;}
.y68{bottom:268.791300px;}
.y12d{bottom:271.682820px;}
.y19{bottom:272.518500px;}
.y10{bottom:272.533503px;}
.yc3{bottom:273.117600px;}
.y1cf{bottom:273.792600px;}
.y49{bottom:274.320000px;}
.y84{bottom:277.810200px;}
.y1ef{bottom:280.865880px;}
.y157{bottom:281.015640px;}
.y29{bottom:282.960000px;}
.y11d{bottom:283.141800px;}
.y1a7{bottom:284.220000px;}
.y18{bottom:285.118502px;}
.yf{bottom:285.133499px;}
.yba{bottom:285.189120px;}
.y183{bottom:291.639240px;}
.y67{bottom:292.366620px;}
.y14a{bottom:293.078520px;}
.y12c{bottom:295.078860px;}
.yc2{bottom:296.692920px;}
.y1ce{bottom:297.188640px;}
.y83{bottom:301.206240px;}
.y1ee{bottom:304.261920px;}
.y107{bottom:305.160480px;}
.y11c{bottom:306.537840px;}
.y1a6{bottom:308.700000px;}
.yb9{bottom:308.764440px;}
.y17{bottom:310.318501px;}
.ye{bottom:310.333501px;}
.y182{bottom:315.035280px;}
.y66{bottom:315.762660px;}
.y149{bottom:316.295280px;}
.y156{bottom:316.483200px;}
.y12b{bottom:318.654180px;}
.y28{bottom:319.860000px;}
.y1cd{bottom:320.584680px;}
.yed{bottom:321.656760px;}
.y16{bottom:322.918500px;}
.yd{bottom:322.933500px;}
.y82{bottom:324.781560px;}
.y1ed{bottom:327.837240px;}
.y106{bottom:328.556520px;}
.y11b{bottom:330.113160px;}
.yb8{bottom:332.160480px;}
.yc1{bottom:332.339760px;}
.y1a5{bottom:333.180000px;}
.y181{bottom:338.610600px;}
.y27{bottom:339.120000px;}
.y65{bottom:339.337980px;}
.y148{bottom:339.870600px;}
.y155{bottom:339.879240px;}
.y12a{bottom:342.050220px;}
.yec{bottom:343.260000px;}
.yeb{bottom:343.262880px;}
.y1cc{bottom:344.186640px;}
.yc{bottom:348.133500px;}
.y81{bottom:348.177600px;}
.y1ec{bottom:351.233280px;}
.y105{bottom:351.952560px;}
.yb7{bottom:355.735800px;}
.y1a4{bottom:357.660000px;}
.y180{bottom:362.185920px;}
.y64{bottom:362.734020px;}
.y147{bottom:363.266640px;}
.y154{bottom:363.275280px;}
.y46{bottom:365.086440px;}
.y129{bottom:365.625540px;}
.y11a{bottom:365.785200px;}
.yea{bottom:366.658920px;}
.y1cb{bottom:367.582680px;}
.y80{bottom:371.752920px;}
.y1eb{bottom:374.808600px;}
.y104{bottom:375.527880px;}
.yb6{bottom:379.131840px;}
.y1a3{bottom:382.320000px;}
.y17f{bottom:385.581960px;}
.y63{bottom:386.309340px;}
.yb{bottom:386.785499px;}
.y146{bottom:386.841960px;}
.y153{bottom:386.850600px;}
.y45{bottom:388.303200px;}
.y119{bottom:389.001960px;}
.y128{bottom:389.021580px;}
.ye9{bottom:390.234240px;}
.y7f{bottom:395.148960px;}
.y1ea{bottom:398.204640px;}
.y103{bottom:398.923920px;}
.yb5{bottom:402.707160px;}
.y1ca{bottom:403.408800px;}
.y1a2{bottom:406.800000px;}
.ya{bottom:408.044999px;}
.y17e{bottom:409.157280px;}
.y62{bottom:409.705380px;}
.y145{bottom:410.238000px;}
.y152{bottom:410.246640px;}
.y44{bottom:411.878520px;}
.y118{bottom:412.577280px;}
.y127{bottom:412.596900px;}
.y7e{bottom:418.724280px;}
.y1e9{bottom:421.779960px;}
.y102{bottom:422.499240px;}
.yb4{bottom:426.103200px;}
.y1c9{bottom:426.625560px;}
.y1a1{bottom:431.280000px;}
.y17d{bottom:432.553320px;}
.y61{bottom:433.280700px;}
.y144{bottom:433.813320px;}
.y151{bottom:433.821960px;}
.y43{bottom:435.274560px;}
.y117{bottom:435.973320px;}
.y126{bottom:435.992940px;}
.y7d{bottom:442.120320px;}
.y1e8{bottom:445.176000px;}
.y101{bottom:445.895280px;}
.ye8{bottom:448.569720px;}
.yb3{bottom:449.678520px;}
.y1c8{bottom:450.200880px;}
.y1a0{bottom:455.760000px;}
.y17c{bottom:456.128640px;}
.y60{bottom:456.676740px;}
.y143{bottom:457.209360px;}
.y150{bottom:457.218000px;}
.y42{bottom:458.849880px;}
.y116{bottom:459.548640px;}
.y125{bottom:459.568260px;}
.y7c{bottom:465.695640px;}
.y1e7{bottom:468.751320px;}
.y100{bottom:469.470600px;}
.ye7{bottom:470.890080px;}
.yb2{bottom:473.074560px;}
.y17b{bottom:479.524680px;}
.y19f{bottom:480.240000px;}
.y5f{bottom:480.252060px;}
.y142{bottom:480.784680px;}
.y14f{bottom:480.793320px;}
.y41{bottom:482.245920px;}
.y115{bottom:482.944680px;}
.y124{bottom:482.964300px;}
.y1c7{bottom:485.847720px;}
.y7b{bottom:489.091680px;}
.ye6{bottom:491.044140px;}
.y1e6{bottom:492.147360px;}
.yff{bottom:493.045920px;}
.yb1{bottom:496.649880px;}
.y17a{bottom:503.100000px;}
.y5e{bottom:503.648100px;}
.y14e{bottom:504.368640px;}
.y141{bottom:504.389880px;}
.y19e{bottom:504.720000px;}
.y40{bottom:505.821240px;}
.y114{bottom:506.523960px;}
.y123{bottom:506.539620px;}
.y1c6{bottom:509.064480px;}
.y7a{bottom:512.667000px;}
.y1e5{bottom:515.722680px;}
.yfe{bottom:516.441960px;}
.yb0{bottom:520.045920px;}
.ye5{bottom:524.703960px;}
.y5d{bottom:527.223420px;}
.y14d{bottom:527.764680px;}
.y140{bottom:527.785920px;}
.y3f{bottom:529.217280px;}
.y19d{bottom:529.380000px;}
.y113{bottom:529.928640px;}
.y122{bottom:529.935660px;}
.y1c5{bottom:532.639800px;}
.y9{bottom:538.864499px;}
.y1e4{bottom:539.118720px;}
.yfd{bottom:540.017280px;}
.y179{bottom:542.520000px;}
.yaf{bottom:543.621240px;}
.ye4{bottom:548.129880px;}
.y79{bottom:548.313840px;}
.y5c{bottom:550.619460px;}
.y13f{bottom:551.361240px;}
.y3e{bottom:552.792600px;}
.y112{bottom:553.503960px;}
.y121{bottom:553.510980px;}
.y19c{bottom:553.860000px;}
.y1c4{bottom:556.035840px;}
.y8{bottom:556.864499px;}
.y1e3{bottom:562.694040px;}
.yfc{bottom:563.413320px;}
.yae{bottom:567.017280px;}
.ye3{bottom:571.525920px;}
.y78{bottom:571.530600px;}
.y13e{bottom:574.757280px;}
.y3d{bottom:576.188640px;}
.y111{bottom:576.900000px;}
.y120{bottom:576.907020px;}
.y19b{bottom:578.340000px;}
.y5b{bottom:584.102160px;}
.y1e2{bottom:586.090080px;}
.yfb{bottom:586.988640px;}
.yad{bottom:590.592600px;}
.y178{bottom:591.480000px;}
.y1c3{bottom:591.682680px;}
.ye2{bottom:595.101240px;}
.y77{bottom:595.105920px;}
.y13d{bottom:598.332600px;}
.y3c{bottom:599.763960px;}
.y5a{bottom:600.660000px;}
.y19a{bottom:602.820000px;}
.y1e1{bottom:609.665400px;}
.y110{bottom:610.382160px;}
.yfa{bottom:610.384680px;}
.yac{bottom:613.988640px;}
.y1c2{bottom:615.078720px;}
.ye1{bottom:618.497280px;}
.y76{bottom:618.501960px;}
.y13c{bottom:621.728640px;}
.y3b{bottom:623.160000px;}
.y10f{bottom:626.940000px;}
.y199{bottom:627.300000px;}
.y164{bottom:630.010440px;}
.y177{bottom:630.205200px;}
.y1e0{bottom:633.061440px;}
.yf9{bottom:633.960000px;}
.yab{bottom:637.563960px;}
.y1c1{bottom:638.474760px;}
.ye0{bottom:642.072600px;}
.y75{bottom:642.077280px;}
.y13b{bottom:645.303960px;}
.y7{bottom:645.510000px;}
.y39{bottom:649.080000px;}
.y198{bottom:651.960000px;}
.y163{bottom:653.585760px;}
.y176{bottom:653.601240px;}
.y1df{bottom:656.636760px;}
.yaa{bottom:660.960000px;}
.ydf{bottom:665.468640px;}
.y74{bottom:665.473320px;}
.y6{bottom:666.771000px;}
.y13a{bottom:668.700000px;}
.y1c0{bottom:674.300880px;}
.y197{bottom:676.440000px;}
.y162{bottom:676.981800px;}
.y175{bottom:676.997280px;}
.y1de{bottom:680.212080px;}
.yde{bottom:689.043960px;}
.y73{bottom:689.048640px;}
.yf7{bottom:692.099640px;}
.yf8{bottom:692.100000px;}
.y1bf{bottom:697.517640px;}
.ya9{bottom:700.380000px;}
.y161{bottom:700.557120px;}
.y174{bottom:700.572600px;}
.y196{bottom:700.920000px;}
.y139{bottom:702.180000px;}
.y1dd{bottom:703.608120px;}
.y26{bottom:711.896220px;}
.ydd{bottom:712.440000px;}
.y72{bottom:712.444680px;}
.y138{bottom:713.340000px;}
.yf6{bottom:714.420000px;}
.y1be{bottom:721.092960px;}
.y160{bottom:723.953160px;}
.y173{bottom:723.968640px;}
.y195{bottom:725.400000px;}
.y5{bottom:726.298500px;}
.y1dc{bottom:727.183440px;}
.y71{bottom:736.080480px;}
.y25{bottom:743.569020px;}
.y172{bottom:747.543960px;}
.ya8{bottom:749.520000px;}
.y194{bottom:749.880000px;}
.y1db{bottom:750.220920px;}
.ydc{bottom:752.040000px;}
.y3{bottom:752.599495px;}
.y1bd{bottom:756.739800px;}
.y70{bottom:759.476520px;}
.y15f{bottom:759.617280px;}
.y171{bottom:770.955120px;}
.y1da{bottom:771.107040px;}
.y193{bottom:774.360000px;}
.y1bc{bottom:779.956560px;}
.y15e{bottom:783.013320px;}
.y6f{bottom:783.051840px;}
.y36{bottom:787.860000px;}
.ya7{bottom:788.329260px;}
.y1d9{bottom:791.813880px;}
.y170{bottom:794.530440px;}
.y38{bottom:797.940000px;}
.y97{bottom:799.608960px;}
.ydb{bottom:799.745040px;}
.y1bb{bottom:803.531880px;}
.y15d{bottom:806.409360px;}
.y59{bottom:806.447880px;}
.ya6{bottom:811.546020px;}
.y1d8{bottom:812.700000px;}
.y34{bottom:815.400000px;}
.y16f{bottom:817.926480px;}
.y96{bottom:823.005000px;}
.y1ba{bottom:826.927920px;}
.y15c{bottom:829.984680px;}
.y58{bottom:830.023200px;}
.ya5{bottom:835.121340px;}
.yda{bottom:835.212600px;}
.y16e{bottom:841.501800px;}
.y192{bottom:846.251640px;}
.y18e{bottom:846.580320px;}
.y15b{bottom:853.568640px;}
.y57{bottom:853.598520px;}
.yd9{bottom:858.429360px;}
.ya4{bottom:858.517380px;}
.ycc{bottom:858.625920px;}
.y95{bottom:858.651840px;}
.y1b9{bottom:862.754040px;}
.y16d{bottom:864.897840px;}
.y18d{bottom:869.976360px;}
.y15a{bottom:876.964680px;}
.y56{bottom:876.994560px;}
.y2{bottom:879.369000px;}
.y191{bottom:881.704260px;}
.yd8{bottom:882.004680px;}
.ycb{bottom:882.021960px;}
.y94{bottom:882.047880px;}
.ya3{bottom:882.092700px;}
.y1b8{bottom:885.970800px;}
.y16c{bottom:888.473160px;}
.y18c{bottom:893.551680px;}
.y1ff{bottom:895.638060px;}
.y55{bottom:900.569880px;}
.yca{bottom:905.597280px;}
.y93{bottom:905.623200px;}
.yd7{bottom:905.642100px;}
.ya2{bottom:905.668020px;}
.y1b7{bottom:909.546120px;}
.y1fe{bottom:913.640760px;}
.y190{bottom:917.171820px;}
.y54{bottom:923.965920px;}
.y16b{bottom:924.149160px;}
.y2f{bottom:926.820000px;}
.yc9{bottom:928.993320px;}
.y92{bottom:929.019240px;}
.yd6{bottom:929.038140px;}
.ya1{bottom:929.064060px;}
.y18b{bottom:929.198520px;}
.y1b6{bottom:932.942160px;}
.y1fd{bottom:934.706160px;}
.y53{bottom:947.541240px;}
.y16a{bottom:947.545200px;}
.y31{bottom:948.060000px;}
.yc8{bottom:952.568640px;}
.y91{bottom:952.594560px;}
.yd5{bottom:952.613460px;}
.ya0{bottom:952.639380px;}
.y18f{bottom:952.818660px;}
.y1fc{bottom:955.771560px;}
.y1{bottom:966.726000px;}
.y1b5{bottom:968.589000px;}
.y52{bottom:970.937280px;}
.y169{bottom:970.941240px;}
.yc7{bottom:975.964680px;}
.y90{bottom:975.990600px;}
.yd4{bottom:976.009500px;}
.y9f{bottom:976.035420px;}
.y1fb{bottom:976.657680px;}
.y33{bottom:976.860000px;}
.y1b4{bottom:991.985040px;}
.y51{bottom:994.512600px;}
.y168{bottom:994.516560px;}
.y1fa{bottom:997.723080px;}
.y8f{bottom:999.565920px;}
.yd3{bottom:999.584820px;}
.y9e{bottom:999.610740px;}
.y1b3{bottom:1015.381080px;}
.y50{bottom:1017.908640px;}
.y167{bottom:1017.912600px;}
.y1f9{bottom:1018.788480px;}
.y8e{bottom:1022.961960px;}
.yd2{bottom:1022.980860px;}
.y9d{bottom:1023.006780px;}
.y1d7{bottom:1034.121060px;}
.y1b2{bottom:1038.956400px;}
.y1f8{bottom:1039.674600px;}
.y4f{bottom:1041.483960px;}
.y166{bottom:1041.487920px;}
.y8d{bottom:1046.537280px;}
.yd1{bottom:1046.556180px;}
.y9c{bottom:1046.582100px;}
.y1f7{bottom:1060.740000px;}
.y4e{bottom:1064.880000px;}
.y165{bottom:1064.883960px;}
.y1d6{bottom:1069.573680px;}
.y8c{bottom:1069.933320px;}
.yd0{bottom:1069.952220px;}
.y9b{bottom:1069.978140px;}
.y1b1{bottom:1074.603240px;}
.y8b{bottom:1093.508640px;}
.ycf{bottom:1093.527540px;}
.y9a{bottom:1093.553460px;}
.y1b0{bottom:1097.820000px;}
.y4d{bottom:1104.300000px;}
.y24{bottom:1105.012440px;}
.y1d5{bottom:1105.026300px;}
.y8a{bottom:1116.904680px;}
.yce{bottom:1116.923580px;}
.y99{bottom:1116.949500px;}
.y1af{bottom:1137.420000px;}
.y23{bottom:1140.480000px;}
.ycd{bottom:1140.498900px;}
.y98{bottom:1140.524820px;}
.y21{bottom:1183.320000px;}
.y4c{bottom:1188.900000px;}
.y1f{bottom:1193.760000px;}
.h11{height:16.740000px;}
.ha{height:23.760000px;}
.h1c{height:24.434297px;}
.h15{height:26.100000px;}
.h7{height:32.130000px;}
.hb{height:34.732800px;}
.h25{height:37.294453px;}
.h1a{height:38.293594px;}
.h12{height:38.880000px;}
.h29{height:39.547097px;}
.h22{height:41.726953px;}
.h24{height:42.476924px;}
.h2f{height:43.027200px;}
.h13{height:45.540000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hd{height:49.500000px;}
.h14{height:49.517578px;}
.h23{height:53.330768px;}
.h1b{height:53.361008px;}
.h9{height:53.369648px;}
.h18{height:54.799453px;}
.h2{height:55.080000px;}
.h1e{height:55.165382px;}
.h20{height:55.354022px;}
.h1d{height:55.360502px;}
.h21{height:55.482902px;}
.h2c{height:55.485782px;}
.h2e{height:55.495862px;}
.h1f{height:55.498742px;}
.h28{height:55.501622px;}
.h2a{height:55.517462px;}
.h2b{height:55.533302px;}
.h2d{height:55.541942px;}
.h26{height:55.567862px;}
.h27{height:55.586582px;}
.h16{height:60.652800px;}
.hc{height:64.300781px;}
.h19{height:66.023438px;}
.he{height:77.760000px;}
.h5{height:78.030000px;}
.h17{height:93.960000px;}
.h10{height:103.680000px;}
.hf{height:111.780000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:118.260000px;}
.wa{width:179.100000px;}
.w9{width:244.438500px;}
.w4{width:262.800000px;}
.w5{width:271.080000px;}
.w8{width:307.260000px;}
.w6{width:625.320000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:10.800000px;}
.x6{left:53.280000px;}
.x17{left:74.340000px;}
.x14{left:96.300000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1c{left:108.907740px;}
.x13{left:116.460000px;}
.xd{left:127.260000px;}
.x18{left:131.760000px;}
.xf{left:138.240000px;}
.x15{left:139.680000px;}
.x1f{left:142.380000px;}
.x11{left:150.120000px;}
.x16{left:153.900000px;}
.x8{left:158.400000px;}
.x12{left:160.920000px;}
.x4{left:203.484001px;}
.x19{left:214.204680px;}
.x22{left:216.180000px;}
.x20{left:220.492080px;}
.x23{left:230.580000px;}
.x1d{left:242.460000px;}
.xc{left:289.440000px;}
.x9{left:446.400000px;}
.x3{left:454.959000px;}
.x1b{left:459.180000px;}
.x1e{left:480.420000px;}
.x10{left:497.700000px;}
.x5{left:509.940000px;}
.x7{left:523.800000px;}
.x21{left:765.180000px;}
.xb{left:777.600000px;}
.xa{left:781.563960px;}
.x1a{left:786.600000px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.405440pt;}
.v2{vertical-align:18.344960pt;}
.ls67{letter-spacing:-1.221760pt;}
.ls3f{letter-spacing:-0.849920pt;}
.ls6d{letter-spacing:-0.743680pt;}
.ls3e{letter-spacing:-0.584320pt;}
.ls66{letter-spacing:-0.531200pt;}
.ls30{letter-spacing:-0.371840pt;}
.ls11{letter-spacing:-0.318720pt;}
.lsd{letter-spacing:-0.299520pt;}
.ls12{letter-spacing:-0.265600pt;}
.ls54{letter-spacing:-0.259840pt;}
.ls29{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.212480pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls2d{letter-spacing:-0.185600pt;}
.ls14{letter-spacing:-0.159360pt;}
.ls65{letter-spacing:-0.148480pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls56{letter-spacing:-0.111360pt;}
.lsf{letter-spacing:-0.106240pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls28{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.048000pt;}
.lse{letter-spacing:0.053120pt;}
.ls49{letter-spacing:0.053760pt;}
.ls5d{letter-spacing:0.069120pt;}
.ls1f{letter-spacing:0.071680pt;}
.ls5a{letter-spacing:0.074240pt;}
.ls2f{letter-spacing:0.106240pt;}
.ls55{letter-spacing:0.111360pt;}
.ls21{letter-spacing:0.138112pt;}
.ls74{letter-spacing:0.138240pt;}
.ls1{letter-spacing:0.144000pt;}
.ls3{letter-spacing:0.159360pt;}
.ls4a{letter-spacing:0.168960pt;}
.ls5e{letter-spacing:0.170240pt;}
.ls2b{letter-spacing:0.185600pt;}
.ls2a{letter-spacing:0.192000pt;}
.ls78{letter-spacing:0.212480pt;}
.ls2e{letter-spacing:0.222720pt;}
.ls6f{letter-spacing:0.223104pt;}
.ls4d{letter-spacing:0.228416pt;}
.ls7{letter-spacing:0.244480pt;}
.ls2{letter-spacing:0.256000pt;}
.ls53{letter-spacing:0.259840pt;}
.ls5{letter-spacing:0.265600pt;}
.ls76{letter-spacing:0.292160pt;}
.ls2c{letter-spacing:0.296960pt;}
.ls75{letter-spacing:0.297472pt;}
.ls9{letter-spacing:0.300160pt;}
.ls15{letter-spacing:0.318720pt;}
.ls41{letter-spacing:0.334656pt;}
.ls73{letter-spacing:0.371840pt;}
.ls77{letter-spacing:0.424960pt;}
.ls47{letter-spacing:0.478080pt;}
.ls57{letter-spacing:0.531200pt;}
.ls46{letter-spacing:0.584320pt;}
.ls4{letter-spacing:0.796800pt;}
.ls31{letter-spacing:0.903040pt;}
.ls32{letter-spacing:1.540480pt;}
.ls6b{letter-spacing:1.808384pt;}
.ls4b{letter-spacing:1.856000pt;}
.ls3d{letter-spacing:2.177920pt;}
.ls20{letter-spacing:2.815360pt;}
.ls1a{letter-spacing:3.452800pt;}
.ls3b{letter-spacing:4.090240pt;}
.ls3c{letter-spacing:4.148672pt;}
.ls39{letter-spacing:4.727680pt;}
.ls6{letter-spacing:4.812672pt;}
.ls3a{letter-spacing:5.365120pt;}
.ls6a{letter-spacing:6.002560pt;}
.ls1e{letter-spacing:6.055680pt;}
.ls25{letter-spacing:6.087552pt;}
.ls59{letter-spacing:6.693120pt;}
.ls35{letter-spacing:7.330560pt;}
.ls19{letter-spacing:7.968000pt;}
.ls61{letter-spacing:8.605440pt;}
.ls48{letter-spacing:9.046400pt;}
.ls4f{letter-spacing:9.095040pt;}
.ls40{letter-spacing:9.205696pt;}
.ls17{letter-spacing:9.242880pt;}
.ls36{letter-spacing:9.880320pt;}
.ls5c{letter-spacing:10.170880pt;}
.ls34{letter-spacing:10.517760pt;}
.ls64{letter-spacing:10.533696pt;}
.ls38{letter-spacing:11.155200pt;}
.ls24{letter-spacing:11.224256pt;}
.ls45{letter-spacing:11.527040pt;}
.ls1c{letter-spacing:11.792640pt;}
.ls4e{letter-spacing:12.164480pt;}
.ls37{letter-spacing:12.430080pt;}
.ls50{letter-spacing:12.584128pt;}
.ls1b{letter-spacing:13.067520pt;}
.ls52{letter-spacing:13.078144pt;}
.ls27{letter-spacing:13.704960pt;}
.ls5f{letter-spacing:13.774016pt;}
.ls60{letter-spacing:13.805888pt;}
.ls26{letter-spacing:14.342400pt;}
.ls44{letter-spacing:14.714240pt;}
.ls62{letter-spacing:14.979840pt;}
.ls4c{letter-spacing:15.351680pt;}
.ls23{letter-spacing:15.760704pt;}
.ls42{letter-spacing:16.892160pt;}
.ls43{letter-spacing:17.088704pt;}
.ls6c{letter-spacing:18.804480pt;}
.ls68{letter-spacing:20.132480pt;}
.ls33{letter-spacing:22.044800pt;}
.ls51{letter-spacing:22.692864pt;}
.ls70{letter-spacing:29.056640pt;}
.ls5b{letter-spacing:31.292160pt;}
.ls69{letter-spacing:32.243840pt;}
.ls72{letter-spacing:32.934400pt;}
.ls58{letter-spacing:37.082880pt;}
.ls16{letter-spacing:40.448000pt;}
.ls6e{letter-spacing:40.583680pt;}
.ls71{letter-spacing:45.045760pt;}
.ls1d{letter-spacing:45.397760pt;}
.ls63{letter-spacing:47.648640pt;}
.ls18{letter-spacing:52.413440pt;}
.ls22{letter-spacing:68.737280pt;}
.ls79{letter-spacing:81.061120pt;}
.ws98{word-spacing:-53.385600pt;}
.ws97{word-spacing:-53.348416pt;}
.ws8e{word-spacing:-53.279360pt;}
.ws95{word-spacing:-53.173120pt;}
.ws8f{word-spacing:-53.120000pt;}
.ws93{word-spacing:-53.013760pt;}
.ws90{word-spacing:-52.960640pt;}
.ws92{word-spacing:-52.907520pt;}
.ws91{word-spacing:-52.801280pt;}
.ws99{word-spacing:-41.168000pt;}
.ws3{word-spacing:-29.696000pt;}
.ws2{word-spacing:-22.272000pt;}
.wsd5{word-spacing:-16.640000pt;}
.ws28{word-spacing:-16.576000pt;}
.wsd6{word-spacing:-16.384000pt;}
.wsf0{word-spacing:-14.183040pt;}
.wsd{word-spacing:-14.129920pt;}
.ws29{word-spacing:-14.076800pt;}
.wsb{word-spacing:-13.970560pt;}
.ws2d{word-spacing:-13.917440pt;}
.ws9{word-spacing:-13.864320pt;}
.ws8{word-spacing:-13.811200pt;}
.wsa{word-spacing:-13.758080pt;}
.ws7{word-spacing:-13.704960pt;}
.wsc{word-spacing:-13.651840pt;}
.ws2a{word-spacing:-13.598720pt;}
.ws2e{word-spacing:-13.545600pt;}
.ws100{word-spacing:-13.439360pt;}
.wsd7{word-spacing:-13.067520pt;}
.ws5{word-spacing:-12.480000pt;}
.wsfe{word-spacing:-12.430080pt;}
.ws104{word-spacing:-12.376960pt;}
.wsff{word-spacing:-12.323840pt;}
.ws6{word-spacing:-12.288000pt;}
.ws103{word-spacing:-12.217600pt;}
.ws101{word-spacing:-12.111360pt;}
.ws102{word-spacing:-12.058240pt;}
.ws94{word-spacing:-11.686400pt;}
.ws1{word-spacing:-11.328000pt;}
.ws4{word-spacing:-11.184000pt;}
.wsba{word-spacing:-9.911040pt;}
.wsbd{word-spacing:-9.873920pt;}
.wsbb{word-spacing:-9.836800pt;}
.ws96{word-spacing:-9.762560pt;}
.ws2b{word-spacing:-9.651200pt;}
.wsbe{word-spacing:-9.539840pt;}
.wscd{word-spacing:-9.502720pt;}
.ws2c{word-spacing:-9.465600pt;}
.wsf1{word-spacing:-9.123840pt;}
.wsbc{word-spacing:-9.054720pt;}
.wsd8{word-spacing:-6.493440pt;}
.ws71{word-spacing:-3.187200pt;}
.ws65{word-spacing:-2.974720pt;}
.ws3f{word-spacing:-2.815360pt;}
.wsc2{word-spacing:-2.709120pt;}
.ws82{word-spacing:-2.549760pt;}
.ws31{word-spacing:-2.337280pt;}
.wsf6{word-spacing:-2.284160pt;}
.ws9d{word-spacing:-2.177920pt;}
.ws86{word-spacing:-2.071680pt;}
.ws9c{word-spacing:-2.018560pt;}
.ws33{word-spacing:-1.912320pt;}
.ws1d{word-spacing:-1.699840pt;}
.wsb2{word-spacing:-1.646720pt;}
.wsb4{word-spacing:-1.596160pt;}
.wsac{word-spacing:-1.559040pt;}
.wsee{word-spacing:-1.381120pt;}
.ws19{word-spacing:-1.274880pt;}
.wsdf{word-spacing:-1.115520pt;}
.ws18{word-spacing:-1.062400pt;}
.ws77{word-spacing:-1.009280pt;}
.wsb6{word-spacing:-0.965120pt;}
.wsab{word-spacing:-0.928000pt;}
.wsaa{word-spacing:-0.890880pt;}
.wsdd{word-spacing:-0.796800pt;}
.wsf2{word-spacing:-0.743680pt;}
.wsf{word-spacing:-0.686080pt;}
.ws11{word-spacing:-0.640000pt;}
.ws1b{word-spacing:-0.637440pt;}
.wsbf{word-spacing:-0.584320pt;}
.ws1c{word-spacing:-0.424960pt;}
.ws9b{word-spacing:-0.371840pt;}
.wsc5{word-spacing:-0.334080pt;}
.wsa6{word-spacing:-0.296960pt;}
.ws1a{word-spacing:-0.265600pt;}
.ws42{word-spacing:-0.259840pt;}
.wscb{word-spacing:-0.222720pt;}
.ws108{word-spacing:-0.212480pt;}
.ws30{word-spacing:-0.192000pt;}
.ws40{word-spacing:-0.185600pt;}
.wsc8{word-spacing:-0.170240pt;}
.ws106{word-spacing:-0.159360pt;}
.ws105{word-spacing:-0.144000pt;}
.wsb0{word-spacing:-0.106240pt;}
.ws1f{word-spacing:-0.053120pt;}
.wse{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.053120pt;}
.ws7d{word-spacing:0.064000pt;}
.wsb9{word-spacing:0.074240pt;}
.ws4b{word-spacing:0.106240pt;}
.ws13{word-spacing:0.149760pt;}
.ws22{word-spacing:0.212480pt;}
.wsa7{word-spacing:0.222720pt;}
.ws2f{word-spacing:0.256000pt;}
.wse6{word-spacing:0.259840pt;}
.ws107{word-spacing:0.265600pt;}
.wseb{word-spacing:0.296960pt;}
.ws26{word-spacing:0.318720pt;}
.wsec{word-spacing:0.371200pt;}
.ws23{word-spacing:0.371840pt;}
.ws10{word-spacing:0.384000pt;}
.wsa5{word-spacing:0.448000pt;}
.wse5{word-spacing:0.478080pt;}
.ws12{word-spacing:0.528000pt;}
.ws27{word-spacing:0.531200pt;}
.ws7f{word-spacing:0.584320pt;}
.ws62{word-spacing:0.637440pt;}
.ws3e{word-spacing:0.849920pt;}
.ws6c{word-spacing:0.903040pt;}
.wsb3{word-spacing:0.965120pt;}
.ws6d{word-spacing:1.009280pt;}
.ws8d{word-spacing:1.115520pt;}
.wsd4{word-spacing:1.221760pt;}
.ws70{word-spacing:1.274880pt;}
.ws35{word-spacing:1.487360pt;}
.wsa9{word-spacing:1.596160pt;}
.ws89{word-spacing:1.912320pt;}
.wsa8{word-spacing:2.004480pt;}
.wsa3{word-spacing:2.124800pt;}
.wsa4{word-spacing:2.177920pt;}
.wsc6{word-spacing:2.227200pt;}
.ws46{word-spacing:2.284160pt;}
.wsc7{word-spacing:2.301440pt;}
.ws5c{word-spacing:2.602880pt;}
.ws5b{word-spacing:2.815360pt;}
.ws7b{word-spacing:2.868480pt;}
.wsed{word-spacing:2.974720pt;}
.ws15{word-spacing:3.240320pt;}
.ws14{word-spacing:3.452800pt;}
.wse4{word-spacing:3.505920pt;}
.wsb7{word-spacing:3.526400pt;}
.wsca{word-spacing:3.563520pt;}
.ws60{word-spacing:3.612160pt;}
.ws7e{word-spacing:3.877760pt;}
.wsc9{word-spacing:3.897600pt;}
.ws3a{word-spacing:4.090240pt;}
.ws87{word-spacing:4.143360pt;}
.wsb5{word-spacing:4.194560pt;}
.ws9f{word-spacing:4.249600pt;}
.ws9e{word-spacing:4.355840pt;}
.ws25{word-spacing:4.515200pt;}
.ws17{word-spacing:4.727680pt;}
.ws64{word-spacing:4.780800pt;}
.ws41{word-spacing:4.788480pt;}
.wsfc{word-spacing:4.887040pt;}
.ws49{word-spacing:5.152640pt;}
.ws58{word-spacing:5.312000pt;}
.ws56{word-spacing:5.365120pt;}
.ws83{word-spacing:5.418240pt;}
.wse0{word-spacing:5.471360pt;}
.ws57{word-spacing:5.524480pt;}
.ws47{word-spacing:5.790080pt;}
.ws48{word-spacing:6.002560pt;}
.ws5a{word-spacing:6.161920pt;}
.ws3c{word-spacing:6.427520pt;}
.ws5f{word-spacing:6.640000pt;}
.wsef{word-spacing:6.693120pt;}
.ws3d{word-spacing:6.958720pt;}
.ws4e{word-spacing:7.064960pt;}
.ws59{word-spacing:7.277440pt;}
.ws88{word-spacing:7.330560pt;}
.wsc4{word-spacing:7.386880pt;}
.wsc3{word-spacing:7.424000pt;}
.ws76{word-spacing:7.436800pt;}
.ws44{word-spacing:7.702400pt;}
.ws24{word-spacing:7.914880pt;}
.ws81{word-spacing:8.074240pt;}
.ws66{word-spacing:8.552320pt;}
.ws67{word-spacing:8.924160pt;}
.ws16{word-spacing:8.977280pt;}
.ws32{word-spacing:9.189760pt;}
.wsad{word-spacing:9.280000pt;}
.ws80{word-spacing:9.349120pt;}
.wsdc{word-spacing:9.774080pt;}
.ws79{word-spacing:9.827200pt;}
.ws78{word-spacing:9.880320pt;}
.wscc{word-spacing:9.911040pt;}
.ws7c{word-spacing:9.986560pt;}
.wsb1{word-spacing:10.092800pt;}
.ws50{word-spacing:10.252160pt;}
.ws69{word-spacing:10.464640pt;}
.wsd3{word-spacing:10.517760pt;}
.ws72{word-spacing:10.730240pt;}
.wsa1{word-spacing:10.889600pt;}
.ws5d{word-spacing:11.048960pt;}
.ws5e{word-spacing:11.102080pt;}
.ws68{word-spacing:11.155200pt;}
.ws36{word-spacing:11.527040pt;}
.ws37{word-spacing:11.739520pt;}
.ws4d{word-spacing:11.898880pt;}
.ws4f{word-spacing:12.164480pt;}
.ws7a{word-spacing:12.323840pt;}
.ws8c{word-spacing:12.376960pt;}
.wsd1{word-spacing:12.430080pt;}
.wsae{word-spacing:12.536320pt;}
.ws20{word-spacing:12.801920pt;}
.ws1e{word-spacing:13.014400pt;}
.ws4c{word-spacing:13.067520pt;}
.ws21{word-spacing:13.280000pt;}
.ws4a{word-spacing:13.439360pt;}
.ws34{word-spacing:13.651840pt;}
.wsce{word-spacing:13.704960pt;}
.wsa0{word-spacing:13.811200pt;}
.ws8b{word-spacing:14.076800pt;}
.ws43{word-spacing:14.289280pt;}
.ws51{word-spacing:14.342400pt;}
.ws84{word-spacing:14.448640pt;}
.ws55{word-spacing:14.714240pt;}
.ws38{word-spacing:14.926720pt;}
.ws39{word-spacing:15.086080pt;}
.ws6f{word-spacing:15.404800pt;}
.ws63{word-spacing:15.617280pt;}
.ws6a{word-spacing:16.042240pt;}
.ws85{word-spacing:16.254720pt;}
.ws6b{word-spacing:16.414080pt;}
.ws53{word-spacing:16.679680pt;}
.ws74{word-spacing:16.892160pt;}
.wsc1{word-spacing:17.051520pt;}
.ws52{word-spacing:17.157760pt;}
.wscf{word-spacing:17.317120pt;}
.wse3{word-spacing:18.167040pt;}
.wse9{word-spacing:18.592000pt;}
.wse8{word-spacing:19.070080pt;}
.ws73{word-spacing:19.441920pt;}
.wsdb{word-spacing:19.866880pt;}
.wsda{word-spacing:20.079360pt;}
.wsc0{word-spacing:21.141760pt;}
.ws9a{word-spacing:21.354240pt;}
.ws75{word-spacing:21.779200pt;}
.wsa2{word-spacing:21.991680pt;}
.wsaf{word-spacing:22.629120pt;}
.wsd9{word-spacing:23.266560pt;}
.wsf8{word-spacing:23.904000pt;}
.ws8a{word-spacing:24.328960pt;}
.wsd0{word-spacing:25.816320pt;}
.ws54{word-spacing:27.091200pt;}
.wse2{word-spacing:27.516160pt;}
.wse1{word-spacing:27.728640pt;}
.wse7{word-spacing:28.366080pt;}
.wsf9{word-spacing:29.056640pt;}
.wsde{word-spacing:32.031360pt;}
.wsfd{word-spacing:32.881280pt;}
.wsf4{word-spacing:40.530560pt;}
.wsfa{word-spacing:44.833280pt;}
.wsfb{word-spacing:45.045760pt;}
.wsd2{word-spacing:47.595520pt;}
.wsf7{word-spacing:50.782720pt;}
.ws45{word-spacing:57.847680pt;}
.wsb8{word-spacing:58.538240pt;}
.ws61{word-spacing:68.737280pt;}
.wsf3{word-spacing:77.024000pt;}
.wsea{word-spacing:128.656640pt;}
.ws6e{word-spacing:143.370880pt;}
.wsf5{word-spacing:172.374400pt;}
._11{margin-left:-22.164480pt;}
._12{margin-left:-9.189760pt;}
._1a{margin-left:-8.127360pt;}
._1e{margin-left:-4.613504pt;}
._8{margin-left:-3.134080pt;}
._3{margin-left:-2.098112pt;}
._0{margin-left:-1.029120pt;}
._1{width:0.908800pt;}
._5{width:2.602880pt;}
._7{width:4.037120pt;}
._4{width:5.247360pt;}
._a{width:6.208000pt;}
._b{width:7.808640pt;}
._9{width:8.757952pt;}
._f{width:9.667840pt;}
._c{width:11.255680pt;}
._2{width:12.636800pt;}
._e{width:14.722560pt;}
._6{width:15.617280pt;}
._1b{width:16.839040pt;}
._13{width:17.736320pt;}
._19{width:18.737920pt;}
._10{width:20.079360pt;}
._17{width:28.060160pt;}
._18{width:34.711040pt;}
._15{width:42.168320pt;}
._14{width:48.962560pt;}
._1d{width:51.207680pt;}
._d{width:69.215360pt;}
._1c{width:73.299840pt;}
._1f{width:81.061120pt;}
._16{width:1287.680000pt;}
.fsc{font-size:24.320000pt;}
.fsd{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fse{font-size:55.993396pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:96.000000pt;}
.fs9{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:3.680000pt;}
.y3a{bottom:6.080000pt;}
.y22{bottom:11.360000pt;}
.y30{bottom:21.920000pt;}
.y37{bottom:27.680000pt;}
.y20{bottom:50.720000pt;}
.y48{bottom:69.120000pt;}
.y32{bottom:69.920000pt;}
.y133{bottom:80.321600pt;}
.y6e{bottom:83.680000pt;}
.y4{bottom:86.333337pt;}
.y2e{bottom:90.880000pt;}
.y6d{bottom:94.240000pt;}
.yf5{bottom:94.881280pt;}
.y137{bottom:94.881600pt;}
.y132{bottom:94.881920pt;}
.y10e{bottom:94.884800pt;}
.y188{bottom:98.240000pt;}
.y1ae{bottom:100.160000pt;}
.y1f6{bottom:103.605120pt;}
.yf4{bottom:109.599360pt;}
.y136{bottom:109.599680pt;}
.y10d{bottom:109.602880pt;}
.y131{bottom:112.960000pt;}
.yc0{bottom:117.514240pt;}
.y1d4{bottom:117.609600pt;}
.y1ad{bottom:121.920000pt;}
.y1e{bottom:123.790666pt;}
.yf3{bottom:124.159680pt;}
.y10c{bottom:124.163200pt;}
.y1f5{bottom:124.401600pt;}
.y2d{bottom:125.267040pt;}
.y135{bottom:127.520000pt;}
.y187{bottom:138.080000pt;}
.y1d3{bottom:138.406080pt;}
.ybf{bottom:138.470080pt;}
.y134{bottom:138.720640pt;}
.y10b{bottom:138.723520pt;}
.yf2{bottom:142.080000pt;}
.y89{bottom:142.481920pt;}
.y1ac{bottom:143.680000pt;}
.y6c{bottom:144.850080pt;}
.y1f4{bottom:145.198080pt;}
.y130{bottom:152.640000pt;}
.y10a{bottom:153.441600pt;}
.y2c{bottom:156.780480pt;}
.yf1{bottom:156.800000pt;}
.ybe{bottom:159.266560pt;}
.y88{bottom:163.437760pt;}
.y1ab{bottom:165.440000pt;}
.y1f3{bottom:166.153920pt;}
.y109{bottom:168.001920pt;}
.y1d2{bottom:170.092160pt;}
.yf0{bottom:171.360000pt;}
.y15{bottom:175.052000pt;}
.y18a{bottom:175.730240pt;}
.y6b{bottom:176.536160pt;}
.yc6{bottom:180.222400pt;}
.y108{bottom:182.720000pt;}
.y87{bottom:184.234240pt;}
.yef{bottom:186.080000pt;}
.y1d{bottom:186.238666pt;}
.y14{bottom:186.252002pt;}
.y159{bottom:186.751520pt;}
.y1f2{bottom:186.950400pt;}
.y1aa{bottom:187.200000pt;}
.y2b{bottom:188.307200pt;}
.y1d1{bottom:190.888640pt;}
.ybd{bottom:191.112000pt;}
.y12f{bottom:193.440000pt;}
.y47{bottom:195.520000pt;}
.yee{bottom:196.480000pt;}
.y189{bottom:196.526720pt;}
.y186{bottom:196.686080pt;}
.y6a{bottom:197.173280pt;}
.y1c{bottom:197.438668pt;}
.y13{bottom:197.452004pt;}
.yc5{bottom:201.018880pt;}
.y4b{bottom:202.087680pt;}
.y86{bottom:205.190080pt;}
.y14c{bottom:207.872320pt;}
.y1f1{bottom:207.906240pt;}
.y1b{bottom:208.638670pt;}
.y12{bottom:208.651996pt;}
.y1a9{bottom:208.960000pt;}
.y11f{bottom:209.929280pt;}
.y1d0{bottom:211.685120pt;}
.ybc{bottom:211.749120pt;}
.y185{bottom:217.482560pt;}
.y69{bottom:218.129120pt;}
.y158{bottom:218.278240pt;}
.y2a{bottom:219.993280pt;}
.y12e{bottom:220.699360pt;}
.yc4{bottom:221.974720pt;}
.y4a{bottom:222.884160pt;}
.y85{bottom:225.986560pt;}
.y1f0{bottom:228.702720pt;}
.y14b{bottom:228.828160pt;}
.y11e{bottom:230.725760pt;}
.y1a8{bottom:230.880000pt;}
.y1a{bottom:231.038664pt;}
.y11{bottom:231.052000pt;}
.ybb{bottom:232.704960pt;}
.y184{bottom:238.279040pt;}
.y68{bottom:238.925600pt;}
.y12d{bottom:241.495840pt;}
.y19{bottom:242.238666pt;}
.y10{bottom:242.252002pt;}
.yc3{bottom:242.771200pt;}
.y1cf{bottom:243.371200pt;}
.y49{bottom:243.840000pt;}
.y84{bottom:246.942400pt;}
.y1ef{bottom:249.658560pt;}
.y157{bottom:249.791680pt;}
.y29{bottom:251.520000pt;}
.y11d{bottom:251.681600pt;}
.y1a7{bottom:252.640000pt;}
.y18{bottom:253.438668pt;}
.yf{bottom:253.451999pt;}
.yba{bottom:253.501440pt;}
.y183{bottom:259.234880pt;}
.y67{bottom:259.881440pt;}
.y14a{bottom:260.514240pt;}
.y12c{bottom:262.292320pt;}
.yc2{bottom:263.727040pt;}
.y1ce{bottom:264.167680pt;}
.y83{bottom:267.738880pt;}
.y1ee{bottom:270.455040pt;}
.y107{bottom:271.253760pt;}
.y11c{bottom:272.478080pt;}
.y1a6{bottom:274.400000pt;}
.yb9{bottom:274.457280pt;}
.y17{bottom:275.838667pt;}
.ye{bottom:275.852001pt;}
.y182{bottom:280.031360pt;}
.y66{bottom:280.677920pt;}
.y149{bottom:281.151360pt;}
.y156{bottom:281.318400pt;}
.y12b{bottom:283.248160pt;}
.y28{bottom:284.320000pt;}
.y1cd{bottom:284.964160pt;}
.yed{bottom:285.917120pt;}
.y16{bottom:287.038667pt;}
.yd{bottom:287.052000pt;}
.y82{bottom:288.694720pt;}
.y1ed{bottom:291.410880pt;}
.y106{bottom:292.050240pt;}
.y11b{bottom:293.433920pt;}
.yb8{bottom:295.253760pt;}
.yc1{bottom:295.413120pt;}
.y1a5{bottom:296.160000pt;}
.y181{bottom:300.987200pt;}
.y27{bottom:301.440000pt;}
.y65{bottom:301.633760pt;}
.y148{bottom:302.107200pt;}
.y155{bottom:302.114880pt;}
.y12a{bottom:304.044640pt;}
.yec{bottom:305.120000pt;}
.yeb{bottom:305.122560pt;}
.y1cc{bottom:305.943680pt;}
.yc{bottom:309.452000pt;}
.y81{bottom:309.491200pt;}
.y1ec{bottom:312.207360pt;}
.y105{bottom:312.846720pt;}
.yb7{bottom:316.209600pt;}
.y1a4{bottom:317.920000pt;}
.y180{bottom:321.943040pt;}
.y64{bottom:322.430240pt;}
.y147{bottom:322.903680pt;}
.y154{bottom:322.911360pt;}
.y46{bottom:324.521280pt;}
.y129{bottom:325.000480pt;}
.y11a{bottom:325.142400pt;}
.yea{bottom:325.919040pt;}
.y1cb{bottom:326.740160pt;}
.y80{bottom:330.447040pt;}
.y1eb{bottom:333.163200pt;}
.y104{bottom:333.802560pt;}
.yb6{bottom:337.006080pt;}
.y1a3{bottom:339.840000pt;}
.y17f{bottom:342.739520pt;}
.y63{bottom:343.386080pt;}
.yb{bottom:343.809333pt;}
.y146{bottom:343.859520pt;}
.y153{bottom:343.867200pt;}
.y45{bottom:345.158400pt;}
.y119{bottom:345.779520pt;}
.y128{bottom:345.796960pt;}
.ye9{bottom:346.874880pt;}
.y7f{bottom:351.243520pt;}
.y1ea{bottom:353.959680pt;}
.y103{bottom:354.599040pt;}
.yb5{bottom:357.961920pt;}
.y1ca{bottom:358.585600pt;}
.y1a2{bottom:361.600000pt;}
.ya{bottom:362.706666pt;}
.y17e{bottom:363.695360pt;}
.y62{bottom:364.182560pt;}
.y145{bottom:364.656000pt;}
.y152{bottom:364.663680pt;}
.y44{bottom:366.114240pt;}
.y118{bottom:366.735360pt;}
.y127{bottom:366.752800pt;}
.y7e{bottom:372.199360pt;}
.y1e9{bottom:374.915520pt;}
.y102{bottom:375.554880pt;}
.yb4{bottom:378.758400pt;}
.y1c9{bottom:379.222720pt;}
.y1a1{bottom:383.360000pt;}
.y17d{bottom:384.491840pt;}
.y61{bottom:385.138400pt;}
.y144{bottom:385.611840pt;}
.y151{bottom:385.619520pt;}
.y43{bottom:386.910720pt;}
.y117{bottom:387.531840pt;}
.y126{bottom:387.549280pt;}
.y7d{bottom:392.995840pt;}
.y1e8{bottom:395.712000pt;}
.y101{bottom:396.351360pt;}
.ye8{bottom:398.728640pt;}
.yb3{bottom:399.714240pt;}
.y1c8{bottom:400.178560pt;}
.y1a0{bottom:405.120000pt;}
.y17c{bottom:405.447680pt;}
.y60{bottom:405.934880pt;}
.y143{bottom:406.408320pt;}
.y150{bottom:406.416000pt;}
.y42{bottom:407.866560pt;}
.y116{bottom:408.487680pt;}
.y125{bottom:408.505120pt;}
.y7c{bottom:413.951680pt;}
.y1e7{bottom:416.667840pt;}
.y100{bottom:417.307200pt;}
.ye7{bottom:418.568960pt;}
.yb2{bottom:420.510720pt;}
.y17b{bottom:426.244160pt;}
.y19f{bottom:426.880000pt;}
.y5f{bottom:426.890720pt;}
.y142{bottom:427.364160pt;}
.y14f{bottom:427.371840pt;}
.y41{bottom:428.663040pt;}
.y115{bottom:429.284160pt;}
.y124{bottom:429.301600pt;}
.y1c7{bottom:431.864640pt;}
.y7b{bottom:434.748160pt;}
.ye6{bottom:436.483680pt;}
.y1e6{bottom:437.464320pt;}
.yff{bottom:438.263040pt;}
.yb1{bottom:441.466560pt;}
.y17a{bottom:447.200000pt;}
.y5e{bottom:447.687200pt;}
.y14e{bottom:448.327680pt;}
.y141{bottom:448.346560pt;}
.y19e{bottom:448.640000pt;}
.y40{bottom:449.618880pt;}
.y114{bottom:450.243520pt;}
.y123{bottom:450.257440pt;}
.y1c6{bottom:452.501760pt;}
.y7a{bottom:455.704000pt;}
.y1e5{bottom:458.420160pt;}
.yfe{bottom:459.059520pt;}
.yb0{bottom:462.263040pt;}
.ye5{bottom:466.403520pt;}
.y5d{bottom:468.643040pt;}
.y14d{bottom:469.124160pt;}
.y140{bottom:469.143040pt;}
.y3f{bottom:470.415360pt;}
.y19d{bottom:470.560000pt;}
.y113{bottom:471.047680pt;}
.y122{bottom:471.053920pt;}
.y1c5{bottom:473.457600pt;}
.y9{bottom:478.990666pt;}
.y1e4{bottom:479.216640pt;}
.yfd{bottom:480.015360pt;}
.y179{bottom:482.240000pt;}
.yaf{bottom:483.218880pt;}
.ye4{bottom:487.226560pt;}
.y79{bottom:487.390080pt;}
.y5c{bottom:489.439520pt;}
.y13f{bottom:490.098880pt;}
.y3e{bottom:491.371200pt;}
.y112{bottom:492.003520pt;}
.y121{bottom:492.009760pt;}
.y19c{bottom:492.320000pt;}
.y1c4{bottom:494.254080pt;}
.y8{bottom:494.990666pt;}
.y1e3{bottom:500.172480pt;}
.yfc{bottom:500.811840pt;}
.yae{bottom:504.015360pt;}
.ye3{bottom:508.023040pt;}
.y78{bottom:508.027200pt;}
.y13e{bottom:510.895360pt;}
.y3d{bottom:512.167680pt;}
.y111{bottom:512.800000pt;}
.y120{bottom:512.806240pt;}
.y19b{bottom:514.080000pt;}
.y5b{bottom:519.201920pt;}
.y1e2{bottom:520.968960pt;}
.yfb{bottom:521.767680pt;}
.yad{bottom:524.971200pt;}
.y178{bottom:525.760000pt;}
.y1c3{bottom:525.940160pt;}
.ye2{bottom:528.978880pt;}
.y77{bottom:528.983040pt;}
.y13d{bottom:531.851200pt;}
.y3c{bottom:533.123520pt;}
.y5a{bottom:533.920000pt;}
.y19a{bottom:535.840000pt;}
.y1e1{bottom:541.924800pt;}
.y110{bottom:542.561920pt;}
.yfa{bottom:542.564160pt;}
.yac{bottom:545.767680pt;}
.y1c2{bottom:546.736640pt;}
.ye1{bottom:549.775360pt;}
.y76{bottom:549.779520pt;}
.y13c{bottom:552.647680pt;}
.y3b{bottom:553.920000pt;}
.y10f{bottom:557.280000pt;}
.y199{bottom:557.600000pt;}
.y164{bottom:560.009280pt;}
.y177{bottom:560.182400pt;}
.y1e0{bottom:562.721280pt;}
.yf9{bottom:563.520000pt;}
.yab{bottom:566.723520pt;}
.y1c1{bottom:567.533120pt;}
.ye0{bottom:570.731200pt;}
.y75{bottom:570.735360pt;}
.y13b{bottom:573.603520pt;}
.y7{bottom:573.786667pt;}
.y39{bottom:576.960000pt;}
.y198{bottom:579.520000pt;}
.y163{bottom:580.965120pt;}
.y176{bottom:580.978880pt;}
.y1df{bottom:583.677120pt;}
.yaa{bottom:587.520000pt;}
.ydf{bottom:591.527680pt;}
.y74{bottom:591.531840pt;}
.y6{bottom:592.685334pt;}
.y13a{bottom:594.400000pt;}
.y1c0{bottom:599.378560pt;}
.y197{bottom:601.280000pt;}
.y162{bottom:601.761600pt;}
.y175{bottom:601.775360pt;}
.y1de{bottom:604.632960pt;}
.yde{bottom:612.483520pt;}
.y73{bottom:612.487680pt;}
.yf7{bottom:615.199680pt;}
.yf8{bottom:615.200000pt;}
.y1bf{bottom:620.015680pt;}
.ya9{bottom:622.560000pt;}
.y161{bottom:622.717440pt;}
.y174{bottom:622.731200pt;}
.y196{bottom:623.040000pt;}
.y139{bottom:624.160000pt;}
.y1dd{bottom:625.429440pt;}
.y26{bottom:632.796640pt;}
.ydd{bottom:633.280000pt;}
.y72{bottom:633.284160pt;}
.y138{bottom:634.080000pt;}
.yf6{bottom:635.040000pt;}
.y1be{bottom:640.971520pt;}
.y160{bottom:643.513920pt;}
.y173{bottom:643.527680pt;}
.y195{bottom:644.800000pt;}
.y5{bottom:645.598667pt;}
.y1dc{bottom:646.385280pt;}
.y71{bottom:654.293760pt;}
.y25{bottom:660.950240pt;}
.y172{bottom:664.483520pt;}
.ya8{bottom:666.240000pt;}
.y194{bottom:666.560000pt;}
.y1db{bottom:666.863040pt;}
.ydc{bottom:668.480000pt;}
.y3{bottom:668.977329pt;}
.y1bd{bottom:672.657600pt;}
.y70{bottom:675.090240pt;}
.y15f{bottom:675.215360pt;}
.y171{bottom:685.293440pt;}
.y1da{bottom:685.428480pt;}
.y193{bottom:688.320000pt;}
.y1bc{bottom:693.294720pt;}
.y15e{bottom:696.011840pt;}
.y6f{bottom:696.046080pt;}
.y36{bottom:700.320000pt;}
.ya7{bottom:700.737120pt;}
.y1d9{bottom:703.834560pt;}
.y170{bottom:706.249280pt;}
.y38{bottom:709.280000pt;}
.y97{bottom:710.763520pt;}
.ydb{bottom:710.884480pt;}
.y1bb{bottom:714.250560pt;}
.y15d{bottom:716.808320pt;}
.y59{bottom:716.842560pt;}
.ya6{bottom:721.374240pt;}
.y1d8{bottom:722.400000pt;}
.y34{bottom:724.800000pt;}
.y16f{bottom:727.045760pt;}
.y96{bottom:731.560000pt;}
.y1ba{bottom:735.047040pt;}
.y15c{bottom:737.764160pt;}
.y58{bottom:737.798400pt;}
.ya5{bottom:742.330080pt;}
.yda{bottom:742.411200pt;}
.y16e{bottom:748.001600pt;}
.y192{bottom:752.223680pt;}
.y18e{bottom:752.515840pt;}
.y15b{bottom:758.727680pt;}
.y57{bottom:758.754240pt;}
.yd9{bottom:763.048320pt;}
.ya4{bottom:763.126560pt;}
.ycc{bottom:763.223040pt;}
.y95{bottom:763.246080pt;}
.y1b9{bottom:766.892480pt;}
.y16d{bottom:768.798080pt;}
.y18d{bottom:773.312320pt;}
.y15a{bottom:779.524160pt;}
.y56{bottom:779.550720pt;}
.y2{bottom:781.661334pt;}
.y191{bottom:783.737120pt;}
.yd8{bottom:784.004160pt;}
.ycb{bottom:784.019520pt;}
.y94{bottom:784.042560pt;}
.ya3{bottom:784.082400pt;}
.y1b8{bottom:787.529600pt;}
.y16c{bottom:789.753920pt;}
.y18c{bottom:794.268160pt;}
.y1ff{bottom:796.122720pt;}
.y55{bottom:800.506560pt;}
.yca{bottom:804.975360pt;}
.y93{bottom:804.998400pt;}
.yd7{bottom:805.015200pt;}
.ya2{bottom:805.038240pt;}
.y1b7{bottom:808.485440pt;}
.y1fe{bottom:812.125120pt;}
.y190{bottom:815.263840pt;}
.y54{bottom:821.303040pt;}
.y16b{bottom:821.465920pt;}
.y2f{bottom:823.840000pt;}
.yc9{bottom:825.771840pt;}
.y92{bottom:825.794880pt;}
.yd6{bottom:825.811680pt;}
.ya1{bottom:825.834720pt;}
.y18b{bottom:825.954240pt;}
.y1b6{bottom:829.281920pt;}
.y1fd{bottom:830.849920pt;}
.y53{bottom:842.258880pt;}
.y16a{bottom:842.262400pt;}
.y31{bottom:842.720000pt;}
.yc8{bottom:846.727680pt;}
.y91{bottom:846.750720pt;}
.yd5{bottom:846.767520pt;}
.ya0{bottom:846.790560pt;}
.y18f{bottom:846.949920pt;}
.y1fc{bottom:849.574720pt;}
.y1{bottom:859.312000pt;}
.y1b5{bottom:860.968000pt;}
.y52{bottom:863.055360pt;}
.y169{bottom:863.058880pt;}
.yc7{bottom:867.524160pt;}
.y90{bottom:867.547200pt;}
.yd4{bottom:867.564000pt;}
.y9f{bottom:867.587040pt;}
.y1fb{bottom:868.140160pt;}
.y33{bottom:868.320000pt;}
.y1b4{bottom:881.764480pt;}
.y51{bottom:884.011200pt;}
.y168{bottom:884.014720pt;}
.y1fa{bottom:886.864960pt;}
.y8f{bottom:888.503040pt;}
.yd3{bottom:888.519840pt;}
.y9e{bottom:888.542880pt;}
.y1b3{bottom:902.560960pt;}
.y50{bottom:904.807680pt;}
.y167{bottom:904.811200pt;}
.y1f9{bottom:905.589760pt;}
.y8e{bottom:909.299520pt;}
.yd2{bottom:909.316320pt;}
.y9d{bottom:909.339360pt;}
.y1d7{bottom:919.218720pt;}
.y1b2{bottom:923.516800pt;}
.y1f8{bottom:924.155200pt;}
.y4f{bottom:925.763520pt;}
.y166{bottom:925.767040pt;}
.y8d{bottom:930.255360pt;}
.yd1{bottom:930.272160pt;}
.y9c{bottom:930.295200pt;}
.y1f7{bottom:942.880000pt;}
.y4e{bottom:946.560000pt;}
.y165{bottom:946.563520pt;}
.y1d6{bottom:950.732160pt;}
.y8c{bottom:951.051840pt;}
.yd0{bottom:951.068640pt;}
.y9b{bottom:951.091680pt;}
.y1b1{bottom:955.202880pt;}
.y8b{bottom:972.007680pt;}
.ycf{bottom:972.024480pt;}
.y9a{bottom:972.047520pt;}
.y1b0{bottom:975.840000pt;}
.y4d{bottom:981.600000pt;}
.y24{bottom:982.233280pt;}
.y1d5{bottom:982.245600pt;}
.y8a{bottom:992.804160pt;}
.yce{bottom:992.820960pt;}
.y99{bottom:992.844000pt;}
.y1af{bottom:1011.040000pt;}
.y23{bottom:1013.760000pt;}
.ycd{bottom:1013.776800pt;}
.y98{bottom:1013.799840pt;}
.y21{bottom:1051.840000pt;}
.y4c{bottom:1056.800000pt;}
.y1f{bottom:1061.120000pt;}
.h11{height:14.880000pt;}
.ha{height:21.120000pt;}
.h1c{height:21.719375pt;}
.h15{height:23.200000pt;}
.h7{height:28.560000pt;}
.hb{height:30.873600pt;}
.h25{height:33.150625pt;}
.h1a{height:34.038750pt;}
.h12{height:34.560000pt;}
.h29{height:35.152975pt;}
.h22{height:37.090625pt;}
.h24{height:37.757266pt;}
.h2f{height:38.246400pt;}
.h13{height:40.480000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hd{height:44.000000pt;}
.h14{height:44.015625pt;}
.h23{height:47.405128pt;}
.h1b{height:47.432007pt;}
.h9{height:47.439687pt;}
.h18{height:48.710625pt;}
.h2{height:48.960000pt;}
.h1e{height:49.035895pt;}
.h20{height:49.203575pt;}
.h1d{height:49.209335pt;}
.h21{height:49.318135pt;}
.h2c{height:49.320695pt;}
.h2e{height:49.329655pt;}
.h1f{height:49.332215pt;}
.h28{height:49.334775pt;}
.h2a{height:49.348855pt;}
.h2b{height:49.362935pt;}
.h2d{height:49.370615pt;}
.h26{height:49.393655pt;}
.h27{height:49.410295pt;}
.h16{height:53.913600pt;}
.hc{height:57.156250pt;}
.h19{height:58.687500pt;}
.he{height:69.120000pt;}
.h5{height:69.360000pt;}
.h17{height:83.520000pt;}
.h10{height:92.160000pt;}
.hf{height:99.360000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:105.120000pt;}
.wa{width:159.200000pt;}
.w9{width:217.278667pt;}
.w4{width:233.600000pt;}
.w5{width:240.960000pt;}
.w8{width:273.120000pt;}
.w6{width:555.840000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:9.600000pt;}
.x6{left:47.360000pt;}
.x17{left:66.080000pt;}
.x14{left:85.600000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1c{left:96.806880pt;}
.x13{left:103.520000pt;}
.xd{left:113.120000pt;}
.x18{left:117.120000pt;}
.xf{left:122.880000pt;}
.x15{left:124.160000pt;}
.x1f{left:126.560000pt;}
.x11{left:133.440000pt;}
.x16{left:136.800000pt;}
.x8{left:140.800000pt;}
.x12{left:143.040000pt;}
.x4{left:180.874667pt;}
.x19{left:190.404160pt;}
.x22{left:192.160000pt;}
.x20{left:195.992960pt;}
.x23{left:204.960000pt;}
.x1d{left:215.520000pt;}
.xc{left:257.280000pt;}
.x9{left:396.800000pt;}
.x3{left:404.408000pt;}
.x1b{left:408.160000pt;}
.x1e{left:427.040000pt;}
.x10{left:442.400000pt;}
.x5{left:453.280000pt;}
.x7{left:465.600000pt;}
.x21{left:680.160000pt;}
.xb{left:691.200000pt;}
.xa{left:694.723520pt;}
.x1a{left:699.200000pt;}
}




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