
    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_531e28a9545f04bdcb201406.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.108887;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_dd40f3b412a012a9085daa09.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_c56e3b262f84b7563150d119.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.108887;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_e35bee67e64564cf23e42f72.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.707520;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_0f95324afea74f858c2f6392.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.979980;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_ff3c12d8478fc6e1462859c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_8fcd0de7f4ea0d52ded15e04.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.066406;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_ab711f1d3f9b1431a4f451ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.066406;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_c5e30702988f9fd2a00a8080.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.767578;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);}
.m4{transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250676,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.251116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251116,0.000000,0.000000,0.250000,0,0);}
.v16{vertical-align:-41.687371px;}
.v7{vertical-align:-36.000000px;}
.v5{vertical-align:-29.520000px;}
.v3{vertical-align:-26.640000px;}
.ve{vertical-align:-22.187446px;}
.vb{vertical-align:-18.648604px;}
.v14{vertical-align:-4.876072px;}
.vc{vertical-align:-3.140817px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:3.526239px;}
.v8{vertical-align:23.040000px;}
.v4{vertical-align:26.640000px;}
.v10{vertical-align:32.930840px;}
.v15{vertical-align:41.687371px;}
.v1{vertical-align:49.200000px;}
.va{vertical-align:50.253079px;}
.v2{vertical-align:52.800000px;}
.vd{vertical-align:61.245123px;}
.v13{vertical-align:62.531980px;}
.v6{vertical-align:65.520000px;}
.v9{vertical-align:68.901683px;}
.v11{vertical-align:72.634690px;}
.vf{vertical-align:81.976772px;}
.ls44{letter-spacing:-0.456000px;}
.ls3a{letter-spacing:-0.360000px;}
.ls3f{letter-spacing:-0.252000px;}
.ls11{letter-spacing:-0.240000px;}
.ls4d{letter-spacing:-0.224928px;}
.ls40{letter-spacing:-0.216000px;}
.ls42{letter-spacing:-0.204000px;}
.ls31{letter-spacing:-0.175800px;}
.ls3{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.123000px;}
.ls2e{letter-spacing:-0.114000px;}
.ls28{letter-spacing:-0.092400px;}
.ls4{letter-spacing:-0.072000px;}
.ls2a{letter-spacing:-0.061200px;}
.lsc{letter-spacing:-0.060600px;}
.ls25{letter-spacing:-0.058680px;}
.ls26{letter-spacing:-0.054000px;}
.ls2b{letter-spacing:-0.053640px;}
.ls1{letter-spacing:-0.042000px;}
.ls4c{letter-spacing:-0.039669px;}
.ls0{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.000006px;}
.ls1c{letter-spacing:0.030240px;}
.lsf{letter-spacing:0.036000px;}
.ls1d{letter-spacing:0.040320px;}
.ls20{letter-spacing:0.052920px;}
.ls41{letter-spacing:0.054000px;}
.ls15{letter-spacing:0.055800px;}
.ls21{letter-spacing:0.057600px;}
.ls2f{letter-spacing:0.060480px;}
.ls14{letter-spacing:0.060600px;}
.ls27{letter-spacing:0.061800px;}
.ls30{letter-spacing:0.066600px;}
.ls2{letter-spacing:0.072000px;}
.ls43{letter-spacing:0.085800px;}
.ls1a{letter-spacing:0.090360px;}
.lse{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.113760px;}
.ls3d{letter-spacing:0.114600px;}
.ls65{letter-spacing:0.119464px;}
.ls4e{letter-spacing:0.123315px;}
.lsd{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.144600px;}
.ls45{letter-spacing:0.156000px;}
.ls1e{letter-spacing:0.162600px;}
.ls29{letter-spacing:0.170400px;}
.ls1b{letter-spacing:0.181800px;}
.ls32{letter-spacing:0.306000px;}
.ls49{letter-spacing:0.911884px;}
.ls4b{letter-spacing:0.944601px;}
.ls67{letter-spacing:1.787081px;}
.ls55{letter-spacing:2.135834px;}
.ls51{letter-spacing:4.317910px;}
.ls63{letter-spacing:4.319713px;}
.ls60{letter-spacing:5.477895px;}
.ls66{letter-spacing:5.681112px;}
.ls5e{letter-spacing:5.692761px;}
.ls68{letter-spacing:5.969532px;}
.ls5b{letter-spacing:6.653309px;}
.ls5d{letter-spacing:6.888391px;}
.ls62{letter-spacing:8.973339px;}
.ls54{letter-spacing:22.335284px;}
.ls18{letter-spacing:22.896000px;}
.ls61{letter-spacing:23.101570px;}
.ls38{letter-spacing:23.160000px;}
.ls5a{letter-spacing:23.481464px;}
.ls52{letter-spacing:23.503044px;}
.ls5c{letter-spacing:25.674785px;}
.ls12{letter-spacing:26.112240px;}
.ls16{letter-spacing:26.447040px;}
.ls5f{letter-spacing:28.986158px;}
.ls50{letter-spacing:29.341846px;}
.ls58{letter-spacing:29.358529px;}
.ls53{letter-spacing:30.094584px;}
.ls59{letter-spacing:30.161572px;}
.ls35{letter-spacing:31.260000px;}
.ls64{letter-spacing:31.280004px;}
.ls24{letter-spacing:31.620000px;}
.ls4f{letter-spacing:39.350719px;}
.ls57{letter-spacing:39.534081px;}
.ls4a{letter-spacing:50.066986px;}
.ls47{letter-spacing:54.000000px;}
.ls7{letter-spacing:57.540000px;}
.ls5{letter-spacing:57.600000px;}
.ls8{letter-spacing:57.660000px;}
.ls9{letter-spacing:57.720000px;}
.ls17{letter-spacing:59.940000px;}
.ls6{letter-spacing:63.540000px;}
.lsb{letter-spacing:69.600000px;}
.lsa{letter-spacing:69.660000px;}
.ls23{letter-spacing:69.780000px;}
.ls36{letter-spacing:75.540000px;}
.ls33{letter-spacing:75.600000px;}
.ls39{letter-spacing:75.660000px;}
.ls19{letter-spacing:75.720000px;}
.ls2c{letter-spacing:78.660000px;}
.ls3e{letter-spacing:81.480000px;}
.ls37{letter-spacing:81.540000px;}
.ls2d{letter-spacing:84.600000px;}
.ls3b{letter-spacing:91.800000px;}
.ls3c{letter-spacing:93.942000px;}
.ls46{letter-spacing:97.200000px;}
.ls48{letter-spacing:291.484742px;}
.ls56{letter-spacing:373.416110px;}
.ls10{letter-spacing:510.456000px;}
.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;}
}
.wsa9{word-spacing:-57.288000px;}
.ws0{word-spacing:-52.106040px;}
.ws60{word-spacing:-46.944000px;}
.ws61{word-spacing:-46.872000px;}
.wsbb{word-spacing:-39.423045px;}
.wsb8{word-spacing:-38.012861px;}
.wsb4{word-spacing:-37.683625px;}
.ws5e{word-spacing:-31.274040px;}
.wsbd{word-spacing:-28.756637px;}
.ws7{word-spacing:-28.670040px;}
.wsb6{word-spacing:-27.465722px;}
.ws5a{word-spacing:-26.176560px;}
.ws13{word-spacing:-26.013960px;}
.ws56{word-spacing:-25.960320px;}
.ws9b{word-spacing:-23.436006px;}
.ws14{word-spacing:-23.436000px;}
.ws8b{word-spacing:-22.222560px;}
.ws5d{word-spacing:-22.107960px;}
.wsa0{word-spacing:-20.943840px;}
.wsb{word-spacing:-20.884080px;}
.ws87{word-spacing:-20.858040px;}
.ws9e{word-spacing:-20.680080px;}
.ws9{word-spacing:-19.556040px;}
.ws8{word-spacing:-19.530000px;}
.ws17{word-spacing:-17.368680px;}
.ws11{word-spacing:-15.624000px;}
.wsb9{word-spacing:-14.531398px;}
.ws22{word-spacing:-14.440560px;}
.ws18{word-spacing:-14.295960px;}
.ws2c{word-spacing:-14.172960px;}
.wsac{word-spacing:-9.140040px;}
.wsae{word-spacing:-3.651986px;}
.ws7d{word-spacing:-1.548000px;}
.ws88{word-spacing:-1.475760px;}
.ws73{word-spacing:-1.332000px;}
.ws52{word-spacing:-1.204560px;}
.ws32{word-spacing:-1.083960px;}
.ws71{word-spacing:-1.008000px;}
.ws7c{word-spacing:-0.936000px;}
.ws34{word-spacing:-0.925920px;}
.ws7b{word-spacing:-0.924000px;}
.ws31{word-spacing:-0.869040px;}
.ws74{word-spacing:-0.828000px;}
.ws5f{word-spacing:-0.816000px;}
.ws66{word-spacing:-0.783720px;}
.ws51{word-spacing:-0.650880px;}
.ws7a{word-spacing:-0.648000px;}
.ws5c{word-spacing:-0.600000px;}
.ws5b{word-spacing:-0.576000px;}
.ws33{word-spacing:-0.569520px;}
.ws10{word-spacing:-0.480120px;}
.wsa6{word-spacing:-0.468000px;}
.ws89{word-spacing:-0.396000px;}
.ws4e{word-spacing:-0.366840px;}
.ws70{word-spacing:-0.360017px;}
.ws4b{word-spacing:-0.345240px;}
.ws30{word-spacing:-0.343440px;}
.ws4f{word-spacing:-0.341880px;}
.wsa7{word-spacing:-0.324000px;}
.ws9f{word-spacing:-0.311760px;}
.ws75{word-spacing:-0.288000px;}
.wsa8{word-spacing:-0.240000px;}
.ws7e{word-spacing:-0.216000px;}
.wsa1{word-spacing:-0.182520px;}
.ws62{word-spacing:-0.167280px;}
.ws36{word-spacing:-0.166680px;}
.ws6f{word-spacing:-0.144000px;}
.ws15{word-spacing:-0.119880px;}
.wsbc{word-spacing:-0.112637px;}
.wsb7{word-spacing:-0.107667px;}
.wsb1{word-spacing:-0.090691px;}
.ws9d{word-spacing:-0.075600px;}
.ws28{word-spacing:-0.070200px;}
.wsaf{word-spacing:-0.051022px;}
.ws43{word-spacing:-0.038160px;}
.ws72{word-spacing:-0.000017px;}
.ws1{word-spacing:0.000000px;}
.ws2f{word-spacing:0.008640px;}
.ws23{word-spacing:0.011160px;}
.ws1a{word-spacing:0.012000px;}
.ws26{word-spacing:0.052920px;}
.ws79{word-spacing:0.072000px;}
.ws84{word-spacing:0.089760px;}
.ws20{word-spacing:0.096120px;}
.ws7f{word-spacing:0.105840px;}
.ws83{word-spacing:0.107640px;}
.ws94{word-spacing:0.107977px;}
.ws2e{word-spacing:0.128640px;}
.ws27{word-spacing:0.150120px;}
.ws1d{word-spacing:0.158520px;}
.wsb0{word-spacing:0.158971px;}
.ws29{word-spacing:0.162000px;}
.ws9c{word-spacing:0.162360px;}
.ws24{word-spacing:0.166080px;}
.ws59{word-spacing:0.167520px;}
.ws1c{word-spacing:0.185760px;}
.ws21{word-spacing:0.191520px;}
.ws1b{word-spacing:0.208560px;}
.ws19{word-spacing:0.219360px;}
.ws25{word-spacing:0.270120px;}
.ws54{word-spacing:0.294960px;}
.ws69{word-spacing:0.296040px;}
.ws85{word-spacing:0.306480px;}
.ws2d{word-spacing:0.323640px;}
.ws48{word-spacing:0.327240px;}
.ws80{word-spacing:0.372600px;}
.ws57{word-spacing:0.387360px;}
.ws50{word-spacing:0.409680px;}
.ws78{word-spacing:0.412920px;}
.ws1e{word-spacing:0.426960px;}
.ws42{word-spacing:0.435600px;}
.ws41{word-spacing:0.448920px;}
.ws68{word-spacing:0.450360px;}
.ws2a{word-spacing:0.468000px;}
.ws82{word-spacing:0.468120px;}
.ws4c{word-spacing:0.473400px;}
.ws77{word-spacing:0.546480px;}
.ws35{word-spacing:0.552000px;}
.ws2b{word-spacing:0.563760px;}
.ws44{word-spacing:0.567360px;}
.ws55{word-spacing:0.575400px;}
.ws58{word-spacing:0.581880px;}
.ws45{word-spacing:0.605880px;}
.ws1f{word-spacing:0.621720px;}
.ws81{word-spacing:0.655680px;}
.ws6a{word-spacing:0.697320px;}
.ws76{word-spacing:0.804960px;}
.ws86{word-spacing:0.934200px;}
.ws3a{word-spacing:0.935640px;}
.ws4d{word-spacing:0.961680px;}
.ws46{word-spacing:0.989640px;}
.ws47{word-spacing:1.031880px;}
.ws53{word-spacing:1.156080px;}
.ws49{word-spacing:1.325160px;}
.ws16{word-spacing:1.464600px;}
.ws67{word-spacing:1.522800px;}
.ws6e{word-spacing:1.641600px;}
.ws4a{word-spacing:2.148120px;}
.ws64{word-spacing:8.355600px;}
.ws65{word-spacing:8.364960px;}
.ws63{word-spacing:8.594280px;}
.wsa5{word-spacing:16.956000px;}
.wsa3{word-spacing:17.172000px;}
.ws8c{word-spacing:17.184000px;}
.wsa4{word-spacing:17.904000px;}
.ws8d{word-spacing:17.999983px;}
.wsb3{word-spacing:19.199817px;}
.wsb2{word-spacing:20.678357px;}
.ws93{word-spacing:21.936000px;}
.ws91{word-spacing:22.068000px;}
.ws92{word-spacing:22.464000px;}
.wsb5{word-spacing:28.848350px;}
.ws96{word-spacing:29.268000px;}
.ws98{word-spacing:29.340000px;}
.ws97{word-spacing:29.879983px;}
.wsba{word-spacing:30.335022px;}
.wsa2{word-spacing:53.676000px;}
.ws3f{word-spacing:56.506680px;}
.ws3e{word-spacing:56.713680px;}
.ws3b{word-spacing:56.810520px;}
.ws40{word-spacing:57.051720px;}
.ws3c{word-spacing:57.207240px;}
.ws3d{word-spacing:57.300480px;}
.ws8f{word-spacing:58.176000px;}
.ws90{word-spacing:58.319983px;}
.ws99{word-spacing:58.644000px;}
.ws95{word-spacing:61.020000px;}
.ws38{word-spacing:70.363440px;}
.ws37{word-spacing:71.004960px;}
.ws39{word-spacing:71.115600px;}
.ws5{word-spacing:71.928000px;}
.ws9a{word-spacing:72.288000px;}
.ws8a{word-spacing:74.628000px;}
.ws6{word-spacing:78.192000px;}
.ws4{word-spacing:78.912000px;}
.ws6c{word-spacing:80.355600px;}
.ws6d{word-spacing:80.961840px;}
.ws6b{word-spacing:80.968680px;}
.ws3{word-spacing:81.720000px;}
.ws2{word-spacing:98.091720px;}
.ws8e{word-spacing:118.260000px;}
.wsad{word-spacing:296.896800px;}
.wsc{word-spacing:394.379640px;}
.wse{word-spacing:433.979640px;}
.wsf{word-spacing:458.791680px;}
.ws12{word-spacing:485.760000px;}
.wsa{word-spacing:529.680000px;}
.wsaa{word-spacing:535.224000px;}
.wsd{word-spacing:554.118240px;}
.wsab{word-spacing:582.319920px;}
._a{margin-left:-14.175120px;}
._b{margin-left:-7.656000px;}
._6{margin-left:-5.522760px;}
._9{margin-left:-3.556440px;}
._0{margin-left:-1.680840px;}
._1{width:1.170000px;}
._f{width:2.426400px;}
._20{width:4.622013px;}
._1f{width:6.433948px;}
._1c{width:22.312200px;}
._16{width:23.635200px;}
._11{width:24.808800px;}
._e{width:27.667920px;}
._15{width:35.550840px;}
._1b{width:46.872000px;}
._14{width:48.016800px;}
._1a{width:82.728000px;}
._13{width:84.015720px;}
._12{width:97.732440px;}
._1e{width:198.360840px;}
._17{width:257.760000px;}
._18{width:259.335360px;}
._c{width:327.374040px;}
._d{width:354.026640px;}
._4{width:394.966920px;}
._19{width:431.220000px;}
._10{width:470.504280px;}
._8{width:515.753040px;}
._7{width:522.750600px;}
._5{width:566.326920px;}
._2{width:591.120000px;}
._3{width:644.956440px;}
._1d{width:807.609000px;}
.fc7{color:rgb(50,174,81);}
.fc5{color:transparent;}
.fc4{color:rgb(7,62,135);}
.fc8{color:rgb(5,46,101);}
.fc3{color:rgb(49,182,253);}
.fc1{color:rgb(255,0,0);}
.fc6{color:rgb(0,0,0);}
.fc2{color:rgb(6,67,107);}
.fc0{color:rgb(255,255,255);}
.fs1c{font-size:42.120000px;}
.fs3{font-size:65.880000px;}
.fs1e{font-size:65.957167px;}
.fs14{font-size:66.000000px;}
.fs11{font-size:72.000000px;}
.fs15{font-size:72.120000px;}
.fs20{font-size:78.473492px;}
.fs22{font-size:79.222846px;}
.fs12{font-size:79.920000px;}
.fs13{font-size:80.040000px;}
.fs24{font-size:82.161820px;}
.fs2{font-size:83.880000px;}
.fs1{font-size:90.000000px;}
.fs8{font-size:90.120000px;}
.fs1d{font-size:90.691104px;}
.fsa{font-size:96.120000px;}
.fsb{font-size:96.240000px;}
.fs18{font-size:101.880000px;}
.fs19{font-size:102.000000px;}
.fs1f{font-size:107.667499px;}
.fsf{font-size:108.000000px;}
.fs1a{font-size:108.120000px;}
.fs21{font-size:108.608175px;}
.fs23{font-size:112.637272px;}
.fsc{font-size:119.880000px;}
.fsd{font-size:120.000000px;}
.fs7{font-size:132.120000px;}
.fs5{font-size:144.000000px;}
.fs4{font-size:144.120000px;}
.fs1b{font-size:168.120000px;}
.fs10{font-size:191.880000px;}
.fs17{font-size:216.000000px;}
.fs16{font-size:216.120000px;}
.fs0{font-size:240.120000px;}
.fs9{font-size:240.240000px;}
.fse{font-size:263.880000px;}
.fs6{font-size:264.000000px;}
.y0{bottom:0.000000px;}
.y199{bottom:13.947447px;}
.y194{bottom:14.632846px;}
.y195{bottom:15.418041px;}
.y1a9{bottom:21.021225px;}
.y176{bottom:25.890000px;}
.y193{bottom:29.944135px;}
.y198{bottom:32.106129px;}
.y152{bottom:35.040000px;}
.y19c{bottom:35.439938px;}
.y90{bottom:50.730000px;}
.y10d{bottom:51.060000px;}
.y1a7{bottom:51.090000px;}
.y60{bottom:52.140000px;}
.y175{bottom:58.290000px;}
.y9c{bottom:59.760000px;}
.y8f{bottom:68.820000px;}
.yac{bottom:71.550000px;}
.y151{bottom:71.760000px;}
.y163{bottom:74.310000px;}
.y13d{bottom:74.940000px;}
.y10c{bottom:77.430000px;}
.y9b{bottom:77.940000px;}
.y8{bottom:78.600000px;}
.y7b{bottom:81.060000px;}
.yfc{bottom:82.170000px;}
.y160{bottom:83.850000px;}
.y65{bottom:85.080000px;}
.y1a6{bottom:85.650000px;}
.y63{bottom:86.190000px;}
.y8e{bottom:87.000000px;}
.yfe{bottom:90.660000px;}
.yab{bottom:91.350000px;}
.y116{bottom:94.650000px;}
.y56{bottom:94.680000px;}
.y17f{bottom:94.710000px;}
.y174{bottom:97.890000px;}
.y7{bottom:98.400000px;}
.y5f{bottom:103.200000px;}
.y10b{bottom:103.830000px;}
.y13c{bottom:104.100000px;}
.y5d{bottom:104.280000px;}
.y17e{bottom:106.230000px;}
.y150{bottom:108.480000px;}
.yfb{bottom:110.160000px;}
.y15f{bottom:116.250000px;}
.y12d{bottom:116.970000px;}
.y6{bottom:118.200000px;}
.y1a5{bottom:121.020000px;}
.y173{bottom:130.320000px;}
.y121{bottom:133.380000px;}
.y115{bottom:133.530000px;}
.y64{bottom:136.110000px;}
.y62{bottom:137.220000px;}
.y5{bottom:139.080000px;}
.y13b{bottom:139.770000px;}
.y96{bottom:140.280000px;}
.y10a{bottom:143.670000px;}
.yf8{bottom:144.450000px;}
.y55{bottom:144.630000px;}
.y14f{bottom:145.200000px;}
.y9a{bottom:149.310000px;}
.yb2{bottom:154.170000px;}
.y5e{bottom:154.230000px;}
.y15e{bottom:154.320000px;}
.y5c{bottom:155.310000px;}
.ya8{bottom:156.420000px;}
.y3f{bottom:156.480000px;}
.y8d{bottom:158.310000px;}
.y95{bottom:158.370000px;}
.y1a4{bottom:159.900000px;}
.yed{bottom:160.050000px;}
.y24{bottom:162.450000px;}
.y99{bottom:167.400000px;}
.y172{bottom:169.920000px;}
.y109{bottom:170.040000px;}
.y17d{bottom:172.020000px;}
.y120{bottom:172.260000px;}
.yf7{bottom:172.440000px;}
.y26{bottom:174.840000px;}
.y13a{bottom:175.410000px;}
.ya7{bottom:176.220000px;}
.y94{bottom:176.460000px;}
.y8c{bottom:176.520000px;}
.y6a{bottom:177.660000px;}
.y71{bottom:179.640000px;}
.yec{bottom:179.850000px;}
.yb1{bottom:180.540000px;}
.y14e{bottom:182.280000px;}
.y46{bottom:182.550000px;}
.y98{bottom:185.580000px;}
.y185{bottom:185.850000px;}
.y4{bottom:186.240000px;}
.y68{bottom:187.050000px;}
.y61{bottom:187.140000px;}
.y23{bottom:187.200000px;}
.y15d{bottom:188.910000px;}
.y93{bottom:194.640000px;}
.y12c{bottom:194.760000px;}
.ye7{bottom:196.200000px;}
.y108{bottom:196.410000px;}
.y1a3{bottom:198.810000px;}
.y25{bottom:199.500000px;}
.y3e{bottom:199.710000px;}
.yc5{bottom:202.050000px;}
.y5b{bottom:205.260000px;}
.y81{bottom:205.590000px;}
.ye9{bottom:206.100000px;}
.yfa{bottom:206.730000px;}
.ya5{bottom:208.740000px;}
.y171{bottom:209.520000px;}
.y139{bottom:211.050000px;}
.y11f{bottom:211.140000px;}
.y22{bottom:211.860000px;}
.y3{bottom:213.240000px;}
.y69{bottom:213.660000px;}
.y114{bottom:213.750000px;}
.y14d{bottom:214.680000px;}
.y191{bottom:215.280000px;}
.ye6{bottom:216.000000px;}
.y31{bottom:217.290000px;}
.y184{bottom:218.250000px;}
.yd5{bottom:218.520000px;}
.y13{bottom:220.080000px;}
.y54{bottom:221.160000px;}
.y70{bottom:222.840000px;}
.y15c{bottom:223.470000px;}
.ye8{bottom:225.900000px;}
.y12b{bottom:227.160000px;}
.y74{bottom:229.350000px;}
.y1a2{bottom:231.210000px;}
.y45{bottom:234.390000px;}
.yf9{bottom:234.720000px;}
.yc4{bottom:234.990000px;}
.ye5{bottom:235.800000px;}
.y107{bottom:236.280000px;}
.y17c{bottom:237.780000px;}
.y2d{bottom:238.380000px;}
.yaa{bottom:241.260000px;}
.y80{bottom:241.590000px;}
.y170{bottom:241.920000px;}
.y190{bottom:244.080000px;}
.yd4{bottom:245.520000px;}
.y14c{bottom:247.080000px;}
.y19{bottom:247.350000px;}
.y17b{bottom:249.300000px;}
.ya6{bottom:251.160000px;}
.y2c{bottom:251.550000px;}
.yeb{bottom:252.150000px;}
.y92{bottom:256.890000px;}
.y183{bottom:257.130000px;}
.y15b{bottom:258.840000px;}
.y14{bottom:259.680000px;}
.y30{bottom:260.490000px;}
.ya9{bottom:261.060000px;}
.y106{bottom:262.650000px;}
.y189{bottom:263.610000px;}
.y12a{bottom:265.230000px;}
.y8b{bottom:266.010000px;}
.y6f{bottom:266.040000px;}
.y12{bottom:267.600000px;}
.yc3{bottom:267.930000px;}
.yef{bottom:269.010000px;}
.yb0{bottom:270.240000px;}
.y113{bottom:271.800000px;}
.yea{bottom:271.950000px;}
.y18{bottom:272.040000px;}
.y53{bottom:272.190000px;}
.yd3{bottom:272.520000px;}
.y83{bottom:272.550000px;}
.y51{bottom:273.300000px;}
.y91{bottom:275.070000px;}
.y18f{bottom:278.640000px;}
.y16f{bottom:281.520000px;}
.y79{bottom:282.180000px;}
.y1b2{bottom:282.600000px;}
.yad{bottom:283.440000px;}
.y21{bottom:283.830000px;}
.yde{bottom:285.090000px;}
.y14b{bottom:285.960000px;}
.y1ae{bottom:286.110000px;}
.y44{bottom:286.230000px;}
.y11e{bottom:288.900000px;}
.y105{bottom:289.020000px;}
.y182{bottom:289.530000px;}
.y122{bottom:290.820000px;}
.y15a{bottom:291.240000px;}
.y1a1{bottom:292.500000px;}
.y129{bottom:294.030000px;}
.y3d{bottom:294.750000px;}
.yaf{bottom:296.610000px;}
.yee{bottom:297.000000px;}
.ye4{bottom:298.200000px;}
.yd2{bottom:299.520000px;}
.y5a{bottom:300.060000px;}
.y197{bottom:300.149980px;}
.y188{bottom:302.490000px;}
.y11{bottom:307.200000px;}
.y1c{bottom:307.500000px;}
.y130{bottom:308.340000px;}
.y2f{bottom:311.520000px;}
.y18e{bottom:314.010000px;}
.ya1{bottom:314.790000px;}
.y1b1{bottom:315.000000px;}
.y4c{bottom:315.090000px;}
.y82{bottom:315.750000px;}
.yf6{bottom:317.220000px;}
.y138{bottom:317.970000px;}
.ye3{bottom:318.000000px;}
.y14a{bottom:318.360000px;}
.y1e{bottom:319.890000px;}
.yd{bottom:320.130000px;}
.y1ad{bottom:320.670000px;}
.y52{bottom:323.250000px;}
.y78{bottom:323.760000px;}
.y18a{bottom:324.270000px;}
.y50{bottom:324.330000px;}
.y16c{bottom:324.660000px;}
.y1a8{bottom:326.249980px;}
.yd1{bottom:327.240000px;}
.y11d{bottom:327.780000px;}
.y181{bottom:328.410000px;}
.y128{bottom:328.590000px;}
.y159{bottom:330.120000px;}
.y1b{bottom:332.250000px;}
.y36{bottom:333.150000px;}
.y13f{bottom:334.260000px;}
.ya4{bottom:336.030000px;}
.y19b{bottom:336.528358px;}
.yfd{bottom:337.320000px;}
.ya0{bottom:337.410000px;}
.y43{bottom:338.100000px;}
.y2b{bottom:339.960000px;}
.y16b{bottom:340.680000px;}
.y187{bottom:341.370000px;}
.y104{bottom:342.060000px;}
.y59{bottom:343.260000px;}
.ye0{bottom:344.250000px;}
.y1d{bottom:344.550000px;}
.yf5{bottom:345.300000px;}
.yc2{bottom:346.530000px;}
.y3c{bottom:346.590000px;}
.y137{bottom:347.130000px;}
.y12f{bottom:347.220000px;}
.y149{bottom:350.790000px;}
.yd0{bottom:351.720000px;}
.y18d{bottom:352.080000px;}
.y4b{bottom:353.970000px;}
.y10{bottom:354.720000px;}
.y1ac{bottom:355.230000px;}
.y9f{bottom:355.500000px;}
.y1a{bottom:356.910000px;}
.y16d{bottom:357.060000px;}
.y77{bottom:358.620000px;}
.y7a{bottom:358.980000px;}
.y2e{bottom:359.040000px;}
.y158{bottom:362.520000px;}
.y127{bottom:363.150000px;}
.ydf{bottom:364.050000px;}
.y16e{bottom:364.410000px;}
.y8a{bottom:364.560000px;}
.y2a{bottom:366.330000px;}
.y11c{bottom:366.660000px;}
.y17{bottom:366.960000px;}
.y180{bottom:368.100000px;}
.y20{bottom:368.250000px;}
.y103{bottom:368.430000px;}
.y1b0{bottom:371.160000px;}
.y7f{bottom:371.220000px;}
.yc{bottom:371.970000px;}
.y13e{bottom:373.140000px;}
.yf4{bottom:373.290000px;}
.y9e{bottom:373.590000px;}
.y4f{bottom:374.280000px;}
.y35{bottom:376.350000px;}
.yc1{bottom:379.470000px;}
.y12e{bottom:379.620000px;}
.y186{bottom:380.250000px;}
.ycf{bottom:382.320000px;}
.y136{bottom:383.580000px;}
.ydc{bottom:384.570000px;}
.y17a{bottom:386.610000px;}
.y18c{bottom:386.640000px;}
.y196{bottom:386.730000px;}
.y148{bottom:389.670000px;}
.y3b{bottom:389.790000px;}
.y42{bottom:389.940000px;}
.ye2{bottom:390.300000px;}
.y9d{bottom:391.770000px;}
.y126{bottom:391.950000px;}
.y29{bottom:392.700000px;}
.y1f{bottom:392.910000px;}
.yf1{bottom:393.570000px;}
.y4a{bottom:393.660000px;}
.y16a{bottom:394.320000px;}
.y76{bottom:394.980000px;}
.yb8{bottom:395.610000px;}
.y6e{bottom:395.640000px;}
.yae{bottom:399.510000px;}
.y157{bottom:401.400000px;}
.yf{bottom:403.050000px;}
.y16{bottom:406.560000px;}
.yce{bottom:406.800000px;}
.y167{bottom:409.650000px;}
.y165{bottom:409.710000px;}
.ye1{bottom:410.100000px;}
.ybe{bottom:411.300000px;}
.y192{bottom:411.839959px;}
.yc0{bottom:412.410000px;}
.y1a0{bottom:412.650000px;}
.y7e{bottom:413.610000px;}
.y11a{bottom:418.500000px;}
.y162{bottom:419.130000px;}
.ya2{bottom:420.870000px;}
.yf0{bottom:421.560000px;}
.y18b{bottom:422.010000px;}
.ydb{bottom:423.450000px;}
.y135{bottom:423.720000px;}
.yb{bottom:423.810000px;}
.y1ab{bottom:425.160000px;}
.y19a{bottom:425.610000px;}
.yd8{bottom:425.700000px;}
.y169{bottom:426.720000px;}
.y125{bottom:427.320000px;}
.y147{bottom:428.550000px;}
.y67{bottom:429.000000px;}
.y58{bottom:429.660000px;}
.y156{bottom:433.800000px;}
.y102{bottom:434.640000px;}
.yb7{bottom:435.210000px;}
.ycd{bottom:437.400000px;}
.y34{bottom:437.490000px;}
.y75{bottom:438.180000px;}
.y6d{bottom:438.840000px;}
.y3a{bottom:441.630000px;}
.y41{bottom:441.780000px;}
.y166{bottom:442.050000px;}
.y164{bottom:442.110000px;}
.y11b{bottom:444.450000px;}
.y7d{bottom:446.010000px;}
.y6c{bottom:446.040000px;}
.y119{bottom:450.930000px;}
.y19f{bottom:451.530000px;}
.y179{bottom:452.400000px;}
.y112{bottom:453.240000px;}
.y89{bottom:454.020000px;}
.ybd{bottom:454.500000px;}
.y15{bottom:454.920000px;}
.y134{bottom:456.120000px;}
.y161{bottom:458.010000px;}
.y168{bottom:459.120000px;}
.y124{bottom:459.720000px;}
.y146{bottom:460.950000px;}
.y101{bottom:461.010000px;}
.yd7{bottom:461.700000px;}
.ycc{bottom:461.880000px;}
.y97{bottom:463.140000px;}
.y178{bottom:463.920000px;}
.y1af{bottom:466.200000px;}
.yb6{bottom:467.610000px;}
.yf3{bottom:469.860000px;}
.y88{bottom:472.200000px;}
.y155{bottom:472.680000px;}
.y57{bottom:472.860000px;}
.ya{bottom:475.650000px;}
.y38{bottom:475.800000px;}
.y49{bottom:480.060000px;}
.y33{bottom:480.720000px;}
.y1aa{bottom:481.320000px;}
.y6b{bottom:482.040000px;}
.y118{bottom:483.330000px;}
.y19e{bottom:483.930000px;}
.y7c{bottom:484.890000px;}
.y40{bottom:484.980000px;}
.ycb{bottom:486.360000px;}
.y73{bottom:488.580000px;}
.y111{bottom:492.120000px;}
.y145{bottom:493.350000px;}
.y39{bottom:493.470000px;}
.y133{bottom:495.000000px;}
.ybc{bottom:497.700000px;}
.yf2{bottom:497.850000px;}
.y123{bottom:498.600000px;}
.yd6{bottom:504.900000px;}
.y154{bottom:505.080000px;}
.yda{bottom:505.530000px;}
.ya3{bottom:505.710000px;}
.yb5{bottom:507.210000px;}
.yca{bottom:510.870000px;}
.y48{bottom:516.090000px;}
.y37{bottom:519.000000px;}
.y19d{bottom:522.840000px;}
.y32{bottom:523.920000px;}
.y72{bottom:524.580000px;}
.y100{bottom:527.250000px;}
.y132{bottom:527.430000px;}
.y9{bottom:527.520000px;}
.y144{bottom:528.990000px;}
.y177{bottom:529.680000px;}
.y110{bottom:531.030000px;}
.yc9{bottom:535.350000px;}
.y153{bottom:537.510000px;}
.yb4{bottom:539.610000px;}
.ybb{bottom:540.930000px;}
.yd9{bottom:544.440000px;}
.y87{bottom:552.600000px;}
.yff{bottom:553.620000px;}
.y66{bottom:558.600000px;}
.yc8{bottom:559.830000px;}
.y117{bottom:561.090000px;}
.y143{bottom:561.390000px;}
.y131{bottom:567.120000px;}
.y10f{bottom:569.910000px;}
.y86{bottom:570.780000px;}
.yb3{bottom:579.210000px;}
.yba{bottom:584.130000px;}
.y141{bottom:601.410000px;}
.y4e{bottom:621.060000px;}
.yc7{bottom:624.000000px;}
.y85{bottom:638.850000px;}
.y28{bottom:639.870000px;}
.y2{bottom:655.860000px;}
.y140{bottom:673.410000px;}
.ye{bottom:673.920000px;}
.ydd{bottom:675.900000px;}
.ybf{bottom:677.880000px;}
.y4d{bottom:683.070000px;}
.yc6{bottom:688.800000px;}
.y47{bottom:691.500000px;}
.y10e{bottom:697.200000px;}
.y84{bottom:710.850000px;}
.y27{bottom:711.900000px;}
.y1{bottom:727.860000px;}
.yb9{bottom:736.560000px;}
.y142{bottom:736.620000px;}
.h22{height:34.757227px;}
.h2d{height:47.046500px;}
.h4{height:54.363867px;}
.h16{height:54.462891px;}
.h23{height:57.797227px;}
.h17{height:59.414062px;}
.h18{height:59.513086px;}
.h2b{height:61.709240px;}
.h24{height:66.161688px;}
.h3{height:69.217383px;}
.h1d{height:69.931055px;}
.h1e{height:70.018359px;}
.h28{height:74.262276px;}
.h2{height:74.267578px;}
.h9{height:74.366602px;}
.h26{height:76.432054px;}
.hc{height:79.317773px;}
.hd{height:79.416797px;}
.h1b{height:84.070898px;}
.h1c{height:84.169922px;}
.h13{height:89.121094px;}
.h1f{height:89.220117px;}
.h10{height:98.924414px;}
.h11{height:99.023438px;}
.h15{height:101.949609px;}
.h2e{height:106.055098px;}
.h2c{height:106.966040px;}
.h8{height:109.024805px;}
.h6{height:118.828125px;}
.h5{height:118.927148px;}
.ha{height:123.467578px;}
.h27{height:126.875440px;}
.hf{height:131.997773px;}
.he{height:132.117773px;}
.h20{height:138.731836px;}
.h25{height:145.333737px;}
.h2a{height:154.279039px;}
.h21{height:154.641094px;}
.h14{height:158.338477px;}
.h29{height:172.716081px;}
.h1a{height:178.242188px;}
.h19{height:178.341211px;}
.h1{height:198.145898px;}
.hb{height:198.244922px;}
.h12{height:217.752539px;}
.h7{height:217.851562px;}
.h0{height:810.000000px;}
.w5{width:234.445568px;}
.w2{width:302.934648px;}
.w3{width:314.195770px;}
.w4{width:430.561146px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xe4{left:9.714279px;}
.xe1{left:11.830678px;}
.xe2{left:13.407009px;}
.xbf{left:32.009984px;}
.xbd{left:40.499984px;}
.xcb{left:49.019984px;}
.xd3{left:52.019984px;}
.x61{left:55.739984px;}
.x5a{left:57.509984px;}
.xc7{left:58.529984px;}
.x94{left:62.789984px;}
.xc2{left:64.409984px;}
.xc3{left:67.739984px;}
.xbb{left:71.999984px;}
.x3e{left:74.519984px;}
.x40{left:78.599984px;}
.x3f{left:80.099984px;}
.xcc{left:81.419984px;}
.x4f{left:83.039984px;}
.xcd{left:84.749984px;}
.x5d{left:89.909984px;}
.x25{left:91.529984px;}
.x5b{left:93.239984px;}
.xba{left:94.259984px;}
.x45{left:95.789984px;}
.x95{left:98.519984px;}
.xc4{left:100.139984px;}
.xd1{left:101.219984px;}
.x62{left:103.169984px;}
.x30{left:104.639984px;}
.x97{left:106.019984px;}
.xce{left:108.419984px;}
.x96{left:110.519984px;}
.x20{left:111.629984px;}
.x9{left:113.819984px;}
.x52{left:115.439984px;}
.x8f{left:118.049984px;}
.xa2{left:119.129984px;}
.x2f{left:121.379984px;}
.x1c{left:123.839984px;}
.x5c{left:125.669984px;}
.x26{left:127.289984px;}
.xaf{left:129.959984px;}
.x63{left:132.059984px;}
.x1b{left:136.259984px;}
.x2e{left:138.539984px;}
.xf{left:142.619984px;}
.xb0{left:143.999984px;}
.x37{left:146.219984px;}
.xc{left:149.549984px;}
.xdd{left:151.169984px;}
.x1{left:153.329984px;}
.xdf{left:157.109984px;}
.xc9{left:158.849984px;}
.x36{left:161.909984px;}
.xde{left:164.699984px;}
.x31{left:165.869984px;}
.xbc{left:170.309984px;}
.x5e{left:172.619984px;}
.x3d{left:174.599984px;}
.xd{left:181.949984px;}
.xbe{left:183.599984px;}
.x3a{left:186.449984px;}
.x3c{left:188.099984px;}
.x53{left:191.039984px;}
.x3{left:193.289984px;}
.x34{left:204.749984px;}
.x90{left:210.299984px;}
.x32{left:211.769984px;}
.xe5{left:220.859984px;}
.x42{left:225.509984px;}
.x41{left:227.639984px;}
.x4a{left:228.689984px;}
.x46{left:230.099984px;}
.x2c{left:232.739984px;}
.x29{left:235.079984px;}
.x33{left:236.969984px;}
.xd8{left:239.039984px;}
.xd7{left:240.119984px;}
.xe6{left:242.999984px;}
.xb1{left:245.459984px;}
.x39{left:247.769984px;}
.x28{left:249.389984px;}
.x91{left:258.989984px;}
.x22{left:260.189984px;}
.x47{left:262.859984px;}
.x23{left:264.959984px;}
.x57{left:266.639984px;}
.xda{left:271.439984px;}
.xd9{left:273.599984px;}
.x64{left:275.189984px;}
.x59{left:277.559984px;}
.xdb{left:278.819984px;}
.x65{left:281.039984px;}
.x66{left:283.919984px;}
.x55{left:285.479984px;}
.x2b{left:290.249984px;}
.xb{left:293.129984px;}
.xd4{left:296.909984px;}
.x2d{left:299.339984px;}
.x89{left:302.069984px;}
.xd6{left:306.089984px;}
.x2a{left:307.619984px;}
.xc0{left:309.689984px;}
.xc5{left:312.839984px;}
.x9b{left:318.179984px;}
.x44{left:321.179984px;}
.xc1{left:324.809984px;}
.x67{left:328.109984px;}
.x3b{left:329.819984px;}
.x35{left:330.839984px;}
.x4{left:336.959984px;}
.x98{left:338.789984px;}
.x38{left:343.979984px;}
.xd0{left:345.749984px;}
.x9c{left:350.489984px;}
.x10{left:354.689984px;}
.x7d{left:357.779984px;}
.x11{left:359.549984px;}
.xcf{left:361.889984px;}
.xb2{left:362.909984px;}
.x18{left:365.399984px;}
.x81{left:370.829984px;}
.x2{left:378.239984px;}
.xc8{left:382.559984px;}
.xc6{left:384.029984px;}
.xdc{left:387.599984px;}
.x58{left:388.649984px;}
.x19{left:390.509984px;}
.x12{left:392.489984px;}
.xca{left:395.129984px;}
.xe3{left:399.059959px;}
.x7c{left:407.819984px;}
.x5f{left:418.829984px;}
.x27{left:420.149984px;}
.xd5{left:426.779984px;}
.x60{left:433.259984px;}
.xa4{left:439.379984px;}
.xa{left:443.009984px;}
.xa3{left:449.009984px;}
.xae{left:458.819984px;}
.xaa{left:467.729984px;}
.x6a{left:469.709984px;}
.x6b{left:475.649984px;}
.xad{left:477.719984px;}
.x1d{left:479.939984px;}
.x1e{left:483.989984px;}
.x1f{left:485.069984px;}
.x6e{left:500.759984px;}
.x6f{left:504.989984px;}
.x6d{left:512.549984px;}
.x56{left:515.069984px;}
.xb4{left:518.189984px;}
.x6c{left:519.749984px;}
.xb3{left:531.779984px;}
.x8{left:541.619984px;}
.x70{left:543.689984px;}
.xb5{left:552.689984px;}
.x83{left:560.369984px;}
.x69{left:567.479984px;}
.x9a{left:569.879984px;}
.x7f{left:576.209984px;}
.x4b{left:578.429984px;}
.x8d{left:580.259984px;}
.x7{left:581.759984px;}
.x4c{left:584.009984px;}
.xd2{left:588.149984px;}
.x80{left:589.619984px;}
.x1a{left:594.659984px;}
.x82{left:598.799984px;}
.x8c{left:601.049984px;}
.x51{left:606.959984px;}
.xe0{left:608.039959px;}
.x13{left:609.689984px;}
.x7e{left:611.489984px;}
.x50{left:613.529984px;}
.x8b{left:615.449984px;}
.x99{left:619.829984px;}
.x14{left:621.659984px;}
.x8a{left:622.829984px;}
.x93{left:624.209984px;}
.x8e{left:628.949984px;}
.x92{left:632.309984px;}
.x84{left:637.139984px;}
.x6{left:638.729984px;}
.x9d{left:642.779984px;}
.xb6{left:647.189984px;}
.x71{left:650.669984px;}
.xb7{left:656.729984px;}
.xb8{left:658.079984px;}
.x54{left:662.489984px;}
.x24{left:674.609984px;}
.x72{left:685.679984px;}
.x5{left:691.469984px;}
.x48{left:694.889984px;}
.x21{left:698.549984px;}
.x68{left:711.659984px;}
.xe{left:725.219984px;}
.x73{left:730.199984px;}
.x4e{left:752.849984px;}
.x74{left:753.959984px;}
.x4d{left:754.979984px;}
.x49{left:756.989984px;}
.xa7{left:760.859984px;}
.x43{left:763.469984px;}
.xa8{left:765.629984px;}
.xb9{left:769.079984px;}
.xa6{left:777.329984px;}
.xa5{left:790.109984px;}
.xac{left:792.089984px;}
.xab{left:793.259984px;}
.x88{left:798.389984px;}
.x86{left:803.429984px;}
.x87{left:812.519984px;}
.x17{left:816.359984px;}
.xa9{left:828.629984px;}
.x85{left:830.609984px;}
.xa0{left:832.889984px;}
.x9f{left:839.909984px;}
.x15{left:842.279984px;}
.x16{left:854.789984px;}
.x75{left:860.129984px;}
.x9e{left:863.039984px;}
.x76{left:869.399984px;}
.x77{left:878.609984px;}
.xa1{left:887.789984px;}
.x79{left:894.959984px;}
.x7a{left:900.089984px;}
.x78{left:910.169984px;}
.x7b{left:918.359984px;}
@media print{
.v16{vertical-align:-37.055441pt;}
.v7{vertical-align:-32.000000pt;}
.v5{vertical-align:-26.240000pt;}
.v3{vertical-align:-23.680000pt;}
.ve{vertical-align:-19.722174pt;}
.vb{vertical-align:-16.576537pt;}
.v14{vertical-align:-4.334287pt;}
.vc{vertical-align:-2.791838pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:3.134435pt;}
.v8{vertical-align:20.480000pt;}
.v4{vertical-align:23.680000pt;}
.v10{vertical-align:29.271858pt;}
.v15{vertical-align:37.055441pt;}
.v1{vertical-align:43.733333pt;}
.va{vertical-align:44.669404pt;}
.v2{vertical-align:46.933333pt;}
.vd{vertical-align:54.440109pt;}
.v13{vertical-align:55.583982pt;}
.v6{vertical-align:58.240000pt;}
.v9{vertical-align:61.245941pt;}
.v11{vertical-align:64.564169pt;}
.vf{vertical-align:72.868242pt;}
.ls44{letter-spacing:-0.405333pt;}
.ls3a{letter-spacing:-0.320000pt;}
.ls3f{letter-spacing:-0.224000pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls4d{letter-spacing:-0.199936pt;}
.ls40{letter-spacing:-0.192000pt;}
.ls42{letter-spacing:-0.181333pt;}
.ls31{letter-spacing:-0.156267pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.109333pt;}
.ls2e{letter-spacing:-0.101333pt;}
.ls28{letter-spacing:-0.082133pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls2a{letter-spacing:-0.054400pt;}
.lsc{letter-spacing:-0.053867pt;}
.ls25{letter-spacing:-0.052160pt;}
.ls26{letter-spacing:-0.048000pt;}
.ls2b{letter-spacing:-0.047680pt;}
.ls1{letter-spacing:-0.037333pt;}
.ls4c{letter-spacing:-0.035261pt;}
.ls0{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.000005pt;}
.ls1c{letter-spacing:0.026880pt;}
.lsf{letter-spacing:0.032000pt;}
.ls1d{letter-spacing:0.035840pt;}
.ls20{letter-spacing:0.047040pt;}
.ls41{letter-spacing:0.048000pt;}
.ls15{letter-spacing:0.049600pt;}
.ls21{letter-spacing:0.051200pt;}
.ls2f{letter-spacing:0.053760pt;}
.ls14{letter-spacing:0.053867pt;}
.ls27{letter-spacing:0.054933pt;}
.ls30{letter-spacing:0.059200pt;}
.ls2{letter-spacing:0.064000pt;}
.ls43{letter-spacing:0.076267pt;}
.ls1a{letter-spacing:0.080320pt;}
.lse{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.101120pt;}
.ls3d{letter-spacing:0.101867pt;}
.ls65{letter-spacing:0.106190pt;}
.ls4e{letter-spacing:0.109614pt;}
.lsd{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.128533pt;}
.ls45{letter-spacing:0.138667pt;}
.ls1e{letter-spacing:0.144533pt;}
.ls29{letter-spacing:0.151467pt;}
.ls1b{letter-spacing:0.161600pt;}
.ls32{letter-spacing:0.272000pt;}
.ls49{letter-spacing:0.810564pt;}
.ls4b{letter-spacing:0.839645pt;}
.ls67{letter-spacing:1.588516pt;}
.ls55{letter-spacing:1.898519pt;}
.ls51{letter-spacing:3.838143pt;}
.ls63{letter-spacing:3.839744pt;}
.ls60{letter-spacing:4.869240pt;}
.ls66{letter-spacing:5.049877pt;}
.ls5e{letter-spacing:5.060232pt;}
.ls68{letter-spacing:5.306250pt;}
.ls5b{letter-spacing:5.914052pt;}
.ls5d{letter-spacing:6.123014pt;}
.ls62{letter-spacing:7.976301pt;}
.ls54{letter-spacing:19.853586pt;}
.ls18{letter-spacing:20.352000pt;}
.ls61{letter-spacing:20.534729pt;}
.ls38{letter-spacing:20.586667pt;}
.ls5a{letter-spacing:20.872412pt;}
.ls52{letter-spacing:20.891595pt;}
.ls5c{letter-spacing:22.822031pt;}
.ls12{letter-spacing:23.210880pt;}
.ls16{letter-spacing:23.508480pt;}
.ls5f{letter-spacing:25.765474pt;}
.ls50{letter-spacing:26.081641pt;}
.ls58{letter-spacing:26.096471pt;}
.ls53{letter-spacing:26.750741pt;}
.ls59{letter-spacing:26.810286pt;}
.ls35{letter-spacing:27.786667pt;}
.ls64{letter-spacing:27.804448pt;}
.ls24{letter-spacing:28.106667pt;}
.ls4f{letter-spacing:34.978417pt;}
.ls57{letter-spacing:35.141405pt;}
.ls4a{letter-spacing:44.503988pt;}
.ls47{letter-spacing:48.000000pt;}
.ls7{letter-spacing:51.146667pt;}
.ls5{letter-spacing:51.200000pt;}
.ls8{letter-spacing:51.253333pt;}
.ls9{letter-spacing:51.306667pt;}
.ls17{letter-spacing:53.280000pt;}
.ls6{letter-spacing:56.480000pt;}
.lsb{letter-spacing:61.866667pt;}
.lsa{letter-spacing:61.920000pt;}
.ls23{letter-spacing:62.026667pt;}
.ls36{letter-spacing:67.146667pt;}
.ls33{letter-spacing:67.200000pt;}
.ls39{letter-spacing:67.253333pt;}
.ls19{letter-spacing:67.306667pt;}
.ls2c{letter-spacing:69.920000pt;}
.ls3e{letter-spacing:72.426667pt;}
.ls37{letter-spacing:72.480000pt;}
.ls2d{letter-spacing:75.200000pt;}
.ls3b{letter-spacing:81.600000pt;}
.ls3c{letter-spacing:83.504000pt;}
.ls46{letter-spacing:86.400000pt;}
.ls48{letter-spacing:259.097549pt;}
.ls56{letter-spacing:331.925431pt;}
.ls10{letter-spacing:453.738667pt;}
.wsa9{word-spacing:-50.922667pt;}
.ws0{word-spacing:-46.316480pt;}
.ws60{word-spacing:-41.728000pt;}
.ws61{word-spacing:-41.664000pt;}
.wsbb{word-spacing:-35.042707pt;}
.wsb8{word-spacing:-33.789210pt;}
.wsb4{word-spacing:-33.496555pt;}
.ws5e{word-spacing:-27.799147pt;}
.wsbd{word-spacing:-25.561455pt;}
.ws7{word-spacing:-25.484480pt;}
.wsb6{word-spacing:-24.413975pt;}
.ws5a{word-spacing:-23.268053pt;}
.ws13{word-spacing:-23.123520pt;}
.ws56{word-spacing:-23.075840pt;}
.ws9b{word-spacing:-20.832005pt;}
.ws14{word-spacing:-20.832000pt;}
.ws8b{word-spacing:-19.753387pt;}
.ws5d{word-spacing:-19.651520pt;}
.wsa0{word-spacing:-18.616747pt;}
.wsb{word-spacing:-18.563627pt;}
.ws87{word-spacing:-18.540480pt;}
.ws9e{word-spacing:-18.382293pt;}
.ws9{word-spacing:-17.383147pt;}
.ws8{word-spacing:-17.360000pt;}
.ws17{word-spacing:-15.438827pt;}
.ws11{word-spacing:-13.888000pt;}
.wsb9{word-spacing:-12.916798pt;}
.ws22{word-spacing:-12.836053pt;}
.ws18{word-spacing:-12.707520pt;}
.ws2c{word-spacing:-12.598187pt;}
.wsac{word-spacing:-8.124480pt;}
.wsae{word-spacing:-3.246209pt;}
.ws7d{word-spacing:-1.376000pt;}
.ws88{word-spacing:-1.311787pt;}
.ws73{word-spacing:-1.184000pt;}
.ws52{word-spacing:-1.070720pt;}
.ws32{word-spacing:-0.963520pt;}
.ws71{word-spacing:-0.896000pt;}
.ws7c{word-spacing:-0.832000pt;}
.ws34{word-spacing:-0.823040pt;}
.ws7b{word-spacing:-0.821333pt;}
.ws31{word-spacing:-0.772480pt;}
.ws74{word-spacing:-0.736000pt;}
.ws5f{word-spacing:-0.725333pt;}
.ws66{word-spacing:-0.696640pt;}
.ws51{word-spacing:-0.578560pt;}
.ws7a{word-spacing:-0.576000pt;}
.ws5c{word-spacing:-0.533333pt;}
.ws5b{word-spacing:-0.512000pt;}
.ws33{word-spacing:-0.506240pt;}
.ws10{word-spacing:-0.426773pt;}
.wsa6{word-spacing:-0.416000pt;}
.ws89{word-spacing:-0.352000pt;}
.ws4e{word-spacing:-0.326080pt;}
.ws70{word-spacing:-0.320015pt;}
.ws4b{word-spacing:-0.306880pt;}
.ws30{word-spacing:-0.305280pt;}
.ws4f{word-spacing:-0.303893pt;}
.wsa7{word-spacing:-0.288000pt;}
.ws9f{word-spacing:-0.277120pt;}
.ws75{word-spacing:-0.256000pt;}
.wsa8{word-spacing:-0.213333pt;}
.ws7e{word-spacing:-0.192000pt;}
.wsa1{word-spacing:-0.162240pt;}
.ws62{word-spacing:-0.148693pt;}
.ws36{word-spacing:-0.148160pt;}
.ws6f{word-spacing:-0.128000pt;}
.ws15{word-spacing:-0.106560pt;}
.wsbc{word-spacing:-0.100122pt;}
.wsb7{word-spacing:-0.095704pt;}
.wsb1{word-spacing:-0.080614pt;}
.ws9d{word-spacing:-0.067200pt;}
.ws28{word-spacing:-0.062400pt;}
.wsaf{word-spacing:-0.045353pt;}
.ws43{word-spacing:-0.033920pt;}
.ws72{word-spacing:-0.000015pt;}
.ws1{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.007680pt;}
.ws23{word-spacing:0.009920pt;}
.ws1a{word-spacing:0.010667pt;}
.ws26{word-spacing:0.047040pt;}
.ws79{word-spacing:0.064000pt;}
.ws84{word-spacing:0.079787pt;}
.ws20{word-spacing:0.085440pt;}
.ws7f{word-spacing:0.094080pt;}
.ws83{word-spacing:0.095680pt;}
.ws94{word-spacing:0.095980pt;}
.ws2e{word-spacing:0.114347pt;}
.ws27{word-spacing:0.133440pt;}
.ws1d{word-spacing:0.140907pt;}
.wsb0{word-spacing:0.141308pt;}
.ws29{word-spacing:0.144000pt;}
.ws9c{word-spacing:0.144320pt;}
.ws24{word-spacing:0.147627pt;}
.ws59{word-spacing:0.148907pt;}
.ws1c{word-spacing:0.165120pt;}
.ws21{word-spacing:0.170240pt;}
.ws1b{word-spacing:0.185387pt;}
.ws19{word-spacing:0.194987pt;}
.ws25{word-spacing:0.240107pt;}
.ws54{word-spacing:0.262187pt;}
.ws69{word-spacing:0.263147pt;}
.ws85{word-spacing:0.272427pt;}
.ws2d{word-spacing:0.287680pt;}
.ws48{word-spacing:0.290880pt;}
.ws80{word-spacing:0.331200pt;}
.ws57{word-spacing:0.344320pt;}
.ws50{word-spacing:0.364160pt;}
.ws78{word-spacing:0.367040pt;}
.ws1e{word-spacing:0.379520pt;}
.ws42{word-spacing:0.387200pt;}
.ws41{word-spacing:0.399040pt;}
.ws68{word-spacing:0.400320pt;}
.ws2a{word-spacing:0.416000pt;}
.ws82{word-spacing:0.416107pt;}
.ws4c{word-spacing:0.420800pt;}
.ws77{word-spacing:0.485760pt;}
.ws35{word-spacing:0.490667pt;}
.ws2b{word-spacing:0.501120pt;}
.ws44{word-spacing:0.504320pt;}
.ws55{word-spacing:0.511467pt;}
.ws58{word-spacing:0.517227pt;}
.ws45{word-spacing:0.538560pt;}
.ws1f{word-spacing:0.552640pt;}
.ws81{word-spacing:0.582827pt;}
.ws6a{word-spacing:0.619840pt;}
.ws76{word-spacing:0.715520pt;}
.ws86{word-spacing:0.830400pt;}
.ws3a{word-spacing:0.831680pt;}
.ws4d{word-spacing:0.854827pt;}
.ws46{word-spacing:0.879680pt;}
.ws47{word-spacing:0.917227pt;}
.ws53{word-spacing:1.027627pt;}
.ws49{word-spacing:1.177920pt;}
.ws16{word-spacing:1.301867pt;}
.ws67{word-spacing:1.353600pt;}
.ws6e{word-spacing:1.459200pt;}
.ws4a{word-spacing:1.909440pt;}
.ws64{word-spacing:7.427200pt;}
.ws65{word-spacing:7.435520pt;}
.ws63{word-spacing:7.639360pt;}
.wsa5{word-spacing:15.072000pt;}
.wsa3{word-spacing:15.264000pt;}
.ws8c{word-spacing:15.274667pt;}
.wsa4{word-spacing:15.914667pt;}
.ws8d{word-spacing:15.999985pt;}
.wsb3{word-spacing:17.066504pt;}
.wsb2{word-spacing:18.380762pt;}
.ws93{word-spacing:19.498667pt;}
.ws91{word-spacing:19.616000pt;}
.ws92{word-spacing:19.968000pt;}
.wsb5{word-spacing:25.642978pt;}
.ws96{word-spacing:26.016000pt;}
.ws98{word-spacing:26.080000pt;}
.ws97{word-spacing:26.559985pt;}
.wsba{word-spacing:26.964464pt;}
.wsa2{word-spacing:47.712000pt;}
.ws3f{word-spacing:50.228160pt;}
.ws3e{word-spacing:50.412160pt;}
.ws3b{word-spacing:50.498240pt;}
.ws40{word-spacing:50.712640pt;}
.ws3c{word-spacing:50.850880pt;}
.ws3d{word-spacing:50.933760pt;}
.ws8f{word-spacing:51.712000pt;}
.ws90{word-spacing:51.839985pt;}
.ws99{word-spacing:52.128000pt;}
.ws95{word-spacing:54.240000pt;}
.ws38{word-spacing:62.545280pt;}
.ws37{word-spacing:63.115520pt;}
.ws39{word-spacing:63.213867pt;}
.ws5{word-spacing:63.936000pt;}
.ws9a{word-spacing:64.256000pt;}
.ws8a{word-spacing:66.336000pt;}
.ws6{word-spacing:69.504000pt;}
.ws4{word-spacing:70.144000pt;}
.ws6c{word-spacing:71.427200pt;}
.ws6d{word-spacing:71.966080pt;}
.ws6b{word-spacing:71.972160pt;}
.ws3{word-spacing:72.640000pt;}
.ws2{word-spacing:87.192640pt;}
.ws8e{word-spacing:105.120000pt;}
.wsad{word-spacing:263.908267pt;}
.wsc{word-spacing:350.559680pt;}
.wse{word-spacing:385.759680pt;}
.wsf{word-spacing:407.814827pt;}
.ws12{word-spacing:431.786667pt;}
.wsa{word-spacing:470.826667pt;}
.wsaa{word-spacing:475.754667pt;}
.wsd{word-spacing:492.549547pt;}
.wsab{word-spacing:517.617707pt;}
._a{margin-left:-12.600107pt;}
._b{margin-left:-6.805333pt;}
._6{margin-left:-4.909120pt;}
._9{margin-left:-3.161280pt;}
._0{margin-left:-1.494080pt;}
._1{width:1.040000pt;}
._f{width:2.156800pt;}
._20{width:4.108456pt;}
._1f{width:5.719065pt;}
._1c{width:19.833067pt;}
._16{width:21.009067pt;}
._11{width:22.052267pt;}
._e{width:24.593707pt;}
._15{width:31.600747pt;}
._1b{width:41.664000pt;}
._14{width:42.681600pt;}
._1a{width:73.536000pt;}
._13{width:74.680640pt;}
._12{width:86.873280pt;}
._1e{width:176.320747pt;}
._17{width:229.120000pt;}
._18{width:230.520320pt;}
._c{width:290.999147pt;}
._d{width:314.690347pt;}
._4{width:351.081707pt;}
._19{width:383.306667pt;}
._10{width:418.226027pt;}
._8{width:458.447147pt;}
._7{width:464.667200pt;}
._5{width:503.401707pt;}
._2{width:525.440000pt;}
._3{width:573.294613pt;}
._1d{width:717.874667pt;}
.fs1c{font-size:37.440000pt;}
.fs3{font-size:58.560000pt;}
.fs1e{font-size:58.628593pt;}
.fs14{font-size:58.666667pt;}
.fs11{font-size:64.000000pt;}
.fs15{font-size:64.106667pt;}
.fs20{font-size:69.754215pt;}
.fs22{font-size:70.420308pt;}
.fs12{font-size:71.040000pt;}
.fs13{font-size:71.146667pt;}
.fs24{font-size:73.032729pt;}
.fs2{font-size:74.560000pt;}
.fs1{font-size:80.000000pt;}
.fs8{font-size:80.106667pt;}
.fs1d{font-size:80.614315pt;}
.fsa{font-size:85.440000pt;}
.fsb{font-size:85.546667pt;}
.fs18{font-size:90.560000pt;}
.fs19{font-size:90.666667pt;}
.fs1f{font-size:95.704443pt;}
.fsf{font-size:96.000000pt;}
.fs1a{font-size:96.106667pt;}
.fs21{font-size:96.540600pt;}
.fs23{font-size:100.122020pt;}
.fsc{font-size:106.560000pt;}
.fsd{font-size:106.666667pt;}
.fs7{font-size:117.440000pt;}
.fs5{font-size:128.000000pt;}
.fs4{font-size:128.106667pt;}
.fs1b{font-size:149.440000pt;}
.fs10{font-size:170.560000pt;}
.fs17{font-size:192.000000pt;}
.fs16{font-size:192.106667pt;}
.fs0{font-size:213.440000pt;}
.fs9{font-size:213.546667pt;}
.fse{font-size:234.560000pt;}
.fs6{font-size:234.666667pt;}
.y0{bottom:0.000000pt;}
.y199{bottom:12.397730pt;}
.y194{bottom:13.006974pt;}
.y195{bottom:13.704925pt;}
.y1a9{bottom:18.685533pt;}
.y176{bottom:23.013333pt;}
.y193{bottom:26.617009pt;}
.y198{bottom:28.538781pt;}
.y152{bottom:31.146667pt;}
.y19c{bottom:31.502167pt;}
.y90{bottom:45.093333pt;}
.y10d{bottom:45.386667pt;}
.y1a7{bottom:45.413333pt;}
.y60{bottom:46.346667pt;}
.y175{bottom:51.813333pt;}
.y9c{bottom:53.120000pt;}
.y8f{bottom:61.173333pt;}
.yac{bottom:63.600000pt;}
.y151{bottom:63.786667pt;}
.y163{bottom:66.053333pt;}
.y13d{bottom:66.613333pt;}
.y10c{bottom:68.826667pt;}
.y9b{bottom:69.280000pt;}
.y8{bottom:69.866667pt;}
.y7b{bottom:72.053333pt;}
.yfc{bottom:73.040000pt;}
.y160{bottom:74.533333pt;}
.y65{bottom:75.626667pt;}
.y1a6{bottom:76.133333pt;}
.y63{bottom:76.613333pt;}
.y8e{bottom:77.333333pt;}
.yfe{bottom:80.586667pt;}
.yab{bottom:81.200000pt;}
.y116{bottom:84.133333pt;}
.y56{bottom:84.160000pt;}
.y17f{bottom:84.186667pt;}
.y174{bottom:87.013333pt;}
.y7{bottom:87.466667pt;}
.y5f{bottom:91.733333pt;}
.y10b{bottom:92.293333pt;}
.y13c{bottom:92.533333pt;}
.y5d{bottom:92.693333pt;}
.y17e{bottom:94.426667pt;}
.y150{bottom:96.426667pt;}
.yfb{bottom:97.920000pt;}
.y15f{bottom:103.333333pt;}
.y12d{bottom:103.973333pt;}
.y6{bottom:105.066667pt;}
.y1a5{bottom:107.573333pt;}
.y173{bottom:115.840000pt;}
.y121{bottom:118.560000pt;}
.y115{bottom:118.693333pt;}
.y64{bottom:120.986667pt;}
.y62{bottom:121.973333pt;}
.y5{bottom:123.626667pt;}
.y13b{bottom:124.240000pt;}
.y96{bottom:124.693333pt;}
.y10a{bottom:127.706667pt;}
.yf8{bottom:128.400000pt;}
.y55{bottom:128.560000pt;}
.y14f{bottom:129.066667pt;}
.y9a{bottom:132.720000pt;}
.yb2{bottom:137.040000pt;}
.y5e{bottom:137.093333pt;}
.y15e{bottom:137.173333pt;}
.y5c{bottom:138.053333pt;}
.ya8{bottom:139.040000pt;}
.y3f{bottom:139.093333pt;}
.y8d{bottom:140.720000pt;}
.y95{bottom:140.773333pt;}
.y1a4{bottom:142.133333pt;}
.yed{bottom:142.266667pt;}
.y24{bottom:144.400000pt;}
.y99{bottom:148.800000pt;}
.y172{bottom:151.040000pt;}
.y109{bottom:151.146667pt;}
.y17d{bottom:152.906667pt;}
.y120{bottom:153.120000pt;}
.yf7{bottom:153.280000pt;}
.y26{bottom:155.413333pt;}
.y13a{bottom:155.920000pt;}
.ya7{bottom:156.640000pt;}
.y94{bottom:156.853333pt;}
.y8c{bottom:156.906667pt;}
.y6a{bottom:157.920000pt;}
.y71{bottom:159.680000pt;}
.yec{bottom:159.866667pt;}
.yb1{bottom:160.480000pt;}
.y14e{bottom:162.026667pt;}
.y46{bottom:162.266667pt;}
.y98{bottom:164.960000pt;}
.y185{bottom:165.200000pt;}
.y4{bottom:165.546667pt;}
.y68{bottom:166.266667pt;}
.y61{bottom:166.346667pt;}
.y23{bottom:166.400000pt;}
.y15d{bottom:167.920000pt;}
.y93{bottom:173.013333pt;}
.y12c{bottom:173.120000pt;}
.ye7{bottom:174.400000pt;}
.y108{bottom:174.586667pt;}
.y1a3{bottom:176.720000pt;}
.y25{bottom:177.333333pt;}
.y3e{bottom:177.520000pt;}
.yc5{bottom:179.600000pt;}
.y5b{bottom:182.453333pt;}
.y81{bottom:182.746667pt;}
.ye9{bottom:183.200000pt;}
.yfa{bottom:183.760000pt;}
.ya5{bottom:185.546667pt;}
.y171{bottom:186.240000pt;}
.y139{bottom:187.600000pt;}
.y11f{bottom:187.680000pt;}
.y22{bottom:188.320000pt;}
.y3{bottom:189.546667pt;}
.y69{bottom:189.920000pt;}
.y114{bottom:190.000000pt;}
.y14d{bottom:190.826667pt;}
.y191{bottom:191.360000pt;}
.ye6{bottom:192.000000pt;}
.y31{bottom:193.146667pt;}
.y184{bottom:194.000000pt;}
.yd5{bottom:194.240000pt;}
.y13{bottom:195.626667pt;}
.y54{bottom:196.586667pt;}
.y70{bottom:198.080000pt;}
.y15c{bottom:198.640000pt;}
.ye8{bottom:200.800000pt;}
.y12b{bottom:201.920000pt;}
.y74{bottom:203.866667pt;}
.y1a2{bottom:205.520000pt;}
.y45{bottom:208.346667pt;}
.yf9{bottom:208.640000pt;}
.yc4{bottom:208.880000pt;}
.ye5{bottom:209.600000pt;}
.y107{bottom:210.026667pt;}
.y17c{bottom:211.360000pt;}
.y2d{bottom:211.893333pt;}
.yaa{bottom:214.453333pt;}
.y80{bottom:214.746667pt;}
.y170{bottom:215.040000pt;}
.y190{bottom:216.960000pt;}
.yd4{bottom:218.240000pt;}
.y14c{bottom:219.626667pt;}
.y19{bottom:219.866667pt;}
.y17b{bottom:221.600000pt;}
.ya6{bottom:223.253333pt;}
.y2c{bottom:223.600000pt;}
.yeb{bottom:224.133333pt;}
.y92{bottom:228.346667pt;}
.y183{bottom:228.560000pt;}
.y15b{bottom:230.080000pt;}
.y14{bottom:230.826667pt;}
.y30{bottom:231.546667pt;}
.ya9{bottom:232.053333pt;}
.y106{bottom:233.466667pt;}
.y189{bottom:234.320000pt;}
.y12a{bottom:235.760000pt;}
.y8b{bottom:236.453333pt;}
.y6f{bottom:236.480000pt;}
.y12{bottom:237.866667pt;}
.yc3{bottom:238.160000pt;}
.yef{bottom:239.120000pt;}
.yb0{bottom:240.213333pt;}
.y113{bottom:241.600000pt;}
.yea{bottom:241.733333pt;}
.y18{bottom:241.813333pt;}
.y53{bottom:241.946667pt;}
.yd3{bottom:242.240000pt;}
.y83{bottom:242.266667pt;}
.y51{bottom:242.933333pt;}
.y91{bottom:244.506667pt;}
.y18f{bottom:247.680000pt;}
.y16f{bottom:250.240000pt;}
.y79{bottom:250.826667pt;}
.y1b2{bottom:251.200000pt;}
.yad{bottom:251.946667pt;}
.y21{bottom:252.293333pt;}
.yde{bottom:253.413333pt;}
.y14b{bottom:254.186667pt;}
.y1ae{bottom:254.320000pt;}
.y44{bottom:254.426667pt;}
.y11e{bottom:256.800000pt;}
.y105{bottom:256.906667pt;}
.y182{bottom:257.360000pt;}
.y122{bottom:258.506667pt;}
.y15a{bottom:258.880000pt;}
.y1a1{bottom:260.000000pt;}
.y129{bottom:261.360000pt;}
.y3d{bottom:262.000000pt;}
.yaf{bottom:263.653333pt;}
.yee{bottom:264.000000pt;}
.ye4{bottom:265.066667pt;}
.yd2{bottom:266.240000pt;}
.y5a{bottom:266.720000pt;}
.y197{bottom:266.799982pt;}
.y188{bottom:268.880000pt;}
.y11{bottom:273.066667pt;}
.y1c{bottom:273.333333pt;}
.y130{bottom:274.080000pt;}
.y2f{bottom:276.906667pt;}
.y18e{bottom:279.120000pt;}
.ya1{bottom:279.813333pt;}
.y1b1{bottom:280.000000pt;}
.y4c{bottom:280.080000pt;}
.y82{bottom:280.666667pt;}
.yf6{bottom:281.973333pt;}
.y138{bottom:282.640000pt;}
.ye3{bottom:282.666667pt;}
.y14a{bottom:282.986667pt;}
.y1e{bottom:284.346667pt;}
.yd{bottom:284.560000pt;}
.y1ad{bottom:285.040000pt;}
.y52{bottom:287.333333pt;}
.y78{bottom:287.786667pt;}
.y18a{bottom:288.240000pt;}
.y50{bottom:288.293333pt;}
.y16c{bottom:288.586667pt;}
.y1a8{bottom:289.999982pt;}
.yd1{bottom:290.880000pt;}
.y11d{bottom:291.360000pt;}
.y181{bottom:291.920000pt;}
.y128{bottom:292.080000pt;}
.y159{bottom:293.440000pt;}
.y1b{bottom:295.333333pt;}
.y36{bottom:296.133333pt;}
.y13f{bottom:297.120000pt;}
.ya4{bottom:298.693333pt;}
.y19b{bottom:299.136318pt;}
.yfd{bottom:299.840000pt;}
.ya0{bottom:299.920000pt;}
.y43{bottom:300.533333pt;}
.y2b{bottom:302.186667pt;}
.y16b{bottom:302.826667pt;}
.y187{bottom:303.440000pt;}
.y104{bottom:304.053333pt;}
.y59{bottom:305.120000pt;}
.ye0{bottom:306.000000pt;}
.y1d{bottom:306.266667pt;}
.yf5{bottom:306.933333pt;}
.yc2{bottom:308.026667pt;}
.y3c{bottom:308.080000pt;}
.y137{bottom:308.560000pt;}
.y12f{bottom:308.640000pt;}
.y149{bottom:311.813333pt;}
.yd0{bottom:312.640000pt;}
.y18d{bottom:312.960000pt;}
.y4b{bottom:314.640000pt;}
.y10{bottom:315.306667pt;}
.y1ac{bottom:315.760000pt;}
.y9f{bottom:316.000000pt;}
.y1a{bottom:317.253333pt;}
.y16d{bottom:317.386667pt;}
.y77{bottom:318.773333pt;}
.y7a{bottom:319.093333pt;}
.y2e{bottom:319.146667pt;}
.y158{bottom:322.240000pt;}
.y127{bottom:322.800000pt;}
.ydf{bottom:323.600000pt;}
.y16e{bottom:323.920000pt;}
.y8a{bottom:324.053333pt;}
.y2a{bottom:325.626667pt;}
.y11c{bottom:325.920000pt;}
.y17{bottom:326.186667pt;}
.y180{bottom:327.200000pt;}
.y20{bottom:327.333333pt;}
.y103{bottom:327.493333pt;}
.y1b0{bottom:329.920000pt;}
.y7f{bottom:329.973333pt;}
.yc{bottom:330.640000pt;}
.y13e{bottom:331.680000pt;}
.yf4{bottom:331.813333pt;}
.y9e{bottom:332.080000pt;}
.y4f{bottom:332.693333pt;}
.y35{bottom:334.533333pt;}
.yc1{bottom:337.306667pt;}
.y12e{bottom:337.440000pt;}
.y186{bottom:338.000000pt;}
.ycf{bottom:339.840000pt;}
.y136{bottom:340.960000pt;}
.ydc{bottom:341.840000pt;}
.y17a{bottom:343.653333pt;}
.y18c{bottom:343.680000pt;}
.y196{bottom:343.760000pt;}
.y148{bottom:346.373333pt;}
.y3b{bottom:346.480000pt;}
.y42{bottom:346.613333pt;}
.ye2{bottom:346.933333pt;}
.y9d{bottom:348.240000pt;}
.y126{bottom:348.400000pt;}
.y29{bottom:349.066667pt;}
.y1f{bottom:349.253333pt;}
.yf1{bottom:349.840000pt;}
.y4a{bottom:349.920000pt;}
.y16a{bottom:350.506667pt;}
.y76{bottom:351.093333pt;}
.yb8{bottom:351.653333pt;}
.y6e{bottom:351.680000pt;}
.yae{bottom:355.120000pt;}
.y157{bottom:356.800000pt;}
.yf{bottom:358.266667pt;}
.y16{bottom:361.386667pt;}
.yce{bottom:361.600000pt;}
.y167{bottom:364.133333pt;}
.y165{bottom:364.186667pt;}
.ye1{bottom:364.533333pt;}
.ybe{bottom:365.600000pt;}
.y192{bottom:366.079964pt;}
.yc0{bottom:366.586667pt;}
.y1a0{bottom:366.800000pt;}
.y7e{bottom:367.653333pt;}
.y11a{bottom:372.000000pt;}
.y162{bottom:372.560000pt;}
.ya2{bottom:374.106667pt;}
.yf0{bottom:374.720000pt;}
.y18b{bottom:375.120000pt;}
.ydb{bottom:376.400000pt;}
.y135{bottom:376.640000pt;}
.yb{bottom:376.720000pt;}
.y1ab{bottom:377.920000pt;}
.y19a{bottom:378.320000pt;}
.yd8{bottom:378.400000pt;}
.y169{bottom:379.306667pt;}
.y125{bottom:379.840000pt;}
.y147{bottom:380.933333pt;}
.y67{bottom:381.333333pt;}
.y58{bottom:381.920000pt;}
.y156{bottom:385.600000pt;}
.y102{bottom:386.346667pt;}
.yb7{bottom:386.853333pt;}
.ycd{bottom:388.800000pt;}
.y34{bottom:388.880000pt;}
.y75{bottom:389.493333pt;}
.y6d{bottom:390.080000pt;}
.y3a{bottom:392.560000pt;}
.y41{bottom:392.693333pt;}
.y166{bottom:392.933333pt;}
.y164{bottom:392.986667pt;}
.y11b{bottom:395.066667pt;}
.y7d{bottom:396.453333pt;}
.y6c{bottom:396.480000pt;}
.y119{bottom:400.826667pt;}
.y19f{bottom:401.360000pt;}
.y179{bottom:402.133333pt;}
.y112{bottom:402.880000pt;}
.y89{bottom:403.573333pt;}
.ybd{bottom:404.000000pt;}
.y15{bottom:404.373333pt;}
.y134{bottom:405.440000pt;}
.y161{bottom:407.120000pt;}
.y168{bottom:408.106667pt;}
.y124{bottom:408.640000pt;}
.y146{bottom:409.733333pt;}
.y101{bottom:409.786667pt;}
.yd7{bottom:410.400000pt;}
.ycc{bottom:410.560000pt;}
.y97{bottom:411.680000pt;}
.y178{bottom:412.373333pt;}
.y1af{bottom:414.400000pt;}
.yb6{bottom:415.653333pt;}
.yf3{bottom:417.653333pt;}
.y88{bottom:419.733333pt;}
.y155{bottom:420.160000pt;}
.y57{bottom:420.320000pt;}
.ya{bottom:422.800000pt;}
.y38{bottom:422.933333pt;}
.y49{bottom:426.720000pt;}
.y33{bottom:427.306667pt;}
.y1aa{bottom:427.840000pt;}
.y6b{bottom:428.480000pt;}
.y118{bottom:429.626667pt;}
.y19e{bottom:430.160000pt;}
.y7c{bottom:431.013333pt;}
.y40{bottom:431.093333pt;}
.ycb{bottom:432.320000pt;}
.y73{bottom:434.293333pt;}
.y111{bottom:437.440000pt;}
.y145{bottom:438.533333pt;}
.y39{bottom:438.640000pt;}
.y133{bottom:440.000000pt;}
.ybc{bottom:442.400000pt;}
.yf2{bottom:442.533333pt;}
.y123{bottom:443.200000pt;}
.yd6{bottom:448.800000pt;}
.y154{bottom:448.960000pt;}
.yda{bottom:449.360000pt;}
.ya3{bottom:449.520000pt;}
.yb5{bottom:450.853333pt;}
.yca{bottom:454.106667pt;}
.y48{bottom:458.746667pt;}
.y37{bottom:461.333333pt;}
.y19d{bottom:464.746667pt;}
.y32{bottom:465.706667pt;}
.y72{bottom:466.293333pt;}
.y100{bottom:468.666667pt;}
.y132{bottom:468.826667pt;}
.y9{bottom:468.906667pt;}
.y144{bottom:470.213333pt;}
.y177{bottom:470.826667pt;}
.y110{bottom:472.026667pt;}
.yc9{bottom:475.866667pt;}
.y153{bottom:477.786667pt;}
.yb4{bottom:479.653333pt;}
.ybb{bottom:480.826667pt;}
.yd9{bottom:483.946667pt;}
.y87{bottom:491.200000pt;}
.yff{bottom:492.106667pt;}
.y66{bottom:496.533333pt;}
.yc8{bottom:497.626667pt;}
.y117{bottom:498.746667pt;}
.y143{bottom:499.013333pt;}
.y131{bottom:504.106667pt;}
.y10f{bottom:506.586667pt;}
.y86{bottom:507.360000pt;}
.yb3{bottom:514.853333pt;}
.yba{bottom:519.226667pt;}
.y141{bottom:534.586667pt;}
.y4e{bottom:552.053333pt;}
.yc7{bottom:554.666667pt;}
.y85{bottom:567.866667pt;}
.y28{bottom:568.773333pt;}
.y2{bottom:582.986667pt;}
.y140{bottom:598.586667pt;}
.ye{bottom:599.040000pt;}
.ydd{bottom:600.800000pt;}
.ybf{bottom:602.560000pt;}
.y4d{bottom:607.173333pt;}
.yc6{bottom:612.266667pt;}
.y47{bottom:614.666667pt;}
.y10e{bottom:619.733333pt;}
.y84{bottom:631.866667pt;}
.y27{bottom:632.800000pt;}
.y1{bottom:646.986667pt;}
.yb9{bottom:654.720000pt;}
.y142{bottom:654.773333pt;}
.h22{height:30.895312pt;}
.h2d{height:41.819111pt;}
.h4{height:48.323437pt;}
.h16{height:48.411458pt;}
.h23{height:51.375312pt;}
.h17{height:52.812500pt;}
.h18{height:52.900521pt;}
.h2b{height:54.852658pt;}
.h24{height:58.810389pt;}
.h3{height:61.526562pt;}
.h1d{height:62.160938pt;}
.h1e{height:62.238542pt;}
.h28{height:66.010912pt;}
.h2{height:66.015625pt;}
.h9{height:66.103646pt;}
.h26{height:67.939603pt;}
.hc{height:70.504688pt;}
.hd{height:70.592708pt;}
.h1b{height:74.729687pt;}
.h1c{height:74.817708pt;}
.h13{height:79.218750pt;}
.h1f{height:79.306771pt;}
.h10{height:87.932812pt;}
.h11{height:88.020833pt;}
.h15{height:90.621875pt;}
.h2e{height:94.271199pt;}
.h2c{height:95.080925pt;}
.h8{height:96.910938pt;}
.h6{height:105.625000pt;}
.h5{height:105.713021pt;}
.ha{height:109.748958pt;}
.h27{height:112.778169pt;}
.hf{height:117.331354pt;}
.he{height:117.438021pt;}
.h20{height:123.317187pt;}
.h25{height:129.185544pt;}
.h2a{height:137.136923pt;}
.h21{height:137.458750pt;}
.h14{height:140.745313pt;}
.h29{height:153.525405pt;}
.h1a{height:158.437500pt;}
.h19{height:158.525521pt;}
.h1{height:176.129687pt;}
.hb{height:176.217708pt;}
.h12{height:193.557812pt;}
.h7{height:193.645833pt;}
.h0{height:720.000000pt;}
.w5{width:208.396060pt;}
.w2{width:269.275243pt;}
.w3{width:279.285129pt;}
.w4{width:382.721018pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xe4{left:8.634914pt;}
.xe1{left:10.516158pt;}
.xe2{left:11.917341pt;}
.xbf{left:28.453319pt;}
.xbd{left:35.999986pt;}
.xcb{left:43.573319pt;}
.xd3{left:46.239986pt;}
.x61{left:49.546652pt;}
.x5a{left:51.119986pt;}
.xc7{left:52.026652pt;}
.x94{left:55.813319pt;}
.xc2{left:57.253319pt;}
.xc3{left:60.213319pt;}
.xbb{left:63.999986pt;}
.x3e{left:66.239986pt;}
.x40{left:69.866652pt;}
.x3f{left:71.199986pt;}
.xcc{left:72.373319pt;}
.x4f{left:73.813319pt;}
.xcd{left:75.333319pt;}
.x5d{left:79.919986pt;}
.x25{left:81.359986pt;}
.x5b{left:82.879986pt;}
.xba{left:83.786652pt;}
.x45{left:85.146652pt;}
.x95{left:87.573319pt;}
.xc4{left:89.013319pt;}
.xd1{left:89.973319pt;}
.x62{left:91.706652pt;}
.x30{left:93.013319pt;}
.x97{left:94.239986pt;}
.xce{left:96.373319pt;}
.x96{left:98.239986pt;}
.x20{left:99.226652pt;}
.x9{left:101.173319pt;}
.x52{left:102.613319pt;}
.x8f{left:104.933319pt;}
.xa2{left:105.893319pt;}
.x2f{left:107.893319pt;}
.x1c{left:110.079986pt;}
.x5c{left:111.706652pt;}
.x26{left:113.146652pt;}
.xaf{left:115.519986pt;}
.x63{left:117.386652pt;}
.x1b{left:121.119986pt;}
.x2e{left:123.146652pt;}
.xf{left:126.773319pt;}
.xb0{left:127.999986pt;}
.x37{left:129.973319pt;}
.xc{left:132.933319pt;}
.xdd{left:134.373319pt;}
.x1{left:136.293319pt;}
.xdf{left:139.653319pt;}
.xc9{left:141.199986pt;}
.x36{left:143.919986pt;}
.xde{left:146.399986pt;}
.x31{left:147.439986pt;}
.xbc{left:151.386652pt;}
.x5e{left:153.439986pt;}
.x3d{left:155.199986pt;}
.xd{left:161.733319pt;}
.xbe{left:163.199986pt;}
.x3a{left:165.733319pt;}
.x3c{left:167.199986pt;}
.x53{left:169.813319pt;}
.x3{left:171.813319pt;}
.x34{left:181.999986pt;}
.x90{left:186.933319pt;}
.x32{left:188.239986pt;}
.xe5{left:196.319986pt;}
.x42{left:200.453319pt;}
.x41{left:202.346652pt;}
.x4a{left:203.279986pt;}
.x46{left:204.533319pt;}
.x2c{left:206.879986pt;}
.x29{left:208.959986pt;}
.x33{left:210.639986pt;}
.xd8{left:212.479986pt;}
.xd7{left:213.439986pt;}
.xe6{left:215.999986pt;}
.xb1{left:218.186652pt;}
.x39{left:220.239986pt;}
.x28{left:221.679986pt;}
.x91{left:230.213319pt;}
.x22{left:231.279986pt;}
.x47{left:233.653319pt;}
.x23{left:235.519986pt;}
.x57{left:237.013319pt;}
.xda{left:241.279986pt;}
.xd9{left:243.199986pt;}
.x64{left:244.613319pt;}
.x59{left:246.719986pt;}
.xdb{left:247.839986pt;}
.x65{left:249.813319pt;}
.x66{left:252.373319pt;}
.x55{left:253.759986pt;}
.x2b{left:257.999986pt;}
.xb{left:260.559986pt;}
.xd4{left:263.919986pt;}
.x2d{left:266.079986pt;}
.x89{left:268.506652pt;}
.xd6{left:272.079986pt;}
.x2a{left:273.439986pt;}
.xc0{left:275.279986pt;}
.xc5{left:278.079986pt;}
.x9b{left:282.826652pt;}
.x44{left:285.493319pt;}
.xc1{left:288.719986pt;}
.x67{left:291.653319pt;}
.x3b{left:293.173319pt;}
.x35{left:294.079986pt;}
.x4{left:299.519986pt;}
.x98{left:301.146652pt;}
.x38{left:305.759986pt;}
.xd0{left:307.333319pt;}
.x9c{left:311.546652pt;}
.x10{left:315.279986pt;}
.x7d{left:318.026652pt;}
.x11{left:319.599986pt;}
.xcf{left:321.679986pt;}
.xb2{left:322.586652pt;}
.x18{left:324.799986pt;}
.x81{left:329.626652pt;}
.x2{left:336.213319pt;}
.xc8{left:340.053319pt;}
.xc6{left:341.359986pt;}
.xdc{left:344.533319pt;}
.x58{left:345.466652pt;}
.x19{left:347.119986pt;}
.x12{left:348.879986pt;}
.xca{left:351.226652pt;}
.xe3{left:354.719964pt;}
.x7c{left:362.506652pt;}
.x5f{left:372.293319pt;}
.x27{left:373.466652pt;}
.xd5{left:379.359986pt;}
.x60{left:385.119986pt;}
.xa4{left:390.559986pt;}
.xa{left:393.786652pt;}
.xa3{left:399.119986pt;}
.xae{left:407.839986pt;}
.xaa{left:415.759986pt;}
.x6a{left:417.519986pt;}
.x6b{left:422.799986pt;}
.xad{left:424.639986pt;}
.x1d{left:426.613319pt;}
.x1e{left:430.213319pt;}
.x1f{left:431.173319pt;}
.x6e{left:445.119986pt;}
.x6f{left:448.879986pt;}
.x6d{left:455.599986pt;}
.x56{left:457.839986pt;}
.xb4{left:460.613319pt;}
.x6c{left:461.999986pt;}
.xb3{left:472.693319pt;}
.x8{left:481.439986pt;}
.x70{left:483.279986pt;}
.xb5{left:491.279986pt;}
.x83{left:498.106652pt;}
.x69{left:504.426652pt;}
.x9a{left:506.559986pt;}
.x7f{left:512.186652pt;}
.x4b{left:514.159986pt;}
.x8d{left:515.786652pt;}
.x7{left:517.119986pt;}
.x4c{left:519.119986pt;}
.xd2{left:522.799986pt;}
.x80{left:524.106652pt;}
.x1a{left:528.586652pt;}
.x82{left:532.266652pt;}
.x8c{left:534.266652pt;}
.x51{left:539.519986pt;}
.xe0{left:540.479964pt;}
.x13{left:541.946652pt;}
.x7e{left:543.546652pt;}
.x50{left:545.359986pt;}
.x8b{left:547.066652pt;}
.x99{left:550.959986pt;}
.x14{left:552.586652pt;}
.x8a{left:553.626652pt;}
.x93{left:554.853319pt;}
.x8e{left:559.066652pt;}
.x92{left:562.053319pt;}
.x84{left:566.346652pt;}
.x6{left:567.759986pt;}
.x9d{left:571.359986pt;}
.xb6{left:575.279986pt;}
.x71{left:578.373319pt;}
.xb7{left:583.759986pt;}
.xb8{left:584.959986pt;}
.x54{left:588.879986pt;}
.x24{left:599.653319pt;}
.x72{left:609.493319pt;}
.x5{left:614.639986pt;}
.x48{left:617.679986pt;}
.x21{left:620.933319pt;}
.x68{left:632.586652pt;}
.xe{left:644.639986pt;}
.x73{left:649.066652pt;}
.x4e{left:669.199986pt;}
.x74{left:670.186652pt;}
.x4d{left:671.093319pt;}
.x49{left:672.879986pt;}
.xa7{left:676.319986pt;}
.x43{left:678.639986pt;}
.xa8{left:680.559986pt;}
.xb9{left:683.626652pt;}
.xa6{left:690.959986pt;}
.xa5{left:702.319986pt;}
.xac{left:704.079986pt;}
.xab{left:705.119986pt;}
.x88{left:709.679986pt;}
.x86{left:714.159986pt;}
.x87{left:722.239986pt;}
.x17{left:725.653319pt;}
.xa9{left:736.559986pt;}
.x85{left:738.319986pt;}
.xa0{left:740.346652pt;}
.x9f{left:746.586652pt;}
.x15{left:748.693319pt;}
.x16{left:759.813319pt;}
.x75{left:764.559986pt;}
.x9e{left:767.146652pt;}
.x76{left:772.799986pt;}
.x77{left:780.986652pt;}
.xa1{left:789.146652pt;}
.x79{left:795.519986pt;}
.x7a{left:800.079986pt;}
.x78{left:809.039986pt;}
.x7b{left:816.319986pt;}
}




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