
    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_a3ea8d7914ef32677bc01702.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_4ec2c5f4d128bb44837b3bc0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973000;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_5d2c8ee2d20825b2845d4034.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.937000;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_62b7ec33c6792c68c344d705.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.969000;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_7bd090921ead83b341a9b74b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.681641;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_d8176082d8eb8cf1ad31794f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.730000;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_28dfd3c45f1333ea2909edd0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.954102;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_fa1177911f2f3d438362e55e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937000;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_f9ef4e34d900e1668dd8e63e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.959000;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_3c9be8e4a72c3f25084531df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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_6e7d3c6904610a832a531692.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740723;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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(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);}
.v3{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.984000px;}
.v1{vertical-align:23.975400px;}
.v2{vertical-align:31.468081px;}
.ls12{letter-spacing:-3.504000px;}
.ls16{letter-spacing:-2.544000px;}
.ls14{letter-spacing:-1.200000px;}
.ls1c{letter-spacing:-1.140000px;}
.ls8{letter-spacing:-0.982800px;}
.ls15{letter-spacing:-0.960000px;}
.ls21{letter-spacing:-0.912000px;}
.ls1a{letter-spacing:-0.864000px;}
.ls19{letter-spacing:-0.840000px;}
.ls7{letter-spacing:-0.810000px;}
.ls17{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.672000px;}
.ls13{letter-spacing:-0.624000px;}
.lsc{letter-spacing:-0.576000px;}
.ls6{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.480000px;}
.ls23{letter-spacing:-0.420000px;}
.lsb{letter-spacing:-0.384000px;}
.ls24{letter-spacing:-0.378000px;}
.ls26{letter-spacing:-0.363792px;}
.ls18{letter-spacing:-0.300000px;}
.ls1f{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.192000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.020400px;}
.ls2{letter-spacing:0.020544px;}
.ls1{letter-spacing:0.020976px;}
.ls3{letter-spacing:0.021000px;}
.ls27{letter-spacing:0.027984px;}
.ls20{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.270000px;}
.lsd{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.660000px;}
.lse{letter-spacing:0.720000px;}
.ls1b{letter-spacing:1.792200px;}
.lsf{letter-spacing:2.645400px;}
.ls10{letter-spacing:3.075000px;}
.ls0{letter-spacing:43.199928px;}
.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:-54.000000px;}
.ws7{word-spacing:-20.748000px;}
.ws6{word-spacing:-17.784000px;}
.ws128{word-spacing:-14.820000px;}
.ws114{word-spacing:-13.620000px;}
.ws2{word-spacing:-13.338000px;}
.ws4{word-spacing:-12.798000px;}
.ws77{word-spacing:-12.258000px;}
.ws5{word-spacing:-11.448000px;}
.ws0{word-spacing:-11.214000px;}
.wsdd{word-spacing:-11.040000px;}
.ws1{word-spacing:-10.896000px;}
.wsd8{word-spacing:-10.704000px;}
.wsdb{word-spacing:-10.608000px;}
.ws187{word-spacing:-10.272000px;}
.wsd9{word-spacing:-10.032000px;}
.wse1{word-spacing:-9.984000px;}
.ws155{word-spacing:-9.792000px;}
.wsb3{word-spacing:-9.696000px;}
.ws156{word-spacing:-6.380352px;}
.wsdf{word-spacing:-6.352368px;}
.ws129{word-spacing:-5.988576px;}
.wsb9{word-spacing:-3.300000px;}
.ws121{word-spacing:-3.240000px;}
.ws18a{word-spacing:-3.072000px;}
.ws11a{word-spacing:-3.060000px;}
.wsed{word-spacing:-3.000000px;}
.ws112{word-spacing:-2.940000px;}
.wsd1{word-spacing:-2.880000px;}
.ws12f{word-spacing:-2.700000px;}
.ws5a{word-spacing:-2.580000px;}
.ws108{word-spacing:-2.520000px;}
.wsef{word-spacing:-2.460000px;}
.ws2a{word-spacing:-2.400000px;}
.ws7a{word-spacing:-2.340000px;}
.ws132{word-spacing:-2.322000px;}
.wsd2{word-spacing:-2.280000px;}
.ws164{word-spacing:-2.256000px;}
.ws55{word-spacing:-2.220000px;}
.wsf{word-spacing:-2.160000px;}
.wsb8{word-spacing:-2.100000px;}
.ws49{word-spacing:-2.040000px;}
.ws28{word-spacing:-1.980000px;}
.ws82{word-spacing:-1.920000px;}
.ws198{word-spacing:-1.872000px;}
.wsff{word-spacing:-1.860000px;}
.ws3b{word-spacing:-1.740000px;}
.ws12c{word-spacing:-1.728000px;}
.wsa9{word-spacing:-1.620000px;}
.ws14b{word-spacing:-1.584000px;}
.ws4b{word-spacing:-1.560000px;}
.ws13b{word-spacing:-1.536000px;}
.wsac{word-spacing:-1.500000px;}
.wsbc{word-spacing:-1.440000px;}
.ws178{word-spacing:-1.392000px;}
.ws6a{word-spacing:-1.380000px;}
.ws19a{word-spacing:-1.344000px;}
.ws126{word-spacing:-1.320000px;}
.ws12a{word-spacing:-1.296000px;}
.ws11c{word-spacing:-1.260000px;}
.ws3e{word-spacing:-1.200000px;}
.ws14f{word-spacing:-1.152000px;}
.wsee{word-spacing:-1.140000px;}
.ws6d{word-spacing:-1.080000px;}
.ws1d{word-spacing:-1.058400px;}
.ws15f{word-spacing:-1.056000px;}
.wse3{word-spacing:-1.020000px;}
.ws137{word-spacing:-1.008000px;}
.ws69{word-spacing:-0.960000px;}
.ws1f{word-spacing:-0.936000px;}
.ws45{word-spacing:-0.900000px;}
.ws88{word-spacing:-0.840000px;}
.ws188{word-spacing:-0.816000px;}
.ws130{word-spacing:-0.780000px;}
.ws163{word-spacing:-0.768000px;}
.wsbd{word-spacing:-0.720000px;}
.ws101{word-spacing:-0.660000px;}
.wsf1{word-spacing:-0.600000px;}
.wse4{word-spacing:-0.540000px;}
.ws177{word-spacing:-0.528000px;}
.wsc1{word-spacing:-0.480000px;}
.ws36{word-spacing:-0.420000px;}
.wsa5{word-spacing:-0.360000px;}
.ws10d{word-spacing:-0.300000px;}
.ws73{word-spacing:-0.288000px;}
.ws131{word-spacing:-0.270000px;}
.wsb2{word-spacing:-0.240000px;}
.wsd7{word-spacing:-0.192000px;}
.ws44{word-spacing:-0.180000px;}
.wsf6{word-spacing:-0.144000px;}
.wsd6{word-spacing:-0.120000px;}
.ws1c{word-spacing:-0.075600px;}
.wsc9{word-spacing:-0.043585px;}
.ws8{word-spacing:0.000000px;}
.ws59{word-spacing:0.060000px;}
.ws184{word-spacing:0.096000px;}
.wsa1{word-spacing:0.120000px;}
.ws9a{word-spacing:0.180000px;}
.ws194{word-spacing:0.192000px;}
.ws14{word-spacing:0.216000px;}
.ws71{word-spacing:0.240000px;}
.ws1b{word-spacing:0.302400px;}
.ws29{word-spacing:0.360000px;}
.ws72{word-spacing:0.384000px;}
.wsba{word-spacing:0.420000px;}
.ws12b{word-spacing:0.432000px;}
.ws48{word-spacing:0.480000px;}
.ws139{word-spacing:0.528000px;}
.ws1e{word-spacing:0.540000px;}
.ws192{word-spacing:0.576000px;}
.ws68{word-spacing:0.600000px;}
.ws181{word-spacing:0.624000px;}
.ws30{word-spacing:0.660000px;}
.ws161{word-spacing:0.672000px;}
.ws15{word-spacing:0.756000px;}
.ws6e{word-spacing:0.780000px;}
.ws11{word-spacing:0.810000px;}
.wsfe{word-spacing:0.840000px;}
.ws18d{word-spacing:0.864000px;}
.ws95{word-spacing:0.900000px;}
.ws16c{word-spacing:0.912000px;}
.ws9{word-spacing:0.918000px;}
.wsb5{word-spacing:0.960000px;}
.wsf3{word-spacing:1.020000px;}
.ws14d{word-spacing:1.152000px;}
.ws5e{word-spacing:1.200000px;}
.ws17c{word-spacing:1.248000px;}
.wsb4{word-spacing:1.260000px;}
.ws154{word-spacing:1.296000px;}
.ws86{word-spacing:1.320000px;}
.ws26{word-spacing:1.380000px;}
.wsf0{word-spacing:1.440000px;}
.wscd{word-spacing:1.500000px;}
.ws12{word-spacing:1.512000px;}
.ws113{word-spacing:1.560000px;}
.ws79{word-spacing:1.620000px;}
.ws142{word-spacing:1.632000px;}
.ws120{word-spacing:1.680000px;}
.ws34{word-spacing:1.740000px;}
.ws157{word-spacing:1.776000px;}
.ws3c{word-spacing:1.800000px;}
.wse6{word-spacing:1.860000px;}
.ws138{word-spacing:1.872000px;}
.wsf5{word-spacing:1.890000px;}
.wscf{word-spacing:1.920000px;}
.ws8f{word-spacing:1.980000px;}
.ws158{word-spacing:2.016000px;}
.wsf4{word-spacing:2.052000px;}
.ws18b{word-spacing:2.064000px;}
.ws61{word-spacing:2.100000px;}
.ws193{word-spacing:2.112000px;}
.ws52{word-spacing:2.160000px;}
.ws17b{word-spacing:2.208000px;}
.ws11f{word-spacing:2.220000px;}
.wsbe{word-spacing:2.280000px;}
.wsa2{word-spacing:2.340000px;}
.ws84{word-spacing:2.400000px;}
.wsaa{word-spacing:2.460000px;}
.ws51{word-spacing:2.520000px;}
.ws102{word-spacing:2.580000px;}
.ws43{word-spacing:2.640000px;}
.ws13c{word-spacing:2.688000px;}
.wse{word-spacing:2.700000px;}
.wsaf{word-spacing:2.754000px;}
.wsca{word-spacing:2.760000px;}
.wsa{word-spacing:2.808000px;}
.ws8b{word-spacing:2.820000px;}
.ws153{word-spacing:2.832000px;}
.wsb{word-spacing:2.862000px;}
.ws63{word-spacing:2.880000px;}
.ws140{word-spacing:2.928000px;}
.ws83{word-spacing:2.940000px;}
.ws87{word-spacing:3.000000px;}
.wsae{word-spacing:3.024000px;}
.ws99{word-spacing:3.060000px;}
.ws10{word-spacing:3.078000px;}
.ws107{word-spacing:3.120000px;}
.ws151{word-spacing:3.168000px;}
.ws7b{word-spacing:3.180000px;}
.wsb1{word-spacing:3.240000px;}
.ws149{word-spacing:3.264000px;}
.ws6b{word-spacing:3.300000px;}
.ws13{word-spacing:3.348000px;}
.ws117{word-spacing:3.360000px;}
.ws15d{word-spacing:3.408000px;}
.wsec{word-spacing:3.420000px;}
.ws141{word-spacing:3.456000px;}
.ws134{word-spacing:3.504000px;}
.wsb0{word-spacing:3.510000px;}
.wsc5{word-spacing:3.540000px;}
.ws1a{word-spacing:3.600000px;}
.ws118{word-spacing:3.660000px;}
.ws160{word-spacing:3.696000px;}
.ws4f{word-spacing:3.720000px;}
.ws133{word-spacing:3.744000px;}
.ws38{word-spacing:3.780000px;}
.ws9e{word-spacing:3.840000px;}
.ws162{word-spacing:3.888000px;}
.wseb{word-spacing:3.960000px;}
.ws47{word-spacing:4.020000px;}
.ws12e{word-spacing:4.050000px;}
.ws127{word-spacing:4.080000px;}
.wscc{word-spacing:4.140000px;}
.ws173{word-spacing:4.176000px;}
.ws60{word-spacing:4.200000px;}
.ws136{word-spacing:4.224000px;}
.ws105{word-spacing:4.260000px;}
.ws18c{word-spacing:4.272000px;}
.ws4a{word-spacing:4.320000px;}
.wse9{word-spacing:4.380000px;}
.wsa3{word-spacing:4.440000px;}
.ws13f{word-spacing:4.464000px;}
.wscb{word-spacing:4.500000px;}
.ws16d{word-spacing:4.512000px;}
.ws3d{word-spacing:4.560000px;}
.ws183{word-spacing:4.608000px;}
.ws62{word-spacing:4.620000px;}
.ws144{word-spacing:4.656000px;}
.ws199{word-spacing:4.704000px;}
.ws7c{word-spacing:4.740000px;}
.wse5{word-spacing:4.800000px;}
.ws18f{word-spacing:4.848000px;}
.wsa0{word-spacing:4.860000px;}
.ws169{word-spacing:4.896000px;}
.wsc{word-spacing:4.914000px;}
.ws81{word-spacing:4.920000px;}
.ws16e{word-spacing:4.992000px;}
.ws65{word-spacing:5.040000px;}
.ws14a{word-spacing:5.088000px;}
.ws39{word-spacing:5.100000px;}
.ws53{word-spacing:5.160000px;}
.wsa4{word-spacing:5.220000px;}
.ws16b{word-spacing:5.232000px;}
.ws2e{word-spacing:5.280000px;}
.ws2f{word-spacing:5.340000px;}
.ws166{word-spacing:5.376000px;}
.ws94{word-spacing:5.400000px;}
.wse7{word-spacing:5.460000px;}
.wsc6{word-spacing:5.520000px;}
.ws10e{word-spacing:5.580000px;}
.wsc2{word-spacing:5.640000px;}
.wsd{word-spacing:5.670000px;}
.ws64{word-spacing:5.700000px;}
.ws143{word-spacing:5.712000px;}
.ws56{word-spacing:5.760000px;}
.ws186{word-spacing:5.808000px;}
.ws66{word-spacing:5.820000px;}
.ws15a{word-spacing:5.856000px;}
.ws109{word-spacing:5.880000px;}
.ws13d{word-spacing:5.904000px;}
.ws123{word-spacing:5.940000px;}
.ws104{word-spacing:6.000000px;}
.ws195{word-spacing:6.048000px;}
.ws116{word-spacing:6.060000px;}
.ws70{word-spacing:6.120000px;}
.ws145{word-spacing:6.144000px;}
.ws12d{word-spacing:6.156000px;}
.wsa7{word-spacing:6.180000px;}
.ws19{word-spacing:6.240000px;}
.ws4c{word-spacing:6.300000px;}
.ws174{word-spacing:6.336000px;}
.ws54{word-spacing:6.360000px;}
.ws185{word-spacing:6.384000px;}
.ws159{word-spacing:6.432000px;}
.wse2{word-spacing:6.480000px;}
.ws18e{word-spacing:6.528000px;}
.ws9f{word-spacing:6.540000px;}
.ws15e{word-spacing:6.576000px;}
.ws5d{word-spacing:6.600000px;}
.ws165{word-spacing:6.624000px;}
.ws2d{word-spacing:6.660000px;}
.ws17a{word-spacing:6.672000px;}
.ws9d{word-spacing:6.720000px;}
.ws146{word-spacing:6.768000px;}
.ws32{word-spacing:6.780000px;}
.ws16f{word-spacing:6.816000px;}
.ws93{word-spacing:6.840000px;}
.ws90{word-spacing:6.900000px;}
.ws42{word-spacing:6.960000px;}
.ws35{word-spacing:7.080000px;}
.ws168{word-spacing:7.104000px;}
.ws5f{word-spacing:7.140000px;}
.ws147{word-spacing:7.152000px;}
.ws2c{word-spacing:7.260000px;}
.wsbf{word-spacing:7.320000px;}
.ws80{word-spacing:7.500000px;}
.ws152{word-spacing:7.536000px;}
.ws23{word-spacing:7.560000px;}
.ws2b{word-spacing:7.620000px;}
.ws89{word-spacing:7.680000px;}
.ws37{word-spacing:7.740000px;}
.ws167{word-spacing:7.776000px;}
.wsad{word-spacing:7.800000px;}
.ws135{word-spacing:7.824000px;}
.wsf9{word-spacing:7.860000px;}
.ws176{word-spacing:7.872000px;}
.wsb7{word-spacing:7.920000px;}
.ws15c{word-spacing:7.968000px;}
.ws19b{word-spacing:8.016000px;}
.wsd0{word-spacing:8.040000px;}
.ws10b{word-spacing:8.100000px;}
.ws50{word-spacing:8.160000px;}
.ws150{word-spacing:8.208000px;}
.ws4d{word-spacing:8.220000px;}
.wse8{word-spacing:8.280000px;}
.ws11d{word-spacing:8.340000px;}
.ws9b{word-spacing:8.400000px;}
.ws122{word-spacing:8.460000px;}
.wsc3{word-spacing:8.580000px;}
.wsf2{word-spacing:8.640000px;}
.ws148{word-spacing:8.688000px;}
.wsfa{word-spacing:8.760000px;}
.ws4e{word-spacing:8.820000px;}
.ws179{word-spacing:8.832000px;}
.ws33{word-spacing:8.880000px;}
.wsce{word-spacing:8.940000px;}
.wsa8{word-spacing:9.000000px;}
.ws19c{word-spacing:9.024000px;}
.ws24{word-spacing:9.120000px;}
.ws111{word-spacing:9.180000px;}
.wsf8{word-spacing:9.240000px;}
.ws106{word-spacing:9.300000px;}
.ws92{word-spacing:9.360000px;}
.ws196{word-spacing:9.456000px;}
.ws7d{word-spacing:9.540000px;}
.ws8e{word-spacing:9.720000px;}
.ws13a{word-spacing:9.792000px;}
.wsd5{word-spacing:9.900000px;}
.ws27{word-spacing:10.020000px;}
.wsab{word-spacing:10.080000px;}
.ws15b{word-spacing:10.128000px;}
.wsbb{word-spacing:10.200000px;}
.ws13e{word-spacing:10.224000px;}
.ws171{word-spacing:10.272000px;}
.wsea{word-spacing:10.320000px;}
.ws46{word-spacing:10.440000px;}
.ws7f{word-spacing:10.500000px;}
.wsfb{word-spacing:10.560000px;}
.wsfc{word-spacing:10.620000px;}
.ws103{word-spacing:10.740000px;}
.ws189{word-spacing:10.752000px;}
.wsa6{word-spacing:10.800000px;}
.ws5c{word-spacing:10.860000px;}
.ws110{word-spacing:10.920000px;}
.ws115{word-spacing:10.980000px;}
.ws10a{word-spacing:11.040000px;}
.ws190{word-spacing:11.088000px;}
.ws191{word-spacing:11.232000px;}
.ws172{word-spacing:11.280000px;}
.ws3a{word-spacing:11.340000px;}
.ws96{word-spacing:11.400000px;}
.ws11e{word-spacing:11.460000px;}
.ws170{word-spacing:11.616000px;}
.ws8c{word-spacing:11.700000px;}
.ws17e{word-spacing:11.808000px;}
.ws119{word-spacing:11.820000px;}
.ws31{word-spacing:11.940000px;}
.wsd3{word-spacing:12.000000px;}
.ws67{word-spacing:12.240000px;}
.ws25{word-spacing:12.360000px;}
.ws8a{word-spacing:12.480000px;}
.ws7e{word-spacing:12.540000px;}
.ws17d{word-spacing:12.576000px;}
.ws10f{word-spacing:12.660000px;}
.ws17f{word-spacing:12.672000px;}
.ws16a{word-spacing:13.008000px;}
.ws5b{word-spacing:13.260000px;}
.wsfd{word-spacing:13.440000px;}
.ws57{word-spacing:13.560000px;}
.wsc4{word-spacing:13.860000px;}
.ws6c{word-spacing:13.920000px;}
.ws182{word-spacing:14.016000px;}
.ws40{word-spacing:14.100000px;}
.wsf7{word-spacing:14.160000px;}
.ws14c{word-spacing:14.496000px;}
.ws125{word-spacing:14.520000px;}
.ws98{word-spacing:14.580000px;}
.ws16{word-spacing:14.700000px;}
.ws11b{word-spacing:14.940000px;}
.ws8d{word-spacing:15.060000px;}
.ws124{word-spacing:15.180000px;}
.ws58{word-spacing:15.240000px;}
.wsd4{word-spacing:15.840000px;}
.ws22{word-spacing:16.080000px;}
.ws100{word-spacing:16.260000px;}
.ws91{word-spacing:16.320000px;}
.ws9c{word-spacing:16.680000px;}
.ws18{word-spacing:16.800000px;}
.wsc0{word-spacing:17.700000px;}
.ws6f{word-spacing:18.000000px;}
.ws10c{word-spacing:18.240000px;}
.ws85{word-spacing:18.360000px;}
.ws3f{word-spacing:18.480000px;}
.ws175{word-spacing:19.536000px;}
.ws97{word-spacing:20.460000px;}
.ws180{word-spacing:20.928000px;}
.wsb6{word-spacing:21.780000px;}
.ws17{word-spacing:22.620000px;}
.ws41{word-spacing:24.480000px;}
.ws14e{word-spacing:27.360000px;}
.ws197{word-spacing:35.232000px;}
.wsc8{word-spacing:74.355328px;}
.wsde{word-spacing:75.627600px;}
.ws78{word-spacing:84.903600px;}
.ws20{word-spacing:90.581400px;}
.ws76{word-spacing:104.390400px;}
.wsdc{word-spacing:111.567000px;}
.ws21{word-spacing:122.400600px;}
.ws75{word-spacing:123.423000px;}
.ws74{word-spacing:128.702400px;}
.wse0{word-spacing:130.574400px;}
.wsda{word-spacing:223.738200px;}
.wsc7{word-spacing:398.272635px;}
._9{margin-left:-2822.971200px;}
._46{margin-left:-44.819400px;}
._b{margin-left:-9.917400px;}
._a{margin-left:-8.677200px;}
._49{margin-left:-7.516200px;}
._3{margin-left:-6.328200px;}
._7{margin-left:-5.293800px;}
._1{margin-left:-3.893400px;}
._2{margin-left:-2.381400px;}
._0{margin-left:-1.272600px;}
._4{width:1.159800px;}
._8{width:2.214000px;}
._22{width:3.493200px;}
._6{width:16.944000px;}
._5{width:22.320000px;}
._28{width:24.006000px;}
._37{width:26.374800px;}
._24{width:31.011600px;}
._40{width:32.510400px;}
._47{width:36.831600px;}
._48{width:42.392400px;}
._3f{width:47.843400px;}
._23{width:53.908800px;}
._20{width:79.522200px;}
._27{width:81.859800px;}
._1c{width:85.239000px;}
._15{width:89.983200px;}
._1e{width:91.042200px;}
._43{width:95.669400px;}
._21{width:98.602800px;}
._1a{width:100.718400px;}
._14{width:104.570400px;}
._2d{width:108.724800px;}
._18{width:112.238400px;}
._31{width:113.428800px;}
._12{width:115.638600px;}
._2f{width:119.621400px;}
._1f{width:121.642800px;}
._11{width:123.769800px;}
._2b{width:129.684600px;}
._d{width:132.888600px;}
._2c{width:135.006000px;}
._10{width:142.560600px;}
._38{width:147.532200px;}
._1b{width:158.130600px;}
._19{width:169.650600px;}
._c{width:174.400200px;}
._35{width:175.572000px;}
._e{width:193.846800px;}
._16{width:205.366800px;}
._33{width:209.528400px;}
._f{width:215.999400px;}
._13{width:228.406800px;}
._3a{width:233.706000px;}
._45{width:247.232400px;}
._32{width:253.087800px;}
._1d{width:258.210000px;}
._2e{width:285.399000px;}
._30{width:293.295600px;}
._2a{width:295.249800px;}
._39{width:315.442200px;}
._42{width:329.265000px;}
._44{width:334.147800px;}
._26{width:373.572600px;}
._3b{width:399.706800px;}
._3d{width:416.245758px;}
._34{width:422.747400px;}
._36{width:434.267400px;}
._3c{width:445.702106px;}
._41{width:456.882600px;}
._29{width:561.703800px;}
._25{width:777.416400px;}
._3e{width:851.984400px;}
._4a{width:2369.793600px;}
._17{width:2382.731400px;}
.fc1{color:rgb(31,100,48);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:27.984000px;}
.fs8{font-size:37.800000px;}
.fs2{font-size:41.976000px;}
.fs3{font-size:42.000000px;}
.fsb{font-size:43.584600px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fsa{font-size:51.892200px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs0{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:64.661700px;}
.y25{bottom:77.261700px;}
.y24{bottom:89.861700px;}
.y177{bottom:125.267700px;}
.y61{bottom:125.291250px;}
.y8d{bottom:125.291400px;}
.y103{bottom:128.784450px;}
.y1b1{bottom:130.315500px;}
.y176{bottom:143.267700px;}
.y60{bottom:143.291250px;}
.y21{bottom:143.291400px;}
.y102{bottom:143.784450px;}
.y110{bottom:145.161900px;}
.y1b0{bottom:148.315500px;}
.y101{bottom:160.161900px;}
.y175{bottom:161.267700px;}
.y5f{bottom:161.291250px;}
.y20{bottom:161.291400px;}
.y10f{bottom:161.539350px;}
.y1af{bottom:166.315500px;}
.y100{bottom:176.539200px;}
.y10e{bottom:177.916800px;}
.y174{bottom:179.267700px;}
.y5e{bottom:179.291250px;}
.y23{bottom:179.291400px;}
.y1ae{bottom:184.315500px;}
.yff{bottom:191.539200px;}
.y10d{bottom:194.294100px;}
.y173{bottom:197.267700px;}
.y5d{bottom:197.291250px;}
.y22{bottom:197.291400px;}
.y1ad{bottom:202.315500px;}
.y1f{bottom:202.417350px;}
.yfe{bottom:207.916650px;}
.y10c{bottom:210.671550px;}
.y172{bottom:215.267700px;}
.y5c{bottom:215.291250px;}
.y8c{bottom:215.291400px;}
.y1ac{bottom:220.315500px;}
.yfd{bottom:224.294100px;}
.y171{bottom:233.267700px;}
.y5b{bottom:233.291250px;}
.y8b{bottom:233.291400px;}
.y10b{bottom:236.825550px;}
.y1ab{bottom:238.315500px;}
.yfc{bottom:239.294100px;}
.y170{bottom:251.267700px;}
.y5a{bottom:251.291250px;}
.y8a{bottom:251.291400px;}
.yfb{bottom:254.294100px;}
.y1aa{bottom:256.315500px;}
.y111{bottom:266.548200px;}
.y16f{bottom:269.267700px;}
.y59{bottom:269.291250px;}
.y89{bottom:269.291400px;}
.yfa{bottom:270.671550px;}
.y1a9{bottom:274.315500px;}
.y1e{bottom:278.692950px;}
.yf9{bottom:287.049000px;}
.y16e{bottom:287.267700px;}
.y58{bottom:287.291250px;}
.y88{bottom:287.291400px;}
.y1a8{bottom:292.315500px;}
.y117{bottom:301.141350px;}
.y11e{bottom:301.315800px;}
.yf8{bottom:302.049000px;}
.y1d{bottom:305.196900px;}
.y16d{bottom:305.267700px;}
.y57{bottom:305.291250px;}
.y87{bottom:305.291400px;}
.y1a7{bottom:310.315500px;}
.yf7{bottom:318.426450px;}
.y16c{bottom:323.267700px;}
.y56{bottom:323.291250px;}
.y86{bottom:323.291400px;}
.y1a6{bottom:328.315500px;}
.y112{bottom:332.694150px;}
.yf6{bottom:334.803750px;}
.y16b{bottom:341.267700px;}
.y55{bottom:341.291250px;}
.y85{bottom:341.291400px;}
.y14a{bottom:344.527500px;}
.y1a5{bottom:346.315500px;}
.yf5{bottom:349.803750px;}
.y16a{bottom:359.267700px;}
.y54{bottom:359.291250px;}
.y84{bottom:359.291400px;}
.y1a4{bottom:364.315500px;}
.yf4{bottom:364.803750px;}
.y1c{bottom:365.716500px;}
.y127{bottom:367.391060px;}
.y169{bottom:377.267700px;}
.y53{bottom:377.291250px;}
.y83{bottom:377.291400px;}
.yf3{bottom:379.803750px;}
.y1a3{bottom:382.315500px;}
.y11d{bottom:382.353150px;}
.y1b{bottom:383.716500px;}
.y126{bottom:386.383049px;}
.y11c{bottom:393.249300px;}
.y168{bottom:395.267700px;}
.y52{bottom:395.291250px;}
.y82{bottom:395.291400px;}
.yf2{bottom:396.181200px;}
.y1a2{bottom:400.315500px;}
.y125{bottom:406.050600px;}
.y1a{bottom:410.220450px;}
.yf1{bottom:412.558650px;}
.y167{bottom:413.267700px;}
.y51{bottom:413.291250px;}
.y81{bottom:413.291400px;}
.y128{bottom:416.527500px;}
.y1a1{bottom:418.315500px;}
.y72{bottom:418.815300px;}
.y71{bottom:420.192600px;}
.yf0{bottom:427.558650px;}
.y19{bottom:428.220450px;}
.y166{bottom:431.267700px;}
.y50{bottom:431.291250px;}
.y80{bottom:431.291400px;}
.y124{bottom:434.705645px;}
.y70{bottom:435.192600px;}
.y1a0{bottom:436.315500px;}
.yef{bottom:443.936100px;}
.y18{bottom:446.220450px;}
.y11b{bottom:449.042700px;}
.y165{bottom:449.267700px;}
.y4f{bottom:449.291250px;}
.y7f{bottom:449.291400px;}
.y6f{bottom:451.570050px;}
.y19f{bottom:454.315500px;}
.y123{bottom:454.416780px;}
.y11a{bottom:459.938850px;}
.yee{bottom:460.313400px;}
.y164{bottom:467.267700px;}
.y4e{bottom:467.291250px;}
.y7e{bottom:467.291400px;}
.y6e{bottom:467.947500px;}
.y19e{bottom:472.315500px;}
.y17{bottom:472.724400px;}
.y122{bottom:474.454800px;}
.yed{bottom:475.313400px;}
.y6d{bottom:484.324950px;}
.y163{bottom:485.267700px;}
.y4d{bottom:485.291250px;}
.y7d{bottom:485.291400px;}
.y6c{bottom:485.702400px;}
.y19d{bottom:490.315500px;}
.y16{bottom:490.724400px;}
.yec{bottom:491.690850px;}
.y6b{bottom:500.702400px;}
.y121{bottom:503.109283px;}
.y162{bottom:503.267700px;}
.y4c{bottom:503.291250px;}
.y7c{bottom:503.291400px;}
.yeb{bottom:508.068300px;}
.y19c{bottom:508.315500px;}
.y15{bottom:508.724400px;}
.y119{bottom:515.859150px;}
.y6a{bottom:517.079700px;}
.y69{bottom:518.457150px;}
.y161{bottom:521.267700px;}
.y4b{bottom:521.291250px;}
.y7b{bottom:521.291400px;}
.y120{bottom:521.741699px;}
.yea{bottom:523.068300px;}
.y19b{bottom:526.315500px;}
.y14{bottom:526.724400px;}
.y118{bottom:526.755300px;}
.y68{bottom:533.457150px;}
.ye9{bottom:538.068300px;}
.y160{bottom:539.267700px;}
.y4a{bottom:539.291250px;}
.ya8{bottom:539.291400px;}
.y11f{bottom:541.409250px;}
.y19a{bottom:544.315500px;}
.y13{bottom:544.724400px;}
.y67{bottom:549.834600px;}
.ye8{bottom:554.445750px;}
.y15f{bottom:557.267700px;}
.y49{bottom:557.291250px;}
.ya7{bottom:557.291400px;}
.y199{bottom:562.315500px;}
.y12{bottom:562.724400px;}
.y66{bottom:564.834600px;}
.yc5{bottom:566.266800px;}
.y116{bottom:569.136092px;}
.ye7{bottom:570.823200px;}
.y15e{bottom:575.267700px;}
.y48{bottom:575.291250px;}
.ya6{bottom:575.291400px;}
.yc6{bottom:579.889500px;}
.y115{bottom:580.293750px;}
.y198{bottom:580.315500px;}
.y11{bottom:580.724400px;}
.yc4{bottom:581.266800px;}
.ye6{bottom:585.823200px;}
.y65{bottom:590.988600px;}
.y114{bottom:591.189900px;}
.y15d{bottom:593.267700px;}
.y47{bottom:593.291250px;}
.ya5{bottom:593.291400px;}
.yc3{bottom:596.266800px;}
.y197{bottom:598.315500px;}
.ye5{bottom:600.823200px;}
.y10{bottom:607.228350px;}
.y113{bottom:608.062350px;}
.y15c{bottom:611.267700px;}
.y149{bottom:611.291250px;}
.ya4{bottom:611.291400px;}
.yc2{bottom:612.644250px;}
.y196{bottom:616.315500px;}
.ye4{bottom:617.200500px;}
.yf{bottom:625.228350px;}
.yc1{bottom:629.021700px;}
.y15b{bottom:629.267700px;}
.y64{bottom:629.291250px;}
.ya3{bottom:629.291400px;}
.yc0{bottom:630.399150px;}
.y46{bottom:632.527500px;}
.y148{bottom:633.519600px;}
.ye3{bottom:633.577950px;}
.y195{bottom:634.315500px;}
.ye{bottom:643.228350px;}
.ybf{bottom:645.399150px;}
.y15a{bottom:647.267700px;}
.y63{bottom:647.291250px;}
.ya2{bottom:647.291400px;}
.y147{bottom:648.519600px;}
.y194{bottom:652.315500px;}
.ye2{bottom:659.732100px;}
.yd{bottom:661.228350px;}
.ybe{bottom:661.776600px;}
.y146{bottom:663.519600px;}
.y159{bottom:665.267700px;}
.y62{bottom:665.291250px;}
.ya1{bottom:665.291400px;}
.y193{bottom:670.315500px;}
.ybd{bottom:676.776600px;}
.y145{bottom:678.519600px;}
.y158{bottom:683.267700px;}
.y45{bottom:683.291250px;}
.ya0{bottom:683.291400px;}
.yc{bottom:687.732300px;}
.y192{bottom:688.315500px;}
.ybc{bottom:691.776600px;}
.y144{bottom:694.896900px;}
.y157{bottom:701.267700px;}
.y44{bottom:701.291250px;}
.y9f{bottom:701.291400px;}
.ye0{bottom:704.134500px;}
.y191{bottom:706.315500px;}
.y143{bottom:709.896900px;}
.ybb{bottom:717.930600px;}
.y156{bottom:719.267700px;}
.y43{bottom:719.291250px;}
.y9e{bottom:719.291400px;}
.ydf{bottom:722.134500px;}
.y190{bottom:724.315500px;}
.y142{bottom:724.896900px;}
.yba{bottom:735.930600px;}
.y155{bottom:737.267700px;}
.y42{bottom:737.291250px;}
.y9d{bottom:737.291400px;}
.y141{bottom:739.896900px;}
.yde{bottom:740.134500px;}
.y18f{bottom:742.315500px;}
.yb{bottom:744.000000px;}
.y41{bottom:755.291250px;}
.y9c{bottom:755.291400px;}
.y140{bottom:756.274350px;}
.ydd{bottom:758.134500px;}
.y18e{bottom:760.315500px;}
.ya{bottom:762.000000px;}
.y154{bottom:768.023550px;}
.y13f{bottom:771.274350px;}
.y40{bottom:773.291250px;}
.y7a{bottom:773.291400px;}
.ydc{bottom:776.134500px;}
.y18d{bottom:778.315500px;}
.y13e{bottom:786.274350px;}
.y14b{bottom:788.031450px;}
.y3f{bottom:791.291250px;}
.y79{bottom:791.291400px;}
.ydb{bottom:794.134500px;}
.y18c{bottom:796.315500px;}
.y9{bottom:797.007900px;}
.y13d{bottom:801.274350px;}
.y3e{bottom:809.291250px;}
.y78{bottom:809.291400px;}
.yda{bottom:812.134500px;}
.y18b{bottom:814.315500px;}
.y13c{bottom:817.651800px;}
.y3d{bottom:827.291250px;}
.y77{bottom:827.291400px;}
.yd9{bottom:830.134500px;}
.y18a{bottom:832.315500px;}
.y13b{bottom:832.651800px;}
.y8{bottom:844.771800px;}
.y3c{bottom:845.291250px;}
.y76{bottom:845.291400px;}
.y13a{bottom:847.651800px;}
.yd8{bottom:848.134500px;}
.y189{bottom:850.315500px;}
.y139{bottom:862.651800px;}
.y7{bottom:862.771800px;}
.y3b{bottom:863.291250px;}
.y75{bottom:863.291400px;}
.yd7{bottom:866.134500px;}
.y188{bottom:868.315500px;}
.y138{bottom:877.651800px;}
.y3a{bottom:881.291250px;}
.y74{bottom:881.291400px;}
.y153{bottom:883.741950px;}
.yd6{bottom:884.134500px;}
.y187{bottom:886.315500px;}
.y6{bottom:889.275750px;}
.y137{bottom:894.029250px;}
.y39{bottom:899.291250px;}
.y73{bottom:899.291400px;}
.yd5{bottom:902.134500px;}
.y186{bottom:904.315500px;}
.y5{bottom:907.275750px;}
.y136{bottom:909.029250px;}
.y38{bottom:917.291250px;}
.y9b{bottom:917.291400px;}
.yd4{bottom:920.134500px;}
.y185{bottom:922.315500px;}
.y135{bottom:924.029250px;}
.y4{bottom:925.275750px;}
.y37{bottom:935.291250px;}
.y9a{bottom:935.291400px;}
.yb8{bottom:935.578650px;}
.y152{bottom:937.741950px;}
.yd3{bottom:938.134500px;}
.y134{bottom:939.029250px;}
.y184{bottom:940.315500px;}
.yb9{bottom:949.201200px;}
.yb7{bottom:950.578650px;}
.y3{bottom:951.779700px;}
.y36{bottom:953.291250px;}
.y99{bottom:953.291400px;}
.y133{bottom:954.029250px;}
.yd2{bottom:956.134500px;}
.y183{bottom:958.315500px;}
.yb6{bottom:965.578650px;}
.y132{bottom:970.406550px;}
.y35{bottom:971.291250px;}
.y98{bottom:971.291400px;}
.y14e{bottom:973.741800px;}
.yd1{bottom:974.134500px;}
.y182{bottom:976.315500px;}
.yb5{bottom:981.955950px;}
.y131{bottom:985.406550px;}
.y34{bottom:989.291250px;}
.y97{bottom:989.291400px;}
.y2{bottom:991.378200px;}
.y151{bottom:991.741800px;}
.yd0{bottom:992.134500px;}
.y181{bottom:994.315500px;}
.yb4{bottom:998.333400px;}
.yb3{bottom:999.710850px;}
.y33{bottom:1007.291250px;}
.y96{bottom:1007.291400px;}
.ycf{bottom:1010.134500px;}
.y130{bottom:1011.560700px;}
.y180{bottom:1012.315500px;}
.yb2{bottom:1014.710850px;}
.y32{bottom:1025.291250px;}
.y95{bottom:1025.291400px;}
.yce{bottom:1028.134500px;}
.y1{bottom:1029.178200px;}
.y12f{bottom:1029.560700px;}
.y10a{bottom:1029.580950px;}
.y17f{bottom:1030.315500px;}
.yb1{bottom:1031.088300px;}
.y14d{bottom:1033.771500px;}
.y31{bottom:1043.291250px;}
.y94{bottom:1043.291400px;}
.y150{bottom:1045.741800px;}
.y109{bottom:1045.958400px;}
.ycd{bottom:1046.134500px;}
.ye1{bottom:1046.527500px;}
.yb0{bottom:1047.465600px;}
.y17e{bottom:1048.315500px;}
.yaf{bottom:1048.843050px;}
.y30{bottom:1061.291250px;}
.y93{bottom:1061.291400px;}
.y108{bottom:1062.335850px;}
.y12e{bottom:1062.710700px;}
.yae{bottom:1063.843050px;}
.ycc{bottom:1064.134500px;}
.y14c{bottom:1064.527500px;}
.y17d{bottom:1066.315500px;}
.y107{bottom:1078.713300px;}
.y12d{bottom:1079.088150px;}
.y2f{bottom:1079.291250px;}
.y92{bottom:1079.291400px;}
.yad{bottom:1080.220500px;}
.ycb{bottom:1082.134500px;}
.y17c{bottom:1084.315500px;}
.y106{bottom:1095.090600px;}
.yac{bottom:1095.220500px;}
.y12c{bottom:1095.465600px;}
.y2e{bottom:1097.291250px;}
.y91{bottom:1097.291400px;}
.y14f{bottom:1099.741800px;}
.yca{bottom:1100.134500px;}
.y17b{bottom:1102.315500px;}
.yab{bottom:1110.220500px;}
.y105{bottom:1111.468050px;}
.y12b{bottom:1111.842900px;}
.y2d{bottom:1115.291250px;}
.y90{bottom:1115.291400px;}
.yc9{bottom:1118.134500px;}
.y17a{bottom:1120.315500px;}
.y29{bottom:1126.725000px;}
.y12a{bottom:1128.220350px;}
.y104{bottom:1128.220500px;}
.y2c{bottom:1133.291250px;}
.y8f{bottom:1133.291400px;}
.yc8{bottom:1136.134500px;}
.yaa{bottom:1136.374500px;}
.y179{bottom:1138.315500px;}
.y2b{bottom:1151.291250px;}
.y8e{bottom:1151.291400px;}
.yc7{bottom:1154.134500px;}
.y129{bottom:1154.374350px;}
.ya9{bottom:1154.374500px;}
.y178{bottom:1156.315500px;}
.y28{bottom:1166.037750px;}
.y27{bottom:1183.789800px;}
.y2a{bottom:1193.518650px;}
.hc{height:27.575100px;}
.h11{height:31.730781px;}
.hd{height:32.827500px;}
.he{height:33.947754px;}
.h4{height:34.176000px;}
.hf{height:34.272000px;}
.h6{height:34.368000px;}
.h5{height:35.016000px;}
.h14{height:36.020544px;}
.h10{height:37.778941px;}
.h8{height:38.664000px;}
.h7{height:39.555000px;}
.hb{height:42.960000px;}
.h13{height:43.950000px;}
.h9{height:52.740000px;}
.h3{height:54.596892px;}
.ha{height:61.530000px;}
.h12{height:63.198862px;}
.h2{height:92.295000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:93.543300px;}
.x1f{left:96.094500px;}
.x49{left:108.837300px;}
.xd{left:110.551200px;}
.x48{left:117.687150px;}
.x2d{left:127.559100px;}
.x3f{left:135.120750px;}
.x3{left:145.222950px;}
.x43{left:146.634000px;}
.x25{left:154.904850px;}
.x45{left:157.136550px;}
.x44{left:159.344550px;}
.x40{left:161.968864px;}
.x4b{left:173.760900px;}
.x2e{left:176.571450px;}
.x4a{left:179.256900px;}
.x4e{left:182.724750px;}
.x4f{left:190.530900px;}
.x67{left:193.092750px;}
.x24{left:208.714650px;}
.x23{left:210.916650px;}
.x20{left:212.572500px;}
.x22{left:215.902500px;}
.x2{left:217.077150px;}
.x21{left:219.316500px;}
.x41{left:225.155637px;}
.x3e{left:231.979500px;}
.x2c{left:237.710400px;}
.x2a{left:244.574400px;}
.x2b{left:247.274250px;}
.x4{left:254.111400px;}
.x1a{left:259.340100px;}
.x3d{left:261.808050px;}
.x50{left:263.618700px;}
.x52{left:266.300250px;}
.x51{left:269.354700px;}
.x53{left:270.368850px;}
.x72{left:272.396100px;}
.x6d{left:273.878400px;}
.x1b{left:277.952100px;}
.x5d{left:294.932100px;}
.xc{left:296.872800px;}
.x47{left:300.099900px;}
.x26{left:301.114950px;}
.x5{left:309.205350px;}
.x46{left:327.907200px;}
.x1d{left:343.956900px;}
.x1c{left:350.508750px;}
.x29{left:357.907800px;}
.x27{left:364.225800px;}
.x1e{left:369.120600px;}
.x28{left:371.509500px;}
.xb{left:375.582450px;}
.x39{left:381.396150px;}
.x3b{left:382.572150px;}
.x3a{left:384.120000px;}
.x73{left:385.805400px;}
.x55{left:387.947700px;}
.x6f{left:392.315400px;}
.x5e{left:394.103850px;}
.x56{left:396.155700px;}
.x5f{left:397.781400px;}
.x68{left:400.523250px;}
.x6e{left:401.657550px;}
.x54{left:406.085400px;}
.x60{left:419.897250px;}
.x6{left:437.370900px;}
.x38{left:446.164650px;}
.x42{left:450.388350px;}
.x8{left:455.455950px;}
.x12{left:458.009250px;}
.xe{left:472.464450px;}
.x3c{left:487.796700px;}
.x7{left:494.055750px;}
.x63{left:508.535400px;}
.x69{left:512.175300px;}
.x58{left:514.797300px;}
.x6a{left:517.419000px;}
.x57{left:520.070400px;}
.x74{left:521.595150px;}
.x61{left:524.384850px;}
.x75{left:526.940400px;}
.x62{left:528.764850px;}
.x70{left:531.086850px;}
.x4c{left:533.312400px;}
.x19{left:534.780450px;}
.x59{left:536.366400px;}
.x14{left:540.372450px;}
.x18{left:541.374300px;}
.x17{left:543.456300px;}
.x2f{left:544.689000px;}
.x15{left:545.880450px;}
.x13{left:548.670450px;}
.x16{left:551.016450px;}
.x31{left:552.183600px;}
.x30{left:555.254850px;}
.x36{left:557.991300px;}
.x35{left:579.356550px;}
.x32{left:581.594550px;}
.x34{left:596.162250px;}
.xa{left:601.212750px;}
.x33{left:603.764250px;}
.xf{left:622.008600px;}
.x37{left:642.403650px;}
.x5c{left:670.110300px;}
.x64{left:672.571500px;}
.x5b{left:674.659500px;}
.x5a{left:676.273500px;}
.x65{left:679.753500px;}
.x6b{left:682.423500px;}
.x11{left:686.910750px;}
.x71{left:688.909350px;}
.x6c{left:691.129350px;}
.x10{left:693.972450px;}
.x9{left:698.768400px;}
.x66{left:701.869200px;}
.x76{left:709.327050px;}
.x4d{left:716.382900px;}
@media print{
.v3{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.208000pt;}
.v1{vertical-align:21.311467pt;}
.v2{vertical-align:27.971628pt;}
.ls12{letter-spacing:-3.114667pt;}
.ls16{letter-spacing:-2.261333pt;}
.ls14{letter-spacing:-1.066667pt;}
.ls1c{letter-spacing:-1.013333pt;}
.ls8{letter-spacing:-0.873600pt;}
.ls15{letter-spacing:-0.853333pt;}
.ls21{letter-spacing:-0.810667pt;}
.ls1a{letter-spacing:-0.768000pt;}
.ls19{letter-spacing:-0.746667pt;}
.ls7{letter-spacing:-0.720000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.597333pt;}
.ls13{letter-spacing:-0.554667pt;}
.lsc{letter-spacing:-0.512000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.426667pt;}
.ls23{letter-spacing:-0.373333pt;}
.lsb{letter-spacing:-0.341333pt;}
.ls24{letter-spacing:-0.336000pt;}
.ls26{letter-spacing:-0.323371pt;}
.ls18{letter-spacing:-0.266667pt;}
.ls1f{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.170667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.018133pt;}
.ls2{letter-spacing:0.018261pt;}
.ls1{letter-spacing:0.018645pt;}
.ls3{letter-spacing:0.018667pt;}
.ls27{letter-spacing:0.024875pt;}
.ls20{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.240000pt;}
.lsd{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.586667pt;}
.lse{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:1.593067pt;}
.lsf{letter-spacing:2.351467pt;}
.ls10{letter-spacing:2.733333pt;}
.ls0{letter-spacing:38.399936pt;}
.ws3{word-spacing:-48.000000pt;}
.ws7{word-spacing:-18.442667pt;}
.ws6{word-spacing:-15.808000pt;}
.ws128{word-spacing:-13.173333pt;}
.ws114{word-spacing:-12.106667pt;}
.ws2{word-spacing:-11.856000pt;}
.ws4{word-spacing:-11.376000pt;}
.ws77{word-spacing:-10.896000pt;}
.ws5{word-spacing:-10.176000pt;}
.ws0{word-spacing:-9.968000pt;}
.wsdd{word-spacing:-9.813333pt;}
.ws1{word-spacing:-9.685333pt;}
.wsd8{word-spacing:-9.514667pt;}
.wsdb{word-spacing:-9.429333pt;}
.ws187{word-spacing:-9.130667pt;}
.wsd9{word-spacing:-8.917333pt;}
.wse1{word-spacing:-8.874667pt;}
.ws155{word-spacing:-8.704000pt;}
.wsb3{word-spacing:-8.618667pt;}
.ws156{word-spacing:-5.671424pt;}
.wsdf{word-spacing:-5.646549pt;}
.ws129{word-spacing:-5.323179pt;}
.wsb9{word-spacing:-2.933333pt;}
.ws121{word-spacing:-2.880000pt;}
.ws18a{word-spacing:-2.730667pt;}
.ws11a{word-spacing:-2.720000pt;}
.wsed{word-spacing:-2.666667pt;}
.ws112{word-spacing:-2.613333pt;}
.wsd1{word-spacing:-2.560000pt;}
.ws12f{word-spacing:-2.400000pt;}
.ws5a{word-spacing:-2.293333pt;}
.ws108{word-spacing:-2.240000pt;}
.wsef{word-spacing:-2.186667pt;}
.ws2a{word-spacing:-2.133333pt;}
.ws7a{word-spacing:-2.080000pt;}
.ws132{word-spacing:-2.064000pt;}
.wsd2{word-spacing:-2.026667pt;}
.ws164{word-spacing:-2.005333pt;}
.ws55{word-spacing:-1.973333pt;}
.wsf{word-spacing:-1.920000pt;}
.wsb8{word-spacing:-1.866667pt;}
.ws49{word-spacing:-1.813333pt;}
.ws28{word-spacing:-1.760000pt;}
.ws82{word-spacing:-1.706667pt;}
.ws198{word-spacing:-1.664000pt;}
.wsff{word-spacing:-1.653333pt;}
.ws3b{word-spacing:-1.546667pt;}
.ws12c{word-spacing:-1.536000pt;}
.wsa9{word-spacing:-1.440000pt;}
.ws14b{word-spacing:-1.408000pt;}
.ws4b{word-spacing:-1.386667pt;}
.ws13b{word-spacing:-1.365333pt;}
.wsac{word-spacing:-1.333333pt;}
.wsbc{word-spacing:-1.280000pt;}
.ws178{word-spacing:-1.237333pt;}
.ws6a{word-spacing:-1.226667pt;}
.ws19a{word-spacing:-1.194667pt;}
.ws126{word-spacing:-1.173333pt;}
.ws12a{word-spacing:-1.152000pt;}
.ws11c{word-spacing:-1.120000pt;}
.ws3e{word-spacing:-1.066667pt;}
.ws14f{word-spacing:-1.024000pt;}
.wsee{word-spacing:-1.013333pt;}
.ws6d{word-spacing:-0.960000pt;}
.ws1d{word-spacing:-0.940800pt;}
.ws15f{word-spacing:-0.938667pt;}
.wse3{word-spacing:-0.906667pt;}
.ws137{word-spacing:-0.896000pt;}
.ws69{word-spacing:-0.853333pt;}
.ws1f{word-spacing:-0.832000pt;}
.ws45{word-spacing:-0.800000pt;}
.ws88{word-spacing:-0.746667pt;}
.ws188{word-spacing:-0.725333pt;}
.ws130{word-spacing:-0.693333pt;}
.ws163{word-spacing:-0.682667pt;}
.wsbd{word-spacing:-0.640000pt;}
.ws101{word-spacing:-0.586667pt;}
.wsf1{word-spacing:-0.533333pt;}
.wse4{word-spacing:-0.480000pt;}
.ws177{word-spacing:-0.469333pt;}
.wsc1{word-spacing:-0.426667pt;}
.ws36{word-spacing:-0.373333pt;}
.wsa5{word-spacing:-0.320000pt;}
.ws10d{word-spacing:-0.266667pt;}
.ws73{word-spacing:-0.256000pt;}
.ws131{word-spacing:-0.240000pt;}
.wsb2{word-spacing:-0.213333pt;}
.wsd7{word-spacing:-0.170667pt;}
.ws44{word-spacing:-0.160000pt;}
.wsf6{word-spacing:-0.128000pt;}
.wsd6{word-spacing:-0.106667pt;}
.ws1c{word-spacing:-0.067200pt;}
.wsc9{word-spacing:-0.038742pt;}
.ws8{word-spacing:0.000000pt;}
.ws59{word-spacing:0.053333pt;}
.ws184{word-spacing:0.085333pt;}
.wsa1{word-spacing:0.106667pt;}
.ws9a{word-spacing:0.160000pt;}
.ws194{word-spacing:0.170667pt;}
.ws14{word-spacing:0.192000pt;}
.ws71{word-spacing:0.213333pt;}
.ws1b{word-spacing:0.268800pt;}
.ws29{word-spacing:0.320000pt;}
.ws72{word-spacing:0.341333pt;}
.wsba{word-spacing:0.373333pt;}
.ws12b{word-spacing:0.384000pt;}
.ws48{word-spacing:0.426667pt;}
.ws139{word-spacing:0.469333pt;}
.ws1e{word-spacing:0.480000pt;}
.ws192{word-spacing:0.512000pt;}
.ws68{word-spacing:0.533333pt;}
.ws181{word-spacing:0.554667pt;}
.ws30{word-spacing:0.586667pt;}
.ws161{word-spacing:0.597333pt;}
.ws15{word-spacing:0.672000pt;}
.ws6e{word-spacing:0.693333pt;}
.ws11{word-spacing:0.720000pt;}
.wsfe{word-spacing:0.746667pt;}
.ws18d{word-spacing:0.768000pt;}
.ws95{word-spacing:0.800000pt;}
.ws16c{word-spacing:0.810667pt;}
.ws9{word-spacing:0.816000pt;}
.wsb5{word-spacing:0.853333pt;}
.wsf3{word-spacing:0.906667pt;}
.ws14d{word-spacing:1.024000pt;}
.ws5e{word-spacing:1.066667pt;}
.ws17c{word-spacing:1.109333pt;}
.wsb4{word-spacing:1.120000pt;}
.ws154{word-spacing:1.152000pt;}
.ws86{word-spacing:1.173333pt;}
.ws26{word-spacing:1.226667pt;}
.wsf0{word-spacing:1.280000pt;}
.wscd{word-spacing:1.333333pt;}
.ws12{word-spacing:1.344000pt;}
.ws113{word-spacing:1.386667pt;}
.ws79{word-spacing:1.440000pt;}
.ws142{word-spacing:1.450667pt;}
.ws120{word-spacing:1.493333pt;}
.ws34{word-spacing:1.546667pt;}
.ws157{word-spacing:1.578667pt;}
.ws3c{word-spacing:1.600000pt;}
.wse6{word-spacing:1.653333pt;}
.ws138{word-spacing:1.664000pt;}
.wsf5{word-spacing:1.680000pt;}
.wscf{word-spacing:1.706667pt;}
.ws8f{word-spacing:1.760000pt;}
.ws158{word-spacing:1.792000pt;}
.wsf4{word-spacing:1.824000pt;}
.ws18b{word-spacing:1.834667pt;}
.ws61{word-spacing:1.866667pt;}
.ws193{word-spacing:1.877333pt;}
.ws52{word-spacing:1.920000pt;}
.ws17b{word-spacing:1.962667pt;}
.ws11f{word-spacing:1.973333pt;}
.wsbe{word-spacing:2.026667pt;}
.wsa2{word-spacing:2.080000pt;}
.ws84{word-spacing:2.133333pt;}
.wsaa{word-spacing:2.186667pt;}
.ws51{word-spacing:2.240000pt;}
.ws102{word-spacing:2.293333pt;}
.ws43{word-spacing:2.346667pt;}
.ws13c{word-spacing:2.389333pt;}
.wse{word-spacing:2.400000pt;}
.wsaf{word-spacing:2.448000pt;}
.wsca{word-spacing:2.453333pt;}
.wsa{word-spacing:2.496000pt;}
.ws8b{word-spacing:2.506667pt;}
.ws153{word-spacing:2.517333pt;}
.wsb{word-spacing:2.544000pt;}
.ws63{word-spacing:2.560000pt;}
.ws140{word-spacing:2.602667pt;}
.ws83{word-spacing:2.613333pt;}
.ws87{word-spacing:2.666667pt;}
.wsae{word-spacing:2.688000pt;}
.ws99{word-spacing:2.720000pt;}
.ws10{word-spacing:2.736000pt;}
.ws107{word-spacing:2.773333pt;}
.ws151{word-spacing:2.816000pt;}
.ws7b{word-spacing:2.826667pt;}
.wsb1{word-spacing:2.880000pt;}
.ws149{word-spacing:2.901333pt;}
.ws6b{word-spacing:2.933333pt;}
.ws13{word-spacing:2.976000pt;}
.ws117{word-spacing:2.986667pt;}
.ws15d{word-spacing:3.029333pt;}
.wsec{word-spacing:3.040000pt;}
.ws141{word-spacing:3.072000pt;}
.ws134{word-spacing:3.114667pt;}
.wsb0{word-spacing:3.120000pt;}
.wsc5{word-spacing:3.146667pt;}
.ws1a{word-spacing:3.200000pt;}
.ws118{word-spacing:3.253333pt;}
.ws160{word-spacing:3.285333pt;}
.ws4f{word-spacing:3.306667pt;}
.ws133{word-spacing:3.328000pt;}
.ws38{word-spacing:3.360000pt;}
.ws9e{word-spacing:3.413333pt;}
.ws162{word-spacing:3.456000pt;}
.wseb{word-spacing:3.520000pt;}
.ws47{word-spacing:3.573333pt;}
.ws12e{word-spacing:3.600000pt;}
.ws127{word-spacing:3.626667pt;}
.wscc{word-spacing:3.680000pt;}
.ws173{word-spacing:3.712000pt;}
.ws60{word-spacing:3.733333pt;}
.ws136{word-spacing:3.754667pt;}
.ws105{word-spacing:3.786667pt;}
.ws18c{word-spacing:3.797333pt;}
.ws4a{word-spacing:3.840000pt;}
.wse9{word-spacing:3.893333pt;}
.wsa3{word-spacing:3.946667pt;}
.ws13f{word-spacing:3.968000pt;}
.wscb{word-spacing:4.000000pt;}
.ws16d{word-spacing:4.010667pt;}
.ws3d{word-spacing:4.053333pt;}
.ws183{word-spacing:4.096000pt;}
.ws62{word-spacing:4.106667pt;}
.ws144{word-spacing:4.138667pt;}
.ws199{word-spacing:4.181333pt;}
.ws7c{word-spacing:4.213333pt;}
.wse5{word-spacing:4.266667pt;}
.ws18f{word-spacing:4.309333pt;}
.wsa0{word-spacing:4.320000pt;}
.ws169{word-spacing:4.352000pt;}
.wsc{word-spacing:4.368000pt;}
.ws81{word-spacing:4.373333pt;}
.ws16e{word-spacing:4.437333pt;}
.ws65{word-spacing:4.480000pt;}
.ws14a{word-spacing:4.522667pt;}
.ws39{word-spacing:4.533333pt;}
.ws53{word-spacing:4.586667pt;}
.wsa4{word-spacing:4.640000pt;}
.ws16b{word-spacing:4.650667pt;}
.ws2e{word-spacing:4.693333pt;}
.ws2f{word-spacing:4.746667pt;}
.ws166{word-spacing:4.778667pt;}
.ws94{word-spacing:4.800000pt;}
.wse7{word-spacing:4.853333pt;}
.wsc6{word-spacing:4.906667pt;}
.ws10e{word-spacing:4.960000pt;}
.wsc2{word-spacing:5.013333pt;}
.wsd{word-spacing:5.040000pt;}
.ws64{word-spacing:5.066667pt;}
.ws143{word-spacing:5.077333pt;}
.ws56{word-spacing:5.120000pt;}
.ws186{word-spacing:5.162667pt;}
.ws66{word-spacing:5.173333pt;}
.ws15a{word-spacing:5.205333pt;}
.ws109{word-spacing:5.226667pt;}
.ws13d{word-spacing:5.248000pt;}
.ws123{word-spacing:5.280000pt;}
.ws104{word-spacing:5.333333pt;}
.ws195{word-spacing:5.376000pt;}
.ws116{word-spacing:5.386667pt;}
.ws70{word-spacing:5.440000pt;}
.ws145{word-spacing:5.461333pt;}
.ws12d{word-spacing:5.472000pt;}
.wsa7{word-spacing:5.493333pt;}
.ws19{word-spacing:5.546667pt;}
.ws4c{word-spacing:5.600000pt;}
.ws174{word-spacing:5.632000pt;}
.ws54{word-spacing:5.653333pt;}
.ws185{word-spacing:5.674667pt;}
.ws159{word-spacing:5.717333pt;}
.wse2{word-spacing:5.760000pt;}
.ws18e{word-spacing:5.802667pt;}
.ws9f{word-spacing:5.813333pt;}
.ws15e{word-spacing:5.845333pt;}
.ws5d{word-spacing:5.866667pt;}
.ws165{word-spacing:5.888000pt;}
.ws2d{word-spacing:5.920000pt;}
.ws17a{word-spacing:5.930667pt;}
.ws9d{word-spacing:5.973333pt;}
.ws146{word-spacing:6.016000pt;}
.ws32{word-spacing:6.026667pt;}
.ws16f{word-spacing:6.058667pt;}
.ws93{word-spacing:6.080000pt;}
.ws90{word-spacing:6.133333pt;}
.ws42{word-spacing:6.186667pt;}
.ws35{word-spacing:6.293333pt;}
.ws168{word-spacing:6.314667pt;}
.ws5f{word-spacing:6.346667pt;}
.ws147{word-spacing:6.357333pt;}
.ws2c{word-spacing:6.453333pt;}
.wsbf{word-spacing:6.506667pt;}
.ws80{word-spacing:6.666667pt;}
.ws152{word-spacing:6.698667pt;}
.ws23{word-spacing:6.720000pt;}
.ws2b{word-spacing:6.773333pt;}
.ws89{word-spacing:6.826667pt;}
.ws37{word-spacing:6.880000pt;}
.ws167{word-spacing:6.912000pt;}
.wsad{word-spacing:6.933333pt;}
.ws135{word-spacing:6.954667pt;}
.wsf9{word-spacing:6.986667pt;}
.ws176{word-spacing:6.997333pt;}
.wsb7{word-spacing:7.040000pt;}
.ws15c{word-spacing:7.082667pt;}
.ws19b{word-spacing:7.125333pt;}
.wsd0{word-spacing:7.146667pt;}
.ws10b{word-spacing:7.200000pt;}
.ws50{word-spacing:7.253333pt;}
.ws150{word-spacing:7.296000pt;}
.ws4d{word-spacing:7.306667pt;}
.wse8{word-spacing:7.360000pt;}
.ws11d{word-spacing:7.413333pt;}
.ws9b{word-spacing:7.466667pt;}
.ws122{word-spacing:7.520000pt;}
.wsc3{word-spacing:7.626667pt;}
.wsf2{word-spacing:7.680000pt;}
.ws148{word-spacing:7.722667pt;}
.wsfa{word-spacing:7.786667pt;}
.ws4e{word-spacing:7.840000pt;}
.ws179{word-spacing:7.850667pt;}
.ws33{word-spacing:7.893333pt;}
.wsce{word-spacing:7.946667pt;}
.wsa8{word-spacing:8.000000pt;}
.ws19c{word-spacing:8.021333pt;}
.ws24{word-spacing:8.106667pt;}
.ws111{word-spacing:8.160000pt;}
.wsf8{word-spacing:8.213333pt;}
.ws106{word-spacing:8.266667pt;}
.ws92{word-spacing:8.320000pt;}
.ws196{word-spacing:8.405333pt;}
.ws7d{word-spacing:8.480000pt;}
.ws8e{word-spacing:8.640000pt;}
.ws13a{word-spacing:8.704000pt;}
.wsd5{word-spacing:8.800000pt;}
.ws27{word-spacing:8.906667pt;}
.wsab{word-spacing:8.960000pt;}
.ws15b{word-spacing:9.002667pt;}
.wsbb{word-spacing:9.066667pt;}
.ws13e{word-spacing:9.088000pt;}
.ws171{word-spacing:9.130667pt;}
.wsea{word-spacing:9.173333pt;}
.ws46{word-spacing:9.280000pt;}
.ws7f{word-spacing:9.333333pt;}
.wsfb{word-spacing:9.386667pt;}
.wsfc{word-spacing:9.440000pt;}
.ws103{word-spacing:9.546667pt;}
.ws189{word-spacing:9.557333pt;}
.wsa6{word-spacing:9.600000pt;}
.ws5c{word-spacing:9.653333pt;}
.ws110{word-spacing:9.706667pt;}
.ws115{word-spacing:9.760000pt;}
.ws10a{word-spacing:9.813333pt;}
.ws190{word-spacing:9.856000pt;}
.ws191{word-spacing:9.984000pt;}
.ws172{word-spacing:10.026667pt;}
.ws3a{word-spacing:10.080000pt;}
.ws96{word-spacing:10.133333pt;}
.ws11e{word-spacing:10.186667pt;}
.ws170{word-spacing:10.325333pt;}
.ws8c{word-spacing:10.400000pt;}
.ws17e{word-spacing:10.496000pt;}
.ws119{word-spacing:10.506667pt;}
.ws31{word-spacing:10.613333pt;}
.wsd3{word-spacing:10.666667pt;}
.ws67{word-spacing:10.880000pt;}
.ws25{word-spacing:10.986667pt;}
.ws8a{word-spacing:11.093333pt;}
.ws7e{word-spacing:11.146667pt;}
.ws17d{word-spacing:11.178667pt;}
.ws10f{word-spacing:11.253333pt;}
.ws17f{word-spacing:11.264000pt;}
.ws16a{word-spacing:11.562667pt;}
.ws5b{word-spacing:11.786667pt;}
.wsfd{word-spacing:11.946667pt;}
.ws57{word-spacing:12.053333pt;}
.wsc4{word-spacing:12.320000pt;}
.ws6c{word-spacing:12.373333pt;}
.ws182{word-spacing:12.458667pt;}
.ws40{word-spacing:12.533333pt;}
.wsf7{word-spacing:12.586667pt;}
.ws14c{word-spacing:12.885333pt;}
.ws125{word-spacing:12.906667pt;}
.ws98{word-spacing:12.960000pt;}
.ws16{word-spacing:13.066667pt;}
.ws11b{word-spacing:13.280000pt;}
.ws8d{word-spacing:13.386667pt;}
.ws124{word-spacing:13.493333pt;}
.ws58{word-spacing:13.546667pt;}
.wsd4{word-spacing:14.080000pt;}
.ws22{word-spacing:14.293333pt;}
.ws100{word-spacing:14.453333pt;}
.ws91{word-spacing:14.506667pt;}
.ws9c{word-spacing:14.826667pt;}
.ws18{word-spacing:14.933333pt;}
.wsc0{word-spacing:15.733333pt;}
.ws6f{word-spacing:16.000000pt;}
.ws10c{word-spacing:16.213333pt;}
.ws85{word-spacing:16.320000pt;}
.ws3f{word-spacing:16.426667pt;}
.ws175{word-spacing:17.365333pt;}
.ws97{word-spacing:18.186667pt;}
.ws180{word-spacing:18.602667pt;}
.wsb6{word-spacing:19.360000pt;}
.ws17{word-spacing:20.106667pt;}
.ws41{word-spacing:21.760000pt;}
.ws14e{word-spacing:24.320000pt;}
.ws197{word-spacing:31.317333pt;}
.wsc8{word-spacing:66.093625pt;}
.wsde{word-spacing:67.224533pt;}
.ws78{word-spacing:75.469867pt;}
.ws20{word-spacing:80.516800pt;}
.ws76{word-spacing:92.791467pt;}
.wsdc{word-spacing:99.170667pt;}
.ws21{word-spacing:108.800533pt;}
.ws75{word-spacing:109.709333pt;}
.ws74{word-spacing:114.402133pt;}
.wse0{word-spacing:116.066133pt;}
.wsda{word-spacing:198.878400pt;}
.wsc7{word-spacing:354.020120pt;}
._9{margin-left:-2509.307733pt;}
._46{margin-left:-39.839467pt;}
._b{margin-left:-8.815467pt;}
._a{margin-left:-7.713067pt;}
._49{margin-left:-6.681067pt;}
._3{margin-left:-5.625067pt;}
._7{margin-left:-4.705600pt;}
._1{margin-left:-3.460800pt;}
._2{margin-left:-2.116800pt;}
._0{margin-left:-1.131200pt;}
._4{width:1.030933pt;}
._8{width:1.968000pt;}
._22{width:3.105067pt;}
._6{width:15.061333pt;}
._5{width:19.840000pt;}
._28{width:21.338667pt;}
._37{width:23.444267pt;}
._24{width:27.565867pt;}
._40{width:28.898133pt;}
._47{width:32.739200pt;}
._48{width:37.682133pt;}
._3f{width:42.527467pt;}
._23{width:47.918933pt;}
._20{width:70.686400pt;}
._27{width:72.764267pt;}
._1c{width:75.768000pt;}
._15{width:79.985067pt;}
._1e{width:80.926400pt;}
._43{width:85.039467pt;}
._21{width:87.646933pt;}
._1a{width:89.527467pt;}
._14{width:92.951467pt;}
._2d{width:96.644267pt;}
._18{width:99.767467pt;}
._31{width:100.825600pt;}
._12{width:102.789867pt;}
._2f{width:106.330133pt;}
._1f{width:108.126933pt;}
._11{width:110.017600pt;}
._2b{width:115.275200pt;}
._d{width:118.123200pt;}
._2c{width:120.005333pt;}
._10{width:126.720533pt;}
._38{width:131.139733pt;}
._1b{width:140.560533pt;}
._19{width:150.800533pt;}
._c{width:155.022400pt;}
._35{width:156.064000pt;}
._e{width:172.308267pt;}
._16{width:182.548267pt;}
._33{width:186.247467pt;}
._f{width:191.999467pt;}
._13{width:203.028267pt;}
._3a{width:207.738667pt;}
._45{width:219.762133pt;}
._32{width:224.966933pt;}
._1d{width:229.520000pt;}
._2e{width:253.688000pt;}
._30{width:260.707200pt;}
._2a{width:262.444267pt;}
._39{width:280.393067pt;}
._42{width:292.680000pt;}
._44{width:297.020267pt;}
._26{width:332.064533pt;}
._3b{width:355.294933pt;}
._3d{width:369.996229pt;}
._34{width:375.775467pt;}
._36{width:386.015467pt;}
._3c{width:396.179650pt;}
._41{width:406.117867pt;}
._29{width:499.292267pt;}
._25{width:691.036800pt;}
._3e{width:757.319467pt;}
._4a{width:2106.483200pt;}
._17{width:2117.983467pt;}
.fsc{font-size:24.874667pt;}
.fs8{font-size:33.600000pt;}
.fs2{font-size:37.312000pt;}
.fs3{font-size:37.333333pt;}
.fsb{font-size:38.741867pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fsa{font-size:46.126400pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs0{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:57.477067pt;}
.y25{bottom:68.677067pt;}
.y24{bottom:79.877067pt;}
.y177{bottom:111.349067pt;}
.y61{bottom:111.370000pt;}
.y8d{bottom:111.370133pt;}
.y103{bottom:114.475067pt;}
.y1b1{bottom:115.836000pt;}
.y176{bottom:127.349067pt;}
.y60{bottom:127.370000pt;}
.y21{bottom:127.370133pt;}
.y102{bottom:127.808400pt;}
.y110{bottom:129.032800pt;}
.y1b0{bottom:131.836000pt;}
.y101{bottom:142.366133pt;}
.y175{bottom:143.349067pt;}
.y5f{bottom:143.370000pt;}
.y20{bottom:143.370133pt;}
.y10f{bottom:143.590533pt;}
.y1af{bottom:147.836000pt;}
.y100{bottom:156.923733pt;}
.y10e{bottom:158.148267pt;}
.y174{bottom:159.349067pt;}
.y5e{bottom:159.370000pt;}
.y23{bottom:159.370133pt;}
.y1ae{bottom:163.836000pt;}
.yff{bottom:170.257067pt;}
.y10d{bottom:172.705867pt;}
.y173{bottom:175.349067pt;}
.y5d{bottom:175.370000pt;}
.y22{bottom:175.370133pt;}
.y1ad{bottom:179.836000pt;}
.y1f{bottom:179.926533pt;}
.yfe{bottom:184.814800pt;}
.y10c{bottom:187.263600pt;}
.y172{bottom:191.349067pt;}
.y5c{bottom:191.370000pt;}
.y8c{bottom:191.370133pt;}
.y1ac{bottom:195.836000pt;}
.yfd{bottom:199.372533pt;}
.y171{bottom:207.349067pt;}
.y5b{bottom:207.370000pt;}
.y8b{bottom:207.370133pt;}
.y10b{bottom:210.511600pt;}
.y1ab{bottom:211.836000pt;}
.yfc{bottom:212.705867pt;}
.y170{bottom:223.349067pt;}
.y5a{bottom:223.370000pt;}
.y8a{bottom:223.370133pt;}
.yfb{bottom:226.039200pt;}
.y1aa{bottom:227.836000pt;}
.y111{bottom:236.931733pt;}
.y16f{bottom:239.349067pt;}
.y59{bottom:239.370000pt;}
.y89{bottom:239.370133pt;}
.yfa{bottom:240.596933pt;}
.y1a9{bottom:243.836000pt;}
.y1e{bottom:247.727067pt;}
.yf9{bottom:255.154667pt;}
.y16e{bottom:255.349067pt;}
.y58{bottom:255.370000pt;}
.y88{bottom:255.370133pt;}
.y1a8{bottom:259.836000pt;}
.y117{bottom:267.681200pt;}
.y11e{bottom:267.836267pt;}
.yf8{bottom:268.488000pt;}
.y1d{bottom:271.286133pt;}
.y16d{bottom:271.349067pt;}
.y57{bottom:271.370000pt;}
.y87{bottom:271.370133pt;}
.y1a7{bottom:275.836000pt;}
.yf7{bottom:283.045733pt;}
.y16c{bottom:287.349067pt;}
.y56{bottom:287.370000pt;}
.y86{bottom:287.370133pt;}
.y1a6{bottom:291.836000pt;}
.y112{bottom:295.728133pt;}
.yf6{bottom:297.603333pt;}
.y16b{bottom:303.349067pt;}
.y55{bottom:303.370000pt;}
.y85{bottom:303.370133pt;}
.y14a{bottom:306.246667pt;}
.y1a5{bottom:307.836000pt;}
.yf5{bottom:310.936667pt;}
.y16a{bottom:319.349067pt;}
.y54{bottom:319.370000pt;}
.y84{bottom:319.370133pt;}
.y1a4{bottom:323.836000pt;}
.yf4{bottom:324.270000pt;}
.y1c{bottom:325.081333pt;}
.y127{bottom:326.569831pt;}
.y169{bottom:335.349067pt;}
.y53{bottom:335.370000pt;}
.y83{bottom:335.370133pt;}
.yf3{bottom:337.603333pt;}
.y1a3{bottom:339.836000pt;}
.y11d{bottom:339.869467pt;}
.y1b{bottom:341.081333pt;}
.y126{bottom:343.451599pt;}
.y11c{bottom:349.554933pt;}
.y168{bottom:351.349067pt;}
.y52{bottom:351.370000pt;}
.y82{bottom:351.370133pt;}
.yf2{bottom:352.161067pt;}
.y1a2{bottom:355.836000pt;}
.y125{bottom:360.933867pt;}
.y1a{bottom:364.640400pt;}
.yf1{bottom:366.718800pt;}
.y167{bottom:367.349067pt;}
.y51{bottom:367.370000pt;}
.y81{bottom:367.370133pt;}
.y128{bottom:370.246667pt;}
.y1a1{bottom:371.836000pt;}
.y72{bottom:372.280267pt;}
.y71{bottom:373.504533pt;}
.yf0{bottom:380.052133pt;}
.y19{bottom:380.640400pt;}
.y166{bottom:383.349067pt;}
.y50{bottom:383.370000pt;}
.y80{bottom:383.370133pt;}
.y124{bottom:386.405018pt;}
.y70{bottom:386.837867pt;}
.y1a0{bottom:387.836000pt;}
.yef{bottom:394.609867pt;}
.y18{bottom:396.640400pt;}
.y11b{bottom:399.149067pt;}
.y165{bottom:399.349067pt;}
.y4f{bottom:399.370000pt;}
.y7f{bottom:399.370133pt;}
.y6f{bottom:401.395600pt;}
.y19f{bottom:403.836000pt;}
.y123{bottom:403.926027pt;}
.y11a{bottom:408.834533pt;}
.yee{bottom:409.167467pt;}
.y164{bottom:415.349067pt;}
.y4e{bottom:415.370000pt;}
.y7e{bottom:415.370133pt;}
.y6e{bottom:415.953333pt;}
.y19e{bottom:419.836000pt;}
.y17{bottom:420.199467pt;}
.y122{bottom:421.737600pt;}
.yed{bottom:422.500800pt;}
.y6d{bottom:430.511067pt;}
.y163{bottom:431.349067pt;}
.y4d{bottom:431.370000pt;}
.y7d{bottom:431.370133pt;}
.y6c{bottom:431.735467pt;}
.y19d{bottom:435.836000pt;}
.y16{bottom:436.199467pt;}
.yec{bottom:437.058533pt;}
.y6b{bottom:445.068800pt;}
.y121{bottom:447.208251pt;}
.y162{bottom:447.349067pt;}
.y4c{bottom:447.370000pt;}
.y7c{bottom:447.370133pt;}
.yeb{bottom:451.616267pt;}
.y19c{bottom:451.836000pt;}
.y15{bottom:452.199467pt;}
.y119{bottom:458.541467pt;}
.y6a{bottom:459.626400pt;}
.y69{bottom:460.850800pt;}
.y161{bottom:463.349067pt;}
.y4b{bottom:463.370000pt;}
.y7b{bottom:463.370133pt;}
.y120{bottom:463.770399pt;}
.yea{bottom:464.949600pt;}
.y19b{bottom:467.836000pt;}
.y14{bottom:468.199467pt;}
.y118{bottom:468.226933pt;}
.y68{bottom:474.184133pt;}
.ye9{bottom:478.282933pt;}
.y160{bottom:479.349067pt;}
.y4a{bottom:479.370000pt;}
.ya8{bottom:479.370133pt;}
.y11f{bottom:481.252667pt;}
.y19a{bottom:483.836000pt;}
.y13{bottom:484.199467pt;}
.y67{bottom:488.741867pt;}
.ye8{bottom:492.840667pt;}
.y15f{bottom:495.349067pt;}
.y49{bottom:495.370000pt;}
.ya7{bottom:495.370133pt;}
.y199{bottom:499.836000pt;}
.y12{bottom:500.199467pt;}
.y66{bottom:502.075200pt;}
.yc5{bottom:503.348267pt;}
.y116{bottom:505.898749pt;}
.ye7{bottom:507.398400pt;}
.y15e{bottom:511.349067pt;}
.y48{bottom:511.370000pt;}
.ya6{bottom:511.370133pt;}
.yc6{bottom:515.457333pt;}
.y115{bottom:515.816667pt;}
.y198{bottom:515.836000pt;}
.y11{bottom:516.199467pt;}
.yc4{bottom:516.681600pt;}
.ye6{bottom:520.731733pt;}
.y65{bottom:525.323200pt;}
.y114{bottom:525.502133pt;}
.y15d{bottom:527.349067pt;}
.y47{bottom:527.370000pt;}
.ya5{bottom:527.370133pt;}
.yc3{bottom:530.014933pt;}
.y197{bottom:531.836000pt;}
.ye5{bottom:534.065067pt;}
.y10{bottom:539.758533pt;}
.y113{bottom:540.499867pt;}
.y15c{bottom:543.349067pt;}
.y149{bottom:543.370000pt;}
.ya4{bottom:543.370133pt;}
.yc2{bottom:544.572667pt;}
.y196{bottom:547.836000pt;}
.ye4{bottom:548.622667pt;}
.yf{bottom:555.758533pt;}
.yc1{bottom:559.130400pt;}
.y15b{bottom:559.349067pt;}
.y64{bottom:559.370000pt;}
.ya3{bottom:559.370133pt;}
.yc0{bottom:560.354800pt;}
.y46{bottom:562.246667pt;}
.y148{bottom:563.128533pt;}
.ye3{bottom:563.180400pt;}
.y195{bottom:563.836000pt;}
.ye{bottom:571.758533pt;}
.ybf{bottom:573.688133pt;}
.y15a{bottom:575.349067pt;}
.y63{bottom:575.370000pt;}
.ya2{bottom:575.370133pt;}
.y147{bottom:576.461867pt;}
.y194{bottom:579.836000pt;}
.ye2{bottom:586.428533pt;}
.yd{bottom:587.758533pt;}
.ybe{bottom:588.245867pt;}
.y146{bottom:589.795200pt;}
.y159{bottom:591.349067pt;}
.y62{bottom:591.370000pt;}
.ya1{bottom:591.370133pt;}
.y193{bottom:595.836000pt;}
.ybd{bottom:601.579200pt;}
.y145{bottom:603.128533pt;}
.y158{bottom:607.349067pt;}
.y45{bottom:607.370000pt;}
.ya0{bottom:607.370133pt;}
.yc{bottom:611.317600pt;}
.y192{bottom:611.836000pt;}
.ybc{bottom:614.912533pt;}
.y144{bottom:617.686133pt;}
.y157{bottom:623.349067pt;}
.y44{bottom:623.370000pt;}
.y9f{bottom:623.370133pt;}
.ye0{bottom:625.897333pt;}
.y191{bottom:627.836000pt;}
.y143{bottom:631.019467pt;}
.ybb{bottom:638.160533pt;}
.y156{bottom:639.349067pt;}
.y43{bottom:639.370000pt;}
.y9e{bottom:639.370133pt;}
.ydf{bottom:641.897333pt;}
.y190{bottom:643.836000pt;}
.y142{bottom:644.352800pt;}
.yba{bottom:654.160533pt;}
.y155{bottom:655.349067pt;}
.y42{bottom:655.370000pt;}
.y9d{bottom:655.370133pt;}
.y141{bottom:657.686133pt;}
.yde{bottom:657.897333pt;}
.y18f{bottom:659.836000pt;}
.yb{bottom:661.333333pt;}
.y41{bottom:671.370000pt;}
.y9c{bottom:671.370133pt;}
.y140{bottom:672.243867pt;}
.ydd{bottom:673.897333pt;}
.y18e{bottom:675.836000pt;}
.ya{bottom:677.333333pt;}
.y154{bottom:682.687600pt;}
.y13f{bottom:685.577200pt;}
.y40{bottom:687.370000pt;}
.y7a{bottom:687.370133pt;}
.ydc{bottom:689.897333pt;}
.y18d{bottom:691.836000pt;}
.y13e{bottom:698.910533pt;}
.y14b{bottom:700.472400pt;}
.y3f{bottom:703.370000pt;}
.y79{bottom:703.370133pt;}
.ydb{bottom:705.897333pt;}
.y18c{bottom:707.836000pt;}
.y9{bottom:708.451467pt;}
.y13d{bottom:712.243867pt;}
.y3e{bottom:719.370000pt;}
.y78{bottom:719.370133pt;}
.yda{bottom:721.897333pt;}
.y18b{bottom:723.836000pt;}
.y13c{bottom:726.801600pt;}
.y3d{bottom:735.370000pt;}
.y77{bottom:735.370133pt;}
.yd9{bottom:737.897333pt;}
.y18a{bottom:739.836000pt;}
.y13b{bottom:740.134933pt;}
.y8{bottom:750.908267pt;}
.y3c{bottom:751.370000pt;}
.y76{bottom:751.370133pt;}
.y13a{bottom:753.468267pt;}
.yd8{bottom:753.897333pt;}
.y189{bottom:755.836000pt;}
.y139{bottom:766.801600pt;}
.y7{bottom:766.908267pt;}
.y3b{bottom:767.370000pt;}
.y75{bottom:767.370133pt;}
.yd7{bottom:769.897333pt;}
.y188{bottom:771.836000pt;}
.y138{bottom:780.134933pt;}
.y3a{bottom:783.370000pt;}
.y74{bottom:783.370133pt;}
.y153{bottom:785.548400pt;}
.yd6{bottom:785.897333pt;}
.y187{bottom:787.836000pt;}
.y6{bottom:790.467333pt;}
.y137{bottom:794.692667pt;}
.y39{bottom:799.370000pt;}
.y73{bottom:799.370133pt;}
.yd5{bottom:801.897333pt;}
.y186{bottom:803.836000pt;}
.y5{bottom:806.467333pt;}
.y136{bottom:808.026000pt;}
.y38{bottom:815.370000pt;}
.y9b{bottom:815.370133pt;}
.yd4{bottom:817.897333pt;}
.y185{bottom:819.836000pt;}
.y135{bottom:821.359333pt;}
.y4{bottom:822.467333pt;}
.y37{bottom:831.370000pt;}
.y9a{bottom:831.370133pt;}
.yb8{bottom:831.625467pt;}
.y152{bottom:833.548400pt;}
.yd3{bottom:833.897333pt;}
.y134{bottom:834.692667pt;}
.y184{bottom:835.836000pt;}
.yb9{bottom:843.734400pt;}
.yb7{bottom:844.958800pt;}
.y3{bottom:846.026400pt;}
.y36{bottom:847.370000pt;}
.y99{bottom:847.370133pt;}
.y133{bottom:848.026000pt;}
.yd2{bottom:849.897333pt;}
.y183{bottom:851.836000pt;}
.yb6{bottom:858.292133pt;}
.y132{bottom:862.583600pt;}
.y35{bottom:863.370000pt;}
.y98{bottom:863.370133pt;}
.y14e{bottom:865.548267pt;}
.yd1{bottom:865.897333pt;}
.y182{bottom:867.836000pt;}
.yb5{bottom:872.849733pt;}
.y131{bottom:875.916933pt;}
.y34{bottom:879.370000pt;}
.y97{bottom:879.370133pt;}
.y2{bottom:881.225067pt;}
.y151{bottom:881.548267pt;}
.yd0{bottom:881.897333pt;}
.y181{bottom:883.836000pt;}
.yb4{bottom:887.407467pt;}
.yb3{bottom:888.631867pt;}
.y33{bottom:895.370000pt;}
.y96{bottom:895.370133pt;}
.ycf{bottom:897.897333pt;}
.y130{bottom:899.165067pt;}
.y180{bottom:899.836000pt;}
.yb2{bottom:901.965200pt;}
.y32{bottom:911.370000pt;}
.y95{bottom:911.370133pt;}
.yce{bottom:913.897333pt;}
.y1{bottom:914.825067pt;}
.y12f{bottom:915.165067pt;}
.y10a{bottom:915.183067pt;}
.y17f{bottom:915.836000pt;}
.yb1{bottom:916.522933pt;}
.y14d{bottom:918.908000pt;}
.y31{bottom:927.370000pt;}
.y94{bottom:927.370133pt;}
.y150{bottom:929.548267pt;}
.y109{bottom:929.740800pt;}
.ycd{bottom:929.897333pt;}
.ye1{bottom:930.246667pt;}
.yb0{bottom:931.080533pt;}
.y17e{bottom:931.836000pt;}
.yaf{bottom:932.304933pt;}
.y30{bottom:943.370000pt;}
.y93{bottom:943.370133pt;}
.y108{bottom:944.298533pt;}
.y12e{bottom:944.631733pt;}
.yae{bottom:945.638267pt;}
.ycc{bottom:945.897333pt;}
.y14c{bottom:946.246667pt;}
.y17d{bottom:947.836000pt;}
.y107{bottom:958.856267pt;}
.y12d{bottom:959.189467pt;}
.y2f{bottom:959.370000pt;}
.y92{bottom:959.370133pt;}
.yad{bottom:960.196000pt;}
.ycb{bottom:961.897333pt;}
.y17c{bottom:963.836000pt;}
.y106{bottom:973.413867pt;}
.yac{bottom:973.529333pt;}
.y12c{bottom:973.747200pt;}
.y2e{bottom:975.370000pt;}
.y91{bottom:975.370133pt;}
.y14f{bottom:977.548267pt;}
.yca{bottom:977.897333pt;}
.y17b{bottom:979.836000pt;}
.yab{bottom:986.862667pt;}
.y105{bottom:987.971600pt;}
.y12b{bottom:988.304800pt;}
.y2d{bottom:991.370000pt;}
.y90{bottom:991.370133pt;}
.yc9{bottom:993.897333pt;}
.y17a{bottom:995.836000pt;}
.y29{bottom:1001.533333pt;}
.y12a{bottom:1002.862533pt;}
.y104{bottom:1002.862667pt;}
.y2c{bottom:1007.370000pt;}
.y8f{bottom:1007.370133pt;}
.yc8{bottom:1009.897333pt;}
.yaa{bottom:1010.110667pt;}
.y179{bottom:1011.836000pt;}
.y2b{bottom:1023.370000pt;}
.y8e{bottom:1023.370133pt;}
.yc7{bottom:1025.897333pt;}
.y129{bottom:1026.110533pt;}
.ya9{bottom:1026.110667pt;}
.y178{bottom:1027.836000pt;}
.y28{bottom:1036.478000pt;}
.y27{bottom:1052.257600pt;}
.y2a{bottom:1060.905467pt;}
.hc{height:24.511200pt;}
.h11{height:28.205138pt;}
.hd{height:29.180000pt;}
.he{height:30.175781pt;}
.h4{height:30.378667pt;}
.hf{height:30.464000pt;}
.h6{height:30.549333pt;}
.h5{height:31.125333pt;}
.h14{height:32.018261pt;}
.h10{height:33.581280pt;}
.h8{height:34.368000pt;}
.h7{height:35.160000pt;}
.hb{height:38.186667pt;}
.h13{height:39.066667pt;}
.h9{height:46.880000pt;}
.h3{height:48.530571pt;}
.ha{height:54.693333pt;}
.h12{height:56.176766pt;}
.h2{height:82.040000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:83.149600pt;}
.x1f{left:85.417333pt;}
.x49{left:96.744267pt;}
.xd{left:98.267733pt;}
.x48{left:104.610800pt;}
.x2d{left:113.385867pt;}
.x3f{left:120.107333pt;}
.x3{left:129.087067pt;}
.x43{left:130.341333pt;}
.x25{left:137.693200pt;}
.x45{left:139.676933pt;}
.x44{left:141.639600pt;}
.x40{left:143.972323pt;}
.x4b{left:154.454133pt;}
.x2e{left:156.952400pt;}
.x4a{left:159.339467pt;}
.x4e{left:162.422000pt;}
.x4f{left:169.360800pt;}
.x67{left:171.638000pt;}
.x24{left:185.524133pt;}
.x23{left:187.481467pt;}
.x20{left:188.953333pt;}
.x22{left:191.913333pt;}
.x2{left:192.957467pt;}
.x21{left:194.948000pt;}
.x41{left:200.138344pt;}
.x3e{left:206.204000pt;}
.x2c{left:211.298133pt;}
.x2a{left:217.399467pt;}
.x2b{left:219.799333pt;}
.x4{left:225.876800pt;}
.x1a{left:230.524533pt;}
.x3d{left:232.718267pt;}
.x50{left:234.327733pt;}
.x52{left:236.711333pt;}
.x51{left:239.426400pt;}
.x53{left:240.327867pt;}
.x72{left:242.129867pt;}
.x6d{left:243.447467pt;}
.x1b{left:247.068533pt;}
.x5d{left:262.161867pt;}
.xc{left:263.886933pt;}
.x47{left:266.755467pt;}
.x26{left:267.657733pt;}
.x5{left:274.849200pt;}
.x46{left:291.473067pt;}
.x1d{left:305.739467pt;}
.x1c{left:311.563333pt;}
.x29{left:318.140267pt;}
.x27{left:323.756267pt;}
.x1e{left:328.107200pt;}
.x28{left:330.230667pt;}
.xb{left:333.851067pt;}
.x39{left:339.018800pt;}
.x3b{left:340.064133pt;}
.x3a{left:341.440000pt;}
.x73{left:342.938133pt;}
.x55{left:344.842400pt;}
.x6f{left:348.724800pt;}
.x5e{left:350.314533pt;}
.x56{left:352.138400pt;}
.x5f{left:353.583467pt;}
.x68{left:356.020667pt;}
.x6e{left:357.028933pt;}
.x54{left:360.964800pt;}
.x60{left:373.242000pt;}
.x6{left:388.774133pt;}
.x38{left:396.590800pt;}
.x42{left:400.345200pt;}
.x8{left:404.849733pt;}
.x12{left:407.119333pt;}
.xe{left:419.968400pt;}
.x3c{left:433.597067pt;}
.x7{left:439.160667pt;}
.x63{left:452.031467pt;}
.x69{left:455.266933pt;}
.x58{left:457.597600pt;}
.x6a{left:459.928000pt;}
.x57{left:462.284800pt;}
.x74{left:463.640133pt;}
.x61{left:466.119867pt;}
.x75{left:468.391467pt;}
.x62{left:470.013200pt;}
.x70{left:472.077200pt;}
.x4c{left:474.055467pt;}
.x19{left:475.360400pt;}
.x59{left:476.770133pt;}
.x14{left:480.331067pt;}
.x18{left:481.221600pt;}
.x17{left:483.072267pt;}
.x2f{left:484.168000pt;}
.x15{left:485.227067pt;}
.x13{left:487.707067pt;}
.x16{left:489.792400pt;}
.x31{left:490.829867pt;}
.x30{left:493.559867pt;}
.x36{left:495.992267pt;}
.x35{left:514.983600pt;}
.x32{left:516.972933pt;}
.x34{left:529.922000pt;}
.xa{left:534.411333pt;}
.x33{left:536.679333pt;}
.xf{left:552.896533pt;}
.x37{left:571.025467pt;}
.x5c{left:595.653600pt;}
.x64{left:597.841333pt;}
.x5b{left:599.697333pt;}
.x5a{left:601.132000pt;}
.x65{left:604.225333pt;}
.x6b{left:606.598667pt;}
.x11{left:610.587333pt;}
.x71{left:612.363867pt;}
.x6c{left:614.337200pt;}
.x10{left:616.864400pt;}
.x9{left:621.127467pt;}
.x66{left:623.883733pt;}
.x76{left:630.512933pt;}
.x4d{left:636.784800pt;}
}




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