
    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_fcd7d8e43d15c8da8b231333.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_a21d8c5ae739d1a8574a7628.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_b706dc76602fc08808e5f811.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.079102;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;}
.m1{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);}
.v3{vertical-align:-19.980000px;}
.v6{vertical-align:-4.159800px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.159800px;}
.v4{vertical-align:17.982000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:23.970000px;}
.v7{vertical-align:38.080200px;}
.v8{vertical-align:40.500000px;}
.ls12{letter-spacing:-1.998000px;}
.ls10{letter-spacing:-1.665000px;}
.ls7{letter-spacing:-1.294260px;}
.ls8{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.349800px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.174900px;}
.lsa{letter-spacing:0.300000px;}
.ls6{letter-spacing:0.349800px;}
.ls5{letter-spacing:0.600000px;}
.lsc{letter-spacing:1.050000px;}
.ls3{letter-spacing:1.224300px;}
.ls11{letter-spacing:1.350000px;}
.lsf{letter-spacing:1.575000px;}
.ls4{letter-spacing:1.680000px;}
.lse{letter-spacing:1.890000px;}
.ls1{letter-spacing:2.100000px;}
.ls0{letter-spacing:2.310000px;}
.lsd{letter-spacing:10.800000px;}
.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;}
}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.100000px;}
.wse6{word-spacing:-15.390000px;}
.ws52{word-spacing:-15.000000px;}
.wse5{word-spacing:-13.680000px;}
.ws0{word-spacing:-13.500000px;}
.wscf{word-spacing:-10.800000px;}
.ws1{word-spacing:-9.969300px;}
.ws86{word-spacing:-8.919900px;}
.ws4{word-spacing:-8.745000px;}
.ws6b{word-spacing:-8.395200px;}
.ws53{word-spacing:-7.450740px;}
.ws28{word-spacing:-3.780000px;}
.ws129{word-spacing:-3.480000px;}
.ws3e{word-spacing:-3.060000px;}
.ws114{word-spacing:-2.970000px;}
.wse8{word-spacing:-2.916000px;}
.ws1d{word-spacing:-2.880000px;}
.wsde{word-spacing:-2.820000px;}
.wsff{word-spacing:-2.760000px;}
.ws3b{word-spacing:-2.700000px;}
.wsa3{word-spacing:-2.640000px;}
.ws6d{word-spacing:-2.580000px;}
.wsfc{word-spacing:-2.520000px;}
.wsbe{word-spacing:-2.460000px;}
.wsba{word-spacing:-2.400000px;}
.ws6e{word-spacing:-2.340000px;}
.ws6c{word-spacing:-2.280000px;}
.wse{word-spacing:-2.220000px;}
.ws8a{word-spacing:-2.160000px;}
.ws8{word-spacing:-2.100000px;}
.wsa1{word-spacing:-2.040000px;}
.ws14{word-spacing:-2.016000px;}
.ws120{word-spacing:-1.998000px;}
.ws5d{word-spacing:-1.980000px;}
.wsc{word-spacing:-1.920000px;}
.wsd0{word-spacing:-1.890000px;}
.ws68{word-spacing:-1.872000px;}
.ws41{word-spacing:-1.800000px;}
.wsb2{word-spacing:-1.740000px;}
.ws50{word-spacing:-1.728000px;}
.ws18{word-spacing:-1.680000px;}
.wsad{word-spacing:-1.632000px;}
.ws12c{word-spacing:-1.620000px;}
.wsaf{word-spacing:-1.584000px;}
.ws1f{word-spacing:-1.560000px;}
.wsd5{word-spacing:-1.536000px;}
.ws42{word-spacing:-1.500000px;}
.ws67{word-spacing:-1.488000px;}
.ws73{word-spacing:-1.440000px;}
.ws19{word-spacing:-1.380000px;}
.ws112{word-spacing:-1.350000px;}
.ws1e{word-spacing:-1.320000px;}
.ws3a{word-spacing:-1.296000px;}
.ws9{word-spacing:-1.200000px;}
.ws9c{word-spacing:-1.140000px;}
.ws6{word-spacing:-1.122000px;}
.ws25{word-spacing:-1.080000px;}
.ws85{word-spacing:-1.056000px;}
.wsaa{word-spacing:-1.050000px;}
.ws7{word-spacing:-1.020000px;}
.wsb7{word-spacing:-1.008000px;}
.ws113{word-spacing:-0.972000px;}
.ws5b{word-spacing:-0.960000px;}
.wsf5{word-spacing:-0.912000px;}
.ws23{word-spacing:-0.900000px;}
.ws61{word-spacing:-0.864000px;}
.wsb3{word-spacing:-0.840000px;}
.ws76{word-spacing:-0.780000px;}
.ws10c{word-spacing:-0.765000px;}
.ws35{word-spacing:-0.720000px;}
.wsab{word-spacing:-0.714000px;}
.ws5f{word-spacing:-0.660000px;}
.ws3c{word-spacing:-0.600000px;}
.ws7c{word-spacing:-0.576000px;}
.ws87{word-spacing:-0.540000px;}
.ws13{word-spacing:-0.528000px;}
.ws59{word-spacing:-0.480000px;}
.wsee{word-spacing:-0.420000px;}
.ws84{word-spacing:-0.384000px;}
.wsb1{word-spacing:-0.360000px;}
.ws72{word-spacing:-0.349800px;}
.ws47{word-spacing:-0.300000px;}
.ws43{word-spacing:-0.240000px;}
.wsa{word-spacing:-0.180000px;}
.wsd4{word-spacing:-0.144000px;}
.ws2d{word-spacing:-0.120000px;}
.wse3{word-spacing:-0.096000px;}
.ws9a{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.wsb0{word-spacing:0.060000px;}
.wsa4{word-spacing:0.096000px;}
.ws20{word-spacing:0.120000px;}
.ws98{word-spacing:0.144000px;}
.ws2e{word-spacing:0.180000px;}
.wsc1{word-spacing:0.192000px;}
.ws71{word-spacing:0.240000px;}
.wsdd{word-spacing:0.300000px;}
.ws34{word-spacing:0.336000px;}
.wsc9{word-spacing:0.360000px;}
.ws10d{word-spacing:0.378000px;}
.wsa5{word-spacing:0.384000px;}
.ws22{word-spacing:0.420000px;}
.ws36{word-spacing:0.432000px;}
.ws2f{word-spacing:0.480000px;}
.wsdb{word-spacing:0.528000px;}
.ws91{word-spacing:0.540000px;}
.ws7d{word-spacing:0.576000px;}
.wsef{word-spacing:0.600000px;}
.ws46{word-spacing:0.660000px;}
.ws56{word-spacing:0.720000px;}
.ws66{word-spacing:0.768000px;}
.wseb{word-spacing:0.780000px;}
.ws51{word-spacing:0.816000px;}
.ws1c{word-spacing:0.840000px;}
.ws5e{word-spacing:0.900000px;}
.ws83{word-spacing:0.960000px;}
.ws126{word-spacing:0.972000px;}
.ws77{word-spacing:1.020000px;}
.ws7e{word-spacing:1.056000px;}
.ws32{word-spacing:1.080000px;}
.ws92{word-spacing:1.104000px;}
.ws26{word-spacing:1.140000px;}
.ws16{word-spacing:1.200000px;}
.ws40{word-spacing:1.260000px;}
.ws69{word-spacing:1.296000px;}
.wscb{word-spacing:1.320000px;}
.wsc3{word-spacing:1.344000px;}
.wsb{word-spacing:1.380000px;}
.wsd9{word-spacing:1.392000px;}
.ws1b{word-spacing:1.440000px;}
.wse0{word-spacing:1.488000px;}
.ws29{word-spacing:1.500000px;}
.wsc0{word-spacing:1.560000px;}
.wsc4{word-spacing:1.584000px;}
.ws9b{word-spacing:1.620000px;}
.ws21{word-spacing:1.680000px;}
.ws9f{word-spacing:1.740000px;}
.ws81{word-spacing:1.776000px;}
.ws74{word-spacing:1.800000px;}
.ws10{word-spacing:1.920000px;}
.ws93{word-spacing:1.968000px;}
.ws96{word-spacing:2.016000px;}
.wsf{word-spacing:2.040000px;}
.ws4d{word-spacing:2.100000px;}
.wse7{word-spacing:2.106000px;}
.wsa0{word-spacing:2.160000px;}
.wse2{word-spacing:2.208000px;}
.ws27{word-spacing:2.220000px;}
.ws39{word-spacing:2.256000px;}
.ws8e{word-spacing:2.280000px;}
.wsae{word-spacing:2.304000px;}
.ws4b{word-spacing:2.340000px;}
.ws64{word-spacing:2.400000px;}
.ws65{word-spacing:2.448000px;}
.ws89{word-spacing:2.460000px;}
.ws4c{word-spacing:2.520000px;}
.ws4f{word-spacing:2.544000px;}
.ws90{word-spacing:2.580000px;}
.ws80{word-spacing:2.592000px;}
.ws31{word-spacing:2.640000px;}
.ws6f{word-spacing:2.700000px;}
.ws58{word-spacing:2.760000px;}
.wsda{word-spacing:2.784000px;}
.ws3f{word-spacing:2.820000px;}
.ws15{word-spacing:2.832000px;}
.ws62{word-spacing:2.880000px;}
.ws49{word-spacing:2.940000px;}
.ws95{word-spacing:2.976000px;}
.ws8f{word-spacing:3.000000px;}
.wsfb{word-spacing:3.060000px;}
.ws45{word-spacing:3.120000px;}
.ws79{word-spacing:3.180000px;}
.wsb5{word-spacing:3.240000px;}
.ws57{word-spacing:3.300000px;}
.ws5a{word-spacing:3.360000px;}
.ws1a{word-spacing:3.480000px;}
.ws82{word-spacing:3.504000px;}
.ws7a{word-spacing:3.540000px;}
.ws8b{word-spacing:3.600000px;}
.wsd8{word-spacing:3.648000px;}
.wsbf{word-spacing:3.660000px;}
.wsbd{word-spacing:3.720000px;}
.wsf1{word-spacing:3.780000px;}
.wsd2{word-spacing:3.840000px;}
.wsfe{word-spacing:3.900000px;}
.ws7b{word-spacing:3.960000px;}
.ws78{word-spacing:4.020000px;}
.wsd{word-spacing:4.080000px;}
.ws48{word-spacing:4.140000px;}
.ws44{word-spacing:4.200000px;}
.wscc{word-spacing:4.260000px;}
.ws6a{word-spacing:4.272000px;}
.ws37{word-spacing:4.320000px;}
.ws55{word-spacing:4.380000px;}
.wsed{word-spacing:4.440000px;}
.ws70{word-spacing:4.500000px;}
.ws38{word-spacing:4.512000px;}
.wsd6{word-spacing:4.560000px;}
.ws24{word-spacing:4.680000px;}
.wscd{word-spacing:4.740000px;}
.wse1{word-spacing:4.752000px;}
.ws11{word-spacing:4.860000px;}
.wsfa{word-spacing:4.980000px;}
.ws97{word-spacing:4.992000px;}
.ws94{word-spacing:5.040000px;}
.ws63{word-spacing:5.088000px;}
.ws12b{word-spacing:5.100000px;}
.ws8c{word-spacing:5.160000px;}
.wsd7{word-spacing:5.184000px;}
.wsb6{word-spacing:5.220000px;}
.wse9{word-spacing:5.238000px;}
.ws4e{word-spacing:5.280000px;}
.wsdc{word-spacing:5.340000px;}
.ws2c{word-spacing:5.460000px;}
.wsc8{word-spacing:5.520000px;}
.ws99{word-spacing:5.580000px;}
.ws128{word-spacing:5.700000px;}
.ws30{word-spacing:5.760000px;}
.wsdf{word-spacing:5.820000px;}
.ws127{word-spacing:5.880000px;}
.wsea{word-spacing:5.994000px;}
.ws5c{word-spacing:6.000000px;}
.wsc2{word-spacing:6.048000px;}
.wsa2{word-spacing:6.060000px;}
.ws7f{word-spacing:6.144000px;}
.wsca{word-spacing:6.180000px;}
.wsb4{word-spacing:6.240000px;}
.wsf3{word-spacing:6.300000px;}
.wsf9{word-spacing:6.360000px;}
.ws33{word-spacing:6.432000px;}
.ws4a{word-spacing:6.480000px;}
.wsf8{word-spacing:6.660000px;}
.wsf6{word-spacing:6.780000px;}
.wsd1{word-spacing:6.840000px;}
.ws60{word-spacing:6.960000px;}
.wsce{word-spacing:7.080000px;}
.ws54{word-spacing:7.140000px;}
.wsbc{word-spacing:7.200000px;}
.ws2b{word-spacing:7.440000px;}
.ws9d{word-spacing:7.500000px;}
.ws88{word-spacing:7.560000px;}
.wsf2{word-spacing:7.620000px;}
.wsf4{word-spacing:7.680000px;}
.ws9e{word-spacing:7.740000px;}
.wsb9{word-spacing:7.800000px;}
.wsd3{word-spacing:7.860000px;}
.ws12a{word-spacing:7.980000px;}
.ws75{word-spacing:8.040000px;}
.wsf7{word-spacing:8.160000px;}
.ws12{word-spacing:8.220000px;}
.ws8d{word-spacing:8.460000px;}
.wsbb{word-spacing:8.520000px;}
.wsb8{word-spacing:8.940000px;}
.wsec{word-spacing:9.000000px;}
.wsf0{word-spacing:9.240000px;}
.ws3d{word-spacing:9.300000px;}
.ws2a{word-spacing:10.800000px;}
.wsfd{word-spacing:11.280000px;}
.ws104{word-spacing:24.795000px;}
.wsa8{word-spacing:27.600000px;}
.ws105{word-spacing:29.790000px;}
.ws10b{word-spacing:36.045000px;}
.ws108{word-spacing:47.295000px;}
.wsc7{word-spacing:51.138000px;}
.wsa7{word-spacing:51.600000px;}
.ws100{word-spacing:60.816000px;}
.ws107{word-spacing:61.875000px;}
.ws106{word-spacing:63.585000px;}
.wsa9{word-spacing:75.600000px;}
.ws10a{word-spacing:81.045000px;}
.ws109{word-spacing:84.375000px;}
.wsa6{word-spacing:87.600000px;}
.wsc6{word-spacing:91.638000px;}
.ws103{word-spacing:98.595000px;}
.wsac{word-spacing:135.648000px;}
.wsc5{word-spacing:159.138000px;}
.ws122{word-spacing:161.892000px;}
.ws111{word-spacing:161.946000px;}
.ws11a{word-spacing:165.888000px;}
.wse4{word-spacing:189.165600px;}
.ws10e{word-spacing:208.656000px;}
.ws125{word-spacing:212.652000px;}
.ws110{word-spacing:235.656000px;}
.ws101{word-spacing:236.544000px;}
.ws123{word-spacing:239.652000px;}
.ws10f{word-spacing:289.710000px;}
.ws11e{word-spacing:298.728000px;}
.ws102{word-spacing:320.544000px;}
.ws124{word-spacing:340.470000px;}
.ws121{word-spacing:363.474000px;}
.ws116{word-spacing:516.564000px;}
.ws11b{word-spacing:543.132000px;}
.ws17{word-spacing:572.859600px;}
.ws118{word-spacing:1229.256000px;}
.ws11c{word-spacing:1274.292000px;}
.ws11d{word-spacing:1307.286000px;}
.ws119{word-spacing:1319.274000px;}
.ws117{word-spacing:1331.262000px;}
.ws11f{word-spacing:1337.256000px;}
.ws115{word-spacing:1403.244000px;}
._0{margin-left:-1955.880000px;}
._1d{margin-left:-9.882000px;}
._8{margin-left:-8.556000px;}
._6{margin-left:-7.500000px;}
._5{margin-left:-6.408000px;}
._2{margin-left:-4.752000px;}
._3{margin-left:-3.294000px;}
._4{margin-left:-2.046000px;}
._1{margin-left:-1.026000px;}
._7{width:1.932000px;}
._9{width:3.240000px;}
._182{width:4.680000px;}
._34{width:5.820000px;}
._183{width:6.900000px;}
._1e{width:10.800000px;}
._d{width:29.568000px;}
._11{width:31.488000px;}
._b{width:33.168000px;}
._10{width:35.040000px;}
._a{width:36.528000px;}
._f{width:37.680000px;}
._14{width:39.600000px;}
._70{width:41.001000px;}
._6e{width:42.072000px;}
._62{width:56.016000px;}
._61{width:57.429000px;}
._69{width:58.545000px;}
._63{width:61.110000px;}
._16{width:63.600000px;}
._18{width:65.376000px;}
._4a{width:67.920000px;}
._66{width:69.312000px;}
._68{width:70.761000px;}
._6a{width:72.096000px;}
._65{width:74.352000px;}
._6c{width:75.801000px;}
._a6{width:81.486000px;}
._71{width:82.884000px;}
._1a{width:87.600000px;}
._13{width:90.816000px;}
._67{width:92.295000px;}
._15{width:96.384000px;}
._6b{width:98.082000px;}
._24{width:107.136000px;}
._72{width:114.828000px;}
._12{width:120.384000px;}
._1b{width:122.208000px;}
._122{width:124.848000px;}
._3b{width:127.344000px;}
._1c{width:129.198000px;}
._21{width:132.138000px;}
._64{width:133.200000px;}
._33{width:137.430000px;}
._19{width:144.384000px;}
._17{width:147.648000px;}
._a4{width:160.596000px;}
._2e{width:162.432000px;}
._16d{width:169.668000px;}
._74{width:175.218000px;}
._bf{width:176.415000px;}
._5e{width:180.948000px;}
._ba{width:192.024000px;}
._84{width:194.667000px;}
._3d{width:195.840000px;}
._8f{width:197.154000px;}
._6d{width:198.417000px;}
._31{width:206.766000px;}
._e{width:214.087200px;}
._2f{width:220.266000px;}
._7d{width:222.156000px;}
._3c{width:224.544000px;}
._57{width:237.120000px;}
._141{width:240.354000px;}
._bc{width:243.108000px;}
._37{width:245.184000px;}
._39{width:248.544000px;}
._d5{width:249.630000px;}
._11b{width:251.154000px;}
._55{width:254.448000px;}
._e8{width:266.004000px;}
._6f{width:270.234000px;}
._3a{width:271.776000px;}
._cf{width:275.220000px;}
._b8{width:277.092000px;}
._bd{width:282.798000px;}
._49{width:284.544000px;}
._8d{width:286.632000px;}
._53{width:287.856000px;}
._30{width:290.142000px;}
._44{width:295.920000px;}
._c7{width:297.216000px;}
._155{width:300.618000px;}
._75{width:303.210000px;}
._164{width:305.352000px;}
._97{width:307.908000px;}
._32{width:310.392000px;}
._3f{width:313.248000px;}
._179{width:317.586000px;}
._59{width:319.230000px;}
._80{width:322.974000px;}
._eb{width:324.972000px;}
._5f{width:326.571000px;}
._47{width:327.888000px;}
._10d{width:330.696000px;}
._4c{width:332.544000px;}
._85{width:334.638000px;}
._8a{width:337.662000px;}
._79{width:340.578000px;}
._a5{width:342.954000px;}
._101{width:345.114000px;}
._a9{width:348.732000px;}
._82{width:349.974000px;}
._af{width:351.972000px;}
._94{width:354.240000px;}
._d3{width:360.234000px;}
._29{width:361.854000px;}
._60{width:362.931000px;}
._2b{width:364.878000px;}
._93{width:366.174000px;}
._a1{width:367.632000px;}
._5c{width:370.416000px;}
._fa{width:372.222000px;}
._14e{width:373.734000px;}
._b5{width:375.678000px;}
._78{width:376.974000px;}
._81{width:378.108000px;}
._db{width:379.674000px;}
._2c{width:381.888000px;}
._42{width:383.808000px;}
._7a{width:385.668000px;}
._124{width:387.180000px;}
._e0{width:388.692000px;}
._a3{width:390.258000px;}
._51{width:391.824000px;}
._10c{width:393.174000px;}
._7f{width:396.144000px;}
._137{width:397.602000px;}
._14c{width:399.276000px;}
._f2{width:400.626000px;}
._132{width:401.922000px;}
._88{width:403.434000px;}
._f4{width:405.108000px;}
._10f{width:406.200000px;}
._113{width:408.132000px;}
._87{width:409.698000px;}
._106{width:412.668000px;}
._9d{width:414.072000px;}
._bb{width:415.692000px;}
._9f{width:417.150000px;}
._120{width:418.662000px;}
._c4{width:420.120000px;}
._ef{width:421.632000px;}
._ab{width:423.144000px;}
._16b{width:424.656000px;}
._175{width:427.680000px;}
._10b{width:430.380000px;}
._73{width:432.108000px;}
._2a{width:433.890000px;}
._a8{width:435.186000px;}
._108{width:436.698000px;}
._c6{width:438.810000px;}
._20{width:439.884000px;}
._115{width:441.234000px;}
._100{width:442.746000px;}
._91{width:444.150000px;}
._e3{width:445.608000px;}
._10a{width:447.174000px;}
._13b{width:448.632000px;}
._aa{width:450.198000px;}
._28{width:451.818000px;}
._76{width:453.060000px;}
._9a{width:454.680000px;}
._96{width:456.192000px;}
._2d{width:458.082000px;}
._4f{width:459.792000px;}
._127{width:463.644000px;}
._d6{width:465.210000px;}
._22{width:466.884000px;}
._8c{width:468.126000px;}
._119{width:469.206000px;}
._102{width:472.608000px;}
._9e{width:474.174000px;}
._10e{width:475.956000px;}
._ac{width:477.144000px;}
._1f{width:478.872000px;}
._f9{width:480.114000px;}
._25{width:481.842000px;}
._d1{width:483.138000px;}
._107{width:484.650000px;}
._c9{width:486.108000px;}
._86{width:489.672000px;}
._26{width:490.806000px;}
._f5{width:492.156000px;}
._23{width:493.830000px;}
._144{width:495.126000px;}
._153{width:498.150000px;}
._a2{width:500.148000px;}
._b4{width:501.174000px;}
._27{width:502.794000px;}
._14b{width:504.144000px;}
._8b{width:510.084000px;}
._fe{width:512.136000px;}
._b1{width:513.972000px;}
._170{width:516.078000px;}
._a7{width:518.130000px;}
._111{width:519.156000px;}
._11c{width:520.668000px;}
._16a{width:522.180000px;}
._166{width:525.204000px;}
._fb{width:527.094000px;}
._150{width:528.174000px;}
._162{width:529.470000px;}
._f3{width:530.862000px;}
._12b{width:533.466000px;}
._be{width:537.084000px;}
._9b{width:539.190000px;}
._7e{width:540.204000px;}
._17f{width:546.156000px;}
._167{width:549.180000px;}
._52{width:551.568000px;}
._114{width:556.902000px;}
._b9{width:557.928000px;}
._90{width:558.948000px;}
._128{width:560.142000px;}
._77{width:563.112000px;}
._ea{width:565.602000px;}
._105{width:567.108000px;}
._103{width:569.106000px;}
._fd{width:574.668000px;}
._109{width:576.936000px;}
._11f{width:580.878000px;}
._36{width:583.104000px;}
._d4{width:585.954000px;}
._99{width:587.436000px;}
._11a{width:590.058000px;}
._ce{width:592.542000px;}
._a0{width:594.918000px;}
._38{width:596.352000px;}
._95{width:597.888000px;}
._de{width:601.638000px;}
._8e{width:603.882000px;}
._c1{width:605.712000px;}
._83{width:610.095000px;}
._140{width:618.138000px;}
._35{width:620.316000px;}
._157{width:621.972000px;}
._16c{width:627.858000px;}
._7b{width:630.882000px;}
._7c{width:633.672000px;}
._92{width:636.876000px;}
._89{width:648.864000px;}
._c{width:655.506000px;}
._15d{width:658.767000px;}
._d0{width:660.798000px;}
._dd{width:676.668000px;}
._43{width:678.960000px;}
._143{width:686.880000px;}
._4b{width:704.040000px;}
._45{width:753.744000px;}
._5a{width:764.448000px;}
._4e{width:784.992000px;}
._5d{width:814.992000px;}
._58{width:820.320000px;}
._54{width:850.416000px;}
._41{width:853.536000px;}
._e5{width:869.346000px;}
._145{width:876.906000px;}
._4d{width:883.680000px;}
._50{width:885.678000px;}
._40{width:898.992000px;}
._11e{width:929.286000px;}
._136{width:938.406000px;}
._180{width:941.652000px;}
._46{width:956.286000px;}
._f0{width:962.280000px;}
._b6{width:972.810000px;}
._142{width:980.478000px;}
._d8{width:985.014000px;}
._165{width:986.472000px;}
._181{width:995.328000px;}
._15f{width:996.822000px;}
._cc{width:1001.430000px;}
._159{width:1002.456000px;}
._169{width:1014.768000px;}
._df{width:1022.652000px;}
._158{width:1027.080000px;}
._d9{width:1031.400000px;}
._129{width:1032.804000px;}
._15a{width:1036.098000px;}
._138{width:1041.768000px;}
._ed{width:1044.792000px;}
._ca{width:1049.328000px;}
._14d{width:1053.756000px;}
._125{width:1056.996000px;}
._fc{width:1061.244000px;}
._d7{width:1063.044000px;}
._c0{width:1064.514000px;}
._171{width:1074.744000px;}
._173{width:1076.652000px;}
._134{width:1080.810000px;}
._13c{width:1083.780000px;}
._f8{width:1089.828000px;}
._178{width:1091.286000px;}
._f1{width:1095.822000px;}
._151{width:1097.550000px;}
._168{width:1100.412000px;}
._e1{width:1101.816000px;}
._16f{width:1103.328000px;}
._130{width:1105.056000px;}
._16e{width:1106.244000px;}
._12e{width:1107.756000px;}
._112{width:1111.050000px;}
._13e{width:1115.478000px;}
._12f{width:1116.774000px;}
._5b{width:1120.696800px;}
._17a{width:1122.768000px;}
._174{width:1126.062000px;}
._da{width:1129.086000px;}
._e6{width:1130.220000px;}
._147{width:1137.522000px;}
._14a{width:1139.508000px;}
._176{width:1140.858000px;}
._56{width:1147.620000px;}
._15c{width:1149.822000px;}
._110{width:1151.334000px;}
._c8{width:1152.522000px;}
._177{width:1155.816000px;}
._15b{width:1157.490000px;}
._b0{width:1158.732000px;}
._48{width:1161.600000px;}
._149{width:1163.484000px;}
._12d{width:1164.780000px;}
._ae{width:1166.238000px;}
._f6{width:1167.750000px;}
._b2{width:1170.720000px;}
._156{width:1172.556000px;}
._13d{width:1175.310000px;}
._118{width:1176.768000px;}
._15e{width:1179.570000px;}
._17d{width:1181.304000px;}
._3e{width:1182.960000px;}
._f7{width:1184.490000px;}
._17b{width:1185.840000px;}
._161{width:1187.514000px;}
._c5{width:1190.268000px;}
._e9{width:1191.654000px;}
._c3{width:1193.238000px;}
._12c{width:1197.936000px;}
._cd{width:1199.556000px;}
._116{width:1201.014000px;}
._dc{width:1203.066000px;}
._13a{width:1205.550000px;}
._ee{width:1206.846000px;}
._e7{width:1208.304000px;}
._163{width:1210.032000px;}
._98{width:1213.002000px;}
._b7{width:1217.322000px;}
._104{width:1218.780000px;}
._146{width:1220.508000px;}
._123{width:1223.586000px;}
._ad{width:1224.774000px;}
._148{width:1226.232000px;}
._160{width:1227.798000px;}
._cb{width:1229.472000px;}
._b3{width:1232.226000px;}
._121{width:1233.846000px;}
._154{width:1238.274000px;}
._172{width:1241.298000px;}
._ff{width:1242.972000px;}
._126{width:1245.024000px;}
._ec{width:1250.586000px;}
._13f{width:1253.340000px;}
._139{width:1256.580000px;}
._152{width:1259.226000px;}
._d2{width:1265.328000px;}
._12a{width:1268.460000px;}
._133{width:1275.966000px;}
._17c{width:1290.486000px;}
._117{width:1295.028000px;}
._e4{width:1299.942000px;}
._135{width:1307.286000px;}
._17e{width:1316.520000px;}
._e2{width:1317.924000px;}
._11d{width:1342.062000px;}
._14f{width:1346.544000px;}
._9c{width:1353.726000px;}
._c2{width:1377.972000px;}
._131{width:1380.996000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:31.482000px;}
.fs4{font-size:34.980000px;}
.fs2{font-size:41.976000px;}
.fs8{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs7{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:42.471150px;}
.y4c{bottom:42.472350px;}
.y1{bottom:58.671150px;}
.y4b{bottom:58.672350px;}
.y21{bottom:97.795200px;}
.y217{bottom:108.513000px;}
.y202{bottom:109.043550px;}
.y164{bottom:110.022900px;}
.y20{bottom:112.195200px;}
.y1db{bottom:113.012550px;}
.y1ff{bottom:115.037550px;}
.y191{bottom:121.164600px;}
.yb9{bottom:123.165000px;}
.y20c{bottom:124.432950px;}
.y201{bottom:125.243550px;}
.y216{bottom:126.513000px;}
.y1f{bottom:126.595200px;}
.y1be{bottom:133.262550px;}
.y1a8{bottom:134.272350px;}
.y1da{bottom:134.275050px;}
.y1d1{bottom:135.284850px;}
.y1fe{bottom:136.300050px;}
.y1e{bottom:140.995200px;}
.yb8{bottom:141.165000px;}
.y200{bottom:141.443550px;}
.y190{bottom:142.427100px;}
.y20b{bottom:142.432950px;}
.y163{bottom:142.867200px;}
.y215{bottom:144.513000px;}
.y1eb{bottom:154.522350px;}
.y1bd{bottom:154.525050px;}
.y1d{bottom:155.395200px;}
.y1a7{bottom:155.534850px;}
.y1d9{bottom:155.537550px;}
.y1d0{bottom:156.547350px;}
.y1fd{bottom:157.562550px;}
.y20a{bottom:160.432950px;}
.yb7{bottom:161.385000px;}
.y214{bottom:162.513000px;}
.y162{bottom:163.087200px;}
.y18f{bottom:163.689600px;}
.y145{bottom:164.382450px;}
.y1c{bottom:169.795200px;}
.y1ea{bottom:175.784850px;}
.y1bc{bottom:175.787550px;}
.y1a6{bottom:176.797350px;}
.y1d8{bottom:176.800050px;}
.y1cf{bottom:177.809850px;}
.y209{bottom:178.432950px;}
.y1fc{bottom:178.825050px;}
.yb6{bottom:179.385000px;}
.y213{bottom:180.513000px;}
.y144{bottom:182.382450px;}
.y161{bottom:183.307200px;}
.y49{bottom:184.195200px;}
.y18e{bottom:184.952100px;}
.ye0{bottom:192.756750px;}
.y208{bottom:196.432950px;}
.y1e9{bottom:197.047350px;}
.y1bb{bottom:197.050050px;}
.y1a5{bottom:198.059850px;}
.y1d7{bottom:198.062550px;}
.y212{bottom:198.513000px;}
.y48{bottom:198.595200px;}
.y1ce{bottom:199.072350px;}
.yb5{bottom:199.605000px;}
.y1fb{bottom:200.087550px;}
.y143{bottom:200.382450px;}
.y160{bottom:203.527200px;}
.y113{bottom:205.134000px;}
.y18d{bottom:206.214600px;}
.ydf{bottom:210.756750px;}
.y47{bottom:212.995200px;}
.y207{bottom:214.432950px;}
.y211{bottom:216.513000px;}
.yb4{bottom:217.605000px;}
.y1e8{bottom:218.309850px;}
.y1ba{bottom:218.312550px;}
.y142{bottom:218.382450px;}
.y1a4{bottom:219.322350px;}
.y1d6{bottom:219.325050px;}
.y1cd{bottom:220.334850px;}
.y1fa{bottom:221.350050px;}
.y14c{bottom:221.400150px;}
.y15f{bottom:223.747200px;}
.y112{bottom:226.396500px;}
.y46{bottom:227.395200px;}
.y18c{bottom:227.477100px;}
.y17c{bottom:228.537300px;}
.yde{bottom:228.756750px;}
.y102{bottom:230.898300px;}
.y14a{bottom:230.913000px;}
.y206{bottom:232.432950px;}
.y210{bottom:234.513000px;}
.yb3{bottom:235.605000px;}
.y141{bottom:236.382450px;}
.y1e7{bottom:239.572350px;}
.y1b9{bottom:239.575050px;}
.y1a3{bottom:240.584850px;}
.y1d5{bottom:240.587550px;}
.y1cc{bottom:241.597350px;}
.y45{bottom:241.795200px;}
.y1f9{bottom:242.612550px;}
.y15e{bottom:243.967200px;}
.y17b{bottom:244.737300px;}
.ydd{bottom:246.756750px;}
.y111{bottom:247.659000px;}
.y18b{bottom:248.739600px;}
.y101{bottom:248.898300px;}
.y149{bottom:248.913000px;}
.y205{bottom:250.432950px;}
.y20f{bottom:252.513000px;}
.y140{bottom:254.382450px;}
.yb2{bottom:255.825000px;}
.y44{bottom:256.195200px;}
.y1e6{bottom:260.834850px;}
.y1b8{bottom:260.837550px;}
.y17a{bottom:260.937300px;}
.y1a2{bottom:261.847350px;}
.y1d4{bottom:261.850050px;}
.y1cb{bottom:262.859850px;}
.y1f8{bottom:263.875050px;}
.y15d{bottom:264.187200px;}
.ydc{bottom:264.756750px;}
.y1b{bottom:265.872900px;}
.y100{bottom:266.898300px;}
.y148{bottom:266.913000px;}
.y204{bottom:268.432950px;}
.y110{bottom:268.921500px;}
.y18a{bottom:270.002100px;}
.y20e{bottom:270.513000px;}
.y8b{bottom:270.595200px;}
.y13f{bottom:272.382450px;}
.yb1{bottom:273.825000px;}
.y1e5{bottom:282.097350px;}
.y1b7{bottom:282.100050px;}
.ydb{bottom:282.756750px;}
.y1a1{bottom:283.109850px;}
.y1d3{bottom:283.112550px;}
.y1ca{bottom:284.122350px;}
.y15c{bottom:284.407200px;}
.yff{bottom:284.898300px;}
.y147{bottom:284.913000px;}
.y8a{bottom:284.995200px;}
.y1f7{bottom:285.137550px;}
.y203{bottom:286.432950px;}
.y1a{bottom:287.472900px;}
.y20d{bottom:288.513000px;}
.y10f{bottom:290.184000px;}
.y13e{bottom:290.382450px;}
.y189{bottom:291.264600px;}
.yb0{bottom:291.825000px;}
.y179{bottom:295.410600px;}
.y89{bottom:299.395200px;}
.yda{bottom:300.756750px;}
.yfe{bottom:302.898300px;}
.y146{bottom:302.913000px;}
.y1e4{bottom:303.359850px;}
.y1b6{bottom:303.362550px;}
.y1a0{bottom:304.372350px;}
.y1d2{bottom:304.375050px;}
.y43{bottom:304.432950px;}
.y15b{bottom:304.627200px;}
.y1c9{bottom:305.384850px;}
.y19{bottom:305.472900px;}
.y1f6{bottom:306.400050px;}
.y6d{bottom:306.513000px;}
.y13d{bottom:308.382450px;}
.y10e{bottom:311.446500px;}
.yaf{bottom:312.045000px;}
.y188{bottom:312.527100px;}
.y88{bottom:313.795200px;}
.y178{bottom:315.120600px;}
.yd9{bottom:318.756750px;}
.yfd{bottom:320.898300px;}
.y8f{bottom:320.913000px;}
.y42{bottom:322.432950px;}
.y18{bottom:323.472900px;}
.y6c{bottom:324.513000px;}
.y1e3{bottom:324.622350px;}
.y1b5{bottom:324.625050px;}
.y15a{bottom:324.847200px;}
.y19f{bottom:325.634850px;}
.y1f0{bottom:325.637550px;}
.y13c{bottom:326.382450px;}
.y1c8{bottom:326.647350px;}
.y1f5{bottom:327.662550px;}
.y87{bottom:328.195200px;}
.yae{bottom:330.045000px;}
.y177{bottom:331.995600px;}
.y10d{bottom:332.709000px;}
.y187{bottom:333.789600px;}
.yd8{bottom:336.756750px;}
.y168{bottom:337.557900px;}
.yfc{bottom:338.898300px;}
.y8e{bottom:338.913000px;}
.y41{bottom:340.432950px;}
.y17{bottom:341.472900px;}
.y121{bottom:342.498300px;}
.y6b{bottom:342.513000px;}
.y86{bottom:342.595200px;}
.y13b{bottom:344.382450px;}
.y159{bottom:345.067200px;}
.y1e2{bottom:345.884850px;}
.y1b4{bottom:345.887550px;}
.y19e{bottom:346.897350px;}
.y1ef{bottom:346.900050px;}
.y1c7{bottom:347.909850px;}
.y1f4{bottom:348.925050px;}
.yad{bottom:350.265000px;}
.y176{bottom:351.705600px;}
.y10c{bottom:353.971500px;}
.yd7{bottom:354.756750px;}
.y186{bottom:355.052100px;}
.yfb{bottom:356.898300px;}
.y8d{bottom:356.913000px;}
.y85{bottom:356.995200px;}
.y40{bottom:358.432950px;}
.y16{bottom:359.472900px;}
.y120{bottom:360.498300px;}
.y6a{bottom:360.513000px;}
.y169{bottom:361.317900px;}
.y13a{bottom:362.382450px;}
.y158{bottom:365.287200px;}
.y1e1{bottom:367.147350px;}
.y1b3{bottom:367.150050px;}
.y19d{bottom:368.159850px;}
.y1ee{bottom:368.162550px;}
.yac{bottom:368.265000px;}
.y1c6{bottom:369.172350px;}
.y1f3{bottom:369.175050px;}
.y175{bottom:371.415600px;}
.yd6{bottom:372.756750px;}
.yfa{bottom:374.898300px;}
.y8c{bottom:374.913000px;}
.y10b{bottom:375.234000px;}
.y185{bottom:376.314600px;}
.y3f{bottom:376.432950px;}
.y15{bottom:377.472900px;}
.y11f{bottom:378.498300px;}
.y69{bottom:378.513000px;}
.y139{bottom:380.382450px;}
.y157{bottom:385.507200px;}
.yab{bottom:386.265000px;}
.y1e0{bottom:388.409850px;}
.y1b2{bottom:388.412550px;}
.y19c{bottom:389.422350px;}
.y1ed{bottom:389.425050px;}
.y1c5{bottom:390.434850px;}
.y1f2{bottom:390.437550px;}
.yd5{bottom:390.756750px;}
.y174{bottom:391.125600px;}
.yf9{bottom:392.898300px;}
.y84{bottom:392.913000px;}
.y3e{bottom:394.432950px;}
.y14{bottom:395.472900px;}
.y10a{bottom:396.496500px;}
.y11e{bottom:396.498300px;}
.y68{bottom:396.513000px;}
.y184{bottom:397.577100px;}
.y138{bottom:398.382450px;}
.y156{bottom:405.727200px;}
.yaa{bottom:406.485000px;}
.yd4{bottom:408.756750px;}
.y1df{bottom:409.672350px;}
.y1b1{bottom:409.675050px;}
.y19b{bottom:410.684850px;}
.y1ec{bottom:410.687550px;}
.y173{bottom:410.835600px;}
.yf8{bottom:410.898300px;}
.y83{bottom:410.913000px;}
.y1c4{bottom:411.697350px;}
.y3d{bottom:412.432950px;}
.y11d{bottom:414.498300px;}
.y67{bottom:414.513000px;}
.y137{bottom:416.382450px;}
.y109{bottom:417.759000px;}
.y183{bottom:418.839600px;}
.ya9{bottom:424.485000px;}
.y155{bottom:425.947200px;}
.yd3{bottom:426.756750px;}
.yf7{bottom:428.898300px;}
.y82{bottom:428.913000px;}
.y3c{bottom:430.432950px;}
.y172{bottom:430.545600px;}
.y1de{bottom:430.934850px;}
.y1b0{bottom:430.937550px;}
.y19a{bottom:431.947350px;}
.y1f1{bottom:431.950050px;}
.y11c{bottom:432.498300px;}
.y66{bottom:432.513000px;}
.y1c3{bottom:432.959850px;}
.y136{bottom:434.382450px;}
.y13{bottom:435.072900px;}
.y108{bottom:439.021500px;}
.y182{bottom:440.102100px;}
.ya8{bottom:444.705000px;}
.yd2{bottom:444.756750px;}
.y154{bottom:446.167200px;}
.yf6{bottom:446.898300px;}
.y81{bottom:446.913000px;}
.y3b{bottom:448.432950px;}
.y171{bottom:450.255600px;}
.y11b{bottom:450.498300px;}
.y65{bottom:450.513000px;}
.y1dd{bottom:452.197350px;}
.y1af{bottom:452.200050px;}
.y135{bottom:452.382450px;}
.y199{bottom:453.209850px;}
.y166{bottom:456.445650px;}
.y12{bottom:456.672900px;}
.y107{bottom:460.284000px;}
.y181{bottom:461.364600px;}
.ya7{bottom:462.705000px;}
.yd1{bottom:462.756750px;}
.yf5{bottom:464.898300px;}
.y80{bottom:464.913000px;}
.y153{bottom:466.387200px;}
.y3a{bottom:466.432950px;}
.y11a{bottom:468.498300px;}
.y64{bottom:468.513000px;}
.y170{bottom:469.965600px;}
.y134{bottom:470.382450px;}
.y1dc{bottom:473.459850px;}
.y1ae{bottom:473.462550px;}
.y198{bottom:474.472350px;}
.y11{bottom:474.672900px;}
.y105{bottom:481.546500px;}
.y180{bottom:482.627100px;}
.yf4{bottom:482.898300px;}
.y7f{bottom:482.913000px;}
.ya6{bottom:482.925000px;}
.y39{bottom:484.432950px;}
.y119{bottom:486.498300px;}
.y63{bottom:486.513000px;}
.y152{bottom:486.607200px;}
.y16f{bottom:489.675600px;}
.y10{bottom:492.672900px;}
.y1c2{bottom:494.722350px;}
.y1ad{bottom:494.725050px;}
.y197{bottom:495.734850px;}
.yd0{bottom:497.001300px;}
.yf3{bottom:500.898300px;}
.y7e{bottom:500.913000px;}
.ya5{bottom:500.925000px;}
.y104{bottom:501.796500px;}
.y38{bottom:502.432950px;}
.y106{bottom:502.809000px;}
.y17f{bottom:503.889600px;}
.y118{bottom:504.498300px;}
.y62{bottom:504.513000px;}
.y133{bottom:506.405400px;}
.y151{bottom:506.827200px;}
.y16e{bottom:509.385600px;}
.yf{bottom:510.672900px;}
.ycf{bottom:511.401300px;}
.y1c1{bottom:515.984850px;}
.y1ac{bottom:515.987550px;}
.y196{bottom:516.997350px;}
.y7d{bottom:518.913000px;}
.y37{bottom:520.432950px;}
.ya4{bottom:521.145000px;}
.y117{bottom:522.498300px;}
.y61{bottom:522.513000px;}
.y132{bottom:522.605400px;}
.y17e{bottom:525.152100px;}
.yce{bottom:525.801300px;}
.y219{bottom:526.098300px;}
.y150{bottom:527.047200px;}
.y14b{bottom:528.218100px;}
.ye{bottom:528.672900px;}
.y16d{bottom:529.095600px;}
.yf2{bottom:536.898300px;}
.y7c{bottom:536.913000px;}
.y1c0{bottom:537.247350px;}
.y1ab{bottom:537.250050px;}
.y195{bottom:538.259850px;}
.y36{bottom:538.432950px;}
.y131{bottom:538.805400px;}
.ya3{bottom:539.145000px;}
.ycd{bottom:540.201300px;}
.y116{bottom:540.498300px;}
.y60{bottom:540.513000px;}
.y218{bottom:542.298300px;}
.y103{bottom:542.313000px;}
.y17d{bottom:546.414600px;}
.yd{bottom:546.672900px;}
.y14f{bottom:547.267200px;}
.y16c{bottom:548.805600px;}
.y7b{bottom:554.913000px;}
.y35{bottom:556.432950px;}
.y115{bottom:558.498300px;}
.y1bf{bottom:558.509850px;}
.y1aa{bottom:558.512550px;}
.y5f{bottom:558.513000px;}
.ya2{bottom:559.365000px;}
.y194{bottom:559.522350px;}
.y16b{bottom:568.515600px;}
.y7a{bottom:572.913000px;}
.y130{bottom:573.338400px;}
.y34{bottom:574.432950px;}
.ycc{bottom:574.725300px;}
.y114{bottom:576.498300px;}
.y5e{bottom:576.513000px;}
.ya1{bottom:577.365000px;}
.y193{bottom:579.772350px;}
.y1a9{bottom:579.775050px;}
.y14e{bottom:585.915300px;}
.y79{bottom:590.913000px;}
.y33{bottom:592.432950px;}
.yf1{bottom:594.498300px;}
.y5d{bottom:594.513000px;}
.y12f{bottom:594.600900px;}
.ycb{bottom:594.945300px;}
.y14d{bottom:595.269150px;}
.y165{bottom:595.275450px;}
.ya0{bottom:597.585000px;}
.y192{bottom:601.034850px;}
.yc{bottom:604.272900px;}
.y16a{bottom:606.643500px;}
.y78{bottom:608.913000px;}
.y32{bottom:610.432950px;}
.yf0{bottom:612.498300px;}
.y5c{bottom:612.513000px;}
.yca{bottom:612.945300px;}
.y9f{bottom:615.585000px;}
.y12e{bottom:615.863400px;}
.y167{bottom:616.535400px;}
.yb{bottom:620.472900px;}
.y77{bottom:626.913000px;}
.y31{bottom:628.432950px;}
.yef{bottom:630.498300px;}
.y5b{bottom:630.513000px;}
.yc9{bottom:630.945300px;}
.y9e{bottom:635.805000px;}
.ya{bottom:636.672900px;}
.y12d{bottom:637.125900px;}
.y76{bottom:644.913000px;}
.y30{bottom:646.432950px;}
.yee{bottom:648.498300px;}
.y5a{bottom:648.513000px;}
.yc8{bottom:651.165300px;}
.y9{bottom:652.872900px;}
.y9d{bottom:653.805000px;}
.y12c{bottom:658.388400px;}
.y75{bottom:662.913000px;}
.y2f{bottom:664.432950px;}
.yed{bottom:666.498300px;}
.y59{bottom:666.513000px;}
.yc7{bottom:669.165300px;}
.y9c{bottom:674.025000px;}
.y12b{bottom:679.650900px;}
.y74{bottom:680.913000px;}
.y2e{bottom:682.432950px;}
.yec{bottom:684.498300px;}
.y58{bottom:684.513000px;}
.yc6{bottom:687.165300px;}
.y9b{bottom:692.025000px;}
.y73{bottom:698.913000px;}
.y2d{bottom:700.432950px;}
.y12a{bottom:700.913400px;}
.yeb{bottom:702.498300px;}
.y57{bottom:702.513000px;}
.yc5{bottom:707.385300px;}
.y8{bottom:708.672900px;}
.y9a{bottom:710.025000px;}
.y72{bottom:716.913000px;}
.y2c{bottom:718.432950px;}
.yea{bottom:720.498300px;}
.y56{bottom:720.513000px;}
.y129{bottom:722.175900px;}
.yc4{bottom:725.385300px;}
.y7{bottom:726.672900px;}
.y99{bottom:730.245000px;}
.y71{bottom:734.913000px;}
.y2b{bottom:736.432950px;}
.ye9{bottom:738.498300px;}
.y55{bottom:738.513000px;}
.y128{bottom:744.639900px;}
.y6{bottom:744.672900px;}
.yc3{bottom:745.605300px;}
.y98{bottom:748.245000px;}
.y70{bottom:752.913000px;}
.y2a{bottom:754.432950px;}
.ye8{bottom:756.498300px;}
.y54{bottom:756.513000px;}
.yc2{bottom:763.605300px;}
.y127{bottom:765.902400px;}
.y97{bottom:768.465000px;}
.y6f{bottom:770.913000px;}
.y29{bottom:772.432950px;}
.ye7{bottom:774.498300px;}
.y53{bottom:774.513000px;}
.y5{bottom:780.674400px;}
.yc1{bottom:781.605300px;}
.y96{bottom:786.465000px;}
.y126{bottom:787.164900px;}
.y28{bottom:790.432950px;}
.ye6{bottom:792.498300px;}
.y52{bottom:792.513000px;}
.y124{bottom:798.934950px;}
.yc0{bottom:801.825300px;}
.y4{bottom:802.272900px;}
.y95{bottom:806.685000px;}
.y6e{bottom:806.913000px;}
.y123{bottom:807.414900px;}
.y27{bottom:808.432950px;}
.ye5{bottom:810.498300px;}
.y51{bottom:810.513000px;}
.y92{bottom:818.437050px;}
.ybf{bottom:819.825300px;}
.y3{bottom:822.072900px;}
.y94{bottom:824.685000px;}
.y26{bottom:826.432950px;}
.y125{bottom:827.664900px;}
.ye4{bottom:828.498300px;}
.y50{bottom:828.513000px;}
.y91{bottom:834.187050px;}
.ybe{bottom:840.045300px;}
.y25{bottom:844.432950px;}
.y93{bottom:844.905000px;}
.ye3{bottom:846.498300px;}
.y4f{bottom:846.513000px;}
.ybb{bottom:851.797350px;}
.ybd{bottom:858.045300px;}
.ye2{bottom:864.498300px;}
.y4e{bottom:864.513000px;}
.y122{bottom:867.348150px;}
.yba{bottom:867.547350px;}
.ybc{bottom:878.265300px;}
.y24{bottom:880.432950px;}
.ye1{bottom:882.498300px;}
.y4d{bottom:882.513000px;}
.y90{bottom:883.548150px;}
.y22{bottom:910.196700px;}
.y23{bottom:913.316850px;}
.y4a{bottom:914.356800px;}
.h9{height:36.852539px;}
.hf{height:39.484863px;}
.h7{height:42.117188px;}
.he{height:43.221436px;}
.h8{height:43.222036px;}
.h2{height:47.381836px;}
.hb{height:51.796875px;}
.h5{height:52.646484px;}
.h3{height:57.911133px;}
.h4{height:60.801480px;}
.h6{height:63.175781px;}
.ha{height:80.197388px;}
.h10{height:87.881836px;}
.hc{height:722.835000px;}
.hd{height:723.000000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.w2{width:1020.472500px;}
.w3{width:1020.750000px;}
.x0{left:0.000000px;}
.x27{left:42.472350px;}
.x26{left:58.672350px;}
.x28{left:97.795350px;}
.x2e{left:102.422850px;}
.x2a{left:104.133000px;}
.xa{left:106.299150px;}
.x2d{left:107.530350px;}
.x2f{left:109.259250px;}
.xd{left:111.110700px;}
.x24{left:114.883050px;}
.x1c{left:117.160650px;}
.x29{left:119.229000px;}
.x2{left:127.560450px;}
.x4{left:132.561750px;}
.x19{left:133.936650px;}
.x3{left:144.672750px;}
.x9{left:148.818900px;}
.x6{left:152.349900px;}
.x7{left:153.354900px;}
.x1d{left:174.212550px;}
.xc{left:194.616600px;}
.x13{left:209.089800px;}
.xf{left:213.697800px;}
.x10{left:215.701800px;}
.x12{left:221.725800px;}
.x15{left:234.957750px;}
.x16{left:236.961750px;}
.x18{left:243.009750px;}
.x11{left:264.601800px;}
.x17{left:285.861750px;}
.x1b{left:286.891650px;}
.x1f{left:301.655550px;}
.x20{left:311.200050px;}
.x1e{left:327.818550px;}
.x5{left:329.406750px;}
.x8{left:335.748300px;}
.xb{left:364.513650px;}
.xe{left:381.865800px;}
.x14{left:403.125750px;}
.x1a{left:421.621650px;}
.x21{left:440.597550px;}
.x23{left:450.223050px;}
.x22{left:461.738550px;}
.x1{left:501.429450px;}
.x2b{left:880.432650px;}
.x2c{left:913.316850px;}
.x25{left:914.356950px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v6{vertical-align:-3.697600pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.697600pt;}
.v4{vertical-align:15.984000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:21.306667pt;}
.v7{vertical-align:33.849067pt;}
.v8{vertical-align:36.000000pt;}
.ls12{letter-spacing:-1.776000pt;}
.ls10{letter-spacing:-1.480000pt;}
.ls7{letter-spacing:-1.150453pt;}
.ls8{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.310933pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.155467pt;}
.lsa{letter-spacing:0.266667pt;}
.ls6{letter-spacing:0.310933pt;}
.ls5{letter-spacing:0.533333pt;}
.lsc{letter-spacing:0.933333pt;}
.ls3{letter-spacing:1.088267pt;}
.ls11{letter-spacing:1.200000pt;}
.lsf{letter-spacing:1.400000pt;}
.ls4{letter-spacing:1.493333pt;}
.lse{letter-spacing:1.680000pt;}
.ls1{letter-spacing:1.866667pt;}
.ls0{letter-spacing:2.053333pt;}
.lsd{letter-spacing:9.600000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.200000pt;}
.wse6{word-spacing:-13.680000pt;}
.ws52{word-spacing:-13.333333pt;}
.wse5{word-spacing:-12.160000pt;}
.ws0{word-spacing:-12.000000pt;}
.wscf{word-spacing:-9.600000pt;}
.ws1{word-spacing:-8.861600pt;}
.ws86{word-spacing:-7.928800pt;}
.ws4{word-spacing:-7.773333pt;}
.ws6b{word-spacing:-7.462400pt;}
.ws53{word-spacing:-6.622880pt;}
.ws28{word-spacing:-3.360000pt;}
.ws129{word-spacing:-3.093333pt;}
.ws3e{word-spacing:-2.720000pt;}
.ws114{word-spacing:-2.640000pt;}
.wse8{word-spacing:-2.592000pt;}
.ws1d{word-spacing:-2.560000pt;}
.wsde{word-spacing:-2.506667pt;}
.wsff{word-spacing:-2.453333pt;}
.ws3b{word-spacing:-2.400000pt;}
.wsa3{word-spacing:-2.346667pt;}
.ws6d{word-spacing:-2.293333pt;}
.wsfc{word-spacing:-2.240000pt;}
.wsbe{word-spacing:-2.186667pt;}
.wsba{word-spacing:-2.133333pt;}
.ws6e{word-spacing:-2.080000pt;}
.ws6c{word-spacing:-2.026667pt;}
.wse{word-spacing:-1.973333pt;}
.ws8a{word-spacing:-1.920000pt;}
.ws8{word-spacing:-1.866667pt;}
.wsa1{word-spacing:-1.813333pt;}
.ws14{word-spacing:-1.792000pt;}
.ws120{word-spacing:-1.776000pt;}
.ws5d{word-spacing:-1.760000pt;}
.wsc{word-spacing:-1.706667pt;}
.wsd0{word-spacing:-1.680000pt;}
.ws68{word-spacing:-1.664000pt;}
.ws41{word-spacing:-1.600000pt;}
.wsb2{word-spacing:-1.546667pt;}
.ws50{word-spacing:-1.536000pt;}
.ws18{word-spacing:-1.493333pt;}
.wsad{word-spacing:-1.450667pt;}
.ws12c{word-spacing:-1.440000pt;}
.wsaf{word-spacing:-1.408000pt;}
.ws1f{word-spacing:-1.386667pt;}
.wsd5{word-spacing:-1.365333pt;}
.ws42{word-spacing:-1.333333pt;}
.ws67{word-spacing:-1.322667pt;}
.ws73{word-spacing:-1.280000pt;}
.ws19{word-spacing:-1.226667pt;}
.ws112{word-spacing:-1.200000pt;}
.ws1e{word-spacing:-1.173333pt;}
.ws3a{word-spacing:-1.152000pt;}
.ws9{word-spacing:-1.066667pt;}
.ws9c{word-spacing:-1.013333pt;}
.ws6{word-spacing:-0.997333pt;}
.ws25{word-spacing:-0.960000pt;}
.ws85{word-spacing:-0.938667pt;}
.wsaa{word-spacing:-0.933333pt;}
.ws7{word-spacing:-0.906667pt;}
.wsb7{word-spacing:-0.896000pt;}
.ws113{word-spacing:-0.864000pt;}
.ws5b{word-spacing:-0.853333pt;}
.wsf5{word-spacing:-0.810667pt;}
.ws23{word-spacing:-0.800000pt;}
.ws61{word-spacing:-0.768000pt;}
.wsb3{word-spacing:-0.746667pt;}
.ws76{word-spacing:-0.693333pt;}
.ws10c{word-spacing:-0.680000pt;}
.ws35{word-spacing:-0.640000pt;}
.wsab{word-spacing:-0.634667pt;}
.ws5f{word-spacing:-0.586667pt;}
.ws3c{word-spacing:-0.533333pt;}
.ws7c{word-spacing:-0.512000pt;}
.ws87{word-spacing:-0.480000pt;}
.ws13{word-spacing:-0.469333pt;}
.ws59{word-spacing:-0.426667pt;}
.wsee{word-spacing:-0.373333pt;}
.ws84{word-spacing:-0.341333pt;}
.wsb1{word-spacing:-0.320000pt;}
.ws72{word-spacing:-0.310933pt;}
.ws47{word-spacing:-0.266667pt;}
.ws43{word-spacing:-0.213333pt;}
.wsa{word-spacing:-0.160000pt;}
.wsd4{word-spacing:-0.128000pt;}
.ws2d{word-spacing:-0.106667pt;}
.wse3{word-spacing:-0.085333pt;}
.ws9a{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.wsb0{word-spacing:0.053333pt;}
.wsa4{word-spacing:0.085333pt;}
.ws20{word-spacing:0.106667pt;}
.ws98{word-spacing:0.128000pt;}
.ws2e{word-spacing:0.160000pt;}
.wsc1{word-spacing:0.170667pt;}
.ws71{word-spacing:0.213333pt;}
.wsdd{word-spacing:0.266667pt;}
.ws34{word-spacing:0.298667pt;}
.wsc9{word-spacing:0.320000pt;}
.ws10d{word-spacing:0.336000pt;}
.wsa5{word-spacing:0.341333pt;}
.ws22{word-spacing:0.373333pt;}
.ws36{word-spacing:0.384000pt;}
.ws2f{word-spacing:0.426667pt;}
.wsdb{word-spacing:0.469333pt;}
.ws91{word-spacing:0.480000pt;}
.ws7d{word-spacing:0.512000pt;}
.wsef{word-spacing:0.533333pt;}
.ws46{word-spacing:0.586667pt;}
.ws56{word-spacing:0.640000pt;}
.ws66{word-spacing:0.682667pt;}
.wseb{word-spacing:0.693333pt;}
.ws51{word-spacing:0.725333pt;}
.ws1c{word-spacing:0.746667pt;}
.ws5e{word-spacing:0.800000pt;}
.ws83{word-spacing:0.853333pt;}
.ws126{word-spacing:0.864000pt;}
.ws77{word-spacing:0.906667pt;}
.ws7e{word-spacing:0.938667pt;}
.ws32{word-spacing:0.960000pt;}
.ws92{word-spacing:0.981333pt;}
.ws26{word-spacing:1.013333pt;}
.ws16{word-spacing:1.066667pt;}
.ws40{word-spacing:1.120000pt;}
.ws69{word-spacing:1.152000pt;}
.wscb{word-spacing:1.173333pt;}
.wsc3{word-spacing:1.194667pt;}
.wsb{word-spacing:1.226667pt;}
.wsd9{word-spacing:1.237333pt;}
.ws1b{word-spacing:1.280000pt;}
.wse0{word-spacing:1.322667pt;}
.ws29{word-spacing:1.333333pt;}
.wsc0{word-spacing:1.386667pt;}
.wsc4{word-spacing:1.408000pt;}
.ws9b{word-spacing:1.440000pt;}
.ws21{word-spacing:1.493333pt;}
.ws9f{word-spacing:1.546667pt;}
.ws81{word-spacing:1.578667pt;}
.ws74{word-spacing:1.600000pt;}
.ws10{word-spacing:1.706667pt;}
.ws93{word-spacing:1.749333pt;}
.ws96{word-spacing:1.792000pt;}
.wsf{word-spacing:1.813333pt;}
.ws4d{word-spacing:1.866667pt;}
.wse7{word-spacing:1.872000pt;}
.wsa0{word-spacing:1.920000pt;}
.wse2{word-spacing:1.962667pt;}
.ws27{word-spacing:1.973333pt;}
.ws39{word-spacing:2.005333pt;}
.ws8e{word-spacing:2.026667pt;}
.wsae{word-spacing:2.048000pt;}
.ws4b{word-spacing:2.080000pt;}
.ws64{word-spacing:2.133333pt;}
.ws65{word-spacing:2.176000pt;}
.ws89{word-spacing:2.186667pt;}
.ws4c{word-spacing:2.240000pt;}
.ws4f{word-spacing:2.261333pt;}
.ws90{word-spacing:2.293333pt;}
.ws80{word-spacing:2.304000pt;}
.ws31{word-spacing:2.346667pt;}
.ws6f{word-spacing:2.400000pt;}
.ws58{word-spacing:2.453333pt;}
.wsda{word-spacing:2.474667pt;}
.ws3f{word-spacing:2.506667pt;}
.ws15{word-spacing:2.517333pt;}
.ws62{word-spacing:2.560000pt;}
.ws49{word-spacing:2.613333pt;}
.ws95{word-spacing:2.645333pt;}
.ws8f{word-spacing:2.666667pt;}
.wsfb{word-spacing:2.720000pt;}
.ws45{word-spacing:2.773333pt;}
.ws79{word-spacing:2.826667pt;}
.wsb5{word-spacing:2.880000pt;}
.ws57{word-spacing:2.933333pt;}
.ws5a{word-spacing:2.986667pt;}
.ws1a{word-spacing:3.093333pt;}
.ws82{word-spacing:3.114667pt;}
.ws7a{word-spacing:3.146667pt;}
.ws8b{word-spacing:3.200000pt;}
.wsd8{word-spacing:3.242667pt;}
.wsbf{word-spacing:3.253333pt;}
.wsbd{word-spacing:3.306667pt;}
.wsf1{word-spacing:3.360000pt;}
.wsd2{word-spacing:3.413333pt;}
.wsfe{word-spacing:3.466667pt;}
.ws7b{word-spacing:3.520000pt;}
.ws78{word-spacing:3.573333pt;}
.wsd{word-spacing:3.626667pt;}
.ws48{word-spacing:3.680000pt;}
.ws44{word-spacing:3.733333pt;}
.wscc{word-spacing:3.786667pt;}
.ws6a{word-spacing:3.797333pt;}
.ws37{word-spacing:3.840000pt;}
.ws55{word-spacing:3.893333pt;}
.wsed{word-spacing:3.946667pt;}
.ws70{word-spacing:4.000000pt;}
.ws38{word-spacing:4.010667pt;}
.wsd6{word-spacing:4.053333pt;}
.ws24{word-spacing:4.160000pt;}
.wscd{word-spacing:4.213333pt;}
.wse1{word-spacing:4.224000pt;}
.ws11{word-spacing:4.320000pt;}
.wsfa{word-spacing:4.426667pt;}
.ws97{word-spacing:4.437333pt;}
.ws94{word-spacing:4.480000pt;}
.ws63{word-spacing:4.522667pt;}
.ws12b{word-spacing:4.533333pt;}
.ws8c{word-spacing:4.586667pt;}
.wsd7{word-spacing:4.608000pt;}
.wsb6{word-spacing:4.640000pt;}
.wse9{word-spacing:4.656000pt;}
.ws4e{word-spacing:4.693333pt;}
.wsdc{word-spacing:4.746667pt;}
.ws2c{word-spacing:4.853333pt;}
.wsc8{word-spacing:4.906667pt;}
.ws99{word-spacing:4.960000pt;}
.ws128{word-spacing:5.066667pt;}
.ws30{word-spacing:5.120000pt;}
.wsdf{word-spacing:5.173333pt;}
.ws127{word-spacing:5.226667pt;}
.wsea{word-spacing:5.328000pt;}
.ws5c{word-spacing:5.333333pt;}
.wsc2{word-spacing:5.376000pt;}
.wsa2{word-spacing:5.386667pt;}
.ws7f{word-spacing:5.461333pt;}
.wsca{word-spacing:5.493333pt;}
.wsb4{word-spacing:5.546667pt;}
.wsf3{word-spacing:5.600000pt;}
.wsf9{word-spacing:5.653333pt;}
.ws33{word-spacing:5.717333pt;}
.ws4a{word-spacing:5.760000pt;}
.wsf8{word-spacing:5.920000pt;}
.wsf6{word-spacing:6.026667pt;}
.wsd1{word-spacing:6.080000pt;}
.ws60{word-spacing:6.186667pt;}
.wsce{word-spacing:6.293333pt;}
.ws54{word-spacing:6.346667pt;}
.wsbc{word-spacing:6.400000pt;}
.ws2b{word-spacing:6.613333pt;}
.ws9d{word-spacing:6.666667pt;}
.ws88{word-spacing:6.720000pt;}
.wsf2{word-spacing:6.773333pt;}
.wsf4{word-spacing:6.826667pt;}
.ws9e{word-spacing:6.880000pt;}
.wsb9{word-spacing:6.933333pt;}
.wsd3{word-spacing:6.986667pt;}
.ws12a{word-spacing:7.093333pt;}
.ws75{word-spacing:7.146667pt;}
.wsf7{word-spacing:7.253333pt;}
.ws12{word-spacing:7.306667pt;}
.ws8d{word-spacing:7.520000pt;}
.wsbb{word-spacing:7.573333pt;}
.wsb8{word-spacing:7.946667pt;}
.wsec{word-spacing:8.000000pt;}
.wsf0{word-spacing:8.213333pt;}
.ws3d{word-spacing:8.266667pt;}
.ws2a{word-spacing:9.600000pt;}
.wsfd{word-spacing:10.026667pt;}
.ws104{word-spacing:22.040000pt;}
.wsa8{word-spacing:24.533333pt;}
.ws105{word-spacing:26.480000pt;}
.ws10b{word-spacing:32.040000pt;}
.ws108{word-spacing:42.040000pt;}
.wsc7{word-spacing:45.456000pt;}
.wsa7{word-spacing:45.866667pt;}
.ws100{word-spacing:54.058667pt;}
.ws107{word-spacing:55.000000pt;}
.ws106{word-spacing:56.520000pt;}
.wsa9{word-spacing:67.200000pt;}
.ws10a{word-spacing:72.040000pt;}
.ws109{word-spacing:75.000000pt;}
.wsa6{word-spacing:77.866667pt;}
.wsc6{word-spacing:81.456000pt;}
.ws103{word-spacing:87.640000pt;}
.wsac{word-spacing:120.576000pt;}
.wsc5{word-spacing:141.456000pt;}
.ws122{word-spacing:143.904000pt;}
.ws111{word-spacing:143.952000pt;}
.ws11a{word-spacing:147.456000pt;}
.wse4{word-spacing:168.147200pt;}
.ws10e{word-spacing:185.472000pt;}
.ws125{word-spacing:189.024000pt;}
.ws110{word-spacing:209.472000pt;}
.ws101{word-spacing:210.261333pt;}
.ws123{word-spacing:213.024000pt;}
.ws10f{word-spacing:257.520000pt;}
.ws11e{word-spacing:265.536000pt;}
.ws102{word-spacing:284.928000pt;}
.ws124{word-spacing:302.640000pt;}
.ws121{word-spacing:323.088000pt;}
.ws116{word-spacing:459.168000pt;}
.ws11b{word-spacing:482.784000pt;}
.ws17{word-spacing:509.208533pt;}
.ws118{word-spacing:1092.672000pt;}
.ws11c{word-spacing:1132.704000pt;}
.ws11d{word-spacing:1162.032000pt;}
.ws119{word-spacing:1172.688000pt;}
.ws117{word-spacing:1183.344000pt;}
.ws11f{word-spacing:1188.672000pt;}
.ws115{word-spacing:1247.328000pt;}
._0{margin-left:-1738.560000pt;}
._1d{margin-left:-8.784000pt;}
._8{margin-left:-7.605333pt;}
._6{margin-left:-6.666667pt;}
._5{margin-left:-5.696000pt;}
._2{margin-left:-4.224000pt;}
._3{margin-left:-2.928000pt;}
._4{margin-left:-1.818667pt;}
._1{margin-left:-0.912000pt;}
._7{width:1.717333pt;}
._9{width:2.880000pt;}
._182{width:4.160000pt;}
._34{width:5.173333pt;}
._183{width:6.133333pt;}
._1e{width:9.600000pt;}
._d{width:26.282667pt;}
._11{width:27.989333pt;}
._b{width:29.482667pt;}
._10{width:31.146667pt;}
._a{width:32.469333pt;}
._f{width:33.493333pt;}
._14{width:35.200000pt;}
._70{width:36.445333pt;}
._6e{width:37.397333pt;}
._62{width:49.792000pt;}
._61{width:51.048000pt;}
._69{width:52.040000pt;}
._63{width:54.320000pt;}
._16{width:56.533333pt;}
._18{width:58.112000pt;}
._4a{width:60.373333pt;}
._66{width:61.610667pt;}
._68{width:62.898667pt;}
._6a{width:64.085333pt;}
._65{width:66.090667pt;}
._6c{width:67.378667pt;}
._a6{width:72.432000pt;}
._71{width:73.674667pt;}
._1a{width:77.866667pt;}
._13{width:80.725333pt;}
._67{width:82.040000pt;}
._15{width:85.674667pt;}
._6b{width:87.184000pt;}
._24{width:95.232000pt;}
._72{width:102.069333pt;}
._12{width:107.008000pt;}
._1b{width:108.629333pt;}
._122{width:110.976000pt;}
._3b{width:113.194667pt;}
._1c{width:114.842667pt;}
._21{width:117.456000pt;}
._64{width:118.400000pt;}
._33{width:122.160000pt;}
._19{width:128.341333pt;}
._17{width:131.242667pt;}
._a4{width:142.752000pt;}
._2e{width:144.384000pt;}
._16d{width:150.816000pt;}
._74{width:155.749333pt;}
._bf{width:156.813333pt;}
._5e{width:160.842667pt;}
._ba{width:170.688000pt;}
._84{width:173.037333pt;}
._3d{width:174.080000pt;}
._8f{width:175.248000pt;}
._6d{width:176.370667pt;}
._31{width:183.792000pt;}
._e{width:190.299733pt;}
._2f{width:195.792000pt;}
._7d{width:197.472000pt;}
._3c{width:199.594667pt;}
._57{width:210.773333pt;}
._141{width:213.648000pt;}
._bc{width:216.096000pt;}
._37{width:217.941333pt;}
._39{width:220.928000pt;}
._d5{width:221.893333pt;}
._11b{width:223.248000pt;}
._55{width:226.176000pt;}
._e8{width:236.448000pt;}
._6f{width:240.208000pt;}
._3a{width:241.578667pt;}
._cf{width:244.640000pt;}
._b8{width:246.304000pt;}
._bd{width:251.376000pt;}
._49{width:252.928000pt;}
._8d{width:254.784000pt;}
._53{width:255.872000pt;}
._30{width:257.904000pt;}
._44{width:263.040000pt;}
._c7{width:264.192000pt;}
._155{width:267.216000pt;}
._75{width:269.520000pt;}
._164{width:271.424000pt;}
._97{width:273.696000pt;}
._32{width:275.904000pt;}
._3f{width:278.442667pt;}
._179{width:282.298667pt;}
._59{width:283.760000pt;}
._80{width:287.088000pt;}
._eb{width:288.864000pt;}
._5f{width:290.285333pt;}
._47{width:291.456000pt;}
._10d{width:293.952000pt;}
._4c{width:295.594667pt;}
._85{width:297.456000pt;}
._8a{width:300.144000pt;}
._79{width:302.736000pt;}
._a5{width:304.848000pt;}
._101{width:306.768000pt;}
._a9{width:309.984000pt;}
._82{width:311.088000pt;}
._af{width:312.864000pt;}
._94{width:314.880000pt;}
._d3{width:320.208000pt;}
._29{width:321.648000pt;}
._60{width:322.605333pt;}
._2b{width:324.336000pt;}
._93{width:325.488000pt;}
._a1{width:326.784000pt;}
._5c{width:329.258667pt;}
._fa{width:330.864000pt;}
._14e{width:332.208000pt;}
._b5{width:333.936000pt;}
._78{width:335.088000pt;}
._81{width:336.096000pt;}
._db{width:337.488000pt;}
._2c{width:339.456000pt;}
._42{width:341.162667pt;}
._7a{width:342.816000pt;}
._124{width:344.160000pt;}
._e0{width:345.504000pt;}
._a3{width:346.896000pt;}
._51{width:348.288000pt;}
._10c{width:349.488000pt;}
._7f{width:352.128000pt;}
._137{width:353.424000pt;}
._14c{width:354.912000pt;}
._f2{width:356.112000pt;}
._132{width:357.264000pt;}
._88{width:358.608000pt;}
._f4{width:360.096000pt;}
._10f{width:361.066667pt;}
._113{width:362.784000pt;}
._87{width:364.176000pt;}
._106{width:366.816000pt;}
._9d{width:368.064000pt;}
._bb{width:369.504000pt;}
._9f{width:370.800000pt;}
._120{width:372.144000pt;}
._c4{width:373.440000pt;}
._ef{width:374.784000pt;}
._ab{width:376.128000pt;}
._16b{width:377.472000pt;}
._175{width:380.160000pt;}
._10b{width:382.560000pt;}
._73{width:384.096000pt;}
._2a{width:385.680000pt;}
._a8{width:386.832000pt;}
._108{width:388.176000pt;}
._c6{width:390.053333pt;}
._20{width:391.008000pt;}
._115{width:392.208000pt;}
._100{width:393.552000pt;}
._91{width:394.800000pt;}
._e3{width:396.096000pt;}
._10a{width:397.488000pt;}
._13b{width:398.784000pt;}
._aa{width:400.176000pt;}
._28{width:401.616000pt;}
._76{width:402.720000pt;}
._9a{width:404.160000pt;}
._96{width:405.504000pt;}
._2d{width:407.184000pt;}
._4f{width:408.704000pt;}
._127{width:412.128000pt;}
._d6{width:413.520000pt;}
._22{width:415.008000pt;}
._8c{width:416.112000pt;}
._119{width:417.072000pt;}
._102{width:420.096000pt;}
._9e{width:421.488000pt;}
._10e{width:423.072000pt;}
._ac{width:424.128000pt;}
._1f{width:425.664000pt;}
._f9{width:426.768000pt;}
._25{width:428.304000pt;}
._d1{width:429.456000pt;}
._107{width:430.800000pt;}
._c9{width:432.096000pt;}
._86{width:435.264000pt;}
._26{width:436.272000pt;}
._f5{width:437.472000pt;}
._23{width:438.960000pt;}
._144{width:440.112000pt;}
._153{width:442.800000pt;}
._a2{width:444.576000pt;}
._b4{width:445.488000pt;}
._27{width:446.928000pt;}
._14b{width:448.128000pt;}
._8b{width:453.408000pt;}
._fe{width:455.232000pt;}
._b1{width:456.864000pt;}
._170{width:458.736000pt;}
._a7{width:460.560000pt;}
._111{width:461.472000pt;}
._11c{width:462.816000pt;}
._16a{width:464.160000pt;}
._166{width:466.848000pt;}
._fb{width:468.528000pt;}
._150{width:469.488000pt;}
._162{width:470.640000pt;}
._f3{width:471.877333pt;}
._12b{width:474.192000pt;}
._be{width:477.408000pt;}
._9b{width:479.280000pt;}
._7e{width:480.181333pt;}
._17f{width:485.472000pt;}
._167{width:488.160000pt;}
._52{width:490.282667pt;}
._114{width:495.024000pt;}
._b9{width:495.936000pt;}
._90{width:496.842667pt;}
._128{width:497.904000pt;}
._77{width:500.544000pt;}
._ea{width:502.757333pt;}
._105{width:504.096000pt;}
._103{width:505.872000pt;}
._fd{width:510.816000pt;}
._109{width:512.832000pt;}
._11f{width:516.336000pt;}
._36{width:518.314667pt;}
._d4{width:520.848000pt;}
._99{width:522.165333pt;}
._11a{width:524.496000pt;}
._ce{width:526.704000pt;}
._a0{width:528.816000pt;}
._38{width:530.090667pt;}
._95{width:531.456000pt;}
._de{width:534.789333pt;}
._8e{width:536.784000pt;}
._c1{width:538.410667pt;}
._83{width:542.306667pt;}
._140{width:549.456000pt;}
._35{width:551.392000pt;}
._157{width:552.864000pt;}
._16c{width:558.096000pt;}
._7b{width:560.784000pt;}
._7c{width:563.264000pt;}
._92{width:566.112000pt;}
._89{width:576.768000pt;}
._c{width:582.672000pt;}
._15d{width:585.570667pt;}
._d0{width:587.376000pt;}
._dd{width:601.482667pt;}
._43{width:603.520000pt;}
._143{width:610.560000pt;}
._4b{width:625.813333pt;}
._45{width:669.994667pt;}
._5a{width:679.509333pt;}
._4e{width:697.770667pt;}
._5d{width:724.437333pt;}
._58{width:729.173333pt;}
._54{width:755.925333pt;}
._41{width:758.698667pt;}
._e5{width:772.752000pt;}
._145{width:779.472000pt;}
._4d{width:785.493333pt;}
._50{width:787.269333pt;}
._40{width:799.104000pt;}
._11e{width:826.032000pt;}
._136{width:834.138667pt;}
._180{width:837.024000pt;}
._46{width:850.032000pt;}
._f0{width:855.360000pt;}
._b6{width:864.720000pt;}
._142{width:871.536000pt;}
._d8{width:875.568000pt;}
._165{width:876.864000pt;}
._181{width:884.736000pt;}
._15f{width:886.064000pt;}
._cc{width:890.160000pt;}
._159{width:891.072000pt;}
._169{width:902.016000pt;}
._df{width:909.024000pt;}
._158{width:912.960000pt;}
._d9{width:916.800000pt;}
._129{width:918.048000pt;}
._15a{width:920.976000pt;}
._138{width:926.016000pt;}
._ed{width:928.704000pt;}
._ca{width:932.736000pt;}
._14d{width:936.672000pt;}
._125{width:939.552000pt;}
._fc{width:943.328000pt;}
._d7{width:944.928000pt;}
._c0{width:946.234667pt;}
._171{width:955.328000pt;}
._173{width:957.024000pt;}
._134{width:960.720000pt;}
._13c{width:963.360000pt;}
._f8{width:968.736000pt;}
._178{width:970.032000pt;}
._f1{width:974.064000pt;}
._151{width:975.600000pt;}
._168{width:978.144000pt;}
._e1{width:979.392000pt;}
._16f{width:980.736000pt;}
._130{width:982.272000pt;}
._16e{width:983.328000pt;}
._12e{width:984.672000pt;}
._112{width:987.600000pt;}
._13e{width:991.536000pt;}
._12f{width:992.688000pt;}
._5b{width:996.174933pt;}
._17a{width:998.016000pt;}
._174{width:1000.944000pt;}
._da{width:1003.632000pt;}
._e6{width:1004.640000pt;}
._147{width:1011.130667pt;}
._14a{width:1012.896000pt;}
._176{width:1014.096000pt;}
._56{width:1020.106667pt;}
._15c{width:1022.064000pt;}
._110{width:1023.408000pt;}
._c8{width:1024.464000pt;}
._177{width:1027.392000pt;}
._15b{width:1028.880000pt;}
._b0{width:1029.984000pt;}
._48{width:1032.533333pt;}
._149{width:1034.208000pt;}
._12d{width:1035.360000pt;}
._ae{width:1036.656000pt;}
._f6{width:1038.000000pt;}
._b2{width:1040.640000pt;}
._156{width:1042.272000pt;}
._13d{width:1044.720000pt;}
._118{width:1046.016000pt;}
._15e{width:1048.506667pt;}
._17d{width:1050.048000pt;}
._3e{width:1051.520000pt;}
._f7{width:1052.880000pt;}
._17b{width:1054.080000pt;}
._161{width:1055.568000pt;}
._c5{width:1058.016000pt;}
._e9{width:1059.248000pt;}
._c3{width:1060.656000pt;}
._12c{width:1064.832000pt;}
._cd{width:1066.272000pt;}
._116{width:1067.568000pt;}
._dc{width:1069.392000pt;}
._13a{width:1071.600000pt;}
._ee{width:1072.752000pt;}
._e7{width:1074.048000pt;}
._163{width:1075.584000pt;}
._98{width:1078.224000pt;}
._b7{width:1082.064000pt;}
._104{width:1083.360000pt;}
._146{width:1084.896000pt;}
._123{width:1087.632000pt;}
._ad{width:1088.688000pt;}
._148{width:1089.984000pt;}
._160{width:1091.376000pt;}
._cb{width:1092.864000pt;}
._b3{width:1095.312000pt;}
._121{width:1096.752000pt;}
._154{width:1100.688000pt;}
._172{width:1103.376000pt;}
._ff{width:1104.864000pt;}
._126{width:1106.688000pt;}
._ec{width:1111.632000pt;}
._13f{width:1114.080000pt;}
._139{width:1116.960000pt;}
._152{width:1119.312000pt;}
._d2{width:1124.736000pt;}
._12a{width:1127.520000pt;}
._133{width:1134.192000pt;}
._17c{width:1147.098667pt;}
._117{width:1151.136000pt;}
._e4{width:1155.504000pt;}
._135{width:1162.032000pt;}
._17e{width:1170.240000pt;}
._e2{width:1171.488000pt;}
._11d{width:1192.944000pt;}
._14f{width:1196.928000pt;}
._9c{width:1203.312000pt;}
._c2{width:1224.864000pt;}
._131{width:1227.552000pt;}
.fs5{font-size:27.984000pt;}
.fs4{font-size:31.093333pt;}
.fs2{font-size:37.312000pt;}
.fs8{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs7{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:37.752133pt;}
.y4c{bottom:37.753200pt;}
.y1{bottom:52.152133pt;}
.y4b{bottom:52.153200pt;}
.y21{bottom:86.929067pt;}
.y217{bottom:96.456000pt;}
.y202{bottom:96.927600pt;}
.y164{bottom:97.798133pt;}
.y20{bottom:99.729067pt;}
.y1db{bottom:100.455600pt;}
.y1ff{bottom:102.255600pt;}
.y191{bottom:107.701867pt;}
.yb9{bottom:109.480000pt;}
.y20c{bottom:110.607067pt;}
.y201{bottom:111.327600pt;}
.y216{bottom:112.456000pt;}
.y1f{bottom:112.529067pt;}
.y1be{bottom:118.455600pt;}
.y1a8{bottom:119.353200pt;}
.y1da{bottom:119.355600pt;}
.y1d1{bottom:120.253200pt;}
.y1fe{bottom:121.155600pt;}
.y1e{bottom:125.329067pt;}
.yb8{bottom:125.480000pt;}
.y200{bottom:125.727600pt;}
.y190{bottom:126.601867pt;}
.y20b{bottom:126.607067pt;}
.y163{bottom:126.993067pt;}
.y215{bottom:128.456000pt;}
.y1eb{bottom:137.353200pt;}
.y1bd{bottom:137.355600pt;}
.y1d{bottom:138.129067pt;}
.y1a7{bottom:138.253200pt;}
.y1d9{bottom:138.255600pt;}
.y1d0{bottom:139.153200pt;}
.y1fd{bottom:140.055600pt;}
.y20a{bottom:142.607067pt;}
.yb7{bottom:143.453333pt;}
.y214{bottom:144.456000pt;}
.y162{bottom:144.966400pt;}
.y18f{bottom:145.501867pt;}
.y145{bottom:146.117733pt;}
.y1c{bottom:150.929067pt;}
.y1ea{bottom:156.253200pt;}
.y1bc{bottom:156.255600pt;}
.y1a6{bottom:157.153200pt;}
.y1d8{bottom:157.155600pt;}
.y1cf{bottom:158.053200pt;}
.y209{bottom:158.607067pt;}
.y1fc{bottom:158.955600pt;}
.yb6{bottom:159.453333pt;}
.y213{bottom:160.456000pt;}
.y144{bottom:162.117733pt;}
.y161{bottom:162.939733pt;}
.y49{bottom:163.729067pt;}
.y18e{bottom:164.401867pt;}
.ye0{bottom:171.339333pt;}
.y208{bottom:174.607067pt;}
.y1e9{bottom:175.153200pt;}
.y1bb{bottom:175.155600pt;}
.y1a5{bottom:176.053200pt;}
.y1d7{bottom:176.055600pt;}
.y212{bottom:176.456000pt;}
.y48{bottom:176.529067pt;}
.y1ce{bottom:176.953200pt;}
.yb5{bottom:177.426667pt;}
.y1fb{bottom:177.855600pt;}
.y143{bottom:178.117733pt;}
.y160{bottom:180.913067pt;}
.y113{bottom:182.341333pt;}
.y18d{bottom:183.301867pt;}
.ydf{bottom:187.339333pt;}
.y47{bottom:189.329067pt;}
.y207{bottom:190.607067pt;}
.y211{bottom:192.456000pt;}
.yb4{bottom:193.426667pt;}
.y1e8{bottom:194.053200pt;}
.y1ba{bottom:194.055600pt;}
.y142{bottom:194.117733pt;}
.y1a4{bottom:194.953200pt;}
.y1d6{bottom:194.955600pt;}
.y1cd{bottom:195.853200pt;}
.y1fa{bottom:196.755600pt;}
.y14c{bottom:196.800133pt;}
.y15f{bottom:198.886400pt;}
.y112{bottom:201.241333pt;}
.y46{bottom:202.129067pt;}
.y18c{bottom:202.201867pt;}
.y17c{bottom:203.144267pt;}
.yde{bottom:203.339333pt;}
.y102{bottom:205.242933pt;}
.y14a{bottom:205.256000pt;}
.y206{bottom:206.607067pt;}
.y210{bottom:208.456000pt;}
.yb3{bottom:209.426667pt;}
.y141{bottom:210.117733pt;}
.y1e7{bottom:212.953200pt;}
.y1b9{bottom:212.955600pt;}
.y1a3{bottom:213.853200pt;}
.y1d5{bottom:213.855600pt;}
.y1cc{bottom:214.753200pt;}
.y45{bottom:214.929067pt;}
.y1f9{bottom:215.655600pt;}
.y15e{bottom:216.859733pt;}
.y17b{bottom:217.544267pt;}
.ydd{bottom:219.339333pt;}
.y111{bottom:220.141333pt;}
.y18b{bottom:221.101867pt;}
.y101{bottom:221.242933pt;}
.y149{bottom:221.256000pt;}
.y205{bottom:222.607067pt;}
.y20f{bottom:224.456000pt;}
.y140{bottom:226.117733pt;}
.yb2{bottom:227.400000pt;}
.y44{bottom:227.729067pt;}
.y1e6{bottom:231.853200pt;}
.y1b8{bottom:231.855600pt;}
.y17a{bottom:231.944267pt;}
.y1a2{bottom:232.753200pt;}
.y1d4{bottom:232.755600pt;}
.y1cb{bottom:233.653200pt;}
.y1f8{bottom:234.555600pt;}
.y15d{bottom:234.833067pt;}
.ydc{bottom:235.339333pt;}
.y1b{bottom:236.331467pt;}
.y100{bottom:237.242933pt;}
.y148{bottom:237.256000pt;}
.y204{bottom:238.607067pt;}
.y110{bottom:239.041333pt;}
.y18a{bottom:240.001867pt;}
.y20e{bottom:240.456000pt;}
.y8b{bottom:240.529067pt;}
.y13f{bottom:242.117733pt;}
.yb1{bottom:243.400000pt;}
.y1e5{bottom:250.753200pt;}
.y1b7{bottom:250.755600pt;}
.ydb{bottom:251.339333pt;}
.y1a1{bottom:251.653200pt;}
.y1d3{bottom:251.655600pt;}
.y1ca{bottom:252.553200pt;}
.y15c{bottom:252.806400pt;}
.yff{bottom:253.242933pt;}
.y147{bottom:253.256000pt;}
.y8a{bottom:253.329067pt;}
.y1f7{bottom:253.455600pt;}
.y203{bottom:254.607067pt;}
.y1a{bottom:255.531467pt;}
.y20d{bottom:256.456000pt;}
.y10f{bottom:257.941333pt;}
.y13e{bottom:258.117733pt;}
.y189{bottom:258.901867pt;}
.yb0{bottom:259.400000pt;}
.y179{bottom:262.587200pt;}
.y89{bottom:266.129067pt;}
.yda{bottom:267.339333pt;}
.yfe{bottom:269.242933pt;}
.y146{bottom:269.256000pt;}
.y1e4{bottom:269.653200pt;}
.y1b6{bottom:269.655600pt;}
.y1a0{bottom:270.553200pt;}
.y1d2{bottom:270.555600pt;}
.y43{bottom:270.607067pt;}
.y15b{bottom:270.779733pt;}
.y1c9{bottom:271.453200pt;}
.y19{bottom:271.531467pt;}
.y1f6{bottom:272.355600pt;}
.y6d{bottom:272.456000pt;}
.y13d{bottom:274.117733pt;}
.y10e{bottom:276.841333pt;}
.yaf{bottom:277.373333pt;}
.y188{bottom:277.801867pt;}
.y88{bottom:278.929067pt;}
.y178{bottom:280.107200pt;}
.yd9{bottom:283.339333pt;}
.yfd{bottom:285.242933pt;}
.y8f{bottom:285.256000pt;}
.y42{bottom:286.607067pt;}
.y18{bottom:287.531467pt;}
.y6c{bottom:288.456000pt;}
.y1e3{bottom:288.553200pt;}
.y1b5{bottom:288.555600pt;}
.y15a{bottom:288.753067pt;}
.y19f{bottom:289.453200pt;}
.y1f0{bottom:289.455600pt;}
.y13c{bottom:290.117733pt;}
.y1c8{bottom:290.353200pt;}
.y1f5{bottom:291.255600pt;}
.y87{bottom:291.729067pt;}
.yae{bottom:293.373333pt;}
.y177{bottom:295.107200pt;}
.y10d{bottom:295.741333pt;}
.y187{bottom:296.701867pt;}
.yd8{bottom:299.339333pt;}
.y168{bottom:300.051467pt;}
.yfc{bottom:301.242933pt;}
.y8e{bottom:301.256000pt;}
.y41{bottom:302.607067pt;}
.y17{bottom:303.531467pt;}
.y121{bottom:304.442933pt;}
.y6b{bottom:304.456000pt;}
.y86{bottom:304.529067pt;}
.y13b{bottom:306.117733pt;}
.y159{bottom:306.726400pt;}
.y1e2{bottom:307.453200pt;}
.y1b4{bottom:307.455600pt;}
.y19e{bottom:308.353200pt;}
.y1ef{bottom:308.355600pt;}
.y1c7{bottom:309.253200pt;}
.y1f4{bottom:310.155600pt;}
.yad{bottom:311.346667pt;}
.y176{bottom:312.627200pt;}
.y10c{bottom:314.641333pt;}
.yd7{bottom:315.339333pt;}
.y186{bottom:315.601867pt;}
.yfb{bottom:317.242933pt;}
.y8d{bottom:317.256000pt;}
.y85{bottom:317.329067pt;}
.y40{bottom:318.607067pt;}
.y16{bottom:319.531467pt;}
.y120{bottom:320.442933pt;}
.y6a{bottom:320.456000pt;}
.y169{bottom:321.171467pt;}
.y13a{bottom:322.117733pt;}
.y158{bottom:324.699733pt;}
.y1e1{bottom:326.353200pt;}
.y1b3{bottom:326.355600pt;}
.y19d{bottom:327.253200pt;}
.y1ee{bottom:327.255600pt;}
.yac{bottom:327.346667pt;}
.y1c6{bottom:328.153200pt;}
.y1f3{bottom:328.155600pt;}
.y175{bottom:330.147200pt;}
.yd6{bottom:331.339333pt;}
.yfa{bottom:333.242933pt;}
.y8c{bottom:333.256000pt;}
.y10b{bottom:333.541333pt;}
.y185{bottom:334.501867pt;}
.y3f{bottom:334.607067pt;}
.y15{bottom:335.531467pt;}
.y11f{bottom:336.442933pt;}
.y69{bottom:336.456000pt;}
.y139{bottom:338.117733pt;}
.y157{bottom:342.673067pt;}
.yab{bottom:343.346667pt;}
.y1e0{bottom:345.253200pt;}
.y1b2{bottom:345.255600pt;}
.y19c{bottom:346.153200pt;}
.y1ed{bottom:346.155600pt;}
.y1c5{bottom:347.053200pt;}
.y1f2{bottom:347.055600pt;}
.yd5{bottom:347.339333pt;}
.y174{bottom:347.667200pt;}
.yf9{bottom:349.242933pt;}
.y84{bottom:349.256000pt;}
.y3e{bottom:350.607067pt;}
.y14{bottom:351.531467pt;}
.y10a{bottom:352.441333pt;}
.y11e{bottom:352.442933pt;}
.y68{bottom:352.456000pt;}
.y184{bottom:353.401867pt;}
.y138{bottom:354.117733pt;}
.y156{bottom:360.646400pt;}
.yaa{bottom:361.320000pt;}
.yd4{bottom:363.339333pt;}
.y1df{bottom:364.153200pt;}
.y1b1{bottom:364.155600pt;}
.y19b{bottom:365.053200pt;}
.y1ec{bottom:365.055600pt;}
.y173{bottom:365.187200pt;}
.yf8{bottom:365.242933pt;}
.y83{bottom:365.256000pt;}
.y1c4{bottom:365.953200pt;}
.y3d{bottom:366.607067pt;}
.y11d{bottom:368.442933pt;}
.y67{bottom:368.456000pt;}
.y137{bottom:370.117733pt;}
.y109{bottom:371.341333pt;}
.y183{bottom:372.301867pt;}
.ya9{bottom:377.320000pt;}
.y155{bottom:378.619733pt;}
.yd3{bottom:379.339333pt;}
.yf7{bottom:381.242933pt;}
.y82{bottom:381.256000pt;}
.y3c{bottom:382.607067pt;}
.y172{bottom:382.707200pt;}
.y1de{bottom:383.053200pt;}
.y1b0{bottom:383.055600pt;}
.y19a{bottom:383.953200pt;}
.y1f1{bottom:383.955600pt;}
.y11c{bottom:384.442933pt;}
.y66{bottom:384.456000pt;}
.y1c3{bottom:384.853200pt;}
.y136{bottom:386.117733pt;}
.y13{bottom:386.731467pt;}
.y108{bottom:390.241333pt;}
.y182{bottom:391.201867pt;}
.ya8{bottom:395.293333pt;}
.yd2{bottom:395.339333pt;}
.y154{bottom:396.593067pt;}
.yf6{bottom:397.242933pt;}
.y81{bottom:397.256000pt;}
.y3b{bottom:398.607067pt;}
.y171{bottom:400.227200pt;}
.y11b{bottom:400.442933pt;}
.y65{bottom:400.456000pt;}
.y1dd{bottom:401.953200pt;}
.y1af{bottom:401.955600pt;}
.y135{bottom:402.117733pt;}
.y199{bottom:402.853200pt;}
.y166{bottom:405.729467pt;}
.y12{bottom:405.931467pt;}
.y107{bottom:409.141333pt;}
.y181{bottom:410.101867pt;}
.ya7{bottom:411.293333pt;}
.yd1{bottom:411.339333pt;}
.yf5{bottom:413.242933pt;}
.y80{bottom:413.256000pt;}
.y153{bottom:414.566400pt;}
.y3a{bottom:414.607067pt;}
.y11a{bottom:416.442933pt;}
.y64{bottom:416.456000pt;}
.y170{bottom:417.747200pt;}
.y134{bottom:418.117733pt;}
.y1dc{bottom:420.853200pt;}
.y1ae{bottom:420.855600pt;}
.y198{bottom:421.753200pt;}
.y11{bottom:421.931467pt;}
.y105{bottom:428.041333pt;}
.y180{bottom:429.001867pt;}
.yf4{bottom:429.242933pt;}
.y7f{bottom:429.256000pt;}
.ya6{bottom:429.266667pt;}
.y39{bottom:430.607067pt;}
.y119{bottom:432.442933pt;}
.y63{bottom:432.456000pt;}
.y152{bottom:432.539733pt;}
.y16f{bottom:435.267200pt;}
.y10{bottom:437.931467pt;}
.y1c2{bottom:439.753200pt;}
.y1ad{bottom:439.755600pt;}
.y197{bottom:440.653200pt;}
.yd0{bottom:441.778933pt;}
.yf3{bottom:445.242933pt;}
.y7e{bottom:445.256000pt;}
.ya5{bottom:445.266667pt;}
.y104{bottom:446.041333pt;}
.y38{bottom:446.607067pt;}
.y106{bottom:446.941333pt;}
.y17f{bottom:447.901867pt;}
.y118{bottom:448.442933pt;}
.y62{bottom:448.456000pt;}
.y133{bottom:450.138133pt;}
.y151{bottom:450.513067pt;}
.y16e{bottom:452.787200pt;}
.yf{bottom:453.931467pt;}
.ycf{bottom:454.578933pt;}
.y1c1{bottom:458.653200pt;}
.y1ac{bottom:458.655600pt;}
.y196{bottom:459.553200pt;}
.y7d{bottom:461.256000pt;}
.y37{bottom:462.607067pt;}
.ya4{bottom:463.240000pt;}
.y117{bottom:464.442933pt;}
.y61{bottom:464.456000pt;}
.y132{bottom:464.538133pt;}
.y17e{bottom:466.801867pt;}
.yce{bottom:467.378933pt;}
.y219{bottom:467.642933pt;}
.y150{bottom:468.486400pt;}
.y14b{bottom:469.527200pt;}
.ye{bottom:469.931467pt;}
.y16d{bottom:470.307200pt;}
.yf2{bottom:477.242933pt;}
.y7c{bottom:477.256000pt;}
.y1c0{bottom:477.553200pt;}
.y1ab{bottom:477.555600pt;}
.y195{bottom:478.453200pt;}
.y36{bottom:478.607067pt;}
.y131{bottom:478.938133pt;}
.ya3{bottom:479.240000pt;}
.ycd{bottom:480.178933pt;}
.y116{bottom:480.442933pt;}
.y60{bottom:480.456000pt;}
.y218{bottom:482.042933pt;}
.y103{bottom:482.056000pt;}
.y17d{bottom:485.701867pt;}
.yd{bottom:485.931467pt;}
.y14f{bottom:486.459733pt;}
.y16c{bottom:487.827200pt;}
.y7b{bottom:493.256000pt;}
.y35{bottom:494.607067pt;}
.y115{bottom:496.442933pt;}
.y1bf{bottom:496.453200pt;}
.y1aa{bottom:496.455600pt;}
.y5f{bottom:496.456000pt;}
.ya2{bottom:497.213333pt;}
.y194{bottom:497.353200pt;}
.y16b{bottom:505.347200pt;}
.y7a{bottom:509.256000pt;}
.y130{bottom:509.634133pt;}
.y34{bottom:510.607067pt;}
.ycc{bottom:510.866933pt;}
.y114{bottom:512.442933pt;}
.y5e{bottom:512.456000pt;}
.ya1{bottom:513.213333pt;}
.y193{bottom:515.353200pt;}
.y1a9{bottom:515.355600pt;}
.y14e{bottom:520.813600pt;}
.y79{bottom:525.256000pt;}
.y33{bottom:526.607067pt;}
.yf1{bottom:528.442933pt;}
.y5d{bottom:528.456000pt;}
.y12f{bottom:528.534133pt;}
.ycb{bottom:528.840267pt;}
.y14d{bottom:529.128133pt;}
.y165{bottom:529.133733pt;}
.ya0{bottom:531.186667pt;}
.y192{bottom:534.253200pt;}
.yc{bottom:537.131467pt;}
.y16a{bottom:539.238667pt;}
.y78{bottom:541.256000pt;}
.y32{bottom:542.607067pt;}
.yf0{bottom:544.442933pt;}
.y5c{bottom:544.456000pt;}
.yca{bottom:544.840267pt;}
.y9f{bottom:547.186667pt;}
.y12e{bottom:547.434133pt;}
.y167{bottom:548.031467pt;}
.yb{bottom:551.531467pt;}
.y77{bottom:557.256000pt;}
.y31{bottom:558.607067pt;}
.yef{bottom:560.442933pt;}
.y5b{bottom:560.456000pt;}
.yc9{bottom:560.840267pt;}
.y9e{bottom:565.160000pt;}
.ya{bottom:565.931467pt;}
.y12d{bottom:566.334133pt;}
.y76{bottom:573.256000pt;}
.y30{bottom:574.607067pt;}
.yee{bottom:576.442933pt;}
.y5a{bottom:576.456000pt;}
.yc8{bottom:578.813600pt;}
.y9{bottom:580.331467pt;}
.y9d{bottom:581.160000pt;}
.y12c{bottom:585.234133pt;}
.y75{bottom:589.256000pt;}
.y2f{bottom:590.607067pt;}
.yed{bottom:592.442933pt;}
.y59{bottom:592.456000pt;}
.yc7{bottom:594.813600pt;}
.y9c{bottom:599.133333pt;}
.y12b{bottom:604.134133pt;}
.y74{bottom:605.256000pt;}
.y2e{bottom:606.607067pt;}
.yec{bottom:608.442933pt;}
.y58{bottom:608.456000pt;}
.yc6{bottom:610.813600pt;}
.y9b{bottom:615.133333pt;}
.y73{bottom:621.256000pt;}
.y2d{bottom:622.607067pt;}
.y12a{bottom:623.034133pt;}
.yeb{bottom:624.442933pt;}
.y57{bottom:624.456000pt;}
.yc5{bottom:628.786933pt;}
.y8{bottom:629.931467pt;}
.y9a{bottom:631.133333pt;}
.y72{bottom:637.256000pt;}
.y2c{bottom:638.607067pt;}
.yea{bottom:640.442933pt;}
.y56{bottom:640.456000pt;}
.y129{bottom:641.934133pt;}
.yc4{bottom:644.786933pt;}
.y7{bottom:645.931467pt;}
.y99{bottom:649.106667pt;}
.y71{bottom:653.256000pt;}
.y2b{bottom:654.607067pt;}
.ye9{bottom:656.442933pt;}
.y55{bottom:656.456000pt;}
.y128{bottom:661.902133pt;}
.y6{bottom:661.931467pt;}
.yc3{bottom:662.760267pt;}
.y98{bottom:665.106667pt;}
.y70{bottom:669.256000pt;}
.y2a{bottom:670.607067pt;}
.ye8{bottom:672.442933pt;}
.y54{bottom:672.456000pt;}
.yc2{bottom:678.760267pt;}
.y127{bottom:680.802133pt;}
.y97{bottom:683.080000pt;}
.y6f{bottom:685.256000pt;}
.y29{bottom:686.607067pt;}
.ye7{bottom:688.442933pt;}
.y53{bottom:688.456000pt;}
.y5{bottom:693.932800pt;}
.yc1{bottom:694.760267pt;}
.y96{bottom:699.080000pt;}
.y126{bottom:699.702133pt;}
.y28{bottom:702.607067pt;}
.ye6{bottom:704.442933pt;}
.y52{bottom:704.456000pt;}
.y124{bottom:710.164400pt;}
.yc0{bottom:712.733600pt;}
.y4{bottom:713.131467pt;}
.y95{bottom:717.053333pt;}
.y6e{bottom:717.256000pt;}
.y123{bottom:717.702133pt;}
.y27{bottom:718.607067pt;}
.ye5{bottom:720.442933pt;}
.y51{bottom:720.456000pt;}
.y92{bottom:727.499600pt;}
.ybf{bottom:728.733600pt;}
.y3{bottom:730.731467pt;}
.y94{bottom:733.053333pt;}
.y26{bottom:734.607067pt;}
.y125{bottom:735.702133pt;}
.ye4{bottom:736.442933pt;}
.y50{bottom:736.456000pt;}
.y91{bottom:741.499600pt;}
.ybe{bottom:746.706933pt;}
.y25{bottom:750.607067pt;}
.y93{bottom:751.026667pt;}
.ye3{bottom:752.442933pt;}
.y4f{bottom:752.456000pt;}
.ybb{bottom:757.153200pt;}
.ybd{bottom:762.706933pt;}
.ye2{bottom:768.442933pt;}
.y4e{bottom:768.456000pt;}
.y122{bottom:770.976133pt;}
.yba{bottom:771.153200pt;}
.ybc{bottom:780.680267pt;}
.y24{bottom:782.607067pt;}
.ye1{bottom:784.442933pt;}
.y4d{bottom:784.456000pt;}
.y90{bottom:785.376133pt;}
.y22{bottom:809.063733pt;}
.y23{bottom:811.837200pt;}
.y4a{bottom:812.761600pt;}
.h9{height:32.757812pt;}
.hf{height:35.097656pt;}
.h7{height:37.437500pt;}
.he{height:38.419054pt;}
.h8{height:38.419587pt;}
.h2{height:42.117188pt;}
.hb{height:46.041667pt;}
.h5{height:46.796875pt;}
.h3{height:51.476562pt;}
.h4{height:54.045760pt;}
.h6{height:56.156250pt;}
.ha{height:71.286567pt;}
.h10{height:78.117188pt;}
.hc{height:642.520000pt;}
.hd{height:642.666667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.w2{width:907.086667pt;}
.w3{width:907.333333pt;}
.x0{left:0.000000pt;}
.x27{left:37.753200pt;}
.x26{left:52.153200pt;}
.x28{left:86.929200pt;}
.x2e{left:91.042533pt;}
.x2a{left:92.562667pt;}
.xa{left:94.488133pt;}
.x2d{left:95.582533pt;}
.x2f{left:97.119333pt;}
.xd{left:98.765067pt;}
.x24{left:102.118267pt;}
.x1c{left:104.142800pt;}
.x29{left:105.981333pt;}
.x2{left:113.387067pt;}
.x4{left:117.832667pt;}
.x19{left:119.054800pt;}
.x3{left:128.598000pt;}
.x9{left:132.283467pt;}
.x6{left:135.422133pt;}
.x7{left:136.315467pt;}
.x1d{left:154.855600pt;}
.xc{left:172.992533pt;}
.x13{left:185.857600pt;}
.xf{left:189.953600pt;}
.x10{left:191.734933pt;}
.x12{left:197.089600pt;}
.x15{left:208.851333pt;}
.x16{left:210.632667pt;}
.x18{left:216.008667pt;}
.x11{left:235.201600pt;}
.x17{left:254.099333pt;}
.x1b{left:255.014800pt;}
.x1f{left:268.138267pt;}
.x20{left:276.622267pt;}
.x1e{left:291.394267pt;}
.x5{left:292.806000pt;}
.x8{left:298.442933pt;}
.xb{left:324.012133pt;}
.xe{left:339.436267pt;}
.x14{left:358.334000pt;}
.x1a{left:374.774800pt;}
.x21{left:391.642267pt;}
.x23{left:400.198267pt;}
.x22{left:410.434267pt;}
.x1{left:445.715067pt;}
.x2b{left:782.606800pt;}
.x2c{left:811.837200pt;}
.x25{left:812.761733pt;}
}




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