
    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_dde21b300a81f9477eb356ba.woff')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_46275a3bf933787990193153.woff')format("woff");}.ff2{font-family:ff2;line-height:0.908000;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_405e87ba4f14ed8116ddf751.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5a9551bffb0c44f2ca97d660.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_00948d89109152a735c40f63.woff')format("woff");}.ff5{font-family:ff5;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8b315ddca1403c9a1c24b652.woff')format("woff");}.ff6{font-family:ff6;line-height:0.923000;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_8cd6ce5a04e0fe6fdd322194.woff')format("woff");}.ff7{font-family:ff7;line-height:0.697000;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_40d36f185a655ea21cebcdcf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_90fa15360d500b9e886bd4f2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.699000;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_ee59668a840af775db9a779c.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_77a27fdeca260b66b7ec003c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.806000;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_2d7185d84a5292dbfe114de2.woff')format("woff");}.ffc{font-family:ffc;line-height:0.580000;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_2874c2fe2d0b5550089b3526.woff')format("woff");}.ffd{font-family:ffd;line-height:0.704000;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_14783059ca3e270e21bf4184.woff')format("woff");}.ffe{font-family:ffe;line-height:0.704000;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_e4a6ff26ed0a3616be06f4be.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_0a836c0a300b2d86ae306a37.woff')format("woff");}.ff10{font-family:ff10;line-height:0.046000;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);}
.v4{vertical-align:-9.816000px;}
.v3{vertical-align:-6.642000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.v2{vertical-align:27.024000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.001534px;}
.ls15{letter-spacing:0.020047px;}
.ls11{letter-spacing:2.988532px;}
.ls26{letter-spacing:4.722272px;}
.ls18{letter-spacing:5.021150px;}
.ls1b{letter-spacing:5.379804px;}
.ls1e{letter-spacing:5.499355px;}
.ls2{letter-spacing:5.858009px;}
.ls25{letter-spacing:5.977560px;}
.ls17{letter-spacing:6.037336px;}
.ls10{letter-spacing:14.530921px;}
.lse{letter-spacing:14.596376px;}
.ls4{letter-spacing:15.970922px;}
.lsb{letter-spacing:18.130924px;}
.ls7{letter-spacing:18.196379px;}
.lsd{letter-spacing:18.267289px;}
.lsc{letter-spacing:18.278574px;}
.ls5{letter-spacing:21.796382px;}
.ls9{letter-spacing:21.861836px;}
.ls8{letter-spacing:23.556440px;}
.lsa{letter-spacing:23.570210px;}
.ls1f{letter-spacing:24.283657px;}
.ls20{letter-spacing:24.349111px;}
.ls14{letter-spacing:24.800915px;}
.lsf{letter-spacing:27.294568px;}
.ls13{letter-spacing:30.894571px;}
.ls6{letter-spacing:32.727300px;}
.ls24{letter-spacing:43.935066px;}
.ls21{letter-spacing:52.101862px;}
.ls22{letter-spacing:62.943707px;}
.ls16{letter-spacing:64.497872px;}
.ls1{letter-spacing:65.035853px;}
.ls23{letter-spacing:138.260963px;}
.ls19{letter-spacing:213.578219px;}
.ls3{letter-spacing:215.132384px;}
.ls1a{letter-spacing:215.789916px;}
.ls1d{letter-spacing:364.212731px;}
.ls1c{letter-spacing:366.304877px;}
.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;}
}
.ws40{word-spacing:-18.183288px;}
.wsb6{word-spacing:-6.037336px;}
.ws2a{word-spacing:-5.917784px;}
.ws64{word-spacing:-5.559131px;}
.ws63{word-spacing:-5.439580px;}
.ws4f{word-spacing:-5.080926px;}
.ws8c{word-spacing:-4.084367px;}
.ws8b{word-spacing:-3.521457px;}
.ws94{word-spacing:-3.390548px;}
.wsd1{word-spacing:-3.194184px;}
.wsa4{word-spacing:-2.932366px;}
.ws4{word-spacing:-2.379069px;}
.ws79{word-spacing:-2.343275px;}
.ws71{word-spacing:-1.819638px;}
.ws98{word-spacing:-1.728001px;}
.ws96{word-spacing:-1.597092px;}
.ws93{word-spacing:-1.557819px;}
.ws22{word-spacing:-1.492365px;}
.ws95{word-spacing:-1.426910px;}
.ws97{word-spacing:-1.361456px;}
.ws27{word-spacing:-0.746182px;}
.ws28{word-spacing:-0.641455px;}
.ws84{word-spacing:-0.445091px;}
.wsa8{word-spacing:-0.314182px;}
.wscf{word-spacing:-0.248727px;}
.ws7b{word-spacing:-0.117818px;}
.wsd2{word-spacing:-0.086077px;}
.ws1{word-spacing:-0.071731px;}
.ws18{word-spacing:-0.065455px;}
.ws5e{word-spacing:-0.059776px;}
.ws47{word-spacing:-0.052364px;}
.ws41{word-spacing:-0.047821px;}
.ws9b{word-spacing:-0.026182px;}
.ws21{word-spacing:0.000000px;}
.ws77{word-spacing:0.013091px;}
.ws81{word-spacing:0.144000px;}
.wscc{word-spacing:0.340364px;}
.ws3{word-spacing:0.370609px;}
.ws91{word-spacing:0.471273px;}
.ws33{word-spacing:0.955637px;}
.wsa3{word-spacing:0.994910px;}
.ws73{word-spacing:1.544729px;}
.ws17{word-spacing:1.649456px;}
.ws4c{word-spacing:1.714911px;}
.wsbf{word-spacing:1.845820px;}
.wsd{word-spacing:1.976729px;}
.wsbe{word-spacing:2.133820px;}
.wsaf{word-spacing:2.173093px;}
.wscd{word-spacing:2.369457px;}
.wsd3{word-spacing:2.434911px;}
.ws7c{word-spacing:2.696730px;}
.ws82{word-spacing:2.893093px;}
.wsc1{word-spacing:3.024003px;}
.wsa2{word-spacing:3.220366px;}
.wsa{word-spacing:3.299613px;}
.wsc0{word-spacing:3.442912px;}
.wsf{word-spacing:3.613094px;}
.ws1d{word-spacing:3.678549px;}
.wsa1{word-spacing:3.704730px;}
.wse{word-spacing:3.744003px;}
.ws1c{word-spacing:3.874912px;}
.ws1f{word-spacing:3.940367px;}
.ws14{word-spacing:4.005822px;}
.wsaa{word-spacing:4.136731px;}
.ws26{word-spacing:4.162913px;}
.ws76{word-spacing:4.202185px;}
.ws20{word-spacing:4.228367px;}
.ws74{word-spacing:4.267640px;}
.ws4d{word-spacing:4.333095px;}
.ws1b{word-spacing:4.490186px;}
.ws1e{word-spacing:4.555640px;}
.ws9e{word-spacing:4.594913px;}
.wsa9{word-spacing:4.752004px;}
.wsc5{word-spacing:4.987641px;}
.wsd0{word-spacing:5.053095px;}
.ws9{word-spacing:5.092881px;}
.ws24{word-spacing:5.118550px;}
.ws5{word-spacing:5.331984px;}
.ws9d{word-spacing:5.341095px;}
.ws7e{word-spacing:5.576732px;}
.ws7{word-spacing:5.630862px;}
.ws6e{word-spacing:5.642187px;}
.wsd4{word-spacing:5.707641px;}
.wsc4{word-spacing:5.799278px;}
.ws23{word-spacing:5.930187px;}
.ws10{word-spacing:5.969460px;}
.ws6f{word-spacing:6.061096px;}
.ws80{word-spacing:6.100369px;}
.wsc9{word-spacing:6.296733px;}
.ws6d{word-spacing:6.453824px;}
.wsc2{word-spacing:6.519278px;}
.wsa5{word-spacing:6.689460px;}
.ws8e{word-spacing:6.754915px;}
.ws13{word-spacing:6.820369px;}
.ws11{word-spacing:6.846551px;}
.ws9a{word-spacing:6.885824px;}
.wsc8{word-spacing:6.951279px;}
.wsbd{word-spacing:7.147642px;}
.wsc{word-spacing:7.344006px;}
.wsca{word-spacing:7.409461px;}
.ws92{word-spacing:7.474915px;}
.wsa0{word-spacing:7.540370px;}
.ws8d{word-spacing:7.762916px;}
.ws8{word-spacing:7.842559px;}
.ws99{word-spacing:7.893825px;}
.wsc7{word-spacing:8.024734px;}
.ws31{word-spacing:8.064007px;}
.ws6{word-spacing:8.081661px;}
.ws51{word-spacing:8.308808px;}
.ws9c{word-spacing:8.391280px;}
.ws62{word-spacing:8.488135px;}
.wsb2{word-spacing:8.607686px;}
.ws2c{word-spacing:8.667462px;}
.ws9f{word-spacing:8.679280px;}
.ws56{word-spacing:8.727238px;}
.ws70{word-spacing:8.784007px;}
.ws5b{word-spacing:8.787013px;}
.ws30{word-spacing:8.966340px;}
.wscb{word-spacing:9.111280px;}
.ws2e{word-spacing:9.145667px;}
.wsb1{word-spacing:9.205442px;}
.ws58{word-spacing:9.324994px;}
.ws46{word-spacing:9.373099px;}
.wsba{word-spacing:9.623872px;}
.ws8f{word-spacing:9.700372px;}
.ws67{word-spacing:9.743423px;}
.ws69{word-spacing:9.803198px;}
.ws12{word-spacing:9.988372px;}
.wsab{word-spacing:10.027645px;}
.wsb0{word-spacing:10.224009px;}
.wsa6{word-spacing:10.682191px;}
.wsbc{word-spacing:10.813100px;}
.wsad{word-spacing:10.944009px;}
.ws78{word-spacing:11.074918px;}
.wsce{word-spacing:11.140373px;}
.wsb8{word-spacing:11.476915px;}
.ws90{word-spacing:11.598555px;}
.ws4b{word-spacing:11.664010px;}
.ws34{word-spacing:11.821101px;}
.ws83{word-spacing:12.253101px;}
.wsa7{word-spacing:12.279283px;}
.ws7a{word-spacing:12.318556px;}
.wsc3{word-spacing:12.410192px;}
.wsc6{word-spacing:12.449465px;}
.wsac{word-spacing:13.234920px;}
.ws5f{word-spacing:13.329959px;}
.ws4a{word-spacing:13.457466px;}
.wsae{word-spacing:13.627648px;}
.ws86{word-spacing:14.085830px;}
.ws42{word-spacing:14.465467px;}
.ws1a{word-spacing:14.544012px;}
.ws72{word-spacing:16.298195px;}
.ws85{word-spacing:17.738197px;}
.ws3f{word-spacing:18.065470px;}
.ws37{word-spacing:18.130924px;}
.ws48{word-spacing:18.763308px;}
.ws3e{word-spacing:20.160017px;}
.ws39{word-spacing:21.730927px;}
.ws15{word-spacing:22.189109px;}
.ws75{word-spacing:22.385473px;}
.ws44{word-spacing:22.752019px;}
.ws25{word-spacing:23.301838px;}
.ws2{word-spacing:23.312640px;}
.wsd5{word-spacing:23.367292px;}
.ws3a{word-spacing:23.466305px;}
.ws7d{word-spacing:23.468630px;}
.ws87{word-spacing:23.475505px;}
.ws3b{word-spacing:23.476978px;}
.ws35{word-spacing:23.492347px;}
.ws36{word-spacing:23.527964px;}
.ws49{word-spacing:23.825474px;}
.ws43{word-spacing:24.749473px;}
.ws45{word-spacing:24.803555px;}
.ws32{word-spacing:26.181840px;}
.ws19{word-spacing:26.827469px;}
.ws3c{word-spacing:27.098204px;}
.ws3d{word-spacing:27.163659px;}
.ws88{word-spacing:27.831296px;}
.ws7f{word-spacing:28.800024px;}
.ws0{word-spacing:31.091012px;}
.ws16{word-spacing:32.192873px;}
.ws38{word-spacing:32.673502px;}
.ws4e{word-spacing:33.653663px;}
.ws8a{word-spacing:33.918574px;}
.ws52{word-spacing:34.131868px;}
.ws6c{word-spacing:37.598852px;}
.ws66{word-spacing:37.778179px;}
.wsb7{word-spacing:40.707184px;}
.ws68{word-spacing:43.875290px;}
.ws5a{word-spacing:44.413271px;}
.ws5d{word-spacing:44.891476px;}
.wsb4{word-spacing:44.951251px;}
.ws50{word-spacing:45.130578px;}
.ws57{word-spacing:45.429456px;}
.ws54{word-spacing:46.505417px;}
.wsb9{word-spacing:46.744519px;}
.ws61{word-spacing:46.983622px;}
.ws53{word-spacing:47.043397px;}
.ws59{word-spacing:47.222724px;}
.ws55{word-spacing:47.461826px;}
.ws2f{word-spacing:48.298685px;}
.ws2b{word-spacing:48.358460px;}
.ws2d{word-spacing:48.418236px;}
.ws29{word-spacing:48.657338px;}
.ws6a{word-spacing:48.896441px;}
.ws89{word-spacing:50.989133px;}
.wsbb{word-spacing:62.848066px;}
.wsb{word-spacing:96.750773px;}
.wsb5{word-spacing:138.165322px;}
.wsb3{word-spacing:213.482578px;}
.ws6b{word-spacing:215.754050px;}
.ws5c{word-spacing:364.117090px;}
.ws60{word-spacing:365.193050px;}
.ws65{word-spacing:366.029909px;}
._1c{margin-left:-8.059692px;}
._1b{margin-left:-6.767011px;}
._6{margin-left:-5.674382px;}
._a{margin-left:-4.579858px;}
._0{margin-left:-2.685602px;}
._2{margin-left:-1.622540px;}
._1{width:1.936742px;}
._e{width:3.010912px;}
._10{width:4.909270px;}
._14{width:6.193651px;}
._16{width:7.292623px;}
._1f{width:8.532570px;}
._15{width:10.015062px;}
._17{width:11.260116px;}
._20{width:12.447078px;}
._19{width:13.920044px;}
._4{width:16.323038px;}
._24{width:18.329252px;}
._9{width:20.925760px;}
._8{width:22.806056px;}
._13{width:24.351075px;}
._3{width:25.376407px;}
._2e{width:26.638515px;}
._d{width:27.837365px;}
._11{width:29.043638px;}
._b{width:30.072521px;}
._23{width:31.616536px;}
._12{width:32.729264px;}
._c{width:34.561993px;}
._2a{width:36.001994px;}
._2b{width:37.730709px;}
._7{width:39.244346px;}
._2d{width:40.306765px;}
._5{width:41.333162px;}
._22{width:43.032694px;}
._21{width:45.011027px;}
._18{width:46.027212px;}
._1a{width:47.236745px;}
._1e{width:48.240497px;}
._1d{width:49.266992px;}
._2c{width:50.688756px;}
._27{width:52.198778px;}
._26{width:54.002009px;}
._25{width:75.272790px;}
._28{width:77.563701px;}
._f{width:80.697600px;}
._29{width:96.836850px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs7{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y22{bottom:63.168000px;}
.y21{bottom:108.000000px;}
.y104{bottom:108.076500px;}
.y6a{bottom:111.448500px;}
.y9e{bottom:112.173000px;}
.y118{bottom:119.560500px;}
.y103{bottom:126.009000px;}
.yd8{bottom:128.323500px;}
.y69{bottom:129.381000px;}
.y9d{bottom:132.496500px;}
.y117{bottom:139.884000px;}
.y20{bottom:140.280000px;}
.y102{bottom:143.941500px;}
.y8e{bottom:144.885000px;}
.y68{bottom:147.313500px;}
.yb7{bottom:155.649000px;}
.yd7{bottom:159.216000px;}
.y1f{bottom:160.603500px;}
.y101{bottom:161.875500px;}
.y9c{bottom:163.389000px;}
.y8d{bottom:165.208500px;}
.y67{bottom:165.246000px;}
.y42{bottom:169.665000px;}
.y116{bottom:173.658000px;}
.yb6{bottom:175.972500px;}
.y100{bottom:179.808000px;}
.y66{bottom:183.178500px;}
.y14e{bottom:190.554000px;}
.y1e{bottom:192.885000px;}
.y115{bottom:193.981500px;}
.y8c{bottom:196.101000px;}
.yb5{bottom:196.296000px;}
.yff{bottom:197.740500px;}
.yea{bottom:200.730000px;}
.y65{bottom:201.111000px;}
.yd6{bottom:202.174500px;}
.y41{bottom:203.437500px;}
.y9b{bottom:206.610000px;}
.y14d{bottom:210.877500px;}
.y1d{bottom:213.208500px;}
.y114{bottom:214.305000px;}
.yfe{bottom:215.673000px;}
.yb4{bottom:216.619500px;}
.y64{bottom:219.045000px;}
.ye9{bottom:221.055000px;}
.yd5{bottom:222.499500px;}
.y9a{bottom:226.933500px;}
.yfd{bottom:233.605500px;}
.yb3{bottom:236.944500px;}
.y63{bottom:236.977500px;}
.y40{bottom:237.211500px;}
.y1c{bottom:246.985500px;}
.y99{bottom:247.257000px;}
.y14c{bottom:247.405500px;}
.y113{bottom:248.077500px;}
.yfc{bottom:251.538000px;}
.y12f{bottom:251.799000px;}
.yd4{bottom:253.390500px;}
.y62{bottom:254.910000px;}
.yb2{bottom:257.268000px;}
.y8b{bottom:263.442000px;}
.y112{bottom:268.402500px;}
.yfb{bottom:269.472000px;}
.y3f{bottom:270.984000px;}
.y61{bottom:272.842500px;}
.yb1{bottom:277.591500px;}
.y1b{bottom:277.878000px;}
.y98{bottom:278.149500px;}
.y8a{bottom:283.765500px;}
.y12e{bottom:285.571500px;}
.yfa{bottom:287.404500px;}
.y60{bottom:290.775000px;}
.y14b{bottom:298.963500px;}
.yd3{bottom:300.130500px;}
.y89{bottom:304.089000px;}
.yf9{bottom:305.337000px;}
.y111{bottom:306.658500px;}
.y5f{bottom:308.707500px;}
.y3e{bottom:309.241500px;}
.yb0{bottom:315.847500px;}
.y14a{bottom:319.287000px;}
.y12d{bottom:319.345500px;}
.y1a{bottom:320.992500px;}
.yf8{bottom:323.269500px;}
.y88{bottom:324.412500px;}
.y97{bottom:325.150500px;}
.yd0{bottom:325.539000px;}
.y5e{bottom:326.641500px;}
.y110{bottom:326.982000px;}
.yf7{bottom:341.202000px;}
.y19{bottom:341.316000px;}
.y5d{bottom:344.574000px;}
.y87{bottom:344.737500px;}
.ycf{bottom:345.862500px;}
.yaf{bottom:349.621500px;}
.y12c{bottom:353.118000px;}
.y3d{bottom:354.357000px;}
.y149{bottom:357.544500px;}
.y10f{bottom:357.874500px;}
.yf6{bottom:359.134500px;}
.y5c{bottom:362.506500px;}
.y86{bottom:365.061000px;}
.y3c{bottom:374.680500px;}
.yf5{bottom:377.068500px;}
.y18{bottom:377.844000px;}
.yce{bottom:379.636500px;}
.yae{bottom:383.395500px;}
.y85{bottom:385.384500px;}
.y5b{bottom:386.118000px;}
.y148{bottom:391.317000px;}
.y12b{bottom:391.375500px;}
.yf4{bottom:395.001000px;}
.y3b{bottom:395.004000px;}
.ycd{bottom:399.960000px;}
.y10e{bottom:401.694000px;}
.y84{bottom:405.708000px;}
.yf3{bottom:412.933500px;}
.y3a{bottom:415.327500px;}
.yad{bottom:417.168000px;}
.y5a{bottom:419.892000px;}
.y10d{bottom:422.017500px;}
.y12a{bottom:422.266500px;}
.y147{bottom:425.091000px;}
.y83{bottom:426.829500px;}
.y17{bottom:428.698500px;}
.yf2{bottom:430.866000px;}
.ycc{bottom:433.732500px;}
.y39{bottom:435.652500px;}
.y59{bottom:440.215500px;}
.yf1{bottom:448.798500px;}
.y16{bottom:449.022000px;}
.ycb{bottom:454.057500px;}
.yac{bottom:455.424000px;}
.y10c{bottom:455.790000px;}
.y38{bottom:455.976000px;}
.y146{bottom:458.863500px;}
.y82{bottom:463.035000px;}
.y129{bottom:466.086000px;}
.y15{bottom:469.347000px;}
.y58{bottom:471.106500px;}
.yf0{bottom:472.410000px;}
.yab{bottom:475.749000px;}
.y81{bottom:483.358500px;}
.y128{bottom:486.409500px;}
.yca{bottom:487.830000px;}
.y10b{bottom:489.564000px;}
.y14{bottom:489.670500px;}
.y37{bottom:496.623000px;}
.y145{bottom:497.121000px;}
.yef{bottom:506.184000px;}
.yaa{bottom:506.640000px;}
.yc9{bottom:508.153500px;}
.y13{bottom:509.994000px;}
.y80{bottom:514.249500px;}
.y57{bottom:514.926000px;}
.y36{bottom:517.744500px;}
.y127{bottom:520.183500px;}
.yee{bottom:526.507500px;}
.y10a{bottom:527.820000px;}
.y12{bottom:530.317500px;}
.y56{bottom:535.249500px;}
.y144{bottom:535.377000px;}
.ya9{bottom:543.766500px;}
.yc8{bottom:546.411000px;}
.y109{bottom:548.145000px;}
.y11{bottom:550.641000px;}
.y35{bottom:554.406000px;}
.y55{bottom:555.574500px;}
.y143{bottom:555.700500px;}
.y7f{bottom:557.256000px;}
.yed{bottom:557.400000px;}
.y126{bottom:558.439500px;}
.y108{bottom:568.468500px;}
.y10{bottom:570.966000px;}
.y34{bottom:574.731000px;}
.yc7{bottom:577.302000px;}
.y7e{bottom:577.579500px;}
.y107{bottom:588.792000px;}
.y125{bottom:589.332000px;}
.y142{bottom:589.474500px;}
.yf{bottom:591.289500px;}
.y54{bottom:593.830500px;}
.ya8{bottom:595.324500px;}
.y7d{bottom:597.903000px;}
.yec{bottom:604.401000px;}
.y33{bottom:605.622000px;}
.ye8{bottom:606.285000px;}
.y141{bottom:609.798000px;}
.ya7{bottom:615.648000px;}
.y106{bottom:619.684500px;}
.yc6{bottom:620.524500px;}
.yeb{bottom:624.724500px;}
.y124{bottom:626.458500px;}
.y53{bottom:627.604500px;}
.ye{bottom:627.817500px;}
.y7c{bottom:628.795500px;}
.y140{bottom:630.121500px;}
.ye7{bottom:640.059000px;}
.yc5{bottom:640.848000px;}
.y13f{bottom:650.445000px;}
.ya6{bottom:653.905500px;}
.yc4{bottom:661.171500px;}
.y52{bottom:661.377000px;}
.y32{bottom:663.787500px;}
.y105{bottom:666.685500px;}
.y7b{bottom:672.399000px;}
.ye6{bottom:673.831500px;}
.y123{bottom:678.016500px;}
.yd{bottom:678.672000px;}
.y31{bottom:681.720000px;}
.y13e{bottom:684.219000px;}
.ya5{bottom:687.678000px;}
.y7a{bottom:692.722500px;}
.yc3{bottom:694.945500px;}
.yc{bottom:696.604500px;}
.y51{bottom:699.633000px;}
.y30{bottom:699.652500px;}
.y13d{bottom:704.542500px;}
.y122{bottom:711.789000px;}
.ye5{bottom:712.089000px;}
.yb{bottom:714.537000px;}
.yc2{bottom:715.269000px;}
.y2f{bottom:717.586500px;}
.ya4{bottom:721.452000px;}
.y13c{bottom:724.866000px;}
.y79{bottom:729.607500px;}
.ye4{bottom:732.412500px;}
.ya{bottom:732.469500px;}
.y2e{bottom:735.519000px;}
.y50{bottom:736.396500px;}
.yd2{bottom:742.006500px;}
.y121{bottom:745.563000px;}
.y78{bottom:749.932500px;}
.y9{bottom:750.403500px;}
.ye3{bottom:752.736000px;}
.y2d{bottom:753.451500px;}
.yc1{bottom:753.525000px;}
.ya3{bottom:755.224500px;}
.y13b{bottom:758.640000px;}
.yd1{bottom:762.330000px;}
.y8{bottom:768.336000px;}
.y77{bottom:770.256000px;}
.y4f{bottom:773.158500px;}
.y2c{bottom:777.063000px;}
.y13a{bottom:778.963500px;}
.y96{bottom:782.325000px;}
.ye2{bottom:783.628500px;}
.y120{bottom:783.819000px;}
.y7{bottom:786.268500px;}
.y76{bottom:790.579500px;}
.yc0{bottom:791.781000px;}
.y4e{bottom:793.482000px;}
.y6{bottom:804.201000px;}
.y2b{bottom:810.835500px;}
.y139{bottom:812.737500px;}
.y4d{bottom:813.805500px;}
.y95{bottom:816.099000px;}
.y11f{bottom:822.076500px;}
.y75{bottom:823.896000px;}
.ya2{bottom:824.373000px;}
.ybf{bottom:825.555000px;}
.ye1{bottom:826.849500px;}
.y5{bottom:826.995000px;}
.y4c{bottom:834.129000px;}
.y74{bottom:844.219500px;}
.y138{bottom:846.510000px;}
.ye0{bottom:847.173000px;}
.y2a{bottom:849.093000px;}
.y94{bottom:849.871500px;}
.y4b{bottom:854.452500px;}
.y11e{bottom:855.849000px;}
.ybe{bottom:859.329000px;}
.y73{bottom:864.543000px;}
.y137{bottom:866.833500px;}
.ya1{bottom:880.741500px;}
.ydf{bottom:880.947000px;}
.y29{bottom:882.865500px;}
.y4{bottom:882.927000px;}
.y93{bottom:883.645500px;}
.y4a{bottom:885.345000px;}
.y11d{bottom:889.623000px;}
.y153{bottom:896.059500px;}
.ybd{bottom:897.585000px;}
.ya0{bottom:901.065000px;}
.yde{bottom:901.270500px;}
.y72{bottom:901.428000px;}
.y136{bottom:905.091000px;}
.y11c{bottom:909.946500px;}
.y28{bottom:916.639500px;}
.ybc{bottom:917.908500px;}
.y3{bottom:919.614000px;}
.y9f{bottom:921.388500px;}
.y71{bottom:921.751500px;}
.y92{bottom:921.901500px;}
.y135{bottom:925.414500px;}
.y152{bottom:929.832000px;}
.ydd{bottom:935.043000px;}
.y27{bottom:936.963000px;}
.y49{bottom:941.712000px;}
.y134{bottom:945.738000px;}
.y11b{bottom:948.202500px;}
.ybb{bottom:948.801000px;}
.y91{bottom:952.794000px;}
.y70{bottom:955.965000px;}
.y48{bottom:962.035500px;}
.y151{bottom:963.606000px;}
.y2{bottom:965.080500px;}
.y133{bottom:966.061500px;}
.y11a{bottom:968.526000px;}
.ydc{bottom:968.817000px;}
.y6f{bottom:973.897500px;}
.y26{bottom:975.220500px;}
.y47{bottom:982.360500px;}
.y150{bottom:983.929500px;}
.y132{bottom:986.386500px;}
.ydb{bottom:989.140500px;}
.y6e{bottom:991.830000px;}
.yba{bottom:992.022000px;}
.y25{bottom:995.544000px;}
.y90{bottom:996.015000px;}
.y1{bottom:997.957500px;}
.y119{bottom:999.418500px;}
.y46{bottom:1002.684000px;}
.y131{bottom:1006.710000px;}
.y6d{bottom:1009.764000px;}
.yb9{bottom:1012.345500px;}
.y14f{bottom:1020.457500px;}
.yda{bottom:1022.914500px;}
.y45{bottom:1023.007500px;}
.y24{bottom:1026.435000px;}
.y130{bottom:1027.033500px;}
.y6c{bottom:1027.696500px;}
.y8f{bottom:1029.789000px;}
.yb8{bottom:1032.669000px;}
.yd9{bottom:1043.238000px;}
.y44{bottom:1043.331000px;}
.y6b{bottom:1045.629000px;}
.y23{bottom:1063.561500px;}
.y43{bottom:1064.452500px;}
.he{height:24.245146px;}
.h8{height:41.484266px;}
.h3{height:44.831700px;}
.h6{height:45.425492px;}
.hc{height:46.145493px;}
.hf{height:46.865494px;}
.h5{height:49.090950px;}
.h9{height:49.156405px;}
.h7{height:50.211840px;}
.h2{height:50.498765px;}
.ha{height:56.941496px;}
.hb{height:59.613450px;}
.h4{height:60.254040px;}
.hd{height:62.889450px;}
.h1{height:72.511265px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:82.098000px;}
.xd{left:87.576000px;}
.x8{left:108.000000px;}
.x1{left:115.425000px;}
.xe{left:116.884500px;}
.xa{left:127.999500px;}
.x9{left:133.404000px;}
.x14{left:135.817500px;}
.x16{left:139.068000px;}
.x15{left:144.703500px;}
.x7{left:148.909500px;}
.x6{left:171.325500px;}
.x11{left:176.331000px;}
.x13{left:214.632000px;}
.x17{left:307.159500px;}
.xc{left:310.840500px;}
.x10{left:336.976500px;}
.xf{left:360.366000px;}
.x2{left:376.716000px;}
.x4{left:397.788000px;}
.x3{left:413.421000px;}
.x5{left:426.123000px;}
.x18{left:450.817500px;}
.xb{left:454.909500px;}
@media print{
.v4{vertical-align:-8.725333pt;}
.v3{vertical-align:-5.904000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.v2{vertical-align:24.021333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.001364pt;}
.ls15{letter-spacing:0.017820pt;}
.ls11{letter-spacing:2.656473pt;}
.ls26{letter-spacing:4.197575pt;}
.ls18{letter-spacing:4.463245pt;}
.ls1b{letter-spacing:4.782048pt;}
.ls1e{letter-spacing:4.888316pt;}
.ls2{letter-spacing:5.207119pt;}
.ls25{letter-spacing:5.313387pt;}
.ls17{letter-spacing:5.366521pt;}
.ls10{letter-spacing:12.916374pt;}
.lse{letter-spacing:12.974556pt;}
.ls4{letter-spacing:14.196375pt;}
.lsb{letter-spacing:16.116377pt;}
.ls7{letter-spacing:16.174559pt;}
.lsd{letter-spacing:16.237590pt;}
.lsc{letter-spacing:16.247622pt;}
.ls5{letter-spacing:19.374562pt;}
.ls9{letter-spacing:19.432743pt;}
.ls8{letter-spacing:20.939058pt;}
.lsa{letter-spacing:20.951298pt;}
.ls1f{letter-spacing:21.585473pt;}
.ls20{letter-spacing:21.643654pt;}
.ls14{letter-spacing:22.045258pt;}
.lsf{letter-spacing:24.261838pt;}
.ls13{letter-spacing:27.461841pt;}
.ls6{letter-spacing:29.090933pt;}
.ls24{letter-spacing:39.053392pt;}
.ls21{letter-spacing:46.312766pt;}
.ls22{letter-spacing:55.949962pt;}
.ls16{letter-spacing:57.331442pt;}
.ls1{letter-spacing:57.809647pt;}
.ls23{letter-spacing:122.898634pt;}
.ls19{letter-spacing:189.847306pt;}
.ls3{letter-spacing:191.228786pt;}
.ls1a{letter-spacing:191.813259pt;}
.ls1d{letter-spacing:323.744650pt;}
.ls1c{letter-spacing:325.604335pt;}
.ws40{word-spacing:-16.162923pt;}
.wsb6{word-spacing:-5.366521pt;}
.ws2a{word-spacing:-5.260253pt;}
.ws64{word-spacing:-4.941450pt;}
.ws63{word-spacing:-4.835182pt;}
.ws4f{word-spacing:-4.516379pt;}
.ws8c{word-spacing:-3.630548pt;}
.ws8b{word-spacing:-3.130184pt;}
.ws94{word-spacing:-3.013821pt;}
.wsd1{word-spacing:-2.839275pt;}
.wsa4{word-spacing:-2.606548pt;}
.ws4{word-spacing:-2.114728pt;}
.ws79{word-spacing:-2.082911pt;}
.ws71{word-spacing:-1.617456pt;}
.ws98{word-spacing:-1.536001pt;}
.ws96{word-spacing:-1.419638pt;}
.ws93{word-spacing:-1.384728pt;}
.ws22{word-spacing:-1.326547pt;}
.ws95{word-spacing:-1.268365pt;}
.ws97{word-spacing:-1.210183pt;}
.ws27{word-spacing:-0.663273pt;}
.ws28{word-spacing:-0.570182pt;}
.ws84{word-spacing:-0.395637pt;}
.wsa8{word-spacing:-0.279273pt;}
.wscf{word-spacing:-0.221091pt;}
.ws7b{word-spacing:-0.104727pt;}
.wsd2{word-spacing:-0.076513pt;}
.ws1{word-spacing:-0.063761pt;}
.ws18{word-spacing:-0.058182pt;}
.ws5e{word-spacing:-0.053134pt;}
.ws47{word-spacing:-0.046545pt;}
.ws41{word-spacing:-0.042507pt;}
.ws9b{word-spacing:-0.023273pt;}
.ws21{word-spacing:0.000000pt;}
.ws77{word-spacing:0.011636pt;}
.ws81{word-spacing:0.128000pt;}
.wscc{word-spacing:0.302546pt;}
.ws3{word-spacing:0.329430pt;}
.ws91{word-spacing:0.418909pt;}
.ws33{word-spacing:0.849455pt;}
.wsa3{word-spacing:0.884364pt;}
.ws73{word-spacing:1.373092pt;}
.ws17{word-spacing:1.466183pt;}
.ws4c{word-spacing:1.524365pt;}
.wsbf{word-spacing:1.640729pt;}
.wsd{word-spacing:1.757092pt;}
.wsbe{word-spacing:1.896729pt;}
.wsaf{word-spacing:1.931638pt;}
.wscd{word-spacing:2.106184pt;}
.wsd3{word-spacing:2.164365pt;}
.ws7c{word-spacing:2.397093pt;}
.ws82{word-spacing:2.571639pt;}
.wsc1{word-spacing:2.688002pt;}
.wsa2{word-spacing:2.862548pt;}
.wsa{word-spacing:2.932989pt;}
.wsc0{word-spacing:3.060366pt;}
.wsf{word-spacing:3.211639pt;}
.ws1d{word-spacing:3.269821pt;}
.wsa1{word-spacing:3.293094pt;}
.wse{word-spacing:3.328003pt;}
.ws1c{word-spacing:3.444367pt;}
.ws1f{word-spacing:3.502548pt;}
.ws14{word-spacing:3.560730pt;}
.wsaa{word-spacing:3.677094pt;}
.ws26{word-spacing:3.700367pt;}
.ws76{word-spacing:3.735276pt;}
.ws20{word-spacing:3.758549pt;}
.ws74{word-spacing:3.793458pt;}
.ws4d{word-spacing:3.851640pt;}
.ws1b{word-spacing:3.991276pt;}
.ws1e{word-spacing:4.049458pt;}
.ws9e{word-spacing:4.084367pt;}
.wsa9{word-spacing:4.224004pt;}
.wsc5{word-spacing:4.433458pt;}
.wsd0{word-spacing:4.491640pt;}
.ws9{word-spacing:4.527005pt;}
.ws24{word-spacing:4.549822pt;}
.ws5{word-spacing:4.739541pt;}
.ws9d{word-spacing:4.747640pt;}
.ws7e{word-spacing:4.957095pt;}
.ws7{word-spacing:5.005210pt;}
.ws6e{word-spacing:5.015277pt;}
.wsd4{word-spacing:5.073459pt;}
.wsc4{word-spacing:5.154913pt;}
.ws23{word-spacing:5.271277pt;}
.ws10{word-spacing:5.306186pt;}
.ws6f{word-spacing:5.387641pt;}
.ws80{word-spacing:5.422550pt;}
.wsc9{word-spacing:5.597096pt;}
.ws6d{word-spacing:5.736732pt;}
.wsc2{word-spacing:5.794914pt;}
.wsa5{word-spacing:5.946187pt;}
.ws8e{word-spacing:6.004369pt;}
.ws13{word-spacing:6.062551pt;}
.ws11{word-spacing:6.085823pt;}
.ws9a{word-spacing:6.120732pt;}
.wsc8{word-spacing:6.178914pt;}
.wsbd{word-spacing:6.353460pt;}
.wsc{word-spacing:6.528005pt;}
.wsca{word-spacing:6.586187pt;}
.ws92{word-spacing:6.644369pt;}
.wsa0{word-spacing:6.702551pt;}
.ws8d{word-spacing:6.900369pt;}
.ws8{word-spacing:6.971163pt;}
.ws99{word-spacing:7.016733pt;}
.wsc7{word-spacing:7.133097pt;}
.ws31{word-spacing:7.168006pt;}
.ws6{word-spacing:7.183699pt;}
.ws51{word-spacing:7.385607pt;}
.ws9c{word-spacing:7.458915pt;}
.ws62{word-spacing:7.545009pt;}
.wsb2{word-spacing:7.651277pt;}
.ws2c{word-spacing:7.704411pt;}
.ws9f{word-spacing:7.714916pt;}
.ws56{word-spacing:7.757545pt;}
.ws70{word-spacing:7.808007pt;}
.ws5b{word-spacing:7.810678pt;}
.ws30{word-spacing:7.970080pt;}
.wscb{word-spacing:8.098916pt;}
.ws2e{word-spacing:8.129482pt;}
.wsb1{word-spacing:8.182615pt;}
.ws58{word-spacing:8.288883pt;}
.ws46{word-spacing:8.331643pt;}
.wsba{word-spacing:8.554553pt;}
.ws8f{word-spacing:8.622553pt;}
.ws67{word-spacing:8.660820pt;}
.ws69{word-spacing:8.713954pt;}
.ws12{word-spacing:8.878553pt;}
.wsab{word-spacing:8.913462pt;}
.wsb0{word-spacing:9.088008pt;}
.wsa6{word-spacing:9.495281pt;}
.wsbc{word-spacing:9.611644pt;}
.wsad{word-spacing:9.728008pt;}
.ws78{word-spacing:9.844372pt;}
.wsce{word-spacing:9.902554pt;}
.wsb8{word-spacing:10.201702pt;}
.ws90{word-spacing:10.309827pt;}
.ws4b{word-spacing:10.368009pt;}
.ws34{word-spacing:10.507645pt;}
.ws83{word-spacing:10.891645pt;}
.wsa7{word-spacing:10.914918pt;}
.ws7a{word-spacing:10.949827pt;}
.wsc3{word-spacing:11.031282pt;}
.wsc6{word-spacing:11.066191pt;}
.wsac{word-spacing:11.764373pt;}
.ws5f{word-spacing:11.848852pt;}
.ws4a{word-spacing:11.962192pt;}
.wsae{word-spacing:12.113465pt;}
.ws86{word-spacing:12.520738pt;}
.ws42{word-spacing:12.858193pt;}
.ws1a{word-spacing:12.928011pt;}
.ws72{word-spacing:14.487285pt;}
.ws85{word-spacing:15.767286pt;}
.ws3f{word-spacing:16.058195pt;}
.ws37{word-spacing:16.116377pt;}
.ws48{word-spacing:16.678496pt;}
.ws3e{word-spacing:17.920015pt;}
.ws39{word-spacing:19.316380pt;}
.ws15{word-spacing:19.723653pt;}
.ws75{word-spacing:19.898198pt;}
.ws44{word-spacing:20.224017pt;}
.ws25{word-spacing:20.712745pt;}
.ws2{word-spacing:20.722347pt;}
.wsd5{word-spacing:20.770926pt;}
.ws3a{word-spacing:20.858938pt;}
.ws7d{word-spacing:20.861004pt;}
.ws87{word-spacing:20.867116pt;}
.ws3b{word-spacing:20.868425pt;}
.ws35{word-spacing:20.882086pt;}
.ws36{word-spacing:20.913746pt;}
.ws49{word-spacing:21.178199pt;}
.ws43{word-spacing:21.999532pt;}
.ws45{word-spacing:22.047605pt;}
.ws32{word-spacing:23.272747pt;}
.ws19{word-spacing:23.846639pt;}
.ws3c{word-spacing:24.087293pt;}
.ws3d{word-spacing:24.145475pt;}
.ws88{word-spacing:24.738930pt;}
.ws7f{word-spacing:25.600021pt;}
.ws0{word-spacing:27.636455pt;}
.ws16{word-spacing:28.615887pt;}
.ws38{word-spacing:29.043113pt;}
.ws4e{word-spacing:29.914367pt;}
.ws8a{word-spacing:30.149843pt;}
.ws52{word-spacing:30.339438pt;}
.ws6c{word-spacing:33.421202pt;}
.ws66{word-spacing:33.580604pt;}
.wsb7{word-spacing:36.184163pt;}
.ws68{word-spacing:39.000258pt;}
.ws5a{word-spacing:39.478463pt;}
.ws5d{word-spacing:39.903534pt;}
.wsb4{word-spacing:39.956668pt;}
.ws50{word-spacing:40.116069pt;}
.ws57{word-spacing:40.381739pt;}
.ws54{word-spacing:41.338148pt;}
.wsb9{word-spacing:41.550684pt;}
.ws61{word-spacing:41.763219pt;}
.ws53{word-spacing:41.816353pt;}
.ws59{word-spacing:41.975755pt;}
.ws55{word-spacing:42.188290pt;}
.ws2f{word-spacing:42.932164pt;}
.ws2b{word-spacing:42.985298pt;}
.ws2d{word-spacing:43.038432pt;}
.ws29{word-spacing:43.250967pt;}
.ws6a{word-spacing:43.463503pt;}
.ws89{word-spacing:45.323674pt;}
.wsbb{word-spacing:55.864947pt;}
.wsb{word-spacing:86.000687pt;}
.wsb5{word-spacing:122.813619pt;}
.wsb3{word-spacing:189.762291pt;}
.ws6b{word-spacing:191.781378pt;}
.ws5c{word-spacing:323.659635pt;}
.ws60{word-spacing:324.616045pt;}
.ws65{word-spacing:325.359919pt;}
._1c{margin-left:-7.164171pt;}
._1b{margin-left:-6.015121pt;}
._6{margin-left:-5.043895pt;}
._a{margin-left:-4.070985pt;}
._0{margin-left:-2.387202pt;}
._2{margin-left:-1.442258pt;}
._1{width:1.721549pt;}
._e{width:2.676366pt;}
._10{width:4.363795pt;}
._14{width:5.505468pt;}
._16{width:6.482332pt;}
._1f{width:7.584507pt;}
._15{width:8.902277pt;}
._17{width:10.008992pt;}
._20{width:11.064069pt;}
._19{width:12.373373pt;}
._4{width:14.509367pt;}
._24{width:16.292668pt;}
._9{width:18.600675pt;}
._8{width:20.272050pt;}
._13{width:21.645400pt;}
._3{width:22.556806pt;}
._2e{width:23.678680pt;}
._d{width:24.744324pt;}
._11{width:25.816567pt;}
._b{width:26.731130pt;}
._23{width:28.103587pt;}
._12{width:29.092679pt;}
._c{width:30.721771pt;}
._2a{width:32.001772pt;}
._2b{width:33.538408pt;}
._7{width:34.883863pt;}
._2d{width:35.828236pt;}
._5{width:36.740589pt;}
._22{width:38.251283pt;}
._21{width:40.009802pt;}
._18{width:40.913077pt;}
._1a{width:41.988218pt;}
._1e{width:42.880442pt;}
._1d{width:43.792882pt;}
._2c{width:45.056672pt;}
._27{width:46.398914pt;}
._26{width:48.001786pt;}
._25{width:66.909147pt;}
._28{width:68.945512pt;}
._f{width:71.731200pt;}
._29{width:86.077200pt;}
.fs5{font-size:31.880533pt;}
.fs7{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:56.149333pt;}
.y21{bottom:96.000000pt;}
.y104{bottom:96.068000pt;}
.y6a{bottom:99.065333pt;}
.y9e{bottom:99.709333pt;}
.y118{bottom:106.276000pt;}
.y103{bottom:112.008000pt;}
.yd8{bottom:114.065333pt;}
.y69{bottom:115.005333pt;}
.y9d{bottom:117.774667pt;}
.y117{bottom:124.341333pt;}
.y20{bottom:124.693333pt;}
.y102{bottom:127.948000pt;}
.y8e{bottom:128.786667pt;}
.y68{bottom:130.945333pt;}
.yb7{bottom:138.354667pt;}
.yd7{bottom:141.525333pt;}
.y1f{bottom:142.758667pt;}
.y101{bottom:143.889333pt;}
.y9c{bottom:145.234667pt;}
.y8d{bottom:146.852000pt;}
.y67{bottom:146.885333pt;}
.y42{bottom:150.813333pt;}
.y116{bottom:154.362667pt;}
.yb6{bottom:156.420000pt;}
.y100{bottom:159.829333pt;}
.y66{bottom:162.825333pt;}
.y14e{bottom:169.381333pt;}
.y1e{bottom:171.453333pt;}
.y115{bottom:172.428000pt;}
.y8c{bottom:174.312000pt;}
.yb5{bottom:174.485333pt;}
.yff{bottom:175.769333pt;}
.yea{bottom:178.426667pt;}
.y65{bottom:178.765333pt;}
.yd6{bottom:179.710667pt;}
.y41{bottom:180.833333pt;}
.y9b{bottom:183.653333pt;}
.y14d{bottom:187.446667pt;}
.y1d{bottom:189.518667pt;}
.y114{bottom:190.493333pt;}
.yfe{bottom:191.709333pt;}
.yb4{bottom:192.550667pt;}
.y64{bottom:194.706667pt;}
.ye9{bottom:196.493333pt;}
.yd5{bottom:197.777333pt;}
.y9a{bottom:201.718667pt;}
.yfd{bottom:207.649333pt;}
.yb3{bottom:210.617333pt;}
.y63{bottom:210.646667pt;}
.y40{bottom:210.854667pt;}
.y1c{bottom:219.542667pt;}
.y99{bottom:219.784000pt;}
.y14c{bottom:219.916000pt;}
.y113{bottom:220.513333pt;}
.yfc{bottom:223.589333pt;}
.y12f{bottom:223.821333pt;}
.yd4{bottom:225.236000pt;}
.y62{bottom:226.586667pt;}
.yb2{bottom:228.682667pt;}
.y8b{bottom:234.170667pt;}
.y112{bottom:238.580000pt;}
.yfb{bottom:239.530667pt;}
.y3f{bottom:240.874667pt;}
.y61{bottom:242.526667pt;}
.yb1{bottom:246.748000pt;}
.y1b{bottom:247.002667pt;}
.y98{bottom:247.244000pt;}
.y8a{bottom:252.236000pt;}
.y12e{bottom:253.841333pt;}
.yfa{bottom:255.470667pt;}
.y60{bottom:258.466667pt;}
.y14b{bottom:265.745333pt;}
.yd3{bottom:266.782667pt;}
.y89{bottom:270.301333pt;}
.yf9{bottom:271.410667pt;}
.y111{bottom:272.585333pt;}
.y5f{bottom:274.406667pt;}
.y3e{bottom:274.881333pt;}
.yb0{bottom:280.753333pt;}
.y14a{bottom:283.810667pt;}
.y12d{bottom:283.862667pt;}
.y1a{bottom:285.326667pt;}
.yf8{bottom:287.350667pt;}
.y88{bottom:288.366667pt;}
.y97{bottom:289.022667pt;}
.yd0{bottom:289.368000pt;}
.y5e{bottom:290.348000pt;}
.y110{bottom:290.650667pt;}
.yf7{bottom:303.290667pt;}
.y19{bottom:303.392000pt;}
.y5d{bottom:306.288000pt;}
.y87{bottom:306.433333pt;}
.ycf{bottom:307.433333pt;}
.yaf{bottom:310.774667pt;}
.y12c{bottom:313.882667pt;}
.y3d{bottom:314.984000pt;}
.y149{bottom:317.817333pt;}
.y10f{bottom:318.110667pt;}
.yf6{bottom:319.230667pt;}
.y5c{bottom:322.228000pt;}
.y86{bottom:324.498667pt;}
.y3c{bottom:333.049333pt;}
.yf5{bottom:335.172000pt;}
.y18{bottom:335.861333pt;}
.yce{bottom:337.454667pt;}
.yae{bottom:340.796000pt;}
.y85{bottom:342.564000pt;}
.y5b{bottom:343.216000pt;}
.y148{bottom:347.837333pt;}
.y12b{bottom:347.889333pt;}
.yf4{bottom:351.112000pt;}
.y3b{bottom:351.114667pt;}
.ycd{bottom:355.520000pt;}
.y10e{bottom:357.061333pt;}
.y84{bottom:360.629333pt;}
.yf3{bottom:367.052000pt;}
.y3a{bottom:369.180000pt;}
.yad{bottom:370.816000pt;}
.y5a{bottom:373.237333pt;}
.y10d{bottom:375.126667pt;}
.y12a{bottom:375.348000pt;}
.y147{bottom:377.858667pt;}
.y83{bottom:379.404000pt;}
.y17{bottom:381.065333pt;}
.yf2{bottom:382.992000pt;}
.ycc{bottom:385.540000pt;}
.y39{bottom:387.246667pt;}
.y59{bottom:391.302667pt;}
.yf1{bottom:398.932000pt;}
.y16{bottom:399.130667pt;}
.ycb{bottom:403.606667pt;}
.yac{bottom:404.821333pt;}
.y10c{bottom:405.146667pt;}
.y38{bottom:405.312000pt;}
.y146{bottom:407.878667pt;}
.y82{bottom:411.586667pt;}
.y129{bottom:414.298667pt;}
.y15{bottom:417.197333pt;}
.y58{bottom:418.761333pt;}
.yf0{bottom:419.920000pt;}
.yab{bottom:422.888000pt;}
.y81{bottom:429.652000pt;}
.y128{bottom:432.364000pt;}
.yca{bottom:433.626667pt;}
.y10b{bottom:435.168000pt;}
.y14{bottom:435.262667pt;}
.y37{bottom:441.442667pt;}
.y145{bottom:441.885333pt;}
.yef{bottom:449.941333pt;}
.yaa{bottom:450.346667pt;}
.yc9{bottom:451.692000pt;}
.y13{bottom:453.328000pt;}
.y80{bottom:457.110667pt;}
.y57{bottom:457.712000pt;}
.y36{bottom:460.217333pt;}
.y127{bottom:462.385333pt;}
.yee{bottom:468.006667pt;}
.y10a{bottom:469.173333pt;}
.y12{bottom:471.393333pt;}
.y56{bottom:475.777333pt;}
.y144{bottom:475.890667pt;}
.ya9{bottom:483.348000pt;}
.yc8{bottom:485.698667pt;}
.y109{bottom:487.240000pt;}
.y11{bottom:489.458667pt;}
.y35{bottom:492.805333pt;}
.y55{bottom:493.844000pt;}
.y143{bottom:493.956000pt;}
.y7f{bottom:495.338667pt;}
.yed{bottom:495.466667pt;}
.y126{bottom:496.390667pt;}
.y108{bottom:505.305333pt;}
.y10{bottom:507.525333pt;}
.y34{bottom:510.872000pt;}
.yc7{bottom:513.157333pt;}
.y7e{bottom:513.404000pt;}
.y107{bottom:523.370667pt;}
.y125{bottom:523.850667pt;}
.y142{bottom:523.977333pt;}
.yf{bottom:525.590667pt;}
.y54{bottom:527.849333pt;}
.ya8{bottom:529.177333pt;}
.y7d{bottom:531.469333pt;}
.yec{bottom:537.245333pt;}
.y33{bottom:538.330667pt;}
.ye8{bottom:538.920000pt;}
.y141{bottom:542.042667pt;}
.ya7{bottom:547.242667pt;}
.y106{bottom:550.830667pt;}
.yc6{bottom:551.577333pt;}
.yeb{bottom:555.310667pt;}
.y124{bottom:556.852000pt;}
.y53{bottom:557.870667pt;}
.ye{bottom:558.060000pt;}
.y7c{bottom:558.929333pt;}
.y140{bottom:560.108000pt;}
.ye7{bottom:568.941333pt;}
.yc5{bottom:569.642667pt;}
.y13f{bottom:578.173333pt;}
.ya6{bottom:581.249333pt;}
.yc4{bottom:587.708000pt;}
.y52{bottom:587.890667pt;}
.y32{bottom:590.033333pt;}
.y105{bottom:592.609333pt;}
.y7b{bottom:597.688000pt;}
.ye6{bottom:598.961333pt;}
.y123{bottom:602.681333pt;}
.yd{bottom:603.264000pt;}
.y31{bottom:605.973333pt;}
.y13e{bottom:608.194667pt;}
.ya5{bottom:611.269333pt;}
.y7a{bottom:615.753333pt;}
.yc3{bottom:617.729333pt;}
.yc{bottom:619.204000pt;}
.y51{bottom:621.896000pt;}
.y30{bottom:621.913333pt;}
.y13d{bottom:626.260000pt;}
.y122{bottom:632.701333pt;}
.ye5{bottom:632.968000pt;}
.yb{bottom:635.144000pt;}
.yc2{bottom:635.794667pt;}
.y2f{bottom:637.854667pt;}
.ya4{bottom:641.290667pt;}
.y13c{bottom:644.325333pt;}
.y79{bottom:648.540000pt;}
.ye4{bottom:651.033333pt;}
.ya{bottom:651.084000pt;}
.y2e{bottom:653.794667pt;}
.y50{bottom:654.574667pt;}
.yd2{bottom:659.561333pt;}
.y121{bottom:662.722667pt;}
.y78{bottom:666.606667pt;}
.y9{bottom:667.025333pt;}
.ye3{bottom:669.098667pt;}
.y2d{bottom:669.734667pt;}
.yc1{bottom:669.800000pt;}
.ya3{bottom:671.310667pt;}
.y13b{bottom:674.346667pt;}
.yd1{bottom:677.626667pt;}
.y8{bottom:682.965333pt;}
.y77{bottom:684.672000pt;}
.y4f{bottom:687.252000pt;}
.y2c{bottom:690.722667pt;}
.y13a{bottom:692.412000pt;}
.y96{bottom:695.400000pt;}
.ye2{bottom:696.558667pt;}
.y120{bottom:696.728000pt;}
.y7{bottom:698.905333pt;}
.y76{bottom:702.737333pt;}
.yc0{bottom:703.805333pt;}
.y4e{bottom:705.317333pt;}
.y6{bottom:714.845333pt;}
.y2b{bottom:720.742667pt;}
.y139{bottom:722.433333pt;}
.y4d{bottom:723.382667pt;}
.y95{bottom:725.421333pt;}
.y11f{bottom:730.734667pt;}
.y75{bottom:732.352000pt;}
.ya2{bottom:732.776000pt;}
.ybf{bottom:733.826667pt;}
.ye1{bottom:734.977333pt;}
.y5{bottom:735.106667pt;}
.y4c{bottom:741.448000pt;}
.y74{bottom:750.417333pt;}
.y138{bottom:752.453333pt;}
.ye0{bottom:753.042667pt;}
.y2a{bottom:754.749333pt;}
.y94{bottom:755.441333pt;}
.y4b{bottom:759.513333pt;}
.y11e{bottom:760.754667pt;}
.ybe{bottom:763.848000pt;}
.y73{bottom:768.482667pt;}
.y137{bottom:770.518667pt;}
.ya1{bottom:782.881333pt;}
.ydf{bottom:783.064000pt;}
.y29{bottom:784.769333pt;}
.y4{bottom:784.824000pt;}
.y93{bottom:785.462667pt;}
.y4a{bottom:786.973333pt;}
.y11d{bottom:790.776000pt;}
.y153{bottom:796.497333pt;}
.ybd{bottom:797.853333pt;}
.ya0{bottom:800.946667pt;}
.yde{bottom:801.129333pt;}
.y72{bottom:801.269333pt;}
.y136{bottom:804.525333pt;}
.y11c{bottom:808.841333pt;}
.y28{bottom:814.790667pt;}
.ybc{bottom:815.918667pt;}
.y3{bottom:817.434667pt;}
.y9f{bottom:819.012000pt;}
.y71{bottom:819.334667pt;}
.y92{bottom:819.468000pt;}
.y135{bottom:822.590667pt;}
.y152{bottom:826.517333pt;}
.ydd{bottom:831.149333pt;}
.y27{bottom:832.856000pt;}
.y49{bottom:837.077333pt;}
.y134{bottom:840.656000pt;}
.y11b{bottom:842.846667pt;}
.ybb{bottom:843.378667pt;}
.y91{bottom:846.928000pt;}
.y70{bottom:849.746667pt;}
.y48{bottom:855.142667pt;}
.y151{bottom:856.538667pt;}
.y2{bottom:857.849333pt;}
.y133{bottom:858.721333pt;}
.y11a{bottom:860.912000pt;}
.ydc{bottom:861.170667pt;}
.y6f{bottom:865.686667pt;}
.y26{bottom:866.862667pt;}
.y47{bottom:873.209333pt;}
.y150{bottom:874.604000pt;}
.y132{bottom:876.788000pt;}
.ydb{bottom:879.236000pt;}
.y6e{bottom:881.626667pt;}
.yba{bottom:881.797333pt;}
.y25{bottom:884.928000pt;}
.y90{bottom:885.346667pt;}
.y1{bottom:887.073333pt;}
.y119{bottom:888.372000pt;}
.y46{bottom:891.274667pt;}
.y131{bottom:894.853333pt;}
.y6d{bottom:897.568000pt;}
.yb9{bottom:899.862667pt;}
.y14f{bottom:907.073333pt;}
.yda{bottom:909.257333pt;}
.y45{bottom:909.340000pt;}
.y24{bottom:912.386667pt;}
.y130{bottom:912.918667pt;}
.y6c{bottom:913.508000pt;}
.y8f{bottom:915.368000pt;}
.yb8{bottom:917.928000pt;}
.yd9{bottom:927.322667pt;}
.y44{bottom:927.405333pt;}
.y6b{bottom:929.448000pt;}
.y23{bottom:945.388000pt;}
.y43{bottom:946.180000pt;}
.he{height:21.551241pt;}
.h8{height:36.874903pt;}
.h3{height:39.850400pt;}
.h6{height:40.378215pt;}
.hc{height:41.018216pt;}
.hf{height:41.658217pt;}
.h5{height:43.636400pt;}
.h9{height:43.694582pt;}
.h7{height:44.632747pt;}
.h2{height:44.887791pt;}
.ha{height:50.614663pt;}
.hb{height:52.989733pt;}
.h4{height:53.559147pt;}
.hd{height:55.901733pt;}
.h1{height:64.454458pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:72.976000pt;}
.xd{left:77.845333pt;}
.x8{left:96.000000pt;}
.x1{left:102.600000pt;}
.xe{left:103.897333pt;}
.xa{left:113.777333pt;}
.x9{left:118.581333pt;}
.x14{left:120.726667pt;}
.x16{left:123.616000pt;}
.x15{left:128.625333pt;}
.x7{left:132.364000pt;}
.x6{left:152.289333pt;}
.x11{left:156.738667pt;}
.x13{left:190.784000pt;}
.x17{left:273.030667pt;}
.xc{left:276.302667pt;}
.x10{left:299.534667pt;}
.xf{left:320.325333pt;}
.x2{left:334.858667pt;}
.x4{left:353.589333pt;}
.x3{left:367.485333pt;}
.x5{left:378.776000pt;}
.x18{left:400.726667pt;}
.xb{left:404.364000pt;}
}




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