
    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_fe2bc76b95537889d1648e21.woff')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_4856c1dec829375e3df9e797.woff')format("woff");}.ff2{font-family:ff2;line-height:1.133000;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_d8573e64abd287f53744a229.woff')format("woff");}.ff3{font-family:ff3;line-height:1.075000;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_ffdf8d300aeb81117dad97c5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.075000;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_24c096337e2e61d433cf622e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.133000;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_3b188432e447e465db922d3d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_cc1c659dce0c51d8dd489c7e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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_a1adf40d1e2a57972410aec5.woff')format("woff");}.ff8{font-family:ff8;line-height:1.121582;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_7e424aa87f35f11d9140fc00.woff')format("woff");}.ff9{font-family:ff9;line-height:0.981445;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_2bfaf786b3748223446bafec.woff')format("woff");}.ffa{font-family:ffa;line-height:0.981445;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_7c3917f0b3073351f18d6af3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.909668;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_68d1cccc47766172003347a7.woff')format("woff");}.ffc{font-family:ffc;line-height:0.975586;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_d7f01ba6bdbe5111275f3ef4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_5a1bb62ee5eecda0e4727dd3.woff')format("woff");}.ffe{font-family:ffe;line-height:0.975586;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_9d14188222f21ee6a4f0283b.woff')format("woff");}.fff{font-family:fff;line-height:0.962402;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_8244851a5fbde708d2f958e3.woff')format("woff");}.ff10{font-family:ff10;line-height:0.748047;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_4c4995a2d2fcb1a409f5900d.woff')format("woff");}.ff11{font-family:ff11;line-height:0.731934;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_c95a2130e08ad2e3d8653fc3.woff')format("woff");}.ff12{font-family:ff12;line-height:1.202148;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_f9513198d01b571f7a7ca101.woff')format("woff");}.ff13{font-family:ff13;line-height:0.955500;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_dfb96225989fed5f7f869ee7.woff')format("woff");}.ff14{font-family:ff14;line-height:0.955500;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_3efbd17315dc11d948531293.woff')format("woff");}.ff15{font-family:ff15;line-height:0.912109;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_9400ffdbb531f7363e1b20aa.woff')format("woff");}.ff16{font-family:ff16;line-height:0.752000;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:ff17;src:url('chunks/assets/font_2359d5c948f3eeeb6f930e32.woff')format("woff");}.ff17{font-family:ff17;line-height:0.912109;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:ff18;src:url('chunks/assets/font_641a990e226a6a6f297bff01.woff')format("woff");}.ff18{font-family:ff18;line-height:0.752441;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:ff19;src:url('chunks/assets/font_3ec9754721a41f2cf0291d9c.woff')format("woff");}.ff19{font-family:ff19;line-height:0.961914;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:ff1a;src:url('chunks/assets/font_83ef0b63ba5e88613d97ae73.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.961914;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:ff1b;src:url('chunks/assets/font_b3b14fc57bdcd650df65c20c.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.953613;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(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);}
.v5{vertical-align:-55.950000px;}
.v2{vertical-align:-25.020000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:76.230000px;}
.v3{vertical-align:85.620000px;}
.v1{vertical-align:90.150000px;}
.ls1{letter-spacing:-3.558000px;}
.ls46{letter-spacing:-1.794000px;}
.ls45{letter-spacing:-1.482000px;}
.ls1c{letter-spacing:-1.416000px;}
.ls22{letter-spacing:-1.380000px;}
.ls15{letter-spacing:-1.290000px;}
.ls14{letter-spacing:-1.260000px;}
.ls2b{letter-spacing:-0.642000px;}
.ls2c{letter-spacing:-0.491400px;}
.ls3a{letter-spacing:-0.319200px;}
.ls32{letter-spacing:-0.244800px;}
.ls23{letter-spacing:-0.016680px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.012600px;}
.ls3b{letter-spacing:0.074400px;}
.ls18{letter-spacing:0.124800px;}
.ls39{letter-spacing:0.163200px;}
.ls31{letter-spacing:0.183600px;}
.ls34{letter-spacing:0.363000px;}
.lsa{letter-spacing:0.426000px;}
.ls38{letter-spacing:0.513000px;}
.ls29{letter-spacing:0.554400px;}
.ls4{letter-spacing:0.576000px;}
.ls1f{letter-spacing:0.591600px;}
.ls26{letter-spacing:0.739200px;}
.ls30{letter-spacing:0.757200px;}
.ls1b{letter-spacing:1.176000px;}
.ls24{letter-spacing:1.452000px;}
.ls35{letter-spacing:1.458000px;}
.ls36{letter-spacing:1.572000px;}
.ls13{letter-spacing:1.854000px;}
.ls33{letter-spacing:1.992000px;}
.ls37{letter-spacing:2.004000px;}
.ls2a{letter-spacing:2.664000px;}
.ls2d{letter-spacing:3.498000px;}
.ls3e{letter-spacing:18.825000px;}
.ls2{letter-spacing:23.355000px;}
.ls3{letter-spacing:23.407500px;}
.ls21{letter-spacing:28.925700px;}
.ls3f{letter-spacing:32.647500px;}
.ls40{letter-spacing:32.700000px;}
.ls42{letter-spacing:32.827500px;}
.ls41{letter-spacing:32.880000px;}
.ls44{letter-spacing:35.167500px;}
.ls43{letter-spacing:35.220000px;}
.ls3d{letter-spacing:38.197500px;}
.ls3c{letter-spacing:38.250000px;}
.ls1a{letter-spacing:52.446000px;}
.ls25{letter-spacing:52.822500px;}
.ls27{letter-spacing:52.890000px;}
.ls28{letter-spacing:52.942500px;}
.ls7{letter-spacing:57.547500px;}
.ls5{letter-spacing:63.592500px;}
.lsd{letter-spacing:64.421400px;}
.ls10{letter-spacing:64.512000px;}
.lsb{letter-spacing:66.427500px;}
.ls6{letter-spacing:68.572500px;}
.lsc{letter-spacing:74.302500px;}
.lsf{letter-spacing:76.601400px;}
.lse{letter-spacing:76.692000px;}
.ls20{letter-spacing:112.126350px;}
.ls8{letter-spacing:123.315000px;}
.ls9{letter-spacing:123.367500px;}
.ls1d{letter-spacing:148.571400px;}
.ls2e{letter-spacing:148.601400px;}
.ls1e{letter-spacing:148.662000px;}
.ls2f{letter-spacing:148.692000px;}
.ls17{letter-spacing:150.881400px;}
.ls16{letter-spacing:150.972000px;}
.ls11{letter-spacing:165.615000px;}
.ls12{letter-spacing:165.667500px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-81.631350px;}
.ws2b{word-spacing:-62.486400px;}
.wsd{word-spacing:-54.845400px;}
.ws16{word-spacing:-52.560900px;}
.ws23{word-spacing:-52.113600px;}
.wse{word-spacing:-45.930900px;}
.ws22{word-spacing:-43.868400px;}
.ws24{word-spacing:-43.826700px;}
.ws2{word-spacing:-42.522600px;}
.ws8{word-spacing:-42.483300px;}
.ws1a{word-spacing:-40.836900px;}
.ws6{word-spacing:-40.073700px;}
.ws26{word-spacing:-38.984700px;}
.ws1{word-spacing:-38.964600px;}
.ws1b{word-spacing:-37.806600px;}
.ws1c{word-spacing:-37.767300px;}
.ws14{word-spacing:-35.786400px;}
.ws2c{word-spacing:-33.818700px;}
.ws20{word-spacing:-33.331950px;}
.ws1f{word-spacing:-31.879950px;}
.ws11{word-spacing:-31.448700px;}
.ws10{word-spacing:-31.411350px;}
.ws2a{word-spacing:-31.316700px;}
.wsf{word-spacing:-31.032900px;}
.ws1d{word-spacing:-30.065700px;}
.ws7{word-spacing:-29.514300px;}
.ws1e{word-spacing:-29.497620px;}
.ws2e{word-spacing:-28.335300px;}
.ws29{word-spacing:-26.785950px;}
.wsa{word-spacing:-26.312700px;}
.wsc{word-spacing:-25.512450px;}
.wsb{word-spacing:-25.470000px;}
.ws19{word-spacing:-24.798300px;}
.ws37{word-spacing:-24.238950px;}
.ws3{word-spacing:-22.440300px;}
.ws15{word-spacing:-21.308700px;}
.ws39{word-spacing:-20.418450px;}
.ws3d{word-spacing:-20.376000px;}
.ws38{word-spacing:-18.903300px;}
.ws9{word-spacing:-16.545300px;}
.ws35{word-spacing:-14.923500px;}
.ws17{word-spacing:-14.148000px;}
.ws2f{word-spacing:-2.869500px;}
.ws21{word-spacing:-2.591100px;}
.ws34{word-spacing:-2.388150px;}
.ws36{word-spacing:-2.292300px;}
.ws18{word-spacing:-1.288650px;}
.ws5{word-spacing:0.000000px;}
.ws13{word-spacing:0.218400px;}
.ws2d{word-spacing:20.955450px;}
.ws33{word-spacing:37.710750px;}
.ws32{word-spacing:43.728300px;}
.ws31{word-spacing:44.591700px;}
.ws30{word-spacing:67.320750px;}
.ws3a{word-spacing:114.369000px;}
.ws4{word-spacing:157.530150px;}
.ws27{word-spacing:259.307700px;}
.ws12{word-spacing:327.349650px;}
.ws25{word-spacing:494.131200px;}
.ws3c{word-spacing:516.050700px;}
.ws28{word-spacing:581.547000px;}
.ws3b{word-spacing:646.116750px;}
._d{margin-left:-112.073100px;}
._f{margin-left:-9.797700px;}
._8{margin-left:-8.237250px;}
._6{margin-left:-6.479250px;}
._7{margin-left:-5.398500px;}
._3{margin-left:-4.038300px;}
._4{margin-left:-2.595150px;}
._0{margin-left:-1.442250px;}
._1{width:1.442250px;}
._2{width:3.172950px;}
._5{width:5.111100px;}
._9{width:6.324150px;}
._11{width:8.883150px;}
._c{width:17.187300px;}
._13{width:21.664050px;}
._a{width:36.852300px;}
._e{width:225.644100px;}
._10{width:901.086600px;}
._b{width:1341.029100px;}
._12{width:1985.446050px;}
.fc17{color:rgb(89,89,89);}
.fc10{color:rgb(41,51,79);}
.fcf{color:rgb(3,178,255);}
.fce{color:rgb(0,178,255);}
.fcd{color:rgb(6,238,182);}
.fc12{color:rgb(40,40,40);}
.fc2{color:rgb(127,127,127);}
.fc14{color:rgb(43,63,255);}
.fc4{color:rgb(0,0,0);}
.fc15{color:rgb(208,208,208);}
.fc6{color:rgb(34,34,34);}
.fc13{color:rgb(81,81,81);}
.fc0{color:rgb(255,255,255);}
.fcb{color:rgb(28,194,57);}
.fc7{color:rgb(255,0,0);}
.fc16{color:rgb(0,0,255);}
.fc11{color:rgb(124,124,124);}
.fc3{color:transparent;}
.fc8{color:rgb(27,194,57);}
.fc9{color:rgb(249,28,107);}
.fc1{color:rgb(239,239,239);}
.fc5{color:rgb(94,94,94);}
.fca{color:rgb(254,168,2);}
.fcc{color:rgb(206,109,255);}
.fs20{font-size:54.000000px;}
.fs2d{font-size:54.150000px;}
.fs12{font-size:63.000000px;}
.fs13{font-size:63.150000px;}
.fs1d{font-size:67.500000px;}
.fs17{font-size:72.000000px;}
.fs16{font-size:72.150000px;}
.fs1c{font-size:76.650000px;}
.fs5{font-size:85.500000px;}
.fs6{font-size:85.650000px;}
.fs18{font-size:90.000000px;}
.fsc{font-size:90.150000px;}
.fs1b{font-size:94.500000px;}
.fs4{font-size:94.650000px;}
.fs15{font-size:108.150000px;}
.fs0{font-size:112.650000px;}
.fs7{font-size:112.800000px;}
.fs1e{font-size:121.650000px;}
.fs11{font-size:126.150000px;}
.fs10{font-size:126.300000px;}
.fs24{font-size:130.650000px;}
.fs2a{font-size:135.150000px;}
.fs2b{font-size:135.300000px;}
.fse{font-size:144.150000px;}
.fsf{font-size:144.300000px;}
.fs21{font-size:157.650000px;}
.fs22{font-size:157.800000px;}
.fsb{font-size:162.150000px;}
.fs3{font-size:162.300000px;}
.fs25{font-size:166.650000px;}
.fs27{font-size:166.800000px;}
.fs23{font-size:184.800000px;}
.fsa{font-size:193.650000px;}
.fs9{font-size:193.800000px;}
.fs1f{font-size:216.300000px;}
.fs2c{font-size:220.800000px;}
.fsd{font-size:225.300000px;}
.fs26{font-size:225.450000px;}
.fs29{font-size:234.300000px;}
.fs14{font-size:238.800000px;}
.fs8{font-size:256.950000px;}
.fs28{font-size:265.800000px;}
.fs2{font-size:288.300000px;}
.fs1{font-size:288.450000px;}
.fs1a{font-size:310.800000px;}
.fs19{font-size:919.200000px;}
.y0{bottom:0.000000px;}
.yb9{bottom:4.912500px;}
.y48{bottom:5.175000px;}
.y154{bottom:9.262500px;}
.y9e{bottom:11.662500px;}
.y20{bottom:14.100000px;}
.y8d{bottom:17.962500px;}
.ya{bottom:19.162500px;}
.y47{bottom:24.300000px;}
.y41{bottom:24.750000px;}
.y10c{bottom:28.312500px;}
.y9d{bottom:28.575000px;}
.y167{bottom:32.625000px;}
.y130{bottom:34.387500px;}
.y9c{bottom:35.062500px;}
.y86{bottom:35.550000px;}
.y4a{bottom:42.337500px;}
.y9{bottom:45.075000px;}
.y168{bottom:51.000000px;}
.y1{bottom:51.675000px;}
.yb8{bottom:54.000000px;}
.yf3{bottom:61.537500px;}
.y32{bottom:64.537500px;}
.y10b{bottom:65.475000px;}
.y5d{bottom:69.187500px;}
.y7b{bottom:69.337500px;}
.y51{bottom:69.412500px;}
.y153{bottom:70.087500px;}
.y8{bottom:70.987500px;}
.y40{bottom:73.200000px;}
.y85{bottom:85.087500px;}
.y1f{bottom:85.612500px;}
.yf2{bottom:87.450000px;}
.y127{bottom:90.000000px;}
.y105{bottom:91.125000px;}
.yb7{bottom:93.450000px;}
.y166{bottom:94.612500px;}
.y5c{bottom:98.475000px;}
.y141{bottom:104.625000px;}
.y31{bottom:106.237500px;}
.y12f{bottom:106.950000px;}
.y126{bottom:108.150000px;}
.y12b{bottom:108.720000px;}
.y120{bottom:108.750000px;}
.y50{bottom:108.862500px;}
.y119{bottom:109.320000px;}
.yf1{bottom:113.362500px;}
.y142{bottom:114.120000px;}
.y13e{bottom:114.405000px;}
.y13c{bottom:114.720000px;}
.y13a{bottom:115.005000px;}
.y10{bottom:119.662500px;}
.y89{bottom:120.412500px;}
.y5b{bottom:126.637500px;}
.y12a{bottom:129.375000px;}
.y152{bottom:129.787500px;}
.yb6{bottom:131.737500px;}
.y3f{bottom:132.900000px;}
.ye0{bottom:134.475000px;}
.ydf{bottom:135.712500px;}
.y84{bottom:136.387500px;}
.y116{bottom:138.675000px;}
.yf0{bottom:139.275000px;}
.y11{bottom:139.312500px;}
.y30{bottom:140.025000px;}
.y7a{bottom:140.137500px;}
.y8a{bottom:140.475000px;}
.y12e{bottom:140.737500px;}
.yf{bottom:141.075000px;}
.y171{bottom:141.937500px;}
.y165{bottom:153.180000px;}
.y5a{bottom:155.925000px;}
.yde{bottom:155.955000px;}
.ye1{bottom:157.095000px;}
.y1e{bottom:157.680000px;}
.y151{bottom:161.370000px;}
.y13d{bottom:162.000000px;}
.y4f{bottom:162.150000px;}
.y170{bottom:163.350000px;}
.y6a{bottom:168.495000px;}
.y10a{bottom:168.750000px;}
.yb5{bottom:171.180000px;}
.y2f{bottom:172.680000px;}
.y112{bottom:174.705000px;}
.y107{bottom:178.275000px;}
.yc9{bottom:178.395000px;}
.yfb{bottom:178.545000px;}
.y104{bottom:178.800000px;}
.y17c{bottom:182.280000px;}
.y59{bottom:184.095000px;}
.y16f{bottom:184.755000px;}
.y7{bottom:185.055000px;}
.y164{bottom:185.850000px;}
.y121{bottom:186.750000px;}
.y55{bottom:186.930000px;}
.y83{bottom:187.095000px;}
.yef{bottom:188.850000px;}
.y101{bottom:191.250000px;}
.y3e{bottom:192.630000px;}
.y150{bottom:194.025000px;}
.ya3{bottom:195.405000px;}
.y109{bottom:196.920000px;}
.y4e{bottom:200.445000px;}
.y17b{bottom:203.700000px;}
.y12d{bottom:204.300000px;}
.yaa{bottom:204.480000px;}
.y79{bottom:205.275000px;}
.y16e{bottom:206.130000px;}
.y106{bottom:206.445000px;}
.y2e{bottom:206.505000px;}
.yfa{bottom:206.700000px;}
.y102{bottom:206.970000px;}
.yb4{bottom:210.600000px;}
.yfc{bottom:211.500000px;}
.y129{bottom:211.620000px;}
.y11d{bottom:211.650000px;}
.y124{bottom:212.220000px;}
.y58{bottom:213.375000px;}
.y54{bottom:216.225000px;}
.yd9{bottom:216.255000px;}
.y163{bottom:218.505000px;}
.y140{bottom:218.745000px;}
.y13b{bottom:219.375000px;}
.y17a{bottom:225.105000px;}
.y14f{bottom:226.695000px;}
.y69{bottom:227.070000px;}
.y125{bottom:227.250000px;}
.ycd{bottom:227.550000px;}
.y1d{bottom:229.800000px;}
.ya2{bottom:230.370000px;}
.y82{bottom:236.655000px;}
.y4d{bottom:237.645000px;}
.y12c{bottom:238.095000px;}
.yee{bottom:238.380000px;}
.y57{bottom:242.655000px;}
.y78{bottom:244.695000px;}
.y128{bottom:245.400000px;}
.y11b{bottom:245.445000px;}
.y53{bottom:245.505000px;}
.yc8{bottom:245.745000px;}
.y122{bottom:246.000000px;}
.y179{bottom:247.650000px;}
.y162{bottom:250.050000px;}
.y16d{bottom:250.095000px;}
.y3d{bottom:253.470000px;}
.y35{bottom:255.525000px;}
.y14e{bottom:259.350000px;}
.ya9{bottom:263.070000px;}
.y70{bottom:263.130000px;}
.yed{bottom:264.300000px;}
.y100{bottom:265.125000px;}
.yd8{bottom:266.970000px;}
.ya1{bottom:268.650000px;}
.y56{bottom:270.825000px;}
.y16c{bottom:271.500000px;}
.yb3{bottom:272.550000px;}
.y52{bottom:273.675000px;}
.ycc{bottom:275.955000px;}
.y13f{bottom:276.405000px;}
.y139{bottom:276.750000px;}
.y111{bottom:277.500000px;}
.y4c{bottom:278.175000px;}
.y181{bottom:282.255000px;}
.y161{bottom:282.750000px;}
.y77{bottom:283.020000px;}
.y68{bottom:284.520000px;}
.y11a{bottom:284.625000px;}
.y81{bottom:286.200000px;}
.yc7{bottom:287.400000px;}
.y158{bottom:288.570000px;}
.yec{bottom:291.345000px;}
.y6{bottom:291.645000px;}
.y14d{bottom:292.005000px;}
.y88{bottom:292.230000px;}
.y16b{bottom:292.920000px;}
.y34{bottom:293.850000px;}
.yfe{bottom:294.420000px;}
.y108{bottom:297.570000px;}
.y1c{bottom:301.905000px;}
.y180{bottom:303.675000px;}
.y87{bottom:310.275000px;}
.y6f{bottom:311.550000px;}
.yb2{bottom:312.000000px;}
.y3c{bottom:313.170000px;}
.yc{bottom:313.905000px;}
.y16a{bottom:314.280000px;}
.y160{bottom:315.405000px;}
.yeb{bottom:317.250000px;}
.yd7{bottom:317.655000px;}
.ya0{bottom:320.475000px;}
.y76{bottom:321.300000px;}
.yfd{bottom:322.575000px;}
.y11f{bottom:324.000000px;}
.ycb{bottom:324.405000px;}
.y17f{bottom:325.095000px;}
.y14c{bottom:325.845000px;}
.yf9{bottom:327.375000px;}
.yb{bottom:335.295000px;}
.yc6{bottom:335.850000px;}
.y169{bottom:336.825000px;}
.y4b{bottom:337.020000px;}
.y12{bottom:337.320000px;}
.y62{bottom:337.425000px;}
.y67{bottom:341.970000px;}
.yea{bottom:343.155000px;}
.y17e{bottom:346.455000px;}
.y15f{bottom:350.325000px;}
.y5f{bottom:351.225000px;}
.y73{bottom:356.325000px;}
.yc1{bottom:357.345000px;}
.y2d{bottom:358.845000px;}
.y6e{bottom:358.875000px;}
.y75{bottom:359.595000px;}
.y110{bottom:362.295000px;}
.y61{bottom:364.470000px;}
.yca{bottom:366.120000px;}
.y157{bottom:367.005000px;}
.y5{bottom:368.250000px;}
.y17d{bottom:369.000000px;}
.y14b{bottom:369.750000px;}
.y18a{bottom:370.005000px;}
.y9f{bottom:372.300000px;}
.y3b{bottom:372.870000px;}
.y191{bottom:373.275000px;}
.yb1{bottom:375.075000px;}
.y5e{bottom:377.130000px;}
.yc5{bottom:378.630000px;}
.yd6{bottom:380.850000px;}
.y8c{bottom:382.875000px;}
.y189{bottom:389.175000px;}
.y60{bottom:390.375000px;}
.y192{bottom:391.425000px;}
.y2c{bottom:392.625000px;}
.ye9{bottom:392.745000px;}
.y15e{bottom:393.150000px;}
.y10f{bottom:396.120000px;}
.y19{bottom:397.380000px;}
.y103{bottom:398.220000px;}
.yc0{bottom:399.000000px;}
.y66{bottom:399.450000px;}
.y8b{bottom:400.905000px;}
.ya8{bottom:406.020000px;}
.y6d{bottom:407.325000px;}
.y46{bottom:407.925000px;}
.y14a{bottom:412.575000px;}
.yb0{bottom:413.400000px;}
.y118{bottom:420.750000px;}
.y3a{bottom:421.320000px;}
.y134{bottom:421.620000px;}
.y196{bottom:425.595000px;}
.yc4{bottom:425.970000px;}
.y2b{bottom:426.405000px;}
.ycf{bottom:432.225000px;}
.y123{bottom:432.750000px;}
.ybf{bottom:433.950000px;}
.yd5{bottom:439.425000px;}
.ye8{bottom:442.320000px;}
.y7c{bottom:443.400000px;}
.y4{bottom:445.950000px;}
.ya7{bottom:446.550000px;}
.y195{bottom:447.000000px;}
.y156{bottom:447.150000px;}
.y45{bottom:450.750000px;}
.yaf{bottom:452.820000px;}
.y15d{bottom:452.850000px;}
.y138{bottom:453.225000px;}
.y115{bottom:456.750000px;}
.y65{bottom:456.900000px;}
.y2a{bottom:460.245000px;}
.ye7{bottom:468.225000px;}
.y194{bottom:469.530000px;}
.y39{bottom:469.755000px;}
.ydc{bottom:470.475000px;}
.ydd{bottom:471.600000px;}
.y149{bottom:472.275000px;}
.ya6{bottom:475.845000px;}
.y1b{bottom:480.330000px;}
.yce{bottom:482.925000px;}
.y10e{bottom:483.030000px;}
.ybe{bottom:484.650000px;}
.y15c{bottom:485.505000px;}
.ydb{bottom:491.880000px;}
.yae{bottom:492.225000px;}
.y18e{bottom:493.905000px;}
.y29{bottom:494.025000px;}
.ye6{bottom:494.130000px;}
.y193{bottom:494.325000px;}
.y44{bottom:494.700000px;}
.y11e{bottom:496.275000px;}
.y93{bottom:500.550000px;}
.y148{bottom:504.945000px;}
.y16{bottom:505.530000px;}
.yff{bottom:505.920000px;}
.y95{bottom:511.125000px;}
.ye{bottom:511.845000px;}
.y18d{bottom:513.030000px;}
.y15b{bottom:517.050000px;}
.y7f{bottom:517.920000px;}
.ybd{bottom:518.445000px;}
.ye5{bottom:520.050000px;}
.y3{bottom:524.820000px;}
.y155{bottom:524.955000px;}
.y188{bottom:526.530000px;}
.y28{bottom:526.695000px;}
.y38{bottom:529.470000px;}
.y11c{bottom:530.070000px;}
.yd{bottom:533.250000px;}
.y147{bottom:536.475000px;}
.y43{bottom:537.495000px;}
.y1a{bottom:537.780000px;}
.y15{bottom:539.325000px;}
.y190{bottom:540.405000px;}
.y18c{bottom:541.155000px;}
.y92{bottom:543.345000px;}
.ye4{bottom:547.080000px;}
.y94{bottom:547.200000px;}
.y187{bottom:547.950000px;}
.y15a{bottom:552.000000px;}
.ybc{bottom:552.225000px;}
.yad{bottom:554.220000px;}
.y137{bottom:555.900000px;}
.y18f{bottom:559.575000px;}
.y18b{bottom:560.280000px;}
.y27{bottom:560.475000px;}
.y7e{bottom:561.870000px;}
.y186{bottom:570.495000px;}
.y146{bottom:571.425000px;}
.y14{bottom:571.995000px;}
.y37{bottom:577.905000px;}
.y42{bottom:580.320000px;}
.y10d{bottom:587.130000px;}
.y96{bottom:591.630000px;}
.y185{bottom:591.900000px;}
.yac{bottom:593.625000px;}
.ybb{bottom:593.925000px;}
.y117{bottom:595.425000px;}
.y159{bottom:595.905000px;}
.ye3{bottom:596.655000px;}
.yf8{bottom:600.225000px;}
.yf5{bottom:602.445000px;}
.y2{bottom:602.550000px;}
.y13{bottom:605.820000px;}
.y7d{bottom:606.900000px;}
.y33{bottom:609.570000px;}
.y184{bottom:613.275000px;}
.y145{bottom:615.345000px;}
.yba{bottom:627.720000px;}
.y183{bottom:634.695000px;}
.y36{bottom:637.620000px;}
.yf4{bottom:642.975000px;}
.y182{bottom:657.225000px;}
.y18{bottom:662.595000px;}
.y144{bottom:671.325000px;}
.y6c{bottom:672.375000px;}
.y114{bottom:672.450000px;}
.yd2{bottom:672.900000px;}
.y135{bottom:678.495000px;}
.yf7{bottom:682.245000px;}
.y72{bottom:684.780000px;}
.y8f{bottom:685.905000px;}
.y136{bottom:686.820000px;}
.yd4{bottom:693.255000px;}
.y91{bottom:694.650000px;}
.yc3{bottom:694.755000px;}
.y49{bottom:696.630000px;}
.y178{bottom:697.275000px;}
.y9b{bottom:700.095000px;}
.y64{bottom:700.470000px;}
.ya5{bottom:700.575000px;}
.ye2{bottom:702.300000px;}
.y99{bottom:703.245000px;}
.y74{bottom:704.475000px;}
.y173{bottom:705.630000px;}
.y22{bottom:712.530000px;}
.y63{bottom:715.470000px;}
.y21{bottom:717.405000px;}
.y177{bottom:718.695000px;}
.yda{bottom:720.225000px;}
.y97{bottom:723.225000px;}
.yd1{bottom:723.600000px;}
.yab{bottom:725.625000px;}
.y80{bottom:727.845000px;}
.y133{bottom:735.675000px;}
.y143{bottom:737.775000px;}
.y113{bottom:738.900000px;}
.y17{bottom:739.200000px;}
.y6b{bottom:739.950000px;}
.y8e{bottom:739.995000px;}
.y176{bottom:740.100000px;}
.y90{bottom:740.850000px;}
.y71{bottom:742.275000px;}
.y172{bottom:749.280000px;}
.y9a{bottom:749.655000px;}
.yf6{bottom:749.850000px;}
.ya4{bottom:750.150000px;}
.yc2{bottom:752.220000px;}
.yd3{bottom:754.125000px;}
.y98{bottom:758.445000px;}
.y175{bottom:761.505000px;}
.y132{bottom:761.595000px;}
.yd0{bottom:770.925000px;}
.y174{bottom:784.050000px;}
.y131{bottom:787.500000px;}
.y26{bottom:838.950000px;}
.y25{bottom:881.775000px;}
.y24{bottom:924.570000px;}
.y23{bottom:968.505000px;}
.h34{height:47.304000px;}
.h2b{height:50.756836px;}
.h16{height:55.188000px;}
.h17{height:55.319400px;}
.h2a{height:56.027856px;}
.h62{height:63.072000px;}
.h63{height:63.203400px;}
.h2d{height:65.895776px;}
.h66{height:67.032000px;}
.h65{height:67.171650px;}
.h50{height:69.075439px;}
.h1a{height:69.185083px;}
.h69{height:70.921143px;}
.h4f{height:71.059570px;}
.h2c{height:71.172363px;}
.h6{height:74.898000px;}
.h7{height:75.029400px;}
.hf{height:78.971400px;}
.h39{height:79.053003px;}
.h61{height:79.740150px;}
.h1{height:82.342310px;}
.h57{height:82.451953px;}
.h5{height:82.913400px;}
.h1b{height:83.790000px;}
.h1c{height:83.929650px;}
.h54{height:84.707520px;}
.h48{height:88.119150px;}
.h5d{height:91.415698px;}
.h30{height:91.475098px;}
.h5b{height:92.319873px;}
.h60{height:94.739400px;}
.h3f{height:95.499536px;}
.h23{height:95.906030px;}
.h22{height:96.020068px;}
.h26{height:96.090820px;}
.h25{height:96.205078px;}
.ha{height:98.681400px;}
.h9{height:98.812800px;}
.h33{height:101.594019px;}
.h2f{height:103.574707px;}
.h3a{height:104.877150px;}
.h2e{height:105.367456px;}
.h11{height:108.394043px;}
.h12{height:108.506836px;}
.h28{height:109.801758px;}
.h29{height:109.916016px;}
.h36{height:110.507400px;}
.h64{height:113.256150px;}
.h24{height:113.461084px;}
.h21{height:113.584277px;}
.h3c{height:115.235376px;}
.h3d{height:115.345020px;}
.h15{height:117.445650px;}
.h14{height:117.585300px;}
.h49{height:118.391400px;}
.h4a{height:118.522800px;}
.h43{height:121.923633px;}
.h13{height:126.275400px;}
.h19{height:126.406800px;}
.h5f{height:134.203650px;}
.h37{height:134.343300px;}
.h3e{height:135.080859px;}
.he{height:142.043400px;}
.h4{height:142.174800px;}
.h67{height:143.532000px;}
.h68{height:143.851650px;}
.h42{height:145.728516px;}
.h1e{height:150.961650px;}
.h1d{height:151.101300px;}
.h46{height:151.259400px;}
.h40{height:155.151150px;}
.h45{height:160.649400px;}
.h8{height:165.179400px;}
.h38{height:169.637400px;}
.h35{height:169.768800px;}
.h27{height:174.495703px;}
.hd{height:180.288150px;}
.hc{height:180.427800px;}
.h32{height:182.232750px;}
.h51{height:205.564800px;}
.h10{height:209.754300px;}
.h41{height:209.893950px;}
.h47{height:218.133300px;}
.h31{height:221.475146px;}
.h18{height:222.322800px;}
.h3b{height:230.690479px;}
.hb{height:239.220450px;}
.h58{height:239.625000px;}
.h53{height:240.750000px;}
.h44{height:247.459800px;}
.h5c{height:253.125000px;}
.h3{height:268.407300px;}
.h2{height:268.546950px;}
.h20{height:279.841406px;}
.h52{height:303.750000px;}
.h5a{height:375.750000px;}
.h4e{height:394.875000px;}
.h4b{height:403.875000px;}
.h4d{height:405.000000px;}
.h5e{height:465.750000px;}
.h59{height:472.500000px;}
.h55{height:479.250000px;}
.h56{height:480.375000px;}
.h4c{height:598.500000px;}
.h1f{height:671.895703px;}
.h0{height:810.000000px;}
.w2{width:321.750000px;}
.w4{width:464.625000px;}
.w6{width:607.500000px;}
.w3{width:758.250000px;}
.w5{width:864.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xaa{left:4.912479px;}
.x2{left:8.699979px;}
.x9e{left:11.355000px;}
.x84{left:15.375000px;}
.x11{left:19.012479px;}
.x3{left:26.174979px;}
.x1e{left:28.049979px;}
.x17{left:30.337479px;}
.x1d{left:31.499979px;}
.x38{left:33.787479px;}
.x12{left:34.912479px;}
.xb0{left:37.162479px;}
.x45{left:41.924979px;}
.x81{left:43.162479px;}
.x72{left:45.112479px;}
.x79{left:46.312479px;}
.x43{left:47.924979px;}
.x3e{left:54.862479px;}
.xa9{left:56.699979px;}
.x7c{left:58.537479px;}
.x3c{left:63.299979px;}
.x95{left:64.649979px;}
.x3d{left:69.487479px;}
.xa1{left:70.687479px;}
.xa7{left:72.037479px;}
.x8d{left:75.824979px;}
.x8b{left:78.262479px;}
.x8a{left:79.462479px;}
.x5c{left:82.874979px;}
.x7b{left:84.187479px;}
.x35{left:86.549979px;}
.x46{left:93.937479px;}
.x8e{left:104.437479px;}
.x24{left:109.874979px;}
.x9b{left:112.500000px;}
.x60{left:113.549979px;}
.x50{left:121.462479px;}
.xa2{left:124.724979px;}
.x3a{left:126.937479px;}
.x8c{left:131.549979px;}
.xb2{left:135.224979px;}
.x61{left:140.549979px;}
.x7a{left:142.424979px;}
.x44{left:148.874979px;}
.x22{left:160.649979px;}
.x94{left:162.029979px;}
.x40{left:168.074979px;}
.x41{left:172.874979px;}
.x62{left:210.494979px;}
.x42{left:228.074979px;}
.x7f{left:244.799979px;}
.x99{left:245.849979px;}
.x97{left:247.199979px;}
.xb8{left:251.444979px;}
.xb7{left:255.599979px;}
.x29{left:257.279979px;}
.xb4{left:258.974979px;}
.x73{left:264.029979px;}
.x74{left:281.024979px;}
.x2a{left:284.279979px;}
.x83{left:288.000000px;}
.x23{left:291.749979px;}
.x25{left:298.469979px;}
.x2f{left:315.029979px;}
.x30{left:316.469979px;}
.xb1{left:342.494979px;}
.x3b{left:345.599979px;}
.x18{left:358.724979px;}
.x77{left:359.969979px;}
.x82{left:360.974979px;}
.x6f{left:365.624979px;}
.xb3{left:368.594979px;}
.x70{left:376.499979px;}
.x6e{left:384.119979px;}
.x80{left:390.119979px;}
.x4d{left:392.219979px;}
.x4c{left:397.844979px;}
.x4f{left:402.449979px;}
.x6d{left:404.024979px;}
.x3f{left:410.174979px;}
.x59{left:416.069979px;}
.x9c{left:417.150000px;}
.x78{left:428.924979px;}
.x1b{left:437.954979px;}
.x19{left:442.694979px;}
.xb9{left:457.244979px;}
.xbb{left:459.149979px;}
.x1c{left:464.954979px;}
.x1a{left:468.449979px;}
.xba{left:470.069979px;}
.x87{left:472.649979px;}
.x71{left:476.069979px;}
.x75{left:483.644979px;}
.x5e{left:488.894979px;}
.x5a{left:500.894979px;}
.x55{left:510.029979px;}
.x53{left:517.079979px;}
.x9a{left:520.949979px;}
.x54{left:523.529979px;}
.x8f{left:527.625000px;}
.x5f{left:537.299979px;}
.x63{left:544.769979px;}
.xa0{left:552.075000px;}
.x4e{left:553.124979px;}
.x4{left:565.604979px;}
.x64{left:571.799979px;}
.x2b{left:579.629979px;}
.xb6{left:580.754979px;}
.xb5{left:593.369979px;}
.x98{left:595.619979px;}
.x56{left:599.444979px;}
.x52{left:602.729979px;}
.x85{left:608.625000px;}
.x2c{left:609.674979px;}
.x65{left:632.624979px;}
.x48{left:637.124979px;}
.x96{left:640.124979px;}
.x31{left:652.799979px;}
.x6b{left:657.494979px;}
.x39{left:659.249979px;}
.x93{left:662.399979px;}
.x32{left:663.899979px;}
.x6{left:665.624979px;}
.x5{left:669.674979px;}
.x76{left:674.369979px;}
.x66{left:676.649979px;}
.x5d{left:715.904979px;}
.xab{left:717.479979px;}
.xac{left:718.844979px;}
.x9d{left:720.000000px;}
.xad{left:724.199979px;}
.xae{left:737.729979px;}
.xaf{left:739.424979px;}
.x90{left:767.294979px;}
.x7d{left:770.129979px;}
.x91{left:789.629979px;}
.x6c{left:791.474979px;}
.x16{left:793.379979px;}
.x1f{left:809.924979px;}
.x7e{left:842.219979px;}
.x20{left:854.954979px;}
.xa6{left:874.874979px;}
.xa5{left:890.069979px;}
.x36{left:897.374979px;}
.x2d{left:901.199979px;}
.xa3{left:902.774979px;}
.xa4{left:908.219979px;}
.x21{left:909.374979px;}
.x6a{left:914.399979px;}
.x2e{left:928.199979px;}
.x89{left:931.874979px;}
.x34{left:947.774979px;}
.x33{left:949.094979px;}
.x37{left:951.404979px;}
.x26{left:967.004979px;}
.x13{left:968.669979px;}
.x4b{left:970.244979px;}
.x67{left:976.019979px;}
.x28{left:993.074979px;}
.x68{left:1003.019979px;}
.x15{left:1004.474979px;}
.x47{left:1018.979979px;}
.x27{left:1021.049979px;}
.xd{left:1024.049979px;}
.x9f{left:1035.149979px;}
.x58{left:1042.004979px;}
.x14{left:1043.519979px;}
.x4a{left:1059.104979px;}
.x57{left:1070.624979px;}
.x69{left:1072.949979px;}
.x49{left:1080.794979px;}
.x92{left:1095.869979px;}
.xf{left:1150.949979px;}
.x8{left:1164.524979px;}
.xc{left:1175.819979px;}
.xb{left:1182.824979px;}
.x7{left:1185.824979px;}
.xe{left:1188.569979px;}
.x88{left:1198.919979px;}
.x86{left:1224.224979px;}
.x10{left:1289.549979px;}
.xa{left:1300.919979px;}
.x9{left:1321.754979px;}
.xa8{left:1342.529979px;}
.x5b{left:1358.669979px;}
.x1{left:1360.544979px;}
.x51{left:1363.349979px;}
@media print{
.v5{vertical-align:-49.733333pt;}
.v2{vertical-align:-22.240000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:67.760000pt;}
.v3{vertical-align:76.106667pt;}
.v1{vertical-align:80.133333pt;}
.ls1{letter-spacing:-3.162667pt;}
.ls46{letter-spacing:-1.594667pt;}
.ls45{letter-spacing:-1.317333pt;}
.ls1c{letter-spacing:-1.258667pt;}
.ls22{letter-spacing:-1.226667pt;}
.ls15{letter-spacing:-1.146667pt;}
.ls14{letter-spacing:-1.120000pt;}
.ls2b{letter-spacing:-0.570667pt;}
.ls2c{letter-spacing:-0.436800pt;}
.ls3a{letter-spacing:-0.283733pt;}
.ls32{letter-spacing:-0.217600pt;}
.ls23{letter-spacing:-0.014827pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.011200pt;}
.ls3b{letter-spacing:0.066133pt;}
.ls18{letter-spacing:0.110933pt;}
.ls39{letter-spacing:0.145067pt;}
.ls31{letter-spacing:0.163200pt;}
.ls34{letter-spacing:0.322667pt;}
.lsa{letter-spacing:0.378667pt;}
.ls38{letter-spacing:0.456000pt;}
.ls29{letter-spacing:0.492800pt;}
.ls4{letter-spacing:0.512000pt;}
.ls1f{letter-spacing:0.525867pt;}
.ls26{letter-spacing:0.657067pt;}
.ls30{letter-spacing:0.673067pt;}
.ls1b{letter-spacing:1.045333pt;}
.ls24{letter-spacing:1.290667pt;}
.ls35{letter-spacing:1.296000pt;}
.ls36{letter-spacing:1.397333pt;}
.ls13{letter-spacing:1.648000pt;}
.ls33{letter-spacing:1.770667pt;}
.ls37{letter-spacing:1.781333pt;}
.ls2a{letter-spacing:2.368000pt;}
.ls2d{letter-spacing:3.109333pt;}
.ls3e{letter-spacing:16.733333pt;}
.ls2{letter-spacing:20.760000pt;}
.ls3{letter-spacing:20.806667pt;}
.ls21{letter-spacing:25.711733pt;}
.ls3f{letter-spacing:29.020000pt;}
.ls40{letter-spacing:29.066667pt;}
.ls42{letter-spacing:29.180000pt;}
.ls41{letter-spacing:29.226667pt;}
.ls44{letter-spacing:31.260000pt;}
.ls43{letter-spacing:31.306667pt;}
.ls3d{letter-spacing:33.953333pt;}
.ls3c{letter-spacing:34.000000pt;}
.ls1a{letter-spacing:46.618667pt;}
.ls25{letter-spacing:46.953333pt;}
.ls27{letter-spacing:47.013333pt;}
.ls28{letter-spacing:47.060000pt;}
.ls7{letter-spacing:51.153333pt;}
.ls5{letter-spacing:56.526667pt;}
.lsd{letter-spacing:57.263467pt;}
.ls10{letter-spacing:57.344000pt;}
.lsb{letter-spacing:59.046667pt;}
.ls6{letter-spacing:60.953333pt;}
.lsc{letter-spacing:66.046667pt;}
.lsf{letter-spacing:68.090133pt;}
.lse{letter-spacing:68.170667pt;}
.ls20{letter-spacing:99.667867pt;}
.ls8{letter-spacing:109.613333pt;}
.ls9{letter-spacing:109.660000pt;}
.ls1d{letter-spacing:132.063467pt;}
.ls2e{letter-spacing:132.090133pt;}
.ls1e{letter-spacing:132.144000pt;}
.ls2f{letter-spacing:132.170667pt;}
.ls17{letter-spacing:134.116800pt;}
.ls16{letter-spacing:134.197333pt;}
.ls11{letter-spacing:147.213333pt;}
.ls12{letter-spacing:147.260000pt;}
.ws0{word-spacing:-72.561200pt;}
.ws2b{word-spacing:-55.543467pt;}
.wsd{word-spacing:-48.751467pt;}
.ws16{word-spacing:-46.720800pt;}
.ws23{word-spacing:-46.323200pt;}
.wse{word-spacing:-40.827467pt;}
.ws22{word-spacing:-38.994133pt;}
.ws24{word-spacing:-38.957067pt;}
.ws2{word-spacing:-37.797867pt;}
.ws8{word-spacing:-37.762933pt;}
.ws1a{word-spacing:-36.299467pt;}
.ws6{word-spacing:-35.621067pt;}
.ws26{word-spacing:-34.653067pt;}
.ws1{word-spacing:-34.635200pt;}
.ws1b{word-spacing:-33.605867pt;}
.ws1c{word-spacing:-33.570933pt;}
.ws14{word-spacing:-31.810133pt;}
.ws2c{word-spacing:-30.061067pt;}
.ws20{word-spacing:-29.628400pt;}
.ws1f{word-spacing:-28.337733pt;}
.ws11{word-spacing:-27.954400pt;}
.ws10{word-spacing:-27.921200pt;}
.ws2a{word-spacing:-27.837067pt;}
.wsf{word-spacing:-27.584800pt;}
.ws1d{word-spacing:-26.725067pt;}
.ws7{word-spacing:-26.234933pt;}
.ws1e{word-spacing:-26.220107pt;}
.ws2e{word-spacing:-25.186933pt;}
.ws29{word-spacing:-23.809733pt;}
.wsa{word-spacing:-23.389067pt;}
.wsc{word-spacing:-22.677733pt;}
.wsb{word-spacing:-22.640000pt;}
.ws19{word-spacing:-22.042933pt;}
.ws37{word-spacing:-21.545733pt;}
.ws3{word-spacing:-19.946933pt;}
.ws15{word-spacing:-18.941067pt;}
.ws39{word-spacing:-18.149733pt;}
.ws3d{word-spacing:-18.112000pt;}
.ws38{word-spacing:-16.802933pt;}
.ws9{word-spacing:-14.706933pt;}
.ws35{word-spacing:-13.265333pt;}
.ws17{word-spacing:-12.576000pt;}
.ws2f{word-spacing:-2.550667pt;}
.ws21{word-spacing:-2.303200pt;}
.ws34{word-spacing:-2.122800pt;}
.ws36{word-spacing:-2.037600pt;}
.ws18{word-spacing:-1.145467pt;}
.ws5{word-spacing:0.000000pt;}
.ws13{word-spacing:0.194133pt;}
.ws2d{word-spacing:18.627067pt;}
.ws33{word-spacing:33.520667pt;}
.ws32{word-spacing:38.869600pt;}
.ws31{word-spacing:39.637067pt;}
.ws30{word-spacing:59.840667pt;}
.ws3a{word-spacing:101.661333pt;}
.ws4{word-spacing:140.026800pt;}
.ws27{word-spacing:230.495733pt;}
.ws12{word-spacing:290.977467pt;}
.ws25{word-spacing:439.227733pt;}
.ws3c{word-spacing:458.711733pt;}
.ws28{word-spacing:516.930667pt;}
.ws3b{word-spacing:574.326000pt;}
._d{margin-left:-99.620533pt;}
._f{margin-left:-8.709067pt;}
._8{margin-left:-7.322000pt;}
._6{margin-left:-5.759333pt;}
._7{margin-left:-4.798667pt;}
._3{margin-left:-3.589600pt;}
._4{margin-left:-2.306800pt;}
._0{margin-left:-1.282000pt;}
._1{width:1.282000pt;}
._2{width:2.820400pt;}
._5{width:4.543200pt;}
._9{width:5.621467pt;}
._11{width:7.896133pt;}
._c{width:15.277600pt;}
._13{width:19.256933pt;}
._a{width:32.757600pt;}
._e{width:200.572533pt;}
._10{width:800.965867pt;}
._b{width:1192.025867pt;}
._12{width:1764.840933pt;}
.fs20{font-size:48.000000pt;}
.fs2d{font-size:48.133333pt;}
.fs12{font-size:56.000000pt;}
.fs13{font-size:56.133333pt;}
.fs1d{font-size:60.000000pt;}
.fs17{font-size:64.000000pt;}
.fs16{font-size:64.133333pt;}
.fs1c{font-size:68.133333pt;}
.fs5{font-size:76.000000pt;}
.fs6{font-size:76.133333pt;}
.fs18{font-size:80.000000pt;}
.fsc{font-size:80.133333pt;}
.fs1b{font-size:84.000000pt;}
.fs4{font-size:84.133333pt;}
.fs15{font-size:96.133333pt;}
.fs0{font-size:100.133333pt;}
.fs7{font-size:100.266667pt;}
.fs1e{font-size:108.133333pt;}
.fs11{font-size:112.133333pt;}
.fs10{font-size:112.266667pt;}
.fs24{font-size:116.133333pt;}
.fs2a{font-size:120.133333pt;}
.fs2b{font-size:120.266667pt;}
.fse{font-size:128.133333pt;}
.fsf{font-size:128.266667pt;}
.fs21{font-size:140.133333pt;}
.fs22{font-size:140.266667pt;}
.fsb{font-size:144.133333pt;}
.fs3{font-size:144.266667pt;}
.fs25{font-size:148.133333pt;}
.fs27{font-size:148.266667pt;}
.fs23{font-size:164.266667pt;}
.fsa{font-size:172.133333pt;}
.fs9{font-size:172.266667pt;}
.fs1f{font-size:192.266667pt;}
.fs2c{font-size:196.266667pt;}
.fsd{font-size:200.266667pt;}
.fs26{font-size:200.400000pt;}
.fs29{font-size:208.266667pt;}
.fs14{font-size:212.266667pt;}
.fs8{font-size:228.400000pt;}
.fs28{font-size:236.266667pt;}
.fs2{font-size:256.266667pt;}
.fs1{font-size:256.400000pt;}
.fs1a{font-size:276.266667pt;}
.fs19{font-size:817.066667pt;}
.y0{bottom:0.000000pt;}
.yb9{bottom:4.366667pt;}
.y48{bottom:4.600000pt;}
.y154{bottom:8.233333pt;}
.y9e{bottom:10.366667pt;}
.y20{bottom:12.533333pt;}
.y8d{bottom:15.966667pt;}
.ya{bottom:17.033333pt;}
.y47{bottom:21.600000pt;}
.y41{bottom:22.000000pt;}
.y10c{bottom:25.166667pt;}
.y9d{bottom:25.400000pt;}
.y167{bottom:29.000000pt;}
.y130{bottom:30.566667pt;}
.y9c{bottom:31.166667pt;}
.y86{bottom:31.600000pt;}
.y4a{bottom:37.633333pt;}
.y9{bottom:40.066667pt;}
.y168{bottom:45.333333pt;}
.y1{bottom:45.933333pt;}
.yb8{bottom:48.000000pt;}
.yf3{bottom:54.700000pt;}
.y32{bottom:57.366667pt;}
.y10b{bottom:58.200000pt;}
.y5d{bottom:61.500000pt;}
.y7b{bottom:61.633333pt;}
.y51{bottom:61.700000pt;}
.y153{bottom:62.300000pt;}
.y8{bottom:63.100000pt;}
.y40{bottom:65.066667pt;}
.y85{bottom:75.633333pt;}
.y1f{bottom:76.100000pt;}
.yf2{bottom:77.733333pt;}
.y127{bottom:80.000000pt;}
.y105{bottom:81.000000pt;}
.yb7{bottom:83.066667pt;}
.y166{bottom:84.100000pt;}
.y5c{bottom:87.533333pt;}
.y141{bottom:93.000000pt;}
.y31{bottom:94.433333pt;}
.y12f{bottom:95.066667pt;}
.y126{bottom:96.133333pt;}
.y12b{bottom:96.640000pt;}
.y120{bottom:96.666667pt;}
.y50{bottom:96.766667pt;}
.y119{bottom:97.173333pt;}
.yf1{bottom:100.766667pt;}
.y142{bottom:101.440000pt;}
.y13e{bottom:101.693333pt;}
.y13c{bottom:101.973333pt;}
.y13a{bottom:102.226667pt;}
.y10{bottom:106.366667pt;}
.y89{bottom:107.033333pt;}
.y5b{bottom:112.566667pt;}
.y12a{bottom:115.000000pt;}
.y152{bottom:115.366667pt;}
.yb6{bottom:117.100000pt;}
.y3f{bottom:118.133333pt;}
.ye0{bottom:119.533333pt;}
.ydf{bottom:120.633333pt;}
.y84{bottom:121.233333pt;}
.y116{bottom:123.266667pt;}
.yf0{bottom:123.800000pt;}
.y11{bottom:123.833333pt;}
.y30{bottom:124.466667pt;}
.y7a{bottom:124.566667pt;}
.y8a{bottom:124.866667pt;}
.y12e{bottom:125.100000pt;}
.yf{bottom:125.400000pt;}
.y171{bottom:126.166667pt;}
.y165{bottom:136.160000pt;}
.y5a{bottom:138.600000pt;}
.yde{bottom:138.626667pt;}
.ye1{bottom:139.640000pt;}
.y1e{bottom:140.160000pt;}
.y151{bottom:143.440000pt;}
.y13d{bottom:144.000000pt;}
.y4f{bottom:144.133333pt;}
.y170{bottom:145.200000pt;}
.y6a{bottom:149.773333pt;}
.y10a{bottom:150.000000pt;}
.yb5{bottom:152.160000pt;}
.y2f{bottom:153.493333pt;}
.y112{bottom:155.293333pt;}
.y107{bottom:158.466667pt;}
.yc9{bottom:158.573333pt;}
.yfb{bottom:158.706667pt;}
.y104{bottom:158.933333pt;}
.y17c{bottom:162.026667pt;}
.y59{bottom:163.640000pt;}
.y16f{bottom:164.226667pt;}
.y7{bottom:164.493333pt;}
.y164{bottom:165.200000pt;}
.y121{bottom:166.000000pt;}
.y55{bottom:166.160000pt;}
.y83{bottom:166.306667pt;}
.yef{bottom:167.866667pt;}
.y101{bottom:170.000000pt;}
.y3e{bottom:171.226667pt;}
.y150{bottom:172.466667pt;}
.ya3{bottom:173.693333pt;}
.y109{bottom:175.040000pt;}
.y4e{bottom:178.173333pt;}
.y17b{bottom:181.066667pt;}
.y12d{bottom:181.600000pt;}
.yaa{bottom:181.760000pt;}
.y79{bottom:182.466667pt;}
.y16e{bottom:183.226667pt;}
.y106{bottom:183.506667pt;}
.y2e{bottom:183.560000pt;}
.yfa{bottom:183.733333pt;}
.y102{bottom:183.973333pt;}
.yb4{bottom:187.200000pt;}
.yfc{bottom:188.000000pt;}
.y129{bottom:188.106667pt;}
.y11d{bottom:188.133333pt;}
.y124{bottom:188.640000pt;}
.y58{bottom:189.666667pt;}
.y54{bottom:192.200000pt;}
.yd9{bottom:192.226667pt;}
.y163{bottom:194.226667pt;}
.y140{bottom:194.440000pt;}
.y13b{bottom:195.000000pt;}
.y17a{bottom:200.093333pt;}
.y14f{bottom:201.506667pt;}
.y69{bottom:201.840000pt;}
.y125{bottom:202.000000pt;}
.ycd{bottom:202.266667pt;}
.y1d{bottom:204.266667pt;}
.ya2{bottom:204.773333pt;}
.y82{bottom:210.360000pt;}
.y4d{bottom:211.240000pt;}
.y12c{bottom:211.640000pt;}
.yee{bottom:211.893333pt;}
.y57{bottom:215.693333pt;}
.y78{bottom:217.506667pt;}
.y128{bottom:218.133333pt;}
.y11b{bottom:218.173333pt;}
.y53{bottom:218.226667pt;}
.yc8{bottom:218.440000pt;}
.y122{bottom:218.666667pt;}
.y179{bottom:220.133333pt;}
.y162{bottom:222.266667pt;}
.y16d{bottom:222.306667pt;}
.y3d{bottom:225.306667pt;}
.y35{bottom:227.133333pt;}
.y14e{bottom:230.533333pt;}
.ya9{bottom:233.840000pt;}
.y70{bottom:233.893333pt;}
.yed{bottom:234.933333pt;}
.y100{bottom:235.666667pt;}
.yd8{bottom:237.306667pt;}
.ya1{bottom:238.800000pt;}
.y56{bottom:240.733333pt;}
.y16c{bottom:241.333333pt;}
.yb3{bottom:242.266667pt;}
.y52{bottom:243.266667pt;}
.ycc{bottom:245.293333pt;}
.y13f{bottom:245.693333pt;}
.y139{bottom:246.000000pt;}
.y111{bottom:246.666667pt;}
.y4c{bottom:247.266667pt;}
.y181{bottom:250.893333pt;}
.y161{bottom:251.333333pt;}
.y77{bottom:251.573333pt;}
.y68{bottom:252.906667pt;}
.y11a{bottom:253.000000pt;}
.y81{bottom:254.400000pt;}
.yc7{bottom:255.466667pt;}
.y158{bottom:256.506667pt;}
.yec{bottom:258.973333pt;}
.y6{bottom:259.240000pt;}
.y14d{bottom:259.560000pt;}
.y88{bottom:259.760000pt;}
.y16b{bottom:260.373333pt;}
.y34{bottom:261.200000pt;}
.yfe{bottom:261.706667pt;}
.y108{bottom:264.506667pt;}
.y1c{bottom:268.360000pt;}
.y180{bottom:269.933333pt;}
.y87{bottom:275.800000pt;}
.y6f{bottom:276.933333pt;}
.yb2{bottom:277.333333pt;}
.y3c{bottom:278.373333pt;}
.yc{bottom:279.026667pt;}
.y16a{bottom:279.360000pt;}
.y160{bottom:280.360000pt;}
.yeb{bottom:282.000000pt;}
.yd7{bottom:282.360000pt;}
.ya0{bottom:284.866667pt;}
.y76{bottom:285.600000pt;}
.yfd{bottom:286.733333pt;}
.y11f{bottom:288.000000pt;}
.ycb{bottom:288.360000pt;}
.y17f{bottom:288.973333pt;}
.y14c{bottom:289.640000pt;}
.yf9{bottom:291.000000pt;}
.yb{bottom:298.040000pt;}
.yc6{bottom:298.533333pt;}
.y169{bottom:299.400000pt;}
.y4b{bottom:299.573333pt;}
.y12{bottom:299.840000pt;}
.y62{bottom:299.933333pt;}
.y67{bottom:303.973333pt;}
.yea{bottom:305.026667pt;}
.y17e{bottom:307.960000pt;}
.y15f{bottom:311.400000pt;}
.y5f{bottom:312.200000pt;}
.y73{bottom:316.733333pt;}
.yc1{bottom:317.640000pt;}
.y2d{bottom:318.973333pt;}
.y6e{bottom:319.000000pt;}
.y75{bottom:319.640000pt;}
.y110{bottom:322.040000pt;}
.y61{bottom:323.973333pt;}
.yca{bottom:325.440000pt;}
.y157{bottom:326.226667pt;}
.y5{bottom:327.333333pt;}
.y17d{bottom:328.000000pt;}
.y14b{bottom:328.666667pt;}
.y18a{bottom:328.893333pt;}
.y9f{bottom:330.933333pt;}
.y3b{bottom:331.440000pt;}
.y191{bottom:331.800000pt;}
.yb1{bottom:333.400000pt;}
.y5e{bottom:335.226667pt;}
.yc5{bottom:336.560000pt;}
.yd6{bottom:338.533333pt;}
.y8c{bottom:340.333333pt;}
.y189{bottom:345.933333pt;}
.y60{bottom:347.000000pt;}
.y192{bottom:347.933333pt;}
.y2c{bottom:349.000000pt;}
.ye9{bottom:349.106667pt;}
.y15e{bottom:349.466667pt;}
.y10f{bottom:352.106667pt;}
.y19{bottom:353.226667pt;}
.y103{bottom:353.973333pt;}
.yc0{bottom:354.666667pt;}
.y66{bottom:355.066667pt;}
.y8b{bottom:356.360000pt;}
.ya8{bottom:360.906667pt;}
.y6d{bottom:362.066667pt;}
.y46{bottom:362.600000pt;}
.y14a{bottom:366.733333pt;}
.yb0{bottom:367.466667pt;}
.y118{bottom:374.000000pt;}
.y3a{bottom:374.506667pt;}
.y134{bottom:374.773333pt;}
.y196{bottom:378.306667pt;}
.yc4{bottom:378.640000pt;}
.y2b{bottom:379.026667pt;}
.ycf{bottom:384.200000pt;}
.y123{bottom:384.666667pt;}
.ybf{bottom:385.733333pt;}
.yd5{bottom:390.600000pt;}
.ye8{bottom:393.173333pt;}
.y7c{bottom:394.133333pt;}
.y4{bottom:396.400000pt;}
.ya7{bottom:396.933333pt;}
.y195{bottom:397.333333pt;}
.y156{bottom:397.466667pt;}
.y45{bottom:400.666667pt;}
.yaf{bottom:402.506667pt;}
.y15d{bottom:402.533333pt;}
.y138{bottom:402.866667pt;}
.y115{bottom:406.000000pt;}
.y65{bottom:406.133333pt;}
.y2a{bottom:409.106667pt;}
.ye7{bottom:416.200000pt;}
.y194{bottom:417.360000pt;}
.y39{bottom:417.560000pt;}
.ydc{bottom:418.200000pt;}
.ydd{bottom:419.200000pt;}
.y149{bottom:419.800000pt;}
.ya6{bottom:422.973333pt;}
.y1b{bottom:426.960000pt;}
.yce{bottom:429.266667pt;}
.y10e{bottom:429.360000pt;}
.ybe{bottom:430.800000pt;}
.y15c{bottom:431.560000pt;}
.ydb{bottom:437.226667pt;}
.yae{bottom:437.533333pt;}
.y18e{bottom:439.026667pt;}
.y29{bottom:439.133333pt;}
.ye6{bottom:439.226667pt;}
.y193{bottom:439.400000pt;}
.y44{bottom:439.733333pt;}
.y11e{bottom:441.133333pt;}
.y93{bottom:444.933333pt;}
.y148{bottom:448.840000pt;}
.y16{bottom:449.360000pt;}
.yff{bottom:449.706667pt;}
.y95{bottom:454.333333pt;}
.ye{bottom:454.973333pt;}
.y18d{bottom:456.026667pt;}
.y15b{bottom:459.600000pt;}
.y7f{bottom:460.373333pt;}
.ybd{bottom:460.840000pt;}
.ye5{bottom:462.266667pt;}
.y3{bottom:466.506667pt;}
.y155{bottom:466.626667pt;}
.y188{bottom:468.026667pt;}
.y28{bottom:468.173333pt;}
.y38{bottom:470.640000pt;}
.y11c{bottom:471.173333pt;}
.yd{bottom:474.000000pt;}
.y147{bottom:476.866667pt;}
.y43{bottom:477.773333pt;}
.y1a{bottom:478.026667pt;}
.y15{bottom:479.400000pt;}
.y190{bottom:480.360000pt;}
.y18c{bottom:481.026667pt;}
.y92{bottom:482.973333pt;}
.ye4{bottom:486.293333pt;}
.y94{bottom:486.400000pt;}
.y187{bottom:487.066667pt;}
.y15a{bottom:490.666667pt;}
.ybc{bottom:490.866667pt;}
.yad{bottom:492.640000pt;}
.y137{bottom:494.133333pt;}
.y18f{bottom:497.400000pt;}
.y18b{bottom:498.026667pt;}
.y27{bottom:498.200000pt;}
.y7e{bottom:499.440000pt;}
.y186{bottom:507.106667pt;}
.y146{bottom:507.933333pt;}
.y14{bottom:508.440000pt;}
.y37{bottom:513.693333pt;}
.y42{bottom:515.840000pt;}
.y10d{bottom:521.893333pt;}
.y96{bottom:525.893333pt;}
.y185{bottom:526.133333pt;}
.yac{bottom:527.666667pt;}
.ybb{bottom:527.933333pt;}
.y117{bottom:529.266667pt;}
.y159{bottom:529.693333pt;}
.ye3{bottom:530.360000pt;}
.yf8{bottom:533.533333pt;}
.yf5{bottom:535.506667pt;}
.y2{bottom:535.600000pt;}
.y13{bottom:538.506667pt;}
.y7d{bottom:539.466667pt;}
.y33{bottom:541.840000pt;}
.y184{bottom:545.133333pt;}
.y145{bottom:546.973333pt;}
.yba{bottom:557.973333pt;}
.y183{bottom:564.173333pt;}
.y36{bottom:566.773333pt;}
.yf4{bottom:571.533333pt;}
.y182{bottom:584.200000pt;}
.y18{bottom:588.973333pt;}
.y144{bottom:596.733333pt;}
.y6c{bottom:597.666667pt;}
.y114{bottom:597.733333pt;}
.yd2{bottom:598.133333pt;}
.y135{bottom:603.106667pt;}
.yf7{bottom:606.440000pt;}
.y72{bottom:608.693333pt;}
.y8f{bottom:609.693333pt;}
.y136{bottom:610.506667pt;}
.yd4{bottom:616.226667pt;}
.y91{bottom:617.466667pt;}
.yc3{bottom:617.560000pt;}
.y49{bottom:619.226667pt;}
.y178{bottom:619.800000pt;}
.y9b{bottom:622.306667pt;}
.y64{bottom:622.640000pt;}
.ya5{bottom:622.733333pt;}
.ye2{bottom:624.266667pt;}
.y99{bottom:625.106667pt;}
.y74{bottom:626.200000pt;}
.y173{bottom:627.226667pt;}
.y22{bottom:633.360000pt;}
.y63{bottom:635.973333pt;}
.y21{bottom:637.693333pt;}
.y177{bottom:638.840000pt;}
.yda{bottom:640.200000pt;}
.y97{bottom:642.866667pt;}
.yd1{bottom:643.200000pt;}
.yab{bottom:645.000000pt;}
.y80{bottom:646.973333pt;}
.y133{bottom:653.933333pt;}
.y143{bottom:655.800000pt;}
.y113{bottom:656.800000pt;}
.y17{bottom:657.066667pt;}
.y6b{bottom:657.733333pt;}
.y8e{bottom:657.773333pt;}
.y176{bottom:657.866667pt;}
.y90{bottom:658.533333pt;}
.y71{bottom:659.800000pt;}
.y172{bottom:666.026667pt;}
.y9a{bottom:666.360000pt;}
.yf6{bottom:666.533333pt;}
.ya4{bottom:666.800000pt;}
.yc2{bottom:668.640000pt;}
.yd3{bottom:670.333333pt;}
.y98{bottom:674.173333pt;}
.y175{bottom:676.893333pt;}
.y132{bottom:676.973333pt;}
.yd0{bottom:685.266667pt;}
.y174{bottom:696.933333pt;}
.y131{bottom:700.000000pt;}
.y26{bottom:745.733333pt;}
.y25{bottom:783.800000pt;}
.y24{bottom:821.840000pt;}
.y23{bottom:860.893333pt;}
.h34{height:42.048000pt;}
.h2b{height:45.117188pt;}
.h16{height:49.056000pt;}
.h17{height:49.172800pt;}
.h2a{height:49.802539pt;}
.h62{height:56.064000pt;}
.h63{height:56.180800pt;}
.h2d{height:58.574023pt;}
.h66{height:59.584000pt;}
.h65{height:59.708133pt;}
.h50{height:61.400391pt;}
.h1a{height:61.497852pt;}
.h69{height:63.041016pt;}
.h4f{height:63.164062pt;}
.h2c{height:63.264323pt;}
.h6{height:66.576000pt;}
.h7{height:66.692800pt;}
.hf{height:70.196800pt;}
.h39{height:70.269336pt;}
.h61{height:70.880133pt;}
.h1{height:73.193164pt;}
.h57{height:73.290625pt;}
.h5{height:73.700800pt;}
.h1b{height:74.480000pt;}
.h1c{height:74.604133pt;}
.h54{height:75.295573pt;}
.h48{height:78.328133pt;}
.h5d{height:81.258398pt;}
.h30{height:81.311198pt;}
.h5b{height:82.062109pt;}
.h60{height:84.212800pt;}
.h3f{height:84.888477pt;}
.h23{height:85.249805pt;}
.h22{height:85.351172pt;}
.h26{height:85.414062pt;}
.h25{height:85.515625pt;}
.ha{height:87.716800pt;}
.h9{height:87.833600pt;}
.h33{height:90.305794pt;}
.h2f{height:92.066406pt;}
.h3a{height:93.224133pt;}
.h2e{height:93.659961pt;}
.h11{height:96.350260pt;}
.h12{height:96.450521pt;}
.h28{height:97.601562pt;}
.h29{height:97.703125pt;}
.h36{height:98.228800pt;}
.h64{height:100.672133pt;}
.h24{height:100.854297pt;}
.h21{height:100.963802pt;}
.h3c{height:102.431445pt;}
.h3d{height:102.528906pt;}
.h15{height:104.396133pt;}
.h14{height:104.520267pt;}
.h49{height:105.236800pt;}
.h4a{height:105.353600pt;}
.h43{height:108.376562pt;}
.h13{height:112.244800pt;}
.h19{height:112.361600pt;}
.h5f{height:119.292133pt;}
.h37{height:119.416267pt;}
.h3e{height:120.071875pt;}
.he{height:126.260800pt;}
.h4{height:126.377600pt;}
.h67{height:127.584000pt;}
.h68{height:127.868133pt;}
.h42{height:129.536458pt;}
.h1e{height:134.188133pt;}
.h1d{height:134.312267pt;}
.h46{height:134.452800pt;}
.h40{height:137.912133pt;}
.h45{height:142.799467pt;}
.h8{height:146.826133pt;}
.h38{height:150.788800pt;}
.h35{height:150.905600pt;}
.h27{height:155.107292pt;}
.hd{height:160.256133pt;}
.hc{height:160.380267pt;}
.h32{height:161.984667pt;}
.h51{height:182.724267pt;}
.h10{height:186.448267pt;}
.h41{height:186.572400pt;}
.h47{height:193.896267pt;}
.h31{height:196.866797pt;}
.h18{height:197.620267pt;}
.h3b{height:205.058203pt;}
.hb{height:212.640400pt;}
.h58{height:213.000000pt;}
.h53{height:214.000000pt;}
.h44{height:219.964267pt;}
.h5c{height:225.000000pt;}
.h3{height:238.584267pt;}
.h2{height:238.708400pt;}
.h20{height:248.747917pt;}
.h52{height:270.000000pt;}
.h5a{height:334.000000pt;}
.h4e{height:351.000000pt;}
.h4b{height:359.000000pt;}
.h4d{height:360.000000pt;}
.h5e{height:414.000000pt;}
.h59{height:420.000000pt;}
.h55{height:426.000000pt;}
.h56{height:427.000000pt;}
.h4c{height:532.000000pt;}
.h1f{height:597.240625pt;}
.h0{height:720.000000pt;}
.w2{width:286.000000pt;}
.w4{width:413.000000pt;}
.w6{width:540.000000pt;}
.w3{width:674.000000pt;}
.w5{width:768.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xaa{left:4.366648pt;}
.x2{left:7.733314pt;}
.x9e{left:10.093333pt;}
.x84{left:13.666667pt;}
.x11{left:16.899981pt;}
.x3{left:23.266648pt;}
.x1e{left:24.933314pt;}
.x17{left:26.966648pt;}
.x1d{left:27.999981pt;}
.x38{left:30.033314pt;}
.x12{left:31.033314pt;}
.xb0{left:33.033314pt;}
.x45{left:37.266648pt;}
.x81{left:38.366648pt;}
.x72{left:40.099981pt;}
.x79{left:41.166648pt;}
.x43{left:42.599981pt;}
.x3e{left:48.766648pt;}
.xa9{left:50.399981pt;}
.x7c{left:52.033314pt;}
.x3c{left:56.266648pt;}
.x95{left:57.466648pt;}
.x3d{left:61.766648pt;}
.xa1{left:62.833314pt;}
.xa7{left:64.033314pt;}
.x8d{left:67.399981pt;}
.x8b{left:69.566648pt;}
.x8a{left:70.633314pt;}
.x5c{left:73.666648pt;}
.x7b{left:74.833314pt;}
.x35{left:76.933314pt;}
.x46{left:83.499981pt;}
.x8e{left:92.833314pt;}
.x24{left:97.666648pt;}
.x9b{left:100.000000pt;}
.x60{left:100.933314pt;}
.x50{left:107.966648pt;}
.xa2{left:110.866648pt;}
.x3a{left:112.833314pt;}
.x8c{left:116.933314pt;}
.xb2{left:120.199981pt;}
.x61{left:124.933314pt;}
.x7a{left:126.599981pt;}
.x44{left:132.333314pt;}
.x22{left:142.799981pt;}
.x94{left:144.026648pt;}
.x40{left:149.399981pt;}
.x41{left:153.666648pt;}
.x62{left:187.106648pt;}
.x42{left:202.733314pt;}
.x7f{left:217.599981pt;}
.x99{left:218.533314pt;}
.x97{left:219.733314pt;}
.xb8{left:223.506648pt;}
.xb7{left:227.199981pt;}
.x29{left:228.693314pt;}
.xb4{left:230.199981pt;}
.x73{left:234.693314pt;}
.x74{left:249.799981pt;}
.x2a{left:252.693314pt;}
.x83{left:256.000000pt;}
.x23{left:259.333314pt;}
.x25{left:265.306648pt;}
.x2f{left:280.026648pt;}
.x30{left:281.306648pt;}
.xb1{left:304.439981pt;}
.x3b{left:307.199981pt;}
.x18{left:318.866648pt;}
.x77{left:319.973314pt;}
.x82{left:320.866648pt;}
.x6f{left:324.999981pt;}
.xb3{left:327.639981pt;}
.x70{left:334.666648pt;}
.x6e{left:341.439981pt;}
.x80{left:346.773314pt;}
.x4d{left:348.639981pt;}
.x4c{left:353.639981pt;}
.x4f{left:357.733314pt;}
.x6d{left:359.133314pt;}
.x3f{left:364.599981pt;}
.x59{left:369.839981pt;}
.x9c{left:370.800000pt;}
.x78{left:381.266648pt;}
.x1b{left:389.293314pt;}
.x19{left:393.506648pt;}
.xb9{left:406.439981pt;}
.xbb{left:408.133314pt;}
.x1c{left:413.293314pt;}
.x1a{left:416.399981pt;}
.xba{left:417.839981pt;}
.x87{left:420.133314pt;}
.x71{left:423.173314pt;}
.x75{left:429.906648pt;}
.x5e{left:434.573314pt;}
.x5a{left:445.239981pt;}
.x55{left:453.359981pt;}
.x53{left:459.626648pt;}
.x9a{left:463.066648pt;}
.x54{left:465.359981pt;}
.x8f{left:469.000000pt;}
.x5f{left:477.599981pt;}
.x63{left:484.239981pt;}
.xa0{left:490.733333pt;}
.x4e{left:491.666648pt;}
.x4{left:502.759981pt;}
.x64{left:508.266648pt;}
.x2b{left:515.226648pt;}
.xb6{left:516.226648pt;}
.xb5{left:527.439981pt;}
.x98{left:529.439981pt;}
.x56{left:532.839981pt;}
.x52{left:535.759981pt;}
.x85{left:541.000000pt;}
.x2c{left:541.933314pt;}
.x65{left:562.333314pt;}
.x48{left:566.333314pt;}
.x96{left:568.999981pt;}
.x31{left:580.266648pt;}
.x6b{left:584.439981pt;}
.x39{left:585.999981pt;}
.x93{left:588.799981pt;}
.x32{left:590.133314pt;}
.x6{left:591.666648pt;}
.x5{left:595.266648pt;}
.x76{left:599.439981pt;}
.x66{left:601.466648pt;}
.x5d{left:636.359981pt;}
.xab{left:637.759981pt;}
.xac{left:638.973314pt;}
.x9d{left:640.000000pt;}
.xad{left:643.733314pt;}
.xae{left:655.759981pt;}
.xaf{left:657.266648pt;}
.x90{left:682.039981pt;}
.x7d{left:684.559981pt;}
.x91{left:701.893314pt;}
.x6c{left:703.533314pt;}
.x16{left:705.226648pt;}
.x1f{left:719.933314pt;}
.x7e{left:748.639981pt;}
.x20{left:759.959981pt;}
.xa6{left:777.666648pt;}
.xa5{left:791.173314pt;}
.x36{left:797.666648pt;}
.x2d{left:801.066648pt;}
.xa3{left:802.466648pt;}
.xa4{left:807.306648pt;}
.x21{left:808.333314pt;}
.x6a{left:812.799981pt;}
.x2e{left:825.066648pt;}
.x89{left:828.333314pt;}
.x34{left:842.466648pt;}
.x33{left:843.639981pt;}
.x37{left:845.693314pt;}
.x26{left:859.559981pt;}
.x13{left:861.039981pt;}
.x4b{left:862.439981pt;}
.x67{left:867.573314pt;}
.x28{left:882.733314pt;}
.x68{left:891.573314pt;}
.x15{left:892.866648pt;}
.x47{left:905.759981pt;}
.x27{left:907.599981pt;}
.xd{left:910.266648pt;}
.x9f{left:920.133314pt;}
.x58{left:926.226648pt;}
.x14{left:927.573314pt;}
.x4a{left:941.426648pt;}
.x57{left:951.666648pt;}
.x69{left:953.733314pt;}
.x49{left:960.706648pt;}
.x92{left:974.106648pt;}
.xf{left:1023.066648pt;}
.x8{left:1035.133314pt;}
.xc{left:1045.173314pt;}
.xb{left:1051.399981pt;}
.x7{left:1054.066648pt;}
.xe{left:1056.506648pt;}
.x88{left:1065.706648pt;}
.x86{left:1088.199981pt;}
.x10{left:1146.266648pt;}
.xa{left:1156.373314pt;}
.x9{left:1174.893314pt;}
.xa8{left:1193.359981pt;}
.x5b{left:1207.706648pt;}
.x1{left:1209.373314pt;}
.x51{left:1211.866648pt;}
}




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