
    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_a0138bfa0da086766e3c4a09.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_e61d4ff287af6cbc814ee6e1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.465000;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_ce054bcd80d5156ff1c604d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.911000;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_b0d117b6ad2b990bede6b724.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.431000;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_5ff2cd3225323d203397c879.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.684000;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_8f38520792dfc53ce8c64a5f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cfcde1ea7b414f8709585fc1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.119000;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_eedf8212d10c82055e9ea284.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_faaec58f70b9bbfc5531d219.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8cb2bf305f64bce77589769a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_60f8ddae44ca2297989d9305.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.178000;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_14da532e6ce561809aff0a90.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.388000;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_6e88b1bfebd93864f0517079.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_69b00c41916d9398e8a82b86.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.719069;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ba88babe36bf55a8732bdd6e.woff2')format("woff");}.fff{font-family:fff;line-height:0.485000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_68c3131cc1495d21ac52705a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f8cca00f4f2b6c1403c4efe7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_fca37cba73571f192325d1db.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_174c83c85274450f534f4615.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_d88cd80d5a4b003676ac456e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_de0cc17bba5a83b0a7cfc25a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_d88cd80d5a4b003676ac456e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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);}
.m2{transform:matrix(0.240329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240329,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.241706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241706,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249748,0.000000,0.000000,0.250000,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);}
.v3{vertical-align:-21.690000px;}
.v6{vertical-align:-18.036000px;}
.v4{vertical-align:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.053613px;}
.v2{vertical-align:21.696000px;}
.v1{vertical-align:30.366000px;}
.ls4{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000331px;}
.lsd{letter-spacing:0.000364px;}
.ls11{letter-spacing:0.000594px;}
.lsc{letter-spacing:0.000929px;}
.lsf{letter-spacing:0.001393px;}
.lsb{letter-spacing:0.007156px;}
.ls10{letter-spacing:0.008653px;}
.ls2{letter-spacing:12.949409px;}
.ls9{letter-spacing:21.180713px;}
.ls1{letter-spacing:22.909409px;}
.ls0{letter-spacing:22.915409px;}
.ls3{letter-spacing:25.400915px;}
.lsa{letter-spacing:27.079427px;}
.ls8{letter-spacing:29.887800px;}
.ls5{letter-spacing:31.943388px;}
.ls7{letter-spacing:31.988506px;}
.ls6{letter-spacing:62.352772px;}
.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;}
}
.wsb3{word-spacing:-38.479427px;}
.wsba{word-spacing:-38.064014px;}
.wsb6{word-spacing:-37.727888px;}
.wsb8{word-spacing:-37.446229px;}
.wsd3{word-spacing:-29.887800px;}
.ws8b{word-spacing:-27.625294px;}
.wse6{word-spacing:-19.666172px;}
.wsee{word-spacing:-19.187968px;}
.wsa3{word-spacing:-16.617617px;}
.ws3f{word-spacing:-16.557841px;}
.wsae{word-spacing:-16.498066px;}
.ws9c{word-spacing:-16.438290px;}
.ws3d{word-spacing:-16.378514px;}
.ws93{word-spacing:-16.258963px;}
.ws7f{word-spacing:-16.199188px;}
.ws85{word-spacing:-16.079636px;}
.wsc6{word-spacing:-15.960085px;}
.ws73{word-spacing:-15.900310px;}
.ws54{word-spacing:-15.780758px;}
.ws3c{word-spacing:-15.720983px;}
.ws66{word-spacing:-15.661207px;}
.wsd4{word-spacing:-15.601432px;}
.ws41{word-spacing:-15.481880px;}
.ws5c{word-spacing:-15.422105px;}
.ws42{word-spacing:-15.362329px;}
.ws27{word-spacing:-15.302554px;}
.ws95{word-spacing:-15.242778px;}
.ws60{word-spacing:-15.183002px;}
.ws33{word-spacing:-15.123227px;}
.ws6a{word-spacing:-15.063451px;}
.ws9d{word-spacing:-14.943900px;}
.ws50{word-spacing:-14.884124px;}
.ws29{word-spacing:-14.824349px;}
.wsab{word-spacing:-14.704798px;}
.ws21{word-spacing:-14.585246px;}
.ws79{word-spacing:-14.525471px;}
.ws6d{word-spacing:-14.465695px;}
.ws9a{word-spacing:-14.286368px;}
.ws9f{word-spacing:-14.226593px;}
.ws63{word-spacing:-14.107042px;}
.ws58{word-spacing:-14.047266px;}
.ws72{word-spacing:-13.987490px;}
.wsdf{word-spacing:-13.927715px;}
.wsd7{word-spacing:-13.808164px;}
.ws7c{word-spacing:-13.688612px;}
.ws57{word-spacing:-13.569061px;}
.ws5e{word-spacing:-13.509286px;}
.ws1b{word-spacing:-13.389734px;}
.ws4e{word-spacing:-13.329959px;}
.wsd5{word-spacing:-13.270183px;}
.ws77{word-spacing:-13.210408px;}
.wsa6{word-spacing:-13.150632px;}
.ws65{word-spacing:-13.090856px;}
.ws87{word-spacing:-13.031081px;}
.ws9e{word-spacing:-12.971305px;}
.wsc{word-spacing:-12.911530px;}
.ws6c{word-spacing:-12.851754px;}
.ws53{word-spacing:-12.791978px;}
.ws5a{word-spacing:-12.732203px;}
.ws5d{word-spacing:-12.672427px;}
.ws44{word-spacing:-12.612652px;}
.ws4d{word-spacing:-12.552876px;}
.ws7e{word-spacing:-12.493100px;}
.wsc3{word-spacing:-12.433325px;}
.wscd{word-spacing:-12.373549px;}
.ws55{word-spacing:-12.313774px;}
.ws94{word-spacing:-12.253998px;}
.ws25{word-spacing:-12.194222px;}
.ws20{word-spacing:-12.134447px;}
.wsa9{word-spacing:-12.014896px;}
.ws83{word-spacing:-11.955120px;}
.ws51{word-spacing:-11.835569px;}
.ws46{word-spacing:-11.775793px;}
.wsc1{word-spacing:-11.656242px;}
.ws89{word-spacing:-11.596466px;}
.ws69{word-spacing:-11.536691px;}
.ws80{word-spacing:-11.476915px;}
.ws47{word-spacing:-11.417140px;}
.wsc8{word-spacing:-11.357364px;}
.wsa0{word-spacing:-11.297588px;}
.ws43{word-spacing:-11.237813px;}
.ws1f{word-spacing:-11.178037px;}
.ws11{word-spacing:-11.118262px;}
.ws2a{word-spacing:-10.998710px;}
.ws23{word-spacing:-10.938935px;}
.ws2b{word-spacing:-10.917443px;}
.ws39{word-spacing:-10.879159px;}
.ws7a{word-spacing:-10.819384px;}
.wsa7{word-spacing:-10.699832px;}
.ws82{word-spacing:-10.640057px;}
.wsaa{word-spacing:-10.580281px;}
.ws64{word-spacing:-10.520506px;}
.ws56{word-spacing:-10.460730px;}
.wsf{word-spacing:-10.400954px;}
.ws6b{word-spacing:-10.341179px;}
.ws52{word-spacing:-10.281403px;}
.ws26{word-spacing:-10.221628px;}
.ws5b{word-spacing:-10.161852px;}
.ws24{word-spacing:-10.102076px;}
.wsec{word-spacing:-10.042301px;}
.ws2e{word-spacing:-10.008852px;}
.ws15{word-spacing:-9.982525px;}
.ws28{word-spacing:-9.922750px;}
.ws1d{word-spacing:-9.862974px;}
.ws32{word-spacing:-9.803198px;}
.wsb1{word-spacing:-9.743423px;}
.ws2c{word-spacing:-9.721928px;}
.ws40{word-spacing:-9.683647px;}
.wsaf{word-spacing:-9.623872px;}
.ws5f{word-spacing:-9.564096px;}
.ws68{word-spacing:-9.504320px;}
.ws31{word-spacing:-9.482825px;}
.ws78{word-spacing:-9.444545px;}
.ws3b{word-spacing:-9.384769px;}
.wsca{word-spacing:-9.265218px;}
.ws8a{word-spacing:-9.226848px;}
.wsd{word-spacing:-9.205442px;}
.wsc9{word-spacing:-9.145667px;}
.wsc5{word-spacing:-9.085891px;}
.ws35{word-spacing:-8.846789px;}
.ws75{word-spacing:-8.787013px;}
.ws12{word-spacing:-8.727238px;}
.ws17{word-spacing:-8.667462px;}
.wsbe{word-spacing:-8.607686px;}
.ws1e{word-spacing:-8.428360px;}
.wsd1{word-spacing:-8.308808px;}
.wse{word-spacing:-8.249033px;}
.ws6e{word-spacing:-8.189257px;}
.ws34{word-spacing:-8.069706px;}
.ws36{word-spacing:-8.009930px;}
.ws49{word-spacing:-7.999382px;}
.ws4b{word-spacing:-7.954265px;}
.ws45{word-spacing:-7.950155px;}
.ws1c{word-spacing:-7.890379px;}
.wsa8{word-spacing:-7.830604px;}
.ws6f{word-spacing:-7.711052px;}
.ws4f{word-spacing:-7.651277px;}
.ws59{word-spacing:-7.591501px;}
.ws10{word-spacing:-7.531726px;}
.ws71{word-spacing:-7.471950px;}
.ws98{word-spacing:-7.412174px;}
.wscb{word-spacing:-7.352399px;}
.ws1a{word-spacing:-7.292623px;}
.ws14{word-spacing:-7.232848px;}
.ws76{word-spacing:-7.173072px;}
.ws3a{word-spacing:-7.113296px;}
.ws7b{word-spacing:-7.053521px;}
.ws37{word-spacing:-6.933970px;}
.wsc2{word-spacing:-6.754643px;}
.ws61{word-spacing:-6.694867px;}
.wse8{word-spacing:-6.635092px;}
.wsd0{word-spacing:-6.575316px;}
.wsb0{word-spacing:-6.395989px;}
.wsdb{word-spacing:-6.276438px;}
.wsc4{word-spacing:-6.216662px;}
.ws70{word-spacing:-6.156887px;}
.wsc0{word-spacing:-6.037336px;}
.wsd2{word-spacing:-5.977560px;}
.wscc{word-spacing:-5.858009px;}
.ws81{word-spacing:-5.798233px;}
.ws13{word-spacing:-5.738458px;}
.wsbc{word-spacing:-5.618906px;}
.wsb2{word-spacing:-5.559131px;}
.wscf{word-spacing:-5.439580px;}
.wsac{word-spacing:-5.320028px;}
.ws62{word-spacing:-5.140702px;}
.ws86{word-spacing:-5.080926px;}
.wsbf{word-spacing:-5.021150px;}
.ws97{word-spacing:-4.961375px;}
.ws19{word-spacing:-4.782048px;}
.wsc7{word-spacing:-4.602721px;}
.ws84{word-spacing:-4.542946px;}
.wse3{word-spacing:-4.423394px;}
.wsd6{word-spacing:-4.124516px;}
.wsb{word-spacing:-4.064741px;}
.wsad{word-spacing:-4.004965px;}
.ws30{word-spacing:-3.935635px;}
.wsce{word-spacing:-3.885414px;}
.ws88{word-spacing:-3.825638px;}
.wseb{word-spacing:-3.706087px;}
.wsdd{word-spacing:-3.407209px;}
.ws7d{word-spacing:-3.347434px;}
.ws96{word-spacing:-3.287658px;}
.ws18{word-spacing:-3.227882px;}
.ws67{word-spacing:-3.048556px;}
.ws74{word-spacing:-2.809453px;}
.wse5{word-spacing:-2.689902px;}
.wse2{word-spacing:-2.510575px;}
.ws38{word-spacing:-2.331248px;}
.ws22{word-spacing:-2.211697px;}
.wsed{word-spacing:-2.032370px;}
.ws48{word-spacing:-1.912819px;}
.ws2f{word-spacing:-1.544605px;}
.wse9{word-spacing:-1.374839px;}
.wsd9{word-spacing:-0.836858px;}
.wsde{word-spacing:-0.537980px;}
.wsda{word-spacing:-0.059776px;}
.ws8c{word-spacing:-0.055251px;}
.ws4a{word-spacing:-0.045118px;}
.wsb9{word-spacing:-0.036959px;}
.wsb4{word-spacing:-0.007539px;}
.ws16{word-spacing:0.000000px;}
.wsbd{word-spacing:0.239102px;}
.ws3e{word-spacing:0.478205px;}
.wse4{word-spacing:1.494390px;}
.ws2d{word-spacing:3.859122px;}
.wsd8{word-spacing:5.200477px;}
.wse7{word-spacing:8.607686px;}
.wse1{word-spacing:9.324994px;}
.ws4{word-spacing:9.883100px;}
.ws2{word-spacing:9.913085px;}
.ws6{word-spacing:9.914203px;}
.ws3{word-spacing:9.923055px;}
.ws1{word-spacing:9.926393px;}
.ws9{word-spacing:12.914976px;}
.wsa2{word-spacing:13.210408px;}
.ws9b{word-spacing:13.389734px;}
.wsa5{word-spacing:13.449510px;}
.ws99{word-spacing:15.541656px;}
.wse0{word-spacing:15.661207px;}
.ws92{word-spacing:16.025792px;}
.ws91{word-spacing:16.067635px;}
.wsbb{word-spacing:16.498066px;}
.ws90{word-spacing:16.575176px;}
.wsef{word-spacing:18.052231px;}
.wsa1{word-spacing:18.530436px;}
.wsa4{word-spacing:20.383480px;}
.wsdc{word-spacing:20.682358px;}
.wsea{word-spacing:20.742133px;}
.ws7{word-spacing:21.280114px;}
.ws8{word-spacing:21.339889px;}
.ws5{word-spacing:22.875123px;}
.wsa{word-spacing:29.588922px;}
.ws0{word-spacing:31.298639px;}
.ws8d{word-spacing:44.145219px;}
.ws8e{word-spacing:47.681257px;}
.ws8f{word-spacing:51.327795px;}
.wsb5{word-spacing:95.959571px;}
.wsb7{word-spacing:170.625776px;}
.ws4c{word-spacing:597.300750px;}
._1c{margin-left:-37.417168px;}
._a{margin-left:-29.853312px;}
._3b{margin-left:-7.328477px;}
._4{margin-left:-5.738458px;}
._6{margin-left:-3.957122px;}
._0{margin-left:-2.594272px;}
._7{margin-left:-1.482457px;}
._5{width:1.422682px;}
._1{width:2.594272px;}
._16{width:7.029655px;}
._14{width:9.169588px;}
._15{width:11.835569px;}
._2{width:15.675177px;}
._3e{width:16.976270px;}
._13{width:18.076153px;}
._8{width:19.809645px;}
._35{width:21.543137px;}
._3{width:22.894055px;}
._11{width:23.993937px;}
._3a{width:26.325185px;}
._12{width:29.887800px;}
._3f{width:31.023536px;}
._3d{width:32.219048px;}
._43{width:33.773214px;}
._41{width:40.970207px;}
._17{width:44.200470px;}
._1d{width:45.747486px;}
._21{width:47.736507px;}
._23{width:49.062521px;}
._26{width:51.383046px;}
._22{width:52.653809px;}
._3c{width:53.678489px;}
._40{width:54.814225px;}
._42{width:59.679970px;}
._27{width:62.156910px;}
._25{width:71.086586px;}
._20{width:74.125368px;}
._18{width:76.245810px;}
._1b{width:100.385533px;}
._28{width:102.008297px;}
._37{width:109.700753px;}
._19{width:111.916770px;}
._36{width:123.272231px;}
._1e{width:129.065371px;}
._31{width:130.207016px;}
._32{width:132.995439px;}
._30{width:134.424678px;}
._2e{width:141.179084px;}
._29{width:143.430524px;}
._2b{width:147.463817px;}
._33{width:151.828613px;}
._d{width:158.891961px;}
._39{width:162.586039px;}
._1a{width:165.144005px;}
._f{width:176.487895px;}
._38{width:181.934162px;}
._10{width:200.445436px;}
._b{width:221.098208px;}
._2a{width:223.101871px;}
._24{width:230.173946px;}
._9{width:233.658551px;}
._e{width:249.488463px;}
._2f{width:308.896724px;}
._2d{width:318.795887px;}
._1f{width:375.096236px;}
._34{width:377.651596px;}
._2c{width:400.566756px;}
._c{width:403.978170px;}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:29.887800px;}
.fsd{font-size:36.126720px;}
.fs9{font-size:36.416880px;}
.fs7{font-size:38.675300px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:45.117780px;}
.fs3{font-size:47.820600px;}
.fse{font-size:48.169080px;}
.fsf{font-size:48.193346px;}
.fsc{font-size:48.555840px;}
.fsa{font-size:48.555961px;}
.fs10{font-size:48.988434px;}
.fsb{font-size:49.523072px;}
.fs6{font-size:55.250587px;}
.fs5{font-size:59.208480px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:83.686200px;}
.y0{bottom:0.000000px;}
.yd0{bottom:0.956665px;}
.ycd{bottom:1.049178px;}
.yc9{bottom:1.050411px;}
.y12a{bottom:3.217295px;}
.y13a{bottom:3.322800px;}
.y129{bottom:14.597570px;}
.y131{bottom:14.608237px;}
.y139{bottom:16.476945px;}
.y13b{bottom:22.138755px;}
.y12b{bottom:22.184405px;}
.y130{bottom:35.215426px;}
.y12e{bottom:40.392845px;}
.y13e{bottom:46.975875px;}
.y12f{bottom:49.961835px;}
.y12c{bottom:61.332551px;}
.y13c{bottom:70.684035px;}
.y140{bottom:91.764428px;}
.y12d{bottom:100.480697px;}
.y13f{bottom:106.637347px;}
.y8b{bottom:112.915500px;}
.y34{bottom:112.917000px;}
.yc7{bottom:114.709500px;}
.y13d{bottom:119.229315px;}
.y1ce{bottom:124.257000px;}
.y4f{bottom:125.535000px;}
.y33{bottom:127.711500px;}
.y8a{bottom:129.354000px;}
.y121{bottom:129.355500px;}
.yc6{bottom:131.148000px;}
.y1cd{bottom:140.695500px;}
.y4e{bottom:141.973500px;}
.y32{bottom:142.506000px;}
.y135{bottom:142.952829px;}
.y128{bottom:144.444672px;}
.y89{bottom:145.792500px;}
.y120{bottom:145.794000px;}
.yc5{bottom:147.586500px;}
.y125{bottom:152.488098px;}
.y138{bottom:154.807511px;}
.y123{bottom:155.788378px;}
.y1cc{bottom:157.134000px;}
.y31{bottom:157.300500px;}
.y4d{bottom:158.412000px;}
.y127{bottom:158.709315px;}
.y88{bottom:162.231000px;}
.y11f{bottom:162.232500px;}
.yc4{bottom:164.025000px;}
.yd3{bottom:170.839500px;}
.y30{bottom:172.095000px;}
.y126{bottom:172.974111px;}
.y1cb{bottom:173.572500px;}
.y4c{bottom:174.850500px;}
.y87{bottom:178.669500px;}
.yc3{bottom:180.463500px;}
.y136{bottom:182.240637px;}
.y2f{bottom:186.889500px;}
.yd2{bottom:187.278000px;}
.y1ca{bottom:190.011000px;}
.y86{bottom:195.108000px;}
.yc2{bottom:196.902000px;}
.y4b{bottom:200.254500px;}
.y104{bottom:204.075000px;}
.y2e{bottom:205.903500px;}
.y1c9{bottom:206.449500px;}
.y85{bottom:211.546500px;}
.yc1{bottom:213.340500px;}
.y171{bottom:214.006500px;}
.y124{bottom:214.396794px;}
.yc8{bottom:215.671500px;}
.y4a{bottom:216.693000px;}
.ycf{bottom:217.667103px;}
.y103{bottom:220.513500px;}
.y137{bottom:221.528445px;}
.y1c8{bottom:222.888000px;}
.y142{bottom:223.643965px;}
.y2d{bottom:223.834500px;}
.y84{bottom:227.985000px;}
.yc0{bottom:229.779000px;}
.y49{bottom:233.131500px;}
.y1a4{bottom:236.352000px;}
.y102{bottom:236.952000px;}
.y141{bottom:238.460436px;}
.y1c7{bottom:239.326500px;}
.y2c{bottom:240.273000px;}
.y153{bottom:244.423500px;}
.ybf{bottom:246.217500px;}
.y48{bottom:249.570000px;}
.y101{bottom:253.390500px;}
.y170{bottom:253.689000px;}
.y1c6{bottom:255.765000px;}
.y2b{bottom:256.711500px;}
.y83{bottom:260.203500px;}
.y152{bottom:260.862000px;}
.ybe{bottom:262.656000px;}
.y47{bottom:266.008500px;}
.y1a3{bottom:269.521500px;}
.y100{bottom:269.829000px;}
.y16f{bottom:270.127500px;}
.y1c5{bottom:272.203500px;}
.y2a{bottom:273.150000px;}
.ybd{bottom:279.094500px;}
.y46{bottom:282.447000px;}
.y1a2{bottom:285.960000px;}
.yff{bottom:286.267500px;}
.y16e{bottom:286.566000px;}
.y1c4{bottom:288.642000px;}
.y29{bottom:289.588500px;}
.y82{bottom:290.269500px;}
.y151{bottom:295.386000px;}
.ybc{bottom:295.533000px;}
.y45{bottom:298.885500px;}
.y1a1{bottom:302.398500px;}
.y11e{bottom:302.706000px;}
.y16d{bottom:303.004500px;}
.y1c3{bottom:305.080500px;}
.y28{bottom:306.027000px;}
.y81{bottom:306.708000px;}
.yfe{bottom:311.671500px;}
.ybb{bottom:311.971500px;}
.y44{bottom:315.324000px;}
.y1a0{bottom:318.837000px;}
.y11d{bottom:319.144500px;}
.y16c{bottom:319.443000px;}
.y1c2{bottom:321.519000px;}
.y27{bottom:322.465500px;}
.y80{bottom:323.146500px;}
.yfd{bottom:328.110000px;}
.yba{bottom:328.410000px;}
.y150{bottom:330.600000px;}
.y43{bottom:331.762500px;}
.y19f{bottom:335.275500px;}
.y1c1{bottom:337.957500px;}
.y26{bottom:338.904000px;}
.y7f{bottom:339.585000px;}
.yb9{bottom:344.848500px;}
.y14f{bottom:347.038500px;}
.y42{bottom:348.201000px;}
.y19e{bottom:351.714000px;}
.y11c{bottom:352.992000px;}
.yfc{bottom:353.515500px;}
.y1c0{bottom:354.396000px;}
.y25{bottom:355.342500px;}
.y7e{bottom:356.023500px;}
.y16b{bottom:361.287000px;}
.y14e{bottom:363.475500px;}
.y41{bottom:364.639500px;}
.y19d{bottom:368.152500px;}
.yfb{bottom:369.954000px;}
.yb8{bottom:370.252500px;}
.y1bf{bottom:370.833000px;}
.y24{bottom:371.781000px;}
.y7d{bottom:372.462000px;}
.y16a{bottom:377.725500px;}
.y14d{bottom:379.914000px;}
.y40{bottom:381.078000px;}
.y19c{bottom:384.591000px;}
.y11b{bottom:386.314500px;}
.yfa{bottom:386.392500px;}
.yb7{bottom:386.691000px;}
.y1be{bottom:387.271500px;}
.y23{bottom:388.218000px;}
.y7c{bottom:388.900500px;}
.y169{bottom:394.164000px;}
.y14c{bottom:396.352500px;}
.y3f{bottom:397.516500px;}
.ycc{bottom:398.201159px;}
.y19b{bottom:401.029500px;}
.y11a{bottom:402.753000px;}
.yf9{bottom:402.831000px;}
.yb6{bottom:403.129500px;}
.y1bd{bottom:403.710000px;}
.y22{bottom:404.656500px;}
.y7b{bottom:405.339000px;}
.y168{bottom:410.601000px;}
.y14b{bottom:412.791000px;}
.y3e{bottom:413.955000px;}
.y19a{bottom:417.468000px;}
.y119{bottom:419.191500px;}
.yf8{bottom:419.269500px;}
.yb5{bottom:419.568000px;}
.y1bc{bottom:420.148500px;}
.y21{bottom:421.095000px;}
.y7a{bottom:421.777500px;}
.y167{bottom:427.039500px;}
.y14a{bottom:429.229500px;}
.y3d{bottom:430.393500px;}
.y199{bottom:433.906500px;}
.y118{bottom:435.630000px;}
.yf7{bottom:435.708000px;}
.yb4{bottom:436.006500px;}
.y1bb{bottom:436.587000px;}
.y20{bottom:437.533500px;}
.y79{bottom:438.216000px;}
.y166{bottom:443.478000px;}
.y149{bottom:445.668000px;}
.y3c{bottom:446.832000px;}
.y198{bottom:450.345000px;}
.yf6{bottom:452.146500px;}
.yb3{bottom:452.445000px;}
.y1ba{bottom:453.025500px;}
.y1f{bottom:453.972000px;}
.y78{bottom:454.654500px;}
.y165{bottom:459.916500px;}
.y148{bottom:462.106500px;}
.y197{bottom:466.783500px;}
.yb2{bottom:468.883500px;}
.y1b9{bottom:469.464000px;}
.y117{bottom:469.477500px;}
.y1e{bottom:470.410500px;}
.y77{bottom:471.093000px;}
.y3b{bottom:472.236000px;}
.y164{bottom:476.355000px;}
.yf5{bottom:477.550500px;}
.y147{bottom:478.545000px;}
.y196{bottom:483.222000px;}
.yb1{bottom:485.322000px;}
.y1b8{bottom:485.902500px;}
.y1d{bottom:486.849000px;}
.y76{bottom:487.531500px;}
.y3a{bottom:488.674500px;}
.y163{bottom:492.793500px;}
.yf4{bottom:493.989000px;}
.y146{bottom:494.983500px;}
.y195{bottom:499.659000px;}
.yb0{bottom:501.760500px;}
.y1b7{bottom:502.341000px;}
.y116{bottom:502.801500px;}
.y1c{bottom:503.287500px;}
.y75{bottom:503.970000px;}
.y39{bottom:505.113000px;}
.y162{bottom:509.232000px;}
.yf3{bottom:510.427500px;}
.y145{bottom:511.422000px;}
.y194{bottom:516.097500px;}
.yaf{bottom:518.199000px;}
.y1b6{bottom:518.779500px;}
.y115{bottom:519.240000px;}
.y1b{bottom:519.726000px;}
.y74{bottom:520.408500px;}
.y38{bottom:521.551500px;}
.y161{bottom:525.670500px;}
.yf2{bottom:526.866000px;}
.y193{bottom:532.536000px;}
.y1b5{bottom:535.218000px;}
.y114{bottom:535.678500px;}
.y1a{bottom:536.164500px;}
.y144{bottom:537.190500px;}
.y37{bottom:537.990000px;}
.y160{bottom:542.109000px;}
.yf1{bottom:543.304500px;}
.yae{bottom:543.603000px;}
.y73{bottom:545.812500px;}
.y192{bottom:548.974500px;}
.y1b4{bottom:551.656500px;}
.y113{bottom:552.117000px;}
.y19{bottom:552.603000px;}
.y143{bottom:553.629000px;}
.y36{bottom:554.428500px;}
.yf0{bottom:559.743000px;}
.yad{bottom:560.041500px;}
.y72{bottom:562.251000px;}
.y15f{bottom:567.514500px;}
.y1b3{bottom:568.095000px;}
.y35{bottom:570.867000px;}
.y191{bottom:574.380000px;}
.yac{bottom:576.480000px;}
.ycb{bottom:576.934291px;}
.yce{bottom:576.987332px;}
.y112{bottom:577.521000px;}
.y71{bottom:578.689500px;}
.y134{bottom:582.022500px;}
.y15e{bottom:583.953000px;}
.y1b2{bottom:584.533500px;}
.yef{bottom:585.147000px;}
.y18{bottom:587.305500px;}
.y190{bottom:590.818500px;}
.yab{bottom:592.918500px;}
.y111{bottom:593.959500px;}
.y70{bottom:595.128000px;}
.y15d{bottom:600.391500px;}
.y1b1{bottom:600.972000px;}
.yee{bottom:601.585500px;}
.y18f{bottom:607.257000px;}
.yaa{bottom:609.357000px;}
.y110{bottom:610.398000px;}
.y6f{bottom:611.566500px;}
.y15c{bottom:616.830000px;}
.y1b0{bottom:617.410500px;}
.yed{bottom:618.024000px;}
.y18e{bottom:623.695500px;}
.y17{bottom:625.014000px;}
.ya9{bottom:625.795500px;}
.y10f{bottom:626.836500px;}
.y6e{bottom:628.005000px;}
.y15b{bottom:633.268500px;}
.y1af{bottom:633.849000px;}
.yec{bottom:634.462500px;}
.y18d{bottom:640.134000px;}
.y16{bottom:641.452500px;}
.ya8{bottom:642.234000px;}
.y10e{bottom:643.275000px;}
.y6d{bottom:644.443500px;}
.y15a{bottom:649.707000px;}
.y1ae{bottom:650.287500px;}
.yeb{bottom:650.901000px;}
.y18c{bottom:656.572500px;}
.ya7{bottom:658.672500px;}
.y10d{bottom:659.713500px;}
.y6c{bottom:660.882000px;}
.y159{bottom:666.145500px;}
.y1ad{bottom:666.726000px;}
.yea{bottom:667.339500px;}
.ya6{bottom:675.111000px;}
.y10c{bottom:676.152000px;}
.y6b{bottom:677.320500px;}
.y15{bottom:678.562500px;}
.y18b{bottom:681.976500px;}
.y158{bottom:682.582500px;}
.y1ac{bottom:683.164500px;}
.ye9{bottom:683.778000px;}
.ya5{bottom:691.549500px;}
.y10b{bottom:692.590500px;}
.y6a{bottom:693.759000px;}
.y14{bottom:695.001000px;}
.y18a{bottom:698.415000px;}
.y1ab{bottom:699.603000px;}
.ye8{bottom:700.216500px;}
.ya4{bottom:707.988000px;}
.y10a{bottom:709.029000px;}
.y69{bottom:710.197500px;}
.y13{bottom:711.439500px;}
.y189{bottom:714.853500px;}
.y1aa{bottom:716.041500px;}
.ye7{bottom:716.655000px;}
.ya3{bottom:724.426500px;}
.y109{bottom:725.467500px;}
.y12{bottom:727.878000px;}
.y1a9{bottom:732.480000px;}
.ye6{bottom:733.093500px;}
.y68{bottom:735.601500px;}
.ya2{bottom:740.865000px;}
.y108{bottom:741.906000px;}
.y11{bottom:744.316500px;}
.y188{bottom:748.624500px;}
.y1a8{bottom:748.918500px;}
.ye5{bottom:749.532000px;}
.yd1{bottom:751.784334px;}
.yca{bottom:751.878080px;}
.y67{bottom:752.040000px;}
.ya1{bottom:757.303500px;}
.y107{bottom:758.344500px;}
.y10{bottom:760.755000px;}
.y1a7{bottom:765.357000px;}
.ye4{bottom:765.970500px;}
.y66{bottom:768.478500px;}
.ya0{bottom:773.742000px;}
.y106{bottom:774.783000px;}
.yf{bottom:777.193500px;}
.y187{bottom:781.794000px;}
.y1a6{bottom:781.795500px;}
.y65{bottom:784.917000px;}
.y9f{bottom:790.180500px;}
.y105{bottom:791.221500px;}
.ye{bottom:793.632000px;}
.y186{bottom:798.232500px;}
.y1a5{bottom:798.234000px;}
.y64{bottom:801.355500px;}
.y157{bottom:806.619000px;}
.ye3{bottom:807.660000px;}
.yd{bottom:810.070500px;}
.y185{bottom:814.671000px;}
.y9e{bottom:815.584500px;}
.y63{bottom:817.794000px;}
.y156{bottom:823.057500px;}
.yc{bottom:826.509000px;}
.y184{bottom:831.109500px;}
.y9d{bottom:832.023000px;}
.y62{bottom:834.232500px;}
.y155{bottom:839.496000px;}
.ye2{bottom:842.430000px;}
.yb{bottom:842.947500px;}
.y183{bottom:847.548000px;}
.y9c{bottom:848.461500px;}
.y61{bottom:850.671000px;}
.ye1{bottom:851.071500px;}
.y133{bottom:854.898000px;}
.y154{bottom:855.934500px;}
.ye0{bottom:858.597000px;}
.y182{bottom:863.986500px;}
.y9b{bottom:864.900000px;}
.y60{bottom:867.109500px;}
.y132{bottom:871.336500px;}
.ydf{bottom:872.263305px;}
.y181{bottom:880.425000px;}
.y9a{bottom:881.338500px;}
.y5f{bottom:883.548000px;}
.ya{bottom:884.626500px;}
.yde{bottom:887.457410px;}
.y180{bottom:896.863500px;}
.y99{bottom:897.777000px;}
.y122{bottom:899.730000px;}
.y5e{bottom:899.986500px;}
.y9{bottom:901.065000px;}
.ydd{bottom:902.651516px;}
.y17f{bottom:913.302000px;}
.y98{bottom:914.215500px;}
.y5d{bottom:916.425000px;}
.ydc{bottom:917.845622px;}
.y8{bottom:922.927500px;}
.y17e{bottom:929.740500px;}
.y97{bottom:930.654000px;}
.y5c{bottom:932.863500px;}
.ydb{bottom:933.039727px;}
.y7{bottom:933.942000px;}
.y17d{bottom:946.179000px;}
.y96{bottom:947.092500px;}
.yda{bottom:948.233833px;}
.y5b{bottom:949.302000px;}
.y6{bottom:955.803000px;}
.y17c{bottom:962.617500px;}
.yd9{bottom:963.427938px;}
.y95{bottom:963.531000px;}
.y5a{bottom:977.142437px;}
.yd8{bottom:978.622044px;}
.y17b{bottom:979.056000px;}
.y94{bottom:979.969500px;}
.y5{bottom:984.751500px;}
.y59{bottom:991.100752px;}
.yd7{bottom:993.816149px;}
.y17a{bottom:995.494500px;}
.y93{bottom:996.408000px;}
.y4{bottom:1001.190000px;}
.y58{bottom:1005.059067px;}
.y179{bottom:1011.933000px;}
.y92{bottom:1012.846500px;}
.yd6{bottom:1015.942505px;}
.y57{bottom:1019.017382px;}
.y178{bottom:1028.371500px;}
.y91{bottom:1029.285000px;}
.y56{bottom:1032.975696px;}
.y3{bottom:1038.550500px;}
.y177{bottom:1044.810000px;}
.y90{bottom:1045.723500px;}
.y55{bottom:1046.934011px;}
.y54{bottom:1060.892326px;}
.y176{bottom:1061.248500px;}
.y8f{bottom:1062.162000px;}
.y2{bottom:1064.851500px;}
.y53{bottom:1074.850641px;}
.y175{bottom:1077.687000px;}
.y8e{bottom:1078.600500px;}
.y1{bottom:1091.154000px;}
.y174{bottom:1094.125500px;}
.y8d{bottom:1095.039000px;}
.y52{bottom:1095.886471px;}
.y173{bottom:1110.564000px;}
.yd5{bottom:1110.649518px;}
.y8c{bottom:1111.477500px;}
.y172{bottom:1127.002500px;}
.y51{bottom:1127.916000px;}
.yd4{bottom:1143.441000px;}
.y50{bottom:1144.354500px;}
.hf{height:14.764573px;}
.h11{height:21.072960px;}
.h7{height:23.135700px;}
.h5{height:23.141700px;}
.h9{height:23.384273px;}
.h18{height:25.084080px;}
.h13{height:25.285549px;}
.h10{height:29.833916px;}
.h19{height:33.445524px;}
.h1a{height:33.462372px;}
.h16{height:33.714065px;}
.h14{height:33.714149px;}
.hb{height:33.838335px;}
.h1b{height:34.014431px;}
.h15{height:34.385649px;}
.ha{height:35.865450px;}
.hd{height:40.474547px;}
.h4{height:42.440676px;}
.h6{height:44.831700px;}
.he{height:48.012760px;}
.h8{height:51.944996px;}
.h2{height:58.580340px;}
.h3{height:70.786435px;}
.h12{height:254.918160px;}
.h17{height:257.402880px;}
.hc{height:948.569190px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:376.307760px;}
.w4{width:376.320000px;}
.w2{width:735.171960px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:8.428520px;}
.x31{left:13.739315px;}
.x36{left:17.153413px;}
.x3a{left:21.532579px;}
.x37{left:25.483470px;}
.x38{left:28.203980px;}
.xb{left:61.228500px;}
.x34{left:62.391220px;}
.x2c{left:66.216947px;}
.x2d{left:67.367701px;}
.xf{left:72.352129px;}
.xe{left:73.682436px;}
.x15{left:74.695321px;}
.x40{left:76.168500px;}
.x11{left:77.833500px;}
.x14{left:80.575500px;}
.x3b{left:81.962496px;}
.x2e{left:83.644500px;}
.x33{left:87.398084px;}
.x10{left:89.658855px;}
.x1b{left:91.116000px;}
.x12{left:92.776500px;}
.x1d{left:95.300509px;}
.xd{left:98.857500px;}
.x9{left:138.613500px;}
.x13{left:170.506500px;}
.x2f{left:172.479000px;}
.xa{left:178.809000px;}
.x35{left:188.047209px;}
.x3e{left:189.084000px;}
.x39{left:195.580579px;}
.x3f{left:198.009000px;}
.x6{left:219.055500px;}
.x7{left:241.708500px;}
.x1{left:262.842000px;}
.x2{left:276.063000px;}
.x5{left:283.821000px;}
.x4{left:294.790500px;}
.x16{left:298.878363px;}
.x17{left:300.343157px;}
.x3{left:316.329000px;}
.x8{left:342.538500px;}
.xc{left:458.787000px;}
.x41{left:473.728500px;}
.x3c{left:475.392000px;}
.x3d{left:490.336500px;}
.x30{left:496.356000px;}
.x1e{left:530.267308px;}
.x1c{left:544.904061px;}
.x1f{left:560.827439px;}
.x19{left:579.427410px;}
.x18{left:581.736392px;}
.x1a{left:583.385238px;}
.x20{left:590.673548px;}
.x21{left:612.152431px;}
.x22{left:633.175173px;}
.x23{left:658.103544px;}
.x24{left:680.801117px;}
.x25{left:702.280000px;}
.x26{left:723.302741px;}
.x27{left:747.011036px;}
.x28{left:768.488533px;}
.x29{left:789.967417px;}
.x2a{left:810.990158px;}
.x2b{left:834.698453px;}
@media print{
.v3{vertical-align:-19.280000pt;}
.v6{vertical-align:-16.032000pt;}
.v4{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:17.825434pt;}
.v2{vertical-align:19.285333pt;}
.v1{vertical-align:26.992000pt;}
.ls4{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000294pt;}
.lsd{letter-spacing:0.000324pt;}
.ls11{letter-spacing:0.000528pt;}
.lsc{letter-spacing:0.000826pt;}
.lsf{letter-spacing:0.001238pt;}
.lsb{letter-spacing:0.006361pt;}
.ls10{letter-spacing:0.007692pt;}
.ls2{letter-spacing:11.510586pt;}
.ls9{letter-spacing:18.827300pt;}
.ls1{letter-spacing:20.363919pt;}
.ls0{letter-spacing:20.369253pt;}
.ls3{letter-spacing:22.578591pt;}
.lsa{letter-spacing:24.070602pt;}
.ls8{letter-spacing:26.566933pt;}
.ls5{letter-spacing:28.394123pt;}
.ls7{letter-spacing:28.434227pt;}
.ls6{letter-spacing:55.424686pt;}
.wsb3{word-spacing:-34.203935pt;}
.wsba{word-spacing:-33.834679pt;}
.wsb6{word-spacing:-33.535900pt;}
.wsb8{word-spacing:-33.285537pt;}
.wsd3{word-spacing:-26.566933pt;}
.ws8b{word-spacing:-24.555816pt;}
.wse6{word-spacing:-17.481042pt;}
.wsee{word-spacing:-17.055971pt;}
.wsa3{word-spacing:-14.771215pt;}
.ws3f{word-spacing:-14.718081pt;}
.wsae{word-spacing:-14.664947pt;}
.ws9c{word-spacing:-14.611813pt;}
.ws3d{word-spacing:-14.558679pt;}
.ws93{word-spacing:-14.452412pt;}
.ws7f{word-spacing:-14.399278pt;}
.ws85{word-spacing:-14.293010pt;}
.wsc6{word-spacing:-14.186742pt;}
.ws73{word-spacing:-14.133609pt;}
.ws54{word-spacing:-14.027341pt;}
.ws3c{word-spacing:-13.974207pt;}
.ws66{word-spacing:-13.921073pt;}
.wsd4{word-spacing:-13.867939pt;}
.ws41{word-spacing:-13.761671pt;}
.ws5c{word-spacing:-13.708538pt;}
.ws42{word-spacing:-13.655404pt;}
.ws27{word-spacing:-13.602270pt;}
.ws95{word-spacing:-13.549136pt;}
.ws60{word-spacing:-13.496002pt;}
.ws33{word-spacing:-13.442868pt;}
.ws6a{word-spacing:-13.389734pt;}
.ws9d{word-spacing:-13.283467pt;}
.ws50{word-spacing:-13.230333pt;}
.ws29{word-spacing:-13.177199pt;}
.wsab{word-spacing:-13.070931pt;}
.ws21{word-spacing:-12.964663pt;}
.ws79{word-spacing:-12.911530pt;}
.ws6d{word-spacing:-12.858396pt;}
.ws9a{word-spacing:-12.698994pt;}
.ws9f{word-spacing:-12.645860pt;}
.ws63{word-spacing:-12.539593pt;}
.ws58{word-spacing:-12.486459pt;}
.ws72{word-spacing:-12.433325pt;}
.wsdf{word-spacing:-12.380191pt;}
.wsd7{word-spacing:-12.273923pt;}
.ws7c{word-spacing:-12.167655pt;}
.ws57{word-spacing:-12.061388pt;}
.ws5e{word-spacing:-12.008254pt;}
.ws1b{word-spacing:-11.901986pt;}
.ws4e{word-spacing:-11.848852pt;}
.wsd5{word-spacing:-11.795718pt;}
.ws77{word-spacing:-11.742585pt;}
.wsa6{word-spacing:-11.689451pt;}
.ws65{word-spacing:-11.636317pt;}
.ws87{word-spacing:-11.583183pt;}
.ws9e{word-spacing:-11.530049pt;}
.wsc{word-spacing:-11.476915pt;}
.ws6c{word-spacing:-11.423781pt;}
.ws53{word-spacing:-11.370647pt;}
.ws5a{word-spacing:-11.317514pt;}
.ws5d{word-spacing:-11.264380pt;}
.ws44{word-spacing:-11.211246pt;}
.ws4d{word-spacing:-11.158112pt;}
.ws7e{word-spacing:-11.104978pt;}
.wsc3{word-spacing:-11.051844pt;}
.wscd{word-spacing:-10.998710pt;}
.ws55{word-spacing:-10.945577pt;}
.ws94{word-spacing:-10.892443pt;}
.ws25{word-spacing:-10.839309pt;}
.ws20{word-spacing:-10.786175pt;}
.wsa9{word-spacing:-10.679907pt;}
.ws83{word-spacing:-10.626773pt;}
.ws51{word-spacing:-10.520506pt;}
.ws46{word-spacing:-10.467372pt;}
.wsc1{word-spacing:-10.361104pt;}
.ws89{word-spacing:-10.307970pt;}
.ws69{word-spacing:-10.254836pt;}
.ws80{word-spacing:-10.201702pt;}
.ws47{word-spacing:-10.148569pt;}
.wsc8{word-spacing:-10.095435pt;}
.wsa0{word-spacing:-10.042301pt;}
.ws43{word-spacing:-9.989167pt;}
.ws1f{word-spacing:-9.936033pt;}
.ws11{word-spacing:-9.882899pt;}
.ws2a{word-spacing:-9.776631pt;}
.ws23{word-spacing:-9.723498pt;}
.ws2b{word-spacing:-9.704394pt;}
.ws39{word-spacing:-9.670364pt;}
.ws7a{word-spacing:-9.617230pt;}
.wsa7{word-spacing:-9.510962pt;}
.ws82{word-spacing:-9.457828pt;}
.wsaa{word-spacing:-9.404694pt;}
.ws64{word-spacing:-9.351561pt;}
.ws56{word-spacing:-9.298427pt;}
.wsf{word-spacing:-9.245293pt;}
.ws6b{word-spacing:-9.192159pt;}
.ws52{word-spacing:-9.139025pt;}
.ws26{word-spacing:-9.085891pt;}
.ws5b{word-spacing:-9.032757pt;}
.ws24{word-spacing:-8.979623pt;}
.wsec{word-spacing:-8.926490pt;}
.ws2e{word-spacing:-8.896757pt;}
.ws15{word-spacing:-8.873356pt;}
.ws28{word-spacing:-8.820222pt;}
.ws1d{word-spacing:-8.767088pt;}
.ws32{word-spacing:-8.713954pt;}
.wsb1{word-spacing:-8.660820pt;}
.ws2c{word-spacing:-8.641714pt;}
.ws40{word-spacing:-8.607686pt;}
.wsaf{word-spacing:-8.554553pt;}
.ws5f{word-spacing:-8.501419pt;}
.ws68{word-spacing:-8.448285pt;}
.ws31{word-spacing:-8.429178pt;}
.ws78{word-spacing:-8.395151pt;}
.ws3b{word-spacing:-8.342017pt;}
.wsca{word-spacing:-8.235749pt;}
.ws8a{word-spacing:-8.201643pt;}
.wsd{word-spacing:-8.182615pt;}
.wsc9{word-spacing:-8.129482pt;}
.wsc5{word-spacing:-8.076348pt;}
.ws35{word-spacing:-7.863812pt;}
.ws75{word-spacing:-7.810678pt;}
.ws12{word-spacing:-7.757545pt;}
.ws17{word-spacing:-7.704411pt;}
.wsbe{word-spacing:-7.651277pt;}
.ws1e{word-spacing:-7.491875pt;}
.wsd1{word-spacing:-7.385607pt;}
.wse{word-spacing:-7.332474pt;}
.ws6e{word-spacing:-7.279340pt;}
.ws34{word-spacing:-7.173072pt;}
.ws36{word-spacing:-7.119938pt;}
.ws49{word-spacing:-7.110562pt;}
.ws4b{word-spacing:-7.070457pt;}
.ws45{word-spacing:-7.066804pt;}
.ws1c{word-spacing:-7.013670pt;}
.wsa8{word-spacing:-6.960537pt;}
.ws6f{word-spacing:-6.854269pt;}
.ws4f{word-spacing:-6.801135pt;}
.ws59{word-spacing:-6.748001pt;}
.ws10{word-spacing:-6.694867pt;}
.ws71{word-spacing:-6.641733pt;}
.ws98{word-spacing:-6.588599pt;}
.wscb{word-spacing:-6.535466pt;}
.ws1a{word-spacing:-6.482332pt;}
.ws14{word-spacing:-6.429198pt;}
.ws76{word-spacing:-6.376064pt;}
.ws3a{word-spacing:-6.322930pt;}
.ws7b{word-spacing:-6.269796pt;}
.ws37{word-spacing:-6.163529pt;}
.wsc2{word-spacing:-6.004127pt;}
.ws61{word-spacing:-5.950993pt;}
.wse8{word-spacing:-5.897859pt;}
.wsd0{word-spacing:-5.844725pt;}
.wsb0{word-spacing:-5.685324pt;}
.wsdb{word-spacing:-5.579056pt;}
.wsc4{word-spacing:-5.525922pt;}
.ws70{word-spacing:-5.472788pt;}
.wsc0{word-spacing:-5.366521pt;}
.wsd2{word-spacing:-5.313387pt;}
.wscc{word-spacing:-5.207119pt;}
.ws81{word-spacing:-5.153985pt;}
.ws13{word-spacing:-5.100851pt;}
.wsbc{word-spacing:-4.994583pt;}
.wsb2{word-spacing:-4.941450pt;}
.wscf{word-spacing:-4.835182pt;}
.wsac{word-spacing:-4.728914pt;}
.ws62{word-spacing:-4.569513pt;}
.ws86{word-spacing:-4.516379pt;}
.wsbf{word-spacing:-4.463245pt;}
.ws97{word-spacing:-4.410111pt;}
.ws19{word-spacing:-4.250709pt;}
.wsc7{word-spacing:-4.091308pt;}
.ws84{word-spacing:-4.038174pt;}
.wse3{word-spacing:-3.931906pt;}
.wsd6{word-spacing:-3.666237pt;}
.wsb{word-spacing:-3.613103pt;}
.wsad{word-spacing:-3.559969pt;}
.ws30{word-spacing:-3.498343pt;}
.wsce{word-spacing:-3.453701pt;}
.ws88{word-spacing:-3.400567pt;}
.wseb{word-spacing:-3.294300pt;}
.wsdd{word-spacing:-3.028630pt;}
.ws7d{word-spacing:-2.975497pt;}
.ws96{word-spacing:-2.922363pt;}
.ws18{word-spacing:-2.869229pt;}
.ws67{word-spacing:-2.709827pt;}
.ws74{word-spacing:-2.497292pt;}
.wse5{word-spacing:-2.391024pt;}
.wse2{word-spacing:-2.231622pt;}
.ws38{word-spacing:-2.072221pt;}
.ws22{word-spacing:-1.965953pt;}
.wsed{word-spacing:-1.806551pt;}
.ws48{word-spacing:-1.700284pt;}
.ws2f{word-spacing:-1.372983pt;}
.wse9{word-spacing:-1.222079pt;}
.wsd9{word-spacing:-0.743874pt;}
.wsde{word-spacing:-0.478205pt;}
.wsda{word-spacing:-0.053134pt;}
.ws8c{word-spacing:-0.049112pt;}
.ws4a{word-spacing:-0.040105pt;}
.wsb9{word-spacing:-0.032853pt;}
.wsb4{word-spacing:-0.006701pt;}
.ws16{word-spacing:0.000000pt;}
.wsbd{word-spacing:0.212535pt;}
.ws3e{word-spacing:0.425071pt;}
.wse4{word-spacing:1.328347pt;}
.ws2d{word-spacing:3.430331pt;}
.wsd8{word-spacing:4.622646pt;}
.wse7{word-spacing:7.651277pt;}
.wse1{word-spacing:8.288883pt;}
.ws4{word-spacing:8.784977pt;}
.ws2{word-spacing:8.811631pt;}
.ws6{word-spacing:8.812625pt;}
.ws3{word-spacing:8.820494pt;}
.ws1{word-spacing:8.823461pt;}
.ws9{word-spacing:11.479978pt;}
.wsa2{word-spacing:11.742585pt;}
.ws9b{word-spacing:11.901986pt;}
.wsa5{word-spacing:11.955120pt;}
.ws99{word-spacing:13.814805pt;}
.wse0{word-spacing:13.921073pt;}
.ws92{word-spacing:14.245149pt;}
.ws91{word-spacing:14.282342pt;}
.wsbb{word-spacing:14.664947pt;}
.ws90{word-spacing:14.733490pt;}
.wsef{word-spacing:16.046428pt;}
.wsa1{word-spacing:16.471499pt;}
.wsa4{word-spacing:18.118649pt;}
.wsdc{word-spacing:18.384318pt;}
.wsea{word-spacing:18.437452pt;}
.ws7{word-spacing:18.915657pt;}
.ws8{word-spacing:18.968790pt;}
.ws5{word-spacing:20.333442pt;}
.wsa{word-spacing:26.301264pt;}
.ws0{word-spacing:27.821012pt;}
.ws8d{word-spacing:39.240195pt;}
.ws8e{word-spacing:42.383339pt;}
.ws8f{word-spacing:45.624707pt;}
.wsb5{word-spacing:85.297397pt;}
.wsb7{word-spacing:151.667356pt;}
.ws4c{word-spacing:530.934000pt;}
._1c{margin-left:-33.259705pt;}
._a{margin-left:-26.536278pt;}
._3b{margin-left:-6.514202pt;}
._4{margin-left:-5.100851pt;}
._6{margin-left:-3.517442pt;}
._0{margin-left:-2.306020pt;}
._7{margin-left:-1.317740pt;}
._5{width:1.264606pt;}
._1{width:2.306020pt;}
._16{width:6.248582pt;}
._14{width:8.150745pt;}
._15{width:10.520506pt;}
._2{width:13.933490pt;}
._3e{width:15.090018pt;}
._13{width:16.067691pt;}
._8{width:17.608573pt;}
._35{width:19.149455pt;}
._3{width:20.350271pt;}
._11{width:21.327944pt;}
._3a{width:23.400165pt;}
._12{width:26.566933pt;}
._3f{width:27.576477pt;}
._3d{width:28.639154pt;}
._43{width:30.020635pt;}
._41{width:36.417962pt;}
._17{width:39.289306pt;}
._1d{width:40.664432pt;}
._21{width:42.432451pt;}
._23{width:43.611130pt;}
._26{width:45.673819pt;}
._22{width:46.803386pt;}
._3c{width:47.714212pt;}
._40{width:48.723756pt;}
._42{width:53.048862pt;}
._27{width:55.250587pt;}
._25{width:63.188076pt;}
._20{width:65.889216pt;}
._18{width:67.774053pt;}
._1b{width:89.231585pt;}
._28{width:90.674042pt;}
._37{width:97.511780pt;}
._19{width:99.481573pt;}
._36{width:109.575317pt;}
._1e{width:114.724775pt;}
._31{width:115.739570pt;}
._32{width:118.218168pt;}
._30{width:119.488603pt;}
._2e{width:125.492519pt;}
._29{width:127.493799pt;}
._2b{width:131.078948pt;}
._33{width:134.958767pt;}
._d{width:141.237299pt;}
._39{width:144.520923pt;}
._1a{width:146.794671pt;}
._f{width:156.878129pt;}
._38{width:161.719255pt;}
._10{width:178.173721pt;}
._b{width:196.531740pt;}
._2a{width:198.312774pt;}
._24{width:204.599063pt;}
._9{width:207.696490pt;}
._e{width:221.767522pt;}
._2f{width:274.574866pt;}
._2d{width:283.374122pt;}
._1f{width:333.418876pt;}
._34{width:335.690308pt;}
._2c{width:356.059339pt;}
._c{width:359.091706pt;}
.fs8{font-size:26.566933pt;}
.fsd{font-size:32.112640pt;}
.fs9{font-size:32.370560pt;}
.fs7{font-size:34.378044pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:40.104693pt;}
.fs3{font-size:42.507200pt;}
.fse{font-size:42.816960pt;}
.fsf{font-size:42.838529pt;}
.fsc{font-size:43.160747pt;}
.fsa{font-size:43.160855pt;}
.fs10{font-size:43.545275pt;}
.fsb{font-size:44.020509pt;}
.fs6{font-size:49.111633pt;}
.fs5{font-size:52.629760pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:74.387733pt;}
.y0{bottom:0.000000pt;}
.yd0{bottom:0.850369pt;}
.ycd{bottom:0.932603pt;}
.yc9{bottom:0.933699pt;}
.y12a{bottom:2.859818pt;}
.y13a{bottom:2.953600pt;}
.y129{bottom:12.975618pt;}
.y131{bottom:12.985099pt;}
.y139{bottom:14.646174pt;}
.y13b{bottom:19.678893pt;}
.y12b{bottom:19.719471pt;}
.y130{bottom:31.302601pt;}
.y12e{bottom:35.904751pt;}
.y13e{bottom:41.756333pt;}
.y12f{bottom:44.410520pt;}
.y12c{bottom:54.517823pt;}
.y13c{bottom:62.830253pt;}
.y140{bottom:81.568380pt;}
.y12d{bottom:89.316175pt;}
.y13f{bottom:94.788753pt;}
.y8b{bottom:100.369333pt;}
.y34{bottom:100.370667pt;}
.yc7{bottom:101.964000pt;}
.y13d{bottom:105.981613pt;}
.y1ce{bottom:110.450667pt;}
.y4f{bottom:111.586667pt;}
.y33{bottom:113.521333pt;}
.y8a{bottom:114.981333pt;}
.y121{bottom:114.982667pt;}
.yc6{bottom:116.576000pt;}
.y1cd{bottom:125.062667pt;}
.y4e{bottom:126.198667pt;}
.y32{bottom:126.672000pt;}
.y135{bottom:127.069181pt;}
.y128{bottom:128.395264pt;}
.y89{bottom:129.593333pt;}
.y120{bottom:129.594667pt;}
.yc5{bottom:131.188000pt;}
.y125{bottom:135.544976pt;}
.y138{bottom:137.606676pt;}
.y123{bottom:138.478558pt;}
.y1cc{bottom:139.674667pt;}
.y31{bottom:139.822667pt;}
.y4d{bottom:140.810667pt;}
.y127{bottom:141.074947pt;}
.y88{bottom:144.205333pt;}
.y11f{bottom:144.206667pt;}
.yc4{bottom:145.800000pt;}
.yd3{bottom:151.857333pt;}
.y30{bottom:152.973333pt;}
.y126{bottom:153.754765pt;}
.y1cb{bottom:154.286667pt;}
.y4c{bottom:155.422667pt;}
.y87{bottom:158.817333pt;}
.yc3{bottom:160.412000pt;}
.y136{bottom:161.991677pt;}
.y2f{bottom:166.124000pt;}
.yd2{bottom:166.469333pt;}
.y1ca{bottom:168.898667pt;}
.y86{bottom:173.429333pt;}
.yc2{bottom:175.024000pt;}
.y4b{bottom:178.004000pt;}
.y104{bottom:181.400000pt;}
.y2e{bottom:183.025333pt;}
.y1c9{bottom:183.510667pt;}
.y85{bottom:188.041333pt;}
.yc1{bottom:189.636000pt;}
.y171{bottom:190.228000pt;}
.y124{bottom:190.574928pt;}
.yc8{bottom:191.708000pt;}
.y4a{bottom:192.616000pt;}
.ycf{bottom:193.481869pt;}
.y103{bottom:196.012000pt;}
.y137{bottom:196.914173pt;}
.y1c8{bottom:198.122667pt;}
.y142{bottom:198.794636pt;}
.y2d{bottom:198.964000pt;}
.y84{bottom:202.653333pt;}
.yc0{bottom:204.248000pt;}
.y49{bottom:207.228000pt;}
.y1a4{bottom:210.090667pt;}
.y102{bottom:210.624000pt;}
.y141{bottom:211.964832pt;}
.y1c7{bottom:212.734667pt;}
.y2c{bottom:213.576000pt;}
.y153{bottom:217.265333pt;}
.ybf{bottom:218.860000pt;}
.y48{bottom:221.840000pt;}
.y101{bottom:225.236000pt;}
.y170{bottom:225.501333pt;}
.y1c6{bottom:227.346667pt;}
.y2b{bottom:228.188000pt;}
.y83{bottom:231.292000pt;}
.y152{bottom:231.877333pt;}
.ybe{bottom:233.472000pt;}
.y47{bottom:236.452000pt;}
.y1a3{bottom:239.574667pt;}
.y100{bottom:239.848000pt;}
.y16f{bottom:240.113333pt;}
.y1c5{bottom:241.958667pt;}
.y2a{bottom:242.800000pt;}
.ybd{bottom:248.084000pt;}
.y46{bottom:251.064000pt;}
.y1a2{bottom:254.186667pt;}
.yff{bottom:254.460000pt;}
.y16e{bottom:254.725333pt;}
.y1c4{bottom:256.570667pt;}
.y29{bottom:257.412000pt;}
.y82{bottom:258.017333pt;}
.y151{bottom:262.565333pt;}
.ybc{bottom:262.696000pt;}
.y45{bottom:265.676000pt;}
.y1a1{bottom:268.798667pt;}
.y11e{bottom:269.072000pt;}
.y16d{bottom:269.337333pt;}
.y1c3{bottom:271.182667pt;}
.y28{bottom:272.024000pt;}
.y81{bottom:272.629333pt;}
.yfe{bottom:277.041333pt;}
.ybb{bottom:277.308000pt;}
.y44{bottom:280.288000pt;}
.y1a0{bottom:283.410667pt;}
.y11d{bottom:283.684000pt;}
.y16c{bottom:283.949333pt;}
.y1c2{bottom:285.794667pt;}
.y27{bottom:286.636000pt;}
.y80{bottom:287.241333pt;}
.yfd{bottom:291.653333pt;}
.yba{bottom:291.920000pt;}
.y150{bottom:293.866667pt;}
.y43{bottom:294.900000pt;}
.y19f{bottom:298.022667pt;}
.y1c1{bottom:300.406667pt;}
.y26{bottom:301.248000pt;}
.y7f{bottom:301.853333pt;}
.yb9{bottom:306.532000pt;}
.y14f{bottom:308.478667pt;}
.y42{bottom:309.512000pt;}
.y19e{bottom:312.634667pt;}
.y11c{bottom:313.770667pt;}
.yfc{bottom:314.236000pt;}
.y1c0{bottom:315.018667pt;}
.y25{bottom:315.860000pt;}
.y7e{bottom:316.465333pt;}
.y16b{bottom:321.144000pt;}
.y14e{bottom:323.089333pt;}
.y41{bottom:324.124000pt;}
.y19d{bottom:327.246667pt;}
.yfb{bottom:328.848000pt;}
.yb8{bottom:329.113333pt;}
.y1bf{bottom:329.629333pt;}
.y24{bottom:330.472000pt;}
.y7d{bottom:331.077333pt;}
.y16a{bottom:335.756000pt;}
.y14d{bottom:337.701333pt;}
.y40{bottom:338.736000pt;}
.y19c{bottom:341.858667pt;}
.y11b{bottom:343.390667pt;}
.yfa{bottom:343.460000pt;}
.yb7{bottom:343.725333pt;}
.y1be{bottom:344.241333pt;}
.y23{bottom:345.082667pt;}
.y7c{bottom:345.689333pt;}
.y169{bottom:350.368000pt;}
.y14c{bottom:352.313333pt;}
.y3f{bottom:353.348000pt;}
.ycc{bottom:353.956586pt;}
.y19b{bottom:356.470667pt;}
.y11a{bottom:358.002667pt;}
.yf9{bottom:358.072000pt;}
.yb6{bottom:358.337333pt;}
.y1bd{bottom:358.853333pt;}
.y22{bottom:359.694667pt;}
.y7b{bottom:360.301333pt;}
.y168{bottom:364.978667pt;}
.y14b{bottom:366.925333pt;}
.y3e{bottom:367.960000pt;}
.y19a{bottom:371.082667pt;}
.y119{bottom:372.614667pt;}
.yf8{bottom:372.684000pt;}
.yb5{bottom:372.949333pt;}
.y1bc{bottom:373.465333pt;}
.y21{bottom:374.306667pt;}
.y7a{bottom:374.913333pt;}
.y167{bottom:379.590667pt;}
.y14a{bottom:381.537333pt;}
.y3d{bottom:382.572000pt;}
.y199{bottom:385.694667pt;}
.y118{bottom:387.226667pt;}
.yf7{bottom:387.296000pt;}
.yb4{bottom:387.561333pt;}
.y1bb{bottom:388.077333pt;}
.y20{bottom:388.918667pt;}
.y79{bottom:389.525333pt;}
.y166{bottom:394.202667pt;}
.y149{bottom:396.149333pt;}
.y3c{bottom:397.184000pt;}
.y198{bottom:400.306667pt;}
.yf6{bottom:401.908000pt;}
.yb3{bottom:402.173333pt;}
.y1ba{bottom:402.689333pt;}
.y1f{bottom:403.530667pt;}
.y78{bottom:404.137333pt;}
.y165{bottom:408.814667pt;}
.y148{bottom:410.761333pt;}
.y197{bottom:414.918667pt;}
.yb2{bottom:416.785333pt;}
.y1b9{bottom:417.301333pt;}
.y117{bottom:417.313333pt;}
.y1e{bottom:418.142667pt;}
.y77{bottom:418.749333pt;}
.y3b{bottom:419.765333pt;}
.y164{bottom:423.426667pt;}
.yf5{bottom:424.489333pt;}
.y147{bottom:425.373333pt;}
.y196{bottom:429.530667pt;}
.yb1{bottom:431.397333pt;}
.y1b8{bottom:431.913333pt;}
.y1d{bottom:432.754667pt;}
.y76{bottom:433.361333pt;}
.y3a{bottom:434.377333pt;}
.y163{bottom:438.038667pt;}
.yf4{bottom:439.101333pt;}
.y146{bottom:439.985333pt;}
.y195{bottom:444.141333pt;}
.yb0{bottom:446.009333pt;}
.y1b7{bottom:446.525333pt;}
.y116{bottom:446.934667pt;}
.y1c{bottom:447.366667pt;}
.y75{bottom:447.973333pt;}
.y39{bottom:448.989333pt;}
.y162{bottom:452.650667pt;}
.yf3{bottom:453.713333pt;}
.y145{bottom:454.597333pt;}
.y194{bottom:458.753333pt;}
.yaf{bottom:460.621333pt;}
.y1b6{bottom:461.137333pt;}
.y115{bottom:461.546667pt;}
.y1b{bottom:461.978667pt;}
.y74{bottom:462.585333pt;}
.y38{bottom:463.601333pt;}
.y161{bottom:467.262667pt;}
.yf2{bottom:468.325333pt;}
.y193{bottom:473.365333pt;}
.y1b5{bottom:475.749333pt;}
.y114{bottom:476.158667pt;}
.y1a{bottom:476.590667pt;}
.y144{bottom:477.502667pt;}
.y37{bottom:478.213333pt;}
.y160{bottom:481.874667pt;}
.yf1{bottom:482.937333pt;}
.yae{bottom:483.202667pt;}
.y73{bottom:485.166667pt;}
.y192{bottom:487.977333pt;}
.y1b4{bottom:490.361333pt;}
.y113{bottom:490.770667pt;}
.y19{bottom:491.202667pt;}
.y143{bottom:492.114667pt;}
.y36{bottom:492.825333pt;}
.yf0{bottom:497.549333pt;}
.yad{bottom:497.814667pt;}
.y72{bottom:499.778667pt;}
.y15f{bottom:504.457333pt;}
.y1b3{bottom:504.973333pt;}
.y35{bottom:507.437333pt;}
.y191{bottom:510.560000pt;}
.yac{bottom:512.426667pt;}
.ycb{bottom:512.830481pt;}
.yce{bottom:512.877629pt;}
.y112{bottom:513.352000pt;}
.y71{bottom:514.390667pt;}
.y134{bottom:517.353333pt;}
.y15e{bottom:519.069333pt;}
.y1b2{bottom:519.585333pt;}
.yef{bottom:520.130667pt;}
.y18{bottom:522.049333pt;}
.y190{bottom:525.172000pt;}
.yab{bottom:527.038667pt;}
.y111{bottom:527.964000pt;}
.y70{bottom:529.002667pt;}
.y15d{bottom:533.681333pt;}
.y1b1{bottom:534.197333pt;}
.yee{bottom:534.742667pt;}
.y18f{bottom:539.784000pt;}
.yaa{bottom:541.650667pt;}
.y110{bottom:542.576000pt;}
.y6f{bottom:543.614667pt;}
.y15c{bottom:548.293333pt;}
.y1b0{bottom:548.809333pt;}
.yed{bottom:549.354667pt;}
.y18e{bottom:554.396000pt;}
.y17{bottom:555.568000pt;}
.ya9{bottom:556.262667pt;}
.y10f{bottom:557.188000pt;}
.y6e{bottom:558.226667pt;}
.y15b{bottom:562.905333pt;}
.y1af{bottom:563.421333pt;}
.yec{bottom:563.966667pt;}
.y18d{bottom:569.008000pt;}
.y16{bottom:570.180000pt;}
.ya8{bottom:570.874667pt;}
.y10e{bottom:571.800000pt;}
.y6d{bottom:572.838667pt;}
.y15a{bottom:577.517333pt;}
.y1ae{bottom:578.033333pt;}
.yeb{bottom:578.578667pt;}
.y18c{bottom:583.620000pt;}
.ya7{bottom:585.486667pt;}
.y10d{bottom:586.412000pt;}
.y6c{bottom:587.450667pt;}
.y159{bottom:592.129333pt;}
.y1ad{bottom:592.645333pt;}
.yea{bottom:593.190667pt;}
.ya6{bottom:600.098667pt;}
.y10c{bottom:601.024000pt;}
.y6b{bottom:602.062667pt;}
.y15{bottom:603.166667pt;}
.y18b{bottom:606.201333pt;}
.y158{bottom:606.740000pt;}
.y1ac{bottom:607.257333pt;}
.ye9{bottom:607.802667pt;}
.ya5{bottom:614.710667pt;}
.y10b{bottom:615.636000pt;}
.y6a{bottom:616.674667pt;}
.y14{bottom:617.778667pt;}
.y18a{bottom:620.813333pt;}
.y1ab{bottom:621.869333pt;}
.ye8{bottom:622.414667pt;}
.ya4{bottom:629.322667pt;}
.y10a{bottom:630.248000pt;}
.y69{bottom:631.286667pt;}
.y13{bottom:632.390667pt;}
.y189{bottom:635.425333pt;}
.y1aa{bottom:636.481333pt;}
.ye7{bottom:637.026667pt;}
.ya3{bottom:643.934667pt;}
.y109{bottom:644.860000pt;}
.y12{bottom:647.002667pt;}
.y1a9{bottom:651.093333pt;}
.ye6{bottom:651.638667pt;}
.y68{bottom:653.868000pt;}
.ya2{bottom:658.546667pt;}
.y108{bottom:659.472000pt;}
.y11{bottom:661.614667pt;}
.y188{bottom:665.444000pt;}
.y1a8{bottom:665.705333pt;}
.ye5{bottom:666.250667pt;}
.yd1{bottom:668.252741pt;}
.yca{bottom:668.336071pt;}
.y67{bottom:668.480000pt;}
.ya1{bottom:673.158667pt;}
.y107{bottom:674.084000pt;}
.y10{bottom:676.226667pt;}
.y1a7{bottom:680.317333pt;}
.ye4{bottom:680.862667pt;}
.y66{bottom:683.092000pt;}
.ya0{bottom:687.770667pt;}
.y106{bottom:688.696000pt;}
.yf{bottom:690.838667pt;}
.y187{bottom:694.928000pt;}
.y1a6{bottom:694.929333pt;}
.y65{bottom:697.704000pt;}
.y9f{bottom:702.382667pt;}
.y105{bottom:703.308000pt;}
.ye{bottom:705.450667pt;}
.y186{bottom:709.540000pt;}
.y1a5{bottom:709.541333pt;}
.y64{bottom:712.316000pt;}
.y157{bottom:716.994667pt;}
.ye3{bottom:717.920000pt;}
.yd{bottom:720.062667pt;}
.y185{bottom:724.152000pt;}
.y9e{bottom:724.964000pt;}
.y63{bottom:726.928000pt;}
.y156{bottom:731.606667pt;}
.yc{bottom:734.674667pt;}
.y184{bottom:738.764000pt;}
.y9d{bottom:739.576000pt;}
.y62{bottom:741.540000pt;}
.y155{bottom:746.218667pt;}
.ye2{bottom:748.826667pt;}
.yb{bottom:749.286667pt;}
.y183{bottom:753.376000pt;}
.y9c{bottom:754.188000pt;}
.y61{bottom:756.152000pt;}
.ye1{bottom:756.508000pt;}
.y133{bottom:759.909333pt;}
.y154{bottom:760.830667pt;}
.ye0{bottom:763.197333pt;}
.y182{bottom:767.988000pt;}
.y9b{bottom:768.800000pt;}
.y60{bottom:770.764000pt;}
.y132{bottom:774.521333pt;}
.ydf{bottom:775.345160pt;}
.y181{bottom:782.600000pt;}
.y9a{bottom:783.412000pt;}
.y5f{bottom:785.376000pt;}
.ya{bottom:786.334667pt;}
.yde{bottom:788.851031pt;}
.y180{bottom:797.212000pt;}
.y99{bottom:798.024000pt;}
.y122{bottom:799.760000pt;}
.y5e{bottom:799.988000pt;}
.y9{bottom:800.946667pt;}
.ydd{bottom:802.356903pt;}
.y17f{bottom:811.824000pt;}
.y98{bottom:812.636000pt;}
.y5d{bottom:814.600000pt;}
.ydc{bottom:815.862775pt;}
.y8{bottom:820.380000pt;}
.y17e{bottom:826.436000pt;}
.y97{bottom:827.248000pt;}
.y5c{bottom:829.212000pt;}
.ydb{bottom:829.368646pt;}
.y7{bottom:830.170667pt;}
.y17d{bottom:841.048000pt;}
.y96{bottom:841.860000pt;}
.yda{bottom:842.874518pt;}
.y5b{bottom:843.824000pt;}
.y6{bottom:849.602667pt;}
.y17c{bottom:855.660000pt;}
.yd9{bottom:856.380389pt;}
.y95{bottom:856.472000pt;}
.y5a{bottom:868.571055pt;}
.yd8{bottom:869.886261pt;}
.y17b{bottom:870.272000pt;}
.y94{bottom:871.084000pt;}
.y5{bottom:875.334667pt;}
.y59{bottom:880.978446pt;}
.yd7{bottom:883.392133pt;}
.y17a{bottom:884.884000pt;}
.y93{bottom:885.696000pt;}
.y4{bottom:889.946667pt;}
.y58{bottom:893.385837pt;}
.y179{bottom:899.496000pt;}
.y92{bottom:900.308000pt;}
.yd6{bottom:903.060004pt;}
.y57{bottom:905.793228pt;}
.y178{bottom:914.108000pt;}
.y91{bottom:914.920000pt;}
.y56{bottom:918.200619pt;}
.y3{bottom:923.156000pt;}
.y177{bottom:928.720000pt;}
.y90{bottom:929.532000pt;}
.y55{bottom:930.608010pt;}
.y54{bottom:943.015401pt;}
.y176{bottom:943.332000pt;}
.y8f{bottom:944.144000pt;}
.y2{bottom:946.534667pt;}
.y53{bottom:955.422792pt;}
.y175{bottom:957.944000pt;}
.y8e{bottom:958.756000pt;}
.y1{bottom:969.914667pt;}
.y174{bottom:972.556000pt;}
.y8d{bottom:973.368000pt;}
.y52{bottom:974.121308pt;}
.y173{bottom:987.168000pt;}
.yd5{bottom:987.244016pt;}
.y8c{bottom:987.980000pt;}
.y172{bottom:1001.780000pt;}
.y51{bottom:1002.592000pt;}
.yd4{bottom:1016.392000pt;}
.y50{bottom:1017.204000pt;}
.hf{height:13.124065pt;}
.h11{height:18.731520pt;}
.h7{height:20.565067pt;}
.h5{height:20.570400pt;}
.h9{height:20.786021pt;}
.h18{height:22.296960pt;}
.h13{height:22.476043pt;}
.h10{height:26.519037pt;}
.h19{height:29.729354pt;}
.h1a{height:29.744330pt;}
.h16{height:29.968058pt;}
.h14{height:29.968132pt;}
.hb{height:30.078520pt;}
.h1b{height:30.235049pt;}
.h15{height:30.565021pt;}
.ha{height:31.880400pt;}
.hd{height:35.977375pt;}
.h4{height:37.725045pt;}
.h6{height:39.850400pt;}
.he{height:42.678009pt;}
.h8{height:46.173330pt;}
.h2{height:52.071413pt;}
.h3{height:62.921275pt;}
.h12{height:226.593920pt;}
.h17{height:228.802560pt;}
.hc{height:843.172613pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:334.495787pt;}
.w4{width:334.506667pt;}
.w2{width:653.486187pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:7.492018pt;}
.x31{left:12.212724pt;}
.x36{left:15.247478pt;}
.x3a{left:19.140070pt;}
.x37{left:22.651974pt;}
.x38{left:25.070204pt;}
.xb{left:54.425333pt;}
.x34{left:55.458862pt;}
.x2c{left:58.859509pt;}
.x2d{left:59.882401pt;}
.xf{left:64.313004pt;}
.xe{left:65.495499pt;}
.x15{left:66.395841pt;}
.x40{left:67.705333pt;}
.x11{left:69.185333pt;}
.x14{left:71.622667pt;}
.x3b{left:72.855552pt;}
.x2e{left:74.350667pt;}
.x33{left:77.687186pt;}
.x10{left:79.696760pt;}
.x1b{left:80.992000pt;}
.x12{left:82.468000pt;}
.x1d{left:84.711563pt;}
.xd{left:87.873333pt;}
.x9{left:123.212000pt;}
.x13{left:151.561333pt;}
.x2f{left:153.314667pt;}
.xa{left:158.941333pt;}
.x35{left:167.153075pt;}
.x3e{left:168.074667pt;}
.x39{left:173.849403pt;}
.x3f{left:176.008000pt;}
.x6{left:194.716000pt;}
.x7{left:214.852000pt;}
.x1{left:233.637333pt;}
.x2{left:245.389333pt;}
.x5{left:252.285333pt;}
.x4{left:262.036000pt;}
.x16{left:265.669656pt;}
.x17{left:266.971695pt;}
.x3{left:281.181333pt;}
.x8{left:304.478667pt;}
.xc{left:407.810667pt;}
.x41{left:421.092000pt;}
.x3c{left:422.570667pt;}
.x3d{left:435.854667pt;}
.x30{left:441.205333pt;}
.x1e{left:471.348718pt;}
.x1c{left:484.359165pt;}
.x1f{left:498.513279pt;}
.x19{left:515.046586pt;}
.x18{left:517.099016pt;}
.x1a{left:518.564656pt;}
.x20{left:525.043154pt;}
.x21{left:544.135495pt;}
.x22{left:562.822376pt;}
.x23{left:584.980928pt;}
.x24{left:605.156548pt;}
.x25{left:624.248889pt;}
.x26{left:642.935770pt;}
.x27{left:664.009810pt;}
.x28{left:683.100919pt;}
.x29{left:702.193259pt;}
.x2a{left:720.880141pt;}
.x2b{left:741.954181pt;}
}




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