
    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_cb34d3c0128d8e0fff954361.woff')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_decb2d54207516727e4f9bf4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_6d2ef1bcabe05bf945f5cd61.woff')format("woff");}.ff3{font-family:ff3;line-height:1.261230;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_477bf2f5a3c8154eb664914a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.133301;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_a10fdf0a3b857ce38639e19c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;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_a79b95d940363b4709850479.woff')format("woff");}.ff6{font-family:ff6;line-height:1.025391;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);}
.v3{vertical-align:-16.974000px;}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.902000px;}
.ls16{letter-spacing:-7.371000px;}
.ls7f{letter-spacing:-6.642000px;}
.ls59{letter-spacing:-6.072000px;}
.ls3b{letter-spacing:-4.968000px;}
.ls94{letter-spacing:-4.899000px;}
.ls85{letter-spacing:-4.830000px;}
.ls24{letter-spacing:-4.623000px;}
.ls90{letter-spacing:-4.140000px;}
.ls81{letter-spacing:-3.969000px;}
.ls31{letter-spacing:-3.933000px;}
.ls28{letter-spacing:-3.864000px;}
.lsa5{letter-spacing:-3.795000px;}
.ls9a{letter-spacing:-3.726000px;}
.lsba{letter-spacing:-3.540000px;}
.ls4d{letter-spacing:-3.450000px;}
.ls2e{letter-spacing:-3.381000px;}
.ls13{letter-spacing:-3.375000px;}
.lsa6{letter-spacing:-3.312000px;}
.lsed{letter-spacing:-3.300000px;}
.ls8f{letter-spacing:-3.243000px;}
.ls46{letter-spacing:-3.174000px;}
.ls86{letter-spacing:-3.105000px;}
.lsc4{letter-spacing:-3.000000px;}
.ls53{letter-spacing:-2.850000px;}
.ls56{letter-spacing:-2.760000px;}
.ls58{letter-spacing:-2.691000px;}
.ls98{letter-spacing:-2.622000px;}
.lsc7{letter-spacing:-2.580000px;}
.lsd4{letter-spacing:-2.520000px;}
.ls45{letter-spacing:-2.484000px;}
.ls57{letter-spacing:-2.415000px;}
.ls2d{letter-spacing:-2.346000px;}
.lsec{letter-spacing:-2.340000px;}
.lsca{letter-spacing:-2.280000px;}
.ls3c{letter-spacing:-2.277000px;}
.lsea{letter-spacing:-2.160000px;}
.ls5a{letter-spacing:-2.139000px;}
.ls84{letter-spacing:-2.070000px;}
.lsd1{letter-spacing:-1.950000px;}
.ls3f{letter-spacing:-1.932000px;}
.ls47{letter-spacing:-1.863000px;}
.lsbe{letter-spacing:-1.800000px;}
.ls30{letter-spacing:-1.794000px;}
.ls88{letter-spacing:-1.782000px;}
.ls1c{letter-spacing:-1.725000px;}
.lseb{letter-spacing:-1.680000px;}
.ls23{letter-spacing:-1.656000px;}
.lsb9{letter-spacing:-1.620000px;}
.ls41{letter-spacing:-1.587000px;}
.ls40{letter-spacing:-1.518000px;}
.ls78{letter-spacing:-1.512000px;}
.lsbd{letter-spacing:-1.500000px;}
.ls3e{letter-spacing:-1.449000px;}
.ls32{letter-spacing:-1.380000px;}
.ls7{letter-spacing:-1.320000px;}
.ls55{letter-spacing:-1.311000px;}
.lsd5{letter-spacing:-1.260000px;}
.ls6f{letter-spacing:-1.242000px;}
.lse7{letter-spacing:-1.197000px;}
.ls25{letter-spacing:-1.173000px;}
.lsf{letter-spacing:-1.140000px;}
.ls8c{letter-spacing:-1.134000px;}
.ls43{letter-spacing:-1.104000px;}
.lsc6{letter-spacing:-1.080000px;}
.ls2f{letter-spacing:-1.035000px;}
.ls8{letter-spacing:-1.020000px;}
.ls2c{letter-spacing:-0.966000px;}
.lsc3{letter-spacing:-0.960000px;}
.ls9c{letter-spacing:-0.925221px;}
.ls1a{letter-spacing:-0.897000px;}
.lsbf{letter-spacing:-0.840000px;}
.ls1e{letter-spacing:-0.828000px;}
.lsc1{letter-spacing:-0.780000px;}
.ls26{letter-spacing:-0.759000px;}
.ls8b{letter-spacing:-0.756000px;}
.ls80{letter-spacing:-0.729000px;}
.lsd2{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.690000px;}
.lsa{letter-spacing:-0.660000px;}
.ls75{letter-spacing:-0.648000px;}
.lsda{letter-spacing:-0.630000px;}
.ls27{letter-spacing:-0.621000px;}
.lsd3{letter-spacing:-0.600000px;}
.ls9d{letter-spacing:-0.598158px;}
.ls5f{letter-spacing:-0.567000px;}
.lsa4{letter-spacing:-0.552000px;}
.ls76{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.504000px;}
.ls42{letter-spacing:-0.483000px;}
.ls10{letter-spacing:-0.480000px;}
.lsd8{letter-spacing:-0.441000px;}
.lsbb{letter-spacing:-0.420000px;}
.ls54{letter-spacing:-0.414000px;}
.ls66{letter-spacing:-0.378000px;}
.lsc2{letter-spacing:-0.360000px;}
.ls39{letter-spacing:-0.345000px;}
.ls63{letter-spacing:-0.324000px;}
.lse1{letter-spacing:-0.315000px;}
.lsb{letter-spacing:-0.300000px;}
.ls3d{letter-spacing:-0.276000px;}
.ls8a{letter-spacing:-0.270000px;}
.ls91{letter-spacing:-0.241362px;}
.lsc{letter-spacing:-0.240000px;}
.ls62{letter-spacing:-0.216000px;}
.lsa1{letter-spacing:-0.207000px;}
.lse4{letter-spacing:-0.189000px;}
.lsc5{letter-spacing:-0.180000px;}
.ls74{letter-spacing:-0.162000px;}
.ls19{letter-spacing:-0.138000px;}
.lsc8{letter-spacing:-0.120000px;}
.ls64{letter-spacing:-0.108000px;}
.lsa9{letter-spacing:-0.081000px;}
.ls2a{letter-spacing:-0.069000px;}
.ls97{letter-spacing:-0.062964px;}
.lsee{letter-spacing:-0.060000px;}
.ls89{letter-spacing:-0.054000px;}
.ls1{letter-spacing:0.000000px;}
.lsad{letter-spacing:0.060000px;}
.ls37{letter-spacing:0.069000px;}
.lsbc{letter-spacing:0.120000px;}
.lse0{letter-spacing:0.126000px;}
.lsc0{letter-spacing:0.180000px;}
.lse8{letter-spacing:0.189000px;}
.ls2b{letter-spacing:0.207000px;}
.ls61{letter-spacing:0.216000px;}
.lsa0{letter-spacing:0.276000px;}
.ls51{letter-spacing:0.345000px;}
.ls4c{letter-spacing:0.414000px;}
.ls35{letter-spacing:0.483000px;}
.ls5c{letter-spacing:0.550500px;}
.ls4e{letter-spacing:0.552000px;}
.lsa3{letter-spacing:0.563178px;}
.lsa7{letter-spacing:0.566676px;}
.ls7d{letter-spacing:0.598500px;}
.ls72{letter-spacing:0.648000px;}
.ls1d{letter-spacing:0.690000px;}
.ls7a{letter-spacing:0.702000px;}
.lsc9{letter-spacing:0.720000px;}
.lsde{letter-spacing:0.756000px;}
.ls4b{letter-spacing:0.759000px;}
.lsb7{letter-spacing:0.780000px;}
.lsa8{letter-spacing:0.810000px;}
.ls7e{letter-spacing:0.828000px;}
.ls65{letter-spacing:0.864000px;}
.ls6b{letter-spacing:0.897000px;}
.lscc{letter-spacing:0.960000px;}
.ls50{letter-spacing:0.966000px;}
.lsce{letter-spacing:1.020000px;}
.ls79{letter-spacing:1.026000px;}
.ls21{letter-spacing:1.035000px;}
.lsae{letter-spacing:1.080000px;}
.ls29{letter-spacing:1.104000px;}
.lsb6{letter-spacing:1.140000px;}
.ls17{letter-spacing:1.173000px;}
.lse3{letter-spacing:1.197000px;}
.lsb0{letter-spacing:1.200000px;}
.ls36{letter-spacing:1.242000px;}
.ls4{letter-spacing:1.260000px;}
.ls67{letter-spacing:1.296000px;}
.ls20{letter-spacing:1.311000px;}
.ls5e{letter-spacing:1.312500px;}
.lsab{letter-spacing:1.320000px;}
.ls77{letter-spacing:1.350000px;}
.ls34{letter-spacing:1.380000px;}
.lsb2{letter-spacing:1.440000px;}
.ls82{letter-spacing:1.449000px;}
.lsb4{letter-spacing:1.500000px;}
.ls14{letter-spacing:1.512000px;}
.lsd0{letter-spacing:1.560000px;}
.ls49{letter-spacing:1.587000px;}
.ls69{letter-spacing:1.636500px;}
.ls48{letter-spacing:1.656000px;}
.ls22{letter-spacing:1.725000px;}
.ls9{letter-spacing:1.740000px;}
.ls3a{letter-spacing:1.794000px;}
.lsaf{letter-spacing:1.800000px;}
.ls6a{letter-spacing:1.863000px;}
.ls73{letter-spacing:1.890000px;}
.lsb1{letter-spacing:1.908000px;}
.lscd{letter-spacing:1.926000px;}
.ls44{letter-spacing:1.932000px;}
.lscf{letter-spacing:1.950000px;}
.ls2{letter-spacing:1.953000px;}
.lsb5{letter-spacing:1.980000px;}
.ls9b{letter-spacing:2.001000px;}
.ls7c{letter-spacing:2.038500px;}
.ls6d{letter-spacing:2.050500px;}
.ls87{letter-spacing:2.106000px;}
.ls52{letter-spacing:2.139000px;}
.ls8e{letter-spacing:2.277000px;}
.ls5d{letter-spacing:2.344500px;}
.ls60{letter-spacing:2.346000px;}
.lsdb{letter-spacing:2.394000px;}
.ls12{letter-spacing:2.400000px;}
.ls6c{letter-spacing:2.484000px;}
.lsa2{letter-spacing:2.553000px;}
.ls92{letter-spacing:2.760000px;}
.ls70{letter-spacing:2.898000px;}
.lsac{letter-spacing:2.976000px;}
.lsb3{letter-spacing:3.060000px;}
.ls9f{letter-spacing:3.312000px;}
.ls95{letter-spacing:3.450000px;}
.lsb8{letter-spacing:3.528000px;}
.ls38{letter-spacing:3.588000px;}
.ls15{letter-spacing:3.696000px;}
.lsdc{letter-spacing:3.969000px;}
.lsd{letter-spacing:4.200000px;}
.ls71{letter-spacing:4.209000px;}
.lsd9{letter-spacing:4.347000px;}
.ls4a{letter-spacing:4.485000px;}
.ls93{letter-spacing:4.761000px;}
.lse2{letter-spacing:5.733000px;}
.ls6{letter-spacing:5.760000px;}
.lsdf{letter-spacing:5.859000px;}
.ls6e{letter-spacing:5.865000px;}
.lse{letter-spacing:5.880000px;}
.ls3{letter-spacing:6.000000px;}
.ls83{letter-spacing:6.141000px;}
.lsd7{letter-spacing:6.300000px;}
.lse6{letter-spacing:6.426000px;}
.ls96{letter-spacing:6.900000px;}
.lsdd{letter-spacing:7.056000px;}
.lse9{letter-spacing:8.640000px;}
.lsd6{letter-spacing:8.820000px;}
.ls99{letter-spacing:9.039000px;}
.lscb{letter-spacing:474.171000px;}
.ls4f{letter-spacing:475.311000px;}
.ls8d{letter-spacing:475.716000px;}
.lsaa{letter-spacing:475.723800px;}
.lse5{letter-spacing:476.038800px;}
.ls9e{letter-spacing:476.106000px;}
.ls68{letter-spacing:477.403800px;}
.ls1f{letter-spacing:478.326000px;}
.ls11{letter-spacing:479.443800px;}
.ls33{letter-spacing:952.524000px;}
.ls7b{letter-spacing:953.022000px;}
.ls0{letter-spacing:955.644000px;}
.ls1b{letter-spacing:959.694000px;}
.ls5b{letter-spacing:961.674000px;}
.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;}
}
.wsed{word-spacing:-26.523000px;}
.ws100{word-spacing:-25.500000px;}
.ws5{word-spacing:-22.740000px;}
.wsbe{word-spacing:-22.680000px;}
.ws1{word-spacing:-22.620000px;}
.wsbf{word-spacing:-21.231000px;}
.ws60{word-spacing:-20.562000px;}
.ws22{word-spacing:-20.493000px;}
.ws3d{word-spacing:-20.424000px;}
.ws23{word-spacing:-19.389000px;}
.ws8c{word-spacing:-19.278000px;}
.ws13{word-spacing:-19.251000px;}
.wse0{word-spacing:-19.125000px;}
.wsb5{word-spacing:-18.975000px;}
.ws79{word-spacing:-18.906000px;}
.ws8e{word-spacing:-18.492000px;}
.ws9f{word-spacing:-18.423000px;}
.ws5d{word-spacing:-18.225000px;}
.ws8d{word-spacing:-18.216000px;}
.wse3{word-spacing:-18.180000px;}
.ws0{word-spacing:-18.120000px;}
.ws78{word-spacing:-17.940000px;}
.wsfd{word-spacing:-17.703000px;}
.ws11{word-spacing:-17.700000px;}
.wscf{word-spacing:-17.580000px;}
.ws6a{word-spacing:-17.526000px;}
.wsf0{word-spacing:-17.514000px;}
.ws7a{word-spacing:-17.250000px;}
.wsef{word-spacing:-17.073000px;}
.ws28{word-spacing:-17.043000px;}
.ws2b{word-spacing:-16.905000px;}
.wsc4{word-spacing:-16.860000px;}
.ws3c{word-spacing:-16.698000px;}
.ws94{word-spacing:-16.686000px;}
.ws5e{word-spacing:-16.629000px;}
.ws24{word-spacing:-16.422000px;}
.ws3e{word-spacing:-16.353000px;}
.ws20{word-spacing:-16.284000px;}
.ws2a{word-spacing:-16.215000px;}
.ws14{word-spacing:-16.146000px;}
.ws25{word-spacing:-16.077000px;}
.ws3f{word-spacing:-16.008000px;}
.ws42{word-spacing:-15.939000px;}
.ws1f{word-spacing:-15.870000px;}
.ws7b{word-spacing:-15.801000px;}
.wsa1{word-spacing:-15.732000px;}
.ws41{word-spacing:-15.663000px;}
.ws61{word-spacing:-15.594000px;}
.ws5f{word-spacing:-15.525000px;}
.ws3b{word-spacing:-15.456000px;}
.ws21{word-spacing:-15.387000px;}
.ws29{word-spacing:-15.318000px;}
.ws27{word-spacing:-15.249000px;}
.ws43{word-spacing:-15.180000px;}
.wsee{word-spacing:-15.120000px;}
.ws40{word-spacing:-15.111000px;}
.wsff{word-spacing:-15.057000px;}
.wsc5{word-spacing:-15.000000px;}
.ws90{word-spacing:-14.973000px;}
.wsc2{word-spacing:-14.940000px;}
.ws8f{word-spacing:-14.904000px;}
.wse4{word-spacing:-14.820000px;}
.ws1e{word-spacing:-14.766000px;}
.ws108{word-spacing:-14.760000px;}
.ws26{word-spacing:-14.697000px;}
.wsc9{word-spacing:-14.640000px;}
.wscd{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.520000px;}
.wsc7{word-spacing:-14.460000px;}
.wsc1{word-spacing:-14.400000px;}
.wse2{word-spacing:-14.340000px;}
.wscc{word-spacing:-14.280000px;}
.ws3{word-spacing:-14.160000px;}
.wsb6{word-spacing:-14.148000px;}
.wsfe{word-spacing:-14.049000px;}
.ws7f{word-spacing:-14.040000px;}
.wsc6{word-spacing:-13.980000px;}
.wsc8{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.800000px;}
.wse5{word-spacing:-13.740000px;}
.wsc0{word-spacing:-13.680000px;}
.ws7e{word-spacing:-13.662000px;}
.wsb4{word-spacing:-13.593000px;}
.wsce{word-spacing:-13.500000px;}
.ws6b{word-spacing:-13.338000px;}
.wscb{word-spacing:-13.320000px;}
.ws12{word-spacing:-13.314000px;}
.wsca{word-spacing:-13.200000px;}
.ws6c{word-spacing:-13.122000px;}
.ws92{word-spacing:-13.068000px;}
.wsc3{word-spacing:-13.020000px;}
.ws6d{word-spacing:-12.960000px;}
.ws7d{word-spacing:-12.798000px;}
.ws7c{word-spacing:-12.690000px;}
.ws101{word-spacing:-12.660000px;}
.ws93{word-spacing:-12.582000px;}
.ws95{word-spacing:-12.204000px;}
.wsb3{word-spacing:-11.866965px;}
.ws91{word-spacing:-11.556000px;}
.ws77{word-spacing:-11.303787px;}
.wsa0{word-spacing:-11.062425px;}
.wsad{word-spacing:-10.378566px;}
.wsaf{word-spacing:-9.039000px;}
.wsf6{word-spacing:-7.056000px;}
.wsa9{word-spacing:-6.900000px;}
.ws102{word-spacing:-6.426000px;}
.wsf1{word-spacing:-6.300000px;}
.ws9a{word-spacing:-6.141000px;}
.ws8{word-spacing:-6.000000px;}
.ws80{word-spacing:-5.865000px;}
.wsf8{word-spacing:-5.859000px;}
.wsfb{word-spacing:-5.733000px;}
.wsa6{word-spacing:-4.761000px;}
.ws58{word-spacing:-4.485000px;}
.wsf2{word-spacing:-4.347000px;}
.ws83{word-spacing:-4.209000px;}
.wsd{word-spacing:-4.200000px;}
.wsf4{word-spacing:-3.969000px;}
.ws16{word-spacing:-3.696000px;}
.wsa8{word-spacing:-3.450000px;}
.ws76{word-spacing:-3.402000px;}
.ws82{word-spacing:-2.898000px;}
.wsa5{word-spacing:-2.760000px;}
.wsb9{word-spacing:-2.553000px;}
.ws15{word-spacing:-2.400000px;}
.wsf3{word-spacing:-2.394000px;}
.ws6f{word-spacing:-2.346000px;}
.ws9d{word-spacing:-2.106000px;}
.wsb1{word-spacing:-2.001000px;}
.ws7{word-spacing:-1.953000px;}
.ws51{word-spacing:-1.932000px;}
.ws86{word-spacing:-1.890000px;}
.ws44{word-spacing:-1.794000px;}
.wsb{word-spacing:-1.740000px;}
.ws2c{word-spacing:-1.725000px;}
.ws55{word-spacing:-1.656000px;}
.ws56{word-spacing:-1.587000px;}
.ws4b{word-spacing:-1.380000px;}
.ws88{word-spacing:-1.350000px;}
.ws75{word-spacing:-1.296000px;}
.ws17{word-spacing:-1.260000px;}
.ws106{word-spacing:-1.200000px;}
.wsfc{word-spacing:-1.197000px;}
.ws19{word-spacing:-1.173000px;}
.ws34{word-spacing:-1.104000px;}
.ws30{word-spacing:-1.035000px;}
.ws8b{word-spacing:-1.026000px;}
.ws70{word-spacing:-0.966000px;}
.ws74{word-spacing:-0.864000px;}
.ws96{word-spacing:-0.828000px;}
.ws59{word-spacing:-0.759000px;}
.wsf7{word-spacing:-0.756000px;}
.wse6{word-spacing:-0.720000px;}
.ws1c{word-spacing:-0.690000px;}
.ws85{word-spacing:-0.648000px;}
.wsbd{word-spacing:-0.566676px;}
.ws5c{word-spacing:-0.552000px;}
.wsaa{word-spacing:-0.483000px;}
.ws5a{word-spacing:-0.414000px;}
.wsb7{word-spacing:-0.276000px;}
.ws71{word-spacing:-0.216000px;}
.ws33{word-spacing:-0.207000px;}
.ws105{word-spacing:-0.189000px;}
.wsdb{word-spacing:-0.180000px;}
.wsf9{word-spacing:-0.126000px;}
.wsd3{word-spacing:-0.120000px;}
.ws57{word-spacing:-0.069000px;}
.ws6{word-spacing:0.000000px;}
.ws9e{word-spacing:0.054000px;}
.wsab{word-spacing:0.062964px;}
.ws32{word-spacing:0.069000px;}
.ws73{word-spacing:0.108000px;}
.wsde{word-spacing:0.120000px;}
.ws3a{word-spacing:0.138000px;}
.ws87{word-spacing:0.162000px;}
.wse8{word-spacing:0.180000px;}
.wsb8{word-spacing:0.207000px;}
.ws8a{word-spacing:0.216000px;}
.wsc{word-spacing:0.240000px;}
.ws49{word-spacing:0.276000px;}
.wse{word-spacing:0.300000px;}
.wsfa{word-spacing:0.315000px;}
.ws72{word-spacing:0.324000px;}
.ws4d{word-spacing:0.345000px;}
.wsdd{word-spacing:0.360000px;}
.ws84{word-spacing:0.378000px;}
.ws66{word-spacing:0.414000px;}
.wsd5{word-spacing:0.420000px;}
.ws103{word-spacing:0.441000px;}
.ws10{word-spacing:0.480000px;}
.ws4e{word-spacing:0.483000px;}
.ws9{word-spacing:0.504000px;}
.wsd4{word-spacing:0.540000px;}
.wsba{word-spacing:0.552000px;}
.ws6e{word-spacing:0.567000px;}
.wsb2{word-spacing:0.598158px;}
.wse9{word-spacing:0.600000px;}
.ws2e{word-spacing:0.621000px;}
.wsf5{word-spacing:0.630000px;}
.wseb{word-spacing:0.660000px;}
.ws1a{word-spacing:0.690000px;}
.wse7{word-spacing:0.720000px;}
.wsa4{word-spacing:0.759000px;}
.wsd9{word-spacing:0.780000px;}
.ws1d{word-spacing:0.828000px;}
.wsd7{word-spacing:0.840000px;}
.ws2f{word-spacing:0.897000px;}
.ws37{word-spacing:0.966000px;}
.wsd0{word-spacing:1.020000px;}
.ws36{word-spacing:1.035000px;}
.wsdc{word-spacing:1.080000px;}
.ws50{word-spacing:1.104000px;}
.wsf{word-spacing:1.140000px;}
.ws4f{word-spacing:1.173000px;}
.ws104{word-spacing:1.197000px;}
.ws81{word-spacing:1.242000px;}
.wsec{word-spacing:1.260000px;}
.ws62{word-spacing:1.311000px;}
.wsa{word-spacing:1.320000px;}
.ws39{word-spacing:1.380000px;}
.ws4a{word-spacing:1.449000px;}
.wsd6{word-spacing:1.500000px;}
.ws4c{word-spacing:1.518000px;}
.wsd1{word-spacing:1.620000px;}
.ws2d{word-spacing:1.656000px;}
.ws107{word-spacing:1.680000px;}
.ws1b{word-spacing:1.725000px;}
.ws48{word-spacing:1.794000px;}
.wsd8{word-spacing:1.800000px;}
.ws54{word-spacing:1.863000px;}
.ws68{word-spacing:1.932000px;}
.ws69{word-spacing:2.139000px;}
.ws46{word-spacing:2.277000px;}
.wsdf{word-spacing:2.280000px;}
.ws109{word-spacing:2.340000px;}
.ws47{word-spacing:2.346000px;}
.ws64{word-spacing:2.415000px;}
.ws52{word-spacing:2.484000px;}
.wsea{word-spacing:2.520000px;}
.wsae{word-spacing:2.622000px;}
.ws65{word-spacing:2.691000px;}
.ws63{word-spacing:2.760000px;}
.wsda{word-spacing:3.000000px;}
.ws9c{word-spacing:3.105000px;}
.ws53{word-spacing:3.174000px;}
.wsa2{word-spacing:3.243000px;}
.ws10a{word-spacing:3.300000px;}
.wsbc{word-spacing:3.312000px;}
.ws35{word-spacing:3.381000px;}
.ws5b{word-spacing:3.450000px;}
.wsd2{word-spacing:3.540000px;}
.wsb0{word-spacing:3.726000px;}
.wsbb{word-spacing:3.795000px;}
.ws31{word-spacing:3.864000px;}
.ws38{word-spacing:3.933000px;}
.ws98{word-spacing:3.969000px;}
.wsa3{word-spacing:4.140000px;}
.ws9b{word-spacing:4.830000px;}
.wsa7{word-spacing:4.899000px;}
.ws45{word-spacing:4.968000px;}
.ws67{word-spacing:6.072000px;}
.ws97{word-spacing:6.642000px;}
.ws99{word-spacing:6.762000px;}
.ws18{word-spacing:7.371000px;}
.wsac{word-spacing:8.153838px;}
.ws89{word-spacing:43.445160px;}
.wse1{word-spacing:261.954000px;}
._f{margin-left:-16.518900px;}
._18{margin-left:-12.075600px;}
._1a{margin-left:-10.313400px;}
._a{margin-left:-9.244800px;}
._3{margin-left:-7.226100px;}
._15{margin-left:-6.143700px;}
._5{margin-left:-4.989600px;}
._d{margin-left:-3.382200px;}
._2{margin-left:-2.349900px;}
._6{margin-left:-1.285200px;}
._4{width:1.304100px;}
._1{width:2.400000px;}
._b{width:3.891000px;}
._c{width:5.002500px;}
._7{width:6.245700px;}
._8{width:7.909200px;}
._9{width:9.024300px;}
._12{width:10.180800px;}
._14{width:11.337900px;}
._13{width:12.367800px;}
._1c{width:14.061000px;}
._1b{width:16.091700px;}
._1f{width:21.164052px;}
._19{width:27.767124px;}
._11{width:30.138300px;}
._16{width:43.445160px;}
._17{width:52.855200px;}
._e{width:71.442000px;}
._10{width:253.008000px;}
._1d{width:493.943400px;}
._1e{width:506.069400px;}
._0{width:578.400000px;}
.fc0{color:rgb(36,31,31);}
.fsb{font-size:31.482000px;}
.fsa{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y67{bottom:106.081500px;}
.yb1{bottom:106.165500px;}
.yd7{bottom:106.269000px;}
.y1a1{bottom:106.281000px;}
.y125{bottom:106.284000px;}
.yfe{bottom:106.287000px;}
.y17b{bottom:106.293300px;}
.y16d{bottom:106.299300px;}
.y1d{bottom:106.306500px;}
.y41{bottom:106.314000px;}
.y1c3{bottom:106.329000px;}
.y25e{bottom:106.333500px;}
.y23f{bottom:106.371000px;}
.y8a{bottom:106.375500px;}
.y148{bottom:109.294800px;}
.y1a0{bottom:123.534000px;}
.y124{bottom:123.537000px;}
.yfd{bottom:123.540000px;}
.y17a{bottom:123.546300px;}
.y66{bottom:126.350250px;}
.y25d{bottom:126.418500px;}
.y1c{bottom:126.436500px;}
.yb0{bottom:126.589500px;}
.y40{bottom:126.738000px;}
.y89{bottom:126.885750px;}
.y23e{bottom:127.035000px;}
.yd6{bottom:127.227750px;}
.y1c2{bottom:127.270500px;}
.y147{bottom:127.792500px;}
.y19f{bottom:140.787000px;}
.y123{bottom:140.790000px;}
.yfc{bottom:140.793000px;}
.y179{bottom:140.799300px;}
.y178{bottom:143.794800px;}
.y146{bottom:145.045500px;}
.y25c{bottom:146.503500px;}
.y1b{bottom:146.566500px;}
.y65{bottom:146.619000px;}
.yaf{bottom:147.013500px;}
.y3f{bottom:147.162000px;}
.y88{bottom:147.396000px;}
.yd5{bottom:148.186500px;}
.y1c1{bottom:148.212000px;}
.y16c{bottom:153.194250px;}
.y23d{bottom:156.204000px;}
.y19e{bottom:158.040000px;}
.y122{bottom:158.043000px;}
.yfb{bottom:158.046000px;}
.y145{bottom:162.298500px;}
.y25b{bottom:166.588500px;}
.y1a{bottom:166.696500px;}
.y64{bottom:166.887750px;}
.yae{bottom:167.437500px;}
.y3e{bottom:167.586000px;}
.y87{bottom:167.906250px;}
.yd4{bottom:169.145250px;}
.y1c0{bottom:169.153500px;}
.y16b{bottom:174.015000px;}
.y19d{bottom:175.293000px;}
.y121{bottom:175.296000px;}
.y23c{bottom:176.868000px;}
.y1fc{bottom:176.962500px;}
.yfa{bottom:178.294500px;}
.y144{bottom:182.547000px;}
.y25a{bottom:186.673500px;}
.y63{bottom:187.156500px;}
.y177{bottom:187.827000px;}
.yad{bottom:187.861500px;}
.y3d{bottom:188.010000px;}
.y86{bottom:188.416500px;}
.y1bf{bottom:190.095000px;}
.yd3{bottom:190.104000px;}
.y19c{bottom:192.546000px;}
.y16a{bottom:194.835750px;}
.y1fb{bottom:194.962500px;}
.y120{bottom:195.544500px;}
.yf9{bottom:196.783500px;}
.y19{bottom:199.591500px;}
.y23b{bottom:206.037000px;}
.y259{bottom:206.758500px;}
.y62{bottom:207.425250px;}
.y176{bottom:208.251000px;}
.yac{bottom:208.285500px;}
.y3c{bottom:208.434000px;}
.y85{bottom:208.926750px;}
.y19b{bottom:209.799000px;}
.y1be{bottom:211.036500px;}
.yd2{bottom:211.062750px;}
.y19a{bottom:212.794500px;}
.y1fa{bottom:212.962500px;}
.yf8{bottom:214.036500px;}
.y11f{bottom:214.042500px;}
.y169{bottom:215.656500px;}
.y143{bottom:226.570500px;}
.y23a{bottom:226.701000px;}
.y258{bottom:226.843500px;}
.y61{bottom:227.694000px;}
.y175{bottom:228.675000px;}
.yab{bottom:228.709500px;}
.y3b{bottom:228.858000px;}
.y84{bottom:229.437000px;}
.y1f9{bottom:230.962500px;}
.yf7{bottom:231.289500px;}
.y11e{bottom:231.295500px;}
.y1bd{bottom:231.978000px;}
.yd1{bottom:232.021500px;}
.y168{bottom:236.477250px;}
.y142{bottom:246.873750px;}
.y257{bottom:246.928500px;}
.y60{bottom:247.962750px;}
.yf6{bottom:248.542500px;}
.y11d{bottom:248.548500px;}
.y1f8{bottom:248.962500px;}
.y174{bottom:249.099000px;}
.yaa{bottom:249.133500px;}
.y3a{bottom:249.282000px;}
.y18{bottom:249.481500px;}
.y83{bottom:249.947250px;}
.yd0{bottom:252.980250px;}
.y239{bottom:255.870000px;}
.y199{bottom:256.843500px;}
.y167{bottom:257.298000px;}
.yf5{bottom:265.795500px;}
.y1f7{bottom:266.962500px;}
.y256{bottom:267.013500px;}
.y141{bottom:267.177000px;}
.y5f{bottom:268.231500px;}
.y11c{bottom:268.797000px;}
.y173{bottom:269.523000px;}
.ya9{bottom:269.557500px;}
.y39{bottom:269.706000px;}
.y82{bottom:270.457500px;}
.y17{bottom:271.111500px;}
.ycf{bottom:273.939000px;}
.y1bc{bottom:274.183500px;}
.y238{bottom:276.534000px;}
.y166{bottom:278.118750px;}
.y198{bottom:278.371500px;}
.yf4{bottom:283.048500px;}
.y200{bottom:284.955000px;}
.y1f6{bottom:284.962500px;}
.y255{bottom:287.098500px;}
.y11b{bottom:287.290500px;}
.y140{bottom:287.480250px;}
.y5e{bottom:288.500250px;}
.y172{bottom:289.947000px;}
.ya8{bottom:289.981500px;}
.y38{bottom:290.130000px;}
.y81{bottom:290.967750px;}
.yce{bottom:294.897750px;}
.y165{bottom:298.939500px;}
.y197{bottom:299.899500px;}
.y1ff{bottom:302.955000px;}
.y1f5{bottom:302.962500px;}
.yf3{bottom:303.297000px;}
.y11a{bottom:304.543500px;}
.y237{bottom:305.703000px;}
.y254{bottom:307.183500px;}
.y13f{bottom:307.783500px;}
.y5d{bottom:308.769000px;}
.y171{bottom:310.371000px;}
.ya7{bottom:310.405500px;}
.y37{bottom:310.554000px;}
.y80{bottom:311.478000px;}
.y16{bottom:314.013000px;}
.ycd{bottom:315.856500px;}
.y164{bottom:319.760250px;}
.y1fe{bottom:320.955000px;}
.y1f4{bottom:320.962500px;}
.y196{bottom:321.427500px;}
.yf2{bottom:321.787500px;}
.y119{bottom:321.796500px;}
.y236{bottom:326.367000px;}
.y253{bottom:327.268500px;}
.y13e{bottom:328.086750px;}
.y5c{bottom:329.037750px;}
.y21f{bottom:329.988000px;}
.y170{bottom:330.795000px;}
.ya6{bottom:330.829500px;}
.y36{bottom:330.978000px;}
.y15{bottom:334.143000px;}
.ycc{bottom:336.815250px;}
.y1fd{bottom:338.955000px;}
.y1f3{bottom:338.962500px;}
.yf1{bottom:339.040500px;}
.y118{bottom:339.049500px;}
.y163{bottom:340.581000px;}
.y195{bottom:342.955500px;}
.y235{bottom:347.031000px;}
.y252{bottom:347.353500px;}
.y21e{bottom:347.988000px;}
.y13d{bottom:348.390000px;}
.y5b{bottom:349.306500px;}
.y16f{bottom:351.219000px;}
.ya5{bottom:351.253500px;}
.y35{bottom:351.402000px;}
.y7f{bottom:353.289000px;}
.y14{bottom:354.273000px;}
.yf0{bottom:356.293500px;}
.y117{bottom:356.302500px;}
.y1f2{bottom:356.962500px;}
.ycb{bottom:357.774000px;}
.y1bb{bottom:358.222500px;}
.y116{bottom:359.298000px;}
.y162{bottom:361.401750px;}
.y194{bottom:364.483500px;}
.y21d{bottom:365.988000px;}
.y251{bottom:367.438500px;}
.y13c{bottom:368.693250px;}
.y5a{bottom:369.575250px;}
.y16e{bottom:371.643000px;}
.ya4{bottom:371.677500px;}
.y34{bottom:371.826000px;}
.yef{bottom:373.546500px;}
.y13{bottom:374.403000px;}
.y1f1{bottom:374.962500px;}
.y234{bottom:376.200000px;}
.y7e{bottom:377.548500px;}
.y115{bottom:377.799000px;}
.yca{bottom:378.732750px;}
.y1ba{bottom:379.164000px;}
.y161{bottom:382.222500px;}
.y21c{bottom:383.988000px;}
.y193{bottom:386.011500px;}
.y250{bottom:387.523500px;}
.y13b{bottom:388.996500px;}
.y59{bottom:389.844000px;}
.yee{bottom:390.799500px;}
.ya3{bottom:392.101500px;}
.y33{bottom:392.250000px;}
.y1f0{bottom:392.962500px;}
.y12{bottom:394.533000px;}
.y114{bottom:395.052000px;}
.yc9{bottom:399.691500px;}
.y1b9{bottom:400.105500px;}
.y7d{bottom:401.808000px;}
.y21b{bottom:401.988000px;}
.y160{bottom:403.043250px;}
.y233{bottom:405.369000px;}
.y192{bottom:407.539500px;}
.y24f{bottom:407.608500px;}
.y13a{bottom:409.299750px;}
.y58{bottom:410.112750px;}
.y1ef{bottom:410.962500px;}
.yed{bottom:411.048000px;}
.ya2{bottom:412.525500px;}
.y32{bottom:412.674000px;}
.y11{bottom:414.663000px;}
.y113{bottom:415.300500px;}
.y21a{bottom:419.988000px;}
.yc8{bottom:420.650250px;}
.y1b8{bottom:421.047000px;}
.y15f{bottom:423.864000px;}
.y232{bottom:426.033000px;}
.y7c{bottom:426.067500px;}
.y24e{bottom:427.693500px;}
.y1ee{bottom:428.962500px;}
.y191{bottom:429.067500px;}
.y139{bottom:429.603000px;}
.y57{bottom:430.381500px;}
.ya1{bottom:432.949500px;}
.y31{bottom:433.098000px;}
.y112{bottom:433.792500px;}
.y10{bottom:434.793000px;}
.y219{bottom:437.988000px;}
.yc7{bottom:441.609000px;}
.y1b7{bottom:441.988500px;}
.y15e{bottom:444.684750px;}
.y231{bottom:446.697000px;}
.y1ed{bottom:446.962500px;}
.y24d{bottom:447.778500px;}
.y138{bottom:449.906250px;}
.y7b{bottom:450.327000px;}
.y190{bottom:450.595500px;}
.y56{bottom:450.650250px;}
.y111{bottom:451.045500px;}
.ya0{bottom:453.373500px;}
.y30{bottom:453.522000px;}
.yf{bottom:454.923000px;}
.yec{bottom:455.133000px;}
.y218{bottom:455.988000px;}
.yc6{bottom:462.567750px;}
.y1b6{bottom:462.930000px;}
.y1ec{bottom:464.962500px;}
.y15d{bottom:465.505500px;}
.y24c{bottom:467.863500px;}
.y110{bottom:468.298500px;}
.y137{bottom:470.209500px;}
.y55{bottom:470.919000px;}
.y18f{bottom:472.123500px;}
.y9f{bottom:473.797500px;}
.y2f{bottom:473.946000px;}
.y217{bottom:473.988000px;}
.y230{bottom:475.866000px;}
.yeb{bottom:475.971000px;}
.y1eb{bottom:482.962500px;}
.yc5{bottom:483.526500px;}
.y1b5{bottom:483.871500px;}
.y10f{bottom:485.551500px;}
.y15c{bottom:486.326250px;}
.ye{bottom:487.818000px;}
.y136{bottom:490.512750px;}
.y54{bottom:491.187750px;}
.y216{bottom:491.988000px;}
.y18e{bottom:493.651500px;}
.y9e{bottom:494.221500px;}
.y2e{bottom:494.370000px;}
.y271{bottom:495.943500px;}
.y22f{bottom:496.530000px;}
.yea{bottom:496.809000px;}
.y24b{bottom:500.698500px;}
.y1ea{bottom:500.962500px;}
.y10e{bottom:502.804500px;}
.yc4{bottom:504.485250px;}
.y1b4{bottom:504.813000px;}
.y15b{bottom:507.147000px;}
.y215{bottom:509.988000px;}
.y135{bottom:510.816000px;}
.y53{bottom:511.456500px;}
.y7a{bottom:513.006750px;}
.y9d{bottom:514.645500px;}
.y2d{bottom:514.794000px;}
.y18d{bottom:515.179500px;}
.y270{bottom:516.193500px;}
.ye9{bottom:517.647000px;}
.y1d6{bottom:517.923000px;}
.y1e9{bottom:518.962500px;}
.y10d{bottom:520.057500px;}
.yc3{bottom:525.444000px;}
.y22e{bottom:525.699000px;}
.y1b3{bottom:525.754500px;}
.y15a{bottom:527.967750px;}
.y214{bottom:527.988000px;}
.y134{bottom:531.119250px;}
.y52{bottom:531.725250px;}
.y79{bottom:533.517000px;}
.y9c{bottom:535.069500px;}
.y2c{bottom:535.218000px;}
.y26f{bottom:536.443500px;}
.y18c{bottom:536.707500px;}
.y1e8{bottom:536.962500px;}
.y1d5{bottom:538.174500px;}
.ye8{bottom:538.485000px;}
.y213{bottom:545.988000px;}
.yd{bottom:546.210000px;}
.y22d{bottom:546.363000px;}
.yc2{bottom:546.402750px;}
.y1b2{bottom:546.696000px;}
.y159{bottom:548.788500px;}
.y133{bottom:551.426250px;}
.y51{bottom:551.994000px;}
.y78{bottom:554.027250px;}
.y1e7{bottom:554.962500px;}
.y9b{bottom:555.493500px;}
.y2b{bottom:555.642000px;}
.y26e{bottom:556.693500px;}
.y18b{bottom:558.235500px;}
.y1d4{bottom:558.426000px;}
.y24a{bottom:559.030500px;}
.ye7{bottom:559.323000px;}
.y212{bottom:563.988000px;}
.y10c{bottom:567.058500px;}
.yc1{bottom:567.361500px;}
.y1b1{bottom:567.637500px;}
.y158{bottom:569.609250px;}
.y132{bottom:571.729500px;}
.y50{bottom:572.262750px;}
.y1e6{bottom:572.962500px;}
.yc{bottom:573.846000px;}
.y77{bottom:574.537500px;}
.y22c{bottom:575.532000px;}
.y9a{bottom:575.917500px;}
.y2a{bottom:576.066000px;}
.y1d3{bottom:578.677500px;}
.y18a{bottom:579.763500px;}
.ye6{bottom:580.161000px;}
.y211{bottom:581.988000px;}
.y249{bottom:586.624500px;}
.yc0{bottom:588.320250px;}
.y1b0{bottom:588.579000px;}
.y26d{bottom:589.693500px;}
.y157{bottom:590.430000px;}
.y1e5{bottom:590.962500px;}
.y10b{bottom:591.036000px;}
.y131{bottom:592.032750px;}
.y4f{bottom:592.531500px;}
.y76{bottom:595.047750px;}
.y22b{bottom:596.196000px;}
.y99{bottom:596.341500px;}
.y29{bottom:596.490000px;}
.y1d2{bottom:598.929000px;}
.y210{bottom:599.988000px;}
.ye5{bottom:600.999000px;}
.y189{bottom:601.291500px;}
.yb{bottom:601.482000px;}
.y1e4{bottom:608.962500px;}
.ybf{bottom:609.279000px;}
.y1af{bottom:609.520500px;}
.y156{bottom:611.250750px;}
.y130{bottom:612.336000px;}
.y4e{bottom:612.800250px;}
.y248{bottom:614.218500px;}
.y10a{bottom:615.013500px;}
.y75{bottom:615.558000px;}
.y98{bottom:616.765500px;}
.y20f{bottom:617.988000px;}
.y1d1{bottom:619.180500px;}
.ye4{bottom:621.837000px;}
.y188{bottom:622.819500px;}
.y22a{bottom:625.365000px;}
.y1e3{bottom:626.962500px;}
.ybe{bottom:630.237750px;}
.y1ae{bottom:630.462000px;}
.y26c{bottom:631.198500px;}
.y155{bottom:632.071500px;}
.y12f{bottom:632.639250px;}
.y4d{bottom:633.069000px;}
.y20e{bottom:635.988000px;}
.y74{bottom:636.068250px;}
.y97{bottom:637.189500px;}
.y28{bottom:638.173500px;}
.y109{bottom:638.952000px;}
.y1d0{bottom:639.432000px;}
.y247{bottom:641.812500px;}
.ye3{bottom:642.675000px;}
.y187{bottom:644.347500px;}
.y1e2{bottom:644.962500px;}
.ya{bottom:650.380500px;}
.y26b{bottom:650.698500px;}
.ybd{bottom:651.196500px;}
.y1ad{bottom:651.403500px;}
.y154{bottom:652.892250px;}
.y12e{bottom:652.942500px;}
.y20d{bottom:653.988000px;}
.y229{bottom:654.534000px;}
.y73{bottom:656.578500px;}
.y96{bottom:657.613500px;}
.y1cf{bottom:659.683500px;}
.y108{bottom:662.929500px;}
.y1e1{bottom:662.962500px;}
.ye2{bottom:663.513000px;}
.y186{bottom:665.893500px;}
.y26a{bottom:670.198500px;}
.y20c{bottom:671.988000px;}
.ybc{bottom:672.155250px;}
.y1ac{bottom:672.345000px;}
.y12d{bottom:673.245750px;}
.y153{bottom:673.713000px;}
.y4c{bottom:674.584500px;}
.y228{bottom:675.198000px;}
.y72{bottom:677.088750px;}
.y95{bottom:678.037500px;}
.y1ce{bottom:679.935000px;}
.y1e0{bottom:680.962500px;}
.y9{bottom:682.510500px;}
.ye1{bottom:684.369000px;}
.y107{bottom:686.907000px;}
.y185{bottom:687.421500px;}
.y269{bottom:689.698500px;}
.y20b{bottom:689.988000px;}
.ybb{bottom:693.114000px;}
.y1ab{bottom:693.286500px;}
.y12c{bottom:693.549000px;}
.y152{bottom:694.533750px;}
.y71{bottom:697.599000px;}
.y94{bottom:698.461500px;}
.y4b{bottom:698.601000px;}
.y1df{bottom:698.962500px;}
.y1cd{bottom:700.186500px;}
.y227{bottom:704.367000px;}
.ye0{bottom:705.207000px;}
.y20a{bottom:707.988000px;}
.y184{bottom:708.949500px;}
.y268{bottom:709.198500px;}
.y106{bottom:710.884500px;}
.yba{bottom:714.072750px;}
.y1aa{bottom:714.228000px;}
.y8{bottom:714.640500px;}
.y151{bottom:715.314750px;}
.y1de{bottom:716.962500px;}
.y70{bottom:718.109250px;}
.y93{bottom:718.885500px;}
.y1cc{bottom:720.438000px;}
.y27{bottom:721.030500px;}
.y226{bottom:725.031000px;}
.y209{bottom:725.988000px;}
.ydf{bottom:726.045000px;}
.y267{bottom:728.698500px;}
.y183{bottom:730.477500px;}
.y246{bottom:732.323250px;}
.y105{bottom:734.862000px;}
.y1dd{bottom:734.962500px;}
.yb9{bottom:735.031500px;}
.y12b{bottom:735.108000px;}
.y1a9{bottom:735.169500px;}
.y150{bottom:736.135500px;}
.y6f{bottom:738.619500px;}
.y92{bottom:739.309500px;}
.y1cb{bottom:740.689500px;}
.y26{bottom:742.210500px;}
.y208{bottom:743.988000px;}
.y7{bottom:746.770500px;}
.yde{bottom:746.901000px;}
.y266{bottom:748.198500px;}
.y182{bottom:752.005500px;}
.y1dc{bottom:752.962500px;}
.y245{bottom:753.160500px;}
.y225{bottom:754.200000px;}
.yb8{bottom:755.990250px;}
.y1a8{bottom:756.111000px;}
.y14f{bottom:756.956250px;}
.y104{bottom:758.839500px;}
.y6e{bottom:759.129750px;}
.y12a{bottom:759.165000px;}
.y91{bottom:759.733500px;}
.y4a{bottom:760.820250px;}
.y1ca{bottom:760.941000px;}
.y207{bottom:761.988000px;}
.y25{bottom:763.390500px;}
.y265{bottom:767.698500px;}
.ydd{bottom:767.739000px;}
.y1db{bottom:770.962500px;}
.y181{bottom:773.533500px;}
.y224{bottom:774.864000px;}
.yb7{bottom:776.949000px;}
.y1a7{bottom:777.052500px;}
.y14e{bottom:777.777000px;}
.y6d{bottom:779.640000px;}
.y206{bottom:779.988000px;}
.y90{bottom:780.157500px;}
.y49{bottom:781.089000px;}
.y1c9{bottom:781.192500px;}
.y244{bottom:782.502750px;}
.y103{bottom:782.817000px;}
.y264{bottom:787.198500px;}
.ydc{bottom:788.577000px;}
.y1da{bottom:788.962500px;}
.y180{bottom:795.061500px;}
.yb6{bottom:797.907750px;}
.y205{bottom:797.988000px;}
.y1a6{bottom:797.994000px;}
.y14d{bottom:798.597750px;}
.y6c{bottom:800.150250px;}
.y8f{bottom:800.581500px;}
.y48{bottom:801.357750px;}
.y1c8{bottom:801.444000px;}
.y243{bottom:803.340000px;}
.y223{bottom:804.033000px;}
.y24{bottom:805.798500px;}
.y263{bottom:806.698500px;}
.y102{bottom:806.794500px;}
.y1d9{bottom:806.962500px;}
.y6{bottom:808.671000px;}
.ydb{bottom:809.415000px;}
.y204{bottom:815.988000px;}
.y17f{bottom:816.589500px;}
.yb5{bottom:818.866500px;}
.y1a5{bottom:818.935500px;}
.y14c{bottom:819.418500px;}
.y6b{bottom:820.660500px;}
.y8e{bottom:821.005500px;}
.y129{bottom:821.488500px;}
.y47{bottom:821.626500px;}
.y1c7{bottom:821.695500px;}
.y222{bottom:824.697000px;}
.y23{bottom:825.478500px;}
.y262{bottom:826.198500px;}
.y1d8{bottom:829.687500px;}
.y5{bottom:830.301000px;}
.y101{bottom:830.772000px;}
.y242{bottom:832.682250px;}
.y203{bottom:833.988000px;}
.y17e{bottom:838.117500px;}
.yb4{bottom:839.825250px;}
.y1a4{bottom:839.877000px;}
.y14b{bottom:840.239250px;}
.y6a{bottom:841.170750px;}
.y8d{bottom:841.429500px;}
.y128{bottom:841.791750px;}
.y46{bottom:841.895250px;}
.y1c6{bottom:841.947000px;}
.y22{bottom:845.158500px;}
.y261{bottom:845.698500px;}
.yda{bottom:851.499000px;}
.y4{bottom:851.931000px;}
.y202{bottom:851.988000px;}
.y241{bottom:853.519500px;}
.y221{bottom:853.866000px;}
.y100{bottom:854.749500px;}
.y17d{bottom:859.645500px;}
.yb3{bottom:860.784000px;}
.y1a3{bottom:860.818500px;}
.y1d7{bottom:861.055500px;}
.y14a{bottom:861.060000px;}
.y69{bottom:861.681000px;}
.y8c{bottom:861.853500px;}
.y127{bottom:862.095000px;}
.y45{bottom:862.164000px;}
.y1c5{bottom:862.198500px;}
.y21{bottom:864.838500px;}
.y260{bottom:865.198500px;}
.y220{bottom:874.530000px;}
.y201{bottom:874.713000px;}
.yd9{bottom:876.102750px;}
.yff{bottom:878.724000px;}
.y17c{bottom:881.173500px;}
.yb2{bottom:881.742750px;}
.y1a2{bottom:881.760000px;}
.y149{bottom:881.880750px;}
.y3{bottom:882.066000px;}
.y68{bottom:882.191250px;}
.y8b{bottom:882.277500px;}
.y126{bottom:882.398250px;}
.y44{bottom:882.432750px;}
.y1c4{bottom:882.450000px;}
.y240{bottom:882.861750px;}
.y20{bottom:884.518500px;}
.y25f{bottom:884.698500px;}
.yd8{bottom:900.706500px;}
.y43{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y1f{bottom:904.198500px;}
.y1e{bottom:948.189000px;}
.y42{bottom:966.189000px;}
.h11{height:26.732030px;}
.h14{height:27.592866px;}
.he{height:35.347102px;}
.h8{height:42.070312px;}
.hc{height:42.228937px;}
.hd{height:47.329102px;}
.h4{height:52.587891px;}
.hf{height:54.210938px;}
.h3{height:55.217285px;}
.h7{height:60.234375px;}
.ha{height:60.476074px;}
.h10{height:60.632074px;}
.h15{height:63.246094px;}
.h2{height:65.734863px;}
.hb{height:69.269531px;}
.h13{height:69.428531px;}
.h9{height:70.993652px;}
.h6{height:73.623047px;}
.h12{height:81.316406px;}
.h5{height:94.658203px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:80.533500px;}
.x5{left:82.214250px;}
.x6{left:83.631150px;}
.x1{left:85.039350px;}
.xa{left:90.398850px;}
.xb{left:94.013850px;}
.x4{left:105.028500px;}
.x3{left:106.365000px;}
.x8{left:108.512850px;}
.xd{left:188.573850px;}
.x7{left:231.421500px;}
.x2{left:233.415000px;}
.xc{left:370.073850px;}
.xe{left:461.993850px;}
@media print{
.v3{vertical-align:-15.088000pt;}
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.024000pt;}
.ls16{letter-spacing:-6.552000pt;}
.ls7f{letter-spacing:-5.904000pt;}
.ls59{letter-spacing:-5.397333pt;}
.ls3b{letter-spacing:-4.416000pt;}
.ls94{letter-spacing:-4.354667pt;}
.ls85{letter-spacing:-4.293333pt;}
.ls24{letter-spacing:-4.109333pt;}
.ls90{letter-spacing:-3.680000pt;}
.ls81{letter-spacing:-3.528000pt;}
.ls31{letter-spacing:-3.496000pt;}
.ls28{letter-spacing:-3.434667pt;}
.lsa5{letter-spacing:-3.373333pt;}
.ls9a{letter-spacing:-3.312000pt;}
.lsba{letter-spacing:-3.146667pt;}
.ls4d{letter-spacing:-3.066667pt;}
.ls2e{letter-spacing:-3.005333pt;}
.ls13{letter-spacing:-3.000000pt;}
.lsa6{letter-spacing:-2.944000pt;}
.lsed{letter-spacing:-2.933333pt;}
.ls8f{letter-spacing:-2.882667pt;}
.ls46{letter-spacing:-2.821333pt;}
.ls86{letter-spacing:-2.760000pt;}
.lsc4{letter-spacing:-2.666667pt;}
.ls53{letter-spacing:-2.533333pt;}
.ls56{letter-spacing:-2.453333pt;}
.ls58{letter-spacing:-2.392000pt;}
.ls98{letter-spacing:-2.330667pt;}
.lsc7{letter-spacing:-2.293333pt;}
.lsd4{letter-spacing:-2.240000pt;}
.ls45{letter-spacing:-2.208000pt;}
.ls57{letter-spacing:-2.146667pt;}
.ls2d{letter-spacing:-2.085333pt;}
.lsec{letter-spacing:-2.080000pt;}
.lsca{letter-spacing:-2.026667pt;}
.ls3c{letter-spacing:-2.024000pt;}
.lsea{letter-spacing:-1.920000pt;}
.ls5a{letter-spacing:-1.901333pt;}
.ls84{letter-spacing:-1.840000pt;}
.lsd1{letter-spacing:-1.733333pt;}
.ls3f{letter-spacing:-1.717333pt;}
.ls47{letter-spacing:-1.656000pt;}
.lsbe{letter-spacing:-1.600000pt;}
.ls30{letter-spacing:-1.594667pt;}
.ls88{letter-spacing:-1.584000pt;}
.ls1c{letter-spacing:-1.533333pt;}
.lseb{letter-spacing:-1.493333pt;}
.ls23{letter-spacing:-1.472000pt;}
.lsb9{letter-spacing:-1.440000pt;}
.ls41{letter-spacing:-1.410667pt;}
.ls40{letter-spacing:-1.349333pt;}
.ls78{letter-spacing:-1.344000pt;}
.lsbd{letter-spacing:-1.333333pt;}
.ls3e{letter-spacing:-1.288000pt;}
.ls32{letter-spacing:-1.226667pt;}
.ls7{letter-spacing:-1.173333pt;}
.ls55{letter-spacing:-1.165333pt;}
.lsd5{letter-spacing:-1.120000pt;}
.ls6f{letter-spacing:-1.104000pt;}
.lse7{letter-spacing:-1.064000pt;}
.ls25{letter-spacing:-1.042667pt;}
.lsf{letter-spacing:-1.013333pt;}
.ls8c{letter-spacing:-1.008000pt;}
.ls43{letter-spacing:-0.981333pt;}
.lsc6{letter-spacing:-0.960000pt;}
.ls2f{letter-spacing:-0.920000pt;}
.ls8{letter-spacing:-0.906667pt;}
.ls2c{letter-spacing:-0.858667pt;}
.lsc3{letter-spacing:-0.853333pt;}
.ls9c{letter-spacing:-0.822419pt;}
.ls1a{letter-spacing:-0.797333pt;}
.lsbf{letter-spacing:-0.746667pt;}
.ls1e{letter-spacing:-0.736000pt;}
.lsc1{letter-spacing:-0.693333pt;}
.ls26{letter-spacing:-0.674667pt;}
.ls8b{letter-spacing:-0.672000pt;}
.ls80{letter-spacing:-0.648000pt;}
.lsd2{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.613333pt;}
.lsa{letter-spacing:-0.586667pt;}
.ls75{letter-spacing:-0.576000pt;}
.lsda{letter-spacing:-0.560000pt;}
.ls27{letter-spacing:-0.552000pt;}
.lsd3{letter-spacing:-0.533333pt;}
.ls9d{letter-spacing:-0.531696pt;}
.ls5f{letter-spacing:-0.504000pt;}
.lsa4{letter-spacing:-0.490667pt;}
.ls76{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.448000pt;}
.ls42{letter-spacing:-0.429333pt;}
.ls10{letter-spacing:-0.426667pt;}
.lsd8{letter-spacing:-0.392000pt;}
.lsbb{letter-spacing:-0.373333pt;}
.ls54{letter-spacing:-0.368000pt;}
.ls66{letter-spacing:-0.336000pt;}
.lsc2{letter-spacing:-0.320000pt;}
.ls39{letter-spacing:-0.306667pt;}
.ls63{letter-spacing:-0.288000pt;}
.lse1{letter-spacing:-0.280000pt;}
.lsb{letter-spacing:-0.266667pt;}
.ls3d{letter-spacing:-0.245333pt;}
.ls8a{letter-spacing:-0.240000pt;}
.ls91{letter-spacing:-0.214544pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls62{letter-spacing:-0.192000pt;}
.lsa1{letter-spacing:-0.184000pt;}
.lse4{letter-spacing:-0.168000pt;}
.lsc5{letter-spacing:-0.160000pt;}
.ls74{letter-spacing:-0.144000pt;}
.ls19{letter-spacing:-0.122667pt;}
.lsc8{letter-spacing:-0.106667pt;}
.ls64{letter-spacing:-0.096000pt;}
.lsa9{letter-spacing:-0.072000pt;}
.ls2a{letter-spacing:-0.061333pt;}
.ls97{letter-spacing:-0.055968pt;}
.lsee{letter-spacing:-0.053333pt;}
.ls89{letter-spacing:-0.048000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsad{letter-spacing:0.053333pt;}
.ls37{letter-spacing:0.061333pt;}
.lsbc{letter-spacing:0.106667pt;}
.lse0{letter-spacing:0.112000pt;}
.lsc0{letter-spacing:0.160000pt;}
.lse8{letter-spacing:0.168000pt;}
.ls2b{letter-spacing:0.184000pt;}
.ls61{letter-spacing:0.192000pt;}
.lsa0{letter-spacing:0.245333pt;}
.ls51{letter-spacing:0.306667pt;}
.ls4c{letter-spacing:0.368000pt;}
.ls35{letter-spacing:0.429333pt;}
.ls5c{letter-spacing:0.489333pt;}
.ls4e{letter-spacing:0.490667pt;}
.lsa3{letter-spacing:0.500603pt;}
.lsa7{letter-spacing:0.503712pt;}
.ls7d{letter-spacing:0.532000pt;}
.ls72{letter-spacing:0.576000pt;}
.ls1d{letter-spacing:0.613333pt;}
.ls7a{letter-spacing:0.624000pt;}
.lsc9{letter-spacing:0.640000pt;}
.lsde{letter-spacing:0.672000pt;}
.ls4b{letter-spacing:0.674667pt;}
.lsb7{letter-spacing:0.693333pt;}
.lsa8{letter-spacing:0.720000pt;}
.ls7e{letter-spacing:0.736000pt;}
.ls65{letter-spacing:0.768000pt;}
.ls6b{letter-spacing:0.797333pt;}
.lscc{letter-spacing:0.853333pt;}
.ls50{letter-spacing:0.858667pt;}
.lsce{letter-spacing:0.906667pt;}
.ls79{letter-spacing:0.912000pt;}
.ls21{letter-spacing:0.920000pt;}
.lsae{letter-spacing:0.960000pt;}
.ls29{letter-spacing:0.981333pt;}
.lsb6{letter-spacing:1.013333pt;}
.ls17{letter-spacing:1.042667pt;}
.lse3{letter-spacing:1.064000pt;}
.lsb0{letter-spacing:1.066667pt;}
.ls36{letter-spacing:1.104000pt;}
.ls4{letter-spacing:1.120000pt;}
.ls67{letter-spacing:1.152000pt;}
.ls20{letter-spacing:1.165333pt;}
.ls5e{letter-spacing:1.166667pt;}
.lsab{letter-spacing:1.173333pt;}
.ls77{letter-spacing:1.200000pt;}
.ls34{letter-spacing:1.226667pt;}
.lsb2{letter-spacing:1.280000pt;}
.ls82{letter-spacing:1.288000pt;}
.lsb4{letter-spacing:1.333333pt;}
.ls14{letter-spacing:1.344000pt;}
.lsd0{letter-spacing:1.386667pt;}
.ls49{letter-spacing:1.410667pt;}
.ls69{letter-spacing:1.454667pt;}
.ls48{letter-spacing:1.472000pt;}
.ls22{letter-spacing:1.533333pt;}
.ls9{letter-spacing:1.546667pt;}
.ls3a{letter-spacing:1.594667pt;}
.lsaf{letter-spacing:1.600000pt;}
.ls6a{letter-spacing:1.656000pt;}
.ls73{letter-spacing:1.680000pt;}
.lsb1{letter-spacing:1.696000pt;}
.lscd{letter-spacing:1.712000pt;}
.ls44{letter-spacing:1.717333pt;}
.lscf{letter-spacing:1.733333pt;}
.ls2{letter-spacing:1.736000pt;}
.lsb5{letter-spacing:1.760000pt;}
.ls9b{letter-spacing:1.778667pt;}
.ls7c{letter-spacing:1.812000pt;}
.ls6d{letter-spacing:1.822667pt;}
.ls87{letter-spacing:1.872000pt;}
.ls52{letter-spacing:1.901333pt;}
.ls8e{letter-spacing:2.024000pt;}
.ls5d{letter-spacing:2.084000pt;}
.ls60{letter-spacing:2.085333pt;}
.lsdb{letter-spacing:2.128000pt;}
.ls12{letter-spacing:2.133333pt;}
.ls6c{letter-spacing:2.208000pt;}
.lsa2{letter-spacing:2.269333pt;}
.ls92{letter-spacing:2.453333pt;}
.ls70{letter-spacing:2.576000pt;}
.lsac{letter-spacing:2.645333pt;}
.lsb3{letter-spacing:2.720000pt;}
.ls9f{letter-spacing:2.944000pt;}
.ls95{letter-spacing:3.066667pt;}
.lsb8{letter-spacing:3.136000pt;}
.ls38{letter-spacing:3.189333pt;}
.ls15{letter-spacing:3.285333pt;}
.lsdc{letter-spacing:3.528000pt;}
.lsd{letter-spacing:3.733333pt;}
.ls71{letter-spacing:3.741333pt;}
.lsd9{letter-spacing:3.864000pt;}
.ls4a{letter-spacing:3.986667pt;}
.ls93{letter-spacing:4.232000pt;}
.lse2{letter-spacing:5.096000pt;}
.ls6{letter-spacing:5.120000pt;}
.lsdf{letter-spacing:5.208000pt;}
.ls6e{letter-spacing:5.213333pt;}
.lse{letter-spacing:5.226667pt;}
.ls3{letter-spacing:5.333333pt;}
.ls83{letter-spacing:5.458667pt;}
.lsd7{letter-spacing:5.600000pt;}
.lse6{letter-spacing:5.712000pt;}
.ls96{letter-spacing:6.133333pt;}
.lsdd{letter-spacing:6.272000pt;}
.lse9{letter-spacing:7.680000pt;}
.lsd6{letter-spacing:7.840000pt;}
.ls99{letter-spacing:8.034667pt;}
.lscb{letter-spacing:421.485333pt;}
.ls4f{letter-spacing:422.498667pt;}
.ls8d{letter-spacing:422.858667pt;}
.lsaa{letter-spacing:422.865600pt;}
.lse5{letter-spacing:423.145600pt;}
.ls9e{letter-spacing:423.205333pt;}
.ls68{letter-spacing:424.358933pt;}
.ls1f{letter-spacing:425.178667pt;}
.ls11{letter-spacing:426.172267pt;}
.ls33{letter-spacing:846.688000pt;}
.ls7b{letter-spacing:847.130667pt;}
.ls0{letter-spacing:849.461333pt;}
.ls1b{letter-spacing:853.061333pt;}
.ls5b{letter-spacing:854.821333pt;}
.wsed{word-spacing:-23.576000pt;}
.ws100{word-spacing:-22.666667pt;}
.ws5{word-spacing:-20.213333pt;}
.wsbe{word-spacing:-20.160000pt;}
.ws1{word-spacing:-20.106667pt;}
.wsbf{word-spacing:-18.872000pt;}
.ws60{word-spacing:-18.277333pt;}
.ws22{word-spacing:-18.216000pt;}
.ws3d{word-spacing:-18.154667pt;}
.ws23{word-spacing:-17.234667pt;}
.ws8c{word-spacing:-17.136000pt;}
.ws13{word-spacing:-17.112000pt;}
.wse0{word-spacing:-17.000000pt;}
.wsb5{word-spacing:-16.866667pt;}
.ws79{word-spacing:-16.805333pt;}
.ws8e{word-spacing:-16.437333pt;}
.ws9f{word-spacing:-16.376000pt;}
.ws5d{word-spacing:-16.200000pt;}
.ws8d{word-spacing:-16.192000pt;}
.wse3{word-spacing:-16.160000pt;}
.ws0{word-spacing:-16.106667pt;}
.ws78{word-spacing:-15.946667pt;}
.wsfd{word-spacing:-15.736000pt;}
.ws11{word-spacing:-15.733333pt;}
.wscf{word-spacing:-15.626667pt;}
.ws6a{word-spacing:-15.578667pt;}
.wsf0{word-spacing:-15.568000pt;}
.ws7a{word-spacing:-15.333333pt;}
.wsef{word-spacing:-15.176000pt;}
.ws28{word-spacing:-15.149333pt;}
.ws2b{word-spacing:-15.026667pt;}
.wsc4{word-spacing:-14.986667pt;}
.ws3c{word-spacing:-14.842667pt;}
.ws94{word-spacing:-14.832000pt;}
.ws5e{word-spacing:-14.781333pt;}
.ws24{word-spacing:-14.597333pt;}
.ws3e{word-spacing:-14.536000pt;}
.ws20{word-spacing:-14.474667pt;}
.ws2a{word-spacing:-14.413333pt;}
.ws14{word-spacing:-14.352000pt;}
.ws25{word-spacing:-14.290667pt;}
.ws3f{word-spacing:-14.229333pt;}
.ws42{word-spacing:-14.168000pt;}
.ws1f{word-spacing:-14.106667pt;}
.ws7b{word-spacing:-14.045333pt;}
.wsa1{word-spacing:-13.984000pt;}
.ws41{word-spacing:-13.922667pt;}
.ws61{word-spacing:-13.861333pt;}
.ws5f{word-spacing:-13.800000pt;}
.ws3b{word-spacing:-13.738667pt;}
.ws21{word-spacing:-13.677333pt;}
.ws29{word-spacing:-13.616000pt;}
.ws27{word-spacing:-13.554667pt;}
.ws43{word-spacing:-13.493333pt;}
.wsee{word-spacing:-13.440000pt;}
.ws40{word-spacing:-13.432000pt;}
.wsff{word-spacing:-13.384000pt;}
.wsc5{word-spacing:-13.333333pt;}
.ws90{word-spacing:-13.309333pt;}
.wsc2{word-spacing:-13.280000pt;}
.ws8f{word-spacing:-13.248000pt;}
.wse4{word-spacing:-13.173333pt;}
.ws1e{word-spacing:-13.125333pt;}
.ws108{word-spacing:-13.120000pt;}
.ws26{word-spacing:-13.064000pt;}
.wsc9{word-spacing:-13.013333pt;}
.wscd{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.906667pt;}
.wsc7{word-spacing:-12.853333pt;}
.wsc1{word-spacing:-12.800000pt;}
.wse2{word-spacing:-12.746667pt;}
.wscc{word-spacing:-12.693333pt;}
.ws3{word-spacing:-12.586667pt;}
.wsb6{word-spacing:-12.576000pt;}
.wsfe{word-spacing:-12.488000pt;}
.ws7f{word-spacing:-12.480000pt;}
.wsc6{word-spacing:-12.426667pt;}
.wsc8{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.266667pt;}
.wse5{word-spacing:-12.213333pt;}
.wsc0{word-spacing:-12.160000pt;}
.ws7e{word-spacing:-12.144000pt;}
.wsb4{word-spacing:-12.082667pt;}
.wsce{word-spacing:-12.000000pt;}
.ws6b{word-spacing:-11.856000pt;}
.wscb{word-spacing:-11.840000pt;}
.ws12{word-spacing:-11.834667pt;}
.wsca{word-spacing:-11.733333pt;}
.ws6c{word-spacing:-11.664000pt;}
.ws92{word-spacing:-11.616000pt;}
.wsc3{word-spacing:-11.573333pt;}
.ws6d{word-spacing:-11.520000pt;}
.ws7d{word-spacing:-11.376000pt;}
.ws7c{word-spacing:-11.280000pt;}
.ws101{word-spacing:-11.253333pt;}
.ws93{word-spacing:-11.184000pt;}
.ws95{word-spacing:-10.848000pt;}
.wsb3{word-spacing:-10.548413pt;}
.ws91{word-spacing:-10.272000pt;}
.ws77{word-spacing:-10.047811pt;}
.wsa0{word-spacing:-9.833267pt;}
.wsad{word-spacing:-9.225392pt;}
.wsaf{word-spacing:-8.034667pt;}
.wsf6{word-spacing:-6.272000pt;}
.wsa9{word-spacing:-6.133333pt;}
.ws102{word-spacing:-5.712000pt;}
.wsf1{word-spacing:-5.600000pt;}
.ws9a{word-spacing:-5.458667pt;}
.ws8{word-spacing:-5.333333pt;}
.ws80{word-spacing:-5.213333pt;}
.wsf8{word-spacing:-5.208000pt;}
.wsfb{word-spacing:-5.096000pt;}
.wsa6{word-spacing:-4.232000pt;}
.ws58{word-spacing:-3.986667pt;}
.wsf2{word-spacing:-3.864000pt;}
.ws83{word-spacing:-3.741333pt;}
.wsd{word-spacing:-3.733333pt;}
.wsf4{word-spacing:-3.528000pt;}
.ws16{word-spacing:-3.285333pt;}
.wsa8{word-spacing:-3.066667pt;}
.ws76{word-spacing:-3.024000pt;}
.ws82{word-spacing:-2.576000pt;}
.wsa5{word-spacing:-2.453333pt;}
.wsb9{word-spacing:-2.269333pt;}
.ws15{word-spacing:-2.133333pt;}
.wsf3{word-spacing:-2.128000pt;}
.ws6f{word-spacing:-2.085333pt;}
.ws9d{word-spacing:-1.872000pt;}
.wsb1{word-spacing:-1.778667pt;}
.ws7{word-spacing:-1.736000pt;}
.ws51{word-spacing:-1.717333pt;}
.ws86{word-spacing:-1.680000pt;}
.ws44{word-spacing:-1.594667pt;}
.wsb{word-spacing:-1.546667pt;}
.ws2c{word-spacing:-1.533333pt;}
.ws55{word-spacing:-1.472000pt;}
.ws56{word-spacing:-1.410667pt;}
.ws4b{word-spacing:-1.226667pt;}
.ws88{word-spacing:-1.200000pt;}
.ws75{word-spacing:-1.152000pt;}
.ws17{word-spacing:-1.120000pt;}
.ws106{word-spacing:-1.066667pt;}
.wsfc{word-spacing:-1.064000pt;}
.ws19{word-spacing:-1.042667pt;}
.ws34{word-spacing:-0.981333pt;}
.ws30{word-spacing:-0.920000pt;}
.ws8b{word-spacing:-0.912000pt;}
.ws70{word-spacing:-0.858667pt;}
.ws74{word-spacing:-0.768000pt;}
.ws96{word-spacing:-0.736000pt;}
.ws59{word-spacing:-0.674667pt;}
.wsf7{word-spacing:-0.672000pt;}
.wse6{word-spacing:-0.640000pt;}
.ws1c{word-spacing:-0.613333pt;}
.ws85{word-spacing:-0.576000pt;}
.wsbd{word-spacing:-0.503712pt;}
.ws5c{word-spacing:-0.490667pt;}
.wsaa{word-spacing:-0.429333pt;}
.ws5a{word-spacing:-0.368000pt;}
.wsb7{word-spacing:-0.245333pt;}
.ws71{word-spacing:-0.192000pt;}
.ws33{word-spacing:-0.184000pt;}
.ws105{word-spacing:-0.168000pt;}
.wsdb{word-spacing:-0.160000pt;}
.wsf9{word-spacing:-0.112000pt;}
.wsd3{word-spacing:-0.106667pt;}
.ws57{word-spacing:-0.061333pt;}
.ws6{word-spacing:0.000000pt;}
.ws9e{word-spacing:0.048000pt;}
.wsab{word-spacing:0.055968pt;}
.ws32{word-spacing:0.061333pt;}
.ws73{word-spacing:0.096000pt;}
.wsde{word-spacing:0.106667pt;}
.ws3a{word-spacing:0.122667pt;}
.ws87{word-spacing:0.144000pt;}
.wse8{word-spacing:0.160000pt;}
.wsb8{word-spacing:0.184000pt;}
.ws8a{word-spacing:0.192000pt;}
.wsc{word-spacing:0.213333pt;}
.ws49{word-spacing:0.245333pt;}
.wse{word-spacing:0.266667pt;}
.wsfa{word-spacing:0.280000pt;}
.ws72{word-spacing:0.288000pt;}
.ws4d{word-spacing:0.306667pt;}
.wsdd{word-spacing:0.320000pt;}
.ws84{word-spacing:0.336000pt;}
.ws66{word-spacing:0.368000pt;}
.wsd5{word-spacing:0.373333pt;}
.ws103{word-spacing:0.392000pt;}
.ws10{word-spacing:0.426667pt;}
.ws4e{word-spacing:0.429333pt;}
.ws9{word-spacing:0.448000pt;}
.wsd4{word-spacing:0.480000pt;}
.wsba{word-spacing:0.490667pt;}
.ws6e{word-spacing:0.504000pt;}
.wsb2{word-spacing:0.531696pt;}
.wse9{word-spacing:0.533333pt;}
.ws2e{word-spacing:0.552000pt;}
.wsf5{word-spacing:0.560000pt;}
.wseb{word-spacing:0.586667pt;}
.ws1a{word-spacing:0.613333pt;}
.wse7{word-spacing:0.640000pt;}
.wsa4{word-spacing:0.674667pt;}
.wsd9{word-spacing:0.693333pt;}
.ws1d{word-spacing:0.736000pt;}
.wsd7{word-spacing:0.746667pt;}
.ws2f{word-spacing:0.797333pt;}
.ws37{word-spacing:0.858667pt;}
.wsd0{word-spacing:0.906667pt;}
.ws36{word-spacing:0.920000pt;}
.wsdc{word-spacing:0.960000pt;}
.ws50{word-spacing:0.981333pt;}
.wsf{word-spacing:1.013333pt;}
.ws4f{word-spacing:1.042667pt;}
.ws104{word-spacing:1.064000pt;}
.ws81{word-spacing:1.104000pt;}
.wsec{word-spacing:1.120000pt;}
.ws62{word-spacing:1.165333pt;}
.wsa{word-spacing:1.173333pt;}
.ws39{word-spacing:1.226667pt;}
.ws4a{word-spacing:1.288000pt;}
.wsd6{word-spacing:1.333333pt;}
.ws4c{word-spacing:1.349333pt;}
.wsd1{word-spacing:1.440000pt;}
.ws2d{word-spacing:1.472000pt;}
.ws107{word-spacing:1.493333pt;}
.ws1b{word-spacing:1.533333pt;}
.ws48{word-spacing:1.594667pt;}
.wsd8{word-spacing:1.600000pt;}
.ws54{word-spacing:1.656000pt;}
.ws68{word-spacing:1.717333pt;}
.ws69{word-spacing:1.901333pt;}
.ws46{word-spacing:2.024000pt;}
.wsdf{word-spacing:2.026667pt;}
.ws109{word-spacing:2.080000pt;}
.ws47{word-spacing:2.085333pt;}
.ws64{word-spacing:2.146667pt;}
.ws52{word-spacing:2.208000pt;}
.wsea{word-spacing:2.240000pt;}
.wsae{word-spacing:2.330667pt;}
.ws65{word-spacing:2.392000pt;}
.ws63{word-spacing:2.453333pt;}
.wsda{word-spacing:2.666667pt;}
.ws9c{word-spacing:2.760000pt;}
.ws53{word-spacing:2.821333pt;}
.wsa2{word-spacing:2.882667pt;}
.ws10a{word-spacing:2.933333pt;}
.wsbc{word-spacing:2.944000pt;}
.ws35{word-spacing:3.005333pt;}
.ws5b{word-spacing:3.066667pt;}
.wsd2{word-spacing:3.146667pt;}
.wsb0{word-spacing:3.312000pt;}
.wsbb{word-spacing:3.373333pt;}
.ws31{word-spacing:3.434667pt;}
.ws38{word-spacing:3.496000pt;}
.ws98{word-spacing:3.528000pt;}
.wsa3{word-spacing:3.680000pt;}
.ws9b{word-spacing:4.293333pt;}
.wsa7{word-spacing:4.354667pt;}
.ws45{word-spacing:4.416000pt;}
.ws67{word-spacing:5.397333pt;}
.ws97{word-spacing:5.904000pt;}
.ws99{word-spacing:6.010667pt;}
.ws18{word-spacing:6.552000pt;}
.wsac{word-spacing:7.247856pt;}
.ws89{word-spacing:38.617920pt;}
.wse1{word-spacing:232.848000pt;}
._f{margin-left:-14.683467pt;}
._18{margin-left:-10.733867pt;}
._1a{margin-left:-9.167467pt;}
._a{margin-left:-8.217600pt;}
._3{margin-left:-6.423200pt;}
._15{margin-left:-5.461067pt;}
._5{margin-left:-4.435200pt;}
._d{margin-left:-3.006400pt;}
._2{margin-left:-2.088800pt;}
._6{margin-left:-1.142400pt;}
._4{width:1.159200pt;}
._1{width:2.133333pt;}
._b{width:3.458667pt;}
._c{width:4.446667pt;}
._7{width:5.551733pt;}
._8{width:7.030400pt;}
._9{width:8.021600pt;}
._12{width:9.049600pt;}
._14{width:10.078133pt;}
._13{width:10.993600pt;}
._1c{width:12.498667pt;}
._1b{width:14.303733pt;}
._1f{width:18.812491pt;}
._19{width:24.681888pt;}
._11{width:26.789600pt;}
._16{width:38.617920pt;}
._17{width:46.982400pt;}
._e{width:63.504000pt;}
._10{width:224.896000pt;}
._1d{width:439.060800pt;}
._1e{width:449.839467pt;}
._0{width:514.133333pt;}
.fsb{font-size:27.984000pt;}
.fsa{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y67{bottom:94.294667pt;}
.yb1{bottom:94.369333pt;}
.yd7{bottom:94.461333pt;}
.y1a1{bottom:94.472000pt;}
.y125{bottom:94.474667pt;}
.yfe{bottom:94.477333pt;}
.y17b{bottom:94.482933pt;}
.y16d{bottom:94.488267pt;}
.y1d{bottom:94.494667pt;}
.y41{bottom:94.501333pt;}
.y1c3{bottom:94.514667pt;}
.y25e{bottom:94.518667pt;}
.y23f{bottom:94.552000pt;}
.y8a{bottom:94.556000pt;}
.y148{bottom:97.150933pt;}
.y1a0{bottom:109.808000pt;}
.y124{bottom:109.810667pt;}
.yfd{bottom:109.813333pt;}
.y17a{bottom:109.818933pt;}
.y66{bottom:112.311333pt;}
.y25d{bottom:112.372000pt;}
.y1c{bottom:112.388000pt;}
.yb0{bottom:112.524000pt;}
.y40{bottom:112.656000pt;}
.y89{bottom:112.787333pt;}
.y23e{bottom:112.920000pt;}
.yd6{bottom:113.091333pt;}
.y1c2{bottom:113.129333pt;}
.y147{bottom:113.593333pt;}
.y19f{bottom:125.144000pt;}
.y123{bottom:125.146667pt;}
.yfc{bottom:125.149333pt;}
.y179{bottom:125.154933pt;}
.y178{bottom:127.817600pt;}
.y146{bottom:128.929333pt;}
.y25c{bottom:130.225333pt;}
.y1b{bottom:130.281333pt;}
.y65{bottom:130.328000pt;}
.yaf{bottom:130.678667pt;}
.y3f{bottom:130.810667pt;}
.y88{bottom:131.018667pt;}
.yd5{bottom:131.721333pt;}
.y1c1{bottom:131.744000pt;}
.y16c{bottom:136.172667pt;}
.y23d{bottom:138.848000pt;}
.y19e{bottom:140.480000pt;}
.y122{bottom:140.482667pt;}
.yfb{bottom:140.485333pt;}
.y145{bottom:144.265333pt;}
.y25b{bottom:148.078667pt;}
.y1a{bottom:148.174667pt;}
.y64{bottom:148.344667pt;}
.yae{bottom:148.833333pt;}
.y3e{bottom:148.965333pt;}
.y87{bottom:149.250000pt;}
.yd4{bottom:150.351333pt;}
.y1c0{bottom:150.358667pt;}
.y16b{bottom:154.680000pt;}
.y19d{bottom:155.816000pt;}
.y121{bottom:155.818667pt;}
.y23c{bottom:157.216000pt;}
.y1fc{bottom:157.300000pt;}
.yfa{bottom:158.484000pt;}
.y144{bottom:162.264000pt;}
.y25a{bottom:165.932000pt;}
.y63{bottom:166.361333pt;}
.y177{bottom:166.957333pt;}
.yad{bottom:166.988000pt;}
.y3d{bottom:167.120000pt;}
.y86{bottom:167.481333pt;}
.y1bf{bottom:168.973333pt;}
.yd3{bottom:168.981333pt;}
.y19c{bottom:171.152000pt;}
.y16a{bottom:173.187333pt;}
.y1fb{bottom:173.300000pt;}
.y120{bottom:173.817333pt;}
.yf9{bottom:174.918667pt;}
.y19{bottom:177.414667pt;}
.y23b{bottom:183.144000pt;}
.y259{bottom:183.785333pt;}
.y62{bottom:184.378000pt;}
.y176{bottom:185.112000pt;}
.yac{bottom:185.142667pt;}
.y3c{bottom:185.274667pt;}
.y85{bottom:185.712667pt;}
.y19b{bottom:186.488000pt;}
.y1be{bottom:187.588000pt;}
.yd2{bottom:187.611333pt;}
.y19a{bottom:189.150667pt;}
.y1fa{bottom:189.300000pt;}
.yf8{bottom:190.254667pt;}
.y11f{bottom:190.260000pt;}
.y169{bottom:191.694667pt;}
.y143{bottom:201.396000pt;}
.y23a{bottom:201.512000pt;}
.y258{bottom:201.638667pt;}
.y61{bottom:202.394667pt;}
.y175{bottom:203.266667pt;}
.yab{bottom:203.297333pt;}
.y3b{bottom:203.429333pt;}
.y84{bottom:203.944000pt;}
.y1f9{bottom:205.300000pt;}
.yf7{bottom:205.590667pt;}
.y11e{bottom:205.596000pt;}
.y1bd{bottom:206.202667pt;}
.yd1{bottom:206.241333pt;}
.y168{bottom:210.202000pt;}
.y142{bottom:219.443333pt;}
.y257{bottom:219.492000pt;}
.y60{bottom:220.411333pt;}
.yf6{bottom:220.926667pt;}
.y11d{bottom:220.932000pt;}
.y1f8{bottom:221.300000pt;}
.y174{bottom:221.421333pt;}
.yaa{bottom:221.452000pt;}
.y3a{bottom:221.584000pt;}
.y18{bottom:221.761333pt;}
.y83{bottom:222.175333pt;}
.yd0{bottom:224.871333pt;}
.y239{bottom:227.440000pt;}
.y199{bottom:228.305333pt;}
.y167{bottom:228.709333pt;}
.yf5{bottom:236.262667pt;}
.y1f7{bottom:237.300000pt;}
.y256{bottom:237.345333pt;}
.y141{bottom:237.490667pt;}
.y5f{bottom:238.428000pt;}
.y11c{bottom:238.930667pt;}
.y173{bottom:239.576000pt;}
.ya9{bottom:239.606667pt;}
.y39{bottom:239.738667pt;}
.y82{bottom:240.406667pt;}
.y17{bottom:240.988000pt;}
.ycf{bottom:243.501333pt;}
.y1bc{bottom:243.718667pt;}
.y238{bottom:245.808000pt;}
.y166{bottom:247.216667pt;}
.y198{bottom:247.441333pt;}
.yf4{bottom:251.598667pt;}
.y200{bottom:253.293333pt;}
.y1f6{bottom:253.300000pt;}
.y255{bottom:255.198667pt;}
.y11b{bottom:255.369333pt;}
.y140{bottom:255.538000pt;}
.y5e{bottom:256.444667pt;}
.y172{bottom:257.730667pt;}
.ya8{bottom:257.761333pt;}
.y38{bottom:257.893333pt;}
.y81{bottom:258.638000pt;}
.yce{bottom:262.131333pt;}
.y165{bottom:265.724000pt;}
.y197{bottom:266.577333pt;}
.y1ff{bottom:269.293333pt;}
.y1f5{bottom:269.300000pt;}
.yf3{bottom:269.597333pt;}
.y11a{bottom:270.705333pt;}
.y237{bottom:271.736000pt;}
.y254{bottom:273.052000pt;}
.y13f{bottom:273.585333pt;}
.y5d{bottom:274.461333pt;}
.y171{bottom:275.885333pt;}
.ya7{bottom:275.916000pt;}
.y37{bottom:276.048000pt;}
.y80{bottom:276.869333pt;}
.y16{bottom:279.122667pt;}
.ycd{bottom:280.761333pt;}
.y164{bottom:284.231333pt;}
.y1fe{bottom:285.293333pt;}
.y1f4{bottom:285.300000pt;}
.y196{bottom:285.713333pt;}
.yf2{bottom:286.033333pt;}
.y119{bottom:286.041333pt;}
.y236{bottom:290.104000pt;}
.y253{bottom:290.905333pt;}
.y13e{bottom:291.632667pt;}
.y5c{bottom:292.478000pt;}
.y21f{bottom:293.322667pt;}
.y170{bottom:294.040000pt;}
.ya6{bottom:294.070667pt;}
.y36{bottom:294.202667pt;}
.y15{bottom:297.016000pt;}
.ycc{bottom:299.391333pt;}
.y1fd{bottom:301.293333pt;}
.y1f3{bottom:301.300000pt;}
.yf1{bottom:301.369333pt;}
.y118{bottom:301.377333pt;}
.y163{bottom:302.738667pt;}
.y195{bottom:304.849333pt;}
.y235{bottom:308.472000pt;}
.y252{bottom:308.758667pt;}
.y21e{bottom:309.322667pt;}
.y13d{bottom:309.680000pt;}
.y5b{bottom:310.494667pt;}
.y16f{bottom:312.194667pt;}
.ya5{bottom:312.225333pt;}
.y35{bottom:312.357333pt;}
.y7f{bottom:314.034667pt;}
.y14{bottom:314.909333pt;}
.yf0{bottom:316.705333pt;}
.y117{bottom:316.713333pt;}
.y1f2{bottom:317.300000pt;}
.ycb{bottom:318.021333pt;}
.y1bb{bottom:318.420000pt;}
.y116{bottom:319.376000pt;}
.y162{bottom:321.246000pt;}
.y194{bottom:323.985333pt;}
.y21d{bottom:325.322667pt;}
.y251{bottom:326.612000pt;}
.y13c{bottom:327.727333pt;}
.y5a{bottom:328.511333pt;}
.y16e{bottom:330.349333pt;}
.ya4{bottom:330.380000pt;}
.y34{bottom:330.512000pt;}
.yef{bottom:332.041333pt;}
.y13{bottom:332.802667pt;}
.y1f1{bottom:333.300000pt;}
.y234{bottom:334.400000pt;}
.y7e{bottom:335.598667pt;}
.y115{bottom:335.821333pt;}
.yca{bottom:336.651333pt;}
.y1ba{bottom:337.034667pt;}
.y161{bottom:339.753333pt;}
.y21c{bottom:341.322667pt;}
.y193{bottom:343.121333pt;}
.y250{bottom:344.465333pt;}
.y13b{bottom:345.774667pt;}
.y59{bottom:346.528000pt;}
.yee{bottom:347.377333pt;}
.ya3{bottom:348.534667pt;}
.y33{bottom:348.666667pt;}
.y1f0{bottom:349.300000pt;}
.y12{bottom:350.696000pt;}
.y114{bottom:351.157333pt;}
.yc9{bottom:355.281333pt;}
.y1b9{bottom:355.649333pt;}
.y7d{bottom:357.162667pt;}
.y21b{bottom:357.322667pt;}
.y160{bottom:358.260667pt;}
.y233{bottom:360.328000pt;}
.y192{bottom:362.257333pt;}
.y24f{bottom:362.318667pt;}
.y13a{bottom:363.822000pt;}
.y58{bottom:364.544667pt;}
.y1ef{bottom:365.300000pt;}
.yed{bottom:365.376000pt;}
.ya2{bottom:366.689333pt;}
.y32{bottom:366.821333pt;}
.y11{bottom:368.589333pt;}
.y113{bottom:369.156000pt;}
.y21a{bottom:373.322667pt;}
.yc8{bottom:373.911333pt;}
.y1b8{bottom:374.264000pt;}
.y15f{bottom:376.768000pt;}
.y232{bottom:378.696000pt;}
.y7c{bottom:378.726667pt;}
.y24e{bottom:380.172000pt;}
.y1ee{bottom:381.300000pt;}
.y191{bottom:381.393333pt;}
.y139{bottom:381.869333pt;}
.y57{bottom:382.561333pt;}
.ya1{bottom:384.844000pt;}
.y31{bottom:384.976000pt;}
.y112{bottom:385.593333pt;}
.y10{bottom:386.482667pt;}
.y219{bottom:389.322667pt;}
.yc7{bottom:392.541333pt;}
.y1b7{bottom:392.878667pt;}
.y15e{bottom:395.275333pt;}
.y231{bottom:397.064000pt;}
.y1ed{bottom:397.300000pt;}
.y24d{bottom:398.025333pt;}
.y138{bottom:399.916667pt;}
.y7b{bottom:400.290667pt;}
.y190{bottom:400.529333pt;}
.y56{bottom:400.578000pt;}
.y111{bottom:400.929333pt;}
.ya0{bottom:402.998667pt;}
.y30{bottom:403.130667pt;}
.yf{bottom:404.376000pt;}
.yec{bottom:404.562667pt;}
.y218{bottom:405.322667pt;}
.yc6{bottom:411.171333pt;}
.y1b6{bottom:411.493333pt;}
.y1ec{bottom:413.300000pt;}
.y15d{bottom:413.782667pt;}
.y24c{bottom:415.878667pt;}
.y110{bottom:416.265333pt;}
.y137{bottom:417.964000pt;}
.y55{bottom:418.594667pt;}
.y18f{bottom:419.665333pt;}
.y9f{bottom:421.153333pt;}
.y2f{bottom:421.285333pt;}
.y217{bottom:421.322667pt;}
.y230{bottom:422.992000pt;}
.yeb{bottom:423.085333pt;}
.y1eb{bottom:429.300000pt;}
.yc5{bottom:429.801333pt;}
.y1b5{bottom:430.108000pt;}
.y10f{bottom:431.601333pt;}
.y15c{bottom:432.290000pt;}
.ye{bottom:433.616000pt;}
.y136{bottom:436.011333pt;}
.y54{bottom:436.611333pt;}
.y216{bottom:437.322667pt;}
.y18e{bottom:438.801333pt;}
.y9e{bottom:439.308000pt;}
.y2e{bottom:439.440000pt;}
.y271{bottom:440.838667pt;}
.y22f{bottom:441.360000pt;}
.yea{bottom:441.608000pt;}
.y24b{bottom:445.065333pt;}
.y1ea{bottom:445.300000pt;}
.y10e{bottom:446.937333pt;}
.yc4{bottom:448.431333pt;}
.y1b4{bottom:448.722667pt;}
.y15b{bottom:450.797333pt;}
.y215{bottom:453.322667pt;}
.y135{bottom:454.058667pt;}
.y53{bottom:454.628000pt;}
.y7a{bottom:456.006000pt;}
.y9d{bottom:457.462667pt;}
.y2d{bottom:457.594667pt;}
.y18d{bottom:457.937333pt;}
.y270{bottom:458.838667pt;}
.ye9{bottom:460.130667pt;}
.y1d6{bottom:460.376000pt;}
.y1e9{bottom:461.300000pt;}
.y10d{bottom:462.273333pt;}
.yc3{bottom:467.061333pt;}
.y22e{bottom:467.288000pt;}
.y1b3{bottom:467.337333pt;}
.y15a{bottom:469.304667pt;}
.y214{bottom:469.322667pt;}
.y134{bottom:472.106000pt;}
.y52{bottom:472.644667pt;}
.y79{bottom:474.237333pt;}
.y9c{bottom:475.617333pt;}
.y2c{bottom:475.749333pt;}
.y26f{bottom:476.838667pt;}
.y18c{bottom:477.073333pt;}
.y1e8{bottom:477.300000pt;}
.y1d5{bottom:478.377333pt;}
.ye8{bottom:478.653333pt;}
.y213{bottom:485.322667pt;}
.yd{bottom:485.520000pt;}
.y22d{bottom:485.656000pt;}
.yc2{bottom:485.691333pt;}
.y1b2{bottom:485.952000pt;}
.y159{bottom:487.812000pt;}
.y133{bottom:490.156667pt;}
.y51{bottom:490.661333pt;}
.y78{bottom:492.468667pt;}
.y1e7{bottom:493.300000pt;}
.y9b{bottom:493.772000pt;}
.y2b{bottom:493.904000pt;}
.y26e{bottom:494.838667pt;}
.y18b{bottom:496.209333pt;}
.y1d4{bottom:496.378667pt;}
.y24a{bottom:496.916000pt;}
.ye7{bottom:497.176000pt;}
.y212{bottom:501.322667pt;}
.y10c{bottom:504.052000pt;}
.yc1{bottom:504.321333pt;}
.y1b1{bottom:504.566667pt;}
.y158{bottom:506.319333pt;}
.y132{bottom:508.204000pt;}
.y50{bottom:508.678000pt;}
.y1e6{bottom:509.300000pt;}
.yc{bottom:510.085333pt;}
.y77{bottom:510.700000pt;}
.y22c{bottom:511.584000pt;}
.y9a{bottom:511.926667pt;}
.y2a{bottom:512.058667pt;}
.y1d3{bottom:514.380000pt;}
.y18a{bottom:515.345333pt;}
.ye6{bottom:515.698667pt;}
.y211{bottom:517.322667pt;}
.y249{bottom:521.444000pt;}
.yc0{bottom:522.951333pt;}
.y1b0{bottom:523.181333pt;}
.y26d{bottom:524.172000pt;}
.y157{bottom:524.826667pt;}
.y1e5{bottom:525.300000pt;}
.y10b{bottom:525.365333pt;}
.y131{bottom:526.251333pt;}
.y4f{bottom:526.694667pt;}
.y76{bottom:528.931333pt;}
.y22b{bottom:529.952000pt;}
.y99{bottom:530.081333pt;}
.y29{bottom:530.213333pt;}
.y1d2{bottom:532.381333pt;}
.y210{bottom:533.322667pt;}
.ye5{bottom:534.221333pt;}
.y189{bottom:534.481333pt;}
.yb{bottom:534.650667pt;}
.y1e4{bottom:541.300000pt;}
.ybf{bottom:541.581333pt;}
.y1af{bottom:541.796000pt;}
.y156{bottom:543.334000pt;}
.y130{bottom:544.298667pt;}
.y4e{bottom:544.711333pt;}
.y248{bottom:545.972000pt;}
.y10a{bottom:546.678667pt;}
.y75{bottom:547.162667pt;}
.y98{bottom:548.236000pt;}
.y20f{bottom:549.322667pt;}
.y1d1{bottom:550.382667pt;}
.ye4{bottom:552.744000pt;}
.y188{bottom:553.617333pt;}
.y22a{bottom:555.880000pt;}
.y1e3{bottom:557.300000pt;}
.ybe{bottom:560.211333pt;}
.y1ae{bottom:560.410667pt;}
.y26c{bottom:561.065333pt;}
.y155{bottom:561.841333pt;}
.y12f{bottom:562.346000pt;}
.y4d{bottom:562.728000pt;}
.y20e{bottom:565.322667pt;}
.y74{bottom:565.394000pt;}
.y97{bottom:566.390667pt;}
.y28{bottom:567.265333pt;}
.y109{bottom:567.957333pt;}
.y1d0{bottom:568.384000pt;}
.y247{bottom:570.500000pt;}
.ye3{bottom:571.266667pt;}
.y187{bottom:572.753333pt;}
.y1e2{bottom:573.300000pt;}
.ya{bottom:578.116000pt;}
.y26b{bottom:578.398667pt;}
.ybd{bottom:578.841333pt;}
.y1ad{bottom:579.025333pt;}
.y154{bottom:580.348667pt;}
.y12e{bottom:580.393333pt;}
.y20d{bottom:581.322667pt;}
.y229{bottom:581.808000pt;}
.y73{bottom:583.625333pt;}
.y96{bottom:584.545333pt;}
.y1cf{bottom:586.385333pt;}
.y108{bottom:589.270667pt;}
.y1e1{bottom:589.300000pt;}
.ye2{bottom:589.789333pt;}
.y186{bottom:591.905333pt;}
.y26a{bottom:595.732000pt;}
.y20c{bottom:597.322667pt;}
.ybc{bottom:597.471333pt;}
.y1ac{bottom:597.640000pt;}
.y12d{bottom:598.440667pt;}
.y153{bottom:598.856000pt;}
.y4c{bottom:599.630667pt;}
.y228{bottom:600.176000pt;}
.y72{bottom:601.856667pt;}
.y95{bottom:602.700000pt;}
.y1ce{bottom:604.386667pt;}
.y1e0{bottom:605.300000pt;}
.y9{bottom:606.676000pt;}
.ye1{bottom:608.328000pt;}
.y107{bottom:610.584000pt;}
.y185{bottom:611.041333pt;}
.y269{bottom:613.065333pt;}
.y20b{bottom:613.322667pt;}
.ybb{bottom:616.101333pt;}
.y1ab{bottom:616.254667pt;}
.y12c{bottom:616.488000pt;}
.y152{bottom:617.363333pt;}
.y71{bottom:620.088000pt;}
.y94{bottom:620.854667pt;}
.y4b{bottom:620.978667pt;}
.y1df{bottom:621.300000pt;}
.y1cd{bottom:622.388000pt;}
.y227{bottom:626.104000pt;}
.ye0{bottom:626.850667pt;}
.y20a{bottom:629.322667pt;}
.y184{bottom:630.177333pt;}
.y268{bottom:630.398667pt;}
.y106{bottom:631.897333pt;}
.yba{bottom:634.731333pt;}
.y1aa{bottom:634.869333pt;}
.y8{bottom:635.236000pt;}
.y151{bottom:635.835333pt;}
.y1de{bottom:637.300000pt;}
.y70{bottom:638.319333pt;}
.y93{bottom:639.009333pt;}
.y1cc{bottom:640.389333pt;}
.y27{bottom:640.916000pt;}
.y226{bottom:644.472000pt;}
.y209{bottom:645.322667pt;}
.ydf{bottom:645.373333pt;}
.y267{bottom:647.732000pt;}
.y183{bottom:649.313333pt;}
.y246{bottom:650.954000pt;}
.y105{bottom:653.210667pt;}
.y1dd{bottom:653.300000pt;}
.yb9{bottom:653.361333pt;}
.y12b{bottom:653.429333pt;}
.y1a9{bottom:653.484000pt;}
.y150{bottom:654.342667pt;}
.y6f{bottom:656.550667pt;}
.y92{bottom:657.164000pt;}
.y1cb{bottom:658.390667pt;}
.y26{bottom:659.742667pt;}
.y208{bottom:661.322667pt;}
.y7{bottom:663.796000pt;}
.yde{bottom:663.912000pt;}
.y266{bottom:665.065333pt;}
.y182{bottom:668.449333pt;}
.y1dc{bottom:669.300000pt;}
.y245{bottom:669.476000pt;}
.y225{bottom:670.400000pt;}
.yb8{bottom:671.991333pt;}
.y1a8{bottom:672.098667pt;}
.y14f{bottom:672.850000pt;}
.y104{bottom:674.524000pt;}
.y6e{bottom:674.782000pt;}
.y12a{bottom:674.813333pt;}
.y91{bottom:675.318667pt;}
.y4a{bottom:676.284667pt;}
.y1ca{bottom:676.392000pt;}
.y207{bottom:677.322667pt;}
.y25{bottom:678.569333pt;}
.y265{bottom:682.398667pt;}
.ydd{bottom:682.434667pt;}
.y1db{bottom:685.300000pt;}
.y181{bottom:687.585333pt;}
.y224{bottom:688.768000pt;}
.yb7{bottom:690.621333pt;}
.y1a7{bottom:690.713333pt;}
.y14e{bottom:691.357333pt;}
.y6d{bottom:693.013333pt;}
.y206{bottom:693.322667pt;}
.y90{bottom:693.473333pt;}
.y49{bottom:694.301333pt;}
.y1c9{bottom:694.393333pt;}
.y244{bottom:695.558000pt;}
.y103{bottom:695.837333pt;}
.y264{bottom:699.732000pt;}
.ydc{bottom:700.957333pt;}
.y1da{bottom:701.300000pt;}
.y180{bottom:706.721333pt;}
.yb6{bottom:709.251333pt;}
.y205{bottom:709.322667pt;}
.y1a6{bottom:709.328000pt;}
.y14d{bottom:709.864667pt;}
.y6c{bottom:711.244667pt;}
.y8f{bottom:711.628000pt;}
.y48{bottom:712.318000pt;}
.y1c8{bottom:712.394667pt;}
.y243{bottom:714.080000pt;}
.y223{bottom:714.696000pt;}
.y24{bottom:716.265333pt;}
.y263{bottom:717.065333pt;}
.y102{bottom:717.150667pt;}
.y1d9{bottom:717.300000pt;}
.y6{bottom:718.818667pt;}
.ydb{bottom:719.480000pt;}
.y204{bottom:725.322667pt;}
.y17f{bottom:725.857333pt;}
.yb5{bottom:727.881333pt;}
.y1a5{bottom:727.942667pt;}
.y14c{bottom:728.372000pt;}
.y6b{bottom:729.476000pt;}
.y8e{bottom:729.782667pt;}
.y129{bottom:730.212000pt;}
.y47{bottom:730.334667pt;}
.y1c7{bottom:730.396000pt;}
.y222{bottom:733.064000pt;}
.y23{bottom:733.758667pt;}
.y262{bottom:734.398667pt;}
.y1d8{bottom:737.500000pt;}
.y5{bottom:738.045333pt;}
.y101{bottom:738.464000pt;}
.y242{bottom:740.162000pt;}
.y203{bottom:741.322667pt;}
.y17e{bottom:744.993333pt;}
.yb4{bottom:746.511333pt;}
.y1a4{bottom:746.557333pt;}
.y14b{bottom:746.879333pt;}
.y6a{bottom:747.707333pt;}
.y8d{bottom:747.937333pt;}
.y128{bottom:748.259333pt;}
.y46{bottom:748.351333pt;}
.y1c6{bottom:748.397333pt;}
.y22{bottom:751.252000pt;}
.y261{bottom:751.732000pt;}
.yda{bottom:756.888000pt;}
.y4{bottom:757.272000pt;}
.y202{bottom:757.322667pt;}
.y241{bottom:758.684000pt;}
.y221{bottom:758.992000pt;}
.y100{bottom:759.777333pt;}
.y17d{bottom:764.129333pt;}
.yb3{bottom:765.141333pt;}
.y1a3{bottom:765.172000pt;}
.y1d7{bottom:765.382667pt;}
.y14a{bottom:765.386667pt;}
.y69{bottom:765.938667pt;}
.y8c{bottom:766.092000pt;}
.y127{bottom:766.306667pt;}
.y45{bottom:766.368000pt;}
.y1c5{bottom:766.398667pt;}
.y21{bottom:768.745333pt;}
.y260{bottom:769.065333pt;}
.y220{bottom:777.360000pt;}
.y201{bottom:777.522667pt;}
.yd9{bottom:778.758000pt;}
.yff{bottom:781.088000pt;}
.y17c{bottom:783.265333pt;}
.yb2{bottom:783.771333pt;}
.y1a2{bottom:783.786667pt;}
.y149{bottom:783.894000pt;}
.y3{bottom:784.058667pt;}
.y68{bottom:784.170000pt;}
.y8b{bottom:784.246667pt;}
.y126{bottom:784.354000pt;}
.y44{bottom:784.384667pt;}
.y1c4{bottom:784.400000pt;}
.y240{bottom:784.766000pt;}
.y20{bottom:786.238667pt;}
.y25f{bottom:786.398667pt;}
.yd8{bottom:800.628000pt;}
.y43{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y1f{bottom:803.732000pt;}
.y1e{bottom:842.834667pt;}
.y42{bottom:858.834667pt;}
.h11{height:23.761805pt;}
.h14{height:24.526992pt;}
.he{height:31.419646pt;}
.h8{height:37.395833pt;}
.hc{height:37.536833pt;}
.hd{height:42.070312pt;}
.h4{height:46.744792pt;}
.hf{height:48.187500pt;}
.h3{height:49.082031pt;}
.h7{height:53.541667pt;}
.ha{height:53.756510pt;}
.h10{height:53.895177pt;}
.h15{height:56.218750pt;}
.h2{height:58.430990pt;}
.hb{height:61.572917pt;}
.h13{height:61.714250pt;}
.h9{height:63.105469pt;}
.h6{height:65.442708pt;}
.h12{height:72.281250pt;}
.h5{height:84.140625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:71.585333pt;}
.x5{left:73.079333pt;}
.x6{left:74.338800pt;}
.x1{left:75.590533pt;}
.xa{left:80.354533pt;}
.xb{left:83.567867pt;}
.x4{left:93.358667pt;}
.x3{left:94.546667pt;}
.x8{left:96.455867pt;}
.xd{left:167.621200pt;}
.x7{left:205.708000pt;}
.x2{left:207.480000pt;}
.xc{left:328.954533pt;}
.xe{left:410.661200pt;}
}




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