
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_d2a8f8303a5c97a5bd357c5e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_28905e93cacdc4c67d67a768.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_be1849747ad15299fe6d5bfd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_45ee701c4b4598659eb751b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_0a3894eab3f0832d70f289b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_6ebb25c1787d5aefad19d608.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_7ce8728a87d40c7790b06e35.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_cb681412d4d410b420d81212.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1b36bf42c25875812d016f15.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.649414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f0909ea794def4c8d2cc5ea0.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.311035;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;}
.m5{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.272303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272303,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v13{vertical-align:-46.080000px;}
.v14{vertical-align:-43.200000px;}
.vf{vertical-align:-35.280000px;}
.v12{vertical-align:-31.860000px;}
.v4{vertical-align:-23.040000px;}
.v11{vertical-align:-17.280000px;}
.va{vertical-align:-13.680000px;}
.v1{vertical-align:-12.240000px;}
.v3{vertical-align:-10.800000px;}
.v5{vertical-align:-8.640000px;}
.v8{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:2.160000px;}
.v15{vertical-align:12.240000px;}
.vb{vertical-align:13.680000px;}
.v9{vertical-align:16.560000px;}
.v2{vertical-align:22.320000px;}
.v6{vertical-align:24.480000px;}
.vd{vertical-align:30.240000px;}
.v7{vertical-align:32.400000px;}
.vc{vertical-align:35.280000px;}
.v10{vertical-align:37.440000px;}
.v17{vertical-align:63.960000px;}
.v16{vertical-align:83.100000px;}
.v18{vertical-align:95.880000px;}
.ls18{letter-spacing:-6.060000px;}
.ls13{letter-spacing:-5.388000px;}
.ls64{letter-spacing:-5.346000px;}
.lse{letter-spacing:-1.578000px;}
.ls93{letter-spacing:-1.482000px;}
.ls9d{letter-spacing:-1.416000px;}
.ls11{letter-spacing:-1.074000px;}
.ls2c{letter-spacing:-1.008000px;}
.ls1a{letter-spacing:-0.972000px;}
.ls94{letter-spacing:-0.960000px;}
.ls10{letter-spacing:-0.918000px;}
.ls32{letter-spacing:-0.756000px;}
.ls17{letter-spacing:-0.579600px;}
.ls33{letter-spacing:-0.570600px;}
.ls1b{letter-spacing:-0.570000px;}
.ls16{letter-spacing:-0.544800px;}
.lsa{letter-spacing:-0.533400px;}
.ls7{letter-spacing:-0.463800px;}
.ls82{letter-spacing:-0.431400px;}
.ls97{letter-spacing:-0.422400px;}
.ls19{letter-spacing:-0.414000px;}
.ls26{letter-spacing:-0.399000px;}
.ls1d{letter-spacing:-0.373200px;}
.ls9a{letter-spacing:-0.360000px;}
.ls38{letter-spacing:-0.347400px;}
.ls2b{letter-spacing:-0.320400px;}
.ls63{letter-spacing:-0.310800px;}
.ls12{letter-spacing:-0.300000px;}
.ls9c{letter-spacing:-0.269400px;}
.ls27{letter-spacing:-0.258000px;}
.ls81{letter-spacing:-0.240600px;}
.ls9b{letter-spacing:-0.125400px;}
.ls14{letter-spacing:-0.115800px;}
.ls62{letter-spacing:-0.107400px;}
.ls92{letter-spacing:-0.072000px;}
.ls61{letter-spacing:-0.069600px;}
.lsc{letter-spacing:-0.064800px;}
.lsa3{letter-spacing:-0.058320px;}
.lsa4{letter-spacing:-0.055440px;}
.ls2e{letter-spacing:-0.041040px;}
.ls6{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.015180px;}
.ls91{letter-spacing:0.023760px;}
.ls68{letter-spacing:0.024480px;}
.ls76{letter-spacing:0.038880px;}
.ls6c{letter-spacing:0.060480px;}
.ls3a{letter-spacing:0.060600px;}
.ls4{letter-spacing:0.070560px;}
.ls23{letter-spacing:0.076200px;}
.ls9{letter-spacing:0.088200px;}
.ls25{letter-spacing:0.091200px;}
.lsf{letter-spacing:0.125400px;}
.ls57{letter-spacing:0.132480px;}
.lsd{letter-spacing:0.136200px;}
.ls34{letter-spacing:0.140400px;}
.ls95{letter-spacing:0.150000px;}
.ls31{letter-spacing:0.154200px;}
.ls46{letter-spacing:0.169200px;}
.ls40{letter-spacing:0.174000px;}
.ls9f{letter-spacing:0.174240px;}
.ls1c{letter-spacing:0.175200px;}
.ls8{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.186600px;}
.ls90{letter-spacing:0.197280px;}
.ls66{letter-spacing:0.223200px;}
.ls8f{letter-spacing:0.233760px;}
.ls22{letter-spacing:0.244800px;}
.ls8d{letter-spacing:0.257760px;}
.ls1f{letter-spacing:0.271200px;}
.ls2d{letter-spacing:0.285600px;}
.ls54{letter-spacing:0.299520px;}
.ls3{letter-spacing:0.306000px;}
.ls7f{letter-spacing:0.308880px;}
.ls48{letter-spacing:0.332400px;}
.lsa2{letter-spacing:0.354240px;}
.ls29{letter-spacing:0.358800px;}
.ls69{letter-spacing:0.375600px;}
.ls35{letter-spacing:0.393600px;}
.ls47{letter-spacing:0.399600px;}
.ls83{letter-spacing:0.407280px;}
.ls96{letter-spacing:0.479400px;}
.ls37{letter-spacing:0.511800px;}
.ls6e{letter-spacing:0.531840px;}
.ls24{letter-spacing:0.574200px;}
.ls15{letter-spacing:0.654000px;}
.ls73{letter-spacing:0.660000px;}
.ls4f{letter-spacing:0.719280px;}
.ls28{letter-spacing:0.750000px;}
.lsa0{letter-spacing:0.894240px;}
.ls2a{letter-spacing:0.906000px;}
.ls5a{letter-spacing:1.157040px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls3b{letter-spacing:1.375920px;}
.ls20{letter-spacing:1.645201px;}
.ls56{letter-spacing:1.877040px;}
.ls8b{letter-spacing:1.980000px;}
.ls1{letter-spacing:2.016000px;}
.ls78{letter-spacing:2.016720px;}
.ls7c{letter-spacing:2.085120px;}
.ls72{letter-spacing:2.149920px;}
.ls51{letter-spacing:2.329200px;}
.ls88{letter-spacing:2.373600px;}
.ls71{letter-spacing:2.383200px;}
.ls6b{letter-spacing:2.391840px;}
.ls6f{letter-spacing:2.397600px;}
.ls5b{letter-spacing:2.413440px;}
.ls65{letter-spacing:2.460960px;}
.ls6a{letter-spacing:2.489040px;}
.ls3d{letter-spacing:2.574720px;}
.ls3f{letter-spacing:2.700000px;}
.ls7b{letter-spacing:2.805120px;}
.ls8c{letter-spacing:2.810880px;}
.ls4d{letter-spacing:3.090240px;}
.ls70{letter-spacing:3.111840px;}
.ls85{letter-spacing:3.117600px;}
.ls58{letter-spacing:3.133440px;}
.ls45{letter-spacing:3.294720px;}
.ls42{letter-spacing:3.324960px;}
.ls21{letter-spacing:3.621413px;}
.ls80{letter-spacing:4.500000px;}
.ls2f{letter-spacing:5.597625px;}
.ls39{letter-spacing:6.654240px;}
.ls1e{letter-spacing:6.915100px;}
.ls5d{letter-spacing:8.173440px;}
.ls5e{letter-spacing:9.613440px;}
.ls5f{letter-spacing:10.069200px;}
.ls4a{letter-spacing:10.494720px;}
.ls60{letter-spacing:11.773440px;}
.lsa1{letter-spacing:12.186720px;}
.ls59{letter-spacing:13.359600px;}
.ls43{letter-spacing:14.353200px;}
.ls30{letter-spacing:15.294240px;}
.ls79{letter-spacing:15.765120px;}
.ls4e{letter-spacing:15.891840px;}
.ls3c{letter-spacing:15.989760px;}
.ls4c{letter-spacing:16.050240px;}
.ls67{letter-spacing:16.071840px;}
.ls41{letter-spacing:16.320960px;}
.ls77{letter-spacing:16.485120px;}
.ls53{letter-spacing:16.559280px;}
.ls50{letter-spacing:16.611840px;}
.ls5c{letter-spacing:16.959600px;}
.ls49{letter-spacing:17.279280px;}
.ls44{letter-spacing:17.953200px;}
.ls74{letter-spacing:18.709920px;}
.ls3e{letter-spacing:18.869760px;}
.ls6d{letter-spacing:18.951840px;}
.ls7a{letter-spacing:19.365120px;}
.ls8a{letter-spacing:19.671840px;}
.ls52{letter-spacing:19.693440px;}
.ls7d{letter-spacing:26.173440px;}
.ls55{letter-spacing:27.252000px;}
.ls7e{letter-spacing:29.053440px;}
.ls9e{letter-spacing:42.570720px;}
.ls5{letter-spacing:43.866720px;}
.ls75{letter-spacing:47.052000px;}
.ls4b{letter-spacing:78.590160px;}
.ls86{letter-spacing:82.069920px;}
.ls87{letter-spacing:84.949920px;}
.ls84{letter-spacing:89.390160px;}
.ls8e{letter-spacing:129.710160px;}
.ls89{letter-spacing:160.734240px;}
.ls99{letter-spacing:176.040000px;}
.ls98{letter-spacing:270.060000px;}
.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;}
}
.ws59{word-spacing:-282.120000px;}
.ws5e{word-spacing:-188.100000px;}
.ws0{word-spacing:-41.040000px;}
.ws3c{word-spacing:-23.216400px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws23{word-spacing:-14.411760px;}
.ws5a{word-spacing:-14.400000px;}
.ws21{word-spacing:-14.255760px;}
.ws10{word-spacing:-14.159760px;}
.ws1d{word-spacing:-14.079960px;}
.ws2e{word-spacing:-14.017560px;}
.ws22{word-spacing:-13.864560px;}
.ws2a{word-spacing:-13.811760px;}
.ws26{word-spacing:-13.791360px;}
.ws1c{word-spacing:-13.776960px;}
.ws1a{word-spacing:-13.750560px;}
.ws5{word-spacing:-13.692360px;}
.ws17{word-spacing:-13.680960px;}
.ws28{word-spacing:-13.659960px;}
.ws2c{word-spacing:-13.646160px;}
.ws7{word-spacing:-13.641960px;}
.ws9{word-spacing:-13.631160px;}
.ws1e{word-spacing:-13.596960px;}
.ws3{word-spacing:-13.593960px;}
.ws1b{word-spacing:-13.581960px;}
.ws48{word-spacing:-13.546800px;}
.ws2d{word-spacing:-13.520940px;}
.wse{word-spacing:-13.505760px;}
.ws27{word-spacing:-13.464720px;}
.ws71{word-spacing:-13.450320px;}
.ws70{word-spacing:-13.447440px;}
.ws6{word-spacing:-13.440960px;}
.ws30{word-spacing:-13.436160px;}
.ws35{word-spacing:-13.398360px;}
.wsf{word-spacing:-13.389960px;}
.ws20{word-spacing:-13.247760px;}
.wsc{word-spacing:-13.205760px;}
.ws3d{word-spacing:-13.194960px;}
.ws24{word-spacing:-13.185360px;}
.ws2f{word-spacing:-13.158360px;}
.ws31{word-spacing:-13.147200px;}
.ws18{word-spacing:-13.132560px;}
.ws1f{word-spacing:-13.106760px;}
.ws14{word-spacing:-13.091760px;}
.ws57{word-spacing:-13.083360px;}
.ws4{word-spacing:-12.972360px;}
.ws11{word-spacing:-12.960960px;}
.ws16{word-spacing:-12.935760px;}
.ws2b{word-spacing:-12.935160px;}
.ws12{word-spacing:-12.926160px;}
.ws29{word-spacing:-12.749760px;}
.wsa{word-spacing:-12.587760px;}
.ws4c{word-spacing:-12.545760px;}
.ws15{word-spacing:-12.533760px;}
.ws25{word-spacing:-12.497760px;}
.wsb{word-spacing:-12.431760px;}
.ws5d{word-spacing:-12.096000px;}
.ws63{word-spacing:-12.089760px;}
.ws58{word-spacing:-12.060000px;}
.ws4b{word-spacing:-12.023760px;}
.ws8{word-spacing:-11.927760px;}
.ws52{word-spacing:-9.337200px;}
.ws33{word-spacing:-9.187200px;}
.ws3e{word-spacing:-8.159760px;}
.wsd{word-spacing:-8.117760px;}
.ws4a{word-spacing:-7.848000px;}
.ws13{word-spacing:-7.445760px;}
.ws19{word-spacing:0.000000px;}
.ws4e{word-spacing:3.132000px;}
.ws50{word-spacing:3.317760px;}
.ws32{word-spacing:3.412080px;}
.ws3a{word-spacing:3.556080px;}
.ws34{word-spacing:3.622320px;}
.ws42{word-spacing:3.733920px;}
.ws3b{word-spacing:4.108080px;}
.ws41{word-spacing:4.132080px;}
.ws56{word-spacing:4.276080px;}
.ws51{word-spacing:6.283440px;}
.ws54{word-spacing:6.598080px;}
.ws46{word-spacing:6.737760px;}
.ws49{word-spacing:7.017120px;}
.ws4f{word-spacing:7.063200px;}
.ws3f{word-spacing:7.107840px;}
.ws40{word-spacing:7.133760px;}
.ws43{word-spacing:7.652160px;}
.ws4d{word-spacing:7.704000px;}
.ws38{word-spacing:7.896000px;}
.ws36{word-spacing:8.519040px;}
.ws55{word-spacing:10.198080px;}
.ws45{word-spacing:10.382400px;}
.ws44{word-spacing:10.584000px;}
.ws39{word-spacing:10.707840px;}
.ws5b{word-spacing:63.963120px;}
.ws5f{word-spacing:64.482000px;}
.ws62{word-spacing:64.726080px;}
.ws5c{word-spacing:64.769880px;}
.ws60{word-spacing:65.369880px;}
.ws66{word-spacing:94.016400px;}
.ws68{word-spacing:106.185840px;}
.ws69{word-spacing:106.243008px;}
.ws64{word-spacing:106.256400px;}
.ws65{word-spacing:106.365840px;}
.ws67{word-spacing:106.436400px;}
.ws53{word-spacing:154.178400px;}
.ws6a{word-spacing:155.040000px;}
.ws6e{word-spacing:160.761120px;}
.ws6f{word-spacing:161.917008px;}
.ws6b{word-spacing:172.674048px;}
.ws6c{word-spacing:174.037008px;}
.ws47{word-spacing:175.433760px;}
.ws6d{word-spacing:179.820000px;}
.ws61{word-spacing:241.452960px;}
.ws37{word-spacing:294.413760px;}
._4{margin-left:-1447.868880px;}
._2{margin-left:-1329.359040px;}
._3{margin-left:-1005.647520px;}
._5{margin-left:-579.525360px;}
._41{margin-left:-26.704080px;}
._43{margin-left:-12.060000px;}
._42{margin-left:-9.468720px;}
._c{margin-left:-6.457208px;}
._9{margin-left:-4.885200px;}
._6{margin-left:-3.312000px;}
._1{margin-left:-1.987200px;}
._0{width:1.394400px;}
._f{width:2.655478px;}
._d{width:3.823862px;}
._e{width:5.208524px;}
._b{width:6.572160px;}
._a{width:7.833600px;}
._13{width:8.872346px;}
._3f{width:9.888232px;}
._10{width:10.890720px;}
._12{width:12.460913px;}
._40{width:13.679280px;}
._11{width:14.680502px;}
._7{width:16.176960px;}
._8{width:17.239440px;}
._3e{width:18.709200px;}
._26{width:20.139120px;}
._46{width:21.158640px;}
._1b{width:22.166160px;}
._1c{width:23.341440px;}
._36{width:24.621120px;}
._16{width:26.174880px;}
._17{width:27.205920px;}
._2d{width:28.634640px;}
._21{width:30.278400px;}
._1f{width:33.281520px;}
._20{width:34.546080px;}
._2b{width:36.408960px;}
._37{width:37.768320px;}
._34{width:40.213680px;}
._30{width:44.162640px;}
._2f{width:45.731520px;}
._1d{width:47.150640px;}
._28{width:50.731440px;}
._31{width:52.185600px;}
._23{width:58.390080px;}
._1a{width:59.939280px;}
._2c{width:66.337200px;}
._1e{width:67.482960px;}
._32{width:70.890480px;}
._3c{width:73.320720px;}
._14{width:75.715920px;}
._25{width:78.405120px;}
._24{width:80.332560px;}
._27{width:83.738880px;}
._35{width:91.009680px;}
._18{width:101.129040px;}
._2a{width:102.443760px;}
._33{width:118.339920px;}
._38{width:139.360320px;}
._3b{width:141.267840px;}
._29{width:148.563360px;}
._3a{width:154.419840px;}
._15{width:163.160160px;}
._2e{width:178.557120px;}
._45{width:180.120000px;}
._39{width:183.188640px;}
._22{width:232.884720px;}
._3d{width:240.474240px;}
._44{width:271.500000px;}
._19{width:325.447200px;}
.fc9{color:rgb(5,99,193);}
.fc5{color:rgb(238,0,0);}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc8{color:rgb(127,127,127);}
.fc7{color:rgb(64,64,64);}
.fc6{color:rgb(89,89,89);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs4{font-size:2.880000px;}
.fsc{font-size:36.000000px;}
.fs6{font-size:36.921102px;}
.fs7{font-size:37.032984px;}
.fsb{font-size:41.760000px;}
.fs8{font-size:42.515208px;}
.fs9{font-size:42.627090px;}
.fsd{font-size:48.240000px;}
.fsf{font-size:48.384000px;}
.fs5{font-size:55.941064px;}
.fsa{font-size:56.052946px;}
.fse{font-size:57.600000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.ya1{bottom:-55.773240px;}
.yba{bottom:-6.596384px;}
.y0{bottom:0.000000px;}
.ybd{bottom:1.619960px;}
.y166{bottom:1.620000px;}
.yaf{bottom:1.794776px;}
.y56{bottom:6.480000px;}
.y5b{bottom:6.660000px;}
.yb5{bottom:6.852780px;}
.y20f{bottom:7.020000px;}
.y63{bottom:7.560000px;}
.ybf{bottom:12.418916px;}
.ybc{bottom:13.926994px;}
.y164{bottom:15.120000px;}
.y1bb{bottom:16.125000px;}
.y1f9{bottom:16.200000px;}
.y19c{bottom:16.230000px;}
.y18e{bottom:16.305000px;}
.yaa{bottom:16.421033px;}
.y161{bottom:16.560000px;}
.y169{bottom:16.590000px;}
.yb4{bottom:19.183123px;}
.yb9{bottom:20.278636px;}
.y5a{bottom:27.720000px;}
.y71{bottom:27.750000px;}
.y20e{bottom:28.080000px;}
.y62{bottom:28.620000px;}
.y7f{bottom:34.380000px;}
.y7b{bottom:34.560000px;}
.y20b{bottom:35.460000px;}
.yac{bottom:39.298597px;}
.yc2{bottom:41.340446px;}
.yb2{bottom:42.459267px;}
.yb7{bottom:47.969462px;}
.y59{bottom:48.780000px;}
.y70{bottom:48.810000px;}
.y20d{bottom:49.500000px;}
.y61{bottom:49.725000px;}
.y1b8{bottom:52.275000px;}
.y1f7{bottom:52.305000px;}
.y1e9{bottom:52.350000px;}
.y18c{bottom:52.455000px;}
.yc1{bottom:53.646315px;}
.yb1{bottom:55.046007px;}
.y67{bottom:55.434000px;}
.y75{bottom:55.440000px;}
.y79{bottom:55.620000px;}
.y72{bottom:56.340000px;}
.y64{bottom:57.240000px;}
.y19a{bottom:59.250000px;}
.y6{bottom:60.696000px;}
.yc0{bottom:66.234219px;}
.yb0{bottom:67.353041px;}
.y58{bottom:69.840000px;}
.y6e{bottom:69.870000px;}
.y20c{bottom:70.554000px;}
.y1b2{bottom:70.590000px;}
.y1f5{bottom:70.635000px;}
.y1e7{bottom:70.665000px;}
.y18a{bottom:70.770000px;}
.y60{bottom:70.785000px;}
.y66{bottom:76.494000px;}
.y74{bottom:76.500000px;}
.y7d{bottom:76.545000px;}
.y78{bottom:76.680000px;}
.y198{bottom:77.790000px;}
.y5e{bottom:78.345000px;}
.y1ec{bottom:84.750000px;}
.y1dd{bottom:84.780000px;}
.y184{bottom:84.855000px;}
.y9c{bottom:88.596000px;}
.y6d{bottom:90.930000px;}
.y192{bottom:91.590000px;}
.y1d4{bottom:92.160000px;}
.y199{bottom:92.910000px;}
.y20a{bottom:93.456000px;}
.y19e{bottom:93.930000px;}
.yf3{bottom:96.516000px;}
.y6b{bottom:97.590000px;}
.y81{bottom:97.740000px;}
.y190{bottom:98.025000px;}
.y5d{bottom:99.405000px;}
.y1de{bottom:100.770000px;}
.y1a3{bottom:101.235000px;}
.y126{bottom:102.816000px;}
.y1ed{bottom:103.140000px;}
.y15d{bottom:103.176000px;}
.y1b3{bottom:105.480000px;}
.y1d5{bottom:108.150000px;}
.y1a8{bottom:108.510000px;}
.y185{bottom:109.590000px;}
.y9b{bottom:109.656000px;}
.y18b{bottom:112.890000px;}
.y1e8{bottom:113.010000px;}
.y193{bottom:113.190000px;}
.y209{bottom:113.256000px;}
.y1d2{bottom:113.796000px;}
.y9f{bottom:115.056000px;}
.y1ad{bottom:115.815000px;}
.y1df{bottom:116.745000px;}
.yf2{bottom:117.576000px;}
.y1f6{bottom:118.515000px;}
.y6a{bottom:118.650000px;}
.y182{bottom:120.276000px;}
.y1ee{bottom:121.530000px;}
.y125{bottom:123.876000px;}
.y191{bottom:123.945000px;}
.y1d6{bottom:124.125000px;}
.y15c{bottom:124.236000px;}
.y30{bottom:124.416000px;}
.y65{bottom:130.536000px;}
.y9a{bottom:130.716000px;}
.y1d7{bottom:132.120000px;}
.y1e0{bottom:132.735000px;}
.y186{bottom:134.310000px;}
.y208{bottom:134.316000px;}
.y194{bottom:134.790000px;}
.y1d1{bottom:134.856000px;}
.y19f{bottom:135.465000px;}
.y9e{bottom:136.116000px;}
.y178{bottom:137.196000px;}
.yf1{bottom:138.636000px;}
.y1ef{bottom:139.935000px;}
.y181{bottom:141.336000px;}
.y1a4{bottom:142.770000px;}
.y124{bottom:144.936000px;}
.y15b{bottom:145.296000px;}
.y2f{bottom:145.476000px;}
.yae{bottom:146.006176px;}
.y1b4{bottom:147.030000px;}
.y1e1{bottom:148.710000px;}
.y1a9{bottom:150.090000px;}
.y99{bottom:151.770000px;}
.y9d{bottom:153.210000px;}
.ya0{bottom:153.360000px;}
.y68{bottom:154.830000px;}
.y207{bottom:155.370000px;}
.y1d0{bottom:155.910000px;}
.y1d8{bottom:156.090000px;}
.y195{bottom:156.390000px;}
.y1b9{bottom:157.320000px;}
.y1ae{bottom:157.350000px;}
.yb8{bottom:157.753799px;}
.y177{bottom:158.250000px;}
.y1f0{bottom:158.325000px;}
.yad{bottom:158.592915px;}
.y187{bottom:159.015000px;}
.yf0{bottom:159.690000px;}
.y180{bottom:162.390000px;}
.y1da{bottom:164.085000px;}
.y1e2{bottom:164.700000px;}
.y2e{bottom:166.530000px;}
.y15a{bottom:167.070000px;}
.y122{bottom:167.610000px;}
.y1d9{bottom:172.080000px;}
.y98{bottom:172.830000px;}
.y123{bottom:173.550000px;}
.y206{bottom:176.430000px;}
.y1f1{bottom:176.760000px;}
.y1cf{bottom:176.970000px;}
.y1a0{bottom:177.045000px;}
.y196{bottom:177.990000px;}
.y176{bottom:179.310000px;}
.y1e3{bottom:180.645000px;}
.yef{bottom:180.750000px;}
.y17f{bottom:183.450000px;}
.y188{bottom:183.750000px;}
.y1a5{bottom:184.320000px;}
.y2d{bottom:187.590000px;}
.y159{bottom:187.950000px;}
.y1db{bottom:188.070000px;}
.y1b5{bottom:188.610000px;}
.y120{bottom:188.670000px;}
.y1aa{bottom:191.625000px;}
.y97{bottom:193.890000px;}
.y121{bottom:194.610000px;}
.y1f2{bottom:195.150000px;}
.y1e4{bottom:196.635000px;}
.y205{bottom:197.490000px;}
.y1ce{bottom:198.030000px;}
.y1af{bottom:198.930000px;}
.y197{bottom:199.545000px;}
.y175{bottom:200.370000px;}
.yee{bottom:201.810000px;}
.y1dc{bottom:204.015000px;}
.y17e{bottom:204.510000px;}
.y189{bottom:208.440000px;}
.y2c{bottom:208.650000px;}
.y158{bottom:209.010000px;}
.y11f{bottom:209.730000px;}
.y1e5{bottom:212.610000px;}
.y1f3{bottom:213.555000px;}
.y96{bottom:214.950000px;}
.y204{bottom:218.550000px;}
.y1a1{bottom:218.595000px;}
.y1cd{bottom:219.090000px;}
.y174{bottom:221.430000px;}
.y17d{bottom:221.610000px;}
.y5c{bottom:222.150000px;}
.yed{bottom:222.870000px;}
.y19d{bottom:223.740000px;}
.y1a6{bottom:225.900000px;}
.y1e6{bottom:228.600000px;}
.y2b{bottom:229.710000px;}
.y157{bottom:230.070000px;}
.y1b6{bottom:230.145000px;}
.y11e{bottom:230.790000px;}
.y1f4{bottom:231.945000px;}
.y1ab{bottom:233.205000px;}
.y18d{bottom:233.925000px;}
.y95{bottom:236.010000px;}
.ybe{bottom:239.089680px;}
.y203{bottom:239.610000px;}
.y1cc{bottom:240.150000px;}
.y1b0{bottom:240.480000px;}
.y173{bottom:242.490000px;}
.yec{bottom:243.930000px;}
.y5f{bottom:246.630000px;}
.y2a{bottom:250.770000px;}
.y156{bottom:251.130000px;}
.ya8{bottom:251.513353px;}
.y11d{bottom:251.850000px;}
.y1ea{bottom:254.085000px;}
.y94{bottom:257.070000px;}
.y1f8{bottom:257.400000px;}
.y1a2{bottom:260.175000px;}
.y202{bottom:260.670000px;}
.y1cb{bottom:261.210000px;}
.y172{bottom:263.550000px;}
.ya7{bottom:263.820387px;}
.yeb{bottom:264.990000px;}
.y1a7{bottom:267.450000px;}
.y1b7{bottom:271.725000px;}
.y29{bottom:271.830000px;}
.y155{bottom:273.270000px;}
.y1ac{bottom:274.755000px;}
.y11b{bottom:275.430000px;}
.y154{bottom:276.330000px;}
.yb6{bottom:277.129603px;}
.y93{bottom:278.130000px;}
.y201{bottom:281.775000px;}
.y1b1{bottom:282.060000px;}
.y1ca{bottom:282.315000px;}
.y11c{bottom:283.395000px;}
.y171{bottom:284.655000px;}
.yab{bottom:284.961352px;}
.y19b{bottom:285.585000px;}
.yea{bottom:286.095000px;}
.y28{bottom:292.935000px;}
.ya3{bottom:296.569218px;}
.y92{bottom:299.235000px;}
.y11a{bottom:299.775000px;}
.y200{bottom:302.835000px;}
.y153{bottom:303.375000px;}
.y170{bottom:305.715000px;}
.ya2{bottom:309.155957px;}
.y27{bottom:313.995000px;}
.ye9{bottom:316.155000px;}
.y1ba{bottom:317.550000px;}
.y91{bottom:320.295000px;}
.y119{bottom:320.835000px;}
.y1ff{bottom:323.895000px;}
.y152{bottom:324.255000px;}
.y1c9{bottom:324.435000px;}
.y16f{bottom:326.775000px;}
.yb3{bottom:329.434498px;}
.y26{bottom:335.055000px;}
.y57{bottom:336.675000px;}
.ye8{bottom:337.215000px;}
.y90{bottom:341.355000px;}
.y118{bottom:341.895000px;}
.y1fe{bottom:344.955000px;}
.y151{bottom:345.315000px;}
.y1c8{bottom:345.495000px;}
.y16e{bottom:347.835000px;}
.y25{bottom:356.115000px;}
.ye6{bottom:359.715000px;}
.y8f{bottom:362.415000px;}
.y117{bottom:362.955000px;}
.ye7{bottom:365.295000px;}
.ya6{bottom:365.691394px;}
.y1fd{bottom:366.015000px;}
.y150{bottom:366.375000px;}
.y1c7{bottom:366.555000px;}
.y16d{bottom:368.895000px;}
.ya9{bottom:375.865580px;}
.y24{bottom:377.175000px;}
.ya5{bottom:378.278133px;}
.ye5{bottom:382.215000px;}
.y8e{bottom:383.295000px;}
.y116{bottom:384.015000px;}
.y1fc{bottom:387.075000px;}
.y1c6{bottom:387.615000px;}
.y14f{bottom:388.875000px;}
.y16c{bottom:389.955000px;}
.ya4{bottom:390.585167px;}
.y23{bottom:398.235000px;}
.ye4{bottom:403.095000px;}
.y8d{bottom:404.355000px;}
.y115{bottom:405.075000px;}
.y1fb{bottom:408.135000px;}
.y1c5{bottom:408.675000px;}
.y14e{bottom:411.015000px;}
.y22{bottom:419.295000px;}
.y55{bottom:421.815000px;}
.ye3{bottom:422.175000px;}
.y8c{bottom:425.415000px;}
.y1c4{bottom:425.775000px;}
.y114{bottom:426.135000px;}
.y1eb{bottom:427.140000px;}
.y1fa{bottom:429.195000px;}
.ye2{bottom:429.735000px;}
.y14d{bottom:432.075000px;}
.y21{bottom:440.355000px;}
.y8b{bottom:446.475000px;}
.y113{bottom:447.195000px;}
.y54{bottom:450.255000px;}
.ye1{bottom:452.595000px;}
.y14c{bottom:453.135000px;}
.ybb{bottom:453.903364px;}
.y20{bottom:461.415000px;}
.y8a{bottom:467.535000px;}
.y112{bottom:468.255000px;}
.y53{bottom:471.315000px;}
.ye0{bottom:473.655000px;}
.y14b{bottom:474.195000px;}
.y1f{bottom:482.475000px;}
.y89{bottom:488.595000px;}
.y111{bottom:489.315000px;}
.y52{bottom:492.375000px;}
.ydf{bottom:494.715000px;}
.y16b{bottom:495.255000px;}
.y14a{bottom:496.335000px;}
.y1e{bottom:503.535000px;}
.y88{bottom:509.655000px;}
.y110{bottom:510.375000px;}
.y51{bottom:513.435000px;}
.yde{bottom:515.775000px;}
.y149{bottom:517.395000px;}
.y16a{bottom:519.375000px;}
.y1d{bottom:524.595000px;}
.y87{bottom:530.715000px;}
.y10f{bottom:531.435000px;}
.ydb{bottom:532.875000px;}
.y50{bottom:534.495000px;}
.ydd{bottom:537.015000px;}
.y148{bottom:538.455000px;}
.yd9{bottom:540.435000px;}
.yda{bottom:543.135000px;}
.y1c{bottom:545.655000px;}
.ydc{bottom:546.375000px;}
.y168{bottom:551.235000px;}
.y86{bottom:551.775000px;}
.y10e{bottom:552.495000px;}
.y4f{bottom:555.555000px;}
.y147{bottom:559.515000px;}
.yd7{bottom:564.765000px;}
.yd8{bottom:567.465000px;}
.y1b{bottom:569.085000px;}
.y17c{bottom:570.345000px;}
.y85{bottom:572.865000px;}
.y10d{bottom:573.405000px;}
.y4e{bottom:576.645000px;}
.y146{bottom:580.605000px;}
.y167{bottom:582.945000px;}
.yd6{bottom:586.725000px;}
.y17b{bottom:587.445000px;}
.y18f{bottom:587.700000px;}
.y82{bottom:588.165000px;}
.y1a{bottom:589.965000px;}
.y84{bottom:591.405000px;}
.y10c{bottom:594.465000px;}
.y4d{bottom:597.705000px;}
.y145{bottom:602.925000px;}
.yd5{bottom:607.785000px;}
.y83{bottom:612.465000px;}
.y163{bottom:614.625000px;}
.y4c{bottom:618.765000px;}
.y165{bottom:619.665000px;}
.y19{bottom:620.025000px;}
.y10b{bottom:624.525000px;}
.y144{bottom:625.245000px;}
.yd4{bottom:628.845000px;}
.y4b{bottom:639.825000px;}
.y18{bottom:641.085000px;}
.y162{bottom:644.865000px;}
.y10a{bottom:645.585000px;}
.y143{bottom:647.565000px;}
.yd3{bottom:649.905000px;}
.y80{bottom:658.725000px;}
.y4a{bottom:660.705000px;}
.y17{bottom:662.145000px;}
.y109{bottom:665.025000px;}
.y142{bottom:668.625000px;}
.yd2{bottom:670.965000px;}
.y108{bottom:674.385000px;}
.y160{bottom:676.545000px;}
.y49{bottom:681.765000px;}
.y16{bottom:683.205000px;}
.y141{bottom:689.685000px;}
.yd1{bottom:692.025000px;}
.y107{bottom:696.345000px;}
.y48{bottom:702.825000px;}
.y15{bottom:704.265000px;}
.y140{bottom:710.745000px;}
.yd0{bottom:713.085000px;}
.y15f{bottom:714.885000px;}
.y1c3{bottom:715.965000px;}
.y106{bottom:717.405000px;}
.y47{bottom:723.885000px;}
.y14{bottom:725.325000px;}
.y13f{bottom:731.805000px;}
.ycf{bottom:734.685000px;}
.y15e{bottom:735.945000px;}
.y1c2{bottom:737.025000px;}
.y105{bottom:738.465000px;}
.y46{bottom:744.945000px;}
.y13{bottom:746.385000px;}
.y13e{bottom:752.865000px;}
.yce{bottom:757.005000px;}
.y1c1{bottom:758.085000px;}
.y104{bottom:759.525000px;}
.y45{bottom:766.005000px;}
.y12{bottom:767.445000px;}
.y7c{bottom:771.585000px;}
.y13d{bottom:773.925000px;}
.ycd{bottom:778.065000px;}
.y1c0{bottom:779.145000px;}
.y103{bottom:780.585000px;}
.y44{bottom:787.065000px;}
.y11{bottom:788.505000px;}
.y13c{bottom:794.985000px;}
.y7e{bottom:795.885000px;}
.ycc{bottom:799.125000px;}
.y1bf{bottom:800.205000px;}
.y102{bottom:801.645000px;}
.y43{bottom:808.125000px;}
.y10{bottom:809.565000px;}
.y13b{bottom:816.045000px;}
.ycb{bottom:820.185000px;}
.y1be{bottom:821.265000px;}
.y101{bottom:824.325000px;}
.y42{bottom:829.185000px;}
.yf{bottom:830.625000px;}
.y13a{bottom:836.925000px;}
.yca{bottom:841.245000px;}
.y1bd{bottom:842.325000px;}
.y100{bottom:845.205000px;}
.y41{bottom:850.290000px;}
.ye{bottom:851.730000px;}
.y139{bottom:858.030000px;}
.y1bc{bottom:859.470000px;}
.y1d3{bottom:859.680000px;}
.yc9{bottom:862.350000px;}
.y77{bottom:863.250000px;}
.yff{bottom:866.310000px;}
.y40{bottom:871.350000px;}
.yd{bottom:872.790000px;}
.y138{bottom:879.090000px;}
.yc8{bottom:883.410000px;}
.yfe{bottom:887.370000px;}
.y7a{bottom:887.730000px;}
.y3f{bottom:892.410000px;}
.yc{bottom:896.010000px;}
.y137{bottom:900.150000px;}
.yc7{bottom:904.470000px;}
.y17a{bottom:904.650000px;}
.yfd{bottom:908.430000px;}
.y3e{bottom:913.470000px;}
.yb{bottom:917.070000px;}
.y179{bottom:921.750000px;}
.y183{bottom:921.960000px;}
.yc6{bottom:925.530000px;}
.yfc{bottom:929.490000px;}
.y136{bottom:930.210000px;}
.y3d{bottom:934.530000px;}
.ya{bottom:939.030000px;}
.yc5{bottom:946.590000px;}
.y135{bottom:951.270000px;}
.yfb{bottom:951.990000px;}
.y73{bottom:955.050000px;}
.y3c{bottom:955.590000px;}
.y9{bottom:961.350000px;}
.yc4{bottom:967.650000px;}
.yfa{bottom:972.870000px;}
.y133{bottom:973.590000px;}
.y3b{bottom:976.650000px;}
.y134{bottom:979.170000px;}
.y76{bottom:979.530000px;}
.y8{bottom:986.550000px;}
.yc3{bottom:988.710000px;}
.yf9{bottom:993.930000px;}
.y132{bottom:994.650000px;}
.y3a{bottom:997.710000px;}
.yf8{bottom:1014.990000px;}
.y130{bottom:1015.710000px;}
.y39{bottom:1018.770000px;}
.y7{bottom:1020.210000px;}
.y131{bottom:1021.290000px;}
.yf7{bottom:1036.050000px;}
.y12f{bottom:1036.770000px;}
.y38{bottom:1039.830000px;}
.y69{bottom:1046.850000px;}
.yf6{bottom:1057.110000px;}
.y12e{bottom:1057.830000px;}
.y5{bottom:1060.530000px;}
.y37{bottom:1060.890000px;}
.y6c{bottom:1071.150000px;}
.y12d{bottom:1078.890000px;}
.yf5{bottom:1079.610000px;}
.y36{bottom:1081.950000px;}
.y4{bottom:1092.930000px;}
.y12c{bottom:1099.950000px;}
.y35{bottom:1103.010000px;}
.yf4{bottom:1103.190000px;}
.y6f{bottom:1106.610000px;}
.y12b{bottom:1121.010000px;}
.y34{bottom:1124.070000px;}
.y3{bottom:1125.150000px;}
.y12a{bottom:1142.100000px;}
.y33{bottom:1145.160000px;}
.y2{bottom:1157.580000px;}
.y129{bottom:1161.180000px;}
.y127{bottom:1164.780000px;}
.y32{bottom:1166.220000px;}
.y128{bottom:1170.720000px;}
.y1{bottom:1192.320000px;}
.y31{bottom:1194.120000px;}
.h12{height:2.864531px;}
.h9{height:20.880000px;}
.h37{height:21.060000px;}
.h27{height:21.257604px;}
.h25{height:22.656131px;}
.h1a{height:25.779871px;}
.h20{height:25.857992px;}
.h1f{height:27.970532px;}
.h36{height:29.520000px;}
.h22{height:29.685912px;}
.h35{height:30.960000px;}
.h38{height:30.996000px;}
.h1c{height:36.236042px;}
.h1b{height:36.345849px;}
.h23{height:41.836158px;}
.h17{height:42.120000px;}
.h2c{height:46.388672px;}
.h3a{height:47.344922px;}
.h3d{height:47.486250px;}
.h1e{height:48.109315px;}
.h43{height:48.616875px;}
.h1d{height:53.983126px;}
.h24{height:54.903095px;}
.h26{height:55.012901px;}
.h19{height:55.640599px;}
.h2{height:56.146289px;}
.h3b{height:56.531250px;}
.h44{height:58.050000px;}
.h21{height:58.178706px;}
.h5{height:59.439023px;}
.h7{height:61.189805px;}
.h8{height:61.423863px;}
.he{height:63.180000px;}
.h11{height:63.216000px;}
.h3{height:65.884219px;}
.h28{height:66.383789px;}
.h6{height:67.824844px;}
.h30{height:68.543789px;}
.h29{height:68.708672px;}
.h31{height:69.263789px;}
.h16{height:69.840000px;}
.h2a{height:70.868672px;}
.h2d{height:73.119023px;}
.h33{height:73.839023px;}
.h34{height:78.623789px;}
.h42{height:79.324922px;}
.h2e{height:81.668672px;}
.ha{height:84.240000px;}
.h46{height:84.960000px;}
.hc{height:85.896000px;}
.h2f{height:89.679023px;}
.hd{height:90.900000px;}
.h14{height:90.936000px;}
.h13{height:91.080000px;}
.h4{height:98.051133px;}
.h2b{height:98.783789px;}
.h32{height:103.823789px;}
.h10{height:105.336000px;}
.h15{height:112.140000px;}
.hb{height:113.796000px;}
.hf{height:133.056000px;}
.h40{height:143.224922px;}
.h41{height:143.284922px;}
.h39{height:258.660000px;}
.h3f{height:278.820000px;}
.h45{height:282.240000px;}
.h3c{height:310.320000px;}
.h3e{height:340.020000px;}
.h18{height:416.621071px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:69.462191px;}
.w11{width:75.636000px;}
.wa{width:87.437057px;}
.wb{width:103.583969px;}
.we{width:124.605419px;}
.wf{width:126.330241px;}
.w3{width:127.116000px;}
.wd{width:169.694912px;}
.w8{width:181.830000px;}
.w5{width:194.970000px;}
.w6{width:201.810000px;}
.w17{width:210.810000px;}
.w7{width:232.050000px;}
.w4{width:252.030000px;}
.w10{width:268.995000px;}
.w16{width:348.840000px;}
.w15{width:365.580000px;}
.w9{width:416.670000px;}
.w13{width:438.300000px;}
.w12{width:446.400000px;}
.w14{width:470.700000px;}
.w18{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:1.080000px;}
.x1b{left:7.740000px;}
.x42{left:9.660221px;}
.x45{left:10.967716px;}
.x38{left:12.008633px;}
.x3a{left:13.557314px;}
.x4a{left:17.060886px;}
.x49{left:18.279520px;}
.x4b{left:21.356575px;}
.x43{left:23.489188px;}
.x32{left:25.926442px;}
.x44{left:28.363720px;}
.x86{left:30.135000px;}
.x78{left:31.935000px;}
.x3d{left:36.127449px;}
.x72{left:37.230000px;}
.x76{left:39.525000px;}
.x84{left:43.275000px;}
.x71{left:46.230000px;}
.x75{left:48.525000px;}
.x33{left:51.822435px;}
.x1{left:53.999987px;}
.x1a{left:57.420000px;}
.x64{left:62.279987px;}
.x8e{left:65.370000px;}
.x10{left:71.279987px;}
.x21{left:74.339987px;}
.x8b{left:75.525000px;}
.x2e{left:77.939987px;}
.x7{left:80.999987px;}
.x18{left:83.879987px;}
.x46{left:85.060719px;}
.x77{left:86.790000px;}
.x2a{left:87.839987px;}
.x55{left:91.655987px;}
.x19{left:95.975987px;}
.x8f{left:102.275987px;}
.x5b{left:108.035987px;}
.x16{left:112.895987px;}
.x26{left:114.155987px;}
.x61{left:116.135987px;}
.x13{left:118.475987px;}
.x14{left:120.095987px;}
.x8c{left:123.330000px;}
.x11{left:124.595987px;}
.x2{left:126.215987px;}
.x34{left:127.740846px;}
.x7a{left:130.425000px;}
.xc{left:132.875987px;}
.x28{left:134.495987px;}
.x2b{left:136.475987px;}
.x24{left:141.875987px;}
.x8{left:143.495987px;}
.x23{left:144.575987px;}
.x65{left:145.835987px;}
.x40{left:151.237666px;}
.x79{left:154.980000px;}
.x3f{left:156.416864px;}
.x3{left:158.429987px;}
.x3e{left:161.900721px;}
.x56{left:166.169987px;}
.x36{left:167.993886px;}
.x4{left:170.669987px;}
.x17{left:173.369987px;}
.x8d{left:178.455000px;}
.x7c{left:182.160000px;}
.x35{left:183.861527px;}
.xd{left:184.889987px;}
.x54{left:188.129987px;}
.x90{left:190.110000px;}
.x5d{left:191.909987px;}
.x62{left:192.989987px;}
.x1e{left:195.330000px;}
.x85{left:196.815000px;}
.x22{left:201.449987px;}
.x7d{left:205.665000px;}
.x58{left:209.189987px;}
.x68{left:210.810000px;}
.x3b{left:216.460016px;}
.x4c{left:219.089987px;}
.x2c{left:220.349987px;}
.x3c{left:221.943874px;}
.x5c{left:223.769987px;}
.x52{left:225.029987px;}
.x73{left:226.980000px;}
.x7e{left:231.330000px;}
.x57{left:234.569987px;}
.x7b{left:237.060000px;}
.x7f{left:244.875000px;}
.x59{left:248.609987px;}
.x53{left:261.029987px;}
.x5f{left:262.829987px;}
.x30{left:265.125000px;}
.x9{left:270.029987px;}
.x4d{left:272.729987px;}
.x66{left:276.509987px;}
.xa{left:277.949987px;}
.x4e{left:279.974987px;}
.x51{left:281.954987px;}
.x80{left:284.070000px;}
.x4f{left:297.614987px;}
.x5e{left:299.594987px;}
.xe{left:318.854987px;}
.x5{left:321.194987px;}
.x29{left:323.174987px;}
.x8a{left:330.734987px;}
.x74{left:336.315000px;}
.x63{left:339.554987px;}
.x81{left:348.945000px;}
.x6{left:350.174987px;}
.x88{left:354.674987px;}
.x60{left:358.814987px;}
.x6c{left:360.074987px;}
.x82{left:362.490000px;}
.x6e{left:363.494987px;}
.xf{left:367.094987px;}
.x70{left:371.234987px;}
.x5a{left:374.474987px;}
.x25{left:378.974987px;}
.x83{left:388.155000px;}
.x67{left:392.114987px;}
.x69{left:413.355000px;}
.x37{left:420.500936px;}
.x6a{left:423.255000px;}
.x1c{left:438.195000px;}
.x2f{left:446.474987px;}
.x39{left:461.020551px;}
.xb{left:465.734987px;}
.x31{left:468.895168px;}
.x27{left:478.364987px;}
.x47{left:493.619028px;}
.x50{left:539.924987px;}
.x48{left:555.464759px;}
.x41{left:560.034635px;}
.x15{left:565.304987px;}
.x89{left:620.924987px;}
.x87{left:629.924987px;}
.x1d{left:633.885000px;}
.x20{left:643.785000px;}
.x6d{left:665.969987px;}
.x6b{left:670.469987px;}
.x2d{left:681.989987px;}
.x6f{left:709.889987px;}
.x12{left:829.949987px;}
@media print{
.v13{vertical-align:-40.960000pt;}
.v14{vertical-align:-38.400000pt;}
.vf{vertical-align:-31.360000pt;}
.v12{vertical-align:-28.320000pt;}
.v4{vertical-align:-20.480000pt;}
.v11{vertical-align:-15.360000pt;}
.va{vertical-align:-12.160000pt;}
.v1{vertical-align:-10.880000pt;}
.v3{vertical-align:-9.600000pt;}
.v5{vertical-align:-7.680000pt;}
.v8{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:1.920000pt;}
.v15{vertical-align:10.880000pt;}
.vb{vertical-align:12.160000pt;}
.v9{vertical-align:14.720000pt;}
.v2{vertical-align:19.840000pt;}
.v6{vertical-align:21.760000pt;}
.vd{vertical-align:26.880000pt;}
.v7{vertical-align:28.800000pt;}
.vc{vertical-align:31.360000pt;}
.v10{vertical-align:33.280000pt;}
.v17{vertical-align:56.853333pt;}
.v16{vertical-align:73.866667pt;}
.v18{vertical-align:85.226667pt;}
.ls18{letter-spacing:-5.386667pt;}
.ls13{letter-spacing:-4.789333pt;}
.ls64{letter-spacing:-4.752000pt;}
.lse{letter-spacing:-1.402667pt;}
.ls93{letter-spacing:-1.317333pt;}
.ls9d{letter-spacing:-1.258667pt;}
.ls11{letter-spacing:-0.954667pt;}
.ls2c{letter-spacing:-0.896000pt;}
.ls1a{letter-spacing:-0.864000pt;}
.ls94{letter-spacing:-0.853333pt;}
.ls10{letter-spacing:-0.816000pt;}
.ls32{letter-spacing:-0.672000pt;}
.ls17{letter-spacing:-0.515200pt;}
.ls33{letter-spacing:-0.507200pt;}
.ls1b{letter-spacing:-0.506667pt;}
.ls16{letter-spacing:-0.484267pt;}
.lsa{letter-spacing:-0.474133pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls82{letter-spacing:-0.383467pt;}
.ls97{letter-spacing:-0.375467pt;}
.ls19{letter-spacing:-0.368000pt;}
.ls26{letter-spacing:-0.354667pt;}
.ls1d{letter-spacing:-0.331733pt;}
.ls9a{letter-spacing:-0.320000pt;}
.ls38{letter-spacing:-0.308800pt;}
.ls2b{letter-spacing:-0.284800pt;}
.ls63{letter-spacing:-0.276267pt;}
.ls12{letter-spacing:-0.266667pt;}
.ls9c{letter-spacing:-0.239467pt;}
.ls27{letter-spacing:-0.229333pt;}
.ls81{letter-spacing:-0.213867pt;}
.ls9b{letter-spacing:-0.111467pt;}
.ls14{letter-spacing:-0.102933pt;}
.ls62{letter-spacing:-0.095467pt;}
.ls92{letter-spacing:-0.064000pt;}
.ls61{letter-spacing:-0.061867pt;}
.lsc{letter-spacing:-0.057600pt;}
.lsa3{letter-spacing:-0.051840pt;}
.lsa4{letter-spacing:-0.049280pt;}
.ls2e{letter-spacing:-0.036480pt;}
.ls6{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.013493pt;}
.ls91{letter-spacing:0.021120pt;}
.ls68{letter-spacing:0.021760pt;}
.ls76{letter-spacing:0.034560pt;}
.ls6c{letter-spacing:0.053760pt;}
.ls3a{letter-spacing:0.053867pt;}
.ls4{letter-spacing:0.062720pt;}
.ls23{letter-spacing:0.067733pt;}
.ls9{letter-spacing:0.078400pt;}
.ls25{letter-spacing:0.081067pt;}
.lsf{letter-spacing:0.111467pt;}
.ls57{letter-spacing:0.117760pt;}
.lsd{letter-spacing:0.121067pt;}
.ls34{letter-spacing:0.124800pt;}
.ls95{letter-spacing:0.133333pt;}
.ls31{letter-spacing:0.137067pt;}
.ls46{letter-spacing:0.150400pt;}
.ls40{letter-spacing:0.154667pt;}
.ls9f{letter-spacing:0.154880pt;}
.ls1c{letter-spacing:0.155733pt;}
.ls8{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.165867pt;}
.ls90{letter-spacing:0.175360pt;}
.ls66{letter-spacing:0.198400pt;}
.ls8f{letter-spacing:0.207787pt;}
.ls22{letter-spacing:0.217600pt;}
.ls8d{letter-spacing:0.229120pt;}
.ls1f{letter-spacing:0.241067pt;}
.ls2d{letter-spacing:0.253867pt;}
.ls54{letter-spacing:0.266240pt;}
.ls3{letter-spacing:0.272000pt;}
.ls7f{letter-spacing:0.274560pt;}
.ls48{letter-spacing:0.295467pt;}
.lsa2{letter-spacing:0.314880pt;}
.ls29{letter-spacing:0.318933pt;}
.ls69{letter-spacing:0.333867pt;}
.ls35{letter-spacing:0.349867pt;}
.ls47{letter-spacing:0.355200pt;}
.ls83{letter-spacing:0.362027pt;}
.ls96{letter-spacing:0.426133pt;}
.ls37{letter-spacing:0.454933pt;}
.ls6e{letter-spacing:0.472747pt;}
.ls24{letter-spacing:0.510400pt;}
.ls15{letter-spacing:0.581333pt;}
.ls73{letter-spacing:0.586667pt;}
.ls4f{letter-spacing:0.639360pt;}
.ls28{letter-spacing:0.666667pt;}
.lsa0{letter-spacing:0.794880pt;}
.ls2a{letter-spacing:0.805333pt;}
.ls5a{letter-spacing:1.028480pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls3b{letter-spacing:1.223040pt;}
.ls20{letter-spacing:1.462401pt;}
.ls56{letter-spacing:1.668480pt;}
.ls8b{letter-spacing:1.760000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls78{letter-spacing:1.792640pt;}
.ls7c{letter-spacing:1.853440pt;}
.ls72{letter-spacing:1.911040pt;}
.ls51{letter-spacing:2.070400pt;}
.ls88{letter-spacing:2.109867pt;}
.ls71{letter-spacing:2.118400pt;}
.ls6b{letter-spacing:2.126080pt;}
.ls6f{letter-spacing:2.131200pt;}
.ls5b{letter-spacing:2.145280pt;}
.ls65{letter-spacing:2.187520pt;}
.ls6a{letter-spacing:2.212480pt;}
.ls3d{letter-spacing:2.288640pt;}
.ls3f{letter-spacing:2.400000pt;}
.ls7b{letter-spacing:2.493440pt;}
.ls8c{letter-spacing:2.498560pt;}
.ls4d{letter-spacing:2.746880pt;}
.ls70{letter-spacing:2.766080pt;}
.ls85{letter-spacing:2.771200pt;}
.ls58{letter-spacing:2.785280pt;}
.ls45{letter-spacing:2.928640pt;}
.ls42{letter-spacing:2.955520pt;}
.ls21{letter-spacing:3.219034pt;}
.ls80{letter-spacing:4.000000pt;}
.ls2f{letter-spacing:4.975667pt;}
.ls39{letter-spacing:5.914880pt;}
.ls1e{letter-spacing:6.146756pt;}
.ls5d{letter-spacing:7.265280pt;}
.ls5e{letter-spacing:8.545280pt;}
.ls5f{letter-spacing:8.950400pt;}
.ls4a{letter-spacing:9.328640pt;}
.ls60{letter-spacing:10.465280pt;}
.lsa1{letter-spacing:10.832640pt;}
.ls59{letter-spacing:11.875200pt;}
.ls43{letter-spacing:12.758400pt;}
.ls30{letter-spacing:13.594880pt;}
.ls79{letter-spacing:14.013440pt;}
.ls4e{letter-spacing:14.126080pt;}
.ls3c{letter-spacing:14.213120pt;}
.ls4c{letter-spacing:14.266880pt;}
.ls67{letter-spacing:14.286080pt;}
.ls41{letter-spacing:14.507520pt;}
.ls77{letter-spacing:14.653440pt;}
.ls53{letter-spacing:14.719360pt;}
.ls50{letter-spacing:14.766080pt;}
.ls5c{letter-spacing:15.075200pt;}
.ls49{letter-spacing:15.359360pt;}
.ls44{letter-spacing:15.958400pt;}
.ls74{letter-spacing:16.631040pt;}
.ls3e{letter-spacing:16.773120pt;}
.ls6d{letter-spacing:16.846080pt;}
.ls7a{letter-spacing:17.213440pt;}
.ls8a{letter-spacing:17.486080pt;}
.ls52{letter-spacing:17.505280pt;}
.ls7d{letter-spacing:23.265280pt;}
.ls55{letter-spacing:24.224000pt;}
.ls7e{letter-spacing:25.825280pt;}
.ls9e{letter-spacing:37.840640pt;}
.ls5{letter-spacing:38.992640pt;}
.ls75{letter-spacing:41.824000pt;}
.ls4b{letter-spacing:69.857920pt;}
.ls86{letter-spacing:72.951040pt;}
.ls87{letter-spacing:75.511040pt;}
.ls84{letter-spacing:79.457920pt;}
.ls8e{letter-spacing:115.297920pt;}
.ls89{letter-spacing:142.874880pt;}
.ls99{letter-spacing:156.480000pt;}
.ls98{letter-spacing:240.053333pt;}
.ws59{word-spacing:-250.773333pt;}
.ws5e{word-spacing:-167.200000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3c{word-spacing:-20.636800pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws23{word-spacing:-12.810453pt;}
.ws5a{word-spacing:-12.800000pt;}
.ws21{word-spacing:-12.671787pt;}
.ws10{word-spacing:-12.586453pt;}
.ws1d{word-spacing:-12.515520pt;}
.ws2e{word-spacing:-12.460053pt;}
.ws22{word-spacing:-12.324053pt;}
.ws2a{word-spacing:-12.277120pt;}
.ws26{word-spacing:-12.258987pt;}
.ws1c{word-spacing:-12.246187pt;}
.ws1a{word-spacing:-12.222720pt;}
.ws5{word-spacing:-12.170987pt;}
.ws17{word-spacing:-12.160853pt;}
.ws28{word-spacing:-12.142187pt;}
.ws2c{word-spacing:-12.129920pt;}
.ws7{word-spacing:-12.126187pt;}
.ws9{word-spacing:-12.116587pt;}
.ws1e{word-spacing:-12.086187pt;}
.ws3{word-spacing:-12.083520pt;}
.ws1b{word-spacing:-12.072853pt;}
.ws48{word-spacing:-12.041600pt;}
.ws2d{word-spacing:-12.018613pt;}
.wse{word-spacing:-12.005120pt;}
.ws27{word-spacing:-11.968640pt;}
.ws71{word-spacing:-11.955840pt;}
.ws70{word-spacing:-11.953280pt;}
.ws6{word-spacing:-11.947520pt;}
.ws30{word-spacing:-11.943253pt;}
.ws35{word-spacing:-11.909653pt;}
.wsf{word-spacing:-11.902187pt;}
.ws20{word-spacing:-11.775787pt;}
.wsc{word-spacing:-11.738453pt;}
.ws3d{word-spacing:-11.728853pt;}
.ws24{word-spacing:-11.720320pt;}
.ws2f{word-spacing:-11.696320pt;}
.ws31{word-spacing:-11.686400pt;}
.ws18{word-spacing:-11.673387pt;}
.ws1f{word-spacing:-11.650453pt;}
.ws14{word-spacing:-11.637120pt;}
.ws57{word-spacing:-11.629653pt;}
.ws4{word-spacing:-11.530987pt;}
.ws11{word-spacing:-11.520853pt;}
.ws16{word-spacing:-11.498453pt;}
.ws2b{word-spacing:-11.497920pt;}
.ws12{word-spacing:-11.489920pt;}
.ws29{word-spacing:-11.333120pt;}
.wsa{word-spacing:-11.189120pt;}
.ws4c{word-spacing:-11.151787pt;}
.ws15{word-spacing:-11.141120pt;}
.ws25{word-spacing:-11.109120pt;}
.wsb{word-spacing:-11.050453pt;}
.ws5d{word-spacing:-10.752000pt;}
.ws63{word-spacing:-10.746453pt;}
.ws58{word-spacing:-10.720000pt;}
.ws4b{word-spacing:-10.687787pt;}
.ws8{word-spacing:-10.602453pt;}
.ws52{word-spacing:-8.299733pt;}
.ws33{word-spacing:-8.166400pt;}
.ws3e{word-spacing:-7.253120pt;}
.wsd{word-spacing:-7.215787pt;}
.ws4a{word-spacing:-6.976000pt;}
.ws13{word-spacing:-6.618453pt;}
.ws19{word-spacing:0.000000pt;}
.ws4e{word-spacing:2.784000pt;}
.ws50{word-spacing:2.949120pt;}
.ws32{word-spacing:3.032960pt;}
.ws3a{word-spacing:3.160960pt;}
.ws34{word-spacing:3.219840pt;}
.ws42{word-spacing:3.319040pt;}
.ws3b{word-spacing:3.651627pt;}
.ws41{word-spacing:3.672960pt;}
.ws56{word-spacing:3.800960pt;}
.ws51{word-spacing:5.585280pt;}
.ws54{word-spacing:5.864960pt;}
.ws46{word-spacing:5.989120pt;}
.ws49{word-spacing:6.237440pt;}
.ws4f{word-spacing:6.278400pt;}
.ws3f{word-spacing:6.318080pt;}
.ws40{word-spacing:6.341120pt;}
.ws43{word-spacing:6.801920pt;}
.ws4d{word-spacing:6.848000pt;}
.ws38{word-spacing:7.018667pt;}
.ws36{word-spacing:7.572480pt;}
.ws55{word-spacing:9.064960pt;}
.ws45{word-spacing:9.228800pt;}
.ws44{word-spacing:9.408000pt;}
.ws39{word-spacing:9.518080pt;}
.ws5b{word-spacing:56.856107pt;}
.ws5f{word-spacing:57.317333pt;}
.ws62{word-spacing:57.534293pt;}
.ws5c{word-spacing:57.573227pt;}
.ws60{word-spacing:58.106560pt;}
.ws66{word-spacing:83.570133pt;}
.ws68{word-spacing:94.387413pt;}
.ws69{word-spacing:94.438229pt;}
.ws64{word-spacing:94.450133pt;}
.ws65{word-spacing:94.547413pt;}
.ws67{word-spacing:94.610133pt;}
.ws53{word-spacing:137.047467pt;}
.ws6a{word-spacing:137.813333pt;}
.ws6e{word-spacing:142.898773pt;}
.ws6f{word-spacing:143.926229pt;}
.ws6b{word-spacing:153.488043pt;}
.ws6c{word-spacing:154.699563pt;}
.ws47{word-spacing:155.941120pt;}
.ws6d{word-spacing:159.840000pt;}
.ws61{word-spacing:214.624853pt;}
.ws37{word-spacing:261.701120pt;}
._4{margin-left:-1286.994560pt;}
._2{margin-left:-1181.652480pt;}
._3{margin-left:-893.908907pt;}
._5{margin-left:-515.133653pt;}
._41{margin-left:-23.736960pt;}
._43{margin-left:-10.720000pt;}
._42{margin-left:-8.416640pt;}
._c{margin-left:-5.739740pt;}
._9{margin-left:-4.342400pt;}
._6{margin-left:-2.944000pt;}
._1{margin-left:-1.766400pt;}
._0{width:1.239467pt;}
._f{width:2.360425pt;}
._d{width:3.398988pt;}
._e{width:4.629799pt;}
._b{width:5.841920pt;}
._a{width:6.963200pt;}
._13{width:7.886530pt;}
._3f{width:8.789539pt;}
._10{width:9.680640pt;}
._12{width:11.076367pt;}
._40{width:12.159360pt;}
._11{width:13.049335pt;}
._7{width:14.379520pt;}
._8{width:15.323947pt;}
._3e{width:16.630400pt;}
._26{width:17.901440pt;}
._46{width:18.807680pt;}
._1b{width:19.703253pt;}
._1c{width:20.747947pt;}
._36{width:21.885440pt;}
._16{width:23.266560pt;}
._17{width:24.183040pt;}
._2d{width:25.453013pt;}
._21{width:26.914133pt;}
._1f{width:29.583573pt;}
._20{width:30.707627pt;}
._2b{width:32.363520pt;}
._37{width:33.571840pt;}
._34{width:35.745493pt;}
._30{width:39.255680pt;}
._2f{width:40.650240pt;}
._1d{width:41.911680pt;}
._28{width:45.094613pt;}
._31{width:46.387200pt;}
._23{width:51.902293pt;}
._1a{width:53.279360pt;}
._2c{width:58.966400pt;}
._1e{width:59.984853pt;}
._32{width:63.013760pt;}
._3c{width:65.173973pt;}
._14{width:67.303040pt;}
._25{width:69.693440pt;}
._24{width:71.406720pt;}
._27{width:74.434560pt;}
._35{width:80.897493pt;}
._18{width:89.892480pt;}
._2a{width:91.061120pt;}
._33{width:105.191040pt;}
._38{width:123.875840pt;}
._3b{width:125.571413pt;}
._29{width:132.056320pt;}
._3a{width:137.262080pt;}
._15{width:145.031253pt;}
._2e{width:158.717440pt;}
._45{width:160.106667pt;}
._39{width:162.834347pt;}
._22{width:207.008640pt;}
._3d{width:213.754880pt;}
._44{width:241.333333pt;}
._19{width:289.286400pt;}
.fs4{font-size:2.560000pt;}
.fsc{font-size:32.000000pt;}
.fs6{font-size:32.818757pt;}
.fs7{font-size:32.918208pt;}
.fsb{font-size:37.120000pt;}
.fs8{font-size:37.791296pt;}
.fs9{font-size:37.890747pt;}
.fsd{font-size:42.880000pt;}
.fsf{font-size:43.008000pt;}
.fs5{font-size:49.725390pt;}
.fsa{font-size:49.824841pt;}
.fse{font-size:51.200000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.ya1{bottom:-49.576214pt;}
.yba{bottom:-5.863452pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:1.439964pt;}
.y166{bottom:1.440000pt;}
.yaf{bottom:1.595356pt;}
.y56{bottom:5.760000pt;}
.y5b{bottom:5.920000pt;}
.yb5{bottom:6.091360pt;}
.y20f{bottom:6.240000pt;}
.y63{bottom:6.720000pt;}
.ybf{bottom:11.039037pt;}
.ybc{bottom:12.379550pt;}
.y164{bottom:13.440000pt;}
.y1bb{bottom:14.333333pt;}
.y1f9{bottom:14.400000pt;}
.y19c{bottom:14.426667pt;}
.y18e{bottom:14.493333pt;}
.yaa{bottom:14.596474pt;}
.y161{bottom:14.720000pt;}
.y169{bottom:14.746667pt;}
.yb4{bottom:17.051665pt;}
.yb9{bottom:18.025454pt;}
.y5a{bottom:24.640000pt;}
.y71{bottom:24.666667pt;}
.y20e{bottom:24.960000pt;}
.y62{bottom:25.440000pt;}
.y7f{bottom:30.560000pt;}
.y7b{bottom:30.720000pt;}
.y20b{bottom:31.520000pt;}
.yac{bottom:34.932086pt;}
.yc2{bottom:36.747063pt;}
.yb2{bottom:37.741571pt;}
.yb7{bottom:42.639522pt;}
.y59{bottom:43.360000pt;}
.y70{bottom:43.386667pt;}
.y20d{bottom:44.000000pt;}
.y61{bottom:44.200000pt;}
.y1b8{bottom:46.466667pt;}
.y1f7{bottom:46.493333pt;}
.y1e9{bottom:46.533333pt;}
.y18c{bottom:46.626667pt;}
.yc1{bottom:47.685613pt;}
.yb1{bottom:48.929784pt;}
.y67{bottom:49.274667pt;}
.y75{bottom:49.280000pt;}
.y79{bottom:49.440000pt;}
.y72{bottom:50.080000pt;}
.y64{bottom:50.880000pt;}
.y19a{bottom:52.666667pt;}
.y6{bottom:53.952000pt;}
.yc0{bottom:58.874862pt;}
.yb0{bottom:59.869369pt;}
.y58{bottom:62.080000pt;}
.y6e{bottom:62.106667pt;}
.y20c{bottom:62.714667pt;}
.y1b2{bottom:62.746667pt;}
.y1f5{bottom:62.786667pt;}
.y1e7{bottom:62.813333pt;}
.y18a{bottom:62.906667pt;}
.y60{bottom:62.920000pt;}
.y66{bottom:67.994667pt;}
.y74{bottom:68.000000pt;}
.y7d{bottom:68.040000pt;}
.y78{bottom:68.160000pt;}
.y198{bottom:69.146667pt;}
.y5e{bottom:69.640000pt;}
.y1ec{bottom:75.333333pt;}
.y1dd{bottom:75.360000pt;}
.y184{bottom:75.426667pt;}
.y9c{bottom:78.752000pt;}
.y6d{bottom:80.826667pt;}
.y192{bottom:81.413333pt;}
.y1d4{bottom:81.920000pt;}
.y199{bottom:82.586667pt;}
.y20a{bottom:83.072000pt;}
.y19e{bottom:83.493333pt;}
.yf3{bottom:85.792000pt;}
.y6b{bottom:86.746667pt;}
.y81{bottom:86.880000pt;}
.y190{bottom:87.133333pt;}
.y5d{bottom:88.360000pt;}
.y1de{bottom:89.573333pt;}
.y1a3{bottom:89.986667pt;}
.y126{bottom:91.392000pt;}
.y1ed{bottom:91.680000pt;}
.y15d{bottom:91.712000pt;}
.y1b3{bottom:93.760000pt;}
.y1d5{bottom:96.133333pt;}
.y1a8{bottom:96.453333pt;}
.y185{bottom:97.413333pt;}
.y9b{bottom:97.472000pt;}
.y18b{bottom:100.346667pt;}
.y1e8{bottom:100.453333pt;}
.y193{bottom:100.613333pt;}
.y209{bottom:100.672000pt;}
.y1d2{bottom:101.152000pt;}
.y9f{bottom:102.272000pt;}
.y1ad{bottom:102.946667pt;}
.y1df{bottom:103.773333pt;}
.yf2{bottom:104.512000pt;}
.y1f6{bottom:105.346667pt;}
.y6a{bottom:105.466667pt;}
.y182{bottom:106.912000pt;}
.y1ee{bottom:108.026667pt;}
.y125{bottom:110.112000pt;}
.y191{bottom:110.173333pt;}
.y1d6{bottom:110.333333pt;}
.y15c{bottom:110.432000pt;}
.y30{bottom:110.592000pt;}
.y65{bottom:116.032000pt;}
.y9a{bottom:116.192000pt;}
.y1d7{bottom:117.440000pt;}
.y1e0{bottom:117.986667pt;}
.y186{bottom:119.386667pt;}
.y208{bottom:119.392000pt;}
.y194{bottom:119.813333pt;}
.y1d1{bottom:119.872000pt;}
.y19f{bottom:120.413333pt;}
.y9e{bottom:120.992000pt;}
.y178{bottom:121.952000pt;}
.yf1{bottom:123.232000pt;}
.y1ef{bottom:124.386667pt;}
.y181{bottom:125.632000pt;}
.y1a4{bottom:126.906667pt;}
.y124{bottom:128.832000pt;}
.y15b{bottom:129.152000pt;}
.y2f{bottom:129.312000pt;}
.yae{bottom:129.783267pt;}
.y1b4{bottom:130.693333pt;}
.y1e1{bottom:132.186667pt;}
.y1a9{bottom:133.413333pt;}
.y99{bottom:134.906667pt;}
.y9d{bottom:136.186667pt;}
.ya0{bottom:136.320000pt;}
.y68{bottom:137.626667pt;}
.y207{bottom:138.106667pt;}
.y1d0{bottom:138.586667pt;}
.y1d8{bottom:138.746667pt;}
.y195{bottom:139.013333pt;}
.y1b9{bottom:139.840000pt;}
.y1ae{bottom:139.866667pt;}
.yb8{bottom:140.225599pt;}
.y177{bottom:140.666667pt;}
.y1f0{bottom:140.733333pt;}
.yad{bottom:140.971480pt;}
.y187{bottom:141.346667pt;}
.yf0{bottom:141.946667pt;}
.y180{bottom:144.346667pt;}
.y1da{bottom:145.853333pt;}
.y1e2{bottom:146.400000pt;}
.y2e{bottom:148.026667pt;}
.y15a{bottom:148.506667pt;}
.y122{bottom:148.986667pt;}
.y1d9{bottom:152.960000pt;}
.y98{bottom:153.626667pt;}
.y123{bottom:154.266667pt;}
.y206{bottom:156.826667pt;}
.y1f1{bottom:157.120000pt;}
.y1cf{bottom:157.306667pt;}
.y1a0{bottom:157.373333pt;}
.y196{bottom:158.213333pt;}
.y176{bottom:159.386667pt;}
.y1e3{bottom:160.573333pt;}
.yef{bottom:160.666667pt;}
.y17f{bottom:163.066667pt;}
.y188{bottom:163.333333pt;}
.y1a5{bottom:163.840000pt;}
.y2d{bottom:166.746667pt;}
.y159{bottom:167.066667pt;}
.y1db{bottom:167.173333pt;}
.y1b5{bottom:167.653333pt;}
.y120{bottom:167.706667pt;}
.y1aa{bottom:170.333333pt;}
.y97{bottom:172.346667pt;}
.y121{bottom:172.986667pt;}
.y1f2{bottom:173.466667pt;}
.y1e4{bottom:174.786667pt;}
.y205{bottom:175.546667pt;}
.y1ce{bottom:176.026667pt;}
.y1af{bottom:176.826667pt;}
.y197{bottom:177.373333pt;}
.y175{bottom:178.106667pt;}
.yee{bottom:179.386667pt;}
.y1dc{bottom:181.346667pt;}
.y17e{bottom:181.786667pt;}
.y189{bottom:185.280000pt;}
.y2c{bottom:185.466667pt;}
.y158{bottom:185.786667pt;}
.y11f{bottom:186.426667pt;}
.y1e5{bottom:188.986667pt;}
.y1f3{bottom:189.826667pt;}
.y96{bottom:191.066667pt;}
.y204{bottom:194.266667pt;}
.y1a1{bottom:194.306667pt;}
.y1cd{bottom:194.746667pt;}
.y174{bottom:196.826667pt;}
.y17d{bottom:196.986667pt;}
.y5c{bottom:197.466667pt;}
.yed{bottom:198.106667pt;}
.y19d{bottom:198.880000pt;}
.y1a6{bottom:200.800000pt;}
.y1e6{bottom:203.200000pt;}
.y2b{bottom:204.186667pt;}
.y157{bottom:204.506667pt;}
.y1b6{bottom:204.573333pt;}
.y11e{bottom:205.146667pt;}
.y1f4{bottom:206.173333pt;}
.y1ab{bottom:207.293333pt;}
.y18d{bottom:207.933333pt;}
.y95{bottom:209.786667pt;}
.ybe{bottom:212.524160pt;}
.y203{bottom:212.986667pt;}
.y1cc{bottom:213.466667pt;}
.y1b0{bottom:213.760000pt;}
.y173{bottom:215.546667pt;}
.yec{bottom:216.826667pt;}
.y5f{bottom:219.226667pt;}
.y2a{bottom:222.906667pt;}
.y156{bottom:223.226667pt;}
.ya8{bottom:223.567425pt;}
.y11d{bottom:223.866667pt;}
.y1ea{bottom:225.853333pt;}
.y94{bottom:228.506667pt;}
.y1f8{bottom:228.800000pt;}
.y1a2{bottom:231.266667pt;}
.y202{bottom:231.706667pt;}
.y1cb{bottom:232.186667pt;}
.y172{bottom:234.266667pt;}
.ya7{bottom:234.507010pt;}
.yeb{bottom:235.546667pt;}
.y1a7{bottom:237.733333pt;}
.y1b7{bottom:241.533333pt;}
.y29{bottom:241.626667pt;}
.y155{bottom:242.906667pt;}
.y1ac{bottom:244.226667pt;}
.y11b{bottom:244.826667pt;}
.y154{bottom:245.626667pt;}
.yb6{bottom:246.337425pt;}
.y93{bottom:247.226667pt;}
.y201{bottom:250.466667pt;}
.y1b1{bottom:250.720000pt;}
.y1ca{bottom:250.946667pt;}
.y11c{bottom:251.906667pt;}
.y171{bottom:253.026667pt;}
.yab{bottom:253.298980pt;}
.y19b{bottom:253.853333pt;}
.yea{bottom:254.306667pt;}
.y28{bottom:260.386667pt;}
.ya3{bottom:263.617082pt;}
.y92{bottom:265.986667pt;}
.y11a{bottom:266.466667pt;}
.y200{bottom:269.186667pt;}
.y153{bottom:269.666667pt;}
.y170{bottom:271.746667pt;}
.ya2{bottom:274.805295pt;}
.y27{bottom:279.106667pt;}
.ye9{bottom:281.026667pt;}
.y1ba{bottom:282.266667pt;}
.y91{bottom:284.706667pt;}
.y119{bottom:285.186667pt;}
.y1ff{bottom:287.906667pt;}
.y152{bottom:288.226667pt;}
.y1c9{bottom:288.386667pt;}
.y16f{bottom:290.466667pt;}
.yb3{bottom:292.830664pt;}
.y26{bottom:297.826667pt;}
.y57{bottom:299.266667pt;}
.ye8{bottom:299.746667pt;}
.y90{bottom:303.426667pt;}
.y118{bottom:303.906667pt;}
.y1fe{bottom:306.626667pt;}
.y151{bottom:306.946667pt;}
.y1c8{bottom:307.106667pt;}
.y16e{bottom:309.186667pt;}
.y25{bottom:316.546667pt;}
.ye6{bottom:319.746667pt;}
.y8f{bottom:322.146667pt;}
.y117{bottom:322.626667pt;}
.ye7{bottom:324.706667pt;}
.ya6{bottom:325.059017pt;}
.y1fd{bottom:325.346667pt;}
.y150{bottom:325.666667pt;}
.y1c7{bottom:325.826667pt;}
.y16d{bottom:327.906667pt;}
.ya9{bottom:334.102738pt;}
.y24{bottom:335.266667pt;}
.ya5{bottom:336.247230pt;}
.ye5{bottom:339.746667pt;}
.y8e{bottom:340.706667pt;}
.y116{bottom:341.346667pt;}
.y1fc{bottom:344.066667pt;}
.y1c6{bottom:344.546667pt;}
.y14f{bottom:345.666667pt;}
.y16c{bottom:346.626667pt;}
.ya4{bottom:347.186816pt;}
.y23{bottom:353.986667pt;}
.ye4{bottom:358.306667pt;}
.y8d{bottom:359.426667pt;}
.y115{bottom:360.066667pt;}
.y1fb{bottom:362.786667pt;}
.y1c5{bottom:363.266667pt;}
.y14e{bottom:365.346667pt;}
.y22{bottom:372.706667pt;}
.y55{bottom:374.946667pt;}
.ye3{bottom:375.266667pt;}
.y8c{bottom:378.146667pt;}
.y1c4{bottom:378.466667pt;}
.y114{bottom:378.786667pt;}
.y1eb{bottom:379.680000pt;}
.y1fa{bottom:381.506667pt;}
.ye2{bottom:381.986667pt;}
.y14d{bottom:384.066667pt;}
.y21{bottom:391.426667pt;}
.y8b{bottom:396.866667pt;}
.y113{bottom:397.506667pt;}
.y54{bottom:400.226667pt;}
.ye1{bottom:402.306667pt;}
.y14c{bottom:402.786667pt;}
.ybb{bottom:403.469657pt;}
.y20{bottom:410.146667pt;}
.y8a{bottom:415.586667pt;}
.y112{bottom:416.226667pt;}
.y53{bottom:418.946667pt;}
.ye0{bottom:421.026667pt;}
.y14b{bottom:421.506667pt;}
.y1f{bottom:428.866667pt;}
.y89{bottom:434.306667pt;}
.y111{bottom:434.946667pt;}
.y52{bottom:437.666667pt;}
.ydf{bottom:439.746667pt;}
.y16b{bottom:440.226667pt;}
.y14a{bottom:441.186667pt;}
.y1e{bottom:447.586667pt;}
.y88{bottom:453.026667pt;}
.y110{bottom:453.666667pt;}
.y51{bottom:456.386667pt;}
.yde{bottom:458.466667pt;}
.y149{bottom:459.906667pt;}
.y16a{bottom:461.666667pt;}
.y1d{bottom:466.306667pt;}
.y87{bottom:471.746667pt;}
.y10f{bottom:472.386667pt;}
.ydb{bottom:473.666667pt;}
.y50{bottom:475.106667pt;}
.ydd{bottom:477.346667pt;}
.y148{bottom:478.626667pt;}
.yd9{bottom:480.386667pt;}
.yda{bottom:482.786667pt;}
.y1c{bottom:485.026667pt;}
.ydc{bottom:485.666667pt;}
.y168{bottom:489.986667pt;}
.y86{bottom:490.466667pt;}
.y10e{bottom:491.106667pt;}
.y4f{bottom:493.826667pt;}
.y147{bottom:497.346667pt;}
.yd7{bottom:502.013333pt;}
.yd8{bottom:504.413333pt;}
.y1b{bottom:505.853333pt;}
.y17c{bottom:506.973333pt;}
.y85{bottom:509.213333pt;}
.y10d{bottom:509.693333pt;}
.y4e{bottom:512.573333pt;}
.y146{bottom:516.093333pt;}
.y167{bottom:518.173333pt;}
.yd6{bottom:521.533333pt;}
.y17b{bottom:522.173333pt;}
.y18f{bottom:522.400000pt;}
.y82{bottom:522.813333pt;}
.y1a{bottom:524.413333pt;}
.y84{bottom:525.693333pt;}
.y10c{bottom:528.413333pt;}
.y4d{bottom:531.293333pt;}
.y145{bottom:535.933333pt;}
.yd5{bottom:540.253333pt;}
.y83{bottom:544.413333pt;}
.y163{bottom:546.333333pt;}
.y4c{bottom:550.013333pt;}
.y165{bottom:550.813333pt;}
.y19{bottom:551.133333pt;}
.y10b{bottom:555.133333pt;}
.y144{bottom:555.773333pt;}
.yd4{bottom:558.973333pt;}
.y4b{bottom:568.733333pt;}
.y18{bottom:569.853333pt;}
.y162{bottom:573.213333pt;}
.y10a{bottom:573.853333pt;}
.y143{bottom:575.613333pt;}
.yd3{bottom:577.693333pt;}
.y80{bottom:585.533333pt;}
.y4a{bottom:587.293333pt;}
.y17{bottom:588.573333pt;}
.y109{bottom:591.133333pt;}
.y142{bottom:594.333333pt;}
.yd2{bottom:596.413333pt;}
.y108{bottom:599.453333pt;}
.y160{bottom:601.373333pt;}
.y49{bottom:606.013333pt;}
.y16{bottom:607.293333pt;}
.y141{bottom:613.053333pt;}
.yd1{bottom:615.133333pt;}
.y107{bottom:618.973333pt;}
.y48{bottom:624.733333pt;}
.y15{bottom:626.013333pt;}
.y140{bottom:631.773333pt;}
.yd0{bottom:633.853333pt;}
.y15f{bottom:635.453333pt;}
.y1c3{bottom:636.413333pt;}
.y106{bottom:637.693333pt;}
.y47{bottom:643.453333pt;}
.y14{bottom:644.733333pt;}
.y13f{bottom:650.493333pt;}
.ycf{bottom:653.053333pt;}
.y15e{bottom:654.173333pt;}
.y1c2{bottom:655.133333pt;}
.y105{bottom:656.413333pt;}
.y46{bottom:662.173333pt;}
.y13{bottom:663.453333pt;}
.y13e{bottom:669.213333pt;}
.yce{bottom:672.893333pt;}
.y1c1{bottom:673.853333pt;}
.y104{bottom:675.133333pt;}
.y45{bottom:680.893333pt;}
.y12{bottom:682.173333pt;}
.y7c{bottom:685.853333pt;}
.y13d{bottom:687.933333pt;}
.ycd{bottom:691.613333pt;}
.y1c0{bottom:692.573333pt;}
.y103{bottom:693.853333pt;}
.y44{bottom:699.613333pt;}
.y11{bottom:700.893333pt;}
.y13c{bottom:706.653333pt;}
.y7e{bottom:707.453333pt;}
.ycc{bottom:710.333333pt;}
.y1bf{bottom:711.293333pt;}
.y102{bottom:712.573333pt;}
.y43{bottom:718.333333pt;}
.y10{bottom:719.613333pt;}
.y13b{bottom:725.373333pt;}
.ycb{bottom:729.053333pt;}
.y1be{bottom:730.013333pt;}
.y101{bottom:732.733333pt;}
.y42{bottom:737.053333pt;}
.yf{bottom:738.333333pt;}
.y13a{bottom:743.933333pt;}
.yca{bottom:747.773333pt;}
.y1bd{bottom:748.733333pt;}
.y100{bottom:751.293333pt;}
.y41{bottom:755.813333pt;}
.ye{bottom:757.093333pt;}
.y139{bottom:762.693333pt;}
.y1bc{bottom:763.973333pt;}
.y1d3{bottom:764.160000pt;}
.yc9{bottom:766.533333pt;}
.y77{bottom:767.333333pt;}
.yff{bottom:770.053333pt;}
.y40{bottom:774.533333pt;}
.yd{bottom:775.813333pt;}
.y138{bottom:781.413333pt;}
.yc8{bottom:785.253333pt;}
.yfe{bottom:788.773333pt;}
.y7a{bottom:789.093333pt;}
.y3f{bottom:793.253333pt;}
.yc{bottom:796.453333pt;}
.y137{bottom:800.133333pt;}
.yc7{bottom:803.973333pt;}
.y17a{bottom:804.133333pt;}
.yfd{bottom:807.493333pt;}
.y3e{bottom:811.973333pt;}
.yb{bottom:815.173333pt;}
.y179{bottom:819.333333pt;}
.y183{bottom:819.520000pt;}
.yc6{bottom:822.693333pt;}
.yfc{bottom:826.213333pt;}
.y136{bottom:826.853333pt;}
.y3d{bottom:830.693333pt;}
.ya{bottom:834.693333pt;}
.yc5{bottom:841.413333pt;}
.y135{bottom:845.573333pt;}
.yfb{bottom:846.213333pt;}
.y73{bottom:848.933333pt;}
.y3c{bottom:849.413333pt;}
.y9{bottom:854.533333pt;}
.yc4{bottom:860.133333pt;}
.yfa{bottom:864.773333pt;}
.y133{bottom:865.413333pt;}
.y3b{bottom:868.133333pt;}
.y134{bottom:870.373333pt;}
.y76{bottom:870.693333pt;}
.y8{bottom:876.933333pt;}
.yc3{bottom:878.853333pt;}
.yf9{bottom:883.493333pt;}
.y132{bottom:884.133333pt;}
.y3a{bottom:886.853333pt;}
.yf8{bottom:902.213333pt;}
.y130{bottom:902.853333pt;}
.y39{bottom:905.573333pt;}
.y7{bottom:906.853333pt;}
.y131{bottom:907.813333pt;}
.yf7{bottom:920.933333pt;}
.y12f{bottom:921.573333pt;}
.y38{bottom:924.293333pt;}
.y69{bottom:930.533333pt;}
.yf6{bottom:939.653333pt;}
.y12e{bottom:940.293333pt;}
.y5{bottom:942.693333pt;}
.y37{bottom:943.013333pt;}
.y6c{bottom:952.133333pt;}
.y12d{bottom:959.013333pt;}
.yf5{bottom:959.653333pt;}
.y36{bottom:961.733333pt;}
.y4{bottom:971.493333pt;}
.y12c{bottom:977.733333pt;}
.y35{bottom:980.453333pt;}
.yf4{bottom:980.613333pt;}
.y6f{bottom:983.653333pt;}
.y12b{bottom:996.453333pt;}
.y34{bottom:999.173333pt;}
.y3{bottom:1000.133333pt;}
.y12a{bottom:1015.200000pt;}
.y33{bottom:1017.920000pt;}
.y2{bottom:1028.960000pt;}
.y129{bottom:1032.160000pt;}
.y127{bottom:1035.360000pt;}
.y32{bottom:1036.640000pt;}
.y128{bottom:1040.640000pt;}
.y1{bottom:1059.840000pt;}
.y31{bottom:1061.440000pt;}
.h12{height:2.546250pt;}
.h9{height:18.560000pt;}
.h37{height:18.720000pt;}
.h27{height:18.895648pt;}
.h25{height:20.138783pt;}
.h1a{height:22.915441pt;}
.h20{height:22.984882pt;}
.h1f{height:24.862695pt;}
.h36{height:26.240000pt;}
.h22{height:26.387477pt;}
.h35{height:27.520000pt;}
.h38{height:27.552000pt;}
.h1c{height:32.209815pt;}
.h1b{height:32.307421pt;}
.h23{height:37.187696pt;}
.h17{height:37.440000pt;}
.h2c{height:41.234375pt;}
.h3a{height:42.084375pt;}
.h3d{height:42.210000pt;}
.h1e{height:42.763835pt;}
.h43{height:43.215000pt;}
.h1d{height:47.985001pt;}
.h24{height:48.802751pt;}
.h26{height:48.900356pt;}
.h19{height:49.458310pt;}
.h2{height:49.907812pt;}
.h3b{height:50.250000pt;}
.h44{height:51.600000pt;}
.h21{height:51.714405pt;}
.h5{height:52.834688pt;}
.h7{height:54.390938pt;}
.h8{height:54.598989pt;}
.he{height:56.160000pt;}
.h11{height:56.192000pt;}
.h3{height:58.563750pt;}
.h28{height:59.007812pt;}
.h6{height:60.288750pt;}
.h30{height:60.927813pt;}
.h29{height:61.074375pt;}
.h31{height:61.567813pt;}
.h16{height:62.080000pt;}
.h2a{height:62.994375pt;}
.h2d{height:64.994687pt;}
.h33{height:65.634687pt;}
.h34{height:69.887813pt;}
.h42{height:70.511042pt;}
.h2e{height:72.594375pt;}
.ha{height:74.880000pt;}
.h46{height:75.520000pt;}
.hc{height:76.352000pt;}
.h2f{height:79.714687pt;}
.hd{height:80.800000pt;}
.h14{height:80.832000pt;}
.h13{height:80.960000pt;}
.h4{height:87.156562pt;}
.h2b{height:87.807813pt;}
.h32{height:92.287812pt;}
.h10{height:93.632000pt;}
.h15{height:99.680000pt;}
.hb{height:101.152000pt;}
.hf{height:118.272000pt;}
.h40{height:127.311042pt;}
.h41{height:127.364375pt;}
.h39{height:229.920000pt;}
.h3f{height:247.840000pt;}
.h45{height:250.880000pt;}
.h3c{height:275.840000pt;}
.h3e{height:302.240000pt;}
.h18{height:370.329841pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:61.744169pt;}
.w11{width:67.232000pt;}
.wa{width:77.721828pt;}
.wb{width:92.074639pt;}
.we{width:110.760373pt;}
.wf{width:112.293547pt;}
.w3{width:112.992000pt;}
.wd{width:150.839922pt;}
.w8{width:161.626667pt;}
.w5{width:173.306667pt;}
.w6{width:179.386667pt;}
.w17{width:187.386667pt;}
.w7{width:206.266667pt;}
.w4{width:224.026667pt;}
.w10{width:239.106667pt;}
.w16{width:310.080000pt;}
.w15{width:324.960000pt;}
.w9{width:370.373333pt;}
.w13{width:389.600000pt;}
.w12{width:396.800000pt;}
.w14{width:418.400000pt;}
.w18{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:0.960000pt;}
.x1b{left:6.880000pt;}
.x42{left:8.586863pt;}
.x45{left:9.749081pt;}
.x38{left:10.674341pt;}
.x3a{left:12.050945pt;}
.x4a{left:15.165232pt;}
.x49{left:16.248462pt;}
.x4b{left:18.983622pt;}
.x43{left:20.879278pt;}
.x32{left:23.045727pt;}
.x44{left:25.212195pt;}
.x86{left:26.786667pt;}
.x78{left:28.386667pt;}
.x3d{left:32.113288pt;}
.x72{left:33.093333pt;}
.x76{left:35.133333pt;}
.x84{left:38.466667pt;}
.x71{left:41.093333pt;}
.x75{left:43.133333pt;}
.x33{left:46.064386pt;}
.x1{left:47.999988pt;}
.x1a{left:51.040000pt;}
.x64{left:55.359988pt;}
.x8e{left:58.106667pt;}
.x10{left:63.359988pt;}
.x21{left:66.079988pt;}
.x8b{left:67.133333pt;}
.x2e{left:69.279988pt;}
.x7{left:71.999988pt;}
.x18{left:74.559988pt;}
.x46{left:75.609528pt;}
.x77{left:77.146667pt;}
.x2a{left:78.079988pt;}
.x55{left:81.471988pt;}
.x19{left:85.311988pt;}
.x8f{left:90.911988pt;}
.x5b{left:96.031988pt;}
.x16{left:100.351988pt;}
.x26{left:101.471988pt;}
.x61{left:103.231988pt;}
.x13{left:105.311988pt;}
.x14{left:106.751988pt;}
.x8c{left:109.626667pt;}
.x11{left:110.751988pt;}
.x2{left:112.191988pt;}
.x34{left:113.547419pt;}
.x7a{left:115.933333pt;}
.xc{left:118.111988pt;}
.x28{left:119.551988pt;}
.x2b{left:121.311988pt;}
.x24{left:126.111988pt;}
.x8{left:127.551988pt;}
.x23{left:128.511988pt;}
.x65{left:129.631988pt;}
.x40{left:134.433481pt;}
.x79{left:137.760000pt;}
.x3f{left:139.037213pt;}
.x3{left:140.826655pt;}
.x3e{left:143.911752pt;}
.x56{left:147.706655pt;}
.x36{left:149.327899pt;}
.x4{left:151.706655pt;}
.x17{left:154.106655pt;}
.x8d{left:158.626667pt;}
.x7c{left:161.920000pt;}
.x35{left:163.432469pt;}
.xd{left:164.346655pt;}
.x54{left:167.226655pt;}
.x90{left:168.986667pt;}
.x5d{left:170.586655pt;}
.x62{left:171.546655pt;}
.x1e{left:173.626667pt;}
.x85{left:174.946667pt;}
.x22{left:179.066655pt;}
.x7d{left:182.813333pt;}
.x58{left:185.946655pt;}
.x68{left:187.386667pt;}
.x3b{left:192.408903pt;}
.x4c{left:194.746655pt;}
.x2c{left:195.866655pt;}
.x3c{left:197.283443pt;}
.x5c{left:198.906655pt;}
.x52{left:200.026655pt;}
.x73{left:201.760000pt;}
.x7e{left:205.626667pt;}
.x57{left:208.506655pt;}
.x7b{left:210.720000pt;}
.x7f{left:217.666667pt;}
.x59{left:220.986655pt;}
.x53{left:232.026655pt;}
.x5f{left:233.626655pt;}
.x30{left:235.666667pt;}
.x9{left:240.026655pt;}
.x4d{left:242.426655pt;}
.x66{left:245.786655pt;}
.xa{left:247.066655pt;}
.x4e{left:248.866655pt;}
.x51{left:250.626655pt;}
.x80{left:252.506667pt;}
.x4f{left:264.546655pt;}
.x5e{left:266.306655pt;}
.xe{left:283.426655pt;}
.x5{left:285.506655pt;}
.x29{left:287.266655pt;}
.x8a{left:293.986655pt;}
.x74{left:298.946667pt;}
.x63{left:301.826655pt;}
.x81{left:310.173333pt;}
.x6{left:311.266655pt;}
.x88{left:315.266655pt;}
.x60{left:318.946655pt;}
.x6c{left:320.066655pt;}
.x82{left:322.213333pt;}
.x6e{left:323.106655pt;}
.xf{left:326.306655pt;}
.x70{left:329.986655pt;}
.x5a{left:332.866655pt;}
.x25{left:336.866655pt;}
.x83{left:345.026667pt;}
.x67{left:348.546655pt;}
.x69{left:367.426667pt;}
.x37{left:373.778610pt;}
.x6a{left:376.226667pt;}
.x1c{left:389.506667pt;}
.x2f{left:396.866655pt;}
.x39{left:409.796045pt;}
.xb{left:413.986655pt;}
.x31{left:416.795705pt;}
.x27{left:425.213322pt;}
.x47{left:438.772469pt;}
.x50{left:479.933322pt;}
.x48{left:493.746453pt;}
.x41{left:497.808565pt;}
.x15{left:502.493322pt;}
.x89{left:551.933322pt;}
.x87{left:559.933322pt;}
.x1d{left:563.453333pt;}
.x20{left:572.253333pt;}
.x6d{left:591.973322pt;}
.x6b{left:595.973322pt;}
.x2d{left:606.213322pt;}
.x6f{left:631.013322pt;}
.x12{left:737.733322pt;}
}




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