
    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_a76e6a7fc67f682708aca666.woff')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_134116f6a84681047f988417.woff')format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_4f9371231551f97fb3d8fb0f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.223000;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_e9f575a3454de10908779ca0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_d92096aa351326e760819449.woff')format("woff");}.ff5{font-family:ff5;line-height:0.732000;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_55fd1013364d94a96eeede15.woff')format("woff");}.ff6{font-family:ff6;line-height:0.924000;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_26d3ccacb60b21ec7430aa96.woff')format("woff");}.ff7{font-family:ff7;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_796e46e86553c6e5a03881a1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c032a64a57f1cb815a4531c8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.328000;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:ffa;src:url('chunks/assets/font_658fc41de82e9f02e07b6434.woff')format("woff");}.ffa{font-family:ffa;line-height:0.605000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.400055px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.388073px;}
.v1{vertical-align:24.000000px;}
.ls56{letter-spacing:-1.680000px;}
.ls5c{letter-spacing:-1.632000px;}
.ls31{letter-spacing:-1.560000px;}
.ls30{letter-spacing:-1.500000px;}
.ls2e{letter-spacing:-1.440000px;}
.ls4f{letter-spacing:-1.380000px;}
.ls93{letter-spacing:-1.377000px;}
.ls32{letter-spacing:-1.320000px;}
.ls57{letter-spacing:-1.260000px;}
.ls55{letter-spacing:-1.200000px;}
.ls33{letter-spacing:-1.140000px;}
.ls5d{letter-spacing:-1.122000px;}
.ls35{letter-spacing:-1.080000px;}
.ls34{letter-spacing:-1.020000px;}
.ls2f{letter-spacing:-0.960000px;}
.ls2d{letter-spacing:-0.900000px;}
.ls71{letter-spacing:-0.780000px;}
.ls4e{letter-spacing:-0.600000px;}
.ls92{letter-spacing:-0.561000px;}
.ls70{letter-spacing:-0.540000px;}
.ls48{letter-spacing:-0.510000px;}
.ls40{letter-spacing:-0.480000px;}
.ls95{letter-spacing:-0.459000px;}
.ls3f{letter-spacing:-0.420000px;}
.ls3e{letter-spacing:-0.360000px;}
.ls8c{letter-spacing:-0.357000px;}
.ls8e{letter-spacing:-0.306000px;}
.ls3d{letter-spacing:-0.300000px;}
.ls94{letter-spacing:-0.255000px;}
.lsa{letter-spacing:-0.240000px;}
.ls8d{letter-spacing:-0.204000px;}
.lsb{letter-spacing:-0.180000px;}
.ls8b{letter-spacing:-0.153000px;}
.lsc{letter-spacing:-0.120000px;}
.ls73{letter-spacing:-0.102000px;}
.ls9{letter-spacing:-0.060000px;}
.ls72{letter-spacing:-0.051000px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000037px;}
.ls0{letter-spacing:0.000085px;}
.ls1b{letter-spacing:0.006000px;}
.ls76{letter-spacing:0.051000px;}
.ls36{letter-spacing:0.060000px;}
.ls5e{letter-spacing:0.090000px;}
.ls67{letter-spacing:0.102000px;}
.ls2{letter-spacing:0.120000px;}
.ls3b{letter-spacing:0.150000px;}
.ls6a{letter-spacing:0.153000px;}
.ls88{letter-spacing:0.178500px;}
.ls4{letter-spacing:0.178791px;}
.ls37{letter-spacing:0.180000px;}
.ls62{letter-spacing:0.204000px;}
.ls6f{letter-spacing:0.229500px;}
.ls1{letter-spacing:0.240000px;}
.ls5{letter-spacing:0.255000px;}
.ls75{letter-spacing:0.264000px;}
.ls6c{letter-spacing:0.280500px;}
.ls78{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.300000px;}
.ls68{letter-spacing:0.306000px;}
.ls6d{letter-spacing:0.331500px;}
.ls77{letter-spacing:0.357000px;}
.ls15{letter-spacing:0.360000px;}
.ls6b{letter-spacing:0.408000px;}
.ls11{letter-spacing:0.420000px;}
.ls66{letter-spacing:0.459000px;}
.ls39{letter-spacing:0.480000px;}
.ls58{letter-spacing:0.510000px;}
.ls5b{letter-spacing:0.534000px;}
.ls12{letter-spacing:0.540000px;}
.ls14{letter-spacing:0.557943px;}
.ls69{letter-spacing:0.561000px;}
.ls3a{letter-spacing:0.570000px;}
.ls3c{letter-spacing:0.600000px;}
.ls65{letter-spacing:0.612000px;}
.ls13{letter-spacing:0.660000px;}
.ls63{letter-spacing:0.663000px;}
.ls64{letter-spacing:0.714000px;}
.ls10{letter-spacing:0.720000px;}
.ls8f{letter-spacing:0.739500px;}
.ls41{letter-spacing:0.750000px;}
.ls90{letter-spacing:0.765000px;}
.ls2c{letter-spacing:0.780000px;}
.ls74{letter-spacing:0.816000px;}
.ls19{letter-spacing:0.834000px;}
.ls21{letter-spacing:0.840000px;}
.ls6e{letter-spacing:0.867000px;}
.ls2a{letter-spacing:0.870000px;}
.ls1a{letter-spacing:0.900000px;}
.ls7e{letter-spacing:0.918000px;}
.ls16{letter-spacing:0.960000px;}
.ls79{letter-spacing:0.969000px;}
.ls2b{letter-spacing:1.020000px;}
.ls38{letter-spacing:1.050000px;}
.ls7d{letter-spacing:1.071000px;}
.ls18{letter-spacing:1.080000px;}
.ls49{letter-spacing:1.110000px;}
.ls85{letter-spacing:1.122000px;}
.lse{letter-spacing:1.140000px;}
.ls1d{letter-spacing:1.158000px;}
.ls82{letter-spacing:1.173000px;}
.ls1f{letter-spacing:1.200000px;}
.ls59{letter-spacing:1.230000px;}
.ls22{letter-spacing:1.260000px;}
.ls8a{letter-spacing:1.275000px;}
.ls1c{letter-spacing:1.320000px;}
.ls83{letter-spacing:1.326000px;}
.ls7b{letter-spacing:1.377000px;}
.ls29{letter-spacing:1.380000px;}
.ls5f{letter-spacing:1.410000px;}
.ls7c{letter-spacing:1.428000px;}
.ls17{letter-spacing:1.440000px;}
.ls7a{letter-spacing:1.479000px;}
.ls61{letter-spacing:1.500000px;}
.ls25{letter-spacing:1.560000px;}
.ls86{letter-spacing:1.581000px;}
.lsf{letter-spacing:1.620000px;}
.ls81{letter-spacing:1.632000px;}
.ls4a{letter-spacing:1.680000px;}
.ls89{letter-spacing:1.683000px;}
.ls28{letter-spacing:1.710000px;}
.ls80{letter-spacing:1.734000px;}
.ls23{letter-spacing:1.740000px;}
.ls20{letter-spacing:1.800000px;}
.ls1e{letter-spacing:1.830000px;}
.ls27{letter-spacing:1.860000px;}
.ls84{letter-spacing:1.887000px;}
.ls5a{letter-spacing:1.920000px;}
.ls87{letter-spacing:1.938000px;}
.ls24{letter-spacing:1.980000px;}
.ls26{letter-spacing:2.040000px;}
.ls7f{letter-spacing:2.142000px;}
.lsd{letter-spacing:2.280000px;}
.ls4c{letter-spacing:2.340000px;}
.ls91{letter-spacing:2.346000px;}
.ls60{letter-spacing:2.400000px;}
.ls4b{letter-spacing:3.060000px;}
.ls4d{letter-spacing:3.720000px;}
.ls8{letter-spacing:3.990000px;}
.ls54{letter-spacing:111.750637px;}
.ls45{letter-spacing:176.097015px;}
.ls51{letter-spacing:357.213039px;}
.ls43{letter-spacing:431.250549px;}
.ls53{letter-spacing:484.903235px;}
.ls50{letter-spacing:564.834041px;}
.ls46{letter-spacing:595.213165px;}
.ls42{letter-spacing:603.680420px;}
.ls52{letter-spacing:697.584001px;}
.ls47{letter-spacing:698.626874px;}
.ls44{letter-spacing:761.930379px;}
.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;}
}
.ws13{word-spacing:-16.260000px;}
.ws35{word-spacing:-15.300000px;}
.ws76{word-spacing:-15.000000px;}
.ws82{word-spacing:-13.005000px;}
.ws9a{word-spacing:-12.852000px;}
.ws45{word-spacing:-12.750000px;}
.ws2{word-spacing:-12.420000px;}
.ws66{word-spacing:-11.628000px;}
.ws5{word-spacing:-11.520000px;}
.ws64{word-spacing:-11.118000px;}
.ws1{word-spacing:-9.996000px;}
.ws77{word-spacing:-9.945000px;}
.ws99{word-spacing:-9.690000px;}
.ws6{word-spacing:-8.925000px;}
.ws3{word-spacing:-8.694000px;}
.ws53{word-spacing:-6.375000px;}
.ws8{word-spacing:-3.990000px;}
.ws6d{word-spacing:-1.920000px;}
.ws26{word-spacing:-1.560000px;}
.ws9{word-spacing:-1.500000px;}
.wsa{word-spacing:-1.440000px;}
.ws3e{word-spacing:-1.380000px;}
.wsb7{word-spacing:-1.377000px;}
.ws2a{word-spacing:-1.320000px;}
.ws81{word-spacing:-1.275000px;}
.ws59{word-spacing:-1.260000px;}
.ws15{word-spacing:-1.200000px;}
.ws93{word-spacing:-1.173000px;}
.ws1b{word-spacing:-1.140000px;}
.ws94{word-spacing:-1.122000px;}
.ws23{word-spacing:-1.080000px;}
.ws9d{word-spacing:-1.071000px;}
.ws75{word-spacing:-1.020000px;}
.ws9c{word-spacing:-0.969000px;}
.wse{word-spacing:-0.960000px;}
.ws87{word-spacing:-0.918000px;}
.ws18{word-spacing:-0.900000px;}
.ws19{word-spacing:-0.840000px;}
.wsd{word-spacing:-0.780000px;}
.ws86{word-spacing:-0.765000px;}
.wsf{word-spacing:-0.720000px;}
.ws9e{word-spacing:-0.714000px;}
.wsa4{word-spacing:-0.663000px;}
.ws6b{word-spacing:-0.660000px;}
.ws11{word-spacing:-0.612000px;}
.ws2e{word-spacing:-0.600000px;}
.ws5a{word-spacing:-0.540000px;}
.ws3b{word-spacing:-0.480000px;}
.ws95{word-spacing:-0.459000px;}
.ws2c{word-spacing:-0.420000px;}
.ws43{word-spacing:-0.360000px;}
.ws4{word-spacing:-0.300000px;}
.ws9b{word-spacing:-0.264000px;}
.ws8d{word-spacing:-0.255000px;}
.ws33{word-spacing:-0.240000px;}
.wsb8{word-spacing:-0.204000px;}
.ws69{word-spacing:-0.180000px;}
.ws21{word-spacing:-0.120000px;}
.ws12{word-spacing:-0.072000px;}
.ws1f{word-spacing:-0.060000px;}
.ws8f{word-spacing:-0.051000px;}
.ws0{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws83{word-spacing:0.051000px;}
.ws37{word-spacing:0.060000px;}
.wsa6{word-spacing:0.102000px;}
.ws62{word-spacing:0.120000px;}
.ws34{word-spacing:0.180000px;}
.ws9f{word-spacing:0.204000px;}
.ws31{word-spacing:0.240000px;}
.ws80{word-spacing:0.255000px;}
.ws7a{word-spacing:0.300000px;}
.ws63{word-spacing:0.357000px;}
.ws1d{word-spacing:0.360000px;}
.wsc{word-spacing:0.420000px;}
.wsad{word-spacing:0.459000px;}
.ws6e{word-spacing:0.480000px;}
.ws8e{word-spacing:0.510000px;}
.ws17{word-spacing:0.540000px;}
.ws3f{word-spacing:0.600000px;}
.ws8c{word-spacing:0.663000px;}
.ws85{word-spacing:0.714000px;}
.ws44{word-spacing:0.720000px;}
.ws8a{word-spacing:0.765000px;}
.ws38{word-spacing:0.840000px;}
.ws61{word-spacing:0.900000px;}
.ws97{word-spacing:0.918000px;}
.ws29{word-spacing:0.960000px;}
.ws98{word-spacing:0.969000px;}
.wsb1{word-spacing:1.020000px;}
.ws90{word-spacing:1.071000px;}
.ws4b{word-spacing:1.080000px;}
.ws47{word-spacing:1.140000px;}
.ws50{word-spacing:1.173000px;}
.ws7c{word-spacing:1.200000px;}
.ws6a{word-spacing:1.260000px;}
.ws84{word-spacing:1.275000px;}
.ws5c{word-spacing:1.320000px;}
.ws88{word-spacing:1.326000px;}
.wsb0{word-spacing:1.377000px;}
.ws89{word-spacing:1.428000px;}
.ws22{word-spacing:1.440000px;}
.wsa5{word-spacing:1.479000px;}
.wsb{word-spacing:1.500000px;}
.ws96{word-spacing:1.530000px;}
.ws60{word-spacing:1.560000px;}
.wsa3{word-spacing:1.581000px;}
.ws30{word-spacing:1.620000px;}
.ws52{word-spacing:1.632000px;}
.ws16{word-spacing:1.680000px;}
.ws8b{word-spacing:1.683000px;}
.ws24{word-spacing:1.740000px;}
.wsbb{word-spacing:1.785000px;}
.ws32{word-spacing:1.800000px;}
.ws41{word-spacing:1.860000px;}
.wsbd{word-spacing:1.887000px;}
.ws49{word-spacing:1.920000px;}
.wsac{word-spacing:1.938000px;}
.ws4a{word-spacing:1.980000px;}
.ws91{word-spacing:1.989000px;}
.ws4c{word-spacing:2.040000px;}
.ws4f{word-spacing:2.091000px;}
.ws2b{word-spacing:2.100000px;}
.ws1e{word-spacing:2.160000px;}
.wsba{word-spacing:2.193000px;}
.ws58{word-spacing:2.220000px;}
.ws39{word-spacing:2.280000px;}
.ws51{word-spacing:2.295000px;}
.wsaf{word-spacing:2.397000px;}
.ws25{word-spacing:2.400000px;}
.ws1c{word-spacing:2.460000px;}
.ws92{word-spacing:2.499000px;}
.ws7e{word-spacing:2.520000px;}
.wsaa{word-spacing:2.550000px;}
.ws1a{word-spacing:2.700000px;}
.wsb4{word-spacing:2.703000px;}
.wsa8{word-spacing:2.754000px;}
.ws3a{word-spacing:2.760000px;}
.wsb2{word-spacing:2.805000px;}
.ws40{word-spacing:2.820000px;}
.ws2d{word-spacing:2.880000px;}
.wsa0{word-spacing:2.907000px;}
.ws28{word-spacing:2.940000px;}
.ws3c{word-spacing:3.000000px;}
.ws7f{word-spacing:3.060000px;}
.ws42{word-spacing:3.120000px;}
.ws5d{word-spacing:3.264000px;}
.ws6c{word-spacing:3.300000px;}
.ws2f{word-spacing:3.360000px;}
.ws54{word-spacing:3.420000px;}
.ws5e{word-spacing:3.519000px;}
.ws20{word-spacing:3.540000px;}
.ws27{word-spacing:3.600000px;}
.wsb9{word-spacing:3.621000px;}
.ws78{word-spacing:3.780000px;}
.ws7b{word-spacing:3.900000px;}
.wsae{word-spacing:3.927000px;}
.ws79{word-spacing:3.960000px;}
.wsa9{word-spacing:3.978000px;}
.wsab{word-spacing:4.080000px;}
.wsb3{word-spacing:4.131000px;}
.ws68{word-spacing:4.140000px;}
.ws6f{word-spacing:4.200000px;}
.wsbc{word-spacing:4.335000px;}
.ws73{word-spacing:4.380000px;}
.wsb6{word-spacing:4.539000px;}
.ws4d{word-spacing:4.641000px;}
.ws3d{word-spacing:4.740000px;}
.ws74{word-spacing:4.800000px;}
.ws48{word-spacing:4.860000px;}
.wsa2{word-spacing:4.896000px;}
.ws14{word-spacing:5.100000px;}
.wsa7{word-spacing:5.304000px;}
.ws56{word-spacing:5.340000px;}
.wsa1{word-spacing:5.457000px;}
.ws7d{word-spacing:5.580000px;}
.ws36{word-spacing:5.880000px;}
.ws5f{word-spacing:6.000000px;}
.wsc0{word-spacing:6.324000px;}
.wsb5{word-spacing:6.477000px;}
.ws5b{word-spacing:6.480000px;}
.wsbe{word-spacing:8.211000px;}
.ws55{word-spacing:8.700000px;}
.ws4e{word-spacing:9.792000px;}
.wsbf{word-spacing:9.945000px;}
.ws57{word-spacing:12.060000px;}
.wsc1{word-spacing:13.668000px;}
.wsc2{word-spacing:17.799000px;}
.ws65{word-spacing:25.398000px;}
.ws70{word-spacing:27.999000px;}
.ws10{word-spacing:72.267000px;}
.ws71{word-spacing:78.999000px;}
.ws67{word-spacing:92.259000px;}
.ws72{word-spacing:94.859995px;}
.ws46{word-spacing:332.264993px;}
._a{margin-left:-2763.230986px;}
._7b{margin-left:-23.001000px;}
._79{margin-left:-20.910000px;}
._72{margin-left:-18.717000px;}
._6{margin-left:-16.575000px;}
._77{margin-left:-15.504000px;}
._73{margin-left:-14.484000px;}
._10{margin-left:-12.903618px;}
._78{margin-left:-11.653500px;}
._11{margin-left:-10.608010px;}
._20{margin-left:-9.525625px;}
._5{margin-left:-7.509701px;}
._4{margin-left:-6.240000px;}
._3{margin-left:-4.523488px;}
._2{margin-left:-2.793600px;}
._0{margin-left:-1.632000px;}
._1{width:1.612800px;}
._c{width:3.060000px;}
._7a{width:4.069800px;}
._21{width:5.539200px;}
._22{width:7.308000px;}
._6e{width:9.639000px;}
._1f{width:12.396435px;}
._6c{width:14.280000px;}
._f{width:15.606000px;}
._75{width:16.716600px;}
._7{width:18.360000px;}
._76{width:20.502000px;}
._74{width:22.440000px;}
._6d{width:24.703800px;}
._71{width:26.335800px;}
._6f{width:27.967200px;}
._70{width:29.172000px;}
._e{width:41.310000px;}
._1a{width:46.230589px;}
._8{width:54.621000px;}
._47{width:79.509000px;}
._62{width:82.109995px;}
._2b{width:85.833000px;}
._38{width:89.148000px;}
._5e{width:91.749000px;}
._b{width:98.226000px;}
._34{width:105.009000px;}
._53{width:107.609995px;}
._32{width:114.648000px;}
._51{width:117.249000px;}
._28{width:131.862475px;}
._41{width:153.924580px;}
._4c{width:159.987000px;}
._6a{width:162.588000px;}
._29{width:170.799000px;}
._33{width:185.487000px;}
._52{width:188.088000px;}
._61{width:212.402400px;}
._1b{width:241.861285px;}
._1d{width:251.684957px;}
._2e{width:280.978200px;}
._1e{width:293.583524px;}
._40{width:308.059180px;}
._63{width:339.985200px;}
._14{width:345.752436px;}
._2d{width:372.096000px;}
._25{width:381.707466px;}
._30{width:388.058992px;}
._4f{width:395.913000px;}
._18{width:423.939524px;}
._66{width:436.088400px;}
._46{width:443.942380px;}
._15{width:506.087440px;}
._17{width:541.109957px;}
._59{width:554.153400px;}
._19{width:556.306885px;}
._2a{width:561.231475px;}
._3c{width:626.245810px;}
._26{width:655.909624px;}
._27{width:680.257200px;}
._5b{width:714.529200px;}
._1c{width:741.473324px;}
._16{width:761.735957px;}
._13{width:782.940566px;}
._23{width:796.098600px;}
._2c{width:820.523275px;}
._58{width:853.179000px;}
._12{width:860.460590px;}
._24{width:861.939556px;}
._5d{width:1130.262000px;}
._48{width:1196.954954px;}
._68{width:1229.731200px;}
._4b{width:1237.585180px;}
._44{width:1249.926031px;}
._45{width:1288.488585px;}
._57{width:1301.775000px;}
._5f{width:1314.493200px;}
._5a{width:1377.102000px;}
._5c{width:1417.532400px;}
._3d{width:1425.386380px;}
._56{width:1462.068000px;}
._3b{width:1476.622210px;}
._3e{width:1486.445980px;}
._6b{width:1521.738068px;}
._d{width:1545.962372px;}
._49{width:1563.118180px;}
._54{width:1664.211645px;}
._35{width:1681.774810px;}
._65{width:1685.601000px;}
._43{width:1693.454980px;}
._64{width:1743.843000px;}
._3a{width:1766.587843px;}
._42{width:1774.136980px;}
._39{width:1775.870980px;}
._9{width:1784.591986px;}
._60{width:1837.071000px;}
._3f{width:1844.924980px;}
._31{width:1854.900610px;}
._50{width:1872.546645px;}
._69{width:1923.516000px;}
._4d{width:1931.369980px;}
._55{width:1971.526200px;}
._4a{width:1985.567467px;}
._37{width:1996.496980px;}
._67{width:2001.954000px;}
._36{width:2010.726000px;}
._4e{width:2058.994183px;}
._2f{width:2075.404127px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:35.699999px;}
.fs5{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs2{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.829002px;}
.yff{bottom:111.690149px;}
.y28{bottom:112.938300px;}
.yc9{bottom:114.735260px;}
.ye7{bottom:114.735306px;}
.y147{bottom:114.874786px;}
.y182{bottom:118.540650px;}
.y1e4{bottom:121.864478px;}
.y1c6{bottom:122.725478px;}
.y21e{bottom:126.300260px;}
.yfe{bottom:126.684149px;}
.y33{bottom:127.874248px;}
.y67{bottom:129.915344px;}
.y27{bottom:133.032303px;}
.y96{bottom:133.182312px;}
.yc8{bottom:133.485260px;}
.ye6{bottom:133.485306px;}
.y146{bottom:133.624786px;}
.y181{bottom:137.793150px;}
.y1e3{bottom:140.657978px;}
.y21d{bottom:141.294260px;}
.y1c5{bottom:141.518978px;}
.y294{bottom:146.822565px;}
.y32{bottom:147.968250px;}
.y66{bottom:148.665344px;}
.y254{bottom:149.181317px;}
.y26{bottom:150.491553px;}
.yfd{bottom:151.036652px;}
.y95{bottom:151.932312px;}
.yc7{bottom:152.235260px;}
.ye5{bottom:152.235306px;}
.y145{bottom:152.374786px;}
.y180{bottom:157.887154px;}
.y1e2{bottom:159.374978px;}
.y1c4{bottom:160.235978px;}
.y293{bottom:161.816565px;}
.y253{bottom:164.175317px;}
.yfc{bottom:165.194702px;}
.y25{bottom:165.485553px;}
.y65{bottom:167.415344px;}
.y31{bottom:170.515503px;}
.y94{bottom:170.682312px;}
.yc6{bottom:170.985260px;}
.ye4{bottom:170.985306px;}
.y144{bottom:171.124786px;}
.y21c{bottom:171.295010px;}
.y17f{bottom:172.045055px;}
.y292{bottom:176.810565px;}
.y1e1{bottom:178.091978px;}
.y1c3{bottom:178.952978px;}
.y252{bottom:179.169317px;}
.yfb{bottom:185.288704px;}
.y24{bottom:185.579556px;}
.y64{bottom:186.165344px;}
.y21b{bottom:186.289010px;}
.y30{bottom:187.968753px;}
.y93{bottom:189.432312px;}
.yc5{bottom:189.735260px;}
.ye3{bottom:189.735306px;}
.y143{bottom:189.874786px;}
.y291{bottom:191.804565px;}
.y17e{bottom:192.139046px;}
.y251{bottom:194.163317px;}
.y1e0{bottom:196.808978px;}
.y1c2{bottom:197.669978px;}
.y21a{bottom:201.283010px;}
.y23{bottom:203.038794px;}
.y63{bottom:204.915344px;}
.y290{bottom:206.798565px;}
.y2f{bottom:208.062744px;}
.y92{bottom:208.182312px;}
.yc4{bottom:208.485260px;}
.ye2{bottom:208.485306px;}
.y126{bottom:208.537639px;}
.y142{bottom:208.624786px;}
.y250{bottom:209.157317px;}
.y1a3{bottom:214.600650px;}
.y1df{bottom:215.525978px;}
.y219{bottom:216.277010px;}
.y1c1{bottom:216.386978px;}
.y22{bottom:218.032794px;}
.y28f{bottom:221.792565px;}
.y62{bottom:223.665344px;}
.y24f{bottom:224.151317px;}
.y2e{bottom:225.521995px;}
.y91{bottom:226.932312px;}
.yc3{bottom:227.235260px;}
.ye1{bottom:227.235306px;}
.y125{bottom:227.321407px;}
.y141{bottom:227.374786px;}
.y218{bottom:231.271010px;}
.y1a2{bottom:233.395659px;}
.y1de{bottom:234.242978px;}
.y1c0{bottom:235.103978px;}
.y28e{bottom:236.786565px;}
.y21{bottom:238.126808px;}
.y24e{bottom:239.145317px;}
.y2d{bottom:240.515995px;}
.y61{bottom:242.415344px;}
.y90{bottom:245.682312px;}
.yc2{bottom:245.985260px;}
.ye0{bottom:245.985306px;}
.y124{bottom:246.038407px;}
.y140{bottom:246.124786px;}
.y217{bottom:246.265010px;}
.y28d{bottom:251.780565px;}
.y1a0{bottom:252.114145px;}
.y1dd{bottom:252.959978px;}
.y1bf{bottom:253.820978px;}
.y24d{bottom:254.139317px;}
.y2c{bottom:260.610008px;}
.y60{bottom:261.165344px;}
.y216{bottom:261.259010px;}
.y20{bottom:263.138541px;}
.y8f{bottom:264.432312px;}
.yc1{bottom:264.735260px;}
.ydf{bottom:264.735306px;}
.y121{bottom:264.769643px;}
.y13f{bottom:264.874786px;}
.y28c{bottom:266.774565px;}
.y1a1{bottom:267.106659px;}
.y19f{bottom:267.108145px;}
.y24c{bottom:269.133317px;}
.y1dc{bottom:271.676978px;}
.y1be{bottom:272.537978px;}
.y215{bottom:276.253010px;}
.y1f{bottom:278.132541px;}
.y123{bottom:279.762157px;}
.y120{bottom:279.763643px;}
.y5f{bottom:279.915344px;}
.y28b{bottom:281.768565px;}
.y2b{bottom:283.157249px;}
.y8e{bottom:283.182312px;}
.yc0{bottom:283.485260px;}
.yde{bottom:283.485306px;}
.y13e{bottom:283.624786px;}
.y24b{bottom:284.127317px;}
.y19e{bottom:285.822141px;}
.y1db{bottom:290.393978px;}
.y214{bottom:291.247010px;}
.y1bd{bottom:291.254978px;}
.y122{bottom:294.756157px;}
.y11f{bottom:294.757643px;}
.y28a{bottom:296.762565px;}
.y5e{bottom:298.665344px;}
.y24a{bottom:299.121317px;}
.y2a{bottom:300.610500px;}
.y1e{bottom:300.674541px;}
.y19d{bottom:300.816141px;}
.y8d{bottom:301.932312px;}
.ybf{bottom:302.235260px;}
.ydd{bottom:302.235306px;}
.y13d{bottom:302.374786px;}
.y1da{bottom:309.110978px;}
.y1bc{bottom:309.971978px;}
.y289{bottom:311.756565px;}
.y11d{bottom:313.474643px;}
.y249{bottom:314.115317px;}
.y1d{bottom:315.668541px;}
.y5d{bottom:317.415344px;}
.y19c{bottom:319.533141px;}
.y8c{bottom:320.682312px;}
.y29{bottom:320.704491px;}
.ybe{bottom:320.985260px;}
.ydc{bottom:320.985306px;}
.y13c{bottom:321.124786px;}
.y213{bottom:321.247760px;}
.y288{bottom:326.750565px;}
.y1d9{bottom:327.827978px;}
.y11c{bottom:328.466421px;}
.y11e{bottom:328.468643px;}
.y1bb{bottom:328.688978px;}
.y248{bottom:329.109317px;}
.y5c{bottom:336.165344px;}
.y212{bottom:336.241760px;}
.y19a{bottom:338.251650px;}
.y8b{bottom:339.432312px;}
.ybd{bottom:339.735260px;}
.ydb{bottom:339.735306px;}
.y13b{bottom:339.874786px;}
.y287{bottom:341.744565px;}
.y1ba{bottom:343.682978px;}
.y247{bottom:344.103317px;}
.y1d8{bottom:346.544978px;}
.y11b{bottom:347.183421px;}
.y211{bottom:351.235760px;}
.y19b{bottom:353.244141px;}
.y199{bottom:353.245650px;}
.y5b{bottom:354.915344px;}
.y286{bottom:356.738565px;}
.y8a{bottom:358.182312px;}
.ybc{bottom:358.485260px;}
.yda{bottom:358.485306px;}
.y13a{bottom:358.624786px;}
.y246{bottom:359.097317px;}
.y1d7{bottom:361.538978px;}
.y11a{bottom:362.177421px;}
.y1b9{bottom:362.399978px;}
.y210{bottom:366.229760px;}
.y285{bottom:371.732565px;}
.y197{bottom:371.957409px;}
.y5a{bottom:373.665344px;}
.y245{bottom:374.091317px;}
.y89{bottom:376.932312px;}
.ybb{bottom:377.235260px;}
.yd9{bottom:377.235306px;}
.y139{bottom:377.374786px;}
.y1d6{bottom:380.255978px;}
.y119{bottom:380.894421px;}
.y1b8{bottom:381.116978px;}
.y20f{bottom:381.223760px;}
.y284{bottom:386.726565px;}
.y196{bottom:386.951409px;}
.y198{bottom:386.956650px;}
.y244{bottom:389.085317px;}
.y59{bottom:392.415344px;}
.y88{bottom:395.682312px;}
.y118{bottom:395.888421px;}
.yba{bottom:395.985260px;}
.yd8{bottom:395.985306px;}
.y138{bottom:396.124786px;}
.y20e{bottom:396.217760px;}
.y1d5{bottom:398.972978px;}
.y1b7{bottom:399.833978px;}
.y283{bottom:401.720565px;}
.y243{bottom:404.079317px;}
.y195{bottom:405.681159px;}
.y58{bottom:411.165344px;}
.y20d{bottom:411.211760px;}
.y87{bottom:414.432312px;}
.y116{bottom:414.619634px;}
.yb9{bottom:414.735260px;}
.yd7{bottom:414.735306px;}
.y137{bottom:414.874786px;}
.y282{bottom:416.714565px;}
.y1d4{bottom:417.689978px;}
.y1b6{bottom:418.550978px;}
.y242{bottom:419.073317px;}
.y192{bottom:420.667641px;}
.y194{bottom:420.675159px;}
.y20c{bottom:426.205760px;}
.y115{bottom:429.613634px;}
.y57{bottom:429.915344px;}
.y281{bottom:431.708565px;}
.y86{bottom:433.182312px;}
.yb8{bottom:433.485260px;}
.yd6{bottom:433.485306px;}
.y136{bottom:433.624786px;}
.y241{bottom:434.067317px;}
.y191{bottom:435.661641px;}
.y193{bottom:435.669159px;}
.y1d3{bottom:436.406978px;}
.y1b5{bottom:437.267978px;}
.y20b{bottom:441.199760px;}
.y117{bottom:444.606171px;}
.y114{bottom:444.607634px;}
.y280{bottom:446.702565px;}
.y56{bottom:448.665344px;}
.y240{bottom:449.061317px;}
.y85{bottom:451.932312px;}
.yb7{bottom:452.235260px;}
.yd5{bottom:452.235306px;}
.y135{bottom:452.374786px;}
.y190{bottom:454.378641px;}
.y1d2{bottom:455.123978px;}
.y1b4{bottom:455.984978px;}
.y20a{bottom:456.193760px;}
.y27f{bottom:461.696565px;}
.y112{bottom:463.323161px;}
.y23f{bottom:464.055317px;}
.y55{bottom:467.415344px;}
.y18f{bottom:469.372641px;}
.y1c{bottom:470.461395px;}
.y84{bottom:470.682312px;}
.y1b3{bottom:470.978978px;}
.yb6{bottom:470.985260px;}
.yd4{bottom:470.985306px;}
.y134{bottom:471.124786px;}
.y209{bottom:471.187760px;}
.y1d1{bottom:473.840978px;}
.y27e{bottom:476.690565px;}
.y111{bottom:478.317161px;}
.y113{bottom:478.318634px;}
.y23e{bottom:479.049317px;}
.y54{bottom:486.165344px;}
.y208{bottom:486.181760px;}
.y18e{bottom:488.089641px;}
.y1b{bottom:489.211395px;}
.y83{bottom:489.432312px;}
.y1b2{bottom:489.695978px;}
.yb5{bottom:489.735260px;}
.yd3{bottom:489.735306px;}
.y133{bottom:489.874786px;}
.y27d{bottom:491.684565px;}
.y1d0{bottom:492.557978px;}
.y23d{bottom:494.043317px;}
.y110{bottom:497.034161px;}
.y207{bottom:501.175760px;}
.y53{bottom:504.915344px;}
.y27c{bottom:506.678565px;}
.y18d{bottom:506.808150px;}
.y82{bottom:508.182312px;}
.y1b1{bottom:508.412978px;}
.yb4{bottom:508.485260px;}
.yd2{bottom:508.485306px;}
.y132{bottom:508.624786px;}
.y23c{bottom:509.037317px;}
.y1cf{bottom:511.274978px;}
.y10e{bottom:515.751161px;}
.y206{bottom:516.169760px;}
.y27b{bottom:521.672565px;}
.y52{bottom:523.665344px;}
.y23b{bottom:524.031317px;}
.y18b{bottom:525.525150px;}
.y1a{bottom:526.711395px;}
.y81{bottom:526.932312px;}
.y1b0{bottom:527.129978px;}
.yb3{bottom:527.235260px;}
.yd1{bottom:527.235306px;}
.y131{bottom:527.374786px;}
.y1ce{bottom:529.991978px;}
.y10d{bottom:530.745161px;}
.y205{bottom:531.163760px;}
.y27a{bottom:536.666565px;}
.y23a{bottom:539.025317px;}
.y18a{bottom:540.513909px;}
.y18c{bottom:540.519150px;}
.y51{bottom:542.415344px;}
.y19{bottom:545.461395px;}
.y80{bottom:545.682312px;}
.y10c{bottom:545.739161px;}
.y10f{bottom:545.751911px;}
.y1af{bottom:545.846978px;}
.yb2{bottom:545.985260px;}
.yd0{bottom:545.985306px;}
.y130{bottom:546.124786px;}
.y1cd{bottom:548.708978px;}
.y279{bottom:551.660565px;}
.y239{bottom:554.019317px;}
.y188{bottom:559.243659px;}
.y1ae{bottom:560.840978px;}
.y204{bottom:561.164510px;}
.y50{bottom:561.165344px;}
.y18{bottom:564.211395px;}
.y7f{bottom:564.432312px;}
.y10b{bottom:564.463671px;}
.yb1{bottom:564.735260px;}
.ycf{bottom:564.735306px;}
.y12f{bottom:564.874786px;}
.y278{bottom:566.654565px;}
.y1cc{bottom:567.425978px;}
.y238{bottom:569.013317px;}
.y187{bottom:574.237659px;}
.y203{bottom:576.158510px;}
.y1ad{bottom:579.557978px;}
.y4f{bottom:579.915344px;}
.y277{bottom:581.648565px;}
.y17{bottom:582.961395px;}
.y109{bottom:583.180671px;}
.yb0{bottom:583.485260px;}
.yce{bottom:583.485306px;}
.y12e{bottom:583.624786px;}
.y237{bottom:584.007317px;}
.y1cb{bottom:586.142978px;}
.y189{bottom:589.231659px;}
.y186{bottom:589.234631px;}
.y202{bottom:591.152510px;}
.y276{bottom:596.642565px;}
.y108{bottom:598.174671px;}
.y1ac{bottom:598.274978px;}
.y4e{bottom:598.665344px;}
.y236{bottom:599.001317px;}
.y16{bottom:601.711395px;}
.y7e{bottom:601.932312px;}
.yaf{bottom:602.235260px;}
.ycd{bottom:602.235306px;}
.y12d{bottom:602.374786px;}
.y1ca{bottom:604.859978px;}
.y201{bottom:606.146510px;}
.y185{bottom:607.951631px;}
.y275{bottom:611.636565px;}
.y107{bottom:613.176134px;}
.y10a{bottom:613.181421px;}
.y235{bottom:613.995317px;}
.y1ab{bottom:616.991978px;}
.y4d{bottom:617.415344px;}
.y15{bottom:620.461395px;}
.yae{bottom:620.985260px;}
.y161{bottom:620.989746px;}
.y12c{bottom:621.124786px;}
.y200{bottom:621.140510px;}
.y274{bottom:626.630565px;}
.y234{bottom:628.989317px;}
.y105{bottom:631.893134px;}
.y1c9{bottom:632.195978px;}
.y184{bottom:635.287631px;}
.y1aa{bottom:635.708978px;}
.y1ff{bottom:636.134510px;}
.y4c{bottom:636.165344px;}
.y14{bottom:639.211395px;}
.y7d{bottom:639.432312px;}
.yad{bottom:639.735260px;}
.ycc{bottom:639.735306px;}
.y160{bottom:639.739746px;}
.y12b{bottom:639.874786px;}
.y273{bottom:641.624565px;}
.y233{bottom:643.983317px;}
.y104{bottom:646.887134px;}
.y183{bottom:650.281631px;}
.y1fe{bottom:651.128510px;}
.y1a9{bottom:654.425978px;}
.y4b{bottom:654.915344px;}
.y1c8{bottom:656.612228px;}
.y272{bottom:656.618565px;}
.y13{bottom:657.961395px;}
.yac{bottom:658.485260px;}
.y15f{bottom:658.489746px;}
.y12a{bottom:658.624786px;}
.y232{bottom:658.977317px;}
.y103{bottom:661.884152px;}
.y106{bottom:661.893884px;}
.y1fd{bottom:666.122510px;}
.y271{bottom:671.612565px;}
.y1a8{bottom:673.142978px;}
.y4a{bottom:673.665344px;}
.y231{bottom:673.971317px;}
.y17d{bottom:675.772202px;}
.y12{bottom:676.711395px;}
.yab{bottom:677.235260px;}
.y15e{bottom:677.239746px;}
.y129{bottom:677.374786px;}
.y102{bottom:680.601152px;}
.y1fc{bottom:681.116510px;}
.y1c7{bottom:682.102798px;}
.y270{bottom:686.606565px;}
.y230{bottom:688.965317px;}
.y1a7{bottom:691.859978px;}
.y49{bottom:692.415344px;}
.y11{bottom:695.461395px;}
.yaa{bottom:695.985260px;}
.y15d{bottom:695.989746px;}
.y1fb{bottom:696.110510px;}
.y26f{bottom:701.600565px;}
.y101{bottom:707.937152px;}
.y1fa{bottom:711.104510px;}
.y48{bottom:711.165344px;}
.y7c{bottom:713.415367px;}
.y10{bottom:714.211395px;}
.ya9{bottom:714.735260px;}
.y15c{bottom:714.739746px;}
.y128{bottom:714.874786px;}
.y2ae{bottom:716.374823px;}
.y26e{bottom:716.594565px;}
.y1a6{bottom:719.195978px;}
.y22f{bottom:722.715317px;}
.y100{bottom:722.931152px;}
.y1f9{bottom:726.098510px;}
.y47{bottom:729.915344px;}
.y2ad{bottom:731.368823px;}
.y26d{bottom:731.588565px;}
.y7b{bottom:732.165367px;}
.y174{bottom:732.294342px;}
.yf{bottom:732.961395px;}
.ya8{bottom:733.485260px;}
.y15b{bottom:733.489746px;}
.y1f8{bottom:741.092510px;}
.y1a5{bottom:743.612228px;}
.y2ac{bottom:746.362823px;}
.y26c{bottom:746.582565px;}
.yfa{bottom:748.421722px;}
.y46{bottom:748.665344px;}
.y7a{bottom:750.915367px;}
.y173{bottom:751.044342px;}
.ye{bottom:751.711395px;}
.ya7{bottom:752.235260px;}
.y15a{bottom:752.239746px;}
.y127{bottom:752.374786px;}
.y1f7{bottom:756.086510px;}
.y2ab{bottom:761.356823px;}
.y26b{bottom:761.576565px;}
.y45{bottom:767.415344px;}
.y1a4{bottom:769.102844px;}
.y79{bottom:769.665367px;}
.y172{bottom:769.794342px;}
.yd{bottom:770.461395px;}
.ya6{bottom:770.985260px;}
.y159{bottom:770.989746px;}
.y1f6{bottom:771.080510px;}
.y2aa{bottom:776.350823px;}
.y26a{bottom:776.570565px;}
.y1f5{bottom:786.074510px;}
.y44{bottom:786.165344px;}
.y78{bottom:788.415367px;}
.y171{bottom:788.544342px;}
.yc{bottom:789.211395px;}
.ya5{bottom:789.735260px;}
.y158{bottom:789.739746px;}
.y2a9{bottom:791.344823px;}
.y2c2{bottom:791.395824px;}
.y269{bottom:791.564565px;}
.y22e{bottom:796.174842px;}
.y1f4{bottom:801.068510px;}
.y43{bottom:804.915344px;}
.y2a8{bottom:806.338823px;}
.y2c1{bottom:806.389824px;}
.y268{bottom:806.558565px;}
.y77{bottom:807.165367px;}
.y170{bottom:807.294342px;}
.ya4{bottom:808.485260px;}
.y157{bottom:808.489746px;}
.yf1{bottom:808.624969px;}
.y22d{bottom:811.168842px;}
.y1f3{bottom:816.062510px;}
.y2a7{bottom:821.332823px;}
.y267{bottom:821.552565px;}
.y42{bottom:823.665344px;}
.y76{bottom:825.915367px;}
.y16f{bottom:826.044342px;}
.y22c{bottom:826.162842px;}
.ya3{bottom:827.235260px;}
.y156{bottom:827.239746px;}
.yf0{bottom:827.374969px;}
.y1f2{bottom:831.056510px;}
.yb{bottom:833.394153px;}
.y2a6{bottom:836.326823px;}
.y2c0{bottom:836.479823px;}
.y266{bottom:836.546565px;}
.y22b{bottom:841.156842px;}
.y41{bottom:842.415344px;}
.y75{bottom:844.665367px;}
.y16e{bottom:844.794342px;}
.ya2{bottom:845.985260px;}
.y155{bottom:845.989746px;}
.y1f1{bottom:846.050510px;}
.yef{bottom:846.124969px;}
.ya{bottom:848.388153px;}
.y2a5{bottom:851.320823px;}
.y2bf{bottom:851.473823px;}
.y265{bottom:851.540565px;}
.y22a{bottom:856.150842px;}
.y1f0{bottom:861.044510px;}
.y40{bottom:861.165344px;}
.y74{bottom:863.415367px;}
.y16d{bottom:863.544342px;}
.ycb{bottom:864.735260px;}
.y154{bottom:864.739746px;}
.yee{bottom:864.874969px;}
.y2a4{bottom:866.314823px;}
.y2be{bottom:866.467823px;}
.y264{bottom:866.534565px;}
.y229{bottom:871.144842px;}
.y1ef{bottom:876.038510px;}
.y3f{bottom:879.915344px;}
.y2a3{bottom:881.308823px;}
.y2bd{bottom:881.461823px;}
.y263{bottom:881.528565px;}
.y73{bottom:882.165367px;}
.y16c{bottom:882.294342px;}
.ya1{bottom:883.485260px;}
.y153{bottom:883.489746px;}
.yed{bottom:883.624969px;}
.y228{bottom:886.138842px;}
.y9{bottom:890.988190px;}
.y1ee{bottom:891.032510px;}
.y2a2{bottom:896.302823px;}
.y2bc{bottom:896.455823px;}
.y262{bottom:896.522565px;}
.y3e{bottom:898.665344px;}
.y72{bottom:900.915367px;}
.y16b{bottom:901.044342px;}
.y227{bottom:901.132842px;}
.yca{bottom:902.235260px;}
.y152{bottom:902.239746px;}
.yec{bottom:902.374969px;}
.y1ed{bottom:906.026510px;}
.y8{bottom:909.738190px;}
.y2a1{bottom:911.296823px;}
.y2bb{bottom:911.449823px;}
.y261{bottom:911.516565px;}
.y226{bottom:916.126842px;}
.y3d{bottom:917.415344px;}
.y71{bottom:919.665367px;}
.y16a{bottom:919.794342px;}
.ya0{bottom:920.985260px;}
.y151{bottom:920.989746px;}
.y1ec{bottom:921.020510px;}
.yeb{bottom:921.124969px;}
.y2a0{bottom:926.290823px;}
.y2ba{bottom:926.443823px;}
.y260{bottom:926.510565px;}
.y225{bottom:931.120842px;}
.y1eb{bottom:936.014510px;}
.y3c{bottom:936.165344px;}
.y70{bottom:938.415367px;}
.y169{bottom:938.544342px;}
.y9f{bottom:939.735260px;}
.y150{bottom:939.739746px;}
.yea{bottom:939.874969px;}
.y29f{bottom:941.284823px;}
.y2b9{bottom:941.437823px;}
.y25f{bottom:941.504565px;}
.y224{bottom:946.114842px;}
.y1ea{bottom:951.008510px;}
.y7{bottom:954.424622px;}
.y3b{bottom:954.915344px;}
.y29e{bottom:956.278823px;}
.y2b8{bottom:956.431823px;}
.y25e{bottom:956.498565px;}
.y6f{bottom:957.165367px;}
.y168{bottom:957.294342px;}
.y17c{bottom:958.479342px;}
.y9e{bottom:958.485260px;}
.y14f{bottom:958.489746px;}
.ye9{bottom:958.624969px;}
.y223{bottom:961.108842px;}
.y1e9{bottom:966.002510px;}
.y29d{bottom:971.272823px;}
.y2b7{bottom:971.425823px;}
.y25d{bottom:971.492565px;}
.y3a{bottom:973.665344px;}
.y6e{bottom:975.915367px;}
.y167{bottom:976.044342px;}
.y17b{bottom:977.229342px;}
.y9d{bottom:977.235260px;}
.y14e{bottom:977.239746px;}
.ye8{bottom:977.374969px;}
.y1e8{bottom:980.996510px;}
.y6{bottom:981.424622px;}
.y29c{bottom:986.266823px;}
.y2b6{bottom:986.419823px;}
.y25c{bottom:986.486565px;}
.y222{bottom:991.109592px;}
.y39{bottom:992.415344px;}
.y6d{bottom:994.665367px;}
.y166{bottom:994.794342px;}
.y17a{bottom:995.979342px;}
.y9c{bottom:995.985260px;}
.y14d{bottom:995.989746px;}
.y1e7{bottom:995.990510px;}
.y29b{bottom:1001.260823px;}
.y2b5{bottom:1001.413823px;}
.y25b{bottom:1001.480565px;}
.y5{bottom:1008.424622px;}
.y38{bottom:1011.165344px;}
.y6c{bottom:1013.415367px;}
.y165{bottom:1013.544342px;}
.y179{bottom:1014.729342px;}
.y9b{bottom:1014.735260px;}
.y14c{bottom:1014.739746px;}
.y29a{bottom:1016.254823px;}
.y2b4{bottom:1016.407823px;}
.y25a{bottom:1016.474565px;}
.y1e6{bottom:1025.991260px;}
.y221{bottom:1028.556342px;}
.y37{bottom:1029.915344px;}
.yf8{bottom:1030.126844px;}
.y299{bottom:1031.248823px;}
.y2b3{bottom:1031.401823px;}
.y259{bottom:1031.468565px;}
.y6b{bottom:1032.165367px;}
.y164{bottom:1032.294342px;}
.y178{bottom:1033.479342px;}
.y9a{bottom:1033.485260px;}
.y14b{bottom:1033.489746px;}
.y1e5{bottom:1040.985260px;}
.y220{bottom:1043.550342px;}
.yf7{bottom:1045.120844px;}
.y298{bottom:1046.242823px;}
.y2b2{bottom:1046.395823px;}
.y258{bottom:1046.462565px;}
.y36{bottom:1048.665344px;}
.y6a{bottom:1050.915367px;}
.y163{bottom:1051.044342px;}
.y177{bottom:1052.229342px;}
.y99{bottom:1052.235260px;}
.y14a{bottom:1052.239746px;}
.y21f{bottom:1058.544342px;}
.yf6{bottom:1060.114844px;}
.y297{bottom:1061.236823px;}
.y2b1{bottom:1061.389823px;}
.y257{bottom:1061.456565px;}
.y69{bottom:1069.665367px;}
.y176{bottom:1070.979342px;}
.y98{bottom:1070.985260px;}
.y149{bottom:1070.989746px;}
.yf3{bottom:1070.989958px;}
.yf5{bottom:1075.108844px;}
.y4{bottom:1076.132080px;}
.y296{bottom:1076.230823px;}
.y2b0{bottom:1076.383823px;}
.y256{bottom:1076.450565px;}
.y35{bottom:1086.165344px;}
.y68{bottom:1088.415367px;}
.y162{bottom:1088.544342px;}
.y175{bottom:1089.729342px;}
.y97{bottom:1089.735260px;}
.y148{bottom:1089.739746px;}
.yf2{bottom:1089.739958px;}
.yf9{bottom:1089.915344px;}
.yf4{bottom:1090.102844px;}
.y295{bottom:1091.224823px;}
.y2af{bottom:1091.377823px;}
.y255{bottom:1091.444565px;}
.y3{bottom:1109.586556px;}
.y2{bottom:1126.582306px;}
.y34{bottom:1127.482361px;}
.hc{height:25.204199px;}
.h12{height:26.640000px;}
.h2{height:33.840000px;}
.hb{height:36.006000px;}
.ha{height:36.855469px;}
.h8{height:42.360000px;}
.h7{height:43.260000px;}
.h3{height:44.676000px;}
.h10{height:44.676732px;}
.h11{height:45.186000px;}
.h19{height:45.550218px;}
.h17{height:45.550309px;}
.h1c{height:45.556163px;}
.h15{height:45.574126px;}
.h21{height:45.574218px;}
.h14{height:45.574309px;}
.h16{height:45.586236px;}
.h13{height:45.592272px;}
.h1e{height:45.598126px;}
.h20{height:45.601126px;}
.h1f{height:45.610236px;}
.h18{height:45.613144px;}
.h22{height:45.616272px;}
.h1d{height:45.625126px;}
.h1a{height:45.643181px;}
.hd{height:51.912000px;}
.h1b{height:52.173000px;}
.h9{height:53.160000px;}
.h4{height:55.461000px;}
.he{height:59.004000px;}
.hf{height:61.380000px;}
.h6{height:64.866000px;}
.h5{height:85.056000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:68.615547px;}
.x2{left:76.535402px;}
.xc{left:81.035409px;}
.x3{left:85.181849px;}
.x7{left:93.545402px;}
.x4{left:97.796100px;}
.x14{left:102.048152px;}
.xe{left:343.914903px;}
.xa{left:360.005400px;}
.xf{left:451.920149px;}
.x5{left:459.212540px;}
.x11{left:460.919396px;}
.xd{left:468.004493px;}
.x8{left:476.225389px;}
.x6{left:480.466799px;}
.x15{left:484.726652px;}
.x13{left:666.727798px;}
.x12{left:668.701035px;}
.xb{left:723.099890px;}
.x1{left:728.220612px;}
.x10{left:735.760638px;}
@media print{
.v2{vertical-align:-18.133382pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.122732pt;}
.v1{vertical-align:21.333333pt;}
.ls56{letter-spacing:-1.493333pt;}
.ls5c{letter-spacing:-1.450667pt;}
.ls31{letter-spacing:-1.386667pt;}
.ls30{letter-spacing:-1.333333pt;}
.ls2e{letter-spacing:-1.280000pt;}
.ls4f{letter-spacing:-1.226667pt;}
.ls93{letter-spacing:-1.224000pt;}
.ls32{letter-spacing:-1.173333pt;}
.ls57{letter-spacing:-1.120000pt;}
.ls55{letter-spacing:-1.066667pt;}
.ls33{letter-spacing:-1.013333pt;}
.ls5d{letter-spacing:-0.997333pt;}
.ls35{letter-spacing:-0.960000pt;}
.ls34{letter-spacing:-0.906667pt;}
.ls2f{letter-spacing:-0.853333pt;}
.ls2d{letter-spacing:-0.800000pt;}
.ls71{letter-spacing:-0.693333pt;}
.ls4e{letter-spacing:-0.533333pt;}
.ls92{letter-spacing:-0.498667pt;}
.ls70{letter-spacing:-0.480000pt;}
.ls48{letter-spacing:-0.453333pt;}
.ls40{letter-spacing:-0.426667pt;}
.ls95{letter-spacing:-0.408000pt;}
.ls3f{letter-spacing:-0.373333pt;}
.ls3e{letter-spacing:-0.320000pt;}
.ls8c{letter-spacing:-0.317333pt;}
.ls8e{letter-spacing:-0.272000pt;}
.ls3d{letter-spacing:-0.266667pt;}
.ls94{letter-spacing:-0.226667pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls8d{letter-spacing:-0.181333pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls8b{letter-spacing:-0.136000pt;}
.lsc{letter-spacing:-0.106667pt;}
.ls73{letter-spacing:-0.090667pt;}
.ls9{letter-spacing:-0.053333pt;}
.ls72{letter-spacing:-0.045333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000033pt;}
.ls0{letter-spacing:0.000076pt;}
.ls1b{letter-spacing:0.005333pt;}
.ls76{letter-spacing:0.045333pt;}
.ls36{letter-spacing:0.053333pt;}
.ls5e{letter-spacing:0.080000pt;}
.ls67{letter-spacing:0.090667pt;}
.ls2{letter-spacing:0.106667pt;}
.ls3b{letter-spacing:0.133333pt;}
.ls6a{letter-spacing:0.136000pt;}
.ls88{letter-spacing:0.158667pt;}
.ls4{letter-spacing:0.158926pt;}
.ls37{letter-spacing:0.160000pt;}
.ls62{letter-spacing:0.181333pt;}
.ls6f{letter-spacing:0.204000pt;}
.ls1{letter-spacing:0.213333pt;}
.ls5{letter-spacing:0.226667pt;}
.ls75{letter-spacing:0.234667pt;}
.ls6c{letter-spacing:0.249333pt;}
.ls78{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls68{letter-spacing:0.272000pt;}
.ls6d{letter-spacing:0.294667pt;}
.ls77{letter-spacing:0.317333pt;}
.ls15{letter-spacing:0.320000pt;}
.ls6b{letter-spacing:0.362667pt;}
.ls11{letter-spacing:0.373333pt;}
.ls66{letter-spacing:0.408000pt;}
.ls39{letter-spacing:0.426667pt;}
.ls58{letter-spacing:0.453333pt;}
.ls5b{letter-spacing:0.474667pt;}
.ls12{letter-spacing:0.480000pt;}
.ls14{letter-spacing:0.495949pt;}
.ls69{letter-spacing:0.498667pt;}
.ls3a{letter-spacing:0.506667pt;}
.ls3c{letter-spacing:0.533333pt;}
.ls65{letter-spacing:0.544000pt;}
.ls13{letter-spacing:0.586667pt;}
.ls63{letter-spacing:0.589333pt;}
.ls64{letter-spacing:0.634667pt;}
.ls10{letter-spacing:0.640000pt;}
.ls8f{letter-spacing:0.657333pt;}
.ls41{letter-spacing:0.666667pt;}
.ls90{letter-spacing:0.680000pt;}
.ls2c{letter-spacing:0.693333pt;}
.ls74{letter-spacing:0.725333pt;}
.ls19{letter-spacing:0.741333pt;}
.ls21{letter-spacing:0.746667pt;}
.ls6e{letter-spacing:0.770667pt;}
.ls2a{letter-spacing:0.773333pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls7e{letter-spacing:0.816000pt;}
.ls16{letter-spacing:0.853333pt;}
.ls79{letter-spacing:0.861333pt;}
.ls2b{letter-spacing:0.906667pt;}
.ls38{letter-spacing:0.933333pt;}
.ls7d{letter-spacing:0.952000pt;}
.ls18{letter-spacing:0.960000pt;}
.ls49{letter-spacing:0.986667pt;}
.ls85{letter-spacing:0.997333pt;}
.lse{letter-spacing:1.013333pt;}
.ls1d{letter-spacing:1.029333pt;}
.ls82{letter-spacing:1.042667pt;}
.ls1f{letter-spacing:1.066667pt;}
.ls59{letter-spacing:1.093333pt;}
.ls22{letter-spacing:1.120000pt;}
.ls8a{letter-spacing:1.133333pt;}
.ls1c{letter-spacing:1.173333pt;}
.ls83{letter-spacing:1.178667pt;}
.ls7b{letter-spacing:1.224000pt;}
.ls29{letter-spacing:1.226667pt;}
.ls5f{letter-spacing:1.253333pt;}
.ls7c{letter-spacing:1.269333pt;}
.ls17{letter-spacing:1.280000pt;}
.ls7a{letter-spacing:1.314667pt;}
.ls61{letter-spacing:1.333333pt;}
.ls25{letter-spacing:1.386667pt;}
.ls86{letter-spacing:1.405333pt;}
.lsf{letter-spacing:1.440000pt;}
.ls81{letter-spacing:1.450667pt;}
.ls4a{letter-spacing:1.493333pt;}
.ls89{letter-spacing:1.496000pt;}
.ls28{letter-spacing:1.520000pt;}
.ls80{letter-spacing:1.541333pt;}
.ls23{letter-spacing:1.546667pt;}
.ls20{letter-spacing:1.600000pt;}
.ls1e{letter-spacing:1.626667pt;}
.ls27{letter-spacing:1.653333pt;}
.ls84{letter-spacing:1.677333pt;}
.ls5a{letter-spacing:1.706667pt;}
.ls87{letter-spacing:1.722667pt;}
.ls24{letter-spacing:1.760000pt;}
.ls26{letter-spacing:1.813333pt;}
.ls7f{letter-spacing:1.904000pt;}
.lsd{letter-spacing:2.026667pt;}
.ls4c{letter-spacing:2.080000pt;}
.ls91{letter-spacing:2.085333pt;}
.ls60{letter-spacing:2.133333pt;}
.ls4b{letter-spacing:2.720000pt;}
.ls4d{letter-spacing:3.306667pt;}
.ls8{letter-spacing:3.546667pt;}
.ls54{letter-spacing:99.333899pt;}
.ls45{letter-spacing:156.530680pt;}
.ls51{letter-spacing:317.522701pt;}
.ls43{letter-spacing:383.333822pt;}
.ls53{letter-spacing:431.025098pt;}
.ls50{letter-spacing:502.074703pt;}
.ls46{letter-spacing:529.078369pt;}
.ls42{letter-spacing:536.604818pt;}
.ls52{letter-spacing:620.074667pt;}
.ls47{letter-spacing:621.001666pt;}
.ls44{letter-spacing:677.271448pt;}
.ws13{word-spacing:-14.453333pt;}
.ws35{word-spacing:-13.600000pt;}
.ws76{word-spacing:-13.333333pt;}
.ws82{word-spacing:-11.560000pt;}
.ws9a{word-spacing:-11.424000pt;}
.ws45{word-spacing:-11.333333pt;}
.ws2{word-spacing:-11.040000pt;}
.ws66{word-spacing:-10.336000pt;}
.ws5{word-spacing:-10.240000pt;}
.ws64{word-spacing:-9.882667pt;}
.ws1{word-spacing:-8.885333pt;}
.ws77{word-spacing:-8.840000pt;}
.ws99{word-spacing:-8.613333pt;}
.ws6{word-spacing:-7.933333pt;}
.ws3{word-spacing:-7.728000pt;}
.ws53{word-spacing:-5.666667pt;}
.ws8{word-spacing:-3.546667pt;}
.ws6d{word-spacing:-1.706667pt;}
.ws26{word-spacing:-1.386667pt;}
.ws9{word-spacing:-1.333333pt;}
.wsa{word-spacing:-1.280000pt;}
.ws3e{word-spacing:-1.226667pt;}
.wsb7{word-spacing:-1.224000pt;}
.ws2a{word-spacing:-1.173333pt;}
.ws81{word-spacing:-1.133333pt;}
.ws59{word-spacing:-1.120000pt;}
.ws15{word-spacing:-1.066667pt;}
.ws93{word-spacing:-1.042667pt;}
.ws1b{word-spacing:-1.013333pt;}
.ws94{word-spacing:-0.997333pt;}
.ws23{word-spacing:-0.960000pt;}
.ws9d{word-spacing:-0.952000pt;}
.ws75{word-spacing:-0.906667pt;}
.ws9c{word-spacing:-0.861333pt;}
.wse{word-spacing:-0.853333pt;}
.ws87{word-spacing:-0.816000pt;}
.ws18{word-spacing:-0.800000pt;}
.ws19{word-spacing:-0.746667pt;}
.wsd{word-spacing:-0.693333pt;}
.ws86{word-spacing:-0.680000pt;}
.wsf{word-spacing:-0.640000pt;}
.ws9e{word-spacing:-0.634667pt;}
.wsa4{word-spacing:-0.589333pt;}
.ws6b{word-spacing:-0.586667pt;}
.ws11{word-spacing:-0.544000pt;}
.ws2e{word-spacing:-0.533333pt;}
.ws5a{word-spacing:-0.480000pt;}
.ws3b{word-spacing:-0.426667pt;}
.ws95{word-spacing:-0.408000pt;}
.ws2c{word-spacing:-0.373333pt;}
.ws43{word-spacing:-0.320000pt;}
.ws4{word-spacing:-0.266667pt;}
.ws9b{word-spacing:-0.234667pt;}
.ws8d{word-spacing:-0.226667pt;}
.ws33{word-spacing:-0.213333pt;}
.wsb8{word-spacing:-0.181333pt;}
.ws69{word-spacing:-0.160000pt;}
.ws21{word-spacing:-0.106667pt;}
.ws12{word-spacing:-0.064000pt;}
.ws1f{word-spacing:-0.053333pt;}
.ws8f{word-spacing:-0.045333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws83{word-spacing:0.045333pt;}
.ws37{word-spacing:0.053333pt;}
.wsa6{word-spacing:0.090667pt;}
.ws62{word-spacing:0.106667pt;}
.ws34{word-spacing:0.160000pt;}
.ws9f{word-spacing:0.181333pt;}
.ws31{word-spacing:0.213333pt;}
.ws80{word-spacing:0.226667pt;}
.ws7a{word-spacing:0.266667pt;}
.ws63{word-spacing:0.317333pt;}
.ws1d{word-spacing:0.320000pt;}
.wsc{word-spacing:0.373333pt;}
.wsad{word-spacing:0.408000pt;}
.ws6e{word-spacing:0.426667pt;}
.ws8e{word-spacing:0.453333pt;}
.ws17{word-spacing:0.480000pt;}
.ws3f{word-spacing:0.533333pt;}
.ws8c{word-spacing:0.589333pt;}
.ws85{word-spacing:0.634667pt;}
.ws44{word-spacing:0.640000pt;}
.ws8a{word-spacing:0.680000pt;}
.ws38{word-spacing:0.746667pt;}
.ws61{word-spacing:0.800000pt;}
.ws97{word-spacing:0.816000pt;}
.ws29{word-spacing:0.853333pt;}
.ws98{word-spacing:0.861333pt;}
.wsb1{word-spacing:0.906667pt;}
.ws90{word-spacing:0.952000pt;}
.ws4b{word-spacing:0.960000pt;}
.ws47{word-spacing:1.013333pt;}
.ws50{word-spacing:1.042667pt;}
.ws7c{word-spacing:1.066667pt;}
.ws6a{word-spacing:1.120000pt;}
.ws84{word-spacing:1.133333pt;}
.ws5c{word-spacing:1.173333pt;}
.ws88{word-spacing:1.178667pt;}
.wsb0{word-spacing:1.224000pt;}
.ws89{word-spacing:1.269333pt;}
.ws22{word-spacing:1.280000pt;}
.wsa5{word-spacing:1.314667pt;}
.wsb{word-spacing:1.333333pt;}
.ws96{word-spacing:1.360000pt;}
.ws60{word-spacing:1.386667pt;}
.wsa3{word-spacing:1.405333pt;}
.ws30{word-spacing:1.440000pt;}
.ws52{word-spacing:1.450667pt;}
.ws16{word-spacing:1.493333pt;}
.ws8b{word-spacing:1.496000pt;}
.ws24{word-spacing:1.546667pt;}
.wsbb{word-spacing:1.586667pt;}
.ws32{word-spacing:1.600000pt;}
.ws41{word-spacing:1.653333pt;}
.wsbd{word-spacing:1.677333pt;}
.ws49{word-spacing:1.706667pt;}
.wsac{word-spacing:1.722667pt;}
.ws4a{word-spacing:1.760000pt;}
.ws91{word-spacing:1.768000pt;}
.ws4c{word-spacing:1.813333pt;}
.ws4f{word-spacing:1.858667pt;}
.ws2b{word-spacing:1.866667pt;}
.ws1e{word-spacing:1.920000pt;}
.wsba{word-spacing:1.949333pt;}
.ws58{word-spacing:1.973333pt;}
.ws39{word-spacing:2.026667pt;}
.ws51{word-spacing:2.040000pt;}
.wsaf{word-spacing:2.130667pt;}
.ws25{word-spacing:2.133333pt;}
.ws1c{word-spacing:2.186667pt;}
.ws92{word-spacing:2.221333pt;}
.ws7e{word-spacing:2.240000pt;}
.wsaa{word-spacing:2.266667pt;}
.ws1a{word-spacing:2.400000pt;}
.wsb4{word-spacing:2.402667pt;}
.wsa8{word-spacing:2.448000pt;}
.ws3a{word-spacing:2.453333pt;}
.wsb2{word-spacing:2.493333pt;}
.ws40{word-spacing:2.506667pt;}
.ws2d{word-spacing:2.560000pt;}
.wsa0{word-spacing:2.584000pt;}
.ws28{word-spacing:2.613333pt;}
.ws3c{word-spacing:2.666667pt;}
.ws7f{word-spacing:2.720000pt;}
.ws42{word-spacing:2.773333pt;}
.ws5d{word-spacing:2.901333pt;}
.ws6c{word-spacing:2.933333pt;}
.ws2f{word-spacing:2.986667pt;}
.ws54{word-spacing:3.040000pt;}
.ws5e{word-spacing:3.128000pt;}
.ws20{word-spacing:3.146667pt;}
.ws27{word-spacing:3.200000pt;}
.wsb9{word-spacing:3.218667pt;}
.ws78{word-spacing:3.360000pt;}
.ws7b{word-spacing:3.466667pt;}
.wsae{word-spacing:3.490667pt;}
.ws79{word-spacing:3.520000pt;}
.wsa9{word-spacing:3.536000pt;}
.wsab{word-spacing:3.626667pt;}
.wsb3{word-spacing:3.672000pt;}
.ws68{word-spacing:3.680000pt;}
.ws6f{word-spacing:3.733333pt;}
.wsbc{word-spacing:3.853333pt;}
.ws73{word-spacing:3.893333pt;}
.wsb6{word-spacing:4.034667pt;}
.ws4d{word-spacing:4.125333pt;}
.ws3d{word-spacing:4.213333pt;}
.ws74{word-spacing:4.266667pt;}
.ws48{word-spacing:4.320000pt;}
.wsa2{word-spacing:4.352000pt;}
.ws14{word-spacing:4.533333pt;}
.wsa7{word-spacing:4.714667pt;}
.ws56{word-spacing:4.746667pt;}
.wsa1{word-spacing:4.850667pt;}
.ws7d{word-spacing:4.960000pt;}
.ws36{word-spacing:5.226667pt;}
.ws5f{word-spacing:5.333333pt;}
.wsc0{word-spacing:5.621333pt;}
.wsb5{word-spacing:5.757333pt;}
.ws5b{word-spacing:5.760000pt;}
.wsbe{word-spacing:7.298667pt;}
.ws55{word-spacing:7.733333pt;}
.ws4e{word-spacing:8.704000pt;}
.wsbf{word-spacing:8.840000pt;}
.ws57{word-spacing:10.720000pt;}
.wsc1{word-spacing:12.149333pt;}
.wsc2{word-spacing:15.821333pt;}
.ws65{word-spacing:22.576000pt;}
.ws70{word-spacing:24.888000pt;}
.ws10{word-spacing:64.237333pt;}
.ws71{word-spacing:70.221333pt;}
.ws67{word-spacing:82.008000pt;}
.ws72{word-spacing:84.319995pt;}
.ws46{word-spacing:295.346661pt;}
._a{margin-left:-2456.205321pt;}
._7b{margin-left:-20.445333pt;}
._79{margin-left:-18.586667pt;}
._72{margin-left:-16.637333pt;}
._6{margin-left:-14.733333pt;}
._77{margin-left:-13.781333pt;}
._73{margin-left:-12.874667pt;}
._10{margin-left:-11.469883pt;}
._78{margin-left:-10.358667pt;}
._11{margin-left:-9.429342pt;}
._20{margin-left:-8.467222pt;}
._5{margin-left:-6.675289pt;}
._4{margin-left:-5.546667pt;}
._3{margin-left:-4.020878pt;}
._2{margin-left:-2.483200pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.433600pt;}
._c{width:2.720000pt;}
._7a{width:3.617600pt;}
._21{width:4.923733pt;}
._22{width:6.496000pt;}
._6e{width:8.568000pt;}
._1f{width:11.019053pt;}
._6c{width:12.693333pt;}
._f{width:13.872000pt;}
._75{width:14.859200pt;}
._7{width:16.320000pt;}
._76{width:18.224000pt;}
._74{width:19.946667pt;}
._6d{width:21.958933pt;}
._71{width:23.409600pt;}
._6f{width:24.859733pt;}
._70{width:25.930667pt;}
._e{width:36.720000pt;}
._1a{width:41.093857pt;}
._8{width:48.552000pt;}
._47{width:70.674667pt;}
._62{width:72.986662pt;}
._2b{width:76.296000pt;}
._38{width:79.242667pt;}
._5e{width:81.554667pt;}
._b{width:87.312000pt;}
._34{width:93.341333pt;}
._53{width:95.653329pt;}
._32{width:101.909333pt;}
._51{width:104.221333pt;}
._28{width:117.211089pt;}
._41{width:136.821849pt;}
._4c{width:142.210667pt;}
._6a{width:144.522667pt;}
._29{width:151.821333pt;}
._33{width:164.877333pt;}
._52{width:167.189333pt;}
._61{width:188.802133pt;}
._1b{width:214.987809pt;}
._1d{width:223.719962pt;}
._2e{width:249.758400pt;}
._1e{width:260.963132pt;}
._40{width:273.830382pt;}
._63{width:302.209067pt;}
._14{width:307.335499pt;}
._2d{width:330.752000pt;}
._25{width:339.295525pt;}
._30{width:344.941326pt;}
._4f{width:351.922667pt;}
._18{width:376.835132pt;}
._66{width:387.634133pt;}
._46{width:394.615449pt;}
._15{width:449.855502pt;}
._17{width:480.986629pt;}
._59{width:492.580800pt;}
._19{width:494.495009pt;}
._2a{width:498.872422pt;}
._3c{width:556.662942pt;}
._26{width:583.030777pt;}
._27{width:604.673067pt;}
._5b{width:635.137067pt;}
._1c{width:659.087399pt;}
._16{width:677.098629pt;}
._13{width:695.947170pt;}
._23{width:707.643200pt;}
._2c{width:729.354022pt;}
._58{width:758.381333pt;}
._12{width:764.853858pt;}
._24{width:766.168494pt;}
._5d{width:1004.677333pt;}
._48{width:1063.959959pt;}
._68{width:1093.094400pt;}
._4b{width:1100.075715pt;}
._44{width:1111.045361pt;}
._45{width:1145.323187pt;}
._57{width:1157.133333pt;}
._5f{width:1168.438400pt;}
._5a{width:1224.090667pt;}
._5c{width:1260.028800pt;}
._3d{width:1267.010115pt;}
._56{width:1299.616000pt;}
._3b{width:1312.553076pt;}
._3e{width:1321.285315pt;}
._6b{width:1352.656060pt;}
._d{width:1374.188775pt;}
._49{width:1389.438382pt;}
._54{width:1479.299240pt;}
._35{width:1494.910943pt;}
._65{width:1498.312000pt;}
._43{width:1505.293315pt;}
._64{width:1550.082667pt;}
._3a{width:1570.300305pt;}
._42{width:1577.010649pt;}
._39{width:1578.551982pt;}
._9{width:1586.303988pt;}
._60{width:1632.952000pt;}
._3f{width:1639.933315pt;}
._31{width:1648.800543pt;}
._50{width:1664.485906pt;}
._69{width:1709.792000pt;}
._4d{width:1716.773315pt;}
._55{width:1752.467733pt;}
._4a{width:1764.948860pt;}
._37{width:1774.663982pt;}
._67{width:1779.514667pt;}
._36{width:1787.312000pt;}
._4e{width:1830.217052pt;}
._2f{width:1844.803669pt;}
.fs6{font-size:31.733332pt;}
.fs5{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs2{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:61.181335pt;}
.yff{bottom:99.280133pt;}
.y28{bottom:100.389600pt;}
.yc9{bottom:101.986898pt;}
.ye7{bottom:101.986938pt;}
.y147{bottom:102.110921pt;}
.y182{bottom:105.369467pt;}
.y1e4{bottom:108.323981pt;}
.y1c6{bottom:109.089314pt;}
.y21e{bottom:112.266898pt;}
.yfe{bottom:112.608133pt;}
.y33{bottom:113.665998pt;}
.y67{bottom:115.480306pt;}
.y27{bottom:118.250936pt;}
.y96{bottom:118.384277pt;}
.yc8{bottom:118.653564pt;}
.ye6{bottom:118.653605pt;}
.y146{bottom:118.777588pt;}
.y181{bottom:122.482800pt;}
.y1e3{bottom:125.029314pt;}
.y21d{bottom:125.594898pt;}
.y1c5{bottom:125.794647pt;}
.y294{bottom:130.508947pt;}
.y32{bottom:131.527333pt;}
.y66{bottom:132.146973pt;}
.y254{bottom:132.605615pt;}
.y26{bottom:133.770270pt;}
.yfd{bottom:134.254801pt;}
.y95{bottom:135.050944pt;}
.yc7{bottom:135.320231pt;}
.ye5{bottom:135.320272pt;}
.y145{bottom:135.444255pt;}
.y180{bottom:140.344137pt;}
.y1e2{bottom:141.666647pt;}
.y1c4{bottom:142.431981pt;}
.y293{bottom:143.836947pt;}
.y253{bottom:145.933615pt;}
.yfc{bottom:146.839735pt;}
.y25{bottom:147.098270pt;}
.y65{bottom:148.813639pt;}
.y31{bottom:151.569336pt;}
.y94{bottom:151.717611pt;}
.yc6{bottom:151.986898pt;}
.ye4{bottom:151.986938pt;}
.y144{bottom:152.110921pt;}
.y21c{bottom:152.262231pt;}
.y17f{bottom:152.928938pt;}
.y292{bottom:157.164947pt;}
.y1e1{bottom:158.303981pt;}
.y1c3{bottom:159.069314pt;}
.y252{bottom:159.261615pt;}
.yfb{bottom:164.701070pt;}
.y24{bottom:164.959605pt;}
.y64{bottom:165.480306pt;}
.y21b{bottom:165.590231pt;}
.y30{bottom:167.083336pt;}
.y93{bottom:168.384277pt;}
.yc5{bottom:168.653564pt;}
.ye3{bottom:168.653605pt;}
.y143{bottom:168.777588pt;}
.y291{bottom:170.492947pt;}
.y17e{bottom:170.790263pt;}
.y251{bottom:172.589615pt;}
.y1e0{bottom:174.941314pt;}
.y1c2{bottom:175.706647pt;}
.y21a{bottom:178.918231pt;}
.y23{bottom:180.478928pt;}
.y63{bottom:182.146973pt;}
.y290{bottom:183.820947pt;}
.y2f{bottom:184.944661pt;}
.y92{bottom:185.050944pt;}
.yc4{bottom:185.320231pt;}
.ye2{bottom:185.320272pt;}
.y126{bottom:185.366790pt;}
.y142{bottom:185.444255pt;}
.y250{bottom:185.917615pt;}
.y1a3{bottom:190.756133pt;}
.y1df{bottom:191.578647pt;}
.y219{bottom:192.246231pt;}
.y1c1{bottom:192.343981pt;}
.y22{bottom:193.806928pt;}
.y28f{bottom:197.148947pt;}
.y62{bottom:198.813639pt;}
.y24f{bottom:199.245615pt;}
.y2e{bottom:200.463995pt;}
.y91{bottom:201.717611pt;}
.yc3{bottom:201.986898pt;}
.ye1{bottom:201.986938pt;}
.y125{bottom:202.063473pt;}
.y141{bottom:202.110921pt;}
.y218{bottom:205.574231pt;}
.y1a2{bottom:207.462808pt;}
.y1de{bottom:208.215981pt;}
.y1c0{bottom:208.981314pt;}
.y28e{bottom:210.476947pt;}
.y21{bottom:211.668274pt;}
.y24e{bottom:212.573615pt;}
.y2d{bottom:213.791995pt;}
.y61{bottom:215.480306pt;}
.y90{bottom:218.384277pt;}
.yc2{bottom:218.653564pt;}
.ye0{bottom:218.653605pt;}
.y124{bottom:218.700806pt;}
.y140{bottom:218.777588pt;}
.y217{bottom:218.902231pt;}
.y28d{bottom:223.804947pt;}
.y1a0{bottom:224.101462pt;}
.y1dd{bottom:224.853314pt;}
.y1bf{bottom:225.618647pt;}
.y24d{bottom:225.901615pt;}
.y2c{bottom:231.653341pt;}
.y60{bottom:232.146973pt;}
.y216{bottom:232.230231pt;}
.y20{bottom:233.900925pt;}
.y8f{bottom:235.050944pt;}
.yc1{bottom:235.320231pt;}
.ydf{bottom:235.320272pt;}
.y121{bottom:235.350794pt;}
.y13f{bottom:235.444255pt;}
.y28c{bottom:237.132947pt;}
.y1a1{bottom:237.428141pt;}
.y19f{bottom:237.429462pt;}
.y24c{bottom:239.229615pt;}
.y1dc{bottom:241.490647pt;}
.y1be{bottom:242.255981pt;}
.y215{bottom:245.558231pt;}
.y1f{bottom:247.228925pt;}
.y123{bottom:248.677473pt;}
.y120{bottom:248.678794pt;}
.y5f{bottom:248.813639pt;}
.y28b{bottom:250.460947pt;}
.y2b{bottom:251.695333pt;}
.y8e{bottom:251.717611pt;}
.yc0{bottom:251.986898pt;}
.yde{bottom:251.986938pt;}
.y13e{bottom:252.110921pt;}
.y24b{bottom:252.557615pt;}
.y19e{bottom:254.064125pt;}
.y1db{bottom:258.127981pt;}
.y214{bottom:258.886231pt;}
.y1bd{bottom:258.893314pt;}
.y122{bottom:262.005473pt;}
.y11f{bottom:262.006794pt;}
.y28a{bottom:263.788947pt;}
.y5e{bottom:265.480306pt;}
.y24a{bottom:265.885615pt;}
.y2a{bottom:267.209333pt;}
.y1e{bottom:267.266259pt;}
.y19d{bottom:267.392125pt;}
.y8d{bottom:268.384277pt;}
.ybf{bottom:268.653564pt;}
.ydd{bottom:268.653605pt;}
.y13d{bottom:268.777588pt;}
.y1da{bottom:274.765314pt;}
.y1bc{bottom:275.530647pt;}
.y289{bottom:277.116947pt;}
.y11d{bottom:278.644127pt;}
.y249{bottom:279.213615pt;}
.y1d{bottom:280.594259pt;}
.y5d{bottom:282.146973pt;}
.y19c{bottom:284.029458pt;}
.y8c{bottom:285.050944pt;}
.y29{bottom:285.070658pt;}
.ybe{bottom:285.320231pt;}
.ydc{bottom:285.320272pt;}
.y13c{bottom:285.444255pt;}
.y213{bottom:285.553564pt;}
.y288{bottom:290.444947pt;}
.y1d9{bottom:291.402647pt;}
.y11c{bottom:291.970152pt;}
.y11e{bottom:291.972127pt;}
.y1bb{bottom:292.167981pt;}
.y248{bottom:292.541615pt;}
.y5c{bottom:298.813639pt;}
.y212{bottom:298.881564pt;}
.y19a{bottom:300.668133pt;}
.y8b{bottom:301.717611pt;}
.ybd{bottom:301.986898pt;}
.ydb{bottom:301.986938pt;}
.y13b{bottom:302.110921pt;}
.y287{bottom:303.772947pt;}
.y1ba{bottom:305.495981pt;}
.y247{bottom:305.869615pt;}
.y1d8{bottom:308.039981pt;}
.y11b{bottom:308.607485pt;}
.y211{bottom:312.209564pt;}
.y19b{bottom:313.994792pt;}
.y199{bottom:313.996133pt;}
.y5b{bottom:315.480306pt;}
.y286{bottom:317.100947pt;}
.y8a{bottom:318.384277pt;}
.ybc{bottom:318.653564pt;}
.yda{bottom:318.653605pt;}
.y13a{bottom:318.777588pt;}
.y246{bottom:319.197615pt;}
.y1d7{bottom:321.367981pt;}
.y11a{bottom:321.935485pt;}
.y1b9{bottom:322.133314pt;}
.y210{bottom:325.537564pt;}
.y285{bottom:330.428947pt;}
.y197{bottom:330.628808pt;}
.y5a{bottom:332.146973pt;}
.y245{bottom:332.525615pt;}
.y89{bottom:335.050944pt;}
.ybb{bottom:335.320231pt;}
.yd9{bottom:335.320272pt;}
.y139{bottom:335.444255pt;}
.y1d6{bottom:338.005314pt;}
.y119{bottom:338.572818pt;}
.y1b8{bottom:338.770647pt;}
.y20f{bottom:338.865564pt;}
.y284{bottom:343.756947pt;}
.y196{bottom:343.956808pt;}
.y198{bottom:343.961466pt;}
.y244{bottom:345.853615pt;}
.y59{bottom:348.813639pt;}
.y88{bottom:351.717611pt;}
.y118{bottom:351.900818pt;}
.yba{bottom:351.986898pt;}
.yd8{bottom:351.986938pt;}
.y138{bottom:352.110921pt;}
.y20e{bottom:352.193564pt;}
.y1d5{bottom:354.642647pt;}
.y1b7{bottom:355.407981pt;}
.y283{bottom:357.084947pt;}
.y243{bottom:359.181615pt;}
.y195{bottom:360.605475pt;}
.y58{bottom:365.480306pt;}
.y20d{bottom:365.521564pt;}
.y87{bottom:368.384277pt;}
.y116{bottom:368.550786pt;}
.yb9{bottom:368.653564pt;}
.yd7{bottom:368.653605pt;}
.y137{bottom:368.777588pt;}
.y282{bottom:370.412947pt;}
.y1d4{bottom:371.279981pt;}
.y1b6{bottom:372.045314pt;}
.y242{bottom:372.509615pt;}
.y192{bottom:373.926792pt;}
.y194{bottom:373.933475pt;}
.y20c{bottom:378.849564pt;}
.y115{bottom:381.878786pt;}
.y57{bottom:382.146973pt;}
.y281{bottom:383.740947pt;}
.y86{bottom:385.050944pt;}
.yb8{bottom:385.320231pt;}
.yd6{bottom:385.320272pt;}
.y136{bottom:385.444255pt;}
.y241{bottom:385.837615pt;}
.y191{bottom:387.254792pt;}
.y193{bottom:387.261475pt;}
.y1d3{bottom:387.917314pt;}
.y1b5{bottom:388.682647pt;}
.y20b{bottom:392.177564pt;}
.y117{bottom:395.205485pt;}
.y114{bottom:395.206786pt;}
.y280{bottom:397.068947pt;}
.y56{bottom:398.813639pt;}
.y240{bottom:399.165615pt;}
.y85{bottom:401.717611pt;}
.yb7{bottom:401.986898pt;}
.yd5{bottom:401.986938pt;}
.y135{bottom:402.110921pt;}
.y190{bottom:403.892125pt;}
.y1d2{bottom:404.554647pt;}
.y1b4{bottom:405.319981pt;}
.y20a{bottom:405.505564pt;}
.y27f{bottom:410.396947pt;}
.y112{bottom:411.842810pt;}
.y23f{bottom:412.493615pt;}
.y55{bottom:415.480306pt;}
.y18f{bottom:417.220125pt;}
.y1c{bottom:418.187907pt;}
.y84{bottom:418.384277pt;}
.y1b3{bottom:418.647981pt;}
.yb6{bottom:418.653564pt;}
.yd4{bottom:418.653605pt;}
.y134{bottom:418.777588pt;}
.y209{bottom:418.833564pt;}
.y1d1{bottom:421.191981pt;}
.y27e{bottom:423.724947pt;}
.y111{bottom:425.170810pt;}
.y113{bottom:425.172119pt;}
.y23e{bottom:425.821615pt;}
.y54{bottom:432.146973pt;}
.y208{bottom:432.161564pt;}
.y18e{bottom:433.857458pt;}
.y1b{bottom:434.854574pt;}
.y83{bottom:435.050944pt;}
.y1b2{bottom:435.285314pt;}
.yb5{bottom:435.320231pt;}
.yd3{bottom:435.320272pt;}
.y133{bottom:435.444255pt;}
.y27d{bottom:437.052947pt;}
.y1d0{bottom:437.829314pt;}
.y23d{bottom:439.149615pt;}
.y110{bottom:441.808144pt;}
.y207{bottom:445.489564pt;}
.y53{bottom:448.813639pt;}
.y27c{bottom:450.380947pt;}
.y18d{bottom:450.496133pt;}
.y82{bottom:451.717611pt;}
.y1b1{bottom:451.922647pt;}
.yb4{bottom:451.986898pt;}
.yd2{bottom:451.986938pt;}
.y132{bottom:452.110921pt;}
.y23c{bottom:452.477615pt;}
.y1cf{bottom:454.466647pt;}
.y10e{bottom:458.445477pt;}
.y206{bottom:458.817564pt;}
.y27b{bottom:463.708947pt;}
.y52{bottom:465.480306pt;}
.y23b{bottom:465.805615pt;}
.y18b{bottom:467.133466pt;}
.y1a{bottom:468.187907pt;}
.y81{bottom:468.384277pt;}
.y1b0{bottom:468.559981pt;}
.yb3{bottom:468.653564pt;}
.yd1{bottom:468.653605pt;}
.y131{bottom:468.777588pt;}
.y1ce{bottom:471.103981pt;}
.y10d{bottom:471.773477pt;}
.y205{bottom:472.145564pt;}
.y27a{bottom:477.036947pt;}
.y23a{bottom:479.133615pt;}
.y18a{bottom:480.456808pt;}
.y18c{bottom:480.461466pt;}
.y51{bottom:482.146973pt;}
.y19{bottom:484.854574pt;}
.y80{bottom:485.050944pt;}
.y10c{bottom:485.101477pt;}
.y10f{bottom:485.112810pt;}
.y1af{bottom:485.197314pt;}
.yb2{bottom:485.320231pt;}
.yd0{bottom:485.320272pt;}
.y130{bottom:485.444255pt;}
.y1cd{bottom:487.741314pt;}
.y279{bottom:490.364947pt;}
.y239{bottom:492.461615pt;}
.y188{bottom:497.105475pt;}
.y1ae{bottom:498.525314pt;}
.y204{bottom:498.812898pt;}
.y50{bottom:498.813639pt;}
.y18{bottom:501.521240pt;}
.y7f{bottom:501.717611pt;}
.y10b{bottom:501.745485pt;}
.yb1{bottom:501.986898pt;}
.ycf{bottom:501.986938pt;}
.y12f{bottom:502.110921pt;}
.y278{bottom:503.692947pt;}
.y1cc{bottom:504.378647pt;}
.y238{bottom:505.789615pt;}
.y187{bottom:510.433475pt;}
.y203{bottom:512.140898pt;}
.y1ad{bottom:515.162647pt;}
.y4f{bottom:515.480306pt;}
.y277{bottom:517.020947pt;}
.y17{bottom:518.187907pt;}
.y109{bottom:518.382818pt;}
.yb0{bottom:518.653564pt;}
.yce{bottom:518.653605pt;}
.y12e{bottom:518.777588pt;}
.y237{bottom:519.117615pt;}
.y1cb{bottom:521.015981pt;}
.y189{bottom:523.761475pt;}
.y186{bottom:523.764117pt;}
.y202{bottom:525.468898pt;}
.y276{bottom:530.348947pt;}
.y108{bottom:531.710818pt;}
.y1ac{bottom:531.799981pt;}
.y4e{bottom:532.146973pt;}
.y236{bottom:532.445615pt;}
.y16{bottom:534.854574pt;}
.y7e{bottom:535.050944pt;}
.yaf{bottom:535.320231pt;}
.ycd{bottom:535.320272pt;}
.y12d{bottom:535.444255pt;}
.y1ca{bottom:537.653314pt;}
.y201{bottom:538.796898pt;}
.y185{bottom:540.401450pt;}
.y275{bottom:543.676947pt;}
.y107{bottom:545.045452pt;}
.y10a{bottom:545.050152pt;}
.y235{bottom:545.773615pt;}
.y1ab{bottom:548.437314pt;}
.y4d{bottom:548.813639pt;}
.y15{bottom:551.521240pt;}
.yae{bottom:551.986898pt;}
.y161{bottom:551.990885pt;}
.y12c{bottom:552.110921pt;}
.y200{bottom:552.124898pt;}
.y274{bottom:557.004947pt;}
.y234{bottom:559.101615pt;}
.y105{bottom:561.682786pt;}
.y1c9{bottom:561.951981pt;}
.y184{bottom:564.700117pt;}
.y1aa{bottom:565.074647pt;}
.y1ff{bottom:565.452898pt;}
.y4c{bottom:565.480306pt;}
.y14{bottom:568.187907pt;}
.y7d{bottom:568.384277pt;}
.yad{bottom:568.653564pt;}
.ycc{bottom:568.653605pt;}
.y160{bottom:568.657552pt;}
.y12b{bottom:568.777588pt;}
.y273{bottom:570.332947pt;}
.y233{bottom:572.429615pt;}
.y104{bottom:575.010786pt;}
.y183{bottom:578.028117pt;}
.y1fe{bottom:578.780898pt;}
.y1a9{bottom:581.711981pt;}
.y4b{bottom:582.146973pt;}
.y1c8{bottom:583.655314pt;}
.y272{bottom:583.660947pt;}
.y13{bottom:584.854574pt;}
.yac{bottom:585.320231pt;}
.y15f{bottom:585.324219pt;}
.y12a{bottom:585.444255pt;}
.y232{bottom:585.757615pt;}
.y103{bottom:588.341469pt;}
.y106{bottom:588.350119pt;}
.y1fd{bottom:592.108898pt;}
.y271{bottom:596.988947pt;}
.y1a8{bottom:598.349314pt;}
.y4a{bottom:598.813639pt;}
.y231{bottom:599.085615pt;}
.y17d{bottom:600.686401pt;}
.y12{bottom:601.521240pt;}
.yab{bottom:601.986898pt;}
.y15e{bottom:601.990885pt;}
.y129{bottom:602.110921pt;}
.y102{bottom:604.978802pt;}
.y1fc{bottom:605.436898pt;}
.y1c7{bottom:606.313599pt;}
.y270{bottom:610.316947pt;}
.y230{bottom:612.413615pt;}
.y1a7{bottom:614.986647pt;}
.y49{bottom:615.480306pt;}
.y11{bottom:618.187907pt;}
.yaa{bottom:618.653564pt;}
.y15d{bottom:618.657552pt;}
.y1fb{bottom:618.764898pt;}
.y26f{bottom:623.644947pt;}
.y101{bottom:629.277469pt;}
.y1fa{bottom:632.092898pt;}
.y48{bottom:632.146973pt;}
.y7c{bottom:634.146993pt;}
.y10{bottom:634.854574pt;}
.ya9{bottom:635.320231pt;}
.y15c{bottom:635.324219pt;}
.y128{bottom:635.444255pt;}
.y2ae{bottom:636.777620pt;}
.y26e{bottom:636.972947pt;}
.y1a6{bottom:639.285314pt;}
.y22f{bottom:642.413615pt;}
.y100{bottom:642.605469pt;}
.y1f9{bottom:645.420898pt;}
.y47{bottom:648.813639pt;}
.y2ad{bottom:650.105620pt;}
.y26d{bottom:650.300947pt;}
.y7b{bottom:650.813660pt;}
.y174{bottom:650.928304pt;}
.yf{bottom:651.521240pt;}
.ya8{bottom:651.986898pt;}
.y15b{bottom:651.990885pt;}
.y1f8{bottom:658.748898pt;}
.y1a5{bottom:660.988647pt;}
.y2ac{bottom:663.433620pt;}
.y26c{bottom:663.628947pt;}
.yfa{bottom:665.263753pt;}
.y46{bottom:665.480306pt;}
.y7a{bottom:667.480326pt;}
.y173{bottom:667.594971pt;}
.ye{bottom:668.187907pt;}
.ya7{bottom:668.653564pt;}
.y15a{bottom:668.657552pt;}
.y127{bottom:668.777588pt;}
.y1f7{bottom:672.076898pt;}
.y2ab{bottom:676.761620pt;}
.y26b{bottom:676.956947pt;}
.y45{bottom:682.146973pt;}
.y1a4{bottom:683.646973pt;}
.y79{bottom:684.146993pt;}
.y172{bottom:684.261637pt;}
.yd{bottom:684.854574pt;}
.ya6{bottom:685.320231pt;}
.y159{bottom:685.324219pt;}
.y1f6{bottom:685.404898pt;}
.y2aa{bottom:690.089620pt;}
.y26a{bottom:690.284947pt;}
.y1f5{bottom:698.732898pt;}
.y44{bottom:698.813639pt;}
.y78{bottom:700.813660pt;}
.y171{bottom:700.928304pt;}
.yc{bottom:701.521240pt;}
.ya5{bottom:701.986898pt;}
.y158{bottom:701.990885pt;}
.y2a9{bottom:703.417620pt;}
.y2c2{bottom:703.462955pt;}
.y269{bottom:703.612947pt;}
.y22e{bottom:707.710971pt;}
.y1f4{bottom:712.060898pt;}
.y43{bottom:715.480306pt;}
.y2a8{bottom:716.745620pt;}
.y2c1{bottom:716.790955pt;}
.y268{bottom:716.940947pt;}
.y77{bottom:717.480326pt;}
.y170{bottom:717.594971pt;}
.ya4{bottom:718.653564pt;}
.y157{bottom:718.657552pt;}
.yf1{bottom:718.777751pt;}
.y22d{bottom:721.038971pt;}
.y1f3{bottom:725.388898pt;}
.y2a7{bottom:730.073620pt;}
.y267{bottom:730.268947pt;}
.y42{bottom:732.146973pt;}
.y76{bottom:734.146993pt;}
.y16f{bottom:734.261637pt;}
.y22c{bottom:734.366971pt;}
.ya3{bottom:735.320231pt;}
.y156{bottom:735.324219pt;}
.yf0{bottom:735.444417pt;}
.y1f2{bottom:738.716898pt;}
.yb{bottom:740.794803pt;}
.y2a6{bottom:743.401620pt;}
.y2c0{bottom:743.537620pt;}
.y266{bottom:743.596947pt;}
.y22b{bottom:747.694971pt;}
.y41{bottom:748.813639pt;}
.y75{bottom:750.813660pt;}
.y16e{bottom:750.928304pt;}
.ya2{bottom:751.986898pt;}
.y155{bottom:751.990885pt;}
.y1f1{bottom:752.044898pt;}
.yef{bottom:752.111084pt;}
.ya{bottom:754.122803pt;}
.y2a5{bottom:756.729620pt;}
.y2bf{bottom:756.865620pt;}
.y265{bottom:756.924947pt;}
.y22a{bottom:761.022971pt;}
.y1f0{bottom:765.372898pt;}
.y40{bottom:765.480306pt;}
.y74{bottom:767.480326pt;}
.y16d{bottom:767.594971pt;}
.ycb{bottom:768.653564pt;}
.y154{bottom:768.657552pt;}
.yee{bottom:768.777751pt;}
.y2a4{bottom:770.057620pt;}
.y2be{bottom:770.193620pt;}
.y264{bottom:770.252947pt;}
.y229{bottom:774.350971pt;}
.y1ef{bottom:778.700898pt;}
.y3f{bottom:782.146973pt;}
.y2a3{bottom:783.385620pt;}
.y2bd{bottom:783.521620pt;}
.y263{bottom:783.580947pt;}
.y73{bottom:784.146993pt;}
.y16c{bottom:784.261637pt;}
.ya1{bottom:785.320231pt;}
.y153{bottom:785.324219pt;}
.yed{bottom:785.444417pt;}
.y228{bottom:787.678971pt;}
.y9{bottom:791.989502pt;}
.y1ee{bottom:792.028898pt;}
.y2a2{bottom:796.713620pt;}
.y2bc{bottom:796.849620pt;}
.y262{bottom:796.908947pt;}
.y3e{bottom:798.813639pt;}
.y72{bottom:800.813660pt;}
.y16b{bottom:800.928304pt;}
.y227{bottom:801.006971pt;}
.yca{bottom:801.986898pt;}
.y152{bottom:801.990885pt;}
.yec{bottom:802.111084pt;}
.y1ed{bottom:805.356898pt;}
.y8{bottom:808.656169pt;}
.y2a1{bottom:810.041620pt;}
.y2bb{bottom:810.177620pt;}
.y261{bottom:810.236947pt;}
.y226{bottom:814.334971pt;}
.y3d{bottom:815.480306pt;}
.y71{bottom:817.480326pt;}
.y16a{bottom:817.594971pt;}
.ya0{bottom:818.653564pt;}
.y151{bottom:818.657552pt;}
.y1ec{bottom:818.684898pt;}
.yeb{bottom:818.777751pt;}
.y2a0{bottom:823.369620pt;}
.y2ba{bottom:823.505620pt;}
.y260{bottom:823.564947pt;}
.y225{bottom:827.662971pt;}
.y1eb{bottom:832.012898pt;}
.y3c{bottom:832.146973pt;}
.y70{bottom:834.146993pt;}
.y169{bottom:834.261637pt;}
.y9f{bottom:835.320231pt;}
.y150{bottom:835.324219pt;}
.yea{bottom:835.444417pt;}
.y29f{bottom:836.697620pt;}
.y2b9{bottom:836.833620pt;}
.y25f{bottom:836.892947pt;}
.y224{bottom:840.990971pt;}
.y1ea{bottom:845.340898pt;}
.y7{bottom:848.377441pt;}
.y3b{bottom:848.813639pt;}
.y29e{bottom:850.025620pt;}
.y2b8{bottom:850.161620pt;}
.y25e{bottom:850.220947pt;}
.y6f{bottom:850.813660pt;}
.y168{bottom:850.928304pt;}
.y17c{bottom:851.981637pt;}
.y9e{bottom:851.986898pt;}
.y14f{bottom:851.990885pt;}
.ye9{bottom:852.111084pt;}
.y223{bottom:854.318971pt;}
.y1e9{bottom:858.668898pt;}
.y29d{bottom:863.353620pt;}
.y2b7{bottom:863.489620pt;}
.y25d{bottom:863.548947pt;}
.y3a{bottom:865.480306pt;}
.y6e{bottom:867.480326pt;}
.y167{bottom:867.594971pt;}
.y17b{bottom:868.648304pt;}
.y9d{bottom:868.653564pt;}
.y14e{bottom:868.657552pt;}
.ye8{bottom:868.777751pt;}
.y1e8{bottom:871.996898pt;}
.y6{bottom:872.377441pt;}
.y29c{bottom:876.681620pt;}
.y2b6{bottom:876.817620pt;}
.y25c{bottom:876.876947pt;}
.y222{bottom:880.986304pt;}
.y39{bottom:882.146973pt;}
.y6d{bottom:884.146993pt;}
.y166{bottom:884.261637pt;}
.y17a{bottom:885.314971pt;}
.y9c{bottom:885.320231pt;}
.y14d{bottom:885.324219pt;}
.y1e7{bottom:885.324898pt;}
.y29b{bottom:890.009620pt;}
.y2b5{bottom:890.145620pt;}
.y25b{bottom:890.204947pt;}
.y5{bottom:896.377441pt;}
.y38{bottom:898.813639pt;}
.y6c{bottom:900.813660pt;}
.y165{bottom:900.928304pt;}
.y179{bottom:901.981637pt;}
.y9b{bottom:901.986898pt;}
.y14c{bottom:901.990885pt;}
.y29a{bottom:903.337620pt;}
.y2b4{bottom:903.473620pt;}
.y25a{bottom:903.532947pt;}
.y1e6{bottom:911.992231pt;}
.y221{bottom:914.272304pt;}
.y37{bottom:915.480306pt;}
.yf8{bottom:915.668306pt;}
.y299{bottom:916.665620pt;}
.y2b3{bottom:916.801620pt;}
.y259{bottom:916.860947pt;}
.y6b{bottom:917.480326pt;}
.y164{bottom:917.594971pt;}
.y178{bottom:918.648304pt;}
.y9a{bottom:918.653564pt;}
.y14b{bottom:918.657552pt;}
.y1e5{bottom:925.320231pt;}
.y220{bottom:927.600304pt;}
.yf7{bottom:928.996306pt;}
.y298{bottom:929.993620pt;}
.y2b2{bottom:930.129620pt;}
.y258{bottom:930.188947pt;}
.y36{bottom:932.146973pt;}
.y6a{bottom:934.146993pt;}
.y163{bottom:934.261637pt;}
.y177{bottom:935.314971pt;}
.y99{bottom:935.320231pt;}
.y14a{bottom:935.324219pt;}
.y21f{bottom:940.928304pt;}
.yf6{bottom:942.324306pt;}
.y297{bottom:943.321620pt;}
.y2b1{bottom:943.457620pt;}
.y257{bottom:943.516947pt;}
.y69{bottom:950.813660pt;}
.y176{bottom:951.981637pt;}
.y98{bottom:951.986898pt;}
.y149{bottom:951.990885pt;}
.yf3{bottom:951.991074pt;}
.yf5{bottom:955.652306pt;}
.y4{bottom:956.561849pt;}
.y296{bottom:956.649620pt;}
.y2b0{bottom:956.785620pt;}
.y256{bottom:956.844947pt;}
.y35{bottom:965.480306pt;}
.y68{bottom:967.480326pt;}
.y162{bottom:967.594971pt;}
.y175{bottom:968.648304pt;}
.y97{bottom:968.653564pt;}
.y148{bottom:968.657552pt;}
.yf2{bottom:968.657740pt;}
.yf9{bottom:968.813639pt;}
.yf4{bottom:968.980306pt;}
.y295{bottom:969.977620pt;}
.y2af{bottom:970.113620pt;}
.y255{bottom:970.172947pt;}
.y3{bottom:986.299161pt;}
.y2{bottom:1001.406494pt;}
.y34{bottom:1002.206543pt;}
.hc{height:22.403733pt;}
.h12{height:23.680000pt;}
.h2{height:30.080000pt;}
.hb{height:32.005333pt;}
.ha{height:32.760417pt;}
.h8{height:37.653333pt;}
.h7{height:38.453333pt;}
.h3{height:39.712000pt;}
.h10{height:39.712651pt;}
.h11{height:40.165333pt;}
.h19{height:40.489082pt;}
.h17{height:40.489164pt;}
.h1c{height:40.494367pt;}
.h15{height:40.510334pt;}
.h21{height:40.510416pt;}
.h14{height:40.510497pt;}
.h16{height:40.521098pt;}
.h13{height:40.526464pt;}
.h1e{height:40.531668pt;}
.h20{height:40.534334pt;}
.h1f{height:40.542432pt;}
.h18{height:40.545017pt;}
.h22{height:40.547798pt;}
.h1d{height:40.555668pt;}
.h1a{height:40.571716pt;}
.hd{height:46.144000pt;}
.h1b{height:46.376000pt;}
.h9{height:47.253333pt;}
.h4{height:49.298667pt;}
.he{height:52.448000pt;}
.hf{height:54.560000pt;}
.h6{height:57.658667pt;}
.h5{height:75.605333pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:60.991597pt;}
.x2{left:68.031469pt;}
.xc{left:72.031474pt;}
.x3{left:75.717199pt;}
.x7{left:83.151469pt;}
.x4{left:86.929867pt;}
.x14{left:90.709469pt;}
.xe{left:305.702136pt;}
.xa{left:320.004800pt;}
.xf{left:401.706799pt;}
.x5{left:408.188924pt;}
.x11{left:409.706130pt;}
.xd{left:416.003994pt;}
.x8{left:423.311457pt;}
.x6{left:427.081599pt;}
.x15{left:430.868135pt;}
.x13{left:592.646932pt;}
.x12{left:594.400920pt;}
.xb{left:642.755458pt;}
.x1{left:647.307210pt;}
.x10{left:654.009456pt;}
}




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