
    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_44ec05f080d99190ba1a9ffc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_db626b5aef93fdd3fbd6abe1.woff2')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_e2fce1cd68f46a1df33fcecd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_6dbb1244578261f9855121f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.686000;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_49cc3f1e69953943d5af2c79.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ace526de67844ffca8305ecf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.665000;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_8732100dcaedd94e39054633.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a46d901b57d3b566d9b5db21.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.717000;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_d8819fbd6ecfeb71fe5de177.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4e300e8af91b53746cc25518.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.898000;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_34d0fd495f5ed9b753e69746.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_79c30985c56837c8059758d2.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_37826495e4aa4461f58e50ee.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.518000;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_19c20b2aebcc706eb16ab412.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.645000;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_ae9de4f36d45c273dd0aa702.woff2')format("woff");}.fff{font-family:fff;line-height:1.800000;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_bc768a977b8db1d95a6736df.woff2')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v3{vertical-align:-22.854000px;}
.v9{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:16.182000px;}
.v6{vertical-align:18.912000px;}
.v2{vertical-align:23.748000px;}
.v1{vertical-align:26.034000px;}
.vc{vertical-align:35.088000px;}
.v4{vertical-align:44.280000px;}
.v5{vertical-align:68.034000px;}
.va{vertical-align:74.556000px;}
.v7{vertical-align:89.178000px;}
.v8{vertical-align:112.932000px;}
.ls2{letter-spacing:0.000000px;}
.ls3c{letter-spacing:0.001593px;}
.ls29{letter-spacing:0.002682px;}
.ls19{letter-spacing:0.002712px;}
.ls4a{letter-spacing:0.003056px;}
.ls4c{letter-spacing:0.003238px;}
.ls38{letter-spacing:0.007593px;}
.ls21{letter-spacing:1.820137px;}
.ls0{letter-spacing:2.984915px;}
.ls1{letter-spacing:2.988532px;}
.lse{letter-spacing:2.990915px;}
.ls2f{letter-spacing:3.632153px;}
.ls2c{letter-spacing:3.638153px;}
.ls46{letter-spacing:4.704621px;}
.ls18{letter-spacing:5.134864px;}
.ls34{letter-spacing:7.043428px;}
.ls23{letter-spacing:7.172706px;}
.ls30{letter-spacing:12.482915px;}
.ls3b{letter-spacing:14.540700px;}
.ls17{letter-spacing:14.543412px;}
.ls40{letter-spacing:14.546700px;}
.ls22{letter-spacing:14.546706px;}
.ls27{letter-spacing:15.215412px;}
.ls20{letter-spacing:16.364137px;}
.ls4{letter-spacing:16.560014px;}
.ls45{letter-spacing:17.538499px;}
.ls15{letter-spacing:18.179412px;}
.ls44{letter-spacing:18.187593px;}
.ls25{letter-spacing:18.856884px;}
.ls9{letter-spacing:18.916379px;}
.ls49{letter-spacing:19.505471px;}
.ls16{letter-spacing:19.678864px;}
.ls14{letter-spacing:20.006137px;}
.ls7{letter-spacing:20.029108px;}
.ls8{letter-spacing:20.094562px;}
.lsb{letter-spacing:20.421835px;}
.lsa{letter-spacing:20.487290px;}
.ls12{letter-spacing:20.618199px;}
.lsc{letter-spacing:20.683654px;}
.ls28{letter-spacing:20.749108px;}
.ls1e{letter-spacing:21.168103px;}
.ls39{letter-spacing:21.168499px;}
.ls6{letter-spacing:21.600018px;}
.ls5{letter-spacing:21.665473px;}
.ls37{letter-spacing:21.695412px;}
.ls2e{letter-spacing:21.719412px;}
.ls3{letter-spacing:21.927291px;}
.ls10{letter-spacing:22.450928px;}
.ls13{letter-spacing:22.581837px;}
.ls11{letter-spacing:22.843655px;}
.ls3d{letter-spacing:22.884621px;}
.ls42{letter-spacing:24.618499px;}
.ls26{letter-spacing:24.646884px;}
.ls1d{letter-spacing:24.804103px;}
.ls2a{letter-spacing:25.229428px;}
.ls48{letter-spacing:25.330930px;}
.ls2b{letter-spacing:25.349412px;}
.ls35{letter-spacing:25.396385px;}
.ls2d{letter-spacing:25.544915px;}
.ls1c{letter-spacing:25.682137px;}
.lsf{letter-spacing:25.920022px;}
.ls43{letter-spacing:26.340621px;}
.lsd{letter-spacing:27.687296px;}
.ls1b{letter-spacing:28.996864px;}
.ls36{letter-spacing:30.763662px;}
.ls4b{letter-spacing:31.221844px;}
.ls32{letter-spacing:36.191428px;}
.ls33{letter-spacing:36.197428px;}
.ls3a{letter-spacing:59.760050px;}
.ls3e{letter-spacing:59.774700px;}
.ls1f{letter-spacing:108.083412px;}
.ls3f{letter-spacing:110.683729px;}
.ls41{letter-spacing:357.506712px;}
.ls24{letter-spacing:775.250712px;}
.ls1a{letter-spacing:864.584712px;}
.ls31{letter-spacing:917.996712px;}
.ls47{letter-spacing:958.598712px;}
.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;}
}
.wsac{word-spacing:-128.867016px;}
.wsaa{word-spacing:-77.943338px;}
.ws8f{word-spacing:-65.454600px;}
.wsb6{word-spacing:-50.809387px;}
.ws4{word-spacing:-18.183288px;}
.wsd7{word-spacing:-15.359443px;}
.wsab{word-spacing:-7.266174px;}
.ws92{word-spacing:-3.653555px;}
.ws70{word-spacing:-3.652367px;}
.ws98{word-spacing:-3.390548px;}
.ws28{word-spacing:-3.128730px;}
.wsa0{word-spacing:-2.932366px;}
.ws72{word-spacing:-2.801457px;}
.wsfc{word-spacing:-2.539638px;}
.ws107{word-spacing:-2.474184px;}
.ws71{word-spacing:-2.408729px;}
.wsa{word-spacing:-2.343275px;}
.ws6b{word-spacing:-2.212365px;}
.ws104{word-spacing:-2.081456px;}
.ws93{word-spacing:-1.950547px;}
.wsc6{word-spacing:-1.885092px;}
.ws9{word-spacing:-1.688729px;}
.ws26{word-spacing:-1.623274px;}
.ws80{word-spacing:-1.361456px;}
.wsa1{word-spacing:-1.296001px;}
.wsed{word-spacing:-1.230546px;}
.ws99{word-spacing:-1.165092px;}
.wsdd{word-spacing:-1.099637px;}
.wse5{word-spacing:-1.034183px;}
.wsc0{word-spacing:-0.995270px;}
.ws32{word-spacing:-0.837819px;}
.ws31{word-spacing:-0.772364px;}
.wsee{word-spacing:-0.706910px;}
.wsd2{word-spacing:-0.641455px;}
.ws59{word-spacing:-0.510546px;}
.ws102{word-spacing:-0.379637px;}
.ws47{word-spacing:-0.248727px;}
.ws5b{word-spacing:-0.183273px;}
.ws76{word-spacing:-0.117818px;}
.ws1e{word-spacing:-0.065455px;}
.wsb4{word-spacing:-0.047821px;}
.ws1a{word-spacing:0.000000px;}
.wse4{word-spacing:0.013091px;}
.wsd9{word-spacing:0.078546px;}
.wsf9{word-spacing:0.274909px;}
.wsa9{word-spacing:0.405819px;}
.ws6f{word-spacing:0.471273px;}
.ws8c{word-spacing:0.511085px;}
.ws2a{word-spacing:0.733092px;}
.ws61{word-spacing:0.798546px;}
.ws5c{word-spacing:0.833875px;}
.ws17{word-spacing:0.864001px;}
.wsfb{word-spacing:0.929455px;}
.ws87{word-spacing:0.994910px;}
.ws9a{word-spacing:1.060365px;}
.wsf8{word-spacing:1.125819px;}
.ws74{word-spacing:1.256728px;}
.wsd5{word-spacing:1.264262px;}
.ws46{word-spacing:1.322183px;}
.wsec{word-spacing:1.387638px;}
.wsc5{word-spacing:1.518547px;}
.ws9e{word-spacing:1.584001px;}
.ws3b{word-spacing:1.649456px;}
.wse3{word-spacing:1.780365px;}
.wsd8{word-spacing:1.845820px;}
.ws29{word-spacing:1.911274px;}
.ws3c{word-spacing:1.976729px;}
.ws41{word-spacing:2.042184px;}
.ws94{word-spacing:2.107638px;}
.ws4b{word-spacing:2.173093px;}
.ws34{word-spacing:2.238547px;}
.ws33{word-spacing:2.304002px;}
.ws6c{word-spacing:2.369457px;}
.ws45{word-spacing:2.434911px;}
.ws39{word-spacing:2.500366px;}
.ws5f{word-spacing:2.565820px;}
.ws75{word-spacing:2.696730px;}
.ws10{word-spacing:2.762184px;}
.ws95{word-spacing:2.958548px;}
.ws20{word-spacing:3.024003px;}
.ws84{word-spacing:3.039610px;}
.ws4d{word-spacing:3.093408px;}
.ws67{word-spacing:3.220366px;}
.ws4c{word-spacing:3.254803px;}
.ws6e{word-spacing:3.285821px;}
.ws5e{word-spacing:3.299613px;}
.ws27{word-spacing:3.416730px;}
.wsae{word-spacing:3.442261px;}
.wsad{word-spacing:3.454209px;}
.ws82{word-spacing:3.469997px;}
.ws18{word-spacing:3.482185px;}
.wsbd{word-spacing:3.547639px;}
.ws11{word-spacing:3.613094px;}
.ws6{word-spacing:3.678549px;}
.ws25{word-spacing:3.744003px;}
.wscf{word-spacing:3.809458px;}
.ws2d{word-spacing:3.874912px;}
.ws8a{word-spacing:3.940367px;}
.ws55{word-spacing:4.071276px;}
.wsc4{word-spacing:4.136731px;}
.ws64{word-spacing:4.202185px;}
.wscb{word-spacing:4.223174px;}
.ws36{word-spacing:4.267640px;}
.ws58{word-spacing:4.333095px;}
.wse7{word-spacing:4.464004px;}
.wseb{word-spacing:4.529458px;}
.ws6d{word-spacing:4.539087px;}
.wsde{word-spacing:4.594913px;}
.ws7d{word-spacing:4.660368px;}
.ws7c{word-spacing:4.725822px;}
.wsd3{word-spacing:4.761158px;}
.ws7b{word-spacing:4.791277px;}
.wsbf{word-spacing:4.814957px;}
.ws44{word-spacing:4.856731px;}
.ws7e{word-spacing:4.922186px;}
.ws35{word-spacing:4.987641px;}
.wsc1{word-spacing:5.184004px;}
.ws9b{word-spacing:5.249459px;}
.ws2e{word-spacing:5.314914px;}
.wsb8{word-spacing:5.352941px;}
.ws14{word-spacing:5.380368px;}
.ws60{word-spacing:5.445823px;}
.ws1f{word-spacing:5.511277px;}
.ws81{word-spacing:5.576732px;}
.ws91{word-spacing:5.642187px;}
.ws90{word-spacing:5.680209px;}
.ws2f{word-spacing:5.707641px;}
.ws3e{word-spacing:5.770800px;}
.ws40{word-spacing:5.773096px;}
.ws9d{word-spacing:5.904005px;}
.wsd1{word-spacing:5.969460px;}
.ws7a{word-spacing:6.034914px;}
.wsc2{word-spacing:6.165823px;}
.wsd{word-spacing:6.231278px;}
.ws62{word-spacing:6.362187px;}
.ws79{word-spacing:6.427642px;}
.ws109{word-spacing:6.493096px;}
.ws57{word-spacing:6.558551px;}
.ws30{word-spacing:6.624006px;}
.wse{word-spacing:6.689460px;}
.ws83{word-spacing:6.751699px;}
.ws6a{word-spacing:6.754915px;}
.wsc3{word-spacing:6.820369px;}
.ws23{word-spacing:6.885824px;}
.ws1c{word-spacing:6.951279px;}
.wsb3{word-spacing:7.082188px;}
.wsb0{word-spacing:7.147642px;}
.wsd6{word-spacing:7.235885px;}
.wsa2{word-spacing:7.278552px;}
.wsd4{word-spacing:7.289683px;}
.ws96{word-spacing:7.344006px;}
.ws8e{word-spacing:7.409461px;}
.ws15{word-spacing:7.474915px;}
.wsa3{word-spacing:7.540370px;}
.ws78{word-spacing:7.671279px;}
.ws77{word-spacing:7.736734px;}
.ws5d{word-spacing:7.773869px;}
.wse2{word-spacing:7.802188px;}
.ws37{word-spacing:7.867643px;}
.ws8d{word-spacing:7.989062px;}
.wsb2{word-spacing:7.998552px;}
.wsce{word-spacing:8.064007px;}
.ws42{word-spacing:8.194916px;}
.ws100{word-spacing:8.260371px;}
.wsb{word-spacing:8.522189px;}
.ws63{word-spacing:8.587644px;}
.ws21{word-spacing:8.653098px;}
.ws5a{word-spacing:8.718553px;}
.wsea{word-spacing:8.784007px;}
.ws66{word-spacing:8.914917px;}
.ws9f{word-spacing:8.980371px;}
.ws8b{word-spacing:9.045826px;}
.ws73{word-spacing:9.111280px;}
.ws2b{word-spacing:9.176735px;}
.ws1d{word-spacing:9.242190px;}
.wse1{word-spacing:9.307644px;}
.ws3a{word-spacing:9.438553px;}
.ws12{word-spacing:9.504008px;}
.wse0{word-spacing:9.634917px;}
.ws108{word-spacing:9.700372px;}
.wsbc{word-spacing:9.765826px;}
.wscc{word-spacing:9.962190px;}
.wsa6{word-spacing:10.027645px;}
.ws110{word-spacing:10.093099px;}
.wscd{word-spacing:10.158554px;}
.wsbe{word-spacing:10.224009px;}
.wsb7{word-spacing:10.248595px;}
.wsda{word-spacing:10.289463px;}
.ws56{word-spacing:10.356192px;}
.ws16{word-spacing:10.420372px;}
.wsf4{word-spacing:10.484309px;}
.wsa7{word-spacing:10.485827px;}
.ws19{word-spacing:10.551282px;}
.wse9{word-spacing:10.616736px;}
.ws43{word-spacing:10.682191px;}
.ws103{word-spacing:10.829194px;}
.wsef{word-spacing:10.829791px;}
.ws106{word-spacing:10.834242px;}
.wsfd{word-spacing:10.839018px;}
.wsc{word-spacing:10.878555px;}
.ws38{word-spacing:10.944009px;}
.ws9c{word-spacing:10.972209px;}
.wsf3{word-spacing:11.074918px;}
.wsf2{word-spacing:11.205828px;}
.ws89{word-spacing:11.271282px;}
.ws13{word-spacing:11.467646px;}
.ws24{word-spacing:11.598555px;}
.ws69{word-spacing:11.664010px;}
.ws65{word-spacing:11.925828px;}
.ws49{word-spacing:11.991283px;}
.ws4a{word-spacing:12.056737px;}
.wsc7{word-spacing:12.077741px;}
.wsdf{word-spacing:12.122192px;}
.wsc8{word-spacing:12.131539px;}
.wsf{word-spacing:12.253101px;}
.wsa4{word-spacing:12.514920px;}
.wsa5{word-spacing:12.580374px;}
.wsf7{word-spacing:12.711283px;}
.ws1b{word-spacing:12.776738px;}
.ws22{word-spacing:12.907647px;}
.wse8{word-spacing:13.038556px;}
.ws86{word-spacing:13.169466px;}
.ws68{word-spacing:13.234920px;}
.ws88{word-spacing:13.431284px;}
.ws7f{word-spacing:13.496739px;}
.ws2c{word-spacing:13.627648px;}
.wsd0{word-spacing:14.216739px;}
.wsa8{word-spacing:14.347648px;}
.ws48{word-spacing:14.544012px;}
.wse6{word-spacing:17.358560px;}
.ws101{word-spacing:18.720016px;}
.wsfa{word-spacing:20.225471px;}
.wsf1{word-spacing:20.369472px;}
.wsff{word-spacing:22.189109px;}
.wsf6{word-spacing:23.301838px;}
.ws2{word-spacing:23.312640px;}
.wsf0{word-spacing:23.367292px;}
.ws3{word-spacing:23.384371px;}
.wsaf{word-spacing:23.476797px;}
.ws10d{word-spacing:24.414566px;}
.ws5{word-spacing:24.759094px;}
.ws105{word-spacing:24.938203px;}
.ws97{word-spacing:25.003657px;}
.ws1{word-spacing:25.034189px;}
.ws85{word-spacing:25.069112px;}
.wsb1{word-spacing:25.253814px;}
.ws3f{word-spacing:25.330930px;}
.wsfe{word-spacing:25.527294px;}
.ws10c{word-spacing:25.658203px;}
.ws10a{word-spacing:25.985476px;}
.ws3d{word-spacing:26.827469px;}
.ws10e{word-spacing:27.163659px;}
.ws10f{word-spacing:29.127297px;}
.wsf5{word-spacing:29.650934px;}
.wsb5{word-spacing:30.120010px;}
.ws10b{word-spacing:30.698207px;}
.wsdc{word-spacing:32.192873px;}
.ws0{word-spacing:38.631358px;}
.wsb9{word-spacing:53.554954px;}
.wsba{word-spacing:74.664010px;}
.ws8{word-spacing:80.625869px;}
.ws7{word-spacing:96.750773px;}
.wsbb{word-spacing:106.442271px;}
.wsca{word-spacing:108.798636px;}
.wsc9{word-spacing:122.020465px;}
.ws51{word-spacing:166.833409px;}
.ws4e{word-spacing:190.111885px;}
.ws52{word-spacing:213.731630px;}
.ws53{word-spacing:219.206935px;}
.ws54{word-spacing:344.833948px;}
.ws50{word-spacing:443.788213px;}
.ws4f{word-spacing:541.760058px;}
.wsdb{word-spacing:1467.404573px;}
._41{margin-left:-110.683729px;}
._40{margin-left:-59.760638px;}
._5d{margin-left:-34.664042px;}
._5c{margin-left:-31.876390px;}
._5a{margin-left:-8.091257px;}
._3b{margin-left:-6.742733px;}
._f{margin-left:-5.432732px;}
._6{margin-left:-4.355551px;}
._2{margin-left:-3.202064px;}
._4{margin-left:-1.936742px;}
._5{width:1.936742px;}
._1{width:3.202064px;}
._36{width:4.215990px;}
._7{width:5.422864px;}
._0{width:6.507421px;}
._3{width:11.774915px;}
._16{width:16.101832px;}
._15{width:17.607287px;}
._1a{width:18.951927px;}
._10{width:20.067667px;}
._21{width:22.640839px;}
._20{width:24.532070px;}
._c{width:25.931685px;}
._8{width:27.529491px;}
._9{width:28.811687px;}
._3f{width:30.016766px;}
._a{width:31.064039px;}
._d{width:32.661845px;}
._11{width:34.152069px;}
._19{width:35.488057px;}
._b{width:37.587815px;}
._13{width:39.361541px;}
._e{width:40.581852px;}
._1b{width:41.902607px;}
._3a{width:42.911322px;}
._14{width:44.104737px;}
._3d{width:45.163674px;}
._3c{width:47.373898px;}
._35{width:48.954830px;}
._1d{width:50.034210px;}
._5b{width:51.762925px;}
._18{width:53.164367px;}
._1f{width:54.627695px;}
._3e{width:55.794215px;}
._12{width:56.950713px;}
._17{width:58.974595px;}
._1e{width:61.581115px;}
._27{width:71.790496px;}
._39{width:75.272790px;}
._1c{width:80.697600px;}
._59{width:96.836850px;}
._32{width:116.562420px;}
._44{width:124.848889px;}
._4d{width:134.006133px;}
._51{width:140.203753px;}
._50{width:156.698312px;}
._58{width:161.114585px;}
._4f{width:165.311424px;}
._43{width:172.603780px;}
._2b{width:182.315580px;}
._2e{width:183.989297px;}
._48{width:186.846918px;}
._49{width:188.116520px;}
._4a{width:190.498097px;}
._57{width:199.019083px;}
._52{width:200.514335px;}
._47{width:214.729576px;}
._37{width:244.670957px;}
._45{width:247.680206px;}
._4b{width:257.996782px;}
._56{width:282.778401px;}
._38{width:285.095169px;}
._46{width:286.906891px;}
._29{width:299.911511px;}
._30{width:313.702349px;}
._2a{width:314.838085px;}
._2f{width:325.164794px;}
._53{width:336.500678px;}
._42{width:349.219512px;}
._26{width:352.528083px;}
._31{width:360.312860px;}
._34{width:364.631160px;}
._4e{width:367.723943px;}
._4c{width:375.930978px;}
._24{width:391.855498px;}
._2d{width:407.789143px;}
._2c{width:409.238292px;}
._22{width:411.694980px;}
._25{width:435.402799px;}
._23{width:451.984364px;}
._28{width:560.980310px;}
._33{width:689.481543px;}
._54{width:720.125346px;}
._55{width:1000.759556px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs6{font-size:53.798400px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1ba{bottom:78.243000px;}
.y47{bottom:78.244500px;}
.y64{bottom:123.076500px;}
.y46{bottom:123.570000px;}
.y155{bottom:126.409500px;}
.y1b9{bottom:128.052000px;}
.y1e{bottom:131.056500px;}
.yaa{bottom:132.358500px;}
.yc1{bottom:133.098000px;}
.y73{bottom:133.314000px;}
.y179{bottom:142.606500px;}
.y63{bottom:148.480500px;}
.y45{bottom:148.974000px;}
.y199{bottom:150.702000px;}
.y154{bottom:151.815000px;}
.y1b8{bottom:153.457500px;}
.y1d{bottom:154.975500px;}
.ya9{bottom:157.762500px;}
.yc0{bottom:158.502000px;}
.y72{bottom:158.719500px;}
.yf1{bottom:160.254000px;}
.y13b{bottom:164.346000px;}
.y178{bottom:168.012000px;}
.y44{bottom:174.378000px;}
.y198{bottom:176.107500px;}
.y153{bottom:177.219000px;}
.y1b7{bottom:178.861500px;}
.yd2{bottom:179.164500px;}
.y1c{bottom:180.379500px;}
.ya8{bottom:183.168000px;}
.ybf{bottom:183.907500px;}
.y71{bottom:184.123500px;}
.y62{bottom:184.453500px;}
.y107{bottom:185.428500px;}
.yf0{bottom:185.658000px;}
.y13a{bottom:189.750000px;}
.yd1{bottom:190.389000px;}
.y15d{bottom:191.620500px;}
.y177{bottom:193.416000px;}
.y43{bottom:199.783500px;}
.y152{bottom:202.624500px;}
.y1b6{bottom:204.267000px;}
.ya7{bottom:208.572000px;}
.ybe{bottom:209.311500px;}
.y70{bottom:209.529000px;}
.y106{bottom:210.832500px;}
.yef{bottom:211.063500px;}
.y15c{bottom:212.167500px;}
.y197{bottom:214.962000px;}
.y139{bottom:215.155500px;}
.y1b{bottom:216.352500px;}
.y127{bottom:219.412500px;}
.y42{bottom:225.187500px;}
.y94{bottom:226.426500px;}
.y151{bottom:228.028500px;}
.y176{bottom:229.389000px;}
.yd0{bottom:232.143000px;}
.y15b{bottom:232.716000px;}
.ya6{bottom:233.977500px;}
.ybd{bottom:234.717000px;}
.y6f{bottom:234.933000px;}
.y105{bottom:236.238000px;}
.yee{bottom:236.467500px;}
.y196{bottom:240.366000px;}
.y138{bottom:240.559500px;}
.y1b5{bottom:243.121500px;}
.y126{bottom:244.816500px;}
.y93{bottom:247.164000px;}
.y41{bottom:250.593000px;}
.y15a{bottom:253.264500px;}
.y150{bottom:253.434000px;}
.ycf{bottom:257.548500px;}
.ya5{bottom:259.381500px;}
.y61{bottom:259.494000px;}
.ybc{bottom:260.121000px;}
.y6e{bottom:260.338500px;}
.y104{bottom:261.642000px;}
.yed{bottom:261.873000px;}
.y1a{bottom:265.402500px;}
.y195{bottom:265.771500px;}
.y137{bottom:265.965000px;}
.y1b4{bottom:268.525500px;}
.y125{bottom:270.222000px;}
.y92{bottom:272.569500px;}
.y159{bottom:273.811500px;}
.y40{bottom:275.997000px;}
.y175{bottom:278.439000px;}
.y14f{bottom:278.838000px;}
.ya4{bottom:284.787000px;}
.y60{bottom:284.899500px;}
.ybb{bottom:285.526500px;}
.y6d{bottom:285.742500px;}
.y103{bottom:287.047500px;}
.y19{bottom:290.806500px;}
.y136{bottom:291.369000px;}
.y158{bottom:294.360000px;}
.y124{bottom:295.626000px;}
.yce{bottom:296.688000px;}
.yec{bottom:297.846000px;}
.y91{bottom:297.973500px;}
.y3f{bottom:301.402500px;}
.y174{bottom:303.844500px;}
.y14e{bottom:304.243500px;}
.y194{bottom:304.624500px;}
.y1b3{bottom:307.380000px;}
.ya3{bottom:310.191000px;}
.y5f{bottom:310.303500px;}
.yba{bottom:310.930500px;}
.y6c{bottom:311.148000px;}
.y18{bottom:316.212000px;}
.y135{bottom:316.774500px;}
.y123{bottom:321.031500px;}
.y90{bottom:323.379000px;}
.y102{bottom:324.844500px;}
.y3e{bottom:326.806500px;}
.y101{bottom:328.890000px;}
.y173{bottom:329.248500px;}
.y14d{bottom:329.647500px;}
.y157{bottom:329.851500px;}
.y193{bottom:330.030000px;}
.y1b2{bottom:332.784000px;}
.ya2{bottom:335.596500px;}
.y5e{bottom:335.709000px;}
.ycd{bottom:335.827500px;}
.yb9{bottom:336.336000px;}
.y6b{bottom:336.552000px;}
.y17{bottom:341.616000px;}
.y134{bottom:342.178500px;}
.y122{bottom:346.435500px;}
.yeb{bottom:346.894500px;}
.y8f{bottom:348.783000px;}
.y3d{bottom:352.212000px;}
.y172{bottom:354.654000px;}
.y14c{bottom:355.053000px;}
.y1b1{bottom:358.189500px;}
.y5d{bottom:361.113000px;}
.ycc{bottom:361.233000px;}
.yb8{bottom:361.740000px;}
.y6a{bottom:361.957500px;}
.y16{bottom:367.021500px;}
.y133{bottom:367.584000px;}
.y192{bottom:368.884500px;}
.y100{bottom:370.732500px;}
.ya1{bottom:371.569500px;}
.y121{bottom:371.841000px;}
.yea{bottom:372.300000px;}
.y8e{bottom:374.188500px;}
.y3c{bottom:377.616000px;}
.y171{bottom:380.058000px;}
.y14b{bottom:380.457000px;}
.y1b0{bottom:383.593500px;}
.y5c{bottom:386.518500px;}
.ycb{bottom:386.637000px;}
.yb7{bottom:387.145500px;}
.y69{bottom:387.361500px;}
.y15{bottom:392.425500px;}
.y132{bottom:392.988000px;}
.y191{bottom:394.288500px;}
.yff{bottom:396.138000px;}
.y120{bottom:397.245000px;}
.ye9{bottom:397.704000px;}
.y8d{bottom:399.592500px;}
.y3b{bottom:403.021500px;}
.y170{bottom:405.463500px;}
.y14a{bottom:405.862500px;}
.yca{bottom:412.042500px;}
.yb6{bottom:412.549500px;}
.y14{bottom:417.831000px;}
.y131{bottom:418.393500px;}
.y190{bottom:419.694000px;}
.y5b{bottom:420.138000px;}
.ya0{bottom:420.618000px;}
.y1af{bottom:422.448000px;}
.y11f{bottom:422.650500px;}
.ye8{bottom:423.109500px;}
.y3a{bottom:428.425500px;}
.y16f{bottom:430.867500px;}
.y149{bottom:431.266500px;}
.yfe{bottom:434.221500px;}
.yc9{bottom:437.446500px;}
.y68{bottom:439.852500px;}
.y8c{bottom:441.202500px;}
.y13{bottom:443.235000px;}
.y130{bottom:443.797500px;}
.y9f{bottom:446.023500px;}
.y1ae{bottom:447.853500px;}
.y11e{bottom:448.054500px;}
.ye7{bottom:448.513500px;}
.yb5{bottom:448.522500px;}
.y39{bottom:453.831000px;}
.yfb{bottom:454.234500px;}
.y16e{bottom:456.273000px;}
.y148{bottom:456.672000px;}
.y18f{bottom:458.548500px;}
.yfd{bottom:459.625500px;}
.y67{bottom:460.399500px;}
.yf7{bottom:460.615500px;}
.yc8{bottom:462.852000px;}
.yfa{bottom:464.707500px;}
.y5a{bottom:464.919000px;}
.y12{bottom:468.640500px;}
.y12f{bottom:469.203000px;}
.y9e{bottom:471.427500px;}
.y1ad{bottom:473.257500px;}
.y11d{bottom:473.460000px;}
.ye6{bottom:473.919000px;}
.yf9{bottom:474.525000px;}
.y38{bottom:479.235000px;}
.y16d{bottom:481.677000px;}
.y147{bottom:482.076000px;}
.y18e{bottom:483.952500px;}
.yfc{bottom:485.031000px;}
.y59{bottom:485.466000px;}
.yc7{bottom:488.256000px;}
.y11{bottom:494.044500px;}
.y12e{bottom:494.607000px;}
.y66{bottom:495.892500px;}
.y9d{bottom:496.833000px;}
.y11c{bottom:498.864000px;}
.ye5{bottom:499.323000px;}
.y8b{bottom:499.485000px;}
.yf8{bottom:503.325000px;}
.y37{bottom:504.640500px;}
.y16c{bottom:507.082500px;}
.y146{bottom:507.480000px;}
.y18d{bottom:509.358000px;}
.y1ac{bottom:512.112000px;}
.yc6{bottom:513.661500px;}
.yb4{bottom:517.740000px;}
.y10{bottom:519.450000px;}
.y12d{bottom:520.012500px;}
.y58{bottom:520.620000px;}
.y9c{bottom:522.237000px;}
.y11b{bottom:524.269500px;}
.ye4{bottom:524.728500px;}
.y8a{bottom:524.889000px;}
.yf6{bottom:525.094500px;}
.y36{bottom:530.044500px;}
.y16b{bottom:532.486500px;}
.y145{bottom:532.885500px;}
.y1ab{bottom:537.517500px;}
.yb3{bottom:538.288500px;}
.yc5{bottom:539.065500px;}
.yf{bottom:544.854000px;}
.y12c{bottom:545.416500px;}
.y57{bottom:546.024000px;}
.y9b{bottom:547.642500px;}
.y18c{bottom:548.211000px;}
.y89{bottom:550.294500px;}
.yf5{bottom:550.500000px;}
.ye3{bottom:552.760500px;}
.y35{bottom:555.450000px;}
.y16a{bottom:557.892000px;}
.y144{bottom:558.289500px;}
.yb2{bottom:558.837000px;}
.y1aa{bottom:562.921500px;}
.ye2{bottom:563.985000px;}
.ye{bottom:570.259500px;}
.y56{bottom:571.429500px;}
.y9a{bottom:573.046500px;}
.y18b{bottom:573.616500px;}
.y88{bottom:575.698500px;}
.yf4{bottom:575.904000px;}
.y11a{bottom:576.172500px;}
.y34{bottom:580.854000px;}
.y12b{bottom:581.389500px;}
.y169{bottom:583.296000px;}
.yc4{bottom:584.484000px;}
.y143{bottom:594.262500px;}
.yb1{bottom:594.328500px;}
.yd{bottom:595.663500px;}
.y55{bottom:596.833500px;}
.y18a{bottom:599.020500px;}
.y87{bottom:601.104000px;}
.yf3{bottom:601.309500px;}
.y119{bottom:601.578000px;}
.y1a9{bottom:601.776000px;}
.yc3{bottom:605.032500px;}
.y33{bottom:606.259500px;}
.y168{bottom:608.701500px;}
.ye1{bottom:614.794500px;}
.y99{bottom:619.366500px;}
.yc{bottom:621.069000px;}
.y54{bottom:622.239000px;}
.y189{bottom:624.426000px;}
.yc2{bottom:625.581000px;}
.y86{bottom:626.508000px;}
.y118{bottom:626.982000px;}
.y1a8{bottom:627.181500px;}
.y32{bottom:631.663500px;}
.y12a{bottom:633.880500px;}
.y167{bottom:634.105500px;}
.ye0{bottom:640.200000px;}
.yb{bottom:646.473000px;}
.y142{bottom:646.753500px;}
.yf2{bottom:647.629500px;}
.y53{bottom:647.643000px;}
.y85{bottom:651.913500px;}
.y117{bottom:652.387500px;}
.y1a7{bottom:652.585500px;}
.y129{bottom:654.429000px;}
.y31{bottom:657.069000px;}
.y188{bottom:663.280500px;}
.ydf{bottom:665.604000px;}
.y141{bottom:667.302000px;}
.y166{bottom:670.078500px;}
.y52{bottom:673.048500px;}
.y128{bottom:674.976000px;}
.y84{bottom:677.317500px;}
.y116{bottom:677.791500px;}
.y1a6{bottom:677.991000px;}
.ya{bottom:682.446000px;}
.y30{bottom:682.473000px;}
.y187{bottom:688.684500px;}
.yde{bottom:691.009500px;}
.y51{bottom:698.452500px;}
.y83{bottom:702.723000px;}
.y140{bottom:702.793500px;}
.y115{bottom:703.197000px;}
.y2f{bottom:707.878500px;}
.y165{bottom:712.435500px;}
.ydd{bottom:716.413500px;}
.y1a5{bottom:716.844000px;}
.y50{bottom:723.856500px;}
.y9{bottom:724.803000px;}
.y186{bottom:727.539000px;}
.y82{bottom:728.127000px;}
.y114{bottom:728.601000px;}
.y2e{bottom:733.282500px;}
.ydc{bottom:741.819000px;}
.y1a4{bottom:742.249500px;}
.y4f{bottom:749.262000px;}
.y185{bottom:752.944500px;}
.y81{bottom:753.532500px;}
.y2d{bottom:758.688000px;}
.y113{bottom:762.222000px;}
.y156{bottom:762.304500px;}
.y4e{bottom:774.666000px;}
.ydb{bottom:777.792000px;}
.y184{bottom:778.348500px;}
.y80{bottom:778.936500px;}
.y1a3{bottom:781.104000px;}
.y2c{bottom:784.092000px;}
.y164{bottom:797.217000px;}
.y4d{bottom:800.071500px;}
.y8{bottom:800.094000px;}
.y7f{bottom:804.342000px;}
.y1a2{bottom:806.508000px;}
.y112{bottom:807.003000px;}
.y2b{bottom:809.497500px;}
.y65{bottom:813.235500px;}
.y183{bottom:817.203000px;}
.y163{bottom:822.622500px;}
.y4c{bottom:825.475500px;}
.yda{bottom:826.840500px;}
.y111{bottom:827.550000px;}
.y7e{bottom:829.746000px;}
.y2a{bottom:834.901500px;}
.y182{bottom:842.608500px;}
.y1a1{bottom:845.362500px;}
.y162{bottom:848.026500px;}
.y110{bottom:848.098500px;}
.y4b{bottom:850.881000px;}
.yd9{bottom:852.246000px;}
.y7d{bottom:855.151500px;}
.y29{bottom:860.307000px;}
.y7{bottom:860.439000px;}
.y181{bottom:868.012500px;}
.y1a0{bottom:870.768000px;}
.y161{bottom:873.432000px;}
.y4a{bottom:876.285000px;}
.yb0{bottom:876.903000px;}
.yd8{bottom:877.650000px;}
.y10f{bottom:883.596000px;}
.y28{bottom:885.711000px;}
.y6{bottom:894.346500px;}
.y19f{bottom:896.172000px;}
.y160{bottom:898.836000px;}
.yaf{bottom:902.308500px;}
.yd7{bottom:903.055500px;}
.y180{bottom:906.867000px;}
.y10e{bottom:909.001500px;}
.y27{bottom:911.116500px;}
.y49{bottom:912.258000px;}
.y7c{bottom:912.330000px;}
.yae{bottom:927.712500px;}
.yd6{bottom:928.459500px;}
.y17f{bottom:932.271000px;}
.y15f{bottom:932.457000px;}
.y10d{bottom:934.405500px;}
.y7b{bottom:934.746000px;}
.y19e{bottom:935.026500px;}
.y26{bottom:936.520500px;}
.y5{bottom:941.758500px;}
.y13f{bottom:946.102500px;}
.yad{bottom:953.118000px;}
.yd5{bottom:953.865000px;}
.y48{bottom:954.615000px;}
.y7a{bottom:957.162000px;}
.y17e{bottom:957.676500px;}
.y10c{bottom:959.811000px;}
.y19d{bottom:960.430500px;}
.y25{bottom:961.926000px;}
.y13e{bottom:971.508000px;}
.y4{bottom:976.414500px;}
.y15e{bottom:977.236500px;}
.yac{bottom:978.522000px;}
.yd4{bottom:979.269000px;}
.y79{bottom:979.576500px;}
.y17d{bottom:983.080500px;}
.y10b{bottom:985.215000px;}
.y19c{bottom:985.836000px;}
.y24{bottom:987.330000px;}
.y13d{bottom:996.912000px;}
.y78{bottom:1001.992500px;}
.y98{bottom:1002.166500px;}
.y10a{bottom:1010.620500px;}
.y23{bottom:1012.735500px;}
.yab{bottom:1014.495000px;}
.yd3{bottom:1015.242000px;}
.y17c{bottom:1021.935000px;}
.y19b{bottom:1024.690500px;}
.y97{bottom:1027.572000px;}
.y13c{bottom:1030.533000px;}
.y77{bottom:1032.625500px;}
.y109{bottom:1036.024500px;}
.y3{bottom:1036.582500px;}
.y22{bottom:1038.139500px;}
.y17b{bottom:1047.340500px;}
.y19a{bottom:1050.094500px;}
.y96{bottom:1052.976000px;}
.y2{bottom:1061.986500px;}
.y21{bottom:1063.545000px;}
.y108{bottom:1071.997500px;}
.y17a{bottom:1072.744500px;}
.y76{bottom:1075.312500px;}
.y95{bottom:1078.381500px;}
.y20{bottom:1088.949000px;}
.y75{bottom:1095.861000px;}
.y1{bottom:1112.859000px;}
.y1f{bottom:1114.354500px;}
.y74{bottom:1116.409500px;}
.h14{height:2.618184px;}
.ha{height:23.850624px;}
.hb{height:40.348800px;}
.hc{height:44.831700px;}
.he{height:45.621856px;}
.h9{height:49.090950px;}
.h8{height:50.211840px;}
.hf{height:50.485715px;}
.h3{height:50.498765px;}
.h5{height:51.216077px;}
.h6{height:55.548699px;}
.hd{height:55.554699px;}
.h4{height:57.834699px;}
.h7{height:60.254040px;}
.h17{height:65.272950px;}
.h16{height:66.888699px;}
.h2{height:72.304680px;}
.h15{height:77.174184px;}
.h10{height:93.370950px;}
.h11{height:93.988950px;}
.h12{height:99.834699px;}
.h13{height:144.732699px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:127.558500px;}
.x2{left:134.205000px;}
.xf{left:135.628500px;}
.x2b{left:143.922000px;}
.xa{left:146.214000px;}
.x9{left:152.964000px;}
.x3{left:154.363500px;}
.x29{left:160.831500px;}
.xd{left:162.078000px;}
.x5{left:166.389000px;}
.x7{left:190.134000px;}
.x2a{left:212.281500px;}
.x25{left:231.204000px;}
.x17{left:237.844500px;}
.x1{left:244.459500px;}
.x24{left:268.461000px;}
.x18{left:280.426500px;}
.xe{left:290.577000px;}
.x26{left:293.884500px;}
.x16{left:295.896000px;}
.x4{left:316.498500px;}
.x6{left:318.714000px;}
.x28{left:332.211000px;}
.x27{left:336.625500px;}
.x11{left:342.280500px;}
.xc{left:353.328000px;}
.x19{left:358.497000px;}
.x10{left:364.614000px;}
.x1a{left:373.042500px;}
.x13{left:377.967000px;}
.x20{left:388.117500px;}
.x12{left:413.107500px;}
.x14{left:432.295500px;}
.x23{left:438.274500px;}
.xb{left:442.365000px;}
.x21{left:452.031000px;}
.x1b{left:477.453000px;}
.x15{left:482.721000px;}
.x1c{left:488.362500px;}
.x22{left:492.795000px;}
.x1d{left:494.725500px;}
.x1e{left:580.978500px;}
.x1f{left:595.522500px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v9{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:14.384000pt;}
.v6{vertical-align:16.810667pt;}
.v2{vertical-align:21.109333pt;}
.v1{vertical-align:23.141333pt;}
.vc{vertical-align:31.189333pt;}
.v4{vertical-align:39.360000pt;}
.v5{vertical-align:60.474667pt;}
.va{vertical-align:66.272000pt;}
.v7{vertical-align:79.269333pt;}
.v8{vertical-align:100.384000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3c{letter-spacing:0.001416pt;}
.ls29{letter-spacing:0.002384pt;}
.ls19{letter-spacing:0.002411pt;}
.ls4a{letter-spacing:0.002717pt;}
.ls4c{letter-spacing:0.002878pt;}
.ls38{letter-spacing:0.006750pt;}
.ls21{letter-spacing:1.617899pt;}
.ls0{letter-spacing:2.653258pt;}
.ls1{letter-spacing:2.656473pt;}
.lse{letter-spacing:2.658591pt;}
.ls2f{letter-spacing:3.228580pt;}
.ls2c{letter-spacing:3.233914pt;}
.ls46{letter-spacing:4.181885pt;}
.ls18{letter-spacing:4.564323pt;}
.ls34{letter-spacing:6.260825pt;}
.ls23{letter-spacing:6.375739pt;}
.ls30{letter-spacing:11.095925pt;}
.ls3b{letter-spacing:12.925067pt;}
.ls17{letter-spacing:12.927477pt;}
.ls40{letter-spacing:12.930400pt;}
.ls22{letter-spacing:12.930405pt;}
.ls27{letter-spacing:13.524811pt;}
.ls20{letter-spacing:14.545899pt;}
.ls4{letter-spacing:14.720012pt;}
.ls45{letter-spacing:15.589777pt;}
.ls15{letter-spacing:16.159477pt;}
.ls44{letter-spacing:16.166750pt;}
.ls25{letter-spacing:16.761675pt;}
.ls9{letter-spacing:16.814559pt;}
.ls49{letter-spacing:17.338196pt;}
.ls16{letter-spacing:17.492323pt;}
.ls14{letter-spacing:17.783233pt;}
.ls7{letter-spacing:17.803651pt;}
.ls8{letter-spacing:17.861833pt;}
.lsb{letter-spacing:18.152742pt;}
.lsa{letter-spacing:18.210924pt;}
.ls12{letter-spacing:18.327288pt;}
.lsc{letter-spacing:18.385470pt;}
.ls28{letter-spacing:18.443652pt;}
.ls1e{letter-spacing:18.816092pt;}
.ls39{letter-spacing:18.816444pt;}
.ls6{letter-spacing:19.200016pt;}
.ls5{letter-spacing:19.258198pt;}
.ls37{letter-spacing:19.284811pt;}
.ls2e{letter-spacing:19.306144pt;}
.ls3{letter-spacing:19.490925pt;}
.ls10{letter-spacing:19.956380pt;}
.ls13{letter-spacing:20.072744pt;}
.ls11{letter-spacing:20.305471pt;}
.ls3d{letter-spacing:20.341885pt;}
.ls42{letter-spacing:21.883110pt;}
.ls26{letter-spacing:21.908342pt;}
.ls1d{letter-spacing:22.048092pt;}
.ls2a{letter-spacing:22.426158pt;}
.ls48{letter-spacing:22.516382pt;}
.ls2b{letter-spacing:22.532811pt;}
.ls35{letter-spacing:22.574564pt;}
.ls2d{letter-spacing:22.706591pt;}
.ls1c{letter-spacing:22.828566pt;}
.lsf{letter-spacing:23.040019pt;}
.ls43{letter-spacing:23.413885pt;}
.lsd{letter-spacing:24.610930pt;}
.ls1b{letter-spacing:25.774990pt;}
.ls36{letter-spacing:27.345477pt;}
.ls4b{letter-spacing:27.752750pt;}
.ls32{letter-spacing:32.170158pt;}
.ls33{letter-spacing:32.175491pt;}
.ls3a{letter-spacing:53.120044pt;}
.ls3e{letter-spacing:53.133067pt;}
.ls1f{letter-spacing:96.074144pt;}
.ls3f{letter-spacing:98.385537pt;}
.ls41{letter-spacing:317.783744pt;}
.ls24{letter-spacing:689.111744pt;}
.ls1a{letter-spacing:768.519744pt;}
.ls31{letter-spacing:815.997077pt;}
.ls47{letter-spacing:852.087744pt;}
.wsac{word-spacing:-114.548459pt;}
.wsaa{word-spacing:-69.282967pt;}
.ws8f{word-spacing:-58.181867pt;}
.wsb6{word-spacing:-45.163900pt;}
.ws4{word-spacing:-16.162923pt;}
.wsd7{word-spacing:-13.652838pt;}
.wsab{word-spacing:-6.458822pt;}
.ws92{word-spacing:-3.247604pt;}
.ws70{word-spacing:-3.246548pt;}
.ws98{word-spacing:-3.013821pt;}
.ws28{word-spacing:-2.781093pt;}
.wsa0{word-spacing:-2.606548pt;}
.ws72{word-spacing:-2.490184pt;}
.wsfc{word-spacing:-2.257456pt;}
.ws107{word-spacing:-2.199275pt;}
.ws71{word-spacing:-2.141093pt;}
.wsa{word-spacing:-2.082911pt;}
.ws6b{word-spacing:-1.966547pt;}
.ws104{word-spacing:-1.850183pt;}
.ws93{word-spacing:-1.733820pt;}
.wsc6{word-spacing:-1.675638pt;}
.ws9{word-spacing:-1.501092pt;}
.ws26{word-spacing:-1.442910pt;}
.ws80{word-spacing:-1.210183pt;}
.wsa1{word-spacing:-1.152001pt;}
.wsed{word-spacing:-1.093819pt;}
.ws99{word-spacing:-1.035637pt;}
.wsdd{word-spacing:-0.977455pt;}
.wse5{word-spacing:-0.919273pt;}
.wsc0{word-spacing:-0.884685pt;}
.ws32{word-spacing:-0.744728pt;}
.ws31{word-spacing:-0.686546pt;}
.wsee{word-spacing:-0.628364pt;}
.wsd2{word-spacing:-0.570182pt;}
.ws59{word-spacing:-0.453819pt;}
.ws102{word-spacing:-0.337455pt;}
.ws47{word-spacing:-0.221091pt;}
.ws5b{word-spacing:-0.162909pt;}
.ws76{word-spacing:-0.104727pt;}
.ws1e{word-spacing:-0.058182pt;}
.wsb4{word-spacing:-0.042507pt;}
.ws1a{word-spacing:0.000000pt;}
.wse4{word-spacing:0.011636pt;}
.wsd9{word-spacing:0.069818pt;}
.wsf9{word-spacing:0.244364pt;}
.wsa9{word-spacing:0.360728pt;}
.ws6f{word-spacing:0.418909pt;}
.ws8c{word-spacing:0.454298pt;}
.ws2a{word-spacing:0.651637pt;}
.ws61{word-spacing:0.709819pt;}
.ws5c{word-spacing:0.741222pt;}
.ws17{word-spacing:0.768001pt;}
.wsfb{word-spacing:0.826183pt;}
.ws87{word-spacing:0.884364pt;}
.ws9a{word-spacing:0.942546pt;}
.wsf8{word-spacing:1.000728pt;}
.ws74{word-spacing:1.117092pt;}
.wsd5{word-spacing:1.123789pt;}
.ws46{word-spacing:1.175274pt;}
.wsec{word-spacing:1.233456pt;}
.wsc5{word-spacing:1.349819pt;}
.ws9e{word-spacing:1.408001pt;}
.ws3b{word-spacing:1.466183pt;}
.wse3{word-spacing:1.582547pt;}
.wsd8{word-spacing:1.640729pt;}
.ws29{word-spacing:1.698911pt;}
.ws3c{word-spacing:1.757092pt;}
.ws41{word-spacing:1.815274pt;}
.ws94{word-spacing:1.873456pt;}
.ws4b{word-spacing:1.931638pt;}
.ws34{word-spacing:1.989820pt;}
.ws33{word-spacing:2.048002pt;}
.ws6c{word-spacing:2.106184pt;}
.ws45{word-spacing:2.164365pt;}
.ws39{word-spacing:2.222547pt;}
.ws5f{word-spacing:2.280729pt;}
.ws75{word-spacing:2.397093pt;}
.ws10{word-spacing:2.455275pt;}
.ws95{word-spacing:2.629820pt;}
.ws20{word-spacing:2.688002pt;}
.ws84{word-spacing:2.701875pt;}
.ws4d{word-spacing:2.749696pt;}
.ws67{word-spacing:2.862548pt;}
.ws4c{word-spacing:2.893158pt;}
.ws6e{word-spacing:2.920730pt;}
.ws5e{word-spacing:2.932989pt;}
.ws27{word-spacing:3.037093pt;}
.wsae{word-spacing:3.059787pt;}
.wsad{word-spacing:3.070408pt;}
.ws82{word-spacing:3.084442pt;}
.ws18{word-spacing:3.095275pt;}
.wsbd{word-spacing:3.153457pt;}
.ws11{word-spacing:3.211639pt;}
.ws6{word-spacing:3.269821pt;}
.ws25{word-spacing:3.328003pt;}
.wscf{word-spacing:3.386185pt;}
.ws2d{word-spacing:3.444367pt;}
.ws8a{word-spacing:3.502548pt;}
.ws55{word-spacing:3.618912pt;}
.wsc4{word-spacing:3.677094pt;}
.ws64{word-spacing:3.735276pt;}
.wscb{word-spacing:3.753933pt;}
.ws36{word-spacing:3.793458pt;}
.ws58{word-spacing:3.851640pt;}
.wse7{word-spacing:3.968003pt;}
.wseb{word-spacing:4.026185pt;}
.ws6d{word-spacing:4.034744pt;}
.wsde{word-spacing:4.084367pt;}
.ws7d{word-spacing:4.142549pt;}
.ws7c{word-spacing:4.200731pt;}
.wsd3{word-spacing:4.232141pt;}
.ws7b{word-spacing:4.258913pt;}
.wsbf{word-spacing:4.279962pt;}
.ws44{word-spacing:4.317095pt;}
.ws7e{word-spacing:4.375276pt;}
.ws35{word-spacing:4.433458pt;}
.wsc1{word-spacing:4.608004pt;}
.ws9b{word-spacing:4.666186pt;}
.ws2e{word-spacing:4.724368pt;}
.wsb8{word-spacing:4.758170pt;}
.ws14{word-spacing:4.782549pt;}
.ws60{word-spacing:4.840731pt;}
.ws1f{word-spacing:4.898913pt;}
.ws81{word-spacing:4.957095pt;}
.ws91{word-spacing:5.015277pt;}
.ws90{word-spacing:5.049075pt;}
.ws2f{word-spacing:5.073459pt;}
.ws3e{word-spacing:5.129600pt;}
.ws40{word-spacing:5.131641pt;}
.ws9d{word-spacing:5.248004pt;}
.wsd1{word-spacing:5.306186pt;}
.ws7a{word-spacing:5.364368pt;}
.wsc2{word-spacing:5.480732pt;}
.wsd{word-spacing:5.538914pt;}
.ws62{word-spacing:5.655277pt;}
.ws79{word-spacing:5.713459pt;}
.ws109{word-spacing:5.771641pt;}
.ws57{word-spacing:5.829823pt;}
.ws30{word-spacing:5.888005pt;}
.wse{word-spacing:5.946187pt;}
.ws83{word-spacing:6.001510pt;}
.ws6a{word-spacing:6.004369pt;}
.wsc3{word-spacing:6.062551pt;}
.ws23{word-spacing:6.120732pt;}
.ws1c{word-spacing:6.178914pt;}
.wsb3{word-spacing:6.295278pt;}
.wsb0{word-spacing:6.353460pt;}
.wsd6{word-spacing:6.431898pt;}
.wsa2{word-spacing:6.469824pt;}
.wsd4{word-spacing:6.479718pt;}
.ws96{word-spacing:6.528005pt;}
.ws8e{word-spacing:6.586187pt;}
.ws15{word-spacing:6.644369pt;}
.wsa3{word-spacing:6.702551pt;}
.ws78{word-spacing:6.818915pt;}
.ws77{word-spacing:6.877097pt;}
.ws5d{word-spacing:6.910106pt;}
.wse2{word-spacing:6.935279pt;}
.ws37{word-spacing:6.993460pt;}
.ws8d{word-spacing:7.101389pt;}
.wsb2{word-spacing:7.109824pt;}
.wsce{word-spacing:7.168006pt;}
.ws42{word-spacing:7.284370pt;}
.ws100{word-spacing:7.342552pt;}
.wsb{word-spacing:7.575279pt;}
.ws63{word-spacing:7.633461pt;}
.ws21{word-spacing:7.691643pt;}
.ws5a{word-spacing:7.749825pt;}
.wsea{word-spacing:7.808007pt;}
.ws66{word-spacing:7.924370pt;}
.ws9f{word-spacing:7.982552pt;}
.ws8b{word-spacing:8.040734pt;}
.ws73{word-spacing:8.098916pt;}
.ws2b{word-spacing:8.157098pt;}
.ws1d{word-spacing:8.215280pt;}
.wse1{word-spacing:8.273461pt;}
.ws3a{word-spacing:8.389825pt;}
.ws12{word-spacing:8.448007pt;}
.wse0{word-spacing:8.564371pt;}
.ws108{word-spacing:8.622553pt;}
.wsbc{word-spacing:8.680735pt;}
.wscc{word-spacing:8.855280pt;}
.wsa6{word-spacing:8.913462pt;}
.ws110{word-spacing:8.971644pt;}
.wscd{word-spacing:9.029826pt;}
.wsbe{word-spacing:9.088008pt;}
.wsb7{word-spacing:9.109862pt;}
.wsda{word-spacing:9.146189pt;}
.ws56{word-spacing:9.205504pt;}
.ws16{word-spacing:9.262553pt;}
.wsf4{word-spacing:9.319386pt;}
.wsa7{word-spacing:9.320735pt;}
.ws19{word-spacing:9.378917pt;}
.wse9{word-spacing:9.437099pt;}
.ws43{word-spacing:9.495281pt;}
.ws103{word-spacing:9.625950pt;}
.wsef{word-spacing:9.626481pt;}
.ws106{word-spacing:9.630438pt;}
.wsfd{word-spacing:9.634683pt;}
.wsc{word-spacing:9.669826pt;}
.ws38{word-spacing:9.728008pt;}
.ws9c{word-spacing:9.753075pt;}
.wsf3{word-spacing:9.844372pt;}
.wsf2{word-spacing:9.960736pt;}
.ws89{word-spacing:10.018917pt;}
.ws13{word-spacing:10.193463pt;}
.ws24{word-spacing:10.309827pt;}
.ws69{word-spacing:10.368009pt;}
.ws65{word-spacing:10.600736pt;}
.ws49{word-spacing:10.658918pt;}
.ws4a{word-spacing:10.717100pt;}
.wsc7{word-spacing:10.735770pt;}
.wsdf{word-spacing:10.775282pt;}
.wsc8{word-spacing:10.783590pt;}
.wsf{word-spacing:10.891645pt;}
.wsa4{word-spacing:11.124373pt;}
.wsa5{word-spacing:11.182555pt;}
.wsf7{word-spacing:11.298919pt;}
.ws1b{word-spacing:11.357100pt;}
.ws22{word-spacing:11.473464pt;}
.wse8{word-spacing:11.589828pt;}
.ws86{word-spacing:11.706192pt;}
.ws68{word-spacing:11.764373pt;}
.ws88{word-spacing:11.938919pt;}
.ws7f{word-spacing:11.997101pt;}
.ws2c{word-spacing:12.113465pt;}
.wsd0{word-spacing:12.637101pt;}
.wsa8{word-spacing:12.753465pt;}
.ws48{word-spacing:12.928011pt;}
.wse6{word-spacing:15.429831pt;}
.ws101{word-spacing:16.640014pt;}
.wsfa{word-spacing:17.978197pt;}
.wsf1{word-spacing:18.106197pt;}
.wsff{word-spacing:19.723653pt;}
.wsf6{word-spacing:20.712745pt;}
.ws2{word-spacing:20.722347pt;}
.wsf0{word-spacing:20.770926pt;}
.ws3{word-spacing:20.786108pt;}
.wsaf{word-spacing:20.868264pt;}
.ws10d{word-spacing:21.701836pt;}
.ws5{word-spacing:22.008084pt;}
.ws105{word-spacing:22.167291pt;}
.ws97{word-spacing:22.225473pt;}
.ws1{word-spacing:22.252612pt;}
.ws85{word-spacing:22.283655pt;}
.wsb1{word-spacing:22.447835pt;}
.ws3f{word-spacing:22.516382pt;}
.wsfe{word-spacing:22.690928pt;}
.ws10c{word-spacing:22.807292pt;}
.ws10a{word-spacing:23.098201pt;}
.ws3d{word-spacing:23.846639pt;}
.ws10e{word-spacing:24.145475pt;}
.ws10f{word-spacing:25.890931pt;}
.wsf5{word-spacing:26.356386pt;}
.wsb5{word-spacing:26.773342pt;}
.ws10b{word-spacing:27.287295pt;}
.wsdc{word-spacing:28.615887pt;}
.ws0{word-spacing:34.338985pt;}
.wsb9{word-spacing:47.604403pt;}
.wsba{word-spacing:66.368009pt;}
.ws8{word-spacing:71.667439pt;}
.ws7{word-spacing:86.000687pt;}
.wsbb{word-spacing:94.615352pt;}
.wsca{word-spacing:96.709899pt;}
.wsc9{word-spacing:108.462636pt;}
.ws51{word-spacing:148.296364pt;}
.ws4e{word-spacing:168.988342pt;}
.ws52{word-spacing:189.983671pt;}
.ws53{word-spacing:194.850608pt;}
.ws54{word-spacing:306.519065pt;}
.ws50{word-spacing:394.478411pt;}
.ws4f{word-spacing:481.564496pt;}
.wsdb{word-spacing:1304.359621pt;}
._41{margin-left:-98.385537pt;}
._40{margin-left:-53.120567pt;}
._5d{margin-left:-30.812482pt;}
._5c{margin-left:-28.334569pt;}
._5a{margin-left:-7.192228pt;}
._3b{margin-left:-5.993540pt;}
._f{margin-left:-4.829095pt;}
._6{margin-left:-3.871601pt;}
._2{margin-left:-2.846279pt;}
._4{margin-left:-1.721549pt;}
._5{width:1.721549pt;}
._1{width:2.846279pt;}
._36{width:3.747547pt;}
._7{width:4.820323pt;}
._0{width:5.784374pt;}
._3{width:10.466591pt;}
._16{width:14.312739pt;}
._15{width:15.650922pt;}
._1a{width:16.846157pt;}
._10{width:17.837926pt;}
._21{width:20.125190pt;}
._20{width:21.806285pt;}
._c{width:23.050387pt;}
._8{width:24.470659pt;}
._9{width:25.610389pt;}
._3f{width:26.681570pt;}
._a{width:27.612479pt;}
._d{width:29.032751pt;}
._11{width:30.357395pt;}
._19{width:31.544939pt;}
._b{width:33.411391pt;}
._13{width:34.988037pt;}
._e{width:36.072757pt;}
._1b{width:37.246762pt;}
._3a{width:38.143397pt;}
._14{width:39.204211pt;}
._3d{width:40.145488pt;}
._3c{width:42.110132pt;}
._35{width:43.515404pt;}
._1d{width:44.474853pt;}
._5b{width:46.011489pt;}
._18{width:47.257215pt;}
._1f{width:48.557951pt;}
._3e{width:49.594858pt;}
._12{width:50.622856pt;}
._17{width:52.421862pt;}
._1e{width:54.738769pt;}
._27{width:63.813774pt;}
._39{width:66.909147pt;}
._1c{width:71.731200pt;}
._59{width:86.077200pt;}
._32{width:103.611040pt;}
._44{width:110.976790pt;}
._4d{width:119.116563pt;}
._51{width:124.625558pt;}
._50{width:139.287389pt;}
._58{width:143.212965pt;}
._4f{width:146.943488pt;}
._43{width:153.425582pt;}
._2b{width:162.058293pt;}
._2e{width:163.546042pt;}
._48{width:166.086149pt;}
._49{width:167.214685pt;}
._4a{width:169.331641pt;}
._57{width:176.905852pt;}
._52{width:178.234965pt;}
._47{width:190.870734pt;}
._37{width:217.485295pt;}
._45{width:220.160183pt;}
._4b{width:229.330473pt;}
._56{width:251.358579pt;}
._38{width:253.417928pt;}
._46{width:255.028347pt;}
._29{width:266.588010pt;}
._30{width:278.846532pt;}
._2a{width:279.856076pt;}
._2f{width:289.035372pt;}
._53{width:299.111714pt;}
._42{width:310.417344pt;}
._26{width:313.358296pt;}
._31{width:320.278098pt;}
._34{width:324.116587pt;}
._4e{width:326.865727pt;}
._4c{width:334.160870pt;}
._24{width:348.315998pt;}
._2d{width:362.479238pt;}
._2c{width:363.767371pt;}
._22{width:365.951094pt;}
._25{width:387.024710pt;}
._23{width:401.763879pt;}
._28{width:498.649165pt;}
._33{width:612.872483pt;}
._54{width:640.111418pt;}
._55{width:889.564050pt;}
.fs5{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs6{font-size:47.820800pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1ba{bottom:69.549333pt;}
.y47{bottom:69.550667pt;}
.y64{bottom:109.401333pt;}
.y46{bottom:109.840000pt;}
.y155{bottom:112.364000pt;}
.y1b9{bottom:113.824000pt;}
.y1e{bottom:116.494667pt;}
.yaa{bottom:117.652000pt;}
.yc1{bottom:118.309333pt;}
.y73{bottom:118.501333pt;}
.y179{bottom:126.761333pt;}
.y63{bottom:131.982667pt;}
.y45{bottom:132.421333pt;}
.y199{bottom:133.957333pt;}
.y154{bottom:134.946667pt;}
.y1b8{bottom:136.406667pt;}
.y1d{bottom:137.756000pt;}
.ya9{bottom:140.233333pt;}
.yc0{bottom:140.890667pt;}
.y72{bottom:141.084000pt;}
.yf1{bottom:142.448000pt;}
.y13b{bottom:146.085333pt;}
.y178{bottom:149.344000pt;}
.y44{bottom:155.002667pt;}
.y198{bottom:156.540000pt;}
.y153{bottom:157.528000pt;}
.y1b7{bottom:158.988000pt;}
.yd2{bottom:159.257333pt;}
.y1c{bottom:160.337333pt;}
.ya8{bottom:162.816000pt;}
.ybf{bottom:163.473333pt;}
.y71{bottom:163.665333pt;}
.y62{bottom:163.958667pt;}
.y107{bottom:164.825333pt;}
.yf0{bottom:165.029333pt;}
.y13a{bottom:168.666667pt;}
.yd1{bottom:169.234667pt;}
.y15d{bottom:170.329333pt;}
.y177{bottom:171.925333pt;}
.y43{bottom:177.585333pt;}
.y152{bottom:180.110667pt;}
.y1b6{bottom:181.570667pt;}
.ya7{bottom:185.397333pt;}
.ybe{bottom:186.054667pt;}
.y70{bottom:186.248000pt;}
.y106{bottom:187.406667pt;}
.yef{bottom:187.612000pt;}
.y15c{bottom:188.593333pt;}
.y197{bottom:191.077333pt;}
.y139{bottom:191.249333pt;}
.y1b{bottom:192.313333pt;}
.y127{bottom:195.033333pt;}
.y42{bottom:200.166667pt;}
.y94{bottom:201.268000pt;}
.y151{bottom:202.692000pt;}
.y176{bottom:203.901333pt;}
.yd0{bottom:206.349333pt;}
.y15b{bottom:206.858667pt;}
.ya6{bottom:207.980000pt;}
.ybd{bottom:208.637333pt;}
.y6f{bottom:208.829333pt;}
.y105{bottom:209.989333pt;}
.yee{bottom:210.193333pt;}
.y196{bottom:213.658667pt;}
.y138{bottom:213.830667pt;}
.y1b5{bottom:216.108000pt;}
.y126{bottom:217.614667pt;}
.y93{bottom:219.701333pt;}
.y41{bottom:222.749333pt;}
.y15a{bottom:225.124000pt;}
.y150{bottom:225.274667pt;}
.ycf{bottom:228.932000pt;}
.ya5{bottom:230.561333pt;}
.y61{bottom:230.661333pt;}
.ybc{bottom:231.218667pt;}
.y6e{bottom:231.412000pt;}
.y104{bottom:232.570667pt;}
.yed{bottom:232.776000pt;}
.y1a{bottom:235.913333pt;}
.y195{bottom:236.241333pt;}
.y137{bottom:236.413333pt;}
.y1b4{bottom:238.689333pt;}
.y125{bottom:240.197333pt;}
.y92{bottom:242.284000pt;}
.y159{bottom:243.388000pt;}
.y40{bottom:245.330667pt;}
.y175{bottom:247.501333pt;}
.y14f{bottom:247.856000pt;}
.ya4{bottom:253.144000pt;}
.y60{bottom:253.244000pt;}
.ybb{bottom:253.801333pt;}
.y6d{bottom:253.993333pt;}
.y103{bottom:255.153333pt;}
.y19{bottom:258.494667pt;}
.y136{bottom:258.994667pt;}
.y158{bottom:261.653333pt;}
.y124{bottom:262.778667pt;}
.yce{bottom:263.722667pt;}
.yec{bottom:264.752000pt;}
.y91{bottom:264.865333pt;}
.y3f{bottom:267.913333pt;}
.y174{bottom:270.084000pt;}
.y14e{bottom:270.438667pt;}
.y194{bottom:270.777333pt;}
.y1b3{bottom:273.226667pt;}
.ya3{bottom:275.725333pt;}
.y5f{bottom:275.825333pt;}
.yba{bottom:276.382667pt;}
.y6c{bottom:276.576000pt;}
.y18{bottom:281.077333pt;}
.y135{bottom:281.577333pt;}
.y123{bottom:285.361333pt;}
.y90{bottom:287.448000pt;}
.y102{bottom:288.750667pt;}
.y3e{bottom:290.494667pt;}
.y101{bottom:292.346667pt;}
.y173{bottom:292.665333pt;}
.y14d{bottom:293.020000pt;}
.y157{bottom:293.201333pt;}
.y193{bottom:293.360000pt;}
.y1b2{bottom:295.808000pt;}
.ya2{bottom:298.308000pt;}
.y5e{bottom:298.408000pt;}
.ycd{bottom:298.513333pt;}
.yb9{bottom:298.965333pt;}
.y6b{bottom:299.157333pt;}
.y17{bottom:303.658667pt;}
.y134{bottom:304.158667pt;}
.y122{bottom:307.942667pt;}
.yeb{bottom:308.350667pt;}
.y8f{bottom:310.029333pt;}
.y3d{bottom:313.077333pt;}
.y172{bottom:315.248000pt;}
.y14c{bottom:315.602667pt;}
.y1b1{bottom:318.390667pt;}
.y5d{bottom:320.989333pt;}
.ycc{bottom:321.096000pt;}
.yb8{bottom:321.546667pt;}
.y6a{bottom:321.740000pt;}
.y16{bottom:326.241333pt;}
.y133{bottom:326.741333pt;}
.y192{bottom:327.897333pt;}
.y100{bottom:329.540000pt;}
.ya1{bottom:330.284000pt;}
.y121{bottom:330.525333pt;}
.yea{bottom:330.933333pt;}
.y8e{bottom:332.612000pt;}
.y3c{bottom:335.658667pt;}
.y171{bottom:337.829333pt;}
.y14b{bottom:338.184000pt;}
.y1b0{bottom:340.972000pt;}
.y5c{bottom:343.572000pt;}
.ycb{bottom:343.677333pt;}
.yb7{bottom:344.129333pt;}
.y69{bottom:344.321333pt;}
.y15{bottom:348.822667pt;}
.y132{bottom:349.322667pt;}
.y191{bottom:350.478667pt;}
.yff{bottom:352.122667pt;}
.y120{bottom:353.106667pt;}
.ye9{bottom:353.514667pt;}
.y8d{bottom:355.193333pt;}
.y3b{bottom:358.241333pt;}
.y170{bottom:360.412000pt;}
.y14a{bottom:360.766667pt;}
.yca{bottom:366.260000pt;}
.yb6{bottom:366.710667pt;}
.y14{bottom:371.405333pt;}
.y131{bottom:371.905333pt;}
.y190{bottom:373.061333pt;}
.y5b{bottom:373.456000pt;}
.ya0{bottom:373.882667pt;}
.y1af{bottom:375.509333pt;}
.y11f{bottom:375.689333pt;}
.ye8{bottom:376.097333pt;}
.y3a{bottom:380.822667pt;}
.y16f{bottom:382.993333pt;}
.y149{bottom:383.348000pt;}
.yfe{bottom:385.974667pt;}
.yc9{bottom:388.841333pt;}
.y68{bottom:390.980000pt;}
.y8c{bottom:392.180000pt;}
.y13{bottom:393.986667pt;}
.y130{bottom:394.486667pt;}
.y9f{bottom:396.465333pt;}
.y1ae{bottom:398.092000pt;}
.y11e{bottom:398.270667pt;}
.ye7{bottom:398.678667pt;}
.yb5{bottom:398.686667pt;}
.y39{bottom:403.405333pt;}
.yfb{bottom:403.764000pt;}
.y16e{bottom:405.576000pt;}
.y148{bottom:405.930667pt;}
.y18f{bottom:407.598667pt;}
.yfd{bottom:408.556000pt;}
.y67{bottom:409.244000pt;}
.yf7{bottom:409.436000pt;}
.yc8{bottom:411.424000pt;}
.yfa{bottom:413.073333pt;}
.y5a{bottom:413.261333pt;}
.y12{bottom:416.569333pt;}
.y12f{bottom:417.069333pt;}
.y9e{bottom:419.046667pt;}
.y1ad{bottom:420.673333pt;}
.y11d{bottom:420.853333pt;}
.ye6{bottom:421.261333pt;}
.yf9{bottom:421.800000pt;}
.y38{bottom:425.986667pt;}
.y16d{bottom:428.157333pt;}
.y147{bottom:428.512000pt;}
.y18e{bottom:430.180000pt;}
.yfc{bottom:431.138667pt;}
.y59{bottom:431.525333pt;}
.yc7{bottom:434.005333pt;}
.y11{bottom:439.150667pt;}
.y12e{bottom:439.650667pt;}
.y66{bottom:440.793333pt;}
.y9d{bottom:441.629333pt;}
.y11c{bottom:443.434667pt;}
.ye5{bottom:443.842667pt;}
.y8b{bottom:443.986667pt;}
.yf8{bottom:447.400000pt;}
.y37{bottom:448.569333pt;}
.y16c{bottom:450.740000pt;}
.y146{bottom:451.093333pt;}
.y18d{bottom:452.762667pt;}
.y1ac{bottom:455.210667pt;}
.yc6{bottom:456.588000pt;}
.yb4{bottom:460.213333pt;}
.y10{bottom:461.733333pt;}
.y12d{bottom:462.233333pt;}
.y58{bottom:462.773333pt;}
.y9c{bottom:464.210667pt;}
.y11b{bottom:466.017333pt;}
.ye4{bottom:466.425333pt;}
.y8a{bottom:466.568000pt;}
.yf6{bottom:466.750667pt;}
.y36{bottom:471.150667pt;}
.y16b{bottom:473.321333pt;}
.y145{bottom:473.676000pt;}
.y1ab{bottom:477.793333pt;}
.yb3{bottom:478.478667pt;}
.yc5{bottom:479.169333pt;}
.yf{bottom:484.314667pt;}
.y12c{bottom:484.814667pt;}
.y57{bottom:485.354667pt;}
.y9b{bottom:486.793333pt;}
.y18c{bottom:487.298667pt;}
.y89{bottom:489.150667pt;}
.yf5{bottom:489.333333pt;}
.ye3{bottom:491.342667pt;}
.y35{bottom:493.733333pt;}
.y16a{bottom:495.904000pt;}
.y144{bottom:496.257333pt;}
.yb2{bottom:496.744000pt;}
.y1aa{bottom:500.374667pt;}
.ye2{bottom:501.320000pt;}
.ye{bottom:506.897333pt;}
.y56{bottom:507.937333pt;}
.y9a{bottom:509.374667pt;}
.y18b{bottom:509.881333pt;}
.y88{bottom:511.732000pt;}
.yf4{bottom:511.914667pt;}
.y11a{bottom:512.153333pt;}
.y34{bottom:516.314667pt;}
.y12b{bottom:516.790667pt;}
.y169{bottom:518.485333pt;}
.yc4{bottom:519.541333pt;}
.y143{bottom:528.233333pt;}
.yb1{bottom:528.292000pt;}
.yd{bottom:529.478667pt;}
.y55{bottom:530.518667pt;}
.y18a{bottom:532.462667pt;}
.y87{bottom:534.314667pt;}
.yf3{bottom:534.497333pt;}
.y119{bottom:534.736000pt;}
.y1a9{bottom:534.912000pt;}
.yc3{bottom:537.806667pt;}
.y33{bottom:538.897333pt;}
.y168{bottom:541.068000pt;}
.ye1{bottom:546.484000pt;}
.y99{bottom:550.548000pt;}
.yc{bottom:552.061333pt;}
.y54{bottom:553.101333pt;}
.y189{bottom:555.045333pt;}
.yc2{bottom:556.072000pt;}
.y86{bottom:556.896000pt;}
.y118{bottom:557.317333pt;}
.y1a8{bottom:557.494667pt;}
.y32{bottom:561.478667pt;}
.y12a{bottom:563.449333pt;}
.y167{bottom:563.649333pt;}
.ye0{bottom:569.066667pt;}
.yb{bottom:574.642667pt;}
.y142{bottom:574.892000pt;}
.yf2{bottom:575.670667pt;}
.y53{bottom:575.682667pt;}
.y85{bottom:579.478667pt;}
.y117{bottom:579.900000pt;}
.y1a7{bottom:580.076000pt;}
.y129{bottom:581.714667pt;}
.y31{bottom:584.061333pt;}
.y188{bottom:589.582667pt;}
.ydf{bottom:591.648000pt;}
.y141{bottom:593.157333pt;}
.y166{bottom:595.625333pt;}
.y52{bottom:598.265333pt;}
.y128{bottom:599.978667pt;}
.y84{bottom:602.060000pt;}
.y116{bottom:602.481333pt;}
.y1a6{bottom:602.658667pt;}
.ya{bottom:606.618667pt;}
.y30{bottom:606.642667pt;}
.y187{bottom:612.164000pt;}
.yde{bottom:614.230667pt;}
.y51{bottom:620.846667pt;}
.y83{bottom:624.642667pt;}
.y140{bottom:624.705333pt;}
.y115{bottom:625.064000pt;}
.y2f{bottom:629.225333pt;}
.y165{bottom:633.276000pt;}
.ydd{bottom:636.812000pt;}
.y1a5{bottom:637.194667pt;}
.y50{bottom:643.428000pt;}
.y9{bottom:644.269333pt;}
.y186{bottom:646.701333pt;}
.y82{bottom:647.224000pt;}
.y114{bottom:647.645333pt;}
.y2e{bottom:651.806667pt;}
.ydc{bottom:659.394667pt;}
.y1a4{bottom:659.777333pt;}
.y4f{bottom:666.010667pt;}
.y185{bottom:669.284000pt;}
.y81{bottom:669.806667pt;}
.y2d{bottom:674.389333pt;}
.y113{bottom:677.530667pt;}
.y156{bottom:677.604000pt;}
.y4e{bottom:688.592000pt;}
.ydb{bottom:691.370667pt;}
.y184{bottom:691.865333pt;}
.y80{bottom:692.388000pt;}
.y1a3{bottom:694.314667pt;}
.y2c{bottom:696.970667pt;}
.y164{bottom:708.637333pt;}
.y4d{bottom:711.174667pt;}
.y8{bottom:711.194667pt;}
.y7f{bottom:714.970667pt;}
.y1a2{bottom:716.896000pt;}
.y112{bottom:717.336000pt;}
.y2b{bottom:719.553333pt;}
.y65{bottom:722.876000pt;}
.y183{bottom:726.402667pt;}
.y163{bottom:731.220000pt;}
.y4c{bottom:733.756000pt;}
.yda{bottom:734.969333pt;}
.y111{bottom:735.600000pt;}
.y7e{bottom:737.552000pt;}
.y2a{bottom:742.134667pt;}
.y182{bottom:748.985333pt;}
.y1a1{bottom:751.433333pt;}
.y162{bottom:753.801333pt;}
.y110{bottom:753.865333pt;}
.y4b{bottom:756.338667pt;}
.yd9{bottom:757.552000pt;}
.y7d{bottom:760.134667pt;}
.y29{bottom:764.717333pt;}
.y7{bottom:764.834667pt;}
.y181{bottom:771.566667pt;}
.y1a0{bottom:774.016000pt;}
.y161{bottom:776.384000pt;}
.y4a{bottom:778.920000pt;}
.yb0{bottom:779.469333pt;}
.yd8{bottom:780.133333pt;}
.y10f{bottom:785.418667pt;}
.y28{bottom:787.298667pt;}
.y6{bottom:794.974667pt;}
.y19f{bottom:796.597333pt;}
.y160{bottom:798.965333pt;}
.yaf{bottom:802.052000pt;}
.yd7{bottom:802.716000pt;}
.y180{bottom:806.104000pt;}
.y10e{bottom:808.001333pt;}
.y27{bottom:809.881333pt;}
.y49{bottom:810.896000pt;}
.y7c{bottom:810.960000pt;}
.yae{bottom:824.633333pt;}
.yd6{bottom:825.297333pt;}
.y17f{bottom:828.685333pt;}
.y15f{bottom:828.850667pt;}
.y10d{bottom:830.582667pt;}
.y7b{bottom:830.885333pt;}
.y19e{bottom:831.134667pt;}
.y26{bottom:832.462667pt;}
.y5{bottom:837.118667pt;}
.y13f{bottom:840.980000pt;}
.yad{bottom:847.216000pt;}
.yd5{bottom:847.880000pt;}
.y48{bottom:848.546667pt;}
.y7a{bottom:850.810667pt;}
.y17e{bottom:851.268000pt;}
.y10c{bottom:853.165333pt;}
.y19d{bottom:853.716000pt;}
.y25{bottom:855.045333pt;}
.y13e{bottom:863.562667pt;}
.y4{bottom:867.924000pt;}
.y15e{bottom:868.654667pt;}
.yac{bottom:869.797333pt;}
.yd4{bottom:870.461333pt;}
.y79{bottom:870.734667pt;}
.y17d{bottom:873.849333pt;}
.y10b{bottom:875.746667pt;}
.y19c{bottom:876.298667pt;}
.y24{bottom:877.626667pt;}
.y13d{bottom:886.144000pt;}
.y78{bottom:890.660000pt;}
.y98{bottom:890.814667pt;}
.y10a{bottom:898.329333pt;}
.y23{bottom:900.209333pt;}
.yab{bottom:901.773333pt;}
.yd3{bottom:902.437333pt;}
.y17c{bottom:908.386667pt;}
.y19b{bottom:910.836000pt;}
.y97{bottom:913.397333pt;}
.y13c{bottom:916.029333pt;}
.y77{bottom:917.889333pt;}
.y109{bottom:920.910667pt;}
.y3{bottom:921.406667pt;}
.y22{bottom:922.790667pt;}
.y17b{bottom:930.969333pt;}
.y19a{bottom:933.417333pt;}
.y96{bottom:935.978667pt;}
.y2{bottom:943.988000pt;}
.y21{bottom:945.373333pt;}
.y108{bottom:952.886667pt;}
.y17a{bottom:953.550667pt;}
.y76{bottom:955.833333pt;}
.y95{bottom:958.561333pt;}
.y20{bottom:967.954667pt;}
.y75{bottom:974.098667pt;}
.y1{bottom:989.208000pt;}
.y1f{bottom:990.537333pt;}
.y74{bottom:992.364000pt;}
.h14{height:2.327275pt;}
.ha{height:21.200555pt;}
.hb{height:35.865600pt;}
.hc{height:39.850400pt;}
.he{height:40.552761pt;}
.h9{height:43.636400pt;}
.h8{height:44.632747pt;}
.hf{height:44.876191pt;}
.h3{height:44.887791pt;}
.h5{height:45.525402pt;}
.h6{height:49.376621pt;}
.hd{height:49.381955pt;}
.h4{height:51.408621pt;}
.h7{height:53.559147pt;}
.h17{height:58.020400pt;}
.h16{height:59.456621pt;}
.h2{height:64.270827pt;}
.h15{height:68.599275pt;}
.h10{height:82.996400pt;}
.h11{height:83.545733pt;}
.h12{height:88.741955pt;}
.h13{height:128.651288pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:113.385333pt;}
.x2{left:119.293333pt;}
.xf{left:120.558667pt;}
.x2b{left:127.930667pt;}
.xa{left:129.968000pt;}
.x9{left:135.968000pt;}
.x3{left:137.212000pt;}
.x29{left:142.961333pt;}
.xd{left:144.069333pt;}
.x5{left:147.901333pt;}
.x7{left:169.008000pt;}
.x2a{left:188.694667pt;}
.x25{left:205.514667pt;}
.x17{left:211.417333pt;}
.x1{left:217.297333pt;}
.x24{left:238.632000pt;}
.x18{left:249.268000pt;}
.xe{left:258.290667pt;}
.x26{left:261.230667pt;}
.x16{left:263.018667pt;}
.x4{left:281.332000pt;}
.x6{left:283.301333pt;}
.x28{left:295.298667pt;}
.x27{left:299.222667pt;}
.x11{left:304.249333pt;}
.xc{left:314.069333pt;}
.x19{left:318.664000pt;}
.x10{left:324.101333pt;}
.x1a{left:331.593333pt;}
.x13{left:335.970667pt;}
.x20{left:344.993333pt;}
.x12{left:367.206667pt;}
.x14{left:384.262667pt;}
.x23{left:389.577333pt;}
.xb{left:393.213333pt;}
.x21{left:401.805333pt;}
.x1b{left:424.402667pt;}
.x15{left:429.085333pt;}
.x1c{left:434.100000pt;}
.x22{left:438.040000pt;}
.x1d{left:439.756000pt;}
.x1e{left:516.425333pt;}
.x1f{left:529.353333pt;}
}




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