
    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_7bb38b78bbdb09e2a173b70b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_e0074b762f5af049bcb53fc9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_0cec53987c3dbfeb4bf68bb7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;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_1fa4381f27c4a21b263091f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.223000;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_4821e14680d5ff3623a4ec4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136000;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_77528b1f2dd9a0dc7ac33043.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.126000;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_31f1f55eeb5dd8d46d048865.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239000;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_2cfe8f5322036f6558fb9f3b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.328000;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_37d99cdbd543126ec3ccaa3e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.924000;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_616ab6ebd1109b23456642e9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;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_4fe5f6b446547abf4db1ab60.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ad3b01b88be8c9f4504ed273.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.871000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_603edc4c1f395e5e17a18ef5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_50b86a600c9d8f20073bbc98.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.607000;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;}
.m4{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.400011px;}
.v2{vertical-align:-3.600037px;}
.v4{vertical-align:-1.872000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls3d{letter-spacing:-1.110622px;}
.ls3a{letter-spacing:-1.009656px;}
.ls32{letter-spacing:-0.908690px;}
.ls31{letter-spacing:-0.858208px;}
.ls34{letter-spacing:-0.807725px;}
.ls3e{letter-spacing:-0.757242px;}
.ls33{letter-spacing:-0.605794px;}
.ls4f{letter-spacing:-0.600000px;}
.ls3b{letter-spacing:-0.504828px;}
.ls4b{letter-spacing:-0.420000px;}
.ls80{letter-spacing:-0.408000px;}
.ls20{letter-spacing:-0.360000px;}
.ls74{letter-spacing:-0.357000px;}
.ls81{letter-spacing:-0.306000px;}
.ls22{letter-spacing:-0.300000px;}
.ls72{letter-spacing:-0.255000px;}
.ls21{letter-spacing:-0.240000px;}
.ls75{letter-spacing:-0.204000px;}
.ls36{letter-spacing:-0.201931px;}
.ls11{letter-spacing:-0.180000px;}
.ls7f{letter-spacing:-0.153000px;}
.ls3c{letter-spacing:-0.151448px;}
.lse{letter-spacing:-0.120000px;}
.ls30{letter-spacing:-0.111904px;}
.ls73{letter-spacing:-0.102000px;}
.ls38{letter-spacing:-0.100966px;}
.ls10{letter-spacing:-0.060000px;}
.ls7e{letter-spacing:-0.051000px;}
.ls2f{letter-spacing:-0.050483px;}
.lsd{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.030000px;}
.ls42{letter-spacing:0.030710px;}
.ls29{letter-spacing:0.050483px;}
.ls5e{letter-spacing:0.051000px;}
.ls2{letter-spacing:0.060000px;}
.ls4a{letter-spacing:0.090000px;}
.ls2e{letter-spacing:0.100966px;}
.ls61{letter-spacing:0.102000px;}
.ls14{letter-spacing:0.120000px;}
.ls4e{letter-spacing:0.150000px;}
.ls5b{letter-spacing:0.153000px;}
.ls5d{letter-spacing:0.178500px;}
.lsc{letter-spacing:0.178791px;}
.ls6{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.201931px;}
.ls64{letter-spacing:0.204000px;}
.ls41{letter-spacing:0.214973px;}
.ls1{letter-spacing:0.240000px;}
.lsb{letter-spacing:0.255000px;}
.ls5c{letter-spacing:0.264000px;}
.ls45{letter-spacing:0.275987px;}
.lsf{letter-spacing:0.282000px;}
.ls62{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.300000px;}
.ls7b{letter-spacing:0.306000px;}
.ls25{letter-spacing:0.330000px;}
.ls5f{letter-spacing:0.357000px;}
.ls12{letter-spacing:0.360000px;}
.ls6f{letter-spacing:0.382500px;}
.ls51{letter-spacing:0.390000px;}
.ls60{letter-spacing:0.408000px;}
.ls9{letter-spacing:0.420000px;}
.ls27{letter-spacing:0.450000px;}
.ls58{letter-spacing:0.459000px;}
.ls1c{letter-spacing:0.480000px;}
.ls79{letter-spacing:0.484500px;}
.ls48{letter-spacing:0.510000px;}
.ls1a{letter-spacing:0.540000px;}
.ls56{letter-spacing:0.561000px;}
.ls4{letter-spacing:0.600000px;}
.ls67{letter-spacing:0.612000px;}
.ls46{letter-spacing:0.630000px;}
.ls18{letter-spacing:0.660000px;}
.ls57{letter-spacing:0.663000px;}
.ls24{letter-spacing:0.690000px;}
.ls66{letter-spacing:0.714000px;}
.ls7{letter-spacing:0.720000px;}
.ls4d{letter-spacing:0.750000px;}
.ls55{letter-spacing:0.765000px;}
.ls15{letter-spacing:0.780000px;}
.ls47{letter-spacing:0.810000px;}
.ls63{letter-spacing:0.816000px;}
.ls8{letter-spacing:0.840000px;}
.ls5a{letter-spacing:0.867000px;}
.ls13{letter-spacing:0.900000px;}
.ls54{letter-spacing:0.918000px;}
.ls19{letter-spacing:0.960000px;}
.ls68{letter-spacing:0.969000px;}
.lsa{letter-spacing:1.020000px;}
.ls44{letter-spacing:1.050000px;}
.ls59{letter-spacing:1.071000px;}
.ls43{letter-spacing:1.080000px;}
.ls1d{letter-spacing:1.110000px;}
.ls16{letter-spacing:1.140000px;}
.ls1e{letter-spacing:1.200000px;}
.ls65{letter-spacing:1.224000px;}
.ls26{letter-spacing:1.260000px;}
.ls71{letter-spacing:1.275000px;}
.ls4c{letter-spacing:1.290000px;}
.ls17{letter-spacing:1.320000px;}
.ls78{letter-spacing:1.326000px;}
.ls77{letter-spacing:1.377000px;}
.ls6b{letter-spacing:1.428000px;}
.ls1b{letter-spacing:1.440000px;}
.ls6d{letter-spacing:1.479000px;}
.ls52{letter-spacing:1.530000px;}
.ls23{letter-spacing:1.560000px;}
.ls6a{letter-spacing:1.581000px;}
.ls1f{letter-spacing:1.620000px;}
.ls6c{letter-spacing:1.632000px;}
.ls28{letter-spacing:1.680000px;}
.ls69{letter-spacing:1.683000px;}
.ls76{letter-spacing:1.734000px;}
.ls50{letter-spacing:1.800000px;}
.ls5{letter-spacing:1.920000px;}
.ls70{letter-spacing:1.938000px;}
.ls53{letter-spacing:1.950000px;}
.ls6e{letter-spacing:1.989000px;}
.ls7c{letter-spacing:2.091000px;}
.ls7d{letter-spacing:2.448000px;}
.ls7a{letter-spacing:3.641400px;}
.ls0{letter-spacing:3.990000px;}
.ls3f{letter-spacing:7.155523px;}
.ls40{letter-spacing:7.339786px;}
.ls35{letter-spacing:11.560561px;}
.ls39{letter-spacing:11.661527px;}
.ls37{letter-spacing:23.171605px;}
.ls2d{letter-spacing:586.107984px;}
.ls2c{letter-spacing:618.937374px;}
.ls2b{letter-spacing:978.983971px;}
.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;}
}
.ws58{word-spacing:-23.222088px;}
.wsa1{word-spacing:-16.080000px;}
.ws9f{word-spacing:-15.900000px;}
.ws9d{word-spacing:-15.840000px;}
.ws4e{word-spacing:-15.780000px;}
.ws24{word-spacing:-15.660000px;}
.ws6f{word-spacing:-15.600000px;}
.ws9e{word-spacing:-15.420000px;}
.ws4c{word-spacing:-15.360000px;}
.ws23{word-spacing:-15.300000px;}
.ws4d{word-spacing:-15.000000px;}
.wsae{word-spacing:-14.832000px;}
.wsa0{word-spacing:-14.760000px;}
.ws22{word-spacing:-14.640000px;}
.ws6{word-spacing:-14.544000px;}
.wsb4{word-spacing:-14.433000px;}
.wse1{word-spacing:-14.280000px;}
.wsb3{word-spacing:-14.229000px;}
.wsb1{word-spacing:-13.974000px;}
.wsd3{word-spacing:-13.719000px;}
.wsb2{word-spacing:-13.668000px;}
.wsdf{word-spacing:-13.362000px;}
.wse0{word-spacing:-13.234500px;}
.ws7{word-spacing:-13.005000px;}
.wsaf{word-spacing:-12.954000px;}
.wsb0{word-spacing:-12.801000px;}
.ws7f{word-spacing:-12.750000px;}
.wse4{word-spacing:-12.699000px;}
.wse2{word-spacing:-12.597000px;}
.wse3{word-spacing:-12.495000px;}
.ws2{word-spacing:-12.420000px;}
.ws4{word-spacing:-12.360000px;}
.ws5d{word-spacing:-11.712010px;}
.ws56{word-spacing:-11.611044px;}
.ws5{word-spacing:-11.520000px;}
.wsac{word-spacing:-10.506000px;}
.ws1{word-spacing:-9.996000px;}
.wsad{word-spacing:-9.690000px;}
.ws3{word-spacing:-8.694000px;}
.ws75{word-spacing:-7.500000px;}
.ws66{word-spacing:-7.370496px;}
.ws65{word-spacing:-7.186234px;}
.ws8c{word-spacing:-6.375000px;}
.ws8{word-spacing:-1.890000px;}
.wse8{word-spacing:-1.530000px;}
.wsb{word-spacing:-1.500000px;}
.ws46{word-spacing:-1.380000px;}
.wseb{word-spacing:-1.326000px;}
.wsb7{word-spacing:-1.275000px;}
.wsa7{word-spacing:-1.260000px;}
.wsc2{word-spacing:-1.173000px;}
.ws14{word-spacing:-1.140000px;}
.wsc4{word-spacing:-1.122000px;}
.wsd{word-spacing:-1.080000px;}
.wsc9{word-spacing:-1.071000px;}
.ws2d{word-spacing:-1.020000px;}
.wsbb{word-spacing:-0.969000px;}
.ws34{word-spacing:-0.960000px;}
.wsd2{word-spacing:-0.918000px;}
.ws26{word-spacing:-0.900000px;}
.wsc1{word-spacing:-0.867000px;}
.ws1c{word-spacing:-0.840000px;}
.wse{word-spacing:-0.780000px;}
.wsca{word-spacing:-0.765000px;}
.ws15{word-spacing:-0.720000px;}
.wscb{word-spacing:-0.714000px;}
.ws47{word-spacing:-0.660000px;}
.ws21{word-spacing:-0.612000px;}
.ws2b{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.570000px;}
.wsdc{word-spacing:-0.561000px;}
.ws17{word-spacing:-0.540000px;}
.ws12{word-spacing:-0.480000px;}
.ws41{word-spacing:-0.420000px;}
.wscf{word-spacing:-0.408000px;}
.ws31{word-spacing:-0.360000px;}
.wsc5{word-spacing:-0.357000px;}
.ws1e{word-spacing:-0.300000px;}
.ws16{word-spacing:-0.282000px;}
.wsc0{word-spacing:-0.264000px;}
.wsc3{word-spacing:-0.255000px;}
.ws63{word-spacing:-0.252414px;}
.ws38{word-spacing:-0.240000px;}
.wscd{word-spacing:-0.204000px;}
.wsab{word-spacing:-0.180000px;}
.wsf0{word-spacing:-0.153000px;}
.ws4f{word-spacing:-0.151448px;}
.ws3c{word-spacing:-0.120000px;}
.wsd9{word-spacing:-0.102000px;}
.ws59{word-spacing:-0.100966px;}
.ws1a{word-spacing:-0.060000px;}
.ws5b{word-spacing:-0.050483px;}
.ws0{word-spacing:-0.048000px;}
.ws6e{word-spacing:-0.030710px;}
.ws9{word-spacing:0.000000px;}
.ws5c{word-spacing:0.050483px;}
.wsee{word-spacing:0.051000px;}
.ws60{word-spacing:0.100966px;}
.ws6d{word-spacing:0.111904px;}
.ws2a{word-spacing:0.120000px;}
.ws57{word-spacing:0.151448px;}
.wse6{word-spacing:0.153000px;}
.ws74{word-spacing:0.180000px;}
.wsc{word-spacing:0.240000px;}
.ws36{word-spacing:0.300000px;}
.ws40{word-spacing:0.360000px;}
.ws73{word-spacing:0.420000px;}
.ws5f{word-spacing:0.454345px;}
.ws11{word-spacing:0.480000px;}
.ws4a{word-spacing:0.540000px;}
.ws53{word-spacing:0.555311px;}
.ws10{word-spacing:0.600000px;}
.wsec{word-spacing:0.612000px;}
.ws64{word-spacing:0.706759px;}
.wsdb{word-spacing:0.714000px;}
.ws2f{word-spacing:0.720000px;}
.ws54{word-spacing:0.757242px;}
.wsdd{word-spacing:0.765000px;}
.ws18{word-spacing:0.780000px;}
.ws50{word-spacing:0.807725px;}
.wsef{word-spacing:0.816000px;}
.ws32{word-spacing:0.840000px;}
.ws52{word-spacing:0.858208px;}
.ws1f{word-spacing:0.900000px;}
.wsd8{word-spacing:0.918000px;}
.ws5e{word-spacing:0.959173px;}
.ws3d{word-spacing:0.960000px;}
.wsf5{word-spacing:1.020000px;}
.ws62{word-spacing:1.060139px;}
.ws1d{word-spacing:1.080000px;}
.wsf{word-spacing:1.140000px;}
.wsc8{word-spacing:1.173000px;}
.ws98{word-spacing:1.200000px;}
.wsed{word-spacing:1.224000px;}
.wsba{word-spacing:1.275000px;}
.ws72{word-spacing:1.320000px;}
.wsea{word-spacing:1.326000px;}
.ws69{word-spacing:1.380000px;}
.wse7{word-spacing:1.428000px;}
.ws6b{word-spacing:1.440000px;}
.ws13{word-spacing:1.500000px;}
.wsbc{word-spacing:1.530000px;}
.ws78{word-spacing:1.560000px;}
.ws2c{word-spacing:1.620000px;}
.wsd0{word-spacing:1.632000px;}
.wsf2{word-spacing:1.734000px;}
.ws27{word-spacing:1.740000px;}
.wsd1{word-spacing:1.785000px;}
.ws79{word-spacing:1.800000px;}
.wsb9{word-spacing:1.836000px;}
.ws76{word-spacing:1.860000px;}
.wsa5{word-spacing:1.920000px;}
.wsd7{word-spacing:1.938000px;}
.ws68{word-spacing:1.980000px;}
.wsb6{word-spacing:1.989000px;}
.wsa4{word-spacing:2.040000px;}
.ws8e{word-spacing:2.091000px;}
.ws1b{word-spacing:2.100000px;}
.wse9{word-spacing:2.142000px;}
.ws6a{word-spacing:2.160000px;}
.wscc{word-spacing:2.193000px;}
.ws42{word-spacing:2.220000px;}
.ws91{word-spacing:2.244000px;}
.ws25{word-spacing:2.280000px;}
.ws33{word-spacing:2.340000px;}
.wsbf{word-spacing:2.346000px;}
.ws89{word-spacing:2.400000px;}
.wsf1{word-spacing:2.448000px;}
.ws37{word-spacing:2.460000px;}
.ws35{word-spacing:2.520000px;}
.wsb5{word-spacing:2.550000px;}
.ws3a{word-spacing:2.580000px;}
.wsd6{word-spacing:2.601000px;}
.ws77{word-spacing:2.640000px;}
.wsd5{word-spacing:2.652000px;}
.wsa2{word-spacing:2.700000px;}
.wsb8{word-spacing:2.754000px;}
.ws4b{word-spacing:2.760000px;}
.ws20{word-spacing:2.820000px;}
.ws45{word-spacing:2.880000px;}
.wsd4{word-spacing:2.907000px;}
.ws28{word-spacing:2.940000px;}
.wsc7{word-spacing:2.958000px;}
.ws71{word-spacing:3.000000px;}
.wsde{word-spacing:3.009000px;}
.wsa8{word-spacing:3.060000px;}
.ws70{word-spacing:3.120000px;}
.wsa6{word-spacing:3.180000px;}
.ws3e{word-spacing:3.240000px;}
.wse5{word-spacing:3.315000px;}
.wsbd{word-spacing:3.417000px;}
.ws3b{word-spacing:3.420000px;}
.ws29{word-spacing:3.540000px;}
.ws30{word-spacing:3.600000px;}
.wsc6{word-spacing:3.621000px;}
.ws7a{word-spacing:3.672000px;}
.ws3f{word-spacing:3.780000px;}
.wsa9{word-spacing:3.900000px;}
.ws9b{word-spacing:3.960000px;}
.wsce{word-spacing:4.131000px;}
.ws43{word-spacing:4.140000px;}
.ws99{word-spacing:4.200000px;}
.ws7c{word-spacing:4.233000px;}
.ws2e{word-spacing:4.260000px;}
.wsda{word-spacing:4.437000px;}
.ws39{word-spacing:4.860000px;}
.ws7e{word-spacing:4.896000px;}
.ws44{word-spacing:4.920000px;}
.ws9c{word-spacing:4.980000px;}
.ws8b{word-spacing:5.040000px;}
.ws9a{word-spacing:5.100000px;}
.ws48{word-spacing:5.340000px;}
.wsaa{word-spacing:5.400000px;}
.ws7b{word-spacing:5.457000px;}
.wsbe{word-spacing:5.610000px;}
.ws8f{word-spacing:5.814000px;}
.ws8a{word-spacing:5.820000px;}
.ws49{word-spacing:6.000000px;}
.ws6c{word-spacing:6.120000px;}
.wsa3{word-spacing:6.840000px;}
.ws67{word-spacing:6.879130px;}
.ws19{word-spacing:7.440000px;}
.ws7d{word-spacing:8.058000px;}
.wsf3{word-spacing:8.568000px;}
.ws92{word-spacing:9.435000px;}
.ws90{word-spacing:9.894000px;}
.wsf4{word-spacing:10.302000px;}
.ws51{word-spacing:11.358630px;}
.ws55{word-spacing:11.409113px;}
.ws61{word-spacing:11.611044px;}
.ws5a{word-spacing:12.065389px;}
.wsf6{word-spacing:13.515000px;}
.ws8d{word-spacing:17.544000px;}
.wsf7{word-spacing:17.595000px;}
.ws84{word-spacing:98.940000px;}
.ws85{word-spacing:144.686995px;}
.ws80{word-spacing:154.020000px;}
.ws82{word-spacing:161.058000px;}
.ws86{word-spacing:163.302000px;}
.ws81{word-spacing:200.073000px;}
.ws96{word-spacing:255.000000px;}
.ws95{word-spacing:262.038000px;}
.ws97{word-spacing:279.072000px;}
.ws94{word-spacing:301.053000px;}
.ws83{word-spacing:311.712000px;}
.ws93{word-spacing:395.709000px;}
.ws87{word-spacing:1055.495955px;}
.ws88{word-spacing:1240.166962px;}
._f{margin-left:-22.818226px;}
._6{margin-left:-16.575000px;}
._e{margin-left:-11.106216px;}
._10{margin-left:-6.940550px;}
._12{margin-left:-5.911450px;}
._1{margin-left:-4.622700px;}
._4{margin-left:-3.324000px;}
._0{margin-left:-1.632000px;}
._3{width:1.122000px;}
._b{width:2.130000px;}
._c{width:4.218000px;}
._24{width:5.580000px;}
._d{width:6.936000px;}
._2a{width:10.557000px;}
._2c{width:12.902990px;}
._2b{width:14.484000px;}
._11{width:15.606000px;}
._7{width:18.360000px;}
._5{width:35.207373px;}
._2{width:39.916189px;}
._9{width:54.621000px;}
._13{width:67.116000px;}
._8{width:72.267000px;}
._15{width:87.720000px;}
._17{width:111.690000px;}
._26{width:126.378000px;}
._29{width:130.356000px;}
._19{width:139.638000px;}
._1b{width:156.926995px;}
._18{width:159.681000px;}
._1a{width:191.148000px;}
._28{width:239.700000px;}
._27{width:260.661000px;}
._16{width:273.462000px;}
._25{width:312.017978px;}
._14{width:324.972000px;}
._1c{width:398.156989px;}
._1f{width:511.478989px;}
._22{width:563.906989px;}
._21{width:581.816962px;}
._1d{width:588.437962px;}
._20{width:594.149962px;}
._1e{width:633.776962px;}
._23{width:884.951962px;}
._a{width:2506.037981px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:30.710400px;}
.fs9{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:50.482800px;}
.fs2{font-size:51.000000px;}
.fsc{font-size:55.951800px;}
.fs8{font-size:56.399998px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yba{bottom:2.766861px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y37{bottom:112.950300px;}
.y7a{bottom:113.415298px;}
.y6d{bottom:113.415344px;}
.ydc{bottom:113.641795px;}
.ydf{bottom:113.654545px;}
.y126{bottom:114.175796px;}
.y13d{bottom:114.735260px;}
.y150{bottom:114.735306px;}
.y94{bottom:114.874947px;}
.y30{bottom:122.461349px;}
.y10d{bottom:123.211500px;}
.y1b8{bottom:124.155325px;}
.yec{bottom:126.957458px;}
.y36{bottom:127.944300px;}
.ydb{bottom:128.635795px;}
.yde{bottom:128.648545px;}
.y125{bottom:129.169796px;}
.y79{bottom:132.165298px;}
.y6c{bottom:132.165344px;}
.y13c{bottom:133.485260px;}
.y14f{bottom:133.485306px;}
.yae{bottom:133.624809px;}
.y93{bottom:133.624947px;}
.y1b7{bottom:139.149325px;}
.y2f{bottom:141.211349px;}
.y10c{bottom:142.005000px;}
.y35{bottom:142.938300px;}
.yda{bottom:143.629795px;}
.ydd{bottom:143.642545px;}
.y178{bottom:144.994336px;}
.yeb{bottom:145.707458px;}
.y78{bottom:150.915298px;}
.y6b{bottom:150.915344px;}
.y13b{bottom:152.235260px;}
.y14e{bottom:152.235306px;}
.yad{bottom:152.374809px;}
.y92{bottom:152.374947px;}
.y1b6{bottom:154.143325px;}
.y2e{bottom:159.961349px;}
.y177{bottom:159.988336px;}
.y10b{bottom:160.722000px;}
.y34{bottom:163.032303px;}
.yea{bottom:164.457458px;}
.y1b5{bottom:169.137325px;}
.y77{bottom:169.665298px;}
.y6a{bottom:169.665344px;}
.y13a{bottom:170.985260px;}
.y14d{bottom:170.985306px;}
.yac{bottom:171.124809px;}
.y91{bottom:171.124947px;}
.y176{bottom:174.982336px;}
.y2d{bottom:178.711349px;}
.y10a{bottom:179.439000px;}
.ye9{bottom:183.207458px;}
.y1b4{bottom:184.131325px;}
.y33{bottom:188.033404px;}
.y76{bottom:188.415298px;}
.y69{bottom:188.415344px;}
.y139{bottom:189.735260px;}
.y14c{bottom:189.735306px;}
.yab{bottom:189.874809px;}
.y90{bottom:189.874947px;}
.y175{bottom:189.976336px;}
.y2c{bottom:197.461349px;}
.y109{bottom:198.156000px;}
.y1b3{bottom:199.125325px;}
.ye8{bottom:201.957458px;}
.y32{bottom:203.027404px;}
.y174{bottom:204.970336px;}
.y1f4{bottom:206.578823px;}
.y75{bottom:207.165298px;}
.y68{bottom:207.165344px;}
.y138{bottom:208.485260px;}
.y14b{bottom:208.485306px;}
.yaa{bottom:208.624809px;}
.y8f{bottom:208.624947px;}
.y1b2{bottom:214.119325px;}
.y2b{bottom:216.211349px;}
.y108{bottom:216.873000px;}
.y173{bottom:219.964336px;}
.ye7{bottom:220.707458px;}
.y1f3{bottom:221.572823px;}
.y74{bottom:225.915298px;}
.y67{bottom:225.915344px;}
.y137{bottom:227.235260px;}
.y14a{bottom:227.235306px;}
.ya9{bottom:227.374809px;}
.y8e{bottom:227.374947px;}
.y1b1{bottom:229.113325px;}
.y31{bottom:233.844154px;}
.y172{bottom:234.958336px;}
.y2a{bottom:234.961349px;}
.y107{bottom:235.590000px;}
.y1f2{bottom:236.566823px;}
.ye6{bottom:239.457458px;}
.y1b0{bottom:244.107325px;}
.y73{bottom:244.665298px;}
.y66{bottom:244.665344px;}
.y136{bottom:245.985260px;}
.y149{bottom:245.985306px;}
.ya8{bottom:246.124809px;}
.y8d{bottom:246.124947px;}
.y171{bottom:249.952336px;}
.y1f1{bottom:251.560823px;}
.y29{bottom:253.711349px;}
.y106{bottom:254.307000px;}
.ye5{bottom:258.207458px;}
.y1af{bottom:259.101325px;}
.y72{bottom:263.415298px;}
.y65{bottom:263.415344px;}
.y135{bottom:264.735260px;}
.y148{bottom:264.735306px;}
.ya7{bottom:264.874809px;}
.y170{bottom:264.946336px;}
.y22b{bottom:266.057606px;}
.y1f0{bottom:266.554823px;}
.y28{bottom:272.461349px;}
.y105{bottom:273.024000px;}
.y1ae{bottom:274.095325px;}
.ye4{bottom:276.957458px;}
.y16f{bottom:279.940336px;}
.y22a{bottom:281.051606px;}
.y1ef{bottom:281.548823px;}
.y71{bottom:282.165298px;}
.y64{bottom:282.165344px;}
.y134{bottom:283.485260px;}
.y147{bottom:283.485306px;}
.ya6{bottom:283.624809px;}
.y8c{bottom:283.624947px;}
.y1ad{bottom:289.089325px;}
.y23{bottom:291.211349px;}
.y16e{bottom:294.934336px;}
.ye3{bottom:295.707458px;}
.y1ee{bottom:296.542823px;}
.y70{bottom:300.915298px;}
.y63{bottom:300.915344px;}
.y104{bottom:301.112250px;}
.y133{bottom:302.235260px;}
.y146{bottom:302.235306px;}
.y1ac{bottom:304.083325px;}
.y16d{bottom:309.928336px;}
.y27{bottom:309.961349px;}
.y22{bottom:310.861359px;}
.y1ed{bottom:311.536823px;}
.y229{bottom:311.893856px;}
.ye2{bottom:314.457458px;}
.y1ab{bottom:319.077325px;}
.y62{bottom:319.665344px;}
.y132{bottom:320.985260px;}
.y145{bottom:320.985306px;}
.ya5{bottom:321.124809px;}
.y1ec{bottom:326.530823px;}
.y103{bottom:326.638337px;}
.y228{bottom:326.887856px;}
.y21{bottom:328.711349px;}
.ye1{bottom:333.207458px;}
.y1aa{bottom:334.071325px;}
.y6f{bottom:338.415298px;}
.y61{bottom:338.415344px;}
.y131{bottom:339.735260px;}
.y144{bottom:339.735306px;}
.y8b{bottom:339.874786px;}
.y1eb{bottom:341.524823px;}
.y102{bottom:341.632337px;}
.y227{bottom:341.881856px;}
.y26{bottom:347.461349px;}
.y20{bottom:348.361359px;}
.y1a9{bottom:349.065325px;}
.y16c{bottom:351.123586px;}
.ye0{bottom:351.957458px;}
.y1ea{bottom:356.518823px;}
.yb9{bottom:356.622848px;}
.y226{bottom:356.875856px;}
.y60{bottom:357.165344px;}
.y130{bottom:358.485260px;}
.y143{bottom:358.485306px;}
.y8a{bottom:358.624786px;}
.ya4{bottom:358.624947px;}
.y1a8{bottom:364.059325px;}
.y16b{bottom:366.117586px;}
.y1f{bottom:366.211349px;}
.y1e9{bottom:371.512823px;}
.y225{bottom:371.869856px;}
.y6e{bottom:375.915298px;}
.y5f{bottom:375.915344px;}
.y12f{bottom:377.235260px;}
.y142{bottom:377.235306px;}
.y89{bottom:377.374786px;}
.ya3{bottom:377.374947px;}
.y1a7{bottom:379.053325px;}
.y1e{bottom:385.861359px;}
.y1e8{bottom:386.506823px;}
.y224{bottom:386.863856px;}
.y1a6{bottom:394.047325px;}
.y5e{bottom:394.665344px;}
.y12e{bottom:395.985260px;}
.y141{bottom:395.985306px;}
.yfe{bottom:395.985587px;}
.y101{bottom:395.998337px;}
.y16a{bottom:396.080086px;}
.y88{bottom:396.124786px;}
.ya2{bottom:396.124947px;}
.y1e7{bottom:401.500823px;}
.y223{bottom:401.857856px;}
.y1d{bottom:403.711349px;}
.y1a5{bottom:409.041325px;}
.yfd{bottom:410.979587px;}
.y100{bottom:410.992337px;}
.y169{bottom:411.074086px;}
.y5d{bottom:413.415344px;}
.y12d{bottom:414.735260px;}
.y140{bottom:414.735306px;}
.y87{bottom:414.874786px;}
.ya1{bottom:414.874947px;}
.y1e6{bottom:416.494823px;}
.y222{bottom:416.851856px;}
.y1c{bottom:423.361359px;}
.y1a4{bottom:424.035325px;}
.yfc{bottom:425.973587px;}
.yff{bottom:425.986337px;}
.y168{bottom:426.068086px;}
.y1e5{bottom:431.488823px;}
.y221{bottom:431.845856px;}
.y5c{bottom:432.165344px;}
.y12c{bottom:433.485260px;}
.y13f{bottom:433.485306px;}
.y86{bottom:433.624786px;}
.ya0{bottom:433.624947px;}
.y1a3{bottom:439.029325px;}
.y167{bottom:441.062086px;}
.y1e4{bottom:446.482823px;}
.y220{bottom:446.839856px;}
.y5b{bottom:450.915344px;}
.y12b{bottom:452.235260px;}
.y85{bottom:452.374786px;}
.y9f{bottom:452.374947px;}
.y1a2{bottom:454.023325px;}
.y166{bottom:456.056086px;}
.y25{bottom:459.961349px;}
.y1e3{bottom:461.476823px;}
.y21f{bottom:461.833856px;}
.y1a1{bottom:469.017325px;}
.y5a{bottom:469.665344px;}
.y12a{bottom:470.985260px;}
.y13e{bottom:470.985306px;}
.y165{bottom:471.050086px;}
.y84{bottom:471.124786px;}
.y9e{bottom:471.124947px;}
.y1e2{bottom:476.470823px;}
.y21e{bottom:476.827856px;}
.y1b{bottom:478.711349px;}
.y24{bottom:479.611359px;}
.y1a0{bottom:484.011325px;}
.y164{bottom:486.044086px;}
.y59{bottom:488.415344px;}
.y129{bottom:489.735260px;}
.y83{bottom:489.874786px;}
.y9d{bottom:489.874947px;}
.y1e1{bottom:491.464823px;}
.y21d{bottom:491.821856px;}
.y19f{bottom:499.005325px;}
.y163{bottom:501.038086px;}
.y1e0{bottom:506.458823px;}
.y21c{bottom:506.815856px;}
.y58{bottom:507.165344px;}
.y128{bottom:508.485260px;}
.y82{bottom:508.624786px;}
.y9c{bottom:508.624947px;}
.y19e{bottom:513.999325px;}
.y1df{bottom:521.452823px;}
.y21b{bottom:521.809856px;}
.y57{bottom:525.915344px;}
.y127{bottom:527.235260px;}
.y81{bottom:527.374786px;}
.y9b{bottom:527.374947px;}
.y19d{bottom:528.993325px;}
.y162{bottom:534.788086px;}
.y1a{bottom:534.961395px;}
.y1de{bottom:536.446823px;}
.y21a{bottom:536.803856px;}
.y19c{bottom:543.987325px;}
.y56{bottom:544.665344px;}
.yd9{bottom:545.985260px;}
.y80{bottom:546.124786px;}
.y9a{bottom:546.124947px;}
.y1dd{bottom:551.440823px;}
.y219{bottom:551.797856px;}
.y19b{bottom:558.981325px;}
.y55{bottom:563.415344px;}
.yd8{bottom:564.735260px;}
.y7f{bottom:564.874786px;}
.y99{bottom:564.874947px;}
.y1dc{bottom:566.434823px;}
.y218{bottom:566.791856px;}
.y161{bottom:572.405733px;}
.y19{bottom:572.461395px;}
.y19a{bottom:573.975325px;}
.y1db{bottom:581.428823px;}
.y217{bottom:581.785856px;}
.y54{bottom:582.165344px;}
.yd7{bottom:583.485260px;}
.y7e{bottom:583.624786px;}
.y98{bottom:583.624947px;}
.y160{bottom:587.399733px;}
.y199{bottom:588.969325px;}
.y18{bottom:591.211395px;}
.y1da{bottom:596.422823px;}
.y216{bottom:596.779856px;}
.y53{bottom:600.915344px;}
.yd6{bottom:602.235260px;}
.y7d{bottom:602.374786px;}
.y97{bottom:602.374947px;}
.y15f{bottom:602.393733px;}
.y198{bottom:603.963325px;}
.y17{bottom:609.961395px;}
.y1d9{bottom:611.416823px;}
.y215{bottom:611.773856px;}
.y15e{bottom:617.387733px;}
.y197{bottom:618.957325px;}
.y52{bottom:619.665344px;}
.y11a{bottom:619.821634px;}
.yd5{bottom:620.985260px;}
.y112{bottom:620.985306px;}
.y7c{bottom:621.124786px;}
.y96{bottom:621.124947px;}
.y1d8{bottom:626.410823px;}
.y214{bottom:626.767856px;}
.y16{bottom:628.711395px;}
.y15d{bottom:632.381733px;}
.y196{bottom:633.951325px;}
.y51{bottom:638.415344px;}
.yd4{bottom:639.735260px;}
.y111{bottom:639.735306px;}
.y7b{bottom:639.874786px;}
.y95{bottom:639.874947px;}
.y1d7{bottom:641.404823px;}
.y213{bottom:641.761856px;}
.y124{bottom:647.286567px;}
.y15c{bottom:647.375733px;}
.y15{bottom:647.461395px;}
.y195{bottom:648.945325px;}
.y1d6{bottom:656.398823px;}
.y212{bottom:656.755856px;}
.y50{bottom:657.165344px;}
.yd3{bottom:658.485260px;}
.y110{bottom:658.485306px;}
.y15b{bottom:662.369733px;}
.y194{bottom:663.939325px;}
.y123{bottom:666.080067px;}
.y14{bottom:666.211395px;}
.y1d5{bottom:671.392823px;}
.y211{bottom:671.749856px;}
.y4f{bottom:675.915344px;}
.yd2{bottom:677.235260px;}
.y10f{bottom:677.235306px;}
.y15a{bottom:677.363733px;}
.y193{bottom:678.933325px;}
.y122{bottom:684.797067px;}
.y13{bottom:684.961395px;}
.y1d4{bottom:686.386823px;}
.y210{bottom:686.743856px;}
.y159{bottom:692.357733px;}
.ybb{bottom:693.281570px;}
.y192{bottom:693.927325px;}
.y4e{bottom:694.665344px;}
.yd1{bottom:695.985260px;}
.y1d3{bottom:701.380823px;}
.y20f{bottom:701.737856px;}
.y121{bottom:703.514067px;}
.y12{bottom:703.711395px;}
.y191{bottom:708.921325px;}
.y4d{bottom:713.415344px;}
.yd0{bottom:714.735260px;}
.y10e{bottom:714.735306px;}
.y1d2{bottom:716.374823px;}
.y20e{bottom:716.731856px;}
.y120{bottom:722.231067px;}
.y11{bottom:722.461395px;}
.y190{bottom:723.915325px;}
.y158{bottom:726.068733px;}
.yb8{bottom:728.356522px;}
.y1d1{bottom:731.368823px;}
.y20d{bottom:731.725856px;}
.y4c{bottom:732.165344px;}
.ycf{bottom:733.485260px;}
.yb3{bottom:736.797062px;}
.y18f{bottom:738.909325px;}
.y11f{bottom:740.948067px;}
.y119{bottom:741.048634px;}
.y157{bottom:741.062733px;}
.y10{bottom:741.211395px;}
.y1d0{bottom:746.362823px;}
.y20c{bottom:746.719856px;}
.y4b{bottom:750.915344px;}
.yce{bottom:752.235260px;}
.y18e{bottom:753.903325px;}
.yb2{bottom:755.677629px;}
.y118{bottom:756.042634px;}
.y156{bottom:756.056733px;}
.y11e{bottom:759.665067px;}
.yf{bottom:759.961395px;}
.y1cf{bottom:761.356823px;}
.y20b{bottom:761.713856px;}
.yb7{bottom:768.613844px;}
.y18d{bottom:768.897325px;}
.y4a{bottom:769.665344px;}
.yb5{bottom:770.822467px;}
.ycd{bottom:770.985260px;}
.y117{bottom:771.036634px;}
.y155{bottom:771.050733px;}
.y1ce{bottom:776.350823px;}
.y20a{bottom:776.707856px;}
.y11d{bottom:778.382067px;}
.ye{bottom:778.711395px;}
.y18c{bottom:783.891325px;}
.yb6{bottom:784.604271px;}
.y116{bottom:786.030634px;}
.y154{bottom:786.044733px;}
.yb1{bottom:786.131378px;}
.y49{bottom:788.415344px;}
.ycc{bottom:789.735260px;}
.y1cd{bottom:791.344823px;}
.y209{bottom:791.701856px;}
.y11c{bottom:797.099067px;}
.yd{bottom:797.461395px;}
.y18b{bottom:798.885325px;}
.yb4{bottom:799.433594px;}
.y115{bottom:801.024634px;}
.y153{bottom:801.038733px;}
.yaf{bottom:801.590515px;}
.y1cc{bottom:806.338823px;}
.y208{bottom:806.695856px;}
.y48{bottom:807.165344px;}
.ycb{bottom:808.485260px;}
.y18a{bottom:813.879325px;}
.y114{bottom:816.018634px;}
.y152{bottom:816.032733px;}
.yc{bottom:816.211395px;}
.yb0{bottom:816.945923px;}
.y1cb{bottom:821.332823px;}
.y207{bottom:821.689856px;}
.y11b{bottom:825.187317px;}
.y47{bottom:825.915344px;}
.yca{bottom:827.235260px;}
.y189{bottom:828.873325px;}
.y113{bottom:831.012634px;}
.y151{bottom:831.026733px;}
.y1ca{bottom:836.326823px;}
.y206{bottom:836.683856px;}
.y188{bottom:843.867325px;}
.y46{bottom:844.665344px;}
.yc9{bottom:845.985260px;}
.y1c9{bottom:851.320823px;}
.y205{bottom:851.677856px;}
.y187{bottom:858.861325px;}
.yb{bottom:860.394153px;}
.y45{bottom:863.415344px;}
.yc8{bottom:864.735260px;}
.y1c8{bottom:866.314823px;}
.y204{bottom:866.671856px;}
.y186{bottom:873.855325px;}
.ya{bottom:875.388153px;}
.y1c7{bottom:881.308823px;}
.y203{bottom:881.665856px;}
.y44{bottom:882.165344px;}
.yc7{bottom:883.485260px;}
.y185{bottom:888.849325px;}
.y1c6{bottom:896.302823px;}
.y202{bottom:896.659856px;}
.y43{bottom:900.915344px;}
.yc6{bottom:902.235260px;}
.y184{bottom:903.843325px;}
.y1c5{bottom:911.296823px;}
.y201{bottom:911.653856px;}
.y9{bottom:917.988190px;}
.y183{bottom:918.837325px;}
.y42{bottom:919.665344px;}
.yc5{bottom:920.985260px;}
.y1c4{bottom:926.290823px;}
.y200{bottom:926.647856px;}
.y182{bottom:933.831325px;}
.yf4{bottom:934.399844px;}
.y8{bottom:936.738190px;}
.y41{bottom:938.415344px;}
.yc4{bottom:939.735260px;}
.y1c3{bottom:941.284823px;}
.y1ff{bottom:941.641856px;}
.y181{bottom:948.825325px;}
.y1c2{bottom:956.278823px;}
.y1fe{bottom:956.635856px;}
.y40{bottom:957.165344px;}
.yc3{bottom:958.485260px;}
.yfb{bottom:962.527777px;}
.y180{bottom:963.819325px;}
.y1c1{bottom:971.272823px;}
.y1fd{bottom:971.629856px;}
.y3f{bottom:975.915344px;}
.yc2{bottom:977.235260px;}
.y17f{bottom:978.813325px;}
.yfa{bottom:981.321277px;}
.y7{bottom:981.424622px;}
.y1c0{bottom:986.266823px;}
.y1fc{bottom:986.623856px;}
.y17e{bottom:993.807325px;}
.y3e{bottom:994.665344px;}
.yc1{bottom:995.985260px;}
.yf9{bottom:1000.038277px;}
.yf3{bottom:1000.138844px;}
.y1bf{bottom:1001.260823px;}
.y1fb{bottom:1001.617856px;}
.y6{bottom:1008.424622px;}
.y17d{bottom:1008.801325px;}
.y3d{bottom:1013.415344px;}
.yc0{bottom:1014.735260px;}
.yf2{bottom:1015.132844px;}
.y1be{bottom:1016.254823px;}
.y1fa{bottom:1016.611856px;}
.yf8{bottom:1018.755277px;}
.y17c{bottom:1023.795325px;}
.yf1{bottom:1030.126844px;}
.y1bd{bottom:1031.248823px;}
.y1f9{bottom:1031.605856px;}
.y3c{bottom:1032.165344px;}
.ybf{bottom:1033.485260px;}
.yf7{bottom:1037.472277px;}
.y17b{bottom:1038.789325px;}
.yf0{bottom:1045.120844px;}
.y1bc{bottom:1046.242823px;}
.y1f8{bottom:1046.599856px;}
.y3b{bottom:1050.915344px;}
.ybe{bottom:1052.235260px;}
.y17a{bottom:1053.783325px;}
.yf6{bottom:1056.189277px;}
.yef{bottom:1060.114844px;}
.y1bb{bottom:1061.236823px;}
.y1f7{bottom:1061.593856px;}
.y3a{bottom:1069.665344px;}
.ybd{bottom:1070.985260px;}
.yee{bottom:1075.108844px;}
.y5{bottom:1076.132080px;}
.y1ba{bottom:1076.230823px;}
.y1f6{bottom:1076.587856px;}
.yf5{bottom:1084.277527px;}
.y179{bottom:1087.533325px;}
.y39{bottom:1088.415344px;}
.ybc{bottom:1089.735260px;}
.yed{bottom:1090.102844px;}
.y1b9{bottom:1091.224823px;}
.y1f5{bottom:1091.581856px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y38{bottom:1127.482361px;}
.h16{height:21.282307px;}
.h10{height:25.204199px;}
.h2{height:33.840000px;}
.h12{height:34.984580px;}
.he{height:36.006000px;}
.hf{height:36.855469px;}
.h13{height:38.774597px;}
.hd{height:39.818398px;}
.ha{height:42.360000px;}
.h4{height:44.676000px;}
.h19{height:45.186000px;}
.h15{height:48.960000px;}
.h18{height:52.173000px;}
.hb{height:53.160000px;}
.h17{height:53.805000px;}
.h3{height:54.862258px;}
.h5{height:55.461000px;}
.h11{height:59.004000px;}
.h8{height:59.340000px;}
.h9{height:61.380000px;}
.h7{height:64.866000px;}
.hc{height:71.208000px;}
.h6{height:85.056000px;}
.h14{height:371.309990px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:739.841995px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:51.022356px;}
.x3{left:76.535402px;}
.x9{left:78.746400px;}
.x4{left:85.181849px;}
.xa{left:93.530402px;}
.x5{left:96.307045px;}
.x8{left:97.796100px;}
.x15{left:102.048152px;}
.xd{left:152.327396px;}
.xe{left:178.198803px;}
.xf{left:180.091865px;}
.x12{left:267.874652px;}
.xc{left:297.517342px;}
.x11{left:336.038847px;}
.x13{left:349.321198px;}
.x6{left:459.212723px;}
.xb{left:476.210389px;}
.x7{left:478.984360px;}
.x14{left:484.725290px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
@media print{
.v3{vertical-align:-18.133343pt;}
.v2{vertical-align:-3.200033pt;}
.v4{vertical-align:-1.664000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls3d{letter-spacing:-0.987219pt;}
.ls3a{letter-spacing:-0.897472pt;}
.ls32{letter-spacing:-0.807725pt;}
.ls31{letter-spacing:-0.762851pt;}
.ls34{letter-spacing:-0.717978pt;}
.ls3e{letter-spacing:-0.673104pt;}
.ls33{letter-spacing:-0.538483pt;}
.ls4f{letter-spacing:-0.533333pt;}
.ls3b{letter-spacing:-0.448736pt;}
.ls4b{letter-spacing:-0.373333pt;}
.ls80{letter-spacing:-0.362667pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls74{letter-spacing:-0.317333pt;}
.ls81{letter-spacing:-0.272000pt;}
.ls22{letter-spacing:-0.266667pt;}
.ls72{letter-spacing:-0.226667pt;}
.ls21{letter-spacing:-0.213333pt;}
.ls75{letter-spacing:-0.181333pt;}
.ls36{letter-spacing:-0.179494pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls7f{letter-spacing:-0.136000pt;}
.ls3c{letter-spacing:-0.134621pt;}
.lse{letter-spacing:-0.106667pt;}
.ls30{letter-spacing:-0.099470pt;}
.ls73{letter-spacing:-0.090667pt;}
.ls38{letter-spacing:-0.089747pt;}
.ls10{letter-spacing:-0.053333pt;}
.ls7e{letter-spacing:-0.045333pt;}
.ls2f{letter-spacing:-0.044874pt;}
.lsd{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.026667pt;}
.ls42{letter-spacing:0.027298pt;}
.ls29{letter-spacing:0.044874pt;}
.ls5e{letter-spacing:0.045333pt;}
.ls2{letter-spacing:0.053333pt;}
.ls4a{letter-spacing:0.080000pt;}
.ls2e{letter-spacing:0.089747pt;}
.ls61{letter-spacing:0.090667pt;}
.ls14{letter-spacing:0.106667pt;}
.ls4e{letter-spacing:0.133333pt;}
.ls5b{letter-spacing:0.136000pt;}
.ls5d{letter-spacing:0.158667pt;}
.lsc{letter-spacing:0.158926pt;}
.ls6{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.179494pt;}
.ls64{letter-spacing:0.181333pt;}
.ls41{letter-spacing:0.191087pt;}
.ls1{letter-spacing:0.213333pt;}
.lsb{letter-spacing:0.226667pt;}
.ls5c{letter-spacing:0.234667pt;}
.ls45{letter-spacing:0.245322pt;}
.lsf{letter-spacing:0.250667pt;}
.ls62{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls7b{letter-spacing:0.272000pt;}
.ls25{letter-spacing:0.293333pt;}
.ls5f{letter-spacing:0.317333pt;}
.ls12{letter-spacing:0.320000pt;}
.ls6f{letter-spacing:0.340000pt;}
.ls51{letter-spacing:0.346667pt;}
.ls60{letter-spacing:0.362667pt;}
.ls9{letter-spacing:0.373333pt;}
.ls27{letter-spacing:0.400000pt;}
.ls58{letter-spacing:0.408000pt;}
.ls1c{letter-spacing:0.426667pt;}
.ls79{letter-spacing:0.430667pt;}
.ls48{letter-spacing:0.453333pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls56{letter-spacing:0.498667pt;}
.ls4{letter-spacing:0.533333pt;}
.ls67{letter-spacing:0.544000pt;}
.ls46{letter-spacing:0.560000pt;}
.ls18{letter-spacing:0.586667pt;}
.ls57{letter-spacing:0.589333pt;}
.ls24{letter-spacing:0.613333pt;}
.ls66{letter-spacing:0.634667pt;}
.ls7{letter-spacing:0.640000pt;}
.ls4d{letter-spacing:0.666667pt;}
.ls55{letter-spacing:0.680000pt;}
.ls15{letter-spacing:0.693333pt;}
.ls47{letter-spacing:0.720000pt;}
.ls63{letter-spacing:0.725333pt;}
.ls8{letter-spacing:0.746667pt;}
.ls5a{letter-spacing:0.770667pt;}
.ls13{letter-spacing:0.800000pt;}
.ls54{letter-spacing:0.816000pt;}
.ls19{letter-spacing:0.853333pt;}
.ls68{letter-spacing:0.861333pt;}
.lsa{letter-spacing:0.906667pt;}
.ls44{letter-spacing:0.933333pt;}
.ls59{letter-spacing:0.952000pt;}
.ls43{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:0.986667pt;}
.ls16{letter-spacing:1.013333pt;}
.ls1e{letter-spacing:1.066667pt;}
.ls65{letter-spacing:1.088000pt;}
.ls26{letter-spacing:1.120000pt;}
.ls71{letter-spacing:1.133333pt;}
.ls4c{letter-spacing:1.146667pt;}
.ls17{letter-spacing:1.173333pt;}
.ls78{letter-spacing:1.178667pt;}
.ls77{letter-spacing:1.224000pt;}
.ls6b{letter-spacing:1.269333pt;}
.ls1b{letter-spacing:1.280000pt;}
.ls6d{letter-spacing:1.314667pt;}
.ls52{letter-spacing:1.360000pt;}
.ls23{letter-spacing:1.386667pt;}
.ls6a{letter-spacing:1.405333pt;}
.ls1f{letter-spacing:1.440000pt;}
.ls6c{letter-spacing:1.450667pt;}
.ls28{letter-spacing:1.493333pt;}
.ls69{letter-spacing:1.496000pt;}
.ls76{letter-spacing:1.541333pt;}
.ls50{letter-spacing:1.600000pt;}
.ls5{letter-spacing:1.706667pt;}
.ls70{letter-spacing:1.722667pt;}
.ls53{letter-spacing:1.733333pt;}
.ls6e{letter-spacing:1.768000pt;}
.ls7c{letter-spacing:1.858667pt;}
.ls7d{letter-spacing:2.176000pt;}
.ls7a{letter-spacing:3.236800pt;}
.ls0{letter-spacing:3.546667pt;}
.ls3f{letter-spacing:6.360465pt;}
.ls40{letter-spacing:6.524254pt;}
.ls35{letter-spacing:10.276054pt;}
.ls39{letter-spacing:10.365802pt;}
.ls37{letter-spacing:20.596982pt;}
.ls2d{letter-spacing:520.984875pt;}
.ls2c{letter-spacing:550.166555pt;}
.ls2b{letter-spacing:870.207975pt;}
.ws58{word-spacing:-20.641856pt;}
.wsa1{word-spacing:-14.293333pt;}
.ws9f{word-spacing:-14.133333pt;}
.ws9d{word-spacing:-14.080000pt;}
.ws4e{word-spacing:-14.026667pt;}
.ws24{word-spacing:-13.920000pt;}
.ws6f{word-spacing:-13.866667pt;}
.ws9e{word-spacing:-13.706667pt;}
.ws4c{word-spacing:-13.653333pt;}
.ws23{word-spacing:-13.600000pt;}
.ws4d{word-spacing:-13.333333pt;}
.wsae{word-spacing:-13.184000pt;}
.wsa0{word-spacing:-13.120000pt;}
.ws22{word-spacing:-13.013333pt;}
.ws6{word-spacing:-12.928000pt;}
.wsb4{word-spacing:-12.829333pt;}
.wse1{word-spacing:-12.693333pt;}
.wsb3{word-spacing:-12.648000pt;}
.wsb1{word-spacing:-12.421333pt;}
.wsd3{word-spacing:-12.194667pt;}
.wsb2{word-spacing:-12.149333pt;}
.wsdf{word-spacing:-11.877333pt;}
.wse0{word-spacing:-11.764000pt;}
.ws7{word-spacing:-11.560000pt;}
.wsaf{word-spacing:-11.514667pt;}
.wsb0{word-spacing:-11.378667pt;}
.ws7f{word-spacing:-11.333333pt;}
.wse4{word-spacing:-11.288000pt;}
.wse2{word-spacing:-11.197333pt;}
.wse3{word-spacing:-11.106667pt;}
.ws2{word-spacing:-11.040000pt;}
.ws4{word-spacing:-10.986667pt;}
.ws5d{word-spacing:-10.410675pt;}
.ws56{word-spacing:-10.320928pt;}
.ws5{word-spacing:-10.240000pt;}
.wsac{word-spacing:-9.338667pt;}
.ws1{word-spacing:-8.885333pt;}
.wsad{word-spacing:-8.613333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws75{word-spacing:-6.666667pt;}
.ws66{word-spacing:-6.551552pt;}
.ws65{word-spacing:-6.387763pt;}
.ws8c{word-spacing:-5.666667pt;}
.ws8{word-spacing:-1.680000pt;}
.wse8{word-spacing:-1.360000pt;}
.wsb{word-spacing:-1.333333pt;}
.ws46{word-spacing:-1.226667pt;}
.wseb{word-spacing:-1.178667pt;}
.wsb7{word-spacing:-1.133333pt;}
.wsa7{word-spacing:-1.120000pt;}
.wsc2{word-spacing:-1.042667pt;}
.ws14{word-spacing:-1.013333pt;}
.wsc4{word-spacing:-0.997333pt;}
.wsd{word-spacing:-0.960000pt;}
.wsc9{word-spacing:-0.952000pt;}
.ws2d{word-spacing:-0.906667pt;}
.wsbb{word-spacing:-0.861333pt;}
.ws34{word-spacing:-0.853333pt;}
.wsd2{word-spacing:-0.816000pt;}
.ws26{word-spacing:-0.800000pt;}
.wsc1{word-spacing:-0.770667pt;}
.ws1c{word-spacing:-0.746667pt;}
.wse{word-spacing:-0.693333pt;}
.wsca{word-spacing:-0.680000pt;}
.ws15{word-spacing:-0.640000pt;}
.wscb{word-spacing:-0.634667pt;}
.ws47{word-spacing:-0.586667pt;}
.ws21{word-spacing:-0.544000pt;}
.ws2b{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.506667pt;}
.wsdc{word-spacing:-0.498667pt;}
.ws17{word-spacing:-0.480000pt;}
.ws12{word-spacing:-0.426667pt;}
.ws41{word-spacing:-0.373333pt;}
.wscf{word-spacing:-0.362667pt;}
.ws31{word-spacing:-0.320000pt;}
.wsc5{word-spacing:-0.317333pt;}
.ws1e{word-spacing:-0.266667pt;}
.ws16{word-spacing:-0.250667pt;}
.wsc0{word-spacing:-0.234667pt;}
.wsc3{word-spacing:-0.226667pt;}
.ws63{word-spacing:-0.224368pt;}
.ws38{word-spacing:-0.213333pt;}
.wscd{word-spacing:-0.181333pt;}
.wsab{word-spacing:-0.160000pt;}
.wsf0{word-spacing:-0.136000pt;}
.ws4f{word-spacing:-0.134621pt;}
.ws3c{word-spacing:-0.106667pt;}
.wsd9{word-spacing:-0.090667pt;}
.ws59{word-spacing:-0.089747pt;}
.ws1a{word-spacing:-0.053333pt;}
.ws5b{word-spacing:-0.044874pt;}
.ws0{word-spacing:-0.042667pt;}
.ws6e{word-spacing:-0.027298pt;}
.ws9{word-spacing:0.000000pt;}
.ws5c{word-spacing:0.044874pt;}
.wsee{word-spacing:0.045333pt;}
.ws60{word-spacing:0.089747pt;}
.ws6d{word-spacing:0.099470pt;}
.ws2a{word-spacing:0.106667pt;}
.ws57{word-spacing:0.134621pt;}
.wse6{word-spacing:0.136000pt;}
.ws74{word-spacing:0.160000pt;}
.wsc{word-spacing:0.213333pt;}
.ws36{word-spacing:0.266667pt;}
.ws40{word-spacing:0.320000pt;}
.ws73{word-spacing:0.373333pt;}
.ws5f{word-spacing:0.403862pt;}
.ws11{word-spacing:0.426667pt;}
.ws4a{word-spacing:0.480000pt;}
.ws53{word-spacing:0.493610pt;}
.ws10{word-spacing:0.533333pt;}
.wsec{word-spacing:0.544000pt;}
.ws64{word-spacing:0.628230pt;}
.wsdb{word-spacing:0.634667pt;}
.ws2f{word-spacing:0.640000pt;}
.ws54{word-spacing:0.673104pt;}
.wsdd{word-spacing:0.680000pt;}
.ws18{word-spacing:0.693333pt;}
.ws50{word-spacing:0.717978pt;}
.wsef{word-spacing:0.725333pt;}
.ws32{word-spacing:0.746667pt;}
.ws52{word-spacing:0.762851pt;}
.ws1f{word-spacing:0.800000pt;}
.wsd8{word-spacing:0.816000pt;}
.ws5e{word-spacing:0.852598pt;}
.ws3d{word-spacing:0.853333pt;}
.wsf5{word-spacing:0.906667pt;}
.ws62{word-spacing:0.942346pt;}
.ws1d{word-spacing:0.960000pt;}
.wsf{word-spacing:1.013333pt;}
.wsc8{word-spacing:1.042667pt;}
.ws98{word-spacing:1.066667pt;}
.wsed{word-spacing:1.088000pt;}
.wsba{word-spacing:1.133333pt;}
.ws72{word-spacing:1.173333pt;}
.wsea{word-spacing:1.178667pt;}
.ws69{word-spacing:1.226667pt;}
.wse7{word-spacing:1.269333pt;}
.ws6b{word-spacing:1.280000pt;}
.ws13{word-spacing:1.333333pt;}
.wsbc{word-spacing:1.360000pt;}
.ws78{word-spacing:1.386667pt;}
.ws2c{word-spacing:1.440000pt;}
.wsd0{word-spacing:1.450667pt;}
.wsf2{word-spacing:1.541333pt;}
.ws27{word-spacing:1.546667pt;}
.wsd1{word-spacing:1.586667pt;}
.ws79{word-spacing:1.600000pt;}
.wsb9{word-spacing:1.632000pt;}
.ws76{word-spacing:1.653333pt;}
.wsa5{word-spacing:1.706667pt;}
.wsd7{word-spacing:1.722667pt;}
.ws68{word-spacing:1.760000pt;}
.wsb6{word-spacing:1.768000pt;}
.wsa4{word-spacing:1.813333pt;}
.ws8e{word-spacing:1.858667pt;}
.ws1b{word-spacing:1.866667pt;}
.wse9{word-spacing:1.904000pt;}
.ws6a{word-spacing:1.920000pt;}
.wscc{word-spacing:1.949333pt;}
.ws42{word-spacing:1.973333pt;}
.ws91{word-spacing:1.994667pt;}
.ws25{word-spacing:2.026667pt;}
.ws33{word-spacing:2.080000pt;}
.wsbf{word-spacing:2.085333pt;}
.ws89{word-spacing:2.133333pt;}
.wsf1{word-spacing:2.176000pt;}
.ws37{word-spacing:2.186667pt;}
.ws35{word-spacing:2.240000pt;}
.wsb5{word-spacing:2.266667pt;}
.ws3a{word-spacing:2.293333pt;}
.wsd6{word-spacing:2.312000pt;}
.ws77{word-spacing:2.346667pt;}
.wsd5{word-spacing:2.357333pt;}
.wsa2{word-spacing:2.400000pt;}
.wsb8{word-spacing:2.448000pt;}
.ws4b{word-spacing:2.453333pt;}
.ws20{word-spacing:2.506667pt;}
.ws45{word-spacing:2.560000pt;}
.wsd4{word-spacing:2.584000pt;}
.ws28{word-spacing:2.613333pt;}
.wsc7{word-spacing:2.629333pt;}
.ws71{word-spacing:2.666667pt;}
.wsde{word-spacing:2.674667pt;}
.wsa8{word-spacing:2.720000pt;}
.ws70{word-spacing:2.773333pt;}
.wsa6{word-spacing:2.826667pt;}
.ws3e{word-spacing:2.880000pt;}
.wse5{word-spacing:2.946667pt;}
.wsbd{word-spacing:3.037333pt;}
.ws3b{word-spacing:3.040000pt;}
.ws29{word-spacing:3.146667pt;}
.ws30{word-spacing:3.200000pt;}
.wsc6{word-spacing:3.218667pt;}
.ws7a{word-spacing:3.264000pt;}
.ws3f{word-spacing:3.360000pt;}
.wsa9{word-spacing:3.466667pt;}
.ws9b{word-spacing:3.520000pt;}
.wsce{word-spacing:3.672000pt;}
.ws43{word-spacing:3.680000pt;}
.ws99{word-spacing:3.733333pt;}
.ws7c{word-spacing:3.762667pt;}
.ws2e{word-spacing:3.786667pt;}
.wsda{word-spacing:3.944000pt;}
.ws39{word-spacing:4.320000pt;}
.ws7e{word-spacing:4.352000pt;}
.ws44{word-spacing:4.373333pt;}
.ws9c{word-spacing:4.426667pt;}
.ws8b{word-spacing:4.480000pt;}
.ws9a{word-spacing:4.533333pt;}
.ws48{word-spacing:4.746667pt;}
.wsaa{word-spacing:4.800000pt;}
.ws7b{word-spacing:4.850667pt;}
.wsbe{word-spacing:4.986667pt;}
.ws8f{word-spacing:5.168000pt;}
.ws8a{word-spacing:5.173333pt;}
.ws49{word-spacing:5.333333pt;}
.ws6c{word-spacing:5.440000pt;}
.wsa3{word-spacing:6.080000pt;}
.ws67{word-spacing:6.114782pt;}
.ws19{word-spacing:6.613333pt;}
.ws7d{word-spacing:7.162667pt;}
.wsf3{word-spacing:7.616000pt;}
.ws92{word-spacing:8.386667pt;}
.ws90{word-spacing:8.794667pt;}
.wsf4{word-spacing:9.157333pt;}
.ws51{word-spacing:10.096560pt;}
.ws55{word-spacing:10.141434pt;}
.ws61{word-spacing:10.320928pt;}
.ws5a{word-spacing:10.724790pt;}
.wsf6{word-spacing:12.013333pt;}
.ws8d{word-spacing:15.594667pt;}
.wsf7{word-spacing:15.640000pt;}
.ws84{word-spacing:87.946667pt;}
.ws85{word-spacing:128.610662pt;}
.ws80{word-spacing:136.906667pt;}
.ws82{word-spacing:143.162667pt;}
.ws86{word-spacing:145.157333pt;}
.ws81{word-spacing:177.842667pt;}
.ws96{word-spacing:226.666667pt;}
.ws95{word-spacing:232.922667pt;}
.ws97{word-spacing:248.064000pt;}
.ws94{word-spacing:267.602667pt;}
.ws83{word-spacing:277.077333pt;}
.ws93{word-spacing:351.741333pt;}
.ws87{word-spacing:938.218627pt;}
.ws88{word-spacing:1102.370633pt;}
._f{margin-left:-20.282867pt;}
._6{margin-left:-14.733333pt;}
._e{margin-left:-9.872192pt;}
._10{margin-left:-6.169378pt;}
._12{margin-left:-5.254622pt;}
._1{margin-left:-4.109067pt;}
._4{margin-left:-2.954667pt;}
._0{margin-left:-1.450667pt;}
._3{width:0.997333pt;}
._b{width:1.893333pt;}
._c{width:3.749333pt;}
._24{width:4.960000pt;}
._d{width:6.165333pt;}
._2a{width:9.384000pt;}
._2c{width:11.469324pt;}
._2b{width:12.874667pt;}
._11{width:13.872000pt;}
._7{width:16.320000pt;}
._5{width:31.295442pt;}
._2{width:35.481057pt;}
._9{width:48.552000pt;}
._13{width:59.658667pt;}
._8{width:64.237333pt;}
._15{width:77.973333pt;}
._17{width:99.280000pt;}
._26{width:112.336000pt;}
._29{width:115.872000pt;}
._19{width:124.122667pt;}
._1b{width:139.490662pt;}
._18{width:141.938667pt;}
._1a{width:169.909333pt;}
._28{width:213.066667pt;}
._27{width:231.698667pt;}
._16{width:243.077333pt;}
._25{width:277.349314pt;}
._14{width:288.864000pt;}
._1c{width:353.917324pt;}
._1f{width:454.647990pt;}
._22{width:501.250657pt;}
._21{width:517.170633pt;}
._1d{width:523.055966pt;}
._20{width:528.133299pt;}
._1e{width:563.357299pt;}
._23{width:786.623966pt;}
._a{width:2227.589317pt;}
.fsd{font-size:27.298133pt;}
.fs9{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:44.873600pt;}
.fs2{font-size:45.333333pt;}
.fsc{font-size:49.734933pt;}
.fs8{font-size:50.133331pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:2.459432pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y37{bottom:100.400267pt;}
.y7a{bottom:100.813599pt;}
.y6d{bottom:100.813639pt;}
.ydc{bottom:101.014929pt;}
.ydf{bottom:101.026262pt;}
.y126{bottom:101.489596pt;}
.y13d{bottom:101.986898pt;}
.y150{bottom:101.986938pt;}
.y94{bottom:102.111064pt;}
.y30{bottom:108.854533pt;}
.y10d{bottom:109.521333pt;}
.y1b8{bottom:110.360289pt;}
.yec{bottom:112.851074pt;}
.y36{bottom:113.728267pt;}
.ydb{bottom:114.342929pt;}
.yde{bottom:114.354262pt;}
.y125{bottom:114.817596pt;}
.y79{bottom:117.480265pt;}
.y6c{bottom:117.480306pt;}
.y13c{bottom:118.653564pt;}
.y14f{bottom:118.653605pt;}
.yae{bottom:118.777608pt;}
.y93{bottom:118.777730pt;}
.y1b7{bottom:123.688289pt;}
.y2f{bottom:125.521200pt;}
.y10c{bottom:126.226667pt;}
.y35{bottom:127.056267pt;}
.yda{bottom:127.670929pt;}
.ydd{bottom:127.682262pt;}
.y178{bottom:128.883854pt;}
.yeb{bottom:129.517741pt;}
.y78{bottom:134.146932pt;}
.y6b{bottom:134.146973pt;}
.y13b{bottom:135.320231pt;}
.y14e{bottom:135.320272pt;}
.yad{bottom:135.444275pt;}
.y92{bottom:135.444397pt;}
.y1b6{bottom:137.016289pt;}
.y2e{bottom:142.187866pt;}
.y177{bottom:142.211854pt;}
.y10b{bottom:142.864000pt;}
.y34{bottom:144.917603pt;}
.yea{bottom:146.184408pt;}
.y1b5{bottom:150.344289pt;}
.y77{bottom:150.813599pt;}
.y6a{bottom:150.813639pt;}
.y13a{bottom:151.986898pt;}
.y14d{bottom:151.986938pt;}
.yac{bottom:152.110942pt;}
.y91{bottom:152.111064pt;}
.y176{bottom:155.539854pt;}
.y2d{bottom:158.854533pt;}
.y10a{bottom:159.501333pt;}
.ye9{bottom:162.851074pt;}
.y1b4{bottom:163.672289pt;}
.y33{bottom:167.140804pt;}
.y76{bottom:167.480265pt;}
.y69{bottom:167.480306pt;}
.y139{bottom:168.653564pt;}
.y14c{bottom:168.653605pt;}
.yab{bottom:168.777608pt;}
.y90{bottom:168.777730pt;}
.y175{bottom:168.867854pt;}
.y2c{bottom:175.521200pt;}
.y109{bottom:176.138667pt;}
.y1b3{bottom:177.000289pt;}
.ye8{bottom:179.517741pt;}
.y32{bottom:180.468804pt;}
.y174{bottom:182.195854pt;}
.y1f4{bottom:183.625620pt;}
.y75{bottom:184.146932pt;}
.y68{bottom:184.146973pt;}
.y138{bottom:185.320231pt;}
.y14b{bottom:185.320272pt;}
.yaa{bottom:185.444275pt;}
.y8f{bottom:185.444397pt;}
.y1b2{bottom:190.328289pt;}
.y2b{bottom:192.187866pt;}
.y108{bottom:192.776000pt;}
.y173{bottom:195.523854pt;}
.ye7{bottom:196.184408pt;}
.y1f3{bottom:196.953620pt;}
.y74{bottom:200.813599pt;}
.y67{bottom:200.813639pt;}
.y137{bottom:201.986898pt;}
.y14a{bottom:201.986938pt;}
.ya9{bottom:202.110942pt;}
.y8e{bottom:202.111064pt;}
.y1b1{bottom:203.656289pt;}
.y31{bottom:207.861471pt;}
.y172{bottom:208.851854pt;}
.y2a{bottom:208.854533pt;}
.y107{bottom:209.413333pt;}
.y1f2{bottom:210.281620pt;}
.ye6{bottom:212.851074pt;}
.y1b0{bottom:216.984289pt;}
.y73{bottom:217.480265pt;}
.y66{bottom:217.480306pt;}
.y136{bottom:218.653564pt;}
.y149{bottom:218.653605pt;}
.ya8{bottom:218.777608pt;}
.y8d{bottom:218.777730pt;}
.y171{bottom:222.179854pt;}
.y1f1{bottom:223.609620pt;}
.y29{bottom:225.521200pt;}
.y106{bottom:226.050667pt;}
.ye5{bottom:229.517741pt;}
.y1af{bottom:230.312289pt;}
.y72{bottom:234.146932pt;}
.y65{bottom:234.146973pt;}
.y135{bottom:235.320231pt;}
.y148{bottom:235.320272pt;}
.ya7{bottom:235.444275pt;}
.y170{bottom:235.507854pt;}
.y22b{bottom:236.495649pt;}
.y1f0{bottom:236.937620pt;}
.y28{bottom:242.187866pt;}
.y105{bottom:242.688000pt;}
.y1ae{bottom:243.640289pt;}
.ye4{bottom:246.184408pt;}
.y16f{bottom:248.835854pt;}
.y22a{bottom:249.823649pt;}
.y1ef{bottom:250.265620pt;}
.y71{bottom:250.813599pt;}
.y64{bottom:250.813639pt;}
.y134{bottom:251.986898pt;}
.y147{bottom:251.986938pt;}
.ya6{bottom:252.110942pt;}
.y8c{bottom:252.111064pt;}
.y1ad{bottom:256.968289pt;}
.y23{bottom:258.854533pt;}
.y16e{bottom:262.163854pt;}
.ye3{bottom:262.851074pt;}
.y1ee{bottom:263.593620pt;}
.y70{bottom:267.480265pt;}
.y63{bottom:267.480306pt;}
.y104{bottom:267.655333pt;}
.y133{bottom:268.653564pt;}
.y146{bottom:268.653605pt;}
.y1ac{bottom:270.296289pt;}
.y16d{bottom:275.491854pt;}
.y27{bottom:275.521200pt;}
.y22{bottom:276.321208pt;}
.y1ed{bottom:276.921620pt;}
.y229{bottom:277.238983pt;}
.ye2{bottom:279.517741pt;}
.y1ab{bottom:283.624289pt;}
.y62{bottom:284.146973pt;}
.y132{bottom:285.320231pt;}
.y145{bottom:285.320272pt;}
.ya5{bottom:285.444275pt;}
.y1ec{bottom:290.249620pt;}
.y103{bottom:290.345188pt;}
.y228{bottom:290.566983pt;}
.y21{bottom:292.187866pt;}
.ye1{bottom:296.184408pt;}
.y1aa{bottom:296.952289pt;}
.y6f{bottom:300.813599pt;}
.y61{bottom:300.813639pt;}
.y131{bottom:301.986898pt;}
.y144{bottom:301.986938pt;}
.y8b{bottom:302.110921pt;}
.y1eb{bottom:303.577620pt;}
.y102{bottom:303.673188pt;}
.y227{bottom:303.894983pt;}
.y26{bottom:308.854533pt;}
.y20{bottom:309.654541pt;}
.y1a9{bottom:310.280289pt;}
.y16c{bottom:312.109854pt;}
.ye0{bottom:312.851074pt;}
.y1ea{bottom:316.905620pt;}
.yb9{bottom:316.998087pt;}
.y226{bottom:317.222983pt;}
.y60{bottom:317.480306pt;}
.y130{bottom:318.653564pt;}
.y143{bottom:318.653605pt;}
.y8a{bottom:318.777588pt;}
.ya4{bottom:318.777730pt;}
.y1a8{bottom:323.608289pt;}
.y16b{bottom:325.437854pt;}
.y1f{bottom:325.521200pt;}
.y1e9{bottom:330.233620pt;}
.y225{bottom:330.550983pt;}
.y6e{bottom:334.146932pt;}
.y5f{bottom:334.146973pt;}
.y12f{bottom:335.320231pt;}
.y142{bottom:335.320272pt;}
.y89{bottom:335.444255pt;}
.ya3{bottom:335.444397pt;}
.y1a7{bottom:336.936289pt;}
.y1e{bottom:342.987874pt;}
.y1e8{bottom:343.561620pt;}
.y224{bottom:343.878983pt;}
.y1a6{bottom:350.264289pt;}
.y5e{bottom:350.813639pt;}
.y12e{bottom:351.986898pt;}
.y141{bottom:351.986938pt;}
.yfe{bottom:351.987188pt;}
.y101{bottom:351.998522pt;}
.y16a{bottom:352.071188pt;}
.y88{bottom:352.110921pt;}
.ya2{bottom:352.111064pt;}
.y1e7{bottom:356.889620pt;}
.y223{bottom:357.206983pt;}
.y1d{bottom:358.854533pt;}
.y1a5{bottom:363.592289pt;}
.yfd{bottom:365.315188pt;}
.y100{bottom:365.326522pt;}
.y169{bottom:365.399187pt;}
.y5d{bottom:367.480306pt;}
.y12d{bottom:368.653564pt;}
.y140{bottom:368.653605pt;}
.y87{bottom:368.777588pt;}
.ya1{bottom:368.777730pt;}
.y1e6{bottom:370.217620pt;}
.y222{bottom:370.534983pt;}
.y1c{bottom:376.321208pt;}
.y1a4{bottom:376.920289pt;}
.yfc{bottom:378.643188pt;}
.yff{bottom:378.654522pt;}
.y168{bottom:378.727187pt;}
.y1e5{bottom:383.545620pt;}
.y221{bottom:383.862983pt;}
.y5c{bottom:384.146973pt;}
.y12c{bottom:385.320231pt;}
.y13f{bottom:385.320272pt;}
.y86{bottom:385.444255pt;}
.ya0{bottom:385.444397pt;}
.y1a3{bottom:390.248289pt;}
.y167{bottom:392.055187pt;}
.y1e4{bottom:396.873620pt;}
.y220{bottom:397.190983pt;}
.y5b{bottom:400.813639pt;}
.y12b{bottom:401.986898pt;}
.y85{bottom:402.110921pt;}
.y9f{bottom:402.111064pt;}
.y1a2{bottom:403.576289pt;}
.y166{bottom:405.383188pt;}
.y25{bottom:408.854533pt;}
.y1e3{bottom:410.201620pt;}
.y21f{bottom:410.518983pt;}
.y1a1{bottom:416.904289pt;}
.y5a{bottom:417.480306pt;}
.y12a{bottom:418.653564pt;}
.y13e{bottom:418.653605pt;}
.y165{bottom:418.711187pt;}
.y84{bottom:418.777588pt;}
.y9e{bottom:418.777730pt;}
.y1e2{bottom:423.529620pt;}
.y21e{bottom:423.846983pt;}
.y1b{bottom:425.521200pt;}
.y24{bottom:426.321208pt;}
.y1a0{bottom:430.232289pt;}
.y164{bottom:432.039188pt;}
.y59{bottom:434.146973pt;}
.y129{bottom:435.320231pt;}
.y83{bottom:435.444255pt;}
.y9d{bottom:435.444397pt;}
.y1e1{bottom:436.857620pt;}
.y21d{bottom:437.174983pt;}
.y19f{bottom:443.560289pt;}
.y163{bottom:445.367188pt;}
.y1e0{bottom:450.185620pt;}
.y21c{bottom:450.502983pt;}
.y58{bottom:450.813639pt;}
.y128{bottom:451.986898pt;}
.y82{bottom:452.110921pt;}
.y9c{bottom:452.111064pt;}
.y19e{bottom:456.888289pt;}
.y1df{bottom:463.513620pt;}
.y21b{bottom:463.830983pt;}
.y57{bottom:467.480306pt;}
.y127{bottom:468.653564pt;}
.y81{bottom:468.777588pt;}
.y9b{bottom:468.777730pt;}
.y19d{bottom:470.216289pt;}
.y162{bottom:475.367188pt;}
.y1a{bottom:475.521240pt;}
.y1de{bottom:476.841620pt;}
.y21a{bottom:477.158983pt;}
.y19c{bottom:483.544289pt;}
.y56{bottom:484.146973pt;}
.yd9{bottom:485.320231pt;}
.y80{bottom:485.444255pt;}
.y9a{bottom:485.444397pt;}
.y1dd{bottom:490.169620pt;}
.y219{bottom:490.486983pt;}
.y19b{bottom:496.872289pt;}
.y55{bottom:500.813639pt;}
.yd8{bottom:501.986898pt;}
.y7f{bottom:502.110921pt;}
.y99{bottom:502.111064pt;}
.y1dc{bottom:503.497620pt;}
.y218{bottom:503.814983pt;}
.y161{bottom:508.805096pt;}
.y19{bottom:508.854574pt;}
.y19a{bottom:510.200289pt;}
.y1db{bottom:516.825620pt;}
.y217{bottom:517.142983pt;}
.y54{bottom:517.480306pt;}
.yd7{bottom:518.653564pt;}
.y7e{bottom:518.777588pt;}
.y98{bottom:518.777730pt;}
.y160{bottom:522.133096pt;}
.y199{bottom:523.528289pt;}
.y18{bottom:525.521240pt;}
.y1da{bottom:530.153620pt;}
.y216{bottom:530.470983pt;}
.y53{bottom:534.146973pt;}
.yd6{bottom:535.320231pt;}
.y7d{bottom:535.444255pt;}
.y97{bottom:535.444397pt;}
.y15f{bottom:535.461096pt;}
.y198{bottom:536.856289pt;}
.y17{bottom:542.187907pt;}
.y1d9{bottom:543.481620pt;}
.y215{bottom:543.798983pt;}
.y15e{bottom:548.789096pt;}
.y197{bottom:550.184289pt;}
.y52{bottom:550.813639pt;}
.y11a{bottom:550.952564pt;}
.yd5{bottom:551.986898pt;}
.y112{bottom:551.986938pt;}
.y7c{bottom:552.110921pt;}
.y96{bottom:552.111064pt;}
.y1d8{bottom:556.809620pt;}
.y214{bottom:557.126983pt;}
.y16{bottom:558.854574pt;}
.y15d{bottom:562.117096pt;}
.y196{bottom:563.512289pt;}
.y51{bottom:567.480306pt;}
.yd4{bottom:568.653564pt;}
.y111{bottom:568.653605pt;}
.y7b{bottom:568.777588pt;}
.y95{bottom:568.777730pt;}
.y1d7{bottom:570.137620pt;}
.y213{bottom:570.454983pt;}
.y124{bottom:575.365837pt;}
.y15c{bottom:575.445096pt;}
.y15{bottom:575.521240pt;}
.y195{bottom:576.840289pt;}
.y1d6{bottom:583.465620pt;}
.y212{bottom:583.782983pt;}
.y50{bottom:584.146973pt;}
.yd3{bottom:585.320231pt;}
.y110{bottom:585.320272pt;}
.y15b{bottom:588.773096pt;}
.y194{bottom:590.168289pt;}
.y123{bottom:592.071171pt;}
.y14{bottom:592.187907pt;}
.y1d5{bottom:596.793620pt;}
.y211{bottom:597.110983pt;}
.y4f{bottom:600.813639pt;}
.yd2{bottom:601.986898pt;}
.y10f{bottom:601.986938pt;}
.y15a{bottom:602.101096pt;}
.y193{bottom:603.496289pt;}
.y122{bottom:608.708504pt;}
.y13{bottom:608.854574pt;}
.y1d4{bottom:610.121620pt;}
.y210{bottom:610.438983pt;}
.y159{bottom:615.429096pt;}
.ybb{bottom:616.250285pt;}
.y192{bottom:616.824289pt;}
.y4e{bottom:617.480306pt;}
.yd1{bottom:618.653564pt;}
.y1d3{bottom:623.449620pt;}
.y20f{bottom:623.766983pt;}
.y121{bottom:625.345837pt;}
.y12{bottom:625.521240pt;}
.y191{bottom:630.152289pt;}
.y4d{bottom:634.146973pt;}
.yd0{bottom:635.320231pt;}
.y10e{bottom:635.320272pt;}
.y1d2{bottom:636.777620pt;}
.y20e{bottom:637.094983pt;}
.y120{bottom:641.983171pt;}
.y11{bottom:642.187907pt;}
.y190{bottom:643.480289pt;}
.y158{bottom:645.394430pt;}
.yb8{bottom:647.428019pt;}
.y1d1{bottom:650.105620pt;}
.y20d{bottom:650.422983pt;}
.y4c{bottom:650.813639pt;}
.ycf{bottom:651.986898pt;}
.yb3{bottom:654.930722pt;}
.y18f{bottom:656.808289pt;}
.y11f{bottom:658.620504pt;}
.y119{bottom:658.709897pt;}
.y157{bottom:658.722430pt;}
.y10{bottom:658.854574pt;}
.y1d0{bottom:663.433620pt;}
.y20c{bottom:663.750983pt;}
.y4b{bottom:667.480306pt;}
.yce{bottom:668.653564pt;}
.y18e{bottom:670.136289pt;}
.yb2{bottom:671.713448pt;}
.y118{bottom:672.037897pt;}
.y156{bottom:672.050430pt;}
.y11e{bottom:675.257837pt;}
.yf{bottom:675.521240pt;}
.y1cf{bottom:676.761620pt;}
.y20b{bottom:677.078983pt;}
.yb7{bottom:683.212306pt;}
.y18d{bottom:683.464289pt;}
.y4a{bottom:684.146973pt;}
.yb5{bottom:685.175526pt;}
.ycd{bottom:685.320231pt;}
.y117{bottom:685.365897pt;}
.y155{bottom:685.378430pt;}
.y1ce{bottom:690.089620pt;}
.y20a{bottom:690.406983pt;}
.y11d{bottom:691.895171pt;}
.ye{bottom:692.187907pt;}
.y18c{bottom:696.792289pt;}
.yb6{bottom:697.426019pt;}
.y116{bottom:698.693897pt;}
.y154{bottom:698.706430pt;}
.yb1{bottom:698.783447pt;}
.y49{bottom:700.813639pt;}
.ycc{bottom:701.986898pt;}
.y1cd{bottom:703.417620pt;}
.y209{bottom:703.734983pt;}
.y11c{bottom:708.532504pt;}
.yd{bottom:708.854574pt;}
.y18b{bottom:710.120289pt;}
.yb4{bottom:710.607639pt;}
.y115{bottom:712.021897pt;}
.y153{bottom:712.034430pt;}
.yaf{bottom:712.524902pt;}
.y1cc{bottom:716.745620pt;}
.y208{bottom:717.062983pt;}
.y48{bottom:717.480306pt;}
.ycb{bottom:718.653564pt;}
.y18a{bottom:723.448289pt;}
.y114{bottom:725.349897pt;}
.y152{bottom:725.362430pt;}
.yc{bottom:725.521240pt;}
.yb0{bottom:726.174154pt;}
.y1cb{bottom:730.073620pt;}
.y207{bottom:730.390983pt;}
.y11b{bottom:733.499837pt;}
.y47{bottom:734.146973pt;}
.yca{bottom:735.320231pt;}
.y189{bottom:736.776289pt;}
.y113{bottom:738.677897pt;}
.y151{bottom:738.690430pt;}
.y1ca{bottom:743.401620pt;}
.y206{bottom:743.718983pt;}
.y188{bottom:750.104289pt;}
.y46{bottom:750.813639pt;}
.yc9{bottom:751.986898pt;}
.y1c9{bottom:756.729620pt;}
.y205{bottom:757.046983pt;}
.y187{bottom:763.432289pt;}
.yb{bottom:764.794803pt;}
.y45{bottom:767.480306pt;}
.yc8{bottom:768.653564pt;}
.y1c8{bottom:770.057620pt;}
.y204{bottom:770.374983pt;}
.y186{bottom:776.760289pt;}
.ya{bottom:778.122803pt;}
.y1c7{bottom:783.385620pt;}
.y203{bottom:783.702983pt;}
.y44{bottom:784.146973pt;}
.yc7{bottom:785.320231pt;}
.y185{bottom:790.088289pt;}
.y1c6{bottom:796.713620pt;}
.y202{bottom:797.030983pt;}
.y43{bottom:800.813639pt;}
.yc6{bottom:801.986898pt;}
.y184{bottom:803.416289pt;}
.y1c5{bottom:810.041620pt;}
.y201{bottom:810.358983pt;}
.y9{bottom:815.989502pt;}
.y183{bottom:816.744289pt;}
.y42{bottom:817.480306pt;}
.yc5{bottom:818.653564pt;}
.y1c4{bottom:823.369620pt;}
.y200{bottom:823.686983pt;}
.y182{bottom:830.072289pt;}
.yf4{bottom:830.577639pt;}
.y8{bottom:832.656169pt;}
.y41{bottom:834.146973pt;}
.yc4{bottom:835.320231pt;}
.y1c3{bottom:836.697620pt;}
.y1ff{bottom:837.014983pt;}
.y181{bottom:843.400289pt;}
.y1c2{bottom:850.025620pt;}
.y1fe{bottom:850.342983pt;}
.y40{bottom:850.813639pt;}
.yc3{bottom:851.986898pt;}
.yfb{bottom:855.580246pt;}
.y180{bottom:856.728289pt;}
.y1c1{bottom:863.353620pt;}
.y1fd{bottom:863.670983pt;}
.y3f{bottom:867.480306pt;}
.yc2{bottom:868.653564pt;}
.y17f{bottom:870.056289pt;}
.yfa{bottom:872.285579pt;}
.y7{bottom:872.377441pt;}
.y1c0{bottom:876.681620pt;}
.y1fc{bottom:876.998983pt;}
.y17e{bottom:883.384289pt;}
.y3e{bottom:884.146973pt;}
.yc1{bottom:885.320231pt;}
.yf9{bottom:888.922913pt;}
.yf3{bottom:889.012306pt;}
.y1bf{bottom:890.009620pt;}
.y1fb{bottom:890.326983pt;}
.y6{bottom:896.377441pt;}
.y17d{bottom:896.712289pt;}
.y3d{bottom:900.813639pt;}
.yc0{bottom:901.986898pt;}
.yf2{bottom:902.340306pt;}
.y1be{bottom:903.337620pt;}
.y1fa{bottom:903.654983pt;}
.yf8{bottom:905.560246pt;}
.y17c{bottom:910.040289pt;}
.yf1{bottom:915.668306pt;}
.y1bd{bottom:916.665620pt;}
.y1f9{bottom:916.982983pt;}
.y3c{bottom:917.480306pt;}
.ybf{bottom:918.653564pt;}
.yf7{bottom:922.197579pt;}
.y17b{bottom:923.368289pt;}
.yf0{bottom:928.996306pt;}
.y1bc{bottom:929.993620pt;}
.y1f8{bottom:930.310983pt;}
.y3b{bottom:934.146973pt;}
.ybe{bottom:935.320231pt;}
.y17a{bottom:936.696289pt;}
.yf6{bottom:938.834913pt;}
.yef{bottom:942.324306pt;}
.y1bb{bottom:943.321620pt;}
.y1f7{bottom:943.638983pt;}
.y3a{bottom:950.813639pt;}
.ybd{bottom:951.986898pt;}
.yee{bottom:955.652306pt;}
.y5{bottom:956.561849pt;}
.y1ba{bottom:956.649620pt;}
.y1f6{bottom:956.966983pt;}
.yf5{bottom:963.802246pt;}
.y179{bottom:966.696289pt;}
.y39{bottom:967.480306pt;}
.ybc{bottom:968.653564pt;}
.yed{bottom:968.980306pt;}
.y1b9{bottom:969.977620pt;}
.y1f5{bottom:970.294983pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y38{bottom:1002.206543pt;}
.h16{height:18.917606pt;}
.h10{height:22.403733pt;}
.h2{height:30.080000pt;}
.h12{height:31.097405pt;}
.he{height:32.005333pt;}
.hf{height:32.760417pt;}
.h13{height:34.466309pt;}
.hd{height:35.394132pt;}
.ha{height:37.653333pt;}
.h4{height:39.712000pt;}
.h19{height:40.165333pt;}
.h15{height:43.520000pt;}
.h18{height:46.376000pt;}
.hb{height:47.253333pt;}
.h17{height:47.826667pt;}
.h3{height:48.766452pt;}
.h5{height:49.298667pt;}
.h11{height:52.448000pt;}
.h8{height:52.746667pt;}
.h9{height:54.560000pt;}
.h7{height:57.658667pt;}
.hc{height:63.296000pt;}
.h6{height:75.605333pt;}
.h14{height:330.053324pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:657.637329pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:45.353205pt;}
.x3{left:68.031469pt;}
.x9{left:69.996800pt;}
.x4{left:75.717199pt;}
.xa{left:83.138135pt;}
.x5{left:85.606262pt;}
.x8{left:86.929867pt;}
.x15{left:90.709469pt;}
.xd{left:135.402130pt;}
.xe{left:158.398936pt;}
.xf{left:160.081658pt;}
.x12{left:238.110802pt;}
.xc{left:264.459859pt;}
.x11{left:298.701197pt;}
.x13{left:310.507731pt;}
.x6{left:408.189087pt;}
.xb{left:423.298124pt;}
.x7{left:425.763875pt;}
.x14{left:430.866924pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
}




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