
    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_a602d256c71b49e68ddfe9f3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.134000;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_b48bb6459ab732a0fb72b727.woff')format("woff");}.ff2{font-family:ff2;line-height:0.859000;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_201ba2cff24af97ac7bfedeb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_6aed724b8ee2b9771030a0a1.woff')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_6985d57b53da624a25e0237b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.948242;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_a3240cb3484ee019e490a13a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_b1dec1b3f7179c8bd433ca8d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.966797;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_ba15a3cd16eb56b48c3df438.woff')format("woff");}.ff8{font-family:ff8;line-height:0.966797;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_e4f4e5625000553798bbd1cd.woff')format("woff");}.ff9{font-family:ff9;line-height:0.935000;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_375e8edcb4215cfc003e8d28.woff')format("woff");}.ffa{font-family:ffa;line-height:1.135000;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_363623f24d61686da58f400d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.135000;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_120be3c412930bd35b4b6869.woff')format("woff");}.ffc{font-family:ffc;line-height:1.008301;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_4d5c09f1c5b775af6bd7fb0c.woff')format("woff");}.ffd{font-family:ffd;line-height:1.014160;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_eaebde52016d4dd3e577e7d2.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_1a7632e507756b4294a766e6.woff')format("woff");}.fff{font-family:fff;line-height:1.008301;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_60af5c789035273ec60cce55.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_00e76a84463606734eb48cfe.woff')format("woff");}.ff11{font-family:ff11;line-height:1.057617;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_f4d7cc20972c2cedcd953096.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_968bc3646131c9436ee20e2b.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_b46c3cd233a705b244768aec.woff')format("woff");}.ff14{font-family:ff14;line-height:1.056000;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);}
.v0{vertical-align:0.000000px;}
.ls3f{letter-spacing:-2.832000px;}
.ls9{letter-spacing:-2.622000px;}
.ls47{letter-spacing:-2.472000px;}
.ls8{letter-spacing:-2.328000px;}
.ls50{letter-spacing:-2.322000px;}
.ls4b{letter-spacing:-2.250000px;}
.lsa{letter-spacing:-2.178000px;}
.ls4d{letter-spacing:-2.172000px;}
.ls4c{letter-spacing:-1.896000px;}
.ls4a{letter-spacing:-1.806000px;}
.ls2d{letter-spacing:-1.614000px;}
.ls23{letter-spacing:-1.554000px;}
.ls22{letter-spacing:-1.512000px;}
.lsc{letter-spacing:-1.464000px;}
.ls37{letter-spacing:-1.308000px;}
.ls18{letter-spacing:-1.122000px;}
.ls1e{letter-spacing:-1.110000px;}
.ls14{letter-spacing:-1.068000px;}
.ls48{letter-spacing:-1.014000px;}
.ls1b{letter-spacing:-0.936000px;}
.ls39{letter-spacing:-0.930000px;}
.ls11{letter-spacing:-0.924000px;}
.ls16{letter-spacing:-0.876000px;}
.lsb{letter-spacing:-0.804000px;}
.ls1c{letter-spacing:-0.786000px;}
.ls19{letter-spacing:-0.523200px;}
.ls10{letter-spacing:-0.441000px;}
.ls17{letter-spacing:-0.291000px;}
.ls27{letter-spacing:-0.119400px;}
.ls26{letter-spacing:-0.090600px;}
.ls2b{letter-spacing:-0.082800px;}
.ls34{letter-spacing:-0.075000px;}
.ls28{letter-spacing:-0.067200px;}
.ls29{letter-spacing:-0.059700px;}
.ls2c{letter-spacing:-0.022980px;}
.ls33{letter-spacing:-0.015300px;}
.ls0{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.030600px;}
.ls35{letter-spacing:0.059700px;}
.ls36{letter-spacing:0.067200px;}
.ls21{letter-spacing:0.072600px;}
.ls2e{letter-spacing:0.075000px;}
.ls25{letter-spacing:0.082800px;}
.ls4f{letter-spacing:0.127200px;}
.ls20{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.390600px;}
.ls44{letter-spacing:0.577200px;}
.ls45{letter-spacing:0.648000px;}
.ls3e{letter-spacing:0.666000px;}
.ls43{letter-spacing:0.675000px;}
.ls1a{letter-spacing:0.762000px;}
.ls40{letter-spacing:0.816000px;}
.ls1d{letter-spacing:0.930000px;}
.ls38{letter-spacing:0.948000px;}
.lsf{letter-spacing:0.978000px;}
.ls13{letter-spacing:1.128000px;}
.ls24{letter-spacing:1.392000px;}
.ls49{letter-spacing:1.440000px;}
.ls3d{letter-spacing:1.476000px;}
.ls41{letter-spacing:1.698000px;}
.ls3a{letter-spacing:1.938000px;}
.ls46{letter-spacing:2.178000px;}
.ls15{letter-spacing:2.250000px;}
.ls7{letter-spacing:2.382000px;}
.ls12{letter-spacing:2.400000px;}
.ls42{letter-spacing:22.338600px;}
.lse{letter-spacing:26.475000px;}
.ls4e{letter-spacing:30.397050px;}
.ls1f{letter-spacing:57.322500px;}
.ls2{letter-spacing:71.602500px;}
.ls3c{letter-spacing:95.437200px;}
.ls3b{letter-spacing:95.529600px;}
.ls3{letter-spacing:95.587200px;}
.ls4{letter-spacing:95.679600px;}
.ls2f{letter-spacing:97.245000px;}
.ls30{letter-spacing:97.297500px;}
.ls5{letter-spacing:97.419600px;}
.ls31{letter-spacing:105.090000px;}
.ls32{letter-spacing:105.142500px;}
.ls6{letter-spacing:105.172500px;}
.lsd{letter-spacing:124.297500px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws60{word-spacing:-41.136000px;}
.ws104{word-spacing:-31.752000px;}
.wse4{word-spacing:-27.794400px;}
.ws2{word-spacing:-27.037500px;}
.ws105{word-spacing:-25.103400px;}
.wsa9{word-spacing:-25.061700px;}
.ws4{word-spacing:-23.810700px;}
.ws3{word-spacing:-23.662500px;}
.wsee{word-spacing:-22.590300px;}
.ws87{word-spacing:-22.559700px;}
.ws91{word-spacing:-22.484700px;}
.ws86{word-spacing:-22.476900px;}
.ws94{word-spacing:-21.412500px;}
.wsb{word-spacing:-18.806700px;}
.wsb2{word-spacing:-18.765000px;}
.wsa{word-spacing:-17.342700px;}
.ws88{word-spacing:-17.192700px;}
.ws6{word-spacing:-16.912500px;}
.wsd2{word-spacing:-16.840500px;}
.wsad{word-spacing:-16.488000px;}
.ws63{word-spacing:-16.445700px;}
.ws1{word-spacing:-16.304700px;}
.wsc7{word-spacing:-15.194700px;}
.wsae{word-spacing:-15.053700px;}
.ws62{word-spacing:-15.012000px;}
.ws9{word-spacing:-14.734500px;}
.ws48{word-spacing:-14.662500px;}
.ws1a{word-spacing:-14.625000px;}
.ws5{word-spacing:-14.584500px;}
.wsa6{word-spacing:-12.551700px;}
.wsec{word-spacing:-12.412500px;}
.wse9{word-spacing:-12.375000px;}
.wse7{word-spacing:-10.569000px;}
.wseb{word-spacing:-10.240500px;}
.wse8{word-spacing:-10.125000px;}
.wsf8{word-spacing:-10.090500px;}
.wsab{word-spacing:-6.619050px;}
.ws61{word-spacing:-4.355550px;}
.wsff{word-spacing:-4.043700px;}
.ws20{word-spacing:-3.822000px;}
.wsfc{word-spacing:-3.651900px;}
.wsb8{word-spacing:-3.617100px;}
.wsd9{word-spacing:-3.261000px;}
.wsfe{word-spacing:-3.187200px;}
.wsbc{word-spacing:-3.082950px;}
.wsba{word-spacing:-3.072150px;}
.wsd7{word-spacing:-2.635950px;}
.wsfb{word-spacing:-2.622000px;}
.wsac{word-spacing:-1.919100px;}
.ws39{word-spacing:-1.589550px;}
.wsd{word-spacing:-1.486500px;}
.ws7{word-spacing:-1.400850px;}
.wsc9{word-spacing:-1.280700px;}
.ws3d{word-spacing:-1.134750px;}
.wsf9{word-spacing:-1.134450px;}
.ws50{word-spacing:-1.117500px;}
.wsc{word-spacing:-1.053000px;}
.ws43{word-spacing:-0.933750px;}
.wsa3{word-spacing:-0.895050px;}
.ws5b{word-spacing:-0.886500px;}
.ws1b{word-spacing:-0.853500px;}
.wsaa{word-spacing:-0.748350px;}
.ws15{word-spacing:-0.511500px;}
.ws22{word-spacing:-0.499500px;}
.wsa1{word-spacing:-0.453150px;}
.ws52{word-spacing:-0.389100px;}
.ws21{word-spacing:-0.307500px;}
.wsa2{word-spacing:-0.286800px;}
.wsc3{word-spacing:-0.210300px;}
.ws8a{word-spacing:-0.150000px;}
.wsd0{word-spacing:-0.135600px;}
.ws45{word-spacing:-0.113100px;}
.wsf5{word-spacing:-0.093300px;}
.ws54{word-spacing:-0.084000px;}
.ws41{word-spacing:-0.058650px;}
.ws16{word-spacing:-0.058500px;}
.ws5d{word-spacing:-0.016050px;}
.ws75{word-spacing:-0.012150px;}
.ws0{word-spacing:0.000000px;}
.wsa4{word-spacing:0.038400px;}
.wsb0{word-spacing:0.072750px;}
.wsf6{word-spacing:0.083640px;}
.ws92{word-spacing:0.119550px;}
.ws90{word-spacing:0.133800px;}
.ws85{word-spacing:0.137850px;}
.wsf7{word-spacing:0.155400px;}
.wsce{word-spacing:0.202800px;}
.ws3b{word-spacing:0.210750px;}
.ws56{word-spacing:0.219900px;}
.wsca{word-spacing:0.239700px;}
.ws93{word-spacing:0.242700px;}
.ws89{word-spacing:0.252750px;}
.wsbb{word-spacing:0.255600px;}
.wsf4{word-spacing:0.261750px;}
.wsc5{word-spacing:0.306600px;}
.wsa5{word-spacing:0.567900px;}
.wsb1{word-spacing:0.582750px;}
.wsc2{word-spacing:0.601200px;}
.ws8{word-spacing:0.638100px;}
.wsd1{word-spacing:0.639600px;}
.wsa0{word-spacing:0.658200px;}
.wscf{word-spacing:0.680400px;}
.ws1c{word-spacing:0.687000px;}
.wsfa{word-spacing:0.727950px;}
.wsf{word-spacing:0.750000px;}
.wse6{word-spacing:0.802650px;}
.wsaf{word-spacing:0.846600px;}
.wsc4{word-spacing:0.903600px;}
.wsc6{word-spacing:0.906600px;}
.ws24{word-spacing:1.066500px;}
.ws18{word-spacing:1.156500px;}
.ws47{word-spacing:1.380750px;}
.ws17{word-spacing:1.470000px;}
.ws1f{word-spacing:1.605000px;}
.ws58{word-spacing:1.997250px;}
.wscd{word-spacing:2.049600px;}
.wscb{word-spacing:2.713350px;}
.ws19{word-spacing:3.492000px;}
.ws5a{word-spacing:3.506850px;}
.ws23{word-spacing:3.543000px;}
.ws5c{word-spacing:3.573750px;}
.wsd3{word-spacing:3.664950px;}
.wsea{word-spacing:3.673800px;}
.ws3c{word-spacing:3.753750px;}
.ws81{word-spacing:3.867900px;}
.ws46{word-spacing:3.897450px;}
.ws44{word-spacing:4.029900px;}
.ws6d{word-spacing:4.080750px;}
.ws1e{word-spacing:4.156500px;}
.ws53{word-spacing:4.173750px;}
.ws6f{word-spacing:4.351500px;}
.ws59{word-spacing:4.353750px;}
.ws7f{word-spacing:4.513200px;}
.ws6c{word-spacing:4.567350px;}
.ws72{word-spacing:4.650750px;}
.ws7e{word-spacing:4.659270px;}
.ws82{word-spacing:4.731750px;}
.ws80{word-spacing:4.739550px;}
.ws57{word-spacing:4.749900px;}
.wsd8{word-spacing:4.762500px;}
.ws83{word-spacing:4.770750px;}
.ws74{word-spacing:4.783350px;}
.ws6b{word-spacing:4.829100px;}
.ws71{word-spacing:4.911750px;}
.ws84{word-spacing:4.919550px;}
.ws6e{word-spacing:4.933200px;}
.ws7d{word-spacing:4.979100px;}
.ws70{word-spacing:4.993200px;}
.ws73{word-spacing:5.053200px;}
.ws3a{word-spacing:5.240700px;}
.ws100{word-spacing:5.353200px;}
.wsfd{word-spacing:5.388900px;}
.ws1d{word-spacing:5.685000px;}
.ws55{word-spacing:5.780700px;}
.wsb9{word-spacing:5.831700px;}
.wsc8{word-spacing:6.105600px;}
.wsf2{word-spacing:7.246500px;}
.wsd5{word-spacing:7.366050px;}
.wsf3{word-spacing:7.510050px;}
.wsf1{word-spacing:7.957050px;}
.wsf0{word-spacing:8.031900px;}
.wsed{word-spacing:8.073600px;}
.wsef{word-spacing:8.310450px;}
.wsd6{word-spacing:8.581200px;}
.ws36{word-spacing:10.170000px;}
.ws38{word-spacing:10.447500px;}
.wsd4{word-spacing:12.312450px;}
.ws13{word-spacing:13.693500px;}
.ws11{word-spacing:14.170500px;}
.ws37{word-spacing:14.266500px;}
.wse5{word-spacing:14.480400px;}
.ws14{word-spacing:14.889000px;}
.ws34{word-spacing:15.190500px;}
.ws12{word-spacing:15.271500px;}
.wse3{word-spacing:16.098000px;}
.ws29{word-spacing:16.213500px;}
.wse{word-spacing:16.516500px;}
.ws2a{word-spacing:16.884000px;}
.ws5e{word-spacing:16.927350px;}
.ws28{word-spacing:16.947000px;}
.ws4f{word-spacing:16.966050px;}
.ws69{word-spacing:17.177550px;}
.ws42{word-spacing:17.536050px;}
.ws10{word-spacing:17.601000px;}
.ws51{word-spacing:17.664000px;}
.ws65{word-spacing:17.696850px;}
.ws67{word-spacing:17.926500px;}
.ws7c{word-spacing:18.013200px;}
.ws4a{word-spacing:18.014550px;}
.ws49{word-spacing:18.090450px;}
.ws76{word-spacing:18.397350px;}
.ws64{word-spacing:18.423600px;}
.ws7b{word-spacing:18.497100px;}
.ws79{word-spacing:18.588900px;}
.ws7a{word-spacing:18.591450px;}
.ws77{word-spacing:18.604050px;}
.ws6a{word-spacing:18.613200px;}
.ws68{word-spacing:18.651450px;}
.ws66{word-spacing:18.686400px;}
.ws4c{word-spacing:18.728850px;}
.ws78{word-spacing:18.866400px;}
.ws27{word-spacing:18.877500px;}
.ws103{word-spacing:19.135650px;}
.ws5f{word-spacing:19.411500px;}
.ws25{word-spacing:20.586000px;}
.ws4e{word-spacing:21.358500px;}
.ws4d{word-spacing:21.952650px;}
.ws102{word-spacing:22.054500px;}
.ws4b{word-spacing:22.298700px;}
.ws2b{word-spacing:22.947000px;}
.wsb7{word-spacing:23.182200px;}
.wsb4{word-spacing:23.377200px;}
.wsb3{word-spacing:23.949000px;}
.ws32{word-spacing:23.991000px;}
.ws26{word-spacing:24.016500px;}
.wsda{word-spacing:24.894450px;}
.wsde{word-spacing:25.283700px;}
.wsdb{word-spacing:25.687950px;}
.ws35{word-spacing:25.839000px;}
.wsb5{word-spacing:26.053200px;}
.wsb6{word-spacing:26.112600px;}
.wsbe{word-spacing:26.192550px;}
.ws8e{word-spacing:26.957700px;}
.ws96{word-spacing:27.489750px;}
.ws8c{word-spacing:27.578550px;}
.wsc1{word-spacing:27.742650px;}
.ws8d{word-spacing:27.780900px;}
.ws8f{word-spacing:27.783000px;}
.wsa7{word-spacing:27.950700px;}
.ws2d{word-spacing:27.970500px;}
.ws98{word-spacing:28.030050px;}
.ws99{word-spacing:28.080750px;}
.ws8b{word-spacing:28.104000px;}
.wsbd{word-spacing:28.388850px;}
.ws33{word-spacing:28.468500px;}
.ws97{word-spacing:28.485600px;}
.ws30{word-spacing:28.522500px;}
.ws9e{word-spacing:28.687350px;}
.ws95{word-spacing:28.773600px;}
.ws9c{word-spacing:28.859700px;}
.ws9b{word-spacing:28.919550px;}
.ws9d{word-spacing:28.932150px;}
.wsbf{word-spacing:28.934250px;}
.ws9a{word-spacing:29.053200px;}
.ws9f{word-spacing:29.135850px;}
.ws2c{word-spacing:29.136000px;}
.wsc0{word-spacing:30.096150px;}
.ws2e{word-spacing:30.195000px;}
.ws101{word-spacing:30.522000px;}
.ws3e{word-spacing:31.741200px;}
.wsa8{word-spacing:32.126700px;}
.ws40{word-spacing:32.654550px;}
.ws2f{word-spacing:32.656500px;}
.wsdc{word-spacing:33.082500px;}
.wsdd{word-spacing:33.412500px;}
.wsdf{word-spacing:33.553200px;}
.ws31{word-spacing:34.227000px;}
.ws3f{word-spacing:35.013750px;}
.wse2{word-spacing:41.421900px;}
.wse0{word-spacing:45.362100px;}
.wse1{word-spacing:46.455600px;}
.wscc{word-spacing:53.519550px;}
._1a{margin-left:-13.687050px;}
._19{margin-left:-10.570950px;}
._6{margin-left:-5.801700px;}
._7{margin-left:-4.145700px;}
._2{margin-left:-2.815800px;}
._0{margin-left:-1.407900px;}
._a{width:1.001100px;}
._1{width:2.057700px;}
._3{width:3.140700px;}
._9{width:4.213500px;}
._8{width:5.347500px;}
._b{width:10.963800px;}
._c{width:14.104200px;}
._d{width:15.252600px;}
._10{width:16.581300px;}
._e{width:18.134400px;}
._29{width:21.254850px;}
._1b{width:22.783800px;}
._1d{width:24.223050px;}
._16{width:26.770800px;}
._21{width:28.111200px;}
._1e{width:29.211900px;}
._20{width:30.376350px;}
._f{width:31.476600px;}
._12{width:32.639700px;}
._13{width:34.508400px;}
._1f{width:35.511900px;}
._11{width:36.634200px;}
._28{width:41.894700px;}
._27{width:43.429500px;}
._15{width:44.729700px;}
._14{width:46.056000px;}
._17{width:48.915450px;}
._24{width:50.101500px;}
._23{width:51.987900px;}
._1c{width:55.684350px;}
._18{width:57.322500px;}
._26{width:66.880500px;}
._25{width:69.000600px;}
._22{width:81.411900px;}
._4{width:143.102400px;}
._5{width:166.315950px;}
.fc4{color:transparent;}
.fc3{color:rgb(26,26,26);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:45.000000px;}
.fse{font-size:45.150000px;}
.fs1b{font-size:49.500000px;}
.fs1c{font-size:49.650000px;}
.fs12{font-size:54.000000px;}
.fs11{font-size:54.150000px;}
.fsf{font-size:58.500000px;}
.fs5{font-size:58.650000px;}
.fs18{font-size:67.500000px;}
.fsc{font-size:67.650000px;}
.fs15{font-size:72.150000px;}
.fs6{font-size:76.650000px;}
.fs13{font-size:81.150000px;}
.fs4{font-size:85.650000px;}
.fs10{font-size:85.800000px;}
.fs16{font-size:90.150000px;}
.fs17{font-size:90.300000px;}
.fsa{font-size:94.650000px;}
.fsb{font-size:94.800000px;}
.fs1a{font-size:103.650000px;}
.fs1{font-size:108.150000px;}
.fs0{font-size:108.300000px;}
.fs9{font-size:144.150000px;}
.fs3{font-size:166.800000px;}
.fs1d{font-size:198.450000px;}
.fs7{font-size:256.950000px;}
.fs8{font-size:257.100000px;}
.fs19{font-size:265.950000px;}
.fs14{font-size:266.100000px;}
.fs2{font-size:288.600000px;}
.y0{bottom:0.000000px;}
.y85{bottom:9.000000px;}
.y73{bottom:12.712500px;}
.yc6{bottom:14.887500px;}
.yf{bottom:15.712500px;}
.yef{bottom:21.037500px;}
.y1a{bottom:21.075000px;}
.y110{bottom:24.375000px;}
.y4{bottom:25.987500px;}
.y44{bottom:27.862500px;}
.yb5{bottom:27.937500px;}
.y84{bottom:29.287500px;}
.y72{bottom:29.625000px;}
.yc5{bottom:31.800000px;}
.ye{bottom:33.750000px;}
.y9d{bottom:34.237500px;}
.yaf{bottom:34.537500px;}
.y129{bottom:38.775000px;}
.y10f{bottom:39.037500px;}
.yee{bottom:39.075000px;}
.y71{bottom:45.375000px;}
.y51{bottom:46.800000px;}
.yb4{bottom:47.100000px;}
.y48{bottom:47.212500px;}
.yc4{bottom:47.587500px;}
.yae{bottom:48.037500px;}
.y43{bottom:48.150000px;}
.y83{bottom:48.450000px;}
.yd{bottom:51.787500px;}
.yed{bottom:57.075000px;}
.y3{bottom:57.525000px;}
.y103{bottom:60.487500px;}
.y47{bottom:60.712500px;}
.y119{bottom:60.825000px;}
.y70{bottom:61.162500px;}
.yc3{bottom:63.337500px;}
.y128{bottom:65.850000px;}
.y50{bottom:67.087500px;}
.y42{bottom:67.312500px;}
.yb3{bottom:67.387500px;}
.y10e{bottom:68.325000px;}
.y82{bottom:68.737500px;}
.y62{bottom:72.487500px;}
.yec{bottom:75.112500px;}
.y102{bottom:79.650000px;}
.y10d{bottom:82.987500px;}
.yeb{bottom:84.337500px;}
.y4f{bottom:87.375000px;}
.y41{bottom:87.600000px;}
.y46{bottom:87.787500px;}
.y118{bottom:89.025000px;}
.y4c{bottom:89.737500px;}
.y2{bottom:90.225000px;}
.y61{bottom:92.775000px;}
.yc2{bottom:100.312500px;}
.yb2{bottom:100.987500px;}
.y45{bottom:101.287500px;}
.ya4{bottom:102.487500px;}
.y117{bottom:103.650000px;}
.y4e{bottom:106.537500px;}
.y40{bottom:107.887500px;}
.y4b{bottom:108.900000px;}
.y10c{bottom:111.150000px;}
.yea{bottom:113.662500px;}
.y60{bottom:114.187500px;}
.y9b{bottom:114.750000px;}
.y101{bottom:115.725000px;}
.yd7{bottom:119.325000px;}
.y127{bottom:119.925000px;}
.yb1{bottom:122.400000px;}
.y1{bottom:122.925000px;}
.y10b{bottom:125.812500px;}
.y4d{bottom:126.825000px;}
.y3f{bottom:127.050000px;}
.ya3{bottom:128.437500px;}
.yc1{bottom:130.762500px;}
.y28{bottom:131.250000px;}
.y100{bottom:133.725000px;}
.y5f{bottom:134.475000px;}
.y15{bottom:134.662500px;}
.yd6{bottom:139.612500px;}
.y9a{bottom:140.662500px;}
.yb0{bottom:143.812500px;}
.y5e{bottom:154.770000px;}
.y8f{bottom:154.875000px;}
.yfd{bottom:156.075000px;}
.y30{bottom:157.950000px;}
.yd5{bottom:158.775000px;}
.y14{bottom:160.605000px;}
.yc0{bottom:162.300000px;}
.y99{bottom:165.450000px;}
.y81{bottom:169.305000px;}
.y126{bottom:174.030000px;}
.y19{bottom:174.375000px;}
.yad{bottom:175.680000px;}
.y5d{bottom:176.175000px;}
.yde{bottom:176.520000px;}
.yd4{bottom:179.055000px;}
.y35{bottom:182.505000px;}
.y8e{bottom:183.030000px;}
.y6f{bottom:190.050000px;}
.y98{bottom:190.275000px;}
.y2f{bottom:191.745000px;}
.y27{bottom:193.245000px;}
.ybf{bottom:193.875000px;}
.y5c{bottom:196.470000px;}
.y7{bottom:198.375000px;}
.y80{bottom:206.505000px;}
.ye7{bottom:207.030000px;}
.ya1{bottom:210.075000px;}
.y8d{bottom:210.120000px;}
.y6e{bottom:210.345000px;}
.y13{bottom:211.320000px;}
.y18{bottom:211.575000px;}
.ydd{bottom:214.845000px;}
.y97{bottom:216.195000px;}
.y5b{bottom:217.875000px;}
.yd3{bottom:218.505000px;}
.y34{bottom:219.675000px;}
.ybe{bottom:224.295000px;}
.y2e{bottom:224.445000px;}
.y125{bottom:228.150000px;}
.yac{bottom:228.645000px;}
.y6d{bottom:229.500000px;}
.y108{bottom:232.425000px;}
.yfc{bottom:232.695000px;}
.ya0{bottom:234.870000px;}
.y12{bottom:236.100000px;}
.y1e{bottom:238.080000px;}
.y5a{bottom:238.155000px;}
.y8c{bottom:238.275000px;}
.yd2{bottom:238.800000px;}
.y96{bottom:240.975000px;}
.y6{bottom:247.995000px;}
.ydc{bottom:252.045000px;}
.y26{bottom:254.100000px;}
.y124{bottom:255.195000px;}
.y107{bottom:257.220000px;}
.yfb{bottom:257.520000px;}
.ye6{bottom:257.745000px;}
.y2d{bottom:258.270000px;}
.y59{bottom:258.450000px;}
.y11{bottom:260.925000px;}
.y114{bottom:263.145000px;}
.y8b{bottom:266.475000px;}
.yc9{bottom:266.655000px;}
.y95{bottom:266.880000px;}
.y6c{bottom:270.075000px;}
.y1d{bottom:275.280000px;}
.yc{bottom:276.975000px;}
.yd1{bottom:278.220000px;}
.y58{bottom:279.870000px;}
.y7f{bottom:280.875000px;}
.y38{bottom:280.905000px;}
.y78{bottom:281.280000px;}
.yab{bottom:281.625000px;}
.y106{bottom:282.030000px;}
.y123{bottom:282.225000px;}
.yfa{bottom:282.300000px;}
.ye5{bottom:282.570000px;}
.y3e{bottom:283.695000px;}
.y10{bottom:286.845000px;}
.y113{bottom:287.925000px;}
.y11b{bottom:288.675000px;}
.ydb{bottom:290.370000px;}
.y2c{bottom:290.925000px;}
.y25{bottom:291.300000px;}
.y94{bottom:291.720000px;}
.yc8{bottom:294.825000px;}
.y11e{bottom:298.245000px;}
.yd0{bottom:298.500000px;}
.yb{bottom:299.520000px;}
.y57{bottom:300.150000px;}
.yb7{bottom:302.895000px;}
.y8a{bottom:307.050000px;}
.yaa{bottom:307.530000px;}
.yf9{bottom:308.205000px;}
.y3d{bottom:308.475000px;}
.y5{bottom:308.850000px;}
.y122{bottom:309.300000px;}
.y77{bottom:309.495000px;}
.y6b{bottom:309.525000px;}
.y37{bottom:310.245000px;}
.y9f{bottom:311.520000px;}
.y1c{bottom:312.495000px;}
.y7e{bottom:314.700000px;}
.y4a{bottom:316.050000px;}
.y93{bottom:316.500000px;}
.ycf{bottom:317.655000px;}
.ybd{bottom:317.850000px;}
.y56{bottom:321.570000px;}
.ya{bottom:322.050000px;}
.y17{bottom:323.175000px;}
.yc7{bottom:324.150000px;}
.y6a{bottom:328.695000px;}
.y33{bottom:331.275000px;}
.yf8{bottom:333.000000px;}
.yb6{bottom:333.345000px;}
.ya9{bottom:334.575000px;}
.y89{bottom:335.205000px;}
.y76{bottom:336.525000px;}
.y36{bottom:339.525000px;}
.y55{bottom:341.850000px;}
.y92{bottom:342.420000px;}
.y9{bottom:344.580000px;}
.y11d{bottom:347.850000px;}
.y69{bottom:348.975000px;}
.ybc{bottom:349.425000px;}
.y49{bottom:349.875000px;}
.y11a{bottom:351.780000px;}
.y24{bottom:353.295000px;}
.y105{bottom:356.400000px;}
.y2b{bottom:357.450000px;}
.yf7{bottom:358.950000px;}
.ye4{bottom:359.175000px;}
.y20{bottom:360.195000px;}
.y16{bottom:360.375000px;}
.ya8{bottom:360.525000px;}
.y54{bottom:362.145000px;}
.y121{bottom:363.375000px;}
.y112{bottom:363.450000px;}
.y91{bottom:367.200000px;}
.y7d{bottom:367.695000px;}
.y32{bottom:368.475000px;}
.y11c{bottom:372.645000px;}
.yce{bottom:377.400000px;}
.ybb{bottom:379.830000px;}
.y104{bottom:382.350000px;}
.y53{bottom:383.550000px;}
.ye3{bottom:384.000000px;}
.y3c{bottom:385.125000px;}
.y9e{bottom:387.045000px;}
.ya7{bottom:387.570000px;}
.y88{bottom:388.200000px;}
.y68{bottom:388.425000px;}
.y111{bottom:389.370000px;}
.y2a{bottom:390.120000px;}
.y23{bottom:390.495000px;}
.y90{bottom:393.150000px;}
.y7c{bottom:394.725000px;}
.ycd{bottom:397.695000px;}
.y31{bottom:406.800000px;}
.yf6{bottom:408.525000px;}
.y67{bottom:408.705000px;}
.ye2{bottom:408.780000px;}
.y3b{bottom:409.905000px;}
.y87{bottom:416.370000px;}
.ycc{bottom:416.850000px;}
.y120{bottom:417.495000px;}
.yf5{bottom:434.445000px;}
.ye1{bottom:434.700000px;}
.y3a{bottom:434.745000px;}
.ycb{bottom:437.130000px;}
.y1f{bottom:437.970000px;}
.yda{bottom:439.125000px;}
.yba{bottom:441.825000px;}
.y75{bottom:445.575000px;}
.y22{bottom:451.350000px;}
.y29{bottom:456.600000px;}
.y66{bottom:459.495000px;}
.y39{bottom:460.650000px;}
.y86{bottom:469.350000px;}
.y7b{bottom:471.375000px;}
.y74{bottom:471.495000px;}
.yd9{bottom:472.950000px;}
.y116{bottom:474.525000px;}
.yf2{bottom:483.000000px;}
.y65{bottom:485.400000px;}
.y1b{bottom:487.650000px;}
.ya6{bottom:487.875000px;}
.yf4{bottom:498.870000px;}
.y7a{bottom:499.530000px;}
.ya2{bottom:502.950000px;}
.yb9{bottom:504.945000px;}
.yd8{bottom:505.095000px;}
.yf1{bottom:507.780000px;}
.y10a{bottom:508.380000px;}
.y115{bottom:509.475000px;}
.y64{bottom:510.225000px;}
.yff{bottom:510.525000px;}
.ye9{bottom:514.245000px;}
.y11f{bottom:514.275000px;}
.y9c{bottom:514.575000px;}
.ya5{bottom:519.450000px;}
.ye0{bottom:522.120000px;}
.y79{bottom:526.575000px;}
.y21{bottom:526.875000px;}
.yf0{bottom:533.700000px;}
.yf3{bottom:533.820000px;}
.yb8{bottom:535.380000px;}
.y63{bottom:536.130000px;}
.y52{bottom:540.000000px;}
.y109{bottom:542.220000px;}
.yca{bottom:543.870000px;}
.yfe{bottom:544.320000px;}
.ye8{bottom:548.025000px;}
.ydf{bottom:551.445000px;}
.y8{bottom:587.220000px;}
.h32{height:35.989014px;}
.h35{height:36.098071px;}
.h33{height:36.279053px;}
.h34{height:36.388989px;}
.h12{height:40.341797px;}
.h13{height:40.476270px;}
.h18{height:42.532471px;}
.h19{height:42.641528px;}
.h31{height:42.985181px;}
.h17{height:45.388916px;}
.h1a{height:45.505298px;}
.h1f{height:48.410156px;}
.h1e{height:48.544629px;}
.h11{height:49.184985px;}
.h10{height:49.581372px;}
.h2e{height:52.444336px;}
.h6{height:52.578809px;}
.h2b{height:60.512695px;}
.h15{height:60.647168px;}
.h20{height:61.020996px;}
.h1d{height:62.271899px;}
.h36{height:62.323200px;}
.h1c{height:62.380957px;}
.h1b{height:62.522827px;}
.h7{height:64.404785px;}
.h2d{height:64.517578px;}
.h27{height:67.788574px;}
.ha{height:68.715527px;}
.h2a{height:71.172363px;}
.h30{height:71.285156px;}
.h21{height:72.749707px;}
.h26{height:73.876245px;}
.h5{height:76.783887px;}
.h24{height:76.918359px;}
.h2f{height:77.939941px;}
.h28{height:80.818066px;}
.h29{height:80.952539px;}
.h9{height:81.323730px;}
.h22{height:81.383643px;}
.h8{height:81.436523px;}
.h14{height:84.852246px;}
.he{height:87.172650px;}
.hf{height:87.310800px;}
.h16{height:96.954785px;}
.h23{height:97.089258px;}
.h2{height:99.606150px;}
.h1{height:99.744300px;}
.hd{height:132.762150px;}
.h4{height:141.613200px;}
.h37{height:168.484050px;}
.hb{height:218.150550px;}
.hc{height:218.277900px;}
.h2c{height:225.791550px;}
.h25{height:225.918900px;}
.h3{height:245.021400px;}
.h0{height:607.500000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2f{left:10.799984px;}
.x38{left:15.712484px;}
.x22{left:20.362484px;}
.x6{left:23.624984px;}
.x3d{left:32.774984px;}
.x3c{left:35.249984px;}
.x2a{left:38.999984px;}
.x30{left:44.437484px;}
.x26{left:46.537484px;}
.x5{left:51.149984px;}
.x48{left:52.199984px;}
.x23{left:59.399984px;}
.x24{left:61.049984px;}
.x27{left:66.787484px;}
.xc{left:68.174984px;}
.x3f{left:69.337484px;}
.x3b{left:70.349984px;}
.x13{left:71.699984px;}
.x1c{left:75.674984px;}
.x39{left:77.249984px;}
.x1d{left:79.799984px;}
.x42{left:81.524984px;}
.x4{left:83.737484px;}
.x34{left:84.749984px;}
.x3a{left:89.474984px;}
.x20{left:93.637484px;}
.x17{left:94.912484px;}
.x1a{left:102.187484px;}
.x32{left:104.137484px;}
.x49{left:107.024984px;}
.x14{left:108.412484px;}
.x31{left:109.949984px;}
.x47{left:114.224984px;}
.x3e{left:115.687484px;}
.x41{left:117.749984px;}
.x40{left:119.399984px;}
.x18{left:128.699984px;}
.x43{left:131.137484px;}
.x35{left:143.512484px;}
.x33{left:144.674984px;}
.x4a{left:148.049984px;}
.x1f{left:150.119984px;}
.x45{left:155.354984px;}
.x46{left:159.104984px;}
.x1b{left:163.124984px;}
.x19{left:164.474984px;}
.x15{left:165.479984px;}
.x1e{left:166.754984px;}
.x1{left:171.674984px;}
.x7{left:173.249984px;}
.x16{left:203.024984px;}
.xf{left:207.449984px;}
.x12{left:208.499984px;}
.x44{left:239.249984px;}
.x10{left:248.024984px;}
.x3{left:255.944984px;}
.x28{left:369.449984px;}
.x2{left:373.619984px;}
.xd{left:488.624984px;}
.xe{left:514.019984px;}
.x36{left:523.649984px;}
.x21{left:525.029984px;}
.x25{left:532.424984px;}
.x29{left:535.454984px;}
.x2b{left:541.319984px;}
.x2c{left:575.099984px;}
.x2d{left:595.394984px;}
.x2e{left:629.174984px;}
.x8{left:752.819984px;}
.xa{left:819.224984px;}
.x11{left:856.904984px;}
.x37{left:869.819984px;}
.xb{left:874.049984px;}
.x9{left:877.424984px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3f{letter-spacing:-2.517333pt;}
.ls9{letter-spacing:-2.330667pt;}
.ls47{letter-spacing:-2.197333pt;}
.ls8{letter-spacing:-2.069333pt;}
.ls50{letter-spacing:-2.064000pt;}
.ls4b{letter-spacing:-2.000000pt;}
.lsa{letter-spacing:-1.936000pt;}
.ls4d{letter-spacing:-1.930667pt;}
.ls4c{letter-spacing:-1.685333pt;}
.ls4a{letter-spacing:-1.605333pt;}
.ls2d{letter-spacing:-1.434667pt;}
.ls23{letter-spacing:-1.381333pt;}
.ls22{letter-spacing:-1.344000pt;}
.lsc{letter-spacing:-1.301333pt;}
.ls37{letter-spacing:-1.162667pt;}
.ls18{letter-spacing:-0.997333pt;}
.ls1e{letter-spacing:-0.986667pt;}
.ls14{letter-spacing:-0.949333pt;}
.ls48{letter-spacing:-0.901333pt;}
.ls1b{letter-spacing:-0.832000pt;}
.ls39{letter-spacing:-0.826667pt;}
.ls11{letter-spacing:-0.821333pt;}
.ls16{letter-spacing:-0.778667pt;}
.lsb{letter-spacing:-0.714667pt;}
.ls1c{letter-spacing:-0.698667pt;}
.ls19{letter-spacing:-0.465067pt;}
.ls10{letter-spacing:-0.392000pt;}
.ls17{letter-spacing:-0.258667pt;}
.ls27{letter-spacing:-0.106133pt;}
.ls26{letter-spacing:-0.080533pt;}
.ls2b{letter-spacing:-0.073600pt;}
.ls34{letter-spacing:-0.066667pt;}
.ls28{letter-spacing:-0.059733pt;}
.ls29{letter-spacing:-0.053067pt;}
.ls2c{letter-spacing:-0.020427pt;}
.ls33{letter-spacing:-0.013600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.027200pt;}
.ls35{letter-spacing:0.053067pt;}
.ls36{letter-spacing:0.059733pt;}
.ls21{letter-spacing:0.064533pt;}
.ls2e{letter-spacing:0.066667pt;}
.ls25{letter-spacing:0.073600pt;}
.ls4f{letter-spacing:0.113067pt;}
.ls20{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.347200pt;}
.ls44{letter-spacing:0.513067pt;}
.ls45{letter-spacing:0.576000pt;}
.ls3e{letter-spacing:0.592000pt;}
.ls43{letter-spacing:0.600000pt;}
.ls1a{letter-spacing:0.677333pt;}
.ls40{letter-spacing:0.725333pt;}
.ls1d{letter-spacing:0.826667pt;}
.ls38{letter-spacing:0.842667pt;}
.lsf{letter-spacing:0.869333pt;}
.ls13{letter-spacing:1.002667pt;}
.ls24{letter-spacing:1.237333pt;}
.ls49{letter-spacing:1.280000pt;}
.ls3d{letter-spacing:1.312000pt;}
.ls41{letter-spacing:1.509333pt;}
.ls3a{letter-spacing:1.722667pt;}
.ls46{letter-spacing:1.936000pt;}
.ls15{letter-spacing:2.000000pt;}
.ls7{letter-spacing:2.117333pt;}
.ls12{letter-spacing:2.133333pt;}
.ls42{letter-spacing:19.856533pt;}
.lse{letter-spacing:23.533333pt;}
.ls4e{letter-spacing:27.019600pt;}
.ls1f{letter-spacing:50.953333pt;}
.ls2{letter-spacing:63.646667pt;}
.ls3c{letter-spacing:84.833067pt;}
.ls3b{letter-spacing:84.915200pt;}
.ls3{letter-spacing:84.966400pt;}
.ls4{letter-spacing:85.048533pt;}
.ls2f{letter-spacing:86.440000pt;}
.ls30{letter-spacing:86.486667pt;}
.ls5{letter-spacing:86.595200pt;}
.ls31{letter-spacing:93.413333pt;}
.ls32{letter-spacing:93.460000pt;}
.ls6{letter-spacing:93.486667pt;}
.lsd{letter-spacing:110.486667pt;}
.ws60{word-spacing:-36.565333pt;}
.ws104{word-spacing:-28.224000pt;}
.wse4{word-spacing:-24.706133pt;}
.ws2{word-spacing:-24.033333pt;}
.ws105{word-spacing:-22.314133pt;}
.wsa9{word-spacing:-22.277067pt;}
.ws4{word-spacing:-21.165067pt;}
.ws3{word-spacing:-21.033333pt;}
.wsee{word-spacing:-20.080267pt;}
.ws87{word-spacing:-20.053067pt;}
.ws91{word-spacing:-19.986400pt;}
.ws86{word-spacing:-19.979467pt;}
.ws94{word-spacing:-19.033333pt;}
.wsb{word-spacing:-16.717067pt;}
.wsb2{word-spacing:-16.680000pt;}
.wsa{word-spacing:-15.415733pt;}
.ws88{word-spacing:-15.282400pt;}
.ws6{word-spacing:-15.033333pt;}
.wsd2{word-spacing:-14.969333pt;}
.wsad{word-spacing:-14.656000pt;}
.ws63{word-spacing:-14.618400pt;}
.ws1{word-spacing:-14.493067pt;}
.wsc7{word-spacing:-13.506400pt;}
.wsae{word-spacing:-13.381067pt;}
.ws62{word-spacing:-13.344000pt;}
.ws9{word-spacing:-13.097333pt;}
.ws48{word-spacing:-13.033333pt;}
.ws1a{word-spacing:-13.000000pt;}
.ws5{word-spacing:-12.964000pt;}
.wsa6{word-spacing:-11.157067pt;}
.wsec{word-spacing:-11.033333pt;}
.wse9{word-spacing:-11.000000pt;}
.wse7{word-spacing:-9.394667pt;}
.wseb{word-spacing:-9.102667pt;}
.wse8{word-spacing:-9.000000pt;}
.wsf8{word-spacing:-8.969333pt;}
.wsab{word-spacing:-5.883600pt;}
.ws61{word-spacing:-3.871600pt;}
.wsff{word-spacing:-3.594400pt;}
.ws20{word-spacing:-3.397333pt;}
.wsfc{word-spacing:-3.246133pt;}
.wsb8{word-spacing:-3.215200pt;}
.wsd9{word-spacing:-2.898667pt;}
.wsfe{word-spacing:-2.833067pt;}
.wsbc{word-spacing:-2.740400pt;}
.wsba{word-spacing:-2.730800pt;}
.wsd7{word-spacing:-2.343067pt;}
.wsfb{word-spacing:-2.330667pt;}
.wsac{word-spacing:-1.705867pt;}
.ws39{word-spacing:-1.412933pt;}
.wsd{word-spacing:-1.321333pt;}
.ws7{word-spacing:-1.245200pt;}
.wsc9{word-spacing:-1.138400pt;}
.ws3d{word-spacing:-1.008667pt;}
.wsf9{word-spacing:-1.008400pt;}
.ws50{word-spacing:-0.993333pt;}
.wsc{word-spacing:-0.936000pt;}
.ws43{word-spacing:-0.830000pt;}
.wsa3{word-spacing:-0.795600pt;}
.ws5b{word-spacing:-0.788000pt;}
.ws1b{word-spacing:-0.758667pt;}
.wsaa{word-spacing:-0.665200pt;}
.ws15{word-spacing:-0.454667pt;}
.ws22{word-spacing:-0.444000pt;}
.wsa1{word-spacing:-0.402800pt;}
.ws52{word-spacing:-0.345867pt;}
.ws21{word-spacing:-0.273333pt;}
.wsa2{word-spacing:-0.254933pt;}
.wsc3{word-spacing:-0.186933pt;}
.ws8a{word-spacing:-0.133333pt;}
.wsd0{word-spacing:-0.120533pt;}
.ws45{word-spacing:-0.100533pt;}
.wsf5{word-spacing:-0.082933pt;}
.ws54{word-spacing:-0.074667pt;}
.ws41{word-spacing:-0.052133pt;}
.ws16{word-spacing:-0.052000pt;}
.ws5d{word-spacing:-0.014267pt;}
.ws75{word-spacing:-0.010800pt;}
.ws0{word-spacing:0.000000pt;}
.wsa4{word-spacing:0.034133pt;}
.wsb0{word-spacing:0.064667pt;}
.wsf6{word-spacing:0.074347pt;}
.ws92{word-spacing:0.106267pt;}
.ws90{word-spacing:0.118933pt;}
.ws85{word-spacing:0.122533pt;}
.wsf7{word-spacing:0.138133pt;}
.wsce{word-spacing:0.180267pt;}
.ws3b{word-spacing:0.187333pt;}
.ws56{word-spacing:0.195467pt;}
.wsca{word-spacing:0.213067pt;}
.ws93{word-spacing:0.215733pt;}
.ws89{word-spacing:0.224667pt;}
.wsbb{word-spacing:0.227200pt;}
.wsf4{word-spacing:0.232667pt;}
.wsc5{word-spacing:0.272533pt;}
.wsa5{word-spacing:0.504800pt;}
.wsb1{word-spacing:0.518000pt;}
.wsc2{word-spacing:0.534400pt;}
.ws8{word-spacing:0.567200pt;}
.wsd1{word-spacing:0.568533pt;}
.wsa0{word-spacing:0.585067pt;}
.wscf{word-spacing:0.604800pt;}
.ws1c{word-spacing:0.610667pt;}
.wsfa{word-spacing:0.647067pt;}
.wsf{word-spacing:0.666667pt;}
.wse6{word-spacing:0.713467pt;}
.wsaf{word-spacing:0.752533pt;}
.wsc4{word-spacing:0.803200pt;}
.wsc6{word-spacing:0.805867pt;}
.ws24{word-spacing:0.948000pt;}
.ws18{word-spacing:1.028000pt;}
.ws47{word-spacing:1.227333pt;}
.ws17{word-spacing:1.306667pt;}
.ws1f{word-spacing:1.426667pt;}
.ws58{word-spacing:1.775333pt;}
.wscd{word-spacing:1.821867pt;}
.wscb{word-spacing:2.411867pt;}
.ws19{word-spacing:3.104000pt;}
.ws5a{word-spacing:3.117200pt;}
.ws23{word-spacing:3.149333pt;}
.ws5c{word-spacing:3.176667pt;}
.wsd3{word-spacing:3.257733pt;}
.wsea{word-spacing:3.265600pt;}
.ws3c{word-spacing:3.336667pt;}
.ws81{word-spacing:3.438133pt;}
.ws46{word-spacing:3.464400pt;}
.ws44{word-spacing:3.582133pt;}
.ws6d{word-spacing:3.627333pt;}
.ws1e{word-spacing:3.694667pt;}
.ws53{word-spacing:3.710000pt;}
.ws6f{word-spacing:3.868000pt;}
.ws59{word-spacing:3.870000pt;}
.ws7f{word-spacing:4.011733pt;}
.ws6c{word-spacing:4.059867pt;}
.ws72{word-spacing:4.134000pt;}
.ws7e{word-spacing:4.141573pt;}
.ws82{word-spacing:4.206000pt;}
.ws80{word-spacing:4.212933pt;}
.ws57{word-spacing:4.222133pt;}
.wsd8{word-spacing:4.233333pt;}
.ws83{word-spacing:4.240667pt;}
.ws74{word-spacing:4.251867pt;}
.ws6b{word-spacing:4.292533pt;}
.ws71{word-spacing:4.366000pt;}
.ws84{word-spacing:4.372933pt;}
.ws6e{word-spacing:4.385067pt;}
.ws7d{word-spacing:4.425867pt;}
.ws70{word-spacing:4.438400pt;}
.ws73{word-spacing:4.491733pt;}
.ws3a{word-spacing:4.658400pt;}
.ws100{word-spacing:4.758400pt;}
.wsfd{word-spacing:4.790133pt;}
.ws1d{word-spacing:5.053333pt;}
.ws55{word-spacing:5.138400pt;}
.wsb9{word-spacing:5.183733pt;}
.wsc8{word-spacing:5.427200pt;}
.wsf2{word-spacing:6.441333pt;}
.wsd5{word-spacing:6.547600pt;}
.wsf3{word-spacing:6.675600pt;}
.wsf1{word-spacing:7.072933pt;}
.wsf0{word-spacing:7.139467pt;}
.wsed{word-spacing:7.176533pt;}
.wsef{word-spacing:7.387067pt;}
.wsd6{word-spacing:7.627733pt;}
.ws36{word-spacing:9.040000pt;}
.ws38{word-spacing:9.286667pt;}
.wsd4{word-spacing:10.944400pt;}
.ws13{word-spacing:12.172000pt;}
.ws11{word-spacing:12.596000pt;}
.ws37{word-spacing:12.681333pt;}
.wse5{word-spacing:12.871467pt;}
.ws14{word-spacing:13.234667pt;}
.ws34{word-spacing:13.502667pt;}
.ws12{word-spacing:13.574667pt;}
.wse3{word-spacing:14.309333pt;}
.ws29{word-spacing:14.412000pt;}
.wse{word-spacing:14.681333pt;}
.ws2a{word-spacing:15.008000pt;}
.ws5e{word-spacing:15.046533pt;}
.ws28{word-spacing:15.064000pt;}
.ws4f{word-spacing:15.080933pt;}
.ws69{word-spacing:15.268933pt;}
.ws42{word-spacing:15.587600pt;}
.ws10{word-spacing:15.645333pt;}
.ws51{word-spacing:15.701333pt;}
.ws65{word-spacing:15.730533pt;}
.ws67{word-spacing:15.934667pt;}
.ws7c{word-spacing:16.011733pt;}
.ws4a{word-spacing:16.012933pt;}
.ws49{word-spacing:16.080400pt;}
.ws76{word-spacing:16.353200pt;}
.ws64{word-spacing:16.376533pt;}
.ws7b{word-spacing:16.441867pt;}
.ws79{word-spacing:16.523467pt;}
.ws7a{word-spacing:16.525733pt;}
.ws77{word-spacing:16.536933pt;}
.ws6a{word-spacing:16.545067pt;}
.ws68{word-spacing:16.579067pt;}
.ws66{word-spacing:16.610133pt;}
.ws4c{word-spacing:16.647867pt;}
.ws78{word-spacing:16.770133pt;}
.ws27{word-spacing:16.780000pt;}
.ws103{word-spacing:17.009467pt;}
.ws5f{word-spacing:17.254667pt;}
.ws25{word-spacing:18.298667pt;}
.ws4e{word-spacing:18.985333pt;}
.ws4d{word-spacing:19.513467pt;}
.ws102{word-spacing:19.604000pt;}
.ws4b{word-spacing:19.821067pt;}
.ws2b{word-spacing:20.397333pt;}
.wsb7{word-spacing:20.606400pt;}
.wsb4{word-spacing:20.779733pt;}
.wsb3{word-spacing:21.288000pt;}
.ws32{word-spacing:21.325333pt;}
.ws26{word-spacing:21.348000pt;}
.wsda{word-spacing:22.128400pt;}
.wsde{word-spacing:22.474400pt;}
.wsdb{word-spacing:22.833733pt;}
.ws35{word-spacing:22.968000pt;}
.wsb5{word-spacing:23.158400pt;}
.wsb6{word-spacing:23.211200pt;}
.wsbe{word-spacing:23.282267pt;}
.ws8e{word-spacing:23.962400pt;}
.ws96{word-spacing:24.435333pt;}
.ws8c{word-spacing:24.514267pt;}
.wsc1{word-spacing:24.660133pt;}
.ws8d{word-spacing:24.694133pt;}
.ws8f{word-spacing:24.696000pt;}
.wsa7{word-spacing:24.845067pt;}
.ws2d{word-spacing:24.862667pt;}
.ws98{word-spacing:24.915600pt;}
.ws99{word-spacing:24.960667pt;}
.ws8b{word-spacing:24.981333pt;}
.wsbd{word-spacing:25.234533pt;}
.ws33{word-spacing:25.305333pt;}
.ws97{word-spacing:25.320533pt;}
.ws30{word-spacing:25.353333pt;}
.ws9e{word-spacing:25.499867pt;}
.ws95{word-spacing:25.576533pt;}
.ws9c{word-spacing:25.653067pt;}
.ws9b{word-spacing:25.706267pt;}
.ws9d{word-spacing:25.717467pt;}
.wsbf{word-spacing:25.719333pt;}
.ws9a{word-spacing:25.825067pt;}
.ws9f{word-spacing:25.898533pt;}
.ws2c{word-spacing:25.898667pt;}
.wsc0{word-spacing:26.752133pt;}
.ws2e{word-spacing:26.840000pt;}
.ws101{word-spacing:27.130667pt;}
.ws3e{word-spacing:28.214400pt;}
.wsa8{word-spacing:28.557067pt;}
.ws40{word-spacing:29.026267pt;}
.ws2f{word-spacing:29.028000pt;}
.wsdc{word-spacing:29.406667pt;}
.wsdd{word-spacing:29.700000pt;}
.wsdf{word-spacing:29.825067pt;}
.ws31{word-spacing:30.424000pt;}
.ws3f{word-spacing:31.123333pt;}
.wse2{word-spacing:36.819467pt;}
.wse0{word-spacing:40.321867pt;}
.wse1{word-spacing:41.293867pt;}
.wscc{word-spacing:47.572933pt;}
._1a{margin-left:-12.166267pt;}
._19{margin-left:-9.396400pt;}
._6{margin-left:-5.157067pt;}
._7{margin-left:-3.685067pt;}
._2{margin-left:-2.502933pt;}
._0{margin-left:-1.251467pt;}
._a{width:0.889867pt;}
._1{width:1.829067pt;}
._3{width:2.791733pt;}
._9{width:3.745333pt;}
._8{width:4.753333pt;}
._b{width:9.745600pt;}
._c{width:12.537067pt;}
._d{width:13.557867pt;}
._10{width:14.738933pt;}
._e{width:16.119467pt;}
._29{width:18.893200pt;}
._1b{width:20.252267pt;}
._1d{width:21.531600pt;}
._16{width:23.796267pt;}
._21{width:24.987733pt;}
._1e{width:25.966133pt;}
._20{width:27.001200pt;}
._f{width:27.979200pt;}
._12{width:29.013067pt;}
._13{width:30.674133pt;}
._1f{width:31.566133pt;}
._11{width:32.563733pt;}
._28{width:37.239733pt;}
._27{width:38.604000pt;}
._15{width:39.759733pt;}
._14{width:40.938667pt;}
._17{width:43.480400pt;}
._24{width:44.534667pt;}
._23{width:46.211467pt;}
._1c{width:49.497200pt;}
._18{width:50.953333pt;}
._26{width:59.449333pt;}
._25{width:61.333867pt;}
._22{width:72.366133pt;}
._4{width:127.202133pt;}
._5{width:147.836400pt;}
.fsd{font-size:40.000000pt;}
.fse{font-size:40.133333pt;}
.fs1b{font-size:44.000000pt;}
.fs1c{font-size:44.133333pt;}
.fs12{font-size:48.000000pt;}
.fs11{font-size:48.133333pt;}
.fsf{font-size:52.000000pt;}
.fs5{font-size:52.133333pt;}
.fs18{font-size:60.000000pt;}
.fsc{font-size:60.133333pt;}
.fs15{font-size:64.133333pt;}
.fs6{font-size:68.133333pt;}
.fs13{font-size:72.133333pt;}
.fs4{font-size:76.133333pt;}
.fs10{font-size:76.266667pt;}
.fs16{font-size:80.133333pt;}
.fs17{font-size:80.266667pt;}
.fsa{font-size:84.133333pt;}
.fsb{font-size:84.266667pt;}
.fs1a{font-size:92.133333pt;}
.fs1{font-size:96.133333pt;}
.fs0{font-size:96.266667pt;}
.fs9{font-size:128.133333pt;}
.fs3{font-size:148.266667pt;}
.fs1d{font-size:176.400000pt;}
.fs7{font-size:228.400000pt;}
.fs8{font-size:228.533333pt;}
.fs19{font-size:236.400000pt;}
.fs14{font-size:236.533333pt;}
.fs2{font-size:256.533333pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:8.000000pt;}
.y73{bottom:11.300000pt;}
.yc6{bottom:13.233333pt;}
.yf{bottom:13.966667pt;}
.yef{bottom:18.700000pt;}
.y1a{bottom:18.733333pt;}
.y110{bottom:21.666667pt;}
.y4{bottom:23.100000pt;}
.y44{bottom:24.766667pt;}
.yb5{bottom:24.833333pt;}
.y84{bottom:26.033333pt;}
.y72{bottom:26.333333pt;}
.yc5{bottom:28.266667pt;}
.ye{bottom:30.000000pt;}
.y9d{bottom:30.433333pt;}
.yaf{bottom:30.700000pt;}
.y129{bottom:34.466667pt;}
.y10f{bottom:34.700000pt;}
.yee{bottom:34.733333pt;}
.y71{bottom:40.333333pt;}
.y51{bottom:41.600000pt;}
.yb4{bottom:41.866667pt;}
.y48{bottom:41.966667pt;}
.yc4{bottom:42.300000pt;}
.yae{bottom:42.700000pt;}
.y43{bottom:42.800000pt;}
.y83{bottom:43.066667pt;}
.yd{bottom:46.033333pt;}
.yed{bottom:50.733333pt;}
.y3{bottom:51.133333pt;}
.y103{bottom:53.766667pt;}
.y47{bottom:53.966667pt;}
.y119{bottom:54.066667pt;}
.y70{bottom:54.366667pt;}
.yc3{bottom:56.300000pt;}
.y128{bottom:58.533333pt;}
.y50{bottom:59.633333pt;}
.y42{bottom:59.833333pt;}
.yb3{bottom:59.900000pt;}
.y10e{bottom:60.733333pt;}
.y82{bottom:61.100000pt;}
.y62{bottom:64.433333pt;}
.yec{bottom:66.766667pt;}
.y102{bottom:70.800000pt;}
.y10d{bottom:73.766667pt;}
.yeb{bottom:74.966667pt;}
.y4f{bottom:77.666667pt;}
.y41{bottom:77.866667pt;}
.y46{bottom:78.033333pt;}
.y118{bottom:79.133333pt;}
.y4c{bottom:79.766667pt;}
.y2{bottom:80.200000pt;}
.y61{bottom:82.466667pt;}
.yc2{bottom:89.166667pt;}
.yb2{bottom:89.766667pt;}
.y45{bottom:90.033333pt;}
.ya4{bottom:91.100000pt;}
.y117{bottom:92.133333pt;}
.y4e{bottom:94.700000pt;}
.y40{bottom:95.900000pt;}
.y4b{bottom:96.800000pt;}
.y10c{bottom:98.800000pt;}
.yea{bottom:101.033333pt;}
.y60{bottom:101.500000pt;}
.y9b{bottom:102.000000pt;}
.y101{bottom:102.866667pt;}
.yd7{bottom:106.066667pt;}
.y127{bottom:106.600000pt;}
.yb1{bottom:108.800000pt;}
.y1{bottom:109.266667pt;}
.y10b{bottom:111.833333pt;}
.y4d{bottom:112.733333pt;}
.y3f{bottom:112.933333pt;}
.ya3{bottom:114.166667pt;}
.yc1{bottom:116.233333pt;}
.y28{bottom:116.666667pt;}
.y100{bottom:118.866667pt;}
.y5f{bottom:119.533333pt;}
.y15{bottom:119.700000pt;}
.yd6{bottom:124.100000pt;}
.y9a{bottom:125.033333pt;}
.yb0{bottom:127.833333pt;}
.y5e{bottom:137.573333pt;}
.y8f{bottom:137.666667pt;}
.yfd{bottom:138.733333pt;}
.y30{bottom:140.400000pt;}
.yd5{bottom:141.133333pt;}
.y14{bottom:142.760000pt;}
.yc0{bottom:144.266667pt;}
.y99{bottom:147.066667pt;}
.y81{bottom:150.493333pt;}
.y126{bottom:154.693333pt;}
.y19{bottom:155.000000pt;}
.yad{bottom:156.160000pt;}
.y5d{bottom:156.600000pt;}
.yde{bottom:156.906667pt;}
.yd4{bottom:159.160000pt;}
.y35{bottom:162.226667pt;}
.y8e{bottom:162.693333pt;}
.y6f{bottom:168.933333pt;}
.y98{bottom:169.133333pt;}
.y2f{bottom:170.440000pt;}
.y27{bottom:171.773333pt;}
.ybf{bottom:172.333333pt;}
.y5c{bottom:174.640000pt;}
.y7{bottom:176.333333pt;}
.y80{bottom:183.560000pt;}
.ye7{bottom:184.026667pt;}
.ya1{bottom:186.733333pt;}
.y8d{bottom:186.773333pt;}
.y6e{bottom:186.973333pt;}
.y13{bottom:187.840000pt;}
.y18{bottom:188.066667pt;}
.ydd{bottom:190.973333pt;}
.y97{bottom:192.173333pt;}
.y5b{bottom:193.666667pt;}
.yd3{bottom:194.226667pt;}
.y34{bottom:195.266667pt;}
.ybe{bottom:199.373333pt;}
.y2e{bottom:199.506667pt;}
.y125{bottom:202.800000pt;}
.yac{bottom:203.240000pt;}
.y6d{bottom:204.000000pt;}
.y108{bottom:206.600000pt;}
.yfc{bottom:206.840000pt;}
.ya0{bottom:208.773333pt;}
.y12{bottom:209.866667pt;}
.y1e{bottom:211.626667pt;}
.y5a{bottom:211.693333pt;}
.y8c{bottom:211.800000pt;}
.yd2{bottom:212.266667pt;}
.y96{bottom:214.200000pt;}
.y6{bottom:220.440000pt;}
.ydc{bottom:224.040000pt;}
.y26{bottom:225.866667pt;}
.y124{bottom:226.840000pt;}
.y107{bottom:228.640000pt;}
.yfb{bottom:228.906667pt;}
.ye6{bottom:229.106667pt;}
.y2d{bottom:229.573333pt;}
.y59{bottom:229.733333pt;}
.y11{bottom:231.933333pt;}
.y114{bottom:233.906667pt;}
.y8b{bottom:236.866667pt;}
.yc9{bottom:237.026667pt;}
.y95{bottom:237.226667pt;}
.y6c{bottom:240.066667pt;}
.y1d{bottom:244.693333pt;}
.yc{bottom:246.200000pt;}
.yd1{bottom:247.306667pt;}
.y58{bottom:248.773333pt;}
.y7f{bottom:249.666667pt;}
.y38{bottom:249.693333pt;}
.y78{bottom:250.026667pt;}
.yab{bottom:250.333333pt;}
.y106{bottom:250.693333pt;}
.y123{bottom:250.866667pt;}
.yfa{bottom:250.933333pt;}
.ye5{bottom:251.173333pt;}
.y3e{bottom:252.173333pt;}
.y10{bottom:254.973333pt;}
.y113{bottom:255.933333pt;}
.y11b{bottom:256.600000pt;}
.ydb{bottom:258.106667pt;}
.y2c{bottom:258.600000pt;}
.y25{bottom:258.933333pt;}
.y94{bottom:259.306667pt;}
.yc8{bottom:262.066667pt;}
.y11e{bottom:265.106667pt;}
.yd0{bottom:265.333333pt;}
.yb{bottom:266.240000pt;}
.y57{bottom:266.800000pt;}
.yb7{bottom:269.240000pt;}
.y8a{bottom:272.933333pt;}
.yaa{bottom:273.360000pt;}
.yf9{bottom:273.960000pt;}
.y3d{bottom:274.200000pt;}
.y5{bottom:274.533333pt;}
.y122{bottom:274.933333pt;}
.y77{bottom:275.106667pt;}
.y6b{bottom:275.133333pt;}
.y37{bottom:275.773333pt;}
.y9f{bottom:276.906667pt;}
.y1c{bottom:277.773333pt;}
.y7e{bottom:279.733333pt;}
.y4a{bottom:280.933333pt;}
.y93{bottom:281.333333pt;}
.ycf{bottom:282.360000pt;}
.ybd{bottom:282.533333pt;}
.y56{bottom:285.840000pt;}
.ya{bottom:286.266667pt;}
.y17{bottom:287.266667pt;}
.yc7{bottom:288.133333pt;}
.y6a{bottom:292.173333pt;}
.y33{bottom:294.466667pt;}
.yf8{bottom:296.000000pt;}
.yb6{bottom:296.306667pt;}
.ya9{bottom:297.400000pt;}
.y89{bottom:297.960000pt;}
.y76{bottom:299.133333pt;}
.y36{bottom:301.800000pt;}
.y55{bottom:303.866667pt;}
.y92{bottom:304.373333pt;}
.y9{bottom:306.293333pt;}
.y11d{bottom:309.200000pt;}
.y69{bottom:310.200000pt;}
.ybc{bottom:310.600000pt;}
.y49{bottom:311.000000pt;}
.y11a{bottom:312.693333pt;}
.y24{bottom:314.040000pt;}
.y105{bottom:316.800000pt;}
.y2b{bottom:317.733333pt;}
.yf7{bottom:319.066667pt;}
.ye4{bottom:319.266667pt;}
.y20{bottom:320.173333pt;}
.y16{bottom:320.333333pt;}
.ya8{bottom:320.466667pt;}
.y54{bottom:321.906667pt;}
.y121{bottom:323.000000pt;}
.y112{bottom:323.066667pt;}
.y91{bottom:326.400000pt;}
.y7d{bottom:326.840000pt;}
.y32{bottom:327.533333pt;}
.y11c{bottom:331.240000pt;}
.yce{bottom:335.466667pt;}
.ybb{bottom:337.626667pt;}
.y104{bottom:339.866667pt;}
.y53{bottom:340.933333pt;}
.ye3{bottom:341.333333pt;}
.y3c{bottom:342.333333pt;}
.y9e{bottom:344.040000pt;}
.ya7{bottom:344.506667pt;}
.y88{bottom:345.066667pt;}
.y68{bottom:345.266667pt;}
.y111{bottom:346.106667pt;}
.y2a{bottom:346.773333pt;}
.y23{bottom:347.106667pt;}
.y90{bottom:349.466667pt;}
.y7c{bottom:350.866667pt;}
.ycd{bottom:353.506667pt;}
.y31{bottom:361.600000pt;}
.yf6{bottom:363.133333pt;}
.y67{bottom:363.293333pt;}
.ye2{bottom:363.360000pt;}
.y3b{bottom:364.360000pt;}
.y87{bottom:370.106667pt;}
.ycc{bottom:370.533333pt;}
.y120{bottom:371.106667pt;}
.yf5{bottom:386.173333pt;}
.ye1{bottom:386.400000pt;}
.y3a{bottom:386.440000pt;}
.ycb{bottom:388.560000pt;}
.y1f{bottom:389.306667pt;}
.yda{bottom:390.333333pt;}
.yba{bottom:392.733333pt;}
.y75{bottom:396.066667pt;}
.y22{bottom:401.200000pt;}
.y29{bottom:405.866667pt;}
.y66{bottom:408.440000pt;}
.y39{bottom:409.466667pt;}
.y86{bottom:417.200000pt;}
.y7b{bottom:419.000000pt;}
.y74{bottom:419.106667pt;}
.yd9{bottom:420.400000pt;}
.y116{bottom:421.800000pt;}
.yf2{bottom:429.333333pt;}
.y65{bottom:431.466667pt;}
.y1b{bottom:433.466667pt;}
.ya6{bottom:433.666667pt;}
.yf4{bottom:443.440000pt;}
.y7a{bottom:444.026667pt;}
.ya2{bottom:447.066667pt;}
.yb9{bottom:448.840000pt;}
.yd8{bottom:448.973333pt;}
.yf1{bottom:451.360000pt;}
.y10a{bottom:451.893333pt;}
.y115{bottom:452.866667pt;}
.y64{bottom:453.533333pt;}
.yff{bottom:453.800000pt;}
.ye9{bottom:457.106667pt;}
.y11f{bottom:457.133333pt;}
.y9c{bottom:457.400000pt;}
.ya5{bottom:461.733333pt;}
.ye0{bottom:464.106667pt;}
.y79{bottom:468.066667pt;}
.y21{bottom:468.333333pt;}
.yf0{bottom:474.400000pt;}
.yf3{bottom:474.506667pt;}
.yb8{bottom:475.893333pt;}
.y63{bottom:476.560000pt;}
.y52{bottom:480.000000pt;}
.y109{bottom:481.973333pt;}
.yca{bottom:483.440000pt;}
.yfe{bottom:483.840000pt;}
.ye8{bottom:487.133333pt;}
.ydf{bottom:490.173333pt;}
.y8{bottom:521.973333pt;}
.h32{height:31.990234pt;}
.h35{height:32.087174pt;}
.h33{height:32.248047pt;}
.h34{height:32.345768pt;}
.h12{height:35.859375pt;}
.h13{height:35.978906pt;}
.h18{height:37.806641pt;}
.h19{height:37.903581pt;}
.h31{height:38.209049pt;}
.h17{height:40.345703pt;}
.h1a{height:40.449154pt;}
.h1f{height:43.031250pt;}
.h1e{height:43.150781pt;}
.h11{height:43.719987pt;}
.h10{height:44.072331pt;}
.h2e{height:46.617188pt;}
.h6{height:46.736719pt;}
.h2b{height:53.789062pt;}
.h15{height:53.908594pt;}
.h20{height:54.240885pt;}
.h1d{height:55.352799pt;}
.h36{height:55.398400pt;}
.h1c{height:55.449740pt;}
.h1b{height:55.575846pt;}
.h7{height:57.248698pt;}
.h2d{height:57.348958pt;}
.h27{height:60.256510pt;}
.ha{height:61.080469pt;}
.h2a{height:63.264323pt;}
.h30{height:63.364583pt;}
.h21{height:64.666406pt;}
.h26{height:65.667773pt;}
.h5{height:68.252344pt;}
.h24{height:68.371875pt;}
.h2f{height:69.279948pt;}
.h28{height:71.838281pt;}
.h29{height:71.957813pt;}
.h9{height:72.287760pt;}
.h22{height:72.341016pt;}
.h8{height:72.388021pt;}
.h14{height:75.424219pt;}
.he{height:77.486800pt;}
.hf{height:77.609600pt;}
.h16{height:86.182031pt;}
.h23{height:86.301563pt;}
.h2{height:88.538800pt;}
.h1{height:88.661600pt;}
.hd{height:118.010800pt;}
.h4{height:125.878400pt;}
.h37{height:149.763600pt;}
.hb{height:193.911600pt;}
.hc{height:194.024800pt;}
.h2c{height:200.703600pt;}
.h25{height:200.816800pt;}
.h3{height:217.796800pt;}
.h0{height:540.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:9.599986pt;}
.x38{left:13.966652pt;}
.x22{left:18.099986pt;}
.x6{left:20.999986pt;}
.x3d{left:29.133319pt;}
.x3c{left:31.333319pt;}
.x2a{left:34.666652pt;}
.x30{left:39.499986pt;}
.x26{left:41.366652pt;}
.x5{left:45.466652pt;}
.x48{left:46.399986pt;}
.x23{left:52.799986pt;}
.x24{left:54.266652pt;}
.x27{left:59.366652pt;}
.xc{left:60.599986pt;}
.x3f{left:61.633319pt;}
.x3b{left:62.533319pt;}
.x13{left:63.733319pt;}
.x1c{left:67.266652pt;}
.x39{left:68.666652pt;}
.x1d{left:70.933319pt;}
.x42{left:72.466652pt;}
.x4{left:74.433319pt;}
.x34{left:75.333319pt;}
.x3a{left:79.533319pt;}
.x20{left:83.233319pt;}
.x17{left:84.366652pt;}
.x1a{left:90.833319pt;}
.x32{left:92.566652pt;}
.x49{left:95.133319pt;}
.x14{left:96.366652pt;}
.x31{left:97.733319pt;}
.x47{left:101.533319pt;}
.x3e{left:102.833319pt;}
.x41{left:104.666652pt;}
.x40{left:106.133319pt;}
.x18{left:114.399986pt;}
.x43{left:116.566652pt;}
.x35{left:127.566652pt;}
.x33{left:128.599986pt;}
.x4a{left:131.599986pt;}
.x1f{left:133.439986pt;}
.x45{left:138.093319pt;}
.x46{left:141.426652pt;}
.x1b{left:144.999986pt;}
.x19{left:146.199986pt;}
.x15{left:147.093319pt;}
.x1e{left:148.226652pt;}
.x1{left:152.599986pt;}
.x7{left:153.999986pt;}
.x16{left:180.466652pt;}
.xf{left:184.399986pt;}
.x12{left:185.333319pt;}
.x44{left:212.666652pt;}
.x10{left:220.466652pt;}
.x3{left:227.506652pt;}
.x28{left:328.399986pt;}
.x2{left:332.106652pt;}
.xd{left:434.333319pt;}
.xe{left:456.906652pt;}
.x36{left:465.466652pt;}
.x21{left:466.693319pt;}
.x25{left:473.266652pt;}
.x29{left:475.959986pt;}
.x2b{left:481.173319pt;}
.x2c{left:511.199986pt;}
.x2d{left:529.239986pt;}
.x2e{left:559.266652pt;}
.x8{left:669.173319pt;}
.xa{left:728.199986pt;}
.x11{left:761.693319pt;}
.x37{left:773.173319pt;}
.xb{left:776.933319pt;}
.x9{left:779.933319pt;}
}




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