
    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_fce7802a764ba6ec546beef6.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_c60f55dfb7e6fcb7e4ba2882.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_04c56d41e77b5663c0af6a81.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_35c1e5c160e45ef06847bde0.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_0cc539a5eeed934fb14f8772.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_09e25b79ca1574b7be7b42e8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.732000;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_ed3aa23b9d7bb6ccab118210.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a9785fbf0253a6e3bb2acdf3.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_e2be2f13f12356db5336609d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_da45c7c55f741c179a4079c5.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a668e17640d4bb82c8e87ad3.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_d85157230abe65f2ae787962.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.677246;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_24b88a95c7302f0ce584e468.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8457d8b21a53692eb93e5ca5.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_86fb036e4b0c87fb2dde24fa.woff2')format("woff");}.fff{font-family:fff;line-height:0.959473;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400011px;}
.v3{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.018000px;}
.v1{vertical-align:24.000000px;}
.ls3c{letter-spacing:-1.140000px;}
.ls3b{letter-spacing:-0.720000px;}
.ls4e{letter-spacing:-0.480000px;}
.ls15{letter-spacing:-0.420000px;}
.ls60{letter-spacing:-0.408000px;}
.ls32{letter-spacing:-0.360000px;}
.ls62{letter-spacing:-0.357000px;}
.ls5f{letter-spacing:-0.306000px;}
.ls31{letter-spacing:-0.300000px;}
.ls70{letter-spacing:-0.255000px;}
.ls16{letter-spacing:-0.240000px;}
.ls63{letter-spacing:-0.204000px;}
.ls19{letter-spacing:-0.180000px;}
.ls5e{letter-spacing:-0.153000px;}
.ls17{letter-spacing:-0.120000px;}
.ls6f{letter-spacing:-0.102000px;}
.ls18{letter-spacing:-0.060000px;}
.ls61{letter-spacing:-0.051000px;}
.ls14{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000085px;}
.ls4f{letter-spacing:0.030000px;}
.ls27{letter-spacing:0.042000px;}
.ls5b{letter-spacing:0.051000px;}
.ls5{letter-spacing:0.060000px;}
.ls76{letter-spacing:0.076500px;}
.ls2e{letter-spacing:0.090000px;}
.ls5d{letter-spacing:0.102000px;}
.ls3{letter-spacing:0.120000px;}
.ls65{letter-spacing:0.153000px;}
.ls38{letter-spacing:0.168000px;}
.ls34{letter-spacing:0.174000px;}
.ls13{letter-spacing:0.178791px;}
.ls7{letter-spacing:0.180000px;}
.ls5a{letter-spacing:0.204000px;}
.ls3e{letter-spacing:0.210000px;}
.ls2{letter-spacing:0.240000px;}
.ls12{letter-spacing:0.255000px;}
.ls59{letter-spacing:0.264000px;}
.ls22{letter-spacing:0.270000px;}
.ls67{letter-spacing:0.280500px;}
.ls37{letter-spacing:0.281486px;}
.ls64{letter-spacing:0.288000px;}
.ls3d{letter-spacing:0.299381px;}
.ls6{letter-spacing:0.300000px;}
.ls50{letter-spacing:0.306000px;}
.ls29{letter-spacing:0.311982px;}
.ls2d{letter-spacing:0.330000px;}
.ls51{letter-spacing:0.331500px;}
.ls58{letter-spacing:0.357000px;}
.lsb{letter-spacing:0.360000px;}
.ls5c{letter-spacing:0.408000px;}
.ls4{letter-spacing:0.420000px;}
.ls71{letter-spacing:0.459000px;}
.lsc{letter-spacing:0.480000px;}
.ls1a{letter-spacing:0.510000px;}
.lsd{letter-spacing:0.540000px;}
.ls6b{letter-spacing:0.561000px;}
.ls1c{letter-spacing:0.600000px;}
.ls54{letter-spacing:0.612000px;}
.ls40{letter-spacing:0.630000px;}
.ls8{letter-spacing:0.660000px;}
.ls57{letter-spacing:0.663000px;}
.ls44{letter-spacing:0.672000px;}
.ls52{letter-spacing:0.714000px;}
.ls11{letter-spacing:0.720000px;}
.ls66{letter-spacing:0.765000px;}
.ls2b{letter-spacing:0.780000px;}
.ls55{letter-spacing:0.790500px;}
.ls30{letter-spacing:0.810000px;}
.ls69{letter-spacing:0.816000px;}
.ls24{letter-spacing:0.840000px;}
.ls6e{letter-spacing:0.841500px;}
.ls73{letter-spacing:0.867000px;}
.ls23{letter-spacing:0.870000px;}
.ls75{letter-spacing:0.892500px;}
.ls25{letter-spacing:0.900000px;}
.ls53{letter-spacing:0.918000px;}
.ls35{letter-spacing:0.930000px;}
.ls9{letter-spacing:0.960000px;}
.ls6c{letter-spacing:0.969000px;}
.ls20{letter-spacing:0.990000px;}
.ls74{letter-spacing:0.994500px;}
.ls1d{letter-spacing:1.020000px;}
.ls10{letter-spacing:1.050000px;}
.ls6a{letter-spacing:1.071000px;}
.lsf{letter-spacing:1.080000px;}
.ls42{letter-spacing:1.092000px;}
.ls28{letter-spacing:1.140000px;}
.lsa{letter-spacing:1.170000px;}
.ls56{letter-spacing:1.173000px;}
.ls1e{letter-spacing:1.200000px;}
.ls68{letter-spacing:1.224000px;}
.ls33{letter-spacing:1.260000px;}
.ls3f{letter-spacing:1.266060px;}
.ls2a{letter-spacing:1.320000px;}
.ls6d{letter-spacing:1.326000px;}
.ls1f{letter-spacing:1.380000px;}
.ls47{letter-spacing:1.410000px;}
.ls1b{letter-spacing:1.440000px;}
.ls72{letter-spacing:1.479000px;}
.ls36{letter-spacing:1.500000px;}
.ls2f{letter-spacing:1.560000px;}
.ls21{letter-spacing:1.620000px;}
.ls48{letter-spacing:1.680000px;}
.ls41{letter-spacing:1.688999px;}
.ls2c{letter-spacing:1.740000px;}
.ls49{letter-spacing:1.800000px;}
.ls4a{letter-spacing:1.830000px;}
.ls4c{letter-spacing:1.860000px;}
.ls45{letter-spacing:1.920000px;}
.ls4b{letter-spacing:1.980000px;}
.lse{letter-spacing:2.010000px;}
.ls43{letter-spacing:2.064527px;}
.ls4d{letter-spacing:2.100000px;}
.ls46{letter-spacing:2.220000px;}
.ls26{letter-spacing:2.280000px;}
.ls0{letter-spacing:3.990000px;}
.ls3a{letter-spacing:218.586000px;}
.ls39{letter-spacing:367.148994px;}
.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;}
}
.ws2b{word-spacing:-60.000000px;}
.ws74{word-spacing:-16.500000px;}
.ws93{word-spacing:-16.200000px;}
.ws7{word-spacing:-16.080000px;}
.ws82{word-spacing:-15.660000px;}
.ws29{word-spacing:-15.480000px;}
.ws28{word-spacing:-15.360000px;}
.ws2a{word-spacing:-15.300000px;}
.ws2d{word-spacing:-15.120000px;}
.ws2c{word-spacing:-15.000000px;}
.ws26{word-spacing:-14.880000px;}
.ws92{word-spacing:-14.820000px;}
.ws71{word-spacing:-14.760000px;}
.ws27{word-spacing:-14.580000px;}
.ws5f{word-spacing:-14.280000px;}
.ws60{word-spacing:-13.860000px;}
.ws96{word-spacing:-13.005000px;}
.wsac{word-spacing:-12.444000px;}
.ws2{word-spacing:-12.420000px;}
.ws76{word-spacing:-11.592000px;}
.ws5{word-spacing:-11.520000px;}
.ws77{word-spacing:-11.172000px;}
.ws75{word-spacing:-11.130000px;}
.ws73{word-spacing:-10.920000px;}
.ws72{word-spacing:-10.710000px;}
.ws61{word-spacing:-10.668000px;}
.ws95{word-spacing:-10.404000px;}
.ws94{word-spacing:-10.047000px;}
.ws1{word-spacing:-9.996000px;}
.ws3{word-spacing:-8.694000px;}
.ws53{word-spacing:-7.500000px;}
.ws86{word-spacing:-2.220000px;}
.ws88{word-spacing:-1.920000px;}
.ws8{word-spacing:-1.890000px;}
.ws8b{word-spacing:-1.860000px;}
.ws83{word-spacing:-1.740000px;}
.ws8d{word-spacing:-1.620000px;}
.wsb{word-spacing:-1.500000px;}
.ws2f{word-spacing:-1.440000px;}
.ws36{word-spacing:-1.380000px;}
.ws9e{word-spacing:-1.326000px;}
.ws3f{word-spacing:-1.320000px;}
.ws9d{word-spacing:-1.275000px;}
.ws59{word-spacing:-1.260000px;}
.wsb4{word-spacing:-1.224000px;}
.wsf{word-spacing:-1.200000px;}
.wsb5{word-spacing:-1.173000px;}
.wse{word-spacing:-1.140000px;}
.wscc{word-spacing:-1.122000px;}
.ws1c{word-spacing:-1.080000px;}
.wsaa{word-spacing:-1.071000px;}
.ws33{word-spacing:-1.020000px;}
.wsa7{word-spacing:-0.969000px;}
.ws12{word-spacing:-0.960000px;}
.wsad{word-spacing:-0.918000px;}
.ws6a{word-spacing:-0.900000px;}
.ws4b{word-spacing:-0.840000px;}
.ws5c{word-spacing:-0.780000px;}
.wsab{word-spacing:-0.765000px;}
.ws10{word-spacing:-0.720000px;}
.wsa4{word-spacing:-0.714000px;}
.ws3c{word-spacing:-0.660000px;}
.ws24{word-spacing:-0.612000px;}
.ws1f{word-spacing:-0.600000px;}
.wsa{word-spacing:-0.570000px;}
.ws17{word-spacing:-0.540000px;}
.wsa8{word-spacing:-0.510000px;}
.ws91{word-spacing:-0.480000px;}
.ws23{word-spacing:-0.420000px;}
.wsae{word-spacing:-0.408000px;}
.ws15{word-spacing:-0.360000px;}
.wsc6{word-spacing:-0.306000px;}
.ws4{word-spacing:-0.300000px;}
.wsa6{word-spacing:-0.264000px;}
.wsb6{word-spacing:-0.255000px;}
.ws21{word-spacing:-0.240000px;}
.wsa1{word-spacing:-0.204000px;}
.ws14{word-spacing:-0.180000px;}
.wsb2{word-spacing:-0.153000px;}
.wsd{word-spacing:-0.120000px;}
.ws6{word-spacing:-0.072000px;}
.ws3a{word-spacing:-0.060000px;}
.wsbd{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.ws9{word-spacing:0.000000px;}
.wsa0{word-spacing:0.051000px;}
.ws1e{word-spacing:0.060000px;}
.ws19{word-spacing:0.120000px;}
.wsb0{word-spacing:0.153000px;}
.ws6e{word-spacing:0.180000px;}
.wsc5{word-spacing:0.204000px;}
.ws41{word-spacing:0.240000px;}
.ws7a{word-spacing:0.300000px;}
.wsc1{word-spacing:0.357000px;}
.ws6b{word-spacing:0.360000px;}
.ws48{word-spacing:0.420000px;}
.ws9c{word-spacing:0.459000px;}
.ws8e{word-spacing:0.480000px;}
.wsbc{word-spacing:0.510000px;}
.ws79{word-spacing:0.540000px;}
.ws4d{word-spacing:0.600000px;}
.ws3e{word-spacing:0.660000px;}
.ws1b{word-spacing:0.720000px;}
.ws3d{word-spacing:0.780000px;}
.ws9b{word-spacing:0.816000px;}
.ws1a{word-spacing:0.840000px;}
.ws5e{word-spacing:0.867000px;}
.ws56{word-spacing:0.900000px;}
.wsc2{word-spacing:0.918000px;}
.ws7b{word-spacing:0.960000px;}
.wsa5{word-spacing:0.969000px;}
.wsd1{word-spacing:1.020000px;}
.wsd2{word-spacing:1.071000px;}
.ws58{word-spacing:1.080000px;}
.wscf{word-spacing:1.122000px;}
.ws16{word-spacing:1.140000px;}
.wsa9{word-spacing:1.173000px;}
.ws98{word-spacing:1.275000px;}
.ws44{word-spacing:1.320000px;}
.ws7e{word-spacing:1.326000px;}
.wsaf{word-spacing:1.377000px;}
.ws4c{word-spacing:1.380000px;}
.wsc9{word-spacing:1.428000px;}
.ws38{word-spacing:1.440000px;}
.wsa3{word-spacing:1.479000px;}
.wsc{word-spacing:1.500000px;}
.wsa2{word-spacing:1.530000px;}
.ws8f{word-spacing:1.560000px;}
.wsbf{word-spacing:1.581000px;}
.ws5d{word-spacing:1.620000px;}
.wsc8{word-spacing:1.632000px;}
.ws69{word-spacing:1.680000px;}
.wsb8{word-spacing:1.683000px;}
.ws99{word-spacing:1.734000px;}
.ws6f{word-spacing:1.740000px;}
.wsd6{word-spacing:1.785000px;}
.ws43{word-spacing:1.800000px;}
.ws4a{word-spacing:1.860000px;}
.ws51{word-spacing:1.920000px;}
.wsb1{word-spacing:1.938000px;}
.wsc7{word-spacing:1.989000px;}
.ws40{word-spacing:2.040000px;}
.wsba{word-spacing:2.091000px;}
.ws46{word-spacing:2.100000px;}
.ws52{word-spacing:2.160000px;}
.ws68{word-spacing:2.220000px;}
.wsc4{word-spacing:2.244000px;}
.ws49{word-spacing:2.280000px;}
.ws4f{word-spacing:2.340000px;}
.ws45{word-spacing:2.400000px;}
.ws22{word-spacing:2.460000px;}
.ws6d{word-spacing:2.520000px;}
.wsce{word-spacing:2.550000px;}
.ws6c{word-spacing:2.580000px;}
.wsd4{word-spacing:2.601000px;}
.ws30{word-spacing:2.640000px;}
.ws9a{word-spacing:2.652000px;}
.ws11{word-spacing:2.700000px;}
.wsb3{word-spacing:2.703000px;}
.ws31{word-spacing:2.760000px;}
.wsca{word-spacing:2.805000px;}
.ws8a{word-spacing:2.820000px;}
.ws54{word-spacing:2.880000px;}
.wsd0{word-spacing:2.907000px;}
.ws20{word-spacing:2.940000px;}
.wscb{word-spacing:2.958000px;}
.ws32{word-spacing:3.000000px;}
.wsc0{word-spacing:3.009000px;}
.ws84{word-spacing:3.060000px;}
.wsd5{word-spacing:3.111000px;}
.ws39{word-spacing:3.120000px;}
.ws1d{word-spacing:3.180000px;}
.ws35{word-spacing:3.240000px;}
.ws5a{word-spacing:3.300000px;}
.ws97{word-spacing:3.360000px;}
.ws89{word-spacing:3.420000px;}
.ws50{word-spacing:3.480000px;}
.ws87{word-spacing:3.540000px;}
.wsbe{word-spacing:3.570000px;}
.ws13{word-spacing:3.600000px;}
.ws34{word-spacing:3.660000px;}
.ws42{word-spacing:3.780000px;}
.ws9f{word-spacing:3.825000px;}
.ws4e{word-spacing:3.840000px;}
.ws66{word-spacing:3.900000px;}
.wsb9{word-spacing:3.927000px;}
.wsd3{word-spacing:4.029000px;}
.wsd7{word-spacing:4.131000px;}
.ws8c{word-spacing:4.140000px;}
.wsb7{word-spacing:4.182000px;}
.wsbb{word-spacing:4.335000px;}
.ws55{word-spacing:4.380000px;}
.ws85{word-spacing:4.620000px;}
.wsc3{word-spacing:4.743000px;}
.ws37{word-spacing:4.800000px;}
.ws2e{word-spacing:4.920000px;}
.ws7c{word-spacing:4.980000px;}
.ws67{word-spacing:5.040000px;}
.ws90{word-spacing:5.100000px;}
.ws70{word-spacing:5.220000px;}
.ws78{word-spacing:5.340000px;}
.wscd{word-spacing:5.355000px;}
.ws80{word-spacing:5.406000px;}
.ws5b{word-spacing:5.640000px;}
.ws3b{word-spacing:5.940000px;}
.ws7f{word-spacing:6.375000px;}
.ws57{word-spacing:6.420000px;}
.ws7d{word-spacing:6.936000px;}
.ws18{word-spacing:7.740000px;}
.ws47{word-spacing:9.180000px;}
.ws81{word-spacing:9.996000px;}
.wsd8{word-spacing:13.515000px;}
.wsd9{word-spacing:17.595000px;}
.ws25{word-spacing:72.267000px;}
.ws63{word-spacing:154.683000px;}
.ws65{word-spacing:180.183000px;}
.ws64{word-spacing:218.433000px;}
.ws62{word-spacing:354.398994px;}
._b{margin-left:-72.675000px;}
._8{margin-left:-16.575000px;}
._26{margin-left:-13.140000px;}
._11{margin-left:-10.380000px;}
._f{margin-left:-8.376036px;}
._d{margin-left:-6.936018px;}
._e{margin-left:-5.928027px;}
._3{margin-left:-4.620000px;}
._2{margin-left:-2.880000px;}
._0{margin-left:-1.632000px;}
._1{width:1.728000px;}
._6{width:2.940000px;}
._5{width:4.194000px;}
._7{width:5.232000px;}
._28{width:7.680000px;}
._29{width:10.455000px;}
._27{width:12.814214px;}
._2a{width:14.178000px;}
._10{width:15.606000px;}
._9{width:18.360000px;}
._4{width:40.085409px;}
._a{width:54.621000px;}
._21{width:167.433000px;}
._15{width:192.933000px;}
._1d{width:231.183000px;}
._23{width:316.148994px;}
._24{width:337.620000px;}
._16{width:341.648994px;}
._13{width:349.306236px;}
._19{width:365.115000px;}
._18{width:367.148994px;}
._14{width:380.025000px;}
._17{width:417.078000px;}
._25{width:424.116000px;}
._1b{width:480.222000px;}
._22{width:531.726000px;}
._1c{width:554.292000px;}
._20{width:561.204000px;}
._1a{width:573.645000px;}
._1e{width:599.427000px;}
._1f{width:806.310000px;}
._12{width:903.969625px;}
._c{width:2663.934000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:35.699999px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs3{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y34{bottom:112.944300px;}
.yf0{bottom:113.515804px;}
.yf7{bottom:113.581805px;}
.yd9{bottom:113.697615px;}
.y109{bottom:114.735260px;}
.y9d{bottom:114.874786px;}
.y2e{bottom:122.461349px;}
.y33{bottom:127.938300px;}
.yef{bottom:128.509804px;}
.yf6{bottom:128.575805px;}
.y1b3{bottom:131.971095px;}
.y86{bottom:132.165298px;}
.y108{bottom:133.485260px;}
.y9c{bottom:133.624786px;}
.y2d{bottom:141.211349px;}
.ye7{bottom:141.608843px;}
.yf5{bottom:143.569805px;}
.y1b2{bottom:146.965095px;}
.y32{bottom:148.032303px;}
.y85{bottom:150.915298px;}
.y68{bottom:150.915344px;}
.y107{bottom:152.235260px;}
.y9b{bottom:152.374786px;}
.y172{bottom:154.143325px;}
.y2c{bottom:159.961349px;}
.ye6{bottom:160.402343px;}
.y1b1{bottom:161.959095px;}
.y171{bottom:169.137325px;}
.y84{bottom:169.665298px;}
.y67{bottom:169.665344px;}
.y106{bottom:170.985260px;}
.y9a{bottom:171.124786px;}
.y31{bottom:173.033404px;}
.y1b0{bottom:176.953095px;}
.y2b{bottom:178.711349px;}
.ye5{bottom:179.119343px;}
.y170{bottom:184.131325px;}
.y30{bottom:188.027404px;}
.y83{bottom:188.415298px;}
.y66{bottom:188.415344px;}
.y105{bottom:189.735260px;}
.y99{bottom:189.874786px;}
.y1af{bottom:191.947095px;}
.y2a{bottom:197.461349px;}
.ye4{bottom:197.836343px;}
.y16f{bottom:199.125325px;}
.y1ae{bottom:206.941095px;}
.y82{bottom:207.165298px;}
.y65{bottom:207.165344px;}
.y104{bottom:208.485260px;}
.y98{bottom:208.624786px;}
.y16e{bottom:214.119325px;}
.y29{bottom:216.211349px;}
.ye3{bottom:216.553343px;}
.y2f{bottom:218.844154px;}
.y134{bottom:220.110008px;}
.y1ad{bottom:221.935095px;}
.y81{bottom:225.915298px;}
.y64{bottom:225.915344px;}
.y103{bottom:227.235260px;}
.y97{bottom:227.374786px;}
.y16d{bottom:229.113325px;}
.y28{bottom:234.961349px;}
.y133{bottom:235.104008px;}
.ye2{bottom:235.270343px;}
.y1ac{bottom:236.929095px;}
.y16c{bottom:244.107325px;}
.y80{bottom:244.665298px;}
.y63{bottom:244.665344px;}
.y102{bottom:245.985260px;}
.y96{bottom:246.124786px;}
.y132{bottom:250.098008px;}
.y1ab{bottom:251.923095px;}
.y27{bottom:253.711349px;}
.ye1{bottom:253.987343px;}
.y16b{bottom:259.101325px;}
.y7f{bottom:263.415298px;}
.y62{bottom:263.415344px;}
.y101{bottom:264.735260px;}
.y95{bottom:264.874786px;}
.y131{bottom:265.092008px;}
.y1aa{bottom:266.917095px;}
.y25{bottom:272.461349px;}
.ye0{bottom:272.704343px;}
.y16a{bottom:274.095325px;}
.y130{bottom:280.086008px;}
.y1a9{bottom:281.911095px;}
.y7e{bottom:282.165298px;}
.y61{bottom:282.165344px;}
.y100{bottom:283.485260px;}
.y94{bottom:283.624786px;}
.y169{bottom:289.089325px;}
.y24{bottom:291.211349px;}
.ydf{bottom:291.421343px;}
.y12f{bottom:295.080008px;}
.y1a8{bottom:296.905095px;}
.y7d{bottom:300.915298px;}
.y60{bottom:300.915344px;}
.yff{bottom:302.235260px;}
.y93{bottom:302.374786px;}
.y168{bottom:304.083325px;}
.y23{bottom:309.961349px;}
.y12e{bottom:310.074008px;}
.yde{bottom:310.138343px;}
.y1e8{bottom:311.536823px;}
.y1a7{bottom:311.899095px;}
.y167{bottom:319.077325px;}
.y7c{bottom:319.665298px;}
.y5f{bottom:319.665344px;}
.yfe{bottom:320.985260px;}
.y92{bottom:321.124786px;}
.y12d{bottom:325.068008px;}
.y1e7{bottom:326.530823px;}
.y1a6{bottom:326.893095px;}
.y22{bottom:328.711349px;}
.ydd{bottom:328.855343px;}
.y166{bottom:334.071325px;}
.y7b{bottom:338.415298px;}
.y5e{bottom:338.415344px;}
.yfd{bottom:339.735260px;}
.y91{bottom:339.874786px;}
.y12c{bottom:340.062008px;}
.y1e6{bottom:341.524823px;}
.y1a5{bottom:341.887095px;}
.yd8{bottom:345.926115px;}
.y21{bottom:347.461349px;}
.ydc{bottom:347.572343px;}
.y165{bottom:349.065325px;}
.y12b{bottom:355.056008px;}
.y1e5{bottom:356.518823px;}
.y1a4{bottom:356.881095px;}
.y7a{bottom:357.165298px;}
.y5d{bottom:357.165344px;}
.yfc{bottom:358.485260px;}
.y90{bottom:358.624786px;}
.yd7{bottom:360.920115px;}
.y164{bottom:364.059325px;}
.y20{bottom:366.211349px;}
.y12a{bottom:370.050008px;}
.y218{bottom:370.964556px;}
.y1e4{bottom:371.512823px;}
.y1a3{bottom:371.875095px;}
.ydb{bottom:375.660593px;}
.yd6{bottom:375.914115px;}
.y79{bottom:375.915298px;}
.y5c{bottom:375.915344px;}
.yfb{bottom:377.235260px;}
.y8f{bottom:377.374786px;}
.y163{bottom:379.053325px;}
.y1f{bottom:384.961349px;}
.y129{bottom:385.044008px;}
.y217{bottom:385.958556px;}
.y1e3{bottom:386.506823px;}
.y1a2{bottom:386.869095px;}
.yd5{bottom:390.908115px;}
.y162{bottom:394.047325px;}
.y78{bottom:394.665298px;}
.y5b{bottom:394.665344px;}
.yfa{bottom:395.985260px;}
.y8e{bottom:396.124786px;}
.yda{bottom:400.076843px;}
.y1e2{bottom:401.500823px;}
.y1a1{bottom:401.863095px;}
.y1e{bottom:403.711349px;}
.yd4{bottom:405.902115px;}
.y161{bottom:409.041325px;}
.y77{bottom:413.415298px;}
.y5a{bottom:413.415344px;}
.yf9{bottom:414.735260px;}
.y8d{bottom:414.874786px;}
.y1e1{bottom:416.494823px;}
.y216{bottom:416.800806px;}
.y1a0{bottom:416.857095px;}
.y1d{bottom:422.461349px;}
.y160{bottom:424.035325px;}
.y128{bottom:426.239258px;}
.y1e0{bottom:431.488823px;}
.y215{bottom:431.794806px;}
.y19f{bottom:431.851095px;}
.y76{bottom:432.165298px;}
.y59{bottom:432.165344px;}
.yf8{bottom:433.485260px;}
.y8c{bottom:433.624786px;}
.y15f{bottom:439.029325px;}
.y1c{bottom:441.211349px;}
.y1df{bottom:446.482823px;}
.y214{bottom:446.788806px;}
.y19e{bottom:446.845095px;}
.y75{bottom:450.915298px;}
.y58{bottom:450.915344px;}
.yc2{bottom:452.235260px;}
.yd3{bottom:452.235306px;}
.y8b{bottom:452.374786px;}
.y15e{bottom:454.023325px;}
.y127{bottom:456.201758px;}
.y26{bottom:459.961349px;}
.y1de{bottom:461.476823px;}
.y213{bottom:461.782806px;}
.y19d{bottom:461.839095px;}
.y15d{bottom:469.017325px;}
.y74{bottom:469.665298px;}
.y57{bottom:469.665344px;}
.yc1{bottom:470.985260px;}
.yd2{bottom:470.985306px;}
.y9f{bottom:471.124786px;}
.y1dd{bottom:476.470823px;}
.y212{bottom:476.776806px;}
.y19c{bottom:476.833095px;}
.y1b{bottom:478.711349px;}
.y15c{bottom:484.011325px;}
.y126{bottom:486.164258px;}
.y73{bottom:488.415298px;}
.y56{bottom:488.415344px;}
.yc0{bottom:489.735260px;}
.yd1{bottom:489.735306px;}
.y8a{bottom:489.874786px;}
.y1dc{bottom:491.464823px;}
.y211{bottom:491.770806px;}
.y19b{bottom:491.827095px;}
.y15b{bottom:499.005325px;}
.y125{bottom:501.158258px;}
.y1db{bottom:506.458823px;}
.y210{bottom:506.764806px;}
.y19a{bottom:506.821095px;}
.y72{bottom:507.165298px;}
.y55{bottom:507.165344px;}
.ybf{bottom:508.485260px;}
.yd0{bottom:508.485306px;}
.y9e{bottom:508.624786px;}
.y15a{bottom:513.999325px;}
.y1da{bottom:521.452823px;}
.y20f{bottom:521.758806px;}
.y199{bottom:521.815095px;}
.y71{bottom:525.915298px;}
.y54{bottom:525.915344px;}
.ybe{bottom:527.235260px;}
.ycf{bottom:527.235306px;}
.y89{bottom:527.374786px;}
.y159{bottom:528.993325px;}
.y124{bottom:531.120758px;}
.y1a{bottom:534.961395px;}
.y1d9{bottom:536.446823px;}
.y20e{bottom:536.752806px;}
.y198{bottom:536.809095px;}
.y158{bottom:543.987325px;}
.y70{bottom:544.665298px;}
.y53{bottom:544.665344px;}
.ybd{bottom:545.985260px;}
.yce{bottom:545.985306px;}
.y88{bottom:546.124786px;}
.y1d8{bottom:551.440823px;}
.y20d{bottom:551.746806px;}
.y197{bottom:551.803095px;}
.y157{bottom:558.981325px;}
.y6f{bottom:563.415298px;}
.y52{bottom:563.415344px;}
.ybc{bottom:564.735260px;}
.ycd{bottom:564.735306px;}
.yee{bottom:564.870306px;}
.y123{bottom:564.870758px;}
.y1d7{bottom:566.434823px;}
.y20c{bottom:566.740806px;}
.y196{bottom:566.797095px;}
.y19{bottom:572.461395px;}
.y156{bottom:573.975325px;}
.y1d6{bottom:581.428823px;}
.y20b{bottom:581.734806px;}
.y195{bottom:581.791095px;}
.y6e{bottom:582.165298px;}
.y51{bottom:582.165344px;}
.ybb{bottom:583.485260px;}
.ycc{bottom:583.485306px;}
.yed{bottom:583.620306px;}
.y155{bottom:588.969325px;}
.y18{bottom:591.211395px;}
.y1d5{bottom:596.422823px;}
.y20a{bottom:596.728806px;}
.y194{bottom:596.785095px;}
.y6d{bottom:600.915298px;}
.y50{bottom:600.915344px;}
.yba{bottom:602.235260px;}
.ycb{bottom:602.235306px;}
.yec{bottom:602.370306px;}
.y122{bottom:602.519733px;}
.y154{bottom:603.963325px;}
.ya1{bottom:605.356800px;}
.y17{bottom:609.961395px;}
.y1d4{bottom:611.416823px;}
.y209{bottom:611.722806px;}
.y193{bottom:611.779095px;}
.y121{bottom:617.513733px;}
.y153{bottom:618.957325px;}
.y6c{bottom:619.665298px;}
.y4f{bottom:619.665344px;}
.ya0{bottom:620.350800px;}
.yb9{bottom:620.985260px;}
.yca{bottom:620.985306px;}
.yeb{bottom:621.120306px;}
.y1d3{bottom:626.410823px;}
.y208{bottom:626.716806px;}
.y192{bottom:626.773095px;}
.y16{bottom:628.711395px;}
.y120{bottom:632.507733px;}
.y152{bottom:633.951325px;}
.y6b{bottom:638.415298px;}
.y4e{bottom:638.415344px;}
.yb8{bottom:639.735260px;}
.yc9{bottom:639.735306px;}
.yea{bottom:639.870306px;}
.y1d2{bottom:641.404823px;}
.y207{bottom:641.710806px;}
.y191{bottom:641.767095px;}
.y15{bottom:647.461395px;}
.y151{bottom:648.945325px;}
.y1d1{bottom:656.398823px;}
.y206{bottom:656.704806px;}
.y190{bottom:656.761095px;}
.y4d{bottom:657.165344px;}
.yb7{bottom:658.485260px;}
.yc8{bottom:658.485306px;}
.y150{bottom:663.939325px;}
.y14{bottom:666.211395px;}
.y11f{bottom:666.218733px;}
.y1d0{bottom:671.392823px;}
.y205{bottom:671.698806px;}
.y18f{bottom:671.755095px;}
.y6a{bottom:675.915298px;}
.y4c{bottom:675.915344px;}
.yb6{bottom:677.235260px;}
.yc7{bottom:677.235306px;}
.y14f{bottom:678.933325px;}
.y11e{bottom:681.212733px;}
.y13{bottom:684.961395px;}
.y1cf{bottom:686.386823px;}
.y204{bottom:686.692806px;}
.y18e{bottom:686.749095px;}
.y14e{bottom:693.927325px;}
.y4b{bottom:694.665344px;}
.yf4{bottom:695.068781px;}
.yb5{bottom:695.985260px;}
.yc6{bottom:695.985306px;}
.y11d{bottom:696.206733px;}
.y1ce{bottom:701.380823px;}
.y203{bottom:701.686806px;}
.y18d{bottom:701.743095px;}
.y12{bottom:703.711395px;}
.y14d{bottom:708.921325px;}
.yf3{bottom:710.062781px;}
.y11c{bottom:711.200733px;}
.y69{bottom:713.415298px;}
.y4a{bottom:713.415344px;}
.yb4{bottom:714.735260px;}
.yc5{bottom:714.735306px;}
.y1cd{bottom:716.374823px;}
.y202{bottom:716.680806px;}
.y18c{bottom:716.737095px;}
.y11{bottom:722.461395px;}
.y14c{bottom:723.915325px;}
.yf2{bottom:725.056781px;}
.y11b{bottom:726.194733px;}
.y1cc{bottom:731.368823px;}
.y201{bottom:731.674806px;}
.y18b{bottom:731.731095px;}
.y49{bottom:732.165344px;}
.yb3{bottom:733.485260px;}
.yc4{bottom:733.485306px;}
.y14b{bottom:738.909325px;}
.yf1{bottom:740.050781px;}
.y11a{bottom:741.188733px;}
.y10{bottom:741.211395px;}
.y1cb{bottom:746.362823px;}
.y200{bottom:746.668806px;}
.y18a{bottom:746.725095px;}
.y48{bottom:750.915344px;}
.yb2{bottom:752.235260px;}
.y14a{bottom:753.903325px;}
.y119{bottom:756.182733px;}
.yf{bottom:759.961395px;}
.y1ca{bottom:761.356823px;}
.y1ff{bottom:761.662806px;}
.y189{bottom:761.719095px;}
.y149{bottom:768.897325px;}
.y47{bottom:769.665344px;}
.yb1{bottom:770.985260px;}
.y118{bottom:771.176733px;}
.y1c9{bottom:776.350823px;}
.y1fe{bottom:776.656806px;}
.y188{bottom:776.713095px;}
.ye{bottom:778.711395px;}
.y148{bottom:783.891325px;}
.ye9{bottom:785.980760px;}
.y117{bottom:786.170733px;}
.y46{bottom:788.415344px;}
.ye8{bottom:789.735260px;}
.y1c8{bottom:791.344823px;}
.y1fd{bottom:791.650806px;}
.y187{bottom:791.707095px;}
.yd{bottom:797.461395px;}
.y147{bottom:798.885325px;}
.y116{bottom:801.164733px;}
.y1c7{bottom:806.338823px;}
.y1fc{bottom:806.644806px;}
.y186{bottom:806.701095px;}
.y45{bottom:807.165344px;}
.yb0{bottom:808.485260px;}
.y146{bottom:813.879325px;}
.yc{bottom:816.211395px;}
.y1c6{bottom:821.332823px;}
.y1fb{bottom:821.638806px;}
.y185{bottom:821.695095px;}
.y44{bottom:825.915344px;}
.yc3{bottom:827.235260px;}
.y145{bottom:828.873325px;}
.y115{bottom:834.875733px;}
.yb{bottom:834.961395px;}
.y1c5{bottom:836.326823px;}
.y1fa{bottom:836.632806px;}
.y184{bottom:836.689095px;}
.y144{bottom:843.867325px;}
.y43{bottom:844.665344px;}
.yaf{bottom:845.985260px;}
.y114{bottom:849.869733px;}
.y1c4{bottom:851.320823px;}
.y1f9{bottom:851.626806px;}
.y183{bottom:851.683095px;}
.y143{bottom:858.861325px;}
.y42{bottom:863.415344px;}
.yae{bottom:864.735260px;}
.y113{bottom:864.863733px;}
.y1c3{bottom:866.314823px;}
.y1f8{bottom:866.620806px;}
.y182{bottom:866.677095px;}
.y142{bottom:873.855325px;}
.ya{bottom:879.144153px;}
.y1c2{bottom:881.308823px;}
.y1f7{bottom:881.614806px;}
.y181{bottom:881.671095px;}
.y41{bottom:882.165344px;}
.yad{bottom:883.485260px;}
.y141{bottom:888.849325px;}
.y9{bottom:894.138153px;}
.y1c1{bottom:896.302823px;}
.y1f6{bottom:896.608806px;}
.y180{bottom:896.665095px;}
.y112{bottom:898.574733px;}
.y40{bottom:900.915344px;}
.yac{bottom:902.235260px;}
.y140{bottom:903.843325px;}
.y1c0{bottom:911.296823px;}
.y1f5{bottom:911.602806px;}
.y17f{bottom:911.659095px;}
.y111{bottom:913.568733px;}
.y13f{bottom:918.837325px;}
.y3f{bottom:919.665344px;}
.yab{bottom:920.985260px;}
.y1bf{bottom:926.290823px;}
.y1f4{bottom:926.596806px;}
.y17e{bottom:926.653095px;}
.y110{bottom:928.562733px;}
.y13e{bottom:933.831325px;}
.y8{bottom:936.738190px;}
.y3e{bottom:938.415344px;}
.yaa{bottom:939.735260px;}
.y1be{bottom:941.284823px;}
.y1f3{bottom:941.590806px;}
.y17d{bottom:941.647095px;}
.y10f{bottom:943.556733px;}
.y13d{bottom:948.825325px;}
.y1bd{bottom:956.278823px;}
.y1f2{bottom:956.584806px;}
.y17c{bottom:956.641095px;}
.y3d{bottom:957.165344px;}
.ya9{bottom:958.485260px;}
.y10e{bottom:958.550733px;}
.y13c{bottom:963.819325px;}
.y1bc{bottom:971.272823px;}
.y1f1{bottom:971.578806px;}
.y17b{bottom:971.635095px;}
.y10d{bottom:973.544733px;}
.y3c{bottom:975.915344px;}
.ya8{bottom:977.235260px;}
.y13b{bottom:978.813325px;}
.y7{bottom:981.424622px;}
.y1bb{bottom:986.266823px;}
.y1f0{bottom:986.572806px;}
.y17a{bottom:986.629095px;}
.y10c{bottom:988.538733px;}
.y13a{bottom:993.807325px;}
.y3b{bottom:994.665344px;}
.ya7{bottom:995.985260px;}
.y1ba{bottom:1001.260823px;}
.y1ef{bottom:1001.566806px;}
.y179{bottom:1001.623095px;}
.y10b{bottom:1003.532733px;}
.y6{bottom:1008.424622px;}
.y139{bottom:1008.801325px;}
.y3a{bottom:1013.415344px;}
.ya6{bottom:1014.735260px;}
.y1b9{bottom:1016.254823px;}
.y1ee{bottom:1016.560806px;}
.y178{bottom:1016.617095px;}
.y10a{bottom:1018.526733px;}
.y138{bottom:1023.795325px;}
.y1b8{bottom:1031.248823px;}
.y1ed{bottom:1031.554806px;}
.y177{bottom:1031.611095px;}
.y39{bottom:1032.165344px;}
.ya5{bottom:1033.485260px;}
.y137{bottom:1038.789325px;}
.y1b7{bottom:1046.242823px;}
.y1ec{bottom:1046.548806px;}
.y176{bottom:1046.605095px;}
.y38{bottom:1050.915344px;}
.ya4{bottom:1052.235260px;}
.y136{bottom:1053.783325px;}
.y1b6{bottom:1061.236823px;}
.y1eb{bottom:1061.542806px;}
.y175{bottom:1061.599095px;}
.y37{bottom:1069.665344px;}
.ya3{bottom:1070.985260px;}
.y5{bottom:1076.132080px;}
.y1b5{bottom:1076.230823px;}
.y1ea{bottom:1076.536806px;}
.y174{bottom:1076.593095px;}
.y135{bottom:1087.533325px;}
.y36{bottom:1088.415344px;}
.ya2{bottom:1089.735260px;}
.y1b4{bottom:1091.224823px;}
.y1e9{bottom:1091.530806px;}
.y173{bottom:1091.587095px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y35{bottom:1127.482361px;}
.y87{bottom:1127.482544px;}
.hf{height:25.204199px;}
.h2{height:33.840000px;}
.hd{height:36.006000px;}
.he{height:36.855469px;}
.h9{height:42.360000px;}
.h8{height:43.260000px;}
.h4{height:44.676000px;}
.h11{height:45.186000px;}
.hc{height:51.912000px;}
.h12{height:52.173000px;}
.hb{height:53.160000px;}
.h13{height:53.652000px;}
.h3{height:54.862258px;}
.h5{height:55.461000px;}
.h14{height:57.378000px;}
.h10{height:59.004000px;}
.ha{height:61.380000px;}
.h7{height:64.866000px;}
.h6{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:76.535402px;}
.x8{left:78.746400px;}
.x4{left:85.181849px;}
.x9{left:93.530402px;}
.x7{left:97.796100px;}
.xe{left:102.048152px;}
.xb{left:267.874652px;}
.xd{left:363.469804px;}
.x5{left:459.215388px;}
.x6{left:476.225388px;}
.xf{left:484.726663px;}
.xc{left:532.819359px;}
.x1{left:728.220612px;}
.x2{left:755.489868px;}
.xa{left:798.209564px;}
@media print{
.v2{vertical-align:-18.133343pt;}
.v3{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.349333pt;}
.v1{vertical-align:21.333333pt;}
.ls3c{letter-spacing:-1.013333pt;}
.ls3b{letter-spacing:-0.640000pt;}
.ls4e{letter-spacing:-0.426667pt;}
.ls15{letter-spacing:-0.373333pt;}
.ls60{letter-spacing:-0.362667pt;}
.ls32{letter-spacing:-0.320000pt;}
.ls62{letter-spacing:-0.317333pt;}
.ls5f{letter-spacing:-0.272000pt;}
.ls31{letter-spacing:-0.266667pt;}
.ls70{letter-spacing:-0.226667pt;}
.ls16{letter-spacing:-0.213333pt;}
.ls63{letter-spacing:-0.181333pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls5e{letter-spacing:-0.136000pt;}
.ls17{letter-spacing:-0.106667pt;}
.ls6f{letter-spacing:-0.090667pt;}
.ls18{letter-spacing:-0.053333pt;}
.ls61{letter-spacing:-0.045333pt;}
.ls14{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000076pt;}
.ls4f{letter-spacing:0.026667pt;}
.ls27{letter-spacing:0.037333pt;}
.ls5b{letter-spacing:0.045333pt;}
.ls5{letter-spacing:0.053333pt;}
.ls76{letter-spacing:0.068000pt;}
.ls2e{letter-spacing:0.080000pt;}
.ls5d{letter-spacing:0.090667pt;}
.ls3{letter-spacing:0.106667pt;}
.ls65{letter-spacing:0.136000pt;}
.ls38{letter-spacing:0.149333pt;}
.ls34{letter-spacing:0.154667pt;}
.ls13{letter-spacing:0.158926pt;}
.ls7{letter-spacing:0.160000pt;}
.ls5a{letter-spacing:0.181333pt;}
.ls3e{letter-spacing:0.186667pt;}
.ls2{letter-spacing:0.213333pt;}
.ls12{letter-spacing:0.226667pt;}
.ls59{letter-spacing:0.234667pt;}
.ls22{letter-spacing:0.240000pt;}
.ls67{letter-spacing:0.249333pt;}
.ls37{letter-spacing:0.250210pt;}
.ls64{letter-spacing:0.256000pt;}
.ls3d{letter-spacing:0.266117pt;}
.ls6{letter-spacing:0.266667pt;}
.ls50{letter-spacing:0.272000pt;}
.ls29{letter-spacing:0.277317pt;}
.ls2d{letter-spacing:0.293333pt;}
.ls51{letter-spacing:0.294667pt;}
.ls58{letter-spacing:0.317333pt;}
.lsb{letter-spacing:0.320000pt;}
.ls5c{letter-spacing:0.362667pt;}
.ls4{letter-spacing:0.373333pt;}
.ls71{letter-spacing:0.408000pt;}
.lsc{letter-spacing:0.426667pt;}
.ls1a{letter-spacing:0.453333pt;}
.lsd{letter-spacing:0.480000pt;}
.ls6b{letter-spacing:0.498667pt;}
.ls1c{letter-spacing:0.533333pt;}
.ls54{letter-spacing:0.544000pt;}
.ls40{letter-spacing:0.560000pt;}
.ls8{letter-spacing:0.586667pt;}
.ls57{letter-spacing:0.589333pt;}
.ls44{letter-spacing:0.597333pt;}
.ls52{letter-spacing:0.634667pt;}
.ls11{letter-spacing:0.640000pt;}
.ls66{letter-spacing:0.680000pt;}
.ls2b{letter-spacing:0.693333pt;}
.ls55{letter-spacing:0.702667pt;}
.ls30{letter-spacing:0.720000pt;}
.ls69{letter-spacing:0.725333pt;}
.ls24{letter-spacing:0.746667pt;}
.ls6e{letter-spacing:0.748000pt;}
.ls73{letter-spacing:0.770667pt;}
.ls23{letter-spacing:0.773333pt;}
.ls75{letter-spacing:0.793333pt;}
.ls25{letter-spacing:0.800000pt;}
.ls53{letter-spacing:0.816000pt;}
.ls35{letter-spacing:0.826667pt;}
.ls9{letter-spacing:0.853333pt;}
.ls6c{letter-spacing:0.861333pt;}
.ls20{letter-spacing:0.880000pt;}
.ls74{letter-spacing:0.884000pt;}
.ls1d{letter-spacing:0.906667pt;}
.ls10{letter-spacing:0.933333pt;}
.ls6a{letter-spacing:0.952000pt;}
.lsf{letter-spacing:0.960000pt;}
.ls42{letter-spacing:0.970667pt;}
.ls28{letter-spacing:1.013333pt;}
.lsa{letter-spacing:1.040000pt;}
.ls56{letter-spacing:1.042667pt;}
.ls1e{letter-spacing:1.066667pt;}
.ls68{letter-spacing:1.088000pt;}
.ls33{letter-spacing:1.120000pt;}
.ls3f{letter-spacing:1.125387pt;}
.ls2a{letter-spacing:1.173333pt;}
.ls6d{letter-spacing:1.178667pt;}
.ls1f{letter-spacing:1.226667pt;}
.ls47{letter-spacing:1.253333pt;}
.ls1b{letter-spacing:1.280000pt;}
.ls72{letter-spacing:1.314667pt;}
.ls36{letter-spacing:1.333333pt;}
.ls2f{letter-spacing:1.386667pt;}
.ls21{letter-spacing:1.440000pt;}
.ls48{letter-spacing:1.493333pt;}
.ls41{letter-spacing:1.501333pt;}
.ls2c{letter-spacing:1.546667pt;}
.ls49{letter-spacing:1.600000pt;}
.ls4a{letter-spacing:1.626667pt;}
.ls4c{letter-spacing:1.653333pt;}
.ls45{letter-spacing:1.706667pt;}
.ls4b{letter-spacing:1.760000pt;}
.lse{letter-spacing:1.786667pt;}
.ls43{letter-spacing:1.835135pt;}
.ls4d{letter-spacing:1.866667pt;}
.ls46{letter-spacing:1.973333pt;}
.ls26{letter-spacing:2.026667pt;}
.ls0{letter-spacing:3.546667pt;}
.ls3a{letter-spacing:194.298667pt;}
.ls39{letter-spacing:326.354661pt;}
.ws2b{word-spacing:-53.333333pt;}
.ws74{word-spacing:-14.666667pt;}
.ws93{word-spacing:-14.400000pt;}
.ws7{word-spacing:-14.293333pt;}
.ws82{word-spacing:-13.920000pt;}
.ws29{word-spacing:-13.760000pt;}
.ws28{word-spacing:-13.653333pt;}
.ws2a{word-spacing:-13.600000pt;}
.ws2d{word-spacing:-13.440000pt;}
.ws2c{word-spacing:-13.333333pt;}
.ws26{word-spacing:-13.226667pt;}
.ws92{word-spacing:-13.173333pt;}
.ws71{word-spacing:-13.120000pt;}
.ws27{word-spacing:-12.960000pt;}
.ws5f{word-spacing:-12.693333pt;}
.ws60{word-spacing:-12.320000pt;}
.ws96{word-spacing:-11.560000pt;}
.wsac{word-spacing:-11.061333pt;}
.ws2{word-spacing:-11.040000pt;}
.ws76{word-spacing:-10.304000pt;}
.ws5{word-spacing:-10.240000pt;}
.ws77{word-spacing:-9.930667pt;}
.ws75{word-spacing:-9.893333pt;}
.ws73{word-spacing:-9.706667pt;}
.ws72{word-spacing:-9.520000pt;}
.ws61{word-spacing:-9.482667pt;}
.ws95{word-spacing:-9.248000pt;}
.ws94{word-spacing:-8.930667pt;}
.ws1{word-spacing:-8.885333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws53{word-spacing:-6.666667pt;}
.ws86{word-spacing:-1.973333pt;}
.ws88{word-spacing:-1.706667pt;}
.ws8{word-spacing:-1.680000pt;}
.ws8b{word-spacing:-1.653333pt;}
.ws83{word-spacing:-1.546667pt;}
.ws8d{word-spacing:-1.440000pt;}
.wsb{word-spacing:-1.333333pt;}
.ws2f{word-spacing:-1.280000pt;}
.ws36{word-spacing:-1.226667pt;}
.ws9e{word-spacing:-1.178667pt;}
.ws3f{word-spacing:-1.173333pt;}
.ws9d{word-spacing:-1.133333pt;}
.ws59{word-spacing:-1.120000pt;}
.wsb4{word-spacing:-1.088000pt;}
.wsf{word-spacing:-1.066667pt;}
.wsb5{word-spacing:-1.042667pt;}
.wse{word-spacing:-1.013333pt;}
.wscc{word-spacing:-0.997333pt;}
.ws1c{word-spacing:-0.960000pt;}
.wsaa{word-spacing:-0.952000pt;}
.ws33{word-spacing:-0.906667pt;}
.wsa7{word-spacing:-0.861333pt;}
.ws12{word-spacing:-0.853333pt;}
.wsad{word-spacing:-0.816000pt;}
.ws6a{word-spacing:-0.800000pt;}
.ws4b{word-spacing:-0.746667pt;}
.ws5c{word-spacing:-0.693333pt;}
.wsab{word-spacing:-0.680000pt;}
.ws10{word-spacing:-0.640000pt;}
.wsa4{word-spacing:-0.634667pt;}
.ws3c{word-spacing:-0.586667pt;}
.ws24{word-spacing:-0.544000pt;}
.ws1f{word-spacing:-0.533333pt;}
.wsa{word-spacing:-0.506667pt;}
.ws17{word-spacing:-0.480000pt;}
.wsa8{word-spacing:-0.453333pt;}
.ws91{word-spacing:-0.426667pt;}
.ws23{word-spacing:-0.373333pt;}
.wsae{word-spacing:-0.362667pt;}
.ws15{word-spacing:-0.320000pt;}
.wsc6{word-spacing:-0.272000pt;}
.ws4{word-spacing:-0.266667pt;}
.wsa6{word-spacing:-0.234667pt;}
.wsb6{word-spacing:-0.226667pt;}
.ws21{word-spacing:-0.213333pt;}
.wsa1{word-spacing:-0.181333pt;}
.ws14{word-spacing:-0.160000pt;}
.wsb2{word-spacing:-0.136000pt;}
.wsd{word-spacing:-0.106667pt;}
.ws6{word-spacing:-0.064000pt;}
.ws3a{word-spacing:-0.053333pt;}
.wsbd{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws9{word-spacing:0.000000pt;}
.wsa0{word-spacing:0.045333pt;}
.ws1e{word-spacing:0.053333pt;}
.ws19{word-spacing:0.106667pt;}
.wsb0{word-spacing:0.136000pt;}
.ws6e{word-spacing:0.160000pt;}
.wsc5{word-spacing:0.181333pt;}
.ws41{word-spacing:0.213333pt;}
.ws7a{word-spacing:0.266667pt;}
.wsc1{word-spacing:0.317333pt;}
.ws6b{word-spacing:0.320000pt;}
.ws48{word-spacing:0.373333pt;}
.ws9c{word-spacing:0.408000pt;}
.ws8e{word-spacing:0.426667pt;}
.wsbc{word-spacing:0.453333pt;}
.ws79{word-spacing:0.480000pt;}
.ws4d{word-spacing:0.533333pt;}
.ws3e{word-spacing:0.586667pt;}
.ws1b{word-spacing:0.640000pt;}
.ws3d{word-spacing:0.693333pt;}
.ws9b{word-spacing:0.725333pt;}
.ws1a{word-spacing:0.746667pt;}
.ws5e{word-spacing:0.770667pt;}
.ws56{word-spacing:0.800000pt;}
.wsc2{word-spacing:0.816000pt;}
.ws7b{word-spacing:0.853333pt;}
.wsa5{word-spacing:0.861333pt;}
.wsd1{word-spacing:0.906667pt;}
.wsd2{word-spacing:0.952000pt;}
.ws58{word-spacing:0.960000pt;}
.wscf{word-spacing:0.997333pt;}
.ws16{word-spacing:1.013333pt;}
.wsa9{word-spacing:1.042667pt;}
.ws98{word-spacing:1.133333pt;}
.ws44{word-spacing:1.173333pt;}
.ws7e{word-spacing:1.178667pt;}
.wsaf{word-spacing:1.224000pt;}
.ws4c{word-spacing:1.226667pt;}
.wsc9{word-spacing:1.269333pt;}
.ws38{word-spacing:1.280000pt;}
.wsa3{word-spacing:1.314667pt;}
.wsc{word-spacing:1.333333pt;}
.wsa2{word-spacing:1.360000pt;}
.ws8f{word-spacing:1.386667pt;}
.wsbf{word-spacing:1.405333pt;}
.ws5d{word-spacing:1.440000pt;}
.wsc8{word-spacing:1.450667pt;}
.ws69{word-spacing:1.493333pt;}
.wsb8{word-spacing:1.496000pt;}
.ws99{word-spacing:1.541333pt;}
.ws6f{word-spacing:1.546667pt;}
.wsd6{word-spacing:1.586667pt;}
.ws43{word-spacing:1.600000pt;}
.ws4a{word-spacing:1.653333pt;}
.ws51{word-spacing:1.706667pt;}
.wsb1{word-spacing:1.722667pt;}
.wsc7{word-spacing:1.768000pt;}
.ws40{word-spacing:1.813333pt;}
.wsba{word-spacing:1.858667pt;}
.ws46{word-spacing:1.866667pt;}
.ws52{word-spacing:1.920000pt;}
.ws68{word-spacing:1.973333pt;}
.wsc4{word-spacing:1.994667pt;}
.ws49{word-spacing:2.026667pt;}
.ws4f{word-spacing:2.080000pt;}
.ws45{word-spacing:2.133333pt;}
.ws22{word-spacing:2.186667pt;}
.ws6d{word-spacing:2.240000pt;}
.wsce{word-spacing:2.266667pt;}
.ws6c{word-spacing:2.293333pt;}
.wsd4{word-spacing:2.312000pt;}
.ws30{word-spacing:2.346667pt;}
.ws9a{word-spacing:2.357333pt;}
.ws11{word-spacing:2.400000pt;}
.wsb3{word-spacing:2.402667pt;}
.ws31{word-spacing:2.453333pt;}
.wsca{word-spacing:2.493333pt;}
.ws8a{word-spacing:2.506667pt;}
.ws54{word-spacing:2.560000pt;}
.wsd0{word-spacing:2.584000pt;}
.ws20{word-spacing:2.613333pt;}
.wscb{word-spacing:2.629333pt;}
.ws32{word-spacing:2.666667pt;}
.wsc0{word-spacing:2.674667pt;}
.ws84{word-spacing:2.720000pt;}
.wsd5{word-spacing:2.765333pt;}
.ws39{word-spacing:2.773333pt;}
.ws1d{word-spacing:2.826667pt;}
.ws35{word-spacing:2.880000pt;}
.ws5a{word-spacing:2.933333pt;}
.ws97{word-spacing:2.986667pt;}
.ws89{word-spacing:3.040000pt;}
.ws50{word-spacing:3.093333pt;}
.ws87{word-spacing:3.146667pt;}
.wsbe{word-spacing:3.173333pt;}
.ws13{word-spacing:3.200000pt;}
.ws34{word-spacing:3.253333pt;}
.ws42{word-spacing:3.360000pt;}
.ws9f{word-spacing:3.400000pt;}
.ws4e{word-spacing:3.413333pt;}
.ws66{word-spacing:3.466667pt;}
.wsb9{word-spacing:3.490667pt;}
.wsd3{word-spacing:3.581333pt;}
.wsd7{word-spacing:3.672000pt;}
.ws8c{word-spacing:3.680000pt;}
.wsb7{word-spacing:3.717333pt;}
.wsbb{word-spacing:3.853333pt;}
.ws55{word-spacing:3.893333pt;}
.ws85{word-spacing:4.106667pt;}
.wsc3{word-spacing:4.216000pt;}
.ws37{word-spacing:4.266667pt;}
.ws2e{word-spacing:4.373333pt;}
.ws7c{word-spacing:4.426667pt;}
.ws67{word-spacing:4.480000pt;}
.ws90{word-spacing:4.533333pt;}
.ws70{word-spacing:4.640000pt;}
.ws78{word-spacing:4.746667pt;}
.wscd{word-spacing:4.760000pt;}
.ws80{word-spacing:4.805333pt;}
.ws5b{word-spacing:5.013333pt;}
.ws3b{word-spacing:5.280000pt;}
.ws7f{word-spacing:5.666667pt;}
.ws57{word-spacing:5.706667pt;}
.ws7d{word-spacing:6.165333pt;}
.ws18{word-spacing:6.880000pt;}
.ws47{word-spacing:8.160000pt;}
.ws81{word-spacing:8.885333pt;}
.wsd8{word-spacing:12.013333pt;}
.wsd9{word-spacing:15.640000pt;}
.ws25{word-spacing:64.237333pt;}
.ws63{word-spacing:137.496000pt;}
.ws65{word-spacing:160.162667pt;}
.ws64{word-spacing:194.162667pt;}
.ws62{word-spacing:315.021328pt;}
._b{margin-left:-64.600000pt;}
._8{margin-left:-14.733333pt;}
._26{margin-left:-11.680000pt;}
._11{margin-left:-9.226667pt;}
._f{margin-left:-7.445365pt;}
._d{margin-left:-6.165350pt;}
._e{margin-left:-5.269358pt;}
._3{margin-left:-4.106667pt;}
._2{margin-left:-2.560000pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.536000pt;}
._6{width:2.613333pt;}
._5{width:3.728000pt;}
._7{width:4.650667pt;}
._28{width:6.826667pt;}
._29{width:9.293333pt;}
._27{width:11.390412pt;}
._2a{width:12.602667pt;}
._10{width:13.872000pt;}
._9{width:16.320000pt;}
._4{width:35.631475pt;}
._a{width:48.552000pt;}
._21{width:148.829333pt;}
._15{width:171.496000pt;}
._1d{width:205.496000pt;}
._23{width:281.021328pt;}
._24{width:300.106667pt;}
._16{width:303.687995pt;}
._13{width:310.494432pt;}
._19{width:324.546667pt;}
._18{width:326.354661pt;}
._14{width:337.800000pt;}
._17{width:370.736000pt;}
._25{width:376.992000pt;}
._1b{width:426.864000pt;}
._22{width:472.645333pt;}
._1c{width:492.704000pt;}
._20{width:498.848000pt;}
._1a{width:509.906667pt;}
._1e{width:532.824000pt;}
._1f{width:716.720000pt;}
._12{width:803.528556pt;}
._c{width:2367.941333pt;}
.fs8{font-size:31.733332pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs3{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y34{bottom:100.394933pt;}
.yf0{bottom:100.902937pt;}
.yf7{bottom:100.961605pt;}
.yd9{bottom:101.064547pt;}
.y109{bottom:101.986898pt;}
.y9d{bottom:102.110921pt;}
.y2e{bottom:108.854533pt;}
.y33{bottom:113.722933pt;}
.yef{bottom:114.230937pt;}
.yf6{bottom:114.289605pt;}
.y1b3{bottom:117.307640pt;}
.y86{bottom:117.480265pt;}
.y108{bottom:118.653564pt;}
.y9c{bottom:118.777588pt;}
.y2d{bottom:125.521200pt;}
.ye7{bottom:125.874527pt;}
.yf5{bottom:127.617605pt;}
.y1b2{bottom:130.635640pt;}
.y32{bottom:131.584269pt;}
.y85{bottom:134.146932pt;}
.y68{bottom:134.146973pt;}
.y107{bottom:135.320231pt;}
.y9b{bottom:135.444255pt;}
.y172{bottom:137.016289pt;}
.y2c{bottom:142.187866pt;}
.ye6{bottom:142.579861pt;}
.y1b1{bottom:143.963640pt;}
.y171{bottom:150.344289pt;}
.y84{bottom:150.813599pt;}
.y67{bottom:150.813639pt;}
.y106{bottom:151.986898pt;}
.y9a{bottom:152.110921pt;}
.y31{bottom:153.807471pt;}
.y1b0{bottom:157.291640pt;}
.y2b{bottom:158.854533pt;}
.ye5{bottom:159.217194pt;}
.y170{bottom:163.672289pt;}
.y30{bottom:167.135471pt;}
.y83{bottom:167.480265pt;}
.y66{bottom:167.480306pt;}
.y105{bottom:168.653564pt;}
.y99{bottom:168.777588pt;}
.y1af{bottom:170.619640pt;}
.y2a{bottom:175.521200pt;}
.ye4{bottom:175.854527pt;}
.y16f{bottom:177.000289pt;}
.y1ae{bottom:183.947640pt;}
.y82{bottom:184.146932pt;}
.y65{bottom:184.146973pt;}
.y104{bottom:185.320231pt;}
.y98{bottom:185.444255pt;}
.y16e{bottom:190.328289pt;}
.y29{bottom:192.187866pt;}
.ye3{bottom:192.491861pt;}
.y2f{bottom:194.528137pt;}
.y134{bottom:195.653340pt;}
.y1ad{bottom:197.275640pt;}
.y81{bottom:200.813599pt;}
.y64{bottom:200.813639pt;}
.y103{bottom:201.986898pt;}
.y97{bottom:202.110921pt;}
.y16d{bottom:203.656289pt;}
.y28{bottom:208.854533pt;}
.y133{bottom:208.981340pt;}
.ye2{bottom:209.129194pt;}
.y1ac{bottom:210.603640pt;}
.y16c{bottom:216.984289pt;}
.y80{bottom:217.480265pt;}
.y63{bottom:217.480306pt;}
.y102{bottom:218.653564pt;}
.y96{bottom:218.777588pt;}
.y132{bottom:222.309340pt;}
.y1ab{bottom:223.931640pt;}
.y27{bottom:225.521200pt;}
.ye1{bottom:225.766527pt;}
.y16b{bottom:230.312289pt;}
.y7f{bottom:234.146932pt;}
.y62{bottom:234.146973pt;}
.y101{bottom:235.320231pt;}
.y95{bottom:235.444255pt;}
.y131{bottom:235.637340pt;}
.y1aa{bottom:237.259640pt;}
.y25{bottom:242.187866pt;}
.ye0{bottom:242.403861pt;}
.y16a{bottom:243.640289pt;}
.y130{bottom:248.965340pt;}
.y1a9{bottom:250.587640pt;}
.y7e{bottom:250.813599pt;}
.y61{bottom:250.813639pt;}
.y100{bottom:251.986898pt;}
.y94{bottom:252.110921pt;}
.y169{bottom:256.968289pt;}
.y24{bottom:258.854533pt;}
.ydf{bottom:259.041194pt;}
.y12f{bottom:262.293340pt;}
.y1a8{bottom:263.915640pt;}
.y7d{bottom:267.480265pt;}
.y60{bottom:267.480306pt;}
.yff{bottom:268.653564pt;}
.y93{bottom:268.777588pt;}
.y168{bottom:270.296289pt;}
.y23{bottom:275.521200pt;}
.y12e{bottom:275.621340pt;}
.yde{bottom:275.678527pt;}
.y1e8{bottom:276.921620pt;}
.y1a7{bottom:277.243640pt;}
.y167{bottom:283.624289pt;}
.y7c{bottom:284.146932pt;}
.y5f{bottom:284.146973pt;}
.yfe{bottom:285.320231pt;}
.y92{bottom:285.444255pt;}
.y12d{bottom:288.949340pt;}
.y1e7{bottom:290.249620pt;}
.y1a6{bottom:290.571640pt;}
.y22{bottom:292.187866pt;}
.ydd{bottom:292.315861pt;}
.y166{bottom:296.952289pt;}
.y7b{bottom:300.813599pt;}
.y5e{bottom:300.813639pt;}
.yfd{bottom:301.986898pt;}
.y91{bottom:302.110921pt;}
.y12c{bottom:302.277340pt;}
.y1e6{bottom:303.577620pt;}
.y1a5{bottom:303.899640pt;}
.yd8{bottom:307.489880pt;}
.y21{bottom:308.854533pt;}
.ydc{bottom:308.953194pt;}
.y165{bottom:310.280289pt;}
.y12b{bottom:315.605340pt;}
.y1e5{bottom:316.905620pt;}
.y1a4{bottom:317.227640pt;}
.y7a{bottom:317.480265pt;}
.y5d{bottom:317.480306pt;}
.yfc{bottom:318.653564pt;}
.y90{bottom:318.777588pt;}
.yd7{bottom:320.817880pt;}
.y164{bottom:323.608289pt;}
.y20{bottom:325.521200pt;}
.y12a{bottom:328.933340pt;}
.y218{bottom:329.746272pt;}
.y1e4{bottom:330.233620pt;}
.y1a3{bottom:330.555640pt;}
.ydb{bottom:333.920527pt;}
.yd6{bottom:334.145880pt;}
.y79{bottom:334.146932pt;}
.y5c{bottom:334.146973pt;}
.yfb{bottom:335.320231pt;}
.y8f{bottom:335.444255pt;}
.y163{bottom:336.936289pt;}
.y1f{bottom:342.187866pt;}
.y129{bottom:342.261340pt;}
.y217{bottom:343.074272pt;}
.y1e3{bottom:343.561620pt;}
.y1a2{bottom:343.883640pt;}
.yd5{bottom:347.473880pt;}
.y162{bottom:350.264289pt;}
.y78{bottom:350.813599pt;}
.y5b{bottom:350.813639pt;}
.yfa{bottom:351.986898pt;}
.y8e{bottom:352.110921pt;}
.yda{bottom:355.623861pt;}
.y1e2{bottom:356.889620pt;}
.y1a1{bottom:357.211640pt;}
.y1e{bottom:358.854533pt;}
.yd4{bottom:360.801880pt;}
.y161{bottom:363.592289pt;}
.y77{bottom:367.480265pt;}
.y5a{bottom:367.480306pt;}
.yf9{bottom:368.653564pt;}
.y8d{bottom:368.777588pt;}
.y1e1{bottom:370.217620pt;}
.y216{bottom:370.489606pt;}
.y1a0{bottom:370.539640pt;}
.y1d{bottom:375.521200pt;}
.y160{bottom:376.920289pt;}
.y128{bottom:378.879340pt;}
.y1e0{bottom:383.545620pt;}
.y215{bottom:383.817606pt;}
.y19f{bottom:383.867640pt;}
.y76{bottom:384.146932pt;}
.y59{bottom:384.146973pt;}
.yf8{bottom:385.320231pt;}
.y8c{bottom:385.444255pt;}
.y15f{bottom:390.248289pt;}
.y1c{bottom:392.187866pt;}
.y1df{bottom:396.873620pt;}
.y214{bottom:397.145606pt;}
.y19e{bottom:397.195640pt;}
.y75{bottom:400.813599pt;}
.y58{bottom:400.813639pt;}
.yc2{bottom:401.986898pt;}
.yd3{bottom:401.986938pt;}
.y8b{bottom:402.110921pt;}
.y15e{bottom:403.576289pt;}
.y127{bottom:405.512674pt;}
.y26{bottom:408.854533pt;}
.y1de{bottom:410.201620pt;}
.y213{bottom:410.473606pt;}
.y19d{bottom:410.523640pt;}
.y15d{bottom:416.904289pt;}
.y74{bottom:417.480265pt;}
.y57{bottom:417.480306pt;}
.yc1{bottom:418.653564pt;}
.yd2{bottom:418.653605pt;}
.y9f{bottom:418.777588pt;}
.y1dd{bottom:423.529620pt;}
.y212{bottom:423.801606pt;}
.y19c{bottom:423.851640pt;}
.y1b{bottom:425.521200pt;}
.y15c{bottom:430.232289pt;}
.y126{bottom:432.146007pt;}
.y73{bottom:434.146932pt;}
.y56{bottom:434.146973pt;}
.yc0{bottom:435.320231pt;}
.yd1{bottom:435.320272pt;}
.y8a{bottom:435.444255pt;}
.y1dc{bottom:436.857620pt;}
.y211{bottom:437.129606pt;}
.y19b{bottom:437.179640pt;}
.y15b{bottom:443.560289pt;}
.y125{bottom:445.474007pt;}
.y1db{bottom:450.185620pt;}
.y210{bottom:450.457606pt;}
.y19a{bottom:450.507640pt;}
.y72{bottom:450.813599pt;}
.y55{bottom:450.813639pt;}
.ybf{bottom:451.986898pt;}
.yd0{bottom:451.986938pt;}
.y9e{bottom:452.110921pt;}
.y15a{bottom:456.888289pt;}
.y1da{bottom:463.513620pt;}
.y20f{bottom:463.785606pt;}
.y199{bottom:463.835640pt;}
.y71{bottom:467.480265pt;}
.y54{bottom:467.480306pt;}
.ybe{bottom:468.653564pt;}
.ycf{bottom:468.653605pt;}
.y89{bottom:468.777588pt;}
.y159{bottom:470.216289pt;}
.y124{bottom:472.107340pt;}
.y1a{bottom:475.521240pt;}
.y1d9{bottom:476.841620pt;}
.y20e{bottom:477.113606pt;}
.y198{bottom:477.163640pt;}
.y158{bottom:483.544289pt;}
.y70{bottom:484.146932pt;}
.y53{bottom:484.146973pt;}
.ybd{bottom:485.320231pt;}
.yce{bottom:485.320272pt;}
.y88{bottom:485.444255pt;}
.y1d8{bottom:490.169620pt;}
.y20d{bottom:490.441606pt;}
.y197{bottom:490.491640pt;}
.y157{bottom:496.872289pt;}
.y6f{bottom:500.813599pt;}
.y52{bottom:500.813639pt;}
.ybc{bottom:501.986898pt;}
.ycd{bottom:501.986938pt;}
.yee{bottom:502.106938pt;}
.y123{bottom:502.107340pt;}
.y1d7{bottom:503.497620pt;}
.y20c{bottom:503.769606pt;}
.y196{bottom:503.819640pt;}
.y19{bottom:508.854574pt;}
.y156{bottom:510.200289pt;}
.y1d6{bottom:516.825620pt;}
.y20b{bottom:517.097606pt;}
.y195{bottom:517.147640pt;}
.y6e{bottom:517.480265pt;}
.y51{bottom:517.480306pt;}
.ybb{bottom:518.653564pt;}
.ycc{bottom:518.653605pt;}
.yed{bottom:518.773605pt;}
.y155{bottom:523.528289pt;}
.y18{bottom:525.521240pt;}
.y1d5{bottom:530.153620pt;}
.y20a{bottom:530.425606pt;}
.y194{bottom:530.475640pt;}
.y6d{bottom:534.146932pt;}
.y50{bottom:534.146973pt;}
.yba{bottom:535.320231pt;}
.ycb{bottom:535.320272pt;}
.yec{bottom:535.440272pt;}
.y122{bottom:535.573096pt;}
.y154{bottom:536.856289pt;}
.ya1{bottom:538.094933pt;}
.y17{bottom:542.187907pt;}
.y1d4{bottom:543.481620pt;}
.y209{bottom:543.753606pt;}
.y193{bottom:543.803640pt;}
.y121{bottom:548.901096pt;}
.y153{bottom:550.184289pt;}
.y6c{bottom:550.813599pt;}
.y4f{bottom:550.813639pt;}
.ya0{bottom:551.422933pt;}
.yb9{bottom:551.986898pt;}
.yca{bottom:551.986938pt;}
.yeb{bottom:552.106938pt;}
.y1d3{bottom:556.809620pt;}
.y208{bottom:557.081606pt;}
.y192{bottom:557.131640pt;}
.y16{bottom:558.854574pt;}
.y120{bottom:562.229096pt;}
.y152{bottom:563.512289pt;}
.y6b{bottom:567.480265pt;}
.y4e{bottom:567.480306pt;}
.yb8{bottom:568.653564pt;}
.yc9{bottom:568.653605pt;}
.yea{bottom:568.773605pt;}
.y1d2{bottom:570.137620pt;}
.y207{bottom:570.409606pt;}
.y191{bottom:570.459640pt;}
.y15{bottom:575.521240pt;}
.y151{bottom:576.840289pt;}
.y1d1{bottom:583.465620pt;}
.y206{bottom:583.737606pt;}
.y190{bottom:583.787640pt;}
.y4d{bottom:584.146973pt;}
.yb7{bottom:585.320231pt;}
.yc8{bottom:585.320272pt;}
.y150{bottom:590.168289pt;}
.y14{bottom:592.187907pt;}
.y11f{bottom:592.194430pt;}
.y1d0{bottom:596.793620pt;}
.y205{bottom:597.065606pt;}
.y18f{bottom:597.115640pt;}
.y6a{bottom:600.813599pt;}
.y4c{bottom:600.813639pt;}
.yb6{bottom:601.986898pt;}
.yc7{bottom:601.986938pt;}
.y14f{bottom:603.496289pt;}
.y11e{bottom:605.522430pt;}
.y13{bottom:608.854574pt;}
.y1cf{bottom:610.121620pt;}
.y204{bottom:610.393606pt;}
.y18e{bottom:610.443640pt;}
.y14e{bottom:616.824289pt;}
.y4b{bottom:617.480306pt;}
.yf4{bottom:617.838917pt;}
.yb5{bottom:618.653564pt;}
.yc6{bottom:618.653605pt;}
.y11d{bottom:618.850430pt;}
.y1ce{bottom:623.449620pt;}
.y203{bottom:623.721606pt;}
.y18d{bottom:623.771640pt;}
.y12{bottom:625.521240pt;}
.y14d{bottom:630.152289pt;}
.yf3{bottom:631.166917pt;}
.y11c{bottom:632.178430pt;}
.y69{bottom:634.146932pt;}
.y4a{bottom:634.146973pt;}
.yb4{bottom:635.320231pt;}
.yc5{bottom:635.320272pt;}
.y1cd{bottom:636.777620pt;}
.y202{bottom:637.049606pt;}
.y18c{bottom:637.099640pt;}
.y11{bottom:642.187907pt;}
.y14c{bottom:643.480289pt;}
.yf2{bottom:644.494917pt;}
.y11b{bottom:645.506430pt;}
.y1cc{bottom:650.105620pt;}
.y201{bottom:650.377606pt;}
.y18b{bottom:650.427640pt;}
.y49{bottom:650.813639pt;}
.yb3{bottom:651.986898pt;}
.yc4{bottom:651.986938pt;}
.y14b{bottom:656.808289pt;}
.yf1{bottom:657.822917pt;}
.y11a{bottom:658.834430pt;}
.y10{bottom:658.854574pt;}
.y1cb{bottom:663.433620pt;}
.y200{bottom:663.705606pt;}
.y18a{bottom:663.755640pt;}
.y48{bottom:667.480306pt;}
.yb2{bottom:668.653564pt;}
.y14a{bottom:670.136289pt;}
.y119{bottom:672.162430pt;}
.yf{bottom:675.521240pt;}
.y1ca{bottom:676.761620pt;}
.y1ff{bottom:677.033606pt;}
.y189{bottom:677.083640pt;}
.y149{bottom:683.464289pt;}
.y47{bottom:684.146973pt;}
.yb1{bottom:685.320231pt;}
.y118{bottom:685.490430pt;}
.y1c9{bottom:690.089620pt;}
.y1fe{bottom:690.361606pt;}
.y188{bottom:690.411640pt;}
.ye{bottom:692.187907pt;}
.y148{bottom:696.792289pt;}
.ye9{bottom:698.649564pt;}
.y117{bottom:698.818430pt;}
.y46{bottom:700.813639pt;}
.ye8{bottom:701.986898pt;}
.y1c8{bottom:703.417620pt;}
.y1fd{bottom:703.689606pt;}
.y187{bottom:703.739640pt;}
.yd{bottom:708.854574pt;}
.y147{bottom:710.120289pt;}
.y116{bottom:712.146430pt;}
.y1c7{bottom:716.745620pt;}
.y1fc{bottom:717.017606pt;}
.y186{bottom:717.067640pt;}
.y45{bottom:717.480306pt;}
.yb0{bottom:718.653564pt;}
.y146{bottom:723.448289pt;}
.yc{bottom:725.521240pt;}
.y1c6{bottom:730.073620pt;}
.y1fb{bottom:730.345606pt;}
.y185{bottom:730.395640pt;}
.y44{bottom:734.146973pt;}
.yc3{bottom:735.320231pt;}
.y145{bottom:736.776289pt;}
.y115{bottom:742.111763pt;}
.yb{bottom:742.187907pt;}
.y1c5{bottom:743.401620pt;}
.y1fa{bottom:743.673606pt;}
.y184{bottom:743.723640pt;}
.y144{bottom:750.104289pt;}
.y43{bottom:750.813639pt;}
.yaf{bottom:751.986898pt;}
.y114{bottom:755.439763pt;}
.y1c4{bottom:756.729620pt;}
.y1f9{bottom:757.001606pt;}
.y183{bottom:757.051640pt;}
.y143{bottom:763.432289pt;}
.y42{bottom:767.480306pt;}
.yae{bottom:768.653564pt;}
.y113{bottom:768.767763pt;}
.y1c3{bottom:770.057620pt;}
.y1f8{bottom:770.329606pt;}
.y182{bottom:770.379640pt;}
.y142{bottom:776.760289pt;}
.ya{bottom:781.461469pt;}
.y1c2{bottom:783.385620pt;}
.y1f7{bottom:783.657606pt;}
.y181{bottom:783.707640pt;}
.y41{bottom:784.146973pt;}
.yad{bottom:785.320231pt;}
.y141{bottom:790.088289pt;}
.y9{bottom:794.789469pt;}
.y1c1{bottom:796.713620pt;}
.y1f6{bottom:796.985606pt;}
.y180{bottom:797.035640pt;}
.y112{bottom:798.733096pt;}
.y40{bottom:800.813639pt;}
.yac{bottom:801.986898pt;}
.y140{bottom:803.416289pt;}
.y1c0{bottom:810.041620pt;}
.y1f5{bottom:810.313606pt;}
.y17f{bottom:810.363640pt;}
.y111{bottom:812.061096pt;}
.y13f{bottom:816.744289pt;}
.y3f{bottom:817.480306pt;}
.yab{bottom:818.653564pt;}
.y1bf{bottom:823.369620pt;}
.y1f4{bottom:823.641606pt;}
.y17e{bottom:823.691640pt;}
.y110{bottom:825.389096pt;}
.y13e{bottom:830.072289pt;}
.y8{bottom:832.656169pt;}
.y3e{bottom:834.146973pt;}
.yaa{bottom:835.320231pt;}
.y1be{bottom:836.697620pt;}
.y1f3{bottom:836.969606pt;}
.y17d{bottom:837.019640pt;}
.y10f{bottom:838.717096pt;}
.y13d{bottom:843.400289pt;}
.y1bd{bottom:850.025620pt;}
.y1f2{bottom:850.297606pt;}
.y17c{bottom:850.347640pt;}
.y3d{bottom:850.813639pt;}
.ya9{bottom:851.986898pt;}
.y10e{bottom:852.045096pt;}
.y13c{bottom:856.728289pt;}
.y1bc{bottom:863.353620pt;}
.y1f1{bottom:863.625606pt;}
.y17b{bottom:863.675640pt;}
.y10d{bottom:865.373096pt;}
.y3c{bottom:867.480306pt;}
.ya8{bottom:868.653564pt;}
.y13b{bottom:870.056289pt;}
.y7{bottom:872.377441pt;}
.y1bb{bottom:876.681620pt;}
.y1f0{bottom:876.953606pt;}
.y17a{bottom:877.003640pt;}
.y10c{bottom:878.701096pt;}
.y13a{bottom:883.384289pt;}
.y3b{bottom:884.146973pt;}
.ya7{bottom:885.320231pt;}
.y1ba{bottom:890.009620pt;}
.y1ef{bottom:890.281606pt;}
.y179{bottom:890.331640pt;}
.y10b{bottom:892.029096pt;}
.y6{bottom:896.377441pt;}
.y139{bottom:896.712289pt;}
.y3a{bottom:900.813639pt;}
.ya6{bottom:901.986898pt;}
.y1b9{bottom:903.337620pt;}
.y1ee{bottom:903.609606pt;}
.y178{bottom:903.659640pt;}
.y10a{bottom:905.357096pt;}
.y138{bottom:910.040289pt;}
.y1b8{bottom:916.665620pt;}
.y1ed{bottom:916.937606pt;}
.y177{bottom:916.987640pt;}
.y39{bottom:917.480306pt;}
.ya5{bottom:918.653564pt;}
.y137{bottom:923.368289pt;}
.y1b7{bottom:929.993620pt;}
.y1ec{bottom:930.265606pt;}
.y176{bottom:930.315640pt;}
.y38{bottom:934.146973pt;}
.ya4{bottom:935.320231pt;}
.y136{bottom:936.696289pt;}
.y1b6{bottom:943.321620pt;}
.y1eb{bottom:943.593606pt;}
.y175{bottom:943.643640pt;}
.y37{bottom:950.813639pt;}
.ya3{bottom:951.986898pt;}
.y5{bottom:956.561849pt;}
.y1b5{bottom:956.649620pt;}
.y1ea{bottom:956.921606pt;}
.y174{bottom:956.971640pt;}
.y135{bottom:966.696289pt;}
.y36{bottom:967.480306pt;}
.ya2{bottom:968.653564pt;}
.y1b4{bottom:969.977620pt;}
.y1e9{bottom:970.249606pt;}
.y173{bottom:970.299640pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y35{bottom:1002.206543pt;}
.y87{bottom:1002.206706pt;}
.hf{height:22.403733pt;}
.h2{height:30.080000pt;}
.hd{height:32.005333pt;}
.he{height:32.760417pt;}
.h9{height:37.653333pt;}
.h8{height:38.453333pt;}
.h4{height:39.712000pt;}
.h11{height:40.165333pt;}
.hc{height:46.144000pt;}
.h12{height:46.376000pt;}
.hb{height:47.253333pt;}
.h13{height:47.690667pt;}
.h3{height:48.766452pt;}
.h5{height:49.298667pt;}
.h14{height:51.002667pt;}
.h10{height:52.448000pt;}
.ha{height:54.560000pt;}
.h7{height:57.658667pt;}
.h6{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:68.031469pt;}
.x8{left:69.996800pt;}
.x4{left:75.717199pt;}
.x9{left:83.138135pt;}
.x7{left:86.929867pt;}
.xe{left:90.709469pt;}
.xb{left:238.110802pt;}
.xd{left:323.084270pt;}
.x5{left:408.191456pt;}
.x6{left:423.311456pt;}
.xf{left:430.868145pt;}
.xc{left:473.617208pt;}
.x1{left:647.307210pt;}
.x2{left:671.546549pt;}
.xa{left:709.519613pt;}
}




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