
    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_11047deb0f992f3df36f26c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941000;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_43609aaa58203862c4a10d71.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.476000;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_cc72526b0071d1b162b0d854.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941000;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_7325425d81428095f730c082.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722000;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_5737239d10ac5444f0596824.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_c41b3bf7aa6c14a8b6b5c7ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.502000;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_6d8834cc6f56e2d30ff7f1dc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910000;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_79dd122b4f9017dad7cf32a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2959d7861bb4b4c312522d50.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921000;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_cce0b9e82b0067886a29b484.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_204c7436a8d3900322b59146.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5652ac4c9f82c0f90be037d8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_743ae89e989a174fa36004b0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.722000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281284,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:7.824000px;}
.ls6{letter-spacing:-0.009564px;}
.lsb{letter-spacing:-0.003600px;}
.lsd{letter-spacing:-0.003000px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.003000px;}
.lse{letter-spacing:0.006000px;}
.lsf{letter-spacing:0.028693px;}
.lsa{letter-spacing:0.087870px;}
.ls9{letter-spacing:0.092054px;}
.ls11{letter-spacing:0.100425px;}
.ls2{letter-spacing:0.102216px;}
.ls0{letter-spacing:0.118355px;}
.ls8{letter-spacing:0.156014px;}
.ls3{letter-spacing:0.157788px;}
.ls14{letter-spacing:0.167371px;}
.ls1{letter-spacing:0.294059px;}
.ls15{letter-spacing:10.812180px;}
.ls18{letter-spacing:11.151106px;}
.ls13{letter-spacing:11.494217px;}
.ls12{letter-spacing:11.833144px;}
.ls7{letter-spacing:13.029827px;}
.ls17{letter-spacing:14.896037px;}
.ls16{letter-spacing:15.573890px;}
.ls10{letter-spacing:15.661443px;}
.ls4{letter-spacing:15.954972px;}
.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;}
}
.ws7c{word-spacing:-0.059776px;}
.ws5{word-spacing:-0.053798px;}
.ws7b{word-spacing:-0.047821px;}
.ws70{word-spacing:-0.041843px;}
.ws6e{word-spacing:-0.038854px;}
.ws24{word-spacing:-0.035861px;}
.ws101{word-spacing:-0.009000px;}
.ws100{word-spacing:-0.007200px;}
.ws102{word-spacing:-0.006000px;}
.wsff{word-spacing:-0.003600px;}
.ws7d{word-spacing:0.000000px;}
.ws11c{word-spacing:9.653134px;}
.wsf2{word-spacing:9.996245px;}
.ws144{word-spacing:10.197090px;}
.wsf1{word-spacing:10.280776px;}
.ws13e{word-spacing:10.431410px;}
.ws125{word-spacing:10.577860px;}
.ws13d{word-spacing:10.669914px;}
.wsf7{word-spacing:10.699204px;}
.wsf6{word-spacing:10.866575px;}
.ws15d{word-spacing:11.109263px;}
.ws134{word-spacing:11.188765px;}
.wse0{word-spacing:11.223000px;}
.ws13c{word-spacing:11.238976px;}
.ws15b{word-spacing:11.423084px;}
.ws12b{word-spacing:11.427269px;}
.ws12c{word-spacing:11.452374px;}
.ws15c{word-spacing:11.523507px;}
.wsfb{word-spacing:11.682510px;}
.ws12a{word-spacing:11.732721px;}
.ws129{word-spacing:11.791301px;}
.ws11b{word-spacing:12.013068px;}
.ws11a{word-spacing:12.130228px;}
.wsef{word-spacing:12.322705px;}
.ws76{word-spacing:12.495511px;}
.ws75{word-spacing:12.502061px;}
.ws6d{word-spacing:12.511052px;}
.ws6b{word-spacing:12.594065px;}
.ws3d{word-spacing:12.604825px;}
.ws77{word-spacing:12.635386px;}
.ws105{word-spacing:12.637103px;}
.wsb6{word-spacing:12.701661px;}
.wsb5{word-spacing:12.707040px;}
.wsed{word-spacing:12.720211px;}
.ws13f{word-spacing:12.745317px;}
.ws78{word-spacing:12.895709px;}
.wsee{word-spacing:12.916872px;}
.ws5a{word-spacing:13.019068px;}
.ws151{word-spacing:13.021479px;}
.ws69{word-spacing:13.266537px;}
.ws67{word-spacing:13.304196px;}
.ws66{word-spacing:13.341854px;}
.ws68{word-spacing:13.390272px;}
.ws156{word-spacing:13.398065px;}
.wse6{word-spacing:13.439907px;}
.ws106{word-spacing:13.557046px;}
.ws11d{word-spacing:13.598910px;}
.ws122{word-spacing:13.603094px;}
.ws103{word-spacing:13.605464px;}
.ws13b{word-spacing:13.628200px;}
.ws145{word-spacing:13.653306px;}
.ws107{word-spacing:13.653882px;}
.wsfd{word-spacing:13.657490px;}
.ws150{word-spacing:13.661674px;}
.ws19{word-spacing:13.675401px;}
.ws104{word-spacing:13.686160px;}
.wsb4{word-spacing:13.702300px;}
.ws155{word-spacing:13.736991px;}
.ws160{word-spacing:13.745360px;}
.ws153{word-spacing:13.766281px;}
.wse9{word-spacing:13.795571px;}
.ws131{word-spacing:13.799755px;}
.ws121{word-spacing:13.816493px;}
.ws6f{word-spacing:13.849967px;}
.ws11f{word-spacing:13.879257px;}
.ws140{word-spacing:13.887625px;}
.ws157{word-spacing:13.900178px;}
.ws123{word-spacing:13.933652px;}
.ws12e{word-spacing:13.954574px;}
.wsea{word-spacing:13.967127px;}
.ws15f{word-spacing:14.004785px;}
.wsf8{word-spacing:14.034075px;}
.wsfa{word-spacing:14.172156px;}
.ws3e{word-spacing:14.277936px;}
.wsf9{word-spacing:14.607321px;}
.ws14d{word-spacing:14.649164px;}
.wsbe{word-spacing:14.702939px;}
.wse3{word-spacing:14.703560px;}
.wse2{word-spacing:14.737034px;}
.wsbf{word-spacing:14.832053px;}
.ws3c{word-spacing:14.901991px;}
.ws80{word-spacing:14.977308px;}
.wsbd{word-spacing:15.004206px;}
.wsa4{word-spacing:15.031105px;}
.ws14c{word-spacing:15.105251px;}
.ws13a{word-spacing:15.142909px;}
.ws14b{word-spacing:15.222411px;}
.ws95{word-spacing:15.262436px;}
.ws126{word-spacing:15.307566px;}
.ws50{word-spacing:15.353892px;}
.ws11e{word-spacing:15.398426px;}
.ws97{word-spacing:15.450728px;}
.ws143{word-spacing:15.452546px;}
.ws7a{word-spacing:15.455812px;}
.wscb{word-spacing:15.488387px;}
.ws79{word-spacing:15.489287px;}
.ws124{word-spacing:15.517979px;}
.ws120{word-spacing:15.537108px;}
.ws142{word-spacing:15.540416px;}
.ws112{word-spacing:15.628261px;}
.ws141{word-spacing:15.686866px;}
.ws15e{word-spacing:15.703603px;}
.ws127{word-spacing:15.776214px;}
.ws161{word-spacing:16.004871px;}
.ws12d{word-spacing:16.197348px;}
.wsd3{word-spacing:16.316873px;}
.ws139{word-spacing:16.389825px;}
.ws132{word-spacing:16.419115px;}
.ws40{word-spacing:16.494405px;}
.wsf0{word-spacing:16.502800px;}
.ws81{word-spacing:16.515925px;}
.ws14f{word-spacing:16.645066px;}
.ws1a{word-spacing:16.688078px;}
.ws96{word-spacing:16.763394px;}
.ws1b{word-spacing:16.784914px;}
.wsfc{word-spacing:16.808253px;}
.ws65{word-spacing:16.940927px;}
.ws138{word-spacing:16.979808px;}
.ws12f{word-spacing:17.050941px;}
.ws162{word-spacing:17.197391px;}
.ws152{word-spacing:17.251786px;}
.ws51{word-spacing:17.279853px;}
.ws137{word-spacing:17.377315px;}
.ws111{word-spacing:17.564982px;}
.wsa8{word-spacing:17.570361px;}
.ws74{word-spacing:17.629539px;}
.ws43{word-spacing:17.645678px;}
.wse{word-spacing:17.656438px;}
.wsc0{word-spacing:17.667198px;}
.ws1c{word-spacing:17.688717px;}
.ws7f{word-spacing:17.699476px;}
.ws73{word-spacing:17.704856px;}
.ws90{word-spacing:17.710236px;}
.ws119{word-spacing:17.720995px;}
.wscc{word-spacing:17.742514px;}
.ws9a{word-spacing:17.764034px;}
.ws61{word-spacing:17.785553px;}
.wsc2{word-spacing:17.807072px;}
.ws9f{word-spacing:17.882389px;}
.ws21{word-spacing:17.995364px;}
.wsdf{word-spacing:18.000744px;}
.ws3a{word-spacing:18.086820px;}
.wsb2{word-spacing:18.092200px;}
.wsa6{word-spacing:18.145998px;}
.wsbb{word-spacing:18.242834px;}
.wsa5{word-spacing:18.248214px;}
.ws92{word-spacing:18.285872px;}
.ws2e{word-spacing:18.398848px;}
.wsa{word-spacing:18.484924px;}
.ws2f{word-spacing:18.544102px;}
.wseb{word-spacing:18.557282px;}
.ws91{word-spacing:18.581760px;}
.ws154{word-spacing:18.594940px;}
.ws30{word-spacing:18.635558px;}
.ws37{word-spacing:18.727014px;}
.ws1{word-spacing:18.829230px;}
.wse5{word-spacing:18.933867px;}
.wsec{word-spacing:18.975710px;}
.wse4{word-spacing:19.021737px;}
.wsd{word-spacing:19.060561px;}
.wsd4{word-spacing:19.065940px;}
.ws38{word-spacing:19.087459px;}
.wsba{word-spacing:19.098219px;}
.wsb9{word-spacing:19.200435px;}
.wscf{word-spacing:19.216574px;}
.wsf4{word-spacing:19.272794px;}
.ws6c{word-spacing:19.474804px;}
.wsf5{word-spacing:19.569878px;}
.ws34{word-spacing:19.749172px;}
.wsd9{word-spacing:19.802970px;}
.wse8{word-spacing:19.825119px;}
.ws94{word-spacing:19.856768px;}
.ws29{word-spacing:19.894426px;}
.wsd8{word-spacing:20.098858px;}
.ws52{word-spacing:20.201074px;}
.ws55{word-spacing:20.529240px;}
.ws10f{word-spacing:20.674495px;}
.ws128{word-spacing:20.908847px;}
.wsc1{word-spacing:20.938104px;}
.ws8c{word-spacing:21.110257px;}
.ws130{word-spacing:21.185010px;}
.ws14a{word-spacing:21.281248px;}
.ws98{word-spacing:21.293169px;}
.ws8{word-spacing:21.368486px;}
.ws10a{word-spacing:21.373866px;}
.ws87{word-spacing:21.546019px;}
.ws86{word-spacing:21.562158px;}
.wsd0{word-spacing:21.653615px;}
.ws10c{word-spacing:21.852666px;}
.wse7{word-spacing:22.013497px;}
.ws10d{word-spacing:22.030199px;}
.ws88{word-spacing:22.110896px;}
.ws110{word-spacing:22.121655px;}
.wsc4{word-spacing:22.229251px;}
.ws109{word-spacing:22.358366px;}
.ws83{word-spacing:22.595076px;}
.ws117{word-spacing:22.648874px;}
.ws108{word-spacing:22.686532px;}
.ws116{word-spacing:22.907103px;}
.ws8d{word-spacing:22.955521px;}
.ws6a{word-spacing:23.020079px;}
.ws158{word-spacing:23.109778px;}
.wsc{word-spacing:23.310587px;}
.wsdc{word-spacing:23.315967px;}
.ws8e{word-spacing:23.418182px;}
.ws82{word-spacing:23.697931px;}
.wsd5{word-spacing:23.767868px;}
.wsd6{word-spacing:24.074515px;}
.ws3f{word-spacing:24.128313px;}
.ws118{word-spacing:24.305846px;}
.ws13{word-spacing:24.429581px;}
.ws5d{word-spacing:24.467239px;}
.ws12{word-spacing:24.494138px;}
.ws15{word-spacing:24.617873px;}
.ws14e{word-spacing:25.360921px;}
.ws136{word-spacing:25.381842px;}
.wsa3{word-spacing:25.392562px;}
.ws113{word-spacing:25.521676px;}
.ws35{word-spacing:25.860602px;}
.ws36{word-spacing:25.892881px;}
.wsdd{word-spacing:25.898261px;}
.wsac{word-spacing:25.909020px;}
.wsd7{word-spacing:25.952059px;}
.ws85{word-spacing:25.995097px;}
.wsf{word-spacing:26.065034px;}
.ws64{word-spacing:26.118832px;}
.wsae{word-spacing:26.188769px;}
.ws149{word-spacing:26.201961px;}
.ws11{word-spacing:26.237187px;}
.ws10{word-spacing:26.312504px;}
.wsad{word-spacing:26.344783px;}
.ws148{word-spacing:26.381885px;}
.ws32{word-spacing:26.436239px;}
.wsf3{word-spacing:26.545072px;}
.ws63{word-spacing:26.554594px;}
.wsb1{word-spacing:26.613772px;}
.wsc9{word-spacing:26.662190px;}
.wsca{word-spacing:26.699848px;}
.ws59{word-spacing:26.828963px;}
.ws84{word-spacing:26.855862px;}
.ws18{word-spacing:26.893520px;}
.ws17{word-spacing:26.990356px;}
.ws16{word-spacing:27.124851px;}
.wscd{word-spacing:27.167889px;}
.ws56{word-spacing:27.506815px;}
.wsb8{word-spacing:27.582132px;}
.wsb0{word-spacing:27.689728px;}
.ws115{word-spacing:27.883400px;}
.wsc8{word-spacing:27.931818px;}
.ws9e{word-spacing:27.953337px;}
.ws25{word-spacing:27.980236px;}
.ws49{word-spacing:28.066312px;}
.wsb{word-spacing:28.071692px;}
.ws22{word-spacing:28.120110px;}
.ws23{word-spacing:28.141629px;}
.ws93{word-spacing:28.184667px;}
.ws9b{word-spacing:28.749544px;}
.ws8a{word-spacing:28.797962px;}
.ws5f{word-spacing:28.835621px;}
.ws4f{word-spacing:29.093850px;}
.wsc6{word-spacing:29.276763px;}
.ws2a{word-spacing:29.319801px;}
.ws5e{word-spacing:29.335940px;}
.wsd2{word-spacing:29.352080px;}
.wsc7{word-spacing:29.373599px;}
.ws9d{word-spacing:29.427397px;}
.ws9{word-spacing:29.664107px;}
.ws9c{word-spacing:29.728664px;}
.ws27{word-spacing:29.760943px;}
.wsa2{word-spacing:29.814741px;}
.wsa1{word-spacing:29.954615px;}
.wsa0{word-spacing:30.110629px;}
.ws89{word-spacing:30.121388px;}
.ws7{word-spacing:30.218224px;}
.ws133{word-spacing:30.532691px;}
.ws6{word-spacing:30.557150px;}
.ws31{word-spacing:30.605568px;}
.wsb7{word-spacing:30.675506px;}
.ws4{word-spacing:30.810000px;}
.ws71{word-spacing:31.007072px;}
.ws72{word-spacing:31.121842px;}
.ws3b{word-spacing:31.213484px;}
.wsdb{word-spacing:31.751462px;}
.wsda{word-spacing:31.998931px;}
.ws4b{word-spacing:32.128046px;}
.wsce{word-spacing:32.278680px;}
.ws146{word-spacing:32.306826px;}
.wsb3{word-spacing:32.386276px;}
.wsa7{word-spacing:32.440073px;}
.ws135{word-spacing:32.921915px;}
.ws14{word-spacing:33.177103px;}
.ws62{word-spacing:33.747360px;}
.wsaf{word-spacing:34.086286px;}
.ws5c{word-spacing:34.274578px;}
.ws5b{word-spacing:34.468250px;}
.ws47{word-spacing:34.565086px;}
.ws41{word-spacing:34.812556px;}
.ws4e{word-spacing:35.011608px;}
.ws99{word-spacing:36.690100px;}
.ws8f{word-spacing:36.985988px;}
.ws33{word-spacing:37.292635px;}
.ws4c{word-spacing:37.701498px;}
.ws3{word-spacing:37.723017px;}
.ws48{word-spacing:37.873651px;}
.ws8b{word-spacing:38.008146px;}
.ws2{word-spacing:38.078083px;}
.ws4d{word-spacing:38.131881px;}
.ws28{word-spacing:40.617339px;}
.ws2b{word-spacing:41.472724px;}
.ws7e{word-spacing:41.617978px;}
.ws2c{word-spacing:41.671776px;}
.ws2d{word-spacing:41.822410px;}
.ws4a{word-spacing:42.392666px;}
.wsaa{word-spacing:42.979062px;}
.ws0{word-spacing:43.151215px;}
.wsa9{word-spacing:43.269571px;}
.wsc5{word-spacing:43.904385px;}
.ws53{word-spacing:44.275589px;}
.ws54{word-spacing:44.442363px;}
.ws42{word-spacing:45.222431px;}
.wsab{word-spacing:45.394584px;}
.ws10b{word-spacing:45.577496px;}
.ws60{word-spacing:45.771168px;}
.wsd1{word-spacing:46.970859px;}
.ws20{word-spacing:47.401242px;}
.ws1f{word-spacing:47.578774px;}
.ws159{word-spacing:47.813768px;}
.ws15a{word-spacing:47.910006px;}
.wsc3{word-spacing:51.742724px;}
.ws114{word-spacing:54.012991px;}
.ws46{word-spacing:55.912054px;}
.ws58{word-spacing:56.229461px;}
.ws44{word-spacing:56.256359px;}
.ws45{word-spacing:56.299398px;}
.ws57{word-spacing:56.337056px;}
.wsbc{word-spacing:61.071263px;}
.ws147{word-spacing:65.839646px;}
.ws1e{word-spacing:66.596297px;}
.ws39{word-spacing:66.693133px;}
.ws1d{word-spacing:67.037439px;}
.ws26{word-spacing:67.516239px;}
.wsde{word-spacing:71.276705px;}
.ws10e{word-spacing:72.675448px;}
.wse1{word-spacing:165.992400px;}
.wsfe{word-spacing:950.962819px;}
._1e{margin-left:-1.004245px;}
._11{width:1.280390px;}
._1f{width:10.171985px;}
._1c{width:11.536060px;}
._12{width:13.584357px;}
._6{width:14.772876px;}
._e{width:16.429848px;}
._a{width:17.796312px;}
._3{width:19.679235px;}
._9{width:21.244751px;}
._1{width:22.455202px;}
._15{width:23.461221px;}
._4{width:25.580854px;}
._13{width:26.608392px;}
._5{width:28.007135px;}
._b{width:29.190686px;}
._2{width:30.853038px;}
._7{width:31.993552px;}
._14{width:33.661283px;}
._10{width:35.027748px;}
._0{width:36.657821px;}
._8{width:38.406249px;}
._d{width:39.433787px;}
._c{width:43.694573px;}
._16{width:45.335406px;}
._f{width:47.153772px;}
._17{width:48.154411px;}
._21{width:49.170225px;}
._1d{width:55.105087px;}
._20{width:67.124220px;}
._18{width:72.449497px;}
._1b{width:152.424000px;}
._1a{width:206.881200px;}
._19{width:384.735600px;}
._22{width:951.010640px;}
.fcc{color:rgb(70,69,70);}
.fca{color:rgb(21,35,137);}
.fc7{color:rgb(21,82,137);}
.fc6{color:rgb(60,110,40);}
.fc4{color:rgb(37,35,90);}
.fc9{color:rgb(207,37,123);}
.fc5{color:rgb(103,54,48);}
.fc3{color:rgb(29,29,27);}
.fc8{color:rgb(51,90,48);}
.fc2{color:rgb(17,97,165);}
.fc1{color:rgb(50,126,177);}
.fcb{color:rgb(23,23,23);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:27.891000px;}
.fsa{font-size:30.000000px;}
.fs7{font-size:32.876400px;}
.fs1{font-size:35.860800px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.256000px;}
.fs2{font-size:38.854200px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.821200px;}
.fs0{font-size:53.797800px;}
.fs8{font-size:59.775600px;}
.fs4{font-size:95.641800px;}
.y0{bottom:0.000000px;}
.ye5{bottom:0.084300px;}
.y74{bottom:40.648800px;}
.y93{bottom:117.782817px;}
.yd9{bottom:118.035391px;}
.y92{bottom:134.195181px;}
.yd8{bottom:134.532486px;}
.y91{bottom:150.692276px;}
.yd7{bottom:150.944850px;}
.yd5{bottom:150.945691px;}
.yd6{bottom:156.897600px;}
.y90{bottom:167.104640px;}
.yd4{bottom:167.358055px;}
.y73{bottom:177.903441px;}
.y8f{bottom:183.517004px;}
.yd3{bottom:183.855150px;}
.yd1{bottom:183.860843px;}
.yd2{bottom:189.807750px;}
.y72{bottom:190.573795px;}
.y8e{bottom:199.929368px;}
.yd0{bottom:200.273207px;}
.y71{bottom:203.244150px;}
.y70{bottom:216.000000px;}
.y8d{bottom:216.426463px;}
.ycf{bottom:216.685571px;}
.y8c{bottom:232.838827px;}
.yce{bottom:233.182666px;}
.y8b{bottom:249.251191px;}
.ycd{bottom:249.595030px;}
.y8a{bottom:265.748286px;}
.ycc{bottom:266.007394px;}
.y67{bottom:267.195368px;}
.y33{bottom:267.619086px;}
.y89{bottom:282.160650px;}
.y87{bottom:282.162554px;}
.ycb{bottom:282.419758px;}
.y66{bottom:283.692463px;}
.y32{bottom:284.031450px;}
.y30{bottom:284.032345px;}
.y88{bottom:288.113250px;}
.y31{bottom:289.984200px;}
.y86{bottom:298.574918px;}
.yca{bottom:298.916853px;}
.y65{bottom:300.104827px;}
.y2f{bottom:300.444709px;}
.y85{bottom:315.072013px;}
.yc9{bottom:315.329217px;}
.y64{bottom:316.517191px;}
.y2e{bottom:316.941804px;}
.y84{bottom:331.484377px;}
.yc8{bottom:331.741581px;}
.y63{bottom:333.014286px;}
.y2d{bottom:333.354168px;}
.y142{bottom:339.989633px;}
.y164{bottom:342.281315px;}
.y83{bottom:347.896741px;}
.yc7{bottom:348.238676px;}
.y62{bottom:349.426650px;}
.y60{bottom:349.429731px;}
.y2c{bottom:349.766532px;}
.y141{bottom:353.425356px;}
.y61{bottom:355.379400px;}
.y163{bottom:355.718084px;}
.y82{bottom:364.393836px;}
.yc6{bottom:364.651040px;}
.y5f{bottom:365.842095px;}
.y2b{bottom:366.264972px;}
.y140{bottom:366.862125px;}
.y162{bottom:369.154853px;}
.y13f{bottom:380.383626px;}
.y81{bottom:380.806200px;}
.y7f{bottom:380.809131px;}
.yc5{bottom:381.063404px;}
.y5e{bottom:382.339190px;}
.y161{bottom:382.590576px;}
.y2a{bottom:382.677336px;}
.y80{bottom:386.758950px;}
.y13e{bottom:393.819349px;}
.y160{bottom:396.027346px;}
.y7e{bottom:397.221495px;}
.yc4{bottom:397.560499px;}
.y5d{bottom:398.751554px;}
.y29{bottom:399.089700px;}
.y13d{bottom:407.255072px;}
.y15f{bottom:409.464115px;}
.y7d{bottom:413.633859px;}
.yc3{bottom:413.972863px;}
.y5c{bottom:415.163918px;}
.y27{bottom:415.589540px;}
.y13c{bottom:420.690795px;}
.y28{bottom:421.540050px;}
.y15e{bottom:422.985616px;}
.y7c{bottom:430.130954px;}
.yc2{bottom:430.385227px;}
.y5b{bottom:431.661013px;}
.y26{bottom:432.001904px;}
.y13b{bottom:434.126519px;}
.y15d{bottom:436.422385px;}
.y7b{bottom:446.543318px;}
.yc1{bottom:446.882322px;}
.y13a{bottom:447.562242px;}
.y5a{bottom:448.073377px;}
.y25{bottom:448.414268px;}
.y15c{bottom:449.858108px;}
.y139{bottom:461.083742px;}
.y7a{bottom:462.955682px;}
.yc0{bottom:463.294686px;}
.y15b{bottom:463.294877px;}
.y59{bottom:464.485741px;}
.y24{bottom:464.826632px;}
.y138{bottom:474.520512px;}
.y15a{bottom:476.730600px;}
.y79{bottom:479.452777px;}
.ybf{bottom:479.707050px;}
.ybd{bottom:479.709327px;}
.y58{bottom:480.898105px;}
.y23{bottom:481.323727px;}
.ybe{bottom:485.659800px;}
.y137{bottom:487.957281px;}
.y159{bottom:490.168673px;}
.y78{bottom:495.865141px;}
.ybc{bottom:496.121691px;}
.y57{bottom:497.395200px;}
.y55{bottom:497.396227px;}
.y22{bottom:497.736091px;}
.y136{bottom:501.393004px;}
.y56{bottom:503.347950px;}
.y158{bottom:503.604396px;}
.y77{bottom:512.277505px;}
.ybb{bottom:512.618786px;}
.y54{bottom:513.808591px;}
.y21{bottom:514.148455px;}
.y135{bottom:514.828727px;}
.y157{bottom:517.125897px;}
.y134{bottom:528.264450px;}
.y76{bottom:528.774600px;}
.yba{bottom:529.031150px;}
.y53{bottom:530.220955px;}
.y156{bottom:530.561620px;}
.y20{bottom:530.645550px;}
.y1e{bottom:530.647099px;}
.y1f{bottom:536.598300px;}
.y155{bottom:543.997343px;}
.yb9{bottom:545.443514px;}
.y52{bottom:546.718050px;}
.y50{bottom:546.722716px;}
.y1d{bottom:547.059463px;}
.y51{bottom:552.670800px;}
.y154{bottom:557.434112px;}
.y133{bottom:558.198614px;}
.yb8{bottom:561.940609px;}
.y4f{bottom:563.135080px;}
.y1c{bottom:563.471827px;}
.y10a{bottom:566.364567px;}
.y153{bottom:570.869835px;}
.y132{bottom:574.610850px;}
.yb7{bottom:578.352973px;}
.y4e{bottom:579.547444px;}
.y109{bottom:579.800290px;}
.y1b{bottom:579.968922px;}
.y152{bottom:584.306604px;}
.y108{bottom:593.236013px;}
.yb6{bottom:594.765337px;}
.y4d{bottom:596.044539px;}
.y1a{bottom:596.381286px;}
.y151{bottom:597.828105px;}
.y131{bottom:605.224899px;}
.y107{bottom:606.757514px;}
.yb5{bottom:611.263777px;}
.y150{bottom:611.263828px;}
.y4c{bottom:612.456903px;}
.y19{bottom:612.793650px;}
.y17{bottom:612.796917px;}
.y130{bottom:618.746400px;}
.y18{bottom:618.831450px;}
.y106{bottom:620.193237px;}
.y14f{bottom:624.700597px;}
.yb4{bottom:627.676141px;}
.y4b{bottom:628.869267px;}
.y16{bottom:629.294012px;}
.y12f{bottom:632.182500px;}
.y105{bottom:633.628960px;}
.y14e{bottom:638.136320px;}
.yb3{bottom:644.088505px;}
.y4a{bottom:645.281631px;}
.y15{bottom:645.706376px;}
.y104{bottom:647.065729px;}
.y14d{bottom:651.573089px;}
.y103{bottom:660.501452px;}
.yb2{bottom:660.585600px;}
.yb0{bottom:660.588362px;}
.y49{bottom:661.778726px;}
.y14{bottom:662.118740px;}
.y12e{bottom:662.796750px;}
.y14c{bottom:665.009859px;}
.yb1{bottom:666.538500px;}
.y102{bottom:673.937176px;}
.yaf{bottom:677.000726px;}
.y48{bottom:678.191090px;}
.y14b{bottom:678.445582px;}
.y13{bottom:678.531104px;}
.y12d{bottom:680.740050px;}
.y101{bottom:687.458676px;}
.y14a{bottom:691.967083px;}
.yae{bottom:693.413090px;}
.y47{bottom:694.603454px;}
.y12{bottom:695.028199px;}
.y100{bottom:700.895445px;}
.y149{bottom:705.402806px;}
.yad{bottom:709.825454px;}
.y46{bottom:711.100549px;}
.y12c{bottom:711.354677px;}
.y11{bottom:711.440563px;}
.yff{bottom:714.332215px;}
.y148{bottom:718.839575px;}
.y12b{bottom:724.790400px;}
.yac{bottom:726.322549px;}
.y45{bottom:727.512913px;}
.yfe{bottom:727.767938px;}
.y10{bottom:727.852927px;}
.y147{bottom:732.275298px;}
.y12a{bottom:738.226650px;}
.yfd{bottom:741.203661px;}
.yab{bottom:742.734913px;}
.y44{bottom:743.925277px;}
.yf{bottom:744.350022px;}
.y146{bottom:745.711021px;}
.yfc{bottom:754.639384px;}
.yaa{bottom:759.147277px;}
.y145{bottom:759.147790px;}
.y43{bottom:760.422372px;}
.ye{bottom:760.762386px;}
.yfb{bottom:768.075107px;}
.y129{bottom:771.136800px;}
.y144{bottom:772.669291px;}
.ya9{bottom:775.644372px;}
.y42{bottom:776.834736px;}
.yd{bottom:777.174750px;}
.yb{bottom:777.177867px;}
.yfa{bottom:781.596608px;}
.yc{bottom:783.212400px;}
.y128{bottom:784.573050px;}
.y143{bottom:786.106060px;}
.ya8{bottom:792.056736px;}
.y41{bottom:793.247100px;}
.y3f{bottom:793.247791px;}
.ya{bottom:793.674962px;}
.yf9{bottom:795.032331px;}
.y40{bottom:799.284900px;}
.ya7{bottom:808.469100px;}
.ya5{bottom:808.482012px;}
.y3e{bottom:809.744886px;}
.y9{bottom:810.087326px;}
.y127{bottom:812.977054px;}
.ya6{bottom:814.506900px;}
.ya4{bottom:824.979107px;}
.y3d{bottom:826.157250px;}
.y3b{bottom:826.161295px;}
.y126{bottom:826.412777px;}
.y8{bottom:826.499690px;}
.y3c{bottom:832.110150px;}
.yf1{bottom:838.885950px;}
.y125{bottom:839.848500px;}
.ya3{bottom:841.391471px;}
.y3a{bottom:842.573659px;}
.y7{bottom:842.996785px;}
.y124{bottom:844.525800px;}
.y123{bottom:853.284900px;}
.ya2{bottom:857.803835px;}
.ye4{bottom:858.610500px;}
.ye6{bottom:858.694800px;}
.y39{bottom:858.986023px;}
.y6{bottom:859.409149px;}
.yf3{bottom:860.620500px;}
.yf4{bottom:860.704800px;}
.ya1{bottom:874.216199px;}
.y38{bottom:875.484463px;}
.y5{bottom:875.821513px;}
.yf6{bottom:887.211150px;}
.yee{bottom:887.211900px;}
.ya0{bottom:890.713294px;}
.y37{bottom:891.896827px;}
.y4{bottom:892.233877px;}
.y6b{bottom:895.294177px;}
.yf5{bottom:896.211150px;}
.yed{bottom:896.211900px;}
.yf8{bottom:901.677150px;}
.y116{bottom:907.118253px;}
.y122{bottom:907.122288px;}
.y9f{bottom:907.125658px;}
.yf2{bottom:907.182300px;}
.y6a{bottom:908.049954px;}
.y36{bottom:908.309191px;}
.y3{bottom:908.730972px;}
.yf7{bottom:910.677150px;}
.y69{bottom:920.721000px;}
.ydc{bottom:922.424850px;}
.y115{bottom:923.530617px;}
.y121{bottom:923.534652px;}
.y9e{bottom:923.538022px;}
.y35{bottom:924.806286px;}
.y2{bottom:925.143336px;}
.y114{bottom:940.027712px;}
.y120{bottom:940.031747px;}
.y9d{bottom:940.035117px;}
.y34{bottom:941.218650px;}
.y1{bottom:941.555700px;}
.y68{bottom:944.617200px;}
.ye0{bottom:944.885850px;}
.ye3{bottom:949.724850px;}
.ydf{bottom:953.885850px;}
.y113{bottom:956.440076px;}
.y11f{bottom:956.444111px;}
.y9c{bottom:956.447481px;}
.yde{bottom:962.885850px;}
.ydd{bottom:971.885850px;}
.y112{bottom:972.852440px;}
.y11e{bottom:972.856475px;}
.y9b{bottom:972.859845px;}
.ye7{bottom:979.773900px;}
.y6e{bottom:989.007600px;}
.y111{bottom:989.349535px;}
.y11d{bottom:989.353570px;}
.y9a{bottom:989.356940px;}
.y6f{bottom:995.045400px;}
.ydb{bottom:1002.002850px;}
.y110{bottom:1005.761899px;}
.y11c{bottom:1005.765934px;}
.y99{bottom:1005.769304px;}
.yea{bottom:1017.076650px;}
.y10f{bottom:1022.174263px;}
.y11b{bottom:1022.178298px;}
.y98{bottom:1022.181668px;}
.y6d{bottom:1025.830804px;}
.ye8{bottom:1032.401400px;}
.ye1{bottom:1032.404100px;}
.yef{bottom:1032.404850px;}
.yeb{bottom:1032.792900px;}
.y10e{bottom:1038.671358px;}
.y11a{bottom:1038.675393px;}
.y97{bottom:1038.678763px;}
.y6c{bottom:1054.147950px;}
.y10d{bottom:1055.083722px;}
.y119{bottom:1055.087757px;}
.y96{bottom:1055.091127px;}
.y10c{bottom:1071.496086px;}
.y118{bottom:1071.500121px;}
.y95{bottom:1071.503491px;}
.ye9{bottom:1074.686400px;}
.yec{bottom:1074.687900px;}
.ye2{bottom:1074.689100px;}
.yf0{bottom:1074.689850px;}
.y10b{bottom:1087.908450px;}
.y117{bottom:1087.912485px;}
.y94{bottom:1087.915855px;}
.yda{bottom:1090.139100px;}
.y75{bottom:1139.612400px;}
.hf{height:5.451000px;}
.hd{height:5.452500px;}
.h10{height:20.388321px;}
.hb{height:21.840000px;}
.he{height:21.870000px;}
.hc{height:21.897000px;}
.h3{height:26.214245px;}
.ha{height:26.244000px;}
.h7{height:27.965136px;}
.h4{height:28.402420px;}
.h5{height:30.587087px;}
.h8{height:34.957297px;}
.h2{height:39.326192px;}
.h9{height:43.695964px;}
.h6{height:69.722872px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w2{width:24.957000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:9.108150px;}
.x18{left:63.779550px;}
.x35{left:68.128050px;}
.x4f{left:69.136950px;}
.x2f{left:70.213800px;}
.x37{left:77.797500px;}
.x38{left:78.984450px;}
.x20{left:81.722461px;}
.x3f{left:85.646850px;}
.x40{left:88.782600px;}
.x34{left:92.878050px;}
.x43{left:94.879500px;}
.x22{left:114.462900px;}
.x19{left:117.184200px;}
.x4b{left:124.581450px;}
.x23{left:125.858250px;}
.x3c{left:127.203750px;}
.x4a{left:131.878950px;}
.x44{left:151.626300px;}
.x3b{left:153.603750px;}
.x3a{left:165.671250px;}
.x36{left:168.522300px;}
.x1a{left:172.713829px;}
.x3d{left:190.278750px;}
.x21{left:202.393650px;}
.x45{left:205.566300px;}
.x1b{left:212.598300px;}
.x1{left:215.659800px;}
.x1c{left:218.211000px;}
.x4{left:233.602033px;}
.x2{left:249.420450px;}
.x42{left:253.753350px;}
.x3{left:260.815650px;}
.x41{left:277.498350px;}
.x1f{left:314.730600px;}
.x46{left:316.162200px;}
.x47{left:319.708200px;}
.x32{left:333.763050px;}
.x30{left:335.225550px;}
.x31{left:338.765550px;}
.x33{left:361.265550px;}
.x3e{left:378.800100px;}
.x1d{left:383.187300px;}
.x1e{left:390.755700px;}
.x7{left:399.089700px;}
.x49{left:404.195700px;}
.x48{left:406.273200px;}
.x5{left:411.335400px;}
.x8{left:420.009300px;}
.x6{left:421.114800px;}
.x24{left:455.387259px;}
.x9{left:458.106900px;}
.x50{left:460.741623px;}
.x25{left:473.330171px;}
.x51{left:476.983952px;}
.xa{left:483.108600px;}
.xb{left:493.398300px;}
.x2d{left:497.055000px;}
.x28{left:500.711700px;}
.x2e{left:514.743150px;}
.xc{left:531.325749px;}
.xd{left:549.268660px;}
.x12{left:559.814100px;}
.xe{left:568.062900px;}
.x13{left:576.481800px;}
.xf{left:577.842300px;}
.x10{left:594.084900px;}
.x11{left:619.341600px;}
.x4d{left:632.267550px;}
.x4e{left:636.604500px;}
.x14{left:643.917900px;}
.x26{left:647.404500px;}
.x27{left:665.177700px;}
.x15{left:683.036100px;}
.x29{left:721.048650px;}
.x16{left:723.514800px;}
.x17{left:741.288000px;}
.x2a{left:753.533700px;}
.x2b{left:766.459650px;}
.x4c{left:770.626650px;}
.x2c{left:779.980800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:6.954667pt;}
.ls6{letter-spacing:-0.008501pt;}
.lsb{letter-spacing:-0.003200pt;}
.lsd{letter-spacing:-0.002667pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.002667pt;}
.lse{letter-spacing:0.005333pt;}
.lsf{letter-spacing:0.025505pt;}
.lsa{letter-spacing:0.078107pt;}
.ls9{letter-spacing:0.081826pt;}
.ls11{letter-spacing:0.089266pt;}
.ls2{letter-spacing:0.090859pt;}
.ls0{letter-spacing:0.105205pt;}
.ls8{letter-spacing:0.138679pt;}
.ls3{letter-spacing:0.140256pt;}
.ls14{letter-spacing:0.148774pt;}
.ls1{letter-spacing:0.261385pt;}
.ls15{letter-spacing:9.610826pt;}
.ls18{letter-spacing:9.912094pt;}
.ls13{letter-spacing:10.217082pt;}
.ls12{letter-spacing:10.518350pt;}
.ls7{letter-spacing:11.582069pt;}
.ls17{letter-spacing:13.240922pt;}
.ls16{letter-spacing:13.843458pt;}
.ls10{letter-spacing:13.921283pt;}
.ls4{letter-spacing:14.182197pt;}
.ws7c{word-spacing:-0.053134pt;}
.ws5{word-spacing:-0.047820pt;}
.ws7b{word-spacing:-0.042508pt;}
.ws70{word-spacing:-0.037194pt;}
.ws6e{word-spacing:-0.034537pt;}
.ws24{word-spacing:-0.031876pt;}
.ws101{word-spacing:-0.008000pt;}
.ws100{word-spacing:-0.006400pt;}
.ws102{word-spacing:-0.005333pt;}
.wsff{word-spacing:-0.003200pt;}
.ws7d{word-spacing:0.000000pt;}
.ws11c{word-spacing:8.580564pt;}
.wsf2{word-spacing:8.885551pt;}
.ws144{word-spacing:9.064080pt;}
.wsf1{word-spacing:9.138468pt;}
.ws13e{word-spacing:9.272364pt;}
.ws125{word-spacing:9.402542pt;}
.ws13d{word-spacing:9.484368pt;}
.wsf7{word-spacing:9.510404pt;}
.wsf6{word-spacing:9.659178pt;}
.ws15d{word-spacing:9.874901pt;}
.ws134{word-spacing:9.945569pt;}
.wse0{word-spacing:9.976000pt;}
.ws13c{word-spacing:9.990201pt;}
.ws15b{word-spacing:10.153853pt;}
.ws12b{word-spacing:10.157572pt;}
.ws12c{word-spacing:10.179888pt;}
.ws15c{word-spacing:10.243117pt;}
.wsfb{word-spacing:10.384453pt;}
.ws12a{word-spacing:10.429085pt;}
.ws129{word-spacing:10.481156pt;}
.ws11b{word-spacing:10.678283pt;}
.ws11a{word-spacing:10.782425pt;}
.wsef{word-spacing:10.953515pt;}
.ws76{word-spacing:11.107121pt;}
.ws75{word-spacing:11.112943pt;}
.ws6d{word-spacing:11.120935pt;}
.ws6b{word-spacing:11.194724pt;}
.ws3d{word-spacing:11.204288pt;}
.ws77{word-spacing:11.231454pt;}
.ws105{word-spacing:11.232981pt;}
.wsb6{word-spacing:11.290365pt;}
.wsb5{word-spacing:11.295147pt;}
.wsed{word-spacing:11.306854pt;}
.ws13f{word-spacing:11.329171pt;}
.ws78{word-spacing:11.462852pt;}
.wsee{word-spacing:11.481664pt;}
.ws5a{word-spacing:11.572505pt;}
.ws151{word-spacing:11.574648pt;}
.ws69{word-spacing:11.792478pt;}
.ws67{word-spacing:11.825952pt;}
.ws66{word-spacing:11.859426pt;}
.ws68{word-spacing:11.902464pt;}
.ws156{word-spacing:11.909391pt;}
.wse6{word-spacing:11.946584pt;}
.ws106{word-spacing:12.050707pt;}
.ws11d{word-spacing:12.087920pt;}
.ws122{word-spacing:12.091639pt;}
.ws103{word-spacing:12.093745pt;}
.ws13b{word-spacing:12.113956pt;}
.ws145{word-spacing:12.136272pt;}
.ws107{word-spacing:12.136784pt;}
.wsfd{word-spacing:12.139991pt;}
.ws150{word-spacing:12.143710pt;}
.ws19{word-spacing:12.155912pt;}
.ws104{word-spacing:12.165476pt;}
.wsb4{word-spacing:12.179822pt;}
.ws155{word-spacing:12.210659pt;}
.ws160{word-spacing:12.218098pt;}
.ws153{word-spacing:12.236694pt;}
.wse9{word-spacing:12.262730pt;}
.ws131{word-spacing:12.266449pt;}
.ws121{word-spacing:12.281327pt;}
.ws6f{word-spacing:12.311082pt;}
.ws11f{word-spacing:12.337117pt;}
.ws140{word-spacing:12.344556pt;}
.ws157{word-spacing:12.355714pt;}
.ws123{word-spacing:12.385469pt;}
.ws12e{word-spacing:12.404066pt;}
.wsea{word-spacing:12.415224pt;}
.ws15f{word-spacing:12.448698pt;}
.wsf8{word-spacing:12.474733pt;}
.wsfa{word-spacing:12.597472pt;}
.ws3e{word-spacing:12.691499pt;}
.wsf9{word-spacing:12.984286pt;}
.ws14d{word-spacing:13.021479pt;}
.wsbe{word-spacing:13.069279pt;}
.wse3{word-spacing:13.069831pt;}
.wse2{word-spacing:13.099586pt;}
.wsbf{word-spacing:13.184048pt;}
.ws3c{word-spacing:13.246214pt;}
.ws80{word-spacing:13.313162pt;}
.wsbd{word-spacing:13.337072pt;}
.wsa4{word-spacing:13.360983pt;}
.ws14c{word-spacing:13.426890pt;}
.ws13a{word-spacing:13.460364pt;}
.ws14b{word-spacing:13.531032pt;}
.ws95{word-spacing:13.566610pt;}
.ws126{word-spacing:13.606725pt;}
.ws50{word-spacing:13.647904pt;}
.ws11e{word-spacing:13.687490pt;}
.ws97{word-spacing:13.733981pt;}
.ws143{word-spacing:13.735596pt;}
.ws7a{word-spacing:13.738499pt;}
.wscb{word-spacing:13.767455pt;}
.ws79{word-spacing:13.768255pt;}
.ws124{word-spacing:13.793759pt;}
.ws120{word-spacing:13.810763pt;}
.ws142{word-spacing:13.813703pt;}
.ws112{word-spacing:13.891787pt;}
.ws141{word-spacing:13.943881pt;}
.ws15e{word-spacing:13.958758pt;}
.ws127{word-spacing:14.023301pt;}
.ws161{word-spacing:14.226552pt;}
.ws12d{word-spacing:14.397643pt;}
.wsd3{word-spacing:14.503887pt;}
.ws139{word-spacing:14.568733pt;}
.ws132{word-spacing:14.594769pt;}
.ws40{word-spacing:14.661694pt;}
.wsf0{word-spacing:14.669156pt;}
.ws81{word-spacing:14.680822pt;}
.ws14f{word-spacing:14.795614pt;}
.ws1a{word-spacing:14.833847pt;}
.ws96{word-spacing:14.900795pt;}
.ws1b{word-spacing:14.919923pt;}
.wsfc{word-spacing:14.940669pt;}
.ws65{word-spacing:15.058602pt;}
.ws138{word-spacing:15.093163pt;}
.ws12f{word-spacing:15.156392pt;}
.ws162{word-spacing:15.286570pt;}
.ws152{word-spacing:15.334921pt;}
.ws51{word-spacing:15.359870pt;}
.ws137{word-spacing:15.446502pt;}
.ws111{word-spacing:15.613317pt;}
.wsa8{word-spacing:15.618099pt;}
.ws74{word-spacing:15.670701pt;}
.ws43{word-spacing:15.685047pt;}
.wse{word-spacing:15.694612pt;}
.wsc0{word-spacing:15.704176pt;}
.ws1c{word-spacing:15.723304pt;}
.ws7f{word-spacing:15.732868pt;}
.ws73{word-spacing:15.737650pt;}
.ws90{word-spacing:15.742432pt;}
.ws119{word-spacing:15.751996pt;}
.wscc{word-spacing:15.771124pt;}
.ws9a{word-spacing:15.790252pt;}
.ws61{word-spacing:15.809380pt;}
.wsc2{word-spacing:15.828508pt;}
.ws9f{word-spacing:15.895457pt;}
.ws21{word-spacing:15.995879pt;}
.wsdf{word-spacing:16.000661pt;}
.ws3a{word-spacing:16.077174pt;}
.wsb2{word-spacing:16.081956pt;}
.wsa6{word-spacing:16.129776pt;}
.wsbb{word-spacing:16.215852pt;}
.wsa5{word-spacing:16.220634pt;}
.ws92{word-spacing:16.254109pt;}
.ws2e{word-spacing:16.354531pt;}
.wsa{word-spacing:16.431044pt;}
.ws2f{word-spacing:16.483646pt;}
.wseb{word-spacing:16.495362pt;}
.ws91{word-spacing:16.517120pt;}
.ws154{word-spacing:16.528836pt;}
.ws30{word-spacing:16.564940pt;}
.ws37{word-spacing:16.646235pt;}
.ws1{word-spacing:16.737093pt;}
.wse5{word-spacing:16.830104pt;}
.wsec{word-spacing:16.867298pt;}
.wse4{word-spacing:16.908211pt;}
.wsd{word-spacing:16.942720pt;}
.wsd4{word-spacing:16.947503pt;}
.ws38{word-spacing:16.966631pt;}
.wsba{word-spacing:16.976195pt;}
.wsb9{word-spacing:17.067053pt;}
.wscf{word-spacing:17.081399pt;}
.wsf4{word-spacing:17.131372pt;}
.ws6c{word-spacing:17.310937pt;}
.wsf5{word-spacing:17.395447pt;}
.ws34{word-spacing:17.554820pt;}
.wsd9{word-spacing:17.602640pt;}
.wse8{word-spacing:17.622328pt;}
.ws94{word-spacing:17.650460pt;}
.ws29{word-spacing:17.683935pt;}
.wsd8{word-spacing:17.865652pt;}
.ws52{word-spacing:17.956510pt;}
.ws55{word-spacing:18.248214pt;}
.ws10f{word-spacing:18.377328pt;}
.ws128{word-spacing:18.585642pt;}
.wsc1{word-spacing:18.611648pt;}
.ws8c{word-spacing:18.764673pt;}
.ws130{word-spacing:18.831120pt;}
.ws14a{word-spacing:18.916665pt;}
.ws98{word-spacing:18.927262pt;}
.ws8{word-spacing:18.994210pt;}
.ws10a{word-spacing:18.998992pt;}
.ws87{word-spacing:19.152017pt;}
.ws86{word-spacing:19.166363pt;}
.wsd0{word-spacing:19.247657pt;}
.ws10c{word-spacing:19.424592pt;}
.wse7{word-spacing:19.567553pt;}
.ws10d{word-spacing:19.582399pt;}
.ws88{word-spacing:19.654130pt;}
.ws110{word-spacing:19.663694pt;}
.wsc4{word-spacing:19.759334pt;}
.ws109{word-spacing:19.874103pt;}
.ws83{word-spacing:20.084512pt;}
.ws117{word-spacing:20.132332pt;}
.ws108{word-spacing:20.165806pt;}
.ws116{word-spacing:20.361870pt;}
.ws8d{word-spacing:20.404908pt;}
.ws6a{word-spacing:20.462292pt;}
.ws158{word-spacing:20.542025pt;}
.wsc{word-spacing:20.720522pt;}
.wsdc{word-spacing:20.725304pt;}
.ws8e{word-spacing:20.816162pt;}
.ws82{word-spacing:21.064827pt;}
.wsd5{word-spacing:21.126994pt;}
.wsd6{word-spacing:21.399569pt;}
.ws3f{word-spacing:21.447390pt;}
.ws118{word-spacing:21.605196pt;}
.ws13{word-spacing:21.715183pt;}
.ws5d{word-spacing:21.748657pt;}
.ws12{word-spacing:21.772567pt;}
.ws15{word-spacing:21.882554pt;}
.ws14e{word-spacing:22.543041pt;}
.ws136{word-spacing:22.561638pt;}
.wsa3{word-spacing:22.571166pt;}
.ws113{word-spacing:22.685935pt;}
.ws35{word-spacing:22.987202pt;}
.ws36{word-spacing:23.015894pt;}
.wsdd{word-spacing:23.020676pt;}
.wsac{word-spacing:23.030240pt;}
.wsd7{word-spacing:23.068497pt;}
.ws85{word-spacing:23.106753pt;}
.wsf{word-spacing:23.168919pt;}
.ws64{word-spacing:23.216739pt;}
.wsae{word-spacing:23.278906pt;}
.ws149{word-spacing:23.290632pt;}
.ws11{word-spacing:23.321944pt;}
.ws10{word-spacing:23.388892pt;}
.wsad{word-spacing:23.417585pt;}
.ws148{word-spacing:23.450565pt;}
.ws32{word-spacing:23.498879pt;}
.wsf3{word-spacing:23.595620pt;}
.ws63{word-spacing:23.604084pt;}
.wsb1{word-spacing:23.656686pt;}
.wsc9{word-spacing:23.699724pt;}
.wsca{word-spacing:23.733198pt;}
.ws59{word-spacing:23.847967pt;}
.ws84{word-spacing:23.871877pt;}
.ws18{word-spacing:23.905351pt;}
.ws17{word-spacing:23.991428pt;}
.ws16{word-spacing:24.110978pt;}
.wscd{word-spacing:24.149235pt;}
.ws56{word-spacing:24.450502pt;}
.wsb8{word-spacing:24.517451pt;}
.wsb0{word-spacing:24.613091pt;}
.ws115{word-spacing:24.785244pt;}
.wsc8{word-spacing:24.828282pt;}
.ws9e{word-spacing:24.847411pt;}
.ws25{word-spacing:24.871321pt;}
.ws49{word-spacing:24.947833pt;}
.wsb{word-spacing:24.952615pt;}
.ws22{word-spacing:24.995653pt;}
.ws23{word-spacing:25.014781pt;}
.ws93{word-spacing:25.053038pt;}
.ws9b{word-spacing:25.555151pt;}
.ws8a{word-spacing:25.598189pt;}
.ws5f{word-spacing:25.631663pt;}
.ws4f{word-spacing:25.861200pt;}
.wsc6{word-spacing:26.023789pt;}
.ws2a{word-spacing:26.062045pt;}
.ws5e{word-spacing:26.076391pt;}
.wsd2{word-spacing:26.090737pt;}
.wsc7{word-spacing:26.109866pt;}
.ws9d{word-spacing:26.157686pt;}
.ws9{word-spacing:26.368095pt;}
.ws9c{word-spacing:26.425479pt;}
.ws27{word-spacing:26.454172pt;}
.wsa2{word-spacing:26.501992pt;}
.wsa1{word-spacing:26.626324pt;}
.wsa0{word-spacing:26.765003pt;}
.ws89{word-spacing:26.774567pt;}
.ws7{word-spacing:26.860644pt;}
.ws133{word-spacing:27.140170pt;}
.ws6{word-spacing:27.161911pt;}
.ws31{word-spacing:27.204950pt;}
.wsb7{word-spacing:27.267116pt;}
.ws4{word-spacing:27.386667pt;}
.ws71{word-spacing:27.561841pt;}
.ws72{word-spacing:27.663859pt;}
.ws3b{word-spacing:27.745319pt;}
.wsdb{word-spacing:28.223521pt;}
.wsda{word-spacing:28.443495pt;}
.ws4b{word-spacing:28.558263pt;}
.wsce{word-spacing:28.692160pt;}
.ws146{word-spacing:28.717179pt;}
.wsb3{word-spacing:28.787801pt;}
.wsa7{word-spacing:28.835621pt;}
.ws135{word-spacing:29.263924pt;}
.ws14{word-spacing:29.490758pt;}
.ws62{word-spacing:29.997653pt;}
.wsaf{word-spacing:30.298921pt;}
.ws5c{word-spacing:30.466292pt;}
.ws5b{word-spacing:30.638445pt;}
.ws47{word-spacing:30.724521pt;}
.ws41{word-spacing:30.944495pt;}
.ws4e{word-spacing:31.121430pt;}
.ws99{word-spacing:32.613422pt;}
.ws8f{word-spacing:32.876433pt;}
.ws33{word-spacing:33.149009pt;}
.ws4c{word-spacing:33.512443pt;}
.ws3{word-spacing:33.531571pt;}
.ws48{word-spacing:33.665468pt;}
.ws8b{word-spacing:33.785018pt;}
.ws2{word-spacing:33.847185pt;}
.ws4d{word-spacing:33.895005pt;}
.ws28{word-spacing:36.104301pt;}
.ws2b{word-spacing:36.864644pt;}
.ws7e{word-spacing:36.993758pt;}
.ws2c{word-spacing:37.041579pt;}
.ws2d{word-spacing:37.175475pt;}
.ws4a{word-spacing:37.682370pt;}
.wsaa{word-spacing:38.203611pt;}
.ws0{word-spacing:38.356636pt;}
.wsa9{word-spacing:38.461840pt;}
.wsc5{word-spacing:39.026120pt;}
.ws53{word-spacing:39.356079pt;}
.ws54{word-spacing:39.504322pt;}
.ws42{word-spacing:40.197716pt;}
.wsab{word-spacing:40.350741pt;}
.ws10b{word-spacing:40.513330pt;}
.ws60{word-spacing:40.685483pt;}
.wsd1{word-spacing:41.751875pt;}
.ws20{word-spacing:42.134437pt;}
.ws1f{word-spacing:42.292244pt;}
.ws159{word-spacing:42.501127pt;}
.ws15a{word-spacing:42.586672pt;}
.wsc3{word-spacing:45.993532pt;}
.ws114{word-spacing:48.011548pt;}
.ws46{word-spacing:49.699603pt;}
.ws58{word-spacing:49.981743pt;}
.ws44{word-spacing:50.005653pt;}
.ws45{word-spacing:50.043909pt;}
.ws57{word-spacing:50.077383pt;}
.wsbc{word-spacing:54.285567pt;}
.ws147{word-spacing:58.524130pt;}
.ws1e{word-spacing:59.196708pt;}
.ws39{word-spacing:59.282785pt;}
.ws1d{word-spacing:59.588834pt;}
.ws26{word-spacing:60.014435pt;}
.wsde{word-spacing:63.357071pt;}
.ws10e{word-spacing:64.600398pt;}
.wse1{word-spacing:147.548800pt;}
.wsfe{word-spacing:845.300284pt;}
._1e{margin-left:-0.892662pt;}
._11{width:1.138124pt;}
._1f{width:9.041764pt;}
._1c{width:10.254276pt;}
._12{width:12.074984pt;}
._6{width:13.131445pt;}
._e{width:14.604309pt;}
._a{width:15.818944pt;}
._3{width:17.492654pt;}
._9{width:18.884223pt;}
._1{width:19.960179pt;}
._15{width:20.854418pt;}
._4{width:22.738537pt;}
._13{width:23.651904pt;}
._5{width:24.895231pt;}
._b{width:25.947277pt;}
._2{width:27.424923pt;}
._7{width:28.438713pt;}
._14{width:29.921141pt;}
._10{width:31.135776pt;}
._0{width:32.584730pt;}
._8{width:34.138888pt;}
._d{width:35.052255pt;}
._c{width:38.839621pt;}
._16{width:40.298139pt;}
._f{width:41.914464pt;}
._17{width:42.803921pt;}
._21{width:43.706867pt;}
._1d{width:48.982299pt;}
._20{width:59.665973pt;}
._18{width:64.399553pt;}
._1b{width:135.488000pt;}
._1a{width:183.894400pt;}
._19{width:341.987200pt;}
._22{width:845.342791pt;}
.fsb{font-size:24.792000pt;}
.fsa{font-size:26.666667pt;}
.fs7{font-size:29.223467pt;}
.fs1{font-size:31.876267pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.005333pt;}
.fs2{font-size:34.537067pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507733pt;}
.fs0{font-size:47.820267pt;}
.fs8{font-size:53.133867pt;}
.fs4{font-size:85.014933pt;}
.y0{bottom:0.000000pt;}
.ye5{bottom:0.074933pt;}
.y74{bottom:36.132267pt;}
.y93{bottom:104.695837pt;}
.yd9{bottom:104.920347pt;}
.y92{bottom:119.284605pt;}
.yd8{bottom:119.584432pt;}
.y91{bottom:133.948690pt;}
.yd7{bottom:134.173200pt;}
.yd5{bottom:134.173947pt;}
.yd6{bottom:139.464533pt;}
.y90{bottom:148.537458pt;}
.yd4{bottom:148.762715pt;}
.y73{bottom:158.136392pt;}
.y8f{bottom:163.126226pt;}
.yd3{bottom:163.426800pt;}
.yd1{bottom:163.431861pt;}
.yd2{bottom:168.718000pt;}
.y72{bottom:169.398929pt;}
.y8e{bottom:177.714994pt;}
.yd0{bottom:178.020629pt;}
.y71{bottom:180.661467pt;}
.y70{bottom:192.000000pt;}
.y8d{bottom:192.379078pt;}
.ycf{bottom:192.609396pt;}
.y8c{bottom:206.967846pt;}
.yce{bottom:207.273481pt;}
.y8b{bottom:221.556614pt;}
.ycd{bottom:221.862249pt;}
.y8a{bottom:236.220699pt;}
.ycc{bottom:236.451017pt;}
.y67{bottom:237.506994pt;}
.y33{bottom:237.883632pt;}
.y89{bottom:250.809467pt;}
.y87{bottom:250.811159pt;}
.ycb{bottom:251.039785pt;}
.y66{bottom:252.171078pt;}
.y32{bottom:252.472400pt;}
.y30{bottom:252.473196pt;}
.y88{bottom:256.100667pt;}
.y31{bottom:257.763733pt;}
.y86{bottom:265.399927pt;}
.yca{bottom:265.703870pt;}
.y65{bottom:266.759846pt;}
.y2f{bottom:267.061964pt;}
.y85{bottom:280.064012pt;}
.yc9{bottom:280.292637pt;}
.y64{bottom:281.348614pt;}
.y2e{bottom:281.726048pt;}
.y84{bottom:294.652780pt;}
.yc8{bottom:294.881405pt;}
.y63{bottom:296.012699pt;}
.y2d{bottom:296.314816pt;}
.y142{bottom:302.213007pt;}
.y164{bottom:304.250058pt;}
.y83{bottom:309.241547pt;}
.yc7{bottom:309.545490pt;}
.y62{bottom:310.601467pt;}
.y60{bottom:310.604205pt;}
.y2c{bottom:310.903584pt;}
.y141{bottom:314.155872pt;}
.y61{bottom:315.892800pt;}
.y163{bottom:316.193853pt;}
.y82{bottom:323.905632pt;}
.yc6{bottom:324.134258pt;}
.y5f{bottom:325.192973pt;}
.y2b{bottom:325.568864pt;}
.y140{bottom:326.099667pt;}
.y162{bottom:328.137647pt;}
.y13f{bottom:338.118779pt;}
.y81{bottom:338.494400pt;}
.y7f{bottom:338.497005pt;}
.yc5{bottom:338.723026pt;}
.y5e{bottom:339.857058pt;}
.y161{bottom:340.080512pt;}
.y2a{bottom:340.157632pt;}
.y80{bottom:343.785733pt;}
.y13e{bottom:350.061644pt;}
.y160{bottom:352.024307pt;}
.y7e{bottom:353.085773pt;}
.yc4{bottom:353.387110pt;}
.y5d{bottom:354.445826pt;}
.y29{bottom:354.746400pt;}
.y13d{bottom:362.004509pt;}
.y15f{bottom:363.968102pt;}
.y7d{bottom:367.674541pt;}
.yc3{bottom:367.975878pt;}
.y5c{bottom:369.034594pt;}
.y27{bottom:369.412925pt;}
.y13c{bottom:373.947374pt;}
.y28{bottom:374.702267pt;}
.y15e{bottom:375.987214pt;}
.y7c{bottom:382.338626pt;}
.yc2{bottom:382.564646pt;}
.y5b{bottom:383.698678pt;}
.y26{bottom:384.001692pt;}
.y13b{bottom:385.890239pt;}
.y15d{bottom:387.931009pt;}
.y7b{bottom:396.927394pt;}
.yc1{bottom:397.228731pt;}
.y13a{bottom:397.833104pt;}
.y5a{bottom:398.287446pt;}
.y25{bottom:398.590460pt;}
.y15c{bottom:399.873874pt;}
.y139{bottom:409.852216pt;}
.y7a{bottom:411.516161pt;}
.yc0{bottom:411.817499pt;}
.y15b{bottom:411.817668pt;}
.y59{bottom:412.876214pt;}
.y24{bottom:413.179228pt;}
.y138{bottom:421.796010pt;}
.y15a{bottom:423.760533pt;}
.y79{bottom:426.180246pt;}
.ybf{bottom:426.406267pt;}
.ybd{bottom:426.408290pt;}
.y58{bottom:427.464982pt;}
.y23{bottom:427.843313pt;}
.ybe{bottom:431.697600pt;}
.y137{bottom:433.739805pt;}
.y159{bottom:435.705487pt;}
.y78{bottom:440.769014pt;}
.ybc{bottom:440.997058pt;}
.y57{bottom:442.129067pt;}
.y55{bottom:442.129980pt;}
.y22{bottom:442.432081pt;}
.y136{bottom:445.682670pt;}
.y56{bottom:447.420400pt;}
.y158{bottom:447.648352pt;}
.y77{bottom:455.357782pt;}
.ybb{bottom:455.661143pt;}
.y54{bottom:456.718747pt;}
.y21{bottom:457.020849pt;}
.y135{bottom:457.625535pt;}
.y157{bottom:459.667464pt;}
.y134{bottom:469.568400pt;}
.y76{bottom:470.021867pt;}
.yba{bottom:470.249911pt;}
.y53{bottom:471.307515pt;}
.y156{bottom:471.610329pt;}
.y20{bottom:471.684933pt;}
.y1e{bottom:471.686310pt;}
.y1f{bottom:476.976267pt;}
.y155{bottom:483.553194pt;}
.yb9{bottom:484.838679pt;}
.y52{bottom:485.971600pt;}
.y50{bottom:485.975748pt;}
.y1d{bottom:486.275078pt;}
.y51{bottom:491.262933pt;}
.y154{bottom:495.496988pt;}
.y133{bottom:496.176546pt;}
.yb8{bottom:499.502764pt;}
.y4f{bottom:500.564516pt;}
.y1c{bottom:500.863846pt;}
.y10a{bottom:503.435171pt;}
.y153{bottom:507.439853pt;}
.y132{bottom:510.765200pt;}
.yb7{bottom:514.091531pt;}
.y4e{bottom:515.153284pt;}
.y109{bottom:515.378036pt;}
.y1b{bottom:515.527931pt;}
.y152{bottom:519.383648pt;}
.y108{bottom:527.320901pt;}
.yb6{bottom:528.680299pt;}
.y4d{bottom:529.817368pt;}
.y1a{bottom:530.116699pt;}
.y151{bottom:531.402760pt;}
.y131{bottom:537.977688pt;}
.y107{bottom:539.340012pt;}
.yb5{bottom:543.345580pt;}
.y150{bottom:543.345625pt;}
.y4c{bottom:544.406136pt;}
.y19{bottom:544.705467pt;}
.y17{bottom:544.708371pt;}
.y130{bottom:549.996800pt;}
.y18{bottom:550.072400pt;}
.y106{bottom:551.282877pt;}
.y14f{bottom:555.289420pt;}
.yb4{bottom:557.934347pt;}
.y4b{bottom:558.994904pt;}
.y16{bottom:559.372455pt;}
.y12f{bottom:561.940000pt;}
.y105{bottom:563.225742pt;}
.y14e{bottom:567.232285pt;}
.yb3{bottom:572.523115pt;}
.y4a{bottom:573.583672pt;}
.y15{bottom:573.961223pt;}
.y104{bottom:575.169537pt;}
.y14d{bottom:579.176080pt;}
.y103{bottom:587.112402pt;}
.yb2{bottom:587.187200pt;}
.yb0{bottom:587.189655pt;}
.y49{bottom:588.247757pt;}
.y14{bottom:588.549991pt;}
.y12e{bottom:589.152667pt;}
.y14c{bottom:591.119874pt;}
.yb1{bottom:592.478667pt;}
.y102{bottom:599.055267pt;}
.yaf{bottom:601.778423pt;}
.y48{bottom:602.836525pt;}
.y14b{bottom:603.062739pt;}
.y13{bottom:603.138759pt;}
.y12d{bottom:605.102267pt;}
.y101{bottom:611.074379pt;}
.y14a{bottom:615.081851pt;}
.yae{bottom:616.367191pt;}
.y47{bottom:617.425292pt;}
.y12{bottom:617.802844pt;}
.y100{bottom:623.018174pt;}
.y149{bottom:627.024716pt;}
.yad{bottom:630.955959pt;}
.y46{bottom:632.089377pt;}
.y12c{bottom:632.315268pt;}
.y11{bottom:632.391612pt;}
.yff{bottom:634.961969pt;}
.y148{bottom:638.968511pt;}
.y12b{bottom:644.258133pt;}
.yac{bottom:645.620044pt;}
.y45{bottom:646.678145pt;}
.yfe{bottom:646.904834pt;}
.y10{bottom:646.980380pt;}
.y147{bottom:650.911376pt;}
.y12a{bottom:656.201467pt;}
.yfd{bottom:658.847698pt;}
.yab{bottom:660.208812pt;}
.y44{bottom:661.266913pt;}
.yf{bottom:661.644464pt;}
.y146{bottom:662.854241pt;}
.yfc{bottom:670.790563pt;}
.yaa{bottom:674.797580pt;}
.y145{bottom:674.798036pt;}
.y43{bottom:675.930998pt;}
.ye{bottom:676.233232pt;}
.yfb{bottom:682.733428pt;}
.y129{bottom:685.454933pt;}
.y144{bottom:686.817147pt;}
.ya9{bottom:689.461664pt;}
.y42{bottom:690.519765pt;}
.yd{bottom:690.822000pt;}
.yb{bottom:690.824771pt;}
.yfa{bottom:694.752540pt;}
.yc{bottom:696.188800pt;}
.y128{bottom:697.398267pt;}
.y143{bottom:698.760942pt;}
.ya8{bottom:704.050432pt;}
.y41{bottom:705.108533pt;}
.y3f{bottom:705.109147pt;}
.ya{bottom:705.488855pt;}
.yf9{bottom:706.695405pt;}
.y40{bottom:710.475467pt;}
.ya7{bottom:718.639200pt;}
.ya5{bottom:718.650677pt;}
.y3e{bottom:719.773232pt;}
.y9{bottom:720.077623pt;}
.y127{bottom:722.646270pt;}
.ya6{bottom:724.006133pt;}
.ya4{bottom:733.314762pt;}
.y3d{bottom:734.362000pt;}
.y3b{bottom:734.365596pt;}
.y126{bottom:734.589135pt;}
.y8{bottom:734.666391pt;}
.y3c{bottom:739.653467pt;}
.yf1{bottom:745.676400pt;}
.y125{bottom:746.532000pt;}
.ya3{bottom:747.903530pt;}
.y3a{bottom:748.954364pt;}
.y7{bottom:749.330476pt;}
.y124{bottom:750.689600pt;}
.y123{bottom:758.475467pt;}
.ya2{bottom:762.492298pt;}
.ye4{bottom:763.209333pt;}
.ye6{bottom:763.284267pt;}
.y39{bottom:763.543131pt;}
.y6{bottom:763.919244pt;}
.yf3{bottom:764.996000pt;}
.yf4{bottom:765.070933pt;}
.ya1{bottom:777.081065pt;}
.y38{bottom:778.208412pt;}
.y5{bottom:778.508012pt;}
.yf6{bottom:788.632133pt;}
.yee{bottom:788.632800pt;}
.ya0{bottom:791.745150pt;}
.y37{bottom:792.797180pt;}
.y4{bottom:793.096780pt;}
.y6b{bottom:795.817046pt;}
.yf5{bottom:796.632133pt;}
.yed{bottom:796.632800pt;}
.yf8{bottom:801.490800pt;}
.y116{bottom:806.327336pt;}
.y122{bottom:806.330923pt;}
.y9f{bottom:806.333918pt;}
.yf2{bottom:806.384267pt;}
.y6a{bottom:807.155515pt;}
.y36{bottom:807.385947pt;}
.y3{bottom:807.760864pt;}
.yf7{bottom:809.490800pt;}
.y69{bottom:818.418667pt;}
.ydc{bottom:819.933200pt;}
.y115{bottom:820.916104pt;}
.y121{bottom:820.919691pt;}
.y9e{bottom:820.922686pt;}
.y35{bottom:822.050032pt;}
.y2{bottom:822.349632pt;}
.y114{bottom:835.580189pt;}
.y120{bottom:835.583775pt;}
.y9d{bottom:835.586771pt;}
.y34{bottom:836.638800pt;}
.y1{bottom:836.938400pt;}
.y68{bottom:839.659733pt;}
.ye0{bottom:839.898533pt;}
.ye3{bottom:844.199867pt;}
.ydf{bottom:847.898533pt;}
.y113{bottom:850.168957pt;}
.y11f{bottom:850.172543pt;}
.y9c{bottom:850.175538pt;}
.yde{bottom:855.898533pt;}
.ydd{bottom:863.898533pt;}
.y112{bottom:864.757725pt;}
.y11e{bottom:864.761311pt;}
.y9b{bottom:864.764306pt;}
.ye7{bottom:870.910133pt;}
.y6e{bottom:879.117867pt;}
.y111{bottom:879.421809pt;}
.y11d{bottom:879.425396pt;}
.y9a{bottom:879.428391pt;}
.y6f{bottom:884.484800pt;}
.ydb{bottom:890.669200pt;}
.y110{bottom:894.010577pt;}
.y11c{bottom:894.014164pt;}
.y99{bottom:894.017159pt;}
.yea{bottom:904.068133pt;}
.y10f{bottom:908.599345pt;}
.y11b{bottom:908.602932pt;}
.y98{bottom:908.605927pt;}
.y6d{bottom:911.849604pt;}
.ye8{bottom:917.690133pt;}
.ye1{bottom:917.692533pt;}
.yef{bottom:917.693200pt;}
.yeb{bottom:918.038133pt;}
.y10e{bottom:923.263430pt;}
.y11a{bottom:923.267016pt;}
.y97{bottom:923.270012pt;}
.y6c{bottom:937.020400pt;}
.y10d{bottom:937.852198pt;}
.y119{bottom:937.855784pt;}
.y96{bottom:937.858779pt;}
.y10c{bottom:952.440965pt;}
.y118{bottom:952.444552pt;}
.y95{bottom:952.447547pt;}
.ye9{bottom:955.276800pt;}
.yec{bottom:955.278133pt;}
.ye2{bottom:955.279200pt;}
.yf0{bottom:955.279867pt;}
.y10b{bottom:967.029733pt;}
.y117{bottom:967.033320pt;}
.y94{bottom:967.036315pt;}
.yda{bottom:969.012533pt;}
.y75{bottom:1012.988800pt;}
.hf{height:4.845333pt;}
.hd{height:4.846667pt;}
.h10{height:18.122952pt;}
.hb{height:19.413333pt;}
.he{height:19.440000pt;}
.hc{height:19.464000pt;}
.h3{height:23.301551pt;}
.ha{height:23.328000pt;}
.h7{height:24.857899pt;}
.h4{height:25.246596pt;}
.h5{height:27.188522pt;}
.h8{height:31.073153pt;}
.h2{height:34.956615pt;}
.h9{height:38.840857pt;}
.h6{height:61.975886pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w2{width:22.184000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:8.096133pt;}
.x18{left:56.692933pt;}
.x35{left:60.558267pt;}
.x4f{left:61.455067pt;}
.x2f{left:62.412267pt;}
.x37{left:69.153333pt;}
.x38{left:70.208400pt;}
.x20{left:72.642188pt;}
.x3f{left:76.130533pt;}
.x40{left:78.917867pt;}
.x34{left:82.558267pt;}
.x43{left:84.337333pt;}
.x22{left:101.744800pt;}
.x19{left:104.163733pt;}
.x4b{left:110.739067pt;}
.x23{left:111.874000pt;}
.x3c{left:113.070000pt;}
.x4a{left:117.225733pt;}
.x44{left:134.778933pt;}
.x3b{left:136.536667pt;}
.x3a{left:147.263333pt;}
.x36{left:149.797600pt;}
.x1a{left:153.523404pt;}
.x3d{left:169.136667pt;}
.x21{left:179.905467pt;}
.x45{left:182.725600pt;}
.x1b{left:188.976267pt;}
.x1{left:191.697600pt;}
.x1c{left:193.965333pt;}
.x4{left:207.646251pt;}
.x2{left:221.707067pt;}
.x42{left:225.558533pt;}
.x3{left:231.836133pt;}
.x41{left:246.665200pt;}
.x1f{left:279.760533pt;}
.x46{left:281.033067pt;}
.x47{left:284.185067pt;}
.x32{left:296.678267pt;}
.x30{left:297.978267pt;}
.x31{left:301.124933pt;}
.x33{left:321.124933pt;}
.x3e{left:336.711200pt;}
.x1d{left:340.610933pt;}
.x1e{left:347.338400pt;}
.x7{left:354.746400pt;}
.x49{left:359.285067pt;}
.x48{left:361.131733pt;}
.x5{left:365.631467pt;}
.x8{left:373.341600pt;}
.x6{left:374.324267pt;}
.x24{left:404.788675pt;}
.x9{left:407.206133pt;}
.x50{left:409.548109pt;}
.x25{left:420.737929pt;}
.x51{left:423.985735pt;}
.xa{left:429.429867pt;}
.xb{left:438.576267pt;}
.x2d{left:441.826667pt;}
.x28{left:445.077067pt;}
.x2e{left:457.549467pt;}
.xc{left:472.289555pt;}
.xd{left:488.238809pt;}
.x12{left:497.612533pt;}
.xe{left:504.944800pt;}
.x13{left:512.428267pt;}
.xf{left:513.637600pt;}
.x10{left:528.075467pt;}
.x11{left:550.525867pt;}
.x4d{left:562.015600pt;}
.x4e{left:565.870667pt;}
.x14{left:572.371467pt;}
.x26{left:575.470667pt;}
.x27{left:591.269067pt;}
.x15{left:607.143200pt;}
.x29{left:640.932133pt;}
.x16{left:643.124267pt;}
.x17{left:658.922667pt;}
.x2a{left:669.807733pt;}
.x2b{left:681.297467pt;}
.x4c{left:685.001467pt;}
.x2c{left:693.316267pt;}
}




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