
    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_d39d2bfb503f96ae529f9fcc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.851074;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_95b23dc4dcbd6d927d485bb2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.857422;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_64130145fdb74bf4b8c4e53b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_15fb37737e6b256121fbf1ad.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.851074;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_e6ac6a39647440da51f2f4ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_f8960ba7753d0bea05cbb063.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.909180;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_3d7ce740094c08958637f885.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.926270;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_71d04f90d7ac8fe29f8d163c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v12{vertical-align:-116.667360px;}
.v11{vertical-align:-87.146760px;}
.v18{vertical-align:-77.738400px;}
.v1c{vertical-align:-75.597720px;}
.v10{vertical-align:-72.869160px;}
.v20{vertical-align:-55.876800px;}
.v13{vertical-align:-48.217800px;}
.v17{vertical-align:-44.619000px;}
.v16{vertical-align:-33.119400px;}
.v14{vertical-align:-29.520600px;}
.v7{vertical-align:-24.479400px;}
.v19{vertical-align:-23.039400px;}
.vf{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.v21{vertical-align:1.008000px;}
.v4{vertical-align:3.265680px;}
.v6{vertical-align:16.232400px;}
.v3{vertical-align:18.000000px;}
.v1a{vertical-align:23.039400px;}
.v8{vertical-align:24.479400px;}
.v1{vertical-align:28.800000px;}
.v2{vertical-align:32.400000px;}
.v1d{vertical-align:36.000000px;}
.v1f{vertical-align:43.903200px;}
.vc{vertical-align:51.840600px;}
.v5{vertical-align:58.075920px;}
.vd{vertical-align:60.479400px;}
.v1e{vertical-align:68.536800px;}
.vb{vertical-align:70.560600px;}
.v9{vertical-align:72.719400px;}
.v15{vertical-align:84.239400px;}
.v1b{vertical-align:98.637120px;}
.ve{vertical-align:131.040000px;}
.va{vertical-align:163.439400px;}
.ls6a{letter-spacing:-8.657280px;}
.ls86{letter-spacing:-6.939360px;}
.ls6c{letter-spacing:-4.208400px;}
.ls51{letter-spacing:-2.376000px;}
.lsa4{letter-spacing:-2.232000px;}
.ls4d{letter-spacing:-1.803600px;}
.ls7d{letter-spacing:-1.728000px;}
.lsa6{letter-spacing:-1.581120px;}
.lsa7{letter-spacing:-1.405440px;}
.ls17{letter-spacing:-1.365120px;}
.ls31{letter-spacing:-1.322640px;}
.ls34{letter-spacing:-1.202400px;}
.ls4f{letter-spacing:-1.174320px;}
.ls81{letter-spacing:-1.008000px;}
.ls87{letter-spacing:-0.966240px;}
.ls74{letter-spacing:-0.879120px;}
.ls67{letter-spacing:-0.835200px;}
.ls71{letter-spacing:-0.799200px;}
.ls37{letter-spacing:-0.721440px;}
.ls76{letter-spacing:-0.719280px;}
.ls72{letter-spacing:-0.639360px;}
.ls10{letter-spacing:-0.383040px;}
.ls33{letter-spacing:-0.360720px;}
.lsa3{letter-spacing:-0.351360px;}
.ls18{letter-spacing:-0.341280px;}
.lsa{letter-spacing:-0.336960px;}
.ls68{letter-spacing:-0.334080px;}
.ls1b{letter-spacing:-0.324000px;}
.ls82{letter-spacing:-0.320400px;}
.ls84{letter-spacing:-0.319680px;}
.ls4{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.287280px;}
.ls2{letter-spacing:-0.264240px;}
.ls7f{letter-spacing:-0.263520px;}
.ls1f{letter-spacing:-0.240480px;}
.ls1d{letter-spacing:-0.239760px;}
.ls26{letter-spacing:-0.239040px;}
.ls15{letter-spacing:-0.227520px;}
.ls19{letter-spacing:-0.216000px;}
.ls88{letter-spacing:-0.213120px;}
.ls83{letter-spacing:-0.192240px;}
.lse{letter-spacing:-0.191520px;}
.lsb{letter-spacing:-0.168480px;}
.ls75{letter-spacing:-0.159840px;}
.ls3{letter-spacing:-0.144000px;}
.ls23{letter-spacing:-0.120240px;}
.ls16{letter-spacing:-0.113760px;}
.ls1a{letter-spacing:-0.108000px;}
.ls38{letter-spacing:-0.095760px;}
.ls4c{letter-spacing:-0.087840px;}
.ls9{letter-spacing:-0.084240px;}
.ls80{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls94{letter-spacing:0.043920px;}
.ls21{letter-spacing:0.069120px;}
.ls89{letter-spacing:0.072000px;}
.ls8d{letter-spacing:0.075888px;}
.ls85{letter-spacing:0.079920px;}
.ls8{letter-spacing:0.084240px;}
.ls8a{letter-spacing:0.087840px;}
.ls7c{letter-spacing:0.108000px;}
.ls9a{letter-spacing:0.114192px;}
.ls27{letter-spacing:0.119520px;}
.ls20{letter-spacing:0.120240px;}
.ls24{letter-spacing:0.144000px;}
.ls7a{letter-spacing:0.159840px;}
.ls92{letter-spacing:0.175680px;}
.ls25{letter-spacing:0.179280px;}
.ls39{letter-spacing:0.191520px;}
.lsc{letter-spacing:0.192240px;}
.ls14{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.227520px;}
.ls9b{letter-spacing:0.228384px;}
.ls28{letter-spacing:0.239040px;}
.ls3a{letter-spacing:0.239760px;}
.ls1e{letter-spacing:0.240480px;}
.ls6{letter-spacing:0.252720px;}
.lsf{letter-spacing:0.256320px;}
.ls61{letter-spacing:0.263520px;}
.ls0{letter-spacing:0.264240px;}
.lsa2{letter-spacing:0.266400px;}
.ls36{letter-spacing:0.287280px;}
.ls5{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.311040px;}
.ls79{letter-spacing:0.319680px;}
.ls4e{letter-spacing:0.335520px;}
.ls7{letter-spacing:0.336960px;}
.lsa5{letter-spacing:0.351360px;}
.ls69{letter-spacing:0.358560px;}
.ls7e{letter-spacing:0.360000px;}
.ls35{letter-spacing:0.360720px;}
.ls13{letter-spacing:0.432000px;}
.ls8b{letter-spacing:0.790560px;}
.ls73{letter-spacing:0.841680px;}
.lsa1{letter-spacing:0.878400px;}
.ls78{letter-spacing:1.038960px;}
.ls77{letter-spacing:1.080000px;}
.ls93{letter-spacing:1.493280px;}
.ls62{letter-spacing:1.581120px;}
.ls22{letter-spacing:2.270880px;}
.ls65{letter-spacing:2.283840px;}
.ls8c{letter-spacing:2.327760px;}
.ls60{letter-spacing:2.612712px;}
.ls2b{letter-spacing:2.777040px;}
.ls95{letter-spacing:2.898720px;}
.ls2e{letter-spacing:2.968560px;}
.ls9e{letter-spacing:2.995344px;}
.ls2c{letter-spacing:3.064320px;}
.ls9c{letter-spacing:3.074400px;}
.ls2a{letter-spacing:3.126240px;}
.ls57{letter-spacing:3.234456px;}
.ls9d{letter-spacing:3.689280px;}
.ls30{letter-spacing:3.734640px;}
.ls66{letter-spacing:3.873600px;}
.ls64{letter-spacing:4.526520px;}
.ls63{letter-spacing:4.575720px;}
.ls5e{letter-spacing:8.048160px;}
.ls54{letter-spacing:8.686080px;}
.ls9f{letter-spacing:18.797760px;}
.lsa0{letter-spacing:19.482912px;}
.ls55{letter-spacing:19.959840px;}
.ls5a{letter-spacing:25.482240px;}
.ls50{letter-spacing:26.136000px;}
.ls3f{letter-spacing:26.573040px;}
.ls29{letter-spacing:26.813520px;}
.ls59{letter-spacing:30.081600px;}
.ls5c{letter-spacing:31.397760px;}
.ls56{letter-spacing:32.934240px;}
.ls3d{letter-spacing:33.306480px;}
.ls5b{letter-spacing:36.561600px;}
.ls5f{letter-spacing:37.514880px;}
.ls8f{letter-spacing:38.210400px;}
.ls91{letter-spacing:38.263104px;}
.ls90{letter-spacing:38.895552px;}
.ls8e{letter-spacing:38.913120px;}
.ls48{letter-spacing:39.265920px;}
.ls4a{letter-spacing:39.960000px;}
.ls45{letter-spacing:39.985920px;}
.ls4b{letter-spacing:40.680000px;}
.ls97{letter-spacing:41.109120px;}
.ls7b{letter-spacing:41.148000px;}
.ls96{letter-spacing:41.811840px;}
.ls98{letter-spacing:41.961168px;}
.ls99{letter-spacing:42.663888px;}
.ls41{letter-spacing:57.728160px;}
.ls3b{letter-spacing:65.891520px;}
.ls1c{letter-spacing:65.916000px;}
.ls5d{letter-spacing:65.916600px;}
.ls3e{letter-spacing:76.111920px;}
.ls44{letter-spacing:79.092720px;}
.ls49{letter-spacing:79.116480px;}
.ls47{letter-spacing:81.264960px;}
.ls3c{letter-spacing:83.206080px;}
.ls58{letter-spacing:83.518560px;}
.ls43{letter-spacing:87.356160px;}
.ls52{letter-spacing:93.306240px;}
.ls42{letter-spacing:108.129600px;}
.ls32{letter-spacing:119.916000px;}
.ls40{letter-spacing:149.875200px;}
.ls53{letter-spacing:172.601280px;}
.ls46{letter-spacing:256.036320px;}
.ls2d{letter-spacing:337.554000px;}
.ls2f{letter-spacing:337.724160px;}
.ls6e{letter-spacing:410.560680px;}
.ls6f{letter-spacing:455.153880px;}
.ls70{letter-spacing:455.154480px;}
.ls6b{letter-spacing:493.825680px;}
.ls6d{letter-spacing:1058.592960px;}
.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;}
}
.ws4c{word-spacing:-120.240000px;}
.ws6c{word-spacing:-119.999520px;}
.ws96{word-spacing:-113.760000px;}
.ws6f{word-spacing:-87.840000px;}
.ws76{word-spacing:-72.216000px;}
.ws49{word-spacing:-68.118408px;}
.ws4a{word-spacing:-68.055120px;}
.ws78{word-spacing:-67.453200px;}
.ws75{word-spacing:-67.324320px;}
.ws71{word-spacing:-66.226032px;}
.ws73{word-spacing:-65.999520px;}
.ws6e{word-spacing:-65.949840px;}
.ws79{word-spacing:-64.860192px;}
.ws95{word-spacing:-63.861120px;}
.ws74{word-spacing:-55.402560px;}
.ws77{word-spacing:-49.587840px;}
.ws5e{word-spacing:-46.513440px;}
.ws1c{word-spacing:-46.273680px;}
.ws2e{word-spacing:-46.033920px;}
.ws98{word-spacing:-41.863680px;}
.ws9a{word-spacing:-39.618720px;}
.ws7f{word-spacing:-34.390800px;}
.ws80{word-spacing:-32.880960px;}
.ws6d{word-spacing:-29.999808px;}
.ws84{word-spacing:-29.700000px;}
.ws83{word-spacing:-27.648000px;}
.ws97{word-spacing:-27.135360px;}
.ws4b{word-spacing:-26.452800px;}
.ws70{word-spacing:-26.212320px;}
.wsfb{word-spacing:-25.210080px;}
.wsf5{word-spacing:-24.770880px;}
.wsfc{word-spacing:-24.683040px;}
.ws35{word-spacing:-24.649200px;}
.ws36{word-spacing:-24.528960px;}
.wsea{word-spacing:-24.507360px;}
.ws4f{word-spacing:-24.408720px;}
.wsf4{word-spacing:-24.331680px;}
.ws34{word-spacing:-24.288480px;}
.ws33{word-spacing:-24.168240px;}
.wsf3{word-spacing:-24.156000px;}
.wsef{word-spacing:-24.068160px;}
.ws99{word-spacing:-24.062112px;}
.ws51{word-spacing:-24.048000px;}
.ws5a{word-spacing:-23.687280px;}
.ws6b{word-spacing:-23.446800px;}
.ws21{word-spacing:-23.320800px;}
.ws50{word-spacing:-23.206320px;}
.ws48{word-spacing:-23.086080px;}
.wsfa{word-spacing:-23.014080px;}
.ws1e{word-spacing:-22.979520px;}
.wsf6{word-spacing:-22.838400px;}
.ws20{word-spacing:-22.752000px;}
.wseb{word-spacing:-22.377600px;}
.wscd{word-spacing:-22.032000px;}
.ws23{word-spacing:-21.924000px;}
.ws1f{word-spacing:-21.728160px;}
.ws4d{word-spacing:-21.067200px;}
.wsee{word-spacing:-20.304000px;}
.wsc1{word-spacing:-20.196000px;}
.wse9{word-spacing:-20.016000px;}
.wse8{word-spacing:-19.872000px;}
.wsf0{word-spacing:-19.800000px;}
.ws58{word-spacing:-19.726560px;}
.ws5d{word-spacing:-19.630800px;}
.wsc{word-spacing:-19.439280px;}
.ws5b{word-spacing:-19.247760px;}
.ws5c{word-spacing:-19.152000px;}
.wsf1{word-spacing:-17.784000px;}
.wsb{word-spacing:-16.932240px;}
.wsc7{word-spacing:-16.543440px;}
.wsc8{word-spacing:-16.383600px;}
.wscb{word-spacing:-16.223760px;}
.wsf{word-spacing:-16.096320px;}
.wsb9{word-spacing:-16.063920px;}
.wsa7{word-spacing:-15.984000px;}
.ws9d{word-spacing:-15.751440px;}
.wsb1{word-spacing:-15.584400px;}
.wsbb{word-spacing:-15.504480px;}
.wsb0{word-spacing:-15.424560px;}
.wsb7{word-spacing:-15.344640px;}
.wsed{word-spacing:-15.078240px;}
.wsc2{word-spacing:-14.976000px;}
.wscc{word-spacing:-14.904000px;}
.wsc3{word-spacing:-14.616000px;}
.wsc4{word-spacing:-14.544000px;}
.ws24{word-spacing:-14.400000px;}
.wsc6{word-spacing:-13.008240px;}
.wsc5{word-spacing:-12.816000px;}
.ws39{word-spacing:-12.310560px;}
.ws91{word-spacing:-12.250800px;}
.ws38{word-spacing:-12.131280px;}
.ws3a{word-spacing:-11.892240px;}
.wsc9{word-spacing:-10.892160px;}
.wsca{word-spacing:-10.602720px;}
.ws72{word-spacing:-6.492960px;}
.ws104{word-spacing:-5.184000px;}
.ws26{word-spacing:-2.700000px;}
.wsd0{word-spacing:-2.358720px;}
.ws100{word-spacing:-2.304000px;}
.ws108{word-spacing:-2.237760px;}
.wsfe{word-spacing:-2.190240px;}
.ws57{word-spacing:-2.044080px;}
.ws25{word-spacing:-1.944000px;}
.wsd5{word-spacing:-1.937520px;}
.ws3b{word-spacing:-1.923840px;}
.ws101{word-spacing:-1.872000px;}
.ws3f{word-spacing:-1.728000px;}
.wse2{word-spacing:-1.678320px;}
.ws1{word-spacing:-1.642680px;}
.ws10{word-spacing:-1.585440px;}
.wsff{word-spacing:-1.584000px;}
.wsb3{word-spacing:-1.575144px;}
.ws7e{word-spacing:-1.563120px;}
.ws107{word-spacing:-1.518480px;}
.ws41{word-spacing:-1.494000px;}
.ws3{word-spacing:-1.474200px;}
.ws8d{word-spacing:-1.442880px;}
.ws4e{word-spacing:-1.322640px;}
.ws8c{word-spacing:-1.202400px;}
.wsa2{word-spacing:-1.154304px;}
.ws4{word-spacing:-1.137240px;}
.ws32{word-spacing:-1.082160px;}
.wse7{word-spacing:-1.080000px;}
.wsce{word-spacing:-0.972000px;}
.wsc0{word-spacing:-0.961920px;}
.wsdf{word-spacing:-0.959040px;}
.ws7{word-spacing:-0.935064px;}
.ws30{word-spacing:-0.841680px;}
.ws44{word-spacing:-0.836640px;}
.wsb5{word-spacing:-0.817632px;}
.ws102{word-spacing:-0.799200px;}
.ws109{word-spacing:-0.792720px;}
.ws9e{word-spacing:-0.776880px;}
.ws1a{word-spacing:-0.766080px;}
.ws7c{word-spacing:-0.721440px;}
.ws8{word-spacing:-0.657072px;}
.wsa4{word-spacing:-0.637272px;}
.ws2{word-spacing:-0.631800px;}
.ws2f{word-spacing:-0.601200px;}
.wse5{word-spacing:-0.559440px;}
.ws54{word-spacing:-0.480960px;}
.wsd8{word-spacing:-0.432000px;}
.ws9f{word-spacing:-0.358560px;}
.wse6{word-spacing:-0.324000px;}
.ws14{word-spacing:-0.288000px;}
.ws62{word-spacing:-0.287280px;}
.ws5{word-spacing:-0.277992px;}
.ws106{word-spacing:-0.263520px;}
.ws1b{word-spacing:-0.256320px;}
.ws53{word-spacing:-0.240480px;}
.ws7b{word-spacing:-0.239760px;}
.ws47{word-spacing:-0.239040px;}
.ws2b{word-spacing:-0.227520px;}
.ws69{word-spacing:-0.191520px;}
.wsd1{word-spacing:-0.144000px;}
.ws31{word-spacing:-0.120240px;}
.ws42{word-spacing:-0.119520px;}
.ws87{word-spacing:-0.108000px;}
.ws105{word-spacing:-0.087840px;}
.wsdd{word-spacing:-0.079920px;}
.wsd3{word-spacing:-0.072000px;}
.ws43{word-spacing:-0.059760px;}
.ws11{word-spacing:0.000000px;}
.wsa{word-spacing:0.008424px;}
.wsf7{word-spacing:0.043920px;}
.ws86{word-spacing:0.108000px;}
.ws28{word-spacing:0.113760px;}
.ws3c{word-spacing:0.120240px;}
.ws40{word-spacing:0.144000px;}
.wsb4{word-spacing:0.144288px;}
.wsdc{word-spacing:0.159840px;}
.ws18{word-spacing:0.191520px;}
.ws2a{word-spacing:0.227520px;}
.ws46{word-spacing:0.239040px;}
.ws8a{word-spacing:0.239760px;}
.ws3e{word-spacing:0.240480px;}
.ws12{word-spacing:0.264240px;}
.ws17{word-spacing:0.287280px;}
.wsda{word-spacing:0.288000px;}
.wsdb{word-spacing:0.319680px;}
.wsd6{word-spacing:0.320400px;}
.ws89{word-spacing:0.324000px;}
.wsa0{word-spacing:0.358560px;}
.ws56{word-spacing:0.360720px;}
.ws19{word-spacing:0.383040px;}
.wsaf{word-spacing:0.396864px;}
.ws15{word-spacing:0.432000px;}
.ws9{word-spacing:0.463320px;}
.ws81{word-spacing:0.479520px;}
.ws55{word-spacing:0.480960px;}
.wsa3{word-spacing:0.505008px;}
.ws13{word-spacing:0.528480px;}
.ws2c{word-spacing:0.540000px;}
.wse4{word-spacing:0.559440px;}
.wsd2{word-spacing:0.576000px;}
.ws92{word-spacing:0.597600px;}
.ws82{word-spacing:0.648000px;}
.ws16{word-spacing:0.670320px;}
.wsfd{word-spacing:0.702720px;}
.wsd7{word-spacing:0.720000px;}
.ws3d{word-spacing:0.721440px;}
.ws2d{word-spacing:0.756000px;}
.ws29{word-spacing:0.796320px;}
.ws65{word-spacing:0.861840px;}
.wsde{word-spacing:0.879120px;}
.wse1{word-spacing:0.959040px;}
.wsb2{word-spacing:0.961920px;}
.ws93{word-spacing:1.075680px;}
.wscf{word-spacing:1.141920px;}
.ws66{word-spacing:1.149120px;}
.ws0{word-spacing:1.152000px;}
.ws85{word-spacing:1.198800px;}
.wse3{word-spacing:1.278720px;}
.ws88{word-spacing:1.296000px;}
.ws6{word-spacing:1.347840px;}
.ws6a{word-spacing:1.404000px;}
.ws68{word-spacing:1.436400px;}
.wsbf{word-spacing:1.438560px;}
.wsd9{word-spacing:1.440000px;}
.ws61{word-spacing:1.532160px;}
.wsf8{word-spacing:1.545984px;}
.ws64{word-spacing:1.723680px;}
.ws7d{word-spacing:1.803600px;}
.ws63{word-spacing:1.819440px;}
.ws27{word-spacing:1.820160px;}
.ws10a{word-spacing:1.872000px;}
.ws52{word-spacing:1.918080px;}
.ws103{word-spacing:2.108160px;}
.wsd4{word-spacing:2.232000px;}
.ws5f{word-spacing:2.298240px;}
.wse0{word-spacing:2.637360px;}
.ws67{word-spacing:3.160080px;}
.ws60{word-spacing:3.926160px;}
.ws45{word-spacing:3.944160px;}
.wsd{word-spacing:6.009120px;}
.ws7a{word-spacing:6.613200px;}
.ws9c{word-spacing:6.853680px;}
.wsa1{word-spacing:9.054072px;}
.wsb6{word-spacing:9.685440px;}
.wsf9{word-spacing:15.131520px;}
.wse{word-spacing:25.012080px;}
.ws94{word-spacing:27.823752px;}
.ws8b{word-spacing:37.671840px;}
.ws22{word-spacing:39.785760px;}
.ws90{word-spacing:47.568960px;}
.ws37{word-spacing:47.582640px;}
.wsf2{word-spacing:64.058400px;}
.wsa5{word-spacing:99.390384px;}
.ws1d{word-spacing:100.306080px;}
.wsb8{word-spacing:112.352256px;}
.wsa6{word-spacing:131.135448px;}
.wsba{word-spacing:131.229936px;}
.wsad{word-spacing:151.222248px;}
.wsae{word-spacing:197.494200px;}
.wsbc{word-spacing:237.041136px;}
.wsa9{word-spacing:242.824680px;}
.wsac{word-spacing:306.924624px;}
.wsbe{word-spacing:367.285104px;}
.wsbd{word-spacing:394.579584px;}
.wsab{word-spacing:454.026240px;}
.ws8e{word-spacing:596.137896px;}
.ws59{word-spacing:669.340008px;}
.ws9b{word-spacing:784.578024px;}
.ws8f{word-spacing:788.606064px;}
.wsaa{word-spacing:807.363504px;}
.wsa8{word-spacing:854.605800px;}
.wsec{word-spacing:1774.958568px;}
._16{margin-left:-18.061200px;}
._1b{margin-left:-10.701360px;}
._1c{margin-left:-9.330624px;}
._1{margin-left:-7.266600px;}
._18{margin-left:-6.109848px;}
._8{margin-left:-4.804488px;}
._2{margin-left:-3.540816px;}
._0{margin-left:-2.113920px;}
._4{margin-left:-1.030536px;}
._3{width:1.056960px;}
._5{width:2.460240px;}
._a{width:3.553920px;}
._2b{width:7.009632px;}
._23{width:8.428440px;}
._2e{width:25.892640px;}
._14{width:26.933760px;}
._21{width:28.585872px;}
._e{width:31.252320px;}
._10{width:33.306480px;}
._2c{width:38.822400px;}
._15{width:50.453640px;}
._6{width:62.651520px;}
._1f{width:65.035440px;}
._11{width:77.073840px;}
._20{width:79.063200px;}
._f{width:83.548944px;}
._2d{width:88.565760px;}
._1d{width:98.837280px;}
._24{width:114.388416px;}
._17{width:130.242960px;}
._b{width:171.170136px;}
._29{width:177.298992px;}
._d{width:202.898736px;}
._28{width:221.911416px;}
._22{width:225.755280px;}
._25{width:316.351440px;}
._27{width:380.968416px;}
._c{width:407.613600px;}
._2a{width:429.036840px;}
._26{width:564.139656px;}
._1e{width:640.252800px;}
._7{width:653.642400px;}
._13{width:655.083000px;}
._12{width:1178.593128px;}
._2f{width:1326.389760px;}
._19{width:1424.839896px;}
._9{width:1481.749440px;}
._1a{width:3078.956376px;}
.fca{color:rgb(16,72,98);}
.fc7{color:rgb(97,192,228);}
.fc6{color:transparent;}
.fc5{color:rgb(255,192,0);}
.fc3{color:rgb(70,120,134);}
.fc8{color:rgb(0,2,108);}
.fc1{color:rgb(0,15,121);}
.fc9{color:rgb(127,127,127);}
.fc4{color:rgb(16,62,83);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:30.240000px;}
.fsc{font-size:40.320000px;}
.fs12{font-size:53.280000px;}
.fsb{font-size:59.760000px;}
.fs4{font-size:64.080000px;}
.fs9{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs11{font-size:79.920000px;}
.fs10{font-size:83.520000px;}
.fs2{font-size:84.240000px;}
.fse{font-size:87.840000px;}
.fs3{font-size:95.760000px;}
.fs6{font-size:108.000000px;}
.fs8{font-size:113.760000px;}
.fsa{font-size:120.240000px;}
.fs1{font-size:144.000000px;}
.fsf{font-size:167.760000px;}
.fs7{font-size:239.760000px;}
.fs0{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y1d{bottom:14.320200px;}
.y110{bottom:28.551960px;}
.y147{bottom:48.643650px;}
.y10f{bottom:52.488000px;}
.ya8{bottom:53.062440px;}
.y28{bottom:57.790050px;}
.ybe{bottom:59.628450px;}
.y33{bottom:65.640150px;}
.ydf{bottom:66.336660px;}
.ye7{bottom:69.130500px;}
.ye3{bottom:69.892260px;}
.ya7{bottom:71.065140px;}
.y146{bottom:75.105450px;}
.y27{bottom:75.792750px;}
.y10e{bottom:76.424040px;}
.y66{bottom:77.190870px;}
.y5e{bottom:77.573910px;}
.ybd{bottom:77.631150px;}
.y6a{bottom:78.268170px;}
.yd0{bottom:82.661250px;}
.y1c{bottom:91.822500px;}
.y84{bottom:92.601150px;}
.ybc{bottom:95.633850px;}
.y145{bottom:101.559330px;}
.yde{bottom:102.348540px;}
.ye6{bottom:105.322740px;}
.ye2{bottom:105.904140px;}
.y65{bottom:105.990690px;}
.y5d{bottom:106.373730px;}
.y10d{bottom:106.473960px;}
.y69{bottom:107.067990px;}
.ybb{bottom:113.636550px;}
.y80{bottom:119.603850px;}
.y144{bottom:127.845450px;}
.y10c{bottom:130.410000px;}
.yba{bottom:131.639250px;}
.y1b{bottom:134.122500px;}
.y57{bottom:135.173550px;}
.ydd{bottom:138.360420px;}
.y7a{bottom:139.924260px;}
.ye5{bottom:141.334620px;}
.ye1{bottom:141.916020px;}
.y64{bottom:143.791950px;}
.y68{bottom:144.869250px;}
.y94{bottom:148.362240px;}
.yb9{bottom:149.641950px;}
.y7f{bottom:152.003850px;}
.y40{bottom:152.291670px;}
.y143{bottom:154.305300px;}
.y10b{bottom:154.525860px;}
.y56{bottom:159.473550px;}
.ya1{bottom:159.862500px;}
.yf3{bottom:161.716920px;}
.y26{bottom:165.129000px;}
.yb8{bottom:167.644650px;}
.ycb{bottom:169.562520px;}
.y63{bottom:172.591770px;}
.y25{bottom:172.918350px;}
.y55{bottom:172.962090px;}
.y5c{bottom:172.974810px;}
.y67{bottom:173.669070px;}
.ydc{bottom:174.372300px;}
.y1a{bottom:176.602500px;}
.ye4{bottom:177.346500px;}
.ye0{bottom:177.927900px;}
.y79{bottom:179.693640px;}
.yf1{bottom:179.707560px;}
.y3e{bottom:180.735000px;}
.y142{bottom:180.765450px;}
.y93{bottom:184.374120px;}
.y10a{bottom:184.395960px;}
.y7e{bottom:184.403850px;}
.yb7{bottom:185.647350px;}
.y3f{bottom:188.303550px;}
.yf2{bottom:197.728800px;}
.ya0{bottom:199.817820px;}
.y141{bottom:207.045300px;}
.y109{bottom:208.332000px;}
.yd{bottom:209.576850px;}
.y14b{bottom:209.649150px;}
.yca{bottom:216.365940px;}
.y19{bottom:218.902500px;}
.y78{bottom:219.643380px;}
.y92{bottom:220.386000px;}
.y3d{bottom:220.515000px;}
.ycf{bottom:226.710810px;}
.yd3{bottom:228.636690px;}
.yb5{bottom:228.686850px;}
.y9f{bottom:232.222500px;}
.y140{bottom:233.503500px;}
.yf0{bottom:244.516920px;}
.ydb{bottom:245.128920px;}
.y48{bottom:247.993110px;}
.yd9{bottom:252.002220px;}
.y108{bottom:254.798550px;}
.y62{bottom:257.530890px;}
.y14a{bottom:257.701050px;}
.yfa{bottom:257.846370px;}
.y5b{bottom:257.913930px;}
.y77{bottom:259.593120px;}
.y13f{bottom:259.965300px;}
.y3c{bottom:260.470320px;}
.y18{bottom:261.202500px;}
.yee{bottom:262.500720px;}
.yce{bottom:262.722690px;}
.yc9{bottom:262.989000px;}
.yd2{bottom:264.648570px;}
.y9e{bottom:272.002500px;}
.y9c{bottom:277.222500px;}
.y54{bottom:277.843230px;}
.yef{bottom:280.528800px;}
.yda{bottom:281.140800px;}
.y149{bottom:281.641050px;}
.yb4{bottom:283.397640px;}
.y47{bottom:285.794370px;}
.y61{bottom:286.330710px;}
.y13e{bottom:286.425450px;}
.y5a{bottom:286.713750px;}
.yd8{bottom:288.014100px;}
.yf9{bottom:290.251050px;}
.y3b{bottom:292.875000px;}
.y127{bottom:294.143250px;}
.ycd{bottom:298.734570px;}
.y76{bottom:299.362500px;}
.yd1{bottom:300.660450px;}
.y8d{bottom:301.476660px;}
.y17{bottom:303.682500px;}
.yc3{bottom:305.206980px;}
.y24{bottom:305.661600px;}
.y32{bottom:305.948250px;}
.y148{bottom:306.124650px;}
.y5{bottom:308.242650px;}
.yc8{bottom:309.969000px;}
.y9d{bottom:311.962500px;}
.y13d{bottom:312.705300px;}
.y46{bottom:314.594190px;}
.y53{bottom:315.644490px;}
.yb3{bottom:315.802320px;}
.y9b{bottom:317.002500px;}
.y126{bottom:322.223250px;}
.yc2{bottom:323.886150px;}
.y60{bottom:324.131970px;}
.y59{bottom:324.515010px;}
.y107{bottom:326.338650px;}
.yec{bottom:327.310080px;}
.y3a{bottom:332.835000px;}
.yf8{bottom:334.462500px;}
.ycc{bottom:334.746450px;}
.y8c{bottom:337.488540px;}
.y13c{bottom:339.165300px;}
.y91{bottom:340.532610px;}
.y87{bottom:341.030850px;}
.y2d{bottom:342.082320px;}
.yeb{bottom:345.316020px;}
.y16{bottom:345.982500px;}
.yb2{bottom:348.207000px;}
.y4{bottom:350.002650px;}
.y75{bottom:352.098180px;}
.y45{bottom:352.395450px;}
.y5f{bottom:352.931790px;}
.y58{bottom:353.314830px;}
.y52{bottom:353.445750px;}
.y106{bottom:354.778650px;}
.y23{bottom:354.968700px;}
.y42{bottom:355.552770px;}
.y9a{bottom:356.962500px;}
.y125{bottom:357.683100px;}
.y11c{bottom:359.621700px;}
.yed{bottom:363.321960px;}
.y13b{bottom:365.619180px;}
.y74{bottom:367.225560px;}
.y86{bottom:373.430850px;}
.y8b{bottom:373.500420px;}
.yf7{bottom:374.422500px;}
.y2c{bottom:374.487000px;}
.y31{bottom:374.487150px;}
.y90{bottom:376.544490px;}
.y39{bottom:380.175000px;}
.y11b{bottom:383.561700px;}
.ya5{bottom:384.650190px;}
.y6b{bottom:385.098150px;}
.y105{bottom:385.198650px;}
.y124{bottom:385.749390px;}
.y15{bottom:388.282500px;}
.yc1{bottom:389.507130px;}
.yd7{bottom:390.238080px;}
.y41{bottom:391.564650px;}
.y13a{bottom:391.905300px;}
.yc{bottom:394.297680px;}
.y99{bottom:396.922500px;}
.y71{bottom:405.022500px;}
.y85{bottom:405.830850px;}
.y11a{bottom:407.501700px;}
.yc0{bottom:408.197280px;}
.y8a{bottom:409.512300px;}
.yea{bottom:410.125380px;}
.y73{bottom:410.782500px;}
.y8f{bottom:412.556370px;}
.y104{bottom:413.638650px;}
.yf6{bottom:414.202500px;}
.yc7{bottom:417.824400px;}
.y139{bottom:418.365300px;}
.y3{bottom:419.117670px;}
.y38{bottom:420.130320px;}
.y138{bottom:421.101900px;}
.y50{bottom:421.277940px;}
.y123{bottom:421.753350px;}
.y4d{bottom:422.390160px;}
.yb{bottom:423.097500px;}
.y72{bottom:430.758180px;}
.y14{bottom:430.762500px;}
.ya4{bottom:431.453610px;}
.y119{bottom:431.621700px;}
.y12c{bottom:434.753100px;}
.y98{bottom:436.702500px;}
.yd6{bottom:437.041500px;}
.y4a{bottom:440.245800px;}
.yb0{bottom:441.087000px;}
.y137{bottom:442.701900px;}
.y8e{bottom:448.568250px;}
.y103{bottom:451.438650px;}
.y122{bottom:451.823250px;}
.ya{bottom:451.897860px;}
.yb1{bottom:452.241600px;}
.y37{bottom:452.535000px;}
.yf5{bottom:454.162500px;}
.y118{bottom:455.565660px;}
.ye9{bottom:456.928800px;}
.y4f{bottom:457.289820px;}
.y4c{bottom:458.402040px;}
.y49{bottom:461.738700px;}
.yae{bottom:462.147000px;}
.y12b{bottom:467.153100px;}
.yab{bottom:467.726850px;}
.y22{bottom:469.102500px;}
.y30{bottom:469.145940px;}
.y2b{bottom:469.162320px;}
.y136{bottom:470.781900px;}
.y13{bottom:473.062350px;}
.ybf{bottom:473.938500px;}
.ya3{bottom:478.257030px;}
.y102{bottom:479.158650px;}
.y117{bottom:479.501700px;}
.y9{bottom:480.697680px;}
.y131{bottom:481.839150px;}
.yd5{bottom:483.838590px;}
.y97{bottom:484.217820px;}
.y83{bottom:484.283100px;}
.yc6{bottom:484.544730px;}
.y14d{bottom:485.912400px;}
.y121{bottom:487.283100px;}
.y2{bottom:490.396410px;}
.ya6{bottom:491.910000px;}
.y36{bottom:492.310320px;}
.y4e{bottom:493.301700px;}
.yaf{bottom:494.361600px;}
.y4b{bottom:494.413920px;}
.y6e{bottom:497.362500px;}
.y12a{bottom:499.553100px;}
.yf4{bottom:501.502500px;}
.y2f{bottom:501.550620px;}
.y2a{bottom:501.567000px;}
.y116{bottom:503.621700px;}
.yaa{bottom:506.067000px;}
.y101{bottom:506.698650px;}
.y21{bottom:509.062350px;}
.y130{bottom:509.379150px;}
.y8{bottom:509.511660px;}
.y12{bottom:515.362500px;}
.y120{bottom:515.363100px;}
.y96{bottom:516.622500px;}
.y82{bottom:516.683100px;}
.y70{bottom:517.522500px;}
.y35{bottom:524.715000px;}
.ya2{bottom:525.060450px;}
.y115{bottom:527.565660px;}
.yd4{bottom:530.461650px;}
.yc4{bottom:531.949350px;}
.y129{bottom:531.953100px;}
.y100{bottom:534.238650px;}
.y6d{bottom:535.702350px;}
.y12f{bottom:536.919150px;}
.yad{bottom:540.981450px;}
.y135{bottom:544.228800px;}
.y44{bottom:544.273020px;}
.y1f{bottom:549.022500px;}
.y81{bottom:549.083100px;}
.yb6{bottom:549.087000px;}
.yac{bottom:550.713690px;}
.y114{bottom:551.501700px;}
.y11f{bottom:555.323250px;}
.y20{bottom:556.402500px;}
.y11{bottom:557.842500px;}
.y1{bottom:561.675150px;}
.yff{bottom:562.678650px;}
.y7{bottom:563.304840px;}
.y95{bottom:563.957820px;}
.ya9{bottom:564.022320px;}
.y128{bottom:564.353100px;}
.y34{bottom:564.675000px;}
.y12e{bottom:565.359150px;}
.y134{bottom:568.168650px;}
.y113{bottom:575.441700px;}
.yc5{bottom:579.414090px;}
.y43{bottom:580.284900px;}
.y6f{bottom:580.349340px;}
.y11e{bottom:583.403100px;}
.y7b{bottom:586.642500px;}
.y133{bottom:592.108650px;}
.y7d{bottom:596.066400px;}
.y6c{bottom:596.358450px;}
.y1e{bottom:596.362500px;}
.y2e{bottom:596.419980px;}
.y29{bottom:596.427000px;}
.y51{bottom:597.399480px;}
.y112{bottom:599.561700px;}
.y10{bottom:600.142500px;}
.y6{bottom:616.308000px;}
.y132{bottom:616.588650px;}
.yfe{bottom:619.343250px;}
.y12d{bottom:621.843600px;}
.y111{bottom:624.041700px;}
.y89{bottom:627.670620px;}
.y7c{bottom:628.466400px;}
.y11d{bottom:643.060800px;}
.ye8{bottom:658.702680px;}
.y88{bottom:663.682500px;}
.y14c{bottom:671.002500px;}
.yf{bottom:672.410250px;}
.yfd{bottom:697.962450px;}
.yfc{bottom:730.362450px;}
.ye{bottom:761.182350px;}
.yfb{bottom:762.762450px;}
.h19{height:20.361797px;}
.h11{height:40.238789px;}
.h12{height:40.249589px;}
.h28{height:40.314389px;}
.h10{height:45.149062px;}
.h36{height:48.480469px;}
.h8{height:52.358906px;}
.h3e{height:52.453125px;}
.h3a{height:53.266992px;}
.h37{height:53.813320px;}
.h35{height:56.146289px;}
.h3{height:56.722148px;}
.h38{height:58.222969px;}
.h34{height:58.545703px;}
.h3b{height:59.270728px;}
.h39{height:59.271328px;}
.h3d{height:61.329023px;}
.h3f{height:62.549297px;}
.h5{height:63.824414px;}
.h3c{height:63.949922px;}
.h40{height:63.992812px;}
.h16{height:64.479023px;}
.h6{height:71.452930px;}
.h7{height:71.508130px;}
.h4{height:71.947617px;}
.h31{height:71.982422px;}
.h9{height:72.035156px;}
.h32{height:72.720703px;}
.hb{height:76.599141px;}
.h22{height:78.679688px;}
.h24{height:80.140430px;}
.hf{height:80.199141px;}
.h33{height:80.388281px;}
.hc{height:80.880469px;}
.h13{height:80.962383px;}
.h2c{height:80.976063px;}
.h1b{height:84.837305px;}
.hd{height:87.596719px;}
.h2f{height:89.266992px;}
.h2e{height:89.803600px;}
.h27{height:89.813320px;}
.h2d{height:89.860840px;}
.he{height:95.976562px;}
.h2{height:96.960938px;}
.h18{height:97.194783px;}
.h41{height:97.968938px;}
.h1a{height:108.942187px;}
.h1f{height:108.959468px;}
.h21{height:111.812695px;}
.h15{height:121.264444px;}
.h23{height:133.945312px;}
.h17{height:139.038303px;}
.h2b{height:148.417421px;}
.h14{height:149.125781px;}
.h30{height:152.986143px;}
.ha{height:159.918047px;}
.h1{height:176.246016px;}
.h26{height:179.182095px;}
.h20{height:179.489947px;}
.h29{height:221.427668px;}
.h2a{height:221.471587px;}
.h1c{height:221.845181px;}
.h25{height:233.365181px;}
.h1e{height:239.999467px;}
.h1d{height:342.942188px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x77{left:16.185750px;}
.x67{left:28.890000px;}
.x32{left:31.266900px;}
.x75{left:44.922450px;}
.x78{left:46.425750px;}
.x21{left:54.000000px;}
.x53{left:56.052450px;}
.x68{left:60.903900px;}
.x36{left:69.736050px;}
.x2{left:81.463050px;}
.x5{left:88.020900px;}
.x55{left:95.859750px;}
.x74{left:99.489450px;}
.x4d{left:105.878700px;}
.x56{left:107.186400px;}
.x3{left:109.800000px;}
.x73{left:111.564300px;}
.x9{left:114.707250px;}
.x46{left:122.940000px;}
.x3b{left:132.773100px;}
.x38{left:134.499450px;}
.xb{left:136.800000px;}
.xa{left:141.692310px;}
.x3d{left:143.647560px;}
.x5b{left:154.786200px;}
.x3c{left:159.769680px;}
.x4{left:163.800000px;}
.x39{left:169.477800px;}
.x33{left:177.470100px;}
.x3e{left:181.440000px;}
.xf{left:190.800000px;}
.x76{left:195.042450px;}
.x5c{left:199.605660px;}
.x10{left:204.300000px;}
.x5d{left:209.525460px;}
.x58{left:213.898800px;}
.x18{left:215.754450px;}
.x20{left:234.722310px;}
.x66{left:238.271700px;}
.x69{left:255.873060px;}
.x8{left:260.787450px;}
.x6f{left:264.011730px;}
.x6e{left:277.147950px;}
.x57{left:284.088900px;}
.x4e{left:336.389400px;}
.x3f{left:379.440000px;}
.x1{left:381.428550px;}
.x40{left:390.617640px;}
.x27{left:407.880000px;}
.x54{left:413.744250px;}
.x22{left:417.147210px;}
.x43{left:442.800000px;}
.x6b{left:444.078720px;}
.x70{left:452.037030px;}
.x6a{left:457.214940px;}
.x4c{left:475.630200px;}
.x19{left:488.458770px;}
.xd{left:502.142400px;}
.x2e{left:505.626120px;}
.x44{left:527.224680px;}
.x41{left:543.236040px;}
.x7b{left:564.053700px;}
.x7c{left:581.333700px;}
.x5f{left:589.248090px;}
.x42{left:592.371720px;}
.x5e{left:600.400350px;}
.x45{left:603.724680px;}
.x61{left:613.205910px;}
.x7a{left:614.358450px;}
.x60{left:621.833130px;}
.xe{left:633.720150px;}
.x6d{left:637.574940px;}
.x72{left:645.533250px;}
.x6c{left:650.711160px;}
.x6{left:656.902650px;}
.x71{left:658.849830px;}
.x28{left:666.180000px;}
.x29{left:674.283240px;}
.x79{left:689.695200px;}
.x24{left:711.704970px;}
.x2d{left:712.980000px;}
.x23{left:716.085990px;}
.x2b{left:720.367560px;}
.x4a{left:730.799850px;}
.x2a{left:732.420000px;}
.xc{left:739.803600px;}
.x1c{left:747.515850px;}
.x47{left:756.314550px;}
.x1a{left:770.541810px;}
.x1b{left:773.607930px;}
.x7{left:790.732500px;}
.x2f{left:825.840360px;}
.x86{left:848.393370px;}
.x59{left:926.222250px;}
.x65{left:929.872830px;}
.x31{left:934.188600px;}
.x5a{left:935.570910px;}
.x35{left:960.829350px;}
.x11{left:970.337250px;}
.x16{left:983.118300px;}
.x37{left:986.677500px;}
.x13{left:988.153950px;}
.x2c{left:1007.287560px;}
.x14{left:1008.504570px;}
.x25{left:1011.673170px;}
.x17{left:1014.379800px;}
.x64{left:1015.416540px;}
.x80{left:1017.288000px;}
.x62{left:1026.568800px;}
.x15{left:1027.757400px;}
.x63{left:1044.214020px;}
.x4b{left:1045.495080px;}
.x83{left:1049.661000px;}
.x7e{left:1057.070100px;}
.x84{left:1060.569300px;}
.x12{left:1064.665530px;}
.x3a{left:1070.995200px;}
.x1f{left:1083.917310px;}
.x82{left:1098.450000px;}
.x7f{left:1102.430100px;}
.x85{left:1105.929300px;}
.x1e{left:1110.009390px;}
.x1d{left:1113.796950px;}
.x48{left:1135.966350px;}
.x26{left:1147.331700px;}
.x49{left:1162.966350px;}
.x81{left:1165.599000px;}
.x52{left:1177.127970px;}
.x4f{left:1183.230150px;}
.x50{left:1189.182030px;}
.x34{left:1198.568550px;}
.x30{left:1200.060000px;}
.x7d{left:1210.662000px;}
.x51{left:1225.193910px;}
@media print{
.v12{vertical-align:-103.704320pt;}
.v11{vertical-align:-77.463787pt;}
.v18{vertical-align:-69.100800pt;}
.v1c{vertical-align:-67.197973pt;}
.v10{vertical-align:-64.772587pt;}
.v20{vertical-align:-49.668267pt;}
.v13{vertical-align:-42.860267pt;}
.v17{vertical-align:-39.661333pt;}
.v16{vertical-align:-29.439467pt;}
.v14{vertical-align:-26.240533pt;}
.v7{vertical-align:-21.759467pt;}
.v19{vertical-align:-20.479467pt;}
.vf{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.v21{vertical-align:0.896000pt;}
.v4{vertical-align:2.902827pt;}
.v6{vertical-align:14.428800pt;}
.v3{vertical-align:16.000000pt;}
.v1a{vertical-align:20.479467pt;}
.v8{vertical-align:21.759467pt;}
.v1{vertical-align:25.600000pt;}
.v2{vertical-align:28.800000pt;}
.v1d{vertical-align:32.000000pt;}
.v1f{vertical-align:39.025067pt;}
.vc{vertical-align:46.080533pt;}
.v5{vertical-align:51.623040pt;}
.vd{vertical-align:53.759467pt;}
.v1e{vertical-align:60.921600pt;}
.vb{vertical-align:62.720533pt;}
.v9{vertical-align:64.639467pt;}
.v15{vertical-align:74.879467pt;}
.v1b{vertical-align:87.677440pt;}
.ve{vertical-align:116.480000pt;}
.va{vertical-align:145.279467pt;}
.ls6a{letter-spacing:-7.695360pt;}
.ls86{letter-spacing:-6.168320pt;}
.ls6c{letter-spacing:-3.740800pt;}
.ls51{letter-spacing:-2.112000pt;}
.lsa4{letter-spacing:-1.984000pt;}
.ls4d{letter-spacing:-1.603200pt;}
.ls7d{letter-spacing:-1.536000pt;}
.lsa6{letter-spacing:-1.405440pt;}
.lsa7{letter-spacing:-1.249280pt;}
.ls17{letter-spacing:-1.213440pt;}
.ls31{letter-spacing:-1.175680pt;}
.ls34{letter-spacing:-1.068800pt;}
.ls4f{letter-spacing:-1.043840pt;}
.ls81{letter-spacing:-0.896000pt;}
.ls87{letter-spacing:-0.858880pt;}
.ls74{letter-spacing:-0.781440pt;}
.ls67{letter-spacing:-0.742400pt;}
.ls71{letter-spacing:-0.710400pt;}
.ls37{letter-spacing:-0.641280pt;}
.ls76{letter-spacing:-0.639360pt;}
.ls72{letter-spacing:-0.568320pt;}
.ls10{letter-spacing:-0.340480pt;}
.ls33{letter-spacing:-0.320640pt;}
.lsa3{letter-spacing:-0.312320pt;}
.ls18{letter-spacing:-0.303360pt;}
.lsa{letter-spacing:-0.299520pt;}
.ls68{letter-spacing:-0.296960pt;}
.ls1b{letter-spacing:-0.288000pt;}
.ls82{letter-spacing:-0.284800pt;}
.ls84{letter-spacing:-0.284160pt;}
.ls4{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.255360pt;}
.ls2{letter-spacing:-0.234880pt;}
.ls7f{letter-spacing:-0.234240pt;}
.ls1f{letter-spacing:-0.213760pt;}
.ls1d{letter-spacing:-0.213120pt;}
.ls26{letter-spacing:-0.212480pt;}
.ls15{letter-spacing:-0.202240pt;}
.ls19{letter-spacing:-0.192000pt;}
.ls88{letter-spacing:-0.189440pt;}
.ls83{letter-spacing:-0.170880pt;}
.lse{letter-spacing:-0.170240pt;}
.lsb{letter-spacing:-0.149760pt;}
.ls75{letter-spacing:-0.142080pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls23{letter-spacing:-0.106880pt;}
.ls16{letter-spacing:-0.101120pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls38{letter-spacing:-0.085120pt;}
.ls4c{letter-spacing:-0.078080pt;}
.ls9{letter-spacing:-0.074880pt;}
.ls80{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls94{letter-spacing:0.039040pt;}
.ls21{letter-spacing:0.061440pt;}
.ls89{letter-spacing:0.064000pt;}
.ls8d{letter-spacing:0.067456pt;}
.ls85{letter-spacing:0.071040pt;}
.ls8{letter-spacing:0.074880pt;}
.ls8a{letter-spacing:0.078080pt;}
.ls7c{letter-spacing:0.096000pt;}
.ls9a{letter-spacing:0.101504pt;}
.ls27{letter-spacing:0.106240pt;}
.ls20{letter-spacing:0.106880pt;}
.ls24{letter-spacing:0.128000pt;}
.ls7a{letter-spacing:0.142080pt;}
.ls92{letter-spacing:0.156160pt;}
.ls25{letter-spacing:0.159360pt;}
.ls39{letter-spacing:0.170240pt;}
.lsc{letter-spacing:0.170880pt;}
.ls14{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.202240pt;}
.ls9b{letter-spacing:0.203008pt;}
.ls28{letter-spacing:0.212480pt;}
.ls3a{letter-spacing:0.213120pt;}
.ls1e{letter-spacing:0.213760pt;}
.ls6{letter-spacing:0.224640pt;}
.lsf{letter-spacing:0.227840pt;}
.ls61{letter-spacing:0.234240pt;}
.ls0{letter-spacing:0.234880pt;}
.lsa2{letter-spacing:0.236800pt;}
.ls36{letter-spacing:0.255360pt;}
.ls5{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.276480pt;}
.ls79{letter-spacing:0.284160pt;}
.ls4e{letter-spacing:0.298240pt;}
.ls7{letter-spacing:0.299520pt;}
.lsa5{letter-spacing:0.312320pt;}
.ls69{letter-spacing:0.318720pt;}
.ls7e{letter-spacing:0.320000pt;}
.ls35{letter-spacing:0.320640pt;}
.ls13{letter-spacing:0.384000pt;}
.ls8b{letter-spacing:0.702720pt;}
.ls73{letter-spacing:0.748160pt;}
.lsa1{letter-spacing:0.780800pt;}
.ls78{letter-spacing:0.923520pt;}
.ls77{letter-spacing:0.960000pt;}
.ls93{letter-spacing:1.327360pt;}
.ls62{letter-spacing:1.405440pt;}
.ls22{letter-spacing:2.018560pt;}
.ls65{letter-spacing:2.030080pt;}
.ls8c{letter-spacing:2.069120pt;}
.ls60{letter-spacing:2.322411pt;}
.ls2b{letter-spacing:2.468480pt;}
.ls95{letter-spacing:2.576640pt;}
.ls2e{letter-spacing:2.638720pt;}
.ls9e{letter-spacing:2.662528pt;}
.ls2c{letter-spacing:2.723840pt;}
.ls9c{letter-spacing:2.732800pt;}
.ls2a{letter-spacing:2.778880pt;}
.ls57{letter-spacing:2.875072pt;}
.ls9d{letter-spacing:3.279360pt;}
.ls30{letter-spacing:3.319680pt;}
.ls66{letter-spacing:3.443200pt;}
.ls64{letter-spacing:4.023573pt;}
.ls63{letter-spacing:4.067307pt;}
.ls5e{letter-spacing:7.153920pt;}
.ls54{letter-spacing:7.720960pt;}
.ls9f{letter-spacing:16.709120pt;}
.lsa0{letter-spacing:17.318144pt;}
.ls55{letter-spacing:17.742080pt;}
.ls5a{letter-spacing:22.650880pt;}
.ls50{letter-spacing:23.232000pt;}
.ls3f{letter-spacing:23.620480pt;}
.ls29{letter-spacing:23.834240pt;}
.ls59{letter-spacing:26.739200pt;}
.ls5c{letter-spacing:27.909120pt;}
.ls56{letter-spacing:29.274880pt;}
.ls3d{letter-spacing:29.605760pt;}
.ls5b{letter-spacing:32.499200pt;}
.ls5f{letter-spacing:33.346560pt;}
.ls8f{letter-spacing:33.964800pt;}
.ls91{letter-spacing:34.011648pt;}
.ls90{letter-spacing:34.573824pt;}
.ls8e{letter-spacing:34.589440pt;}
.ls48{letter-spacing:34.903040pt;}
.ls4a{letter-spacing:35.520000pt;}
.ls45{letter-spacing:35.543040pt;}
.ls4b{letter-spacing:36.160000pt;}
.ls97{letter-spacing:36.541440pt;}
.ls7b{letter-spacing:36.576000pt;}
.ls96{letter-spacing:37.166080pt;}
.ls98{letter-spacing:37.298816pt;}
.ls99{letter-spacing:37.923456pt;}
.ls41{letter-spacing:51.313920pt;}
.ls3b{letter-spacing:58.570240pt;}
.ls1c{letter-spacing:58.592000pt;}
.ls5d{letter-spacing:58.592533pt;}
.ls3e{letter-spacing:67.655040pt;}
.ls44{letter-spacing:70.304640pt;}
.ls49{letter-spacing:70.325760pt;}
.ls47{letter-spacing:72.235520pt;}
.ls3c{letter-spacing:73.960960pt;}
.ls58{letter-spacing:74.238720pt;}
.ls43{letter-spacing:77.649920pt;}
.ls52{letter-spacing:82.938880pt;}
.ls42{letter-spacing:96.115200pt;}
.ls32{letter-spacing:106.592000pt;}
.ls40{letter-spacing:133.222400pt;}
.ls53{letter-spacing:153.423360pt;}
.ls46{letter-spacing:227.587840pt;}
.ls2d{letter-spacing:300.048000pt;}
.ls2f{letter-spacing:300.199253pt;}
.ls6e{letter-spacing:364.942827pt;}
.ls6f{letter-spacing:404.581227pt;}
.ls70{letter-spacing:404.581760pt;}
.ls6b{letter-spacing:438.956160pt;}
.ls6d{letter-spacing:940.971520pt;}
.ws4c{word-spacing:-106.880000pt;}
.ws6c{word-spacing:-106.666240pt;}
.ws96{word-spacing:-101.120000pt;}
.ws6f{word-spacing:-78.080000pt;}
.ws76{word-spacing:-64.192000pt;}
.ws49{word-spacing:-60.549696pt;}
.ws4a{word-spacing:-60.493440pt;}
.ws78{word-spacing:-59.958400pt;}
.ws75{word-spacing:-59.843840pt;}
.ws71{word-spacing:-58.867584pt;}
.ws73{word-spacing:-58.666240pt;}
.ws6e{word-spacing:-58.622080pt;}
.ws79{word-spacing:-57.653504pt;}
.ws95{word-spacing:-56.765440pt;}
.ws74{word-spacing:-49.246720pt;}
.ws77{word-spacing:-44.078080pt;}
.ws5e{word-spacing:-41.345280pt;}
.ws1c{word-spacing:-41.132160pt;}
.ws2e{word-spacing:-40.919040pt;}
.ws98{word-spacing:-37.212160pt;}
.ws9a{word-spacing:-35.216640pt;}
.ws7f{word-spacing:-30.569600pt;}
.ws80{word-spacing:-29.227520pt;}
.ws6d{word-spacing:-26.666496pt;}
.ws84{word-spacing:-26.400000pt;}
.ws83{word-spacing:-24.576000pt;}
.ws97{word-spacing:-24.120320pt;}
.ws4b{word-spacing:-23.513600pt;}
.ws70{word-spacing:-23.299840pt;}
.wsfb{word-spacing:-22.408960pt;}
.wsf5{word-spacing:-22.018560pt;}
.wsfc{word-spacing:-21.940480pt;}
.ws35{word-spacing:-21.910400pt;}
.ws36{word-spacing:-21.803520pt;}
.wsea{word-spacing:-21.784320pt;}
.ws4f{word-spacing:-21.696640pt;}
.wsf4{word-spacing:-21.628160pt;}
.ws34{word-spacing:-21.589760pt;}
.ws33{word-spacing:-21.482880pt;}
.wsf3{word-spacing:-21.472000pt;}
.wsef{word-spacing:-21.393920pt;}
.ws99{word-spacing:-21.388544pt;}
.ws51{word-spacing:-21.376000pt;}
.ws5a{word-spacing:-21.055360pt;}
.ws6b{word-spacing:-20.841600pt;}
.ws21{word-spacing:-20.729600pt;}
.ws50{word-spacing:-20.627840pt;}
.ws48{word-spacing:-20.520960pt;}
.wsfa{word-spacing:-20.456960pt;}
.ws1e{word-spacing:-20.426240pt;}
.wsf6{word-spacing:-20.300800pt;}
.ws20{word-spacing:-20.224000pt;}
.wseb{word-spacing:-19.891200pt;}
.wscd{word-spacing:-19.584000pt;}
.ws23{word-spacing:-19.488000pt;}
.ws1f{word-spacing:-19.313920pt;}
.ws4d{word-spacing:-18.726400pt;}
.wsee{word-spacing:-18.048000pt;}
.wsc1{word-spacing:-17.952000pt;}
.wse9{word-spacing:-17.792000pt;}
.wse8{word-spacing:-17.664000pt;}
.wsf0{word-spacing:-17.600000pt;}
.ws58{word-spacing:-17.534720pt;}
.ws5d{word-spacing:-17.449600pt;}
.wsc{word-spacing:-17.279360pt;}
.ws5b{word-spacing:-17.109120pt;}
.ws5c{word-spacing:-17.024000pt;}
.wsf1{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.050880pt;}
.wsc7{word-spacing:-14.705280pt;}
.wsc8{word-spacing:-14.563200pt;}
.wscb{word-spacing:-14.421120pt;}
.wsf{word-spacing:-14.307840pt;}
.wsb9{word-spacing:-14.279040pt;}
.wsa7{word-spacing:-14.208000pt;}
.ws9d{word-spacing:-14.001280pt;}
.wsb1{word-spacing:-13.852800pt;}
.wsbb{word-spacing:-13.781760pt;}
.wsb0{word-spacing:-13.710720pt;}
.wsb7{word-spacing:-13.639680pt;}
.wsed{word-spacing:-13.402880pt;}
.wsc2{word-spacing:-13.312000pt;}
.wscc{word-spacing:-13.248000pt;}
.wsc3{word-spacing:-12.992000pt;}
.wsc4{word-spacing:-12.928000pt;}
.ws24{word-spacing:-12.800000pt;}
.wsc6{word-spacing:-11.562880pt;}
.wsc5{word-spacing:-11.392000pt;}
.ws39{word-spacing:-10.942720pt;}
.ws91{word-spacing:-10.889600pt;}
.ws38{word-spacing:-10.783360pt;}
.ws3a{word-spacing:-10.570880pt;}
.wsc9{word-spacing:-9.681920pt;}
.wsca{word-spacing:-9.424640pt;}
.ws72{word-spacing:-5.771520pt;}
.ws104{word-spacing:-4.608000pt;}
.ws26{word-spacing:-2.400000pt;}
.wsd0{word-spacing:-2.096640pt;}
.ws100{word-spacing:-2.048000pt;}
.ws108{word-spacing:-1.989120pt;}
.wsfe{word-spacing:-1.946880pt;}
.ws57{word-spacing:-1.816960pt;}
.ws25{word-spacing:-1.728000pt;}
.wsd5{word-spacing:-1.722240pt;}
.ws3b{word-spacing:-1.710080pt;}
.ws101{word-spacing:-1.664000pt;}
.ws3f{word-spacing:-1.536000pt;}
.wse2{word-spacing:-1.491840pt;}
.ws1{word-spacing:-1.460160pt;}
.ws10{word-spacing:-1.409280pt;}
.wsff{word-spacing:-1.408000pt;}
.wsb3{word-spacing:-1.400128pt;}
.ws7e{word-spacing:-1.389440pt;}
.ws107{word-spacing:-1.349760pt;}
.ws41{word-spacing:-1.328000pt;}
.ws3{word-spacing:-1.310400pt;}
.ws8d{word-spacing:-1.282560pt;}
.ws4e{word-spacing:-1.175680pt;}
.ws8c{word-spacing:-1.068800pt;}
.wsa2{word-spacing:-1.026048pt;}
.ws4{word-spacing:-1.010880pt;}
.ws32{word-spacing:-0.961920pt;}
.wse7{word-spacing:-0.960000pt;}
.wsce{word-spacing:-0.864000pt;}
.wsc0{word-spacing:-0.855040pt;}
.wsdf{word-spacing:-0.852480pt;}
.ws7{word-spacing:-0.831168pt;}
.ws30{word-spacing:-0.748160pt;}
.ws44{word-spacing:-0.743680pt;}
.wsb5{word-spacing:-0.726784pt;}
.ws102{word-spacing:-0.710400pt;}
.ws109{word-spacing:-0.704640pt;}
.ws9e{word-spacing:-0.690560pt;}
.ws1a{word-spacing:-0.680960pt;}
.ws7c{word-spacing:-0.641280pt;}
.ws8{word-spacing:-0.584064pt;}
.wsa4{word-spacing:-0.566464pt;}
.ws2{word-spacing:-0.561600pt;}
.ws2f{word-spacing:-0.534400pt;}
.wse5{word-spacing:-0.497280pt;}
.ws54{word-spacing:-0.427520pt;}
.wsd8{word-spacing:-0.384000pt;}
.ws9f{word-spacing:-0.318720pt;}
.wse6{word-spacing:-0.288000pt;}
.ws14{word-spacing:-0.256000pt;}
.ws62{word-spacing:-0.255360pt;}
.ws5{word-spacing:-0.247104pt;}
.ws106{word-spacing:-0.234240pt;}
.ws1b{word-spacing:-0.227840pt;}
.ws53{word-spacing:-0.213760pt;}
.ws7b{word-spacing:-0.213120pt;}
.ws47{word-spacing:-0.212480pt;}
.ws2b{word-spacing:-0.202240pt;}
.ws69{word-spacing:-0.170240pt;}
.wsd1{word-spacing:-0.128000pt;}
.ws31{word-spacing:-0.106880pt;}
.ws42{word-spacing:-0.106240pt;}
.ws87{word-spacing:-0.096000pt;}
.ws105{word-spacing:-0.078080pt;}
.wsdd{word-spacing:-0.071040pt;}
.wsd3{word-spacing:-0.064000pt;}
.ws43{word-spacing:-0.053120pt;}
.ws11{word-spacing:0.000000pt;}
.wsa{word-spacing:0.007488pt;}
.wsf7{word-spacing:0.039040pt;}
.ws86{word-spacing:0.096000pt;}
.ws28{word-spacing:0.101120pt;}
.ws3c{word-spacing:0.106880pt;}
.ws40{word-spacing:0.128000pt;}
.wsb4{word-spacing:0.128256pt;}
.wsdc{word-spacing:0.142080pt;}
.ws18{word-spacing:0.170240pt;}
.ws2a{word-spacing:0.202240pt;}
.ws46{word-spacing:0.212480pt;}
.ws8a{word-spacing:0.213120pt;}
.ws3e{word-spacing:0.213760pt;}
.ws12{word-spacing:0.234880pt;}
.ws17{word-spacing:0.255360pt;}
.wsda{word-spacing:0.256000pt;}
.wsdb{word-spacing:0.284160pt;}
.wsd6{word-spacing:0.284800pt;}
.ws89{word-spacing:0.288000pt;}
.wsa0{word-spacing:0.318720pt;}
.ws56{word-spacing:0.320640pt;}
.ws19{word-spacing:0.340480pt;}
.wsaf{word-spacing:0.352768pt;}
.ws15{word-spacing:0.384000pt;}
.ws9{word-spacing:0.411840pt;}
.ws81{word-spacing:0.426240pt;}
.ws55{word-spacing:0.427520pt;}
.wsa3{word-spacing:0.448896pt;}
.ws13{word-spacing:0.469760pt;}
.ws2c{word-spacing:0.480000pt;}
.wse4{word-spacing:0.497280pt;}
.wsd2{word-spacing:0.512000pt;}
.ws92{word-spacing:0.531200pt;}
.ws82{word-spacing:0.576000pt;}
.ws16{word-spacing:0.595840pt;}
.wsfd{word-spacing:0.624640pt;}
.wsd7{word-spacing:0.640000pt;}
.ws3d{word-spacing:0.641280pt;}
.ws2d{word-spacing:0.672000pt;}
.ws29{word-spacing:0.707840pt;}
.ws65{word-spacing:0.766080pt;}
.wsde{word-spacing:0.781440pt;}
.wse1{word-spacing:0.852480pt;}
.wsb2{word-spacing:0.855040pt;}
.ws93{word-spacing:0.956160pt;}
.wscf{word-spacing:1.015040pt;}
.ws66{word-spacing:1.021440pt;}
.ws0{word-spacing:1.024000pt;}
.ws85{word-spacing:1.065600pt;}
.wse3{word-spacing:1.136640pt;}
.ws88{word-spacing:1.152000pt;}
.ws6{word-spacing:1.198080pt;}
.ws6a{word-spacing:1.248000pt;}
.ws68{word-spacing:1.276800pt;}
.wsbf{word-spacing:1.278720pt;}
.wsd9{word-spacing:1.280000pt;}
.ws61{word-spacing:1.361920pt;}
.wsf8{word-spacing:1.374208pt;}
.ws64{word-spacing:1.532160pt;}
.ws7d{word-spacing:1.603200pt;}
.ws63{word-spacing:1.617280pt;}
.ws27{word-spacing:1.617920pt;}
.ws10a{word-spacing:1.664000pt;}
.ws52{word-spacing:1.704960pt;}
.ws103{word-spacing:1.873920pt;}
.wsd4{word-spacing:1.984000pt;}
.ws5f{word-spacing:2.042880pt;}
.wse0{word-spacing:2.344320pt;}
.ws67{word-spacing:2.808960pt;}
.ws60{word-spacing:3.489920pt;}
.ws45{word-spacing:3.505920pt;}
.wsd{word-spacing:5.341440pt;}
.ws7a{word-spacing:5.878400pt;}
.ws9c{word-spacing:6.092160pt;}
.wsa1{word-spacing:8.048064pt;}
.wsb6{word-spacing:8.609280pt;}
.wsf9{word-spacing:13.450240pt;}
.wse{word-spacing:22.232960pt;}
.ws94{word-spacing:24.732224pt;}
.ws8b{word-spacing:33.486080pt;}
.ws22{word-spacing:35.365120pt;}
.ws90{word-spacing:42.283520pt;}
.ws37{word-spacing:42.295680pt;}
.wsf2{word-spacing:56.940800pt;}
.wsa5{word-spacing:88.347008pt;}
.ws1d{word-spacing:89.160960pt;}
.wsb8{word-spacing:99.868672pt;}
.wsa6{word-spacing:116.564843pt;}
.wsba{word-spacing:116.648832pt;}
.wsad{word-spacing:134.419776pt;}
.wsae{word-spacing:175.550400pt;}
.wsbc{word-spacing:210.703232pt;}
.wsa9{word-spacing:215.844160pt;}
.wsac{word-spacing:272.821888pt;}
.wsbe{word-spacing:326.475648pt;}
.wsbd{word-spacing:350.737408pt;}
.wsab{word-spacing:403.578880pt;}
.ws8e{word-spacing:529.900352pt;}
.ws59{word-spacing:594.968896pt;}
.ws9b{word-spacing:697.402688pt;}
.ws8f{word-spacing:700.983168pt;}
.wsaa{word-spacing:717.656448pt;}
.wsa8{word-spacing:759.649600pt;}
.wsec{word-spacing:1577.740949pt;}
._16{margin-left:-16.054400pt;}
._1b{margin-left:-9.512320pt;}
._1c{margin-left:-8.293888pt;}
._1{margin-left:-6.459200pt;}
._18{margin-left:-5.430976pt;}
._8{margin-left:-4.270656pt;}
._2{margin-left:-3.147392pt;}
._0{margin-left:-1.879040pt;}
._4{margin-left:-0.916032pt;}
._3{width:0.939520pt;}
._5{width:2.186880pt;}
._a{width:3.159040pt;}
._2b{width:6.230784pt;}
._23{width:7.491947pt;}
._2e{width:23.015680pt;}
._14{width:23.941120pt;}
._21{width:25.409664pt;}
._e{width:27.779840pt;}
._10{width:29.605760pt;}
._2c{width:34.508800pt;}
._15{width:44.847680pt;}
._6{width:55.690240pt;}
._1f{width:57.809280pt;}
._11{width:68.510080pt;}
._20{width:70.278400pt;}
._f{width:74.265728pt;}
._2d{width:78.725120pt;}
._1d{width:87.855360pt;}
._24{width:101.678592pt;}
._17{width:115.771520pt;}
._b{width:152.151232pt;}
._29{width:157.599104pt;}
._d{width:180.354432pt;}
._28{width:197.254592pt;}
._22{width:200.671360pt;}
._25{width:281.201280pt;}
._27{width:338.638592pt;}
._c{width:362.323200pt;}
._2a{width:381.366080pt;}
._26{width:501.457472pt;}
._1e{width:569.113600pt;}
._7{width:581.015467pt;}
._13{width:582.296000pt;}
._12{width:1047.638336pt;}
._2f{width:1179.013120pt;}
._19{width:1266.524352pt;}
._9{width:1317.110613pt;}
._1a{width:2736.850112pt;}
.fsd{font-size:26.880000pt;}
.fsc{font-size:35.840000pt;}
.fs12{font-size:47.360000pt;}
.fsb{font-size:53.120000pt;}
.fs4{font-size:56.960000pt;}
.fs9{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs11{font-size:71.040000pt;}
.fs10{font-size:74.240000pt;}
.fs2{font-size:74.880000pt;}
.fse{font-size:78.080000pt;}
.fs3{font-size:85.120000pt;}
.fs6{font-size:96.000000pt;}
.fs8{font-size:101.120000pt;}
.fsa{font-size:106.880000pt;}
.fs1{font-size:128.000000pt;}
.fsf{font-size:149.120000pt;}
.fs7{font-size:213.120000pt;}
.fs0{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:12.729067pt;}
.y110{bottom:25.379520pt;}
.y147{bottom:43.238800pt;}
.y10f{bottom:46.656000pt;}
.ya8{bottom:47.166613pt;}
.y28{bottom:51.368933pt;}
.ybe{bottom:53.003067pt;}
.y33{bottom:58.346800pt;}
.ydf{bottom:58.965920pt;}
.ye7{bottom:61.449333pt;}
.ye3{bottom:62.126453pt;}
.ya7{bottom:63.169013pt;}
.y146{bottom:66.760400pt;}
.y27{bottom:67.371333pt;}
.y10e{bottom:67.932480pt;}
.y66{bottom:68.614107pt;}
.y5e{bottom:68.954587pt;}
.ybd{bottom:69.005467pt;}
.y6a{bottom:69.571707pt;}
.yd0{bottom:73.476667pt;}
.y1c{bottom:81.620000pt;}
.y84{bottom:82.312133pt;}
.ybc{bottom:85.007867pt;}
.y145{bottom:90.274960pt;}
.yde{bottom:90.976480pt;}
.ye6{bottom:93.620213pt;}
.ye2{bottom:94.137013pt;}
.y65{bottom:94.213947pt;}
.y5d{bottom:94.554427pt;}
.y10d{bottom:94.643520pt;}
.y69{bottom:95.171547pt;}
.ybb{bottom:101.010267pt;}
.y80{bottom:106.314533pt;}
.y144{bottom:113.640400pt;}
.y10c{bottom:115.920000pt;}
.yba{bottom:117.012667pt;}
.y1b{bottom:119.220000pt;}
.y57{bottom:120.154267pt;}
.ydd{bottom:122.987040pt;}
.y7a{bottom:124.377120pt;}
.ye5{bottom:125.630773pt;}
.ye1{bottom:126.147573pt;}
.y64{bottom:127.815067pt;}
.y68{bottom:128.772667pt;}
.y94{bottom:131.877547pt;}
.yb9{bottom:133.015067pt;}
.y7f{bottom:135.114533pt;}
.y40{bottom:135.370373pt;}
.y143{bottom:137.160267pt;}
.y10b{bottom:137.356320pt;}
.y56{bottom:141.754267pt;}
.ya1{bottom:142.100000pt;}
.yf3{bottom:143.748373pt;}
.y26{bottom:146.781333pt;}
.yb8{bottom:149.017467pt;}
.ycb{bottom:150.722240pt;}
.y63{bottom:153.414907pt;}
.y25{bottom:153.705200pt;}
.y55{bottom:153.744080pt;}
.y5c{bottom:153.755387pt;}
.y67{bottom:154.372507pt;}
.ydc{bottom:154.997600pt;}
.y1a{bottom:156.980000pt;}
.ye4{bottom:157.641333pt;}
.ye0{bottom:158.158133pt;}
.y79{bottom:159.727680pt;}
.yf1{bottom:159.740053pt;}
.y3e{bottom:160.653333pt;}
.y142{bottom:160.680400pt;}
.y93{bottom:163.888107pt;}
.y10a{bottom:163.907520pt;}
.y7e{bottom:163.914533pt;}
.yb7{bottom:165.019867pt;}
.y3f{bottom:167.380933pt;}
.yf2{bottom:175.758933pt;}
.ya0{bottom:177.615840pt;}
.y141{bottom:184.040267pt;}
.y109{bottom:185.184000pt;}
.yd{bottom:186.290533pt;}
.y14b{bottom:186.354800pt;}
.yca{bottom:192.325280pt;}
.y19{bottom:194.580000pt;}
.y78{bottom:195.238560pt;}
.y92{bottom:195.898667pt;}
.y3d{bottom:196.013333pt;}
.ycf{bottom:201.520720pt;}
.yd3{bottom:203.232613pt;}
.yb5{bottom:203.277200pt;}
.y9f{bottom:206.420000pt;}
.y140{bottom:207.558667pt;}
.yf0{bottom:217.348373pt;}
.ydb{bottom:217.892373pt;}
.y48{bottom:220.438320pt;}
.yd9{bottom:224.001973pt;}
.y108{bottom:226.487600pt;}
.y62{bottom:228.916347pt;}
.y14a{bottom:229.067600pt;}
.yfa{bottom:229.196773pt;}
.y5b{bottom:229.256827pt;}
.y77{bottom:230.749440pt;}
.y13f{bottom:231.080267pt;}
.y3c{bottom:231.529173pt;}
.y18{bottom:232.180000pt;}
.yee{bottom:233.333973pt;}
.yce{bottom:233.531280pt;}
.yc9{bottom:233.768000pt;}
.yd2{bottom:235.243173pt;}
.y9e{bottom:241.780000pt;}
.y9c{bottom:246.420000pt;}
.y54{bottom:246.971760pt;}
.yef{bottom:249.358933pt;}
.yda{bottom:249.902933pt;}
.y149{bottom:250.347600pt;}
.yb4{bottom:251.909013pt;}
.y47{bottom:254.039440pt;}
.y61{bottom:254.516187pt;}
.y13e{bottom:254.600400pt;}
.y5a{bottom:254.856667pt;}
.yd8{bottom:256.012533pt;}
.yf9{bottom:258.000933pt;}
.y3b{bottom:260.333333pt;}
.y127{bottom:261.460667pt;}
.ycd{bottom:265.541840pt;}
.y76{bottom:266.100000pt;}
.yd1{bottom:267.253733pt;}
.y8d{bottom:267.979253pt;}
.y17{bottom:269.940000pt;}
.yc3{bottom:271.295093pt;}
.y24{bottom:271.699200pt;}
.y32{bottom:271.954000pt;}
.y148{bottom:272.110800pt;}
.y5{bottom:273.993467pt;}
.yc8{bottom:275.528000pt;}
.y9d{bottom:277.300000pt;}
.y13d{bottom:277.960267pt;}
.y46{bottom:279.639280pt;}
.y53{bottom:280.572880pt;}
.yb3{bottom:280.713173pt;}
.y9b{bottom:281.780000pt;}
.y126{bottom:286.420667pt;}
.yc2{bottom:287.898800pt;}
.y60{bottom:288.117307pt;}
.y59{bottom:288.457787pt;}
.y107{bottom:290.078800pt;}
.yec{bottom:290.942293pt;}
.y3a{bottom:295.853333pt;}
.yf8{bottom:297.300000pt;}
.ycc{bottom:297.552400pt;}
.y8c{bottom:299.989813pt;}
.y13c{bottom:301.480267pt;}
.y91{bottom:302.695653pt;}
.y87{bottom:303.138533pt;}
.y2d{bottom:304.073173pt;}
.yeb{bottom:306.947573pt;}
.y16{bottom:307.540000pt;}
.yb2{bottom:309.517333pt;}
.y4{bottom:311.113467pt;}
.y75{bottom:312.976160pt;}
.y45{bottom:313.240400pt;}
.y5f{bottom:313.717147pt;}
.y58{bottom:314.057627pt;}
.y52{bottom:314.174000pt;}
.y106{bottom:315.358800pt;}
.y23{bottom:315.527733pt;}
.y42{bottom:316.046907pt;}
.y9a{bottom:317.300000pt;}
.y125{bottom:317.940533pt;}
.y11c{bottom:319.663733pt;}
.yed{bottom:322.952853pt;}
.y13b{bottom:324.994827pt;}
.y74{bottom:326.422720pt;}
.y86{bottom:331.938533pt;}
.y8b{bottom:332.000373pt;}
.yf7{bottom:332.820000pt;}
.y2c{bottom:332.877333pt;}
.y31{bottom:332.877467pt;}
.y90{bottom:334.706213pt;}
.y39{bottom:337.933333pt;}
.y11b{bottom:340.943733pt;}
.ya5{bottom:341.911280pt;}
.y6b{bottom:342.309467pt;}
.y105{bottom:342.398800pt;}
.y124{bottom:342.888347pt;}
.y15{bottom:345.140000pt;}
.yc1{bottom:346.228560pt;}
.yd7{bottom:346.878293pt;}
.y41{bottom:348.057467pt;}
.y13a{bottom:348.360267pt;}
.yc{bottom:350.486827pt;}
.y99{bottom:352.820000pt;}
.y71{bottom:360.020000pt;}
.y85{bottom:360.738533pt;}
.y11a{bottom:362.223733pt;}
.yc0{bottom:362.842027pt;}
.y8a{bottom:364.010933pt;}
.yea{bottom:364.555893pt;}
.y73{bottom:365.140000pt;}
.y8f{bottom:366.716773pt;}
.y104{bottom:367.678800pt;}
.yf6{bottom:368.180000pt;}
.yc7{bottom:371.399467pt;}
.y139{bottom:371.880267pt;}
.y3{bottom:372.549040pt;}
.y38{bottom:373.449173pt;}
.y138{bottom:374.312800pt;}
.y50{bottom:374.469280pt;}
.y123{bottom:374.891867pt;}
.y4d{bottom:375.457920pt;}
.yb{bottom:376.086667pt;}
.y72{bottom:382.896160pt;}
.y14{bottom:382.900000pt;}
.ya4{bottom:383.514320pt;}
.y119{bottom:383.663733pt;}
.y12c{bottom:386.447200pt;}
.y98{bottom:388.180000pt;}
.yd6{bottom:388.481333pt;}
.y4a{bottom:391.329600pt;}
.yb0{bottom:392.077333pt;}
.y137{bottom:393.512800pt;}
.y8e{bottom:398.727333pt;}
.y103{bottom:401.278800pt;}
.y122{bottom:401.620667pt;}
.ya{bottom:401.686987pt;}
.yb1{bottom:401.992533pt;}
.y37{bottom:402.253333pt;}
.yf5{bottom:403.700000pt;}
.y118{bottom:404.947253pt;}
.ye9{bottom:406.158933pt;}
.y4f{bottom:406.479840pt;}
.y4c{bottom:407.468480pt;}
.y49{bottom:410.434400pt;}
.yae{bottom:410.797333pt;}
.y12b{bottom:415.247200pt;}
.yab{bottom:415.757200pt;}
.y22{bottom:416.980000pt;}
.y30{bottom:417.018613pt;}
.y2b{bottom:417.033173pt;}
.y136{bottom:418.472800pt;}
.y13{bottom:420.499867pt;}
.ybf{bottom:421.278667pt;}
.ya3{bottom:425.117360pt;}
.y102{bottom:425.918800pt;}
.y117{bottom:426.223733pt;}
.y9{bottom:427.286827pt;}
.y131{bottom:428.301467pt;}
.yd5{bottom:430.078747pt;}
.y97{bottom:430.415840pt;}
.y83{bottom:430.473867pt;}
.yc6{bottom:430.706427pt;}
.y14d{bottom:431.922133pt;}
.y121{bottom:433.140533pt;}
.y2{bottom:435.907920pt;}
.ya6{bottom:437.253333pt;}
.y36{bottom:437.609173pt;}
.y4e{bottom:438.490400pt;}
.yaf{bottom:439.432533pt;}
.y4b{bottom:439.479040pt;}
.y6e{bottom:442.100000pt;}
.y12a{bottom:444.047200pt;}
.yf4{bottom:445.780000pt;}
.y2f{bottom:445.822773pt;}
.y2a{bottom:445.837333pt;}
.y116{bottom:447.663733pt;}
.yaa{bottom:449.837333pt;}
.y101{bottom:450.398800pt;}
.y21{bottom:452.499867pt;}
.y130{bottom:452.781467pt;}
.y8{bottom:452.899253pt;}
.y12{bottom:458.100000pt;}
.y120{bottom:458.100533pt;}
.y96{bottom:459.220000pt;}
.y82{bottom:459.273867pt;}
.y70{bottom:460.020000pt;}
.y35{bottom:466.413333pt;}
.ya2{bottom:466.720400pt;}
.y115{bottom:468.947253pt;}
.yd4{bottom:471.521467pt;}
.yc4{bottom:472.843867pt;}
.y129{bottom:472.847200pt;}
.y100{bottom:474.878800pt;}
.y6d{bottom:476.179867pt;}
.y12f{bottom:477.261467pt;}
.yad{bottom:480.872400pt;}
.y135{bottom:483.758933pt;}
.y44{bottom:483.798240pt;}
.y1f{bottom:488.020000pt;}
.y81{bottom:488.073867pt;}
.yb6{bottom:488.077333pt;}
.yac{bottom:489.523280pt;}
.y114{bottom:490.223733pt;}
.y11f{bottom:493.620667pt;}
.y20{bottom:494.580000pt;}
.y11{bottom:495.860000pt;}
.y1{bottom:499.266800pt;}
.yff{bottom:500.158800pt;}
.y7{bottom:500.715413pt;}
.y95{bottom:501.295840pt;}
.ya9{bottom:501.353173pt;}
.y128{bottom:501.647200pt;}
.y34{bottom:501.933333pt;}
.y12e{bottom:502.541467pt;}
.y134{bottom:505.038800pt;}
.y113{bottom:511.503733pt;}
.yc5{bottom:515.034747pt;}
.y43{bottom:515.808800pt;}
.y6f{bottom:515.866080pt;}
.y11e{bottom:518.580533pt;}
.y7b{bottom:521.460000pt;}
.y133{bottom:526.318800pt;}
.y7d{bottom:529.836800pt;}
.y6c{bottom:530.096400pt;}
.y1e{bottom:530.100000pt;}
.y2e{bottom:530.151093pt;}
.y29{bottom:530.157333pt;}
.y51{bottom:531.021760pt;}
.y112{bottom:532.943733pt;}
.y10{bottom:533.460000pt;}
.y6{bottom:547.829333pt;}
.y132{bottom:548.078800pt;}
.yfe{bottom:550.527333pt;}
.y12d{bottom:552.749867pt;}
.y111{bottom:554.703733pt;}
.y89{bottom:557.929440pt;}
.y7c{bottom:558.636800pt;}
.y11d{bottom:571.609600pt;}
.ye8{bottom:585.513493pt;}
.y88{bottom:589.940000pt;}
.y14c{bottom:596.446667pt;}
.yf{bottom:597.698000pt;}
.yfd{bottom:620.411067pt;}
.yfc{bottom:649.211067pt;}
.ye{bottom:676.606533pt;}
.yfb{bottom:678.011067pt;}
.h19{height:18.099375pt;}
.h11{height:35.767812pt;}
.h12{height:35.777413pt;}
.h28{height:35.835012pt;}
.h10{height:40.132500pt;}
.h36{height:43.093750pt;}
.h8{height:46.541250pt;}
.h3e{height:46.625000pt;}
.h3a{height:47.348437pt;}
.h37{height:47.834063pt;}
.h35{height:49.907812pt;}
.h3{height:50.419687pt;}
.h38{height:51.753750pt;}
.h34{height:52.040625pt;}
.h3b{height:52.685092pt;}
.h39{height:52.685625pt;}
.h3d{height:54.514687pt;}
.h3f{height:55.599375pt;}
.h5{height:56.732813pt;}
.h3c{height:56.844375pt;}
.h40{height:56.882500pt;}
.h16{height:57.314687pt;}
.h6{height:63.513716pt;}
.h7{height:63.562782pt;}
.h4{height:63.953438pt;}
.h31{height:63.984375pt;}
.h9{height:64.031250pt;}
.h32{height:64.640625pt;}
.hb{height:68.088125pt;}
.h22{height:69.937500pt;}
.h24{height:71.235937pt;}
.hf{height:71.288125pt;}
.h33{height:71.456250pt;}
.hc{height:71.893750pt;}
.h13{height:71.966562pt;}
.h2c{height:71.978723pt;}
.h1b{height:75.410937pt;}
.hd{height:77.863750pt;}
.h2f{height:79.348437pt;}
.h2e{height:79.825422pt;}
.h27{height:79.834062pt;}
.h2d{height:79.876303pt;}
.he{height:85.312500pt;}
.h2{height:86.187500pt;}
.h18{height:86.395363pt;}
.h41{height:87.083500pt;}
.h1a{height:96.837500pt;}
.h1f{height:96.852860pt;}
.h21{height:99.389062pt;}
.h15{height:107.790617pt;}
.h23{height:119.062500pt;}
.h17{height:123.589602pt;}
.h2b{height:131.926597pt;}
.h14{height:132.556250pt;}
.h30{height:135.987683pt;}
.ha{height:142.149375pt;}
.h1{height:156.663125pt;}
.h26{height:159.272973pt;}
.h20{height:159.546620pt;}
.h29{height:196.824593pt;}
.h2a{height:196.863633pt;}
.h1c{height:197.195717pt;}
.h25{height:207.435717pt;}
.h1e{height:213.332860pt;}
.h1d{height:304.837500pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x77{left:14.387333pt;}
.x67{left:25.680000pt;}
.x32{left:27.792800pt;}
.x75{left:39.931067pt;}
.x78{left:41.267333pt;}
.x21{left:48.000000pt;}
.x53{left:49.824400pt;}
.x68{left:54.136800pt;}
.x36{left:61.987600pt;}
.x2{left:72.411600pt;}
.x5{left:78.240800pt;}
.x55{left:85.208667pt;}
.x74{left:88.435067pt;}
.x4d{left:94.114400pt;}
.x56{left:95.276800pt;}
.x3{left:97.600000pt;}
.x73{left:99.168267pt;}
.x9{left:101.962000pt;}
.x46{left:109.280000pt;}
.x3b{left:118.020533pt;}
.x38{left:119.555067pt;}
.xb{left:121.600000pt;}
.xa{left:125.948720pt;}
.x3d{left:127.686720pt;}
.x5b{left:137.587733pt;}
.x3c{left:142.017493pt;}
.x4{left:145.600000pt;}
.x39{left:150.646933pt;}
.x33{left:157.751200pt;}
.x3e{left:161.280000pt;}
.xf{left:169.600000pt;}
.x76{left:173.371067pt;}
.x5c{left:177.427253pt;}
.x10{left:181.600000pt;}
.x5d{left:186.244853pt;}
.x58{left:190.132267pt;}
.x18{left:191.781733pt;}
.x20{left:208.642053pt;}
.x66{left:211.797067pt;}
.x69{left:227.442720pt;}
.x8{left:231.811067pt;}
.x6f{left:234.677093pt;}
.x6e{left:246.353733pt;}
.x57{left:252.523467pt;}
.x4e{left:299.012800pt;}
.x3f{left:337.280000pt;}
.x1{left:339.047600pt;}
.x40{left:347.215680pt;}
.x27{left:362.560000pt;}
.x54{left:367.772667pt;}
.x22{left:370.797520pt;}
.x43{left:393.600000pt;}
.x6b{left:394.736640pt;}
.x70{left:401.810693pt;}
.x6a{left:406.413280pt;}
.x4c{left:422.782400pt;}
.x19{left:434.185573pt;}
.xd{left:446.348800pt;}
.x2e{left:449.445440pt;}
.x44{left:468.644160pt;}
.x41{left:482.876480pt;}
.x7b{left:501.381067pt;}
.x7c{left:516.741067pt;}
.x5f{left:523.776080pt;}
.x42{left:526.552640pt;}
.x5e{left:533.689200pt;}
.x45{left:536.644160pt;}
.x61{left:545.071920pt;}
.x7a{left:546.096400pt;}
.x60{left:552.740560pt;}
.xe{left:563.306800pt;}
.x6d{left:566.733280pt;}
.x72{left:573.807333pt;}
.x6c{left:578.409920pt;}
.x6{left:583.913467pt;}
.x71{left:585.644293pt;}
.x28{left:592.160000pt;}
.x29{left:599.362880pt;}
.x79{left:613.062400pt;}
.x24{left:632.626640pt;}
.x2d{left:633.760000pt;}
.x23{left:636.520880pt;}
.x2b{left:640.326720pt;}
.x4a{left:649.599867pt;}
.x2a{left:651.040000pt;}
.xc{left:657.603200pt;}
.x1c{left:664.458533pt;}
.x47{left:672.279600pt;}
.x1a{left:684.926053pt;}
.x1b{left:687.651493pt;}
.x7{left:702.873333pt;}
.x2f{left:734.080320pt;}
.x86{left:754.127440pt;}
.x59{left:823.308667pt;}
.x65{left:826.553627pt;}
.x31{left:830.389867pt;}
.x5a{left:831.618587pt;}
.x35{left:854.070533pt;}
.x11{left:862.522000pt;}
.x16{left:873.882933pt;}
.x37{left:877.046667pt;}
.x13{left:878.359067pt;}
.x2c{left:895.366720pt;}
.x14{left:896.448507pt;}
.x25{left:899.265040pt;}
.x17{left:901.670933pt;}
.x64{left:902.592480pt;}
.x80{left:904.256000pt;}
.x62{left:912.505600pt;}
.x15{left:913.562133pt;}
.x63{left:928.190240pt;}
.x4b{left:929.328960pt;}
.x83{left:933.032000pt;}
.x7e{left:939.617867pt;}
.x84{left:942.728267pt;}
.x12{left:946.369360pt;}
.x3a{left:951.995733pt;}
.x1f{left:963.482053pt;}
.x82{left:976.400000pt;}
.x7f{left:979.937867pt;}
.x85{left:983.048267pt;}
.x1e{left:986.675013pt;}
.x1d{left:990.041733pt;}
.x48{left:1009.747867pt;}
.x26{left:1019.850400pt;}
.x49{left:1033.747867pt;}
.x81{left:1036.088000pt;}
.x52{left:1046.335973pt;}
.x4f{left:1051.760133pt;}
.x50{left:1057.050693pt;}
.x34{left:1065.394267pt;}
.x30{left:1066.720000pt;}
.x7d{left:1076.144000pt;}
.x51{left:1089.061253pt;}
}




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