
    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_b6a41d54644b7fb272f9e10b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.124512;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_a5207453280f584a1ad55764.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_f06e32d8e16a9cecf7a07ad2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.124512;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_f90558b209881d8d5e5b3337.woff')format("woff");}.ff4{font-family:ff4;line-height:1.377930;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_ec9f821f42c9f513fc5554e1.woff')format("woff");}.ff5{font-family:ff5;line-height:1.099609;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_6903ed2ede4281b5c408ec8f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.099609;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_588b57d5434c81a55b5ff613.woff')format("woff");}.ff7{font-family:ff7;line-height:1.057129;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.980000px;}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.782000px;}
.ls5{letter-spacing:-8.424000px;}
.ls12{letter-spacing:-7.371000px;}
.ls6b{letter-spacing:-6.141000px;}
.ls7b{letter-spacing:-4.623000px;}
.ls82{letter-spacing:-4.347000px;}
.ls7e{letter-spacing:-4.071000px;}
.ls63{letter-spacing:-3.933000px;}
.ls51{letter-spacing:-3.864000px;}
.ls76{letter-spacing:-3.657000px;}
.ls58{letter-spacing:-3.588000px;}
.ls26{letter-spacing:-3.519000px;}
.ls62{letter-spacing:-3.450000px;}
.ls3a{letter-spacing:-3.381000px;}
.ls6e{letter-spacing:-3.174000px;}
.ls65{letter-spacing:-3.105000px;}
.ls7c{letter-spacing:-3.036000px;}
.ls73{letter-spacing:-2.967000px;}
.lsab{letter-spacing:-2.772000px;}
.ls54{letter-spacing:-2.760000px;}
.ls25{letter-spacing:-2.691000px;}
.ls78{letter-spacing:-2.553000px;}
.ls56{letter-spacing:-2.484000px;}
.ls55{letter-spacing:-2.346000px;}
.ls3d{letter-spacing:-2.322000px;}
.ls71{letter-spacing:-2.277000px;}
.ls50{letter-spacing:-2.208000px;}
.ls9d{letter-spacing:-2.205000px;}
.ls61{letter-spacing:-2.139000px;}
.ls77{letter-spacing:-2.070000px;}
.lsb4{letter-spacing:-2.025000px;}
.ls45{letter-spacing:-1.932000px;}
.ls98{letter-spacing:-1.890000px;}
.ls6d{letter-spacing:-1.863000px;}
.lsb6{letter-spacing:-1.827000px;}
.ls15{letter-spacing:-1.794000px;}
.ls39{letter-spacing:-1.725000px;}
.ls64{letter-spacing:-1.656000px;}
.ls68{letter-spacing:-1.650000px;}
.ls48{letter-spacing:-1.587000px;}
.ls2b{letter-spacing:-1.518000px;}
.lsac{letter-spacing:-1.512000px;}
.ls38{letter-spacing:-1.449000px;}
.ls4f{letter-spacing:-1.425000px;}
.lsa8{letter-spacing:-1.386000px;}
.ls1e{letter-spacing:-1.380000px;}
.ls23{letter-spacing:-1.311000px;}
.ls6{letter-spacing:-1.260000px;}
.ls44{letter-spacing:-1.242000px;}
.ls28{letter-spacing:-1.173000px;}
.lsad{letter-spacing:-1.134000px;}
.ls35{letter-spacing:-1.104000px;}
.ls86{letter-spacing:-1.086129px;}
.ls43{letter-spacing:-1.035000px;}
.lsa4{letter-spacing:-1.008000px;}
.ls17{letter-spacing:-0.966000px;}
.lsb2{letter-spacing:-0.945000px;}
.ls6a{letter-spacing:-0.925221px;}
.ls42{letter-spacing:-0.897000px;}
.ls9b{letter-spacing:-0.882000px;}
.ls5b{letter-spacing:-0.864000px;}
.ls11{letter-spacing:-0.855000px;}
.lsbb{letter-spacing:-0.840000px;}
.ls1c{letter-spacing:-0.828000px;}
.ls95{letter-spacing:-0.819000px;}
.ls36{letter-spacing:-0.759000px;}
.ls3c{letter-spacing:-0.756000px;}
.ls87{letter-spacing:-0.724086px;}
.lsa9{letter-spacing:-0.693000px;}
.ls1b{letter-spacing:-0.690000px;}
.lsa0{letter-spacing:-0.630000px;}
.ls69{letter-spacing:-0.627000px;}
.ls2a{letter-spacing:-0.621000px;}
.ls6f{letter-spacing:-0.598158px;}
.ls8c{letter-spacing:-0.570000px;}
.ls9c{letter-spacing:-0.567000px;}
.ls60{letter-spacing:-0.552000px;}
.lsa1{letter-spacing:-0.504000px;}
.ls5f{letter-spacing:-0.483000px;}
.lsb9{letter-spacing:-0.480000px;}
.lsaf{letter-spacing:-0.441000px;}
.ls2e{letter-spacing:-0.432000px;}
.lsb8{letter-spacing:-0.420000px;}
.ls37{letter-spacing:-0.414000px;}
.ls5a{letter-spacing:-0.378000px;}
.ls53{letter-spacing:-0.345000px;}
.lse{letter-spacing:-0.300000px;}
.ls7a{letter-spacing:-0.276000px;}
.lsa6{letter-spacing:-0.252000px;}
.ls52{letter-spacing:-0.241362px;}
.lsc{letter-spacing:-0.240000px;}
.ls2d{letter-spacing:-0.216000px;}
.ls46{letter-spacing:-0.207000px;}
.ls85{letter-spacing:-0.201135px;}
.lsa3{letter-spacing:-0.189000px;}
.ls83{letter-spacing:-0.171000px;}
.ls41{letter-spacing:-0.138000px;}
.ls24{letter-spacing:-0.069000px;}
.ls9a{letter-spacing:-0.063000px;}
.ls5c{letter-spacing:-0.062964px;}
.ls2f{letter-spacing:-0.054000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.030000px;}
.ls27{letter-spacing:0.069000px;}
.ls30{letter-spacing:0.108000px;}
.ls2c{letter-spacing:0.138000px;}
.ls5e{letter-spacing:0.207000px;}
.ls29{letter-spacing:0.276000px;}
.ls8{letter-spacing:0.300000px;}
.ls9e{letter-spacing:0.315000px;}
.ls75{letter-spacing:0.345000px;}
.ls7d{letter-spacing:0.402270px;}
.ls8b{letter-spacing:0.414000px;}
.ls99{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.545100px;}
.ls57{letter-spacing:0.552000px;}
.ls80{letter-spacing:0.566676px;}
.ls4d{letter-spacing:0.598500px;}
.lsb{letter-spacing:0.600000px;}
.ls1d{letter-spacing:0.621000px;}
.lsae{letter-spacing:0.630000px;}
.ls18{letter-spacing:0.690000px;}
.ls96{letter-spacing:0.756000px;}
.lsa2{letter-spacing:0.819000px;}
.ls22{letter-spacing:0.828000px;}
.ls72{letter-spacing:0.897000px;}
.ls13{letter-spacing:0.966000px;}
.ls59{letter-spacing:0.972000px;}
.ls49{letter-spacing:1.035000px;}
.ls16{letter-spacing:1.104000px;}
.ls47{letter-spacing:1.173000px;}
.ls91{letter-spacing:1.197000px;}
.ls32{letter-spacing:1.216500px;}
.ls8e{letter-spacing:1.242000px;}
.ls20{letter-spacing:1.312500px;}
.ls3{letter-spacing:1.344000px;}
.ls3b{letter-spacing:1.350000px;}
.ls67{letter-spacing:1.380000px;}
.ls8f{letter-spacing:1.458000px;}
.ls7f{letter-spacing:1.518000px;}
.ls21{letter-spacing:1.546500px;}
.ls97{letter-spacing:1.575000px;}
.ls14{letter-spacing:1.587000px;}
.lsaa{letter-spacing:1.701000px;}
.lsba{letter-spacing:1.740000px;}
.lsb0{letter-spacing:1.764000px;}
.ls40{letter-spacing:1.794000px;}
.ls6c{letter-spacing:2.001000px;}
.ls3f{letter-spacing:2.038500px;}
.ls33{letter-spacing:2.050500px;}
.lsa5{letter-spacing:2.331000px;}
.ls1a{letter-spacing:2.400000px;}
.lsd{letter-spacing:3.696000px;}
.ls79{letter-spacing:3.726000px;}
.ls34{letter-spacing:4.002000px;}
.ls8a{letter-spacing:4.098600px;}
.ls9{letter-spacing:4.200000px;}
.ls89{letter-spacing:4.478100px;}
.ls81{letter-spacing:5.589000px;}
.ls7{letter-spacing:5.760000px;}
.lsa7{letter-spacing:5.859000px;}
.lsa{letter-spacing:5.880000px;}
.lsb1{letter-spacing:5.985000px;}
.ls2{letter-spacing:6.000000px;}
.lsb5{letter-spacing:6.174000px;}
.ls92{letter-spacing:6.237000px;}
.ls90{letter-spacing:6.300000px;}
.ls4b{letter-spacing:7.010400px;}
.ls9f{letter-spacing:7.497000px;}
.ls4c{letter-spacing:8.114400px;}
.ls4e{letter-spacing:8.160156px;}
.lsb7{letter-spacing:8.640000px;}
.ls88{letter-spacing:8.901000px;}
.ls94{letter-spacing:12.663000px;}
.ls93{letter-spacing:467.029200px;}
.ls31{letter-spacing:467.756400px;}
.ls1{letter-spacing:468.191400px;}
.ls19{letter-spacing:468.221400px;}
.ls4a{letter-spacing:468.319200px;}
.ls74{letter-spacing:468.461400px;}
.ls84{letter-spacing:468.949200px;}
.ls8d{letter-spacing:469.136400px;}
.lsb3{letter-spacing:469.946400px;}
.ls66{letter-spacing:471.011400px;}
.ls3e{letter-spacing:952.524000px;}
.ls70{letter-spacing:953.022000px;}
.lsf{letter-spacing:955.644000px;}
.ls1f{letter-spacing:959.694000px;}
.ls5d{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;}
}
.wscb{word-spacing:-25.500000px;}
.ws9f{word-spacing:-24.219000px;}
.ws4{word-spacing:-22.740000px;}
.ws3{word-spacing:-22.620000px;}
.ws2{word-spacing:-21.924000px;}
.ws0{word-spacing:-21.105000px;}
.wsa9{word-spacing:-21.075000px;}
.ws17{word-spacing:-20.775000px;}
.wsa1{word-spacing:-20.493000px;}
.ws50{word-spacing:-20.424000px;}
.ws76{word-spacing:-20.286000px;}
.wsa3{word-spacing:-20.010000px;}
.ws9e{word-spacing:-19.665000px;}
.ws4d{word-spacing:-19.650000px;}
.ws5d{word-spacing:-19.596000px;}
.ws20{word-spacing:-19.527000px;}
.ws6b{word-spacing:-19.425000px;}
.ws7b{word-spacing:-19.389000px;}
.ws5e{word-spacing:-19.320000px;}
.wsaa{word-spacing:-19.278000px;}
.ws98{word-spacing:-19.182000px;}
.wsc9{word-spacing:-19.050000px;}
.wsa4{word-spacing:-18.900000px;}
.ws30{word-spacing:-18.699000px;}
.ws1e{word-spacing:-18.561000px;}
.ws77{word-spacing:-18.492000px;}
.ws10{word-spacing:-18.423000px;}
.ws78{word-spacing:-18.354000px;}
.ws7e{word-spacing:-18.216000px;}
.wsac{word-spacing:-18.018000px;}
.wsad{word-spacing:-17.325000px;}
.ws3e{word-spacing:-17.319000px;}
.ws7d{word-spacing:-17.181000px;}
.ws7c{word-spacing:-16.974000px;}
.ws40{word-spacing:-16.698000px;}
.ws31{word-spacing:-16.629000px;}
.ws7f{word-spacing:-16.491000px;}
.wsab{word-spacing:-16.443000px;}
.ws6e{word-spacing:-16.422000px;}
.ws97{word-spacing:-16.353000px;}
.ws5c{word-spacing:-16.284000px;}
.ws33{word-spacing:-16.215000px;}
.ws96{word-spacing:-16.146000px;}
.ws3f{word-spacing:-16.077000px;}
.ws82{word-spacing:-16.008000px;}
.ws99{word-spacing:-15.939000px;}
.ws1f{word-spacing:-15.870000px;}
.ws51{word-spacing:-15.801000px;}
.ws75{word-spacing:-15.732000px;}
.ws18{word-spacing:-15.663000px;}
.ws6d{word-spacing:-15.594000px;}
.ws4e{word-spacing:-15.525000px;}
.wse{word-spacing:-15.390000px;}
.ws32{word-spacing:-15.318000px;}
.ws22{word-spacing:-15.282000px;}
.wsf{word-spacing:-15.249000px;}
.ws6f{word-spacing:-15.180000px;}
.wsa2{word-spacing:-15.111000px;}
.ws91{word-spacing:-15.042000px;}
.ws80{word-spacing:-14.973000px;}
.ws9b{word-spacing:-14.904000px;}
.ws81{word-spacing:-14.835000px;}
.ws21{word-spacing:-14.742000px;}
.wsae{word-spacing:-14.553000px;}
.ws83{word-spacing:-14.352000px;}
.wsbb{word-spacing:-14.175000px;}
.ws84{word-spacing:-14.007000px;}
.wscc{word-spacing:-13.980000px;}
.wsca{word-spacing:-13.734000px;}
.ws1{word-spacing:-13.146000px;}
.ws52{word-spacing:-12.960000px;}
.ws35{word-spacing:-12.852000px;}
.ws34{word-spacing:-12.582000px;}
.ws85{word-spacing:-11.706057px;}
.ws1d{word-spacing:-11.303787px;}
.ws94{word-spacing:-11.102652px;}
.ws4f{word-spacing:-11.062425px;}
.ws6c{word-spacing:-10.378566px;}
.ws95{word-spacing:-10.217658px;}
.wsb6{word-spacing:-7.497000px;}
.wsa5{word-spacing:-6.300000px;}
.wsa7{word-spacing:-6.237000px;}
.wscd{word-spacing:-6.174000px;}
.ws6{word-spacing:-6.000000px;}
.wsc7{word-spacing:-5.985000px;}
.wsbd{word-spacing:-5.859000px;}
.ws9{word-spacing:-4.200000px;}
.ws36{word-spacing:-4.002000px;}
.ws8b{word-spacing:-3.726000px;}
.wsc{word-spacing:-3.696000px;}
.ws19{word-spacing:-2.400000px;}
.ws72{word-spacing:-2.001000px;}
.ws41{word-spacing:-1.794000px;}
.wsc6{word-spacing:-1.764000px;}
.wsd0{word-spacing:-1.740000px;}
.wsc0{word-spacing:-1.701000px;}
.ws13{word-spacing:-1.587000px;}
.ws8f{word-spacing:-1.518000px;}
.ws3d{word-spacing:-1.350000px;}
.wsa0{word-spacing:-1.242000px;}
.wsa6{word-spacing:-1.197000px;}
.ws4a{word-spacing:-1.173000px;}
.ws14{word-spacing:-1.104000px;}
.ws4c{word-spacing:-1.035000px;}
.ws59{word-spacing:-0.972000px;}
.ws12{word-spacing:-0.966000px;}
.ws23{word-spacing:-0.828000px;}
.wsb9{word-spacing:-0.819000px;}
.wsaf{word-spacing:-0.756000px;}
.ws16{word-spacing:-0.690000px;}
.wsc4{word-spacing:-0.630000px;}
.ws1c{word-spacing:-0.621000px;}
.wsa{word-spacing:-0.600000px;}
.ws90{word-spacing:-0.566676px;}
.ws58{word-spacing:-0.552000px;}
.wsb1{word-spacing:-0.504000px;}
.ws89{word-spacing:-0.414000px;}
.ws86{word-spacing:-0.345000px;}
.ws8{word-spacing:-0.300000px;}
.ws2a{word-spacing:-0.276000px;}
.ws5f{word-spacing:-0.207000px;}
.ws9c{word-spacing:-0.138000px;}
.ws28{word-spacing:-0.069000px;}
.ws5{word-spacing:0.000000px;}
.ws2e{word-spacing:0.054000px;}
.ws5b{word-spacing:0.062964px;}
.wsb2{word-spacing:0.063000px;}
.ws44{word-spacing:0.069000px;}
.ws42{word-spacing:0.138000px;}
.ws93{word-spacing:0.171000px;}
.wsba{word-spacing:0.189000px;}
.ws49{word-spacing:0.207000px;}
.ws2d{word-spacing:0.216000px;}
.wsb{word-spacing:0.240000px;}
.wsbc{word-spacing:0.252000px;}
.ws8c{word-spacing:0.276000px;}
.wsd{word-spacing:0.300000px;}
.ws67{word-spacing:0.345000px;}
.wsa8{word-spacing:0.378000px;}
.ws39{word-spacing:0.414000px;}
.wsce{word-spacing:0.420000px;}
.ws2f{word-spacing:0.432000px;}
.wsc5{word-spacing:0.441000px;}
.wscf{word-spacing:0.480000px;}
.ws60{word-spacing:0.483000px;}
.wsb8{word-spacing:0.504000px;}
.ws61{word-spacing:0.552000px;}
.wsb4{word-spacing:0.567000px;}
.ws9d{word-spacing:0.570000px;}
.ws74{word-spacing:0.598158px;}
.ws2b{word-spacing:0.621000px;}
.ws70{word-spacing:0.627000px;}
.wsb7{word-spacing:0.630000px;}
.ws1a{word-spacing:0.690000px;}
.wsbe{word-spacing:0.693000px;}
.ws9a{word-spacing:0.724086px;}
.wsbf{word-spacing:0.756000px;}
.ws38{word-spacing:0.759000px;}
.ws1b{word-spacing:0.828000px;}
.ws11{word-spacing:0.855000px;}
.ws5a{word-spacing:0.864000px;}
.wsb3{word-spacing:0.882000px;}
.ws43{word-spacing:0.897000px;}
.wsc8{word-spacing:0.945000px;}
.ws15{word-spacing:0.966000px;}
.ws45{word-spacing:1.035000px;}
.ws37{word-spacing:1.104000px;}
.wsc3{word-spacing:1.134000px;}
.ws29{word-spacing:1.173000px;}
.ws46{word-spacing:1.242000px;}
.ws7{word-spacing:1.260000px;}
.ws25{word-spacing:1.311000px;}
.ws24{word-spacing:1.380000px;}
.ws3a{word-spacing:1.449000px;}
.wsc2{word-spacing:1.512000px;}
.ws2c{word-spacing:1.518000px;}
.ws4b{word-spacing:1.587000px;}
.ws68{word-spacing:1.656000px;}
.ws63{word-spacing:1.725000px;}
.ws27{word-spacing:1.794000px;}
.ws79{word-spacing:1.863000px;}
.wsb0{word-spacing:1.890000px;}
.ws48{word-spacing:1.932000px;}
.ws88{word-spacing:2.070000px;}
.ws64{word-spacing:2.139000px;}
.wsb5{word-spacing:2.205000px;}
.ws53{word-spacing:2.208000px;}
.ws7a{word-spacing:2.277000px;}
.ws56{word-spacing:2.346000px;}
.ws57{word-spacing:2.484000px;}
.ws8a{word-spacing:2.553000px;}
.ws26{word-spacing:2.691000px;}
.ws55{word-spacing:2.760000px;}
.wsc1{word-spacing:2.772000px;}
.ws69{word-spacing:3.105000px;}
.ws73{word-spacing:3.174000px;}
.ws3b{word-spacing:3.381000px;}
.ws65{word-spacing:3.450000px;}
.ws47{word-spacing:3.519000px;}
.ws62{word-spacing:3.588000px;}
.ws87{word-spacing:3.657000px;}
.ws6a{word-spacing:3.864000px;}
.ws66{word-spacing:3.933000px;}
.ws8e{word-spacing:4.071000px;}
.ws8d{word-spacing:4.623000px;}
.ws54{word-spacing:6.003000px;}
.ws71{word-spacing:6.141000px;}
.ws92{word-spacing:6.831000px;}
.ws3c{word-spacing:43.445160px;}
._9{margin-left:-11.124000px;}
._20{margin-left:-9.432000px;}
._8{margin-left:-8.424000px;}
._19{margin-left:-7.413900px;}
._a{margin-left:-5.602800px;}
._e{margin-left:-4.542000px;}
._3{margin-left:-2.570400px;}
._6{margin-left:-1.092000px;}
._2{width:1.002000px;}
._0{width:2.100000px;}
._7{width:3.399600px;}
._b{width:4.473600px;}
._1{width:6.000000px;}
._4{width:7.242000px;}
._5{width:8.604000px;}
._13{width:9.658200px;}
._d{width:10.724400px;}
._c{width:12.182400px;}
._14{width:13.569300px;}
._15{width:15.413700px;}
._16{width:17.301000px;}
._22{width:18.370800px;}
._1f{width:19.469400px;}
._1b{width:20.745000px;}
._23{width:22.089600px;}
._18{width:23.655000px;}
._12{width:24.723000px;}
._1e{width:25.880700px;}
._1a{width:27.767124px;}
._1d{width:29.917500px;}
._1c{width:31.020900px;}
._21{width:33.353100px;}
._17{width:43.445160px;}
._f{width:71.400000px;}
._10{width:253.008000px;}
._11{width:578.400000px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.482000px;}
.fsa{font-size:40.227000px;}
.fs3{font-size:42.000000px;}
.fsd{font-size:48.000000px;}
.fsc{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y69{bottom:106.165500px;}
.y1a8{bottom:106.190250px;}
.y1f0{bottom:106.214250px;}
.y256{bottom:106.245000px;}
.y236{bottom:106.267500px;}
.y15e{bottom:106.269000px;}
.y138{bottom:106.275000px;}
.y8c{bottom:106.287000px;}
.y43{bottom:106.296300px;}
.y1c{bottom:106.303050px;}
.y276{bottom:106.308000px;}
.y293{bottom:106.333500px;}
.y212{bottom:106.363500px;}
.y184{bottom:109.294800px;}
.y137{bottom:123.528000px;}
.y8b{bottom:123.540000px;}
.y1a7{bottom:126.459000px;}
.y42{bottom:126.544800px;}
.y1ef{bottom:126.586500px;}
.y115{bottom:126.589500px;}
.y235{bottom:126.837000px;}
.y15d{bottom:127.227750px;}
.y275{bottom:127.239750px;}
.y211{bottom:127.305000px;}
.y255{bottom:127.444500px;}
.y68{bottom:127.693500px;}
.y292{bottom:128.233500px;}
.y1b{bottom:128.638050px;}
.y136{bottom:140.781000px;}
.y8a{bottom:140.793000px;}
.yaf{bottom:145.039500px;}
.y1cc{bottom:145.045500px;}
.y1a6{bottom:146.727750px;}
.y1ee{bottom:146.958750px;}
.y114{bottom:147.013500px;}
.y15c{bottom:148.186500px;}
.y210{bottom:148.246500px;}
.y67{bottom:149.221500px;}
.y291{bottom:150.133500px;}
.y183{bottom:153.342000px;}
.y234{bottom:155.911500px;}
.y274{bottom:156.676500px;}
.y254{bottom:157.149000px;}
.y135{bottom:158.034000px;}
.y89{bottom:158.046000px;}
.yae{bottom:162.292500px;}
.y1cb{bottom:162.298500px;}
.y1a5{bottom:166.996500px;}
.y1ed{bottom:167.331000px;}
.y113{bottom:167.437500px;}
.y15b{bottom:169.145250px;}
.y20f{bottom:169.188000px;}
.y41{bottom:170.593500px;}
.y66{bottom:170.749500px;}
.y290{bottom:172.033500px;}
.y1a{bottom:172.251000px;}
.y182{bottom:173.593500px;}
.y134{bottom:175.287000px;}
.y233{bottom:176.481000px;}
.y88{bottom:178.294500px;}
.y253{bottom:178.348500px;}
.yad{bottom:179.545500px;}
.y1ca{bottom:182.547000px;}
.y273{bottom:186.113250px;}
.y1a4{bottom:187.265250px;}
.y1ec{bottom:187.703250px;}
.y112{bottom:187.861500px;}
.y15a{bottom:190.104000px;}
.y20e{bottom:190.129500px;}
.y40{bottom:190.845000px;}
.y65{bottom:192.277500px;}
.y133{bottom:192.540000px;}
.y19{bottom:193.086000px;}
.y181{bottom:193.845000px;}
.y87{bottom:196.789500px;}
.yac{bottom:196.798500px;}
.y232{bottom:205.555500px;}
.y28f{bottom:206.698500px;}
.y272{bottom:207.045000px;}
.y1a3{bottom:207.534000px;}
.y252{bottom:208.053000px;}
.y1eb{bottom:208.075500px;}
.y111{bottom:208.285500px;}
.y132{bottom:209.793000px;}
.y159{bottom:211.062750px;}
.y20d{bottom:211.071000px;}
.y3f{bottom:211.096500px;}
.y64{bottom:213.805500px;}
.y18{bottom:213.921000px;}
.y86{bottom:214.042500px;}
.y180{bottom:214.096500px;}
.yab{bottom:217.047000px;}
.yd0{bottom:222.411000px;}
.y231{bottom:226.125000px;}
.y1c9{bottom:226.461000px;}
.y131{bottom:227.046000px;}
.y1a2{bottom:227.802750px;}
.y271{bottom:227.976750px;}
.y1ea{bottom:228.447750px;}
.y110{bottom:228.709500px;}
.y251{bottom:229.252500px;}
.y85{bottom:231.295500px;}
.y3e{bottom:231.348000px;}
.y20c{bottom:232.012500px;}
.y158{bottom:232.021500px;}
.y17f{bottom:234.348000px;}
.y17{bottom:234.756000px;}
.y63{bottom:235.333500px;}
.yaa{bottom:235.540500px;}
.ycf{bottom:243.024750px;}
.y230{bottom:246.694500px;}
.y1c8{bottom:246.954000px;}
.y130{bottom:247.294500px;}
.y1a1{bottom:248.071500px;}
.y84{bottom:248.548500px;}
.y1e9{bottom:248.820000px;}
.y10f{bottom:249.133500px;}
.y28e{bottom:249.868500px;}
.y250{bottom:250.452000px;}
.y3d{bottom:251.599500px;}
.ya9{bottom:252.793500px;}
.y20b{bottom:252.954000px;}
.y157{bottom:252.980250px;}
.y17e{bottom:254.599500px;}
.y16{bottom:255.591000px;}
.y62{bottom:256.861500px;}
.y270{bottom:257.413500px;}
.yef{bottom:261.025500px;}
.yce{bottom:263.638500px;}
.y22f{bottom:267.264000px;}
.y1c7{bottom:267.447000px;}
.y1a0{bottom:268.340250px;}
.y83{bottom:268.797000px;}
.y1e8{bottom:269.192250px;}
.y10e{bottom:269.557500px;}
.ya8{bottom:270.046500px;}
.y28d{bottom:271.018500px;}
.y24f{bottom:271.651500px;}
.y3c{bottom:271.851000px;}
.y20a{bottom:273.895500px;}
.y156{bottom:273.939000px;}
.y17d{bottom:274.851000px;}
.y15{bottom:276.426000px;}
.y26f{bottom:278.345250px;}
.y61{bottom:278.389500px;}
.yee{bottom:281.725500px;}
.ycd{bottom:284.252250px;}
.y82{bottom:287.299500px;}
.y1c6{bottom:287.940000px;}
.y19f{bottom:288.609000px;}
.y1e7{bottom:289.564500px;}
.y10d{bottom:289.981500px;}
.y12f{bottom:291.222000px;}
.y3b{bottom:292.102500px;}
.y28c{bottom:292.168500px;}
.y209{bottom:294.837000px;}
.y155{bottom:294.897750px;}
.y17c{bottom:295.102500px;}
.y22e{bottom:296.338500px;}
.y14{bottom:297.261000px;}
.y60{bottom:299.917500px;}
.y24e{bottom:301.356000px;}
.yed{bottom:302.425500px;}
.ya7{bottom:304.552500px;}
.ycc{bottom:304.866000px;}
.y81{bottom:307.548000px;}
.y26e{bottom:307.782000px;}
.y1c5{bottom:308.433000px;}
.y19e{bottom:308.877750px;}
.y1e6{bottom:309.936750px;}
.y10c{bottom:310.405500px;}
.y12e{bottom:312.163500px;}
.y3a{bottom:312.354000px;}
.y28b{bottom:313.318500px;}
.y17b{bottom:315.354000px;}
.y208{bottom:315.778500px;}
.y154{bottom:315.856500px;}
.y5f{bottom:321.445500px;}
.y24d{bottom:322.555500px;}
.yec{bottom:323.125500px;}
.ycb{bottom:325.479750px;}
.y26d{bottom:328.713750px;}
.y1c4{bottom:328.926000px;}
.y19d{bottom:329.146500px;}
.y1e5{bottom:330.309000px;}
.y10b{bottom:330.829500px;}
.y13{bottom:330.861000px;}
.y39{bottom:332.605500px;}
.y12d{bottom:333.105000px;}
.y28a{bottom:334.468500px;}
.y17a{bottom:335.605500px;}
.y207{bottom:336.720000px;}
.y153{bottom:336.815250px;}
.y5e{bottom:342.973500px;}
.y24c{bottom:343.755000px;}
.yeb{bottom:343.825500px;}
.yca{bottom:346.093500px;}
.y22d{bottom:347.527500px;}
.y19c{bottom:349.415250px;}
.y1c3{bottom:349.419000px;}
.y10a{bottom:351.253500px;}
.ya6{bottom:351.561000px;}
.y80{bottom:351.582000px;}
.y38{bottom:352.857000px;}
.y12c{bottom:354.046500px;}
.y289{bottom:355.618500px;}
.y179{bottom:355.857000px;}
.y206{bottom:357.661500px;}
.y152{bottom:357.774000px;}
.y26c{bottom:358.150500px;}
.y5d{bottom:364.501500px;}
.yea{bottom:364.525500px;}
.yc9{bottom:366.707250px;}
.y22c{bottom:368.089500px;}
.y19b{bottom:369.684000px;}
.y1c2{bottom:369.912000px;}
.y109{bottom:371.677500px;}
.y1e4{bottom:371.934000px;}
.y7f{bottom:372.627000px;}
.ya5{bottom:372.761250px;}
.y37{bottom:373.108500px;}
.y24b{bottom:373.459500px;}
.y12b{bottom:374.988000px;}
.y178{bottom:376.108500px;}
.y288{bottom:376.768500px;}
.y205{bottom:378.603000px;}
.y151{bottom:378.732750px;}
.y26b{bottom:379.082250px;}
.y12{bottom:381.471000px;}
.ye9{bottom:385.225500px;}
.y5c{bottom:386.029500px;}
.yc8{bottom:387.321000px;}
.y22b{bottom:388.651500px;}
.y1c1{bottom:390.405000px;}
.y108{bottom:392.101500px;}
.y36{bottom:393.360000px;}
.y7e{bottom:393.672000px;}
.ya4{bottom:393.930750px;}
.y24a{bottom:394.659000px;}
.y12a{bottom:395.929500px;}
.y177{bottom:396.360000px;}
.y287{bottom:397.918500px;}
.y150{bottom:399.691500px;}
.y11{bottom:403.806000px;}
.ye8{bottom:405.925500px;}
.y5b{bottom:407.557500px;}
.yc7{bottom:407.934750px;}
.y26a{bottom:408.519000px;}
.y22a{bottom:409.213500px;}
.y1c0{bottom:410.898000px;}
.y19a{bottom:411.198000px;}
.y107{bottom:412.525500px;}
.y35{bottom:413.611500px;}
.y7d{bottom:414.717000px;}
.ya3{bottom:415.131000px;}
.y176{bottom:416.665500px;}
.y129{bottom:416.871000px;}
.y286{bottom:419.068500px;}
.y14f{bottom:420.650250px;}
.y204{bottom:420.808500px;}
.y249{bottom:424.363500px;}
.ye7{bottom:426.625500px;}
.yc6{bottom:428.548500px;}
.y5a{bottom:429.085500px;}
.y269{bottom:429.450750px;}
.y229{bottom:429.775500px;}
.y1bf{bottom:431.391000px;}
.y106{bottom:432.949500px;}
.y34{bottom:433.911000px;}
.y1e3{bottom:434.139750px;}
.y199{bottom:435.214500px;}
.y7c{bottom:435.762000px;}
.ya2{bottom:436.331250px;}
.y175{bottom:436.917000px;}
.y128{bottom:437.812500px;}
.y285{bottom:440.218500px;}
.y14e{bottom:441.609000px;}
.y248{bottom:445.563000px;}
.ye6{bottom:447.325500px;}
.y10{bottom:447.418500px;}
.yc5{bottom:449.162250px;}
.y228{bottom:450.337500px;}
.y268{bottom:450.382500px;}
.y59{bottom:450.613500px;}
.y1be{bottom:451.884000px;}
.y105{bottom:453.373500px;}
.y33{bottom:454.162500px;}
.y1e2{bottom:454.512000px;}
.y7b{bottom:456.844500px;}
.y174{bottom:457.168500px;}
.ya1{bottom:457.531500px;}
.y127{bottom:458.754000px;}
.y284{bottom:461.368500px;}
.y14d{bottom:462.567750px;}
.ye5{bottom:468.025500px;}
.yf{bottom:468.253500px;}
.yc4{bottom:469.776000px;}
.y227{bottom:470.899500px;}
.y58{bottom:472.141500px;}
.y1bd{bottom:472.377000px;}
.y104{bottom:473.797500px;}
.y32{bottom:474.414000px;}
.y1e1{bottom:474.884250px;}
.y247{bottom:475.267500px;}
.y173{bottom:477.420000px;}
.y7a{bottom:477.889500px;}
.ya0{bottom:478.731750px;}
.y126{bottom:479.695500px;}
.y267{bottom:479.819250px;}
.y283{bottom:482.518500px;}
.y14c{bottom:483.526500px;}
.y203{bottom:483.871500px;}
.ye4{bottom:488.725500px;}
.ye{bottom:489.088500px;}
.yc3{bottom:490.389750px;}
.y226{bottom:491.461500px;}
.y1bc{bottom:492.870000px;}
.y57{bottom:493.669500px;}
.y103{bottom:494.221500px;}
.y31{bottom:494.665500px;}
.y1e0{bottom:495.256500px;}
.y246{bottom:496.467000px;}
.y198{bottom:497.326500px;}
.y172{bottom:497.671500px;}
.y79{bottom:498.934500px;}
.y9f{bottom:499.932000px;}
.y125{bottom:500.637000px;}
.y266{bottom:500.751000px;}
.y282{bottom:503.668500px;}
.y14b{bottom:504.485250px;}
.y202{bottom:504.813000px;}
.ye3{bottom:509.425500px;}
.yd{bottom:509.923500px;}
.yc2{bottom:511.003500px;}
.y225{bottom:512.023500px;}
.y1bb{bottom:513.363000px;}
.y102{bottom:514.645500px;}
.y30{bottom:514.917000px;}
.y56{bottom:515.197500px;}
.y1df{bottom:515.628750px;}
.y197{bottom:517.595250px;}
.y245{bottom:517.666500px;}
.y171{bottom:517.923000px;}
.y78{bottom:519.979500px;}
.y9e{bottom:521.132250px;}
.y124{bottom:521.578500px;}
.y281{bottom:524.818500px;}
.y14a{bottom:525.444000px;}
.y201{bottom:525.754500px;}
.ye2{bottom:530.125500px;}
.y265{bottom:530.187750px;}
.yc{bottom:530.758500px;}
.yc1{bottom:531.617250px;}
.y224{bottom:532.585500px;}
.y1ba{bottom:533.856000px;}
.y101{bottom:535.069500px;}
.y2f{bottom:535.168500px;}
.y1de{bottom:536.001000px;}
.y55{bottom:536.725500px;}
.y196{bottom:537.864000px;}
.y170{bottom:538.174500px;}
.y77{bottom:541.024500px;}
.y9d{bottom:542.332500px;}
.y123{bottom:542.520000px;}
.y280{bottom:545.968500px;}
.y149{bottom:546.402750px;}
.y200{bottom:546.696000px;}
.y244{bottom:547.371000px;}
.ye1{bottom:550.825500px;}
.y264{bottom:551.119500px;}
.yb{bottom:551.593500px;}
.yc0{bottom:552.231000px;}
.y223{bottom:553.147500px;}
.y1b9{bottom:554.349000px;}
.y2e{bottom:555.420000px;}
.y100{bottom:555.493500px;}
.y1dd{bottom:556.373250px;}
.y195{bottom:558.132750px;}
.y54{bottom:558.253500px;}
.y16f{bottom:558.426000px;}
.y76{bottom:562.069500px;}
.y122{bottom:563.461500px;}
.y9c{bottom:563.532750px;}
.y27f{bottom:567.118500px;}
.y148{bottom:567.361500px;}
.y1ff{bottom:567.637500px;}
.ye0{bottom:571.525500px;}
.ybf{bottom:572.844750px;}
.y222{bottom:573.709500px;}
.y1b8{bottom:574.842000px;}
.y2d{bottom:575.671500px;}
.yff{bottom:575.917500px;}
.y1dc{bottom:576.745500px;}
.y243{bottom:577.075500px;}
.y194{bottom:578.401500px;}
.y16e{bottom:578.677500px;}
.y53{bottom:579.781500px;}
.y263{bottom:580.556250px;}
.y75{bottom:583.114500px;}
.y121{bottom:584.403000px;}
.y9b{bottom:584.733000px;}
.ya{bottom:585.193500px;}
.y27e{bottom:588.268500px;}
.y147{bottom:588.320250px;}
.y1fe{bottom:588.579000px;}
.ydf{bottom:592.225500px;}
.ybe{bottom:593.458500px;}
.y221{bottom:594.271500px;}
.y1b7{bottom:595.335000px;}
.y2c{bottom:595.923000px;}
.yfe{bottom:596.341500px;}
.y1db{bottom:597.117750px;}
.y193{bottom:598.670250px;}
.y16d{bottom:598.929000px;}
.y52{bottom:601.309500px;}
.y262{bottom:601.488000px;}
.y74{bottom:604.159500px;}
.y120{bottom:605.344500px;}
.y9a{bottom:605.933250px;}
.y242{bottom:606.780000px;}
.y146{bottom:609.279000px;}
.y1fd{bottom:609.520500px;}
.yde{bottom:612.925500px;}
.ybd{bottom:614.072250px;}
.y220{bottom:614.833500px;}
.y1b6{bottom:615.828000px;}
.y2b{bottom:616.174500px;}
.yfd{bottom:616.765500px;}
.y1da{bottom:617.490000px;}
.y192{bottom:618.939000px;}
.y16c{bottom:619.180500px;}
.y27d{bottom:622.183500px;}
.y51{bottom:622.837500px;}
.y73{bottom:625.204500px;}
.y11f{bottom:626.286000px;}
.y99{bottom:627.125250px;}
.y145{bottom:630.237750px;}
.y1fc{bottom:630.462000px;}
.y261{bottom:630.924750px;}
.ydd{bottom:633.625500px;}
.ybc{bottom:634.686000px;}
.y21f{bottom:635.395500px;}
.y1b5{bottom:636.321000px;}
.y2a{bottom:636.426000px;}
.y241{bottom:636.484500px;}
.yfc{bottom:637.189500px;}
.y1d9{bottom:637.862250px;}
.y191{bottom:639.207750px;}
.y16b{bottom:639.432000px;}
.y9{bottom:644.310000px;}
.y50{bottom:644.365500px;}
.y72{bottom:646.249500px;}
.y11e{bottom:647.227500px;}
.y98{bottom:648.325500px;}
.y144{bottom:651.196500px;}
.y1fb{bottom:651.403500px;}
.y260{bottom:651.856500px;}
.ydc{bottom:654.313500px;}
.ybb{bottom:655.299750px;}
.y21e{bottom:655.957500px;}
.y29{bottom:656.677500px;}
.y1b4{bottom:656.814000px;}
.yfb{bottom:657.613500px;}
.y240{bottom:657.684000px;}
.y1d8{bottom:658.234500px;}
.y190{bottom:659.476500px;}
.y16a{bottom:659.683500px;}
.y4f{bottom:665.893500px;}
.y71{bottom:667.294500px;}
.y11d{bottom:668.169000px;}
.y97{bottom:669.525750px;}
.y143{bottom:672.155250px;}
.y1fa{bottom:672.345000px;}
.y8{bottom:672.639000px;}
.ydb{bottom:675.013500px;}
.yba{bottom:675.913500px;}
.y21d{bottom:676.519500px;}
.y28{bottom:676.929000px;}
.y1b3{bottom:677.307000px;}
.yfa{bottom:678.037500px;}
.y1d7{bottom:678.606750px;}
.y23f{bottom:678.883500px;}
.y18f{bottom:679.745250px;}
.y169{bottom:679.935000px;}
.y25f{bottom:681.293250px;}
.y27c{bottom:681.612000px;}
.y4e{bottom:687.421500px;}
.y70{bottom:688.339500px;}
.y11c{bottom:689.110500px;}
.y96{bottom:690.699000px;}
.y142{bottom:693.114000px;}
.y1f9{bottom:693.286500px;}
.yda{bottom:695.713500px;}
.yb9{bottom:696.527250px;}
.y21c{bottom:697.081500px;}
.y27{bottom:697.180500px;}
.y1b2{bottom:697.800000px;}
.yf9{bottom:698.461500px;}
.y1d6{bottom:698.979000px;}
.y18e{bottom:700.014000px;}
.y168{bottom:700.186500px;}
.y25e{bottom:702.225000px;}
.y23e{bottom:708.588000px;}
.y4d{bottom:708.949500px;}
.y6f{bottom:709.390500px;}
.y11b{bottom:710.043000px;}
.y27b{bottom:710.256000px;}
.y95{bottom:711.899250px;}
.y141{bottom:714.072750px;}
.y1f8{bottom:714.228000px;}
.yd9{bottom:716.413500px;}
.yb8{bottom:717.177750px;}
.y26{bottom:717.432000px;}
.y21b{bottom:717.643500px;}
.y1b1{bottom:718.293000px;}
.yf8{bottom:718.885500px;}
.y1d5{bottom:719.351250px;}
.y18d{bottom:720.282750px;}
.y167{bottom:720.438000px;}
.y7{bottom:722.250000px;}
.y23d{bottom:729.787500px;}
.y6e{bottom:730.435500px;}
.y4c{bottom:730.477500px;}
.y11a{bottom:730.984500px;}
.y25d{bottom:731.661750px;}
.y94{bottom:733.099500px;}
.y140{bottom:735.031500px;}
.y1f7{bottom:735.169500px;}
.yd8{bottom:737.113500px;}
.y25{bottom:737.683500px;}
.yb7{bottom:737.791500px;}
.y21a{bottom:738.205500px;}
.y1b0{bottom:738.786000px;}
.yf7{bottom:739.309500px;}
.y1d4{bottom:739.723500px;}
.y18c{bottom:740.551500px;}
.y166{bottom:740.689500px;}
.y23c{bottom:750.987000px;}
.y6d{bottom:751.480500px;}
.y119{bottom:751.926000px;}
.y4b{bottom:752.005500px;}
.y93{bottom:754.299750px;}
.y6{bottom:755.082000px;}
.y13f{bottom:755.990250px;}
.y1f6{bottom:756.111000px;}
.yd7{bottom:757.813500px;}
.y24{bottom:757.935000px;}
.yb6{bottom:758.405250px;}
.y219{bottom:758.767500px;}
.y1af{bottom:759.267000px;}
.yf6{bottom:759.733500px;}
.y1d3{bottom:760.095750px;}
.y18b{bottom:760.820250px;}
.y165{bottom:760.941000px;}
.y25c{bottom:761.098500px;}
.y4a{bottom:773.533500px;}
.y92{bottom:775.500000px;}
.y13e{bottom:776.949000px;}
.y1f5{bottom:777.052500px;}
.y23{bottom:778.186500px;}
.yd6{bottom:778.501500px;}
.yb5{bottom:779.019000px;}
.y218{bottom:779.329500px;}
.y1ae{bottom:779.760000px;}
.yf5{bottom:780.157500px;}
.y1d2{bottom:780.468000px;}
.y23b{bottom:780.691500px;}
.y18a{bottom:781.089000px;}
.y164{bottom:781.192500px;}
.y25b{bottom:782.030250px;}
.y27a{bottom:782.046000px;}
.y5{bottom:787.914000px;}
.y6c{bottom:793.781250px;}
.y118{bottom:794.124750px;}
.y49{bottom:795.061500px;}
.y91{bottom:796.700250px;}
.y13d{bottom:797.907750px;}
.y1f4{bottom:797.994000px;}
.y22{bottom:798.438000px;}
.yd5{bottom:799.201500px;}
.yb4{bottom:799.632750px;}
.y217{bottom:799.891500px;}
.y1ad{bottom:800.253000px;}
.yf4{bottom:800.581500px;}
.y1d1{bottom:800.840250px;}
.y189{bottom:801.357750px;}
.y163{bottom:801.444000px;}
.y23a{bottom:801.891000px;}
.y25a{bottom:802.962000px;}
.y279{bottom:812.459250px;}
.y48{bottom:816.589500px;}
.y90{bottom:817.900500px;}
.y6b{bottom:818.587500px;}
.y21{bottom:818.689500px;}
.y117{bottom:818.809500px;}
.y13c{bottom:818.866500px;}
.y1f3{bottom:818.935500px;}
.yd4{bottom:819.901500px;}
.yb3{bottom:820.246500px;}
.y216{bottom:820.453500px;}
.y1ac{bottom:820.729500px;}
.yf3{bottom:821.005500px;}
.y1d0{bottom:821.212500px;}
.y188{bottom:821.626500px;}
.y162{bottom:821.695500px;}
.y239{bottom:831.595500px;}
.y259{bottom:832.398750px;}
.y47{bottom:838.117500px;}
.y20{bottom:838.941000px;}
.y8f{bottom:839.100750px;}
.y13b{bottom:839.825250px;}
.y1f2{bottom:839.877000px;}
.yd3{bottom:840.601500px;}
.yb2{bottom:840.860250px;}
.y215{bottom:841.015500px;}
.y1ab{bottom:841.222500px;}
.yf2{bottom:841.429500px;}
.y1cf{bottom:841.584750px;}
.y187{bottom:841.895250px;}
.y161{bottom:841.947000px;}
.y278{bottom:842.872500px;}
.y4{bottom:850.519500px;}
.y238{bottom:852.795000px;}
.y258{bottom:853.330500px;}
.y1f{bottom:859.192500px;}
.y46{bottom:859.645500px;}
.y8e{bottom:860.301000px;}
.y13a{bottom:860.784000px;}
.y1f1{bottom:860.818500px;}
.yd2{bottom:861.301500px;}
.yb1{bottom:861.474000px;}
.y214{bottom:861.577500px;}
.y1aa{bottom:861.715500px;}
.yf1{bottom:861.853500px;}
.y1ce{bottom:861.957000px;}
.y186{bottom:862.164000px;}
.y160{bottom:862.198500px;}
.y277{bottom:873.285750px;}
.y45{bottom:881.173500px;}
.y3{bottom:881.359500px;}
.y8d{bottom:881.501250px;}
.y6a{bottom:881.656500px;}
.y139{bottom:881.742750px;}
.y116{bottom:881.760000px;}
.yd1{bottom:882.001500px;}
.yb0{bottom:882.087750px;}
.y213{bottom:882.139500px;}
.y1a9{bottom:882.208500px;}
.yf0{bottom:882.277500px;}
.y1cd{bottom:882.329250px;}
.y185{bottom:882.432750px;}
.y15f{bottom:882.450000px;}
.y237{bottom:882.499500px;}
.y257{bottom:882.767250px;}
.y1e{bottom:900.706500px;}
.y44{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y1d{bottom:948.189000px;}
.h12{height:26.732030px;}
.ha{height:34.872492px;}
.hc{height:41.648438px;}
.hb{height:46.854492px;}
.he{height:48.530695px;}
.h4{height:52.060547px;}
.h3{height:54.663574px;}
.h8{height:59.869629px;}
.h13{height:59.905629px;}
.h15{height:59.917629px;}
.h14{height:59.935629px;}
.hf{height:60.512695px;}
.h2{height:65.075684px;}
.h17{height:67.236328px;}
.h7{height:70.281738px;}
.h16{height:70.598145px;}
.h6{height:72.884766px;}
.hd{height:77.171777px;}
.h9{height:77.321777px;}
.h10{height:77.429777px;}
.h11{height:77.444777px;}
.h5{height:93.708984px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:80.886600px;}
.x8{left:82.465050px;}
.x1{left:83.686650px;}
.x4{left:85.215000px;}
.xa{left:102.829800px;}
.x6{left:105.028500px;}
.x3{left:106.365000px;}
.x7{left:212.664000px;}
.x2{left:232.602000px;}
.x5{left:234.208500px;}
@media print{
.v3{vertical-align:-15.093333pt;}
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.917333pt;}
.ls5{letter-spacing:-7.488000pt;}
.ls12{letter-spacing:-6.552000pt;}
.ls6b{letter-spacing:-5.458667pt;}
.ls7b{letter-spacing:-4.109333pt;}
.ls82{letter-spacing:-3.864000pt;}
.ls7e{letter-spacing:-3.618667pt;}
.ls63{letter-spacing:-3.496000pt;}
.ls51{letter-spacing:-3.434667pt;}
.ls76{letter-spacing:-3.250667pt;}
.ls58{letter-spacing:-3.189333pt;}
.ls26{letter-spacing:-3.128000pt;}
.ls62{letter-spacing:-3.066667pt;}
.ls3a{letter-spacing:-3.005333pt;}
.ls6e{letter-spacing:-2.821333pt;}
.ls65{letter-spacing:-2.760000pt;}
.ls7c{letter-spacing:-2.698667pt;}
.ls73{letter-spacing:-2.637333pt;}
.lsab{letter-spacing:-2.464000pt;}
.ls54{letter-spacing:-2.453333pt;}
.ls25{letter-spacing:-2.392000pt;}
.ls78{letter-spacing:-2.269333pt;}
.ls56{letter-spacing:-2.208000pt;}
.ls55{letter-spacing:-2.085333pt;}
.ls3d{letter-spacing:-2.064000pt;}
.ls71{letter-spacing:-2.024000pt;}
.ls50{letter-spacing:-1.962667pt;}
.ls9d{letter-spacing:-1.960000pt;}
.ls61{letter-spacing:-1.901333pt;}
.ls77{letter-spacing:-1.840000pt;}
.lsb4{letter-spacing:-1.800000pt;}
.ls45{letter-spacing:-1.717333pt;}
.ls98{letter-spacing:-1.680000pt;}
.ls6d{letter-spacing:-1.656000pt;}
.lsb6{letter-spacing:-1.624000pt;}
.ls15{letter-spacing:-1.594667pt;}
.ls39{letter-spacing:-1.533333pt;}
.ls64{letter-spacing:-1.472000pt;}
.ls68{letter-spacing:-1.466667pt;}
.ls48{letter-spacing:-1.410667pt;}
.ls2b{letter-spacing:-1.349333pt;}
.lsac{letter-spacing:-1.344000pt;}
.ls38{letter-spacing:-1.288000pt;}
.ls4f{letter-spacing:-1.266667pt;}
.lsa8{letter-spacing:-1.232000pt;}
.ls1e{letter-spacing:-1.226667pt;}
.ls23{letter-spacing:-1.165333pt;}
.ls6{letter-spacing:-1.120000pt;}
.ls44{letter-spacing:-1.104000pt;}
.ls28{letter-spacing:-1.042667pt;}
.lsad{letter-spacing:-1.008000pt;}
.ls35{letter-spacing:-0.981333pt;}
.ls86{letter-spacing:-0.965448pt;}
.ls43{letter-spacing:-0.920000pt;}
.lsa4{letter-spacing:-0.896000pt;}
.ls17{letter-spacing:-0.858667pt;}
.lsb2{letter-spacing:-0.840000pt;}
.ls6a{letter-spacing:-0.822419pt;}
.ls42{letter-spacing:-0.797333pt;}
.ls9b{letter-spacing:-0.784000pt;}
.ls5b{letter-spacing:-0.768000pt;}
.ls11{letter-spacing:-0.760000pt;}
.lsbb{letter-spacing:-0.746667pt;}
.ls1c{letter-spacing:-0.736000pt;}
.ls95{letter-spacing:-0.728000pt;}
.ls36{letter-spacing:-0.674667pt;}
.ls3c{letter-spacing:-0.672000pt;}
.ls87{letter-spacing:-0.643632pt;}
.lsa9{letter-spacing:-0.616000pt;}
.ls1b{letter-spacing:-0.613333pt;}
.lsa0{letter-spacing:-0.560000pt;}
.ls69{letter-spacing:-0.557333pt;}
.ls2a{letter-spacing:-0.552000pt;}
.ls6f{letter-spacing:-0.531696pt;}
.ls8c{letter-spacing:-0.506667pt;}
.ls9c{letter-spacing:-0.504000pt;}
.ls60{letter-spacing:-0.490667pt;}
.lsa1{letter-spacing:-0.448000pt;}
.ls5f{letter-spacing:-0.429333pt;}
.lsb9{letter-spacing:-0.426667pt;}
.lsaf{letter-spacing:-0.392000pt;}
.ls2e{letter-spacing:-0.384000pt;}
.lsb8{letter-spacing:-0.373333pt;}
.ls37{letter-spacing:-0.368000pt;}
.ls5a{letter-spacing:-0.336000pt;}
.ls53{letter-spacing:-0.306667pt;}
.lse{letter-spacing:-0.266667pt;}
.ls7a{letter-spacing:-0.245333pt;}
.lsa6{letter-spacing:-0.224000pt;}
.ls52{letter-spacing:-0.214544pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls2d{letter-spacing:-0.192000pt;}
.ls46{letter-spacing:-0.184000pt;}
.ls85{letter-spacing:-0.178787pt;}
.lsa3{letter-spacing:-0.168000pt;}
.ls83{letter-spacing:-0.152000pt;}
.ls41{letter-spacing:-0.122667pt;}
.ls24{letter-spacing:-0.061333pt;}
.ls9a{letter-spacing:-0.056000pt;}
.ls5c{letter-spacing:-0.055968pt;}
.ls2f{letter-spacing:-0.048000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.026667pt;}
.ls27{letter-spacing:0.061333pt;}
.ls30{letter-spacing:0.096000pt;}
.ls2c{letter-spacing:0.122667pt;}
.ls5e{letter-spacing:0.184000pt;}
.ls29{letter-spacing:0.245333pt;}
.ls8{letter-spacing:0.266667pt;}
.ls9e{letter-spacing:0.280000pt;}
.ls75{letter-spacing:0.306667pt;}
.ls7d{letter-spacing:0.357573pt;}
.ls8b{letter-spacing:0.368000pt;}
.ls99{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.484533pt;}
.ls57{letter-spacing:0.490667pt;}
.ls80{letter-spacing:0.503712pt;}
.ls4d{letter-spacing:0.532000pt;}
.lsb{letter-spacing:0.533333pt;}
.ls1d{letter-spacing:0.552000pt;}
.lsae{letter-spacing:0.560000pt;}
.ls18{letter-spacing:0.613333pt;}
.ls96{letter-spacing:0.672000pt;}
.lsa2{letter-spacing:0.728000pt;}
.ls22{letter-spacing:0.736000pt;}
.ls72{letter-spacing:0.797333pt;}
.ls13{letter-spacing:0.858667pt;}
.ls59{letter-spacing:0.864000pt;}
.ls49{letter-spacing:0.920000pt;}
.ls16{letter-spacing:0.981333pt;}
.ls47{letter-spacing:1.042667pt;}
.ls91{letter-spacing:1.064000pt;}
.ls32{letter-spacing:1.081333pt;}
.ls8e{letter-spacing:1.104000pt;}
.ls20{letter-spacing:1.166667pt;}
.ls3{letter-spacing:1.194667pt;}
.ls3b{letter-spacing:1.200000pt;}
.ls67{letter-spacing:1.226667pt;}
.ls8f{letter-spacing:1.296000pt;}
.ls7f{letter-spacing:1.349333pt;}
.ls21{letter-spacing:1.374667pt;}
.ls97{letter-spacing:1.400000pt;}
.ls14{letter-spacing:1.410667pt;}
.lsaa{letter-spacing:1.512000pt;}
.lsba{letter-spacing:1.546667pt;}
.lsb0{letter-spacing:1.568000pt;}
.ls40{letter-spacing:1.594667pt;}
.ls6c{letter-spacing:1.778667pt;}
.ls3f{letter-spacing:1.812000pt;}
.ls33{letter-spacing:1.822667pt;}
.lsa5{letter-spacing:2.072000pt;}
.ls1a{letter-spacing:2.133333pt;}
.lsd{letter-spacing:3.285333pt;}
.ls79{letter-spacing:3.312000pt;}
.ls34{letter-spacing:3.557333pt;}
.ls8a{letter-spacing:3.643200pt;}
.ls9{letter-spacing:3.733333pt;}
.ls89{letter-spacing:3.980533pt;}
.ls81{letter-spacing:4.968000pt;}
.ls7{letter-spacing:5.120000pt;}
.lsa7{letter-spacing:5.208000pt;}
.lsa{letter-spacing:5.226667pt;}
.lsb1{letter-spacing:5.320000pt;}
.ls2{letter-spacing:5.333333pt;}
.lsb5{letter-spacing:5.488000pt;}
.ls92{letter-spacing:5.544000pt;}
.ls90{letter-spacing:5.600000pt;}
.ls4b{letter-spacing:6.231467pt;}
.ls9f{letter-spacing:6.664000pt;}
.ls4c{letter-spacing:7.212800pt;}
.ls4e{letter-spacing:7.253472pt;}
.lsb7{letter-spacing:7.680000pt;}
.ls88{letter-spacing:7.912000pt;}
.ls94{letter-spacing:11.256000pt;}
.ls93{letter-spacing:415.137067pt;}
.ls31{letter-spacing:415.783467pt;}
.ls1{letter-spacing:416.170133pt;}
.ls19{letter-spacing:416.196800pt;}
.ls4a{letter-spacing:416.283733pt;}
.ls74{letter-spacing:416.410133pt;}
.ls84{letter-spacing:416.843733pt;}
.ls8d{letter-spacing:417.010133pt;}
.lsb3{letter-spacing:417.730133pt;}
.ls66{letter-spacing:418.676800pt;}
.ls3e{letter-spacing:846.688000pt;}
.ls70{letter-spacing:847.130667pt;}
.lsf{letter-spacing:849.461333pt;}
.ls1f{letter-spacing:853.061333pt;}
.ls5d{letter-spacing:854.821333pt;}
.wscb{word-spacing:-22.666667pt;}
.ws9f{word-spacing:-21.528000pt;}
.ws4{word-spacing:-20.213333pt;}
.ws3{word-spacing:-20.106667pt;}
.ws2{word-spacing:-19.488000pt;}
.ws0{word-spacing:-18.760000pt;}
.wsa9{word-spacing:-18.733333pt;}
.ws17{word-spacing:-18.466667pt;}
.wsa1{word-spacing:-18.216000pt;}
.ws50{word-spacing:-18.154667pt;}
.ws76{word-spacing:-18.032000pt;}
.wsa3{word-spacing:-17.786667pt;}
.ws9e{word-spacing:-17.480000pt;}
.ws4d{word-spacing:-17.466667pt;}
.ws5d{word-spacing:-17.418667pt;}
.ws20{word-spacing:-17.357333pt;}
.ws6b{word-spacing:-17.266667pt;}
.ws7b{word-spacing:-17.234667pt;}
.ws5e{word-spacing:-17.173333pt;}
.wsaa{word-spacing:-17.136000pt;}
.ws98{word-spacing:-17.050667pt;}
.wsc9{word-spacing:-16.933333pt;}
.wsa4{word-spacing:-16.800000pt;}
.ws30{word-spacing:-16.621333pt;}
.ws1e{word-spacing:-16.498667pt;}
.ws77{word-spacing:-16.437333pt;}
.ws10{word-spacing:-16.376000pt;}
.ws78{word-spacing:-16.314667pt;}
.ws7e{word-spacing:-16.192000pt;}
.wsac{word-spacing:-16.016000pt;}
.wsad{word-spacing:-15.400000pt;}
.ws3e{word-spacing:-15.394667pt;}
.ws7d{word-spacing:-15.272000pt;}
.ws7c{word-spacing:-15.088000pt;}
.ws40{word-spacing:-14.842667pt;}
.ws31{word-spacing:-14.781333pt;}
.ws7f{word-spacing:-14.658667pt;}
.wsab{word-spacing:-14.616000pt;}
.ws6e{word-spacing:-14.597333pt;}
.ws97{word-spacing:-14.536000pt;}
.ws5c{word-spacing:-14.474667pt;}
.ws33{word-spacing:-14.413333pt;}
.ws96{word-spacing:-14.352000pt;}
.ws3f{word-spacing:-14.290667pt;}
.ws82{word-spacing:-14.229333pt;}
.ws99{word-spacing:-14.168000pt;}
.ws1f{word-spacing:-14.106667pt;}
.ws51{word-spacing:-14.045333pt;}
.ws75{word-spacing:-13.984000pt;}
.ws18{word-spacing:-13.922667pt;}
.ws6d{word-spacing:-13.861333pt;}
.ws4e{word-spacing:-13.800000pt;}
.wse{word-spacing:-13.680000pt;}
.ws32{word-spacing:-13.616000pt;}
.ws22{word-spacing:-13.584000pt;}
.wsf{word-spacing:-13.554667pt;}
.ws6f{word-spacing:-13.493333pt;}
.wsa2{word-spacing:-13.432000pt;}
.ws91{word-spacing:-13.370667pt;}
.ws80{word-spacing:-13.309333pt;}
.ws9b{word-spacing:-13.248000pt;}
.ws81{word-spacing:-13.186667pt;}
.ws21{word-spacing:-13.104000pt;}
.wsae{word-spacing:-12.936000pt;}
.ws83{word-spacing:-12.757333pt;}
.wsbb{word-spacing:-12.600000pt;}
.ws84{word-spacing:-12.450667pt;}
.wscc{word-spacing:-12.426667pt;}
.wsca{word-spacing:-12.208000pt;}
.ws1{word-spacing:-11.685333pt;}
.ws52{word-spacing:-11.520000pt;}
.ws35{word-spacing:-11.424000pt;}
.ws34{word-spacing:-11.184000pt;}
.ws85{word-spacing:-10.405384pt;}
.ws1d{word-spacing:-10.047811pt;}
.ws94{word-spacing:-9.869024pt;}
.ws4f{word-spacing:-9.833267pt;}
.ws6c{word-spacing:-9.225392pt;}
.ws95{word-spacing:-9.082363pt;}
.wsb6{word-spacing:-6.664000pt;}
.wsa5{word-spacing:-5.600000pt;}
.wsa7{word-spacing:-5.544000pt;}
.wscd{word-spacing:-5.488000pt;}
.ws6{word-spacing:-5.333333pt;}
.wsc7{word-spacing:-5.320000pt;}
.wsbd{word-spacing:-5.208000pt;}
.ws9{word-spacing:-3.733333pt;}
.ws36{word-spacing:-3.557333pt;}
.ws8b{word-spacing:-3.312000pt;}
.wsc{word-spacing:-3.285333pt;}
.ws19{word-spacing:-2.133333pt;}
.ws72{word-spacing:-1.778667pt;}
.ws41{word-spacing:-1.594667pt;}
.wsc6{word-spacing:-1.568000pt;}
.wsd0{word-spacing:-1.546667pt;}
.wsc0{word-spacing:-1.512000pt;}
.ws13{word-spacing:-1.410667pt;}
.ws8f{word-spacing:-1.349333pt;}
.ws3d{word-spacing:-1.200000pt;}
.wsa0{word-spacing:-1.104000pt;}
.wsa6{word-spacing:-1.064000pt;}
.ws4a{word-spacing:-1.042667pt;}
.ws14{word-spacing:-0.981333pt;}
.ws4c{word-spacing:-0.920000pt;}
.ws59{word-spacing:-0.864000pt;}
.ws12{word-spacing:-0.858667pt;}
.ws23{word-spacing:-0.736000pt;}
.wsb9{word-spacing:-0.728000pt;}
.wsaf{word-spacing:-0.672000pt;}
.ws16{word-spacing:-0.613333pt;}
.wsc4{word-spacing:-0.560000pt;}
.ws1c{word-spacing:-0.552000pt;}
.wsa{word-spacing:-0.533333pt;}
.ws90{word-spacing:-0.503712pt;}
.ws58{word-spacing:-0.490667pt;}
.wsb1{word-spacing:-0.448000pt;}
.ws89{word-spacing:-0.368000pt;}
.ws86{word-spacing:-0.306667pt;}
.ws8{word-spacing:-0.266667pt;}
.ws2a{word-spacing:-0.245333pt;}
.ws5f{word-spacing:-0.184000pt;}
.ws9c{word-spacing:-0.122667pt;}
.ws28{word-spacing:-0.061333pt;}
.ws5{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.048000pt;}
.ws5b{word-spacing:0.055968pt;}
.wsb2{word-spacing:0.056000pt;}
.ws44{word-spacing:0.061333pt;}
.ws42{word-spacing:0.122667pt;}
.ws93{word-spacing:0.152000pt;}
.wsba{word-spacing:0.168000pt;}
.ws49{word-spacing:0.184000pt;}
.ws2d{word-spacing:0.192000pt;}
.wsb{word-spacing:0.213333pt;}
.wsbc{word-spacing:0.224000pt;}
.ws8c{word-spacing:0.245333pt;}
.wsd{word-spacing:0.266667pt;}
.ws67{word-spacing:0.306667pt;}
.wsa8{word-spacing:0.336000pt;}
.ws39{word-spacing:0.368000pt;}
.wsce{word-spacing:0.373333pt;}
.ws2f{word-spacing:0.384000pt;}
.wsc5{word-spacing:0.392000pt;}
.wscf{word-spacing:0.426667pt;}
.ws60{word-spacing:0.429333pt;}
.wsb8{word-spacing:0.448000pt;}
.ws61{word-spacing:0.490667pt;}
.wsb4{word-spacing:0.504000pt;}
.ws9d{word-spacing:0.506667pt;}
.ws74{word-spacing:0.531696pt;}
.ws2b{word-spacing:0.552000pt;}
.ws70{word-spacing:0.557333pt;}
.wsb7{word-spacing:0.560000pt;}
.ws1a{word-spacing:0.613333pt;}
.wsbe{word-spacing:0.616000pt;}
.ws9a{word-spacing:0.643632pt;}
.wsbf{word-spacing:0.672000pt;}
.ws38{word-spacing:0.674667pt;}
.ws1b{word-spacing:0.736000pt;}
.ws11{word-spacing:0.760000pt;}
.ws5a{word-spacing:0.768000pt;}
.wsb3{word-spacing:0.784000pt;}
.ws43{word-spacing:0.797333pt;}
.wsc8{word-spacing:0.840000pt;}
.ws15{word-spacing:0.858667pt;}
.ws45{word-spacing:0.920000pt;}
.ws37{word-spacing:0.981333pt;}
.wsc3{word-spacing:1.008000pt;}
.ws29{word-spacing:1.042667pt;}
.ws46{word-spacing:1.104000pt;}
.ws7{word-spacing:1.120000pt;}
.ws25{word-spacing:1.165333pt;}
.ws24{word-spacing:1.226667pt;}
.ws3a{word-spacing:1.288000pt;}
.wsc2{word-spacing:1.344000pt;}
.ws2c{word-spacing:1.349333pt;}
.ws4b{word-spacing:1.410667pt;}
.ws68{word-spacing:1.472000pt;}
.ws63{word-spacing:1.533333pt;}
.ws27{word-spacing:1.594667pt;}
.ws79{word-spacing:1.656000pt;}
.wsb0{word-spacing:1.680000pt;}
.ws48{word-spacing:1.717333pt;}
.ws88{word-spacing:1.840000pt;}
.ws64{word-spacing:1.901333pt;}
.wsb5{word-spacing:1.960000pt;}
.ws53{word-spacing:1.962667pt;}
.ws7a{word-spacing:2.024000pt;}
.ws56{word-spacing:2.085333pt;}
.ws57{word-spacing:2.208000pt;}
.ws8a{word-spacing:2.269333pt;}
.ws26{word-spacing:2.392000pt;}
.ws55{word-spacing:2.453333pt;}
.wsc1{word-spacing:2.464000pt;}
.ws69{word-spacing:2.760000pt;}
.ws73{word-spacing:2.821333pt;}
.ws3b{word-spacing:3.005333pt;}
.ws65{word-spacing:3.066667pt;}
.ws47{word-spacing:3.128000pt;}
.ws62{word-spacing:3.189333pt;}
.ws87{word-spacing:3.250667pt;}
.ws6a{word-spacing:3.434667pt;}
.ws66{word-spacing:3.496000pt;}
.ws8e{word-spacing:3.618667pt;}
.ws8d{word-spacing:4.109333pt;}
.ws54{word-spacing:5.336000pt;}
.ws71{word-spacing:5.458667pt;}
.ws92{word-spacing:6.072000pt;}
.ws3c{word-spacing:38.617920pt;}
._9{margin-left:-9.888000pt;}
._20{margin-left:-8.384000pt;}
._8{margin-left:-7.488000pt;}
._19{margin-left:-6.590133pt;}
._a{margin-left:-4.980267pt;}
._e{margin-left:-4.037333pt;}
._3{margin-left:-2.284800pt;}
._6{margin-left:-0.970667pt;}
._2{width:0.890667pt;}
._0{width:1.866667pt;}
._7{width:3.021867pt;}
._b{width:3.976533pt;}
._1{width:5.333333pt;}
._4{width:6.437333pt;}
._5{width:7.648000pt;}
._13{width:8.585067pt;}
._d{width:9.532800pt;}
._c{width:10.828800pt;}
._14{width:12.061600pt;}
._15{width:13.701067pt;}
._16{width:15.378667pt;}
._22{width:16.329600pt;}
._1f{width:17.306133pt;}
._1b{width:18.440000pt;}
._23{width:19.635200pt;}
._18{width:21.026667pt;}
._12{width:21.976000pt;}
._1e{width:23.005067pt;}
._1a{width:24.681888pt;}
._1d{width:26.593333pt;}
._1c{width:27.574133pt;}
._21{width:29.647200pt;}
._17{width:38.617920pt;}
._f{width:63.466667pt;}
._10{width:224.896000pt;}
._11{width:514.133333pt;}
.fsb{font-size:27.984000pt;}
.fsa{font-size:35.757333pt;}
.fs3{font-size:37.333333pt;}
.fsd{font-size:42.666667pt;}
.fsc{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y69{bottom:94.369333pt;}
.y1a8{bottom:94.391333pt;}
.y1f0{bottom:94.412667pt;}
.y256{bottom:94.440000pt;}
.y236{bottom:94.460000pt;}
.y15e{bottom:94.461333pt;}
.y138{bottom:94.466667pt;}
.y8c{bottom:94.477333pt;}
.y43{bottom:94.485600pt;}
.y1c{bottom:94.491600pt;}
.y276{bottom:94.496000pt;}
.y293{bottom:94.518667pt;}
.y212{bottom:94.545333pt;}
.y184{bottom:97.150933pt;}
.y137{bottom:109.802667pt;}
.y8b{bottom:109.813333pt;}
.y1a7{bottom:112.408000pt;}
.y42{bottom:112.484267pt;}
.y1ef{bottom:112.521333pt;}
.y115{bottom:112.524000pt;}
.y235{bottom:112.744000pt;}
.y15d{bottom:113.091333pt;}
.y275{bottom:113.102000pt;}
.y211{bottom:113.160000pt;}
.y255{bottom:113.284000pt;}
.y68{bottom:113.505333pt;}
.y292{bottom:113.985333pt;}
.y1b{bottom:114.344933pt;}
.y136{bottom:125.138667pt;}
.y8a{bottom:125.149333pt;}
.yaf{bottom:128.924000pt;}
.y1cc{bottom:128.929333pt;}
.y1a6{bottom:130.424667pt;}
.y1ee{bottom:130.630000pt;}
.y114{bottom:130.678667pt;}
.y15c{bottom:131.721333pt;}
.y210{bottom:131.774667pt;}
.y67{bottom:132.641333pt;}
.y291{bottom:133.452000pt;}
.y183{bottom:136.304000pt;}
.y234{bottom:138.588000pt;}
.y274{bottom:139.268000pt;}
.y254{bottom:139.688000pt;}
.y135{bottom:140.474667pt;}
.y89{bottom:140.485333pt;}
.yae{bottom:144.260000pt;}
.y1cb{bottom:144.265333pt;}
.y1a5{bottom:148.441333pt;}
.y1ed{bottom:148.738667pt;}
.y113{bottom:148.833333pt;}
.y15b{bottom:150.351333pt;}
.y20f{bottom:150.389333pt;}
.y41{bottom:151.638667pt;}
.y66{bottom:151.777333pt;}
.y290{bottom:152.918667pt;}
.y1a{bottom:153.112000pt;}
.y182{bottom:154.305333pt;}
.y134{bottom:155.810667pt;}
.y233{bottom:156.872000pt;}
.y88{bottom:158.484000pt;}
.y253{bottom:158.532000pt;}
.yad{bottom:159.596000pt;}
.y1ca{bottom:162.264000pt;}
.y273{bottom:165.434000pt;}
.y1a4{bottom:166.458000pt;}
.y1ec{bottom:166.847333pt;}
.y112{bottom:166.988000pt;}
.y15a{bottom:168.981333pt;}
.y20e{bottom:169.004000pt;}
.y40{bottom:169.640000pt;}
.y65{bottom:170.913333pt;}
.y133{bottom:171.146667pt;}
.y19{bottom:171.632000pt;}
.y181{bottom:172.306667pt;}
.y87{bottom:174.924000pt;}
.yac{bottom:174.932000pt;}
.y232{bottom:182.716000pt;}
.y28f{bottom:183.732000pt;}
.y272{bottom:184.040000pt;}
.y1a3{bottom:184.474667pt;}
.y252{bottom:184.936000pt;}
.y1eb{bottom:184.956000pt;}
.y111{bottom:185.142667pt;}
.y132{bottom:186.482667pt;}
.y159{bottom:187.611333pt;}
.y20d{bottom:187.618667pt;}
.y3f{bottom:187.641333pt;}
.y64{bottom:190.049333pt;}
.y18{bottom:190.152000pt;}
.y86{bottom:190.260000pt;}
.y180{bottom:190.308000pt;}
.yab{bottom:192.930667pt;}
.yd0{bottom:197.698667pt;}
.y231{bottom:201.000000pt;}
.y1c9{bottom:201.298667pt;}
.y131{bottom:201.818667pt;}
.y1a2{bottom:202.491333pt;}
.y271{bottom:202.646000pt;}
.y1ea{bottom:203.064667pt;}
.y110{bottom:203.297333pt;}
.y251{bottom:203.780000pt;}
.y85{bottom:205.596000pt;}
.y3e{bottom:205.642667pt;}
.y20c{bottom:206.233333pt;}
.y158{bottom:206.241333pt;}
.y17f{bottom:208.309333pt;}
.y17{bottom:208.672000pt;}
.y63{bottom:209.185333pt;}
.yaa{bottom:209.369333pt;}
.ycf{bottom:216.022000pt;}
.y230{bottom:219.284000pt;}
.y1c8{bottom:219.514667pt;}
.y130{bottom:219.817333pt;}
.y1a1{bottom:220.508000pt;}
.y84{bottom:220.932000pt;}
.y1e9{bottom:221.173333pt;}
.y10f{bottom:221.452000pt;}
.y28e{bottom:222.105333pt;}
.y250{bottom:222.624000pt;}
.y3d{bottom:223.644000pt;}
.ya9{bottom:224.705333pt;}
.y20b{bottom:224.848000pt;}
.y157{bottom:224.871333pt;}
.y17e{bottom:226.310667pt;}
.y16{bottom:227.192000pt;}
.y62{bottom:228.321333pt;}
.y270{bottom:228.812000pt;}
.yef{bottom:232.022667pt;}
.yce{bottom:234.345333pt;}
.y22f{bottom:237.568000pt;}
.y1c7{bottom:237.730667pt;}
.y1a0{bottom:238.524667pt;}
.y83{bottom:238.930667pt;}
.y1e8{bottom:239.282000pt;}
.y10e{bottom:239.606667pt;}
.ya8{bottom:240.041333pt;}
.y28d{bottom:240.905333pt;}
.y24f{bottom:241.468000pt;}
.y3c{bottom:241.645333pt;}
.y20a{bottom:243.462667pt;}
.y156{bottom:243.501333pt;}
.y17d{bottom:244.312000pt;}
.y15{bottom:245.712000pt;}
.y26f{bottom:247.418000pt;}
.y61{bottom:247.457333pt;}
.yee{bottom:250.422667pt;}
.ycd{bottom:252.668667pt;}
.y82{bottom:255.377333pt;}
.y1c6{bottom:255.946667pt;}
.y19f{bottom:256.541333pt;}
.y1e7{bottom:257.390667pt;}
.y10d{bottom:257.761333pt;}
.y12f{bottom:258.864000pt;}
.y3b{bottom:259.646667pt;}
.y28c{bottom:259.705333pt;}
.y209{bottom:262.077333pt;}
.y155{bottom:262.131333pt;}
.y17c{bottom:262.313333pt;}
.y22e{bottom:263.412000pt;}
.y14{bottom:264.232000pt;}
.y60{bottom:266.593333pt;}
.y24e{bottom:267.872000pt;}
.yed{bottom:268.822667pt;}
.ya7{bottom:270.713333pt;}
.ycc{bottom:270.992000pt;}
.y81{bottom:273.376000pt;}
.y26e{bottom:273.584000pt;}
.y1c5{bottom:274.162667pt;}
.y19e{bottom:274.558000pt;}
.y1e6{bottom:275.499333pt;}
.y10c{bottom:275.916000pt;}
.y12e{bottom:277.478667pt;}
.y3a{bottom:277.648000pt;}
.y28b{bottom:278.505333pt;}
.y17b{bottom:280.314667pt;}
.y208{bottom:280.692000pt;}
.y154{bottom:280.761333pt;}
.y5f{bottom:285.729333pt;}
.y24d{bottom:286.716000pt;}
.yec{bottom:287.222667pt;}
.ycb{bottom:289.315333pt;}
.y26d{bottom:292.190000pt;}
.y1c4{bottom:292.378667pt;}
.y19d{bottom:292.574667pt;}
.y1e5{bottom:293.608000pt;}
.y10b{bottom:294.070667pt;}
.y13{bottom:294.098667pt;}
.y39{bottom:295.649333pt;}
.y12d{bottom:296.093333pt;}
.y28a{bottom:297.305333pt;}
.y17a{bottom:298.316000pt;}
.y207{bottom:299.306667pt;}
.y153{bottom:299.391333pt;}
.y5e{bottom:304.865333pt;}
.y24c{bottom:305.560000pt;}
.yeb{bottom:305.622667pt;}
.yca{bottom:307.638667pt;}
.y22d{bottom:308.913333pt;}
.y19c{bottom:310.591333pt;}
.y1c3{bottom:310.594667pt;}
.y10a{bottom:312.225333pt;}
.ya6{bottom:312.498667pt;}
.y80{bottom:312.517333pt;}
.y38{bottom:313.650667pt;}
.y12c{bottom:314.708000pt;}
.y289{bottom:316.105333pt;}
.y179{bottom:316.317333pt;}
.y206{bottom:317.921333pt;}
.y152{bottom:318.021333pt;}
.y26c{bottom:318.356000pt;}
.y5d{bottom:324.001333pt;}
.yea{bottom:324.022667pt;}
.yc9{bottom:325.962000pt;}
.y22c{bottom:327.190667pt;}
.y19b{bottom:328.608000pt;}
.y1c2{bottom:328.810667pt;}
.y109{bottom:330.380000pt;}
.y1e4{bottom:330.608000pt;}
.y7f{bottom:331.224000pt;}
.ya5{bottom:331.343333pt;}
.y37{bottom:331.652000pt;}
.y24b{bottom:331.964000pt;}
.y12b{bottom:333.322667pt;}
.y178{bottom:334.318667pt;}
.y288{bottom:334.905333pt;}
.y205{bottom:336.536000pt;}
.y151{bottom:336.651333pt;}
.y26b{bottom:336.962000pt;}
.y12{bottom:339.085333pt;}
.ye9{bottom:342.422667pt;}
.y5c{bottom:343.137333pt;}
.yc8{bottom:344.285333pt;}
.y22b{bottom:345.468000pt;}
.y1c1{bottom:347.026667pt;}
.y108{bottom:348.534667pt;}
.y36{bottom:349.653333pt;}
.y7e{bottom:349.930667pt;}
.ya4{bottom:350.160667pt;}
.y24a{bottom:350.808000pt;}
.y12a{bottom:351.937333pt;}
.y177{bottom:352.320000pt;}
.y287{bottom:353.705333pt;}
.y150{bottom:355.281333pt;}
.y11{bottom:358.938667pt;}
.ye8{bottom:360.822667pt;}
.y5b{bottom:362.273333pt;}
.yc7{bottom:362.608667pt;}
.y26a{bottom:363.128000pt;}
.y22a{bottom:363.745333pt;}
.y1c0{bottom:365.242667pt;}
.y19a{bottom:365.509333pt;}
.y107{bottom:366.689333pt;}
.y35{bottom:367.654667pt;}
.y7d{bottom:368.637333pt;}
.ya3{bottom:369.005333pt;}
.y176{bottom:370.369333pt;}
.y129{bottom:370.552000pt;}
.y286{bottom:372.505333pt;}
.y14f{bottom:373.911333pt;}
.y204{bottom:374.052000pt;}
.y249{bottom:377.212000pt;}
.ye7{bottom:379.222667pt;}
.yc6{bottom:380.932000pt;}
.y5a{bottom:381.409333pt;}
.y269{bottom:381.734000pt;}
.y229{bottom:382.022667pt;}
.y1bf{bottom:383.458667pt;}
.y106{bottom:384.844000pt;}
.y34{bottom:385.698667pt;}
.y1e3{bottom:385.902000pt;}
.y199{bottom:386.857333pt;}
.y7c{bottom:387.344000pt;}
.ya2{bottom:387.850000pt;}
.y175{bottom:388.370667pt;}
.y128{bottom:389.166667pt;}
.y285{bottom:391.305333pt;}
.y14e{bottom:392.541333pt;}
.y248{bottom:396.056000pt;}
.ye6{bottom:397.622667pt;}
.y10{bottom:397.705333pt;}
.yc5{bottom:399.255333pt;}
.y228{bottom:400.300000pt;}
.y268{bottom:400.340000pt;}
.y59{bottom:400.545333pt;}
.y1be{bottom:401.674667pt;}
.y105{bottom:402.998667pt;}
.y33{bottom:403.700000pt;}
.y1e2{bottom:404.010667pt;}
.y7b{bottom:406.084000pt;}
.y174{bottom:406.372000pt;}
.ya1{bottom:406.694667pt;}
.y127{bottom:407.781333pt;}
.y284{bottom:410.105333pt;}
.y14d{bottom:411.171333pt;}
.ye5{bottom:416.022667pt;}
.yf{bottom:416.225333pt;}
.yc4{bottom:417.578667pt;}
.y227{bottom:418.577333pt;}
.y58{bottom:419.681333pt;}
.y1bd{bottom:419.890667pt;}
.y104{bottom:421.153333pt;}
.y32{bottom:421.701333pt;}
.y1e1{bottom:422.119333pt;}
.y247{bottom:422.460000pt;}
.y173{bottom:424.373333pt;}
.y7a{bottom:424.790667pt;}
.ya0{bottom:425.539333pt;}
.y126{bottom:426.396000pt;}
.y267{bottom:426.506000pt;}
.y283{bottom:428.905333pt;}
.y14c{bottom:429.801333pt;}
.y203{bottom:430.108000pt;}
.ye4{bottom:434.422667pt;}
.ye{bottom:434.745333pt;}
.yc3{bottom:435.902000pt;}
.y226{bottom:436.854667pt;}
.y1bc{bottom:438.106667pt;}
.y57{bottom:438.817333pt;}
.y103{bottom:439.308000pt;}
.y31{bottom:439.702667pt;}
.y1e0{bottom:440.228000pt;}
.y246{bottom:441.304000pt;}
.y198{bottom:442.068000pt;}
.y172{bottom:442.374667pt;}
.y79{bottom:443.497333pt;}
.y9f{bottom:444.384000pt;}
.y125{bottom:445.010667pt;}
.y266{bottom:445.112000pt;}
.y282{bottom:447.705333pt;}
.y14b{bottom:448.431333pt;}
.y202{bottom:448.722667pt;}
.ye3{bottom:452.822667pt;}
.yd{bottom:453.265333pt;}
.yc2{bottom:454.225333pt;}
.y225{bottom:455.132000pt;}
.y1bb{bottom:456.322667pt;}
.y102{bottom:457.462667pt;}
.y30{bottom:457.704000pt;}
.y56{bottom:457.953333pt;}
.y1df{bottom:458.336667pt;}
.y197{bottom:460.084667pt;}
.y245{bottom:460.148000pt;}
.y171{bottom:460.376000pt;}
.y78{bottom:462.204000pt;}
.y9e{bottom:463.228667pt;}
.y124{bottom:463.625333pt;}
.y281{bottom:466.505333pt;}
.y14a{bottom:467.061333pt;}
.y201{bottom:467.337333pt;}
.ye2{bottom:471.222667pt;}
.y265{bottom:471.278000pt;}
.yc{bottom:471.785333pt;}
.yc1{bottom:472.548667pt;}
.y224{bottom:473.409333pt;}
.y1ba{bottom:474.538667pt;}
.y101{bottom:475.617333pt;}
.y2f{bottom:475.705333pt;}
.y1de{bottom:476.445333pt;}
.y55{bottom:477.089333pt;}
.y196{bottom:478.101333pt;}
.y170{bottom:478.377333pt;}
.y77{bottom:480.910667pt;}
.y9d{bottom:482.073333pt;}
.y123{bottom:482.240000pt;}
.y280{bottom:485.305333pt;}
.y149{bottom:485.691333pt;}
.y200{bottom:485.952000pt;}
.y244{bottom:486.552000pt;}
.ye1{bottom:489.622667pt;}
.y264{bottom:489.884000pt;}
.yb{bottom:490.305333pt;}
.yc0{bottom:490.872000pt;}
.y223{bottom:491.686667pt;}
.y1b9{bottom:492.754667pt;}
.y2e{bottom:493.706667pt;}
.y100{bottom:493.772000pt;}
.y1dd{bottom:494.554000pt;}
.y195{bottom:496.118000pt;}
.y54{bottom:496.225333pt;}
.y16f{bottom:496.378667pt;}
.y76{bottom:499.617333pt;}
.y122{bottom:500.854667pt;}
.y9c{bottom:500.918000pt;}
.y27f{bottom:504.105333pt;}
.y148{bottom:504.321333pt;}
.y1ff{bottom:504.566667pt;}
.ye0{bottom:508.022667pt;}
.ybf{bottom:509.195333pt;}
.y222{bottom:509.964000pt;}
.y1b8{bottom:510.970667pt;}
.y2d{bottom:511.708000pt;}
.yff{bottom:511.926667pt;}
.y1dc{bottom:512.662667pt;}
.y243{bottom:512.956000pt;}
.y194{bottom:514.134667pt;}
.y16e{bottom:514.380000pt;}
.y53{bottom:515.361333pt;}
.y263{bottom:516.050000pt;}
.y75{bottom:518.324000pt;}
.y121{bottom:519.469333pt;}
.y9b{bottom:519.762667pt;}
.ya{bottom:520.172000pt;}
.y27e{bottom:522.905333pt;}
.y147{bottom:522.951333pt;}
.y1fe{bottom:523.181333pt;}
.ydf{bottom:526.422667pt;}
.ybe{bottom:527.518667pt;}
.y221{bottom:528.241333pt;}
.y1b7{bottom:529.186667pt;}
.y2c{bottom:529.709333pt;}
.yfe{bottom:530.081333pt;}
.y1db{bottom:530.771333pt;}
.y193{bottom:532.151333pt;}
.y16d{bottom:532.381333pt;}
.y52{bottom:534.497333pt;}
.y262{bottom:534.656000pt;}
.y74{bottom:537.030667pt;}
.y120{bottom:538.084000pt;}
.y9a{bottom:538.607333pt;}
.y242{bottom:539.360000pt;}
.y146{bottom:541.581333pt;}
.y1fd{bottom:541.796000pt;}
.yde{bottom:544.822667pt;}
.ybd{bottom:545.842000pt;}
.y220{bottom:546.518667pt;}
.y1b6{bottom:547.402667pt;}
.y2b{bottom:547.710667pt;}
.yfd{bottom:548.236000pt;}
.y1da{bottom:548.880000pt;}
.y192{bottom:550.168000pt;}
.y16c{bottom:550.382667pt;}
.y27d{bottom:553.052000pt;}
.y51{bottom:553.633333pt;}
.y73{bottom:555.737333pt;}
.y11f{bottom:556.698667pt;}
.y99{bottom:557.444667pt;}
.y145{bottom:560.211333pt;}
.y1fc{bottom:560.410667pt;}
.y261{bottom:560.822000pt;}
.ydd{bottom:563.222667pt;}
.ybc{bottom:564.165333pt;}
.y21f{bottom:564.796000pt;}
.y1b5{bottom:565.618667pt;}
.y2a{bottom:565.712000pt;}
.y241{bottom:565.764000pt;}
.yfc{bottom:566.390667pt;}
.y1d9{bottom:566.988667pt;}
.y191{bottom:568.184667pt;}
.y16b{bottom:568.384000pt;}
.y9{bottom:572.720000pt;}
.y50{bottom:572.769333pt;}
.y72{bottom:574.444000pt;}
.y11e{bottom:575.313333pt;}
.y98{bottom:576.289333pt;}
.y144{bottom:578.841333pt;}
.y1fb{bottom:579.025333pt;}
.y260{bottom:579.428000pt;}
.ydc{bottom:581.612000pt;}
.ybb{bottom:582.488667pt;}
.y21e{bottom:583.073333pt;}
.y29{bottom:583.713333pt;}
.y1b4{bottom:583.834667pt;}
.yfb{bottom:584.545333pt;}
.y240{bottom:584.608000pt;}
.y1d8{bottom:585.097333pt;}
.y190{bottom:586.201333pt;}
.y16a{bottom:586.385333pt;}
.y4f{bottom:591.905333pt;}
.y71{bottom:593.150667pt;}
.y11d{bottom:593.928000pt;}
.y97{bottom:595.134000pt;}
.y143{bottom:597.471333pt;}
.y1fa{bottom:597.640000pt;}
.y8{bottom:597.901333pt;}
.ydb{bottom:600.012000pt;}
.yba{bottom:600.812000pt;}
.y21d{bottom:601.350667pt;}
.y28{bottom:601.714667pt;}
.y1b3{bottom:602.050667pt;}
.yfa{bottom:602.700000pt;}
.y1d7{bottom:603.206000pt;}
.y23f{bottom:603.452000pt;}
.y18f{bottom:604.218000pt;}
.y169{bottom:604.386667pt;}
.y25f{bottom:605.594000pt;}
.y27c{bottom:605.877333pt;}
.y4e{bottom:611.041333pt;}
.y70{bottom:611.857333pt;}
.y11c{bottom:612.542667pt;}
.y96{bottom:613.954667pt;}
.y142{bottom:616.101333pt;}
.y1f9{bottom:616.254667pt;}
.yda{bottom:618.412000pt;}
.yb9{bottom:619.135333pt;}
.y21c{bottom:619.628000pt;}
.y27{bottom:619.716000pt;}
.y1b2{bottom:620.266667pt;}
.yf9{bottom:620.854667pt;}
.y1d6{bottom:621.314667pt;}
.y18e{bottom:622.234667pt;}
.y168{bottom:622.388000pt;}
.y25e{bottom:624.200000pt;}
.y23e{bottom:629.856000pt;}
.y4d{bottom:630.177333pt;}
.y6f{bottom:630.569333pt;}
.y11b{bottom:631.149333pt;}
.y27b{bottom:631.338667pt;}
.y95{bottom:632.799333pt;}
.y141{bottom:634.731333pt;}
.y1f8{bottom:634.869333pt;}
.yd9{bottom:636.812000pt;}
.yb8{bottom:637.491333pt;}
.y26{bottom:637.717333pt;}
.y21b{bottom:637.905333pt;}
.y1b1{bottom:638.482667pt;}
.yf8{bottom:639.009333pt;}
.y1d5{bottom:639.423333pt;}
.y18d{bottom:640.251333pt;}
.y167{bottom:640.389333pt;}
.y7{bottom:642.000000pt;}
.y23d{bottom:648.700000pt;}
.y6e{bottom:649.276000pt;}
.y4c{bottom:649.313333pt;}
.y11a{bottom:649.764000pt;}
.y25d{bottom:650.366000pt;}
.y94{bottom:651.644000pt;}
.y140{bottom:653.361333pt;}
.y1f7{bottom:653.484000pt;}
.yd8{bottom:655.212000pt;}
.y25{bottom:655.718667pt;}
.yb7{bottom:655.814667pt;}
.y21a{bottom:656.182667pt;}
.y1b0{bottom:656.698667pt;}
.yf7{bottom:657.164000pt;}
.y1d4{bottom:657.532000pt;}
.y18c{bottom:658.268000pt;}
.y166{bottom:658.390667pt;}
.y23c{bottom:667.544000pt;}
.y6d{bottom:667.982667pt;}
.y119{bottom:668.378667pt;}
.y4b{bottom:668.449333pt;}
.y93{bottom:670.488667pt;}
.y6{bottom:671.184000pt;}
.y13f{bottom:671.991333pt;}
.y1f6{bottom:672.098667pt;}
.yd7{bottom:673.612000pt;}
.y24{bottom:673.720000pt;}
.yb6{bottom:674.138000pt;}
.y219{bottom:674.460000pt;}
.y1af{bottom:674.904000pt;}
.yf6{bottom:675.318667pt;}
.y1d3{bottom:675.640667pt;}
.y18b{bottom:676.284667pt;}
.y165{bottom:676.392000pt;}
.y25c{bottom:676.532000pt;}
.y4a{bottom:687.585333pt;}
.y92{bottom:689.333333pt;}
.y13e{bottom:690.621333pt;}
.y1f5{bottom:690.713333pt;}
.y23{bottom:691.721333pt;}
.yd6{bottom:692.001333pt;}
.yb5{bottom:692.461333pt;}
.y218{bottom:692.737333pt;}
.y1ae{bottom:693.120000pt;}
.yf5{bottom:693.473333pt;}
.y1d2{bottom:693.749333pt;}
.y23b{bottom:693.948000pt;}
.y18a{bottom:694.301333pt;}
.y164{bottom:694.393333pt;}
.y25b{bottom:695.138000pt;}
.y27a{bottom:695.152000pt;}
.y5{bottom:700.368000pt;}
.y6c{bottom:705.583333pt;}
.y118{bottom:705.888667pt;}
.y49{bottom:706.721333pt;}
.y91{bottom:708.178000pt;}
.y13d{bottom:709.251333pt;}
.y1f4{bottom:709.328000pt;}
.y22{bottom:709.722667pt;}
.yd5{bottom:710.401333pt;}
.yb4{bottom:710.784667pt;}
.y217{bottom:711.014667pt;}
.y1ad{bottom:711.336000pt;}
.yf4{bottom:711.628000pt;}
.y1d1{bottom:711.858000pt;}
.y189{bottom:712.318000pt;}
.y163{bottom:712.394667pt;}
.y23a{bottom:712.792000pt;}
.y25a{bottom:713.744000pt;}
.y279{bottom:722.186000pt;}
.y48{bottom:725.857333pt;}
.y90{bottom:727.022667pt;}
.y6b{bottom:727.633333pt;}
.y21{bottom:727.724000pt;}
.y117{bottom:727.830667pt;}
.y13c{bottom:727.881333pt;}
.y1f3{bottom:727.942667pt;}
.yd4{bottom:728.801333pt;}
.yb3{bottom:729.108000pt;}
.y216{bottom:729.292000pt;}
.y1ac{bottom:729.537333pt;}
.yf3{bottom:729.782667pt;}
.y1d0{bottom:729.966667pt;}
.y188{bottom:730.334667pt;}
.y162{bottom:730.396000pt;}
.y239{bottom:739.196000pt;}
.y259{bottom:739.910000pt;}
.y47{bottom:744.993333pt;}
.y20{bottom:745.725333pt;}
.y8f{bottom:745.867333pt;}
.y13b{bottom:746.511333pt;}
.y1f2{bottom:746.557333pt;}
.yd3{bottom:747.201333pt;}
.yb2{bottom:747.431333pt;}
.y215{bottom:747.569333pt;}
.y1ab{bottom:747.753333pt;}
.yf2{bottom:747.937333pt;}
.y1cf{bottom:748.075333pt;}
.y187{bottom:748.351333pt;}
.y161{bottom:748.397333pt;}
.y278{bottom:749.220000pt;}
.y4{bottom:756.017333pt;}
.y238{bottom:758.040000pt;}
.y258{bottom:758.516000pt;}
.y1f{bottom:763.726667pt;}
.y46{bottom:764.129333pt;}
.y8e{bottom:764.712000pt;}
.y13a{bottom:765.141333pt;}
.y1f1{bottom:765.172000pt;}
.yd2{bottom:765.601333pt;}
.yb1{bottom:765.754667pt;}
.y214{bottom:765.846667pt;}
.y1aa{bottom:765.969333pt;}
.yf1{bottom:766.092000pt;}
.y1ce{bottom:766.184000pt;}
.y186{bottom:766.368000pt;}
.y160{bottom:766.398667pt;}
.y277{bottom:776.254000pt;}
.y45{bottom:783.265333pt;}
.y3{bottom:783.430667pt;}
.y8d{bottom:783.556667pt;}
.y6a{bottom:783.694667pt;}
.y139{bottom:783.771333pt;}
.y116{bottom:783.786667pt;}
.yd1{bottom:784.001333pt;}
.yb0{bottom:784.078000pt;}
.y213{bottom:784.124000pt;}
.y1a9{bottom:784.185333pt;}
.yf0{bottom:784.246667pt;}
.y1cd{bottom:784.292667pt;}
.y185{bottom:784.384667pt;}
.y15f{bottom:784.400000pt;}
.y237{bottom:784.444000pt;}
.y257{bottom:784.682000pt;}
.y1e{bottom:800.628000pt;}
.y44{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y1d{bottom:842.834667pt;}
.h12{height:23.761805pt;}
.ha{height:30.997771pt;}
.hc{height:37.020833pt;}
.hb{height:41.648438pt;}
.he{height:43.138396pt;}
.h4{height:46.276042pt;}
.h3{height:48.589844pt;}
.h8{height:53.217448pt;}
.h13{height:53.249448pt;}
.h15{height:53.260115pt;}
.h14{height:53.276115pt;}
.hf{height:53.789062pt;}
.h2{height:57.845052pt;}
.h17{height:59.765625pt;}
.h7{height:62.472656pt;}
.h16{height:62.753906pt;}
.h6{height:64.786458pt;}
.hd{height:68.597135pt;}
.h9{height:68.730469pt;}
.h10{height:68.826469pt;}
.h11{height:68.839802pt;}
.h5{height:83.296875pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:71.899200pt;}
.x8{left:73.302267pt;}
.x1{left:74.388133pt;}
.x4{left:75.746667pt;}
.xa{left:91.404267pt;}
.x6{left:93.358667pt;}
.x3{left:94.546667pt;}
.x7{left:189.034667pt;}
.x2{left:206.757333pt;}
.x5{left:208.185333pt;}
}




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