
    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_cba5ce04d62f57f86a5c1a5e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.166000;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_b55d9f1409a70bda45d3f9fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.174000;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_c7020c6ab2ac84190947bae5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166000;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_5887844f43f7b162bbe2a581.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.162900;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_b56929469aae5626e4b0103f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.160000;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_0a97fee8b0f69a5d55b0c1c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.196000;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_ecbf72638abfc76d45ff7ca0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.184000;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_61628696f2a324da2d567334.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.135000;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_0dda8ed88ea617401283cb23.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.026000;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);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.150000px;}
.v4{vertical-align:18.772200px;}
.v1{vertical-align:19.980600px;}
.v5{vertical-align:66.011400px;}
.ls7f{letter-spacing:-6.375000px;}
.ls2e{letter-spacing:-4.620000px;}
.ls35{letter-spacing:-4.266000px;}
.ls63{letter-spacing:-3.120000px;}
.ls67{letter-spacing:-3.000000px;}
.ls50{letter-spacing:-2.754000px;}
.ls60{letter-spacing:-2.700000px;}
.ls4c{letter-spacing:-2.592000px;}
.ls52{letter-spacing:-2.538000px;}
.ls45{letter-spacing:-2.376000px;}
.ls39{letter-spacing:-2.268000px;}
.ls3e{letter-spacing:-2.214000px;}
.ls42{letter-spacing:-2.052000px;}
.ls2c{letter-spacing:-1.728000px;}
.ls5a{letter-spacing:-1.620000px;}
.ls7a{letter-spacing:-1.506600px;}
.ls59{letter-spacing:-1.224300px;}
.ls55{letter-spacing:-1.200000px;}
.ls20{letter-spacing:-0.960000px;}
.ls3f{letter-spacing:-0.874500px;}
.ls56{letter-spacing:-0.699600px;}
.ls7d{letter-spacing:-0.648000px;}
.ls53{letter-spacing:-0.600000px;}
.ls70{letter-spacing:-0.540000px;}
.ls43{letter-spacing:-0.510000px;}
.ls80{letter-spacing:-0.486000px;}
.ls72{letter-spacing:-0.420000px;}
.ls48{letter-spacing:-0.414000px;}
.ls71{letter-spacing:-0.360000px;}
.ls54{letter-spacing:-0.349800px;}
.ls22{letter-spacing:-0.334800px;}
.ls5b{letter-spacing:-0.300000px;}
.ls46{letter-spacing:-0.279840px;}
.ls74{letter-spacing:-0.279000px;}
.ls1f{letter-spacing:-0.240000px;}
.ls49{letter-spacing:-0.223200px;}
.ls69{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.180000px;}
.ls73{letter-spacing:-0.174900px;}
.ls30{letter-spacing:-0.167400px;}
.ls2d{letter-spacing:-0.120000px;}
.ls28{letter-spacing:-0.111600px;}
.lsd{letter-spacing:-0.102000px;}
.ls47{letter-spacing:-0.069960px;}
.ls27{letter-spacing:-0.060000px;}
.ls41{letter-spacing:-0.055800px;}
.ls6f{letter-spacing:-0.054000px;}
.lsc{letter-spacing:-0.051000px;}
.ls9{letter-spacing:0.000000px;}
.ls5e{letter-spacing:0.027900px;}
.ls24{letter-spacing:0.030000px;}
.ls62{letter-spacing:0.034980px;}
.ls34{letter-spacing:0.055800px;}
.ls29{letter-spacing:0.060000px;}
.ls33{letter-spacing:0.072000px;}
.ls32{letter-spacing:0.090000px;}
.ls6{letter-spacing:0.102000px;}
.ls77{letter-spacing:0.108000px;}
.ls57{letter-spacing:0.111600px;}
.ls11{letter-spacing:0.120000px;}
.ls66{letter-spacing:0.139920px;}
.ls25{letter-spacing:0.167400px;}
.ls61{letter-spacing:0.174900px;}
.ls8{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.204000px;}
.ls65{letter-spacing:0.209880px;}
.ls5c{letter-spacing:0.223200px;}
.ls21{letter-spacing:0.240000px;}
.ls68{letter-spacing:0.251100px;}
.ls36{letter-spacing:0.270000px;}
.ls4d{letter-spacing:0.279000px;}
.ls31{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.306000px;}
.ls51{letter-spacing:0.330000px;}
.ls23{letter-spacing:0.334800px;}
.ls40{letter-spacing:0.349800px;}
.ls37{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.362700px;}
.ls64{letter-spacing:0.378000px;}
.ls4e{letter-spacing:0.390000px;}
.ls1e{letter-spacing:0.390600px;}
.ls1a{letter-spacing:0.393000px;}
.ls6b{letter-spacing:0.414000px;}
.ls10{letter-spacing:0.420000px;}
.ls1c{letter-spacing:0.446400px;}
.ls3d{letter-spacing:0.450000px;}
.ls12{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.510000px;}
.ls4b{letter-spacing:0.540000px;}
.ls6c{letter-spacing:0.558000px;}
.ls13{letter-spacing:0.600000px;}
.ls26{letter-spacing:0.648000px;}
.ls19{letter-spacing:0.660000px;}
.ls2b{letter-spacing:0.694560px;}
.ls2{letter-spacing:0.714000px;}
.ls1b{letter-spacing:0.720000px;}
.ls5d{letter-spacing:0.725400px;}
.ls4f{letter-spacing:0.750000px;}
.ls5{letter-spacing:0.765000px;}
.ls3a{letter-spacing:0.780000px;}
.ls76{letter-spacing:0.781200px;}
.ls3c{letter-spacing:0.810000px;}
.ls1{letter-spacing:0.816000px;}
.ls6e{letter-spacing:0.837000px;}
.ls38{letter-spacing:0.840000px;}
.ls14{letter-spacing:0.900000px;}
.ls58{letter-spacing:0.918000px;}
.ls75{letter-spacing:0.948600px;}
.ls3b{letter-spacing:0.960000px;}
.ls0{letter-spacing:0.969000px;}
.ls78{letter-spacing:0.972000px;}
.ls17{letter-spacing:0.990000px;}
.ls6d{letter-spacing:1.004400px;}
.ls16{letter-spacing:1.020000px;}
.ls2a{letter-spacing:1.050000px;}
.ls15{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.122000px;}
.ls18{letter-spacing:1.140000px;}
.lse{letter-spacing:1.200000px;}
.ls5f{letter-spacing:1.350000px;}
.ls4a{letter-spacing:1.500000px;}
.ls7c{letter-spacing:1.620000px;}
.ls2f{letter-spacing:1.740000px;}
.ls44{letter-spacing:2.100000px;}
.ls7b{letter-spacing:2.340000px;}
.lsa{letter-spacing:2.550000px;}
.ls7e{letter-spacing:3.111000px;}
.ls79{letter-spacing:147.423600px;}
.ls6a{letter-spacing:162.767580px;}
.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;}
}
.ws171{word-spacing:-14.418000px;}
.ws179{word-spacing:-14.382000px;}
.ws10f{word-spacing:-14.148000px;}
.ws0{word-spacing:-13.821000px;}
.wsfd{word-spacing:-13.716000px;}
.wsc4{word-spacing:-13.440000px;}
.ws124{word-spacing:-13.176000px;}
.ws15c{word-spacing:-12.906000px;}
.ws125{word-spacing:-12.900000px;}
.ws140{word-spacing:-12.582000px;}
.ws64{word-spacing:-12.540000px;}
.ws17e{word-spacing:-12.312000px;}
.ws1c{word-spacing:-12.300000px;}
.ws18{word-spacing:-12.270000px;}
.ws3{word-spacing:-12.240000px;}
.ws8b{word-spacing:-12.120000px;}
.ws8a{word-spacing:-12.000000px;}
.ws1e{word-spacing:-11.997000px;}
.wsdf{word-spacing:-11.760000px;}
.ws178{word-spacing:-11.580000px;}
.ws2{word-spacing:-11.577000px;}
.ws1b{word-spacing:-11.520000px;}
.ws1a{word-spacing:-11.400000px;}
.ws15d{word-spacing:-11.370000px;}
.wsd0{word-spacing:-11.340000px;}
.ws3b{word-spacing:-11.310000px;}
.ws3c{word-spacing:-11.280000px;}
.ws138{word-spacing:-11.220000px;}
.ws1{word-spacing:-11.169000px;}
.ws65{word-spacing:-11.160000px;}
.ws113{word-spacing:-11.100000px;}
.ws55{word-spacing:-11.070000px;}
.ws11f{word-spacing:-11.040000px;}
.wsae{word-spacing:-10.992600px;}
.ws107{word-spacing:-10.980000px;}
.ws17b{word-spacing:-10.965000px;}
.ws9d{word-spacing:-10.746000px;}
.ws184{word-spacing:-10.659000px;}
.wsde{word-spacing:-10.584000px;}
.ws74{word-spacing:-10.530000px;}
.ws19{word-spacing:-10.320000px;}
.wsc1{word-spacing:-10.206000px;}
.ws110{word-spacing:-9.840000px;}
.wsf7{word-spacing:-9.720000px;}
.ws56{word-spacing:-9.600000px;}
.ws114{word-spacing:-9.420000px;}
.ws1d{word-spacing:-8.901000px;}
.wsad{word-spacing:-8.487000px;}
.ws8c{word-spacing:-7.660620px;}
.ws126{word-spacing:-7.520700px;}
.ws111{word-spacing:-7.485720px;}
.ws127{word-spacing:-7.450740px;}
.ws112{word-spacing:-7.345800px;}
.ws17{word-spacing:-7.310820px;}
.wsaa{word-spacing:-7.240860px;}
.wsa9{word-spacing:-7.030980px;}
.wsec{word-spacing:-6.961020px;}
.wsed{word-spacing:-6.611220px;}
.ws89{word-spacing:-6.436320px;}
.wsfe{word-spacing:-6.086520px;}
.ws17a{word-spacing:-4.590000px;}
.wsd7{word-spacing:-3.720000px;}
.ws34{word-spacing:-2.343600px;}
.ws170{word-spacing:-2.340000px;}
.ws44{word-spacing:-2.280000px;}
.ws10c{word-spacing:-2.220000px;}
.ws123{word-spacing:-2.100000px;}
.wse9{word-spacing:-2.040000px;}
.ws58{word-spacing:-1.980000px;}
.ws22{word-spacing:-1.920000px;}
.ws156{word-spacing:-1.897200px;}
.ws15{word-spacing:-1.860000px;}
.ws51{word-spacing:-1.785600px;}
.ws4b{word-spacing:-1.740000px;}
.ws61{word-spacing:-1.680000px;}
.ws8{word-spacing:-1.632000px;}
.ws76{word-spacing:-1.620000px;}
.wsa{word-spacing:-1.581000px;}
.wsc0{word-spacing:-1.562400px;}
.ws106{word-spacing:-1.560000px;}
.ws130{word-spacing:-1.500000px;}
.wsb{word-spacing:-1.479000px;}
.ws11c{word-spacing:-1.450800px;}
.ws15f{word-spacing:-1.440000px;}
.ws131{word-spacing:-1.395000px;}
.ws4c{word-spacing:-1.380000px;}
.wsa7{word-spacing:-1.339200px;}
.ws93{word-spacing:-1.320000px;}
.ws9c{word-spacing:-1.283400px;}
.wsb3{word-spacing:-1.260000px;}
.wsce{word-spacing:-1.227600px;}
.ws13{word-spacing:-1.200000px;}
.ws10{word-spacing:-1.173000px;}
.ws6f{word-spacing:-1.140000px;}
.wse{word-spacing:-1.122000px;}
.ws12e{word-spacing:-1.080000px;}
.wsbe{word-spacing:-1.060200px;}
.ws4e{word-spacing:-1.020000px;}
.ws82{word-spacing:-0.960000px;}
.ws11a{word-spacing:-0.948600px;}
.ws14f{word-spacing:-0.900000px;}
.ws2f{word-spacing:-0.840000px;}
.ws15b{word-spacing:-0.781200px;}
.ws92{word-spacing:-0.780000px;}
.ws42{word-spacing:-0.720000px;}
.ws180{word-spacing:-0.714000px;}
.wsd5{word-spacing:-0.660000px;}
.ws3d{word-spacing:-0.648000px;}
.ws80{word-spacing:-0.600000px;}
.wsea{word-spacing:-0.540000px;}
.ws9b{word-spacing:-0.480000px;}
.ws181{word-spacing:-0.459000px;}
.ws10a{word-spacing:-0.420000px;}
.ws157{word-spacing:-0.414000px;}
.ws182{word-spacing:-0.408000px;}
.wsbb{word-spacing:-0.390600px;}
.wsc7{word-spacing:-0.360000px;}
.ws183{word-spacing:-0.357000px;}
.ws36{word-spacing:-0.334800px;}
.ws14{word-spacing:-0.300000px;}
.ws28{word-spacing:-0.240000px;}
.ws32{word-spacing:-0.223200px;}
.wsf{word-spacing:-0.204000px;}
.wsb7{word-spacing:-0.180000px;}
.wsbf{word-spacing:-0.167400px;}
.wseb{word-spacing:-0.120000px;}
.ws62{word-spacing:-0.111600px;}
.wsa2{word-spacing:-0.060000px;}
.ws13e{word-spacing:-0.055800px;}
.ws4{word-spacing:0.000000px;}
.ws158{word-spacing:0.055800px;}
.ws4f{word-spacing:0.060000px;}
.ws85{word-spacing:0.111600px;}
.ws5c{word-spacing:0.120000px;}
.ws151{word-spacing:0.174900px;}
.ws43{word-spacing:0.180000px;}
.wscc{word-spacing:0.223200px;}
.ws41{word-spacing:0.240000px;}
.ws11{word-spacing:0.255000px;}
.ws5b{word-spacing:0.300000px;}
.ws9{word-spacing:0.357000px;}
.ws81{word-spacing:0.360000px;}
.wsa8{word-spacing:0.390600px;}
.ws4a{word-spacing:0.480000px;}
.ws52{word-spacing:0.502200px;}
.ws12{word-spacing:0.510000px;}
.ws68{word-spacing:0.540000px;}
.ws3a{word-spacing:0.558000px;}
.ws21{word-spacing:0.600000px;}
.ws2e{word-spacing:0.660000px;}
.wsf1{word-spacing:0.699600px;}
.wsc{word-spacing:0.765000px;}
.ws20{word-spacing:0.780000px;}
.ws6e{word-spacing:0.840000px;}
.ws155{word-spacing:0.892800px;}
.ws70{word-spacing:0.900000px;}
.ws88{word-spacing:0.948600px;}
.ws27{word-spacing:0.960000px;}
.wsa1{word-spacing:1.020000px;}
.ws168{word-spacing:1.060200px;}
.ws30{word-spacing:1.080000px;}
.wsc6{word-spacing:1.140000px;}
.ws39{word-spacing:1.171800px;}
.ws98{word-spacing:1.200000px;}
.ws29{word-spacing:1.260000px;}
.ws2a{word-spacing:1.320000px;}
.ws97{word-spacing:1.380000px;}
.ws87{word-spacing:1.395000px;}
.ws116{word-spacing:1.440000px;}
.ws72{word-spacing:1.450800px;}
.ws16f{word-spacing:1.500000px;}
.ws86{word-spacing:1.506600px;}
.ws4d{word-spacing:1.560000px;}
.ws7{word-spacing:1.581000px;}
.ws5a{word-spacing:1.620000px;}
.wsbc{word-spacing:1.674000px;}
.ws5e{word-spacing:1.680000px;}
.wscf{word-spacing:1.729800px;}
.ws150{word-spacing:1.740000px;}
.ws54{word-spacing:1.785600px;}
.ws73{word-spacing:1.841400px;}
.ws24{word-spacing:1.860000px;}
.ws13f{word-spacing:1.897200px;}
.ws16{word-spacing:1.920000px;}
.ws15a{word-spacing:1.953000px;}
.ws7b{word-spacing:1.980000px;}
.wsc5{word-spacing:2.040000px;}
.ws2b{word-spacing:2.100000px;}
.wsd{word-spacing:2.142000px;}
.ws67{word-spacing:2.160000px;}
.ws6{word-spacing:2.193000px;}
.wsb4{word-spacing:2.220000px;}
.ws7d{word-spacing:2.340000px;}
.ws84{word-spacing:2.400000px;}
.ws119{word-spacing:2.455200px;}
.wsf4{word-spacing:2.460000px;}
.ws50{word-spacing:2.511000px;}
.ws95{word-spacing:2.520000px;}
.ws53{word-spacing:2.566800px;}
.ws7e{word-spacing:2.580000px;}
.ws71{word-spacing:2.622600px;}
.ws129{word-spacing:2.640000px;}
.ws96{word-spacing:2.700000px;}
.ws83{word-spacing:2.760000px;}
.wsb9{word-spacing:2.790000px;}
.wsa0{word-spacing:2.820000px;}
.ws37{word-spacing:2.845800px;}
.wsbd{word-spacing:2.901600px;}
.ws109{word-spacing:2.940000px;}
.wsb8{word-spacing:2.957400px;}
.ws7c{word-spacing:3.000000px;}
.ws38{word-spacing:3.013200px;}
.wsd6{word-spacing:3.060000px;}
.ws63{word-spacing:3.069000px;}
.ws5f{word-spacing:3.120000px;}
.ws59{word-spacing:3.180000px;}
.wscd{word-spacing:3.180600px;}
.wsba{word-spacing:3.236400px;}
.wsb5{word-spacing:3.240000px;}
.wsf3{word-spacing:3.300000px;}
.ws49{word-spacing:3.360000px;}
.ws33{word-spacing:3.403800px;}
.ws23{word-spacing:3.420000px;}
.ws159{word-spacing:3.459600px;}
.ws94{word-spacing:3.480000px;}
.ws5d{word-spacing:3.540000px;}
.ws26{word-spacing:3.600000px;}
.ws5{word-spacing:3.621000px;}
.ws122{word-spacing:3.720000px;}
.ws31{word-spacing:3.780000px;}
.ws2c{word-spacing:3.840000px;}
.ws99{word-spacing:3.900000px;}
.ws25{word-spacing:4.020000px;}
.ws17d{word-spacing:4.080000px;}
.ws9a{word-spacing:4.140000px;}
.ws10b{word-spacing:4.200000px;}
.ws2d{word-spacing:4.260000px;}
.wsc8{word-spacing:4.500000px;}
.ws60{word-spacing:4.800000px;}
.wsc3{word-spacing:5.040000px;}
.ws144{word-spacing:5.280000px;}
.ws11b{word-spacing:5.914800px;}
.wsda{word-spacing:6.120000px;}
.ws14e{word-spacing:6.480000px;}
.ws7f{word-spacing:6.780000px;}
.ws121{word-spacing:7.680000px;}
.wsf0{word-spacing:8.820000px;}
.wsb6{word-spacing:9.780000px;}
.wsf5{word-spacing:10.800000px;}
.ws164{word-spacing:14.100000px;}
.ws14c{word-spacing:14.820000px;}
.ws12a{word-spacing:16.500000px;}
.wsfb{word-spacing:17.400000px;}
.ws148{word-spacing:19.020000px;}
.wsd4{word-spacing:19.560000px;}
.ws147{word-spacing:22.500000px;}
.ws12b{word-spacing:22.800000px;}
.wsd3{word-spacing:23.040000px;}
.ws14d{word-spacing:23.640000px;}
.wse8{word-spacing:24.600000px;}
.ws142{word-spacing:25.020000px;}
.ws145{word-spacing:25.080000px;}
.wse3{word-spacing:25.140000px;}
.ws78{word-spacing:25.980000px;}
.wse6{word-spacing:27.360000px;}
.ws45{word-spacing:27.780000px;}
.wse7{word-spacing:28.080000px;}
.wsdb{word-spacing:28.620000px;}
.ws13d{word-spacing:29.100000px;}
.ws143{word-spacing:30.480000px;}
.wsd2{word-spacing:30.540000px;}
.wsb2{word-spacing:30.600000px;}
.wse5{word-spacing:30.840000px;}
.ws12f{word-spacing:30.960000px;}
.ws16b{word-spacing:31.989000px;}
.ws13c{word-spacing:32.580000px;}
.ws8f{word-spacing:32.880000px;}
.wsc9{word-spacing:34.020000px;}
.wsb0{word-spacing:34.080000px;}
.ws91{word-spacing:35.100000px;}
.ws160{word-spacing:35.640000px;}
.wsa6{word-spacing:36.300000px;}
.ws8e{word-spacing:36.360000px;}
.ws90{word-spacing:38.580000px;}
.ws7a{word-spacing:39.300000px;}
.ws161{word-spacing:39.540000px;}
.wsa3{word-spacing:39.780000px;}
.wsf6{word-spacing:39.960000px;}
.wsf2{word-spacing:41.460000px;}
.ws6a{word-spacing:42.060000px;}
.wsdc{word-spacing:46.560000px;}
.wsa4{word-spacing:47.460000px;}
.wsca{word-spacing:49.320000px;}
.ws77{word-spacing:50.400000px;}
.ws6c{word-spacing:50.460000px;}
.ws175{word-spacing:51.559200px;}
.ws35{word-spacing:51.615000px;}
.ws14a{word-spacing:51.960000px;}
.ws69{word-spacing:52.200000px;}
.ws46{word-spacing:52.740000px;}
.wsf9{word-spacing:53.400000px;}
.ws117{word-spacing:53.940000px;}
.ws6d{word-spacing:54.480000px;}
.ws153{word-spacing:54.960000px;}
.ws166{word-spacing:55.020000px;}
.ws6b{word-spacing:56.160000px;}
.ws167{word-spacing:59.040000px;}
.wsef{word-spacing:59.460000px;}
.ws152{word-spacing:59.520000px;}
.ws165{word-spacing:60.720000px;}
.wsf8{word-spacing:65.460000px;}
.wse4{word-spacing:65.820000px;}
.ws135{word-spacing:67.518000px;}
.ws146{word-spacing:69.120000px;}
.ws12d{word-spacing:71.460000px;}
.ws154{word-spacing:72.360000px;}
.ws13a{word-spacing:75.120000px;}
.ws10d{word-spacing:77.940000px;}
.wsfc{word-spacing:80.340000px;}
.wsd8{word-spacing:81.503400px;}
.ws163{word-spacing:82.500000px;}
.ws149{word-spacing:88.440000px;}
.ws16e{word-spacing:90.180000px;}
.ws162{word-spacing:92.340000px;}
.wsd9{word-spacing:95.820000px;}
.wsa5{word-spacing:100.200000px;}
.ws118{word-spacing:104.340000px;}
.ws13b{word-spacing:105.780000px;}
.ws40{word-spacing:107.640000px;}
.ws79{word-spacing:115.800000px;}
.ws10e{word-spacing:116.340000px;}
.wsb1{word-spacing:118.200000px;}
.ws47{word-spacing:119.460000px;}
.ws16a{word-spacing:122.034600px;}
.ws48{word-spacing:123.540000px;}
.ws172{word-spacing:126.219600px;}
.ws137{word-spacing:134.757000px;}
.ws16c{word-spacing:141.397200px;}
.wscb{word-spacing:152.340000px;}
.wsdd{word-spacing:157.560000px;}
.ws169{word-spacing:180.457200px;}
.wsff{word-spacing:201.828600px;}
.ws3f{word-spacing:203.460000px;}
.ws132{word-spacing:207.464400px;}
.ws12c{word-spacing:234.540000px;}
.ws11d{word-spacing:253.164600px;}
.ws105{word-spacing:253.620000px;}
.wsab{word-spacing:259.916400px;}
.ws104{word-spacing:268.740000px;}
.wsfa{word-spacing:305.400000px;}
.ws174{word-spacing:371.293200px;}
.ws176{word-spacing:406.112400px;}
.wse0{word-spacing:447.181200px;}
.ws136{word-spacing:525.301200px;}
.ws134{word-spacing:612.907200px;}
.ws102{word-spacing:627.080400px;}
.ws9e{word-spacing:628.587000px;}
.ws100{word-spacing:662.457600px;}
.ws11e{word-spacing:805.975200px;}
.wse1{word-spacing:941.011200px;}
.ws173{word-spacing:1032.579000px;}
.ws101{word-spacing:1130.787000px;}
.ws133{word-spacing:1136.478600px;}
.wsac{word-spacing:1222.522200px;}
.ws177{word-spacing:1265.382000px;}
.ws115{word-spacing:1265.706000px;}
.ws103{word-spacing:1266.138000px;}
.ws128{word-spacing:1266.678000px;}
.ws15e{word-spacing:1266.948000px;}
.ws141{word-spacing:1267.272000px;}
.ws17f{word-spacing:1267.488000px;}
.ws57{word-spacing:1268.784000px;}
.ws9f{word-spacing:1269.108000px;}
.wse2{word-spacing:1269.270000px;}
.ws75{word-spacing:1269.324000px;}
.wsc2{word-spacing:1269.648000px;}
.ws1f{word-spacing:1298.376000px;}
.ws185{word-spacing:1708.020000px;}
.ws16d{word-spacing:1709.316000px;}
.ws120{word-spacing:1710.126000px;}
.ws139{word-spacing:1710.180000px;}
.ws14b{word-spacing:1711.368000px;}
.ws17c{word-spacing:1712.556000px;}
.ws108{word-spacing:1714.500000px;}
.ws8d{word-spacing:1715.688000px;}
.wsaf{word-spacing:1716.012000px;}
.wsee{word-spacing:1716.282000px;}
.wsd1{word-spacing:1716.768000px;}
.ws66{word-spacing:1719.792000px;}
.ws3e{word-spacing:1742.580000px;}
._b{margin-left:-1298.888400px;}
._c{margin-left:-1297.733400px;}
._77{margin-left:-1269.936300px;}
._2f{margin-left:-1268.911200px;}
._ea{margin-left:-1267.753200px;}
._b8{margin-left:-1266.483000px;}
._ce{margin-left:-1265.223600px;}
._16{margin-left:-203.712000px;}
._12{margin-left:-177.300000px;}
._fa{margin-left:-129.660000px;}
._15{margin-left:-91.500000px;}
._17{margin-left:-80.028000px;}
._13{margin-left:-71.270400px;}
._14{margin-left:-54.960000px;}
._10{margin-left:-48.825600px;}
._62{margin-left:-46.714800px;}
._7e{margin-left:-43.500000px;}
._b3{margin-left:-40.680000px;}
._f4{margin-left:-38.160000px;}
._ab{margin-left:-36.660000px;}
._e8{margin-left:-33.780000px;}
._61{margin-left:-32.580000px;}
._98{margin-left:-30.180000px;}
._99{margin-left:-28.994400px;}
._ac{margin-left:-25.740000px;}
._d8{margin-left:-24.660000px;}
._b2{margin-left:-18.900000px;}
._d{margin-left:-17.200800px;}
._3{margin-left:-14.618400px;}
._f1{margin-left:-13.102500px;}
._23{margin-left:-11.688000px;}
._7{margin-left:-9.169200px;}
._30{margin-left:-7.500000px;}
._4{margin-left:-6.395400px;}
._a{margin-left:-5.073300px;}
._6{margin-left:-4.010400px;}
._1{margin-left:-2.880000px;}
._0{margin-left:-1.449600px;}
._2{width:1.264800px;}
._8{width:2.417400px;}
._5{width:3.442500px;}
._9{width:4.508100px;}
._31{width:6.471900px;}
._50{width:7.740000px;}
._66{width:9.102420px;}
._d6{width:10.320000px;}
._cb{width:12.180000px;}
._78{width:13.500000px;}
._1b{width:15.882000px;}
._28{width:16.920000px;}
._b9{width:18.060000px;}
._1d{width:20.640000px;}
._b5{width:21.650400px;}
._b4{width:22.739040px;}
._bd{width:23.981580px;}
._9f{width:25.852200px;}
._73{width:27.103020px;}
._2a{width:28.372200px;}
._bc{width:29.400000px;}
._7c{width:30.800400px;}
._48{width:32.530200px;}
._3a{width:33.840000px;}
._6a{width:35.767200px;}
._6b{width:37.218000px;}
._49{width:38.780400px;}
._c9{width:40.135500px;}
._c7{width:41.196000px;}
._51{width:43.320000px;}
._f8{width:44.529600px;}
._e5{width:45.720000px;}
._f{width:47.931000px;}
._11{width:50.610600px;}
._2e{width:51.949200px;}
._2d{width:53.288400px;}
._25{width:54.480000px;}
._6f{width:56.469600px;}
._e{width:57.640800px;}
._9b{width:58.800000px;}
._8c{width:60.189600px;}
._2c{width:61.920000px;}
._f2{width:62.949600px;}
._83{width:64.029600px;}
._5c{width:65.280000px;}
._cc{width:66.420000px;}
._79{width:67.560000px;}
._7f{width:69.300000px;}
._52{width:72.060000px;}
._26{width:73.449600px;}
._55{width:74.709600px;}
._4a{width:76.689600px;}
._27{width:77.760000px;}
._29{width:79.260000px;}
._fd{width:80.353200px;}
._38{width:81.480000px;}
._3b{width:82.680000px;}
._e7{width:84.489600px;}
._4e{width:85.980000px;}
._22{width:88.089600px;}
._cd{width:89.466300px;}
._1c{width:90.738000px;}
._a8{width:92.076000px;}
._b1{width:93.120000px;}
._a2{width:94.182000px;}
._7b{width:95.510400px;}
._9a{width:98.076000px;}
._1f{width:99.309600px;}
._4c{width:101.109600px;}
._33{width:102.780000px;}
._2b{width:103.920000px;}
._3f{width:105.900000px;}
._37{width:109.500000px;}
._67{width:111.480000px;}
._65{width:113.399640px;}
._19{width:115.440000px;}
._e3{width:116.669400px;}
._36{width:117.789600px;}
._4b{width:119.280000px;}
._32{width:121.080000px;}
._4d{width:122.520000px;}
._18{width:123.780000px;}
._68{width:125.160000px;}
._cf{width:126.242700px;}
._8e{width:127.403100px;}
._ed{width:129.480000px;}
._87{width:132.236220px;}
._57{width:134.700000px;}
._6e{width:136.680000px;}
._86{width:138.421200px;}
._72{width:140.160000px;}
._20{width:141.900000px;}
._fb{width:143.442000px;}
._3e{width:144.840000px;}
._fe{width:146.349600px;}
._54{width:147.672000px;}
._58{width:150.300000px;}
._c6{width:152.852400px;}
._c4{width:154.260000px;}
._5d{width:155.340000px;}
._a0{width:156.710400px;}
._35{width:157.800000px;}
._1a{width:159.960000px;}
._88{width:161.262000px;}
._53{width:164.510400px;}
._90{width:166.208100px;}
._89{width:168.060000px;}
._e2{width:170.915400px;}
._60{width:172.980000px;}
._21{width:175.680000px;}
._4f{width:176.820000px;}
._f7{width:180.129600px;}
._47{width:182.280000px;}
._f5{width:184.080000px;}
._42{width:186.300000px;}
._c8{width:189.733800px;}
._c5{width:193.969200px;}
._d1{width:201.531600px;}
._24{width:203.688000px;}
._97{width:205.440000px;}
._8b{width:207.180000px;}
._1e{width:212.040000px;}
._45{width:213.480000px;}
._d9{width:215.280000px;}
._40{width:217.869600px;}
._a9{width:218.982000px;}
._8f{width:222.420000px;}
._e0{width:225.487800px;}
._b6{width:227.580000px;}
._102{width:229.561200px;}
._ec{width:232.629600px;}
._3d{width:233.680800px;}
._34{width:237.480000px;}
._7a{width:244.149600px;}
._da{width:245.760000px;}
._7d{width:247.059000px;}
._81{width:249.301200px;}
._8d{width:250.800000px;}
._82{width:253.080000px;}
._a4{width:255.120000px;}
._fc{width:256.324200px;}
._92{width:257.852400px;}
._84{width:260.640000px;}
._85{width:264.069600px;}
._100{width:266.997600px;}
._44{width:268.749600px;}
._ff{width:269.857200px;}
._a1{width:275.406000px;}
._ef{width:277.728600px;}
._43{width:280.860000px;}
._39{width:282.328800px;}
._e4{width:283.920000px;}
._db{width:292.269600px;}
._5a{width:293.529600px;}
._56{width:295.320000px;}
._59{width:299.229600px;}
._d7{width:301.075500px;}
._ae{width:307.842000px;}
._80{width:311.170740px;}
._d3{width:313.317000px;}
._b7{width:315.480000px;}
._dc{width:317.700000px;}
._ad{width:319.482000px;}
._8a{width:321.198000px;}
._3c{width:323.700000px;}
._eb{width:331.953600px;}
._f9{width:335.880000px;}
._d2{width:342.178980px;}
._a5{width:348.758520px;}
._9c{width:353.760000px;}
._c3{width:357.678000px;}
._df{width:363.369600px;}
._ca{width:366.162360px;}
._93{width:367.889400px;}
._be{width:372.848400px;}
._e9{width:375.147000px;}
._dd{width:383.700000px;}
._d4{width:385.622700px;}
._ee{width:388.980000px;}
._aa{width:407.382000px;}
._75{width:415.821600px;}
._d0{width:432.480000px;}
._69{width:446.220000px;}
._f6{width:449.612100px;}
._d5{width:451.440000px;}
._bf{width:461.708400px;}
._74{width:464.220000px;}
._de{width:468.180000px;}
._c2{width:473.348400px;}
._5e{width:480.327600px;}
._63{width:484.069800px;}
._6c{width:486.712800px;}
._70{width:489.619200px;}
._af{width:506.031600px;}
._95{width:509.574480px;}
._c0{width:523.921140px;}
._a7{width:527.477580px;}
._9d{width:535.182600px;}
._46{width:549.480000px;}
._41{width:553.500000px;}
._5f{width:559.680000px;}
._c1{width:561.248400px;}
._64{width:563.160000px;}
._bb{width:572.640000px;}
._6d{width:583.380000px;}
._a6{width:585.771600px;}
._71{width:586.860000px;}
._a3{width:626.215200px;}
._f3{width:648.324960px;}
._91{width:660.720000px;}
._e1{width:673.561800px;}
._76{width:708.421560px;}
._9e{width:722.640000px;}
._ba{width:750.539400px;}
._e6{width:759.510600px;}
._96{width:768.960000px;}
._b0{width:830.640000px;}
._f0{width:832.518420px;}
._94{width:954.180000px;}
._101{width:1001.442600px;}
._5b{width:1233.067200px;}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:32.531400px;}
.fs5{font-size:34.980000px;}
.fs6{font-size:41.400000px;}
.fs2{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:55.800000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yd6{bottom:90.548700px;}
.y61{bottom:90.554700px;}
.y7e{bottom:90.554850px;}
.ydc{bottom:90.560850px;}
.y4d{bottom:90.561000px;}
.y5a{bottom:90.567000px;}
.y87{bottom:90.567150px;}
.yb1{bottom:90.618600px;}
.y25{bottom:91.318050px;}
.y134{bottom:105.237300px;}
.y11d{bottom:105.250050px;}
.y59{bottom:107.804700px;}
.yd5{bottom:107.804850px;}
.y60{bottom:107.810850px;}
.y7d{bottom:107.811000px;}
.y98{bottom:107.817000px;}
.y4c{bottom:107.817150px;}
.yca{bottom:107.817300px;}
.y24{bottom:109.768050px;}
.y192{bottom:111.888300px;}
.y163{bottom:111.926550px;}
.yb0{bottom:115.872000px;}
.y133{bottom:122.488050px;}
.y11c{bottom:122.500800px;}
.y4b{bottom:125.048850px;}
.y58{bottom:125.060850px;}
.y79{bottom:125.061000px;}
.y5f{bottom:125.067000px;}
.y7c{bottom:125.067150px;}
.y23{bottom:128.218050px;}
.ya7{bottom:128.218200px;}
.y191{bottom:129.139050px;}
.y162{bottom:129.177300px;}
.yaf{bottom:132.374850px;}
.y132{bottom:139.738800px;}
.y11b{bottom:139.751550px;}
.ya1{bottom:142.292550px;}
.y4a{bottom:142.305000px;}
.y5e{bottom:142.311000px;}
.y57{bottom:142.317000px;}
.y78{bottom:142.317150px;}
.y190{bottom:146.389800px;}
.y161{bottom:146.428050px;}
.ya6{bottom:146.668050px;}
.yae{bottom:151.346850px;}
.y131{bottom:156.989550px;}
.y11a{bottom:157.002300px;}
.yc9{bottom:157.691550px;}
.ya0{bottom:159.548700px;}
.y56{bottom:159.554850px;}
.yd4{bottom:159.561000px;}
.y49{bottom:159.561150px;}
.y5d{bottom:159.567150px;}
.y77{bottom:159.567300px;}
.y18f{bottom:163.640550px;}
.y160{bottom:163.678800px;}
.y22{bottom:165.118050px;}
.yad{bottom:170.318850px;}
.y130{bottom:174.240300px;}
.y119{bottom:174.253050px;}
.y9f{bottom:176.804850px;}
.y55{bottom:176.811000px;}
.y97{bottom:176.817150px;}
.y48{bottom:176.817300px;}
.y5c{bottom:176.817450px;}
.y18e{bottom:180.891300px;}
.y15f{bottom:180.929550px;}
.yc8{bottom:182.947950px;}
.y7b{bottom:183.568050px;}
.yac{bottom:189.290850px;}
.y12f{bottom:191.491050px;}
.y118{bottom:191.503800px;}
.ydb{bottom:194.055000px;}
.y9e{bottom:194.061000px;}
.yc0{bottom:194.061150px;}
.y47{bottom:194.061300px;}
.y54{bottom:194.067150px;}
.y5b{bottom:194.067450px;}
.y18d{bottom:198.142050px;}
.y15e{bottom:198.180300px;}
.yc7{bottom:201.919950px;}
.y7a{bottom:202.018050px;}
.yd7{bottom:202.018200px;}
.yab{bottom:208.262850px;}
.y12e{bottom:208.741800px;}
.y117{bottom:208.754550px;}
.yda{bottom:211.311150px;}
.y9d{bottom:211.317150px;}
.ybf{bottom:211.317300px;}
.y46{bottom:211.317450px;}
.y18c{bottom:215.392800px;}
.y15d{bottom:215.431050px;}
.y21{bottom:216.781200px;}
.y76{bottom:220.468050px;}
.y86{bottom:220.468200px;}
.yc6{bottom:220.878000px;}
.y12d{bottom:225.992550px;}
.y116{bottom:226.005300px;}
.ybe{bottom:228.555150px;}
.y96{bottom:228.561300px;}
.y9c{bottom:228.567300px;}
.y53{bottom:228.567450px;}
.y45{bottom:228.567600px;}
.y18b{bottom:232.643550px;}
.y15c{bottom:232.681800px;}
.y20{bottom:234.031950px;}
.yc5{bottom:237.380850px;}
.y75{bottom:238.918050px;}
.y85{bottom:238.918200px;}
.y12c{bottom:243.243300px;}
.y115{bottom:243.256050px;}
.y9b{bottom:245.811300px;}
.y95{bottom:245.817450px;}
.y18a{bottom:249.894300px;}
.y15b{bottom:249.932550px;}
.yc4{bottom:256.352850px;}
.y74{bottom:257.368050px;}
.y84{bottom:257.368200px;}
.y12b{bottom:260.494050px;}
.y114{bottom:260.506800px;}
.y94{bottom:263.067450px;}
.y189{bottom:267.145050px;}
.y15a{bottom:267.183300px;}
.y1f{bottom:268.533450px;}
.yc3{bottom:275.324850px;}
.y52{bottom:275.818050px;}
.y83{bottom:275.818200px;}
.y12a{bottom:277.744800px;}
.y113{bottom:277.757550px;}
.y93{bottom:280.305150px;}
.ybd{bottom:280.305300px;}
.y9a{bottom:280.311450px;}
.y188{bottom:284.395800px;}
.y159{bottom:284.434050px;}
.y1e{bottom:285.784200px;}
.y51{bottom:294.268050px;}
.y73{bottom:294.268200px;}
.yc2{bottom:294.296850px;}
.y129{bottom:294.995550px;}
.y112{bottom:295.008300px;}
.y92{bottom:297.561300px;}
.ybc{bottom:297.561450px;}
.y99{bottom:297.567600px;}
.y187{bottom:301.646550px;}
.y158{bottom:301.684800px;}
.y1d{bottom:303.034950px;}
.y128{bottom:312.246300px;}
.y111{bottom:312.259050px;}
.y44{bottom:312.718050px;}
.y72{bottom:312.718200px;}
.yc1{bottom:313.268850px;}
.y91{bottom:314.817450px;}
.ybb{bottom:314.817600px;}
.y186{bottom:318.897300px;}
.y157{bottom:318.935550px;}
.y1c{bottom:320.285700px;}
.y127{bottom:329.497050px;}
.y110{bottom:329.509800px;}
.y43{bottom:331.168050px;}
.y82{bottom:331.168200px;}
.y185{bottom:336.148050px;}
.y156{bottom:336.186300px;}
.y1b{bottom:337.536450px;}
.y126{bottom:346.747800px;}
.y10f{bottom:346.760550px;}
.y42{bottom:349.618050px;}
.y71{bottom:349.618200px;}
.yb8{bottom:352.426500px;}
.y184{bottom:353.398800px;}
.y155{bottom:353.437050px;}
.y1a{bottom:354.787200px;}
.y125{bottom:363.998550px;}
.y10e{bottom:364.011300px;}
.y41{bottom:368.068050px;}
.y70{bottom:368.068200px;}
.yf1{bottom:370.507350px;}
.y183{bottom:370.649550px;}
.y154{bottom:370.687800px;}
.y19{bottom:372.037950px;}
.yb7{bottom:377.679900px;}
.y124{bottom:381.249300px;}
.y10d{bottom:381.262050px;}
.y40{bottom:386.518050px;}
.y6f{bottom:386.518200px;}
.y182{bottom:387.900300px;}
.y153{bottom:387.938550px;}
.y18{bottom:389.288700px;}
.yb6{bottom:394.182750px;}
.yed{bottom:395.738250px;}
.yf0{bottom:395.785950px;}
.y123{bottom:398.500050px;}
.y10c{bottom:398.512800px;}
.y3f{bottom:404.968050px;}
.y6e{bottom:404.968200px;}
.y181{bottom:405.151050px;}
.y152{bottom:405.189300px;}
.y17{bottom:406.539450px;}
.yec{bottom:412.241100px;}
.yef{bottom:412.285950px;}
.yb5{bottom:413.154750px;}
.y122{bottom:415.750800px;}
.y10b{bottom:415.763550px;}
.y90{bottom:419.842950px;}
.y180{bottom:422.401800px;}
.y151{bottom:422.440050px;}
.y3e{bottom:423.418050px;}
.y81{bottom:423.418200px;}
.y16{bottom:423.790200px;}
.yeb{bottom:428.743950px;}
.yee{bottom:428.785950px;}
.yb4{bottom:432.126750px;}
.y121{bottom:433.001550px;}
.y10a{bottom:433.014300px;}
.y17f{bottom:439.652550px;}
.y150{bottom:439.690800px;}
.y15{bottom:441.040950px;}
.y3d{bottom:441.868050px;}
.y6d{bottom:441.868200px;}
.y8f{bottom:445.104750px;}
.ye9{bottom:447.715950px;}
.ye5{bottom:447.729900px;}
.ye1{bottom:447.743850px;}
.y120{bottom:450.252300px;}
.y109{bottom:450.265050px;}
.yb3{bottom:451.098750px;}
.y17e{bottom:456.903300px;}
.y14f{bottom:456.941550px;}
.y3c{bottom:460.318050px;}
.y6c{bottom:460.318200px;}
.y8e{bottom:464.076750px;}
.ye8{bottom:464.218800px;}
.ye4{bottom:464.232750px;}
.ye0{bottom:464.246700px;}
.y11f{bottom:467.503050px;}
.y108{bottom:467.515800px;}
.yb2{bottom:470.070750px;}
.y17d{bottom:474.154050px;}
.y14e{bottom:474.192300px;}
.y14{bottom:475.542450px;}
.y3b{bottom:478.768050px;}
.y6b{bottom:478.768200px;}
.ye7{bottom:480.721650px;}
.ye3{bottom:480.735600px;}
.ydf{bottom:480.749550px;}
.y8d{bottom:483.048750px;}
.y11e{bottom:484.753800px;}
.y107{bottom:484.766550px;}
.y17c{bottom:491.404800px;}
.y14d{bottom:491.443050px;}
.y13{bottom:492.793200px;}
.yde{bottom:496.464900px;}
.yea{bottom:497.210550px;}
.y3a{bottom:497.218050px;}
.y6a{bottom:497.218200px;}
.ye6{bottom:497.224500px;}
.ye2{bottom:497.238450px;}
.y8c{bottom:502.020750px;}
.y17b{bottom:508.655550px;}
.y14c{bottom:508.693800px;}
.y39{bottom:515.668050px;}
.y80{bottom:515.668200px;}
.ydd{bottom:516.218700px;}
.y106{bottom:519.268050px;}
.y17a{bottom:525.906300px;}
.y14b{bottom:525.944550px;}
.y12{bottom:527.294700px;}
.y38{bottom:534.118050px;}
.y69{bottom:534.118200px;}
.y179{bottom:543.157050px;}
.y14a{bottom:543.195300px;}
.y11{bottom:544.545450px;}
.y37{bottom:552.568050px;}
.y68{bottom:552.568200px;}
.y178{bottom:560.407800px;}
.y149{bottom:560.446050px;}
.y10{bottom:561.796200px;}
.y36{bottom:571.018050px;}
.y67{bottom:571.018200px;}
.y177{bottom:577.658550px;}
.y148{bottom:577.696800px;}
.yf{bottom:579.046950px;}
.y35{bottom:589.468050px;}
.y66{bottom:589.468200px;}
.y105{bottom:589.904250px;}
.y176{bottom:594.909300px;}
.y147{bottom:594.947550px;}
.ye{bottom:596.297700px;}
.y50{bottom:607.918050px;}
.y7f{bottom:607.918200px;}
.y175{bottom:612.160050px;}
.y146{bottom:612.198300px;}
.yd{bottom:613.548450px;}
.y104{bottom:615.556800px;}
.y34{bottom:626.368050px;}
.y65{bottom:626.368200px;}
.y174{bottom:629.410800px;}
.y145{bottom:629.449050px;}
.yc{bottom:630.799200px;}
.y103{bottom:632.059650px;}
.y4f{bottom:644.818050px;}
.y64{bottom:644.818200px;}
.y173{bottom:646.661550px;}
.y144{bottom:646.699800px;}
.yb{bottom:648.049950px;}
.y102{bottom:648.562500px;}
.y4e{bottom:663.268050px;}
.y63{bottom:663.268200px;}
.y172{bottom:663.912300px;}
.y143{bottom:663.950550px;}
.ya{bottom:665.300700px;}
.y101{bottom:668.385450px;}
.y171{bottom:681.163050px;}
.y142{bottom:681.201300px;}
.y33{bottom:681.718050px;}
.y62{bottom:681.718200px;}
.y9{bottom:682.551450px;}
.y100{bottom:684.888300px;}
.y170{bottom:698.413800px;}
.y141{bottom:698.452050px;}
.y8{bottom:699.802200px;}
.y32{bottom:700.168050px;}
.yba{bottom:700.168200px;}
.yff{bottom:701.391150px;}
.y16f{bottom:715.664550px;}
.y140{bottom:715.702800px;}
.y7{bottom:717.052950px;}
.y31{bottom:718.618050px;}
.yaa{bottom:718.618200px;}
.yfc{bottom:721.214100px;}
.y16e{bottom:732.915300px;}
.y13f{bottom:732.953550px;}
.y6{bottom:734.303700px;}
.y30{bottom:737.068050px;}
.ya9{bottom:737.068200px;}
.yfb{bottom:737.716950px;}
.yd3{bottom:744.357000px;}
.y16d{bottom:750.166050px;}
.y13e{bottom:750.204300px;}
.yd9{bottom:750.523200px;}
.yfe{bottom:754.205850px;}
.yfa{bottom:754.219800px;}
.y2f{bottom:755.518050px;}
.yb9{bottom:755.518200px;}
.y16c{bottom:767.416800px;}
.y13d{bottom:767.455050px;}
.y5{bottom:768.803700px;}
.yd2{bottom:769.613250px;}
.yfd{bottom:770.708700px;}
.yf9{bottom:770.722650px;}
.y8b{bottom:770.909400px;}
.y2e{bottom:773.968050px;}
.ya5{bottom:773.968200px;}
.y16b{bottom:784.667550px;}
.y13c{bottom:784.705800px;}
.yd1{bottom:788.585250px;}
.yf8{bottom:790.545600px;}
.y2d{bottom:792.418050px;}
.ya4{bottom:792.418200px;}
.y8a{bottom:796.176750px;}
.y16a{bottom:801.918300px;}
.y13b{bottom:801.956550px;}
.yf7{bottom:807.048450px;}
.yd0{bottom:807.543300px;}
.y2c{bottom:810.868050px;}
.ya8{bottom:810.868200px;}
.y89{bottom:815.148750px;}
.y169{bottom:819.169050px;}
.y13a{bottom:819.207300px;}
.y4{bottom:819.839700px;}
.ycf{bottom:824.046150px;}
.yf6{bottom:826.871400px;}
.y2b{bottom:829.318050px;}
.ya3{bottom:829.318200px;}
.y88{bottom:834.120750px;}
.y168{bottom:836.419800px;}
.y139{bottom:836.458050px;}
.yd8{bottom:842.773050px;}
.yce{bottom:843.018150px;}
.yf5{bottom:843.374250px;}
.y3{bottom:845.327700px;}
.y2a{bottom:847.768050px;}
.y167{bottom:853.670550px;}
.y138{bottom:853.708800px;}
.ycd{bottom:861.990150px;}
.yf4{bottom:863.183250px;}
.y29{bottom:866.218050px;}
.ya2{bottom:866.218200px;}
.y2{bottom:870.815700px;}
.y166{bottom:870.921300px;}
.y137{bottom:870.959550px;}
.yf3{bottom:879.686100px;}
.ycc{bottom:880.962150px;}
.y28{bottom:884.668050px;}
.y165{bottom:888.172050px;}
.y136{bottom:888.210300px;}
.y1{bottom:896.303700px;}
.yf2{bottom:899.509050px;}
.ycb{bottom:899.934150px;}
.y27{bottom:903.118050px;}
.y164{bottom:905.422800px;}
.y135{bottom:905.461050px;}
.y26{bottom:955.942350px;}
.h18{height:45.543000px;}
.h10{height:45.696000px;}
.h5{height:45.900000px;}
.h19{height:46.614000px;}
.h4{height:47.226000px;}
.h16{height:48.378600px;}
.hf{height:49.829400px;}
.h9{height:49.996800px;}
.he{height:50.021400px;}
.hc{height:50.046000px;}
.h12{height:50.070600px;}
.h11{height:50.095200px;}
.h8{height:50.868000px;}
.h15{height:53.760000px;}
.h7{height:54.000000px;}
.hb{height:54.000600px;}
.ha{height:54.840000px;}
.h6{height:55.560000px;}
.hd{height:56.520000px;}
.h3{height:67.824000px;}
.h14{height:73.979400px;}
.h13{height:73.980000px;}
.h2{height:88.896000px;}
.h17{height:115.840800px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x2{left:72.283500px;}
.x1{left:80.787450px;}
.x3d{left:85.039350px;}
.x3{left:93.542550px;}
.x4{left:102.047250px;}
.x5{left:136.067250px;}
.x29{left:143.494800px;}
.x15{left:144.567450px;}
.xa{left:157.442400px;}
.x1f{left:166.889700px;}
.x12{left:179.113650px;}
.x1d{left:185.505600px;}
.xd{left:212.597850px;}
.x18{left:221.101800px;}
.x20{left:230.669100px;}
.x2e{left:236.722650px;}
.x30{left:248.510400px;}
.x25{left:256.336350px;}
.x2d{left:264.036750px;}
.x31{left:266.408250px;}
.x21{left:277.136550px;}
.x9{left:292.478400px;}
.x13{left:300.660000px;}
.x1e{left:305.643000px;}
.x2f{left:314.898450px;}
.x11{left:320.287650px;}
.x32{left:321.873450px;}
.x1c{left:325.256700px;}
.x33{left:329.504100px;}
.x7{left:330.751500px;}
.x27{left:347.443800px;}
.x3e{left:353.426850px;}
.x3c{left:361.912050px;}
.x3f{left:366.176850px;}
.x3b{left:374.662050px;}
.x22{left:377.060400px;}
.xe{left:379.160850px;}
.x19{left:387.664800px;}
.x34{left:396.003750px;}
.xc{left:398.774550px;}
.x17{left:407.278500px;}
.x14{left:410.865000px;}
.x35{left:415.282650px;}
.x8{left:417.372750px;}
.x6{left:418.789950px;}
.x28{left:425.256900px;}
.x10{left:430.660050px;}
.x1b{left:437.038050px;}
.x24{left:454.803750px;}
.xb{left:464.144250px;}
.x36{left:471.068700px;}
.x16{left:472.648200px;}
.x26{left:482.340300px;}
.x37{left:488.910750px;}
.x2a{left:495.104550px;}
.x38{left:496.666950px;}
.xf{left:514.629300px;}
.x1a{left:523.021650px;}
.x23{left:532.561050px;}
.x39{left:547.431000px;}
.x2b{left:550.513950px;}
.x3a{left:566.709900px;}
.x2c{left:573.601200px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.800000pt;}
.v4{vertical-align:16.686400pt;}
.v1{vertical-align:17.760533pt;}
.v5{vertical-align:58.676800pt;}
.ls7f{letter-spacing:-5.666667pt;}
.ls2e{letter-spacing:-4.106667pt;}
.ls35{letter-spacing:-3.792000pt;}
.ls63{letter-spacing:-2.773333pt;}
.ls67{letter-spacing:-2.666667pt;}
.ls50{letter-spacing:-2.448000pt;}
.ls60{letter-spacing:-2.400000pt;}
.ls4c{letter-spacing:-2.304000pt;}
.ls52{letter-spacing:-2.256000pt;}
.ls45{letter-spacing:-2.112000pt;}
.ls39{letter-spacing:-2.016000pt;}
.ls3e{letter-spacing:-1.968000pt;}
.ls42{letter-spacing:-1.824000pt;}
.ls2c{letter-spacing:-1.536000pt;}
.ls5a{letter-spacing:-1.440000pt;}
.ls7a{letter-spacing:-1.339200pt;}
.ls59{letter-spacing:-1.088267pt;}
.ls55{letter-spacing:-1.066667pt;}
.ls20{letter-spacing:-0.853333pt;}
.ls3f{letter-spacing:-0.777333pt;}
.ls56{letter-spacing:-0.621867pt;}
.ls7d{letter-spacing:-0.576000pt;}
.ls53{letter-spacing:-0.533333pt;}
.ls70{letter-spacing:-0.480000pt;}
.ls43{letter-spacing:-0.453333pt;}
.ls80{letter-spacing:-0.432000pt;}
.ls72{letter-spacing:-0.373333pt;}
.ls48{letter-spacing:-0.368000pt;}
.ls71{letter-spacing:-0.320000pt;}
.ls54{letter-spacing:-0.310933pt;}
.ls22{letter-spacing:-0.297600pt;}
.ls5b{letter-spacing:-0.266667pt;}
.ls46{letter-spacing:-0.248747pt;}
.ls74{letter-spacing:-0.248000pt;}
.ls1f{letter-spacing:-0.213333pt;}
.ls49{letter-spacing:-0.198400pt;}
.ls69{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls73{letter-spacing:-0.155467pt;}
.ls30{letter-spacing:-0.148800pt;}
.ls2d{letter-spacing:-0.106667pt;}
.ls28{letter-spacing:-0.099200pt;}
.lsd{letter-spacing:-0.090667pt;}
.ls47{letter-spacing:-0.062187pt;}
.ls27{letter-spacing:-0.053333pt;}
.ls41{letter-spacing:-0.049600pt;}
.ls6f{letter-spacing:-0.048000pt;}
.lsc{letter-spacing:-0.045333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5e{letter-spacing:0.024800pt;}
.ls24{letter-spacing:0.026667pt;}
.ls62{letter-spacing:0.031093pt;}
.ls34{letter-spacing:0.049600pt;}
.ls29{letter-spacing:0.053333pt;}
.ls33{letter-spacing:0.064000pt;}
.ls32{letter-spacing:0.080000pt;}
.ls6{letter-spacing:0.090667pt;}
.ls77{letter-spacing:0.096000pt;}
.ls57{letter-spacing:0.099200pt;}
.ls11{letter-spacing:0.106667pt;}
.ls66{letter-spacing:0.124373pt;}
.ls25{letter-spacing:0.148800pt;}
.ls61{letter-spacing:0.155467pt;}
.ls8{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.181333pt;}
.ls65{letter-spacing:0.186560pt;}
.ls5c{letter-spacing:0.198400pt;}
.ls21{letter-spacing:0.213333pt;}
.ls68{letter-spacing:0.223200pt;}
.ls36{letter-spacing:0.240000pt;}
.ls4d{letter-spacing:0.248000pt;}
.ls31{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.272000pt;}
.ls51{letter-spacing:0.293333pt;}
.ls23{letter-spacing:0.297600pt;}
.ls40{letter-spacing:0.310933pt;}
.ls37{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.322400pt;}
.ls64{letter-spacing:0.336000pt;}
.ls4e{letter-spacing:0.346667pt;}
.ls1e{letter-spacing:0.347200pt;}
.ls1a{letter-spacing:0.349333pt;}
.ls6b{letter-spacing:0.368000pt;}
.ls10{letter-spacing:0.373333pt;}
.ls1c{letter-spacing:0.396800pt;}
.ls3d{letter-spacing:0.400000pt;}
.ls12{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.453333pt;}
.ls4b{letter-spacing:0.480000pt;}
.ls6c{letter-spacing:0.496000pt;}
.ls13{letter-spacing:0.533333pt;}
.ls26{letter-spacing:0.576000pt;}
.ls19{letter-spacing:0.586667pt;}
.ls2b{letter-spacing:0.617387pt;}
.ls2{letter-spacing:0.634667pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls5d{letter-spacing:0.644800pt;}
.ls4f{letter-spacing:0.666667pt;}
.ls5{letter-spacing:0.680000pt;}
.ls3a{letter-spacing:0.693333pt;}
.ls76{letter-spacing:0.694400pt;}
.ls3c{letter-spacing:0.720000pt;}
.ls1{letter-spacing:0.725333pt;}
.ls6e{letter-spacing:0.744000pt;}
.ls38{letter-spacing:0.746667pt;}
.ls14{letter-spacing:0.800000pt;}
.ls58{letter-spacing:0.816000pt;}
.ls75{letter-spacing:0.843200pt;}
.ls3b{letter-spacing:0.853333pt;}
.ls0{letter-spacing:0.861333pt;}
.ls78{letter-spacing:0.864000pt;}
.ls17{letter-spacing:0.880000pt;}
.ls6d{letter-spacing:0.892800pt;}
.ls16{letter-spacing:0.906667pt;}
.ls2a{letter-spacing:0.933333pt;}
.ls15{letter-spacing:0.960000pt;}
.lsb{letter-spacing:0.997333pt;}
.ls18{letter-spacing:1.013333pt;}
.lse{letter-spacing:1.066667pt;}
.ls5f{letter-spacing:1.200000pt;}
.ls4a{letter-spacing:1.333333pt;}
.ls7c{letter-spacing:1.440000pt;}
.ls2f{letter-spacing:1.546667pt;}
.ls44{letter-spacing:1.866667pt;}
.ls7b{letter-spacing:2.080000pt;}
.lsa{letter-spacing:2.266667pt;}
.ls7e{letter-spacing:2.765333pt;}
.ls79{letter-spacing:131.043200pt;}
.ls6a{letter-spacing:144.682293pt;}
.ws171{word-spacing:-12.816000pt;}
.ws179{word-spacing:-12.784000pt;}
.ws10f{word-spacing:-12.576000pt;}
.ws0{word-spacing:-12.285333pt;}
.wsfd{word-spacing:-12.192000pt;}
.wsc4{word-spacing:-11.946667pt;}
.ws124{word-spacing:-11.712000pt;}
.ws15c{word-spacing:-11.472000pt;}
.ws125{word-spacing:-11.466667pt;}
.ws140{word-spacing:-11.184000pt;}
.ws64{word-spacing:-11.146667pt;}
.ws17e{word-spacing:-10.944000pt;}
.ws1c{word-spacing:-10.933333pt;}
.ws18{word-spacing:-10.906667pt;}
.ws3{word-spacing:-10.880000pt;}
.ws8b{word-spacing:-10.773333pt;}
.ws8a{word-spacing:-10.666667pt;}
.ws1e{word-spacing:-10.664000pt;}
.wsdf{word-spacing:-10.453333pt;}
.ws178{word-spacing:-10.293333pt;}
.ws2{word-spacing:-10.290667pt;}
.ws1b{word-spacing:-10.240000pt;}
.ws1a{word-spacing:-10.133333pt;}
.ws15d{word-spacing:-10.106667pt;}
.wsd0{word-spacing:-10.080000pt;}
.ws3b{word-spacing:-10.053333pt;}
.ws3c{word-spacing:-10.026667pt;}
.ws138{word-spacing:-9.973333pt;}
.ws1{word-spacing:-9.928000pt;}
.ws65{word-spacing:-9.920000pt;}
.ws113{word-spacing:-9.866667pt;}
.ws55{word-spacing:-9.840000pt;}
.ws11f{word-spacing:-9.813333pt;}
.wsae{word-spacing:-9.771200pt;}
.ws107{word-spacing:-9.760000pt;}
.ws17b{word-spacing:-9.746667pt;}
.ws9d{word-spacing:-9.552000pt;}
.ws184{word-spacing:-9.474667pt;}
.wsde{word-spacing:-9.408000pt;}
.ws74{word-spacing:-9.360000pt;}
.ws19{word-spacing:-9.173333pt;}
.wsc1{word-spacing:-9.072000pt;}
.ws110{word-spacing:-8.746667pt;}
.wsf7{word-spacing:-8.640000pt;}
.ws56{word-spacing:-8.533333pt;}
.ws114{word-spacing:-8.373333pt;}
.ws1d{word-spacing:-7.912000pt;}
.wsad{word-spacing:-7.544000pt;}
.ws8c{word-spacing:-6.809440pt;}
.ws126{word-spacing:-6.685067pt;}
.ws111{word-spacing:-6.653973pt;}
.ws127{word-spacing:-6.622880pt;}
.ws112{word-spacing:-6.529600pt;}
.ws17{word-spacing:-6.498507pt;}
.wsaa{word-spacing:-6.436320pt;}
.wsa9{word-spacing:-6.249760pt;}
.wsec{word-spacing:-6.187573pt;}
.wsed{word-spacing:-5.876640pt;}
.ws89{word-spacing:-5.721173pt;}
.wsfe{word-spacing:-5.410240pt;}
.ws17a{word-spacing:-4.080000pt;}
.wsd7{word-spacing:-3.306667pt;}
.ws34{word-spacing:-2.083200pt;}
.ws170{word-spacing:-2.080000pt;}
.ws44{word-spacing:-2.026667pt;}
.ws10c{word-spacing:-1.973333pt;}
.ws123{word-spacing:-1.866667pt;}
.wse9{word-spacing:-1.813333pt;}
.ws58{word-spacing:-1.760000pt;}
.ws22{word-spacing:-1.706667pt;}
.ws156{word-spacing:-1.686400pt;}
.ws15{word-spacing:-1.653333pt;}
.ws51{word-spacing:-1.587200pt;}
.ws4b{word-spacing:-1.546667pt;}
.ws61{word-spacing:-1.493333pt;}
.ws8{word-spacing:-1.450667pt;}
.ws76{word-spacing:-1.440000pt;}
.wsa{word-spacing:-1.405333pt;}
.wsc0{word-spacing:-1.388800pt;}
.ws106{word-spacing:-1.386667pt;}
.ws130{word-spacing:-1.333333pt;}
.wsb{word-spacing:-1.314667pt;}
.ws11c{word-spacing:-1.289600pt;}
.ws15f{word-spacing:-1.280000pt;}
.ws131{word-spacing:-1.240000pt;}
.ws4c{word-spacing:-1.226667pt;}
.wsa7{word-spacing:-1.190400pt;}
.ws93{word-spacing:-1.173333pt;}
.ws9c{word-spacing:-1.140800pt;}
.wsb3{word-spacing:-1.120000pt;}
.wsce{word-spacing:-1.091200pt;}
.ws13{word-spacing:-1.066667pt;}
.ws10{word-spacing:-1.042667pt;}
.ws6f{word-spacing:-1.013333pt;}
.wse{word-spacing:-0.997333pt;}
.ws12e{word-spacing:-0.960000pt;}
.wsbe{word-spacing:-0.942400pt;}
.ws4e{word-spacing:-0.906667pt;}
.ws82{word-spacing:-0.853333pt;}
.ws11a{word-spacing:-0.843200pt;}
.ws14f{word-spacing:-0.800000pt;}
.ws2f{word-spacing:-0.746667pt;}
.ws15b{word-spacing:-0.694400pt;}
.ws92{word-spacing:-0.693333pt;}
.ws42{word-spacing:-0.640000pt;}
.ws180{word-spacing:-0.634667pt;}
.wsd5{word-spacing:-0.586667pt;}
.ws3d{word-spacing:-0.576000pt;}
.ws80{word-spacing:-0.533333pt;}
.wsea{word-spacing:-0.480000pt;}
.ws9b{word-spacing:-0.426667pt;}
.ws181{word-spacing:-0.408000pt;}
.ws10a{word-spacing:-0.373333pt;}
.ws157{word-spacing:-0.368000pt;}
.ws182{word-spacing:-0.362667pt;}
.wsbb{word-spacing:-0.347200pt;}
.wsc7{word-spacing:-0.320000pt;}
.ws183{word-spacing:-0.317333pt;}
.ws36{word-spacing:-0.297600pt;}
.ws14{word-spacing:-0.266667pt;}
.ws28{word-spacing:-0.213333pt;}
.ws32{word-spacing:-0.198400pt;}
.wsf{word-spacing:-0.181333pt;}
.wsb7{word-spacing:-0.160000pt;}
.wsbf{word-spacing:-0.148800pt;}
.wseb{word-spacing:-0.106667pt;}
.ws62{word-spacing:-0.099200pt;}
.wsa2{word-spacing:-0.053333pt;}
.ws13e{word-spacing:-0.049600pt;}
.ws4{word-spacing:0.000000pt;}
.ws158{word-spacing:0.049600pt;}
.ws4f{word-spacing:0.053333pt;}
.ws85{word-spacing:0.099200pt;}
.ws5c{word-spacing:0.106667pt;}
.ws151{word-spacing:0.155467pt;}
.ws43{word-spacing:0.160000pt;}
.wscc{word-spacing:0.198400pt;}
.ws41{word-spacing:0.213333pt;}
.ws11{word-spacing:0.226667pt;}
.ws5b{word-spacing:0.266667pt;}
.ws9{word-spacing:0.317333pt;}
.ws81{word-spacing:0.320000pt;}
.wsa8{word-spacing:0.347200pt;}
.ws4a{word-spacing:0.426667pt;}
.ws52{word-spacing:0.446400pt;}
.ws12{word-spacing:0.453333pt;}
.ws68{word-spacing:0.480000pt;}
.ws3a{word-spacing:0.496000pt;}
.ws21{word-spacing:0.533333pt;}
.ws2e{word-spacing:0.586667pt;}
.wsf1{word-spacing:0.621867pt;}
.wsc{word-spacing:0.680000pt;}
.ws20{word-spacing:0.693333pt;}
.ws6e{word-spacing:0.746667pt;}
.ws155{word-spacing:0.793600pt;}
.ws70{word-spacing:0.800000pt;}
.ws88{word-spacing:0.843200pt;}
.ws27{word-spacing:0.853333pt;}
.wsa1{word-spacing:0.906667pt;}
.ws168{word-spacing:0.942400pt;}
.ws30{word-spacing:0.960000pt;}
.wsc6{word-spacing:1.013333pt;}
.ws39{word-spacing:1.041600pt;}
.ws98{word-spacing:1.066667pt;}
.ws29{word-spacing:1.120000pt;}
.ws2a{word-spacing:1.173333pt;}
.ws97{word-spacing:1.226667pt;}
.ws87{word-spacing:1.240000pt;}
.ws116{word-spacing:1.280000pt;}
.ws72{word-spacing:1.289600pt;}
.ws16f{word-spacing:1.333333pt;}
.ws86{word-spacing:1.339200pt;}
.ws4d{word-spacing:1.386667pt;}
.ws7{word-spacing:1.405333pt;}
.ws5a{word-spacing:1.440000pt;}
.wsbc{word-spacing:1.488000pt;}
.ws5e{word-spacing:1.493333pt;}
.wscf{word-spacing:1.537600pt;}
.ws150{word-spacing:1.546667pt;}
.ws54{word-spacing:1.587200pt;}
.ws73{word-spacing:1.636800pt;}
.ws24{word-spacing:1.653333pt;}
.ws13f{word-spacing:1.686400pt;}
.ws16{word-spacing:1.706667pt;}
.ws15a{word-spacing:1.736000pt;}
.ws7b{word-spacing:1.760000pt;}
.wsc5{word-spacing:1.813333pt;}
.ws2b{word-spacing:1.866667pt;}
.wsd{word-spacing:1.904000pt;}
.ws67{word-spacing:1.920000pt;}
.ws6{word-spacing:1.949333pt;}
.wsb4{word-spacing:1.973333pt;}
.ws7d{word-spacing:2.080000pt;}
.ws84{word-spacing:2.133333pt;}
.ws119{word-spacing:2.182400pt;}
.wsf4{word-spacing:2.186667pt;}
.ws50{word-spacing:2.232000pt;}
.ws95{word-spacing:2.240000pt;}
.ws53{word-spacing:2.281600pt;}
.ws7e{word-spacing:2.293333pt;}
.ws71{word-spacing:2.331200pt;}
.ws129{word-spacing:2.346667pt;}
.ws96{word-spacing:2.400000pt;}
.ws83{word-spacing:2.453333pt;}
.wsb9{word-spacing:2.480000pt;}
.wsa0{word-spacing:2.506667pt;}
.ws37{word-spacing:2.529600pt;}
.wsbd{word-spacing:2.579200pt;}
.ws109{word-spacing:2.613333pt;}
.wsb8{word-spacing:2.628800pt;}
.ws7c{word-spacing:2.666667pt;}
.ws38{word-spacing:2.678400pt;}
.wsd6{word-spacing:2.720000pt;}
.ws63{word-spacing:2.728000pt;}
.ws5f{word-spacing:2.773333pt;}
.ws59{word-spacing:2.826667pt;}
.wscd{word-spacing:2.827200pt;}
.wsba{word-spacing:2.876800pt;}
.wsb5{word-spacing:2.880000pt;}
.wsf3{word-spacing:2.933333pt;}
.ws49{word-spacing:2.986667pt;}
.ws33{word-spacing:3.025600pt;}
.ws23{word-spacing:3.040000pt;}
.ws159{word-spacing:3.075200pt;}
.ws94{word-spacing:3.093333pt;}
.ws5d{word-spacing:3.146667pt;}
.ws26{word-spacing:3.200000pt;}
.ws5{word-spacing:3.218667pt;}
.ws122{word-spacing:3.306667pt;}
.ws31{word-spacing:3.360000pt;}
.ws2c{word-spacing:3.413333pt;}
.ws99{word-spacing:3.466667pt;}
.ws25{word-spacing:3.573333pt;}
.ws17d{word-spacing:3.626667pt;}
.ws9a{word-spacing:3.680000pt;}
.ws10b{word-spacing:3.733333pt;}
.ws2d{word-spacing:3.786667pt;}
.wsc8{word-spacing:4.000000pt;}
.ws60{word-spacing:4.266667pt;}
.wsc3{word-spacing:4.480000pt;}
.ws144{word-spacing:4.693333pt;}
.ws11b{word-spacing:5.257600pt;}
.wsda{word-spacing:5.440000pt;}
.ws14e{word-spacing:5.760000pt;}
.ws7f{word-spacing:6.026667pt;}
.ws121{word-spacing:6.826667pt;}
.wsf0{word-spacing:7.840000pt;}
.wsb6{word-spacing:8.693333pt;}
.wsf5{word-spacing:9.600000pt;}
.ws164{word-spacing:12.533333pt;}
.ws14c{word-spacing:13.173333pt;}
.ws12a{word-spacing:14.666667pt;}
.wsfb{word-spacing:15.466667pt;}
.ws148{word-spacing:16.906667pt;}
.wsd4{word-spacing:17.386667pt;}
.ws147{word-spacing:20.000000pt;}
.ws12b{word-spacing:20.266667pt;}
.wsd3{word-spacing:20.480000pt;}
.ws14d{word-spacing:21.013333pt;}
.wse8{word-spacing:21.866667pt;}
.ws142{word-spacing:22.240000pt;}
.ws145{word-spacing:22.293333pt;}
.wse3{word-spacing:22.346667pt;}
.ws78{word-spacing:23.093333pt;}
.wse6{word-spacing:24.320000pt;}
.ws45{word-spacing:24.693333pt;}
.wse7{word-spacing:24.960000pt;}
.wsdb{word-spacing:25.440000pt;}
.ws13d{word-spacing:25.866667pt;}
.ws143{word-spacing:27.093333pt;}
.wsd2{word-spacing:27.146667pt;}
.wsb2{word-spacing:27.200000pt;}
.wse5{word-spacing:27.413333pt;}
.ws12f{word-spacing:27.520000pt;}
.ws16b{word-spacing:28.434667pt;}
.ws13c{word-spacing:28.960000pt;}
.ws8f{word-spacing:29.226667pt;}
.wsc9{word-spacing:30.240000pt;}
.wsb0{word-spacing:30.293333pt;}
.ws91{word-spacing:31.200000pt;}
.ws160{word-spacing:31.680000pt;}
.wsa6{word-spacing:32.266667pt;}
.ws8e{word-spacing:32.320000pt;}
.ws90{word-spacing:34.293333pt;}
.ws7a{word-spacing:34.933333pt;}
.ws161{word-spacing:35.146667pt;}
.wsa3{word-spacing:35.360000pt;}
.wsf6{word-spacing:35.520000pt;}
.wsf2{word-spacing:36.853333pt;}
.ws6a{word-spacing:37.386667pt;}
.wsdc{word-spacing:41.386667pt;}
.wsa4{word-spacing:42.186667pt;}
.wsca{word-spacing:43.840000pt;}
.ws77{word-spacing:44.800000pt;}
.ws6c{word-spacing:44.853333pt;}
.ws175{word-spacing:45.830400pt;}
.ws35{word-spacing:45.880000pt;}
.ws14a{word-spacing:46.186667pt;}
.ws69{word-spacing:46.400000pt;}
.ws46{word-spacing:46.880000pt;}
.wsf9{word-spacing:47.466667pt;}
.ws117{word-spacing:47.946667pt;}
.ws6d{word-spacing:48.426667pt;}
.ws153{word-spacing:48.853333pt;}
.ws166{word-spacing:48.906667pt;}
.ws6b{word-spacing:49.920000pt;}
.ws167{word-spacing:52.480000pt;}
.wsef{word-spacing:52.853333pt;}
.ws152{word-spacing:52.906667pt;}
.ws165{word-spacing:53.973333pt;}
.wsf8{word-spacing:58.186667pt;}
.wse4{word-spacing:58.506667pt;}
.ws135{word-spacing:60.016000pt;}
.ws146{word-spacing:61.440000pt;}
.ws12d{word-spacing:63.520000pt;}
.ws154{word-spacing:64.320000pt;}
.ws13a{word-spacing:66.773333pt;}
.ws10d{word-spacing:69.280000pt;}
.wsfc{word-spacing:71.413333pt;}
.wsd8{word-spacing:72.447467pt;}
.ws163{word-spacing:73.333333pt;}
.ws149{word-spacing:78.613333pt;}
.ws16e{word-spacing:80.160000pt;}
.ws162{word-spacing:82.080000pt;}
.wsd9{word-spacing:85.173333pt;}
.wsa5{word-spacing:89.066667pt;}
.ws118{word-spacing:92.746667pt;}
.ws13b{word-spacing:94.026667pt;}
.ws40{word-spacing:95.680000pt;}
.ws79{word-spacing:102.933333pt;}
.ws10e{word-spacing:103.413333pt;}
.wsb1{word-spacing:105.066667pt;}
.ws47{word-spacing:106.186667pt;}
.ws16a{word-spacing:108.475200pt;}
.ws48{word-spacing:109.813333pt;}
.ws172{word-spacing:112.195200pt;}
.ws137{word-spacing:119.784000pt;}
.ws16c{word-spacing:125.686400pt;}
.wscb{word-spacing:135.413333pt;}
.wsdd{word-spacing:140.053333pt;}
.ws169{word-spacing:160.406400pt;}
.wsff{word-spacing:179.403200pt;}
.ws3f{word-spacing:180.853333pt;}
.ws132{word-spacing:184.412800pt;}
.ws12c{word-spacing:208.480000pt;}
.ws11d{word-spacing:225.035200pt;}
.ws105{word-spacing:225.440000pt;}
.wsab{word-spacing:231.036800pt;}
.ws104{word-spacing:238.880000pt;}
.wsfa{word-spacing:271.466667pt;}
.ws174{word-spacing:330.038400pt;}
.ws176{word-spacing:360.988800pt;}
.wse0{word-spacing:397.494400pt;}
.ws136{word-spacing:466.934400pt;}
.ws134{word-spacing:544.806400pt;}
.ws102{word-spacing:557.404800pt;}
.ws9e{word-spacing:558.744000pt;}
.ws100{word-spacing:588.851200pt;}
.ws11e{word-spacing:716.422400pt;}
.wse1{word-spacing:836.454400pt;}
.ws173{word-spacing:917.848000pt;}
.ws101{word-spacing:1005.144000pt;}
.ws133{word-spacing:1010.203200pt;}
.wsac{word-spacing:1086.686400pt;}
.ws177{word-spacing:1124.784000pt;}
.ws115{word-spacing:1125.072000pt;}
.ws103{word-spacing:1125.456000pt;}
.ws128{word-spacing:1125.936000pt;}
.ws15e{word-spacing:1126.176000pt;}
.ws141{word-spacing:1126.464000pt;}
.ws17f{word-spacing:1126.656000pt;}
.ws57{word-spacing:1127.808000pt;}
.ws9f{word-spacing:1128.096000pt;}
.wse2{word-spacing:1128.240000pt;}
.ws75{word-spacing:1128.288000pt;}
.wsc2{word-spacing:1128.576000pt;}
.ws1f{word-spacing:1154.112000pt;}
.ws185{word-spacing:1518.240000pt;}
.ws16d{word-spacing:1519.392000pt;}
.ws120{word-spacing:1520.112000pt;}
.ws139{word-spacing:1520.160000pt;}
.ws14b{word-spacing:1521.216000pt;}
.ws17c{word-spacing:1522.272000pt;}
.ws108{word-spacing:1524.000000pt;}
.ws8d{word-spacing:1525.056000pt;}
.wsaf{word-spacing:1525.344000pt;}
.wsee{word-spacing:1525.584000pt;}
.wsd1{word-spacing:1526.016000pt;}
.ws66{word-spacing:1528.704000pt;}
.ws3e{word-spacing:1548.960000pt;}
._b{margin-left:-1154.567467pt;}
._c{margin-left:-1153.540800pt;}
._77{margin-left:-1128.832267pt;}
._2f{margin-left:-1127.921067pt;}
._ea{margin-left:-1126.891733pt;}
._b8{margin-left:-1125.762667pt;}
._ce{margin-left:-1124.643200pt;}
._16{margin-left:-181.077333pt;}
._12{margin-left:-157.600000pt;}
._fa{margin-left:-115.253333pt;}
._15{margin-left:-81.333333pt;}
._17{margin-left:-71.136000pt;}
._13{margin-left:-63.351467pt;}
._14{margin-left:-48.853333pt;}
._10{margin-left:-43.400533pt;}
._62{margin-left:-41.524267pt;}
._7e{margin-left:-38.666667pt;}
._b3{margin-left:-36.160000pt;}
._f4{margin-left:-33.920000pt;}
._ab{margin-left:-32.586667pt;}
._e8{margin-left:-30.026667pt;}
._61{margin-left:-28.960000pt;}
._98{margin-left:-26.826667pt;}
._99{margin-left:-25.772800pt;}
._ac{margin-left:-22.880000pt;}
._d8{margin-left:-21.920000pt;}
._b2{margin-left:-16.800000pt;}
._d{margin-left:-15.289600pt;}
._3{margin-left:-12.994133pt;}
._f1{margin-left:-11.646667pt;}
._23{margin-left:-10.389333pt;}
._7{margin-left:-8.150400pt;}
._30{margin-left:-6.666667pt;}
._4{margin-left:-5.684800pt;}
._a{margin-left:-4.509600pt;}
._6{margin-left:-3.564800pt;}
._1{margin-left:-2.560000pt;}
._0{margin-left:-1.288533pt;}
._2{width:1.124267pt;}
._8{width:2.148800pt;}
._5{width:3.060000pt;}
._9{width:4.007200pt;}
._31{width:5.752800pt;}
._50{width:6.880000pt;}
._66{width:8.091040pt;}
._d6{width:9.173333pt;}
._cb{width:10.826667pt;}
._78{width:12.000000pt;}
._1b{width:14.117333pt;}
._28{width:15.040000pt;}
._b9{width:16.053333pt;}
._1d{width:18.346667pt;}
._b5{width:19.244800pt;}
._b4{width:20.212480pt;}
._bd{width:21.316960pt;}
._9f{width:22.979733pt;}
._73{width:24.091573pt;}
._2a{width:25.219733pt;}
._bc{width:26.133333pt;}
._7c{width:27.378133pt;}
._48{width:28.915733pt;}
._3a{width:30.080000pt;}
._6a{width:31.793067pt;}
._6b{width:33.082667pt;}
._49{width:34.471467pt;}
._c9{width:35.676000pt;}
._c7{width:36.618667pt;}
._51{width:38.506667pt;}
._f8{width:39.581867pt;}
._e5{width:40.640000pt;}
._f{width:42.605333pt;}
._11{width:44.987200pt;}
._2e{width:46.177067pt;}
._2d{width:47.367467pt;}
._25{width:48.426667pt;}
._6f{width:50.195200pt;}
._e{width:51.236267pt;}
._9b{width:52.266667pt;}
._8c{width:53.501867pt;}
._2c{width:55.040000pt;}
._f2{width:55.955200pt;}
._83{width:56.915200pt;}
._5c{width:58.026667pt;}
._cc{width:59.040000pt;}
._79{width:60.053333pt;}
._7f{width:61.600000pt;}
._52{width:64.053333pt;}
._26{width:65.288533pt;}
._55{width:66.408533pt;}
._4a{width:68.168533pt;}
._27{width:69.120000pt;}
._29{width:70.453333pt;}
._fd{width:71.425067pt;}
._38{width:72.426667pt;}
._3b{width:73.493333pt;}
._e7{width:75.101867pt;}
._4e{width:76.426667pt;}
._22{width:78.301867pt;}
._cd{width:79.525600pt;}
._1c{width:80.656000pt;}
._a8{width:81.845333pt;}
._b1{width:82.773333pt;}
._a2{width:83.717333pt;}
._7b{width:84.898133pt;}
._9a{width:87.178667pt;}
._1f{width:88.275200pt;}
._4c{width:89.875200pt;}
._33{width:91.360000pt;}
._2b{width:92.373333pt;}
._3f{width:94.133333pt;}
._37{width:97.333333pt;}
._67{width:99.093333pt;}
._65{width:100.799680pt;}
._19{width:102.613333pt;}
._e3{width:103.706133pt;}
._36{width:104.701867pt;}
._4b{width:106.026667pt;}
._32{width:107.626667pt;}
._4d{width:108.906667pt;}
._18{width:110.026667pt;}
._68{width:111.253333pt;}
._cf{width:112.215733pt;}
._8e{width:113.247200pt;}
._ed{width:115.093333pt;}
._87{width:117.543307pt;}
._57{width:119.733333pt;}
._6e{width:121.493333pt;}
._86{width:123.041067pt;}
._72{width:124.586667pt;}
._20{width:126.133333pt;}
._fb{width:127.504000pt;}
._3e{width:128.746667pt;}
._fe{width:130.088533pt;}
._54{width:131.264000pt;}
._58{width:133.600000pt;}
._c6{width:135.868800pt;}
._c4{width:137.120000pt;}
._5d{width:138.080000pt;}
._a0{width:139.298133pt;}
._35{width:140.266667pt;}
._1a{width:142.186667pt;}
._88{width:143.344000pt;}
._53{width:146.231467pt;}
._90{width:147.740533pt;}
._89{width:149.386667pt;}
._e2{width:151.924800pt;}
._60{width:153.760000pt;}
._21{width:156.160000pt;}
._4f{width:157.173333pt;}
._f7{width:160.115200pt;}
._47{width:162.026667pt;}
._f5{width:163.626667pt;}
._42{width:165.600000pt;}
._c8{width:168.652267pt;}
._c5{width:172.417067pt;}
._d1{width:179.139200pt;}
._24{width:181.056000pt;}
._97{width:182.613333pt;}
._8b{width:184.160000pt;}
._1e{width:188.480000pt;}
._45{width:189.760000pt;}
._d9{width:191.360000pt;}
._40{width:193.661867pt;}
._a9{width:194.650667pt;}
._8f{width:197.706667pt;}
._e0{width:200.433600pt;}
._b6{width:202.293333pt;}
._102{width:204.054400pt;}
._ec{width:206.781867pt;}
._3d{width:207.716267pt;}
._34{width:211.093333pt;}
._7a{width:217.021867pt;}
._da{width:218.453333pt;}
._7d{width:219.608000pt;}
._81{width:221.601067pt;}
._8d{width:222.933333pt;}
._82{width:224.960000pt;}
._a4{width:226.773333pt;}
._fc{width:227.843733pt;}
._92{width:229.202133pt;}
._84{width:231.680000pt;}
._85{width:234.728533pt;}
._100{width:237.331200pt;}
._44{width:238.888533pt;}
._ff{width:239.873067pt;}
._a1{width:244.805333pt;}
._ef{width:246.869867pt;}
._43{width:249.653333pt;}
._39{width:250.958933pt;}
._e4{width:252.373333pt;}
._db{width:259.795200pt;}
._5a{width:260.915200pt;}
._56{width:262.506667pt;}
._59{width:265.981867pt;}
._d7{width:267.622667pt;}
._ae{width:273.637333pt;}
._80{width:276.596213pt;}
._d3{width:278.504000pt;}
._b7{width:280.426667pt;}
._dc{width:282.400000pt;}
._ad{width:283.984000pt;}
._8a{width:285.509333pt;}
._3c{width:287.733333pt;}
._eb{width:295.069867pt;}
._f9{width:298.560000pt;}
._d2{width:304.159093pt;}
._a5{width:310.007573pt;}
._9c{width:314.453333pt;}
._c3{width:317.936000pt;}
._df{width:322.995200pt;}
._ca{width:325.477653pt;}
._93{width:327.012800pt;}
._be{width:331.420800pt;}
._e9{width:333.464000pt;}
._dd{width:341.066667pt;}
._d4{width:342.775733pt;}
._ee{width:345.760000pt;}
._aa{width:362.117333pt;}
._75{width:369.619200pt;}
._d0{width:384.426667pt;}
._69{width:396.640000pt;}
._f6{width:399.655200pt;}
._d5{width:401.280000pt;}
._bf{width:410.407467pt;}
._74{width:412.640000pt;}
._de{width:416.160000pt;}
._c2{width:420.754133pt;}
._5e{width:426.957867pt;}
._63{width:430.284267pt;}
._6c{width:432.633600pt;}
._70{width:435.217067pt;}
._af{width:449.805867pt;}
._95{width:452.955093pt;}
._c0{width:465.707680pt;}
._a7{width:468.868960pt;}
._9d{width:475.717867pt;}
._46{width:488.426667pt;}
._41{width:492.000000pt;}
._5f{width:497.493333pt;}
._c1{width:498.887467pt;}
._64{width:500.586667pt;}
._bb{width:509.013333pt;}
._6d{width:518.560000pt;}
._a6{width:520.685867pt;}
._71{width:521.653333pt;}
._a3{width:556.635733pt;}
._f3{width:576.288853pt;}
._91{width:587.306667pt;}
._e1{width:598.721600pt;}
._76{width:629.708053pt;}
._9e{width:642.346667pt;}
._ba{width:667.146133pt;}
._e6{width:675.120533pt;}
._96{width:683.520000pt;}
._b0{width:738.346667pt;}
._f0{width:740.016373pt;}
._94{width:848.160000pt;}
._101{width:890.171200pt;}
._5b{width:1096.059733pt;}
.fs8{font-size:28.916800pt;}
.fs5{font-size:31.093333pt;}
.fs6{font-size:36.800000pt;}
.fs2{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:49.600000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:80.487733pt;}
.y61{bottom:80.493067pt;}
.y7e{bottom:80.493200pt;}
.ydc{bottom:80.498533pt;}
.y4d{bottom:80.498667pt;}
.y5a{bottom:80.504000pt;}
.y87{bottom:80.504133pt;}
.yb1{bottom:80.549867pt;}
.y25{bottom:81.171600pt;}
.y134{bottom:93.544267pt;}
.y11d{bottom:93.555600pt;}
.y59{bottom:95.826400pt;}
.yd5{bottom:95.826533pt;}
.y60{bottom:95.831867pt;}
.y7d{bottom:95.832000pt;}
.y98{bottom:95.837333pt;}
.y4c{bottom:95.837467pt;}
.yca{bottom:95.837600pt;}
.y24{bottom:97.571600pt;}
.y192{bottom:99.456267pt;}
.y163{bottom:99.490267pt;}
.yb0{bottom:102.997333pt;}
.y133{bottom:108.878267pt;}
.y11c{bottom:108.889600pt;}
.y4b{bottom:111.154533pt;}
.y58{bottom:111.165200pt;}
.y79{bottom:111.165333pt;}
.y5f{bottom:111.170667pt;}
.y7c{bottom:111.170800pt;}
.y23{bottom:113.971600pt;}
.ya7{bottom:113.971733pt;}
.y191{bottom:114.790267pt;}
.y162{bottom:114.824267pt;}
.yaf{bottom:117.666533pt;}
.y132{bottom:124.212267pt;}
.y11b{bottom:124.223600pt;}
.ya1{bottom:126.482267pt;}
.y4a{bottom:126.493333pt;}
.y5e{bottom:126.498667pt;}
.y57{bottom:126.504000pt;}
.y78{bottom:126.504133pt;}
.y190{bottom:130.124267pt;}
.y161{bottom:130.158267pt;}
.ya6{bottom:130.371600pt;}
.yae{bottom:134.530533pt;}
.y131{bottom:139.546267pt;}
.y11a{bottom:139.557600pt;}
.yc9{bottom:140.170267pt;}
.ya0{bottom:141.821067pt;}
.y56{bottom:141.826533pt;}
.yd4{bottom:141.832000pt;}
.y49{bottom:141.832133pt;}
.y5d{bottom:141.837467pt;}
.y77{bottom:141.837600pt;}
.y18f{bottom:145.458267pt;}
.y160{bottom:145.492267pt;}
.y22{bottom:146.771600pt;}
.yad{bottom:151.394533pt;}
.y130{bottom:154.880267pt;}
.y119{bottom:154.891600pt;}
.y9f{bottom:157.159867pt;}
.y55{bottom:157.165333pt;}
.y97{bottom:157.170800pt;}
.y48{bottom:157.170933pt;}
.y5c{bottom:157.171067pt;}
.y18e{bottom:160.792267pt;}
.y15f{bottom:160.826267pt;}
.yc8{bottom:162.620400pt;}
.y7b{bottom:163.171600pt;}
.yac{bottom:168.258533pt;}
.y12f{bottom:170.214267pt;}
.y118{bottom:170.225600pt;}
.ydb{bottom:172.493333pt;}
.y9e{bottom:172.498667pt;}
.yc0{bottom:172.498800pt;}
.y47{bottom:172.498933pt;}
.y54{bottom:172.504133pt;}
.y5b{bottom:172.504400pt;}
.y18d{bottom:176.126267pt;}
.y15e{bottom:176.160267pt;}
.yc7{bottom:179.484400pt;}
.y7a{bottom:179.571600pt;}
.yd7{bottom:179.571733pt;}
.yab{bottom:185.122533pt;}
.y12e{bottom:185.548267pt;}
.y117{bottom:185.559600pt;}
.yda{bottom:187.832133pt;}
.y9d{bottom:187.837467pt;}
.ybf{bottom:187.837600pt;}
.y46{bottom:187.837733pt;}
.y18c{bottom:191.460267pt;}
.y15d{bottom:191.494267pt;}
.y21{bottom:192.694400pt;}
.y76{bottom:195.971600pt;}
.y86{bottom:195.971733pt;}
.yc6{bottom:196.336000pt;}
.y12d{bottom:200.882267pt;}
.y116{bottom:200.893600pt;}
.ybe{bottom:203.160133pt;}
.y96{bottom:203.165600pt;}
.y9c{bottom:203.170933pt;}
.y53{bottom:203.171067pt;}
.y45{bottom:203.171200pt;}
.y18b{bottom:206.794267pt;}
.y15c{bottom:206.828267pt;}
.y20{bottom:208.028400pt;}
.yc5{bottom:211.005200pt;}
.y75{bottom:212.371600pt;}
.y85{bottom:212.371733pt;}
.y12c{bottom:216.216267pt;}
.y115{bottom:216.227600pt;}
.y9b{bottom:218.498933pt;}
.y95{bottom:218.504400pt;}
.y18a{bottom:222.128267pt;}
.y15b{bottom:222.162267pt;}
.yc4{bottom:227.869200pt;}
.y74{bottom:228.771600pt;}
.y84{bottom:228.771733pt;}
.y12b{bottom:231.550267pt;}
.y114{bottom:231.561600pt;}
.y94{bottom:233.837733pt;}
.y189{bottom:237.462267pt;}
.y15a{bottom:237.496267pt;}
.y1f{bottom:238.696400pt;}
.yc3{bottom:244.733200pt;}
.y52{bottom:245.171600pt;}
.y83{bottom:245.171733pt;}
.y12a{bottom:246.884267pt;}
.y113{bottom:246.895600pt;}
.y93{bottom:249.160133pt;}
.ybd{bottom:249.160267pt;}
.y9a{bottom:249.165733pt;}
.y188{bottom:252.796267pt;}
.y159{bottom:252.830267pt;}
.y1e{bottom:254.030400pt;}
.y51{bottom:261.571600pt;}
.y73{bottom:261.571733pt;}
.yc2{bottom:261.597200pt;}
.y129{bottom:262.218267pt;}
.y112{bottom:262.229600pt;}
.y92{bottom:264.498933pt;}
.ybc{bottom:264.499067pt;}
.y99{bottom:264.504533pt;}
.y187{bottom:268.130267pt;}
.y158{bottom:268.164267pt;}
.y1d{bottom:269.364400pt;}
.y128{bottom:277.552267pt;}
.y111{bottom:277.563600pt;}
.y44{bottom:277.971600pt;}
.y72{bottom:277.971733pt;}
.yc1{bottom:278.461200pt;}
.y91{bottom:279.837733pt;}
.ybb{bottom:279.837867pt;}
.y186{bottom:283.464267pt;}
.y157{bottom:283.498267pt;}
.y1c{bottom:284.698400pt;}
.y127{bottom:292.886267pt;}
.y110{bottom:292.897600pt;}
.y43{bottom:294.371600pt;}
.y82{bottom:294.371733pt;}
.y185{bottom:298.798267pt;}
.y156{bottom:298.832267pt;}
.y1b{bottom:300.032400pt;}
.y126{bottom:308.220267pt;}
.y10f{bottom:308.231600pt;}
.y42{bottom:310.771600pt;}
.y71{bottom:310.771733pt;}
.yb8{bottom:313.268000pt;}
.y184{bottom:314.132267pt;}
.y155{bottom:314.166267pt;}
.y1a{bottom:315.366400pt;}
.y125{bottom:323.554267pt;}
.y10e{bottom:323.565600pt;}
.y41{bottom:327.171600pt;}
.y70{bottom:327.171733pt;}
.yf1{bottom:329.339867pt;}
.y183{bottom:329.466267pt;}
.y154{bottom:329.500267pt;}
.y19{bottom:330.700400pt;}
.yb7{bottom:335.715467pt;}
.y124{bottom:338.888267pt;}
.y10d{bottom:338.899600pt;}
.y40{bottom:343.571600pt;}
.y6f{bottom:343.571733pt;}
.y182{bottom:344.800267pt;}
.y153{bottom:344.834267pt;}
.y18{bottom:346.034400pt;}
.yb6{bottom:350.384667pt;}
.yed{bottom:351.767333pt;}
.yf0{bottom:351.809733pt;}
.y123{bottom:354.222267pt;}
.y10c{bottom:354.233600pt;}
.y3f{bottom:359.971600pt;}
.y6e{bottom:359.971733pt;}
.y181{bottom:360.134267pt;}
.y152{bottom:360.168267pt;}
.y17{bottom:361.368400pt;}
.yec{bottom:366.436533pt;}
.yef{bottom:366.476400pt;}
.yb5{bottom:367.248667pt;}
.y122{bottom:369.556267pt;}
.y10b{bottom:369.567600pt;}
.y90{bottom:373.193733pt;}
.y180{bottom:375.468267pt;}
.y151{bottom:375.502267pt;}
.y3e{bottom:376.371600pt;}
.y81{bottom:376.371733pt;}
.y16{bottom:376.702400pt;}
.yeb{bottom:381.105733pt;}
.yee{bottom:381.143067pt;}
.yb4{bottom:384.112667pt;}
.y121{bottom:384.890267pt;}
.y10a{bottom:384.901600pt;}
.y17f{bottom:390.802267pt;}
.y150{bottom:390.836267pt;}
.y15{bottom:392.036400pt;}
.y3d{bottom:392.771600pt;}
.y6d{bottom:392.771733pt;}
.y8f{bottom:395.648667pt;}
.ye9{bottom:397.969733pt;}
.ye5{bottom:397.982133pt;}
.ye1{bottom:397.994533pt;}
.y120{bottom:400.224267pt;}
.y109{bottom:400.235600pt;}
.yb3{bottom:400.976667pt;}
.y17e{bottom:406.136267pt;}
.y14f{bottom:406.170267pt;}
.y3c{bottom:409.171600pt;}
.y6c{bottom:409.171733pt;}
.y8e{bottom:412.512667pt;}
.ye8{bottom:412.638933pt;}
.ye4{bottom:412.651333pt;}
.ye0{bottom:412.663733pt;}
.y11f{bottom:415.558267pt;}
.y108{bottom:415.569600pt;}
.yb2{bottom:417.840667pt;}
.y17d{bottom:421.470267pt;}
.y14e{bottom:421.504267pt;}
.y14{bottom:422.704400pt;}
.y3b{bottom:425.571600pt;}
.y6b{bottom:425.571733pt;}
.ye7{bottom:427.308133pt;}
.ye3{bottom:427.320533pt;}
.ydf{bottom:427.332933pt;}
.y8d{bottom:429.376667pt;}
.y11e{bottom:430.892267pt;}
.y107{bottom:430.903600pt;}
.y17c{bottom:436.804267pt;}
.y14d{bottom:436.838267pt;}
.y13{bottom:438.038400pt;}
.yde{bottom:441.302133pt;}
.yea{bottom:441.964933pt;}
.y3a{bottom:441.971600pt;}
.y6a{bottom:441.971733pt;}
.ye6{bottom:441.977333pt;}
.ye2{bottom:441.989733pt;}
.y8c{bottom:446.240667pt;}
.y17b{bottom:452.138267pt;}
.y14c{bottom:452.172267pt;}
.y39{bottom:458.371600pt;}
.y80{bottom:458.371733pt;}
.ydd{bottom:458.861067pt;}
.y106{bottom:461.571600pt;}
.y17a{bottom:467.472267pt;}
.y14b{bottom:467.506267pt;}
.y12{bottom:468.706400pt;}
.y38{bottom:474.771600pt;}
.y69{bottom:474.771733pt;}
.y179{bottom:482.806267pt;}
.y14a{bottom:482.840267pt;}
.y11{bottom:484.040400pt;}
.y37{bottom:491.171600pt;}
.y68{bottom:491.171733pt;}
.y178{bottom:498.140267pt;}
.y149{bottom:498.174267pt;}
.y10{bottom:499.374400pt;}
.y36{bottom:507.571600pt;}
.y67{bottom:507.571733pt;}
.y177{bottom:513.474267pt;}
.y148{bottom:513.508267pt;}
.yf{bottom:514.708400pt;}
.y35{bottom:523.971600pt;}
.y66{bottom:523.971733pt;}
.y105{bottom:524.359333pt;}
.y176{bottom:528.808267pt;}
.y147{bottom:528.842267pt;}
.ye{bottom:530.042400pt;}
.y50{bottom:540.371600pt;}
.y7f{bottom:540.371733pt;}
.y175{bottom:544.142267pt;}
.y146{bottom:544.176267pt;}
.yd{bottom:545.376400pt;}
.y104{bottom:547.161600pt;}
.y34{bottom:556.771600pt;}
.y65{bottom:556.771733pt;}
.y174{bottom:559.476267pt;}
.y145{bottom:559.510267pt;}
.yc{bottom:560.710400pt;}
.y103{bottom:561.830800pt;}
.y4f{bottom:573.171600pt;}
.y64{bottom:573.171733pt;}
.y173{bottom:574.810267pt;}
.y144{bottom:574.844267pt;}
.yb{bottom:576.044400pt;}
.y102{bottom:576.500000pt;}
.y4e{bottom:589.571600pt;}
.y63{bottom:589.571733pt;}
.y172{bottom:590.144267pt;}
.y143{bottom:590.178267pt;}
.ya{bottom:591.378400pt;}
.y101{bottom:594.120400pt;}
.y171{bottom:605.478267pt;}
.y142{bottom:605.512267pt;}
.y33{bottom:605.971600pt;}
.y62{bottom:605.971733pt;}
.y9{bottom:606.712400pt;}
.y100{bottom:608.789600pt;}
.y170{bottom:620.812267pt;}
.y141{bottom:620.846267pt;}
.y8{bottom:622.046400pt;}
.y32{bottom:622.371600pt;}
.yba{bottom:622.371733pt;}
.yff{bottom:623.458800pt;}
.y16f{bottom:636.146267pt;}
.y140{bottom:636.180267pt;}
.y7{bottom:637.380400pt;}
.y31{bottom:638.771600pt;}
.yaa{bottom:638.771733pt;}
.yfc{bottom:641.079200pt;}
.y16e{bottom:651.480267pt;}
.y13f{bottom:651.514267pt;}
.y6{bottom:652.714400pt;}
.y30{bottom:655.171600pt;}
.ya9{bottom:655.171733pt;}
.yfb{bottom:655.748400pt;}
.yd3{bottom:661.650667pt;}
.y16d{bottom:666.814267pt;}
.y13e{bottom:666.848267pt;}
.yd9{bottom:667.131733pt;}
.yfe{bottom:670.405200pt;}
.yfa{bottom:670.417600pt;}
.y2f{bottom:671.571600pt;}
.yb9{bottom:671.571733pt;}
.y16c{bottom:682.148267pt;}
.y13d{bottom:682.182267pt;}
.y5{bottom:683.381067pt;}
.yd2{bottom:684.100667pt;}
.yfd{bottom:685.074400pt;}
.yf9{bottom:685.086800pt;}
.y8b{bottom:685.252800pt;}
.y2e{bottom:687.971600pt;}
.ya5{bottom:687.971733pt;}
.y16b{bottom:697.482267pt;}
.y13c{bottom:697.516267pt;}
.yd1{bottom:700.964667pt;}
.yf8{bottom:702.707200pt;}
.y2d{bottom:704.371600pt;}
.ya4{bottom:704.371733pt;}
.y8a{bottom:707.712667pt;}
.y16a{bottom:712.816267pt;}
.y13b{bottom:712.850267pt;}
.yf7{bottom:717.376400pt;}
.yd0{bottom:717.816267pt;}
.y2c{bottom:720.771600pt;}
.ya8{bottom:720.771733pt;}
.y89{bottom:724.576667pt;}
.y169{bottom:728.150267pt;}
.y13a{bottom:728.184267pt;}
.y4{bottom:728.746400pt;}
.ycf{bottom:732.485467pt;}
.yf6{bottom:734.996800pt;}
.y2b{bottom:737.171600pt;}
.ya3{bottom:737.171733pt;}
.y88{bottom:741.440667pt;}
.y168{bottom:743.484267pt;}
.y139{bottom:743.518267pt;}
.yd8{bottom:749.131600pt;}
.yce{bottom:749.349467pt;}
.yf5{bottom:749.666000pt;}
.y3{bottom:751.402400pt;}
.y2a{bottom:753.571600pt;}
.y167{bottom:758.818267pt;}
.y138{bottom:758.852267pt;}
.ycd{bottom:766.213467pt;}
.yf4{bottom:767.274000pt;}
.y29{bottom:769.971600pt;}
.ya2{bottom:769.971733pt;}
.y2{bottom:774.058400pt;}
.y166{bottom:774.152267pt;}
.y137{bottom:774.186267pt;}
.yf3{bottom:781.943200pt;}
.ycc{bottom:783.077467pt;}
.y28{bottom:786.371600pt;}
.y165{bottom:789.486267pt;}
.y136{bottom:789.520267pt;}
.y1{bottom:796.714400pt;}
.yf2{bottom:799.563600pt;}
.ycb{bottom:799.941467pt;}
.y27{bottom:802.771600pt;}
.y164{bottom:804.820267pt;}
.y135{bottom:804.854267pt;}
.y26{bottom:849.726533pt;}
.h18{height:40.482667pt;}
.h10{height:40.618667pt;}
.h5{height:40.800000pt;}
.h19{height:41.434667pt;}
.h4{height:41.978667pt;}
.h16{height:43.003200pt;}
.hf{height:44.292800pt;}
.h9{height:44.441600pt;}
.he{height:44.463467pt;}
.hc{height:44.485333pt;}
.h12{height:44.507200pt;}
.h11{height:44.529067pt;}
.h8{height:45.216000pt;}
.h15{height:47.786667pt;}
.h7{height:48.000000pt;}
.hb{height:48.000533pt;}
.ha{height:48.746667pt;}
.h6{height:49.386667pt;}
.hd{height:50.240000pt;}
.h3{height:60.288000pt;}
.h14{height:65.759467pt;}
.h13{height:65.760000pt;}
.h2{height:79.018667pt;}
.h17{height:102.969600pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x2{left:64.252000pt;}
.x1{left:71.811067pt;}
.x3d{left:75.590533pt;}
.x3{left:83.148933pt;}
.x4{left:90.708667pt;}
.x5{left:120.948667pt;}
.x29{left:127.550933pt;}
.x15{left:128.504400pt;}
.xa{left:139.948800pt;}
.x1f{left:148.346400pt;}
.x12{left:159.212133pt;}
.x1d{left:164.893867pt;}
.xd{left:188.975867pt;}
.x18{left:196.534933pt;}
.x20{left:205.039200pt;}
.x2e{left:210.420133pt;}
.x30{left:220.898133pt;}
.x25{left:227.854533pt;}
.x2d{left:234.699333pt;}
.x31{left:236.807333pt;}
.x21{left:246.343600pt;}
.x9{left:259.980800pt;}
.x13{left:267.253333pt;}
.x1e{left:271.682667pt;}
.x2f{left:279.909733pt;}
.x11{left:284.700133pt;}
.x32{left:286.109733pt;}
.x1c{left:289.117067pt;}
.x33{left:292.892533pt;}
.x7{left:294.001333pt;}
.x27{left:308.838933pt;}
.x3e{left:314.157200pt;}
.x3c{left:321.699600pt;}
.x3f{left:325.490533pt;}
.x3b{left:333.032933pt;}
.x22{left:335.164800pt;}
.xe{left:337.031867pt;}
.x19{left:344.590933pt;}
.x34{left:352.003333pt;}
.xc{left:354.466267pt;}
.x17{left:362.025333pt;}
.x14{left:365.213333pt;}
.x35{left:369.140133pt;}
.x8{left:370.998000pt;}
.x6{left:372.257733pt;}
.x28{left:378.006133pt;}
.x10{left:382.808933pt;}
.x1b{left:388.478267pt;}
.x24{left:404.270000pt;}
.xb{left:412.572667pt;}
.x36{left:418.727733pt;}
.x16{left:420.131733pt;}
.x26{left:428.746933pt;}
.x37{left:434.587333pt;}
.x2a{left:440.092933pt;}
.x38{left:441.481733pt;}
.xf{left:457.448267pt;}
.x1a{left:464.908133pt;}
.x23{left:473.387600pt;}
.x39{left:486.605333pt;}
.x2b{left:489.345733pt;}
.x3a{left:503.742133pt;}
.x2c{left:509.867733pt;}
}




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