
    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_c7df1ac4f6e5d9de11b3dceb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.165000;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_9cf79b8e065034bdf4bfc54d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_474dc319dab6ad5d2825d211.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.167000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_dc8da5d4e309d74b2fd90b45.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.166000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1a40657bef340ac183db1541.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.200900;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2cee460eb00f838ad533f5c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.235000;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_f7c23e80e1fd43c76b38e997.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.184000;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_dade6236936090bf9f51a9d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.075048;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_4ecfd8d2ee404a4acf24ac0f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.243000;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_12b1de13ddc0ce20e193c986.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.176000;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:ffb;src:url('chunks/assets/font_1c58374220e952989ede04ac.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.196000;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:ffc;src:url('chunks/assets/font_cb5f8b5cc99b6bacc515797f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.776000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,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:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980600px;}
.ls55{letter-spacing:-6.375000px;}
.ls2c{letter-spacing:-4.266000px;}
.ls52{letter-spacing:-2.805000px;}
.ls43{letter-spacing:-2.754000px;}
.ls40{letter-spacing:-2.592000px;}
.ls54{letter-spacing:-2.550000px;}
.ls48{letter-spacing:-2.538000px;}
.ls3d{letter-spacing:-2.376000px;}
.ls2e{letter-spacing:-2.268000px;}
.ls47{letter-spacing:-2.232000px;}
.ls36{letter-spacing:-2.214000px;}
.ls3a{letter-spacing:-2.052000px;}
.ls25{letter-spacing:-1.728000px;}
.ls51{letter-spacing:-1.632000px;}
.ls4e{letter-spacing:-1.620000px;}
.lsd{letter-spacing:-1.428000px;}
.ls27{letter-spacing:-0.780000px;}
.ls49{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.600000px;}
.ls4a{letter-spacing:-0.540000px;}
.ls32{letter-spacing:-0.510000px;}
.ls28{letter-spacing:-0.420000px;}
.ls37{letter-spacing:-0.360000px;}
.ls4b{letter-spacing:-0.349800px;}
.ls2f{letter-spacing:-0.300000px;}
.ls50{letter-spacing:-0.279000px;}
.ls29{letter-spacing:-0.240000px;}
.ls53{letter-spacing:-0.204000px;}
.ls18{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.167400px;}
.ls1a{letter-spacing:-0.120000px;}
.ls38{letter-spacing:-0.111600px;}
.ls2d{letter-spacing:-0.060000px;}
.ls46{letter-spacing:-0.055800px;}
.lsa{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000300px;}
.ls39{letter-spacing:0.024960px;}
.ls44{letter-spacing:0.027900px;}
.ls41{letter-spacing:0.030000px;}
.ls2{letter-spacing:0.051000px;}
.ls17{letter-spacing:0.055800px;}
.ls2a{letter-spacing:0.060000px;}
.ls35{letter-spacing:0.083700px;}
.ls3b{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.102000px;}
.ls34{letter-spacing:0.111600px;}
.ls10{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.167400px;}
.ls4{letter-spacing:0.180000px;}
.ls3e{letter-spacing:0.209880px;}
.ls6{letter-spacing:0.223200px;}
.ls21{letter-spacing:0.240000px;}
.ls0{letter-spacing:0.255000px;}
.ls31{letter-spacing:0.279000px;}
.ls13{letter-spacing:0.300000px;}
.ls5{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.420000px;}
.ls2b{letter-spacing:0.446400px;}
.ls24{letter-spacing:0.480000px;}
.ls23{letter-spacing:0.540000px;}
.ls30{letter-spacing:0.558000px;}
.ls19{letter-spacing:0.600000px;}
.ls15{letter-spacing:0.660000px;}
.ls14{letter-spacing:0.720000px;}
.ls1f{letter-spacing:0.750000px;}
.ls1c{letter-spacing:0.780000px;}
.ls4c{letter-spacing:0.840000px;}
.ls4d{letter-spacing:0.918000px;}
.lsc{letter-spacing:0.969000px;}
.ls16{letter-spacing:1.020000px;}
.ls8{letter-spacing:1.080000px;}
.ls1e{letter-spacing:1.110000px;}
.lse{letter-spacing:1.200000px;}
.ls22{letter-spacing:1.242000px;}
.ls20{letter-spacing:1.260000px;}
.ls1d{letter-spacing:1.320000px;}
.ls9{letter-spacing:1.350000px;}
.ls42{letter-spacing:1.500000px;}
.ls3c{letter-spacing:1.506600px;}
.lsb{letter-spacing:1.530000px;}
.ls45{letter-spacing:1.729800px;}
.ls3{letter-spacing:2.295000px;}
.ls4f{letter-spacing:3.315000px;}
.ls1b{letter-spacing:3.654000px;}
.ls3f{letter-spacing:6.660000px;}
.ls33{letter-spacing:73.879200px;}
.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;}
}
.wsda{word-spacing:-14.148000px;}
.wsc2{word-spacing:-13.716000px;}
.wsd0{word-spacing:-13.515000px;}
.ws46{word-spacing:-13.200000px;}
.wsc5{word-spacing:-12.900000px;}
.ws1f{word-spacing:-12.600000px;}
.ws1{word-spacing:-12.495000px;}
.wsc4{word-spacing:-12.360000px;}
.ws67{word-spacing:-12.300000px;}
.wsb2{word-spacing:-12.052800px;}
.ws31{word-spacing:-12.000000px;}
.ws8b{word-spacing:-11.997000px;}
.wsb1{word-spacing:-11.941200px;}
.wsb0{word-spacing:-11.820000px;}
.ws9f{word-spacing:-11.700000px;}
.ws92{word-spacing:-11.640000px;}
.wsa5{word-spacing:-11.580000px;}
.wsa1{word-spacing:-11.520000px;}
.wsc6{word-spacing:-11.460000px;}
.ws8a{word-spacing:-11.340000px;}
.ws56{word-spacing:-11.280000px;}
.ws57{word-spacing:-11.220000px;}
.ws0{word-spacing:-11.169000px;}
.ws75{word-spacing:-11.160000px;}
.wsa0{word-spacing:-11.100000px;}
.ws45{word-spacing:-11.070000px;}
.wsc3{word-spacing:-11.040000px;}
.wsd1{word-spacing:-10.965000px;}
.ws68{word-spacing:-10.860000px;}
.ws89{word-spacing:-10.746000px;}
.ws2{word-spacing:-10.710000px;}
.wsaf{word-spacing:-10.584000px;}
.ws69{word-spacing:-10.557000px;}
.ws66{word-spacing:-10.530000px;}
.ws9e{word-spacing:-10.206000px;}
.wsd2{word-spacing:-10.200000px;}
.ws3{word-spacing:-8.901000px;}
.wsd4{word-spacing:-8.415000px;}
.wsd3{word-spacing:-8.160000px;}
.ws93{word-spacing:-7.555680px;}
.ws47{word-spacing:-7.345800px;}
.wsbf{word-spacing:-6.996000px;}
.wsdb{word-spacing:-4.590000px;}
.wscc{word-spacing:-2.220000px;}
.wsa9{word-spacing:-2.100000px;}
.ws2a{word-spacing:-2.040000px;}
.ws98{word-spacing:-1.980000px;}
.wsd6{word-spacing:-1.953000px;}
.ws27{word-spacing:-1.920000px;}
.ws29{word-spacing:-1.860000px;}
.wsd7{word-spacing:-1.841400px;}
.wsab{word-spacing:-1.800000px;}
.ws19{word-spacing:-1.785600px;}
.ws54{word-spacing:-1.740000px;}
.ws2c{word-spacing:-1.680000px;}
.ws9d{word-spacing:-1.674000px;}
.wsaa{word-spacing:-1.560000px;}
.ws8{word-spacing:-1.530000px;}
.ws2e{word-spacing:-1.500000px;}
.ws21{word-spacing:-1.380000px;}
.ws6{word-spacing:-1.350000px;}
.ws50{word-spacing:-1.320000px;}
.ws32{word-spacing:-1.242000px;}
.ws13{word-spacing:-1.200000px;}
.ws18{word-spacing:-1.140000px;}
.ws5{word-spacing:-1.080000px;}
.wsa{word-spacing:-1.071000px;}
.ws3a{word-spacing:-1.020000px;}
.ws43{word-spacing:-0.840000px;}
.ws1c{word-spacing:-0.781200px;}
.ws40{word-spacing:-0.780000px;}
.ws71{word-spacing:-0.725400px;}
.ws39{word-spacing:-0.720000px;}
.wsd8{word-spacing:-0.714000px;}
.ws8f{word-spacing:-0.660000px;}
.ws28{word-spacing:-0.600000px;}
.wsba{word-spacing:-0.502200px;}
.ws79{word-spacing:-0.480000px;}
.ws80{word-spacing:-0.446400px;}
.ws5f{word-spacing:-0.420000px;}
.ws81{word-spacing:-0.390600px;}
.ws5e{word-spacing:-0.360000px;}
.wsad{word-spacing:-0.300000px;}
.ws16{word-spacing:-0.240000px;}
.ws1e{word-spacing:-0.223200px;}
.wsb{word-spacing:-0.204000px;}
.ws25{word-spacing:-0.180000px;}
.ws4a{word-spacing:-0.120000px;}
.ws1d{word-spacing:-0.111600px;}
.ws6d{word-spacing:-0.060000px;}
.wsbd{word-spacing:-0.055800px;}
.ws7{word-spacing:0.000000px;}
.wsbc{word-spacing:0.055800px;}
.ws62{word-spacing:0.060000px;}
.ws44{word-spacing:0.120000px;}
.wsd9{word-spacing:0.204000px;}
.ws4b{word-spacing:0.240000px;}
.ws6e{word-spacing:0.300000px;}
.ws2f{word-spacing:0.334800px;}
.ws74{word-spacing:0.357000px;}
.wsb4{word-spacing:0.360000px;}
.ws7e{word-spacing:0.390600px;}
.ws7c{word-spacing:0.420000px;}
.ws82{word-spacing:0.446400px;}
.ws41{word-spacing:0.480000px;}
.wsc9{word-spacing:0.540000px;}
.ws91{word-spacing:0.558000px;}
.wsc8{word-spacing:0.600000px;}
.ws60{word-spacing:0.660000px;}
.ws9c{word-spacing:0.669600px;}
.ws15{word-spacing:0.720000px;}
.wsc1{word-spacing:0.725400px;}
.ws26{word-spacing:0.780000px;}
.ws30{word-spacing:0.781200px;}
.wsae{word-spacing:0.840000px;}
.ws11{word-spacing:0.867000px;}
.ws5b{word-spacing:0.900000px;}
.ws4f{word-spacing:0.960000px;}
.ws10{word-spacing:0.969000px;}
.ws4e{word-spacing:1.020000px;}
.ws77{word-spacing:1.080000px;}
.ws37{word-spacing:1.140000px;}
.wsbb{word-spacing:1.171800px;}
.wscf{word-spacing:1.200000px;}
.ws7d{word-spacing:1.227600px;}
.wsb9{word-spacing:1.260000px;}
.ws7f{word-spacing:1.283400px;}
.wsb5{word-spacing:1.320000px;}
.ws9b{word-spacing:1.339200px;}
.ws12{word-spacing:1.428000px;}
.ws3c{word-spacing:1.440000px;}
.ws97{word-spacing:1.560000px;}
.ws73{word-spacing:1.562400px;}
.wsf{word-spacing:1.581000px;}
.ws9a{word-spacing:1.618200px;}
.ws51{word-spacing:1.620000px;}
.wse{word-spacing:1.632000px;}
.ws86{word-spacing:1.674000px;}
.ws6f{word-spacing:1.680000px;}
.ws22{word-spacing:1.740000px;}
.wsd{word-spacing:1.785000px;}
.ws1b{word-spacing:1.785600px;}
.ws8e{word-spacing:1.800000px;}
.ws1a{word-spacing:1.841400px;}
.ws14{word-spacing:1.860000px;}
.ws9{word-spacing:1.887000px;}
.ws72{word-spacing:1.897200px;}
.ws23{word-spacing:1.920000px;}
.ws4d{word-spacing:1.980000px;}
.wsc{word-spacing:1.989000px;}
.wsac{word-spacing:2.040000px;}
.ws5a{word-spacing:2.100000px;}
.ws78{word-spacing:2.160000px;}
.wsa3{word-spacing:2.220000px;}
.ws52{word-spacing:2.280000px;}
.wsa8{word-spacing:2.340000px;}
.ws5d{word-spacing:2.400000px;}
.ws7b{word-spacing:2.460000px;}
.ws96{word-spacing:2.520000px;}
.ws17{word-spacing:2.580000px;}
.ws61{word-spacing:2.640000px;}
.ws87{word-spacing:2.678400px;}
.ws2d{word-spacing:2.700000px;}
.ws7a{word-spacing:2.760000px;}
.wsa7{word-spacing:2.880000px;}
.wsb6{word-spacing:2.940000px;}
.ws59{word-spacing:3.000000px;}
.ws3e{word-spacing:3.120000px;}
.ws34{word-spacing:3.180000px;}
.ws24{word-spacing:3.300000px;}
.ws65{word-spacing:3.459600px;}
.ws2b{word-spacing:3.480000px;}
.ws83{word-spacing:3.515400px;}
.wsb7{word-spacing:3.540000px;}
.wsa4{word-spacing:3.660000px;}
.wscb{word-spacing:3.720000px;}
.ws3b{word-spacing:3.780000px;}
.wsce{word-spacing:3.840000px;}
.ws55{word-spacing:3.960000px;}
.ws38{word-spacing:4.020000px;}
.ws4c{word-spacing:4.140000px;}
.ws70{word-spacing:4.240800px;}
.ws5c{word-spacing:4.260000px;}
.ws90{word-spacing:4.500000px;}
.ws99{word-spacing:4.680000px;}
.ws42{word-spacing:4.740000px;}
.wscd{word-spacing:4.860000px;}
.ws35{word-spacing:4.920000px;}
.ws64{word-spacing:5.040000px;}
.wsb8{word-spacing:5.100000px;}
.ws95{word-spacing:5.160000px;}
.ws3f{word-spacing:5.280000px;}
.ws3d{word-spacing:5.640000px;}
.ws49{word-spacing:5.940000px;}
.ws36{word-spacing:6.060000px;}
.ws53{word-spacing:6.420000px;}
.wsca{word-spacing:6.960000px;}
.ws88{word-spacing:7.309800px;}
.ws63{word-spacing:7.800000px;}
.ws6c{word-spacing:12.060000px;}
.ws8d{word-spacing:13.800000px;}
.ws6b{word-spacing:19.800000px;}
.ws85{word-spacing:73.042200px;}
.ws84{word-spacing:73.879200px;}
.wsbe{word-spacing:75.274200px;}
.ws4{word-spacing:800.766000px;}
.wsdc{word-spacing:824.094000px;}
.wsc7{word-spacing:824.526000px;}
.ws48{word-spacing:827.118000px;}
.ws8c{word-spacing:827.496000px;}
.wsb3{word-spacing:827.604000px;}
.ws6a{word-spacing:827.658000px;}
.wsa2{word-spacing:827.982000px;}
.ws20{word-spacing:856.710000px;}
.wsd5{word-spacing:1454.166000px;}
.ws76{word-spacing:1455.354000px;}
.ws94{word-spacing:1455.678000px;}
.wsc0{word-spacing:1456.002000px;}
.wsa6{word-spacing:1456.434000px;}
.ws58{word-spacing:1459.512000px;}
.ws33{word-spacing:1482.246000px;}
._a{margin-left:-856.585800px;}
._24{margin-left:-828.549900px;}
._14{margin-left:-827.531700px;}
._10{margin-left:-826.497000px;}
._2d{margin-left:-824.245200px;}
._1{margin-left:-800.334000px;}
._2b{margin-left:-73.265400px;}
._19{margin-left:-69.805800px;}
._12{margin-left:-16.891500px;}
._21{margin-left:-7.489800px;}
._8{margin-left:-6.122400px;}
._6{margin-left:-4.289100px;}
._4{margin-left:-3.137400px;}
._3{margin-left:-1.749600px;}
._2{width:1.150200px;}
._0{width:2.305800px;}
._5{width:3.345900px;}
._7{width:4.409100px;}
._c{width:6.240000px;}
._b{width:8.280000px;}
._1f{width:9.780000px;}
._16{width:11.520000px;}
._15{width:14.280000px;}
._1e{width:15.480000px;}
._29{width:23.580000px;}
._2a{width:25.800000px;}
._11{width:30.900000px;}
._e{width:32.700000px;}
._2c{width:34.819200px;}
._f{width:36.660000px;}
._23{width:41.067600px;}
._13{width:47.262600px;}
._20{width:48.546000px;}
._d{width:49.940400px;}
._18{width:51.837600px;}
._1b{width:52.953600px;}
._9{width:59.370600px;}
._1d{width:65.732400px;}
._17{width:71.200800px;}
._1c{width:72.428400px;}
._1a{width:74.102400px;}
._2e{width:98.640000px;}
._26{width:101.100000px;}
._27{width:104.460000px;}
._22{width:106.680000px;}
._25{width:108.480000px;}
._28{width:123.720000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:34.980000px;}
.fs6{font-size:41.400000px;}
.fs8{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:55.800000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.yb6{bottom:-1045.169100px;}
.yc0{bottom:-1045.157100px;}
.yc7{bottom:-1043.705100px;}
.yb7{bottom:-1042.349100px;}
.ycd{bottom:-1040.897100px;}
.ybe{bottom:-1040.441100px;}
.yc5{bottom:-1034.261100px;}
.ybc{bottom:-1033.553100px;}
.yc1{bottom:-1032.977100px;}
.yc4{bottom:-1031.597100px;}
.ybf{bottom:-1031.357100px;}
.ycb{bottom:-1030.997100px;}
.yc3{bottom:-1030.037100px;}
.yb9{bottom:-1029.881100px;}
.yba{bottom:-1029.809100px;}
.ycc{bottom:-1028.849100px;}
.yc2{bottom:-1027.913100px;}
.yc9{bottom:-1026.869100px;}
.ybb{bottom:-1026.065100px;}
.yc8{bottom:-1025.513100px;}
.yc6{bottom:-1021.661100px;}
.yb5{bottom:-1020.125100px;}
.yca{bottom:-1017.137100px;}
.yb8{bottom:-1015.649100px;}
.ybd{bottom:-1013.909100px;}
.yaf{bottom:-975.598200px;}
.yb0{bottom:-944.302200px;}
.yb1{bottom:-912.874200px;}
.yb2{bottom:-881.590200px;}
.yb3{bottom:-850.162200px;}
.yb4{bottom:-818.878200px;}
.ya6{bottom:-753.220050px;}
.ya5{bottom:-752.680050px;}
.yab{bottom:-751.036050px;}
.yac{bottom:-749.788050px;}
.yad{bottom:-745.660050px;}
.ya2{bottom:-743.848050px;}
.yae{bottom:-743.080050px;}
.ya8{bottom:-742.348050px;}
.ya3{bottom:-741.424050px;}
.yaa{bottom:-740.956050px;}
.ya0{bottom:-740.788050px;}
.ya7{bottom:-738.328050px;}
.ya9{bottom:-737.248050px;}
.ya4{bottom:-736.552050px;}
.ya1{bottom:-730.492050px;}
.y97{bottom:-680.016150px;}
.y148{bottom:-656.928600px;}
.y152{bottom:-656.916600px;}
.y159{bottom:-655.464600px;}
.y98{bottom:-655.092150px;}
.y149{bottom:-654.108600px;}
.y15f{bottom:-652.656600px;}
.y150{bottom:-652.200600px;}
.y157{bottom:-646.020600px;}
.y14e{bottom:-645.312600px;}
.y153{bottom:-644.736600px;}
.y156{bottom:-643.356600px;}
.y151{bottom:-643.116600px;}
.y15d{bottom:-642.756600px;}
.y155{bottom:-641.796600px;}
.y14b{bottom:-641.640600px;}
.y14c{bottom:-641.568600px;}
.y15e{bottom:-640.608600px;}
.y154{bottom:-639.672600px;}
.y15b{bottom:-638.628600px;}
.y14d{bottom:-637.824600px;}
.y15a{bottom:-637.272600px;}
.y158{bottom:-633.420600px;}
.y147{bottom:-631.884600px;}
.y99{bottom:-630.336150px;}
.y15c{bottom:-628.896600px;}
.y14a{bottom:-627.408600px;}
.y14f{bottom:-625.668600px;}
.y9a{bottom:-605.424150px;}
.y141{bottom:-587.357700px;}
.y9b{bottom:-580.680150px;}
.y142{bottom:-556.061700px;}
.y9c{bottom:-555.756150px;}
.y9d{bottom:-531.000150px;}
.y143{bottom:-524.633700px;}
.y9e{bottom:-506.256150px;}
.y144{bottom:-493.349700px;}
.y9f{bottom:-481.344150px;}
.y145{bottom:-461.921700px;}
.y146{bottom:-430.637700px;}
.y88{bottom:-376.212450px;}
.y138{bottom:-364.979550px;}
.y137{bottom:-364.439550px;}
.y91{bottom:-364.368450px;}
.y85{bottom:-363.996450px;}
.y13d{bottom:-362.795550px;}
.y13e{bottom:-361.547550px;}
.y13f{bottom:-357.419550px;}
.y134{bottom:-355.607550px;}
.y140{bottom:-354.839550px;}
.y13a{bottom:-354.107550px;}
.y135{bottom:-353.183550px;}
.y13c{bottom:-352.715550px;}
.y132{bottom:-352.547550px;}
.y139{bottom:-350.087550px;}
.y8d{bottom:-350.040450px;}
.y13b{bottom:-349.007550px;}
.y136{bottom:-348.311550px;}
.y84{bottom:-343.692450px;}
.y133{bottom:-342.251550px;}
.y89{bottom:-341.148450px;}
.y86{bottom:-337.704450px;}
.y8b{bottom:-331.968450px;}
.y87{bottom:-328.704450px;}
.y90{bottom:-324.828450px;}
.y93{bottom:-316.068450px;}
.y94{bottom:-309.504450px;}
.y8a{bottom:-308.208450px;}
.y95{bottom:-305.724450px;}
.y8e{bottom:-305.520450px;}
.y8c{bottom:-302.748450px;}
.y92{bottom:-300.516450px;}
.y8f{bottom:-299.592450px;}
.y96{bottom:-296.064450px;}
.y129{bottom:-291.775650px;}
.y1c0{bottom:-282.754950px;}
.y1ca{bottom:-282.742950px;}
.y1d1{bottom:-281.290950px;}
.y1c1{bottom:-279.934950px;}
.y1d7{bottom:-278.482950px;}
.y1c8{bottom:-278.026950px;}
.y1cf{bottom:-271.846950px;}
.y1c6{bottom:-271.138950px;}
.y1cb{bottom:-270.562950px;}
.y1ce{bottom:-269.182950px;}
.y1c9{bottom:-268.942950px;}
.y1d5{bottom:-268.582950px;}
.y1cd{bottom:-267.622950px;}
.y1c3{bottom:-267.466950px;}
.y1c4{bottom:-267.394950px;}
.y12a{bottom:-266.851650px;}
.y1d6{bottom:-266.434950px;}
.y1cc{bottom:-265.498950px;}
.y1d3{bottom:-264.454950px;}
.y1c5{bottom:-263.650950px;}
.y1d2{bottom:-263.098950px;}
.y1d0{bottom:-259.246950px;}
.y1bf{bottom:-257.710950px;}
.y1d4{bottom:-254.722950px;}
.y1c2{bottom:-253.234950px;}
.y1c7{bottom:-251.494950px;}
.y12b{bottom:-242.095650px;}
.y79{bottom:-240.798900px;}
.y7a{bottom:-223.230900px;}
.y12c{bottom:-217.183650px;}
.y1b9{bottom:-213.184050px;}
.y7b{bottom:-205.506900px;}
.y12d{bottom:-192.439650px;}
.y7c{bottom:-187.782900px;}
.y1ba{bottom:-181.888050px;}
.y7d{bottom:-170.214900px;}
.y12e{bottom:-167.515650px;}
.y7e{bottom:-152.490900px;}
.y1bb{bottom:-150.460050px;}
.y12f{bottom:-142.759650px;}
.y7f{bottom:-134.922900px;}
.y1bc{bottom:-119.176050px;}
.y130{bottom:-118.015650px;}
.y80{bottom:-117.198900px;}
.y81{bottom:-99.474900px;}
.y131{bottom:-93.103650px;}
.y1bd{bottom:-87.748050px;}
.y82{bottom:-81.906900px;}
.y83{bottom:-64.182900px;}
.y1be{bottom:-56.464050px;}
.y231{bottom:-0.000600px;}
.y0{bottom:0.000000px;}
.y23b{bottom:0.011400px;}
.y1{bottom:40.394100px;}
.y1da{bottom:90.567000px;}
.y167{bottom:90.567150px;}
.y45{bottom:90.571350px;}
.y24e{bottom:90.571500px;}
.yf1{bottom:90.575700px;}
.y5f{bottom:90.580050px;}
.y25{bottom:90.588900px;}
.yeb{bottom:90.601950px;}
.y169{bottom:91.318050px;}
.y1a2{bottom:107.322000px;}
.y44{bottom:107.967000px;}
.y24d{bottom:107.967150px;}
.yf0{bottom:107.971350px;}
.y166{bottom:107.971650px;}
.y5e{bottom:107.975700px;}
.y24{bottom:107.984550px;}
.yea{bottom:107.997600px;}
.y58{bottom:109.768050px;}
.yef{bottom:125.367000px;}
.y165{bottom:125.367300px;}
.y5d{bottom:125.371350px;}
.y43{bottom:125.371500px;}
.y24c{bottom:125.375850px;}
.y23{bottom:125.380200px;}
.ye9{bottom:125.393250px;}
.y1d8{bottom:128.218050px;}
.y1a3{bottom:132.078000px;}
.y5c{bottom:142.767000px;}
.y42{bottom:142.767150px;}
.y164{bottom:142.767450px;}
.y24b{bottom:142.771500px;}
.yee{bottom:142.771650px;}
.y22{bottom:142.775850px;}
.ye8{bottom:142.788900px;}
.y57{bottom:146.668050px;}
.y1d9{bottom:147.718050px;}
.y1a4{bottom:156.990000px;}
.y24a{bottom:160.167150px;}
.yed{bottom:160.167300px;}
.y163{bottom:160.167450px;}
.y5b{bottom:160.171350px;}
.y21{bottom:160.171500px;}
.ye7{bottom:160.184550px;}
.y56{bottom:165.118050px;}
.y1db{bottom:172.453500px;}
.y242{bottom:173.916900px;}
.y232{bottom:175.272900px;}
.y248{bottom:176.724900px;}
.y239{bottom:177.180900px;}
.y5a{bottom:177.567000px;}
.y20{bottom:177.567150px;}
.y162{bottom:177.567450px;}
.ye6{bottom:177.580200px;}
.y1a5{bottom:181.734000px;}
.y240{bottom:183.360900px;}
.y41{bottom:183.568050px;}
.y237{bottom:184.068900px;}
.y23c{bottom:184.644900px;}
.y23f{bottom:186.024900px;}
.y23a{bottom:186.264900px;}
.y246{bottom:186.624900px;}
.y23e{bottom:187.584900px;}
.y234{bottom:187.740900px;}
.y235{bottom:187.812900px;}
.y247{bottom:188.772900px;}
.y23d{bottom:189.708900px;}
.y244{bottom:190.752900px;}
.y236{bottom:191.556900px;}
.y243{bottom:192.108900px;}
.y1f{bottom:194.967000px;}
.y161{bottom:194.971950px;}
.ye5{bottom:194.975850px;}
.y241{bottom:195.960900px;}
.y230{bottom:197.496900px;}
.y245{bottom:200.484900px;}
.y233{bottom:201.972900px;}
.y40{bottom:202.018050px;}
.y238{bottom:203.712900px;}
.y1a6{bottom:206.658000px;}
.y290{bottom:209.070450px;}
.y26f{bottom:209.095950px;}
.y160{bottom:212.367600px;}
.ye4{bottom:212.371500px;}
.y3f{bottom:220.468050px;}
.yec{bottom:221.518050px;}
.y28f{bottom:226.321200px;}
.y26e{bottom:226.346700px;}
.ye3{bottom:229.767150px;}
.y1a7{bottom:231.414000px;}
.yf2{bottom:237.909000px;}
.y68{bottom:238.735350px;}
.y1e{bottom:238.918050px;}
.y22a{bottom:242.023800px;}
.y28e{bottom:243.571950px;}
.y26d{bottom:243.597450px;}
.ye2{bottom:247.175850px;}
.y11a{bottom:249.937050px;}
.y1a8{bottom:256.158000px;}
.y1d{bottom:257.368050px;}
.y28d{bottom:260.822700px;}
.y26c{bottom:260.848200px;}
.y123{bottom:261.781050px;}
.y117{bottom:262.153050px;}
.ye1{bottom:264.571500px;}
.y22b{bottom:273.319800px;}
.y1c{bottom:275.818050px;}
.y11f{bottom:276.109050px;}
.y28c{bottom:278.073450px;}
.y26b{bottom:278.098950px;}
.y1a9{bottom:281.070000px;}
.ye0{bottom:281.967150px;}
.y116{bottom:282.457050px;}
.y11b{bottom:285.001050px;}
.y118{bottom:288.445050px;}
.y221{bottom:291.948450px;}
.y220{bottom:292.488450px;}
.y226{bottom:294.132450px;}
.y11d{bottom:294.181050px;}
.y1b{bottom:294.268050px;}
.y28b{bottom:295.324200px;}
.y26a{bottom:295.349700px;}
.y227{bottom:295.380450px;}
.y119{bottom:297.445050px;}
.ydf{bottom:299.402100px;}
.y228{bottom:299.508450px;}
.y21d{bottom:301.320450px;}
.y122{bottom:301.321050px;}
.y229{bottom:302.088450px;}
.y223{bottom:302.820450px;}
.y21e{bottom:303.744450px;}
.y225{bottom:304.212450px;}
.y21b{bottom:304.380450px;}
.y22c{bottom:304.747800px;}
.y222{bottom:306.840450px;}
.y224{bottom:307.920450px;}
.y21f{bottom:308.616450px;}
.y125{bottom:310.081050px;}
.y28a{bottom:312.574950px;}
.y269{bottom:312.600450px;}
.y1a{bottom:312.718050px;}
.y21c{bottom:314.676450px;}
.y126{bottom:316.645050px;}
.yde{bottom:316.797750px;}
.y11c{bottom:317.941050px;}
.y127{bottom:320.425050px;}
.y120{bottom:320.629050px;}
.y11e{bottom:323.401050px;}
.y124{bottom:325.633050px;}
.y121{bottom:326.557050px;}
.y289{bottom:329.825700px;}
.y268{bottom:329.851200px;}
.y128{bottom:330.085050px;}
.y55{bottom:331.168050px;}
.ydd{bottom:334.193400px;}
.y22d{bottom:336.031800px;}
.y288{bottom:347.076450px;}
.y267{bottom:347.101950px;}
.y19{bottom:349.618050px;}
.ydc{bottom:351.589050px;}
.y287{bottom:364.327200px;}
.y266{bottom:364.352700px;}
.y212{bottom:365.152350px;}
.y22e{bottom:367.459800px;}
.y54{bottom:368.068050px;}
.ydb{bottom:368.984700px;}
.y286{bottom:381.577950px;}
.y265{bottom:381.603450px;}
.y10b{bottom:385.350750px;}
.y192{bottom:386.201550px;}
.yda{bottom:386.380350px;}
.y3e{bottom:386.518050px;}
.y213{bottom:390.076350px;}
.y102{bottom:397.210200px;}
.y19b{bottom:398.045550px;}
.y18f{bottom:398.417550px;}
.y22f{bottom:398.743800px;}
.y285{bottom:398.828700px;}
.y264{bottom:398.854200px;}
.y10c{bottom:402.918750px;}
.yd9{bottom:403.776000px;}
.y53{bottom:404.968050px;}
.y109{bottom:405.010200px;}
.y107{bottom:407.518200px;}
.y103{bottom:407.998200px;}
.y101{bottom:409.966200px;}
.y10a{bottom:410.122200px;}
.y104{bottom:410.434200px;}
.y106{bottom:410.530200px;}
.y197{bottom:412.373550px;}
.y18{bottom:414.101550px;}
.y214{bottom:414.832350px;}
.yff{bottom:415.018200px;}
.y108{bottom:415.594200px;}
.y284{bottom:416.079450px;}
.y263{bottom:416.104950px;}
.y105{bottom:418.102200px;}
.y18e{bottom:418.721550px;}
.y10d{bottom:420.642750px;}
.yfd{bottom:420.826200px;}
.yfe{bottom:421.162200px;}
.yd8{bottom:421.171650px;}
.y193{bottom:421.265550px;}
.y52{bottom:423.418050px;}
.y3d{bottom:423.418200px;}
.y100{bottom:424.618200px;}
.y190{bottom:424.709550px;}
.yfb{bottom:429.418200px;}
.yfc{bottom:429.778200px;}
.y195{bottom:430.445550px;}
.y17{bottom:431.352300px;}
.y283{bottom:433.330200px;}
.y262{bottom:433.355700px;}
.y191{bottom:433.709550px;}
.y19a{bottom:437.585550px;}
.y10e{bottom:438.366750px;}
.yd7{bottom:438.567300px;}
.y215{bottom:439.744350px;}
.y51{bottom:441.868050px;}
.y3c{bottom:441.868200px;}
.y19d{bottom:446.345550px;}
.yf3{bottom:448.812000px;}
.y282{bottom:450.580950px;}
.y261{bottom:450.606450px;}
.y19e{bottom:452.909550px;}
.y194{bottom:454.205550px;}
.y10f{bottom:455.934750px;}
.yd6{bottom:455.967300px;}
.y19f{bottom:456.689550px;}
.y198{bottom:456.893550px;}
.y196{bottom:459.665550px;}
.y50{bottom:460.318050px;}
.y3b{bottom:460.318200px;}
.y19c{bottom:461.897550px;}
.y199{bottom:462.821550px;}
.y216{bottom:464.488350px;}
.y16{bottom:465.853800px;}
.y1a0{bottom:466.349550px;}
.y281{bottom:467.831700px;}
.y260{bottom:467.857200px;}
.yd5{bottom:473.371650px;}
.y110{bottom:473.658750px;}
.yf4{bottom:474.180000px;}
.y3a{bottom:478.768050px;}
.y15{bottom:483.104550px;}
.y280{bottom:485.082450px;}
.y25f{bottom:485.107950px;}
.y217{bottom:489.412350px;}
.yd4{bottom:490.767300px;}
.y111{bottom:491.226750px;}
.y39{bottom:497.218050px;}
.yf5{bottom:499.692000px;}
.y27f{bottom:502.333200px;}
.y25e{bottom:502.358700px;}
.yd3{bottom:508.167300px;}
.y112{bottom:508.950750px;}
.y218{bottom:514.168350px;}
.y38{bottom:515.668050px;}
.y14{bottom:517.606050px;}
.y27e{bottom:519.583950px;}
.y25d{bottom:519.609450px;}
.y183{bottom:521.615250px;}
.yf6{bottom:525.216000px;}
.yd2{bottom:525.576000px;}
.y2b5{bottom:525.931800px;}
.y113{bottom:526.674750px;}
.y37{bottom:534.118050px;}
.y13{bottom:534.856800px;}
.y27d{bottom:536.834700px;}
.y25c{bottom:536.860200px;}
.y219{bottom:538.912350px;}
.y184{bottom:539.183250px;}
.yd1{bottom:542.971650px;}
.y2b4{bottom:543.182550px;}
.y114{bottom:544.242750px;}
.yf7{bottom:550.584000px;}
.y36{bottom:552.568050px;}
.y27c{bottom:554.085450px;}
.y25b{bottom:554.110950px;}
.y185{bottom:556.907250px;}
.yd0{bottom:560.367300px;}
.y2b3{bottom:560.433300px;}
.y115{bottom:561.966750px;}
.y21a{bottom:563.824350px;}
.y12{bottom:569.358300px;}
.y35{bottom:571.018050px;}
.y27b{bottom:571.336200px;}
.y25a{bottom:571.361700px;}
.y186{bottom:574.631250px;}
.yf8{bottom:576.096000px;}
.y2b2{bottom:577.684050px;}
.ycf{bottom:577.767300px;}
.y11{bottom:586.609050px;}
.y27a{bottom:588.586950px;}
.y259{bottom:588.612450px;}
.y34{bottom:589.468050px;}
.y187{bottom:592.199250px;}
.yf9{bottom:601.464000px;}
.y10{bottom:603.859800px;}
.y279{bottom:605.837700px;}
.y258{bottom:605.863200px;}
.y33{bottom:607.918050px;}
.y168{bottom:608.968200px;}
.y188{bottom:609.923250px;}
.yf{bottom:621.110550px;}
.y16a{bottom:623.007000px;}
.y278{bottom:623.088450px;}
.y257{bottom:623.113950px;}
.y32{bottom:626.368050px;}
.yfa{bottom:626.976000px;}
.y189{bottom:627.491250px;}
.y2a1{bottom:629.449050px;}
.y1b0{bottom:632.201100px;}
.y1af{bottom:632.741100px;}
.y1b5{bottom:634.385100px;}
.y1b6{bottom:635.633100px;}
.ye{bottom:638.361300px;}
.y1b7{bottom:639.761100px;}
.y277{bottom:640.339200px;}
.y256{bottom:640.364700px;}
.y1ac{bottom:641.573100px;}
.y1b8{bottom:642.341100px;}
.y1b2{bottom:643.073100px;}
.y1ad{bottom:643.997100px;}
.y1b4{bottom:644.465100px;}
.y1aa{bottom:644.633100px;}
.y31{bottom:644.818050px;}
.y4f{bottom:644.818200px;}
.y18a{bottom:645.215250px;}
.y2b1{bottom:646.687050px;}
.y2a0{bottom:646.699800px;}
.y1b1{bottom:647.093100px;}
.y1b3{bottom:648.173100px;}
.y1ae{bottom:648.869100px;}
.yce{bottom:652.161900px;}
.y1ab{bottom:654.929100px;}
.yd{bottom:655.612050px;}
.y276{bottom:657.589950px;}
.y255{bottom:657.615450px;}
.y18b{bottom:662.939250px;}
.y30{bottom:663.268050px;}
.y4e{bottom:663.268200px;}
.y2b0{bottom:663.937800px;}
.y29f{bottom:663.950550px;}
.y67{bottom:666.979500px;}
.y203{bottom:668.955900px;}
.yc{bottom:672.862800px;}
.y275{bottom:674.840700px;}
.y254{bottom:674.866200px;}
.y70{bottom:675.949200px;}
.y18c{bottom:680.507250px;}
.y20c{bottom:680.799900px;}
.y200{bottom:681.171900px;}
.y2af{bottom:681.188550px;}
.y29e{bottom:681.201300px;}
.y2f{bottom:681.718050px;}
.y4d{bottom:681.718200px;}
.y77{bottom:683.749200px;}
.y75{bottom:686.257200px;}
.y71{bottom:686.737200px;}
.y6f{bottom:688.705200px;}
.y78{bottom:688.861200px;}
.y72{bottom:689.173200px;}
.y74{bottom:689.269200px;}
.yb{bottom:690.113550px;}
.y274{bottom:692.091450px;}
.y253{bottom:692.116950px;}
.y6d{bottom:693.757200px;}
.y76{bottom:694.333200px;}
.y208{bottom:695.127900px;}
.y73{bottom:696.841200px;}
.y18d{bottom:698.231250px;}
.y2ae{bottom:698.439300px;}
.y29d{bottom:698.452050px;}
.y6b{bottom:699.565200px;}
.y6c{bottom:699.901200px;}
.y2e{bottom:700.168050px;}
.y4c{bottom:700.168200px;}
.y1ff{bottom:701.475900px;}
.y6e{bottom:703.357200px;}
.y204{bottom:704.019900px;}
.y1a1{bottom:705.405000px;}
.ya{bottom:707.364300px;}
.y201{bottom:707.463900px;}
.y69{bottom:708.157200px;}
.y6a{bottom:708.517200px;}
.y273{bottom:709.342200px;}
.y252{bottom:709.367700px;}
.y206{bottom:713.199900px;}
.y2ad{bottom:715.690050px;}
.y29c{bottom:715.702800px;}
.y202{bottom:716.463900px;}
.y2d{bottom:718.618050px;}
.y4b{bottom:718.618200px;}
.y20b{bottom:720.339900px;}
.y9{bottom:724.615050px;}
.y272{bottom:726.592950px;}
.y251{bottom:726.618450px;}
.y60{bottom:727.551000px;}
.y20e{bottom:729.099900px;}
.y2ac{bottom:732.940800px;}
.y29b{bottom:732.953550px;}
.y20f{bottom:735.663900px;}
.y205{bottom:736.959900px;}
.y59{bottom:737.068050px;}
.y4a{bottom:737.068200px;}
.y210{bottom:739.443900px;}
.y209{bottom:739.647900px;}
.y8{bottom:741.865800px;}
.y207{bottom:742.419900px;}
.y271{bottom:743.843700px;}
.y250{bottom:743.869200px;}
.y20d{bottom:744.651900px;}
.y20a{bottom:745.575900px;}
.y211{bottom:749.103900px;}
.y2ab{bottom:750.191550px;}
.y29a{bottom:750.204300px;}
.y61{bottom:752.919000px;}
.y2c{bottom:755.518050px;}
.y49{bottom:755.518200px;}
.y7{bottom:759.116550px;}
.y270{bottom:761.094450px;}
.y24f{bottom:761.119950px;}
.y2aa{bottom:767.442300px;}
.y299{bottom:767.455050px;}
.y17a{bottom:771.383850px;}
.y2b{bottom:773.968050px;}
.y48{bottom:773.968200px;}
.y6{bottom:776.367300px;}
.y62{bottom:778.431000px;}
.y181{bottom:779.183850px;}
.y17f{bottom:781.691850px;}
.y17b{bottom:782.171850px;}
.y179{bottom:784.139850px;}
.y182{bottom:784.295850px;}
.y17c{bottom:784.607850px;}
.y2a9{bottom:784.693050px;}
.y17e{bottom:784.703850px;}
.y298{bottom:784.705800px;}
.y177{bottom:789.191850px;}
.y180{bottom:789.767850px;}
.y17d{bottom:792.275850px;}
.y47{bottom:792.418050px;}
.y5{bottom:793.618050px;}
.y175{bottom:794.999850px;}
.y176{bottom:795.335850px;}
.y249{bottom:796.018050px;}
.y178{bottom:798.791850px;}
.y2a8{bottom:801.943800px;}
.y297{bottom:801.956550px;}
.y173{bottom:803.591850px;}
.y174{bottom:803.951850px;}
.y63{bottom:803.955000px;}
.y1f4{bottom:804.369600px;}
.y2a{bottom:810.868050px;}
.y2a7{bottom:819.194550px;}
.y296{bottom:819.207300px;}
.y1f5{bottom:821.937600px;}
.y16b{bottom:822.985650px;}
.y46{bottom:829.318050px;}
.y64{bottom:829.323000px;}
.y2a6{bottom:836.445300px;}
.y295{bottom:836.458050px;}
.y1f6{bottom:839.661600px;}
.y29{bottom:847.768050px;}
.y16c{bottom:848.353650px;}
.y2a5{bottom:853.696050px;}
.y4{bottom:853.703550px;}
.y294{bottom:853.708800px;}
.y65{bottom:854.835000px;}
.y1f7{bottom:857.385600px;}
.y28{bottom:866.218050px;}
.y2a4{bottom:870.946800px;}
.y293{bottom:870.959550px;}
.y16d{bottom:873.865650px;}
.y1f8{bottom:874.953600px;}
.y66{bottom:880.203000px;}
.y27{bottom:884.668050px;}
.y2a3{bottom:888.197550px;}
.y292{bottom:888.210300px;}
.y1f9{bottom:892.677600px;}
.y3{bottom:896.303700px;}
.y16e{bottom:899.389650px;}
.y26{bottom:903.118050px;}
.y2a2{bottom:905.448300px;}
.y291{bottom:905.461050px;}
.y1fa{bottom:910.245600px;}
.y16f{bottom:924.757650px;}
.y1fb{bottom:927.969600px;}
.y1fc{bottom:945.693600px;}
.y170{bottom:950.269650px;}
.y2{bottom:955.942350px;}
.y1fd{bottom:963.261600px;}
.y171{bottom:975.637650px;}
.y1fe{bottom:980.985600px;}
.y172{bottom:1001.149650px;}
.y1eb{bottom:1054.138200px;}
.y1f2{bottom:1061.938200px;}
.y1f0{bottom:1064.446200px;}
.y1ec{bottom:1064.926200px;}
.y1ea{bottom:1066.894200px;}
.y1f3{bottom:1067.050200px;}
.y1ed{bottom:1067.362200px;}
.y1ef{bottom:1067.458200px;}
.y1e8{bottom:1071.946200px;}
.y1f1{bottom:1072.522200px;}
.y1ee{bottom:1075.030200px;}
.y1e6{bottom:1077.754200px;}
.y1e7{bottom:1078.090200px;}
.y1e9{bottom:1081.546200px;}
.y1e4{bottom:1086.346200px;}
.y1e5{bottom:1086.706200px;}
.y1dc{bottom:1105.740000px;}
.y1dd{bottom:1131.108000px;}
.y1de{bottom:1156.620000px;}
.y1df{bottom:1182.144000px;}
.y1e0{bottom:1207.512000px;}
.y1e1{bottom:1233.024000px;}
.y1e2{bottom:1258.392000px;}
.y1e3{bottom:1283.904000px;}
.h14{height:45.543000px;}
.h6{height:45.900000px;}
.h15{height:46.614000px;}
.hd{height:46.896000px;}
.h5{height:48.195000px;}
.hf{height:49.521000px;}
.h2{height:50.868000px;}
.h11{height:53.880000px;}
.h8{height:54.000000px;}
.hb{height:54.000600px;}
.h9{height:54.181800px;}
.ha{height:54.840000px;}
.hc{height:56.520000px;}
.h7{height:56.700000px;}
.h4{height:67.824000px;}
.h3{height:90.720000px;}
.h13{height:246.613500px;}
.he{height:248.740500px;}
.h12{height:304.015500px;}
.h10{height:344.409000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w2{width:544.581000px;}
.w3{width:544.582500px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x32{left:7.500000px;}
.x1c{left:13.200300px;}
.x9{left:19.800300px;}
.x1b{left:26.400300px;}
.x33{left:44.993550px;}
.x8{left:54.118500px;}
.x45{left:58.783500px;}
.x1d{left:59.961300px;}
.x23{left:63.708300px;}
.x34{left:65.549550px;}
.x3{left:72.283500px;}
.x7{left:73.918800px;}
.x54{left:78.583350px;}
.x1{left:80.787450px;}
.x46{left:84.284100px;}
.x1e{left:85.713300px;}
.x71{left:87.222450px;}
.x4{left:93.538500px;}
.x24{left:95.892300px;}
.x69{left:100.679400px;}
.x2{left:102.041700px;}
.x35{left:106.661550px;}
.x47{left:109.952100px;}
.x1f{left:111.465300px;}
.xa{left:112.735050px;}
.x6{left:114.768300px;}
.x55{left:118.744350px;}
.x5{left:123.298500px;}
.x25{left:128.076300px;}
.x68{left:131.802450px;}
.x48{left:135.620100px;}
.x20{left:137.217300px;}
.xb{left:138.403050px;}
.x56{left:144.496350px;}
.x36{left:147.773550px;}
.x72{left:159.228000px;}
.x26{left:160.260300px;}
.x49{left:161.288100px;}
.x21{left:162.969300px;}
.xc{left:164.071050px;}
.x37{left:168.329550px;}
.x57{left:170.248350px;}
.x73{left:179.784000px;}
.x4a{left:186.956100px;}
.x22{left:188.721300px;}
.xd{left:189.739050px;}
.x27{left:192.444300px;}
.x58{left:196.000350px;}
.x74{left:200.340000px;}
.x6a{left:202.355400px;}
.x38{left:209.441550px;}
.x4b{left:212.624100px;}
.xe{left:215.407050px;}
.x59{left:221.752350px;}
.x28{left:224.628300px;}
.x39{left:229.997550px;}
.x6b{left:234.539400px;}
.x4c{left:238.292100px;}
.xf{left:241.075050px;}
.x5a{left:247.504350px;}
.x3a{left:250.553550px;}
.x29{left:256.812300px;}
.x75{left:262.008000px;}
.x4d{left:263.960100px;}
.x10{left:266.743050px;}
.x3b{left:271.109550px;}
.x5b{left:273.256350px;}
.x76{left:282.564000px;}
.x2a{left:288.996300px;}
.x11{left:292.411050px;}
.x5c{left:299.008350px;}
.x77{left:303.120000px;}
.x3c{left:312.221550px;}
.x4e{left:315.296100px;}
.x12{left:318.079050px;}
.x2b{left:321.180300px;}
.x78{left:323.676000px;}
.x5d{left:324.760350px;}
.x6c{left:331.091400px;}
.x3d{left:332.777550px;}
.x4f{left:340.964100px;}
.x13{left:343.747050px;}
.x5e{left:350.512350px;}
.x2c{left:353.364300px;}
.x84{left:361.988700px;}
.x6d{left:363.275400px;}
.x79{left:364.788000px;}
.x50{left:366.632100px;}
.x14{left:369.415050px;}
.x3e{left:373.889550px;}
.x5f{left:376.264350px;}
.x2d{left:385.560300px;}
.x51{left:392.300100px;}
.x15{left:395.083050px;}
.x60{left:402.016350px;}
.x7a{left:405.900000px;}
.x3f{left:415.001550px;}
.x2e{left:417.744300px;}
.x16{left:420.751050px;}
.x7b{left:426.456000px;}
.x61{left:427.768350px;}
.x40{left:435.557550px;}
.x52{left:443.636100px;}
.x17{left:446.419050px;}
.x2f{left:449.928300px;}
.x62{left:453.520350px;}
.x41{left:456.113550px;}
.x6e{left:459.839400px;}
.x7c{left:467.568000px;}
.x53{left:469.304100px;}
.x18{left:472.087050px;}
.x42{left:476.669550px;}
.x63{left:479.272350px;}
.x30{left:482.112300px;}
.x7d{left:488.124000px;}
.x6f{left:492.023400px;}
.x19{left:497.755050px;}
.x64{left:505.024350px;}
.x7e{left:508.680000px;}
.x31{left:514.296300px;}
.x43{left:517.781550px;}
.x1a{left:523.423050px;}
.x7f{left:529.236000px;}
.x65{left:530.776350px;}
.x44{left:538.337550px;}
.x80{left:549.792000px;}
.x66{left:556.528350px;}
.x81{left:570.348000px;}
.x67{left:582.280350px;}
.x70{left:588.575400px;}
.x82{left:590.904000px;}
.x83{left:611.460000px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760533pt;}
.ls55{letter-spacing:-5.666667pt;}
.ls2c{letter-spacing:-3.792000pt;}
.ls52{letter-spacing:-2.493333pt;}
.ls43{letter-spacing:-2.448000pt;}
.ls40{letter-spacing:-2.304000pt;}
.ls54{letter-spacing:-2.266667pt;}
.ls48{letter-spacing:-2.256000pt;}
.ls3d{letter-spacing:-2.112000pt;}
.ls2e{letter-spacing:-2.016000pt;}
.ls47{letter-spacing:-1.984000pt;}
.ls36{letter-spacing:-1.968000pt;}
.ls3a{letter-spacing:-1.824000pt;}
.ls25{letter-spacing:-1.536000pt;}
.ls51{letter-spacing:-1.450667pt;}
.ls4e{letter-spacing:-1.440000pt;}
.lsd{letter-spacing:-1.269333pt;}
.ls27{letter-spacing:-0.693333pt;}
.ls49{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.533333pt;}
.ls4a{letter-spacing:-0.480000pt;}
.ls32{letter-spacing:-0.453333pt;}
.ls28{letter-spacing:-0.373333pt;}
.ls37{letter-spacing:-0.320000pt;}
.ls4b{letter-spacing:-0.310933pt;}
.ls2f{letter-spacing:-0.266667pt;}
.ls50{letter-spacing:-0.248000pt;}
.ls29{letter-spacing:-0.213333pt;}
.ls53{letter-spacing:-0.181333pt;}
.ls18{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.148800pt;}
.ls1a{letter-spacing:-0.106667pt;}
.ls38{letter-spacing:-0.099200pt;}
.ls2d{letter-spacing:-0.053333pt;}
.ls46{letter-spacing:-0.049600pt;}
.lsa{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000267pt;}
.ls39{letter-spacing:0.022187pt;}
.ls44{letter-spacing:0.024800pt;}
.ls41{letter-spacing:0.026667pt;}
.ls2{letter-spacing:0.045333pt;}
.ls17{letter-spacing:0.049600pt;}
.ls2a{letter-spacing:0.053333pt;}
.ls35{letter-spacing:0.074400pt;}
.ls3b{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.090667pt;}
.ls34{letter-spacing:0.099200pt;}
.ls10{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.148800pt;}
.ls4{letter-spacing:0.160000pt;}
.ls3e{letter-spacing:0.186560pt;}
.ls6{letter-spacing:0.198400pt;}
.ls21{letter-spacing:0.213333pt;}
.ls0{letter-spacing:0.226667pt;}
.ls31{letter-spacing:0.248000pt;}
.ls13{letter-spacing:0.266667pt;}
.ls5{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.373333pt;}
.ls2b{letter-spacing:0.396800pt;}
.ls24{letter-spacing:0.426667pt;}
.ls23{letter-spacing:0.480000pt;}
.ls30{letter-spacing:0.496000pt;}
.ls19{letter-spacing:0.533333pt;}
.ls15{letter-spacing:0.586667pt;}
.ls14{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:0.666667pt;}
.ls1c{letter-spacing:0.693333pt;}
.ls4c{letter-spacing:0.746667pt;}
.ls4d{letter-spacing:0.816000pt;}
.lsc{letter-spacing:0.861333pt;}
.ls16{letter-spacing:0.906667pt;}
.ls8{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:0.986667pt;}
.lse{letter-spacing:1.066667pt;}
.ls22{letter-spacing:1.104000pt;}
.ls20{letter-spacing:1.120000pt;}
.ls1d{letter-spacing:1.173333pt;}
.ls9{letter-spacing:1.200000pt;}
.ls42{letter-spacing:1.333333pt;}
.ls3c{letter-spacing:1.339200pt;}
.lsb{letter-spacing:1.360000pt;}
.ls45{letter-spacing:1.537600pt;}
.ls3{letter-spacing:2.040000pt;}
.ls4f{letter-spacing:2.946667pt;}
.ls1b{letter-spacing:3.248000pt;}
.ls3f{letter-spacing:5.920000pt;}
.ls33{letter-spacing:65.670400pt;}
.wsda{word-spacing:-12.576000pt;}
.wsc2{word-spacing:-12.192000pt;}
.wsd0{word-spacing:-12.013333pt;}
.ws46{word-spacing:-11.733333pt;}
.wsc5{word-spacing:-11.466667pt;}
.ws1f{word-spacing:-11.200000pt;}
.ws1{word-spacing:-11.106667pt;}
.wsc4{word-spacing:-10.986667pt;}
.ws67{word-spacing:-10.933333pt;}
.wsb2{word-spacing:-10.713600pt;}
.ws31{word-spacing:-10.666667pt;}
.ws8b{word-spacing:-10.664000pt;}
.wsb1{word-spacing:-10.614400pt;}
.wsb0{word-spacing:-10.506667pt;}
.ws9f{word-spacing:-10.400000pt;}
.ws92{word-spacing:-10.346667pt;}
.wsa5{word-spacing:-10.293333pt;}
.wsa1{word-spacing:-10.240000pt;}
.wsc6{word-spacing:-10.186667pt;}
.ws8a{word-spacing:-10.080000pt;}
.ws56{word-spacing:-10.026667pt;}
.ws57{word-spacing:-9.973333pt;}
.ws0{word-spacing:-9.928000pt;}
.ws75{word-spacing:-9.920000pt;}
.wsa0{word-spacing:-9.866667pt;}
.ws45{word-spacing:-9.840000pt;}
.wsc3{word-spacing:-9.813333pt;}
.wsd1{word-spacing:-9.746667pt;}
.ws68{word-spacing:-9.653333pt;}
.ws89{word-spacing:-9.552000pt;}
.ws2{word-spacing:-9.520000pt;}
.wsaf{word-spacing:-9.408000pt;}
.ws69{word-spacing:-9.384000pt;}
.ws66{word-spacing:-9.360000pt;}
.ws9e{word-spacing:-9.072000pt;}
.wsd2{word-spacing:-9.066667pt;}
.ws3{word-spacing:-7.912000pt;}
.wsd4{word-spacing:-7.480000pt;}
.wsd3{word-spacing:-7.253333pt;}
.ws93{word-spacing:-6.716160pt;}
.ws47{word-spacing:-6.529600pt;}
.wsbf{word-spacing:-6.218667pt;}
.wsdb{word-spacing:-4.080000pt;}
.wscc{word-spacing:-1.973333pt;}
.wsa9{word-spacing:-1.866667pt;}
.ws2a{word-spacing:-1.813333pt;}
.ws98{word-spacing:-1.760000pt;}
.wsd6{word-spacing:-1.736000pt;}
.ws27{word-spacing:-1.706667pt;}
.ws29{word-spacing:-1.653333pt;}
.wsd7{word-spacing:-1.636800pt;}
.wsab{word-spacing:-1.600000pt;}
.ws19{word-spacing:-1.587200pt;}
.ws54{word-spacing:-1.546667pt;}
.ws2c{word-spacing:-1.493333pt;}
.ws9d{word-spacing:-1.488000pt;}
.wsaa{word-spacing:-1.386667pt;}
.ws8{word-spacing:-1.360000pt;}
.ws2e{word-spacing:-1.333333pt;}
.ws21{word-spacing:-1.226667pt;}
.ws6{word-spacing:-1.200000pt;}
.ws50{word-spacing:-1.173333pt;}
.ws32{word-spacing:-1.104000pt;}
.ws13{word-spacing:-1.066667pt;}
.ws18{word-spacing:-1.013333pt;}
.ws5{word-spacing:-0.960000pt;}
.wsa{word-spacing:-0.952000pt;}
.ws3a{word-spacing:-0.906667pt;}
.ws43{word-spacing:-0.746667pt;}
.ws1c{word-spacing:-0.694400pt;}
.ws40{word-spacing:-0.693333pt;}
.ws71{word-spacing:-0.644800pt;}
.ws39{word-spacing:-0.640000pt;}
.wsd8{word-spacing:-0.634667pt;}
.ws8f{word-spacing:-0.586667pt;}
.ws28{word-spacing:-0.533333pt;}
.wsba{word-spacing:-0.446400pt;}
.ws79{word-spacing:-0.426667pt;}
.ws80{word-spacing:-0.396800pt;}
.ws5f{word-spacing:-0.373333pt;}
.ws81{word-spacing:-0.347200pt;}
.ws5e{word-spacing:-0.320000pt;}
.wsad{word-spacing:-0.266667pt;}
.ws16{word-spacing:-0.213333pt;}
.ws1e{word-spacing:-0.198400pt;}
.wsb{word-spacing:-0.181333pt;}
.ws25{word-spacing:-0.160000pt;}
.ws4a{word-spacing:-0.106667pt;}
.ws1d{word-spacing:-0.099200pt;}
.ws6d{word-spacing:-0.053333pt;}
.wsbd{word-spacing:-0.049600pt;}
.ws7{word-spacing:0.000000pt;}
.wsbc{word-spacing:0.049600pt;}
.ws62{word-spacing:0.053333pt;}
.ws44{word-spacing:0.106667pt;}
.wsd9{word-spacing:0.181333pt;}
.ws4b{word-spacing:0.213333pt;}
.ws6e{word-spacing:0.266667pt;}
.ws2f{word-spacing:0.297600pt;}
.ws74{word-spacing:0.317333pt;}
.wsb4{word-spacing:0.320000pt;}
.ws7e{word-spacing:0.347200pt;}
.ws7c{word-spacing:0.373333pt;}
.ws82{word-spacing:0.396800pt;}
.ws41{word-spacing:0.426667pt;}
.wsc9{word-spacing:0.480000pt;}
.ws91{word-spacing:0.496000pt;}
.wsc8{word-spacing:0.533333pt;}
.ws60{word-spacing:0.586667pt;}
.ws9c{word-spacing:0.595200pt;}
.ws15{word-spacing:0.640000pt;}
.wsc1{word-spacing:0.644800pt;}
.ws26{word-spacing:0.693333pt;}
.ws30{word-spacing:0.694400pt;}
.wsae{word-spacing:0.746667pt;}
.ws11{word-spacing:0.770667pt;}
.ws5b{word-spacing:0.800000pt;}
.ws4f{word-spacing:0.853333pt;}
.ws10{word-spacing:0.861333pt;}
.ws4e{word-spacing:0.906667pt;}
.ws77{word-spacing:0.960000pt;}
.ws37{word-spacing:1.013333pt;}
.wsbb{word-spacing:1.041600pt;}
.wscf{word-spacing:1.066667pt;}
.ws7d{word-spacing:1.091200pt;}
.wsb9{word-spacing:1.120000pt;}
.ws7f{word-spacing:1.140800pt;}
.wsb5{word-spacing:1.173333pt;}
.ws9b{word-spacing:1.190400pt;}
.ws12{word-spacing:1.269333pt;}
.ws3c{word-spacing:1.280000pt;}
.ws97{word-spacing:1.386667pt;}
.ws73{word-spacing:1.388800pt;}
.wsf{word-spacing:1.405333pt;}
.ws9a{word-spacing:1.438400pt;}
.ws51{word-spacing:1.440000pt;}
.wse{word-spacing:1.450667pt;}
.ws86{word-spacing:1.488000pt;}
.ws6f{word-spacing:1.493333pt;}
.ws22{word-spacing:1.546667pt;}
.wsd{word-spacing:1.586667pt;}
.ws1b{word-spacing:1.587200pt;}
.ws8e{word-spacing:1.600000pt;}
.ws1a{word-spacing:1.636800pt;}
.ws14{word-spacing:1.653333pt;}
.ws9{word-spacing:1.677333pt;}
.ws72{word-spacing:1.686400pt;}
.ws23{word-spacing:1.706667pt;}
.ws4d{word-spacing:1.760000pt;}
.wsc{word-spacing:1.768000pt;}
.wsac{word-spacing:1.813333pt;}
.ws5a{word-spacing:1.866667pt;}
.ws78{word-spacing:1.920000pt;}
.wsa3{word-spacing:1.973333pt;}
.ws52{word-spacing:2.026667pt;}
.wsa8{word-spacing:2.080000pt;}
.ws5d{word-spacing:2.133333pt;}
.ws7b{word-spacing:2.186667pt;}
.ws96{word-spacing:2.240000pt;}
.ws17{word-spacing:2.293333pt;}
.ws61{word-spacing:2.346667pt;}
.ws87{word-spacing:2.380800pt;}
.ws2d{word-spacing:2.400000pt;}
.ws7a{word-spacing:2.453333pt;}
.wsa7{word-spacing:2.560000pt;}
.wsb6{word-spacing:2.613333pt;}
.ws59{word-spacing:2.666667pt;}
.ws3e{word-spacing:2.773333pt;}
.ws34{word-spacing:2.826667pt;}
.ws24{word-spacing:2.933333pt;}
.ws65{word-spacing:3.075200pt;}
.ws2b{word-spacing:3.093333pt;}
.ws83{word-spacing:3.124800pt;}
.wsb7{word-spacing:3.146667pt;}
.wsa4{word-spacing:3.253333pt;}
.wscb{word-spacing:3.306667pt;}
.ws3b{word-spacing:3.360000pt;}
.wsce{word-spacing:3.413333pt;}
.ws55{word-spacing:3.520000pt;}
.ws38{word-spacing:3.573333pt;}
.ws4c{word-spacing:3.680000pt;}
.ws70{word-spacing:3.769600pt;}
.ws5c{word-spacing:3.786667pt;}
.ws90{word-spacing:4.000000pt;}
.ws99{word-spacing:4.160000pt;}
.ws42{word-spacing:4.213333pt;}
.wscd{word-spacing:4.320000pt;}
.ws35{word-spacing:4.373333pt;}
.ws64{word-spacing:4.480000pt;}
.wsb8{word-spacing:4.533333pt;}
.ws95{word-spacing:4.586667pt;}
.ws3f{word-spacing:4.693333pt;}
.ws3d{word-spacing:5.013333pt;}
.ws49{word-spacing:5.280000pt;}
.ws36{word-spacing:5.386667pt;}
.ws53{word-spacing:5.706667pt;}
.wsca{word-spacing:6.186667pt;}
.ws88{word-spacing:6.497600pt;}
.ws63{word-spacing:6.933333pt;}
.ws6c{word-spacing:10.720000pt;}
.ws8d{word-spacing:12.266667pt;}
.ws6b{word-spacing:17.600000pt;}
.ws85{word-spacing:64.926400pt;}
.ws84{word-spacing:65.670400pt;}
.wsbe{word-spacing:66.910400pt;}
.ws4{word-spacing:711.792000pt;}
.wsdc{word-spacing:732.528000pt;}
.wsc7{word-spacing:732.912000pt;}
.ws48{word-spacing:735.216000pt;}
.ws8c{word-spacing:735.552000pt;}
.wsb3{word-spacing:735.648000pt;}
.ws6a{word-spacing:735.696000pt;}
.wsa2{word-spacing:735.984000pt;}
.ws20{word-spacing:761.520000pt;}
.wsd5{word-spacing:1292.592000pt;}
.ws76{word-spacing:1293.648000pt;}
.ws94{word-spacing:1293.936000pt;}
.wsc0{word-spacing:1294.224000pt;}
.wsa6{word-spacing:1294.608000pt;}
.ws58{word-spacing:1297.344000pt;}
.ws33{word-spacing:1317.552000pt;}
._a{margin-left:-761.409600pt;}
._24{margin-left:-736.488800pt;}
._14{margin-left:-735.583733pt;}
._10{margin-left:-734.664000pt;}
._2d{margin-left:-732.662400pt;}
._1{margin-left:-711.408000pt;}
._2b{margin-left:-65.124800pt;}
._19{margin-left:-62.049600pt;}
._12{margin-left:-15.014667pt;}
._21{margin-left:-6.657600pt;}
._8{margin-left:-5.442133pt;}
._6{margin-left:-3.812533pt;}
._4{margin-left:-2.788800pt;}
._3{margin-left:-1.555200pt;}
._2{width:1.022400pt;}
._0{width:2.049600pt;}
._5{width:2.974133pt;}
._7{width:3.919200pt;}
._c{width:5.546667pt;}
._b{width:7.360000pt;}
._1f{width:8.693333pt;}
._16{width:10.240000pt;}
._15{width:12.693333pt;}
._1e{width:13.760000pt;}
._29{width:20.960000pt;}
._2a{width:22.933333pt;}
._11{width:27.466667pt;}
._e{width:29.066667pt;}
._2c{width:30.950400pt;}
._f{width:32.586667pt;}
._23{width:36.504533pt;}
._13{width:42.011200pt;}
._20{width:43.152000pt;}
._d{width:44.391467pt;}
._18{width:46.077867pt;}
._1b{width:47.069867pt;}
._9{width:52.773867pt;}
._1d{width:58.428800pt;}
._17{width:63.289600pt;}
._1c{width:64.380800pt;}
._1a{width:65.868800pt;}
._2e{width:87.680000pt;}
._26{width:89.866667pt;}
._27{width:92.853333pt;}
._22{width:94.826667pt;}
._25{width:96.426667pt;}
._28{width:109.973333pt;}
.fs5{font-size:31.093333pt;}
.fs6{font-size:36.800000pt;}
.fs8{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:49.600000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.yb6{bottom:-929.039200pt;}
.yc0{bottom:-929.028533pt;}
.yc7{bottom:-927.737867pt;}
.yb7{bottom:-926.532533pt;}
.ycd{bottom:-925.241867pt;}
.ybe{bottom:-924.836533pt;}
.yc5{bottom:-919.343200pt;}
.ybc{bottom:-918.713867pt;}
.yc1{bottom:-918.201867pt;}
.yc4{bottom:-916.975200pt;}
.ybf{bottom:-916.761867pt;}
.ycb{bottom:-916.441867pt;}
.yc3{bottom:-915.588533pt;}
.yb9{bottom:-915.449867pt;}
.yba{bottom:-915.385867pt;}
.ycc{bottom:-914.532533pt;}
.yc2{bottom:-913.700533pt;}
.yc9{bottom:-912.772533pt;}
.ybb{bottom:-912.057867pt;}
.yc8{bottom:-911.567200pt;}
.yc6{bottom:-908.143200pt;}
.yb5{bottom:-906.777867pt;}
.yca{bottom:-904.121867pt;}
.yb8{bottom:-902.799200pt;}
.ybd{bottom:-901.252533pt;}
.yaf{bottom:-867.198400pt;}
.yb0{bottom:-839.379733pt;}
.yb1{bottom:-811.443733pt;}
.yb2{bottom:-783.635733pt;}
.yb3{bottom:-755.699733pt;}
.yb4{bottom:-727.891733pt;}
.ya6{bottom:-669.528933pt;}
.ya5{bottom:-669.048933pt;}
.yab{bottom:-667.587600pt;}
.yac{bottom:-666.478267pt;}
.yad{bottom:-662.808933pt;}
.ya2{bottom:-661.198267pt;}
.yae{bottom:-660.515600pt;}
.ya8{bottom:-659.864933pt;}
.ya3{bottom:-659.043600pt;}
.yaa{bottom:-658.627600pt;}
.ya0{bottom:-658.478267pt;}
.ya7{bottom:-656.291600pt;}
.ya9{bottom:-655.331600pt;}
.ya4{bottom:-654.712933pt;}
.ya1{bottom:-649.326267pt;}
.y97{bottom:-604.458800pt;}
.y148{bottom:-583.936533pt;}
.y152{bottom:-583.925867pt;}
.y159{bottom:-582.635200pt;}
.y98{bottom:-582.304133pt;}
.y149{bottom:-581.429867pt;}
.y15f{bottom:-580.139200pt;}
.y150{bottom:-579.733867pt;}
.y157{bottom:-574.240533pt;}
.y14e{bottom:-573.611200pt;}
.y153{bottom:-573.099200pt;}
.y156{bottom:-571.872533pt;}
.y151{bottom:-571.659200pt;}
.y15d{bottom:-571.339200pt;}
.y155{bottom:-570.485867pt;}
.y14b{bottom:-570.347200pt;}
.y14c{bottom:-570.283200pt;}
.y15e{bottom:-569.429867pt;}
.y154{bottom:-568.597867pt;}
.y15b{bottom:-567.669867pt;}
.y14d{bottom:-566.955200pt;}
.y15a{bottom:-566.464533pt;}
.y158{bottom:-563.040533pt;}
.y147{bottom:-561.675200pt;}
.y99{bottom:-560.298800pt;}
.y15c{bottom:-559.019200pt;}
.y14a{bottom:-557.696533pt;}
.y14f{bottom:-556.149867pt;}
.y9a{bottom:-538.154800pt;}
.y141{bottom:-522.095733pt;}
.y9b{bottom:-516.160133pt;}
.y142{bottom:-494.277067pt;}
.y9c{bottom:-494.005467pt;}
.y9d{bottom:-472.000133pt;}
.y143{bottom:-466.341067pt;}
.y9e{bottom:-450.005467pt;}
.y144{bottom:-438.533067pt;}
.y9f{bottom:-427.861467pt;}
.y145{bottom:-410.597067pt;}
.y146{bottom:-382.789067pt;}
.y88{bottom:-334.411067pt;}
.y138{bottom:-324.426267pt;}
.y137{bottom:-323.946267pt;}
.y91{bottom:-323.883067pt;}
.y85{bottom:-323.552400pt;}
.y13d{bottom:-322.484933pt;}
.y13e{bottom:-321.375600pt;}
.y13f{bottom:-317.706267pt;}
.y134{bottom:-316.095600pt;}
.y140{bottom:-315.412933pt;}
.y13a{bottom:-314.762267pt;}
.y135{bottom:-313.940933pt;}
.y13c{bottom:-313.524933pt;}
.y132{bottom:-313.375600pt;}
.y139{bottom:-311.188933pt;}
.y8d{bottom:-311.147067pt;}
.y13b{bottom:-310.228933pt;}
.y136{bottom:-309.610267pt;}
.y84{bottom:-305.504400pt;}
.y133{bottom:-304.223600pt;}
.y89{bottom:-303.243067pt;}
.y86{bottom:-300.181733pt;}
.y8b{bottom:-295.083067pt;}
.y87{bottom:-292.181733pt;}
.y90{bottom:-288.736400pt;}
.y93{bottom:-280.949733pt;}
.y94{bottom:-275.115067pt;}
.y8a{bottom:-273.963067pt;}
.y95{bottom:-271.755067pt;}
.y8e{bottom:-271.573733pt;}
.y8c{bottom:-269.109733pt;}
.y92{bottom:-267.125733pt;}
.y8f{bottom:-266.304400pt;}
.y96{bottom:-263.168400pt;}
.y129{bottom:-259.356133pt;}
.y1c0{bottom:-251.337733pt;}
.y1ca{bottom:-251.327067pt;}
.y1d1{bottom:-250.036400pt;}
.y1c1{bottom:-248.831067pt;}
.y1d7{bottom:-247.540400pt;}
.y1c8{bottom:-247.135067pt;}
.y1cf{bottom:-241.641733pt;}
.y1c6{bottom:-241.012400pt;}
.y1cb{bottom:-240.500400pt;}
.y1ce{bottom:-239.273733pt;}
.y1c9{bottom:-239.060400pt;}
.y1d5{bottom:-238.740400pt;}
.y1cd{bottom:-237.887067pt;}
.y1c3{bottom:-237.748400pt;}
.y1c4{bottom:-237.684400pt;}
.y12a{bottom:-237.201467pt;}
.y1d6{bottom:-236.831067pt;}
.y1cc{bottom:-235.999067pt;}
.y1d3{bottom:-235.071067pt;}
.y1c5{bottom:-234.356400pt;}
.y1d2{bottom:-233.865733pt;}
.y1d0{bottom:-230.441733pt;}
.y1bf{bottom:-229.076400pt;}
.y1d4{bottom:-226.420400pt;}
.y1c2{bottom:-225.097733pt;}
.y1c7{bottom:-223.551067pt;}
.y12b{bottom:-215.196133pt;}
.y79{bottom:-214.043467pt;}
.y7a{bottom:-198.427467pt;}
.y12c{bottom:-193.052133pt;}
.y1b9{bottom:-189.496933pt;}
.y7b{bottom:-182.672800pt;}
.y12d{bottom:-171.057467pt;}
.y7c{bottom:-166.918133pt;}
.y1ba{bottom:-161.678267pt;}
.y7d{bottom:-151.302133pt;}
.y12e{bottom:-148.902800pt;}
.y7e{bottom:-135.547467pt;}
.y1bb{bottom:-133.742267pt;}
.y12f{bottom:-126.897467pt;}
.y7f{bottom:-119.931467pt;}
.y1bc{bottom:-105.934267pt;}
.y130{bottom:-104.902800pt;}
.y80{bottom:-104.176800pt;}
.y81{bottom:-88.422133pt;}
.y131{bottom:-82.758800pt;}
.y1bd{bottom:-77.998267pt;}
.y82{bottom:-72.806133pt;}
.y83{bottom:-57.051467pt;}
.y1be{bottom:-50.190267pt;}
.y231{bottom:-0.000533pt;}
.y0{bottom:0.000000pt;}
.y23b{bottom:0.010133pt;}
.y1{bottom:35.905867pt;}
.y1da{bottom:80.504000pt;}
.y167{bottom:80.504133pt;}
.y45{bottom:80.507867pt;}
.y24e{bottom:80.508000pt;}
.yf1{bottom:80.511733pt;}
.y5f{bottom:80.515600pt;}
.y25{bottom:80.523467pt;}
.yeb{bottom:80.535067pt;}
.y169{bottom:81.171600pt;}
.y1a2{bottom:95.397333pt;}
.y44{bottom:95.970667pt;}
.y24d{bottom:95.970800pt;}
.yf0{bottom:95.974533pt;}
.y166{bottom:95.974800pt;}
.y5e{bottom:95.978400pt;}
.y24{bottom:95.986267pt;}
.yea{bottom:95.997867pt;}
.y58{bottom:97.571600pt;}
.yef{bottom:111.437333pt;}
.y165{bottom:111.437600pt;}
.y5d{bottom:111.441200pt;}
.y43{bottom:111.441333pt;}
.y24c{bottom:111.445200pt;}
.y23{bottom:111.449067pt;}
.ye9{bottom:111.460667pt;}
.y1d8{bottom:113.971600pt;}
.y1a3{bottom:117.402667pt;}
.y5c{bottom:126.904000pt;}
.y42{bottom:126.904133pt;}
.y164{bottom:126.904400pt;}
.y24b{bottom:126.908000pt;}
.yee{bottom:126.908133pt;}
.y22{bottom:126.911867pt;}
.ye8{bottom:126.923467pt;}
.y57{bottom:130.371600pt;}
.y1d9{bottom:131.304933pt;}
.y1a4{bottom:139.546667pt;}
.y24a{bottom:142.370800pt;}
.yed{bottom:142.370933pt;}
.y163{bottom:142.371067pt;}
.y5b{bottom:142.374533pt;}
.y21{bottom:142.374667pt;}
.ye7{bottom:142.386267pt;}
.y56{bottom:146.771600pt;}
.y1db{bottom:153.292000pt;}
.y242{bottom:154.592800pt;}
.y232{bottom:155.798133pt;}
.y248{bottom:157.088800pt;}
.y239{bottom:157.494133pt;}
.y5a{bottom:157.837333pt;}
.y20{bottom:157.837467pt;}
.y162{bottom:157.837733pt;}
.ye6{bottom:157.849067pt;}
.y1a5{bottom:161.541333pt;}
.y240{bottom:162.987467pt;}
.y41{bottom:163.171600pt;}
.y237{bottom:163.616800pt;}
.y23c{bottom:164.128800pt;}
.y23f{bottom:165.355467pt;}
.y23a{bottom:165.568800pt;}
.y246{bottom:165.888800pt;}
.y23e{bottom:166.742133pt;}
.y234{bottom:166.880800pt;}
.y235{bottom:166.944800pt;}
.y247{bottom:167.798133pt;}
.y23d{bottom:168.630133pt;}
.y244{bottom:169.558133pt;}
.y236{bottom:170.272800pt;}
.y243{bottom:170.763467pt;}
.y1f{bottom:173.304000pt;}
.y161{bottom:173.308400pt;}
.ye5{bottom:173.311867pt;}
.y241{bottom:174.187467pt;}
.y230{bottom:175.552800pt;}
.y245{bottom:178.208800pt;}
.y233{bottom:179.531467pt;}
.y40{bottom:179.571600pt;}
.y238{bottom:181.078133pt;}
.y1a6{bottom:183.696000pt;}
.y290{bottom:185.840400pt;}
.y26f{bottom:185.863067pt;}
.y160{bottom:188.771200pt;}
.ye4{bottom:188.774667pt;}
.y3f{bottom:195.971600pt;}
.yec{bottom:196.904933pt;}
.y28f{bottom:201.174400pt;}
.y26e{bottom:201.197067pt;}
.ye3{bottom:204.237467pt;}
.y1a7{bottom:205.701333pt;}
.yf2{bottom:211.474667pt;}
.y68{bottom:212.209200pt;}
.y1e{bottom:212.371600pt;}
.y22a{bottom:215.132267pt;}
.y28e{bottom:216.508400pt;}
.y26d{bottom:216.531067pt;}
.ye2{bottom:219.711867pt;}
.y11a{bottom:222.166267pt;}
.y1a8{bottom:227.696000pt;}
.y1d{bottom:228.771600pt;}
.y28d{bottom:231.842400pt;}
.y26c{bottom:231.865067pt;}
.y123{bottom:232.694267pt;}
.y117{bottom:233.024933pt;}
.ye1{bottom:235.174667pt;}
.y22b{bottom:242.950933pt;}
.y1c{bottom:245.171600pt;}
.y11f{bottom:245.430267pt;}
.y28c{bottom:247.176400pt;}
.y26b{bottom:247.199067pt;}
.y1a9{bottom:249.840000pt;}
.ye0{bottom:250.637467pt;}
.y116{bottom:251.072933pt;}
.y11b{bottom:253.334267pt;}
.y118{bottom:256.395600pt;}
.y221{bottom:259.509733pt;}
.y220{bottom:259.989733pt;}
.y226{bottom:261.451067pt;}
.y11d{bottom:261.494267pt;}
.y1b{bottom:261.571600pt;}
.y28b{bottom:262.510400pt;}
.y26a{bottom:262.533067pt;}
.y227{bottom:262.560400pt;}
.y119{bottom:264.395600pt;}
.ydf{bottom:266.135200pt;}
.y228{bottom:266.229733pt;}
.y21d{bottom:267.840400pt;}
.y122{bottom:267.840933pt;}
.y229{bottom:268.523067pt;}
.y223{bottom:269.173733pt;}
.y21e{bottom:269.995067pt;}
.y225{bottom:270.411067pt;}
.y21b{bottom:270.560400pt;}
.y22c{bottom:270.886933pt;}
.y222{bottom:272.747067pt;}
.y224{bottom:273.707067pt;}
.y21f{bottom:274.325733pt;}
.y125{bottom:275.627600pt;}
.y28a{bottom:277.844400pt;}
.y269{bottom:277.867067pt;}
.y1a{bottom:277.971600pt;}
.y21c{bottom:279.712400pt;}
.y126{bottom:281.462267pt;}
.yde{bottom:281.598000pt;}
.y11c{bottom:282.614267pt;}
.y127{bottom:284.822267pt;}
.y120{bottom:285.003600pt;}
.y11e{bottom:287.467600pt;}
.y124{bottom:289.451600pt;}
.y121{bottom:290.272933pt;}
.y289{bottom:293.178400pt;}
.y268{bottom:293.201067pt;}
.y128{bottom:293.408933pt;}
.y55{bottom:294.371600pt;}
.ydd{bottom:297.060800pt;}
.y22d{bottom:298.694933pt;}
.y288{bottom:308.512400pt;}
.y267{bottom:308.535067pt;}
.y19{bottom:310.771600pt;}
.ydc{bottom:312.523600pt;}
.y287{bottom:323.846400pt;}
.y266{bottom:323.869067pt;}
.y212{bottom:324.579867pt;}
.y22e{bottom:326.630933pt;}
.y54{bottom:327.171600pt;}
.ydb{bottom:327.986400pt;}
.y286{bottom:339.180400pt;}
.y265{bottom:339.203067pt;}
.y10b{bottom:342.534000pt;}
.y192{bottom:343.290267pt;}
.yda{bottom:343.449200pt;}
.y3e{bottom:343.571600pt;}
.y213{bottom:346.734533pt;}
.y102{bottom:353.075733pt;}
.y19b{bottom:353.818267pt;}
.y18f{bottom:354.148933pt;}
.y22f{bottom:354.438933pt;}
.y285{bottom:354.514400pt;}
.y264{bottom:354.537067pt;}
.y10c{bottom:358.150000pt;}
.yd9{bottom:358.912000pt;}
.y53{bottom:359.971600pt;}
.y109{bottom:360.009067pt;}
.y107{bottom:362.238400pt;}
.y103{bottom:362.665067pt;}
.y101{bottom:364.414400pt;}
.y10a{bottom:364.553067pt;}
.y104{bottom:364.830400pt;}
.y106{bottom:364.915733pt;}
.y197{bottom:366.554267pt;}
.y18{bottom:368.090267pt;}
.y214{bottom:368.739867pt;}
.yff{bottom:368.905067pt;}
.y108{bottom:369.417067pt;}
.y284{bottom:369.848400pt;}
.y263{bottom:369.871067pt;}
.y105{bottom:371.646400pt;}
.y18e{bottom:372.196933pt;}
.y10d{bottom:373.904667pt;}
.yfd{bottom:374.067733pt;}
.yfe{bottom:374.366400pt;}
.yd8{bottom:374.374800pt;}
.y193{bottom:374.458267pt;}
.y52{bottom:376.371600pt;}
.y3d{bottom:376.371733pt;}
.y100{bottom:377.438400pt;}
.y190{bottom:377.519600pt;}
.yfb{bottom:381.705067pt;}
.yfc{bottom:382.025067pt;}
.y195{bottom:382.618267pt;}
.y17{bottom:383.424267pt;}
.y283{bottom:385.182400pt;}
.y262{bottom:385.205067pt;}
.y191{bottom:385.519600pt;}
.y19a{bottom:388.964933pt;}
.y10e{bottom:389.659333pt;}
.yd7{bottom:389.837600pt;}
.y215{bottom:390.883867pt;}
.y51{bottom:392.771600pt;}
.y3c{bottom:392.771733pt;}
.y19d{bottom:396.751600pt;}
.yf3{bottom:398.944000pt;}
.y282{bottom:400.516400pt;}
.y261{bottom:400.539067pt;}
.y19e{bottom:402.586267pt;}
.y194{bottom:403.738267pt;}
.y10f{bottom:405.275333pt;}
.yd6{bottom:405.304267pt;}
.y19f{bottom:405.946267pt;}
.y198{bottom:406.127600pt;}
.y196{bottom:408.591600pt;}
.y50{bottom:409.171600pt;}
.y3b{bottom:409.171733pt;}
.y19c{bottom:410.575600pt;}
.y199{bottom:411.396933pt;}
.y216{bottom:412.878533pt;}
.y16{bottom:414.092267pt;}
.y1a0{bottom:414.532933pt;}
.y281{bottom:415.850400pt;}
.y260{bottom:415.873067pt;}
.yd5{bottom:420.774800pt;}
.y110{bottom:421.030000pt;}
.yf4{bottom:421.493333pt;}
.y3a{bottom:425.571600pt;}
.y15{bottom:429.426267pt;}
.y280{bottom:431.184400pt;}
.y25f{bottom:431.207067pt;}
.y217{bottom:435.033200pt;}
.yd4{bottom:436.237600pt;}
.y111{bottom:436.646000pt;}
.y39{bottom:441.971600pt;}
.yf5{bottom:444.170667pt;}
.y27f{bottom:446.518400pt;}
.y25e{bottom:446.541067pt;}
.yd3{bottom:451.704267pt;}
.y112{bottom:452.400667pt;}
.y218{bottom:457.038533pt;}
.y38{bottom:458.371600pt;}
.y14{bottom:460.094267pt;}
.y27e{bottom:461.852400pt;}
.y25d{bottom:461.875067pt;}
.y183{bottom:463.658000pt;}
.yf6{bottom:466.858667pt;}
.yd2{bottom:467.178667pt;}
.y2b5{bottom:467.494933pt;}
.y113{bottom:468.155333pt;}
.y37{bottom:474.771600pt;}
.y13{bottom:475.428267pt;}
.y27d{bottom:477.186400pt;}
.y25c{bottom:477.209067pt;}
.y219{bottom:479.033200pt;}
.y184{bottom:479.274000pt;}
.yd1{bottom:482.641467pt;}
.y2b4{bottom:482.828933pt;}
.y114{bottom:483.771333pt;}
.yf7{bottom:489.408000pt;}
.y36{bottom:491.171600pt;}
.y27c{bottom:492.520400pt;}
.y25b{bottom:492.543067pt;}
.y185{bottom:495.028667pt;}
.yd0{bottom:498.104267pt;}
.y2b3{bottom:498.162933pt;}
.y115{bottom:499.526000pt;}
.y21a{bottom:501.177200pt;}
.y12{bottom:506.096267pt;}
.y35{bottom:507.571600pt;}
.y27b{bottom:507.854400pt;}
.y25a{bottom:507.877067pt;}
.y186{bottom:510.783333pt;}
.yf8{bottom:512.085333pt;}
.y2b2{bottom:513.496933pt;}
.ycf{bottom:513.570933pt;}
.y11{bottom:521.430267pt;}
.y27a{bottom:523.188400pt;}
.y259{bottom:523.211067pt;}
.y34{bottom:523.971600pt;}
.y187{bottom:526.399333pt;}
.yf9{bottom:534.634667pt;}
.y10{bottom:536.764267pt;}
.y279{bottom:538.522400pt;}
.y258{bottom:538.545067pt;}
.y33{bottom:540.371600pt;}
.y168{bottom:541.305067pt;}
.y188{bottom:542.154000pt;}
.yf{bottom:552.098267pt;}
.y16a{bottom:553.784000pt;}
.y278{bottom:553.856400pt;}
.y257{bottom:553.879067pt;}
.y32{bottom:556.771600pt;}
.yfa{bottom:557.312000pt;}
.y189{bottom:557.770000pt;}
.y2a1{bottom:559.510267pt;}
.y1b0{bottom:561.956533pt;}
.y1af{bottom:562.436533pt;}
.y1b5{bottom:563.897867pt;}
.y1b6{bottom:565.007200pt;}
.ye{bottom:567.432267pt;}
.y1b7{bottom:568.676533pt;}
.y277{bottom:569.190400pt;}
.y256{bottom:569.213067pt;}
.y1ac{bottom:570.287200pt;}
.y1b8{bottom:570.969867pt;}
.y1b2{bottom:571.620533pt;}
.y1ad{bottom:572.441867pt;}
.y1b4{bottom:572.857867pt;}
.y1aa{bottom:573.007200pt;}
.y31{bottom:573.171600pt;}
.y4f{bottom:573.171733pt;}
.y18a{bottom:573.524667pt;}
.y2b1{bottom:574.832933pt;}
.y2a0{bottom:574.844267pt;}
.y1b1{bottom:575.193867pt;}
.y1b3{bottom:576.153867pt;}
.y1ae{bottom:576.772533pt;}
.yce{bottom:579.699467pt;}
.y1ab{bottom:582.159200pt;}
.yd{bottom:582.766267pt;}
.y276{bottom:584.524400pt;}
.y255{bottom:584.547067pt;}
.y18b{bottom:589.279333pt;}
.y30{bottom:589.571600pt;}
.y4e{bottom:589.571733pt;}
.y2b0{bottom:590.166933pt;}
.y29f{bottom:590.178267pt;}
.y67{bottom:592.870667pt;}
.y203{bottom:594.627467pt;}
.yc{bottom:598.100267pt;}
.y275{bottom:599.858400pt;}
.y254{bottom:599.881067pt;}
.y70{bottom:600.843733pt;}
.y18c{bottom:604.895333pt;}
.y20c{bottom:605.155467pt;}
.y200{bottom:605.486133pt;}
.y2af{bottom:605.500933pt;}
.y29e{bottom:605.512267pt;}
.y2f{bottom:605.971600pt;}
.y4d{bottom:605.971733pt;}
.y77{bottom:607.777067pt;}
.y75{bottom:610.006400pt;}
.y71{bottom:610.433067pt;}
.y6f{bottom:612.182400pt;}
.y78{bottom:612.321067pt;}
.y72{bottom:612.598400pt;}
.y74{bottom:612.683733pt;}
.yb{bottom:613.434267pt;}
.y274{bottom:615.192400pt;}
.y253{bottom:615.215067pt;}
.y6d{bottom:616.673067pt;}
.y76{bottom:617.185067pt;}
.y208{bottom:617.891467pt;}
.y73{bottom:619.414400pt;}
.y18d{bottom:620.650000pt;}
.y2ae{bottom:620.834933pt;}
.y29d{bottom:620.846267pt;}
.y6b{bottom:621.835733pt;}
.y6c{bottom:622.134400pt;}
.y2e{bottom:622.371600pt;}
.y4c{bottom:622.371733pt;}
.y1ff{bottom:623.534133pt;}
.y6e{bottom:625.206400pt;}
.y204{bottom:625.795467pt;}
.y1a1{bottom:627.026667pt;}
.ya{bottom:628.768267pt;}
.y201{bottom:628.856800pt;}
.y69{bottom:629.473067pt;}
.y6a{bottom:629.793067pt;}
.y273{bottom:630.526400pt;}
.y252{bottom:630.549067pt;}
.y206{bottom:633.955467pt;}
.y2ad{bottom:636.168933pt;}
.y29c{bottom:636.180267pt;}
.y202{bottom:636.856800pt;}
.y2d{bottom:638.771600pt;}
.y4b{bottom:638.771733pt;}
.y20b{bottom:640.302133pt;}
.y9{bottom:644.102267pt;}
.y272{bottom:645.860400pt;}
.y251{bottom:645.883067pt;}
.y60{bottom:646.712000pt;}
.y20e{bottom:648.088800pt;}
.y2ac{bottom:651.502933pt;}
.y29b{bottom:651.514267pt;}
.y20f{bottom:653.923467pt;}
.y205{bottom:655.075467pt;}
.y59{bottom:655.171600pt;}
.y4a{bottom:655.171733pt;}
.y210{bottom:657.283467pt;}
.y209{bottom:657.464800pt;}
.y8{bottom:659.436267pt;}
.y207{bottom:659.928800pt;}
.y271{bottom:661.194400pt;}
.y250{bottom:661.217067pt;}
.y20d{bottom:661.912800pt;}
.y20a{bottom:662.734133pt;}
.y211{bottom:665.870133pt;}
.y2ab{bottom:666.836933pt;}
.y29a{bottom:666.848267pt;}
.y61{bottom:669.261333pt;}
.y2c{bottom:671.571600pt;}
.y49{bottom:671.571733pt;}
.y7{bottom:674.770267pt;}
.y270{bottom:676.528400pt;}
.y24f{bottom:676.551067pt;}
.y2aa{bottom:682.170933pt;}
.y299{bottom:682.182267pt;}
.y17a{bottom:685.674533pt;}
.y2b{bottom:687.971600pt;}
.y48{bottom:687.971733pt;}
.y6{bottom:690.104267pt;}
.y62{bottom:691.938667pt;}
.y181{bottom:692.607867pt;}
.y17f{bottom:694.837200pt;}
.y17b{bottom:695.263867pt;}
.y179{bottom:697.013200pt;}
.y182{bottom:697.151867pt;}
.y17c{bottom:697.429200pt;}
.y2a9{bottom:697.504933pt;}
.y17e{bottom:697.514533pt;}
.y298{bottom:697.516267pt;}
.y177{bottom:701.503867pt;}
.y180{bottom:702.015867pt;}
.y17d{bottom:704.245200pt;}
.y47{bottom:704.371600pt;}
.y5{bottom:705.438267pt;}
.y175{bottom:706.666533pt;}
.y176{bottom:706.965200pt;}
.y249{bottom:707.571600pt;}
.y178{bottom:710.037200pt;}
.y2a8{bottom:712.838933pt;}
.y297{bottom:712.850267pt;}
.y173{bottom:714.303867pt;}
.y174{bottom:714.623867pt;}
.y63{bottom:714.626667pt;}
.y1f4{bottom:714.995200pt;}
.y2a{bottom:720.771600pt;}
.y2a7{bottom:728.172933pt;}
.y296{bottom:728.184267pt;}
.y1f5{bottom:730.611200pt;}
.y16b{bottom:731.542800pt;}
.y46{bottom:737.171600pt;}
.y64{bottom:737.176000pt;}
.y2a6{bottom:743.506933pt;}
.y295{bottom:743.518267pt;}
.y1f6{bottom:746.365867pt;}
.y29{bottom:753.571600pt;}
.y16c{bottom:754.092133pt;}
.y2a5{bottom:758.840933pt;}
.y4{bottom:758.847600pt;}
.y294{bottom:758.852267pt;}
.y65{bottom:759.853333pt;}
.y1f7{bottom:762.120533pt;}
.y28{bottom:769.971600pt;}
.y2a4{bottom:774.174933pt;}
.y293{bottom:774.186267pt;}
.y16d{bottom:776.769467pt;}
.y1f8{bottom:777.736533pt;}
.y66{bottom:782.402667pt;}
.y27{bottom:786.371600pt;}
.y2a3{bottom:789.508933pt;}
.y292{bottom:789.520267pt;}
.y1f9{bottom:793.491200pt;}
.y3{bottom:796.714400pt;}
.y16e{bottom:799.457467pt;}
.y26{bottom:802.771600pt;}
.y2a2{bottom:804.842933pt;}
.y291{bottom:804.854267pt;}
.y1fa{bottom:809.107200pt;}
.y16f{bottom:822.006800pt;}
.y1fb{bottom:824.861867pt;}
.y1fc{bottom:840.616533pt;}
.y170{bottom:844.684133pt;}
.y2{bottom:849.726533pt;}
.y1fd{bottom:856.232533pt;}
.y171{bottom:867.233467pt;}
.y1fe{bottom:871.987200pt;}
.y172{bottom:889.910800pt;}
.y1eb{bottom:937.011733pt;}
.y1f2{bottom:943.945067pt;}
.y1f0{bottom:946.174400pt;}
.y1ec{bottom:946.601067pt;}
.y1ea{bottom:948.350400pt;}
.y1f3{bottom:948.489067pt;}
.y1ed{bottom:948.766400pt;}
.y1ef{bottom:948.851733pt;}
.y1e8{bottom:952.841067pt;}
.y1f1{bottom:953.353067pt;}
.y1ee{bottom:955.582400pt;}
.y1e6{bottom:958.003733pt;}
.y1e7{bottom:958.302400pt;}
.y1e9{bottom:961.374400pt;}
.y1e4{bottom:965.641067pt;}
.y1e5{bottom:965.961067pt;}
.y1dc{bottom:982.880000pt;}
.y1dd{bottom:1005.429333pt;}
.y1de{bottom:1028.106667pt;}
.y1df{bottom:1050.794667pt;}
.y1e0{bottom:1073.344000pt;}
.y1e1{bottom:1096.021333pt;}
.y1e2{bottom:1118.570667pt;}
.y1e3{bottom:1141.248000pt;}
.h14{height:40.482667pt;}
.h6{height:40.800000pt;}
.h15{height:41.434667pt;}
.hd{height:41.685333pt;}
.h5{height:42.840000pt;}
.hf{height:44.018667pt;}
.h2{height:45.216000pt;}
.h11{height:47.893333pt;}
.h8{height:48.000000pt;}
.hb{height:48.000533pt;}
.h9{height:48.161600pt;}
.ha{height:48.746667pt;}
.hc{height:50.240000pt;}
.h7{height:50.400000pt;}
.h4{height:60.288000pt;}
.h3{height:80.640000pt;}
.h13{height:219.212000pt;}
.he{height:221.102667pt;}
.h12{height:270.236000pt;}
.h10{height:306.141333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w2{width:484.072000pt;}
.w3{width:484.073333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x32{left:6.666667pt;}
.x1c{left:11.733600pt;}
.x9{left:17.600267pt;}
.x1b{left:23.466933pt;}
.x33{left:39.994267pt;}
.x8{left:48.105333pt;}
.x45{left:52.252000pt;}
.x1d{left:53.298933pt;}
.x23{left:56.629600pt;}
.x34{left:58.266267pt;}
.x3{left:64.252000pt;}
.x7{left:65.705600pt;}
.x54{left:69.851867pt;}
.x1{left:71.811067pt;}
.x46{left:74.919200pt;}
.x1e{left:76.189600pt;}
.x71{left:77.531067pt;}
.x4{left:83.145333pt;}
.x24{left:85.237600pt;}
.x69{left:89.492800pt;}
.x2{left:90.703733pt;}
.x35{left:94.810267pt;}
.x47{left:97.735200pt;}
.x1f{left:99.080267pt;}
.xa{left:100.208933pt;}
.x6{left:102.016267pt;}
.x55{left:105.550533pt;}
.x5{left:109.598667pt;}
.x25{left:113.845600pt;}
.x68{left:117.157733pt;}
.x48{left:120.551200pt;}
.x20{left:121.970933pt;}
.xb{left:123.024933pt;}
.x56{left:128.441200pt;}
.x36{left:131.354267pt;}
.x72{left:141.536000pt;}
.x26{left:142.453600pt;}
.x49{left:143.367200pt;}
.x21{left:144.861600pt;}
.xc{left:145.840933pt;}
.x37{left:149.626267pt;}
.x57{left:151.331867pt;}
.x73{left:159.808000pt;}
.x4a{left:166.183200pt;}
.x22{left:167.752267pt;}
.xd{left:168.656933pt;}
.x27{left:171.061600pt;}
.x58{left:174.222533pt;}
.x74{left:178.080000pt;}
.x6a{left:179.871467pt;}
.x38{left:186.170267pt;}
.x4b{left:188.999200pt;}
.xe{left:191.472933pt;}
.x59{left:197.113200pt;}
.x28{left:199.669600pt;}
.x39{left:204.442267pt;}
.x6b{left:208.479467pt;}
.x4c{left:211.815200pt;}
.xf{left:214.288933pt;}
.x5a{left:220.003867pt;}
.x3a{left:222.714267pt;}
.x29{left:228.277600pt;}
.x75{left:232.896000pt;}
.x4d{left:234.631200pt;}
.x10{left:237.104933pt;}
.x3b{left:240.986267pt;}
.x5b{left:242.894533pt;}
.x76{left:251.168000pt;}
.x2a{left:256.885600pt;}
.x11{left:259.920933pt;}
.x5c{left:265.785200pt;}
.x77{left:269.440000pt;}
.x3c{left:277.530267pt;}
.x4e{left:280.263200pt;}
.x12{left:282.736933pt;}
.x2b{left:285.493600pt;}
.x78{left:287.712000pt;}
.x5d{left:288.675867pt;}
.x6c{left:294.303467pt;}
.x3d{left:295.802267pt;}
.x4f{left:303.079200pt;}
.x13{left:305.552933pt;}
.x5e{left:311.566533pt;}
.x2c{left:314.101600pt;}
.x84{left:321.767733pt;}
.x6d{left:322.911467pt;}
.x79{left:324.256000pt;}
.x50{left:325.895200pt;}
.x14{left:328.368933pt;}
.x3e{left:332.346267pt;}
.x5f{left:334.457200pt;}
.x2d{left:342.720267pt;}
.x51{left:348.711200pt;}
.x15{left:351.184933pt;}
.x60{left:357.347867pt;}
.x7a{left:360.800000pt;}
.x3f{left:368.890267pt;}
.x2e{left:371.328267pt;}
.x16{left:374.000933pt;}
.x7b{left:379.072000pt;}
.x61{left:380.238533pt;}
.x40{left:387.162267pt;}
.x52{left:394.343200pt;}
.x17{left:396.816933pt;}
.x2f{left:399.936267pt;}
.x62{left:403.129200pt;}
.x41{left:405.434267pt;}
.x6e{left:408.746133pt;}
.x7c{left:415.616000pt;}
.x53{left:417.159200pt;}
.x18{left:419.632933pt;}
.x42{left:423.706267pt;}
.x63{left:426.019867pt;}
.x30{left:428.544267pt;}
.x7d{left:433.888000pt;}
.x6f{left:437.354133pt;}
.x19{left:442.448933pt;}
.x64{left:448.910533pt;}
.x7e{left:452.160000pt;}
.x31{left:457.152267pt;}
.x43{left:460.250267pt;}
.x1a{left:465.264933pt;}
.x7f{left:470.432000pt;}
.x65{left:471.801200pt;}
.x44{left:478.522267pt;}
.x80{left:488.704000pt;}
.x66{left:494.691867pt;}
.x81{left:506.976000pt;}
.x67{left:517.582533pt;}
.x70{left:523.178133pt;}
.x82{left:525.248000pt;}
.x83{left:543.520000pt;}
}




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