
    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_e0bafd137bfbfb8111eceeef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cd12523ce31d36ea146f1aec.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_2f35eb14de863540717ca381.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_e18326ea0fd9ffebcda030e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_44487efb7fa5c358c3e7113f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.708984;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_83609808539b677ce8b66c53.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900391;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_ba830c4e0c091c6792090d35.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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:-83.160000px;}
.v3{vertical-align:-82.080000px;}
.v6{vertical-align:-69.859440px;}
.v4{vertical-align:-55.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.120000px;}
.v5{vertical-align:27.000000px;}
.v7{vertical-align:55.062000px;}
.ls45{letter-spacing:-0.526680px;}
.ls1d{letter-spacing:-0.420840px;}
.ls8{letter-spacing:-0.360000px;}
.ls4c{letter-spacing:-0.240480px;}
.ls18{letter-spacing:-0.216000px;}
.ls46{letter-spacing:-0.191520px;}
.ls1e{letter-spacing:-0.180360px;}
.ls16{letter-spacing:-0.144000px;}
.ls3d{letter-spacing:-0.143640px;}
.ls27{letter-spacing:-0.131760px;}
.ls1a{letter-spacing:-0.120240px;}
.ls7{letter-spacing:-0.095760px;}
.ls4{letter-spacing:-0.083880px;}
.ls6{letter-spacing:-0.072000px;}
.ls1c{letter-spacing:-0.065880px;}
.ls19{letter-spacing:-0.060120px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.060120px;}
.lsc{letter-spacing:0.065880px;}
.ls5{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.118584px;}
.lsd{letter-spacing:0.120240px;}
.ls9{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.167760px;}
.lsb{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.180360px;}
.ls33{letter-spacing:0.191520px;}
.ls26{letter-spacing:0.197640px;}
.ls31{letter-spacing:0.230580px;}
.ls2d{letter-spacing:0.237168px;}
.ls25{letter-spacing:0.263520px;}
.ls2c{letter-spacing:0.329400px;}
.ls42{letter-spacing:0.335160px;}
.ls1f{letter-spacing:0.420840px;}
.ls28{letter-spacing:0.461160px;}
.ls4e{letter-spacing:0.661320px;}
.ls11{letter-spacing:0.781560px;}
.ls22{letter-spacing:1.376892px;}
.ls14{letter-spacing:1.863720px;}
.ls47{letter-spacing:1.910520px;}
.ls4d{letter-spacing:2.224440px;}
.ls3f{letter-spacing:2.239920px;}
.ls21{letter-spacing:2.635200px;}
.ls32{letter-spacing:2.964600px;}
.ls12{letter-spacing:3.306600px;}
.ls44{letter-spacing:3.667320px;}
.ls24{letter-spacing:3.867156px;}
.ls49{letter-spacing:3.933036px;}
.ls10{letter-spacing:4.028040px;}
.ls4f{letter-spacing:4.388760px;}
.ls13{letter-spacing:4.749480px;}
.ls41{letter-spacing:4.960764px;}
.ls20{letter-spacing:5.110200px;}
.ls2e{letter-spacing:5.138640px;}
.ls48{letter-spacing:5.863320px;}
.ls2a{letter-spacing:6.113664px;}
.ls2f{letter-spacing:6.588000px;}
.ls4a{letter-spacing:6.913800px;}
.ls2b{letter-spacing:7.174332px;}
.ls43{letter-spacing:7.312680px;}
.ls4b{letter-spacing:8.717400px;}
.ls15{letter-spacing:9.078120px;}
.ls40{letter-spacing:9.420840px;}
.ls52{letter-spacing:10.521000px;}
.ls23{letter-spacing:11.594880px;}
.ls3e{letter-spacing:12.220740px;}
.ls29{letter-spacing:14.823000px;}
.ls50{letter-spacing:18.456840px;}
.ls51{letter-spacing:18.817560px;}
.lsa{letter-spacing:21.600000px;}
.ls37{letter-spacing:56.450520px;}
.ls34{letter-spacing:57.168720px;}
.ls3c{letter-spacing:59.658480px;}
.ls38{letter-spacing:67.606560px;}
.ls3a{letter-spacing:75.889800px;}
.ls36{letter-spacing:76.608000px;}
.ls35{letter-spacing:76.943160px;}
.ls3b{letter-spacing:83.406960px;}
.ls39{letter-spacing:117.641160px;}
.ls3{letter-spacing:161.640000px;}
.ls2{letter-spacing:431.640000px;}
.lsf{letter-spacing:877.030560px;}
.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;}
}
.ws1{word-spacing:-21.137760px;}
.wse{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws5e{word-spacing:-16.667640px;}
.ws7a{word-spacing:-16.535880px;}
.ws5d{word-spacing:-16.470000px;}
.ws35{word-spacing:-16.404120px;}
.ws79{word-spacing:-16.338240px;}
.ws15{word-spacing:-15.210360px;}
.ws16{word-spacing:-15.150240px;}
.ws14{word-spacing:-15.090120px;}
.ws96{word-spacing:-15.030000px;}
.wsef{word-spacing:-14.969880px;}
.ws11{word-spacing:-14.909760px;}
.ws13{word-spacing:-14.849640px;}
.wse4{word-spacing:-14.789520px;}
.ws12{word-spacing:-14.609160px;}
.ws34{word-spacing:-14.559480px;}
.ws5f{word-spacing:-14.427720px;}
.wse3{word-spacing:-14.361840px;}
.ws10{word-spacing:-13.662000px;}
.wsf{word-spacing:-13.500000px;}
.ws97{word-spacing:-12.161520px;}
.wsbb{word-spacing:-11.970000px;}
.ws3{word-spacing:-11.874240px;}
.ws98{word-spacing:-11.826360px;}
.ws4a{word-spacing:-0.461160px;}
.wsbf{word-spacing:-0.420840px;}
.wsd3{word-spacing:-0.360720px;}
.ws7{word-spacing:-0.288000px;}
.ws9d{word-spacing:-0.287280px;}
.ws4{word-spacing:-0.251640px;}
.ws94{word-spacing:-0.197640px;}
.wsa2{word-spacing:-0.191520px;}
.ws37{word-spacing:-0.180360px;}
.ws18{word-spacing:-0.162000px;}
.ws77{word-spacing:-0.131760px;}
.ws9a{word-spacing:-0.120240px;}
.ws9e{word-spacing:-0.095760px;}
.ws6{word-spacing:-0.072000px;}
.ws72{word-spacing:-0.065880px;}
.ws1c{word-spacing:-0.060120px;}
.ws0{word-spacing:0.000000px;}
.wsf8{word-spacing:0.060120px;}
.ws1d{word-spacing:0.065880px;}
.wsb{word-spacing:0.072000px;}
.ws5{word-spacing:0.083880px;}
.wsb0{word-spacing:0.095760px;}
.wsbd{word-spacing:0.120240px;}
.ws49{word-spacing:0.131760px;}
.ws17{word-spacing:0.144000px;}
.wsb1{word-spacing:0.162000px;}
.ws1a{word-spacing:0.180360px;}
.wsdd{word-spacing:0.191520px;}
.ws1b{word-spacing:0.240480px;}
.ws73{word-spacing:0.263520px;}
.wsa6{word-spacing:0.287280px;}
.ws38{word-spacing:0.300600px;}
.wsa{word-spacing:0.360000px;}
.wsfb{word-spacing:0.360720px;}
.ws19{word-spacing:0.378000px;}
.wsd4{word-spacing:0.383040px;}
.wsd5{word-spacing:0.430920px;}
.ws4f{word-spacing:0.592920px;}
.wsbe{word-spacing:0.601200px;}
.ws22{word-spacing:0.661320px;}
.ws75{word-spacing:0.856440px;}
.wse6{word-spacing:0.988200px;}
.wsa1{word-spacing:1.005480px;}
.wseb{word-spacing:1.022040px;}
.ws8f{word-spacing:1.251720px;}
.ws43{word-spacing:1.317600px;}
.ws41{word-spacing:1.449360px;}
.ws42{word-spacing:1.581120px;}
.ws36{word-spacing:1.683360px;}
.ws6a{word-spacing:1.712880px;}
.wsf0{word-spacing:1.743480px;}
.ws6c{word-spacing:1.844640px;}
.ws2b{word-spacing:1.923840px;}
.ws67{word-spacing:1.976400px;}
.ws2c{word-spacing:1.983960px;}
.ws51{word-spacing:2.042280px;}
.wsec{word-spacing:2.044080px;}
.ws3e{word-spacing:2.305800px;}
.wsed{word-spacing:2.344680px;}
.wsc{word-spacing:2.376000px;}
.wsf1{word-spacing:2.404800px;}
.ws3f{word-spacing:2.437560px;}
.wsf4{word-spacing:2.464920px;}
.ws91{word-spacing:2.569320px;}
.wsf5{word-spacing:2.585160px;}
.ws40{word-spacing:2.701080px;}
.ws20{word-spacing:2.765520px;}
.ws6b{word-spacing:2.766960px;}
.wsda{word-spacing:2.777040px;}
.wsf6{word-spacing:2.825640px;}
.ws81{word-spacing:3.030480px;}
.ws8b{word-spacing:3.096360px;}
.ws25{word-spacing:3.126240px;}
.ws8a{word-spacing:3.162240px;}
.wsea{word-spacing:3.186360px;}
.wsd1{word-spacing:3.294000px;}
.wsee{word-spacing:3.366720px;}
.ws56{word-spacing:3.425760px;}
.ws26{word-spacing:3.426840px;}
.wsd2{word-spacing:3.486960px;}
.ws4c{word-spacing:3.491640px;}
.wse7{word-spacing:3.547080px;}
.ws4d{word-spacing:3.755160px;}
.ws57{word-spacing:3.886920px;}
.wsf7{word-spacing:4.088160px;}
.ws5a{word-spacing:4.150440px;}
.ws1f{word-spacing:4.208400px;}
.wsd9{word-spacing:4.213440px;}
.ws7f{word-spacing:4.216320px;}
.ws2a{word-spacing:4.268520px;}
.ws1e{word-spacing:4.328640px;}
.ws83{word-spacing:4.348080px;}
.ws28{word-spacing:4.448880px;}
.ws4e{word-spacing:4.479840px;}
.wsb5{word-spacing:4.545720px;}
.ws29{word-spacing:4.569120px;}
.wsb4{word-spacing:4.809240px;}
.wsa0{word-spacing:4.931640px;}
.ws7c{word-spacing:4.941000px;}
.wsbc{word-spacing:5.072760px;}
.ws3c{word-spacing:5.170320px;}
.ws7b{word-spacing:5.204520px;}
.ws4b{word-spacing:5.270400px;}
.ws30{word-spacing:5.290560px;}
.ws86{word-spacing:5.533920px;}
.ws23{word-spacing:5.651280px;}
.ws6d{word-spacing:5.665680px;}
.ws74{word-spacing:5.929200px;}
.wse9{word-spacing:5.951880px;}
.ws3a{word-spacing:6.012000px;}
.wsba{word-spacing:6.126840px;}
.wsa9{word-spacing:6.224400px;}
.ws6e{word-spacing:6.258600px;}
.ws32{word-spacing:6.312600px;}
.wsf3{word-spacing:6.372720px;}
.wsb2{word-spacing:6.390360px;}
.wsa3{word-spacing:6.415920px;}
.wsf2{word-spacing:6.432840px;}
.ws7e{word-spacing:6.522120px;}
.ws33{word-spacing:6.613200px;}
.ws80{word-spacing:6.653880px;}
.ws78{word-spacing:6.719760px;}
.wscc{word-spacing:6.751080px;}
.wse8{word-spacing:6.793560px;}
.ws53{word-spacing:6.851520px;}
.ws52{word-spacing:6.983280px;}
.ws82{word-spacing:7.115040px;}
.ws76{word-spacing:7.246800px;}
.ws50{word-spacing:7.378560px;}
.ws5c{word-spacing:7.444440px;}
.ws2e{word-spacing:7.454880px;}
.wsa4{word-spacing:7.469280px;}
.ws7d{word-spacing:7.707960px;}
.ws2f{word-spacing:7.755480px;}
.ws9{word-spacing:7.848000px;}
.ws24{word-spacing:8.056080px;}
.ws5b{word-spacing:8.103240px;}
.ws92{word-spacing:8.169120px;}
.wsf9{word-spacing:8.176320px;}
.wsfa{word-spacing:8.236440px;}
.ws71{word-spacing:8.300880px;}
.ws93{word-spacing:8.432640px;}
.ws31{word-spacing:8.537040px;}
.ws70{word-spacing:8.564400px;}
.ws60{word-spacing:8.827920px;}
.ws46{word-spacing:8.893800px;}
.ws2d{word-spacing:8.897760px;}
.ws47{word-spacing:9.157320px;}
.ws6f{word-spacing:9.223200px;}
.ws65{word-spacing:9.486720px;}
.ws8e{word-spacing:9.618480px;}
.wsac{word-spacing:9.623880px;}
.ws95{word-spacing:9.750240px;}
.ws8d{word-spacing:9.882000px;}
.ws3b{word-spacing:9.979920px;}
.ws9f{word-spacing:10.006920px;}
.ws3d{word-spacing:10.211400px;}
.wsfe{word-spacing:10.340640px;}
.ws84{word-spacing:10.343160px;}
.wsa8{word-spacing:10.533600px;}
.ws68{word-spacing:10.606680px;}
.wsff{word-spacing:10.641240px;}
.ws54{word-spacing:10.672560px;}
.wscb{word-spacing:10.868760px;}
.ws8{word-spacing:10.872000px;}
.ws66{word-spacing:10.936080px;}
.ws21{word-spacing:10.941840px;}
.ws39{word-spacing:11.062080px;}
.ws85{word-spacing:11.067840px;}
.ws45{word-spacing:11.331360px;}
.ws27{word-spacing:11.422800px;}
.wsce{word-spacing:11.443320px;}
.ws48{word-spacing:11.660760px;}
.wse1{word-spacing:11.778480px;}
.ws8c{word-spacing:11.792520px;}
.ws62{word-spacing:11.924280px;}
.ws61{word-spacing:12.056040px;}
.wsb3{word-spacing:12.121920px;}
.ws90{word-spacing:12.385440px;}
.wsc4{word-spacing:12.496680px;}
.ws58{word-spacing:12.517200px;}
.ws59{word-spacing:12.780720px;}
.wsc0{word-spacing:12.879720px;}
.ws55{word-spacing:13.110120px;}
.ws88{word-spacing:13.571280px;}
.ws87{word-spacing:13.834800px;}
.wsb7{word-spacing:13.966560px;}
.wsb8{word-spacing:14.230080px;}
.ws63{word-spacing:14.625360px;}
.ws64{word-spacing:14.757120px;}
.wse5{word-spacing:15.020640px;}
.wsb9{word-spacing:15.284160px;}
.wsd0{word-spacing:15.613560px;}
.wscf{word-spacing:16.135560px;}
.wsd6{word-spacing:17.188920px;}
.ws44{word-spacing:17.194680px;}
.wsaa{word-spacing:18.290160px;}
.wsfd{word-spacing:18.336600px;}
.wsfc{word-spacing:18.877680px;}
.wse0{word-spacing:20.061720px;}
.wsc6{word-spacing:20.444760px;}
.wsdf{word-spacing:20.779920px;}
.wscd{word-spacing:21.306600px;}
.wsb6{word-spacing:21.740400px;}
.wsdb{word-spacing:22.216320px;}
.wsd{word-spacing:22.248000px;}
.wsd8{word-spacing:23.317560px;}
.wsae{word-spacing:23.652720px;}
.wsaf{word-spacing:24.035760px;}
.ws69{word-spacing:24.046200px;}
.ws89{word-spacing:25.824960px;}
.wse2{word-spacing:28.728000px;}
.wsde{word-spacing:30.499560px;}
.wsc7{word-spacing:37.154880px;}
.wsc2{word-spacing:37.346400px;}
.wsdc{word-spacing:42.565320px;}
.wsab{word-spacing:44.911440px;}
.wsc9{word-spacing:45.294480px;}
.wsca{word-spacing:58.269960px;}
.ws9b{word-spacing:63.249480px;}
.ws9c{word-spacing:68.659920px;}
.ws99{word-spacing:68.798772px;}
.wsd7{word-spacing:74.070360px;}
.wsa7{word-spacing:83.071800px;}
.wsc1{word-spacing:90.636840px;}
.wsa5{word-spacing:107.203320px;}
.wsc5{word-spacing:109.357920px;}
.wsc8{word-spacing:114.193800px;}
.wsad{word-spacing:120.513960px;}
.wsc3{word-spacing:128.079000px;}
._1{margin-left:-1.031724px;}
._2{width:1.123992px;}
._5{width:2.160000px;}
._9{width:3.557520px;}
._7{width:5.203332px;}
._4{width:7.847172px;}
._3{width:10.906200px;}
._13{width:14.888880px;}
._6{width:21.887172px;}
._10{width:55.732320px;}
._b{width:57.147084px;}
._f{width:77.038920px;}
._11{width:81.108720px;}
._a{width:99.351000px;}
._e{width:100.883160px;}
._d{width:120.609720px;}
._c{width:129.323880px;}
._12{width:140.458284px;}
._8{width:173.264400px;}
._0{width:783.000000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs7{font-size:47.880000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y11f{bottom:2.880000px;}
.y12e{bottom:2.970000px;}
.y164{bottom:3.420000px;}
.y12b{bottom:4.410000px;}
.y128{bottom:9.720000px;}
.y154{bottom:9.810000px;}
.yf4{bottom:11.970000px;}
.y14f{bottom:12.330000px;}
.y11d{bottom:16.380000px;}
.y11e{bottom:16.650000px;}
.y163{bottom:17.190000px;}
.y136{bottom:18.180000px;}
.y12a{bottom:18.270000px;}
.y132{bottom:21.060000px;}
.y15f{bottom:30.510000px;}
.y162{bottom:30.960000px;}
.y13c{bottom:34.830000px;}
.y6{bottom:35.925007px;}
.y166{bottom:44.280000px;}
.yef{bottom:44.460000px;}
.ybe{bottom:46.620000px;}
.y124{bottom:48.600000px;}
.ye5{bottom:49.410000px;}
.y16c{bottom:58.050000px;}
.y130{bottom:62.460000px;}
.ye4{bottom:63.180000px;}
.y5{bottom:66.525004px;}
.y146{bottom:71.910000px;}
.y122{bottom:76.230000px;}
.ye3{bottom:76.950000px;}
.y145{bottom:85.680000px;}
.y8d{bottom:89.244360px;}
.y121{bottom:90.000000px;}
.y151{bottom:90.090000px;}
.ybc{bottom:90.575460px;}
.ycf{bottom:90.810000px;}
.y62{bottom:92.589120px;}
.yee{bottom:94.860000px;}
.y4{bottom:97.125005px;}
.y119{bottom:99.061830px;}
.y144{bottom:99.450000px;}
.y39{bottom:99.630000px;}
.y15b{bottom:103.410180px;}
.ye1{bottom:104.580000px;}
.y1bb{bottom:104.940000px;}
.yf2{bottom:106.830000px;}
.y8c{bottom:108.234270px;}
.ybb{bottom:109.565370px;}
.y61{bottom:109.873620px;}
.y118{bottom:118.051740px;}
.yd6{bottom:118.350000px;}
.y38{bottom:120.330000px;}
.y15a{bottom:122.400090px;}
.y1ba{bottom:122.850000px;}
.yf0{bottom:125.550000px;}
.y60{bottom:127.067940px;}
.y8b{bottom:127.224180px;}
.yb5{bottom:127.252620px;}
.yba{bottom:128.555280px;}
.y198{bottom:134.024580px;}
.y117{bottom:137.041650px;}
.y22{bottom:139.264499px;}
.yf1{bottom:139.324500px;}
.y37{bottom:141.030000px;}
.y159{bottom:141.390000px;}
.y1b9{bottom:143.550000px;}
.y5f{bottom:144.352440px;}
.y8a{bottom:146.214090px;}
.yb4{bottom:146.242530px;}
.yb9{bottom:147.545190px;}
.y197{bottom:151.309080px;}
.yed{bottom:153.090000px;}
.y116{bottom:156.031560px;}
.y5e{bottom:161.546760px;}
.y1b8{bottom:163.348020px;}
.y89{bottom:165.204000px;}
.yb3{bottom:165.232440px;}
.yb8{bottom:166.897440px;}
.y196{bottom:168.503400px;}
.y158{bottom:168.930000px;}
.ye0{bottom:173.790000px;}
.y115{bottom:175.021470px;}
.y5d{bottom:178.831260px;}
.y1b7{bottom:180.632520px;}
.y36{bottom:182.250000px;}
.y88{bottom:184.111560px;}
.yb2{bottom:184.140000px;}
.yec{bottom:185.674500px;}
.y195{bottom:185.787900px;}
.yb7{bottom:186.249690px;}
.y150{bottom:190.890000px;}
.y114{bottom:193.929030px;}
.y16e{bottom:195.750000px;}
.y5c{bottom:196.115760px;}
.y19{bottom:196.933500px;}
.y1b6{bottom:197.917020px;}
.yeb{bottom:199.440000px;}
.y35{bottom:202.950000px;}
.y194{bottom:203.072400px;}
.y87{bottom:203.101470px;}
.yb1{bottom:203.850000px;}
.yb6{bottom:205.157250px;}
.y157{bottom:205.470000px;}
.ye6{bottom:209.340000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y16f{bottom:212.490000px;}
.y113{bottom:212.918940px;}
.y5b{bottom:213.310080px;}
.y1b5{bottom:215.111340px;}
.y156{bottom:219.960000px;}
.y193{bottom:220.266720px;}
.y86{bottom:222.091380px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y34{bottom:223.650000px;}
.yb0{bottom:224.147160px;}
.y5a{bottom:230.594580px;}
.y112{bottom:231.908850px;}
.yea{bottom:232.024500px;}
.y1b4{bottom:232.395840px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y192{bottom:237.551220px;}
.y16b{bottom:237.960000px;}
.y152{bottom:239.580000px;}
.y85{bottom:241.081290px;}
.y155{bottom:241.380000px;}
.yaf{bottom:243.137070px;}
.y33{bottom:244.350000px;}
.ye9{bottom:245.790000px;}
.y59{bottom:247.879080px;}
.y1b3{bottom:249.680340px;}
.y111{bottom:250.898760px;}
.y16d{bottom:254.610000px;}
.y191{bottom:254.835720px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y84{bottom:260.071200px;}
.yae{bottom:262.126980px;}
.ye2{bottom:264.600000px;}
.y32{bottom:265.050000px;}
.y58{bottom:265.073400px;}
.y1b2{bottom:266.874660px;}
.y110{bottom:269.888670px;}
.y153{bottom:271.170000px;}
.y190{bottom:272.030040px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.ye8{bottom:278.374500px;}
.y83{bottom:278.978760px;}
.yad{bottom:281.116890px;}
.y57{bottom:282.357900px;}
.y1b1{bottom:284.159160px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y18f{bottom:289.314540px;}
.ye7{bottom:292.140000px;}
.y143{bottom:292.590000px;}
.y10f{bottom:297.788850px;}
.y82{bottom:297.968670px;}
.y56{bottom:299.642400px;}
.yac{bottom:300.106800px;}
.y1b0{bottom:301.443660px;}
.y31{bottom:303.750000px;}
.y18e{bottom:306.599040px;}
.y169{bottom:307.620000px;}
.y14a{bottom:309.247740px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yd5{bottom:312.840000px;}
.y14e{bottom:316.530000px;}
.y10e{bottom:316.778760px;}
.y55{bottom:316.836720px;}
.y81{bottom:316.958580px;}
.y1af{bottom:318.637980px;}
.yab{bottom:319.014360px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y149{bottom:323.109000px;}
.y18d{bottom:323.793360px;}
.y16a{bottom:324.360000px;}
.ydf{bottom:324.724500px;}
.y30{bottom:327.510000px;}
.y14d{bottom:331.110000px;}
.y54{bottom:334.121220px;}
.y10d{bottom:335.768670px;}
.y1ae{bottom:335.922480px;}
.y80{bottom:335.948490px;}
.y148{bottom:336.874500px;}
.yaa{bottom:338.004270px;}
.yde{bottom:338.490000px;}
.y18c{bottom:341.077860px;}
.y10{bottom:348.133500px;}
.y165{bottom:349.830000px;}
.y147{bottom:350.640000px;}
.y2f{bottom:351.360000px;}
.y53{bottom:351.405720px;}
.y14c{bottom:352.530000px;}
.y1ad{bottom:353.116800px;}
.y10c{bottom:354.758580px;}
.y7f{bottom:354.938400px;}
.ya9{bottom:356.994180px;}
.y18b{bottom:358.362360px;}
.y168{bottom:366.478740px;}
.y52{bottom:368.600040px;}
.y1ac{bottom:370.401300px;}
.ydd{bottom:371.074500px;}
.y10b{bottom:373.748490px;}
.y7e{bottom:373.928310px;}
.y2e{bottom:375.120000px;}
.y18a{bottom:375.556680px;}
.ya8{bottom:375.984090px;}
.y167{bottom:380.340000px;}
.y14b{bottom:382.320000px;}
.ydc{bottom:384.840000px;}
.y51{bottom:385.884540px;}
.yf{bottom:386.785499px;}
.y1ab{bottom:387.685800px;}
.yd9{bottom:389.793240px;}
.y10a{bottom:392.738400px;}
.y7d{bottom:392.835870px;}
.y189{bottom:392.841180px;}
.ya7{bottom:394.974000px;}
.y2d{bottom:398.970000px;}
.y50{bottom:403.169040px;}
.yd8{bottom:403.654500px;}
.y13a{bottom:403.740000px;}
.y1aa{bottom:404.880120px;}
.y161{bottom:405.720000px;}
.ye{bottom:408.044999px;}
.y188{bottom:410.035500px;}
.y109{bottom:411.645960px;}
.y7c{bottom:411.825780px;}
.ya6{bottom:413.881560px;}
.yd7{bottom:417.420000px;}
.ydb{bottom:417.424500px;}
.y142{bottom:418.230000px;}
.y4f{bottom:420.183000px;}
.y1a9{bottom:422.164620px;}
.y13d{bottom:424.800000px;}
.y187{bottom:427.320000px;}
.y108{bottom:430.635870px;}
.y7b{bottom:430.815690px;}
.yda{bottom:431.190000px;}
.y141{bottom:432.810000px;}
.ya5{bottom:432.871470px;}
.y1a8{bottom:439.449120px;}
.y186{bottom:444.841920px;}
.y15e{bottom:448.380000px;}
.y107{bottom:449.625780px;}
.y7a{bottom:449.805600px;}
.ya4{bottom:451.861380px;}
.yce{bottom:451.890000px;}
.y13f{bottom:454.230000px;}
.y4e{bottom:454.932360px;}
.y1a7{bottom:456.643440px;}
.y2c{bottom:458.550000px;}
.y140{bottom:458.640000px;}
.yd4{bottom:463.774500px;}
.y185{bottom:463.831830px;}
.y160{bottom:465.030000px;}
.y106{bottom:468.615690px;}
.y79{bottom:468.795510px;}
.ya3{bottom:470.851290px;}
.y4d{bottom:472.126680px;}
.y1a6{bottom:473.927940px;}
.yd3{bottom:477.540000px;}
.y2b{bottom:479.793150px;}
.y13b{bottom:479.970000px;}
.y184{bottom:483.184080px;}
.y13e{bottom:484.020000px;}
.y105{bottom:487.605600px;}
.y78{bottom:487.703070px;}
.y4c{bottom:489.411180px;}
.ya2{bottom:489.841200px;}
.y1a5{bottom:491.212440px;}
.y183{bottom:502.536330px;}
.yd{bottom:502.864502px;}
.y15d{bottom:503.005680px;}
.y2a{bottom:503.908650px;}
.y12f{bottom:505.440000px;}
.y4b{bottom:506.425140px;}
.y77{bottom:506.692980px;}
.y1a4{bottom:508.406760px;}
.ya1{bottom:508.831110px;}
.yd2{bottom:510.124500px;}
.y133{bottom:512.640000px;}
.yd1{bottom:515.074500px;}
.y104{bottom:515.505780px;}
.y139{bottom:519.930000px;}
.y15c{bottom:520.200000px;}
.yc{bottom:520.864502px;}
.y182{bottom:521.443890px;}
.y4a{bottom:523.890000px;}
.y76{bottom:525.682890px;}
.y1a3{bottom:525.691260px;}
.ya0{bottom:527.738670px;}
.y29{bottom:528.129000px;}
.yd0{bottom:528.840000px;}
.y103{bottom:534.495690px;}
.y138{bottom:534.510000px;}
.yb{bottom:538.864499px;}
.y131{bottom:540.270000px;}
.y181{bottom:540.433800px;}
.y49{bottom:541.424970px;}
.y1a2{bottom:542.975760px;}
.y75{bottom:544.672800px;}
.y9f{bottom:546.728580px;}
.y28{bottom:552.244500px;}
.y102{bottom:553.485600px;}
.y135{bottom:555.930000px;}
.ycd{bottom:556.474500px;}
.ya{bottom:556.864499px;}
.y180{bottom:559.423710px;}
.y1a1{bottom:560.170080px;}
.y137{bottom:560.340000px;}
.y48{bottom:560.414880px;}
.y74{bottom:563.662710px;}
.y9e{bottom:565.718490px;}
.ycc{bottom:570.240000px;}
.y101{bottom:572.475510px;}
.y27{bottom:576.360000px;}
.y1a0{bottom:577.454580px;}
.y17f{bottom:578.413620px;}
.y47{bottom:579.322440px;}
.y73{bottom:582.570270px;}
.y9d{bottom:584.708400px;}
.y134{bottom:585.720000px;}
.y100{bottom:591.465420px;}
.y19f{bottom:594.739080px;}
.y17e{bottom:597.403530px;}
.y46{bottom:598.230000px;}
.y26{bottom:599.670000px;}
.y72{bottom:601.560180px;}
.ycb{bottom:602.824500px;}
.y9c{bottom:603.698310px;}
.y120{bottom:607.140000px;}
.yff{bottom:610.372980px;}
.y19e{bottom:611.933400px;}
.y17d{bottom:616.311090px;}
.yca{bottom:616.590000px;}
.y45{bottom:617.012010px;}
.y71{bottom:620.550090px;}
.y12d{bottom:621.630000px;}
.y9b{bottom:622.605870px;}
.y126{bottom:628.204500px;}
.y19d{bottom:629.217900px;}
.yfe{bottom:629.362890px;}
.y44{bottom:634.296510px;}
.y17c{bottom:635.301000px;}
.y12c{bottom:636.210000px;}
.y70{bottom:639.540000px;}
.y25{bottom:640.875150px;}
.y9a{bottom:641.595780px;}
.y125{bottom:641.970000px;}
.y9{bottom:645.510000px;}
.y19c{bottom:646.502400px;}
.yfd{bottom:648.352800px;}
.yc9{bottom:649.174500px;}
.y43{bottom:651.490830px;}
.y17b{bottom:654.290910px;}
.y129{bottom:657.540000px;}
.y6f{bottom:658.080000px;}
.y99{bottom:660.585690px;}
.yc8{bottom:662.940000px;}
.y19b{bottom:663.696720px;}
.y8{bottom:666.771000px;}
.yfc{bottom:667.342710px;}
.yc5{bottom:667.897740px;}
.y123{bottom:669.600000px;}
.y17a{bottom:673.280820px;}
.y6e{bottom:675.810000px;}
.y42{bottom:677.763270px;}
.y98{bottom:679.575600px;}
.y19a{bottom:680.981220px;}
.yc4{bottom:681.759000px;}
.y24{bottom:686.065500px;}
.yfb{bottom:686.332620px;}
.y127{bottom:687.420000px;}
.y179{bottom:692.270730px;}
.y6d{bottom:695.430000px;}
.yc3{bottom:695.524500px;}
.yc7{bottom:695.536470px;}
.y199{bottom:698.175540px;}
.y97{bottom:698.565510px;}
.y41{bottom:704.050740px;}
.yfa{bottom:705.322530px;}
.y11c{bottom:708.840000px;}
.yc2{bottom:709.290000px;}
.yc6{bottom:709.301970px;}
.y178{bottom:711.260640px;}
.y6c{bottom:715.460040px;}
.y96{bottom:717.473070px;}
.yf9{bottom:724.230090px;}
.y23{bottom:724.860000px;}
.y7{bottom:726.298500px;}
.ybd{bottom:729.990000px;}
.y177{bottom:730.168200px;}
.y40{bottom:730.248030px;}
.y6b{bottom:732.744540px;}
.y95{bottom:736.462980px;}
.yf8{bottom:743.220000px;}
.y3f{bottom:747.532530px;}
.y176{bottom:749.158110px;}
.y11b{bottom:749.605500px;}
.y6a{bottom:749.938860px;}
.y3{bottom:752.599495px;}
.y94{bottom:755.452890px;}
.y11a{bottom:766.890000px;}
.y69{bottom:767.223360px;}
.y175{bottom:768.148020px;}
.yf7{bottom:770.760000px;}
.y3e{bottom:773.820000px;}
.y93{bottom:774.442800px;}
.y68{bottom:784.507860px;}
.yc0{bottom:786.330000px;}
.y174{bottom:787.137930px;}
.y92{bottom:793.432710px;}
.y3d{bottom:799.830000px;}
.y67{bottom:801.702180px;}
.y173{bottom:806.045490px;}
.ybf{bottom:811.620000px;}
.y91{bottom:812.422620px;}
.y3c{bottom:815.395500px;}
.y66{bottom:818.986680px;}
.yc1{bottom:820.260000px;}
.y172{bottom:825.117750px;}
.yf6{bottom:826.564500px;}
.y3b{bottom:830.880000px;}
.y90{bottom:831.330180px;}
.y65{bottom:836.271180px;}
.yf5{bottom:840.330000px;}
.y171{bottom:844.470000px;}
.y8f{bottom:850.320090px;}
.y64{bottom:853.465500px;}
.yf3{bottom:860.940000px;}
.y3a{bottom:867.960000px;}
.y8e{bottom:869.310000px;}
.y63{bottom:870.750000px;}
.y170{bottom:872.280000px;}
.y2{bottom:879.369000px;}
.y1{bottom:966.726000px;}
.h24{height:13.770000px;}
.h23{height:13.858500px;}
.h27{height:13.860000px;}
.h22{height:20.608500px;}
.h20{height:20.610000px;}
.h2c{height:20.700000px;}
.h1c{height:22.861500px;}
.h2a{height:23.220000px;}
.h1d{height:27.540000px;}
.h26{height:29.070000px;}
.h29{height:29.071500px;}
.h21{height:29.160000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h30{height:41.398500px;}
.h2d{height:41.400000px;}
.h2e{height:41.850000px;}
.h7{height:45.960000px;}
.h16{height:46.193203px;}
.h18{height:46.991602px;}
.h3{height:48.195000px;}
.h1e{height:48.254063px;}
.h6{height:48.258000px;}
.h11{height:52.998047px;}
.h2{height:55.152000px;}
.h2f{height:55.170000px;}
.h12{height:59.004492px;}
.h14{height:60.589687px;}
.h13{height:64.657617px;}
.hd{height:66.394687px;}
.h31{height:68.938500px;}
.he{height:70.628906px;}
.h10{height:70.664062px;}
.h15{height:70.823903px;}
.hf{height:72.562500px;}
.h1b{height:78.118500px;}
.h5{height:78.132000px;}
.hc{height:84.535312px;}
.h25{height:100.890000px;}
.h1f{height:100.891500px;}
.h2b{height:100.980000px;}
.h19{height:102.053602px;}
.h28{height:110.341500px;}
.h4{height:119.055004px;}
.h17{height:127.530000px;}
.h1a{height:138.240000px;}
.ha{height:969.570000px;}
.hb{height:969.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wb{width:28.350000px;}
.w7{width:28.530000px;}
.we{width:31.860000px;}
.w8{width:33.210000px;}
.w9{width:33.300000px;}
.wa{width:33.390000px;}
.wc{width:38.158500px;}
.wd{width:40.588500px;}
.w16{width:43.200000px;}
.w18{width:46.440000px;}
.w19{width:51.660000px;}
.w13{width:52.110000px;}
.w17{width:56.880000px;}
.w6{width:57.690000px;}
.w1a{width:58.410000px;}
.w11{width:67.951500px;}
.w15{width:70.290000px;}
.w12{width:73.350000px;}
.wf{width:93.690000px;}
.w5{width:132.570000px;}
.w14{width:155.790000px;}
.w10{width:204.030000px;}
.w2{width:637.794021px;}
.w3{width:671.940000px;}
.w4{width:672.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:7.740000px;}
.x3e{left:9.540000px;}
.x40{left:11.700000px;}
.x3c{left:13.590000px;}
.x32{left:15.390000px;}
.x35{left:16.560000px;}
.x39{left:19.890000px;}
.x41{left:22.950000px;}
.x16{left:28.080000px;}
.x3f{left:29.610000px;}
.x1a{left:42.210000px;}
.xc{left:85.050000px;}
.x9{left:88.650000px;}
.x10{left:92.431530px;}
.xe{left:94.414500px;}
.xa{left:97.373520px;}
.x42{left:100.080000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x6{left:133.387650px;}
.x13{left:141.384240px;}
.xf{left:159.300000px;}
.x15{left:162.717840px;}
.x2c{left:183.330000px;}
.x12{left:189.720720px;}
.x30{left:190.980000px;}
.x4{left:203.484001px;}
.x17{left:218.700000px;}
.x25{left:226.435950px;}
.x5{left:229.050000px;}
.x31{left:248.940000px;}
.xd{left:259.740000px;}
.x33{left:266.580000px;}
.x18{left:277.110000px;}
.x7{left:278.206470px;}
.xb{left:279.351180px;}
.x14{left:284.124150px;}
.x19{left:306.360000px;}
.x26{left:314.104230px;}
.x34{left:320.040000px;}
.x11{left:325.712160px;}
.x8{left:335.970000px;}
.x1b{left:340.380000px;}
.x29{left:348.043230px;}
.x36{left:363.960000px;}
.x1c{left:374.490000px;}
.x37{left:375.750000px;}
.x2d{left:388.170000px;}
.x1d{left:402.570000px;}
.x1e{left:408.600000px;}
.x38{left:421.560000px;}
.x1f{left:437.670000px;}
.x3{left:454.959000px;}
.x2e{left:456.930000px;}
.x20{left:466.920000px;}
.x3a{left:468.720000px;}
.x2b{left:474.685830px;}
.x21{left:495.000000px;}
.x22{left:505.800000px;}
.x27{left:513.572310px;}
.x3b{left:521.100000px;}
.x2f{left:531.000000px;}
.x23{left:533.880000px;}
.x3d{left:542.340000px;}
.x24{left:547.110000px;}
.x28{left:554.880780px;}
@media print{
.v1{vertical-align:-73.920000pt;}
.v3{vertical-align:-72.960000pt;}
.v6{vertical-align:-62.097280pt;}
.v4{vertical-align:-49.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.440000pt;}
.v5{vertical-align:24.000000pt;}
.v7{vertical-align:48.944000pt;}
.ls45{letter-spacing:-0.468160pt;}
.ls1d{letter-spacing:-0.374080pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls4c{letter-spacing:-0.213760pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls46{letter-spacing:-0.170240pt;}
.ls1e{letter-spacing:-0.160320pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls3d{letter-spacing:-0.127680pt;}
.ls27{letter-spacing:-0.117120pt;}
.ls1a{letter-spacing:-0.106880pt;}
.ls7{letter-spacing:-0.085120pt;}
.ls4{letter-spacing:-0.074560pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls1c{letter-spacing:-0.058560pt;}
.ls19{letter-spacing:-0.053440pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.053440pt;}
.lsc{letter-spacing:0.058560pt;}
.ls5{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.105408pt;}
.lsd{letter-spacing:0.106880pt;}
.ls9{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.149120pt;}
.lsb{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.160320pt;}
.ls33{letter-spacing:0.170240pt;}
.ls26{letter-spacing:0.175680pt;}
.ls31{letter-spacing:0.204960pt;}
.ls2d{letter-spacing:0.210816pt;}
.ls25{letter-spacing:0.234240pt;}
.ls2c{letter-spacing:0.292800pt;}
.ls42{letter-spacing:0.297920pt;}
.ls1f{letter-spacing:0.374080pt;}
.ls28{letter-spacing:0.409920pt;}
.ls4e{letter-spacing:0.587840pt;}
.ls11{letter-spacing:0.694720pt;}
.ls22{letter-spacing:1.223904pt;}
.ls14{letter-spacing:1.656640pt;}
.ls47{letter-spacing:1.698240pt;}
.ls4d{letter-spacing:1.977280pt;}
.ls3f{letter-spacing:1.991040pt;}
.ls21{letter-spacing:2.342400pt;}
.ls32{letter-spacing:2.635200pt;}
.ls12{letter-spacing:2.939200pt;}
.ls44{letter-spacing:3.259840pt;}
.ls24{letter-spacing:3.437472pt;}
.ls49{letter-spacing:3.496032pt;}
.ls10{letter-spacing:3.580480pt;}
.ls4f{letter-spacing:3.901120pt;}
.ls13{letter-spacing:4.221760pt;}
.ls41{letter-spacing:4.409568pt;}
.ls20{letter-spacing:4.542400pt;}
.ls2e{letter-spacing:4.567680pt;}
.ls48{letter-spacing:5.211840pt;}
.ls2a{letter-spacing:5.434368pt;}
.ls2f{letter-spacing:5.856000pt;}
.ls4a{letter-spacing:6.145600pt;}
.ls2b{letter-spacing:6.377184pt;}
.ls43{letter-spacing:6.500160pt;}
.ls4b{letter-spacing:7.748800pt;}
.ls15{letter-spacing:8.069440pt;}
.ls40{letter-spacing:8.374080pt;}
.ls52{letter-spacing:9.352000pt;}
.ls23{letter-spacing:10.306560pt;}
.ls3e{letter-spacing:10.862880pt;}
.ls29{letter-spacing:13.176000pt;}
.ls50{letter-spacing:16.406080pt;}
.ls51{letter-spacing:16.726720pt;}
.lsa{letter-spacing:19.200000pt;}
.ls37{letter-spacing:50.178240pt;}
.ls34{letter-spacing:50.816640pt;}
.ls3c{letter-spacing:53.029760pt;}
.ls38{letter-spacing:60.094720pt;}
.ls3a{letter-spacing:67.457600pt;}
.ls36{letter-spacing:68.096000pt;}
.ls35{letter-spacing:68.393920pt;}
.ls3b{letter-spacing:74.139520pt;}
.ls39{letter-spacing:104.569920pt;}
.ls3{letter-spacing:143.680000pt;}
.ls2{letter-spacing:383.680000pt;}
.lsf{letter-spacing:779.582720pt;}
.ws1{word-spacing:-18.789120pt;}
.wse{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws5e{word-spacing:-14.815680pt;}
.ws7a{word-spacing:-14.698560pt;}
.ws5d{word-spacing:-14.640000pt;}
.ws35{word-spacing:-14.581440pt;}
.ws79{word-spacing:-14.522880pt;}
.ws15{word-spacing:-13.520320pt;}
.ws16{word-spacing:-13.466880pt;}
.ws14{word-spacing:-13.413440pt;}
.ws96{word-spacing:-13.360000pt;}
.wsef{word-spacing:-13.306560pt;}
.ws11{word-spacing:-13.253120pt;}
.ws13{word-spacing:-13.199680pt;}
.wse4{word-spacing:-13.146240pt;}
.ws12{word-spacing:-12.985920pt;}
.ws34{word-spacing:-12.941760pt;}
.ws5f{word-spacing:-12.824640pt;}
.wse3{word-spacing:-12.766080pt;}
.ws10{word-spacing:-12.144000pt;}
.wsf{word-spacing:-12.000000pt;}
.ws97{word-spacing:-10.810240pt;}
.wsbb{word-spacing:-10.640000pt;}
.ws3{word-spacing:-10.554880pt;}
.ws98{word-spacing:-10.512320pt;}
.ws4a{word-spacing:-0.409920pt;}
.wsbf{word-spacing:-0.374080pt;}
.wsd3{word-spacing:-0.320640pt;}
.ws7{word-spacing:-0.256000pt;}
.ws9d{word-spacing:-0.255360pt;}
.ws4{word-spacing:-0.223680pt;}
.ws94{word-spacing:-0.175680pt;}
.wsa2{word-spacing:-0.170240pt;}
.ws37{word-spacing:-0.160320pt;}
.ws18{word-spacing:-0.144000pt;}
.ws77{word-spacing:-0.117120pt;}
.ws9a{word-spacing:-0.106880pt;}
.ws9e{word-spacing:-0.085120pt;}
.ws6{word-spacing:-0.064000pt;}
.ws72{word-spacing:-0.058560pt;}
.ws1c{word-spacing:-0.053440pt;}
.ws0{word-spacing:0.000000pt;}
.wsf8{word-spacing:0.053440pt;}
.ws1d{word-spacing:0.058560pt;}
.wsb{word-spacing:0.064000pt;}
.ws5{word-spacing:0.074560pt;}
.wsb0{word-spacing:0.085120pt;}
.wsbd{word-spacing:0.106880pt;}
.ws49{word-spacing:0.117120pt;}
.ws17{word-spacing:0.128000pt;}
.wsb1{word-spacing:0.144000pt;}
.ws1a{word-spacing:0.160320pt;}
.wsdd{word-spacing:0.170240pt;}
.ws1b{word-spacing:0.213760pt;}
.ws73{word-spacing:0.234240pt;}
.wsa6{word-spacing:0.255360pt;}
.ws38{word-spacing:0.267200pt;}
.wsa{word-spacing:0.320000pt;}
.wsfb{word-spacing:0.320640pt;}
.ws19{word-spacing:0.336000pt;}
.wsd4{word-spacing:0.340480pt;}
.wsd5{word-spacing:0.383040pt;}
.ws4f{word-spacing:0.527040pt;}
.wsbe{word-spacing:0.534400pt;}
.ws22{word-spacing:0.587840pt;}
.ws75{word-spacing:0.761280pt;}
.wse6{word-spacing:0.878400pt;}
.wsa1{word-spacing:0.893760pt;}
.wseb{word-spacing:0.908480pt;}
.ws8f{word-spacing:1.112640pt;}
.ws43{word-spacing:1.171200pt;}
.ws41{word-spacing:1.288320pt;}
.ws42{word-spacing:1.405440pt;}
.ws36{word-spacing:1.496320pt;}
.ws6a{word-spacing:1.522560pt;}
.wsf0{word-spacing:1.549760pt;}
.ws6c{word-spacing:1.639680pt;}
.ws2b{word-spacing:1.710080pt;}
.ws67{word-spacing:1.756800pt;}
.ws2c{word-spacing:1.763520pt;}
.ws51{word-spacing:1.815360pt;}
.wsec{word-spacing:1.816960pt;}
.ws3e{word-spacing:2.049600pt;}
.wsed{word-spacing:2.084160pt;}
.wsc{word-spacing:2.112000pt;}
.wsf1{word-spacing:2.137600pt;}
.ws3f{word-spacing:2.166720pt;}
.wsf4{word-spacing:2.191040pt;}
.ws91{word-spacing:2.283840pt;}
.wsf5{word-spacing:2.297920pt;}
.ws40{word-spacing:2.400960pt;}
.ws20{word-spacing:2.458240pt;}
.ws6b{word-spacing:2.459520pt;}
.wsda{word-spacing:2.468480pt;}
.wsf6{word-spacing:2.511680pt;}
.ws81{word-spacing:2.693760pt;}
.ws8b{word-spacing:2.752320pt;}
.ws25{word-spacing:2.778880pt;}
.ws8a{word-spacing:2.810880pt;}
.wsea{word-spacing:2.832320pt;}
.wsd1{word-spacing:2.928000pt;}
.wsee{word-spacing:2.992640pt;}
.ws56{word-spacing:3.045120pt;}
.ws26{word-spacing:3.046080pt;}
.wsd2{word-spacing:3.099520pt;}
.ws4c{word-spacing:3.103680pt;}
.wse7{word-spacing:3.152960pt;}
.ws4d{word-spacing:3.337920pt;}
.ws57{word-spacing:3.455040pt;}
.wsf7{word-spacing:3.633920pt;}
.ws5a{word-spacing:3.689280pt;}
.ws1f{word-spacing:3.740800pt;}
.wsd9{word-spacing:3.745280pt;}
.ws7f{word-spacing:3.747840pt;}
.ws2a{word-spacing:3.794240pt;}
.ws1e{word-spacing:3.847680pt;}
.ws83{word-spacing:3.864960pt;}
.ws28{word-spacing:3.954560pt;}
.ws4e{word-spacing:3.982080pt;}
.wsb5{word-spacing:4.040640pt;}
.ws29{word-spacing:4.061440pt;}
.wsb4{word-spacing:4.274880pt;}
.wsa0{word-spacing:4.383680pt;}
.ws7c{word-spacing:4.392000pt;}
.wsbc{word-spacing:4.509120pt;}
.ws3c{word-spacing:4.595840pt;}
.ws7b{word-spacing:4.626240pt;}
.ws4b{word-spacing:4.684800pt;}
.ws30{word-spacing:4.702720pt;}
.ws86{word-spacing:4.919040pt;}
.ws23{word-spacing:5.023360pt;}
.ws6d{word-spacing:5.036160pt;}
.ws74{word-spacing:5.270400pt;}
.wse9{word-spacing:5.290560pt;}
.ws3a{word-spacing:5.344000pt;}
.wsba{word-spacing:5.446080pt;}
.wsa9{word-spacing:5.532800pt;}
.ws6e{word-spacing:5.563200pt;}
.ws32{word-spacing:5.611200pt;}
.wsf3{word-spacing:5.664640pt;}
.wsb2{word-spacing:5.680320pt;}
.wsa3{word-spacing:5.703040pt;}
.wsf2{word-spacing:5.718080pt;}
.ws7e{word-spacing:5.797440pt;}
.ws33{word-spacing:5.878400pt;}
.ws80{word-spacing:5.914560pt;}
.ws78{word-spacing:5.973120pt;}
.wscc{word-spacing:6.000960pt;}
.wse8{word-spacing:6.038720pt;}
.ws53{word-spacing:6.090240pt;}
.ws52{word-spacing:6.207360pt;}
.ws82{word-spacing:6.324480pt;}
.ws76{word-spacing:6.441600pt;}
.ws50{word-spacing:6.558720pt;}
.ws5c{word-spacing:6.617280pt;}
.ws2e{word-spacing:6.626560pt;}
.wsa4{word-spacing:6.639360pt;}
.ws7d{word-spacing:6.851520pt;}
.ws2f{word-spacing:6.893760pt;}
.ws9{word-spacing:6.976000pt;}
.ws24{word-spacing:7.160960pt;}
.ws5b{word-spacing:7.202880pt;}
.ws92{word-spacing:7.261440pt;}
.wsf9{word-spacing:7.267840pt;}
.wsfa{word-spacing:7.321280pt;}
.ws71{word-spacing:7.378560pt;}
.ws93{word-spacing:7.495680pt;}
.ws31{word-spacing:7.588480pt;}
.ws70{word-spacing:7.612800pt;}
.ws60{word-spacing:7.847040pt;}
.ws46{word-spacing:7.905600pt;}
.ws2d{word-spacing:7.909120pt;}
.ws47{word-spacing:8.139840pt;}
.ws6f{word-spacing:8.198400pt;}
.ws65{word-spacing:8.432640pt;}
.ws8e{word-spacing:8.549760pt;}
.wsac{word-spacing:8.554560pt;}
.ws95{word-spacing:8.666880pt;}
.ws8d{word-spacing:8.784000pt;}
.ws3b{word-spacing:8.871040pt;}
.ws9f{word-spacing:8.895040pt;}
.ws3d{word-spacing:9.076800pt;}
.wsfe{word-spacing:9.191680pt;}
.ws84{word-spacing:9.193920pt;}
.wsa8{word-spacing:9.363200pt;}
.ws68{word-spacing:9.428160pt;}
.wsff{word-spacing:9.458880pt;}
.ws54{word-spacing:9.486720pt;}
.wscb{word-spacing:9.661120pt;}
.ws8{word-spacing:9.664000pt;}
.ws66{word-spacing:9.720960pt;}
.ws21{word-spacing:9.726080pt;}
.ws39{word-spacing:9.832960pt;}
.ws85{word-spacing:9.838080pt;}
.ws45{word-spacing:10.072320pt;}
.ws27{word-spacing:10.153600pt;}
.wsce{word-spacing:10.171840pt;}
.ws48{word-spacing:10.365120pt;}
.wse1{word-spacing:10.469760pt;}
.ws8c{word-spacing:10.482240pt;}
.ws62{word-spacing:10.599360pt;}
.ws61{word-spacing:10.716480pt;}
.wsb3{word-spacing:10.775040pt;}
.ws90{word-spacing:11.009280pt;}
.wsc4{word-spacing:11.108160pt;}
.ws58{word-spacing:11.126400pt;}
.ws59{word-spacing:11.360640pt;}
.wsc0{word-spacing:11.448640pt;}
.ws55{word-spacing:11.653440pt;}
.ws88{word-spacing:12.063360pt;}
.ws87{word-spacing:12.297600pt;}
.wsb7{word-spacing:12.414720pt;}
.wsb8{word-spacing:12.648960pt;}
.ws63{word-spacing:13.000320pt;}
.ws64{word-spacing:13.117440pt;}
.wse5{word-spacing:13.351680pt;}
.wsb9{word-spacing:13.585920pt;}
.wsd0{word-spacing:13.878720pt;}
.wscf{word-spacing:14.342720pt;}
.wsd6{word-spacing:15.279040pt;}
.ws44{word-spacing:15.284160pt;}
.wsaa{word-spacing:16.257920pt;}
.wsfd{word-spacing:16.299200pt;}
.wsfc{word-spacing:16.780160pt;}
.wse0{word-spacing:17.832640pt;}
.wsc6{word-spacing:18.173120pt;}
.wsdf{word-spacing:18.471040pt;}
.wscd{word-spacing:18.939200pt;}
.wsb6{word-spacing:19.324800pt;}
.wsdb{word-spacing:19.747840pt;}
.wsd{word-spacing:19.776000pt;}
.wsd8{word-spacing:20.726720pt;}
.wsae{word-spacing:21.024640pt;}
.wsaf{word-spacing:21.365120pt;}
.ws69{word-spacing:21.374400pt;}
.ws89{word-spacing:22.955520pt;}
.wse2{word-spacing:25.536000pt;}
.wsde{word-spacing:27.110720pt;}
.wsc7{word-spacing:33.026560pt;}
.wsc2{word-spacing:33.196800pt;}
.wsdc{word-spacing:37.835840pt;}
.wsab{word-spacing:39.921280pt;}
.wsc9{word-spacing:40.261760pt;}
.wsca{word-spacing:51.795520pt;}
.ws9b{word-spacing:56.221760pt;}
.ws9c{word-spacing:61.031040pt;}
.ws99{word-spacing:61.154464pt;}
.wsd7{word-spacing:65.840320pt;}
.wsa7{word-spacing:73.841600pt;}
.wsc1{word-spacing:80.566080pt;}
.wsa5{word-spacing:95.291840pt;}
.wsc5{word-spacing:97.207040pt;}
.wsc8{word-spacing:101.505600pt;}
.wsad{word-spacing:107.123520pt;}
.wsc3{word-spacing:113.848000pt;}
._1{margin-left:-0.917088pt;}
._2{width:0.999104pt;}
._5{width:1.920000pt;}
._9{width:3.162240pt;}
._7{width:4.625184pt;}
._4{width:6.975264pt;}
._3{width:9.694400pt;}
._13{width:13.234560pt;}
._6{width:19.455264pt;}
._10{width:49.539840pt;}
._b{width:50.797408pt;}
._f{width:68.479040pt;}
._11{width:72.096640pt;}
._a{width:88.312000pt;}
._e{width:89.673920pt;}
._d{width:107.208640pt;}
._c{width:114.954560pt;}
._12{width:124.851808pt;}
._8{width:154.012800pt;}
._0{width:696.000000pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.560000pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y11f{bottom:2.560000pt;}
.y12e{bottom:2.640000pt;}
.y164{bottom:3.040000pt;}
.y12b{bottom:3.920000pt;}
.y128{bottom:8.640000pt;}
.y154{bottom:8.720000pt;}
.yf4{bottom:10.640000pt;}
.y14f{bottom:10.960000pt;}
.y11d{bottom:14.560000pt;}
.y11e{bottom:14.800000pt;}
.y163{bottom:15.280000pt;}
.y136{bottom:16.160000pt;}
.y12a{bottom:16.240000pt;}
.y132{bottom:18.720000pt;}
.y15f{bottom:27.120000pt;}
.y162{bottom:27.520000pt;}
.y13c{bottom:30.960000pt;}
.y6{bottom:31.933340pt;}
.y166{bottom:39.360000pt;}
.yef{bottom:39.520000pt;}
.ybe{bottom:41.440000pt;}
.y124{bottom:43.200000pt;}
.ye5{bottom:43.920000pt;}
.y16c{bottom:51.600000pt;}
.y130{bottom:55.520000pt;}
.ye4{bottom:56.160000pt;}
.y5{bottom:59.133337pt;}
.y146{bottom:63.920000pt;}
.y122{bottom:67.760000pt;}
.ye3{bottom:68.400000pt;}
.y145{bottom:76.160000pt;}
.y8d{bottom:79.328320pt;}
.y121{bottom:80.000000pt;}
.y151{bottom:80.080000pt;}
.ybc{bottom:80.511520pt;}
.ycf{bottom:80.720000pt;}
.y62{bottom:82.301440pt;}
.yee{bottom:84.320000pt;}
.y4{bottom:86.333337pt;}
.y119{bottom:88.054960pt;}
.y144{bottom:88.400000pt;}
.y39{bottom:88.560000pt;}
.y15b{bottom:91.920160pt;}
.ye1{bottom:92.960000pt;}
.y1bb{bottom:93.280000pt;}
.yf2{bottom:94.960000pt;}
.y8c{bottom:96.208240pt;}
.ybb{bottom:97.391440pt;}
.y61{bottom:97.665440pt;}
.y118{bottom:104.934880pt;}
.yd6{bottom:105.200000pt;}
.y38{bottom:106.960000pt;}
.y15a{bottom:108.800080pt;}
.y1ba{bottom:109.200000pt;}
.yf0{bottom:111.600000pt;}
.y60{bottom:112.949280pt;}
.y8b{bottom:113.088160pt;}
.yb5{bottom:113.113440pt;}
.yba{bottom:114.271360pt;}
.y198{bottom:119.132960pt;}
.y117{bottom:121.814800pt;}
.y22{bottom:123.790666pt;}
.yf1{bottom:123.844000pt;}
.y37{bottom:125.360000pt;}
.y159{bottom:125.680000pt;}
.y1b9{bottom:127.600000pt;}
.y5f{bottom:128.313280pt;}
.y8a{bottom:129.968080pt;}
.yb4{bottom:129.993360pt;}
.yb9{bottom:131.151280pt;}
.y197{bottom:134.496960pt;}
.yed{bottom:136.080000pt;}
.y116{bottom:138.694720pt;}
.y5e{bottom:143.597120pt;}
.y1b8{bottom:145.198240pt;}
.y89{bottom:146.848000pt;}
.yb3{bottom:146.873280pt;}
.yb8{bottom:148.353280pt;}
.y196{bottom:149.780800pt;}
.y158{bottom:150.160000pt;}
.ye0{bottom:154.480000pt;}
.y115{bottom:155.574640pt;}
.y5d{bottom:158.961120pt;}
.y1b7{bottom:160.562240pt;}
.y36{bottom:162.000000pt;}
.y88{bottom:163.654720pt;}
.yb2{bottom:163.680000pt;}
.yec{bottom:165.044000pt;}
.y195{bottom:165.144800pt;}
.yb7{bottom:165.555280pt;}
.y150{bottom:169.680000pt;}
.y114{bottom:172.381360pt;}
.y16e{bottom:174.000000pt;}
.y5c{bottom:174.325120pt;}
.y19{bottom:175.052000pt;}
.y1b6{bottom:175.926240pt;}
.yeb{bottom:177.280000pt;}
.y35{bottom:180.400000pt;}
.y194{bottom:180.508800pt;}
.y87{bottom:180.534640pt;}
.yb1{bottom:181.200000pt;}
.yb6{bottom:182.362000pt;}
.y157{bottom:182.640000pt;}
.ye6{bottom:186.080000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y16f{bottom:188.880000pt;}
.y113{bottom:189.261280pt;}
.y5b{bottom:189.608960pt;}
.y1b5{bottom:191.210080pt;}
.y156{bottom:195.520000pt;}
.y193{bottom:195.792640pt;}
.y86{bottom:197.414560pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y34{bottom:198.800000pt;}
.yb0{bottom:199.241920pt;}
.y5a{bottom:204.972960pt;}
.y112{bottom:206.141200pt;}
.yea{bottom:206.244000pt;}
.y1b4{bottom:206.574080pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y192{bottom:211.156640pt;}
.y16b{bottom:211.520000pt;}
.y152{bottom:212.960000pt;}
.y85{bottom:214.294480pt;}
.y155{bottom:214.560000pt;}
.yaf{bottom:216.121840pt;}
.y33{bottom:217.200000pt;}
.ye9{bottom:218.480000pt;}
.y59{bottom:220.336960pt;}
.y1b3{bottom:221.938080pt;}
.y111{bottom:223.021120pt;}
.y16d{bottom:226.320000pt;}
.y191{bottom:226.520640pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y84{bottom:231.174400pt;}
.yae{bottom:233.001760pt;}
.ye2{bottom:235.200000pt;}
.y32{bottom:235.600000pt;}
.y58{bottom:235.620800pt;}
.y1b2{bottom:237.221920pt;}
.y110{bottom:239.901040pt;}
.y153{bottom:241.040000pt;}
.y190{bottom:241.804480pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.ye8{bottom:247.444000pt;}
.y83{bottom:247.981120pt;}
.yad{bottom:249.881680pt;}
.y57{bottom:250.984800pt;}
.y1b1{bottom:252.585920pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y18f{bottom:257.168480pt;}
.ye7{bottom:259.680000pt;}
.y143{bottom:260.080000pt;}
.y10f{bottom:264.701200pt;}
.y82{bottom:264.861040pt;}
.y56{bottom:266.348800pt;}
.yac{bottom:266.761600pt;}
.y1b0{bottom:267.949920pt;}
.y31{bottom:270.000000pt;}
.y18e{bottom:272.532480pt;}
.y169{bottom:273.440000pt;}
.y14a{bottom:274.886880pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yd5{bottom:278.080000pt;}
.y14e{bottom:281.360000pt;}
.y10e{bottom:281.581120pt;}
.y55{bottom:281.632640pt;}
.y81{bottom:281.740960pt;}
.y1af{bottom:283.233760pt;}
.yab{bottom:283.568320pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y149{bottom:287.208000pt;}
.y18d{bottom:287.816320pt;}
.y16a{bottom:288.320000pt;}
.ydf{bottom:288.644000pt;}
.y30{bottom:291.120000pt;}
.y14d{bottom:294.320000pt;}
.y54{bottom:296.996640pt;}
.y10d{bottom:298.461040pt;}
.y1ae{bottom:298.597760pt;}
.y80{bottom:298.620880pt;}
.y148{bottom:299.444000pt;}
.yaa{bottom:300.448240pt;}
.yde{bottom:300.880000pt;}
.y18c{bottom:303.180320pt;}
.y10{bottom:309.452000pt;}
.y165{bottom:310.960000pt;}
.y147{bottom:311.680000pt;}
.y2f{bottom:312.320000pt;}
.y53{bottom:312.360640pt;}
.y14c{bottom:313.360000pt;}
.y1ad{bottom:313.881600pt;}
.y10c{bottom:315.340960pt;}
.y7f{bottom:315.500800pt;}
.ya9{bottom:317.328160pt;}
.y18b{bottom:318.544320pt;}
.y168{bottom:325.758880pt;}
.y52{bottom:327.644480pt;}
.y1ac{bottom:329.245600pt;}
.ydd{bottom:329.844000pt;}
.y10b{bottom:332.220880pt;}
.y7e{bottom:332.380720pt;}
.y2e{bottom:333.440000pt;}
.y18a{bottom:333.828160pt;}
.ya8{bottom:334.208080pt;}
.y167{bottom:338.080000pt;}
.y14b{bottom:339.840000pt;}
.ydc{bottom:342.080000pt;}
.y51{bottom:343.008480pt;}
.yf{bottom:343.809333pt;}
.y1ab{bottom:344.609600pt;}
.yd9{bottom:346.482880pt;}
.y10a{bottom:349.100800pt;}
.y7d{bottom:349.187440pt;}
.y189{bottom:349.192160pt;}
.ya7{bottom:351.088000pt;}
.y2d{bottom:354.640000pt;}
.y50{bottom:358.372480pt;}
.yd8{bottom:358.804000pt;}
.y13a{bottom:358.880000pt;}
.y1aa{bottom:359.893440pt;}
.y161{bottom:360.640000pt;}
.ye{bottom:362.706666pt;}
.y188{bottom:364.476000pt;}
.y109{bottom:365.907520pt;}
.y7c{bottom:366.067360pt;}
.ya6{bottom:367.894720pt;}
.yd7{bottom:371.040000pt;}
.ydb{bottom:371.044000pt;}
.y142{bottom:371.760000pt;}
.y4f{bottom:373.496000pt;}
.y1a9{bottom:375.257440pt;}
.y13d{bottom:377.600000pt;}
.y187{bottom:379.840000pt;}
.y108{bottom:382.787440pt;}
.y7b{bottom:382.947280pt;}
.yda{bottom:383.280000pt;}
.y141{bottom:384.720000pt;}
.ya5{bottom:384.774640pt;}
.y1a8{bottom:390.621440pt;}
.y186{bottom:395.415040pt;}
.y15e{bottom:398.560000pt;}
.y107{bottom:399.667360pt;}
.y7a{bottom:399.827200pt;}
.ya4{bottom:401.654560pt;}
.yce{bottom:401.680000pt;}
.y13f{bottom:403.760000pt;}
.y4e{bottom:404.384320pt;}
.y1a7{bottom:405.905280pt;}
.y2c{bottom:407.600000pt;}
.y140{bottom:407.680000pt;}
.yd4{bottom:412.244000pt;}
.y185{bottom:412.294960pt;}
.y160{bottom:413.360000pt;}
.y106{bottom:416.547280pt;}
.y79{bottom:416.707120pt;}
.ya3{bottom:418.534480pt;}
.y4d{bottom:419.668160pt;}
.y1a6{bottom:421.269280pt;}
.yd3{bottom:424.480000pt;}
.y2b{bottom:426.482800pt;}
.y13b{bottom:426.640000pt;}
.y184{bottom:429.496960pt;}
.y13e{bottom:430.240000pt;}
.y105{bottom:433.427200pt;}
.y78{bottom:433.513840pt;}
.y4c{bottom:435.032160pt;}
.ya2{bottom:435.414400pt;}
.y1a5{bottom:436.633280pt;}
.y183{bottom:446.698960pt;}
.yd{bottom:446.990669pt;}
.y15d{bottom:447.116160pt;}
.y2a{bottom:447.918800pt;}
.y12f{bottom:449.280000pt;}
.y4b{bottom:450.155680pt;}
.y77{bottom:450.393760pt;}
.y1a4{bottom:451.917120pt;}
.ya1{bottom:452.294320pt;}
.yd2{bottom:453.444000pt;}
.y133{bottom:455.680000pt;}
.yd1{bottom:457.844000pt;}
.y104{bottom:458.227360pt;}
.y139{bottom:462.160000pt;}
.y15c{bottom:462.400000pt;}
.yc{bottom:462.990669pt;}
.y182{bottom:463.505680pt;}
.y4a{bottom:465.680000pt;}
.y76{bottom:467.273680pt;}
.y1a3{bottom:467.281120pt;}
.ya0{bottom:469.101040pt;}
.y29{bottom:469.448000pt;}
.yd0{bottom:470.080000pt;}
.y103{bottom:475.107280pt;}
.y138{bottom:475.120000pt;}
.yb{bottom:478.990666pt;}
.y131{bottom:480.240000pt;}
.y181{bottom:480.385600pt;}
.y49{bottom:481.266640pt;}
.y1a2{bottom:482.645120pt;}
.y75{bottom:484.153600pt;}
.y9f{bottom:485.980960pt;}
.y28{bottom:490.884000pt;}
.y102{bottom:491.987200pt;}
.y135{bottom:494.160000pt;}
.ycd{bottom:494.644000pt;}
.ya{bottom:494.990666pt;}
.y180{bottom:497.265520pt;}
.y1a1{bottom:497.928960pt;}
.y137{bottom:498.080000pt;}
.y48{bottom:498.146560pt;}
.y74{bottom:501.033520pt;}
.y9e{bottom:502.860880pt;}
.ycc{bottom:506.880000pt;}
.y101{bottom:508.867120pt;}
.y27{bottom:512.320000pt;}
.y1a0{bottom:513.292960pt;}
.y17f{bottom:514.145440pt;}
.y47{bottom:514.953280pt;}
.y73{bottom:517.840240pt;}
.y9d{bottom:519.740800pt;}
.y134{bottom:520.640000pt;}
.y100{bottom:525.747040pt;}
.y19f{bottom:528.656960pt;}
.y17e{bottom:531.025360pt;}
.y46{bottom:531.760000pt;}
.y26{bottom:533.040000pt;}
.y72{bottom:534.720160pt;}
.ycb{bottom:535.844000pt;}
.y9c{bottom:536.620720pt;}
.y120{bottom:539.680000pt;}
.yff{bottom:542.553760pt;}
.y19e{bottom:543.940800pt;}
.y17d{bottom:547.832080pt;}
.yca{bottom:548.080000pt;}
.y45{bottom:548.455120pt;}
.y71{bottom:551.600080pt;}
.y12d{bottom:552.560000pt;}
.y9b{bottom:553.427440pt;}
.y126{bottom:558.404000pt;}
.y19d{bottom:559.304800pt;}
.yfe{bottom:559.433680pt;}
.y44{bottom:563.819120pt;}
.y17c{bottom:564.712000pt;}
.y12c{bottom:565.520000pt;}
.y70{bottom:568.480000pt;}
.y25{bottom:569.666800pt;}
.y9a{bottom:570.307360pt;}
.y125{bottom:570.640000pt;}
.y9{bottom:573.786667pt;}
.y19c{bottom:574.668800pt;}
.yfd{bottom:576.313600pt;}
.yc9{bottom:577.044000pt;}
.y43{bottom:579.102960pt;}
.y17b{bottom:581.591920pt;}
.y129{bottom:584.480000pt;}
.y6f{bottom:584.960000pt;}
.y99{bottom:587.187280pt;}
.yc8{bottom:589.280000pt;}
.y19b{bottom:589.952640pt;}
.y8{bottom:592.685334pt;}
.yfc{bottom:593.193520pt;}
.yc5{bottom:593.686880pt;}
.y123{bottom:595.200000pt;}
.y17a{bottom:598.471840pt;}
.y6e{bottom:600.720000pt;}
.y42{bottom:602.456240pt;}
.y98{bottom:604.067200pt;}
.y19a{bottom:605.316640pt;}
.yc4{bottom:606.008000pt;}
.y24{bottom:609.836000pt;}
.yfb{bottom:610.073440pt;}
.y127{bottom:611.040000pt;}
.y179{bottom:615.351760pt;}
.y6d{bottom:618.160000pt;}
.yc3{bottom:618.244000pt;}
.yc7{bottom:618.254640pt;}
.y199{bottom:620.600480pt;}
.y97{bottom:620.947120pt;}
.y41{bottom:625.822880pt;}
.yfa{bottom:626.953360pt;}
.y11c{bottom:630.080000pt;}
.yc2{bottom:630.480000pt;}
.yc6{bottom:630.490640pt;}
.y178{bottom:632.231680pt;}
.y6c{bottom:635.964480pt;}
.y96{bottom:637.753840pt;}
.yf9{bottom:643.760080pt;}
.y23{bottom:644.320000pt;}
.y7{bottom:645.598667pt;}
.ybd{bottom:648.880000pt;}
.y177{bottom:649.038400pt;}
.y40{bottom:649.109360pt;}
.y6b{bottom:651.328480pt;}
.y95{bottom:654.633760pt;}
.yf8{bottom:660.640000pt;}
.y3f{bottom:664.473360pt;}
.y176{bottom:665.918320pt;}
.y11b{bottom:666.316000pt;}
.y6a{bottom:666.612320pt;}
.y3{bottom:668.977329pt;}
.y94{bottom:671.513680pt;}
.y11a{bottom:681.680000pt;}
.y69{bottom:681.976320pt;}
.y175{bottom:682.798240pt;}
.yf7{bottom:685.120000pt;}
.y3e{bottom:687.840000pt;}
.y93{bottom:688.393600pt;}
.y68{bottom:697.340320pt;}
.yc0{bottom:698.960000pt;}
.y174{bottom:699.678160pt;}
.y92{bottom:705.273520pt;}
.y3d{bottom:710.960000pt;}
.y67{bottom:712.624160pt;}
.y173{bottom:716.484880pt;}
.ybf{bottom:721.440000pt;}
.y91{bottom:722.153440pt;}
.y3c{bottom:724.796000pt;}
.y66{bottom:727.988160pt;}
.yc1{bottom:729.120000pt;}
.y172{bottom:733.438000pt;}
.yf6{bottom:734.724000pt;}
.y3b{bottom:738.560000pt;}
.y90{bottom:738.960160pt;}
.y65{bottom:743.352160pt;}
.yf5{bottom:746.960000pt;}
.y171{bottom:750.640000pt;}
.y8f{bottom:755.840080pt;}
.y64{bottom:758.636000pt;}
.yf3{bottom:765.280000pt;}
.y3a{bottom:771.520000pt;}
.y8e{bottom:772.720000pt;}
.y63{bottom:774.000000pt;}
.y170{bottom:775.360000pt;}
.y2{bottom:781.661334pt;}
.y1{bottom:859.312000pt;}
.h24{height:12.240000pt;}
.h23{height:12.318667pt;}
.h27{height:12.320000pt;}
.h22{height:18.318667pt;}
.h20{height:18.320000pt;}
.h2c{height:18.400000pt;}
.h1c{height:20.321333pt;}
.h2a{height:20.640000pt;}
.h1d{height:24.480000pt;}
.h26{height:25.840000pt;}
.h29{height:25.841333pt;}
.h21{height:25.920000pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h30{height:36.798667pt;}
.h2d{height:36.800000pt;}
.h2e{height:37.200000pt;}
.h7{height:40.853333pt;}
.h16{height:41.060625pt;}
.h18{height:41.770312pt;}
.h3{height:42.840000pt;}
.h1e{height:42.892500pt;}
.h6{height:42.896000pt;}
.h11{height:47.109375pt;}
.h2{height:49.024000pt;}
.h2f{height:49.040000pt;}
.h12{height:52.448437pt;}
.h14{height:53.857500pt;}
.h13{height:57.473437pt;}
.hd{height:59.017500pt;}
.h31{height:61.278667pt;}
.he{height:62.781250pt;}
.h10{height:62.812500pt;}
.h15{height:62.954580pt;}
.hf{height:64.500000pt;}
.h1b{height:69.438667pt;}
.h5{height:69.450667pt;}
.hc{height:75.142500pt;}
.h25{height:89.680000pt;}
.h1f{height:89.681333pt;}
.h2b{height:89.760000pt;}
.h19{height:90.714312pt;}
.h28{height:98.081333pt;}
.h4{height:105.826671pt;}
.h17{height:113.360000pt;}
.h1a{height:122.880000pt;}
.ha{height:861.840000pt;}
.hb{height:862.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wb{width:25.200000pt;}
.w7{width:25.360000pt;}
.we{width:28.320000pt;}
.w8{width:29.520000pt;}
.w9{width:29.600000pt;}
.wa{width:29.680000pt;}
.wc{width:33.918667pt;}
.wd{width:36.078667pt;}
.w16{width:38.400000pt;}
.w18{width:41.280000pt;}
.w19{width:45.920000pt;}
.w13{width:46.320000pt;}
.w17{width:50.560000pt;}
.w6{width:51.280000pt;}
.w1a{width:51.920000pt;}
.w11{width:60.401333pt;}
.w15{width:62.480000pt;}
.w12{width:65.200000pt;}
.wf{width:83.280000pt;}
.w5{width:117.840000pt;}
.w14{width:138.480000pt;}
.w10{width:181.360000pt;}
.w2{width:566.928019pt;}
.w3{width:597.280000pt;}
.w4{width:597.333333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:6.880000pt;}
.x3e{left:8.480000pt;}
.x40{left:10.400000pt;}
.x3c{left:12.080000pt;}
.x32{left:13.680000pt;}
.x35{left:14.720000pt;}
.x39{left:17.680000pt;}
.x41{left:20.400000pt;}
.x16{left:24.960000pt;}
.x3f{left:26.320000pt;}
.x1a{left:37.520000pt;}
.xc{left:75.600000pt;}
.x9{left:78.800000pt;}
.x10{left:82.161360pt;}
.xe{left:83.924000pt;}
.xa{left:86.554240pt;}
.x42{left:88.960000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x6{left:118.566800pt;}
.x13{left:125.674880pt;}
.xf{left:141.600000pt;}
.x15{left:144.638080pt;}
.x2c{left:162.960000pt;}
.x12{left:168.640640pt;}
.x30{left:169.760000pt;}
.x4{left:180.874667pt;}
.x17{left:194.400000pt;}
.x25{left:201.276400pt;}
.x5{left:203.600000pt;}
.x31{left:221.280000pt;}
.xd{left:230.880000pt;}
.x33{left:236.960000pt;}
.x18{left:246.320000pt;}
.x7{left:247.294640pt;}
.xb{left:248.312160pt;}
.x14{left:252.554800pt;}
.x19{left:272.320000pt;}
.x26{left:279.203760pt;}
.x34{left:284.480000pt;}
.x11{left:289.521920pt;}
.x8{left:298.640000pt;}
.x1b{left:302.560000pt;}
.x29{left:309.371760pt;}
.x36{left:323.520000pt;}
.x1c{left:332.880000pt;}
.x37{left:334.000000pt;}
.x2d{left:345.040000pt;}
.x1d{left:357.840000pt;}
.x1e{left:363.200000pt;}
.x38{left:374.720000pt;}
.x1f{left:389.040000pt;}
.x3{left:404.408000pt;}
.x2e{left:406.160000pt;}
.x20{left:415.040000pt;}
.x3a{left:416.640000pt;}
.x2b{left:421.942960pt;}
.x21{left:440.000000pt;}
.x22{left:449.600000pt;}
.x27{left:456.508720pt;}
.x3b{left:463.200000pt;}
.x2f{left:472.000000pt;}
.x23{left:474.560000pt;}
.x3d{left:482.080000pt;}
.x24{left:486.320000pt;}
.x28{left:493.227360pt;}
}




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