
    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_41a54bc7a1a15347b8e5ce43.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_0f5559b27c9cbcb826b605b1.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_b8849ccad555386d288e2955.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a745a44fad9e0d94878a995b.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_b5c0871488937e0b5d2d5e22.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1da434f85f868779242087f6.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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_637007a53a1787befe2e8f0b.woff')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.v4{vertical-align:11.982000px;}
.v6{vertical-align:13.980000px;}
.v1{vertical-align:16.815000px;}
.v5{vertical-align:20.976000px;}
.ls8d{letter-spacing:-6.762000px;}
.ls35{letter-spacing:-5.244000px;}
.ls38{letter-spacing:-5.175000px;}
.ls6c{letter-spacing:-4.899000px;}
.ls89{letter-spacing:-4.416000px;}
.lsb0{letter-spacing:-4.221000px;}
.ls4c{letter-spacing:-4.200000px;}
.ls7d{letter-spacing:-4.140000px;}
.ls76{letter-spacing:-3.933000px;}
.ls3c{letter-spacing:-3.795000px;}
.ls51{letter-spacing:-3.726000px;}
.ls9a{letter-spacing:-3.450000px;}
.ls15{letter-spacing:-3.375000px;}
.ls6a{letter-spacing:-3.312000px;}
.ls61{letter-spacing:-2.967000px;}
.ls8e{letter-spacing:-2.829000px;}
.ls73{letter-spacing:-2.760000px;}
.ls4f{letter-spacing:-2.691000px;}
.ls3e{letter-spacing:-2.622000px;}
.ls45{letter-spacing:-2.484000px;}
.ls88{letter-spacing:-2.415000px;}
.ls2b{letter-spacing:-2.346000px;}
.ls2e{letter-spacing:-2.277000px;}
.ls7c{letter-spacing:-2.208000px;}
.ls55{letter-spacing:-2.187000px;}
.lsb4{letter-spacing:-2.142000px;}
.ls3f{letter-spacing:-2.139000px;}
.ls54{letter-spacing:-2.109000px;}
.ls91{letter-spacing:-2.070000px;}
.ls18{letter-spacing:-2.001000px;}
.lsbb{letter-spacing:-1.953000px;}
.ls1f{letter-spacing:-1.932000px;}
.ls6d{letter-spacing:-1.890000px;}
.ls36{letter-spacing:-1.863000px;}
.lsbd{letter-spacing:-1.827000px;}
.ls2d{letter-spacing:-1.794000px;}
.lsb8{letter-spacing:-1.764000px;}
.ls41{letter-spacing:-1.725000px;}
.ls1c{letter-spacing:-1.656000px;}
.ls50{letter-spacing:-1.587000px;}
.ls1e{letter-spacing:-1.518000px;}
.ls27{letter-spacing:-1.512000px;}
.ls26{letter-spacing:-1.458000px;}
.ls34{letter-spacing:-1.449000px;}
.ls4a{letter-spacing:-1.404000px;}
.lsc2{letter-spacing:-1.386000px;}
.ls33{letter-spacing:-1.380000px;}
.ls1b{letter-spacing:-1.311000px;}
.lsaf{letter-spacing:-1.260000px;}
.ls39{letter-spacing:-1.242000px;}
.ls9d{letter-spacing:-1.215000px;}
.lsb3{letter-spacing:-1.197000px;}
.ls31{letter-spacing:-1.173000px;}
.ls5a{letter-spacing:-1.134000px;}
.ls2f{letter-spacing:-1.104000px;}
.ls86{letter-spacing:-1.086129px;}
.ls3a{letter-spacing:-1.035000px;}
.ls20{letter-spacing:-0.972000px;}
.ls16{letter-spacing:-0.966000px;}
.lsbc{letter-spacing:-0.945000px;}
.ls77{letter-spacing:-0.925221px;}
.ls19{letter-spacing:-0.897000px;}
.lsae{letter-spacing:-0.882000px;}
.ls11{letter-spacing:-0.864000px;}
.ls10{letter-spacing:-0.855000px;}
.ls1a{letter-spacing:-0.828000px;}
.ls59{letter-spacing:-0.810000px;}
.ls1d{letter-spacing:-0.759000px;}
.ls57{letter-spacing:-0.756000px;}
.ls93{letter-spacing:-0.724086px;}
.lsaa{letter-spacing:-0.693000px;}
.ls37{letter-spacing:-0.690000px;}
.ls99{letter-spacing:-0.683859px;}
.ls12{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.621000px;}
.ls8f{letter-spacing:-0.603405px;}
.ls80{letter-spacing:-0.598158px;}
.lsac{letter-spacing:-0.567000px;}
.ls3b{letter-spacing:-0.552000px;}
.ls6e{letter-spacing:-0.486000px;}
.ls3d{letter-spacing:-0.483000px;}
.lsc6{letter-spacing:-0.480000px;}
.ls9c{letter-spacing:-0.442497px;}
.lsab{letter-spacing:-0.441000px;}
.ls67{letter-spacing:-0.432000px;}
.ls6b{letter-spacing:-0.414000px;}
.ls9f{letter-spacing:-0.409266px;}
.lsd{letter-spacing:-0.405000px;}
.ls25{letter-spacing:-0.378000px;}
.ls96{letter-spacing:-0.346302px;}
.lsf{letter-spacing:-0.345000px;}
.ls8b{letter-spacing:-0.330561px;}
.lsc1{letter-spacing:-0.315000px;}
.ls72{letter-spacing:-0.300000px;}
.ls32{letter-spacing:-0.276000px;}
.ls58{letter-spacing:-0.270000px;}
.lsa6{letter-spacing:-0.252000px;}
.ls75{letter-spacing:-0.241362px;}
.ls6{letter-spacing:-0.240000px;}
.lsa0{letter-spacing:-0.220374px;}
.ls46{letter-spacing:-0.207000px;}
.ls7e{letter-spacing:-0.201135px;}
.ls82{letter-spacing:-0.162000px;}
.ls42{letter-spacing:-0.138000px;}
.lsc7{letter-spacing:-0.120000px;}
.ls66{letter-spacing:-0.108000px;}
.ls2c{letter-spacing:-0.069000px;}
.ls7f{letter-spacing:-0.062964px;}
.ls65{letter-spacing:-0.054000px;}
.ls4{letter-spacing:0.000000px;}
.ls53{letter-spacing:0.004500px;}
.ls98{letter-spacing:0.009570px;}
.lsb1{letter-spacing:0.030000px;}
.ls95{letter-spacing:0.054000px;}
.ls87{letter-spacing:0.069000px;}
.ls94{letter-spacing:0.094446px;}
.ls49{letter-spacing:0.108000px;}
.lsa2{letter-spacing:0.138000px;}
.ls23{letter-spacing:0.162000px;}
.ls8{letter-spacing:0.240000px;}
.lsb5{letter-spacing:0.252000px;}
.ls22{letter-spacing:0.270000px;}
.ls40{letter-spacing:0.345000px;}
.ls24{letter-spacing:0.378000px;}
.ls62{letter-spacing:0.414000px;}
.ls83{letter-spacing:0.540000px;}
.ls64{letter-spacing:0.552000px;}
.ls7a{letter-spacing:0.563178px;}
.ls81{letter-spacing:0.566676px;}
.lsb{letter-spacing:0.586500px;}
.ls60{letter-spacing:0.604500px;}
.ls7b{letter-spacing:0.621000px;}
.ls1{letter-spacing:0.675000px;}
.lsa5{letter-spacing:0.693000px;}
.lsa1{letter-spacing:0.702000px;}
.ls17{letter-spacing:0.759000px;}
.ls9e{letter-spacing:0.828000px;}
.lsc0{letter-spacing:0.882000px;}
.ls8c{letter-spacing:0.897000px;}
.lsb9{letter-spacing:0.945000px;}
.ls92{letter-spacing:0.966000px;}
.ls47{letter-spacing:1.104000px;}
.ls9b{letter-spacing:1.173000px;}
.ls90{letter-spacing:1.242000px;}
.lsc8{letter-spacing:1.260000px;}
.ls21{letter-spacing:1.350000px;}
.ls68{letter-spacing:1.384698px;}
.lsb6{letter-spacing:1.386000px;}
.ls8a{letter-spacing:1.482000px;}
.ls3{letter-spacing:1.512000px;}
.ls63{letter-spacing:1.587000px;}
.ls78{letter-spacing:1.656000px;}
.lsbe{letter-spacing:1.890000px;}
.ls5f{letter-spacing:2.008500px;}
.ls5d{letter-spacing:2.050500px;}
.ls4d{letter-spacing:2.139000px;}
.ls85{letter-spacing:2.203095px;}
.lsa7{letter-spacing:2.394000px;}
.ls14{letter-spacing:2.400000px;}
.ls79{letter-spacing:2.415000px;}
.ls84{letter-spacing:2.701095px;}
.lsc{letter-spacing:3.696000px;}
.lsc5{letter-spacing:3.720000px;}
.ls48{letter-spacing:3.726000px;}
.lsa9{letter-spacing:4.347000px;}
.ls29{letter-spacing:4.494000px;}
.ls56{letter-spacing:4.623000px;}
.ls9{letter-spacing:5.460000px;}
.lsba{letter-spacing:5.481000px;}
.lsb7{letter-spacing:5.670000px;}
.lsbf{letter-spacing:5.733000px;}
.lsa4{letter-spacing:5.796000px;}
.ls5{letter-spacing:5.820000px;}
.lsa8{letter-spacing:5.859000px;}
.ls7{letter-spacing:5.880000px;}
.lsc3{letter-spacing:5.922000px;}
.ls2{letter-spacing:6.000000px;}
.lsa3{letter-spacing:6.300000px;}
.lsc4{letter-spacing:6.426000px;}
.ls74{letter-spacing:7.107000px;}
.lsad{letter-spacing:7.497000px;}
.ls4e{letter-spacing:7.728000px;}
.ls70{letter-spacing:8.160156px;}
.ls71{letter-spacing:8.160756px;}
.ls30{letter-spacing:12.075000px;}
.ls44{letter-spacing:13.179000px;}
.ls69{letter-spacing:59.185158px;}
.ls0{letter-spacing:465.799200px;}
.ls6f{letter-spacing:467.554200px;}
.lsb2{letter-spacing:468.191400px;}
.ls97{letter-spacing:468.491400px;}
.ls2a{letter-spacing:472.144200px;}
.ls13{letter-spacing:473.771400px;}
.ls5e{letter-spacing:474.184200px;}
.ls5b{letter-spacing:474.551400px;}
.ls4b{letter-spacing:475.511400px;}
.lsa{letter-spacing:952.524000px;}
.ls43{letter-spacing:953.022000px;}
.ls52{letter-spacing:955.644000px;}
.ls5c{letter-spacing:959.694000px;}
.ls28{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;}
}
.ws2{word-spacing:-22.740000px;}
.wsa{word-spacing:-22.356000px;}
.ws0{word-spacing:-21.750000px;}
.wsa6{word-spacing:-21.546000px;}
.wsbe{word-spacing:-21.105000px;}
.ws75{word-spacing:-20.775000px;}
.wscd{word-spacing:-20.580000px;}
.ws3c{word-spacing:-19.389000px;}
.wsb{word-spacing:-19.044000px;}
.ws5d{word-spacing:-18.768000px;}
.wsc1{word-spacing:-18.648000px;}
.ws7a{word-spacing:-18.630000px;}
.ws12{word-spacing:-18.423000px;}
.ws55{word-spacing:-18.354000px;}
.ws94{word-spacing:-18.144000px;}
.ws97{word-spacing:-18.009000px;}
.ws5c{word-spacing:-17.820000px;}
.ws11{word-spacing:-17.700000px;}
.ws66{word-spacing:-17.457000px;}
.wsae{word-spacing:-17.451000px;}
.ws76{word-spacing:-16.974000px;}
.ws40{word-spacing:-16.905000px;}
.ws54{word-spacing:-16.875000px;}
.ws71{word-spacing:-16.629000px;}
.ws3b{word-spacing:-16.560000px;}
.wsbf{word-spacing:-16.506000px;}
.ws39{word-spacing:-16.491000px;}
.ws2c{word-spacing:-16.422000px;}
.ws35{word-spacing:-16.353000px;}
.ws2a{word-spacing:-16.296000px;}
.ws4a{word-spacing:-16.284000px;}
.ws67{word-spacing:-16.215000px;}
.ws14{word-spacing:-16.146000px;}
.ws38{word-spacing:-16.008000px;}
.ws3a{word-spacing:-15.939000px;}
.ws2f{word-spacing:-15.870000px;}
.ws37{word-spacing:-15.801000px;}
.ws15{word-spacing:-15.732000px;}
.ws31{word-spacing:-15.663000px;}
.ws32{word-spacing:-15.594000px;}
.wsc3{word-spacing:-15.561000px;}
.ws17{word-spacing:-15.525000px;}
.ws16{word-spacing:-15.387000px;}
.ws3f{word-spacing:-15.318000px;}
.ws2d{word-spacing:-15.249000px;}
.ws34{word-spacing:-15.180000px;}
.wsc4{word-spacing:-15.120000px;}
.ws18{word-spacing:-15.111000px;}
.ws30{word-spacing:-15.042000px;}
.ws3e{word-spacing:-14.904000px;}
.wsaf{word-spacing:-14.868000px;}
.ws92{word-spacing:-14.835000px;}
.ws2e{word-spacing:-14.766000px;}
.ws2b{word-spacing:-14.697000px;}
.wsb0{word-spacing:-14.679000px;}
.ws91{word-spacing:-14.628000px;}
.ws49{word-spacing:-14.559000px;}
.ws3d{word-spacing:-14.421000px;}
.wsce{word-spacing:-14.340000px;}
.wsc0{word-spacing:-13.797000px;}
.ws4b{word-spacing:-13.770000px;}
.ws70{word-spacing:-13.731000px;}
.ws1a{word-spacing:-13.716000px;}
.wsc2{word-spacing:-13.608000px;}
.wsb1{word-spacing:-13.482000px;}
.ws98{word-spacing:-13.392000px;}
.ws6a{word-spacing:-13.338000px;}
.ws1{word-spacing:-13.314000px;}
.ws68{word-spacing:-13.230000px;}
.ws4e{word-spacing:-13.179000px;}
.ws7c{word-spacing:-13.176000px;}
.ws5f{word-spacing:-13.068000px;}
.ws69{word-spacing:-12.906000px;}
.ws93{word-spacing:-12.627000px;}
.ws5e{word-spacing:-12.582000px;}
.ws60{word-spacing:-12.528000px;}
.ws19{word-spacing:-12.366000px;}
.ws61{word-spacing:-12.204000px;}
.ws72{word-spacing:-12.144000px;}
.ws99{word-spacing:-12.096000px;}
.ws45{word-spacing:-12.075000px;}
.ws1b{word-spacing:-11.880000px;}
.ws36{word-spacing:-11.868000px;}
.ws79{word-spacing:-11.866965px;}
.ws33{word-spacing:-11.799000px;}
.ws13{word-spacing:-11.303787px;}
.ws7b{word-spacing:-11.102652px;}
.ws77{word-spacing:-11.062425px;}
.wsa5{word-spacing:-10.861290px;}
.ws96{word-spacing:-10.700382px;}
.wsa4{word-spacing:-10.619928px;}
.ws78{word-spacing:-10.378566px;}
.ws95{word-spacing:-10.281000px;}
.ws90{word-spacing:-10.217658px;}
.ws58{word-spacing:-7.728000px;}
.wsbb{word-spacing:-7.497000px;}
.ws7f{word-spacing:-7.107000px;}
.wsd5{word-spacing:-6.426000px;}
.wsb3{word-spacing:-6.300000px;}
.ws4{word-spacing:-6.000000px;}
.wsd4{word-spacing:-5.922000px;}
.ws9{word-spacing:-5.880000px;}
.wsb7{word-spacing:-5.859000px;}
.ws5{word-spacing:-5.820000px;}
.wsb4{word-spacing:-5.796000px;}
.wsd0{word-spacing:-5.733000px;}
.wsc8{word-spacing:-5.670000px;}
.wsca{word-spacing:-5.481000px;}
.ws8{word-spacing:-5.460000px;}
.ws63{word-spacing:-4.623000px;}
.wsb8{word-spacing:-4.347000px;}
.ws52{word-spacing:-3.726000px;}
.wsc{word-spacing:-3.696000px;}
.ws83{word-spacing:-2.415000px;}
.ws1c{word-spacing:-2.400000px;}
.wsb6{word-spacing:-2.394000px;}
.ws57{word-spacing:-2.139000px;}
.wscf{word-spacing:-1.890000px;}
.ws82{word-spacing:-1.656000px;}
.ws6c{word-spacing:-1.587000px;}
.ws27{word-spacing:-1.512000px;}
.ws9b{word-spacing:-1.482000px;}
.wsc7{word-spacing:-1.386000px;}
.ws22{word-spacing:-1.350000px;}
.wsd8{word-spacing:-1.260000px;}
.ws9f{word-spacing:-1.242000px;}
.wsa8{word-spacing:-1.173000px;}
.ws51{word-spacing:-1.104000px;}
.ws9d{word-spacing:-0.897000px;}
.wsd1{word-spacing:-0.882000px;}
.wsaa{word-spacing:-0.828000px;}
.ws1d{word-spacing:-0.759000px;}
.wsad{word-spacing:-0.702000px;}
.wsb5{word-spacing:-0.693000px;}
.ws84{word-spacing:-0.621000px;}
.ws8c{word-spacing:-0.566676px;}
.ws6d{word-spacing:-0.552000px;}
.ws8f{word-spacing:-0.540000px;}
.ws6e{word-spacing:-0.414000px;}
.wsc9{word-spacing:-0.378000px;}
.ws48{word-spacing:-0.345000px;}
.ws23{word-spacing:-0.270000px;}
.wsc6{word-spacing:-0.252000px;}
.ws7{word-spacing:-0.240000px;}
.ws24{word-spacing:-0.162000px;}
.wsb2{word-spacing:-0.138000px;}
.ws53{word-spacing:-0.108000px;}
.wsa2{word-spacing:-0.094446px;}
.ws9a{word-spacing:-0.069000px;}
.ws3{word-spacing:0.000000px;}
.ws6f{word-spacing:0.054000px;}
.ws8a{word-spacing:0.062964px;}
.ws41{word-spacing:0.069000px;}
.wsd7{word-spacing:0.120000px;}
.ws80{word-spacing:0.138000px;}
.ws8e{word-spacing:0.162000px;}
.ws50{word-spacing:0.207000px;}
.wsac{word-spacing:0.220374px;}
.ws6{word-spacing:0.240000px;}
.ws47{word-spacing:0.276000px;}
.wsd2{word-spacing:0.315000px;}
.ws9c{word-spacing:0.330561px;}
.ws4f{word-spacing:0.345000px;}
.wsa3{word-spacing:0.346302px;}
.ws28{word-spacing:0.378000px;}
.wsab{word-spacing:0.409266px;}
.wsb9{word-spacing:0.441000px;}
.wsd6{word-spacing:0.480000px;}
.ws74{word-spacing:0.486000px;}
.ws85{word-spacing:0.552000px;}
.wsba{word-spacing:0.567000px;}
.ws8b{word-spacing:0.598158px;}
.wsd{word-spacing:0.621000px;}
.ws10{word-spacing:0.648000px;}
.ws4d{word-spacing:0.690000px;}
.wsa1{word-spacing:0.724086px;}
.wsbc{word-spacing:0.756000px;}
.ws20{word-spacing:0.759000px;}
.ws1f{word-spacing:0.828000px;}
.wse{word-spacing:0.855000px;}
.wsf{word-spacing:0.864000px;}
.ws42{word-spacing:0.897000px;}
.wscb{word-spacing:0.945000px;}
.ws21{word-spacing:0.966000px;}
.ws26{word-spacing:0.972000px;}
.ws56{word-spacing:1.035000px;}
.ws44{word-spacing:1.104000px;}
.ws8d{word-spacing:1.134000px;}
.ws7d{word-spacing:1.242000px;}
.wsbd{word-spacing:1.260000px;}
.ws64{word-spacing:1.311000px;}
.wsd3{word-spacing:1.386000px;}
.ws29{word-spacing:1.512000px;}
.ws46{word-spacing:1.518000px;}
.ws5a{word-spacing:1.587000px;}
.ws86{word-spacing:1.656000px;}
.ws43{word-spacing:1.794000px;}
.wscc{word-spacing:1.827000px;}
.ws89{word-spacing:1.863000px;}
.ws73{word-spacing:1.890000px;}
.ws1e{word-spacing:2.001000px;}
.wsa0{word-spacing:2.070000px;}
.ws62{word-spacing:2.109000px;}
.wsc5{word-spacing:2.142000px;}
.ws87{word-spacing:2.208000px;}
.wsa9{word-spacing:2.622000px;}
.ws59{word-spacing:2.691000px;}
.ws7e{word-spacing:2.760000px;}
.ws9e{word-spacing:2.829000px;}
.ws6b{word-spacing:2.967000px;}
.wsa7{word-spacing:3.450000px;}
.ws5b{word-spacing:3.726000px;}
.ws81{word-spacing:3.933000px;}
.ws88{word-spacing:4.140000px;}
.ws4c{word-spacing:5.175000px;}
.ws65{word-spacing:43.445160px;}
.ws25{word-spacing:59.186160px;}
._21{margin-left:-22.454400px;}
._17{margin-left:-19.645500px;}
._20{margin-left:-18.630000px;}
._1f{margin-left:-16.582500px;}
._1d{margin-left:-14.328300px;}
._1a{margin-left:-13.055700px;}
._1b{margin-left:-11.853300px;}
._1c{margin-left:-10.773000px;}
._1e{margin-left:-8.374800px;}
._19{margin-left:-7.317900px;}
._5{margin-left:-5.416800px;}
._6{margin-left:-3.883200px;}
._3{margin-left:-2.765700px;}
._4{margin-left:-1.584000px;}
._0{width:1.183200px;}
._2{width:2.280000px;}
._7{width:3.525300px;}
._b{width:4.602300px;}
._1{width:6.184800px;}
._f{width:7.187100px;}
._8{width:8.292000px;}
._14{width:9.293100px;}
._9{width:10.312800px;}
._a{width:11.572500px;}
._10{width:12.823200px;}
._15{width:13.914600px;}
._16{width:15.303600px;}
._12{width:18.116700px;}
._25{width:19.153800px;}
._24{width:21.924600px;}
._11{width:23.535000px;}
._22{width:24.862500px;}
._28{width:26.184600px;}
._23{width:27.767124px;}
._27{width:31.760700px;}
._26{width:32.763600px;}
._13{width:43.445160px;}
._c{width:50.652000px;}
._18{width:65.496000px;}
._e{width:253.008000px;}
._d{width:578.400000px;}
.fc0{color:rgb(36,31,31);}
.fsb{font-size:31.482000px;}
.fsf{font-size:34.980000px;}
.fs9{font-size:40.227000px;}
.fs3{font-size:42.000000px;}
.fse{font-size:47.223000px;}
.fsd{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fs7{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y231{bottom:106.119000px;}
.yea{bottom:106.165500px;}
.y214{bottom:106.212000px;}
.yc3{bottom:106.257000px;}
.y6c{bottom:106.266000px;}
.y14d{bottom:106.275000px;}
.y128{bottom:106.278000px;}
.y74{bottom:106.281000px;}
.y40{bottom:106.284000px;}
.y173{bottom:106.293300px;}
.y9b{bottom:106.296300px;}
.y1e{bottom:106.317000px;}
.y250{bottom:106.339500px;}
.y1d5{bottom:109.294800px;}
.yc2{bottom:123.510000px;}
.y6b{bottom:123.519000px;}
.y14c{bottom:123.528000px;}
.y127{bottom:123.531000px;}
.y73{bottom:123.534000px;}
.y3f{bottom:123.537000px;}
.y172{bottom:123.546300px;}
.y9a{bottom:123.549300px;}
.y1d{bottom:126.102000px;}
.y1ba{bottom:126.544800px;}
.ye9{bottom:126.589500px;}
.y24f{bottom:126.799500px;}
.y213{bottom:127.758000px;}
.y1d4{bottom:127.798200px;}
.y230{bottom:136.107000px;}
.yc1{bottom:140.763000px;}
.y6a{bottom:140.772000px;}
.y14b{bottom:140.781000px;}
.y126{bottom:140.784000px;}
.y72{bottom:140.787000px;}
.y3e{bottom:140.790000px;}
.y171{bottom:143.794800px;}
.y1b9{bottom:145.048500px;}
.y1c{bottom:145.887000px;}
.ye8{bottom:147.013500px;}
.y24e{bottom:147.259500px;}
.y1d3{bottom:148.046700px;}
.y212{bottom:149.304000px;}
.yc0{bottom:158.016000px;}
.y69{bottom:158.025000px;}
.y14a{bottom:158.034000px;}
.y125{bottom:158.037000px;}
.y71{bottom:158.040000px;}
.y3d{bottom:158.043000px;}
.y170{bottom:162.298500px;}
.y1b8{bottom:165.297000px;}
.y1b{bottom:165.672000px;}
.y22f{bottom:166.095000px;}
.y1d2{bottom:166.551000px;}
.ye7{bottom:167.437500px;}
.y24d{bottom:167.719500px;}
.y99{bottom:170.352750px;}
.y211{bottom:170.850000px;}
.ybf{bottom:175.269000px;}
.y68{bottom:175.278000px;}
.y149{bottom:175.287000px;}
.y124{bottom:175.290000px;}
.y70{bottom:175.293000px;}
.y3c{bottom:175.296000px;}
.y16f{bottom:182.547000px;}
.y1a{bottom:185.457000px;}
.y1b7{bottom:186.799500px;}
.y22e{bottom:187.578000px;}
.ye6{bottom:187.861500px;}
.y98{bottom:191.277000px;}
.y1f4{bottom:191.970750px;}
.ybe{bottom:192.522000px;}
.y67{bottom:192.531000px;}
.y148{bottom:192.540000px;}
.y123{bottom:192.543000px;}
.y6f{bottom:192.546000px;}
.y3b{bottom:195.544500px;}
.y210{bottom:200.901000px;}
.y24c{bottom:200.944500px;}
.y19{bottom:205.242000px;}
.y1d1{bottom:205.302000px;}
.ye5{bottom:208.285500px;}
.y1b6{bottom:208.300500px;}
.y22d{bottom:209.061000px;}
.y196{bottom:209.763000px;}
.ybd{bottom:209.775000px;}
.y66{bottom:209.784000px;}
.y147{bottom:209.793000px;}
.y122{bottom:209.796000px;}
.y6e{bottom:209.799000px;}
.y97{bottom:212.201250px;}
.y1f3{bottom:212.860500px;}
.y20f{bottom:222.447000px;}
.y1d0{bottom:222.555000px;}
.y16e{bottom:226.521000px;}
.y195{bottom:227.016000px;}
.ybc{bottom:227.028000px;}
.y65{bottom:227.037000px;}
.y146{bottom:227.046000px;}
.y121{bottom:227.049000px;}
.ye4{bottom:228.709500px;}
.y120{bottom:230.044500px;}
.y96{bottom:233.125500px;}
.y1f2{bottom:233.750250px;}
.y18{bottom:237.792000px;}
.y22c{bottom:239.049000px;}
.y3a{bottom:239.571750px;}
.y24b{bottom:242.674500px;}
.y11f{bottom:244.242000px;}
.y194{bottom:244.269000px;}
.ybb{bottom:244.281000px;}
.y64{bottom:244.290000px;}
.y16d{bottom:247.014000px;}
.y145{bottom:247.294500px;}
.ye3{bottom:249.133500px;}
.y1b5{bottom:252.376500px;}
.y20e{bottom:252.498000px;}
.y95{bottom:254.049750px;}
.y1f1{bottom:254.640000px;}
.y39{bottom:260.116500px;}
.y22b{bottom:260.532000px;}
.y11e{bottom:261.495000px;}
.y193{bottom:261.522000px;}
.yba{bottom:261.534000px;}
.y63{bottom:261.543000px;}
.y24a{bottom:262.384500px;}
.y144{bottom:265.789500px;}
.y16c{bottom:267.507000px;}
.y6d{bottom:269.158500px;}
.ye2{bottom:269.557500px;}
.y1cf{bottom:272.421000px;}
.y1b4{bottom:273.352500px;}
.y20d{bottom:274.044000px;}
.y94{bottom:274.974000px;}
.y1f0{bottom:275.529750px;}
.y11d{bottom:278.748000px;}
.y192{bottom:278.775000px;}
.yb9{bottom:278.787000px;}
.y62{bottom:278.796000px;}
.y249{bottom:282.094500px;}
.y143{bottom:283.042500px;}
.y76{bottom:286.546500px;}
.y17{bottom:287.337000px;}
.y16b{bottom:288.000000px;}
.ye1{bottom:289.981500px;}
.y22a{bottom:290.520000px;}
.y1ce{bottom:292.672500px;}
.y1b3{bottom:294.328500px;}
.y93{bottom:295.898250px;}
.y11c{bottom:296.001000px;}
.y191{bottom:296.028000px;}
.yb8{bottom:296.040000px;}
.y100{bottom:296.049000px;}
.y1ef{bottom:296.419500px;}
.y61{bottom:299.044500px;}
.y142{bottom:300.295500px;}
.y248{bottom:301.804500px;}
.y38{bottom:301.930500px;}
.y20c{bottom:304.095000px;}
.y75{bottom:306.796500px;}
.y16a{bottom:308.493000px;}
.ye0{bottom:310.405500px;}
.y229{bottom:312.003000px;}
.y1cd{bottom:312.924000px;}
.y11b{bottom:313.254000px;}
.y190{bottom:313.281000px;}
.yb7{bottom:313.293000px;}
.y1b2{bottom:315.304500px;}
.y92{bottom:316.822500px;}
.y1ee{bottom:317.309250px;}
.y60{bottom:317.539500px;}
.y141{bottom:317.548500px;}
.y247{bottom:321.514500px;}
.y37{bottom:326.230500px;}
.y169{bottom:328.986000px;}
.y16{bottom:329.907000px;}
.y11a{bottom:330.507000px;}
.y18f{bottom:330.534000px;}
.yb6{bottom:330.546000px;}
.ydf{bottom:330.829500px;}
.y20b{bottom:334.146000px;}
.y5f{bottom:334.792500px;}
.y1b1{bottom:336.280500px;}
.y91{bottom:337.746750px;}
.y140{bottom:337.797000px;}
.y1ed{bottom:338.199000px;}
.y246{bottom:341.224500px;}
.y228{bottom:341.991000px;}
.yff{bottom:343.073250px;}
.y119{bottom:347.760000px;}
.y18e{bottom:347.787000px;}
.y168{bottom:349.479000px;}
.y15{bottom:349.692000px;}
.yb5{bottom:350.794500px;}
.yde{bottom:351.253500px;}
.y5e{bottom:352.045500px;}
.y1cc{bottom:353.424000px;}
.y20a{bottom:355.692000px;}
.y1b0{bottom:357.256500px;}
.y90{bottom:358.671000px;}
.y1ec{bottom:359.088750px;}
.y245{bottom:360.934500px;}
.yfe{bottom:363.514500px;}
.y118{bottom:365.013000px;}
.y18d{bottom:365.040000px;}
.y5d{bottom:369.298500px;}
.y14{bottom:369.477000px;}
.y167{bottom:369.972000px;}
.ydd{bottom:371.677500px;}
.y227{bottom:371.979000px;}
.y209{bottom:377.238000px;}
.y1af{bottom:378.232500px;}
.y8f{bottom:379.595250px;}
.y1eb{bottom:379.978500px;}
.y244{bottom:380.644500px;}
.y117{bottom:382.266000px;}
.y18c{bottom:382.293000px;}
.yfd{bottom:383.955750px;}
.y5c{bottom:386.551500px;}
.y36{bottom:388.890750px;}
.y13{bottom:389.262000px;}
.y5b{bottom:389.547000px;}
.y166{bottom:390.465000px;}
.ydc{bottom:392.101500px;}
.y226{bottom:393.462000px;}
.yb4{bottom:394.699500px;}
.y1ae{bottom:399.208500px;}
.y116{bottom:399.519000px;}
.y18b{bottom:399.546000px;}
.y243{bottom:400.354500px;}
.y8e{bottom:400.519500px;}
.y1ea{bottom:400.868250px;}
.y5a{bottom:403.759500px;}
.yfc{bottom:404.412750px;}
.y208{bottom:407.289000px;}
.y12{bottom:409.047000px;}
.y35{bottom:409.435500px;}
.y165{bottom:410.958000px;}
.ydb{bottom:412.525500px;}
.yb3{bottom:415.020000px;}
.y13f{bottom:416.679000px;}
.y115{bottom:416.772000px;}
.y18a{bottom:416.781000px;}
.y242{bottom:420.064500px;}
.y1ad{bottom:420.184500px;}
.y59{bottom:421.012500px;}
.y8d{bottom:421.443750px;}
.y1e9{bottom:421.758000px;}
.y225{bottom:423.450000px;}
.yfb{bottom:424.854000px;}
.y11{bottom:428.832000px;}
.y207{bottom:428.835000px;}
.y34{bottom:429.980250px;}
.y164{bottom:431.451000px;}
.yda{bottom:432.949500px;}
.y114{bottom:434.025000px;}
.y189{bottom:434.034000px;}
.yb2{bottom:435.340500px;}
.y13e{bottom:436.930500px;}
.y58{bottom:438.265500px;}
.y241{bottom:439.774500px;}
.y1ac{bottom:441.160500px;}
.y8c{bottom:442.368000px;}
.y1e8{bottom:442.647750px;}
.y224{bottom:444.933000px;}
.yfa{bottom:445.295250px;}
.y10{bottom:448.617000px;}
.y33{bottom:450.525000px;}
.y113{bottom:451.278000px;}
.y188{bottom:451.287000px;}
.y163{bottom:451.855500px;}
.yd9{bottom:453.373500px;}
.y57{bottom:455.518500px;}
.yb1{bottom:455.661000px;}
.y13d{bottom:457.182000px;}
.y206{bottom:458.886000px;}
.y240{bottom:459.484500px;}
.y1ab{bottom:462.136500px;}
.y8b{bottom:463.292250px;}
.y1e7{bottom:463.537500px;}
.yf9{bottom:465.736500px;}
.yf{bottom:468.402000px;}
.y112{bottom:468.531000px;}
.y187{bottom:468.540000px;}
.y32{bottom:471.069750px;}
.y162{bottom:472.348500px;}
.y56{bottom:472.771500px;}
.yd8{bottom:473.797500px;}
.y1cb{bottom:474.921000px;}
.yb0{bottom:475.981500px;}
.y13c{bottom:477.433500px;}
.y23f{bottom:479.194500px;}
.y205{bottom:480.432000px;}
.y1aa{bottom:483.112500px;}
.y8a{bottom:484.216500px;}
.y111{bottom:485.784000px;}
.y186{bottom:485.793000px;}
.yf8{bottom:486.177750px;}
.ye{bottom:488.187000px;}
.y55{bottom:490.024500px;}
.y31{bottom:491.614500px;}
.y161{bottom:492.841500px;}
.yd7{bottom:494.221500px;}
.y1ca{bottom:495.172500px;}
.yaf{bottom:496.302000px;}
.y223{bottom:496.404000px;}
.y13b{bottom:497.685000px;}
.y23e{bottom:498.904500px;}
.y204{bottom:501.978000px;}
.y110{bottom:503.037000px;}
.y185{bottom:503.046000px;}
.y1a9{bottom:504.088500px;}
.y89{bottom:505.140750px;}
.y1e6{bottom:505.680000px;}
.yf7{bottom:506.619000px;}
.y54{bottom:507.277500px;}
.yd{bottom:507.972000px;}
.y30{bottom:512.159250px;}
.y160{bottom:513.334500px;}
.yd6{bottom:514.645500px;}
.y1c9{bottom:515.422500px;}
.yae{bottom:516.622500px;}
.y222{bottom:517.887000px;}
.y13a{bottom:517.936500px;}
.y10f{bottom:520.290000px;}
.y184{bottom:520.299000px;}
.y53{bottom:524.530500px;}
.y1a8{bottom:525.064500px;}
.y88{bottom:526.065000px;}
.y23d{bottom:531.379500px;}
.y203{bottom:532.029000px;}
.y2f{bottom:532.704000px;}
.y15f{bottom:533.827500px;}
.yd5{bottom:535.069500px;}
.y1c8{bottom:535.662000px;}
.yad{bottom:536.943000px;}
.y10e{bottom:537.543000px;}
.y139{bottom:538.188000px;}
.yc{bottom:540.522000px;}
.y52{bottom:541.783500px;}
.y1a7{bottom:546.076500px;}
.y87{bottom:546.989250px;}
.y221{bottom:547.875000px;}
.yf6{bottom:548.323500px;}
.y2e{bottom:553.248750px;}
.y202{bottom:553.575000px;}
.y15e{bottom:554.320500px;}
.y10d{bottom:554.796000px;}
.yd4{bottom:555.493500px;}
.y1c7{bottom:555.913500px;}
.yac{bottom:557.263500px;}
.y138{bottom:558.439500px;}
.y51{bottom:559.036500px;}
.y1a6{bottom:567.052500px;}
.y183{bottom:567.361500px;}
.y86{bottom:567.913500px;}
.y1e5{bottom:568.559250px;}
.y10c{bottom:572.049000px;}
.y2d{bottom:573.793500px;}
.y15d{bottom:574.813500px;}
.yd3{bottom:575.917500px;}
.y1c6{bottom:576.165000px;}
.y50{bottom:576.289500px;}
.yab{bottom:577.584000px;}
.y220{bottom:577.863000px;}
.y137{bottom:578.691000px;}
.y201{bottom:583.626000px;}
.y1a5{bottom:588.028500px;}
.y182{bottom:588.320250px;}
.y85{bottom:588.837750px;}
.y23c{bottom:589.357500px;}
.y1e4{bottom:589.449000px;}
.y4f{bottom:593.542500px;}
.y2c{bottom:594.338250px;}
.y15c{bottom:595.306500px;}
.yd2{bottom:596.341500px;}
.y1c5{bottom:596.416500px;}
.yaa{bottom:597.904500px;}
.yb{bottom:598.587000px;}
.y136{bottom:598.942500px;}
.y200{bottom:605.172000px;}
.y21f{bottom:607.851000px;}
.y1a4{bottom:609.004500px;}
.y181{bottom:609.279000px;}
.y84{bottom:609.762000px;}
.y1e3{bottom:610.338750px;}
.yf5{bottom:610.788750px;}
.y4e{bottom:610.795500px;}
.y2b{bottom:614.922750px;}
.y15b{bottom:615.799500px;}
.y23b{bottom:616.573500px;}
.y1c4{bottom:616.668000px;}
.yd1{bottom:616.765500px;}
.ya9{bottom:618.225000px;}
.y135{bottom:619.194000px;}
.ya{bottom:625.866000px;}
.y4d{bottom:628.048500px;}
.y1a3{bottom:629.980500px;}
.y180{bottom:630.237750px;}
.y83{bottom:630.686250px;}
.y1e2{bottom:631.221750px;}
.yf4{bottom:631.230000px;}
.y1ff{bottom:635.223000px;}
.y2a{bottom:635.467500px;}
.y15a{bottom:636.292500px;}
.y1c3{bottom:636.919500px;}
.yd0{bottom:637.189500px;}
.y21e{bottom:637.839000px;}
.ya8{bottom:638.545500px;}
.y134{bottom:639.445500px;}
.y4c{bottom:648.297000px;}
.y1a2{bottom:650.956500px;}
.y17f{bottom:651.196500px;}
.y82{bottom:651.610500px;}
.y1e1{bottom:652.096500px;}
.y29{bottom:656.012250px;}
.y159{bottom:656.785500px;}
.y1c2{bottom:657.171000px;}
.ycf{bottom:657.613500px;}
.ya7{bottom:658.866000px;}
.y21d{bottom:659.322000px;}
.y133{bottom:659.697000px;}
.y1a1{bottom:671.932500px;}
.y17e{bottom:672.155250px;}
.y81{bottom:672.534750px;}
.yf3{bottom:672.929250px;}
.y1e0{bottom:672.986250px;}
.y9{bottom:674.442000px;}
.y28{bottom:676.557000px;}
.y158{bottom:677.278500px;}
.y1c1{bottom:677.422500px;}
.yce{bottom:678.037500px;}
.ya6{bottom:679.186500px;}
.y10b{bottom:679.935000px;}
.y132{bottom:679.948500px;}
.y23a{bottom:685.545750px;}
.y1fe{bottom:687.249000px;}
.y21c{bottom:689.310000px;}
.y4b{bottom:692.308500px;}
.y1a0{bottom:692.908500px;}
.y17d{bottom:693.114000px;}
.y80{bottom:693.459000px;}
.y1df{bottom:693.804000px;}
.y27{bottom:697.101750px;}
.yf2{bottom:697.128000px;}
.y1c0{bottom:697.674000px;}
.y157{bottom:697.771500px;}
.ycd{bottom:698.461500px;}
.ya5{bottom:699.507000px;}
.y10a{bottom:700.186500px;}
.y131{bottom:700.200000px;}
.y239{bottom:706.005000px;}
.y8{bottom:706.221000px;}
.y1fd{bottom:708.794250px;}
.y21b{bottom:710.793000px;}
.y4a{bottom:713.316000px;}
.y19f{bottom:713.884500px;}
.y17c{bottom:714.072750px;}
.y7f{bottom:714.383250px;}
.y1de{bottom:714.693750px;}
.y26{bottom:717.646500px;}
.y156{bottom:718.264500px;}
.ycc{bottom:718.885500px;}
.ya4{bottom:719.827500px;}
.y109{bottom:720.438000px;}
.y130{bottom:720.439500px;}
.y1fc{bottom:730.339500px;}
.y49{bottom:734.361000px;}
.y19e{bottom:734.893500px;}
.y238{bottom:734.969250px;}
.y17b{bottom:735.031500px;}
.y7e{bottom:735.307500px;}
.y1dd{bottom:735.583500px;}
.y7{bottom:738.000000px;}
.y155{bottom:738.757500px;}
.y1bf{bottom:739.183500px;}
.ycb{bottom:739.309500px;}
.ya3{bottom:740.148000px;}
.y108{bottom:740.689500px;}
.y12f{bottom:740.691000px;}
.y21a{bottom:740.781000px;}
.y1fb{bottom:751.884750px;}
.y48{bottom:755.406000px;}
.y237{bottom:755.428500px;}
.y19d{bottom:755.869500px;}
.y17a{bottom:755.990250px;}
.y7d{bottom:756.231750px;}
.y1dc{bottom:756.473250px;}
.y154{bottom:759.250500px;}
.y25{bottom:759.459000px;}
.yf1{bottom:759.612750px;}
.yca{bottom:759.733500px;}
.ya2{bottom:760.468500px;}
.y107{bottom:760.941000px;}
.y12e{bottom:760.942500px;}
.y6{bottom:769.779000px;}
.y219{bottom:770.769000px;}
.y1fa{bottom:773.430000px;}
.y47{bottom:776.451000px;}
.y19c{bottom:776.845500px;}
.y179{bottom:776.949000px;}
.y7c{bottom:777.156000px;}
.y1db{bottom:777.363000px;}
.y153{bottom:779.743500px;}
.yf0{bottom:780.054000px;}
.yc9{bottom:780.157500px;}
.ya1{bottom:780.789000px;}
.y106{bottom:781.192500px;}
.y12d{bottom:781.194000px;}
.y236{bottom:784.392750px;}
.y218{bottom:792.252000px;}
.y1f9{bottom:794.975250px;}
.y46{bottom:797.496000px;}
.y19b{bottom:797.821500px;}
.y178{bottom:797.907750px;}
.y7b{bottom:798.080250px;}
.y1da{bottom:798.252750px;}
.y152{bottom:800.236500px;}
.yef{bottom:800.495250px;}
.yc8{bottom:800.581500px;}
.ya0{bottom:801.109500px;}
.y105{bottom:801.444000px;}
.y12c{bottom:801.445500px;}
.y1be{bottom:801.450000px;}
.y235{bottom:804.852000px;}
.y1f8{bottom:816.520500px;}
.y45{bottom:818.541000px;}
.y19a{bottom:818.797500px;}
.y177{bottom:818.866500px;}
.y7a{bottom:819.004500px;}
.y1d9{bottom:819.142500px;}
.y151{bottom:820.729500px;}
.yee{bottom:820.936500px;}
.yc7{bottom:821.005500px;}
.y9f{bottom:821.430000px;}
.y104{bottom:821.695500px;}
.y12b{bottom:821.697000px;}
.y1bd{bottom:821.698500px;}
.y24{bottom:822.030000px;}
.y217{bottom:822.240000px;}
.y5{bottom:831.336000px;}
.y234{bottom:833.816250px;}
.y1f7{bottom:838.065750px;}
.y44{bottom:839.566500px;}
.y199{bottom:839.773500px;}
.y176{bottom:839.825250px;}
.y79{bottom:839.928750px;}
.y1d8{bottom:840.032250px;}
.y150{bottom:841.222500px;}
.yed{bottom:841.377750px;}
.yc6{bottom:841.429500px;}
.y9e{bottom:841.750500px;}
.y103{bottom:841.947000px;}
.y12a{bottom:841.948500px;}
.y1bc{bottom:841.950000px;}
.y216{bottom:852.228000px;}
.y4{bottom:852.621000px;}
.y233{bottom:854.275500px;}
.y1f6{bottom:859.611000px;}
.y43{bottom:860.611500px;}
.y198{bottom:860.749500px;}
.y175{bottom:860.784000px;}
.y78{bottom:860.853000px;}
.y1d7{bottom:860.922000px;}
.y14f{bottom:861.715500px;}
.yec{bottom:861.819000px;}
.yc5{bottom:861.853500px;}
.y9d{bottom:862.060500px;}
.y102{bottom:862.198500px;}
.y129{bottom:862.200000px;}
.y23{bottom:864.598500px;}
.y1bb{bottom:866.445000px;}
.y1f5{bottom:881.156250px;}
.y42{bottom:881.656500px;}
.y197{bottom:881.725500px;}
.y174{bottom:881.742750px;}
.y77{bottom:881.777250px;}
.y1d6{bottom:881.811750px;}
.y14e{bottom:882.208500px;}
.y215{bottom:882.216000px;}
.yeb{bottom:882.260250px;}
.yc4{bottom:882.277500px;}
.y9c{bottom:882.381000px;}
.y3{bottom:882.411000px;}
.y101{bottom:882.450000px;}
.y232{bottom:883.239750px;}
.y22{bottom:884.398500px;}
.y41{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y21{bottom:904.198500px;}
.y20{bottom:948.189000px;}
.y1f{bottom:966.189000px;}
.h11{height:26.732030px;}
.ha{height:35.347102px;}
.hd{height:42.070312px;}
.h15{height:42.228937px;}
.hc{height:47.329102px;}
.h7{height:50.947266px;}
.h19{height:52.295531px;}
.h4{height:52.587891px;}
.hb{height:54.210938px;}
.h18{height:54.282938px;}
.h3{height:55.217285px;}
.h1d{height:58.589355px;}
.h21{height:60.234375px;}
.h9{height:60.476074px;}
.h13{height:60.482074px;}
.h14{height:60.524074px;}
.he{height:60.554074px;}
.h17{height:60.650074px;}
.h20{height:63.246094px;}
.h2{height:65.734863px;}
.h10{height:69.269531px;}
.h1c{height:69.275531px;}
.h1a{height:69.281531px;}
.h1b{height:69.317531px;}
.h1f{height:69.329531px;}
.hf{height:69.419531px;}
.h1e{height:69.557531px;}
.h16{height:69.623531px;}
.h8{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;}
.xa{left:80.652450px;}
.x9{left:82.515450px;}
.x1{left:83.686650px;}
.x6{left:85.395000px;}
.x8{left:104.236350px;}
.x5{left:105.885000px;}
.xc{left:200.575500px;}
.xb{left:201.934500px;}
.x7{left:212.665500px;}
.x3{left:230.463000px;}
.x4{left:232.138500px;}
.x2{left:233.344500px;}
@media print{
.v3{vertical-align:-15.088000pt;}
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.650667pt;}
.v6{vertical-align:12.426667pt;}
.v1{vertical-align:14.946667pt;}
.v5{vertical-align:18.645333pt;}
.ls8d{letter-spacing:-6.010667pt;}
.ls35{letter-spacing:-4.661333pt;}
.ls38{letter-spacing:-4.600000pt;}
.ls6c{letter-spacing:-4.354667pt;}
.ls89{letter-spacing:-3.925333pt;}
.lsb0{letter-spacing:-3.752000pt;}
.ls4c{letter-spacing:-3.733333pt;}
.ls7d{letter-spacing:-3.680000pt;}
.ls76{letter-spacing:-3.496000pt;}
.ls3c{letter-spacing:-3.373333pt;}
.ls51{letter-spacing:-3.312000pt;}
.ls9a{letter-spacing:-3.066667pt;}
.ls15{letter-spacing:-3.000000pt;}
.ls6a{letter-spacing:-2.944000pt;}
.ls61{letter-spacing:-2.637333pt;}
.ls8e{letter-spacing:-2.514667pt;}
.ls73{letter-spacing:-2.453333pt;}
.ls4f{letter-spacing:-2.392000pt;}
.ls3e{letter-spacing:-2.330667pt;}
.ls45{letter-spacing:-2.208000pt;}
.ls88{letter-spacing:-2.146667pt;}
.ls2b{letter-spacing:-2.085333pt;}
.ls2e{letter-spacing:-2.024000pt;}
.ls7c{letter-spacing:-1.962667pt;}
.ls55{letter-spacing:-1.944000pt;}
.lsb4{letter-spacing:-1.904000pt;}
.ls3f{letter-spacing:-1.901333pt;}
.ls54{letter-spacing:-1.874667pt;}
.ls91{letter-spacing:-1.840000pt;}
.ls18{letter-spacing:-1.778667pt;}
.lsbb{letter-spacing:-1.736000pt;}
.ls1f{letter-spacing:-1.717333pt;}
.ls6d{letter-spacing:-1.680000pt;}
.ls36{letter-spacing:-1.656000pt;}
.lsbd{letter-spacing:-1.624000pt;}
.ls2d{letter-spacing:-1.594667pt;}
.lsb8{letter-spacing:-1.568000pt;}
.ls41{letter-spacing:-1.533333pt;}
.ls1c{letter-spacing:-1.472000pt;}
.ls50{letter-spacing:-1.410667pt;}
.ls1e{letter-spacing:-1.349333pt;}
.ls27{letter-spacing:-1.344000pt;}
.ls26{letter-spacing:-1.296000pt;}
.ls34{letter-spacing:-1.288000pt;}
.ls4a{letter-spacing:-1.248000pt;}
.lsc2{letter-spacing:-1.232000pt;}
.ls33{letter-spacing:-1.226667pt;}
.ls1b{letter-spacing:-1.165333pt;}
.lsaf{letter-spacing:-1.120000pt;}
.ls39{letter-spacing:-1.104000pt;}
.ls9d{letter-spacing:-1.080000pt;}
.lsb3{letter-spacing:-1.064000pt;}
.ls31{letter-spacing:-1.042667pt;}
.ls5a{letter-spacing:-1.008000pt;}
.ls2f{letter-spacing:-0.981333pt;}
.ls86{letter-spacing:-0.965448pt;}
.ls3a{letter-spacing:-0.920000pt;}
.ls20{letter-spacing:-0.864000pt;}
.ls16{letter-spacing:-0.858667pt;}
.lsbc{letter-spacing:-0.840000pt;}
.ls77{letter-spacing:-0.822419pt;}
.ls19{letter-spacing:-0.797333pt;}
.lsae{letter-spacing:-0.784000pt;}
.ls11{letter-spacing:-0.768000pt;}
.ls10{letter-spacing:-0.760000pt;}
.ls1a{letter-spacing:-0.736000pt;}
.ls59{letter-spacing:-0.720000pt;}
.ls1d{letter-spacing:-0.674667pt;}
.ls57{letter-spacing:-0.672000pt;}
.ls93{letter-spacing:-0.643632pt;}
.lsaa{letter-spacing:-0.616000pt;}
.ls37{letter-spacing:-0.613333pt;}
.ls99{letter-spacing:-0.607875pt;}
.ls12{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.552000pt;}
.ls8f{letter-spacing:-0.536360pt;}
.ls80{letter-spacing:-0.531696pt;}
.lsac{letter-spacing:-0.504000pt;}
.ls3b{letter-spacing:-0.490667pt;}
.ls6e{letter-spacing:-0.432000pt;}
.ls3d{letter-spacing:-0.429333pt;}
.lsc6{letter-spacing:-0.426667pt;}
.ls9c{letter-spacing:-0.393331pt;}
.lsab{letter-spacing:-0.392000pt;}
.ls67{letter-spacing:-0.384000pt;}
.ls6b{letter-spacing:-0.368000pt;}
.ls9f{letter-spacing:-0.363792pt;}
.lsd{letter-spacing:-0.360000pt;}
.ls25{letter-spacing:-0.336000pt;}
.ls96{letter-spacing:-0.307824pt;}
.lsf{letter-spacing:-0.306667pt;}
.ls8b{letter-spacing:-0.293832pt;}
.lsc1{letter-spacing:-0.280000pt;}
.ls72{letter-spacing:-0.266667pt;}
.ls32{letter-spacing:-0.245333pt;}
.ls58{letter-spacing:-0.240000pt;}
.lsa6{letter-spacing:-0.224000pt;}
.ls75{letter-spacing:-0.214544pt;}
.ls6{letter-spacing:-0.213333pt;}
.lsa0{letter-spacing:-0.195888pt;}
.ls46{letter-spacing:-0.184000pt;}
.ls7e{letter-spacing:-0.178787pt;}
.ls82{letter-spacing:-0.144000pt;}
.ls42{letter-spacing:-0.122667pt;}
.lsc7{letter-spacing:-0.106667pt;}
.ls66{letter-spacing:-0.096000pt;}
.ls2c{letter-spacing:-0.061333pt;}
.ls7f{letter-spacing:-0.055968pt;}
.ls65{letter-spacing:-0.048000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls53{letter-spacing:0.004000pt;}
.ls98{letter-spacing:0.008507pt;}
.lsb1{letter-spacing:0.026667pt;}
.ls95{letter-spacing:0.048000pt;}
.ls87{letter-spacing:0.061333pt;}
.ls94{letter-spacing:0.083952pt;}
.ls49{letter-spacing:0.096000pt;}
.lsa2{letter-spacing:0.122667pt;}
.ls23{letter-spacing:0.144000pt;}
.ls8{letter-spacing:0.213333pt;}
.lsb5{letter-spacing:0.224000pt;}
.ls22{letter-spacing:0.240000pt;}
.ls40{letter-spacing:0.306667pt;}
.ls24{letter-spacing:0.336000pt;}
.ls62{letter-spacing:0.368000pt;}
.ls83{letter-spacing:0.480000pt;}
.ls64{letter-spacing:0.490667pt;}
.ls7a{letter-spacing:0.500603pt;}
.ls81{letter-spacing:0.503712pt;}
.lsb{letter-spacing:0.521333pt;}
.ls60{letter-spacing:0.537333pt;}
.ls7b{letter-spacing:0.552000pt;}
.ls1{letter-spacing:0.600000pt;}
.lsa5{letter-spacing:0.616000pt;}
.lsa1{letter-spacing:0.624000pt;}
.ls17{letter-spacing:0.674667pt;}
.ls9e{letter-spacing:0.736000pt;}
.lsc0{letter-spacing:0.784000pt;}
.ls8c{letter-spacing:0.797333pt;}
.lsb9{letter-spacing:0.840000pt;}
.ls92{letter-spacing:0.858667pt;}
.ls47{letter-spacing:0.981333pt;}
.ls9b{letter-spacing:1.042667pt;}
.ls90{letter-spacing:1.104000pt;}
.lsc8{letter-spacing:1.120000pt;}
.ls21{letter-spacing:1.200000pt;}
.ls68{letter-spacing:1.230843pt;}
.lsb6{letter-spacing:1.232000pt;}
.ls8a{letter-spacing:1.317333pt;}
.ls3{letter-spacing:1.344000pt;}
.ls63{letter-spacing:1.410667pt;}
.ls78{letter-spacing:1.472000pt;}
.lsbe{letter-spacing:1.680000pt;}
.ls5f{letter-spacing:1.785333pt;}
.ls5d{letter-spacing:1.822667pt;}
.ls4d{letter-spacing:1.901333pt;}
.ls85{letter-spacing:1.958307pt;}
.lsa7{letter-spacing:2.128000pt;}
.ls14{letter-spacing:2.133333pt;}
.ls79{letter-spacing:2.146667pt;}
.ls84{letter-spacing:2.400973pt;}
.lsc{letter-spacing:3.285333pt;}
.lsc5{letter-spacing:3.306667pt;}
.ls48{letter-spacing:3.312000pt;}
.lsa9{letter-spacing:3.864000pt;}
.ls29{letter-spacing:3.994667pt;}
.ls56{letter-spacing:4.109333pt;}
.ls9{letter-spacing:4.853333pt;}
.lsba{letter-spacing:4.872000pt;}
.lsb7{letter-spacing:5.040000pt;}
.lsbf{letter-spacing:5.096000pt;}
.lsa4{letter-spacing:5.152000pt;}
.ls5{letter-spacing:5.173333pt;}
.lsa8{letter-spacing:5.208000pt;}
.ls7{letter-spacing:5.226667pt;}
.lsc3{letter-spacing:5.264000pt;}
.ls2{letter-spacing:5.333333pt;}
.lsa3{letter-spacing:5.600000pt;}
.lsc4{letter-spacing:5.712000pt;}
.ls74{letter-spacing:6.317333pt;}
.lsad{letter-spacing:6.664000pt;}
.ls4e{letter-spacing:6.869333pt;}
.ls70{letter-spacing:7.253472pt;}
.ls71{letter-spacing:7.254005pt;}
.ls30{letter-spacing:10.733333pt;}
.ls44{letter-spacing:11.714667pt;}
.ls69{letter-spacing:52.609029pt;}
.ls0{letter-spacing:414.043733pt;}
.ls6f{letter-spacing:415.603733pt;}
.lsb2{letter-spacing:416.170133pt;}
.ls97{letter-spacing:416.436800pt;}
.ls2a{letter-spacing:419.683733pt;}
.ls13{letter-spacing:421.130133pt;}
.ls5e{letter-spacing:421.497067pt;}
.ls5b{letter-spacing:421.823467pt;}
.ls4b{letter-spacing:422.676800pt;}
.lsa{letter-spacing:846.688000pt;}
.ls43{letter-spacing:847.130667pt;}
.ls52{letter-spacing:849.461333pt;}
.ls5c{letter-spacing:853.061333pt;}
.ls28{letter-spacing:854.821333pt;}
.ws2{word-spacing:-20.213333pt;}
.wsa{word-spacing:-19.872000pt;}
.ws0{word-spacing:-19.333333pt;}
.wsa6{word-spacing:-19.152000pt;}
.wsbe{word-spacing:-18.760000pt;}
.ws75{word-spacing:-18.466667pt;}
.wscd{word-spacing:-18.293333pt;}
.ws3c{word-spacing:-17.234667pt;}
.wsb{word-spacing:-16.928000pt;}
.ws5d{word-spacing:-16.682667pt;}
.wsc1{word-spacing:-16.576000pt;}
.ws7a{word-spacing:-16.560000pt;}
.ws12{word-spacing:-16.376000pt;}
.ws55{word-spacing:-16.314667pt;}
.ws94{word-spacing:-16.128000pt;}
.ws97{word-spacing:-16.008000pt;}
.ws5c{word-spacing:-15.840000pt;}
.ws11{word-spacing:-15.733333pt;}
.ws66{word-spacing:-15.517333pt;}
.wsae{word-spacing:-15.512000pt;}
.ws76{word-spacing:-15.088000pt;}
.ws40{word-spacing:-15.026667pt;}
.ws54{word-spacing:-15.000000pt;}
.ws71{word-spacing:-14.781333pt;}
.ws3b{word-spacing:-14.720000pt;}
.wsbf{word-spacing:-14.672000pt;}
.ws39{word-spacing:-14.658667pt;}
.ws2c{word-spacing:-14.597333pt;}
.ws35{word-spacing:-14.536000pt;}
.ws2a{word-spacing:-14.485333pt;}
.ws4a{word-spacing:-14.474667pt;}
.ws67{word-spacing:-14.413333pt;}
.ws14{word-spacing:-14.352000pt;}
.ws38{word-spacing:-14.229333pt;}
.ws3a{word-spacing:-14.168000pt;}
.ws2f{word-spacing:-14.106667pt;}
.ws37{word-spacing:-14.045333pt;}
.ws15{word-spacing:-13.984000pt;}
.ws31{word-spacing:-13.922667pt;}
.ws32{word-spacing:-13.861333pt;}
.wsc3{word-spacing:-13.832000pt;}
.ws17{word-spacing:-13.800000pt;}
.ws16{word-spacing:-13.677333pt;}
.ws3f{word-spacing:-13.616000pt;}
.ws2d{word-spacing:-13.554667pt;}
.ws34{word-spacing:-13.493333pt;}
.wsc4{word-spacing:-13.440000pt;}
.ws18{word-spacing:-13.432000pt;}
.ws30{word-spacing:-13.370667pt;}
.ws3e{word-spacing:-13.248000pt;}
.wsaf{word-spacing:-13.216000pt;}
.ws92{word-spacing:-13.186667pt;}
.ws2e{word-spacing:-13.125333pt;}
.ws2b{word-spacing:-13.064000pt;}
.wsb0{word-spacing:-13.048000pt;}
.ws91{word-spacing:-13.002667pt;}
.ws49{word-spacing:-12.941333pt;}
.ws3d{word-spacing:-12.818667pt;}
.wsce{word-spacing:-12.746667pt;}
.wsc0{word-spacing:-12.264000pt;}
.ws4b{word-spacing:-12.240000pt;}
.ws70{word-spacing:-12.205333pt;}
.ws1a{word-spacing:-12.192000pt;}
.wsc2{word-spacing:-12.096000pt;}
.wsb1{word-spacing:-11.984000pt;}
.ws98{word-spacing:-11.904000pt;}
.ws6a{word-spacing:-11.856000pt;}
.ws1{word-spacing:-11.834667pt;}
.ws68{word-spacing:-11.760000pt;}
.ws4e{word-spacing:-11.714667pt;}
.ws7c{word-spacing:-11.712000pt;}
.ws5f{word-spacing:-11.616000pt;}
.ws69{word-spacing:-11.472000pt;}
.ws93{word-spacing:-11.224000pt;}
.ws5e{word-spacing:-11.184000pt;}
.ws60{word-spacing:-11.136000pt;}
.ws19{word-spacing:-10.992000pt;}
.ws61{word-spacing:-10.848000pt;}
.ws72{word-spacing:-10.794667pt;}
.ws99{word-spacing:-10.752000pt;}
.ws45{word-spacing:-10.733333pt;}
.ws1b{word-spacing:-10.560000pt;}
.ws36{word-spacing:-10.549333pt;}
.ws79{word-spacing:-10.548413pt;}
.ws33{word-spacing:-10.488000pt;}
.ws13{word-spacing:-10.047811pt;}
.ws7b{word-spacing:-9.869024pt;}
.ws77{word-spacing:-9.833267pt;}
.wsa5{word-spacing:-9.654480pt;}
.ws96{word-spacing:-9.511451pt;}
.wsa4{word-spacing:-9.439936pt;}
.ws78{word-spacing:-9.225392pt;}
.ws95{word-spacing:-9.138667pt;}
.ws90{word-spacing:-9.082363pt;}
.ws58{word-spacing:-6.869333pt;}
.wsbb{word-spacing:-6.664000pt;}
.ws7f{word-spacing:-6.317333pt;}
.wsd5{word-spacing:-5.712000pt;}
.wsb3{word-spacing:-5.600000pt;}
.ws4{word-spacing:-5.333333pt;}
.wsd4{word-spacing:-5.264000pt;}
.ws9{word-spacing:-5.226667pt;}
.wsb7{word-spacing:-5.208000pt;}
.ws5{word-spacing:-5.173333pt;}
.wsb4{word-spacing:-5.152000pt;}
.wsd0{word-spacing:-5.096000pt;}
.wsc8{word-spacing:-5.040000pt;}
.wsca{word-spacing:-4.872000pt;}
.ws8{word-spacing:-4.853333pt;}
.ws63{word-spacing:-4.109333pt;}
.wsb8{word-spacing:-3.864000pt;}
.ws52{word-spacing:-3.312000pt;}
.wsc{word-spacing:-3.285333pt;}
.ws83{word-spacing:-2.146667pt;}
.ws1c{word-spacing:-2.133333pt;}
.wsb6{word-spacing:-2.128000pt;}
.ws57{word-spacing:-1.901333pt;}
.wscf{word-spacing:-1.680000pt;}
.ws82{word-spacing:-1.472000pt;}
.ws6c{word-spacing:-1.410667pt;}
.ws27{word-spacing:-1.344000pt;}
.ws9b{word-spacing:-1.317333pt;}
.wsc7{word-spacing:-1.232000pt;}
.ws22{word-spacing:-1.200000pt;}
.wsd8{word-spacing:-1.120000pt;}
.ws9f{word-spacing:-1.104000pt;}
.wsa8{word-spacing:-1.042667pt;}
.ws51{word-spacing:-0.981333pt;}
.ws9d{word-spacing:-0.797333pt;}
.wsd1{word-spacing:-0.784000pt;}
.wsaa{word-spacing:-0.736000pt;}
.ws1d{word-spacing:-0.674667pt;}
.wsad{word-spacing:-0.624000pt;}
.wsb5{word-spacing:-0.616000pt;}
.ws84{word-spacing:-0.552000pt;}
.ws8c{word-spacing:-0.503712pt;}
.ws6d{word-spacing:-0.490667pt;}
.ws8f{word-spacing:-0.480000pt;}
.ws6e{word-spacing:-0.368000pt;}
.wsc9{word-spacing:-0.336000pt;}
.ws48{word-spacing:-0.306667pt;}
.ws23{word-spacing:-0.240000pt;}
.wsc6{word-spacing:-0.224000pt;}
.ws7{word-spacing:-0.213333pt;}
.ws24{word-spacing:-0.144000pt;}
.wsb2{word-spacing:-0.122667pt;}
.ws53{word-spacing:-0.096000pt;}
.wsa2{word-spacing:-0.083952pt;}
.ws9a{word-spacing:-0.061333pt;}
.ws3{word-spacing:0.000000pt;}
.ws6f{word-spacing:0.048000pt;}
.ws8a{word-spacing:0.055968pt;}
.ws41{word-spacing:0.061333pt;}
.wsd7{word-spacing:0.106667pt;}
.ws80{word-spacing:0.122667pt;}
.ws8e{word-spacing:0.144000pt;}
.ws50{word-spacing:0.184000pt;}
.wsac{word-spacing:0.195888pt;}
.ws6{word-spacing:0.213333pt;}
.ws47{word-spacing:0.245333pt;}
.wsd2{word-spacing:0.280000pt;}
.ws9c{word-spacing:0.293832pt;}
.ws4f{word-spacing:0.306667pt;}
.wsa3{word-spacing:0.307824pt;}
.ws28{word-spacing:0.336000pt;}
.wsab{word-spacing:0.363792pt;}
.wsb9{word-spacing:0.392000pt;}
.wsd6{word-spacing:0.426667pt;}
.ws74{word-spacing:0.432000pt;}
.ws85{word-spacing:0.490667pt;}
.wsba{word-spacing:0.504000pt;}
.ws8b{word-spacing:0.531696pt;}
.wsd{word-spacing:0.552000pt;}
.ws10{word-spacing:0.576000pt;}
.ws4d{word-spacing:0.613333pt;}
.wsa1{word-spacing:0.643632pt;}
.wsbc{word-spacing:0.672000pt;}
.ws20{word-spacing:0.674667pt;}
.ws1f{word-spacing:0.736000pt;}
.wse{word-spacing:0.760000pt;}
.wsf{word-spacing:0.768000pt;}
.ws42{word-spacing:0.797333pt;}
.wscb{word-spacing:0.840000pt;}
.ws21{word-spacing:0.858667pt;}
.ws26{word-spacing:0.864000pt;}
.ws56{word-spacing:0.920000pt;}
.ws44{word-spacing:0.981333pt;}
.ws8d{word-spacing:1.008000pt;}
.ws7d{word-spacing:1.104000pt;}
.wsbd{word-spacing:1.120000pt;}
.ws64{word-spacing:1.165333pt;}
.wsd3{word-spacing:1.232000pt;}
.ws29{word-spacing:1.344000pt;}
.ws46{word-spacing:1.349333pt;}
.ws5a{word-spacing:1.410667pt;}
.ws86{word-spacing:1.472000pt;}
.ws43{word-spacing:1.594667pt;}
.wscc{word-spacing:1.624000pt;}
.ws89{word-spacing:1.656000pt;}
.ws73{word-spacing:1.680000pt;}
.ws1e{word-spacing:1.778667pt;}
.wsa0{word-spacing:1.840000pt;}
.ws62{word-spacing:1.874667pt;}
.wsc5{word-spacing:1.904000pt;}
.ws87{word-spacing:1.962667pt;}
.wsa9{word-spacing:2.330667pt;}
.ws59{word-spacing:2.392000pt;}
.ws7e{word-spacing:2.453333pt;}
.ws9e{word-spacing:2.514667pt;}
.ws6b{word-spacing:2.637333pt;}
.wsa7{word-spacing:3.066667pt;}
.ws5b{word-spacing:3.312000pt;}
.ws81{word-spacing:3.496000pt;}
.ws88{word-spacing:3.680000pt;}
.ws4c{word-spacing:4.600000pt;}
.ws65{word-spacing:38.617920pt;}
.ws25{word-spacing:52.609920pt;}
._21{margin-left:-19.959467pt;}
._17{margin-left:-17.462667pt;}
._20{margin-left:-16.560000pt;}
._1f{margin-left:-14.740000pt;}
._1d{margin-left:-12.736267pt;}
._1a{margin-left:-11.605067pt;}
._1b{margin-left:-10.536267pt;}
._1c{margin-left:-9.576000pt;}
._1e{margin-left:-7.444267pt;}
._19{margin-left:-6.504800pt;}
._5{margin-left:-4.814933pt;}
._6{margin-left:-3.451733pt;}
._3{margin-left:-2.458400pt;}
._4{margin-left:-1.408000pt;}
._0{width:1.051733pt;}
._2{width:2.026667pt;}
._7{width:3.133600pt;}
._b{width:4.090933pt;}
._1{width:5.497600pt;}
._f{width:6.388533pt;}
._8{width:7.370667pt;}
._14{width:8.260533pt;}
._9{width:9.166933pt;}
._a{width:10.286667pt;}
._10{width:11.398400pt;}
._15{width:12.368533pt;}
._16{width:13.603200pt;}
._12{width:16.103733pt;}
._25{width:17.025600pt;}
._24{width:19.488533pt;}
._11{width:20.920000pt;}
._22{width:22.100000pt;}
._28{width:23.275200pt;}
._23{width:24.681888pt;}
._27{width:28.231733pt;}
._26{width:29.123200pt;}
._13{width:38.617920pt;}
._c{width:45.024000pt;}
._18{width:58.218667pt;}
._e{width:224.896000pt;}
._d{width:514.133333pt;}
.fsb{font-size:27.984000pt;}
.fsf{font-size:31.093333pt;}
.fs9{font-size:35.757333pt;}
.fs3{font-size:37.333333pt;}
.fse{font-size:41.976000pt;}
.fsd{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fs7{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y231{bottom:94.328000pt;}
.yea{bottom:94.369333pt;}
.y214{bottom:94.410667pt;}
.yc3{bottom:94.450667pt;}
.y6c{bottom:94.458667pt;}
.y14d{bottom:94.466667pt;}
.y128{bottom:94.469333pt;}
.y74{bottom:94.472000pt;}
.y40{bottom:94.474667pt;}
.y173{bottom:94.482933pt;}
.y9b{bottom:94.485600pt;}
.y1e{bottom:94.504000pt;}
.y250{bottom:94.524000pt;}
.y1d5{bottom:97.150933pt;}
.yc2{bottom:109.786667pt;}
.y6b{bottom:109.794667pt;}
.y14c{bottom:109.802667pt;}
.y127{bottom:109.805333pt;}
.y73{bottom:109.808000pt;}
.y3f{bottom:109.810667pt;}
.y172{bottom:109.818933pt;}
.y9a{bottom:109.821600pt;}
.y1d{bottom:112.090667pt;}
.y1ba{bottom:112.484267pt;}
.ye9{bottom:112.524000pt;}
.y24f{bottom:112.710667pt;}
.y213{bottom:113.562667pt;}
.y1d4{bottom:113.598400pt;}
.y230{bottom:120.984000pt;}
.yc1{bottom:125.122667pt;}
.y6a{bottom:125.130667pt;}
.y14b{bottom:125.138667pt;}
.y126{bottom:125.141333pt;}
.y72{bottom:125.144000pt;}
.y3e{bottom:125.146667pt;}
.y171{bottom:127.817600pt;}
.y1b9{bottom:128.932000pt;}
.y1c{bottom:129.677333pt;}
.ye8{bottom:130.678667pt;}
.y24e{bottom:130.897333pt;}
.y1d3{bottom:131.597067pt;}
.y212{bottom:132.714667pt;}
.yc0{bottom:140.458667pt;}
.y69{bottom:140.466667pt;}
.y14a{bottom:140.474667pt;}
.y125{bottom:140.477333pt;}
.y71{bottom:140.480000pt;}
.y3d{bottom:140.482667pt;}
.y170{bottom:144.265333pt;}
.y1b8{bottom:146.930667pt;}
.y1b{bottom:147.264000pt;}
.y22f{bottom:147.640000pt;}
.y1d2{bottom:148.045333pt;}
.ye7{bottom:148.833333pt;}
.y24d{bottom:149.084000pt;}
.y99{bottom:151.424667pt;}
.y211{bottom:151.866667pt;}
.ybf{bottom:155.794667pt;}
.y68{bottom:155.802667pt;}
.y149{bottom:155.810667pt;}
.y124{bottom:155.813333pt;}
.y70{bottom:155.816000pt;}
.y3c{bottom:155.818667pt;}
.y16f{bottom:162.264000pt;}
.y1a{bottom:164.850667pt;}
.y1b7{bottom:166.044000pt;}
.y22e{bottom:166.736000pt;}
.ye6{bottom:166.988000pt;}
.y98{bottom:170.024000pt;}
.y1f4{bottom:170.640667pt;}
.ybe{bottom:171.130667pt;}
.y67{bottom:171.138667pt;}
.y148{bottom:171.146667pt;}
.y123{bottom:171.149333pt;}
.y6f{bottom:171.152000pt;}
.y3b{bottom:173.817333pt;}
.y210{bottom:178.578667pt;}
.y24c{bottom:178.617333pt;}
.y19{bottom:182.437333pt;}
.y1d1{bottom:182.490667pt;}
.ye5{bottom:185.142667pt;}
.y1b6{bottom:185.156000pt;}
.y22d{bottom:185.832000pt;}
.y196{bottom:186.456000pt;}
.ybd{bottom:186.466667pt;}
.y66{bottom:186.474667pt;}
.y147{bottom:186.482667pt;}
.y122{bottom:186.485333pt;}
.y6e{bottom:186.488000pt;}
.y97{bottom:188.623333pt;}
.y1f3{bottom:189.209333pt;}
.y20f{bottom:197.730667pt;}
.y1d0{bottom:197.826667pt;}
.y16e{bottom:201.352000pt;}
.y195{bottom:201.792000pt;}
.ybc{bottom:201.802667pt;}
.y65{bottom:201.810667pt;}
.y146{bottom:201.818667pt;}
.y121{bottom:201.821333pt;}
.ye4{bottom:203.297333pt;}
.y120{bottom:204.484000pt;}
.y96{bottom:207.222667pt;}
.y1f2{bottom:207.778000pt;}
.y18{bottom:211.370667pt;}
.y22c{bottom:212.488000pt;}
.y3a{bottom:212.952667pt;}
.y24b{bottom:215.710667pt;}
.y11f{bottom:217.104000pt;}
.y194{bottom:217.128000pt;}
.ybb{bottom:217.138667pt;}
.y64{bottom:217.146667pt;}
.y16d{bottom:219.568000pt;}
.y145{bottom:219.817333pt;}
.ye3{bottom:221.452000pt;}
.y1b5{bottom:224.334667pt;}
.y20e{bottom:224.442667pt;}
.y95{bottom:225.822000pt;}
.y1f1{bottom:226.346667pt;}
.y39{bottom:231.214667pt;}
.y22b{bottom:231.584000pt;}
.y11e{bottom:232.440000pt;}
.y193{bottom:232.464000pt;}
.yba{bottom:232.474667pt;}
.y63{bottom:232.482667pt;}
.y24a{bottom:233.230667pt;}
.y144{bottom:236.257333pt;}
.y16c{bottom:237.784000pt;}
.y6d{bottom:239.252000pt;}
.ye2{bottom:239.606667pt;}
.y1cf{bottom:242.152000pt;}
.y1b4{bottom:242.980000pt;}
.y20d{bottom:243.594667pt;}
.y94{bottom:244.421333pt;}
.y1f0{bottom:244.915333pt;}
.y11d{bottom:247.776000pt;}
.y192{bottom:247.800000pt;}
.yb9{bottom:247.810667pt;}
.y62{bottom:247.818667pt;}
.y249{bottom:250.750667pt;}
.y143{bottom:251.593333pt;}
.y76{bottom:254.708000pt;}
.y17{bottom:255.410667pt;}
.y16b{bottom:256.000000pt;}
.ye1{bottom:257.761333pt;}
.y22a{bottom:258.240000pt;}
.y1ce{bottom:260.153333pt;}
.y1b3{bottom:261.625333pt;}
.y93{bottom:263.020667pt;}
.y11c{bottom:263.112000pt;}
.y191{bottom:263.136000pt;}
.yb8{bottom:263.146667pt;}
.y100{bottom:263.154667pt;}
.y1ef{bottom:263.484000pt;}
.y61{bottom:265.817333pt;}
.y142{bottom:266.929333pt;}
.y248{bottom:268.270667pt;}
.y38{bottom:268.382667pt;}
.y20c{bottom:270.306667pt;}
.y75{bottom:272.708000pt;}
.y16a{bottom:274.216000pt;}
.ye0{bottom:275.916000pt;}
.y229{bottom:277.336000pt;}
.y1cd{bottom:278.154667pt;}
.y11b{bottom:278.448000pt;}
.y190{bottom:278.472000pt;}
.yb7{bottom:278.482667pt;}
.y1b2{bottom:280.270667pt;}
.y92{bottom:281.620000pt;}
.y1ee{bottom:282.052667pt;}
.y60{bottom:282.257333pt;}
.y141{bottom:282.265333pt;}
.y247{bottom:285.790667pt;}
.y37{bottom:289.982667pt;}
.y169{bottom:292.432000pt;}
.y16{bottom:293.250667pt;}
.y11a{bottom:293.784000pt;}
.y18f{bottom:293.808000pt;}
.yb6{bottom:293.818667pt;}
.ydf{bottom:294.070667pt;}
.y20b{bottom:297.018667pt;}
.y5f{bottom:297.593333pt;}
.y1b1{bottom:298.916000pt;}
.y91{bottom:300.219333pt;}
.y140{bottom:300.264000pt;}
.y1ed{bottom:300.621333pt;}
.y246{bottom:303.310667pt;}
.y228{bottom:303.992000pt;}
.yff{bottom:304.954000pt;}
.y119{bottom:309.120000pt;}
.y18e{bottom:309.144000pt;}
.y168{bottom:310.648000pt;}
.y15{bottom:310.837333pt;}
.yb5{bottom:311.817333pt;}
.yde{bottom:312.225333pt;}
.y5e{bottom:312.929333pt;}
.y1cc{bottom:314.154667pt;}
.y20a{bottom:316.170667pt;}
.y1b0{bottom:317.561333pt;}
.y90{bottom:318.818667pt;}
.y1ec{bottom:319.190000pt;}
.y245{bottom:320.830667pt;}
.yfe{bottom:323.124000pt;}
.y118{bottom:324.456000pt;}
.y18d{bottom:324.480000pt;}
.y5d{bottom:328.265333pt;}
.y14{bottom:328.424000pt;}
.y167{bottom:328.864000pt;}
.ydd{bottom:330.380000pt;}
.y227{bottom:330.648000pt;}
.y209{bottom:335.322667pt;}
.y1af{bottom:336.206667pt;}
.y8f{bottom:337.418000pt;}
.y1eb{bottom:337.758667pt;}
.y244{bottom:338.350667pt;}
.y117{bottom:339.792000pt;}
.y18c{bottom:339.816000pt;}
.yfd{bottom:341.294000pt;}
.y5c{bottom:343.601333pt;}
.y36{bottom:345.680667pt;}
.y13{bottom:346.010667pt;}
.y5b{bottom:346.264000pt;}
.y166{bottom:347.080000pt;}
.ydc{bottom:348.534667pt;}
.y226{bottom:349.744000pt;}
.yb4{bottom:350.844000pt;}
.y1ae{bottom:354.852000pt;}
.y116{bottom:355.128000pt;}
.y18b{bottom:355.152000pt;}
.y243{bottom:355.870667pt;}
.y8e{bottom:356.017333pt;}
.y1ea{bottom:356.327333pt;}
.y5a{bottom:358.897333pt;}
.yfc{bottom:359.478000pt;}
.y208{bottom:362.034667pt;}
.y12{bottom:363.597333pt;}
.y35{bottom:363.942667pt;}
.y165{bottom:365.296000pt;}
.ydb{bottom:366.689333pt;}
.yb3{bottom:368.906667pt;}
.y13f{bottom:370.381333pt;}
.y115{bottom:370.464000pt;}
.y18a{bottom:370.472000pt;}
.y242{bottom:373.390667pt;}
.y1ad{bottom:373.497333pt;}
.y59{bottom:374.233333pt;}
.y8d{bottom:374.616667pt;}
.y1e9{bottom:374.896000pt;}
.y225{bottom:376.400000pt;}
.yfb{bottom:377.648000pt;}
.y11{bottom:381.184000pt;}
.y207{bottom:381.186667pt;}
.y34{bottom:382.204667pt;}
.y164{bottom:383.512000pt;}
.yda{bottom:384.844000pt;}
.y114{bottom:385.800000pt;}
.y189{bottom:385.808000pt;}
.yb2{bottom:386.969333pt;}
.y13e{bottom:388.382667pt;}
.y58{bottom:389.569333pt;}
.y241{bottom:390.910667pt;}
.y1ac{bottom:392.142667pt;}
.y8c{bottom:393.216000pt;}
.y1e8{bottom:393.464667pt;}
.y224{bottom:395.496000pt;}
.yfa{bottom:395.818000pt;}
.y10{bottom:398.770667pt;}
.y33{bottom:400.466667pt;}
.y113{bottom:401.136000pt;}
.y188{bottom:401.144000pt;}
.y163{bottom:401.649333pt;}
.yd9{bottom:402.998667pt;}
.y57{bottom:404.905333pt;}
.yb1{bottom:405.032000pt;}
.y13d{bottom:406.384000pt;}
.y206{bottom:407.898667pt;}
.y240{bottom:408.430667pt;}
.y1ab{bottom:410.788000pt;}
.y8b{bottom:411.815333pt;}
.y1e7{bottom:412.033333pt;}
.yf9{bottom:413.988000pt;}
.yf{bottom:416.357333pt;}
.y112{bottom:416.472000pt;}
.y187{bottom:416.480000pt;}
.y32{bottom:418.728667pt;}
.y162{bottom:419.865333pt;}
.y56{bottom:420.241333pt;}
.yd8{bottom:421.153333pt;}
.y1cb{bottom:422.152000pt;}
.yb0{bottom:423.094667pt;}
.y13c{bottom:424.385333pt;}
.y23f{bottom:425.950667pt;}
.y205{bottom:427.050667pt;}
.y1aa{bottom:429.433333pt;}
.y8a{bottom:430.414667pt;}
.y111{bottom:431.808000pt;}
.y186{bottom:431.816000pt;}
.yf8{bottom:432.158000pt;}
.ye{bottom:433.944000pt;}
.y55{bottom:435.577333pt;}
.y31{bottom:436.990667pt;}
.y161{bottom:438.081333pt;}
.yd7{bottom:439.308000pt;}
.y1ca{bottom:440.153333pt;}
.yaf{bottom:441.157333pt;}
.y223{bottom:441.248000pt;}
.y13b{bottom:442.386667pt;}
.y23e{bottom:443.470667pt;}
.y204{bottom:446.202667pt;}
.y110{bottom:447.144000pt;}
.y185{bottom:447.152000pt;}
.y1a9{bottom:448.078667pt;}
.y89{bottom:449.014000pt;}
.y1e6{bottom:449.493333pt;}
.yf7{bottom:450.328000pt;}
.y54{bottom:450.913333pt;}
.yd{bottom:451.530667pt;}
.y30{bottom:455.252667pt;}
.y160{bottom:456.297333pt;}
.yd6{bottom:457.462667pt;}
.y1c9{bottom:458.153333pt;}
.yae{bottom:459.220000pt;}
.y222{bottom:460.344000pt;}
.y13a{bottom:460.388000pt;}
.y10f{bottom:462.480000pt;}
.y184{bottom:462.488000pt;}
.y53{bottom:466.249333pt;}
.y1a8{bottom:466.724000pt;}
.y88{bottom:467.613333pt;}
.y23d{bottom:472.337333pt;}
.y203{bottom:472.914667pt;}
.y2f{bottom:473.514667pt;}
.y15f{bottom:474.513333pt;}
.yd5{bottom:475.617333pt;}
.y1c8{bottom:476.144000pt;}
.yad{bottom:477.282667pt;}
.y10e{bottom:477.816000pt;}
.y139{bottom:478.389333pt;}
.yc{bottom:480.464000pt;}
.y52{bottom:481.585333pt;}
.y1a7{bottom:485.401333pt;}
.y87{bottom:486.212667pt;}
.y221{bottom:487.000000pt;}
.yf6{bottom:487.398667pt;}
.y2e{bottom:491.776667pt;}
.y202{bottom:492.066667pt;}
.y15e{bottom:492.729333pt;}
.y10d{bottom:493.152000pt;}
.yd4{bottom:493.772000pt;}
.y1c7{bottom:494.145333pt;}
.yac{bottom:495.345333pt;}
.y138{bottom:496.390667pt;}
.y51{bottom:496.921333pt;}
.y1a6{bottom:504.046667pt;}
.y183{bottom:504.321333pt;}
.y86{bottom:504.812000pt;}
.y1e5{bottom:505.386000pt;}
.y10c{bottom:508.488000pt;}
.y2d{bottom:510.038667pt;}
.y15d{bottom:510.945333pt;}
.yd3{bottom:511.926667pt;}
.y1c6{bottom:512.146667pt;}
.y50{bottom:512.257333pt;}
.yab{bottom:513.408000pt;}
.y220{bottom:513.656000pt;}
.y137{bottom:514.392000pt;}
.y201{bottom:518.778667pt;}
.y1a5{bottom:522.692000pt;}
.y182{bottom:522.951333pt;}
.y85{bottom:523.411333pt;}
.y23c{bottom:523.873333pt;}
.y1e4{bottom:523.954667pt;}
.y4f{bottom:527.593333pt;}
.y2c{bottom:528.300667pt;}
.y15c{bottom:529.161333pt;}
.yd2{bottom:530.081333pt;}
.y1c5{bottom:530.148000pt;}
.yaa{bottom:531.470667pt;}
.yb{bottom:532.077333pt;}
.y136{bottom:532.393333pt;}
.y200{bottom:537.930667pt;}
.y21f{bottom:540.312000pt;}
.y1a4{bottom:541.337333pt;}
.y181{bottom:541.581333pt;}
.y84{bottom:542.010667pt;}
.y1e3{bottom:542.523333pt;}
.yf5{bottom:542.923333pt;}
.y4e{bottom:542.929333pt;}
.y2b{bottom:546.598000pt;}
.y15b{bottom:547.377333pt;}
.y23b{bottom:548.065333pt;}
.y1c4{bottom:548.149333pt;}
.yd1{bottom:548.236000pt;}
.ya9{bottom:549.533333pt;}
.y135{bottom:550.394667pt;}
.ya{bottom:556.325333pt;}
.y4d{bottom:558.265333pt;}
.y1a3{bottom:559.982667pt;}
.y180{bottom:560.211333pt;}
.y83{bottom:560.610000pt;}
.y1e2{bottom:561.086000pt;}
.yf4{bottom:561.093333pt;}
.y1ff{bottom:564.642667pt;}
.y2a{bottom:564.860000pt;}
.y15a{bottom:565.593333pt;}
.y1c3{bottom:566.150667pt;}
.yd0{bottom:566.390667pt;}
.y21e{bottom:566.968000pt;}
.ya8{bottom:567.596000pt;}
.y134{bottom:568.396000pt;}
.y4c{bottom:576.264000pt;}
.y1a2{bottom:578.628000pt;}
.y17f{bottom:578.841333pt;}
.y82{bottom:579.209333pt;}
.y1e1{bottom:579.641333pt;}
.y29{bottom:583.122000pt;}
.y159{bottom:583.809333pt;}
.y1c2{bottom:584.152000pt;}
.ycf{bottom:584.545333pt;}
.ya7{bottom:585.658667pt;}
.y21d{bottom:586.064000pt;}
.y133{bottom:586.397333pt;}
.y1a1{bottom:597.273333pt;}
.y17e{bottom:597.471333pt;}
.y81{bottom:597.808667pt;}
.yf3{bottom:598.159333pt;}
.y1e0{bottom:598.210000pt;}
.y9{bottom:599.504000pt;}
.y28{bottom:601.384000pt;}
.y158{bottom:602.025333pt;}
.y1c1{bottom:602.153333pt;}
.yce{bottom:602.700000pt;}
.ya6{bottom:603.721333pt;}
.y10b{bottom:604.386667pt;}
.y132{bottom:604.398667pt;}
.y23a{bottom:609.374000pt;}
.y1fe{bottom:610.888000pt;}
.y21c{bottom:612.720000pt;}
.y4b{bottom:615.385333pt;}
.y1a0{bottom:615.918667pt;}
.y17d{bottom:616.101333pt;}
.y80{bottom:616.408000pt;}
.y1df{bottom:616.714667pt;}
.y27{bottom:619.646000pt;}
.yf2{bottom:619.669333pt;}
.y1c0{bottom:620.154667pt;}
.y157{bottom:620.241333pt;}
.ycd{bottom:620.854667pt;}
.ya5{bottom:621.784000pt;}
.y10a{bottom:622.388000pt;}
.y131{bottom:622.400000pt;}
.y239{bottom:627.560000pt;}
.y8{bottom:627.752000pt;}
.y1fd{bottom:630.039333pt;}
.y21b{bottom:631.816000pt;}
.y4a{bottom:634.058667pt;}
.y19f{bottom:634.564000pt;}
.y17c{bottom:634.731333pt;}
.y7f{bottom:635.007333pt;}
.y1de{bottom:635.283333pt;}
.y26{bottom:637.908000pt;}
.y156{bottom:638.457333pt;}
.ycc{bottom:639.009333pt;}
.ya4{bottom:639.846667pt;}
.y109{bottom:640.389333pt;}
.y130{bottom:640.390667pt;}
.y1fc{bottom:649.190667pt;}
.y49{bottom:652.765333pt;}
.y19e{bottom:653.238667pt;}
.y238{bottom:653.306000pt;}
.y17b{bottom:653.361333pt;}
.y7e{bottom:653.606667pt;}
.y1dd{bottom:653.852000pt;}
.y7{bottom:656.000000pt;}
.y155{bottom:656.673333pt;}
.y1bf{bottom:657.052000pt;}
.ycb{bottom:657.164000pt;}
.ya3{bottom:657.909333pt;}
.y108{bottom:658.390667pt;}
.y12f{bottom:658.392000pt;}
.y21a{bottom:658.472000pt;}
.y1fb{bottom:668.342000pt;}
.y48{bottom:671.472000pt;}
.y237{bottom:671.492000pt;}
.y19d{bottom:671.884000pt;}
.y17a{bottom:671.991333pt;}
.y7d{bottom:672.206000pt;}
.y1dc{bottom:672.420667pt;}
.y154{bottom:674.889333pt;}
.y25{bottom:675.074667pt;}
.yf1{bottom:675.211333pt;}
.yca{bottom:675.318667pt;}
.ya2{bottom:675.972000pt;}
.y107{bottom:676.392000pt;}
.y12e{bottom:676.393333pt;}
.y6{bottom:684.248000pt;}
.y219{bottom:685.128000pt;}
.y1fa{bottom:687.493333pt;}
.y47{bottom:690.178667pt;}
.y19c{bottom:690.529333pt;}
.y179{bottom:690.621333pt;}
.y7c{bottom:690.805333pt;}
.y1db{bottom:690.989333pt;}
.y153{bottom:693.105333pt;}
.yf0{bottom:693.381333pt;}
.yc9{bottom:693.473333pt;}
.ya1{bottom:694.034667pt;}
.y106{bottom:694.393333pt;}
.y12d{bottom:694.394667pt;}
.y236{bottom:697.238000pt;}
.y218{bottom:704.224000pt;}
.y1f9{bottom:706.644667pt;}
.y46{bottom:708.885333pt;}
.y19b{bottom:709.174667pt;}
.y178{bottom:709.251333pt;}
.y7b{bottom:709.404667pt;}
.y1da{bottom:709.558000pt;}
.y152{bottom:711.321333pt;}
.yef{bottom:711.551333pt;}
.yc8{bottom:711.628000pt;}
.ya0{bottom:712.097333pt;}
.y105{bottom:712.394667pt;}
.y12c{bottom:712.396000pt;}
.y1be{bottom:712.400000pt;}
.y235{bottom:715.424000pt;}
.y1f8{bottom:725.796000pt;}
.y45{bottom:727.592000pt;}
.y19a{bottom:727.820000pt;}
.y177{bottom:727.881333pt;}
.y7a{bottom:728.004000pt;}
.y1d9{bottom:728.126667pt;}
.y151{bottom:729.537333pt;}
.yee{bottom:729.721333pt;}
.yc7{bottom:729.782667pt;}
.y9f{bottom:730.160000pt;}
.y104{bottom:730.396000pt;}
.y12b{bottom:730.397333pt;}
.y1bd{bottom:730.398667pt;}
.y24{bottom:730.693333pt;}
.y217{bottom:730.880000pt;}
.y5{bottom:738.965333pt;}
.y234{bottom:741.170000pt;}
.y1f7{bottom:744.947333pt;}
.y44{bottom:746.281333pt;}
.y199{bottom:746.465333pt;}
.y176{bottom:746.511333pt;}
.y79{bottom:746.603333pt;}
.y1d8{bottom:746.695333pt;}
.y150{bottom:747.753333pt;}
.yed{bottom:747.891333pt;}
.yc6{bottom:747.937333pt;}
.y9e{bottom:748.222667pt;}
.y103{bottom:748.397333pt;}
.y12a{bottom:748.398667pt;}
.y1bc{bottom:748.400000pt;}
.y216{bottom:757.536000pt;}
.y4{bottom:757.885333pt;}
.y233{bottom:759.356000pt;}
.y1f6{bottom:764.098667pt;}
.y43{bottom:764.988000pt;}
.y198{bottom:765.110667pt;}
.y175{bottom:765.141333pt;}
.y78{bottom:765.202667pt;}
.y1d7{bottom:765.264000pt;}
.y14f{bottom:765.969333pt;}
.yec{bottom:766.061333pt;}
.yc5{bottom:766.092000pt;}
.y9d{bottom:766.276000pt;}
.y102{bottom:766.398667pt;}
.y129{bottom:766.400000pt;}
.y23{bottom:768.532000pt;}
.y1bb{bottom:770.173333pt;}
.y1f5{bottom:783.250000pt;}
.y42{bottom:783.694667pt;}
.y197{bottom:783.756000pt;}
.y174{bottom:783.771333pt;}
.y77{bottom:783.802000pt;}
.y1d6{bottom:783.832667pt;}
.y14e{bottom:784.185333pt;}
.y215{bottom:784.192000pt;}
.yeb{bottom:784.231333pt;}
.yc4{bottom:784.246667pt;}
.y9c{bottom:784.338667pt;}
.y3{bottom:784.365333pt;}
.y101{bottom:784.400000pt;}
.y232{bottom:785.102000pt;}
.y22{bottom:786.132000pt;}
.y41{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y21{bottom:803.732000pt;}
.y20{bottom:842.834667pt;}
.y1f{bottom:858.834667pt;}
.h11{height:23.761805pt;}
.ha{height:31.419646pt;}
.hd{height:37.395833pt;}
.h15{height:37.536833pt;}
.hc{height:42.070312pt;}
.h7{height:45.286458pt;}
.h19{height:46.484917pt;}
.h4{height:46.744792pt;}
.hb{height:48.187500pt;}
.h18{height:48.251500pt;}
.h3{height:49.082031pt;}
.h1d{height:52.079427pt;}
.h21{height:53.541667pt;}
.h9{height:53.756510pt;}
.h13{height:53.761844pt;}
.h14{height:53.799177pt;}
.he{height:53.825844pt;}
.h17{height:53.911177pt;}
.h20{height:56.218750pt;}
.h2{height:58.430990pt;}
.h10{height:61.572917pt;}
.h1c{height:61.578250pt;}
.h1a{height:61.583583pt;}
.h1b{height:61.615583pt;}
.h1f{height:61.626250pt;}
.hf{height:61.706250pt;}
.h1e{height:61.828917pt;}
.h16{height:61.887583pt;}
.h8{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;}
.xa{left:71.691067pt;}
.x9{left:73.347067pt;}
.x1{left:74.388133pt;}
.x6{left:75.906667pt;}
.x8{left:92.654533pt;}
.x5{left:94.120000pt;}
.xc{left:178.289333pt;}
.xb{left:179.497333pt;}
.x7{left:189.036000pt;}
.x3{left:204.856000pt;}
.x4{left:206.345333pt;}
.x2{left:207.417333pt;}
}




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