
    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_b315a8dff472a511502095d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_3123930e5fdcfc344e22bd69.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_ac91e51239bc00b02640d044.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_333ffdfd8b1deaca662a92bc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.698000;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_6de236e86c464752f41b5317.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.200900;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_5fe142bcd8a3c51ef5b2a62f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.062000;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_4643f61dd12fe232cd593807.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a59f3f30af7049089e5a3e34.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.164000;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_b56032204ad68e91f4c7e580.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.036000;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;}
.v1{vertical-align:19.980000px;}
.ls33{letter-spacing:-4.798800px;}
.ls65{letter-spacing:-4.386000px;}
.ls67{letter-spacing:-3.315000px;}
.ls36{letter-spacing:-3.292200px;}
.ls51{letter-spacing:-3.132000px;}
.ls32{letter-spacing:-3.069000px;}
.ls6c{letter-spacing:-2.856000px;}
.ls70{letter-spacing:-2.805000px;}
.ls4f{letter-spacing:-2.592000px;}
.ls30{letter-spacing:-2.566800px;}
.ls2e{letter-spacing:-2.455200px;}
.ls3c{letter-spacing:-2.376000px;}
.ls6a{letter-spacing:-2.244000px;}
.ls6e{letter-spacing:-2.091000px;}
.ls18{letter-spacing:-2.052000px;}
.ls60{letter-spacing:-2.040000px;}
.ls5f{letter-spacing:-1.989000px;}
.ls6d{letter-spacing:-1.887000px;}
.ls1a{letter-spacing:-1.560000px;}
.ls2f{letter-spacing:-1.339200px;}
.ls25{letter-spacing:-1.320000px;}
.ls6f{letter-spacing:-1.224000px;}
.ls44{letter-spacing:-1.200000px;}
.ls46{letter-spacing:-1.176000px;}
.ls35{letter-spacing:-1.171800px;}
.ls47{letter-spacing:-1.117200px;}
.ls63{letter-spacing:-1.071000px;}
.ls48{letter-spacing:-1.058400px;}
.ls45{letter-spacing:-1.020000px;}
.ls5d{letter-spacing:-0.969000px;}
.ls58{letter-spacing:-0.960000px;}
.ls66{letter-spacing:-0.918000px;}
.ls21{letter-spacing:-0.900000px;}
.ls61{letter-spacing:-0.867000px;}
.ls55{letter-spacing:-0.840000px;}
.ls24{letter-spacing:-0.780000px;}
.ls68{letter-spacing:-0.765000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls52{letter-spacing:-0.660000px;}
.ls64{letter-spacing:-0.612000px;}
.ls1d{letter-spacing:-0.600000px;}
.ls49{letter-spacing:-0.588000px;}
.ls34{letter-spacing:-0.558000px;}
.ls1f{letter-spacing:-0.540000px;}
.ls37{letter-spacing:-0.510000px;}
.ls2d{letter-spacing:-0.502200px;}
.ls1e{letter-spacing:-0.480000px;}
.ls53{letter-spacing:-0.420000px;}
.ls5e{letter-spacing:-0.408000px;}
.ls57{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.300000px;}
.ls20{letter-spacing:-0.240000px;}
.lsf{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.120000px;}
.lse{letter-spacing:-0.060000px;}
.ls8{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.030000px;}
.ls2{letter-spacing:0.051000px;}
.ls5{letter-spacing:0.060000px;}
.ls22{letter-spacing:0.090000px;}
.ls69{letter-spacing:0.102000px;}
.ls11{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.153000px;}
.ls4e{letter-spacing:0.167400px;}
.ls12{letter-spacing:0.168000px;}
.ls13{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.204000px;}
.ls10{letter-spacing:0.222000px;}
.ls7{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.255000px;}
.ls38{letter-spacing:0.270000px;}
.ls6{letter-spacing:0.300000px;}
.ls9{letter-spacing:0.306000px;}
.ls4{letter-spacing:0.360000px;}
.ls59{letter-spacing:0.390000px;}
.ls1{letter-spacing:0.408000px;}
.ls16{letter-spacing:0.420000px;}
.ls5c{letter-spacing:0.459000px;}
.ls17{letter-spacing:0.480000px;}
.ls4d{letter-spacing:0.510000px;}
.ls43{letter-spacing:0.540000px;}
.ls50{letter-spacing:0.558000px;}
.ls4b{letter-spacing:0.600000px;}
.ls62{letter-spacing:0.612000px;}
.ls42{letter-spacing:0.660000px;}
.ls15{letter-spacing:0.780000px;}
.ls19{letter-spacing:0.918000px;}
.lsb{letter-spacing:0.969000px;}
.ls6b{letter-spacing:1.122000px;}
.lsc{letter-spacing:1.200000px;}
.ls23{letter-spacing:1.242000px;}
.ls14{letter-spacing:1.800000px;}
.ls5a{letter-spacing:2.340000px;}
.ls5b{letter-spacing:2.754000px;}
.ls54{letter-spacing:3.600000px;}
.ls56{letter-spacing:3.786000px;}
.ls4a{letter-spacing:4.176000px;}
.ls31{letter-spacing:70.810200px;}
.ls29{letter-spacing:71.758800px;}
.ls2b{letter-spacing:72.037800px;}
.ls2a{letter-spacing:72.261000px;}
.ls27{letter-spacing:72.595800px;}
.ls28{letter-spacing:72.874800px;}
.ls2c{letter-spacing:76.669200px;}
.ls26{letter-spacing:80.128800px;}
.ls41{letter-spacing:107.526600px;}
.ls3d{letter-spacing:108.475200px;}
.ls3f{letter-spacing:108.754200px;}
.ls3e{letter-spacing:108.977400px;}
.ls3a{letter-spacing:109.312200px;}
.ls3b{letter-spacing:109.591200px;}
.ls40{letter-spacing:113.385600px;}
.ls39{letter-spacing:116.845200px;}
.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;}
}
.ws1c5{word-spacing:-14.025000px;}
.ws155{word-spacing:-12.540000px;}
.ws1{word-spacing:-12.240000px;}
.ws1db{word-spacing:-12.087000px;}
.ws50{word-spacing:-11.997000px;}
.ws112{word-spacing:-11.760000px;}
.ws1b8{word-spacing:-11.700000px;}
.ws1e{word-spacing:-11.640000px;}
.ws111{word-spacing:-11.580000px;}
.ws0{word-spacing:-11.577000px;}
.ws4d{word-spacing:-11.550600px;}
.ws145{word-spacing:-11.520000px;}
.ws1c6{word-spacing:-11.424000px;}
.ws1d{word-spacing:-11.400000px;}
.ws90{word-spacing:-11.340000px;}
.ws1c{word-spacing:-11.280000px;}
.ws1ae{word-spacing:-11.220000px;}
.wsf4{word-spacing:-11.160000px;}
.ws1d9{word-spacing:-11.067000px;}
.ws4c{word-spacing:-11.048400px;}
.ws1da{word-spacing:-11.016000px;}
.ws1b7{word-spacing:-10.980000px;}
.ws1cb{word-spacing:-10.965000px;}
.ws1b6{word-spacing:-10.800000px;}
.ws1a{word-spacing:-10.746000px;}
.ws186{word-spacing:-10.680000px;}
.ws67{word-spacing:-10.657800px;}
.ws1c8{word-spacing:-10.557000px;}
.ws8f{word-spacing:-10.422000px;}
.ws1cc{word-spacing:-10.353000px;}
.ws1b9{word-spacing:-10.320000px;}
.ws15f{word-spacing:-10.206000px;}
.ws1d0{word-spacing:-10.200000px;}
.ws1ca{word-spacing:-10.098000px;}
.ws1ce{word-spacing:-10.047000px;}
.ws1c7{word-spacing:-9.996000px;}
.ws1d8{word-spacing:-9.945000px;}
.ws100{word-spacing:-9.937200px;}
.ws1b{word-spacing:-9.720000px;}
.ws1dc{word-spacing:-9.078000px;}
.ws1c9{word-spacing:-8.976000px;}
.ws156{word-spacing:-8.901000px;}
.ws1cf{word-spacing:-7.650000px;}
.ws154{word-spacing:-7.310820px;}
.ws1cd{word-spacing:-6.579000px;}
.ws1c0{word-spacing:-2.880000px;}
.ws1e2{word-spacing:-2.754000px;}
.ws1c1{word-spacing:-2.640000px;}
.wse7{word-spacing:-2.580000px;}
.ws1bd{word-spacing:-2.460000px;}
.ws1c3{word-spacing:-2.340000px;}
.ws3d{word-spacing:-2.280000px;}
.wsc{word-spacing:-2.040000px;}
.ws185{word-spacing:-1.980000px;}
.ws5b{word-spacing:-1.920000px;}
.ws11{word-spacing:-1.860000px;}
.ws1bb{word-spacing:-1.740000px;}
.wse9{word-spacing:-1.680000px;}
.ws1b5{word-spacing:-1.620000px;}
.ws15{word-spacing:-1.560000px;}
.ws14a{word-spacing:-1.500000px;}
.ws37{word-spacing:-1.440000px;}
.ws3{word-spacing:-1.428000px;}
.ws33{word-spacing:-1.380000px;}
.ws43{word-spacing:-1.320000px;}
.ws3b{word-spacing:-1.260000px;}
.ws3e{word-spacing:-1.242000px;}
.wsb{word-spacing:-1.200000px;}
.wsd8{word-spacing:-1.140000px;}
.ws20{word-spacing:-1.080000px;}
.ws44{word-spacing:-1.020000px;}
.wsa0{word-spacing:-0.960000px;}
.ws16{word-spacing:-0.900000px;}
.ws109{word-spacing:-0.882000px;}
.ws18d{word-spacing:-0.840000px;}
.ws107{word-spacing:-0.823200px;}
.wsd7{word-spacing:-0.781200px;}
.ws30{word-spacing:-0.780000px;}
.ws4{word-spacing:-0.765000px;}
.ws3c{word-spacing:-0.720000px;}
.ws1d1{word-spacing:-0.714000px;}
.ws32{word-spacing:-0.660000px;}
.ws1bc{word-spacing:-0.600000px;}
.wse8{word-spacing:-0.540000px;}
.ws1d4{word-spacing:-0.510000px;}
.wse6{word-spacing:-0.502200px;}
.ws5e{word-spacing:-0.480000px;}
.ws1d5{word-spacing:-0.459000px;}
.ws47{word-spacing:-0.420000px;}
.ws42{word-spacing:-0.360000px;}
.ws1d3{word-spacing:-0.306000px;}
.ws12{word-spacing:-0.300000px;}
.ws104{word-spacing:-0.294000px;}
.ws1d2{word-spacing:-0.255000px;}
.ws18{word-spacing:-0.240000px;}
.ws5f{word-spacing:-0.223200px;}
.ws19{word-spacing:-0.222000px;}
.wsa{word-spacing:-0.204000px;}
.ws4b{word-spacing:-0.180000px;}
.ws21{word-spacing:-0.120000px;}
.ws1b2{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws2e{word-spacing:0.060000px;}
.ws9f{word-spacing:0.120000px;}
.ws106{word-spacing:0.176400px;}
.ws1b1{word-spacing:0.180000px;}
.ws18c{word-spacing:0.240000px;}
.ws1be{word-spacing:0.300000px;}
.ws1bf{word-spacing:0.360000px;}
.ws184{word-spacing:0.420000px;}
.ws9{word-spacing:0.459000px;}
.ws23{word-spacing:0.480000px;}
.ws22{word-spacing:0.540000px;}
.ws4a{word-spacing:0.600000px;}
.ws41{word-spacing:0.660000px;}
.ws24{word-spacing:0.720000px;}
.wse{word-spacing:0.780000px;}
.ws25{word-spacing:0.840000px;}
.ws159{word-spacing:0.900000px;}
.ws49{word-spacing:1.020000px;}
.ws1d6{word-spacing:1.071000px;}
.ws102{word-spacing:1.080000px;}
.wse4{word-spacing:1.116000px;}
.ws158{word-spacing:1.140000px;}
.ws105{word-spacing:1.176000px;}
.ws29{word-spacing:1.200000px;}
.ws14b{word-spacing:1.260000px;}
.ws2c{word-spacing:1.320000px;}
.ws60{word-spacing:1.339200px;}
.wsf6{word-spacing:1.380000px;}
.ws147{word-spacing:1.440000px;}
.ws108{word-spacing:1.470000px;}
.ws17{word-spacing:1.500000px;}
.ws1ba{word-spacing:1.560000px;}
.ws7{word-spacing:1.581000px;}
.ws5{word-spacing:1.632000px;}
.ws10a{word-spacing:1.646400px;}
.ws14{word-spacing:1.680000px;}
.ws8{word-spacing:1.734000px;}
.ws5c{word-spacing:1.740000px;}
.ws40{word-spacing:1.800000px;}
.ws103{word-spacing:1.822800px;}
.ws15e{word-spacing:1.841400px;}
.wsd{word-spacing:1.860000px;}
.ws10{word-spacing:1.920000px;}
.ws148{word-spacing:1.980000px;}
.ws13{word-spacing:2.040000px;}
.ws1e0{word-spacing:2.091000px;}
.ws1b3{word-spacing:2.100000px;}
.ws2a{word-spacing:2.160000px;}
.ws27{word-spacing:2.220000px;}
.ws1de{word-spacing:2.244000px;}
.ws15b{word-spacing:2.280000px;}
.ws183{word-spacing:2.340000px;}
.ws9e{word-spacing:2.400000px;}
.ws46{word-spacing:2.460000px;}
.wsb2{word-spacing:2.520000px;}
.wsf{word-spacing:2.580000px;}
.ws39{word-spacing:2.640000px;}
.ws149{word-spacing:2.700000px;}
.ws15c{word-spacing:2.760000px;}
.ws1e1{word-spacing:2.805000px;}
.ws1df{word-spacing:2.856000px;}
.ws5a{word-spacing:2.880000px;}
.ws2f{word-spacing:2.940000px;}
.ws36{word-spacing:3.000000px;}
.ws34{word-spacing:3.060000px;}
.ws6{word-spacing:3.111000px;}
.ws45{word-spacing:3.120000px;}
.ws5d{word-spacing:3.180000px;}
.ws35{word-spacing:3.300000px;}
.ws26{word-spacing:3.420000px;}
.ws3a{word-spacing:3.540000px;}
.ws28{word-spacing:3.600000px;}
.ws2d{word-spacing:3.660000px;}
.ws38{word-spacing:3.720000px;}
.ws1b0{word-spacing:3.780000px;}
.ws48{word-spacing:3.960000px;}
.ws2b{word-spacing:4.020000px;}
.ws15d{word-spacing:4.080000px;}
.ws119{word-spacing:4.200000px;}
.wsea{word-spacing:4.260000px;}
.ws1d7{word-spacing:4.386000px;}
.ws1c4{word-spacing:4.560000px;}
.ws31{word-spacing:4.800000px;}
.ws15a{word-spacing:4.860000px;}
.ws10b{word-spacing:4.880400px;}
.wse5{word-spacing:5.220000px;}
.ws14c{word-spacing:6.600000px;}
.ws11d{word-spacing:12.276000px;}
.ws7e{word-spacing:26.784000px;}
.ws86{word-spacing:31.136400px;}
.ws8a{word-spacing:31.638600px;}
.ws82{word-spacing:31.973400px;}
.ws84{word-spacing:32.252400px;}
.ws68{word-spacing:34.317000px;}
.ws7c{word-spacing:37.720800px;}
.ws72{word-spacing:38.669400px;}
.ws79{word-spacing:38.948400px;}
.ws76{word-spacing:39.171600px;}
.ws6d{word-spacing:39.506400px;}
.ws6f{word-spacing:39.785400px;}
.ws7a{word-spacing:45.253800px;}
.ws6a{word-spacing:47.039400px;}
.ws182{word-spacing:55.576800px;}
.wsc8{word-spacing:63.500400px;}
.wsd3{word-spacing:67.852800px;}
.wsd5{word-spacing:68.355000px;}
.wscd{word-spacing:68.689800px;}
.wsd0{word-spacing:68.968800px;}
.ws56{word-spacing:69.638400px;}
.wsab{word-spacing:71.033400px;}
.ws6e{word-spacing:74.269800px;}
.wsc4{word-spacing:74.437200px;}
.ws6c{word-spacing:74.493000px;}
.ws71{word-spacing:75.106800px;}
.wsb6{word-spacing:75.385800px;}
.wsbc{word-spacing:75.664800px;}
.wsb8{word-spacing:75.888000px;}
.wsb0{word-spacing:76.222800px;}
.ws78{word-spacing:76.446000px;}
.wsb3{word-spacing:76.501800px;}
.ws7d{word-spacing:76.836600px;}
.wsc6{word-spacing:77.059800px;}
.ws193{word-spacing:77.729400px;}
.ws122{word-spacing:78.114420px;}
.ws11f{word-spacing:78.120000px;}
.ws144{word-spacing:78.566400px;}
.ws63{word-spacing:79.738200px;}
.ws53{word-spacing:81.356400px;}
.ws88{word-spacing:81.523800px;}
.wsa2{word-spacing:81.635400px;}
.ws161{word-spacing:81.802800px;}
.wsc0{word-spacing:81.970200px;}
.wsa7{word-spacing:82.249200px;}
.wse2{word-spacing:82.305000px;}
.ws81{word-spacing:82.360800px;}
.wsd2{word-spacing:82.528200px;}
.wsad{word-spacing:83.755800px;}
.wsca{word-spacing:84.034800px;}
.wsba{word-spacing:84.592800px;}
.ws75{word-spacing:86.043600px;}
.ws163{word-spacing:86.155200px;}
.wscf{word-spacing:86.657400px;}
.wsaf{word-spacing:86.769000px;}
.ws58{word-spacing:87.494400px;}
.wsdd{word-spacing:87.996600px;}
.ws166{word-spacing:88.164000px;}
.wsdf{word-spacing:88.331400px;}
.ws66{word-spacing:88.498800px;}
.ws168{word-spacing:88.722000px;}
.ws8d{word-spacing:88.777800px;}
.wscc{word-spacing:89.001000px;}
.wsa5{word-spacing:89.614800px;}
.wsb5{word-spacing:89.782200px;}
.wsb4{word-spacing:95.473800px;}
.ws16b{word-spacing:95.808600px;}
.wsbf{word-spacing:95.920200px;}
.ws9a{word-spacing:96.366600px;}
.wse1{word-spacing:96.868800px;}
.wse0{word-spacing:97.315200px;}
.ws97{word-spacing:97.538400px;}
.ws9b{word-spacing:97.594200px;}
.wsdb{word-spacing:98.208000px;}
.wsc3{word-spacing:99.379800px;}
.ws165{word-spacing:100.495800px;}
.ws99{word-spacing:103.285800px;}
.ws95{word-spacing:104.625000px;}
.ws98{word-spacing:104.848200px;}
.ws92{word-spacing:105.629400px;}
.ws194{word-spacing:107.805600px;}
.ws1a3{word-spacing:109.200600px;}
.ws191{word-spacing:109.981800px;}
.wsd1{word-spacing:111.042000px;}
.ws1ac{word-spacing:111.544200px;}
.ws176{word-spacing:111.990600px;}
.ws19d{word-spacing:112.604400px;}
.ws196{word-spacing:113.274000px;}
.ws19c{word-spacing:114.948000px;}
.ws1a9{word-spacing:115.896600px;}
.ws18a{word-spacing:116.901000px;}
.ws190{word-spacing:119.914200px;}
.ws17d{word-spacing:120.193200px;}
.ws17a{word-spacing:120.583800px;}
.ws198{word-spacing:121.030200px;}
.ws1a7{word-spacing:121.365000px;}
.ws16d{word-spacing:121.532400px;}
.ws172{word-spacing:122.090400px;}
.ws16a{word-spacing:122.648400px;}
.ws177{word-spacing:122.927400px;}
.ws16f{word-spacing:124.266600px;}
.ws188{word-spacing:124.992000px;}
.wsa9{word-spacing:125.326800px;}
.ws19a{word-spacing:125.438400px;}
.ws17f{word-spacing:129.456000px;}
.ws179{word-spacing:130.404600px;}
.wsa8{word-spacing:137.323800px;}
.ws170{word-spacing:140.002200px;}
.ws180{word-spacing:140.169600px;}
.ws19f{word-spacing:141.508800px;}
.ws1ad{word-spacing:141.899400px;}
.wsa1{word-spacing:142.624800px;}
.ws1a6{word-spacing:143.294400px;}
.ws7f{word-spacing:146.809800px;}
.wsc1{word-spacing:149.655600px;}
.wsd4{word-spacing:152.780400px;}
.wsac{word-spacing:154.063800px;}
.wsae{word-spacing:163.494000px;}
.wscb{word-spacing:164.554200px;}
.wsaa{word-spacing:164.665800px;}
.ws14d{word-spacing:168.348600px;}
.wsc7{word-spacing:168.906600px;}
.wsc2{word-spacing:171.138600px;}
.ws83{word-spacing:172.645200px;}
.ws8b{word-spacing:172.812600px;}
.ws18e{word-spacing:175.267800px;}
.wsa3{word-spacing:176.607000px;}
.wsbb{word-spacing:180.457200px;}
.wsb9{word-spacing:182.187000px;}
.wsb7{word-spacing:182.242800px;}
.ws87{word-spacing:182.912400px;}
.ws8c{word-spacing:183.861000px;}
.wsc5{word-spacing:184.195800px;}
.wsbe{word-spacing:185.535000px;}
.ws7b{word-spacing:187.432200px;}
.ws89{word-spacing:188.827200px;}
.wsbd{word-spacing:191.338200px;}
.ws69{word-spacing:191.784600px;}
.ws70{word-spacing:192.510000px;}
.ws91{word-spacing:192.900600px;}
.wsa4{word-spacing:193.123800px;}
.wsc9{word-spacing:201.270600px;}
.ws52{word-spacing:201.493800px;}
.ws4e{word-spacing:201.940200px;}
.ws73{word-spacing:203.949000px;}
.ws62{word-spacing:204.004800px;}
.ws65{word-spacing:204.841800px;}
.ws61{word-spacing:204.897600px;}
.ws57{word-spacing:204.953400px;}
.ws51{word-spacing:205.176600px;}
.ws74{word-spacing:210.979800px;}
.wsce{word-spacing:211.649400px;}
.ws85{word-spacing:211.705200px;}
.ws6b{word-spacing:211.928400px;}
.ws55{word-spacing:213.714000px;}
.ws64{word-spacing:216.838800px;}
.wsa6{word-spacing:216.894600px;}
.ws80{word-spacing:223.311600px;}
.ws77{word-spacing:224.818200px;}
.wsda{word-spacing:230.286600px;}
.ws4f{word-spacing:250.095600px;}
.ws94{word-spacing:252.997200px;}
.ws54{word-spacing:263.208600px;}
.ws93{word-spacing:286.254000px;}
.wsd9{word-spacing:312.201000px;}
.wsde{word-spacing:324.198000px;}
.ws96{word-spacing:327.267000px;}
.wsdc{word-spacing:339.319800px;}
.ws9c{word-spacing:349.029000px;}
.ws153{word-spacing:393.836400px;}
.ws14f{word-spacing:409.404600px;}
.ws150{word-spacing:452.538000px;}
.ws151{word-spacing:490.816800px;}
.ws133{word-spacing:546.003000px;}
.ws152{word-spacing:570.443400px;}
.ws14e{word-spacing:571.671000px;}
.ws120{word-spacing:576.693000px;}
.ws12c{word-spacing:589.471200px;}
.ws12e{word-spacing:594.995400px;}
.ws141{word-spacing:597.339000px;}
.ws137{word-spacing:598.231800px;}
.ws130{word-spacing:606.267000px;}
.ws123{word-spacing:613.576800px;}
.ws12a{word-spacing:618.096600px;}
.ws142{word-spacing:638.017200px;}
.ws125{word-spacing:640.695600px;}
.ws135{word-spacing:648.005400px;}
.ws13a{word-spacing:654.143400px;}
.ws128{word-spacing:656.654400px;}
.ws138{word-spacing:676.965600px;}
.wseb{word-spacing:686.005200px;}
.ws13c{word-spacing:687.679200px;}
.wsf7{word-spacing:687.958200px;}
.ws113{word-spacing:689.297400px;}
.ws13f{word-spacing:704.028600px;}
.ws19e{word-spacing:713.012400px;}
.ws187{word-spacing:748.278000px;}
.ws1aa{word-spacing:752.072400px;}
.ws197{word-spacing:754.639200px;}
.ws195{word-spacing:758.824200px;}
.ws199{word-spacing:765.631800px;}
.ws19b{word-spacing:781.088400px;}
.ws189{word-spacing:783.097200px;}
.ws18f{word-spacing:790.183800px;}
.ws1a1{word-spacing:790.686000px;}
.ws1ab{word-spacing:798.442200px;}
.ws1a2{word-spacing:801.790200px;}
.ws11e{word-spacing:807.984000px;}
.ws17b{word-spacing:808.821000px;}
.ws1a4{word-spacing:809.937000px;}
.ws164{word-spacing:814.233600px;}
.ws17e{word-spacing:818.195400px;}
.ws1a5{word-spacing:824.612400px;}
.ws13b{word-spacing:826.956000px;}
.ws1a8{word-spacing:828.685800px;}
.ws12d{word-spacing:832.312800px;}
.ws1a0{word-spacing:832.368600px;}
.ws131{word-spacing:832.703400px;}
.ws178{word-spacing:832.982400px;}
.ws124{word-spacing:833.261400px;}
.ws192{word-spacing:833.652000px;}
.ws181{word-spacing:834.823800px;}
.ws129{word-spacing:843.417000px;}
.ws160{word-spacing:844.588800px;}
.ws13e{word-spacing:849.834000px;}
.ws132{word-spacing:850.001400px;}
.ws171{word-spacing:850.224600px;}
.ws12f{word-spacing:852.456600px;}
.ws173{word-spacing:854.521200px;}
.ws169{word-spacing:855.804600px;}
.ws143{word-spacing:856.753200px;}
.ws127{word-spacing:857.813400px;}
.ws12b{word-spacing:864.118800px;}
.ws174{word-spacing:865.960200px;}
.ws16c{word-spacing:866.908800px;}
.ws162{word-spacing:867.522600px;}
.ws136{word-spacing:870.814800px;}
.ws175{word-spacing:871.205400px;}
.ws134{word-spacing:873.214200px;}
.ws121{word-spacing:874.720800px;}
.ws167{word-spacing:878.347800px;}
.ws16e{word-spacing:878.850000px;}
.ws17c{word-spacing:885.322800px;}
.ws140{word-spacing:887.554800px;}
.ws13d{word-spacing:904.294800px;}
.ws126{word-spacing:904.964400px;}
.wsef{word-spacing:1101.715200px;}
.wsec{word-spacing:1140.607800px;}
.wsee{word-spacing:1141.054200px;}
.ws10d{word-spacing:1142.393400px;}
.ws114{word-spacing:1169.289000px;}
.ws11a{word-spacing:1173.027600px;}
.wsf2{word-spacing:1179.891000px;}
.ws10c{word-spacing:1181.286000px;}
.ws11c{word-spacing:1184.187600px;}
.wsf1{word-spacing:1185.471000px;}
.ws10f{word-spacing:1191.218400px;}
.wsf8{word-spacing:1193.562000px;}
.wsff{word-spacing:1200.648600px;}
.ws11b{word-spacing:1201.039200px;}
.ws10e{word-spacing:1201.262400px;}
.wsf3{word-spacing:1203.438600px;}
.ws115{word-spacing:1204.722000px;}
.wsfa{word-spacing:1207.791000px;}
.wsfd{word-spacing:1212.757200px;}
.wsf0{word-spacing:1213.371000px;}
.ws110{word-spacing:1221.127200px;}
.wsfc{word-spacing:1224.363600px;}
.ws116{word-spacing:1226.539800px;}
.wsfe{word-spacing:1229.050800px;}
.wsed{word-spacing:1231.115400px;}
.ws59{word-spacing:1232.604000px;}
.ws1f{word-spacing:1232.712000px;}
.wsf5{word-spacing:1232.982000px;}
.ws9d{word-spacing:1233.252000px;}
.ws146{word-spacing:1233.360000px;}
.ws118{word-spacing:1233.414000px;}
.wsd6{word-spacing:1235.412000px;}
.ws1af{word-spacing:1235.466000px;}
.ws117{word-spacing:1246.404600px;}
.wsf9{word-spacing:1250.980200px;}
.wsfb{word-spacing:1272.686400px;}
.wse3{word-spacing:1427.220000px;}
.ws101{word-spacing:1427.382000px;}
.ws1b4{word-spacing:1427.436000px;}
.ws1c2{word-spacing:1427.652000px;}
.ws8e{word-spacing:1428.192000px;}
.ws3f{word-spacing:1428.408000px;}
.ws157{word-spacing:1428.516000px;}
.ws139{word-spacing:1428.570000px;}
.wsb1{word-spacing:1430.082000px;}
.ws1dd{word-spacing:1430.784000px;}
.ws18b{word-spacing:1432.890000px;}
._3b{margin-left:-1234.896600px;}
._7{margin-left:-1233.789000px;}
._e{margin-left:-1232.399100px;}
._52{margin-left:-32.385300px;}
._aa{margin-left:-31.236600px;}
._57{margin-left:-30.087000px;}
._61{margin-left:-27.463500px;}
._4a{margin-left:-26.021100px;}
._4f{margin-left:-19.908300px;}
._4d{margin-left:-18.876600px;}
._50{margin-left:-17.532300px;}
._4c{margin-left:-14.790000px;}
._ab{margin-left:-8.160000px;}
._8{margin-left:-6.736500px;}
._5{margin-left:-5.712000px;}
._a9{margin-left:-4.660500px;}
._6{margin-left:-3.635400px;}
._0{margin-left:-2.400000px;}
._3{margin-left:-1.377000px;}
._9{width:1.015500px;}
._1{width:2.070600px;}
._2{width:3.136500px;}
._4{width:4.146300px;}
._d{width:5.154900px;}
._51{width:6.690300px;}
._4e{width:7.950000px;}
._54{width:9.150300px;}
._a{width:10.680000px;}
._b{width:11.820000px;}
._c{width:14.580000px;}
._4b{width:16.294500px;}
._53{width:18.330000px;}
._58{width:19.727400px;}
._62{width:21.165300px;}
._47{width:23.418000px;}
._77{width:24.718200px;}
._1b{width:28.795200px;}
._1e{width:31.758600px;}
._32{width:40.231800px;}
._11{width:46.146600px;}
._3a{width:54.126600px;}
._75{width:61.474200px;}
._19{width:62.812800px;}
._31{width:80.128800px;}
._17{width:86.824800px;}
._15{width:94.191000px;}
._10{width:95.194800px;}
._35{width:96.821400px;}
._9c{width:98.739600px;}
._97{width:102.562200px;}
._a8{width:104.513400px;}
._45{width:109.591200px;}
._7b{width:112.269600px;}
._25{width:114.613200px;}
._94{width:116.901000px;}
._96{width:118.240200px;}
._79{width:119.802600px;}
._a2{width:126.043800px;}
._1a{width:129.177000px;}
._23{width:130.460400px;}
._7e{width:131.791200px;}
._7c{width:132.859800px;}
._7d{width:134.645400px;}
._80{width:136.263600px;}
._38{width:137.323800px;}
._81{width:138.774600px;}
._68{width:140.337600px;}
._95{width:142.457400px;}
._7a{width:143.629200px;}
._3d{width:145.359000px;}
._21{width:146.587200px;}
._30{width:149.376600px;}
._24{width:150.660000px;}
._6a{width:152.501400px;}
._83{width:154.051200px;}
._a5{width:155.199600px;}
._2c{width:158.466000px;}
._39{width:160.816200px;}
._99{width:162.525600px;}
._84{width:163.735200px;}
._9e{width:164.769000px;}
._34{width:166.935600px;}
._37{width:168.554400px;}
._8b{width:170.971200px;}
._33{width:173.147400px;}
._20{width:174.877200px;}
._36{width:176.757000px;}
._f{width:179.173800px;}
._16{width:180.289800px;}
._89{width:182.290200px;}
._85{width:184.959000px;}
._18{width:186.324600px;}
._1d{width:188.325000px;}
._a1{width:191.356200px;}
._1c{width:192.454200px;}
._8d{width:194.089800px;}
._14{width:195.300000px;}
._69{width:197.364600px;}
._3c{width:198.871200px;}
._13{width:200.378400px;}
._22{width:201.382200px;}
._12{width:202.870800px;}
._9f{width:205.399800px;}
._86{width:208.524600px;}
._90{width:209.808000px;}
._1f{width:213.546600px;}
._87{width:215.268000px;}
._88{width:219.341400px;}
._91{width:221.637600px;}
._3e{width:227.999400px;}
._44{width:230.175000px;}
._3f{width:232.129200px;}
._41{width:235.085400px;}
._46{width:239.334000px;}
._6b{width:243.678600px;}
._2e{width:247.026600px;}
._2b{width:249.706200px;}
._28{width:259.525800px;}
._27{width:264.157200px;}
._66{width:267.792600px;}
._2d{width:272.527200px;}
._2f{width:275.745600px;}
._71{width:289.657800px;}
._73{width:302.835600px;}
._8e{width:310.136400px;}
._9d{width:312.256800px;}
._8f{width:313.875000px;}
._6f{width:314.991000px;}
._43{width:318.618600px;}
._29{width:335.395800px;}
._26{width:338.185800px;}
._2a{width:342.147600px;}
._6d{width:347.410800px;}
._40{width:352.544400px;}
._6e{width:356.896800px;}
._6c{width:361.305000px;}
._8c{width:368.614800px;}
._64{width:370.735800px;}
._67{width:372.967200px;}
._8a{width:383.625000px;}
._42{width:385.968600px;}
._9a{width:395.454600px;}
._82{width:399.081600px;}
._a0{width:403.378200px;}
._a6{width:423.019800px;}
._9b{width:435.184200px;}
._a3{width:439.592400px;}
._76{width:446.400600px;}
._a4{width:449.580600px;}
._65{width:467.659800px;}
._92{width:478.429200px;}
._a7{width:483.683400px;}
._70{width:493.327800px;}
._7f{width:494.722800px;}
._74{width:496.341000px;}
._93{width:542.440800px;}
._72{width:582.114600px;}
._98{width:594.717000px;}
._78{width:603.254400px;}
._63{width:632.548800px;}
._60{width:727.632000px;}
._56{width:743.590800px;}
._5e{width:767.082600px;}
._55{width:838.785600px;}
._5f{width:852.791400px;}
._59{width:1010.482200px;}
._5c{width:1012.044600px;}
._5d{width:1027.389600px;}
._48{width:1059.697800px;}
._5b{width:1068.179400px;}
._5a{width:1083.691800px;}
._49{width:1136.367000px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:22.200000px;}
.fs8{font-size:34.980000px;}
.fs9{font-size:41.400000px;}
.fs2{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:55.800000px;}
.fs7{font-size:58.800000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y122{bottom:90.496650px;}
.y15f{bottom:90.561000px;}
.y84{bottom:91.161300px;}
.y26{bottom:91.318050px;}
.y11a{bottom:91.331550px;}
.y9c{bottom:92.102400px;}
.y1cb{bottom:93.970050px;}
.y1ae{bottom:93.995550px;}
.y137{bottom:96.224400px;}
.y54{bottom:96.468900px;}
.y180{bottom:97.992900px;}
.yc4{bottom:98.821650px;}
.y15e{bottom:107.817150px;}
.y121{bottom:109.468650px;}
.y25{bottom:109.768050px;}
.y119{bottom:109.780050px;}
.y1ca{bottom:111.220800px;}
.y1ad{bottom:111.246300px;}
.y53{bottom:112.971750px;}
.y83{bottom:113.042550px;}
.y9b{bottom:113.959800px;}
.yc3{bottom:115.324500px;}
.y136{bottom:115.614900px;}
.y17f{bottom:116.964900px;}
.y15d{bottom:125.067150px;}
.y24{bottom:128.218050px;}
.y118{bottom:128.228550px;}
.y120{bottom:128.440650px;}
.y1c9{bottom:128.471550px;}
.y1ac{bottom:128.497050px;}
.y52{bottom:129.474600px;}
.y82{bottom:129.545400px;}
.yc2{bottom:131.827350px;}
.y9a{bottom:132.931800px;}
.y135{bottom:135.005400px;}
.y17e{bottom:135.922950px;}
.y1c8{bottom:145.722300px;}
.y1ab{bottom:145.747800px;}
.y23{bottom:146.668050px;}
.y156{bottom:146.668200px;}
.y117{bottom:146.677050px;}
.y11f{bottom:147.412650px;}
.y51{bottom:148.432650px;}
.y81{bottom:148.503450px;}
.yc1{bottom:150.785400px;}
.y99{bottom:151.903800px;}
.y17d{bottom:152.425800px;}
.y134{bottom:154.395900px;}
.y1c7{bottom:162.973050px;}
.y1aa{bottom:162.998550px;}
.y50{bottom:164.935500px;}
.y80{bottom:165.006300px;}
.y22{bottom:165.118050px;}
.y155{bottom:165.118200px;}
.y116{bottom:165.125550px;}
.y11e{bottom:166.384650px;}
.yc0{bottom:167.288250px;}
.y17c{bottom:168.928650px;}
.y98{bottom:170.875800px;}
.y133{bottom:173.786400px;}
.y1c6{bottom:180.223800px;}
.y1a9{bottom:180.249300px;}
.y7f{bottom:181.509150px;}
.y21{bottom:183.568050px;}
.y154{bottom:183.568200px;}
.y115{bottom:183.574050px;}
.ybf{bottom:183.791100px;}
.y4e{bottom:183.893550px;}
.y11d{bottom:185.356650px;}
.y97{bottom:187.378650px;}
.y132{bottom:193.176900px;}
.y1c5{bottom:197.474550px;}
.y1a8{bottom:197.500050px;}
.y4d{bottom:200.396400px;}
.y7e{bottom:200.467200px;}
.y20{bottom:202.018050px;}
.y153{bottom:202.018200px;}
.y114{bottom:202.022550px;}
.ybe{bottom:202.749150px;}
.y11c{bottom:204.328650px;}
.y131{bottom:212.567400px;}
.y1c4{bottom:214.725300px;}
.y1a7{bottom:214.750800px;}
.y4f{bottom:216.899250px;}
.y4c{bottom:216.904500px;}
.y7d{bottom:216.970050px;}
.ybd{bottom:219.252000px;}
.y1f{bottom:220.468050px;}
.y152{bottom:220.468200px;}
.y113{bottom:220.471050px;}
.y130{bottom:231.957900px;}
.y1c3{bottom:231.976050px;}
.y1a6{bottom:232.001550px;}
.ybc{bottom:235.754850px;}
.y4b{bottom:235.862550px;}
.y7c{bottom:235.942050px;}
.y1e{bottom:238.918050px;}
.y151{bottom:238.918200px;}
.y112{bottom:238.919550px;}
.y1c2{bottom:249.226800px;}
.y1a5{bottom:249.252300px;}
.y12f{bottom:251.348400px;}
.y4a{bottom:252.365400px;}
.ybb{bottom:254.712900px;}
.y7b{bottom:254.914050px;}
.y104{bottom:255.718050px;}
.y1d{bottom:257.368050px;}
.y150{bottom:257.368200px;}
.y1c1{bottom:266.477550px;}
.y1a4{bottom:266.503050px;}
.y12e{bottom:270.738900px;}
.yba{bottom:271.215750px;}
.y49{bottom:271.323450px;}
.y7a{bottom:273.872100px;}
.y1c{bottom:275.818050px;}
.y14f{bottom:275.818200px;}
.y1c0{bottom:283.728300px;}
.y1a3{bottom:283.753800px;}
.yb9{bottom:287.718600px;}
.y48{bottom:287.826300px;}
.y12d{bottom:290.129400px;}
.y79{bottom:290.374950px;}
.y17b{bottom:291.417300px;}
.y1b{bottom:294.268050px;}
.y14e{bottom:294.268200px;}
.y1bf{bottom:300.979050px;}
.y1a2{bottom:301.004550px;}
.ye6{bottom:303.960000px;}
.yb8{bottom:306.676650px;}
.y47{bottom:306.784350px;}
.y17a{bottom:308.668050px;}
.y78{bottom:309.333000px;}
.y12c{bottom:309.519900px;}
.y1a{bottom:312.718050px;}
.y14d{bottom:312.718200px;}
.y111{bottom:313.034250px;}
.y96{bottom:313.052400px;}
.y1be{bottom:318.229800px;}
.y1a1{bottom:318.255300px;}
.yb7{bottom:323.179500px;}
.y46{bottom:323.287200px;}
.y77{bottom:325.835850px;}
.ye5{bottom:325.863750px;}
.y12b{bottom:328.910400px;}
.y19{bottom:331.168050px;}
.y14c{bottom:331.168200px;}
.y94{bottom:334.895250px;}
.y1bd{bottom:335.480550px;}
.y1a0{bottom:335.506050px;}
.yb6{bottom:339.682350px;}
.y45{bottom:339.790050px;}
.y76{bottom:342.338700px;}
.ye4{bottom:342.366600px;}
.y12a{bottom:348.300900px;}
.y18{bottom:349.618050px;}
.y14b{bottom:349.618200px;}
.y93{bottom:351.398100px;}
.y179{bottom:351.929850px;}
.y1bc{bottom:352.731300px;}
.y19f{bottom:352.756800px;}
.yb5{bottom:358.640400px;}
.y44{bottom:358.748100px;}
.ye3{bottom:358.869450px;}
.y75{bottom:361.296750px;}
.y129{bottom:367.691400px;}
.y92{bottom:367.900950px;}
.y17{bottom:368.068050px;}
.y14a{bottom:368.068200px;}
.y1bb{bottom:369.982050px;}
.y19e{bottom:370.007550px;}
.y1fb{bottom:370.675050px;}
.y178{bottom:373.670400px;}
.yb4{bottom:375.143250px;}
.y43{bottom:375.250950px;}
.y74{bottom:377.799600px;}
.ye2{bottom:377.827500px;}
.y91{bottom:384.403800px;}
.y16{bottom:386.518050px;}
.y149{bottom:386.518200px;}
.y128{bottom:387.081900px;}
.y1ba{bottom:387.232800px;}
.y19d{bottom:387.258300px;}
.y1fa{bottom:387.925800px;}
.yb3{bottom:391.646100px;}
.y42{bottom:391.753800px;}
.y177{bottom:392.642400px;}
.y73{bottom:394.302450px;}
.ye1{bottom:394.330350px;}
.y90{bottom:400.906650px;}
.y1b9{bottom:404.483550px;}
.y19c{bottom:404.509050px;}
.y15{bottom:404.968050px;}
.y148{bottom:404.968200px;}
.y1f9{bottom:405.176550px;}
.y127{bottom:406.472400px;}
.yb2{bottom:410.604150px;}
.y41{bottom:410.725800px;}
.y176{bottom:411.614400px;}
.y72{bottom:413.260500px;}
.ye0{bottom:413.288400px;}
.y95{bottom:417.395550px;}
.y8f{bottom:417.409500px;}
.y1b8{bottom:421.734300px;}
.y19b{bottom:421.759800px;}
.y1f8{bottom:422.427300px;}
.y14{bottom:423.418050px;}
.y147{bottom:423.418200px;}
.y126{bottom:425.862900px;}
.yb1{bottom:427.107000px;}
.y40{bottom:427.228650px;}
.y71{bottom:429.763350px;}
.ydf{bottom:429.791250px;}
.y175{bottom:430.586400px;}
.y8d{bottom:436.381500px;}
.y1b7{bottom:438.985050px;}
.y19a{bottom:439.010550px;}
.y11b{bottom:439.015500px;}
.y1f7{bottom:439.678050px;}
.y18e{bottom:441.829200px;}
.y13{bottom:441.868050px;}
.y146{bottom:441.868200px;}
.yf8{bottom:442.652400px;}
.y125{bottom:445.253400px;}
.yb0{bottom:446.065050px;}
.y70{bottom:448.721400px;}
.yde{bottom:448.749300px;}
.y174{bottom:449.558400px;}
.y8c{bottom:452.884350px;}
.y1b6{bottom:456.235800px;}
.y199{bottom:456.261300px;}
.y1f6{bottom:456.928800px;}
.y12{bottom:460.318050px;}
.y145{bottom:460.318200px;}
.yaf{bottom:462.567900px;}
.y18d{bottom:463.578150px;}
.yf7{bottom:464.509800px;}
.y6f{bottom:465.224250px;}
.ydd{bottom:465.252150px;}
.y173{bottom:468.530400px;}
.y8b{bottom:469.387200px;}
.y1b5{bottom:473.486550px;}
.y198{bottom:473.512050px;}
.y1f5{bottom:474.179550px;}
.y3f{bottom:478.768050px;}
.y144{bottom:478.768200px;}
.yae{bottom:479.070750px;}
.y6e{bottom:481.727100px;}
.y18c{bottom:482.550150px;}
.yf6{bottom:483.481800px;}
.ydc{bottom:484.210200px;}
.y8e{bottom:485.876100px;}
.y8a{bottom:485.890050px;}
.y172{bottom:487.502400px;}
.y1b4{bottom:490.737300px;}
.y197{bottom:490.762800px;}
.y1f4{bottom:491.430300px;}
.y11{bottom:497.218050px;}
.y143{bottom:497.218200px;}
.yad{bottom:498.028800px;}
.y6d{bottom:500.685150px;}
.ydb{bottom:500.713050px;}
.y18b{bottom:501.522150px;}
.yf5{bottom:502.453800px;}
.y89{bottom:504.848100px;}
.y171{bottom:506.474400px;}
.y1b3{bottom:507.988050px;}
.y196{bottom:508.013550px;}
.y1f3{bottom:508.681050px;}
.yac{bottom:514.531650px;}
.y3e{bottom:515.668050px;}
.y142{bottom:515.668200px;}
.y6c{bottom:517.188000px;}
.yda{bottom:519.671100px;}
.y18a{bottom:520.494150px;}
.y88{bottom:521.350950px;}
.yf4{bottom:521.425800px;}
.y1b2{bottom:525.238800px;}
.y195{bottom:525.264300px;}
.y170{bottom:525.446400px;}
.ya9{bottom:533.503650px;}
.y6b{bottom:533.690850px;}
.y3d{bottom:534.118050px;}
.y141{bottom:534.118200px;}
.yd9{bottom:536.173950px;}
.y87{bottom:537.853800px;}
.yf3{bottom:537.928650px;}
.y189{bottom:539.466150px;}
.y1b1{bottom:542.489550px;}
.y194{bottom:542.515050px;}
.y1f2{bottom:543.182550px;}
.y10{bottom:543.793950px;}
.y16f{bottom:544.418400px;}
.y110{bottom:547.787250px;}
.y190{bottom:549.717450px;}
.ya8{bottom:550.006500px;}
.y3c{bottom:552.568050px;}
.y140{bottom:552.568200px;}
.y69{bottom:552.662850px;}
.yd8{bottom:555.132000px;}
.y86{bottom:556.825800px;}
.y188{bottom:558.438150px;}
.y1b0{bottom:559.740300px;}
.y193{bottom:559.765800px;}
.yf{bottom:561.044700px;}
.y16e{bottom:563.390400px;}
.yab{bottom:566.495400px;}
.ya7{bottom:566.509350px;}
.y18f{bottom:566.968200px;}
.y68{bottom:569.165700px;}
.y10f{bottom:569.608650px;}
.y15c{bottom:570.752400px;}
.y3b{bottom:571.018050px;}
.y13f{bottom:571.018200px;}
.yd7{bottom:571.634850px;}
.y85{bottom:573.328650px;}
.y1af{bottom:576.991050px;}
.y192{bottom:577.016550px;}
.y187{bottom:577.410150px;}
.y16d{bottom:582.362400px;}
.yaa{bottom:582.998250px;}
.ya6{bottom:583.012200px;}
.y124{bottom:585.423150px;}
.y67{bottom:585.668550px;}
.yd6{bottom:588.137700px;}
.y10e{bottom:588.580650px;}
.y3a{bottom:589.468050px;}
.y13e{bottom:589.468200px;}
.y15b{bottom:592.623750px;}
.y1f1{bottom:594.934800px;}
.y1de{bottom:594.947550px;}
.ye{bottom:595.546200px;}
.y186{bottom:596.382150px;}
.y16c{bottom:601.334400px;}
.ya5{bottom:601.970250px;}
.y6a{bottom:602.157450px;}
.y66{bottom:602.171400px;}
.yd5{bottom:607.095750px;}
.y10d{bottom:607.552650px;}
.y39{bottom:607.918050px;}
.y13d{bottom:607.918200px;}
.y191{bottom:611.518050px;}
.y15a{bottom:611.595750px;}
.y1f0{bottom:612.185550px;}
.y1dd{bottom:612.198300px;}
.yd{bottom:612.796950px;}
.y185{bottom:615.354150px;}
.ya4{bottom:618.473100px;}
.y16b{bottom:620.306400px;}
.y65{bottom:621.143400px;}
.yd4{bottom:623.598600px;}
.y38{bottom:626.368050px;}
.y13c{bottom:626.368200px;}
.y10c{bottom:626.524650px;}
.y1ef{bottom:629.436300px;}
.y1dc{bottom:629.449050px;}
.yc{bottom:630.047700px;}
.y184{bottom:634.326150px;}
.ya2{bottom:637.445100px;}
.y64{bottom:637.646250px;}
.y16a{bottom:639.278400px;}
.yd2{bottom:642.570600px;}
.y37{bottom:644.818050px;}
.y13b{bottom:644.818200px;}
.y10b{bottom:645.496650px;}
.y1ee{bottom:646.687050px;}
.y1db{bottom:646.699800px;}
.yb{bottom:647.298450px;}
.y183{bottom:653.298150px;}
.ya1{bottom:653.947950px;}
.yf2{bottom:656.157900px;}
.y63{bottom:656.604300px;}
.y169{bottom:658.250400px;}
.yd1{bottom:659.073450px;}
.y159{bottom:663.135150px;}
.y36{bottom:663.268050px;}
.y13a{bottom:663.268200px;}
.y1ed{bottom:663.937800px;}
.y1da{bottom:663.950550px;}
.y10a{bottom:664.468650px;}
.ya{bottom:664.549200px;}
.ya0{bottom:670.450800px;}
.y182{bottom:672.270150px;}
.y62{bottom:673.107150px;}
.yd0{bottom:675.576300px;}
.y168{bottom:677.222400px;}
.yf1{bottom:677.989650px;}
.y1ec{bottom:681.188550px;}
.y1d9{bottom:681.201300px;}
.y35{bottom:681.718050px;}
.y139{bottom:681.718200px;}
.y9{bottom:681.799950px;}
.y109{bottom:683.440650px;}
.y158{bottom:685.006650px;}
.ya3{bottom:686.939700px;}
.y9f{bottom:686.953650px;}
.y103{bottom:688.392750px;}
.y27{bottom:688.441800px;}
.y61{bottom:689.610000px;}
.y181{bottom:691.242150px;}
.yd3{bottom:692.065200px;}
.ycf{bottom:692.079150px;}
.yf0{bottom:694.492500px;}
.y167{bottom:696.194400px;}
.y1eb{bottom:698.439300px;}
.y1d8{bottom:698.452050px;}
.y8{bottom:699.050700px;}
.y34{bottom:700.168050px;}
.y108{bottom:702.412650px;}
.y157{bottom:703.978650px;}
.y9e{bottom:705.925650px;}
.y60{bottom:708.568050px;}
.y102{bottom:710.214150px;}
.yef{bottom:710.995350px;}
.yce{bottom:711.037200px;}
.y166{bottom:715.166400px;}
.y1ea{bottom:715.690050px;}
.y1d7{bottom:715.702800px;}
.y7{bottom:716.301450px;}
.y33{bottom:718.618050px;}
.y107{bottom:721.384650px;}
.y9d{bottom:722.428500px;}
.y5f{bottom:725.070900px;}
.ycd{bottom:727.540050px;}
.y101{bottom:729.186150px;}
.yed{bottom:729.967350px;}
.y1e9{bottom:732.940800px;}
.y1d6{bottom:732.953550px;}
.y6{bottom:733.552200px;}
.y165{bottom:734.138400px;}
.y32{bottom:737.068050px;}
.y106{bottom:740.356650px;}
.y5e{bottom:741.573750px;}
.ycc{bottom:744.042900px;}
.y138{bottom:745.292100px;}
.yec{bottom:746.470200px;}
.y100{bottom:748.158150px;}
.y1e8{bottom:750.191550px;}
.y1d5{bottom:750.204300px;}
.y5{bottom:750.802950px;}
.y164{bottom:753.110400px;}
.y31{bottom:755.518050px;}
.y105{bottom:759.328650px;}
.y5d{bottom:760.531800px;}
.yeb{bottom:762.973050px;}
.ycb{bottom:763.000950px;}
.yff{bottom:767.130150px;}
.y1e7{bottom:767.442300px;}
.y1d4{bottom:767.455050px;}
.y4{bottom:768.053700px;}
.y163{bottom:772.082400px;}
.y30{bottom:773.968050px;}
.y5c{bottom:777.034650px;}
.yee{bottom:779.461950px;}
.yea{bottom:779.475900px;}
.yca{bottom:779.503800px;}
.y1e6{bottom:784.693050px;}
.y1d3{bottom:784.705800px;}
.yfe{bottom:786.102150px;}
.y162{bottom:791.054400px;}
.y2f{bottom:792.418050px;}
.y5b{bottom:795.992700px;}
.yc9{bottom:796.006650px;}
.ye8{bottom:798.447900px;}
.y1e5{bottom:801.943800px;}
.y1d2{bottom:801.956550px;}
.yfd{bottom:805.074150px;}
.y161{bottom:810.026400px;}
.y2e{bottom:810.868050px;}
.y5a{bottom:812.495550px;}
.ye7{bottom:814.950750px;}
.yc8{bottom:814.964700px;}
.y1e4{bottom:819.194550px;}
.y1d1{bottom:819.207300px;}
.y3{bottom:819.803700px;}
.y123{bottom:821.157900px;}
.yfc{bottom:824.046150px;}
.y160{bottom:828.998400px;}
.y2d{bottom:829.318050px;}
.y59{bottom:831.453600px;}
.yc7{bottom:831.467550px;}
.y1e3{bottom:836.445300px;}
.y1d0{bottom:836.458050px;}
.yfb{bottom:843.018150px;}
.y2c{bottom:847.768050px;}
.y58{bottom:847.956450px;}
.yc6{bottom:847.970400px;}
.y1e2{bottom:853.696050px;}
.y1cf{bottom:853.708800px;}
.yfa{bottom:861.990150px;}
.ye9{bottom:864.445350px;}
.y57{bottom:864.459300px;}
.y2b{bottom:866.218050px;}
.yc5{bottom:866.928450px;}
.y2{bottom:870.815700px;}
.y1e1{bottom:870.946800px;}
.y1ce{bottom:870.959550px;}
.yf9{bottom:880.962150px;}
.y56{bottom:883.431300px;}
.y2a{bottom:884.668050px;}
.y1e0{bottom:888.197550px;}
.y1cd{bottom:888.210300px;}
.y1{bottom:896.303700px;}
.y55{bottom:899.934150px;}
.y29{bottom:903.118050px;}
.y1df{bottom:905.448300px;}
.y1cc{bottom:905.461050px;}
.y28{bottom:955.942350px;}
.h8{height:15.295800px;}
.hb{height:44.305200px;}
.h10{height:45.543000px;}
.he{height:45.696000px;}
.h5{height:45.900000px;}
.h4{height:48.195000px;}
.hd{height:49.829400px;}
.hc{height:49.996800px;}
.h9{height:50.868000px;}
.hf{height:52.920000px;}
.h7{height:54.000000px;}
.ha{height:56.520000px;}
.h6{height:56.700000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x4{left:72.283500px;}
.x1{left:80.787450px;}
.x4e{left:85.033500px;}
.x5{left:93.523500px;}
.x10{left:97.531800px;}
.x2{left:102.042450px;}
.x1c{left:106.021800px;}
.x2e{left:115.214100px;}
.x7{left:119.851800px;}
.x6{left:123.297450px;}
.x21{left:125.323200px;}
.x13{left:128.355750px;}
.x28{left:134.465100px;}
.xb{left:184.733250px;}
.x30{left:187.761600px;}
.x17{left:193.237200px;}
.x2c{left:196.263600px;}
.x3b{left:290.656800px;}
.x3c{left:297.004050px;}
.xc{left:300.894900px;}
.x34{left:302.416650px;}
.x31{left:303.825600px;}
.xf{left:305.526300px;}
.x11{left:308.079150px;}
.x12{left:309.837750px;}
.x26{left:311.286750px;}
.x2f{left:312.536850px;}
.x35{left:314.246250px;}
.x18{left:317.517750px;}
.x19{left:319.693950px;}
.x1d{left:321.451650px;}
.x36{left:325.295700px;}
.x20{left:326.641050px;}
.x1e{left:328.608000px;}
.x1f{left:329.877450px;}
.x3e{left:351.450900px;}
.x3d{left:353.934000px;}
.x48{left:357.820500px;}
.x46{left:360.303600px;}
.x24{left:361.901250px;}
.x4f{left:366.132750px;}
.x47{left:369.231600px;}
.x39{left:371.777100px;}
.x50{left:374.623950px;}
.x8{left:386.966400px;}
.x29{left:388.885200px;}
.x14{left:395.470350px;}
.x3f{left:402.745050px;}
.x22{left:408.006000px;}
.x27{left:409.383150px;}
.x49{left:415.573500px;}
.x37{left:420.922950px;}
.x32{left:424.562850px;}
.xd{left:433.252500px;}
.x1a{left:441.742500px;}
.x41{left:456.480450px;}
.x2a{left:458.146950px;}
.x9{left:459.339000px;}
.x42{left:462.339450px;}
.x40{left:463.804200px;}
.x15{left:467.842950px;}
.x4a{left:470.173800px;}
.x25{left:496.895400px;}
.x3a{left:512.839500px;}
.x33{left:517.414050px;}
.x43{left:519.757650px;}
.x23{left:520.959150px;}
.x4c{left:523.644150px;}
.x2d{left:525.916050px;}
.xe{left:528.196200px;}
.x38{left:533.178600px;}
.x4b{left:535.055250px;}
.x1b{left:536.686200px;}
.xa{left:538.463400px;}
.x2b{left:540.117150px;}
.x16{left:546.967350px;}
.x45{left:568.568700px;}
.x44{left:575.027550px;}
.x4d{left:581.397150px;}
.x3{left:640.741950px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls33{letter-spacing:-4.265600pt;}
.ls65{letter-spacing:-3.898667pt;}
.ls67{letter-spacing:-2.946667pt;}
.ls36{letter-spacing:-2.926400pt;}
.ls51{letter-spacing:-2.784000pt;}
.ls32{letter-spacing:-2.728000pt;}
.ls6c{letter-spacing:-2.538667pt;}
.ls70{letter-spacing:-2.493333pt;}
.ls4f{letter-spacing:-2.304000pt;}
.ls30{letter-spacing:-2.281600pt;}
.ls2e{letter-spacing:-2.182400pt;}
.ls3c{letter-spacing:-2.112000pt;}
.ls6a{letter-spacing:-1.994667pt;}
.ls6e{letter-spacing:-1.858667pt;}
.ls18{letter-spacing:-1.824000pt;}
.ls60{letter-spacing:-1.813333pt;}
.ls5f{letter-spacing:-1.768000pt;}
.ls6d{letter-spacing:-1.677333pt;}
.ls1a{letter-spacing:-1.386667pt;}
.ls2f{letter-spacing:-1.190400pt;}
.ls25{letter-spacing:-1.173333pt;}
.ls6f{letter-spacing:-1.088000pt;}
.ls44{letter-spacing:-1.066667pt;}
.ls46{letter-spacing:-1.045333pt;}
.ls35{letter-spacing:-1.041600pt;}
.ls47{letter-spacing:-0.993067pt;}
.ls63{letter-spacing:-0.952000pt;}
.ls48{letter-spacing:-0.940800pt;}
.ls45{letter-spacing:-0.906667pt;}
.ls5d{letter-spacing:-0.861333pt;}
.ls58{letter-spacing:-0.853333pt;}
.ls66{letter-spacing:-0.816000pt;}
.ls21{letter-spacing:-0.800000pt;}
.ls61{letter-spacing:-0.770667pt;}
.ls55{letter-spacing:-0.746667pt;}
.ls24{letter-spacing:-0.693333pt;}
.ls68{letter-spacing:-0.680000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls52{letter-spacing:-0.586667pt;}
.ls64{letter-spacing:-0.544000pt;}
.ls1d{letter-spacing:-0.533333pt;}
.ls49{letter-spacing:-0.522667pt;}
.ls34{letter-spacing:-0.496000pt;}
.ls1f{letter-spacing:-0.480000pt;}
.ls37{letter-spacing:-0.453333pt;}
.ls2d{letter-spacing:-0.446400pt;}
.ls1e{letter-spacing:-0.426667pt;}
.ls53{letter-spacing:-0.373333pt;}
.ls5e{letter-spacing:-0.362667pt;}
.ls57{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.266667pt;}
.ls20{letter-spacing:-0.213333pt;}
.lsf{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.106667pt;}
.lse{letter-spacing:-0.053333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.026667pt;}
.ls2{letter-spacing:0.045333pt;}
.ls5{letter-spacing:0.053333pt;}
.ls22{letter-spacing:0.080000pt;}
.ls69{letter-spacing:0.090667pt;}
.ls11{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.136000pt;}
.ls4e{letter-spacing:0.148800pt;}
.ls12{letter-spacing:0.149333pt;}
.ls13{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.181333pt;}
.ls10{letter-spacing:0.197333pt;}
.ls7{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.226667pt;}
.ls38{letter-spacing:0.240000pt;}
.ls6{letter-spacing:0.266667pt;}
.ls9{letter-spacing:0.272000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls59{letter-spacing:0.346667pt;}
.ls1{letter-spacing:0.362667pt;}
.ls16{letter-spacing:0.373333pt;}
.ls5c{letter-spacing:0.408000pt;}
.ls17{letter-spacing:0.426667pt;}
.ls4d{letter-spacing:0.453333pt;}
.ls43{letter-spacing:0.480000pt;}
.ls50{letter-spacing:0.496000pt;}
.ls4b{letter-spacing:0.533333pt;}
.ls62{letter-spacing:0.544000pt;}
.ls42{letter-spacing:0.586667pt;}
.ls15{letter-spacing:0.693333pt;}
.ls19{letter-spacing:0.816000pt;}
.lsb{letter-spacing:0.861333pt;}
.ls6b{letter-spacing:0.997333pt;}
.lsc{letter-spacing:1.066667pt;}
.ls23{letter-spacing:1.104000pt;}
.ls14{letter-spacing:1.600000pt;}
.ls5a{letter-spacing:2.080000pt;}
.ls5b{letter-spacing:2.448000pt;}
.ls54{letter-spacing:3.200000pt;}
.ls56{letter-spacing:3.365333pt;}
.ls4a{letter-spacing:3.712000pt;}
.ls31{letter-spacing:62.942400pt;}
.ls29{letter-spacing:63.785600pt;}
.ls2b{letter-spacing:64.033600pt;}
.ls2a{letter-spacing:64.232000pt;}
.ls27{letter-spacing:64.529600pt;}
.ls28{letter-spacing:64.777600pt;}
.ls2c{letter-spacing:68.150400pt;}
.ls26{letter-spacing:71.225600pt;}
.ls41{letter-spacing:95.579200pt;}
.ls3d{letter-spacing:96.422400pt;}
.ls3f{letter-spacing:96.670400pt;}
.ls3e{letter-spacing:96.868800pt;}
.ls3a{letter-spacing:97.166400pt;}
.ls3b{letter-spacing:97.414400pt;}
.ls40{letter-spacing:100.787200pt;}
.ls39{letter-spacing:103.862400pt;}
.ws1c5{word-spacing:-12.466667pt;}
.ws155{word-spacing:-11.146667pt;}
.ws1{word-spacing:-10.880000pt;}
.ws1db{word-spacing:-10.744000pt;}
.ws50{word-spacing:-10.664000pt;}
.ws112{word-spacing:-10.453333pt;}
.ws1b8{word-spacing:-10.400000pt;}
.ws1e{word-spacing:-10.346667pt;}
.ws111{word-spacing:-10.293333pt;}
.ws0{word-spacing:-10.290667pt;}
.ws4d{word-spacing:-10.267200pt;}
.ws145{word-spacing:-10.240000pt;}
.ws1c6{word-spacing:-10.154667pt;}
.ws1d{word-spacing:-10.133333pt;}
.ws90{word-spacing:-10.080000pt;}
.ws1c{word-spacing:-10.026667pt;}
.ws1ae{word-spacing:-9.973333pt;}
.wsf4{word-spacing:-9.920000pt;}
.ws1d9{word-spacing:-9.837333pt;}
.ws4c{word-spacing:-9.820800pt;}
.ws1da{word-spacing:-9.792000pt;}
.ws1b7{word-spacing:-9.760000pt;}
.ws1cb{word-spacing:-9.746667pt;}
.ws1b6{word-spacing:-9.600000pt;}
.ws1a{word-spacing:-9.552000pt;}
.ws186{word-spacing:-9.493333pt;}
.ws67{word-spacing:-9.473600pt;}
.ws1c8{word-spacing:-9.384000pt;}
.ws8f{word-spacing:-9.264000pt;}
.ws1cc{word-spacing:-9.202667pt;}
.ws1b9{word-spacing:-9.173333pt;}
.ws15f{word-spacing:-9.072000pt;}
.ws1d0{word-spacing:-9.066667pt;}
.ws1ca{word-spacing:-8.976000pt;}
.ws1ce{word-spacing:-8.930667pt;}
.ws1c7{word-spacing:-8.885333pt;}
.ws1d8{word-spacing:-8.840000pt;}
.ws100{word-spacing:-8.833067pt;}
.ws1b{word-spacing:-8.640000pt;}
.ws1dc{word-spacing:-8.069333pt;}
.ws1c9{word-spacing:-7.978667pt;}
.ws156{word-spacing:-7.912000pt;}
.ws1cf{word-spacing:-6.800000pt;}
.ws154{word-spacing:-6.498507pt;}
.ws1cd{word-spacing:-5.848000pt;}
.ws1c0{word-spacing:-2.560000pt;}
.ws1e2{word-spacing:-2.448000pt;}
.ws1c1{word-spacing:-2.346667pt;}
.wse7{word-spacing:-2.293333pt;}
.ws1bd{word-spacing:-2.186667pt;}
.ws1c3{word-spacing:-2.080000pt;}
.ws3d{word-spacing:-2.026667pt;}
.wsc{word-spacing:-1.813333pt;}
.ws185{word-spacing:-1.760000pt;}
.ws5b{word-spacing:-1.706667pt;}
.ws11{word-spacing:-1.653333pt;}
.ws1bb{word-spacing:-1.546667pt;}
.wse9{word-spacing:-1.493333pt;}
.ws1b5{word-spacing:-1.440000pt;}
.ws15{word-spacing:-1.386667pt;}
.ws14a{word-spacing:-1.333333pt;}
.ws37{word-spacing:-1.280000pt;}
.ws3{word-spacing:-1.269333pt;}
.ws33{word-spacing:-1.226667pt;}
.ws43{word-spacing:-1.173333pt;}
.ws3b{word-spacing:-1.120000pt;}
.ws3e{word-spacing:-1.104000pt;}
.wsb{word-spacing:-1.066667pt;}
.wsd8{word-spacing:-1.013333pt;}
.ws20{word-spacing:-0.960000pt;}
.ws44{word-spacing:-0.906667pt;}
.wsa0{word-spacing:-0.853333pt;}
.ws16{word-spacing:-0.800000pt;}
.ws109{word-spacing:-0.784000pt;}
.ws18d{word-spacing:-0.746667pt;}
.ws107{word-spacing:-0.731733pt;}
.wsd7{word-spacing:-0.694400pt;}
.ws30{word-spacing:-0.693333pt;}
.ws4{word-spacing:-0.680000pt;}
.ws3c{word-spacing:-0.640000pt;}
.ws1d1{word-spacing:-0.634667pt;}
.ws32{word-spacing:-0.586667pt;}
.ws1bc{word-spacing:-0.533333pt;}
.wse8{word-spacing:-0.480000pt;}
.ws1d4{word-spacing:-0.453333pt;}
.wse6{word-spacing:-0.446400pt;}
.ws5e{word-spacing:-0.426667pt;}
.ws1d5{word-spacing:-0.408000pt;}
.ws47{word-spacing:-0.373333pt;}
.ws42{word-spacing:-0.320000pt;}
.ws1d3{word-spacing:-0.272000pt;}
.ws12{word-spacing:-0.266667pt;}
.ws104{word-spacing:-0.261333pt;}
.ws1d2{word-spacing:-0.226667pt;}
.ws18{word-spacing:-0.213333pt;}
.ws5f{word-spacing:-0.198400pt;}
.ws19{word-spacing:-0.197333pt;}
.wsa{word-spacing:-0.181333pt;}
.ws4b{word-spacing:-0.160000pt;}
.ws21{word-spacing:-0.106667pt;}
.ws1b2{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.053333pt;}
.ws9f{word-spacing:0.106667pt;}
.ws106{word-spacing:0.156800pt;}
.ws1b1{word-spacing:0.160000pt;}
.ws18c{word-spacing:0.213333pt;}
.ws1be{word-spacing:0.266667pt;}
.ws1bf{word-spacing:0.320000pt;}
.ws184{word-spacing:0.373333pt;}
.ws9{word-spacing:0.408000pt;}
.ws23{word-spacing:0.426667pt;}
.ws22{word-spacing:0.480000pt;}
.ws4a{word-spacing:0.533333pt;}
.ws41{word-spacing:0.586667pt;}
.ws24{word-spacing:0.640000pt;}
.wse{word-spacing:0.693333pt;}
.ws25{word-spacing:0.746667pt;}
.ws159{word-spacing:0.800000pt;}
.ws49{word-spacing:0.906667pt;}
.ws1d6{word-spacing:0.952000pt;}
.ws102{word-spacing:0.960000pt;}
.wse4{word-spacing:0.992000pt;}
.ws158{word-spacing:1.013333pt;}
.ws105{word-spacing:1.045333pt;}
.ws29{word-spacing:1.066667pt;}
.ws14b{word-spacing:1.120000pt;}
.ws2c{word-spacing:1.173333pt;}
.ws60{word-spacing:1.190400pt;}
.wsf6{word-spacing:1.226667pt;}
.ws147{word-spacing:1.280000pt;}
.ws108{word-spacing:1.306667pt;}
.ws17{word-spacing:1.333333pt;}
.ws1ba{word-spacing:1.386667pt;}
.ws7{word-spacing:1.405333pt;}
.ws5{word-spacing:1.450667pt;}
.ws10a{word-spacing:1.463467pt;}
.ws14{word-spacing:1.493333pt;}
.ws8{word-spacing:1.541333pt;}
.ws5c{word-spacing:1.546667pt;}
.ws40{word-spacing:1.600000pt;}
.ws103{word-spacing:1.620267pt;}
.ws15e{word-spacing:1.636800pt;}
.wsd{word-spacing:1.653333pt;}
.ws10{word-spacing:1.706667pt;}
.ws148{word-spacing:1.760000pt;}
.ws13{word-spacing:1.813333pt;}
.ws1e0{word-spacing:1.858667pt;}
.ws1b3{word-spacing:1.866667pt;}
.ws2a{word-spacing:1.920000pt;}
.ws27{word-spacing:1.973333pt;}
.ws1de{word-spacing:1.994667pt;}
.ws15b{word-spacing:2.026667pt;}
.ws183{word-spacing:2.080000pt;}
.ws9e{word-spacing:2.133333pt;}
.ws46{word-spacing:2.186667pt;}
.wsb2{word-spacing:2.240000pt;}
.wsf{word-spacing:2.293333pt;}
.ws39{word-spacing:2.346667pt;}
.ws149{word-spacing:2.400000pt;}
.ws15c{word-spacing:2.453333pt;}
.ws1e1{word-spacing:2.493333pt;}
.ws1df{word-spacing:2.538667pt;}
.ws5a{word-spacing:2.560000pt;}
.ws2f{word-spacing:2.613333pt;}
.ws36{word-spacing:2.666667pt;}
.ws34{word-spacing:2.720000pt;}
.ws6{word-spacing:2.765333pt;}
.ws45{word-spacing:2.773333pt;}
.ws5d{word-spacing:2.826667pt;}
.ws35{word-spacing:2.933333pt;}
.ws26{word-spacing:3.040000pt;}
.ws3a{word-spacing:3.146667pt;}
.ws28{word-spacing:3.200000pt;}
.ws2d{word-spacing:3.253333pt;}
.ws38{word-spacing:3.306667pt;}
.ws1b0{word-spacing:3.360000pt;}
.ws48{word-spacing:3.520000pt;}
.ws2b{word-spacing:3.573333pt;}
.ws15d{word-spacing:3.626667pt;}
.ws119{word-spacing:3.733333pt;}
.wsea{word-spacing:3.786667pt;}
.ws1d7{word-spacing:3.898667pt;}
.ws1c4{word-spacing:4.053333pt;}
.ws31{word-spacing:4.266667pt;}
.ws15a{word-spacing:4.320000pt;}
.ws10b{word-spacing:4.338133pt;}
.wse5{word-spacing:4.640000pt;}
.ws14c{word-spacing:5.866667pt;}
.ws11d{word-spacing:10.912000pt;}
.ws7e{word-spacing:23.808000pt;}
.ws86{word-spacing:27.676800pt;}
.ws8a{word-spacing:28.123200pt;}
.ws82{word-spacing:28.420800pt;}
.ws84{word-spacing:28.668800pt;}
.ws68{word-spacing:30.504000pt;}
.ws7c{word-spacing:33.529600pt;}
.ws72{word-spacing:34.372800pt;}
.ws79{word-spacing:34.620800pt;}
.ws76{word-spacing:34.819200pt;}
.ws6d{word-spacing:35.116800pt;}
.ws6f{word-spacing:35.364800pt;}
.ws7a{word-spacing:40.225600pt;}
.ws6a{word-spacing:41.812800pt;}
.ws182{word-spacing:49.401600pt;}
.wsc8{word-spacing:56.444800pt;}
.wsd3{word-spacing:60.313600pt;}
.wsd5{word-spacing:60.760000pt;}
.wscd{word-spacing:61.057600pt;}
.wsd0{word-spacing:61.305600pt;}
.ws56{word-spacing:61.900800pt;}
.wsab{word-spacing:63.140800pt;}
.ws6e{word-spacing:66.017600pt;}
.wsc4{word-spacing:66.166400pt;}
.ws6c{word-spacing:66.216000pt;}
.ws71{word-spacing:66.761600pt;}
.wsb6{word-spacing:67.009600pt;}
.wsbc{word-spacing:67.257600pt;}
.wsb8{word-spacing:67.456000pt;}
.wsb0{word-spacing:67.753600pt;}
.ws78{word-spacing:67.952000pt;}
.wsb3{word-spacing:68.001600pt;}
.ws7d{word-spacing:68.299200pt;}
.wsc6{word-spacing:68.497600pt;}
.ws193{word-spacing:69.092800pt;}
.ws122{word-spacing:69.435040pt;}
.ws11f{word-spacing:69.440000pt;}
.ws144{word-spacing:69.836800pt;}
.ws63{word-spacing:70.878400pt;}
.ws53{word-spacing:72.316800pt;}
.ws88{word-spacing:72.465600pt;}
.wsa2{word-spacing:72.564800pt;}
.ws161{word-spacing:72.713600pt;}
.wsc0{word-spacing:72.862400pt;}
.wsa7{word-spacing:73.110400pt;}
.wse2{word-spacing:73.160000pt;}
.ws81{word-spacing:73.209600pt;}
.wsd2{word-spacing:73.358400pt;}
.wsad{word-spacing:74.449600pt;}
.wsca{word-spacing:74.697600pt;}
.wsba{word-spacing:75.193600pt;}
.ws75{word-spacing:76.483200pt;}
.ws163{word-spacing:76.582400pt;}
.wscf{word-spacing:77.028800pt;}
.wsaf{word-spacing:77.128000pt;}
.ws58{word-spacing:77.772800pt;}
.wsdd{word-spacing:78.219200pt;}
.ws166{word-spacing:78.368000pt;}
.wsdf{word-spacing:78.516800pt;}
.ws66{word-spacing:78.665600pt;}
.ws168{word-spacing:78.864000pt;}
.ws8d{word-spacing:78.913600pt;}
.wscc{word-spacing:79.112000pt;}
.wsa5{word-spacing:79.657600pt;}
.wsb5{word-spacing:79.806400pt;}
.wsb4{word-spacing:84.865600pt;}
.ws16b{word-spacing:85.163200pt;}
.wsbf{word-spacing:85.262400pt;}
.ws9a{word-spacing:85.659200pt;}
.wse1{word-spacing:86.105600pt;}
.wse0{word-spacing:86.502400pt;}
.ws97{word-spacing:86.700800pt;}
.ws9b{word-spacing:86.750400pt;}
.wsdb{word-spacing:87.296000pt;}
.wsc3{word-spacing:88.337600pt;}
.ws165{word-spacing:89.329600pt;}
.ws99{word-spacing:91.809600pt;}
.ws95{word-spacing:93.000000pt;}
.ws98{word-spacing:93.198400pt;}
.ws92{word-spacing:93.892800pt;}
.ws194{word-spacing:95.827200pt;}
.ws1a3{word-spacing:97.067200pt;}
.ws191{word-spacing:97.761600pt;}
.wsd1{word-spacing:98.704000pt;}
.ws1ac{word-spacing:99.150400pt;}
.ws176{word-spacing:99.547200pt;}
.ws19d{word-spacing:100.092800pt;}
.ws196{word-spacing:100.688000pt;}
.ws19c{word-spacing:102.176000pt;}
.ws1a9{word-spacing:103.019200pt;}
.ws18a{word-spacing:103.912000pt;}
.ws190{word-spacing:106.590400pt;}
.ws17d{word-spacing:106.838400pt;}
.ws17a{word-spacing:107.185600pt;}
.ws198{word-spacing:107.582400pt;}
.ws1a7{word-spacing:107.880000pt;}
.ws16d{word-spacing:108.028800pt;}
.ws172{word-spacing:108.524800pt;}
.ws16a{word-spacing:109.020800pt;}
.ws177{word-spacing:109.268800pt;}
.ws16f{word-spacing:110.459200pt;}
.ws188{word-spacing:111.104000pt;}
.wsa9{word-spacing:111.401600pt;}
.ws19a{word-spacing:111.500800pt;}
.ws17f{word-spacing:115.072000pt;}
.ws179{word-spacing:115.915200pt;}
.wsa8{word-spacing:122.065600pt;}
.ws170{word-spacing:124.446400pt;}
.ws180{word-spacing:124.595200pt;}
.ws19f{word-spacing:125.785600pt;}
.ws1ad{word-spacing:126.132800pt;}
.wsa1{word-spacing:126.777600pt;}
.ws1a6{word-spacing:127.372800pt;}
.ws7f{word-spacing:130.497600pt;}
.wsc1{word-spacing:133.027200pt;}
.wsd4{word-spacing:135.804800pt;}
.wsac{word-spacing:136.945600pt;}
.wsae{word-spacing:145.328000pt;}
.wscb{word-spacing:146.270400pt;}
.wsaa{word-spacing:146.369600pt;}
.ws14d{word-spacing:149.643200pt;}
.wsc7{word-spacing:150.139200pt;}
.wsc2{word-spacing:152.123200pt;}
.ws83{word-spacing:153.462400pt;}
.ws8b{word-spacing:153.611200pt;}
.ws18e{word-spacing:155.793600pt;}
.wsa3{word-spacing:156.984000pt;}
.wsbb{word-spacing:160.406400pt;}
.wsb9{word-spacing:161.944000pt;}
.wsb7{word-spacing:161.993600pt;}
.ws87{word-spacing:162.588800pt;}
.ws8c{word-spacing:163.432000pt;}
.wsc5{word-spacing:163.729600pt;}
.wsbe{word-spacing:164.920000pt;}
.ws7b{word-spacing:166.606400pt;}
.ws89{word-spacing:167.846400pt;}
.wsbd{word-spacing:170.078400pt;}
.ws69{word-spacing:170.475200pt;}
.ws70{word-spacing:171.120000pt;}
.ws91{word-spacing:171.467200pt;}
.wsa4{word-spacing:171.665600pt;}
.wsc9{word-spacing:178.907200pt;}
.ws52{word-spacing:179.105600pt;}
.ws4e{word-spacing:179.502400pt;}
.ws73{word-spacing:181.288000pt;}
.ws62{word-spacing:181.337600pt;}
.ws65{word-spacing:182.081600pt;}
.ws61{word-spacing:182.131200pt;}
.ws57{word-spacing:182.180800pt;}
.ws51{word-spacing:182.379200pt;}
.ws74{word-spacing:187.537600pt;}
.wsce{word-spacing:188.132800pt;}
.ws85{word-spacing:188.182400pt;}
.ws6b{word-spacing:188.380800pt;}
.ws55{word-spacing:189.968000pt;}
.ws64{word-spacing:192.745600pt;}
.wsa6{word-spacing:192.795200pt;}
.ws80{word-spacing:198.499200pt;}
.ws77{word-spacing:199.838400pt;}
.wsda{word-spacing:204.699200pt;}
.ws4f{word-spacing:222.307200pt;}
.ws94{word-spacing:224.886400pt;}
.ws54{word-spacing:233.963200pt;}
.ws93{word-spacing:254.448000pt;}
.wsd9{word-spacing:277.512000pt;}
.wsde{word-spacing:288.176000pt;}
.ws96{word-spacing:290.904000pt;}
.wsdc{word-spacing:301.617600pt;}
.ws9c{word-spacing:310.248000pt;}
.ws153{word-spacing:350.076800pt;}
.ws14f{word-spacing:363.915200pt;}
.ws150{word-spacing:402.256000pt;}
.ws151{word-spacing:436.281600pt;}
.ws133{word-spacing:485.336000pt;}
.ws152{word-spacing:507.060800pt;}
.ws14e{word-spacing:508.152000pt;}
.ws120{word-spacing:512.616000pt;}
.ws12c{word-spacing:523.974400pt;}
.ws12e{word-spacing:528.884800pt;}
.ws141{word-spacing:530.968000pt;}
.ws137{word-spacing:531.761600pt;}
.ws130{word-spacing:538.904000pt;}
.ws123{word-spacing:545.401600pt;}
.ws12a{word-spacing:549.419200pt;}
.ws142{word-spacing:567.126400pt;}
.ws125{word-spacing:569.507200pt;}
.ws135{word-spacing:576.004800pt;}
.ws13a{word-spacing:581.460800pt;}
.ws128{word-spacing:583.692800pt;}
.ws138{word-spacing:601.747200pt;}
.wseb{word-spacing:609.782400pt;}
.ws13c{word-spacing:611.270400pt;}
.wsf7{word-spacing:611.518400pt;}
.ws113{word-spacing:612.708800pt;}
.ws13f{word-spacing:625.803200pt;}
.ws19e{word-spacing:633.788800pt;}
.ws187{word-spacing:665.136000pt;}
.ws1aa{word-spacing:668.508800pt;}
.ws197{word-spacing:670.790400pt;}
.ws195{word-spacing:674.510400pt;}
.ws199{word-spacing:680.561600pt;}
.ws19b{word-spacing:694.300800pt;}
.ws189{word-spacing:696.086400pt;}
.ws18f{word-spacing:702.385600pt;}
.ws1a1{word-spacing:702.832000pt;}
.ws1ab{word-spacing:709.726400pt;}
.ws1a2{word-spacing:712.702400pt;}
.ws11e{word-spacing:718.208000pt;}
.ws17b{word-spacing:718.952000pt;}
.ws1a4{word-spacing:719.944000pt;}
.ws164{word-spacing:723.763200pt;}
.ws17e{word-spacing:727.284800pt;}
.ws1a5{word-spacing:732.988800pt;}
.ws13b{word-spacing:735.072000pt;}
.ws1a8{word-spacing:736.609600pt;}
.ws12d{word-spacing:739.833600pt;}
.ws1a0{word-spacing:739.883200pt;}
.ws131{word-spacing:740.180800pt;}
.ws178{word-spacing:740.428800pt;}
.ws124{word-spacing:740.676800pt;}
.ws192{word-spacing:741.024000pt;}
.ws181{word-spacing:742.065600pt;}
.ws129{word-spacing:749.704000pt;}
.ws160{word-spacing:750.745600pt;}
.ws13e{word-spacing:755.408000pt;}
.ws132{word-spacing:755.556800pt;}
.ws171{word-spacing:755.755200pt;}
.ws12f{word-spacing:757.739200pt;}
.ws173{word-spacing:759.574400pt;}
.ws169{word-spacing:760.715200pt;}
.ws143{word-spacing:761.558400pt;}
.ws127{word-spacing:762.500800pt;}
.ws12b{word-spacing:768.105600pt;}
.ws174{word-spacing:769.742400pt;}
.ws16c{word-spacing:770.585600pt;}
.ws162{word-spacing:771.131200pt;}
.ws136{word-spacing:774.057600pt;}
.ws175{word-spacing:774.404800pt;}
.ws134{word-spacing:776.190400pt;}
.ws121{word-spacing:777.529600pt;}
.ws167{word-spacing:780.753600pt;}
.ws16e{word-spacing:781.200000pt;}
.ws17c{word-spacing:786.953600pt;}
.ws140{word-spacing:788.937600pt;}
.ws13d{word-spacing:803.817600pt;}
.ws126{word-spacing:804.412800pt;}
.wsef{word-spacing:979.302400pt;}
.wsec{word-spacing:1013.873600pt;}
.wsee{word-spacing:1014.270400pt;}
.ws10d{word-spacing:1015.460800pt;}
.ws114{word-spacing:1039.368000pt;}
.ws11a{word-spacing:1042.691200pt;}
.wsf2{word-spacing:1048.792000pt;}
.ws10c{word-spacing:1050.032000pt;}
.ws11c{word-spacing:1052.611200pt;}
.wsf1{word-spacing:1053.752000pt;}
.ws10f{word-spacing:1058.860800pt;}
.wsf8{word-spacing:1060.944000pt;}
.wsff{word-spacing:1067.243200pt;}
.ws11b{word-spacing:1067.590400pt;}
.ws10e{word-spacing:1067.788800pt;}
.wsf3{word-spacing:1069.723200pt;}
.ws115{word-spacing:1070.864000pt;}
.wsfa{word-spacing:1073.592000pt;}
.wsfd{word-spacing:1078.006400pt;}
.wsf0{word-spacing:1078.552000pt;}
.ws110{word-spacing:1085.446400pt;}
.wsfc{word-spacing:1088.323200pt;}
.ws116{word-spacing:1090.257600pt;}
.wsfe{word-spacing:1092.489600pt;}
.wsed{word-spacing:1094.324800pt;}
.ws59{word-spacing:1095.648000pt;}
.ws1f{word-spacing:1095.744000pt;}
.wsf5{word-spacing:1095.984000pt;}
.ws9d{word-spacing:1096.224000pt;}
.ws146{word-spacing:1096.320000pt;}
.ws118{word-spacing:1096.368000pt;}
.wsd6{word-spacing:1098.144000pt;}
.ws1af{word-spacing:1098.192000pt;}
.ws117{word-spacing:1107.915200pt;}
.wsf9{word-spacing:1111.982400pt;}
.wsfb{word-spacing:1131.276800pt;}
.wse3{word-spacing:1268.640000pt;}
.ws101{word-spacing:1268.784000pt;}
.ws1b4{word-spacing:1268.832000pt;}
.ws1c2{word-spacing:1269.024000pt;}
.ws8e{word-spacing:1269.504000pt;}
.ws3f{word-spacing:1269.696000pt;}
.ws157{word-spacing:1269.792000pt;}
.ws139{word-spacing:1269.840000pt;}
.wsb1{word-spacing:1271.184000pt;}
.ws1dd{word-spacing:1271.808000pt;}
.ws18b{word-spacing:1273.680000pt;}
._3b{margin-left:-1097.685867pt;}
._7{margin-left:-1096.701333pt;}
._e{margin-left:-1095.465867pt;}
._52{margin-left:-28.786933pt;}
._aa{margin-left:-27.765867pt;}
._57{margin-left:-26.744000pt;}
._61{margin-left:-24.412000pt;}
._4a{margin-left:-23.129867pt;}
._4f{margin-left:-17.696267pt;}
._4d{margin-left:-16.779200pt;}
._50{margin-left:-15.584267pt;}
._4c{margin-left:-13.146667pt;}
._ab{margin-left:-7.253333pt;}
._8{margin-left:-5.988000pt;}
._5{margin-left:-5.077333pt;}
._a9{margin-left:-4.142667pt;}
._6{margin-left:-3.231467pt;}
._0{margin-left:-2.133333pt;}
._3{margin-left:-1.224000pt;}
._9{width:0.902667pt;}
._1{width:1.840533pt;}
._2{width:2.788000pt;}
._4{width:3.685600pt;}
._d{width:4.582133pt;}
._51{width:5.946933pt;}
._4e{width:7.066667pt;}
._54{width:8.133600pt;}
._a{width:9.493333pt;}
._b{width:10.506667pt;}
._c{width:12.960000pt;}
._4b{width:14.484000pt;}
._53{width:16.293333pt;}
._58{width:17.535467pt;}
._62{width:18.813600pt;}
._47{width:20.816000pt;}
._77{width:21.971733pt;}
._1b{width:25.595733pt;}
._1e{width:28.229867pt;}
._32{width:35.761600pt;}
._11{width:41.019200pt;}
._3a{width:48.112533pt;}
._75{width:54.643733pt;}
._19{width:55.833600pt;}
._31{width:71.225600pt;}
._17{width:77.177600pt;}
._15{width:83.725333pt;}
._10{width:84.617600pt;}
._35{width:86.063467pt;}
._9c{width:87.768533pt;}
._97{width:91.166400pt;}
._a8{width:92.900800pt;}
._45{width:97.414400pt;}
._7b{width:99.795200pt;}
._25{width:101.878400pt;}
._94{width:103.912000pt;}
._96{width:105.102400pt;}
._79{width:106.491200pt;}
._a2{width:112.038933pt;}
._1a{width:114.824000pt;}
._23{width:115.964800pt;}
._7e{width:117.147733pt;}
._7c{width:118.097600pt;}
._7d{width:119.684800pt;}
._80{width:121.123200pt;}
._38{width:122.065600pt;}
._81{width:123.355200pt;}
._68{width:124.744533pt;}
._95{width:126.628800pt;}
._7a{width:127.670400pt;}
._3d{width:129.208000pt;}
._21{width:130.299733pt;}
._30{width:132.779200pt;}
._24{width:133.920000pt;}
._6a{width:135.556800pt;}
._83{width:136.934400pt;}
._a5{width:137.955200pt;}
._2c{width:140.858667pt;}
._39{width:142.947733pt;}
._99{width:144.467200pt;}
._84{width:145.542400pt;}
._9e{width:146.461333pt;}
._34{width:148.387200pt;}
._37{width:149.826133pt;}
._8b{width:151.974400pt;}
._33{width:153.908800pt;}
._20{width:155.446400pt;}
._36{width:157.117333pt;}
._f{width:159.265600pt;}
._16{width:160.257600pt;}
._89{width:162.035733pt;}
._85{width:164.408000pt;}
._18{width:165.621867pt;}
._1d{width:167.400000pt;}
._a1{width:170.094400pt;}
._1c{width:171.070400pt;}
._8d{width:172.524267pt;}
._14{width:173.600000pt;}
._69{width:175.435200pt;}
._3c{width:176.774400pt;}
._13{width:178.114133pt;}
._22{width:179.006400pt;}
._12{width:180.329600pt;}
._9f{width:182.577600pt;}
._86{width:185.355200pt;}
._90{width:186.496000pt;}
._1f{width:189.819200pt;}
._87{width:191.349333pt;}
._88{width:194.970133pt;}
._91{width:197.011200pt;}
._3e{width:202.666133pt;}
._44{width:204.600000pt;}
._3f{width:206.337067pt;}
._41{width:208.964800pt;}
._46{width:212.741333pt;}
._6b{width:216.603200pt;}
._2e{width:219.579200pt;}
._2b{width:221.961067pt;}
._28{width:230.689600pt;}
._27{width:234.806400pt;}
._66{width:238.037867pt;}
._2d{width:242.246400pt;}
._2f{width:245.107200pt;}
._71{width:257.473600pt;}
._73{width:269.187200pt;}
._8e{width:275.676800pt;}
._9d{width:277.561600pt;}
._8f{width:279.000000pt;}
._6f{width:279.992000pt;}
._43{width:283.216533pt;}
._29{width:298.129600pt;}
._26{width:300.609600pt;}
._2a{width:304.131200pt;}
._6d{width:308.809600pt;}
._40{width:313.372800pt;}
._6e{width:317.241600pt;}
._6c{width:321.160000pt;}
._8c{width:327.657600pt;}
._64{width:329.542933pt;}
._67{width:331.526400pt;}
._8a{width:341.000000pt;}
._42{width:343.083200pt;}
._9a{width:351.515200pt;}
._82{width:354.739200pt;}
._a0{width:358.558400pt;}
._a6{width:376.017600pt;}
._9b{width:386.830400pt;}
._a3{width:390.748800pt;}
._76{width:396.800533pt;}
._a4{width:399.627200pt;}
._65{width:415.697600pt;}
._92{width:425.270400pt;}
._a7{width:429.940800pt;}
._70{width:438.513600pt;}
._7f{width:439.753600pt;}
._74{width:441.192000pt;}
._93{width:482.169600pt;}
._72{width:517.435200pt;}
._98{width:528.637333pt;}
._78{width:536.226133pt;}
._63{width:562.265600pt;}
._60{width:646.784000pt;}
._56{width:660.969600pt;}
._5e{width:681.851200pt;}
._55{width:745.587200pt;}
._5f{width:758.036800pt;}
._59{width:898.206400pt;}
._5c{width:899.595200pt;}
._5d{width:913.235200pt;}
._48{width:941.953600pt;}
._5b{width:949.492800pt;}
._5a{width:963.281600pt;}
._49{width:1010.104000pt;}
.fs4{font-size:19.733333pt;}
.fs8{font-size:31.093333pt;}
.fs9{font-size:36.800000pt;}
.fs2{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:49.600000pt;}
.fs7{font-size:52.266667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y122{bottom:80.441467pt;}
.y15f{bottom:80.498667pt;}
.y84{bottom:81.032267pt;}
.y26{bottom:81.171600pt;}
.y11a{bottom:81.183600pt;}
.y9c{bottom:81.868800pt;}
.y1cb{bottom:83.528933pt;}
.y1ae{bottom:83.551600pt;}
.y137{bottom:85.532800pt;}
.y54{bottom:85.750133pt;}
.y180{bottom:87.104800pt;}
.yc4{bottom:87.841467pt;}
.y15e{bottom:95.837467pt;}
.y121{bottom:97.305467pt;}
.y25{bottom:97.571600pt;}
.y119{bottom:97.582267pt;}
.y1ca{bottom:98.862933pt;}
.y1ad{bottom:98.885600pt;}
.y53{bottom:100.419333pt;}
.y83{bottom:100.482267pt;}
.y9b{bottom:101.297600pt;}
.yc3{bottom:102.510667pt;}
.y136{bottom:102.768800pt;}
.y17f{bottom:103.968800pt;}
.y15d{bottom:111.170800pt;}
.y24{bottom:113.971600pt;}
.y118{bottom:113.980933pt;}
.y120{bottom:114.169467pt;}
.y1c9{bottom:114.196933pt;}
.y1ac{bottom:114.219600pt;}
.y52{bottom:115.088533pt;}
.y82{bottom:115.151467pt;}
.yc2{bottom:117.179867pt;}
.y9a{bottom:118.161600pt;}
.y135{bottom:120.004800pt;}
.y17e{bottom:120.820400pt;}
.y1c8{bottom:129.530933pt;}
.y1ab{bottom:129.553600pt;}
.y23{bottom:130.371600pt;}
.y156{bottom:130.371733pt;}
.y117{bottom:130.379600pt;}
.y11f{bottom:131.033467pt;}
.y51{bottom:131.940133pt;}
.y81{bottom:132.003067pt;}
.yc1{bottom:134.031467pt;}
.y99{bottom:135.025600pt;}
.y17d{bottom:135.489600pt;}
.y134{bottom:137.240800pt;}
.y1c7{bottom:144.864933pt;}
.y1aa{bottom:144.887600pt;}
.y50{bottom:146.609333pt;}
.y80{bottom:146.672267pt;}
.y22{bottom:146.771600pt;}
.y155{bottom:146.771733pt;}
.y116{bottom:146.778267pt;}
.y11e{bottom:147.897467pt;}
.yc0{bottom:148.700667pt;}
.y17c{bottom:150.158800pt;}
.y98{bottom:151.889600pt;}
.y133{bottom:154.476800pt;}
.y1c6{bottom:160.198933pt;}
.y1a9{bottom:160.221600pt;}
.y7f{bottom:161.341467pt;}
.y21{bottom:163.171600pt;}
.y154{bottom:163.171733pt;}
.y115{bottom:163.176933pt;}
.ybf{bottom:163.369867pt;}
.y4e{bottom:163.460933pt;}
.y11d{bottom:164.761467pt;}
.y97{bottom:166.558800pt;}
.y132{bottom:171.712800pt;}
.y1c5{bottom:175.532933pt;}
.y1a8{bottom:175.555600pt;}
.y4d{bottom:178.130133pt;}
.y7e{bottom:178.193067pt;}
.y20{bottom:179.571600pt;}
.y153{bottom:179.571733pt;}
.y114{bottom:179.575600pt;}
.ybe{bottom:180.221467pt;}
.y11c{bottom:181.625467pt;}
.y131{bottom:188.948800pt;}
.y1c4{bottom:190.866933pt;}
.y1a7{bottom:190.889600pt;}
.y4f{bottom:192.799333pt;}
.y4c{bottom:192.804000pt;}
.y7d{bottom:192.862267pt;}
.ybd{bottom:194.890667pt;}
.y1f{bottom:195.971600pt;}
.y152{bottom:195.971733pt;}
.y113{bottom:195.974267pt;}
.y130{bottom:206.184800pt;}
.y1c3{bottom:206.200933pt;}
.y1a6{bottom:206.223600pt;}
.ybc{bottom:209.559867pt;}
.y4b{bottom:209.655600pt;}
.y7c{bottom:209.726267pt;}
.y1e{bottom:212.371600pt;}
.y151{bottom:212.371733pt;}
.y112{bottom:212.372933pt;}
.y1c2{bottom:221.534933pt;}
.y1a5{bottom:221.557600pt;}
.y12f{bottom:223.420800pt;}
.y4a{bottom:224.324800pt;}
.ybb{bottom:226.411467pt;}
.y7b{bottom:226.590267pt;}
.y104{bottom:227.304933pt;}
.y1d{bottom:228.771600pt;}
.y150{bottom:228.771733pt;}
.y1c1{bottom:236.868933pt;}
.y1a4{bottom:236.891600pt;}
.y12e{bottom:240.656800pt;}
.yba{bottom:241.080667pt;}
.y49{bottom:241.176400pt;}
.y7a{bottom:243.441867pt;}
.y1c{bottom:245.171600pt;}
.y14f{bottom:245.171733pt;}
.y1c0{bottom:252.202933pt;}
.y1a3{bottom:252.225600pt;}
.yb9{bottom:255.749867pt;}
.y48{bottom:255.845600pt;}
.y12d{bottom:257.892800pt;}
.y79{bottom:258.111067pt;}
.y17b{bottom:259.037600pt;}
.y1b{bottom:261.571600pt;}
.y14e{bottom:261.571733pt;}
.y1bf{bottom:267.536933pt;}
.y1a2{bottom:267.559600pt;}
.ye6{bottom:270.186667pt;}
.yb8{bottom:272.601467pt;}
.y47{bottom:272.697200pt;}
.y17a{bottom:274.371600pt;}
.y78{bottom:274.962667pt;}
.y12c{bottom:275.128800pt;}
.y1a{bottom:277.971600pt;}
.y14d{bottom:277.971733pt;}
.y111{bottom:278.252667pt;}
.y96{bottom:278.268800pt;}
.y1be{bottom:282.870933pt;}
.y1a1{bottom:282.893600pt;}
.yb7{bottom:287.270667pt;}
.y46{bottom:287.366400pt;}
.y77{bottom:289.631867pt;}
.ye5{bottom:289.656667pt;}
.y12b{bottom:292.364800pt;}
.y19{bottom:294.371600pt;}
.y14c{bottom:294.371733pt;}
.y94{bottom:297.684667pt;}
.y1bd{bottom:298.204933pt;}
.y1a0{bottom:298.227600pt;}
.yb6{bottom:301.939867pt;}
.y45{bottom:302.035600pt;}
.y76{bottom:304.301067pt;}
.ye4{bottom:304.325867pt;}
.y12a{bottom:309.600800pt;}
.y18{bottom:310.771600pt;}
.y14b{bottom:310.771733pt;}
.y93{bottom:312.353867pt;}
.y179{bottom:312.826533pt;}
.y1bc{bottom:313.538933pt;}
.y19f{bottom:313.561600pt;}
.yb5{bottom:318.791467pt;}
.y44{bottom:318.887200pt;}
.ye3{bottom:318.995067pt;}
.y75{bottom:321.152667pt;}
.y129{bottom:326.836800pt;}
.y92{bottom:327.023067pt;}
.y17{bottom:327.171600pt;}
.y14a{bottom:327.171733pt;}
.y1bb{bottom:328.872933pt;}
.y19e{bottom:328.895600pt;}
.y1fb{bottom:329.488933pt;}
.y178{bottom:332.151467pt;}
.yb4{bottom:333.460667pt;}
.y43{bottom:333.556400pt;}
.y74{bottom:335.821867pt;}
.ye2{bottom:335.846667pt;}
.y91{bottom:341.692267pt;}
.y16{bottom:343.571600pt;}
.y149{bottom:343.571733pt;}
.y128{bottom:344.072800pt;}
.y1ba{bottom:344.206933pt;}
.y19d{bottom:344.229600pt;}
.y1fa{bottom:344.822933pt;}
.yb3{bottom:348.129867pt;}
.y42{bottom:348.225600pt;}
.y177{bottom:349.015467pt;}
.y73{bottom:350.491067pt;}
.ye1{bottom:350.515867pt;}
.y90{bottom:356.361467pt;}
.y1b9{bottom:359.540933pt;}
.y19c{bottom:359.563600pt;}
.y15{bottom:359.971600pt;}
.y148{bottom:359.971733pt;}
.y1f9{bottom:360.156933pt;}
.y127{bottom:361.308800pt;}
.yb2{bottom:364.981467pt;}
.y41{bottom:365.089600pt;}
.y176{bottom:365.879467pt;}
.y72{bottom:367.342667pt;}
.ye0{bottom:367.367467pt;}
.y95{bottom:371.018267pt;}
.y8f{bottom:371.030667pt;}
.y1b8{bottom:374.874933pt;}
.y19b{bottom:374.897600pt;}
.y1f8{bottom:375.490933pt;}
.y14{bottom:376.371600pt;}
.y147{bottom:376.371733pt;}
.y126{bottom:378.544800pt;}
.yb1{bottom:379.650667pt;}
.y40{bottom:379.758800pt;}
.y71{bottom:382.011867pt;}
.ydf{bottom:382.036667pt;}
.y175{bottom:382.743467pt;}
.y8d{bottom:387.894667pt;}
.y1b7{bottom:390.208933pt;}
.y19a{bottom:390.231600pt;}
.y11b{bottom:390.236000pt;}
.y1f7{bottom:390.824933pt;}
.y18e{bottom:392.737067pt;}
.y13{bottom:392.771600pt;}
.y146{bottom:392.771733pt;}
.yf8{bottom:393.468800pt;}
.y125{bottom:395.780800pt;}
.yb0{bottom:396.502267pt;}
.y70{bottom:398.863467pt;}
.yde{bottom:398.888267pt;}
.y174{bottom:399.607467pt;}
.y8c{bottom:402.563867pt;}
.y1b6{bottom:405.542933pt;}
.y199{bottom:405.565600pt;}
.y1f6{bottom:406.158933pt;}
.y12{bottom:409.171600pt;}
.y145{bottom:409.171733pt;}
.yaf{bottom:411.171467pt;}
.y18d{bottom:412.069467pt;}
.yf7{bottom:412.897600pt;}
.y6f{bottom:413.532667pt;}
.ydd{bottom:413.557467pt;}
.y173{bottom:416.471467pt;}
.y8b{bottom:417.233067pt;}
.y1b5{bottom:420.876933pt;}
.y198{bottom:420.899600pt;}
.y1f5{bottom:421.492933pt;}
.y3f{bottom:425.571600pt;}
.y144{bottom:425.571733pt;}
.yae{bottom:425.840667pt;}
.y6e{bottom:428.201867pt;}
.y18c{bottom:428.933467pt;}
.yf6{bottom:429.761600pt;}
.ydc{bottom:430.409067pt;}
.y8e{bottom:431.889867pt;}
.y8a{bottom:431.902267pt;}
.y172{bottom:433.335467pt;}
.y1b4{bottom:436.210933pt;}
.y197{bottom:436.233600pt;}
.y1f4{bottom:436.826933pt;}
.y11{bottom:441.971600pt;}
.y143{bottom:441.971733pt;}
.yad{bottom:442.692267pt;}
.y6d{bottom:445.053467pt;}
.ydb{bottom:445.078267pt;}
.y18b{bottom:445.797467pt;}
.yf5{bottom:446.625600pt;}
.y89{bottom:448.753867pt;}
.y171{bottom:450.199467pt;}
.y1b3{bottom:451.544933pt;}
.y196{bottom:451.567600pt;}
.y1f3{bottom:452.160933pt;}
.yac{bottom:457.361467pt;}
.y3e{bottom:458.371600pt;}
.y142{bottom:458.371733pt;}
.y6c{bottom:459.722667pt;}
.yda{bottom:461.929867pt;}
.y18a{bottom:462.661467pt;}
.y88{bottom:463.423067pt;}
.yf4{bottom:463.489600pt;}
.y1b2{bottom:466.878933pt;}
.y195{bottom:466.901600pt;}
.y170{bottom:467.063467pt;}
.ya9{bottom:474.225467pt;}
.y6b{bottom:474.391867pt;}
.y3d{bottom:474.771600pt;}
.y141{bottom:474.771733pt;}
.yd9{bottom:476.599067pt;}
.y87{bottom:478.092267pt;}
.yf3{bottom:478.158800pt;}
.y189{bottom:479.525467pt;}
.y1b1{bottom:482.212933pt;}
.y194{bottom:482.235600pt;}
.y1f2{bottom:482.828933pt;}
.y10{bottom:483.372400pt;}
.y16f{bottom:483.927467pt;}
.y110{bottom:486.922000pt;}
.y190{bottom:488.637733pt;}
.ya8{bottom:488.894667pt;}
.y3c{bottom:491.171600pt;}
.y140{bottom:491.171733pt;}
.y69{bottom:491.255867pt;}
.yd8{bottom:493.450667pt;}
.y86{bottom:494.956267pt;}
.y188{bottom:496.389467pt;}
.y1b0{bottom:497.546933pt;}
.y193{bottom:497.569600pt;}
.yf{bottom:498.706400pt;}
.y16e{bottom:500.791467pt;}
.yab{bottom:503.551467pt;}
.ya7{bottom:503.563867pt;}
.y18f{bottom:503.971733pt;}
.y68{bottom:505.925067pt;}
.y10f{bottom:506.318800pt;}
.y15c{bottom:507.335467pt;}
.y3b{bottom:507.571600pt;}
.y13f{bottom:507.571733pt;}
.yd7{bottom:508.119867pt;}
.y85{bottom:509.625467pt;}
.y1af{bottom:512.880933pt;}
.y192{bottom:512.903600pt;}
.y187{bottom:513.253467pt;}
.y16d{bottom:517.655467pt;}
.yaa{bottom:518.220667pt;}
.ya6{bottom:518.233067pt;}
.y124{bottom:520.376133pt;}
.y67{bottom:520.594267pt;}
.yd6{bottom:522.789067pt;}
.y10e{bottom:523.182800pt;}
.y3a{bottom:523.971600pt;}
.y13e{bottom:523.971733pt;}
.y15b{bottom:526.776667pt;}
.y1f1{bottom:528.830933pt;}
.y1de{bottom:528.842267pt;}
.ye{bottom:529.374400pt;}
.y186{bottom:530.117467pt;}
.y16c{bottom:534.519467pt;}
.ya5{bottom:535.084667pt;}
.y6a{bottom:535.251067pt;}
.y66{bottom:535.263467pt;}
.yd5{bottom:539.640667pt;}
.y10d{bottom:540.046800pt;}
.y39{bottom:540.371600pt;}
.y13d{bottom:540.371733pt;}
.y191{bottom:543.571600pt;}
.y15a{bottom:543.640667pt;}
.y1f0{bottom:544.164933pt;}
.y1dd{bottom:544.176267pt;}
.yd{bottom:544.708400pt;}
.y185{bottom:546.981467pt;}
.ya4{bottom:549.753867pt;}
.y16b{bottom:551.383467pt;}
.y65{bottom:552.127467pt;}
.yd4{bottom:554.309867pt;}
.y38{bottom:556.771600pt;}
.y13c{bottom:556.771733pt;}
.y10c{bottom:556.910800pt;}
.y1ef{bottom:559.498933pt;}
.y1dc{bottom:559.510267pt;}
.yc{bottom:560.042400pt;}
.y184{bottom:563.845467pt;}
.ya2{bottom:566.617867pt;}
.y64{bottom:566.796667pt;}
.y16a{bottom:568.247467pt;}
.yd2{bottom:571.173867pt;}
.y37{bottom:573.171600pt;}
.y13b{bottom:573.171733pt;}
.y10b{bottom:573.774800pt;}
.y1ee{bottom:574.832933pt;}
.y1db{bottom:574.844267pt;}
.yb{bottom:575.376400pt;}
.y183{bottom:580.709467pt;}
.ya1{bottom:581.287067pt;}
.yf2{bottom:583.251467pt;}
.y63{bottom:583.648267pt;}
.y169{bottom:585.111467pt;}
.yd1{bottom:585.843067pt;}
.y159{bottom:589.453467pt;}
.y36{bottom:589.571600pt;}
.y13a{bottom:589.571733pt;}
.y1ed{bottom:590.166933pt;}
.y1da{bottom:590.178267pt;}
.y10a{bottom:590.638800pt;}
.ya{bottom:590.710400pt;}
.ya0{bottom:595.956267pt;}
.y182{bottom:597.573467pt;}
.y62{bottom:598.317467pt;}
.yd0{bottom:600.512267pt;}
.y168{bottom:601.975467pt;}
.yf1{bottom:602.657467pt;}
.y1ec{bottom:605.500933pt;}
.y1d9{bottom:605.512267pt;}
.y35{bottom:605.971600pt;}
.y139{bottom:605.971733pt;}
.y9{bottom:606.044400pt;}
.y109{bottom:607.502800pt;}
.y158{bottom:608.894800pt;}
.ya3{bottom:610.613067pt;}
.y9f{bottom:610.625467pt;}
.y103{bottom:611.904667pt;}
.y27{bottom:611.948267pt;}
.y61{bottom:612.986667pt;}
.y181{bottom:614.437467pt;}
.yd3{bottom:615.169067pt;}
.ycf{bottom:615.181467pt;}
.yf0{bottom:617.326667pt;}
.y167{bottom:618.839467pt;}
.y1eb{bottom:620.834933pt;}
.y1d8{bottom:620.846267pt;}
.y8{bottom:621.378400pt;}
.y34{bottom:622.371600pt;}
.y108{bottom:624.366800pt;}
.y157{bottom:625.758800pt;}
.y9e{bottom:627.489467pt;}
.y60{bottom:629.838267pt;}
.y102{bottom:631.301467pt;}
.yef{bottom:631.995867pt;}
.yce{bottom:632.033067pt;}
.y166{bottom:635.703467pt;}
.y1ea{bottom:636.168933pt;}
.y1d7{bottom:636.180267pt;}
.y7{bottom:636.712400pt;}
.y33{bottom:638.771600pt;}
.y107{bottom:641.230800pt;}
.y9d{bottom:642.158667pt;}
.y5f{bottom:644.507467pt;}
.ycd{bottom:646.702267pt;}
.y101{bottom:648.165467pt;}
.yed{bottom:648.859867pt;}
.y1e9{bottom:651.502933pt;}
.y1d6{bottom:651.514267pt;}
.y6{bottom:652.046400pt;}
.y165{bottom:652.567467pt;}
.y32{bottom:655.171600pt;}
.y106{bottom:658.094800pt;}
.y5e{bottom:659.176667pt;}
.ycc{bottom:661.371467pt;}
.y138{bottom:662.481867pt;}
.yec{bottom:663.529067pt;}
.y100{bottom:665.029467pt;}
.y1e8{bottom:666.836933pt;}
.y1d5{bottom:666.848267pt;}
.y5{bottom:667.380400pt;}
.y164{bottom:669.431467pt;}
.y31{bottom:671.571600pt;}
.y105{bottom:674.958800pt;}
.y5d{bottom:676.028267pt;}
.yeb{bottom:678.198267pt;}
.ycb{bottom:678.223067pt;}
.yff{bottom:681.893467pt;}
.y1e7{bottom:682.170933pt;}
.y1d4{bottom:682.182267pt;}
.y4{bottom:682.714400pt;}
.y163{bottom:686.295467pt;}
.y30{bottom:687.971600pt;}
.y5c{bottom:690.697467pt;}
.yee{bottom:692.855067pt;}
.yea{bottom:692.867467pt;}
.yca{bottom:692.892267pt;}
.y1e6{bottom:697.504933pt;}
.y1d3{bottom:697.516267pt;}
.yfe{bottom:698.757467pt;}
.y162{bottom:703.159467pt;}
.y2f{bottom:704.371600pt;}
.y5b{bottom:707.549067pt;}
.yc9{bottom:707.561467pt;}
.ye8{bottom:709.731467pt;}
.y1e5{bottom:712.838933pt;}
.y1d2{bottom:712.850267pt;}
.yfd{bottom:715.621467pt;}
.y161{bottom:720.023467pt;}
.y2e{bottom:720.771600pt;}
.y5a{bottom:722.218267pt;}
.ye7{bottom:724.400667pt;}
.yc8{bottom:724.413067pt;}
.y1e4{bottom:728.172933pt;}
.y1d1{bottom:728.184267pt;}
.y3{bottom:728.714400pt;}
.y123{bottom:729.918133pt;}
.yfc{bottom:732.485467pt;}
.y160{bottom:736.887467pt;}
.y2d{bottom:737.171600pt;}
.y59{bottom:739.069867pt;}
.yc7{bottom:739.082267pt;}
.y1e3{bottom:743.506933pt;}
.y1d0{bottom:743.518267pt;}
.yfb{bottom:749.349467pt;}
.y2c{bottom:753.571600pt;}
.y58{bottom:753.739067pt;}
.yc6{bottom:753.751467pt;}
.y1e2{bottom:758.840933pt;}
.y1cf{bottom:758.852267pt;}
.yfa{bottom:766.213467pt;}
.ye9{bottom:768.395867pt;}
.y57{bottom:768.408267pt;}
.y2b{bottom:769.971600pt;}
.yc5{bottom:770.603067pt;}
.y2{bottom:774.058400pt;}
.y1e1{bottom:774.174933pt;}
.y1ce{bottom:774.186267pt;}
.yf9{bottom:783.077467pt;}
.y56{bottom:785.272267pt;}
.y2a{bottom:786.371600pt;}
.y1e0{bottom:789.508933pt;}
.y1cd{bottom:789.520267pt;}
.y1{bottom:796.714400pt;}
.y55{bottom:799.941467pt;}
.y29{bottom:802.771600pt;}
.y1df{bottom:804.842933pt;}
.y1cc{bottom:804.854267pt;}
.y28{bottom:849.726533pt;}
.h8{height:13.596267pt;}
.hb{height:39.382400pt;}
.h10{height:40.482667pt;}
.he{height:40.618667pt;}
.h5{height:40.800000pt;}
.h4{height:42.840000pt;}
.hd{height:44.292800pt;}
.hc{height:44.441600pt;}
.h9{height:45.216000pt;}
.hf{height:47.040000pt;}
.h7{height:48.000000pt;}
.ha{height:50.240000pt;}
.h6{height:50.400000pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x4{left:64.252000pt;}
.x1{left:71.811067pt;}
.x4e{left:75.585333pt;}
.x5{left:83.132000pt;}
.x10{left:86.694933pt;}
.x2{left:90.704400pt;}
.x1c{left:94.241600pt;}
.x2e{left:102.412533pt;}
.x7{left:106.534933pt;}
.x6{left:109.597733pt;}
.x21{left:111.398400pt;}
.x13{left:114.094000pt;}
.x28{left:119.524533pt;}
.xb{left:164.207333pt;}
.x30{left:166.899200pt;}
.x17{left:171.766400pt;}
.x2c{left:174.456533pt;}
.x3b{left:258.361600pt;}
.x3c{left:264.003600pt;}
.xc{left:267.462133pt;}
.x34{left:268.814800pt;}
.x31{left:270.067200pt;}
.xf{left:271.578933pt;}
.x11{left:273.848133pt;}
.x12{left:275.411333pt;}
.x26{left:276.699333pt;}
.x2f{left:277.810533pt;}
.x35{left:279.330000pt;}
.x18{left:282.238000pt;}
.x19{left:284.172400pt;}
.x1d{left:285.734800pt;}
.x36{left:289.151733pt;}
.x20{left:290.347600pt;}
.x1e{left:292.096000pt;}
.x1f{left:293.224400pt;}
.x3e{left:312.400800pt;}
.x3d{left:314.608000pt;}
.x48{left:318.062667pt;}
.x46{left:320.269867pt;}
.x24{left:321.690000pt;}
.x4f{left:325.451333pt;}
.x47{left:328.205867pt;}
.x39{left:330.468533pt;}
.x50{left:332.999067pt;}
.x8{left:343.970133pt;}
.x29{left:345.675733pt;}
.x14{left:351.529200pt;}
.x3f{left:357.995600pt;}
.x22{left:362.672000pt;}
.x27{left:363.896133pt;}
.x49{left:369.398667pt;}
.x37{left:374.153733pt;}
.x32{left:377.389200pt;}
.xd{left:385.113333pt;}
.x1a{left:392.660000pt;}
.x41{left:405.760400pt;}
.x2a{left:407.241733pt;}
.x9{left:408.301333pt;}
.x42{left:410.968400pt;}
.x40{left:412.270400pt;}
.x15{left:415.860400pt;}
.x4a{left:417.932267pt;}
.x25{left:441.684800pt;}
.x3a{left:455.857333pt;}
.x33{left:459.923600pt;}
.x43{left:462.006800pt;}
.x23{left:463.074800pt;}
.x4c{left:465.461467pt;}
.x2d{left:467.480933pt;}
.xe{left:469.507733pt;}
.x38{left:473.936533pt;}
.x4b{left:475.604667pt;}
.x1b{left:477.054400pt;}
.xa{left:478.634133pt;}
.x2b{left:480.104133pt;}
.x16{left:486.193200pt;}
.x45{left:505.394400pt;}
.x44{left:511.135600pt;}
.x4d{left:516.797467pt;}
.x3{left:569.548400pt;}
}




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