
    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_3529a6b63f7cd98a98bbbc70.woff')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_b5a30e6440ba06ca732ba38b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895000;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_d579b8088e754ca0fe16dd78.woff')format("woff");}.ff3{font-family:ff3;line-height:0.904000;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_966457354fbe1f6b34a00f32.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_124b1e3e70dd58134929c7db.woff')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_504b05d0455376be6afc1819.woff')format("woff");}.ff6{font-family:ff6;line-height:0.737000;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_7f408de4f688563c093f7ee7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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_bc3820977ab49fc602bc1b18.woff')format("woff");}.ff8{font-family:ff8;line-height:0.962000;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_a88b298c5a872eac74965daf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.933594;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_d59373914ce248a98d2c44e2.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_02ee55d9dcb5786196cbaa98.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5efaa17390db4373e2c4d06a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.967773;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_a773dbf3ec2ad25aa2e55485.woff')format("woff");}.ffd{font-family:ffd;line-height:0.995605;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_95d2fb4329f3cae9955e7d08.woff')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8f43f7ed08ee206207868e9d.woff')format("woff");}.fff{font-family:fff;line-height:1.710000;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_dba3cddc93c96eff5fc3fd84.woff')format("woff");}.ff10{font-family:ff10;line-height:0.968000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_4dc072468119d88dead1d154.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_1a72f99d88f4ffcfe837f607.woff')format("woff");}.ff12{font-family:ff12;line-height:1.659000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v2{vertical-align:-8.970448px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.691085px;}
.v4{vertical-align:40.520026px;}
.v3{vertical-align:50.612531px;}
.ls3{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000300px;}
.ls8{letter-spacing:0.000993px;}
.ls1a{letter-spacing:0.001641px;}
.ls10{letter-spacing:0.002338px;}
.ls19{letter-spacing:0.004200px;}
.ls18{letter-spacing:0.006993px;}
.ls5{letter-spacing:2.965025px;}
.lsb{letter-spacing:2.986916px;}
.lsc{letter-spacing:2.987824px;}
.ls7{letter-spacing:2.988929px;}
.ls4{letter-spacing:2.989641px;}
.ls9{letter-spacing:2.990675px;}
.ls6{letter-spacing:2.992916px;}
.ls11{letter-spacing:9.964698px;}
.lsa{letter-spacing:16.921839px;}
.ls1{letter-spacing:23.002512px;}
.ls0{letter-spacing:23.013537px;}
.ls1b{letter-spacing:23.721059px;}
.ls14{letter-spacing:24.338209px;}
.lsd{letter-spacing:25.275789px;}
.ls13{letter-spacing:28.244405px;}
.lsf{letter-spacing:32.686160px;}
.ls2{letter-spacing:33.724775px;}
.lse{letter-spacing:36.400345px;}
.ls15{letter-spacing:113.317306px;}
.ls17{letter-spacing:113.323307px;}
.ls16{letter-spacing:377.396510px;}
.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;}
}
.ws61{word-spacing:-17.933577px;}
.wsfd{word-spacing:-17.648527px;}
.ws8c{word-spacing:-16.606492px;}
.ws80{word-spacing:-14.944647px;}
.ws87{word-spacing:-14.920773px;}
.ws13{word-spacing:-11.955733px;}
.ws8f{word-spacing:-10.461223px;}
.ws92{word-spacing:-6.683246px;}
.ws7f{word-spacing:-6.643594px;}
.ws50{word-spacing:-6.639394px;}
.ws4d{word-spacing:-6.636668px;}
.ws65{word-spacing:-6.623468px;}
.ws4e{word-spacing:-6.623193px;}
.ws47{word-spacing:-1.075555px;}
.wsce{word-spacing:-1.016236px;}
.ws41{word-spacing:-1.016152px;}
.ws119{word-spacing:-0.906752px;}
.ws102{word-spacing:-0.896679px;}
.ws105{word-spacing:-0.833680px;}
.ws43{word-spacing:-0.717337px;}
.wsf7{word-spacing:-0.597786px;}
.wsb4{word-spacing:-0.239114px;}
.wse0{word-spacing:-0.119557px;}
.ws90{word-spacing:-0.059779px;}
.ws4{word-spacing:-0.053801px;}
.ws115{word-spacing:-0.047823px;}
.wscf{word-spacing:-0.044294px;}
.ws93{word-spacing:-0.041845px;}
.wsc9{word-spacing:-0.029259px;}
.wsd0{word-spacing:-0.028762px;}
.ws5a{word-spacing:0.000000px;}
.ws5e{word-spacing:0.004194px;}
.ws86{word-spacing:0.010338px;}
.ws3c{word-spacing:0.059702px;}
.wse1{word-spacing:0.059779px;}
.ws72{word-spacing:0.239114px;}
.wsa4{word-spacing:0.356466px;}
.ws12c{word-spacing:0.382584px;}
.wsda{word-spacing:0.418450px;}
.ws12a{word-spacing:0.430407px;}
.ws98{word-spacing:0.478229px;}
.ws136{word-spacing:0.526053px;}
.ws89{word-spacing:0.538007px;}
.wsd5{word-spacing:0.657564px;}
.ws104{word-spacing:0.836900px;}
.ws137{word-spacing:0.860814px;}
.ws97{word-spacing:0.896679px;}
.ws134{word-spacing:1.004283px;}
.ws103{word-spacing:1.076015px;}
.ws6f{word-spacing:1.374908px;}
.ws42{word-spacing:1.434370px;}
.ws121{word-spacing:1.434690px;}
.wsf8{word-spacing:1.554243px;}
.ws2a{word-spacing:1.613780px;}
.ws2b{word-spacing:1.733785px;}
.wse3{word-spacing:1.793358px;}
.ws67{word-spacing:1.853136px;}
.ws28{word-spacing:1.913195px;}
.ws17{word-spacing:1.972597px;}
.ws7e{word-spacing:1.972693px;}
.ws81{word-spacing:1.976782px;}
.wsa3{word-spacing:1.996729px;}
.wsa5{word-spacing:2.032472px;}
.ws33{word-spacing:2.152006px;}
.wsff{word-spacing:2.152029px;}
.wsbf{word-spacing:2.211808px;}
.ws11d{word-spacing:2.295504px;}
.wsc7{word-spacing:2.331365px;}
.wsb1{word-spacing:2.510701px;}
.ws3b{word-spacing:2.630230px;}
.ws11c{word-spacing:2.630265px;}
.ws2d{word-spacing:2.809639px;}
.ws66{word-spacing:2.869372px;}
.ws82{word-spacing:2.929151px;}
.wsa2{word-spacing:3.048708px;}
.wsb0{word-spacing:3.168265px;}
.ws48{word-spacing:3.227860px;}
.ws6e{word-spacing:3.347601px;}
.wsc8{word-spacing:3.467158px;}
.ws44{word-spacing:3.467272px;}
.wsf4{word-spacing:3.526937px;}
.ws7c{word-spacing:3.646494px;}
.ws19{word-spacing:3.706084px;}
.ws75{word-spacing:3.706273px;}
.ws3f{word-spacing:3.885493px;}
.wsb5{word-spacing:3.885608px;}
.ws10c{word-spacing:4.068565px;}
.wsf6{word-spacing:4.124723px;}
.ws9a{word-spacing:4.184501px;}
.ws100{word-spacing:4.244280px;}
.ws29{word-spacing:4.244311px;}
.ws77{word-spacing:4.319734px;}
.ws10a{word-spacing:4.363837px;}
.wsdf{word-spacing:4.423616px;}
.ws21{word-spacing:4.483123px;}
.ws10e{word-spacing:4.698597px;}
.wsf0{word-spacing:4.728598px;}
.ws111{word-spacing:4.778766px;}
.ws30{word-spacing:4.782098px;}
.wsf5{word-spacing:4.782287px;}
.ws114{word-spacing:4.782293px;}
.wsdd{word-spacing:4.782299px;}
.ws32{word-spacing:5.021349px;}
.wsfa{word-spacing:5.021401px;}
.ws31{word-spacing:5.140755px;}
.ws14{word-spacing:5.260161px;}
.ws6d{word-spacing:5.320294px;}
.wsec{word-spacing:5.380073px;}
.wsd6{word-spacing:5.439852px;}
.wse2{word-spacing:5.559409px;}
.ws3a{word-spacing:5.618979px;}
.ws10b{word-spacing:5.713252px;}
.ws10d{word-spacing:5.738745px;}
.ws7d{word-spacing:5.858302px;}
.wsfe{word-spacing:5.918080px;}
.ws85{word-spacing:5.930051px;}
.ws5d{word-spacing:5.934686px;}
.ws5f{word-spacing:5.934830px;}
.ws60{word-spacing:5.936222px;}
.ws83{word-spacing:5.975922px;}
.ws20{word-spacing:5.977797px;}
.ws5b{word-spacing:5.977859px;}
.wsf2{word-spacing:5.978433px;}
.wsf1{word-spacing:5.982100px;}
.ws16{word-spacing:6.037801px;}
.ws39{word-spacing:6.097203px;}
.ws4a{word-spacing:6.157207px;}
.ws108{word-spacing:6.276752px;}
.wscb{word-spacing:6.336530px;}
.wsef{word-spacing:6.396309px;}
.ws59{word-spacing:6.456021px;}
.ws1{word-spacing:6.575588px;}
.wsa8{word-spacing:6.576752px;}
.ws13f{word-spacing:6.599573px;}
.wsd9{word-spacing:6.754981px;}
.wsdb{word-spacing:6.814759px;}
.ws120{word-spacing:7.029980px;}
.ws11e{word-spacing:7.077803px;}
.wsa0{word-spacing:7.097155px;}
.ws6a{word-spacing:7.113652px;}
.ws46{word-spacing:7.233060px;}
.ws107{word-spacing:7.292988px;}
.ws8b{word-spacing:7.352766px;}
.ws6c{word-spacing:7.472324px;}
.ws25{word-spacing:7.531875px;}
.ws71{word-spacing:7.532102px;}
.ws1f{word-spacing:7.591878px;}
.ws8a{word-spacing:7.591881px;}
.wsb6{word-spacing:7.711438px;}
.ws132{word-spacing:7.747325px;}
.ws3e{word-spacing:7.771287px;}
.ws99{word-spacing:7.830995px;}
.ws106{word-spacing:7.848754px;}
.wsad{word-spacing:7.950552px;}
.wsc4{word-spacing:8.129888px;}
.wsa7{word-spacing:8.226728px;}
.wsa9{word-spacing:8.249445px;}
.wsaa{word-spacing:8.309224px;}
.wsfc{word-spacing:8.319775px;}
.ws109{word-spacing:8.428781px;}
.wsac{word-spacing:8.488560px;}
.wse6{word-spacing:8.548338px;}
.wse5{word-spacing:8.608117px;}
.wsa1{word-spacing:8.727674px;}
.ws9f{word-spacing:8.748754px;}
.wsab{word-spacing:8.787453px;}
.ws27{word-spacing:8.787738px;}
.ws54{word-spacing:8.847141px;}
.ws4b{word-spacing:9.026550px;}
.wse8{word-spacing:9.205903px;}
.ws6b{word-spacing:9.265681px;}
.wsc2{word-spacing:9.385238px;}
.ws56{word-spacing:9.444771px;}
.ws110{word-spacing:9.445017px;}
.ws73{word-spacing:9.504796px;}
.ws7b{word-spacing:9.684131px;}
.wsd3{word-spacing:9.743910px;}
.ws123{word-spacing:9.755890px;}
.wsd2{word-spacing:9.863467px;}
.wsaf{word-spacing:9.923246px;}
.ws3d{word-spacing:10.222409px;}
.wse4{word-spacing:10.461253px;}
.wsd7{word-spacing:10.521032px;}
.ws40{word-spacing:10.760036px;}
.wsba{word-spacing:10.760146px;}
.wsb8{word-spacing:10.819925px;}
.wse7{word-spacing:10.939482px;}
.ws101{word-spacing:10.999260px;}
.ws11a{word-spacing:10.999288px;}
.ws13b{word-spacing:11.094934px;}
.ws69{word-spacing:11.118818px;}
.ws37{word-spacing:11.118854px;}
.ws74{word-spacing:11.178596px;}
.wsfb{word-spacing:11.238375px;}
.ws130{word-spacing:11.238403px;}
.wsf3{word-spacing:11.597046px;}
.ws15{word-spacing:11.597078px;}
.wsc0{word-spacing:11.656825px;}
.ws12e{word-spacing:11.764456px;}
.ws63{word-spacing:11.776382px;}
.ws38{word-spacing:11.776487px;}
.ws84{word-spacing:11.955718px;}
.ws129{word-spacing:12.003571px;}
.ws127{word-spacing:12.015259px;}
.ws13c{word-spacing:12.051394px;}
.wsb2{word-spacing:12.075275px;}
.ws76{word-spacing:12.135054px;}
.ws12b{word-spacing:12.290509px;}
.ws4c{word-spacing:12.314114px;}
.wsd4{word-spacing:12.374168px;}
.ws1d{word-spacing:12.613529px;}
.ws138{word-spacing:12.623846px;}
.ws13a{word-spacing:12.625270px;}
.wsa6{word-spacing:12.673061px;}
.ws68{word-spacing:12.732839px;}
.ws49{word-spacing:12.852340px;}
.wscc{word-spacing:12.852397px;}
.ws135{word-spacing:12.912208px;}
.ws95{word-spacing:12.971954px;}
.wsbe{word-spacing:13.031732px;}
.ws55{word-spacing:13.031750px;}
.ws117{word-spacing:13.055677px;}
.ws57{word-spacing:13.091752px;}
.wsa{word-spacing:13.127657px;}
.wsb3{word-spacing:13.211068px;}
.wsb7{word-spacing:13.270847px;}
.ws79{word-spacing:13.330625px;}
.ws122{word-spacing:13.342614px;}
.wsed{word-spacing:13.509961px;}
.ws2f{word-spacing:13.772945px;}
.wsc5{word-spacing:13.868633px;}
.ws53{word-spacing:13.868792px;}
.wse9{word-spacing:13.988190px;}
.wscd{word-spacing:14.167526px;}
.wsd8{word-spacing:14.287083px;}
.ws0{word-spacing:14.346874px;}
.ws22{word-spacing:14.585827px;}
.wsbd{word-spacing:14.585976px;}
.ws10{word-spacing:14.633733px;}
.ws96{word-spacing:14.645754px;}
.ws45{word-spacing:14.645830px;}
.ws91{word-spacing:14.765311px;}
.ws12d{word-spacing:15.064242px;}
.ws1e{word-spacing:15.124054px;}
.wsc3{word-spacing:15.183762px;}
.ws23{word-spacing:15.243460px;}
.ws9{word-spacing:15.602182px;}
.ws9c{word-spacing:15.721769px;}
.ws51{word-spacing:15.781687px;}
.ws4f{word-spacing:15.794631px;}
.ws94{word-spacing:15.841326px;}
.ws58{word-spacing:16.020499px;}
.ws10f{word-spacing:16.319555px;}
.wsea{word-spacing:16.379333px;}
.ws8{word-spacing:16.409222px;}
.wsee{word-spacing:16.439112px;}
.ws126{word-spacing:16.690224px;}
.wsae{word-spacing:16.738005px;}
.wseb{word-spacing:16.917341px;}
.ws13d{word-spacing:17.168454px;}
.ws36{word-spacing:17.335764px;}
.ws52{word-spacing:17.515173px;}
.ws26{word-spacing:17.634579px;}
.ws9b{word-spacing:17.634684px;}
.ws34{word-spacing:17.694582px;}
.ws1a{word-spacing:17.753986px;}
.ws5c{word-spacing:17.933577px;}
.ws12{word-spacing:17.933994px;}
.wsbc{word-spacing:17.993355px;}
.ws2c{word-spacing:17.993397px;}
.ws2e{word-spacing:18.220366px;}
.ws70{word-spacing:18.232470px;}
.wsb9{word-spacing:18.352027px;}
.ws8d{word-spacing:18.471584px;}
.ws13e{word-spacing:18.507498px;}
.ws18{word-spacing:18.770436px;}
.ws11f{word-spacing:18.985727px;}
.ws1c{word-spacing:19.069251px;}
.ws9e{word-spacing:19.069370px;}
.wsc1{word-spacing:19.129148px;}
.ws7a{word-spacing:19.308484px;}
.ws35{word-spacing:19.488072px;}
.ws133{word-spacing:19.655249px;}
.ws64{word-spacing:19.966049px;}
.ws9d{word-spacing:20.025827px;}
.ws11{word-spacing:20.121607px;}
.ws1b{word-spacing:20.742735px;}
.ws88{word-spacing:20.862727px;}
.wsc6{word-spacing:20.922506px;}
.ws125{word-spacing:21.281231px;}
.wsd{word-spacing:21.520277px;}
.ws11b{word-spacing:21.615992px;}
.ws124{word-spacing:21.663815px;}
.ws78{word-spacing:21.878963px;}
.wsbb{word-spacing:22.237635px;}
.wsb{word-spacing:22.758139px;}
.ws2{word-spacing:22.948988px;}
.ws3{word-spacing:22.949588px;}
.ws131{word-spacing:23.146328px;}
.wse{word-spacing:23.242364px;}
.ws24{word-spacing:23.313863px;}
.ws12f{word-spacing:23.672381px;}
.ws128{word-spacing:23.959319px;}
.ws6{word-spacing:23.995401px;}
.wsc{word-spacing:24.533028px;}
.ws139{word-spacing:24.533194px;}
.ws118{word-spacing:24.963601px;}
.ws5{word-spacing:26.309117px;}
.ws7{word-spacing:26.792740px;}
.ws62{word-spacing:29.829516px;}
.wsf9{word-spacing:31.380777px;}
.wsf{word-spacing:31.742388px;}
.ws8e{word-spacing:36.355026px;}
.wsdc{word-spacing:62.169282px;}
.wsd1{word-spacing:110.246324px;}
.wsca{word-spacing:113.026337px;}
.wsde{word-spacing:113.959948px;}
.ws116{word-spacing:122.669792px;}
.ws113{word-spacing:201.954647px;}
.ws112{word-spacing:275.286952px;}
._c{margin-left:-3092.947482px;}
._12{margin-left:-155.744031px;}
._13{margin-left:-152.699643px;}
._8{margin-left:-6.692735px;}
._2{margin-left:-5.260462px;}
._0{margin-left:-3.586379px;}
._1{margin-left:-2.152308px;}
._5{margin-left:-1.022450px;}
._f{width:1.483330px;}
._7{width:2.988750px;}
._4{width:5.488296px;}
._10{width:13.689297px;}
._19{width:16.738047px;}
._9{width:17.814290px;}
._e{width:19.248706px;}
._b{width:20.384818px;}
._6{width:21.789489px;}
._21{width:23.244355px;}
._20{width:24.549897px;}
._11{width:26.606682px;}
._a{width:29.172257px;}
._1f{width:31.262877px;}
._d{width:35.039369px;}
._3{width:43.919342px;}
._27{width:54.097491px;}
._24{width:74.126887px;}
._14{width:75.795457px;}
._15{width:88.712052px;}
._26{width:107.358329px;}
._16{width:120.029674px;}
._17{width:125.921396px;}
._1a{width:143.946870px;}
._1c{width:149.826591px;}
._23{width:184.694115px;}
._1d{width:185.696384px;}
._25{width:216.548060px;}
._1e{width:222.904115px;}
._1b{width:246.806160px;}
._22{width:250.057610px;}
._18{width:270.723056px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:28.762412px;}
.fsf{font-size:29.258695px;}
.fs12{font-size:38.349882px;}
.fse{font-size:39.011764px;}
.fs5{font-size:41.844892px;}
.fs8{font-size:42.000000px;}
.fs10{font-size:44.293991px;}
.fs11{font-size:44.294587px;}
.fsc{font-size:45.058280px;}
.fsd{font-size:45.058451px;}
.fsb{font-size:45.058794px;}
.fs6{font-size:47.820540px;}
.fsa{font-size:47.820600px;}
.fs4{font-size:47.822931px;}
.fs9{font-size:47.822991px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:53.801090px;}
.fs3{font-size:59.778589px;}
.fs1{font-size:65.756628px;}
.fs14{font-size:70.594108px;}
.fs0{font-size:143.468913px;}
.y0{bottom:0.000000px;}
.yd6{bottom:2.843396px;}
.yb7{bottom:2.893870px;}
.yf2{bottom:10.100343px;}
.yef{bottom:10.100414px;}
.yc1{bottom:10.274665px;}
.ybe{bottom:10.274738px;}
.ye0{bottom:19.319026px;}
.ydd{bottom:19.319098px;}
.y60{bottom:32.862000px;}
.y5e{bottom:34.947000px;}
.yf1{bottom:35.451748px;}
.yc0{bottom:36.063571px;}
.yfa{bottom:41.945059px;}
.ydf{bottom:44.670431px;}
.yf0{bottom:50.613565px;}
.ybf{bottom:51.486633px;}
.yee{bottom:51.712651px;}
.ybd{bottom:52.605406px;}
.yde{bottom:59.832249px;}
.ydc{bottom:60.931335px;}
.ye6{bottom:65.412515px;}
.yc7{bottom:66.541425px;}
.yf9{bottom:74.631127px;}
.yf6{bottom:74.631199px;}
.yba{bottom:86.855962px;}
.ye8{bottom:90.763849px;}
.yc9{bottom:92.330624px;}
.y141{bottom:93.345616px;}
.y143{bottom:94.446355px;}
.yf8{bottom:99.982532px;}
.ye7{bottom:105.925307px;}
.ye5{bottom:107.024752px;}
.yc8{bottom:107.753979px;}
.yc6{bottom:108.872094px;}
.y144{bottom:114.548557px;}
.yf7{bottom:115.144350px;}
.y140{bottom:115.811133px;}
.yf5{bottom:116.243436px;}
.y142{bottom:116.911871px;}
.ybb{bottom:124.218767px;}
.ydb{bottom:131.476378px;}
.ycb{bottom:141.563818px;}
.ybc{bottom:161.793467px;}
.ycd{bottom:167.352724px;}
.yda{bottom:168.351068px;}
.yed{bottom:176.037142px;}
.yea{bottom:176.037213px;}
.ycc{bottom:182.776079px;}
.yca{bottom:183.894486px;}
.y5d{bottom:188.149908px;}
.yfd{bottom:194.474580px;}
.yb9{bottom:199.304878px;}
.y13f{bottom:199.813003px;}
.yec{bottom:201.388547px;}
.y5c{bottom:206.083305px;}
.yeb{bottom:216.550005px;}
.yc3{bottom:216.586210px;}
.ye9{bottom:217.649451px;}
.yff{bottom:219.825914px;}
.y5b{bottom:224.016702px;}
.yd8{bottom:232.881801px;}
.y31{bottom:234.778240px;}
.yfe{bottom:234.987731px;}
.yfc{bottom:236.087314px;}
.y5a{bottom:241.950098px;}
.y13d{bottom:241.951598px;}
.yc5{bottom:242.375409px;}
.y10a{bottom:243.880695px;}
.ycf{bottom:244.719726px;}
.y30{bottom:248.227912px;}
.ye2{bottom:249.786681px;}
.y17a{bottom:252.476125px;}
.y5f{bottom:253.495515px;}
.yce{bottom:257.744712px;}
.yc4{bottom:257.798764px;}
.yc2{bottom:258.917050px;}
.y59{bottom:259.883495px;}
.y88{bottom:259.884995px;}
.y2f{bottom:261.677585px;}
.y109{bottom:261.814091px;}
.yb8{bottom:265.471741px;}
.y179{bottom:265.927297px;}
.yd9{bottom:269.756770px;}
.ye4{bottom:275.138374px;}
.yf4{bottom:277.443179px;}
.y13c{bottom:277.714886px;}
.y58{bottom:277.818392px;}
.y178{bottom:279.376969px;}
.y108{bottom:279.747488px;}
.yf3{bottom:287.726298px;}
.ye3{bottom:290.299832px;}
.yfb{bottom:291.398579px;}
.ye1{bottom:291.399365px;}
.y2e{bottom:292.241613px;}
.y177{bottom:292.826642px;}
.y13b{bottom:295.648283px;}
.y57{bottom:295.751788px;}
.y107{bottom:297.680885px;}
.yd7{bottom:297.843589px;}
.y176{bottom:306.277814px;}
.y2d{bottom:310.175009px;}
.y13a{bottom:313.581680px;}
.y56{bottom:313.685185px;}
.y106{bottom:315.614281px;}
.y175{bottom:319.727487px;}
.y2c{bottom:328.108406px;}
.y139{bottom:331.516576px;}
.y55{bottom:331.618581px;}
.yb5{bottom:331.815091px;}
.y174{bottom:333.177159px;}
.y105{bottom:333.549178px;}
.y2b{bottom:346.041803px;}
.y173{bottom:346.628332px;}
.y138{bottom:349.449973px;}
.y54{bottom:349.551978px;}
.yb4{bottom:349.748488px;}
.y172{bottom:360.078004px;}
.y2a{bottom:363.975199px;}
.y137{bottom:367.383370px;}
.y53{bottom:367.485375px;}
.y87{bottom:367.486875px;}
.yb3{bottom:367.681885px;}
.y171{bottom:373.529177px;}
.y29{bottom:381.910096px;}
.y151{bottom:385.189260px;}
.y136{bottom:385.316766px;}
.y52{bottom:385.420271px;}
.yb2{bottom:385.615281px;}
.y170{bottom:386.978849px;}
.y104{bottom:389.803491px;}
.y28{bottom:399.843493px;}
.y16f{bottom:400.428522px;}
.y150{bottom:403.122656px;}
.y135{bottom:403.250163px;}
.y51{bottom:403.353668px;}
.yb1{bottom:403.550178px;}
.y103{bottom:407.736887px;}
.y16e{bottom:413.879694px;}
.y27{bottom:417.776889px;}
.y14f{bottom:421.057553px;}
.y134{bottom:421.080054px;}
.y50{bottom:421.287065px;}
.yb0{bottom:421.483574px;}
.y102{bottom:425.671784px;}
.y16d{bottom:427.329367px;}
.y26{bottom:435.710286px;}
.y14e{bottom:438.990950px;}
.y133{bottom:439.014951px;}
.y4f{bottom:439.220461px;}
.yaf{bottom:439.416971px;}
.y16c{bottom:440.779039px;}
.y101{bottom:443.605181px;}
.y25{bottom:453.643682px;}
.y16b{bottom:454.230212px;}
.y14d{bottom:456.924346px;}
.y132{bottom:456.948348px;}
.y4e{bottom:457.153858px;}
.yae{bottom:457.546878px;}
.y100{bottom:461.538577px;}
.y86{bottom:461.862593px;}
.y16a{bottom:467.679884px;}
.y24{bottom:471.577079px;}
.y131{bottom:474.881744px;}
.y4d{bottom:475.088755px;}
.yad{bottom:475.480274px;}
.y169{bottom:481.131057px;}
.yd5{bottom:483.058653px;}
.y85{bottom:484.503225px;}
.y23{bottom:489.511976px;}
.y130{bottom:492.815141px;}
.y4c{bottom:493.022151px;}
.yac{bottom:493.413671px;}
.y168{bottom:494.580729px;}
.y22{bottom:507.445372px;}
.y167{bottom:508.030402px;}
.y4b{bottom:510.955548px;}
.yab{bottom:511.347067px;}
.y84{bottom:512.524626px;}
.y12f{bottom:515.353768px;}
.y166{bottom:521.481574px;}
.y21{bottom:525.711786px;}
.y4a{bottom:528.888944px;}
.yaa{bottom:529.280464px;}
.y83{bottom:530.458023px;}
.y165{bottom:534.931247px;}
.y12e{bottom:542.754138px;}
.y20{bottom:543.645182px;}
.y49{bottom:546.822341px;}
.ya9{bottom:547.215361px;}
.y164{bottom:548.380919px;}
.y82{bottom:548.391420px;}
.y12d{bottom:560.687534px;}
.y1f{bottom:561.578579px;}
.y163{bottom:561.832092px;}
.y48{bottom:564.755738px;}
.ya8{bottom:565.148757px;}
.y81{bottom:566.326316px;}
.y162{bottom:575.281764px;}
.y12c{bottom:578.620931px;}
.y1e{bottom:579.511976px;}
.y47{bottom:582.690634px;}
.ya7{bottom:583.278664px;}
.y80{bottom:584.259713px;}
.y161{bottom:588.732937px;}
.y12b{bottom:596.554328px;}
.y1d{bottom:597.445372px;}
.y46{bottom:600.624031px;}
.ya6{bottom:601.212060px;}
.y160{bottom:602.182609px;}
.y7f{bottom:602.193109px;}
.y12a{bottom:614.487724px;}
.y1c{bottom:615.378769px;}
.y15f{bottom:615.632281px;}
.y45{bottom:618.557428px;}
.ya5{bottom:619.145457px;}
.y7e{bottom:620.126506px;}
.y15e{bottom:629.083454px;}
.y129{bottom:632.421121px;}
.y1b{bottom:633.313665px;}
.y44{bottom:636.490824px;}
.ya4{bottom:637.078854px;}
.y7d{bottom:638.059903px;}
.y15d{bottom:642.533126px;}
.y128{bottom:650.356018px;}
.y1a{bottom:651.247062px;}
.y43{bottom:654.424221px;}
.ya3{bottom:655.012250px;}
.y15c{bottom:655.982799px;}
.y7c{bottom:655.994799px;}
.y127{bottom:668.289414px;}
.y19{bottom:669.180459px;}
.y15b{bottom:669.433971px;}
.y42{bottom:672.357618px;}
.ya2{bottom:672.947147px;}
.y7b{bottom:673.928196px;}
.y15a{bottom:682.883644px;}
.y126{bottom:686.222811px;}
.y18{bottom:687.113855px;}
.y41{bottom:690.292514px;}
.ya1{bottom:690.880544px;}
.y7a{bottom:696.568828px;}
.y125{bottom:704.156207px;}
.y17{bottom:705.047252px;}
.y159{bottom:705.077253px;}
.y40{bottom:708.225911px;}
.ya0{bottom:708.813940px;}
.y124{bottom:721.986099px;}
.y16{bottom:722.980649px;}
.y79{bottom:724.590229px;}
.y3f{bottom:726.159307px;}
.y9f{bottom:726.747337px;}
.y123{bottom:739.919495px;}
.y15{bottom:740.915545px;}
.y78{bottom:742.523626px;}
.y3e{bottom:744.092704px;}
.y9e{bottom:750.075003px;}
.y158{bottom:754.842242px;}
.y122{bottom:757.854392px;}
.y77{bottom:760.457022px;}
.y3d{bottom:762.026101px;}
.y14{bottom:765.549777px;}
.y157{bottom:770.084504px;}
.y121{bottom:775.787789px;}
.y76{bottom:778.391919px;}
.y9d{bottom:779.764488px;}
.y3c{bottom:779.960997px;}
.y156{bottom:783.534176px;}
.y120{bottom:793.721185px;}
.y75{bottom:796.325316px;}
.y9c{bottom:797.697884px;}
.y3b{bottom:797.894394px;}
.y13{bottom:800.551027px;}
.y14c{bottom:802.453122px;}
.y155{bottom:807.296864px;}
.y11f{bottom:811.654582px;}
.y74{bottom:814.258712px;}
.y12{bottom:815.494774px;}
.y9b{bottom:815.631281px;}
.y3a{bottom:815.827791px;}
.yd4{bottom:820.119505px;}
.y14b{bottom:820.386519px;}
.y11e{bottom:829.587979px;}
.y11{bottom:830.440021px;}
.y73{bottom:832.192109px;}
.y9a{bottom:833.564677px;}
.y39{bottom:833.761187px;}
.yd3{bottom:838.052902px;}
.y14a{bottom:838.321415px;}
.y154{bottom:840.474023px;}
.y10{bottom:845.716785px;}
.y11d{bottom:847.521375px;}
.y72{bottom:850.125505px;}
.y99{bottom:851.498074px;}
.y38{bottom:851.694584px;}
.yd2{bottom:855.986299px;}
.y149{bottom:856.254812px;}
.y153{bottom:858.407420px;}
.yf{bottom:860.662032px;}
.y11c{bottom:865.456272px;}
.y71{bottom:868.058902px;}
.y98{bottom:869.431471px;}
.y37{bottom:869.627981px;}
.yd1{bottom:873.919695px;}
.y148{bottom:874.188209px;}
.ye{bottom:875.607280px;}
.y152{bottom:876.340816px;}
.y11b{bottom:883.389669px;}
.y70{bottom:885.993799px;}
.y97{bottom:887.366367px;}
.y36{bottom:887.562877px;}
.yd{bottom:890.551027px;}
.yd0{bottom:891.853092px;}
.y147{bottom:892.121605px;}
.y11a{bottom:901.323065px;}
.y6f{bottom:903.927195px;}
.y96{bottom:905.299764px;}
.yc{bottom:905.496274px;}
.y146{bottom:910.055002px;}
.yb6{bottom:913.374668px;}
.y119{bottom:919.152957px;}
.yb{bottom:920.441521px;}
.y6e{bottom:921.860592px;}
.y95{bottom:923.233161px;}
.y35{bottom:923.429671px;}
.y145{bottom:927.988398px;}
.ya{bottom:935.385268px;}
.y118{bottom:937.086353px;}
.y6d{bottom:939.793989px;}
.y94{bottom:941.166557px;}
.y34{bottom:941.363067px;}
.y13e{bottom:949.509974px;}
.y9{bottom:950.330516px;}
.y117{bottom:955.019750px;}
.y6c{bottom:957.727385px;}
.y93{bottom:959.099954px;}
.y33{bottom:959.296464px;}
.y8{bottom:965.274263px;}
.y116{bottom:972.954647px;}
.y6b{bottom:975.660782px;}
.y32{bottom:977.229860px;}
.y7{bottom:980.219510px;}
.y115{bottom:990.888043px;}
.y6a{bottom:993.595679px;}
.y92{bottom:995.163257px;}
.y6{bottom:995.164757px;}
.y114{bottom:1008.821440px;}
.y69{bottom:1011.529075px;}
.y91{bottom:1013.098154px;}
.y113{bottom:1026.754837px;}
.y68{bottom:1029.462472px;}
.y90{bottom:1031.031550px;}
.y67{bottom:1047.395869px;}
.y8f{bottom:1048.964947px;}
.y5{bottom:1049.021950px;}
.y66{bottom:1065.329265px;}
.y8e{bottom:1066.898344px;}
.y4{bottom:1068.995448px;}
.y112{bottom:1075.417270px;}
.y65{bottom:1083.264162px;}
.y8d{bottom:1084.831740px;}
.y111{bottom:1088.868442px;}
.y3{bottom:1088.968947px;}
.y64{bottom:1101.197558px;}
.y110{bottom:1102.318115px;}
.y8c{bottom:1102.765137px;}
.y2{bottom:1108.942446px;}
.y10f{bottom:1115.767787px;}
.y8b{bottom:1120.700034px;}
.y63{bottom:1123.838190px;}
.y10e{bottom:1129.218959px;}
.y8a{bottom:1138.633430px;}
.y10d{bottom:1142.668632px;}
.y62{bottom:1146.478822px;}
.y1{bottom:1156.017799px;}
.y10c{bottom:1156.118304px;}
.y89{bottom:1156.566827px;}
.y61{bottom:1174.500223px;}
.y10b{bottom:1179.880992px;}
.h19{height:21.852692px;}
.h14{height:22.229750px;}
.h18{height:29.136922px;}
.h13{height:29.639797px;}
.h21{height:32.806572px;}
.h16{height:33.653052px;}
.h17{height:33.653504px;}
.h11{height:34.233732px;}
.h12{height:34.233862px;}
.h10{height:34.234123px;}
.ha{height:34.453125px;}
.h7{height:34.767271px;}
.h1a{height:34.767314px;}
.h22{height:35.007326px;}
.h9{height:35.482841px;}
.he{height:35.482885px;}
.h1b{height:35.867243px;}
.h5{height:38.360177px;}
.hc{height:41.008112px;}
.h6{height:43.459034px;}
.hb{height:43.804688px;}
.hd{height:44.833942px;}
.h4{height:47.805068px;}
.h3{height:48.129085px;}
.h1f{height:52.945581px;}
.h8{height:53.074754px;}
.h1d{height:53.080754px;}
.h20{height:74.187412px;}
.h1c{height:95.446472px;}
.h2{height:104.301900px;}
.h1e{height:237.545750px;}
.hf{height:273.683760px;}
.h15{height:305.915935px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:308.459070px;}
.w3{width:347.007579px;}
.w4{width:370.162465px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x15{left:-1.105561px;}
.x0{left:0.000000px;}
.x12{left:12.223534px;}
.x13{left:14.474322px;}
.xd{left:26.400015px;}
.x30{left:51.448381px;}
.x2d{left:57.409379px;}
.x7{left:60.886545px;}
.x35{left:64.116207px;}
.xf{left:70.662534px;}
.x9{left:72.842143px;}
.x6{left:75.830292px;}
.x20{left:84.248907px;}
.x2e{left:85.392537px;}
.x10{left:87.242863px;}
.x11{left:94.962249px;}
.x1e{left:96.614519px;}
.x1f{left:98.315788px;}
.x1c{left:103.460231px;}
.x1b{left:105.804592px;}
.x1d{left:117.526693px;}
.x25{left:124.451730px;}
.x1{left:127.278365px;}
.x36{left:129.867924px;}
.x14{left:131.865282px;}
.x17{left:135.704911px;}
.xe{left:139.783500px;}
.x2a{left:151.250392px;}
.x29{left:152.368077px;}
.x2b{left:154.297963px;}
.x27{left:159.141025px;}
.x26{left:161.447174px;}
.x2c{left:167.201524px;}
.x2{left:170.333517px;}
.x28{left:172.970777px;}
.x2f{left:187.418746px;}
.x8{left:190.875544px;}
.x37{left:207.961385px;}
.x18{left:215.590291px;}
.x5{left:234.593730px;}
.x24{left:242.528202px;}
.x1a{left:244.127050px;}
.x19{left:246.471096px;}
.x23{left:269.766206px;}
.x22{left:272.072369px;}
.x3{left:280.556028px;}
.x16{left:281.909209px;}
.x4{left:305.232262px;}
.x21{left:306.361908px;}
.xc{left:439.809000px;}
.xa{left:455.425771px;}
.x3b{left:461.403570px;}
.xb{left:470.371018px;}
.x32{left:481.873593px;}
.x39{left:511.924596px;}
.x38{left:525.210760px;}
.x3d{left:533.201660px;}
.x31{left:542.196109px;}
.x33{left:554.103705px;}
.x34{left:587.246362px;}
.x3a{left:601.885594px;}
.x3c{left:677.825391px;}
@media print{
.v2{vertical-align:-7.973732pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.280964pt;}
.v4{vertical-align:36.017801pt;}
.v3{vertical-align:44.988916pt;}
.ls3{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000267pt;}
.ls8{letter-spacing:0.000882pt;}
.ls1a{letter-spacing:0.001459pt;}
.ls10{letter-spacing:0.002079pt;}
.ls19{letter-spacing:0.003734pt;}
.ls18{letter-spacing:0.006216pt;}
.ls5{letter-spacing:2.635578pt;}
.lsb{letter-spacing:2.655036pt;}
.lsc{letter-spacing:2.655844pt;}
.ls7{letter-spacing:2.656826pt;}
.ls4{letter-spacing:2.657459pt;}
.ls9{letter-spacing:2.658378pt;}
.ls6{letter-spacing:2.660370pt;}
.ls11{letter-spacing:8.857510pt;}
.lsa{letter-spacing:15.041634pt;}
.ls1{letter-spacing:20.446677pt;}
.ls0{letter-spacing:20.456478pt;}
.ls1b{letter-spacing:21.085386pt;}
.ls14{letter-spacing:21.633964pt;}
.lsd{letter-spacing:22.467368pt;}
.ls13{letter-spacing:25.106137pt;}
.lsf{letter-spacing:29.054364pt;}
.ls2{letter-spacing:29.977578pt;}
.lse{letter-spacing:32.355863pt;}
.ls15{letter-spacing:100.726495pt;}
.ls17{letter-spacing:100.731828pt;}
.ls16{letter-spacing:335.463564pt;}
.ws61{word-spacing:-15.940957pt;}
.wsfd{word-spacing:-15.687580pt;}
.ws8c{word-spacing:-14.761326pt;}
.ws80{word-spacing:-13.284131pt;}
.ws87{word-spacing:-13.262910pt;}
.ws13{word-spacing:-10.627318pt;}
.ws8f{word-spacing:-9.298865pt;}
.ws92{word-spacing:-5.940663pt;}
.ws7f{word-spacing:-5.905417pt;}
.ws50{word-spacing:-5.901683pt;}
.ws4d{word-spacing:-5.899261pt;}
.ws65{word-spacing:-5.887527pt;}
.ws4e{word-spacing:-5.887283pt;}
.ws47{word-spacing:-0.956049pt;}
.wsce{word-spacing:-0.903321pt;}
.ws41{word-spacing:-0.903246pt;}
.ws119{word-spacing:-0.806001pt;}
.ws102{word-spacing:-0.797048pt;}
.ws105{word-spacing:-0.741049pt;}
.ws43{word-spacing:-0.637633pt;}
.wsf7{word-spacing:-0.531365pt;}
.wsb4{word-spacing:-0.212546pt;}
.wse0{word-spacing:-0.106273pt;}
.ws90{word-spacing:-0.053137pt;}
.ws4{word-spacing:-0.047823pt;}
.ws115{word-spacing:-0.042509pt;}
.wscf{word-spacing:-0.039372pt;}
.ws93{word-spacing:-0.037195pt;}
.wsc9{word-spacing:-0.026008pt;}
.wsd0{word-spacing:-0.025567pt;}
.ws5a{word-spacing:0.000000pt;}
.ws5e{word-spacing:0.003728pt;}
.ws86{word-spacing:0.009189pt;}
.ws3c{word-spacing:0.053069pt;}
.wse1{word-spacing:0.053137pt;}
.ws72{word-spacing:0.212546pt;}
.wsa4{word-spacing:0.316859pt;}
.ws12c{word-spacing:0.340075pt;}
.wsda{word-spacing:0.371956pt;}
.ws12a{word-spacing:0.382584pt;}
.ws98{word-spacing:0.425092pt;}
.ws136{word-spacing:0.467603pt;}
.ws89{word-spacing:0.478229pt;}
.wsd5{word-spacing:0.584502pt;}
.ws104{word-spacing:0.743911pt;}
.ws137{word-spacing:0.765168pt;}
.ws97{word-spacing:0.797048pt;}
.ws134{word-spacing:0.892696pt;}
.ws103{word-spacing:0.956457pt;}
.ws6f{word-spacing:1.222140pt;}
.ws42{word-spacing:1.274996pt;}
.ws121{word-spacing:1.275280pt;}
.wsf8{word-spacing:1.381550pt;}
.ws2a{word-spacing:1.434471pt;}
.ws2b{word-spacing:1.541142pt;}
.wse3{word-spacing:1.594096pt;}
.ws67{word-spacing:1.647232pt;}
.ws28{word-spacing:1.700617pt;}
.ws17{word-spacing:1.753420pt;}
.ws7e{word-spacing:1.753505pt;}
.ws81{word-spacing:1.757140pt;}
.wsa3{word-spacing:1.774871pt;}
.wsa5{word-spacing:1.806642pt;}
.ws33{word-spacing:1.912895pt;}
.wsff{word-spacing:1.912915pt;}
.wsbf{word-spacing:1.966051pt;}
.ws11d{word-spacing:2.040448pt;}
.wsc7{word-spacing:2.072324pt;}
.wsb1{word-spacing:2.231734pt;}
.ws3b{word-spacing:2.337983pt;}
.ws11c{word-spacing:2.338013pt;}
.ws2d{word-spacing:2.497457pt;}
.ws66{word-spacing:2.550553pt;}
.ws82{word-spacing:2.603690pt;}
.wsa2{word-spacing:2.709963pt;}
.wsb0{word-spacing:2.816236pt;}
.ws48{word-spacing:2.869209pt;}
.ws6e{word-spacing:2.975645pt;}
.wsc8{word-spacing:3.081918pt;}
.ws44{word-spacing:3.082020pt;}
.wsf4{word-spacing:3.135055pt;}
.ws7c{word-spacing:3.241328pt;}
.ws19{word-spacing:3.294297pt;}
.ws75{word-spacing:3.294464pt;}
.ws3f{word-spacing:3.453771pt;}
.wsb5{word-spacing:3.453874pt;}
.ws10c{word-spacing:3.616502pt;}
.wsf6{word-spacing:3.666420pt;}
.ws9a{word-spacing:3.719557pt;}
.ws100{word-spacing:3.772693pt;}
.ws29{word-spacing:3.772721pt;}
.ws77{word-spacing:3.839764pt;}
.ws10a{word-spacing:3.878966pt;}
.wsdf{word-spacing:3.932103pt;}
.ws21{word-spacing:3.984998pt;}
.ws10e{word-spacing:4.176530pt;}
.wsf0{word-spacing:4.203198pt;}
.ws111{word-spacing:4.247792pt;}
.ws30{word-spacing:4.250754pt;}
.wsf5{word-spacing:4.250922pt;}
.ws114{word-spacing:4.250927pt;}
.wsdd{word-spacing:4.250933pt;}
.ws32{word-spacing:4.463422pt;}
.wsfa{word-spacing:4.463468pt;}
.ws31{word-spacing:4.569560pt;}
.ws14{word-spacing:4.675699pt;}
.ws6d{word-spacing:4.729151pt;}
.wsec{word-spacing:4.782287pt;}
.wsd6{word-spacing:4.835424pt;}
.wse2{word-spacing:4.941697pt;}
.ws3a{word-spacing:4.994648pt;}
.ws10b{word-spacing:5.078446pt;}
.ws10d{word-spacing:5.101106pt;}
.ws7d{word-spacing:5.207379pt;}
.wsfe{word-spacing:5.260516pt;}
.ws85{word-spacing:5.271156pt;}
.ws5d{word-spacing:5.275276pt;}
.ws5f{word-spacing:5.275404pt;}
.ws60{word-spacing:5.276641pt;}
.ws83{word-spacing:5.311931pt;}
.ws20{word-spacing:5.313598pt;}
.ws5b{word-spacing:5.313652pt;}
.wsf2{word-spacing:5.314162pt;}
.wsf1{word-spacing:5.317422pt;}
.ws16{word-spacing:5.366934pt;}
.ws39{word-spacing:5.419736pt;}
.ws4a{word-spacing:5.473073pt;}
.ws108{word-spacing:5.579335pt;}
.wscb{word-spacing:5.632471pt;}
.wsef{word-spacing:5.685608pt;}
.ws59{word-spacing:5.738686pt;}
.ws1{word-spacing:5.844967pt;}
.wsa8{word-spacing:5.846002pt;}
.ws13f{word-spacing:5.866287pt;}
.wsd9{word-spacing:6.004427pt;}
.wsdb{word-spacing:6.057564pt;}
.ws120{word-spacing:6.248871pt;}
.ws11e{word-spacing:6.291380pt;}
.wsa0{word-spacing:6.308582pt;}
.ws6a{word-spacing:6.323246pt;}
.ws46{word-spacing:6.429386pt;}
.ws107{word-spacing:6.482656pt;}
.ws8b{word-spacing:6.535792pt;}
.ws6c{word-spacing:6.642065pt;}
.ws25{word-spacing:6.695000pt;}
.ws71{word-spacing:6.695202pt;}
.ws1f{word-spacing:6.748336pt;}
.ws8a{word-spacing:6.748338pt;}
.wsb6{word-spacing:6.854612pt;}
.ws132{word-spacing:6.886511pt;}
.ws3e{word-spacing:6.907811pt;}
.ws99{word-spacing:6.960885pt;}
.ws106{word-spacing:6.976670pt;}
.wsad{word-spacing:7.067158pt;}
.wsc4{word-spacing:7.226567pt;}
.wsa7{word-spacing:7.312647pt;}
.wsa9{word-spacing:7.332840pt;}
.wsaa{word-spacing:7.385977pt;}
.wsfc{word-spacing:7.395355pt;}
.ws109{word-spacing:7.492250pt;}
.wsac{word-spacing:7.545386pt;}
.wse6{word-spacing:7.598523pt;}
.wse5{word-spacing:7.651659pt;}
.wsa1{word-spacing:7.757932pt;}
.ws9f{word-spacing:7.776670pt;}
.wsab{word-spacing:7.811069pt;}
.ws27{word-spacing:7.811322pt;}
.ws54{word-spacing:7.864125pt;}
.ws4b{word-spacing:8.023600pt;}
.wse8{word-spacing:8.183025pt;}
.ws6b{word-spacing:8.236161pt;}
.wsc2{word-spacing:8.342434pt;}
.ws56{word-spacing:8.395352pt;}
.ws110{word-spacing:8.395571pt;}
.ws73{word-spacing:8.448707pt;}
.ws7b{word-spacing:8.608117pt;}
.wsd3{word-spacing:8.661253pt;}
.ws123{word-spacing:8.671902pt;}
.wsd2{word-spacing:8.767526pt;}
.wsaf{word-spacing:8.820663pt;}
.ws3d{word-spacing:9.086586pt;}
.wse4{word-spacing:9.298892pt;}
.wsd7{word-spacing:9.352028pt;}
.ws40{word-spacing:9.564476pt;}
.wsba{word-spacing:9.564574pt;}
.wsb8{word-spacing:9.617711pt;}
.wse7{word-spacing:9.723984pt;}
.ws101{word-spacing:9.777120pt;}
.ws11a{word-spacing:9.777145pt;}
.ws13b{word-spacing:9.862163pt;}
.ws69{word-spacing:9.883393pt;}
.ws37{word-spacing:9.883426pt;}
.ws74{word-spacing:9.936530pt;}
.wsfb{word-spacing:9.989666pt;}
.ws130{word-spacing:9.989691pt;}
.wsf3{word-spacing:10.308486pt;}
.ws15{word-spacing:10.308514pt;}
.wsc0{word-spacing:10.361622pt;}
.ws12e{word-spacing:10.457294pt;}
.ws63{word-spacing:10.467895pt;}
.ws38{word-spacing:10.467988pt;}
.ws84{word-spacing:10.627305pt;}
.ws129{word-spacing:10.669841pt;}
.ws127{word-spacing:10.680230pt;}
.ws13c{word-spacing:10.712350pt;}
.wsb2{word-spacing:10.733578pt;}
.ws76{word-spacing:10.786714pt;}
.ws12b{word-spacing:10.924897pt;}
.ws4c{word-spacing:10.945879pt;}
.wsd4{word-spacing:10.999260pt;}
.ws1d{word-spacing:11.212025pt;}
.ws138{word-spacing:11.221197pt;}
.ws13a{word-spacing:11.222462pt;}
.wsa6{word-spacing:11.264943pt;}
.ws68{word-spacing:11.318079pt;}
.ws49{word-spacing:11.424303pt;}
.wscc{word-spacing:11.424353pt;}
.ws135{word-spacing:11.477518pt;}
.ws95{word-spacing:11.530626pt;}
.wsbe{word-spacing:11.583762pt;}
.ws55{word-spacing:11.583778pt;}
.ws117{word-spacing:11.605046pt;}
.ws57{word-spacing:11.637113pt;}
.wsa{word-spacing:11.669029pt;}
.wsb3{word-spacing:11.743172pt;}
.wsb7{word-spacing:11.796308pt;}
.ws79{word-spacing:11.849445pt;}
.ws122{word-spacing:11.860102pt;}
.wsed{word-spacing:12.008854pt;}
.ws2f{word-spacing:12.242618pt;}
.wsc5{word-spacing:12.327673pt;}
.ws53{word-spacing:12.327815pt;}
.wse9{word-spacing:12.433946pt;}
.wscd{word-spacing:12.593356pt;}
.wsd8{word-spacing:12.699629pt;}
.ws0{word-spacing:12.752777pt;}
.ws22{word-spacing:12.965180pt;}
.wsbd{word-spacing:12.965312pt;}
.ws10{word-spacing:13.007763pt;}
.ws96{word-spacing:13.018448pt;}
.ws45{word-spacing:13.018516pt;}
.ws91{word-spacing:13.124721pt;}
.ws12d{word-spacing:13.390437pt;}
.ws1e{word-spacing:13.443604pt;}
.wsc3{word-spacing:13.496677pt;}
.ws23{word-spacing:13.549742pt;}
.ws9{word-spacing:13.868606pt;}
.ws9c{word-spacing:13.974906pt;}
.ws51{word-spacing:14.028166pt;}
.ws4f{word-spacing:14.039672pt;}
.ws94{word-spacing:14.081179pt;}
.ws58{word-spacing:14.240443pt;}
.ws10f{word-spacing:14.506271pt;}
.wsea{word-spacing:14.559407pt;}
.ws8{word-spacing:14.585975pt;}
.wsee{word-spacing:14.612544pt;}
.ws126{word-spacing:14.835755pt;}
.wsae{word-spacing:14.878227pt;}
.wseb{word-spacing:15.037636pt;}
.ws13d{word-spacing:15.260848pt;}
.ws36{word-spacing:15.409568pt;}
.ws52{word-spacing:15.569043pt;}
.ws26{word-spacing:15.675181pt;}
.ws9b{word-spacing:15.675274pt;}
.ws34{word-spacing:15.728518pt;}
.ws1a{word-spacing:15.781321pt;}
.ws5c{word-spacing:15.940957pt;}
.ws12{word-spacing:15.941328pt;}
.wsbc{word-spacing:15.994094pt;}
.ws2c{word-spacing:15.994131pt;}
.ws2e{word-spacing:16.195880pt;}
.ws70{word-spacing:16.206640pt;}
.wsb9{word-spacing:16.312913pt;}
.ws8d{word-spacing:16.419186pt;}
.ws13e{word-spacing:16.451109pt;}
.ws18{word-spacing:16.684832pt;}
.ws11f{word-spacing:16.876202pt;}
.ws1c{word-spacing:16.950445pt;}
.ws9e{word-spacing:16.950551pt;}
.wsc1{word-spacing:17.003687pt;}
.ws7a{word-spacing:17.163097pt;}
.ws35{word-spacing:17.322730pt;}
.ws133{word-spacing:17.471333pt;}
.ws64{word-spacing:17.747599pt;}
.ws9d{word-spacing:17.800735pt;}
.ws11{word-spacing:17.885873pt;}
.ws1b{word-spacing:18.437986pt;}
.ws88{word-spacing:18.544647pt;}
.wsc6{word-spacing:18.597783pt;}
.ws125{word-spacing:18.916650pt;}
.wsd{word-spacing:19.129135pt;}
.ws11b{word-spacing:19.214215pt;}
.ws124{word-spacing:19.256724pt;}
.ws78{word-spacing:19.447968pt;}
.wsbb{word-spacing:19.766787pt;}
.wsb{word-spacing:20.229457pt;}
.ws2{word-spacing:20.399101pt;}
.ws3{word-spacing:20.399634pt;}
.ws131{word-spacing:20.574513pt;}
.wse{word-spacing:20.659879pt;}
.ws24{word-spacing:20.723434pt;}
.ws12f{word-spacing:21.042116pt;}
.ws128{word-spacing:21.297172pt;}
.ws6{word-spacing:21.329245pt;}
.wsc{word-spacing:21.807136pt;}
.ws139{word-spacing:21.807284pt;}
.ws118{word-spacing:22.189868pt;}
.ws5{word-spacing:23.385881pt;}
.ws7{word-spacing:23.815769pt;}
.ws62{word-spacing:26.515125pt;}
.wsf9{word-spacing:27.894024pt;}
.wsf{word-spacing:28.215456pt;}
.ws8e{word-spacing:32.315578pt;}
.wsdc{word-spacing:55.261584pt;}
.wsd1{word-spacing:97.996732pt;}
.wsca{word-spacing:100.467855pt;}
.wsde{word-spacing:101.297731pt;}
.ws116{word-spacing:109.039815pt;}
.ws113{word-spacing:179.515242pt;}
.ws112{word-spacing:244.699513pt;}
._c{margin-left:-2749.286650pt;}
._12{margin-left:-138.439139pt;}
._13{margin-left:-135.733016pt;}
._8{margin-left:-5.949098pt;}
._2{margin-left:-4.675966pt;}
._0{margin-left:-3.187892pt;}
._1{margin-left:-1.913162pt;}
._5{margin-left:-0.908845pt;}
._f{width:1.318515pt;}
._7{width:2.656666pt;}
._4{width:4.878485pt;}
._10{width:12.168264pt;}
._19{width:14.878264pt;}
._9{width:15.834924pt;}
._e{width:17.109961pt;}
._b{width:18.119838pt;}
._6{width:19.368434pt;}
._21{width:20.661649pt;}
._20{width:21.822131pt;}
._11{width:23.650384pt;}
._a{width:25.930895pt;}
._1f{width:27.789224pt;}
._d{width:31.146106pt;}
._3{width:39.039415pt;}
._27{width:48.086659pt;}
._24{width:65.890566pt;}
._14{width:67.373739pt;}
._15{width:78.855157pt;}
._26{width:95.429625pt;}
._16{width:106.693044pt;}
._17{width:111.930130pt;}
._1a{width:127.952773pt;}
._1c{width:133.179192pt;}
._23{width:164.172546pt;}
._1d{width:165.063453pt;}
._25{width:192.487165pt;}
._1e{width:198.136991pt;}
._1b{width:219.383253pt;}
._22{width:222.273432pt;}
._18{width:240.642716pt;}
.fs13{font-size:25.566588pt;}
.fsf{font-size:26.007728pt;}
.fs12{font-size:34.088784pt;}
.fse{font-size:34.677124pt;}
.fs5{font-size:37.195460pt;}
.fs8{font-size:37.333333pt;}
.fs10{font-size:39.372436pt;}
.fs11{font-size:39.372966pt;}
.fsc{font-size:40.051804pt;}
.fsd{font-size:40.051957pt;}
.fsb{font-size:40.052262pt;}
.fs6{font-size:42.507147pt;}
.fsa{font-size:42.507200pt;}
.fs4{font-size:42.509272pt;}
.fs9{font-size:42.509325pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:47.823191pt;}
.fs3{font-size:53.136523pt;}
.fs1{font-size:58.450336pt;}
.fs14{font-size:62.750318pt;}
.fs0{font-size:127.527923pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:2.527463pt;}
.yb7{bottom:2.572329pt;}
.yf2{bottom:8.978082pt;}
.yef{bottom:8.978146pt;}
.yc1{bottom:9.133035pt;}
.ybe{bottom:9.133100pt;}
.ye0{bottom:17.172468pt;}
.ydd{bottom:17.172531pt;}
.y60{bottom:29.210667pt;}
.y5e{bottom:31.064000pt;}
.yf1{bottom:31.512665pt;}
.yc0{bottom:32.056507pt;}
.yfa{bottom:37.284497pt;}
.ydf{bottom:39.707050pt;}
.yf0{bottom:44.989836pt;}
.ybf{bottom:45.765896pt;}
.yee{bottom:45.966801pt;}
.ybd{bottom:46.760361pt;}
.yde{bottom:53.184221pt;}
.ydc{bottom:54.161187pt;}
.ye6{bottom:58.144458pt;}
.yc7{bottom:59.147934pt;}
.yf9{bottom:66.338779pt;}
.yf6{bottom:66.338843pt;}
.yba{bottom:77.205299pt;}
.ye8{bottom:80.678977pt;}
.yc9{bottom:82.071666pt;}
.y141{bottom:82.973881pt;}
.y143{bottom:83.952316pt;}
.yf8{bottom:88.873362pt;}
.ye7{bottom:94.155828pt;}
.ye5{bottom:95.133113pt;}
.yc8{bottom:95.781315pt;}
.yc6{bottom:96.775194pt;}
.y144{bottom:101.820939pt;}
.yf7{bottom:102.350533pt;}
.y140{bottom:102.943229pt;}
.yf5{bottom:103.327498pt;}
.y142{bottom:103.921663pt;}
.ybb{bottom:110.416682pt;}
.ydb{bottom:116.867892pt;}
.ycb{bottom:125.834505pt;}
.ybc{bottom:143.816416pt;}
.ycd{bottom:148.757977pt;}
.yda{bottom:149.645394pt;}
.yed{bottom:156.477459pt;}
.yea{bottom:156.477523pt;}
.ycc{bottom:162.467626pt;}
.yca{bottom:163.461765pt;}
.y5d{bottom:167.244363pt;}
.yfd{bottom:172.866294pt;}
.yb9{bottom:177.159892pt;}
.y13f{bottom:177.611558pt;}
.yec{bottom:179.012042pt;}
.y5c{bottom:183.185160pt;}
.yeb{bottom:192.488893pt;}
.yc3{bottom:192.521076pt;}
.ye9{bottom:193.466178pt;}
.yff{bottom:195.400812pt;}
.y5b{bottom:199.125957pt;}
.yd8{bottom:207.006045pt;}
.y31{bottom:208.691769pt;}
.yfe{bottom:208.877984pt;}
.yfc{bottom:209.855390pt;}
.y5a{bottom:215.066754pt;}
.y13d{bottom:215.068087pt;}
.yc5{bottom:215.444808pt;}
.y10a{bottom:216.782840pt;}
.ycf{bottom:217.528645pt;}
.y30{bottom:220.647033pt;}
.ye2{bottom:222.032605pt;}
.y17a{bottom:224.423222pt;}
.y5f{bottom:225.329347pt;}
.yce{bottom:229.106410pt;}
.yc4{bottom:229.154457pt;}
.yc2{bottom:230.148489pt;}
.y59{bottom:231.007551pt;}
.y88{bottom:231.008884pt;}
.y2f{bottom:232.602297pt;}
.y109{bottom:232.723637pt;}
.yb8{bottom:235.974881pt;}
.y179{bottom:236.379820pt;}
.yd9{bottom:239.783795pt;}
.ye4{bottom:244.567444pt;}
.yf4{bottom:246.616159pt;}
.y13c{bottom:246.857677pt;}
.y58{bottom:246.949681pt;}
.y178{bottom:248.335084pt;}
.y108{bottom:248.664434pt;}
.yf3{bottom:255.756709pt;}
.ye3{bottom:258.044295pt;}
.yfb{bottom:259.020959pt;}
.ye1{bottom:259.021658pt;}
.y2e{bottom:259.770322pt;}
.y177{bottom:260.290348pt;}
.y13b{bottom:262.798474pt;}
.y57{bottom:262.890478pt;}
.y107{bottom:264.605231pt;}
.yd7{bottom:264.749857pt;}
.y176{bottom:272.246946pt;}
.y2d{bottom:275.711119pt;}
.y13a{bottom:278.739271pt;}
.y56{bottom:278.831275pt;}
.y106{bottom:280.546028pt;}
.y175{bottom:284.202211pt;}
.y2c{bottom:291.651916pt;}
.y139{bottom:294.681401pt;}
.y55{bottom:294.772072pt;}
.yb5{bottom:294.946748pt;}
.y174{bottom:296.157475pt;}
.y105{bottom:296.488158pt;}
.y2b{bottom:307.592713pt;}
.y173{bottom:308.114073pt;}
.y138{bottom:310.622198pt;}
.y54{bottom:310.712869pt;}
.yb4{bottom:310.887545pt;}
.y172{bottom:320.069337pt;}
.y2a{bottom:323.533510pt;}
.y137{bottom:326.562995pt;}
.y53{bottom:326.653666pt;}
.y87{bottom:326.655000pt;}
.yb3{bottom:326.828342pt;}
.y171{bottom:332.025935pt;}
.y29{bottom:339.475641pt;}
.y151{bottom:342.390453pt;}
.y136{bottom:342.503792pt;}
.y52{bottom:342.595797pt;}
.yb2{bottom:342.769139pt;}
.y170{bottom:343.981199pt;}
.y104{bottom:346.491992pt;}
.y28{bottom:355.416438pt;}
.y16f{bottom:355.936464pt;}
.y150{bottom:358.331250pt;}
.y135{bottom:358.444589pt;}
.y51{bottom:358.536594pt;}
.yb1{bottom:358.711269pt;}
.y103{bottom:362.432789pt;}
.y16e{bottom:367.893062pt;}
.y27{bottom:371.357235pt;}
.y14f{bottom:374.273381pt;}
.y134{bottom:374.293382pt;}
.y50{bottom:374.477391pt;}
.yb0{bottom:374.652066pt;}
.y102{bottom:378.374919pt;}
.y16d{bottom:379.848326pt;}
.y26{bottom:387.298032pt;}
.y14e{bottom:390.214178pt;}
.y133{bottom:390.235512pt;}
.y4f{bottom:390.418188pt;}
.yaf{bottom:390.592863pt;}
.y16c{bottom:391.803590pt;}
.y101{bottom:394.315716pt;}
.y25{bottom:403.238829pt;}
.y16b{bottom:403.760188pt;}
.y14d{bottom:406.154975pt;}
.y132{bottom:406.176309pt;}
.y4e{bottom:406.358985pt;}
.yae{bottom:406.708336pt;}
.y100{bottom:410.256513pt;}
.y86{bottom:410.544527pt;}
.y16a{bottom:415.715453pt;}
.y24{bottom:419.179626pt;}
.y131{bottom:422.117106pt;}
.y4d{bottom:422.301115pt;}
.yad{bottom:422.649133pt;}
.y169{bottom:427.672050pt;}
.yd5{bottom:429.385469pt;}
.y85{bottom:430.669534pt;}
.y23{bottom:435.121756pt;}
.y130{bottom:438.057903pt;}
.y4c{bottom:438.241912pt;}
.yac{bottom:438.589930pt;}
.y168{bottom:439.627315pt;}
.y22{bottom:451.062553pt;}
.y167{bottom:451.582579pt;}
.y4b{bottom:454.182709pt;}
.yab{bottom:454.530727pt;}
.y84{bottom:455.577446pt;}
.y12f{bottom:458.092238pt;}
.y166{bottom:463.539177pt;}
.y21{bottom:467.299365pt;}
.y4a{bottom:470.123506pt;}
.yaa{bottom:470.471524pt;}
.y83{bottom:471.518243pt;}
.y165{bottom:475.494441pt;}
.y12e{bottom:482.448122pt;}
.y20{bottom:483.240162pt;}
.y49{bottom:486.064303pt;}
.ya9{bottom:486.413654pt;}
.y164{bottom:487.449706pt;}
.y82{bottom:487.459040pt;}
.y12d{bottom:498.388919pt;}
.y1f{bottom:499.180959pt;}
.y163{bottom:499.406304pt;}
.y48{bottom:502.005100pt;}
.ya8{bottom:502.354451pt;}
.y81{bottom:503.401170pt;}
.y162{bottom:511.361568pt;}
.y12c{bottom:514.329716pt;}
.y1e{bottom:515.121756pt;}
.y47{bottom:517.947231pt;}
.ya7{bottom:518.469923pt;}
.y80{bottom:519.341967pt;}
.y161{bottom:523.318166pt;}
.y12b{bottom:530.270513pt;}
.y1d{bottom:531.062553pt;}
.y46{bottom:533.888028pt;}
.ya6{bottom:534.410720pt;}
.y160{bottom:535.273430pt;}
.y7f{bottom:535.282764pt;}
.y12a{bottom:546.211310pt;}
.y1c{bottom:547.003350pt;}
.y15f{bottom:547.228695pt;}
.y45{bottom:549.828825pt;}
.ya5{bottom:550.351517pt;}
.y7e{bottom:551.223561pt;}
.y15e{bottom:559.185292pt;}
.y129{bottom:562.152107pt;}
.y1b{bottom:562.945480pt;}
.y44{bottom:565.769622pt;}
.ya4{bottom:566.292314pt;}
.y7d{bottom:567.164358pt;}
.y15d{bottom:571.140557pt;}
.y128{bottom:578.094238pt;}
.y1a{bottom:578.886277pt;}
.y43{bottom:581.710419pt;}
.ya3{bottom:582.233111pt;}
.y15c{bottom:583.095821pt;}
.y7c{bottom:583.106488pt;}
.y127{bottom:594.035035pt;}
.y19{bottom:594.827074pt;}
.y15b{bottom:595.052419pt;}
.y42{bottom:597.651216pt;}
.ya2{bottom:598.175242pt;}
.y7b{bottom:599.047285pt;}
.y15a{bottom:607.007683pt;}
.y126{bottom:609.975832pt;}
.y18{bottom:610.767871pt;}
.y41{bottom:613.593346pt;}
.ya1{bottom:614.116039pt;}
.y7a{bottom:619.172292pt;}
.y125{bottom:625.916629pt;}
.y17{bottom:626.708668pt;}
.y159{bottom:626.735336pt;}
.y40{bottom:629.534143pt;}
.ya0{bottom:630.056836pt;}
.y124{bottom:641.765421pt;}
.y16{bottom:642.649465pt;}
.y79{bottom:644.080204pt;}
.y3f{bottom:645.474940pt;}
.y9f{bottom:645.997633pt;}
.y123{bottom:657.706218pt;}
.y15{bottom:658.591596pt;}
.y78{bottom:660.021001pt;}
.y3e{bottom:661.415737pt;}
.y9e{bottom:666.733336pt;}
.y158{bottom:670.970881pt;}
.y122{bottom:673.648349pt;}
.y77{bottom:675.961798pt;}
.y3d{bottom:677.356534pt;}
.y14{bottom:680.488691pt;}
.y157{bottom:684.519559pt;}
.y121{bottom:689.589146pt;}
.y76{bottom:691.903928pt;}
.y9d{bottom:693.123989pt;}
.y3c{bottom:693.298664pt;}
.y156{bottom:696.474823pt;}
.y120{bottom:705.529943pt;}
.y75{bottom:707.844725pt;}
.y9c{bottom:709.064786pt;}
.y3b{bottom:709.239461pt;}
.y13{bottom:711.600913pt;}
.y14c{bottom:713.291664pt;}
.y155{bottom:717.597213pt;}
.y11f{bottom:721.470740pt;}
.y74{bottom:723.785522pt;}
.y12{bottom:724.884244pt;}
.y9b{bottom:725.005583pt;}
.y3a{bottom:725.180258pt;}
.yd4{bottom:728.995116pt;}
.y14b{bottom:729.232461pt;}
.y11e{bottom:737.411537pt;}
.y11{bottom:738.168908pt;}
.y73{bottom:739.726319pt;}
.y9a{bottom:740.946380pt;}
.y39{bottom:741.121055pt;}
.yd3{bottom:744.935913pt;}
.y14a{bottom:745.174591pt;}
.y154{bottom:747.088020pt;}
.y10{bottom:751.748253pt;}
.y11d{bottom:753.352334pt;}
.y72{bottom:755.667116pt;}
.y99{bottom:756.887177pt;}
.y38{bottom:757.061852pt;}
.yd2{bottom:760.876710pt;}
.y149{bottom:761.115388pt;}
.y153{bottom:763.028817pt;}
.yf{bottom:765.032918pt;}
.y11c{bottom:769.294464pt;}
.y71{bottom:771.607913pt;}
.y98{bottom:772.827974pt;}
.y37{bottom:773.002649pt;}
.yd1{bottom:776.817507pt;}
.y148{bottom:777.056185pt;}
.ye{bottom:778.317582pt;}
.y152{bottom:778.969614pt;}
.y11b{bottom:785.235261pt;}
.y70{bottom:787.550043pt;}
.y97{bottom:788.770104pt;}
.y36{bottom:788.944780pt;}
.yd{bottom:791.600913pt;}
.yd0{bottom:792.758304pt;}
.y147{bottom:792.996982pt;}
.y11a{bottom:801.176058pt;}
.y6f{bottom:803.490840pt;}
.y96{bottom:804.710901pt;}
.yc{bottom:804.885577pt;}
.y146{bottom:808.937779pt;}
.yb6{bottom:811.888594pt;}
.y119{bottom:817.024850pt;}
.yb{bottom:818.170241pt;}
.y6e{bottom:819.431637pt;}
.y95{bottom:820.651698pt;}
.y35{bottom:820.826374pt;}
.y145{bottom:824.878576pt;}
.ya{bottom:831.453572pt;}
.y118{bottom:832.965647pt;}
.y6d{bottom:835.372434pt;}
.y94{bottom:836.592495pt;}
.y34{bottom:836.767171pt;}
.y13e{bottom:844.008866pt;}
.y9{bottom:844.738236pt;}
.y117{bottom:848.906444pt;}
.y6c{bottom:851.313231pt;}
.y93{bottom:852.533292pt;}
.y33{bottom:852.707968pt;}
.y8{bottom:858.021567pt;}
.y116{bottom:864.848575pt;}
.y6b{bottom:867.254028pt;}
.y32{bottom:868.648765pt;}
.y7{bottom:871.306231pt;}
.y115{bottom:880.789372pt;}
.y6a{bottom:883.196159pt;}
.y92{bottom:884.589562pt;}
.y6{bottom:884.590895pt;}
.y114{bottom:896.730169pt;}
.y69{bottom:899.136956pt;}
.y91{bottom:900.531692pt;}
.y113{bottom:912.670966pt;}
.y68{bottom:915.077753pt;}
.y90{bottom:916.472489pt;}
.y67{bottom:931.018550pt;}
.y8f{bottom:932.413286pt;}
.y5{bottom:932.463955pt;}
.y66{bottom:946.959347pt;}
.y8e{bottom:948.354083pt;}
.y4{bottom:950.218176pt;}
.y112{bottom:955.926462pt;}
.y65{bottom:962.901477pt;}
.y8d{bottom:964.294880pt;}
.y111{bottom:967.883060pt;}
.y3{bottom:967.972397pt;}
.y64{bottom:978.842274pt;}
.y110{bottom:979.838324pt;}
.y8c{bottom:980.235677pt;}
.y2{bottom:985.726618pt;}
.y10f{bottom:991.793588pt;}
.y8b{bottom:996.177808pt;}
.y63{bottom:998.967280pt;}
.y10e{bottom:1003.750186pt;}
.y8a{bottom:1012.118605pt;}
.y10d{bottom:1015.705451pt;}
.y62{bottom:1019.092287pt;}
.y1{bottom:1027.571377pt;}
.y10c{bottom:1027.660715pt;}
.y89{bottom:1028.059402pt;}
.y61{bottom:1044.000199pt;}
.y10b{bottom:1048.783104pt;}
.h19{height:19.424615pt;}
.h14{height:19.759778pt;}
.h18{height:25.899486pt;}
.h13{height:26.346487pt;}
.h21{height:29.161397pt;}
.h16{height:29.913824pt;}
.h17{height:29.914226pt;}
.h11{height:30.429984pt;}
.h12{height:30.430100pt;}
.h10{height:30.430332pt;}
.ha{height:30.625000pt;}
.h7{height:30.904241pt;}
.h1a{height:30.904280pt;}
.h22{height:31.117624pt;}
.h9{height:31.540303pt;}
.he{height:31.540342pt;}
.h1b{height:31.881994pt;}
.h5{height:34.097935pt;}
.hc{height:36.451655pt;}
.h6{height:38.630252pt;}
.hb{height:38.937500pt;}
.hd{height:39.852393pt;}
.h4{height:42.493394pt;}
.h3{height:42.781408pt;}
.h1f{height:47.062739pt;}
.h8{height:47.177559pt;}
.h1d{height:47.182892pt;}
.h20{height:65.944366pt;}
.h1c{height:84.841309pt;}
.h2{height:92.712800pt;}
.h1e{height:211.151778pt;}
.hf{height:243.274453pt;}
.h15{height:271.925276pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:274.185840pt;}
.w3{width:308.451181pt;}
.w4{width:329.033303pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x15{left:-0.982721pt;}
.x0{left:0.000000pt;}
.x12{left:10.865364pt;}
.x13{left:12.866064pt;}
.xd{left:23.466680pt;}
.x30{left:45.731894pt;}
.x2d{left:51.030559pt;}
.x7{left:54.121373pt;}
.x35{left:56.992184pt;}
.xf{left:62.811141pt;}
.x9{left:64.748571pt;}
.x6{left:67.404704pt;}
.x20{left:74.887917pt;}
.x2e{left:75.904477pt;}
.x10{left:77.549211pt;}
.x11{left:84.410888pt;}
.x1e{left:85.879572pt;}
.x1f{left:87.391811pt;}
.x1c{left:91.964650pt;}
.x1b{left:94.048526pt;}
.x1d{left:104.468172pt;}
.x25{left:110.623760pt;}
.x1{left:113.136324pt;}
.x36{left:115.438154pt;}
.x14{left:117.213584pt;}
.x17{left:120.626587pt;}
.xe{left:124.252000pt;}
.x2a{left:134.444792pt;}
.x29{left:135.438291pt;}
.x2b{left:137.153745pt;}
.x27{left:141.458689pt;}
.x26{left:143.508599pt;}
.x2c{left:148.623577pt;}
.x2{left:151.407571pt;}
.x28{left:153.751802pt;}
.x2f{left:166.594441pt;}
.x8{left:169.667150pt;}
.x37{left:184.854565pt;}
.x18{left:191.635814pt;}
.x5{left:208.527760pt;}
.x24{left:215.580624pt;}
.x1a{left:217.001822pt;}
.x19{left:219.085418pt;}
.x23{left:239.792183pt;}
.x22{left:241.842106pt;}
.x3{left:249.383136pt;}
.x16{left:250.585964pt;}
.x4{left:271.317566pt;}
.x21{left:272.321696pt;}
.xc{left:390.941333pt;}
.xa{left:404.822908pt;}
.x3b{left:410.136507pt;}
.xb{left:418.107572pt;}
.x32{left:428.332083pt;}
.x39{left:455.044085pt;}
.x38{left:466.854009pt;}
.x3d{left:473.957031pt;}
.x31{left:481.952097pt;}
.x33{left:492.536626pt;}
.x34{left:521.996766pt;}
.x3a{left:535.009417pt;}
.x3c{left:602.511458pt;}
}




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