
    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_9611602f3569477cc6e28f87.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_ac1cc2e97569720b66aa1162.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_11de9d6afcf0080d06eee65c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_93d3aa8a03a7227d49569b67.woff2')format("woff");}.ff4{font-family:ff4;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;}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.v2{vertical-align:-18.809400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.810000px;}
.v3{vertical-align:22.770000px;}
.v1{vertical-align:26.730000px;}
.v5{vertical-align:31.040400px;}
.lsf{letter-spacing:-0.828000px;}
.lsa{letter-spacing:-0.690000px;}
.ls19{letter-spacing:-0.621000px;}
.ls7{letter-spacing:-0.570000px;}
.ls28{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.483000px;}
.ls10{letter-spacing:-0.414000px;}
.ls11{letter-spacing:-0.345000px;}
.ls6{letter-spacing:-0.315000px;}
.ls1a{letter-spacing:-0.276000px;}
.ls29{letter-spacing:-0.252000px;}
.lsd{letter-spacing:-0.207000px;}
.ls5{letter-spacing:-0.189000px;}
.lsb{letter-spacing:-0.138000px;}
.ls2a{letter-spacing:-0.126000px;}
.ls16{letter-spacing:-0.069000px;}
.ls4{letter-spacing:-0.063000px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.ls27{letter-spacing:0.063000px;}
.lse{letter-spacing:0.069000px;}
.ls1{letter-spacing:0.126000px;}
.ls17{letter-spacing:0.138000px;}
.ls2e{letter-spacing:0.189000px;}
.ls15{letter-spacing:0.207000px;}
.ls2d{letter-spacing:0.252000px;}
.ls12{letter-spacing:0.276000px;}
.ls24{letter-spacing:0.315000px;}
.ls14{letter-spacing:0.345000px;}
.ls2f{letter-spacing:0.378000px;}
.ls9{letter-spacing:0.414000px;}
.ls2{letter-spacing:0.441000px;}
.ls18{letter-spacing:0.483000px;}
.ls25{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.552000px;}
.ls2c{letter-spacing:0.567000px;}
.ls1b{letter-spacing:0.828000px;}
.ls13{letter-spacing:0.966000px;}
.ls2b{letter-spacing:1.071000px;}
.ls26{letter-spacing:2.205000px;}
.ls1e{letter-spacing:135.007800px;}
.ls20{letter-spacing:284.101200px;}
.ls21{letter-spacing:287.256000px;}
.ls1f{letter-spacing:327.478800px;}
.ls23{letter-spacing:408.134400px;}
.ls22{letter-spacing:442.164000px;}
.ls1c{letter-spacing:656.038800px;}
.ls1d{letter-spacing:776.429400px;}
.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;}
}
.ws1{word-spacing:-20.250000px;}
.ws20{word-spacing:-17.250000px;}
.ws4{word-spacing:-15.750000px;}
.ws3{word-spacing:-15.687000px;}
.ws98{word-spacing:-14.250000px;}
.ws2{word-spacing:-13.162500px;}
.ws0{word-spacing:-12.750000px;}
.ws77{word-spacing:-11.212500px;}
.ws5{word-spacing:-9.262500px;}
.wsc6{word-spacing:-2.205000px;}
.wsde{word-spacing:-1.575000px;}
.wsc2{word-spacing:-1.173000px;}
.wsbb{word-spacing:-0.828000px;}
.ws6f{word-spacing:-0.483000px;}
.wsf3{word-spacing:-0.441000px;}
.ws52{word-spacing:-0.414000px;}
.ws9{word-spacing:-0.405000px;}
.wsb4{word-spacing:-0.345000px;}
.wse2{word-spacing:-0.315000px;}
.ws1d{word-spacing:-0.285000px;}
.ws84{word-spacing:-0.276000px;}
.wsf7{word-spacing:-0.252000px;}
.wsf8{word-spacing:-0.189000px;}
.ws63{word-spacing:-0.138000px;}
.wsd6{word-spacing:-0.126000px;}
.wsb7{word-spacing:-0.069000px;}
.wsd9{word-spacing:-0.063000px;}
.ws8{word-spacing:0.000000px;}
.ws49{word-spacing:0.069000px;}
.ws48{word-spacing:0.138000px;}
.wse8{word-spacing:0.189000px;}
.ws67{word-spacing:0.207000px;}
.wse4{word-spacing:0.252000px;}
.ws3e{word-spacing:0.276000px;}
.wsf6{word-spacing:0.315000px;}
.ws59{word-spacing:0.345000px;}
.ws53{word-spacing:0.414000px;}
.ws82{word-spacing:0.552000px;}
.ws1a{word-spacing:0.567000px;}
.ws1f{word-spacing:0.570000px;}
.ws5a{word-spacing:0.621000px;}
.ws2c{word-spacing:0.690000px;}
.wsdb{word-spacing:0.693000px;}
.wsc8{word-spacing:0.756000px;}
.wsbf{word-spacing:0.759000px;}
.ws39{word-spacing:0.828000px;}
.ws3c{word-spacing:0.897000px;}
.ws27{word-spacing:0.966000px;}
.wse3{word-spacing:1.008000px;}
.ws3f{word-spacing:1.104000px;}
.ws2e{word-spacing:1.173000px;}
.ws38{word-spacing:1.242000px;}
.wsbc{word-spacing:1.380000px;}
.ws13{word-spacing:1.386000px;}
.ws15{word-spacing:1.449000px;}
.ws17{word-spacing:1.512000px;}
.ws8e{word-spacing:1.587000px;}
.wsed{word-spacing:1.638000px;}
.ws68{word-spacing:1.656000px;}
.wsf1{word-spacing:1.701000px;}
.wsc1{word-spacing:1.725000px;}
.wsdc{word-spacing:1.764000px;}
.ws60{word-spacing:1.794000px;}
.ws5d{word-spacing:1.863000px;}
.ws81{word-spacing:1.932000px;}
.ws50{word-spacing:2.001000px;}
.wsf{word-spacing:2.016000px;}
.ws56{word-spacing:2.070000px;}
.ws73{word-spacing:2.208000px;}
.ws6b{word-spacing:2.277000px;}
.ws19{word-spacing:2.331000px;}
.wsce{word-spacing:2.394000px;}
.ws61{word-spacing:2.415000px;}
.wscd{word-spacing:2.457000px;}
.ws65{word-spacing:2.484000px;}
.wsca{word-spacing:2.520000px;}
.ws6{word-spacing:2.550000px;}
.ws6e{word-spacing:2.553000px;}
.wsf9{word-spacing:2.583000px;}
.ws88{word-spacing:2.622000px;}
.ws89{word-spacing:2.691000px;}
.wsd{word-spacing:2.709000px;}
.ws5f{word-spacing:2.760000px;}
.ws4c{word-spacing:2.829000px;}
.wse1{word-spacing:2.835000px;}
.ws1e{word-spacing:2.850000px;}
.wsf0{word-spacing:2.898000px;}
.ws1b{word-spacing:2.964000px;}
.ws4b{word-spacing:2.967000px;}
.ws16{word-spacing:3.024000px;}
.ws2a{word-spacing:3.036000px;}
.wsa{word-spacing:3.087000px;}
.ws74{word-spacing:3.105000px;}
.ws12{word-spacing:3.150000px;}
.ws44{word-spacing:3.174000px;}
.ws14{word-spacing:3.213000px;}
.ws24{word-spacing:3.243000px;}
.ws21{word-spacing:3.300000px;}
.ws3b{word-spacing:3.312000px;}
.wsf2{word-spacing:3.339000px;}
.ws70{word-spacing:3.381000px;}
.wse6{word-spacing:3.402000px;}
.ws28{word-spacing:3.450000px;}
.wsdd{word-spacing:3.465000px;}
.ws62{word-spacing:3.519000px;}
.wscc{word-spacing:3.528000px;}
.wsd4{word-spacing:3.654000px;}
.ws34{word-spacing:3.657000px;}
.ws42{word-spacing:3.726000px;}
.ws25{word-spacing:3.795000px;}
.ws4f{word-spacing:3.864000px;}
.ws18{word-spacing:3.906000px;}
.wsbd{word-spacing:3.933000px;}
.ws5b{word-spacing:4.002000px;}
.wse{word-spacing:4.032000px;}
.ws7{word-spacing:4.050000px;}
.wsb6{word-spacing:4.071000px;}
.wsd5{word-spacing:4.095000px;}
.ws5c{word-spacing:4.140000px;}
.ws37{word-spacing:4.209000px;}
.ws55{word-spacing:4.278000px;}
.wsc9{word-spacing:4.284000px;}
.ws22{word-spacing:4.347000px;}
.wse9{word-spacing:4.410000px;}
.ws80{word-spacing:4.416000px;}
.ws4a{word-spacing:4.485000px;}
.ws36{word-spacing:4.554000px;}
.ws7b{word-spacing:4.623000px;}
.ws6d{word-spacing:4.761000px;}
.ws8c{word-spacing:4.899000px;}
.wse7{word-spacing:4.914000px;}
.wsfa{word-spacing:4.977000px;}
.ws31{word-spacing:5.037000px;}
.wseb{word-spacing:5.040000px;}
.wsb{word-spacing:5.103000px;}
.ws51{word-spacing:5.106000px;}
.ws7a{word-spacing:5.175000px;}
.ws23{word-spacing:5.229000px;}
.ws57{word-spacing:5.244000px;}
.wsfc{word-spacing:5.292000px;}
.ws76{word-spacing:5.313000px;}
.wsad{word-spacing:5.382000px;}
.ws66{word-spacing:5.451000px;}
.ws54{word-spacing:5.520000px;}
.wsb0{word-spacing:5.589000px;}
.ws45{word-spacing:5.658000px;}
.wsc7{word-spacing:5.670000px;}
.ws32{word-spacing:5.727000px;}
.wsfd{word-spacing:5.733000px;}
.ws3a{word-spacing:5.796000px;}
.wsd0{word-spacing:5.859000px;}
.wsbe{word-spacing:5.865000px;}
.ws90{word-spacing:5.934000px;}
.ws8a{word-spacing:6.072000px;}
.wsc0{word-spacing:6.141000px;}
.wse0{word-spacing:6.174000px;}
.ws7e{word-spacing:6.210000px;}
.wsd8{word-spacing:6.237000px;}
.ws41{word-spacing:6.279000px;}
.wsea{word-spacing:6.300000px;}
.wsb1{word-spacing:6.417000px;}
.wsec{word-spacing:6.426000px;}
.ws2f{word-spacing:6.555000px;}
.ws87{word-spacing:6.624000px;}
.wsaf{word-spacing:6.693000px;}
.ws78{word-spacing:6.762000px;}
.wsc5{word-spacing:6.900000px;}
.ws75{word-spacing:6.969000px;}
.ws11{word-spacing:6.993000px;}
.wscb{word-spacing:7.056000px;}
.ws5e{word-spacing:7.176000px;}
.ws85{word-spacing:7.245000px;}
.ws35{word-spacing:7.314000px;}
.wsd3{word-spacing:7.371000px;}
.ws33{word-spacing:7.383000px;}
.ws79{word-spacing:7.452000px;}
.ws4e{word-spacing:7.521000px;}
.wse5{word-spacing:7.560000px;}
.ws47{word-spacing:7.590000px;}
.wsb3{word-spacing:7.659000px;}
.wsb2{word-spacing:7.728000px;}
.wsee{word-spacing:7.749000px;}
.ws3d{word-spacing:7.797000px;}
.wsd7{word-spacing:7.812000px;}
.ws7f{word-spacing:7.866000px;}
.wsc{word-spacing:7.875000px;}
.wsab{word-spacing:8.073000px;}
.ws71{word-spacing:8.142000px;}
.ws6a{word-spacing:8.211000px;}
.wsd2{word-spacing:8.253000px;}
.ws1c{word-spacing:8.322000px;}
.wsfb{word-spacing:8.442000px;}
.ws72{word-spacing:8.487000px;}
.ws4d{word-spacing:8.556000px;}
.ws29{word-spacing:8.625000px;}
.ws8d{word-spacing:8.694000px;}
.ws8b{word-spacing:8.763000px;}
.ws46{word-spacing:8.832000px;}
.ws40{word-spacing:8.901000px;}
.wsb5{word-spacing:9.039000px;}
.ws69{word-spacing:9.108000px;}
.ws8f{word-spacing:9.177000px;}
.ws7d{word-spacing:9.315000px;}
.ws6c{word-spacing:9.384000px;}
.wsd1{word-spacing:9.387000px;}
.wsac{word-spacing:9.453000px;}
.ws10{word-spacing:9.513000px;}
.wsf4{word-spacing:9.576000px;}
.wsae{word-spacing:9.591000px;}
.wsda{word-spacing:9.639000px;}
.ws30{word-spacing:10.005000px;}
.wsb9{word-spacing:10.212000px;}
.ws7c{word-spacing:10.350000px;}
.wscf{word-spacing:10.521000px;}
.wsdf{word-spacing:10.647000px;}
.ws64{word-spacing:10.695000px;}
.ws2b{word-spacing:10.902000px;}
.wsb8{word-spacing:11.040000px;}
.wsef{word-spacing:11.214000px;}
.ws26{word-spacing:11.247000px;}
.ws58{word-spacing:11.937000px;}
.wsba{word-spacing:12.006000px;}
.ws2d{word-spacing:12.075000px;}
.ws83{word-spacing:12.144000px;}
.wsc3{word-spacing:12.834000px;}
.wsc4{word-spacing:14.283000px;}
.ws86{word-spacing:15.594000px;}
.ws43{word-spacing:18.354000px;}
.wsf5{word-spacing:19.404000px;}
.wsa8{word-spacing:69.457200px;}
.wsa9{word-spacing:69.457800px;}
.ws92{word-spacing:132.614400px;}
.ws94{word-spacing:161.114400px;}
.ws9b{word-spacing:170.276400px;}
.ws9f{word-spacing:194.899800px;}
.ws9d{word-spacing:209.149800px;}
.wsa0{word-spacing:216.274800px;}
.ws97{word-spacing:230.526000px;}
.ws96{word-spacing:361.647000px;}
.wsa7{word-spacing:390.352200px;}
.wsa5{word-spacing:391.379400px;}
.wsaa{word-spacing:472.327200px;}
.ws91{word-spacing:519.751200px;}
.ws9a{word-spacing:532.299000px;}
.ws99{word-spacing:546.549000px;}
.wsa1{word-spacing:547.606500px;}
.ws9c{word-spacing:560.799000px;}
.wsa4{word-spacing:651.354000px;}
.wsa3{word-spacing:665.604000px;}
.wsa6{word-spacing:679.854000px;}
.ws9e{word-spacing:792.655200px;}
.ws93{word-spacing:856.343400px;}
.ws95{word-spacing:953.015400px;}
.wsa2{word-spacing:1088.243400px;}
._8e{margin-left:-86.250000px;}
._92{margin-left:-25.830000px;}
._11{margin-left:-24.426000px;}
._8{margin-left:-23.041200px;}
._e{margin-left:-20.112000px;}
._8d{margin-left:-17.358900px;}
._8c{margin-left:-16.146000px;}
._1{margin-left:-9.661800px;}
._3{margin-left:-8.307600px;}
._6{margin-left:-6.445500px;}
._c{margin-left:-5.112900px;}
._7{margin-left:-3.805800px;}
._0{margin-left:-1.892100px;}
._b{width:1.404600px;}
._4{width:2.532300px;}
._2{width:3.999000px;}
._5{width:5.210700px;}
._d{width:6.597300px;}
._a{width:8.037000px;}
._f{width:9.585600px;}
._9{width:11.183400px;}
._10{width:12.220500px;}
._91{width:16.161600px;}
._90{width:18.881100px;}
._8f{width:20.515200px;}
._5a{width:60.522000px;}
._14{width:75.951000px;}
._59{width:80.541600px;}
._67{width:94.832400px;}
._69{width:95.859600px;}
._1c{width:99.390600px;}
._23{width:108.880800px;}
._72{width:111.219300px;}
._1f{width:113.611500px;}
._32{width:115.521600px;}
._31{width:117.908400px;}
._25{width:123.130800px;}
._12{width:124.689600px;}
._1b{width:127.027200px;}
._30{width:135.007800px;}
._22{width:136.518000px;}
._60{width:160.366200px;}
._13{width:172.513800px;}
._70{width:181.063800px;}
._39{width:182.588400px;}
._4f{width:209.149200px;}
._2d{width:210.166200px;}
._2f{width:232.364400px;}
._35{width:235.286400px;}
._20{width:238.666200px;}
._1e{width:240.558300px;}
._36{width:244.776600px;}
._17{width:248.185200px;}
._56{width:257.599200px;}
._84{width:265.094400px;}
._1a{width:267.166200px;}
._3a{width:270.423000px;}
._55{width:274.699800px;}
._73{width:282.109500px;}
._15{width:292.937400px;}
._41{width:301.005000px;}
._8b{width:328.346100px;}
._6c{width:336.921000px;}
._89{width:337.947600px;}
._7d{width:346.779300px;}
._16{width:351.419400px;}
._66{width:355.834800px;}
._7f{width:361.125000px;}
._5b{width:373.660200px;}
._75{width:374.701800px;}
._76{width:382.930200px;}
._82{width:385.433700px;}
._18{width:393.478200px;}
._38{width:396.092400px;}
._6e{width:404.602200px;}
._83{width:410.712900px;}
._68{width:413.643000px;}
._52{width:415.451400px;}
._27{width:421.978200px;}
._85{width:426.082200px;}
._87{width:429.282900px;}
._28{width:438.982200px;}
._74{width:444.355800px;}
._34{width:447.321000px;}
._65{width:451.605000px;}
._3b{width:452.862900px;}
._8a{width:456.391800px;}
._77{width:459.848400px;}
._71{width:470.290200px;}
._2e{width:474.835200px;}
._2a{width:481.732200px;}
._4e{width:494.374200px;}
._7a{width:498.468000px;}
._58{width:515.148000px;}
._7c{width:516.791400px;}
._26{width:522.715200px;}
._86{width:524.244900px;}
._6f{width:527.586000px;}
._64{width:532.576200px;}
._3e{width:546.549000px;}
._2b{width:552.387900px;}
._81{width:560.986200px;}
._4d{width:573.362400px;}
._44{width:575.049000px;}
._4c{width:580.128300px;}
._79{width:583.447500px;}
._78{width:604.096800px;}
._7b{width:609.659100px;}
._4b{width:616.169400px;}
._88{width:619.034400px;}
._6d{width:651.354000px;}
._45{width:653.535000px;}
._33{width:657.720900px;}
._5d{width:665.604000px;}
._57{width:689.340600px;}
._7e{width:699.740700px;}
._47{width:702.207300px;}
._80{width:706.067700px;}
._43{width:710.660100px;}
._24{width:725.357400px;}
._2c{width:731.741400px;}
._54{width:785.043600px;}
._5e{width:791.040000px;}
._19{width:798.760200px;}
._5f{width:805.233000px;}
._37{width:814.225200px;}
._21{width:822.200400px;}
._62{width:843.690900px;}
._5c{width:847.983000px;}
._6a{width:857.502000px;}
._1d{width:908.017200px;}
._63{width:917.637000px;}
._61{width:927.156000px;}
._6b{width:931.887000px;}
._29{width:955.795800px;}
._46{width:1014.117000px;}
._53{width:1086.461700px;}
._48{width:1105.685400px;}
._49{width:1158.336300px;}
._3f{width:1173.717000px;}
._40{width:1187.910000px;}
._42{width:1200.621000px;}
._3d{width:1230.660000px;}
._4a{width:1233.878400px;}
._50{width:1241.801400px;}
._51{width:1246.532400px;}
._3c{width:1290.852000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:37.050000px;}
.fs8{font-size:44.850000px;}
.fs0{font-size:51.000000px;}
.fs2{font-size:52.650000px;}
.fs6{font-size:57.000000px;}
.fs4{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:81.000000px;}
.y0{bottom:0.000000px;}
.yac{bottom:90.244650px;}
.y83{bottom:91.501650px;}
.y5a{bottom:92.542800px;}
.y10f{bottom:93.500850px;}
.y253{bottom:94.480350px;}
.y20d{bottom:94.498200px;}
.yd7{bottom:95.755050px;}
.y2e{bottom:99.024600px;}
.y2ba{bottom:99.296400px;}
.yab{bottom:110.494650px;}
.y82{bottom:111.751650px;}
.y252{bottom:112.480350px;}
.y59{bottom:112.792800px;}
.y10e{bottom:113.750850px;}
.y20c{bottom:114.748200px;}
.y2d{bottom:114.774600px;}
.yd6{bottom:116.005050px;}
.y2b9{bottom:117.296400px;}
.y286{bottom:117.311850px;}
.yec{bottom:119.247000px;}
.y1a2{bottom:123.958050px;}
.y180{bottom:125.098800px;}
.y22c{bottom:130.000650px;}
.y251{bottom:130.480350px;}
.y2c{bottom:130.524600px;}
.yaa{bottom:130.744650px;}
.y81{bottom:132.001650px;}
.y58{bottom:133.042800px;}
.y10d{bottom:134.000850px;}
.y1f2{bottom:134.283900px;}
.y2b8{bottom:135.296400px;}
.y285{bottom:135.311850px;}
.yd5{bottom:136.255050px;}
.yeb{bottom:139.497000px;}
.y20b{bottom:143.502150px;}
.y2b{bottom:146.274600px;}
.y17f{bottom:147.022500px;}
.y250{bottom:148.480350px;}
.y1a1{bottom:148.708050px;}
.y22b{bottom:150.250650px;}
.ya9{bottom:150.994650px;}
.y80{bottom:152.251650px;}
.y57{bottom:153.292800px;}
.y2b7{bottom:153.296400px;}
.y284{bottom:153.311850px;}
.y1f1{bottom:154.533900px;}
.yd4{bottom:156.505050px;}
.y2a{bottom:157.322100px;}
.y20a{bottom:163.752150px;}
.y24f{bottom:166.480350px;}
.yea{bottom:168.251100px;}
.y22a{bottom:170.500650px;}
.ya8{bottom:171.244650px;}
.y2b6{bottom:171.296400px;}
.y283{bottom:171.311850px;}
.y10c{bottom:172.251450px;}
.y17e{bottom:172.522500px;}
.y1a0{bottom:173.458050px;}
.y56{bottom:173.542800px;}
.y1f0{bottom:174.783900px;}
.yd3{bottom:176.755050px;}
.y29{bottom:177.774600px;}
.y15a{bottom:182.588700px;}
.y209{bottom:184.002150px;}
.y24e{bottom:184.480350px;}
.ye9{bottom:188.501100px;}
.y2b5{bottom:189.296400px;}
.y282{bottom:189.311850px;}
.y7f{bottom:190.502250px;}
.y229{bottom:190.750650px;}
.ya7{bottom:191.494650px;}
.y28{bottom:193.524600px;}
.y55{bottom:193.792800px;}
.y1ef{bottom:195.033900px;}
.y17d{bottom:197.272500px;}
.y19f{bottom:198.208050px;}
.y24d{bottom:202.480350px;}
.y159{bottom:203.041200px;}
.y208{bottom:204.252150px;}
.y27{bottom:204.572250px;}
.y1c8{bottom:204.953700px;}
.yd2{bottom:205.508850px;}
.y2b4{bottom:207.296400px;}
.y281{bottom:207.311850px;}
.ye8{bottom:208.751100px;}
.y228{bottom:211.000650px;}
.ya6{bottom:211.744650px;}
.y54{bottom:214.042800px;}
.y1ee{bottom:215.283900px;}
.y10b{bottom:219.005850px;}
.y26{bottom:220.322250px;}
.y24c{bottom:220.480350px;}
.y1c7{bottom:220.703700px;}
.y17c{bottom:222.137400px;}
.y158{bottom:222.780150px;}
.y19e{bottom:222.958050px;}
.y207{bottom:224.502150px;}
.y2b3{bottom:225.296400px;}
.y280{bottom:225.311850px;}
.yd1{bottom:225.758850px;}
.y12b{bottom:228.502350px;}
.ye7{bottom:229.001100px;}
.y227{bottom:231.250650px;}
.y1c6{bottom:231.751350px;}
.y1ed{bottom:235.533900px;}
.y24b{bottom:238.480350px;}
.y10a{bottom:239.255850px;}
.ya5{bottom:240.498600px;}
.y25{bottom:240.774600px;}
.y53{bottom:242.796600px;}
.y2b2{bottom:243.296400px;}
.y27f{bottom:243.311850px;}
.y157{bottom:244.660500px;}
.yd0{bottom:246.008850px;}
.y7e{bottom:246.752700px;}
.y17b{bottom:246.772500px;}
.y19d{bottom:248.558850px;}
.y12a{bottom:248.752350px;}
.y226{bottom:251.500650px;}
.y206{bottom:253.255950px;}
.y1ec{bottom:255.783900px;}
.y24a{bottom:256.480350px;}
.ye6{bottom:257.755050px;}
.y1c5{bottom:258.117300px;}
.y109{bottom:259.505850px;}
.y156{bottom:260.410500px;}
.ya4{bottom:260.748600px;}
.y2b1{bottom:261.296400px;}
.y27e{bottom:261.311850px;}
.y52{bottom:263.046600px;}
.ycf{bottom:266.259000px;}
.y24{bottom:268.297500px;}
.y129{bottom:269.002350px;}
.y17a{bottom:271.522500px;}
.y225{bottom:271.750650px;}
.y205{bottom:273.506100px;}
.y19c{bottom:274.045050px;}
.y249{bottom:274.480500px;}
.y1eb{bottom:276.034050px;}
.y155{bottom:276.160500px;}
.ye5{bottom:278.004900px;}
.y2b0{bottom:279.296400px;}
.y27d{bottom:279.311850px;}
.y108{bottom:279.755850px;}
.ya3{bottom:280.998600px;}
.y1c4{bottom:281.692800px;}
.y1c2{bottom:281.807550px;}
.y51{bottom:283.296600px;}
.y23{bottom:286.297500px;}
.yce{bottom:286.509000px;}
.y128{bottom:289.252350px;}
.y224{bottom:292.000650px;}
.y248{bottom:292.480500px;}
.y204{bottom:293.756100px;}
.y179{bottom:296.272500px;}
.y1ea{bottom:296.284050px;}
.y2af{bottom:297.296400px;}
.y27c{bottom:297.311850px;}
.y1c3{bottom:297.442800px;}
.y1c1{bottom:297.557550px;}
.y154{bottom:298.040850px;}
.ye4{bottom:298.254900px;}
.y107{bottom:300.005850px;}
.ya2{bottom:301.248600px;}
.y19b{bottom:301.684800px;}
.y7d{bottom:303.004050px;}
.y50{bottom:303.546600px;}
.y22{bottom:304.297500px;}
.ycd{bottom:306.759000px;}
.y247{bottom:310.480500px;}
.y153{bottom:313.790850px;}
.y203{bottom:314.006100px;}
.y2ae{bottom:315.296400px;}
.y27b{bottom:315.311850px;}
.y1e9{bottom:316.534050px;}
.y19a{bottom:317.434800px;}
.y1c0{bottom:317.559450px;}
.y177{bottom:319.587750px;}
.y223{bottom:320.754600px;}
.y21{bottom:322.297500px;}
.y7c{bottom:323.254050px;}
.y4f{bottom:323.796600px;}
.ycc{bottom:327.009000px;}
.y127{bottom:327.502800px;}
.y246{bottom:328.480500px;}
.y152{bottom:329.540850px;}
.y2ad{bottom:333.296400px;}
.y27a{bottom:333.311850px;}
.y202{bottom:334.256100px;}
.y178{bottom:335.223000px;}
.y176{bottom:335.337750px;}
.y1e8{bottom:336.784050px;}
.y199{bottom:337.436850px;}
.y106{bottom:338.256450px;}
.ya1{bottom:339.499050px;}
.y20{bottom:340.297500px;}
.y1bf{bottom:340.499700px;}
.y222{bottom:341.004600px;}
.y7b{bottom:343.504050px;}
.y245{bottom:346.480500px;}
.ycb{bottom:347.259000px;}
.y175{bottom:351.087750px;}
.y2ac{bottom:351.296400px;}
.y279{bottom:351.311850px;}
.y151{bottom:351.421200px;}
.y4e{bottom:352.550700px;}
.y201{bottom:354.506100px;}
.y1e7{bottom:357.034050px;}
.y1f{bottom:358.297500px;}
.y7a{bottom:363.754050px;}
.y244{bottom:364.480500px;}
.y1be{bottom:364.499700px;}
.yca{bottom:367.509000px;}
.y2ab{bottom:369.296400px;}
.y278{bottom:369.311850px;}
.y221{bottom:369.758550px;}
.y4d{bottom:372.800700px;}
.y14f{bottom:373.301550px;}
.y14d{bottom:373.531200px;}
.y126{bottom:374.257350px;}
.y174{bottom:374.288100px;}
.y1e{bottom:376.297500px;}
.y1e6{bottom:377.284050px;}
.y243{bottom:382.480500px;}
.y200{bottom:383.260050px;}
.y198{bottom:383.401050px;}
.y79{bottom:384.004050px;}
.y105{bottom:385.010850px;}
.ya0{bottom:386.253600px;}
.y2aa{bottom:387.296400px;}
.y277{bottom:387.311850px;}
.yc9{bottom:387.759000px;}
.y1bd{bottom:388.499700px;}
.y14e{bottom:389.051550px;}
.y14c{bottom:389.281200px;}
.y220{bottom:390.008550px;}
.y4c{bottom:393.050700px;}
.y1d{bottom:394.297500px;}
.y125{bottom:394.507350px;}
.y1e5{bottom:397.534050px;}
.y173{bottom:398.923350px;}
.y242{bottom:400.480500px;}
.y1ff{bottom:403.510050px;}
.y78{bottom:404.254050px;}
.y150{bottom:404.801550px;}
.y14b{bottom:405.031200px;}
.y197{bottom:405.174750px;}
.y104{bottom:405.260850px;}
.y2a9{bottom:405.296400px;}
.y276{bottom:405.311850px;}
.y9f{bottom:406.503600px;}
.yc8{bottom:408.009000px;}
.y21f{bottom:410.258550px;}
.y1c{bottom:412.297500px;}
.y1bc{bottom:412.384800px;}
.y4b{bottom:413.300700px;}
.y124{bottom:414.757350px;}
.y241{bottom:418.480500px;}
.y2a8{bottom:423.296400px;}
.y275{bottom:423.311850px;}
.y172{bottom:423.673350px;}
.y1fe{bottom:423.760050px;}
.y77{bottom:424.504050px;}
.y103{bottom:425.510850px;}
.y1e4{bottom:426.288000px;}
.y9e{bottom:426.753600px;}
.y14a{bottom:426.911550px;}
.yc7{bottom:428.259000px;}
.y1b{bottom:430.297500px;}
.y196{bottom:430.374900px;}
.y21e{bottom:430.508550px;}
.y4a{bottom:433.550700px;}
.y123{bottom:435.007350px;}
.y1bb{bottom:436.384800px;}
.y240{bottom:436.480500px;}
.y2a7{bottom:441.296400px;}
.y274{bottom:441.311850px;}
.y1fd{bottom:444.010050px;}
.y102{bottom:445.760850px;}
.y1e3{bottom:446.538000px;}
.y9d{bottom:447.003600px;}
.y1a{bottom:448.297500px;}
.y171{bottom:448.423350px;}
.yc6{bottom:448.509000px;}
.y149{bottom:448.562250px;}
.y21d{bottom:450.758550px;}
.y76{bottom:453.258000px;}
.y49{bottom:453.800700px;}
.y23f{bottom:454.480500px;}
.y195{bottom:454.939650px;}
.y122{bottom:455.257350px;}
.y2a6{bottom:459.296400px;}
.y273{bottom:459.311850px;}
.y1ba{bottom:460.384800px;}
.y1fc{bottom:464.260050px;}
.y101{bottom:466.010850px;}
.y19{bottom:466.297500px;}
.y1e2{bottom:466.788000px;}
.y9c{bottom:467.253600px;}
.yc5{bottom:468.759000px;}
.y21c{bottom:471.008550px;}
.y170{bottom:471.738450px;}
.y23e{bottom:472.480500px;}
.y75{bottom:473.508000px;}
.y48{bottom:474.050700px;}
.y148{bottom:474.652500px;}
.y121{bottom:475.507350px;}
.y2a5{bottom:477.296400px;}
.y272{bottom:477.311850px;}
.y194{bottom:479.274900px;}
.y18{bottom:484.297500px;}
.y1b9{bottom:484.499700px;}
.y1fb{bottom:484.510050px;}
.y100{bottom:486.260850px;}
.y1e1{bottom:487.038000px;}
.y16f{bottom:487.488450px;}
.y9b{bottom:487.503600px;}
.yc4{bottom:489.009000px;}
.y147{bottom:490.402500px;}
.y23d{bottom:490.480500px;}
.y21b{bottom:491.258550px;}
.y74{bottom:493.758000px;}
.y2a4{bottom:495.296400px;}
.y271{bottom:495.311850px;}
.y120{bottom:495.757350px;}
.y47{bottom:502.804500px;}
.y193{bottom:503.724900px;}
.y1fa{bottom:504.760050px;}
.yff{bottom:506.510850px;}
.y1e0{bottom:507.288000px;}
.y9a{bottom:507.753600px;}
.y23c{bottom:508.480500px;}
.y1b8{bottom:509.249700px;}
.yc3{bottom:509.259000px;}
.y16e{bottom:510.574050px;}
.y21a{bottom:511.508550px;}
.y2a3{bottom:513.296400px;}
.y270{bottom:513.311850px;}
.y73{bottom:514.008000px;}
.y17{bottom:520.297500px;}
.y46{bottom:523.054500px;}
.y23b{bottom:526.480500px;}
.y1df{bottom:527.538000px;}
.y99{bottom:528.003600px;}
.y192{bottom:528.174750px;}
.yc2{bottom:529.509000px;}
.y2a2{bottom:531.296400px;}
.y26f{bottom:531.311850px;}
.y146{bottom:531.851850px;}
.y1f9{bottom:533.513850px;}
.y11f{bottom:534.007800px;}
.y72{bottom:534.258000px;}
.yfe{bottom:535.264800px;}
.y16d{bottom:535.324050px;}
.y1b7{bottom:537.264600px;}
.y16{bottom:538.297500px;}
.y45{bottom:543.304500px;}
.y23a{bottom:544.480500px;}
.y1de{bottom:547.788000px;}
.y98{bottom:548.253600px;}
.y2a1{bottom:549.296400px;}
.y26e{bottom:549.311850px;}
.y219{bottom:549.758550px;}
.yc1{bottom:549.759000px;}
.y191{bottom:552.739650px;}
.y145{bottom:553.732200px;}
.y1f8{bottom:553.763850px;}
.y11e{bottom:554.257800px;}
.y71{bottom:554.508000px;}
.yfd{bottom:555.514800px;}
.y15{bottom:556.297500px;}
.y1b6{bottom:557.266500px;}
.y16c{bottom:560.074050px;}
.y239{bottom:562.480500px;}
.y44{bottom:563.554500px;}
.y2a0{bottom:567.296400px;}
.y26d{bottom:567.311850px;}
.y1dd{bottom:568.038000px;}
.y97{bottom:568.503600px;}
.y1f7{bottom:574.013850px;}
.y14{bottom:574.297500px;}
.yfc{bottom:575.764800px;}
.y144{bottom:575.842200px;}
.y190{bottom:577.074900px;}
.ye3{bottom:578.512800px;}
.y238{bottom:580.480500px;}
.y70{bottom:583.261950px;}
.y16b{bottom:583.389300px;}
.y43{bottom:583.804500px;}
.y29f{bottom:585.296400px;}
.y26c{bottom:585.311850px;}
.yc0{bottom:588.009450px;}
.y96{bottom:588.753600px;}
.y13{bottom:592.297500px;}
.y1f6{bottom:594.263850px;}
.yfb{bottom:596.014800px;}
.y1dc{bottom:596.791800px;}
.y143{bottom:597.722550px;}
.ye2{bottom:598.762800px;}
.y16a{bottom:599.139300px;}
.y11d{bottom:601.012350px;}
.y18f{bottom:601.524900px;}
.y1b5{bottom:603.230850px;}
.y29e{bottom:603.296400px;}
.y26b{bottom:603.311850px;}
.y6f{bottom:603.511950px;}
.y42{bottom:604.054500px;}
.y218{bottom:606.010050px;}
.y95{bottom:609.003600px;}
.y12{bottom:610.297500px;}
.y237{bottom:613.362300px;}
.y1f5{bottom:614.513850px;}
.y1db{bottom:617.041800px;}
.y1b4{bottom:618.980850px;}
.ye1{bottom:619.012800px;}
.y142{bottom:619.373250px;}
.y11c{bottom:621.262350px;}
.y29d{bottom:621.296400px;}
.y26a{bottom:621.311850px;}
.y169{bottom:622.339650px;}
.y6e{bottom:623.761950px;}
.y41{bottom:624.304500px;}
.yfa{bottom:624.768750px;}
.y18e{bottom:625.974900px;}
.y217{bottom:626.260050px;}
.y11{bottom:628.297500px;}
.y94{bottom:629.253600px;}
.y1b3{bottom:634.730850px;}
.ybf{bottom:634.763850px;}
.y1da{bottom:637.291800px;}
.ye0{bottom:639.262800px;}
.y29c{bottom:639.296400px;}
.y269{bottom:639.311850px;}
.y141{bottom:641.253600px;}
.y11b{bottom:641.512350px;}
.y6d{bottom:644.011950px;}
.y40{bottom:644.554500px;}
.yf9{bottom:645.018750px;}
.y10{bottom:646.297500px;}
.y216{bottom:646.510050px;}
.y168{bottom:646.974900px;}
.y93{bottom:649.503600px;}
.y1b2{bottom:650.480850px;}
.y18d{bottom:650.539650px;}
.ybe{bottom:655.014000px;}
.y29b{bottom:657.296400px;}
.y268{bottom:657.311850px;}
.y1d9{bottom:657.541950px;}
.ydf{bottom:659.512800px;}
.y1b1{bottom:661.528350px;}
.y11a{bottom:661.762350px;}
.y140{bottom:663.134100px;}
.y236{bottom:663.376050px;}
.y6c{bottom:664.261950px;}
.yf{bottom:664.297500px;}
.y3f{bottom:664.804500px;}
.yf8{bottom:665.268750px;}
.y215{bottom:666.760050px;}
.y167{bottom:671.724900px;}
.y18c{bottom:674.874900px;}
.ybd{bottom:675.264000px;}
.y29a{bottom:675.296400px;}
.y267{bottom:675.311850px;}
.y1d8{bottom:677.791950px;}
.y92{bottom:678.257550px;}
.yde{bottom:679.762800px;}
.y235{bottom:681.376050px;}
.y119{bottom:682.012350px;}
.ye{bottom:682.297500px;}
.y6b{bottom:684.511950px;}
.y13f{bottom:685.014450px;}
.y3e{bottom:685.054500px;}
.yf7{bottom:685.518750px;}
.y214{bottom:687.010050px;}
.y1b0{bottom:688.192050px;}
.y299{bottom:693.296400px;}
.y266{bottom:693.311850px;}
.ybc{bottom:695.514000px;}
.y166{bottom:696.474900px;}
.y1d7{bottom:698.041950px;}
.y91{bottom:698.507550px;}
.y18b{bottom:699.324900px;}
.y234{bottom:699.376050px;}
.yd{bottom:700.297500px;}
.y118{bottom:702.262350px;}
.y6a{bottom:704.761950px;}
.yf6{bottom:705.768750px;}
.y13e{bottom:707.124450px;}
.y213{bottom:707.260050px;}
.y298{bottom:711.296400px;}
.y265{bottom:711.311850px;}
.y1af{bottom:713.729550px;}
.y3d{bottom:713.808450px;}
.ybb{bottom:715.764000px;}
.y233{bottom:717.376050px;}
.ydd{bottom:718.013400px;}
.yc{bottom:718.297500px;}
.y90{bottom:718.757550px;}
.y165{bottom:721.224900px;}
.y117{bottom:722.512350px;}
.y18a{bottom:723.774900px;}
.y1f4{bottom:724.267800px;}
.y69{bottom:725.011950px;}
.yf5{bottom:726.018750px;}
.y1d6{bottom:726.795750px;}
.y13d{bottom:728.775150px;}
.y297{bottom:729.296400px;}
.y264{bottom:729.311850px;}
.y3c{bottom:734.058450px;}
.y232{bottom:735.376050px;}
.yba{bottom:736.014000px;}
.yb{bottom:736.297500px;}
.y1ae{bottom:738.479550px;}
.y8f{bottom:739.007550px;}
.y116{bottom:742.762350px;}
.y1f3{bottom:744.517800px;}
.y68{bottom:745.261950px;}
.y164{bottom:745.974900px;}
.yf4{bottom:746.268750px;}
.y1d5{bottom:747.045750px;}
.y296{bottom:747.296400px;}
.y263{bottom:747.311850px;}
.y189{bottom:748.339650px;}
.y13c{bottom:750.655500px;}
.y231{bottom:753.376050px;}
.y3b{bottom:754.308450px;}
.yb9{bottom:756.264000px;}
.y1ad{bottom:763.229550px;}
.ydc{bottom:764.767800px;}
.y295{bottom:765.296400px;}
.y262{bottom:765.311850px;}
.y67{bottom:765.511950px;}
.yf3{bottom:766.518750px;}
.y1d4{bottom:767.295750px;}
.y8e{bottom:767.761500px;}
.y163{bottom:770.839650px;}
.y230{bottom:771.376050px;}
.y115{bottom:771.516300px;}
.y13b{bottom:772.535850px;}
.y188{bottom:772.674750px;}
.y3a{bottom:774.558450px;}
.yb8{bottom:776.514000px;}
.y294{bottom:783.296400px;}
.y261{bottom:783.311850px;}
.ydb{bottom:785.017800px;}
.y66{bottom:785.761950px;}
.yf2{bottom:786.768750px;}
.y1d3{bottom:787.545750px;}
.y1ac{bottom:787.979550px;}
.y8d{bottom:788.011350px;}
.ya{bottom:790.296900px;}
.y114{bottom:791.766300px;}
.y13a{bottom:794.416200px;}
.y39{bottom:794.808450px;}
.y162{bottom:795.474750px;}
.yb7{bottom:796.764000px;}
.y187{bottom:797.124750px;}
.y293{bottom:801.296400px;}
.y260{bottom:801.311850px;}
.y22f{bottom:804.258000px;}
.yda{bottom:805.267800px;}
.y65{bottom:806.011950px;}
.y1d2{bottom:807.795750px;}
.y8c{bottom:808.261350px;}
.y9{bottom:811.728900px;}
.y1ab{bottom:812.729550px;}
.y38{bottom:815.058450px;}
.y139{bottom:816.526200px;}
.y212{bottom:817.014000px;}
.y292{bottom:819.296400px;}
.y25f{bottom:819.311850px;}
.y161{bottom:820.224750px;}
.y186{bottom:821.574900px;}
.yf1{bottom:825.019350px;}
.yb6{bottom:825.517800px;}
.y64{bottom:826.261950px;}
.y1d1{bottom:828.045750px;}
.y8b{bottom:828.511350px;}
.y113{bottom:830.016750px;}
.y8{bottom:833.160900px;}
.y37{bottom:835.308450px;}
.y211{bottom:837.264000px;}
.y291{bottom:837.296400px;}
.y25e{bottom:837.311850px;}
.y1aa{bottom:837.594300px;}
.y138{bottom:838.406550px;}
.y160{bottom:844.974750px;}
.yb5{bottom:845.767800px;}
.y185{bottom:846.024750px;}
.y63{bottom:846.511950px;}
.y1d0{bottom:848.295750px;}
.y8a{bottom:848.761350px;}
.y22e{bottom:854.271750px;}
.y290{bottom:855.296400px;}
.y25d{bottom:855.311850px;}
.y36{bottom:855.558450px;}
.y137{bottom:860.287050px;}
.y1a9{bottom:862.229550px;}
.yb4{bottom:866.017800px;}
.y7{bottom:868.092900px;}
.y1cf{bottom:868.545750px;}
.y89{bottom:869.011350px;}
.y15f{bottom:869.724750px;}
.y184{bottom:870.589650px;}
.y28f{bottom:873.296400px;}
.y25c{bottom:873.311850px;}
.y22d{bottom:874.521750px;}
.y62{bottom:875.265900px;}
.y35{bottom:875.808450px;}
.y112{bottom:876.771300px;}
.yf0{bottom:881.269800px;}
.y135{bottom:881.937750px;}
.yb3{bottom:886.267800px;}
.y1a8{bottom:886.979550px;}
.y1ce{bottom:888.795750px;}
.y88{bottom:889.261350px;}
.y28e{bottom:891.296400px;}
.y25b{bottom:891.311850px;}
.y15e{bottom:894.589650px;}
.yd9{bottom:894.771750px;}
.y183{bottom:895.039650px;}
.y61{bottom:895.515900px;}
.y34{bottom:896.058450px;}
.y111{bottom:897.021300px;}
.y136{bottom:897.458100px;}
.y134{bottom:897.687750px;}
.y6{bottom:906.024900px;}
.yb2{bottom:906.517800px;}
.y1cd{bottom:909.045750px;}
.y28d{bottom:909.296400px;}
.y25a{bottom:909.311850px;}
.y1a7{bottom:911.844300px;}
.yd8{bottom:915.021750px;}
.y60{bottom:915.765900px;}
.y110{bottom:917.271300px;}
.y87{bottom:918.015450px;}
.y133{bottom:919.338450px;}
.y15d{bottom:920.089650px;}
.y182{bottom:920.239500px;}
.y210{bottom:926.767800px;}
.y28c{bottom:927.296400px;}
.y259{bottom:927.311850px;}
.y5{bottom:927.456900px;}
.y33{bottom:934.308450px;}
.yb1{bottom:935.271750px;}
.y5f{bottom:936.015900px;}
.y1a6{bottom:936.479550px;}
.y181{bottom:937.299900px;}
.yef{bottom:937.521300px;}
.y1cc{bottom:937.799700px;}
.y86{bottom:938.265450px;}
.y130{bottom:940.989300px;}
.y28b{bottom:945.296400px;}
.y258{bottom:945.311850px;}
.y20f{bottom:947.017800px;}
.y132{bottom:948.864300px;}
.y4{bottom:948.888900px;}
.y15c{bottom:950.389650px;}
.yb0{bottom:955.521750px;}
.y5e{bottom:956.265900px;}
.y12e{bottom:956.739300px;}
.yee{bottom:957.771300px;}
.y1cb{bottom:958.049700px;}
.y85{bottom:958.515450px;}
.y1a5{bottom:961.229550px;}
.y28a{bottom:963.296400px;}
.y257{bottom:963.311850px;}
.y131{bottom:964.614300px;}
.y20e{bottom:967.267800px;}
.y12f{bottom:972.489300px;}
.yaf{bottom:975.771750px;}
.y5d{bottom:976.515900px;}
.yed{bottom:978.021300px;}
.y1ca{bottom:978.299700px;}
.y84{bottom:978.765450px;}
.y289{bottom:981.296400px;}
.y256{bottom:981.311850px;}
.y32{bottom:982.056000px;}
.y15b{bottom:982.829550px;}
.y1a4{bottom:985.979550px;}
.yae{bottom:996.021750px;}
.y5c{bottom:996.765900px;}
.y12d{bottom:998.579550px;}
.y288{bottom:999.296400px;}
.y255{bottom:999.311850px;}
.y31{bottom:1000.056000px;}
.y1a3{bottom:1010.844300px;}
.yad{bottom:1016.271750px;}
.y1c9{bottom:1016.549700px;}
.y5b{bottom:1017.015900px;}
.y287{bottom:1017.296400px;}
.y254{bottom:1017.311850px;}
.y30{bottom:1018.056000px;}
.y12c{bottom:1018.581450px;}
.y3{bottom:1031.437200px;}
.y2{bottom:1046.474700px;}
.y1{bottom:1061.512200px;}
.y2f{bottom:1070.326650px;}
.h8{height:32.509204px;}
.h2{height:35.411133px;}
.hd{height:38.630859px;}
.h19{height:43.743164px;}
.h3{height:44.749512px;}
.hb{height:46.763672px;}
.he{height:49.095560px;}
.hf{height:49.096160px;}
.h13{height:49.554560px;}
.h16{height:49.555160px;}
.h9{height:50.014160px;}
.h10{height:50.400604px;}
.h18{height:50.859604px;}
.h12{height:50.860204px;}
.h11{height:51.318604px;}
.h17{height:51.319204px;}
.h4{height:54.896484px;}
.h7{height:55.278809px;}
.ha{height:57.911133px;}
.h6{height:60.543457px;}
.hc{height:62.123247px;}
.h5{height:72.927290px;}
.h14{height:81.054560px;}
.h15{height:81.055160px;}
.h1{height:1177.500000px;}
.h0{height:1177.795500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:110.551200px;}
.x11{left:111.841950px;}
.x1a{left:116.551200px;}
.x9{left:127.558950px;}
.x33{left:128.876700px;}
.x1f{left:133.746600px;}
.x3{left:140.848200px;}
.xc{left:144.566850px;}
.x2f{left:150.754500px;}
.x1e{left:161.411250px;}
.x1c{left:163.918650px;}
.x7{left:169.753050px;}
.x12{left:176.790000px;}
.x4{left:189.510600px;}
.x2b{left:194.016600px;}
.x30{left:195.881550px;}
.x32{left:208.679700px;}
.x6{left:238.767150px;}
.x8{left:256.737000px;}
.x14{left:278.238000px;}
.x13{left:284.423850px;}
.x20{left:291.397050px;}
.x27{left:293.769750px;}
.x2{left:312.207900px;}
.x29{left:323.069100px;}
.x21{left:343.160400px;}
.x31{left:352.594800px;}
.x15{left:355.106100px;}
.x1d{left:358.333800px;}
.x38{left:362.879250px;}
.x34{left:367.903200px;}
.x2c{left:369.602550px;}
.x1b{left:386.062350px;}
.xe{left:389.559300px;}
.x2e{left:393.128100px;}
.x35{left:398.105550px;}
.x37{left:399.127650px;}
.x39{left:403.023300px;}
.xd{left:408.252750px;}
.xb{left:409.582500px;}
.xf{left:411.117600px;}
.x10{left:415.487400px;}
.xa{left:425.260650px;}
.x5{left:429.327750px;}
.x2a{left:432.495300px;}
.x2d{left:433.662450px;}
.x25{left:449.968950px;}
.x22{left:456.124800px;}
.x23{left:542.263200px;}
.x28{left:544.635900px;}
.x17{left:593.097750px;}
.x16{left:619.676100px;}
.x36{left:626.251500px;}
.x26{left:700.835100px;}
.x24{left:706.990950px;}
.x19{left:726.024000px;}
.x18{left:738.006000px;}
@media print{
.v2{vertical-align:-16.719467pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.720000pt;}
.v3{vertical-align:20.240000pt;}
.v1{vertical-align:23.760000pt;}
.v5{vertical-align:27.591467pt;}
.lsf{letter-spacing:-0.736000pt;}
.lsa{letter-spacing:-0.613333pt;}
.ls19{letter-spacing:-0.552000pt;}
.ls7{letter-spacing:-0.506667pt;}
.ls28{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.429333pt;}
.ls10{letter-spacing:-0.368000pt;}
.ls11{letter-spacing:-0.306667pt;}
.ls6{letter-spacing:-0.280000pt;}
.ls1a{letter-spacing:-0.245333pt;}
.ls29{letter-spacing:-0.224000pt;}
.lsd{letter-spacing:-0.184000pt;}
.ls5{letter-spacing:-0.168000pt;}
.lsb{letter-spacing:-0.122667pt;}
.ls2a{letter-spacing:-0.112000pt;}
.ls16{letter-spacing:-0.061333pt;}
.ls4{letter-spacing:-0.056000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.ls27{letter-spacing:0.056000pt;}
.lse{letter-spacing:0.061333pt;}
.ls1{letter-spacing:0.112000pt;}
.ls17{letter-spacing:0.122667pt;}
.ls2e{letter-spacing:0.168000pt;}
.ls15{letter-spacing:0.184000pt;}
.ls2d{letter-spacing:0.224000pt;}
.ls12{letter-spacing:0.245333pt;}
.ls24{letter-spacing:0.280000pt;}
.ls14{letter-spacing:0.306667pt;}
.ls2f{letter-spacing:0.336000pt;}
.ls9{letter-spacing:0.368000pt;}
.ls2{letter-spacing:0.392000pt;}
.ls18{letter-spacing:0.429333pt;}
.ls25{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.490667pt;}
.ls2c{letter-spacing:0.504000pt;}
.ls1b{letter-spacing:0.736000pt;}
.ls13{letter-spacing:0.858667pt;}
.ls2b{letter-spacing:0.952000pt;}
.ls26{letter-spacing:1.960000pt;}
.ls1e{letter-spacing:120.006933pt;}
.ls20{letter-spacing:252.534400pt;}
.ls21{letter-spacing:255.338667pt;}
.ls1f{letter-spacing:291.092267pt;}
.ls23{letter-spacing:362.786133pt;}
.ls22{letter-spacing:393.034667pt;}
.ls1c{letter-spacing:583.145600pt;}
.ls1d{letter-spacing:690.159467pt;}
.ws1{word-spacing:-18.000000pt;}
.ws20{word-spacing:-15.333333pt;}
.ws4{word-spacing:-14.000000pt;}
.ws3{word-spacing:-13.944000pt;}
.ws98{word-spacing:-12.666667pt;}
.ws2{word-spacing:-11.700000pt;}
.ws0{word-spacing:-11.333333pt;}
.ws77{word-spacing:-9.966667pt;}
.ws5{word-spacing:-8.233333pt;}
.wsc6{word-spacing:-1.960000pt;}
.wsde{word-spacing:-1.400000pt;}
.wsc2{word-spacing:-1.042667pt;}
.wsbb{word-spacing:-0.736000pt;}
.ws6f{word-spacing:-0.429333pt;}
.wsf3{word-spacing:-0.392000pt;}
.ws52{word-spacing:-0.368000pt;}
.ws9{word-spacing:-0.360000pt;}
.wsb4{word-spacing:-0.306667pt;}
.wse2{word-spacing:-0.280000pt;}
.ws1d{word-spacing:-0.253333pt;}
.ws84{word-spacing:-0.245333pt;}
.wsf7{word-spacing:-0.224000pt;}
.wsf8{word-spacing:-0.168000pt;}
.ws63{word-spacing:-0.122667pt;}
.wsd6{word-spacing:-0.112000pt;}
.wsb7{word-spacing:-0.061333pt;}
.wsd9{word-spacing:-0.056000pt;}
.ws8{word-spacing:0.000000pt;}
.ws49{word-spacing:0.061333pt;}
.ws48{word-spacing:0.122667pt;}
.wse8{word-spacing:0.168000pt;}
.ws67{word-spacing:0.184000pt;}
.wse4{word-spacing:0.224000pt;}
.ws3e{word-spacing:0.245333pt;}
.wsf6{word-spacing:0.280000pt;}
.ws59{word-spacing:0.306667pt;}
.ws53{word-spacing:0.368000pt;}
.ws82{word-spacing:0.490667pt;}
.ws1a{word-spacing:0.504000pt;}
.ws1f{word-spacing:0.506667pt;}
.ws5a{word-spacing:0.552000pt;}
.ws2c{word-spacing:0.613333pt;}
.wsdb{word-spacing:0.616000pt;}
.wsc8{word-spacing:0.672000pt;}
.wsbf{word-spacing:0.674667pt;}
.ws39{word-spacing:0.736000pt;}
.ws3c{word-spacing:0.797333pt;}
.ws27{word-spacing:0.858667pt;}
.wse3{word-spacing:0.896000pt;}
.ws3f{word-spacing:0.981333pt;}
.ws2e{word-spacing:1.042667pt;}
.ws38{word-spacing:1.104000pt;}
.wsbc{word-spacing:1.226667pt;}
.ws13{word-spacing:1.232000pt;}
.ws15{word-spacing:1.288000pt;}
.ws17{word-spacing:1.344000pt;}
.ws8e{word-spacing:1.410667pt;}
.wsed{word-spacing:1.456000pt;}
.ws68{word-spacing:1.472000pt;}
.wsf1{word-spacing:1.512000pt;}
.wsc1{word-spacing:1.533333pt;}
.wsdc{word-spacing:1.568000pt;}
.ws60{word-spacing:1.594667pt;}
.ws5d{word-spacing:1.656000pt;}
.ws81{word-spacing:1.717333pt;}
.ws50{word-spacing:1.778667pt;}
.wsf{word-spacing:1.792000pt;}
.ws56{word-spacing:1.840000pt;}
.ws73{word-spacing:1.962667pt;}
.ws6b{word-spacing:2.024000pt;}
.ws19{word-spacing:2.072000pt;}
.wsce{word-spacing:2.128000pt;}
.ws61{word-spacing:2.146667pt;}
.wscd{word-spacing:2.184000pt;}
.ws65{word-spacing:2.208000pt;}
.wsca{word-spacing:2.240000pt;}
.ws6{word-spacing:2.266667pt;}
.ws6e{word-spacing:2.269333pt;}
.wsf9{word-spacing:2.296000pt;}
.ws88{word-spacing:2.330667pt;}
.ws89{word-spacing:2.392000pt;}
.wsd{word-spacing:2.408000pt;}
.ws5f{word-spacing:2.453333pt;}
.ws4c{word-spacing:2.514667pt;}
.wse1{word-spacing:2.520000pt;}
.ws1e{word-spacing:2.533333pt;}
.wsf0{word-spacing:2.576000pt;}
.ws1b{word-spacing:2.634667pt;}
.ws4b{word-spacing:2.637333pt;}
.ws16{word-spacing:2.688000pt;}
.ws2a{word-spacing:2.698667pt;}
.wsa{word-spacing:2.744000pt;}
.ws74{word-spacing:2.760000pt;}
.ws12{word-spacing:2.800000pt;}
.ws44{word-spacing:2.821333pt;}
.ws14{word-spacing:2.856000pt;}
.ws24{word-spacing:2.882667pt;}
.ws21{word-spacing:2.933333pt;}
.ws3b{word-spacing:2.944000pt;}
.wsf2{word-spacing:2.968000pt;}
.ws70{word-spacing:3.005333pt;}
.wse6{word-spacing:3.024000pt;}
.ws28{word-spacing:3.066667pt;}
.wsdd{word-spacing:3.080000pt;}
.ws62{word-spacing:3.128000pt;}
.wscc{word-spacing:3.136000pt;}
.wsd4{word-spacing:3.248000pt;}
.ws34{word-spacing:3.250667pt;}
.ws42{word-spacing:3.312000pt;}
.ws25{word-spacing:3.373333pt;}
.ws4f{word-spacing:3.434667pt;}
.ws18{word-spacing:3.472000pt;}
.wsbd{word-spacing:3.496000pt;}
.ws5b{word-spacing:3.557333pt;}
.wse{word-spacing:3.584000pt;}
.ws7{word-spacing:3.600000pt;}
.wsb6{word-spacing:3.618667pt;}
.wsd5{word-spacing:3.640000pt;}
.ws5c{word-spacing:3.680000pt;}
.ws37{word-spacing:3.741333pt;}
.ws55{word-spacing:3.802667pt;}
.wsc9{word-spacing:3.808000pt;}
.ws22{word-spacing:3.864000pt;}
.wse9{word-spacing:3.920000pt;}
.ws80{word-spacing:3.925333pt;}
.ws4a{word-spacing:3.986667pt;}
.ws36{word-spacing:4.048000pt;}
.ws7b{word-spacing:4.109333pt;}
.ws6d{word-spacing:4.232000pt;}
.ws8c{word-spacing:4.354667pt;}
.wse7{word-spacing:4.368000pt;}
.wsfa{word-spacing:4.424000pt;}
.ws31{word-spacing:4.477333pt;}
.wseb{word-spacing:4.480000pt;}
.wsb{word-spacing:4.536000pt;}
.ws51{word-spacing:4.538667pt;}
.ws7a{word-spacing:4.600000pt;}
.ws23{word-spacing:4.648000pt;}
.ws57{word-spacing:4.661333pt;}
.wsfc{word-spacing:4.704000pt;}
.ws76{word-spacing:4.722667pt;}
.wsad{word-spacing:4.784000pt;}
.ws66{word-spacing:4.845333pt;}
.ws54{word-spacing:4.906667pt;}
.wsb0{word-spacing:4.968000pt;}
.ws45{word-spacing:5.029333pt;}
.wsc7{word-spacing:5.040000pt;}
.ws32{word-spacing:5.090667pt;}
.wsfd{word-spacing:5.096000pt;}
.ws3a{word-spacing:5.152000pt;}
.wsd0{word-spacing:5.208000pt;}
.wsbe{word-spacing:5.213333pt;}
.ws90{word-spacing:5.274667pt;}
.ws8a{word-spacing:5.397333pt;}
.wsc0{word-spacing:5.458667pt;}
.wse0{word-spacing:5.488000pt;}
.ws7e{word-spacing:5.520000pt;}
.wsd8{word-spacing:5.544000pt;}
.ws41{word-spacing:5.581333pt;}
.wsea{word-spacing:5.600000pt;}
.wsb1{word-spacing:5.704000pt;}
.wsec{word-spacing:5.712000pt;}
.ws2f{word-spacing:5.826667pt;}
.ws87{word-spacing:5.888000pt;}
.wsaf{word-spacing:5.949333pt;}
.ws78{word-spacing:6.010667pt;}
.wsc5{word-spacing:6.133333pt;}
.ws75{word-spacing:6.194667pt;}
.ws11{word-spacing:6.216000pt;}
.wscb{word-spacing:6.272000pt;}
.ws5e{word-spacing:6.378667pt;}
.ws85{word-spacing:6.440000pt;}
.ws35{word-spacing:6.501333pt;}
.wsd3{word-spacing:6.552000pt;}
.ws33{word-spacing:6.562667pt;}
.ws79{word-spacing:6.624000pt;}
.ws4e{word-spacing:6.685333pt;}
.wse5{word-spacing:6.720000pt;}
.ws47{word-spacing:6.746667pt;}
.wsb3{word-spacing:6.808000pt;}
.wsb2{word-spacing:6.869333pt;}
.wsee{word-spacing:6.888000pt;}
.ws3d{word-spacing:6.930667pt;}
.wsd7{word-spacing:6.944000pt;}
.ws7f{word-spacing:6.992000pt;}
.wsc{word-spacing:7.000000pt;}
.wsab{word-spacing:7.176000pt;}
.ws71{word-spacing:7.237333pt;}
.ws6a{word-spacing:7.298667pt;}
.wsd2{word-spacing:7.336000pt;}
.ws1c{word-spacing:7.397333pt;}
.wsfb{word-spacing:7.504000pt;}
.ws72{word-spacing:7.544000pt;}
.ws4d{word-spacing:7.605333pt;}
.ws29{word-spacing:7.666667pt;}
.ws8d{word-spacing:7.728000pt;}
.ws8b{word-spacing:7.789333pt;}
.ws46{word-spacing:7.850667pt;}
.ws40{word-spacing:7.912000pt;}
.wsb5{word-spacing:8.034667pt;}
.ws69{word-spacing:8.096000pt;}
.ws8f{word-spacing:8.157333pt;}
.ws7d{word-spacing:8.280000pt;}
.ws6c{word-spacing:8.341333pt;}
.wsd1{word-spacing:8.344000pt;}
.wsac{word-spacing:8.402667pt;}
.ws10{word-spacing:8.456000pt;}
.wsf4{word-spacing:8.512000pt;}
.wsae{word-spacing:8.525333pt;}
.wsda{word-spacing:8.568000pt;}
.ws30{word-spacing:8.893333pt;}
.wsb9{word-spacing:9.077333pt;}
.ws7c{word-spacing:9.200000pt;}
.wscf{word-spacing:9.352000pt;}
.wsdf{word-spacing:9.464000pt;}
.ws64{word-spacing:9.506667pt;}
.ws2b{word-spacing:9.690667pt;}
.wsb8{word-spacing:9.813333pt;}
.wsef{word-spacing:9.968000pt;}
.ws26{word-spacing:9.997333pt;}
.ws58{word-spacing:10.610667pt;}
.wsba{word-spacing:10.672000pt;}
.ws2d{word-spacing:10.733333pt;}
.ws83{word-spacing:10.794667pt;}
.wsc3{word-spacing:11.408000pt;}
.wsc4{word-spacing:12.696000pt;}
.ws86{word-spacing:13.861333pt;}
.ws43{word-spacing:16.314667pt;}
.wsf5{word-spacing:17.248000pt;}
.wsa8{word-spacing:61.739733pt;}
.wsa9{word-spacing:61.740267pt;}
.ws92{word-spacing:117.879467pt;}
.ws94{word-spacing:143.212800pt;}
.ws9b{word-spacing:151.356800pt;}
.ws9f{word-spacing:173.244267pt;}
.ws9d{word-spacing:185.910933pt;}
.wsa0{word-spacing:192.244267pt;}
.ws97{word-spacing:204.912000pt;}
.ws96{word-spacing:321.464000pt;}
.wsa7{word-spacing:346.979733pt;}
.wsa5{word-spacing:347.892800pt;}
.wsaa{word-spacing:419.846400pt;}
.ws91{word-spacing:462.001067pt;}
.ws9a{word-spacing:473.154667pt;}
.ws99{word-spacing:485.821333pt;}
.wsa1{word-spacing:486.761333pt;}
.ws9c{word-spacing:498.488000pt;}
.wsa4{word-spacing:578.981333pt;}
.wsa3{word-spacing:591.648000pt;}
.wsa6{word-spacing:604.314667pt;}
.ws9e{word-spacing:704.582400pt;}
.ws93{word-spacing:761.194133pt;}
.ws95{word-spacing:847.124800pt;}
.wsa2{word-spacing:967.327467pt;}
._8e{margin-left:-76.666667pt;}
._92{margin-left:-22.960000pt;}
._11{margin-left:-21.712000pt;}
._8{margin-left:-20.481067pt;}
._e{margin-left:-17.877333pt;}
._8d{margin-left:-15.430133pt;}
._8c{margin-left:-14.352000pt;}
._1{margin-left:-8.588267pt;}
._3{margin-left:-7.384533pt;}
._6{margin-left:-5.729333pt;}
._c{margin-left:-4.544800pt;}
._7{margin-left:-3.382933pt;}
._0{margin-left:-1.681867pt;}
._b{width:1.248533pt;}
._4{width:2.250933pt;}
._2{width:3.554667pt;}
._5{width:4.631733pt;}
._d{width:5.864267pt;}
._a{width:7.144000pt;}
._f{width:8.520533pt;}
._9{width:9.940800pt;}
._10{width:10.862667pt;}
._91{width:14.365867pt;}
._90{width:16.783200pt;}
._8f{width:18.235733pt;}
._5a{width:53.797333pt;}
._14{width:67.512000pt;}
._59{width:71.592533pt;}
._67{width:84.295467pt;}
._69{width:85.208533pt;}
._1c{width:88.347200pt;}
._23{width:96.782933pt;}
._72{width:98.861600pt;}
._1f{width:100.988000pt;}
._32{width:102.685867pt;}
._31{width:104.807467pt;}
._25{width:109.449600pt;}
._12{width:110.835200pt;}
._1b{width:112.913067pt;}
._30{width:120.006933pt;}
._22{width:121.349333pt;}
._60{width:142.547733pt;}
._13{width:153.345600pt;}
._70{width:160.945600pt;}
._39{width:162.300800pt;}
._4f{width:185.910400pt;}
._2d{width:186.814400pt;}
._2f{width:206.546133pt;}
._35{width:209.143467pt;}
._20{width:212.147733pt;}
._1e{width:213.829600pt;}
._36{width:217.579200pt;}
._17{width:220.609067pt;}
._56{width:228.977067pt;}
._84{width:235.639467pt;}
._1a{width:237.481067pt;}
._3a{width:240.376000pt;}
._55{width:244.177600pt;}
._73{width:250.764000pt;}
._15{width:260.388800pt;}
._41{width:267.560000pt;}
._8b{width:291.863200pt;}
._6c{width:299.485333pt;}
._89{width:300.397867pt;}
._7d{width:308.248267pt;}
._16{width:312.372800pt;}
._66{width:316.297600pt;}
._7f{width:321.000000pt;}
._5b{width:332.142400pt;}
._75{width:333.068267pt;}
._76{width:340.382400pt;}
._82{width:342.607733pt;}
._18{width:349.758400pt;}
._38{width:352.082133pt;}
._6e{width:359.646400pt;}
._83{width:365.078133pt;}
._68{width:367.682667pt;}
._52{width:369.290133pt;}
._27{width:375.091733pt;}
._85{width:378.739733pt;}
._87{width:381.584800pt;}
._28{width:390.206400pt;}
._74{width:394.982933pt;}
._34{width:397.618667pt;}
._65{width:401.426667pt;}
._3b{width:402.544800pt;}
._8a{width:405.681600pt;}
._77{width:408.754133pt;}
._71{width:418.035733pt;}
._2e{width:422.075733pt;}
._2a{width:428.206400pt;}
._4e{width:439.443733pt;}
._7a{width:443.082667pt;}
._58{width:457.909333pt;}
._7c{width:459.370133pt;}
._26{width:464.635733pt;}
._86{width:465.995467pt;}
._6f{width:468.965333pt;}
._64{width:473.401067pt;}
._3e{width:485.821333pt;}
._2b{width:491.011467pt;}
._81{width:498.654400pt;}
._4d{width:509.655467pt;}
._44{width:511.154667pt;}
._4c{width:515.669600pt;}
._79{width:518.620000pt;}
._78{width:536.974933pt;}
._7b{width:541.919200pt;}
._4b{width:547.706133pt;}
._88{width:550.252800pt;}
._6d{width:578.981333pt;}
._45{width:580.920000pt;}
._33{width:584.640800pt;}
._5d{width:591.648000pt;}
._57{width:612.747200pt;}
._7e{width:621.991733pt;}
._47{width:624.184267pt;}
._80{width:627.615733pt;}
._43{width:631.697867pt;}
._24{width:644.762133pt;}
._2c{width:650.436800pt;}
._54{width:697.816533pt;}
._5e{width:703.146667pt;}
._19{width:710.009067pt;}
._5f{width:715.762667pt;}
._37{width:723.755733pt;}
._21{width:730.844800pt;}
._62{width:749.947467pt;}
._5c{width:753.762667pt;}
._6a{width:762.224000pt;}
._1d{width:807.126400pt;}
._63{width:815.677333pt;}
._61{width:824.138667pt;}
._6b{width:828.344000pt;}
._29{width:849.596267pt;}
._46{width:901.437333pt;}
._53{width:965.743733pt;}
._48{width:982.831467pt;}
._49{width:1029.632267pt;}
._3f{width:1043.304000pt;}
._40{width:1055.920000pt;}
._42{width:1067.218667pt;}
._3d{width:1093.920000pt;}
._4a{width:1096.780800pt;}
._50{width:1103.823467pt;}
._51{width:1108.028800pt;}
._3c{width:1147.424000pt;}
.fs5{font-size:32.933333pt;}
.fs8{font-size:39.866667pt;}
.fs0{font-size:45.333333pt;}
.fs2{font-size:46.800000pt;}
.fs6{font-size:50.666667pt;}
.fs4{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:72.000000pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:80.217467pt;}
.y83{bottom:81.334800pt;}
.y5a{bottom:82.260267pt;}
.y10f{bottom:83.111867pt;}
.y253{bottom:83.982533pt;}
.y20d{bottom:83.998400pt;}
.yd7{bottom:85.115600pt;}
.y2e{bottom:88.021867pt;}
.y2ba{bottom:88.263467pt;}
.yab{bottom:98.217467pt;}
.y82{bottom:99.334800pt;}
.y252{bottom:99.982533pt;}
.y59{bottom:100.260267pt;}
.y10e{bottom:101.111867pt;}
.y20c{bottom:101.998400pt;}
.y2d{bottom:102.021867pt;}
.yd6{bottom:103.115600pt;}
.y2b9{bottom:104.263467pt;}
.y286{bottom:104.277200pt;}
.yec{bottom:105.997333pt;}
.y1a2{bottom:110.184933pt;}
.y180{bottom:111.198933pt;}
.y22c{bottom:115.556133pt;}
.y251{bottom:115.982533pt;}
.y2c{bottom:116.021867pt;}
.yaa{bottom:116.217467pt;}
.y81{bottom:117.334800pt;}
.y58{bottom:118.260267pt;}
.y10d{bottom:119.111867pt;}
.y1f2{bottom:119.363467pt;}
.y2b8{bottom:120.263467pt;}
.y285{bottom:120.277200pt;}
.yd5{bottom:121.115600pt;}
.yeb{bottom:123.997333pt;}
.y20b{bottom:127.557467pt;}
.y2b{bottom:130.021867pt;}
.y17f{bottom:130.686667pt;}
.y250{bottom:131.982533pt;}
.y1a1{bottom:132.184933pt;}
.y22b{bottom:133.556133pt;}
.ya9{bottom:134.217467pt;}
.y80{bottom:135.334800pt;}
.y57{bottom:136.260267pt;}
.y2b7{bottom:136.263467pt;}
.y284{bottom:136.277200pt;}
.y1f1{bottom:137.363467pt;}
.yd4{bottom:139.115600pt;}
.y2a{bottom:139.841867pt;}
.y20a{bottom:145.557467pt;}
.y24f{bottom:147.982533pt;}
.yea{bottom:149.556533pt;}
.y22a{bottom:151.556133pt;}
.ya8{bottom:152.217467pt;}
.y2b6{bottom:152.263467pt;}
.y283{bottom:152.277200pt;}
.y10c{bottom:153.112400pt;}
.y17e{bottom:153.353333pt;}
.y1a0{bottom:154.184933pt;}
.y56{bottom:154.260267pt;}
.y1f0{bottom:155.363467pt;}
.yd3{bottom:157.115600pt;}
.y29{bottom:158.021867pt;}
.y15a{bottom:162.301067pt;}
.y209{bottom:163.557467pt;}
.y24e{bottom:163.982533pt;}
.ye9{bottom:167.556533pt;}
.y2b5{bottom:168.263467pt;}
.y282{bottom:168.277200pt;}
.y7f{bottom:169.335333pt;}
.y229{bottom:169.556133pt;}
.ya7{bottom:170.217467pt;}
.y28{bottom:172.021867pt;}
.y55{bottom:172.260267pt;}
.y1ef{bottom:173.363467pt;}
.y17d{bottom:175.353333pt;}
.y19f{bottom:176.184933pt;}
.y24d{bottom:179.982533pt;}
.y159{bottom:180.481067pt;}
.y208{bottom:181.557467pt;}
.y27{bottom:181.842000pt;}
.y1c8{bottom:182.181067pt;}
.yd2{bottom:182.674533pt;}
.y2b4{bottom:184.263467pt;}
.y281{bottom:184.277200pt;}
.ye8{bottom:185.556533pt;}
.y228{bottom:187.556133pt;}
.ya6{bottom:188.217467pt;}
.y54{bottom:190.260267pt;}
.y1ee{bottom:191.363467pt;}
.y10b{bottom:194.671867pt;}
.y26{bottom:195.842000pt;}
.y24c{bottom:195.982533pt;}
.y1c7{bottom:196.181067pt;}
.y17c{bottom:197.455467pt;}
.y158{bottom:198.026800pt;}
.y19e{bottom:198.184933pt;}
.y207{bottom:199.557467pt;}
.y2b3{bottom:200.263467pt;}
.y280{bottom:200.277200pt;}
.yd1{bottom:200.674533pt;}
.y12b{bottom:203.113200pt;}
.ye7{bottom:203.556533pt;}
.y227{bottom:205.556133pt;}
.y1c6{bottom:206.001200pt;}
.y1ed{bottom:209.363467pt;}
.y24b{bottom:211.982533pt;}
.y10a{bottom:212.671867pt;}
.ya5{bottom:213.776533pt;}
.y25{bottom:214.021867pt;}
.y53{bottom:215.819200pt;}
.y2b2{bottom:216.263467pt;}
.y27f{bottom:216.277200pt;}
.y157{bottom:217.476000pt;}
.yd0{bottom:218.674533pt;}
.y7e{bottom:219.335733pt;}
.y17b{bottom:219.353333pt;}
.y19d{bottom:220.941200pt;}
.y12a{bottom:221.113200pt;}
.y226{bottom:223.556133pt;}
.y206{bottom:225.116400pt;}
.y1ec{bottom:227.363467pt;}
.y24a{bottom:227.982533pt;}
.ye6{bottom:229.115600pt;}
.y1c5{bottom:229.437600pt;}
.y109{bottom:230.671867pt;}
.y156{bottom:231.476000pt;}
.ya4{bottom:231.776533pt;}
.y2b1{bottom:232.263467pt;}
.y27e{bottom:232.277200pt;}
.y52{bottom:233.819200pt;}
.ycf{bottom:236.674667pt;}
.y24{bottom:238.486667pt;}
.y129{bottom:239.113200pt;}
.y17a{bottom:241.353333pt;}
.y225{bottom:241.556133pt;}
.y205{bottom:243.116533pt;}
.y19c{bottom:243.595600pt;}
.y249{bottom:243.982667pt;}
.y1eb{bottom:245.363600pt;}
.y155{bottom:245.476000pt;}
.ye5{bottom:247.115467pt;}
.y2b0{bottom:248.263467pt;}
.y27d{bottom:248.277200pt;}
.y108{bottom:248.671867pt;}
.ya3{bottom:249.776533pt;}
.y1c4{bottom:250.393600pt;}
.y1c2{bottom:250.495600pt;}
.y51{bottom:251.819200pt;}
.y23{bottom:254.486667pt;}
.yce{bottom:254.674667pt;}
.y128{bottom:257.113200pt;}
.y224{bottom:259.556133pt;}
.y248{bottom:259.982667pt;}
.y204{bottom:261.116533pt;}
.y179{bottom:263.353333pt;}
.y1ea{bottom:263.363600pt;}
.y2af{bottom:264.263467pt;}
.y27c{bottom:264.277200pt;}
.y1c3{bottom:264.393600pt;}
.y1c1{bottom:264.495600pt;}
.y154{bottom:264.925200pt;}
.ye4{bottom:265.115467pt;}
.y107{bottom:266.671867pt;}
.ya2{bottom:267.776533pt;}
.y19b{bottom:268.164267pt;}
.y7d{bottom:269.336933pt;}
.y50{bottom:269.819200pt;}
.y22{bottom:270.486667pt;}
.ycd{bottom:272.674667pt;}
.y247{bottom:275.982667pt;}
.y153{bottom:278.925200pt;}
.y203{bottom:279.116533pt;}
.y2ae{bottom:280.263467pt;}
.y27b{bottom:280.277200pt;}
.y1e9{bottom:281.363600pt;}
.y19a{bottom:282.164267pt;}
.y1c0{bottom:282.275067pt;}
.y177{bottom:284.078000pt;}
.y223{bottom:285.115200pt;}
.y21{bottom:286.486667pt;}
.y7c{bottom:287.336933pt;}
.y4f{bottom:287.819200pt;}
.ycc{bottom:290.674667pt;}
.y127{bottom:291.113600pt;}
.y246{bottom:291.982667pt;}
.y152{bottom:292.925200pt;}
.y2ad{bottom:296.263467pt;}
.y27a{bottom:296.277200pt;}
.y202{bottom:297.116533pt;}
.y178{bottom:297.976000pt;}
.y176{bottom:298.078000pt;}
.y1e8{bottom:299.363600pt;}
.y199{bottom:299.943867pt;}
.y106{bottom:300.672400pt;}
.ya1{bottom:301.776933pt;}
.y20{bottom:302.486667pt;}
.y1bf{bottom:302.666400pt;}
.y222{bottom:303.115200pt;}
.y7b{bottom:305.336933pt;}
.y245{bottom:307.982667pt;}
.ycb{bottom:308.674667pt;}
.y175{bottom:312.078000pt;}
.y2ac{bottom:312.263467pt;}
.y279{bottom:312.277200pt;}
.y151{bottom:312.374400pt;}
.y4e{bottom:313.378400pt;}
.y201{bottom:315.116533pt;}
.y1e7{bottom:317.363600pt;}
.y1f{bottom:318.486667pt;}
.y7a{bottom:323.336933pt;}
.y244{bottom:323.982667pt;}
.y1be{bottom:323.999733pt;}
.yca{bottom:326.674667pt;}
.y2ab{bottom:328.263467pt;}
.y278{bottom:328.277200pt;}
.y221{bottom:328.674267pt;}
.y4d{bottom:331.378400pt;}
.y14f{bottom:331.823600pt;}
.y14d{bottom:332.027733pt;}
.y126{bottom:332.673200pt;}
.y174{bottom:332.700533pt;}
.y1e{bottom:334.486667pt;}
.y1e6{bottom:335.363600pt;}
.y243{bottom:339.982667pt;}
.y200{bottom:340.675600pt;}
.y198{bottom:340.800933pt;}
.y79{bottom:341.336933pt;}
.y105{bottom:342.231867pt;}
.ya0{bottom:343.336533pt;}
.y2aa{bottom:344.263467pt;}
.y277{bottom:344.277200pt;}
.yc9{bottom:344.674667pt;}
.y1bd{bottom:345.333067pt;}
.y14e{bottom:345.823600pt;}
.y14c{bottom:346.027733pt;}
.y220{bottom:346.674267pt;}
.y4c{bottom:349.378400pt;}
.y1d{bottom:350.486667pt;}
.y125{bottom:350.673200pt;}
.y1e5{bottom:353.363600pt;}
.y173{bottom:354.598533pt;}
.y242{bottom:355.982667pt;}
.y1ff{bottom:358.675600pt;}
.y78{bottom:359.336933pt;}
.y150{bottom:359.823600pt;}
.y14b{bottom:360.027733pt;}
.y197{bottom:360.155333pt;}
.y104{bottom:360.231867pt;}
.y2a9{bottom:360.263467pt;}
.y276{bottom:360.277200pt;}
.y9f{bottom:361.336533pt;}
.yc8{bottom:362.674667pt;}
.y21f{bottom:364.674267pt;}
.y1c{bottom:366.486667pt;}
.y1bc{bottom:366.564267pt;}
.y4b{bottom:367.378400pt;}
.y124{bottom:368.673200pt;}
.y241{bottom:371.982667pt;}
.y2a8{bottom:376.263467pt;}
.y275{bottom:376.277200pt;}
.y172{bottom:376.598533pt;}
.y1fe{bottom:376.675600pt;}
.y77{bottom:377.336933pt;}
.y103{bottom:378.231867pt;}
.y1e4{bottom:378.922667pt;}
.y9e{bottom:379.336533pt;}
.y14a{bottom:379.476933pt;}
.yc7{bottom:380.674667pt;}
.y1b{bottom:382.486667pt;}
.y196{bottom:382.555467pt;}
.y21e{bottom:382.674267pt;}
.y4a{bottom:385.378400pt;}
.y123{bottom:386.673200pt;}
.y1bb{bottom:387.897600pt;}
.y240{bottom:387.982667pt;}
.y2a7{bottom:392.263467pt;}
.y274{bottom:392.277200pt;}
.y1fd{bottom:394.675600pt;}
.y102{bottom:396.231867pt;}
.y1e3{bottom:396.922667pt;}
.y9d{bottom:397.336533pt;}
.y1a{bottom:398.486667pt;}
.y171{bottom:398.598533pt;}
.yc6{bottom:398.674667pt;}
.y149{bottom:398.722000pt;}
.y21d{bottom:400.674267pt;}
.y76{bottom:402.896000pt;}
.y49{bottom:403.378400pt;}
.y23f{bottom:403.982667pt;}
.y195{bottom:404.390800pt;}
.y122{bottom:404.673200pt;}
.y2a6{bottom:408.263467pt;}
.y273{bottom:408.277200pt;}
.y1ba{bottom:409.230933pt;}
.y1fc{bottom:412.675600pt;}
.y101{bottom:414.231867pt;}
.y19{bottom:414.486667pt;}
.y1e2{bottom:414.922667pt;}
.y9c{bottom:415.336533pt;}
.yc5{bottom:416.674667pt;}
.y21c{bottom:418.674267pt;}
.y170{bottom:419.323067pt;}
.y23e{bottom:419.982667pt;}
.y75{bottom:420.896000pt;}
.y48{bottom:421.378400pt;}
.y148{bottom:421.913333pt;}
.y121{bottom:422.673200pt;}
.y2a5{bottom:424.263467pt;}
.y272{bottom:424.277200pt;}
.y194{bottom:426.022133pt;}
.y18{bottom:430.486667pt;}
.y1b9{bottom:430.666400pt;}
.y1fb{bottom:430.675600pt;}
.y100{bottom:432.231867pt;}
.y1e1{bottom:432.922667pt;}
.y16f{bottom:433.323067pt;}
.y9b{bottom:433.336533pt;}
.yc4{bottom:434.674667pt;}
.y147{bottom:435.913333pt;}
.y23d{bottom:435.982667pt;}
.y21b{bottom:436.674267pt;}
.y74{bottom:438.896000pt;}
.y2a4{bottom:440.263467pt;}
.y271{bottom:440.277200pt;}
.y120{bottom:440.673200pt;}
.y47{bottom:446.937333pt;}
.y193{bottom:447.755467pt;}
.y1fa{bottom:448.675600pt;}
.yff{bottom:450.231867pt;}
.y1e0{bottom:450.922667pt;}
.y9a{bottom:451.336533pt;}
.y23c{bottom:451.982667pt;}
.y1b8{bottom:452.666400pt;}
.yc3{bottom:452.674667pt;}
.y16e{bottom:453.843600pt;}
.y21a{bottom:454.674267pt;}
.y2a3{bottom:456.263467pt;}
.y270{bottom:456.277200pt;}
.y73{bottom:456.896000pt;}
.y17{bottom:462.486667pt;}
.y46{bottom:464.937333pt;}
.y23b{bottom:467.982667pt;}
.y1df{bottom:468.922667pt;}
.y99{bottom:469.336533pt;}
.y192{bottom:469.488667pt;}
.yc2{bottom:470.674667pt;}
.y2a2{bottom:472.263467pt;}
.y26f{bottom:472.277200pt;}
.y146{bottom:472.757200pt;}
.y1f9{bottom:474.234533pt;}
.y11f{bottom:474.673600pt;}
.y72{bottom:474.896000pt;}
.yfe{bottom:475.790933pt;}
.y16d{bottom:475.843600pt;}
.y1b7{bottom:477.568533pt;}
.y16{bottom:478.486667pt;}
.y45{bottom:482.937333pt;}
.y23a{bottom:483.982667pt;}
.y1de{bottom:486.922667pt;}
.y98{bottom:487.336533pt;}
.y2a1{bottom:488.263467pt;}
.y26e{bottom:488.277200pt;}
.y219{bottom:488.674267pt;}
.yc1{bottom:488.674667pt;}
.y191{bottom:491.324133pt;}
.y145{bottom:492.206400pt;}
.y1f8{bottom:492.234533pt;}
.y11e{bottom:492.673600pt;}
.y71{bottom:492.896000pt;}
.yfd{bottom:493.790933pt;}
.y15{bottom:494.486667pt;}
.y1b6{bottom:495.348000pt;}
.y16c{bottom:497.843600pt;}
.y239{bottom:499.982667pt;}
.y44{bottom:500.937333pt;}
.y2a0{bottom:504.263467pt;}
.y26d{bottom:504.277200pt;}
.y1dd{bottom:504.922667pt;}
.y97{bottom:505.336533pt;}
.y1f7{bottom:510.234533pt;}
.y14{bottom:510.486667pt;}
.yfc{bottom:511.790933pt;}
.y144{bottom:511.859733pt;}
.y190{bottom:512.955467pt;}
.ye3{bottom:514.233600pt;}
.y238{bottom:515.982667pt;}
.y70{bottom:518.455067pt;}
.y16b{bottom:518.568267pt;}
.y43{bottom:518.937333pt;}
.y29f{bottom:520.263467pt;}
.y26c{bottom:520.277200pt;}
.yc0{bottom:522.675067pt;}
.y96{bottom:523.336533pt;}
.y13{bottom:526.486667pt;}
.y1f6{bottom:528.234533pt;}
.yfb{bottom:529.790933pt;}
.y1dc{bottom:530.481600pt;}
.y143{bottom:531.308933pt;}
.ye2{bottom:532.233600pt;}
.y16a{bottom:532.568267pt;}
.y11d{bottom:534.233200pt;}
.y18f{bottom:534.688800pt;}
.y1b5{bottom:536.205200pt;}
.y29e{bottom:536.263467pt;}
.y26b{bottom:536.277200pt;}
.y6f{bottom:536.455067pt;}
.y42{bottom:536.937333pt;}
.y218{bottom:538.675600pt;}
.y95{bottom:541.336533pt;}
.y12{bottom:542.486667pt;}
.y237{bottom:545.210933pt;}
.y1f5{bottom:546.234533pt;}
.y1db{bottom:548.481600pt;}
.y1b4{bottom:550.205200pt;}
.ye1{bottom:550.233600pt;}
.y142{bottom:550.554000pt;}
.y11c{bottom:552.233200pt;}
.y29d{bottom:552.263467pt;}
.y26a{bottom:552.277200pt;}
.y169{bottom:553.190800pt;}
.y6e{bottom:554.455067pt;}
.y41{bottom:554.937333pt;}
.yfa{bottom:555.350000pt;}
.y18e{bottom:556.422133pt;}
.y217{bottom:556.675600pt;}
.y11{bottom:558.486667pt;}
.y94{bottom:559.336533pt;}
.y1b3{bottom:564.205200pt;}
.ybf{bottom:564.234533pt;}
.y1da{bottom:566.481600pt;}
.ye0{bottom:568.233600pt;}
.y29c{bottom:568.263467pt;}
.y269{bottom:568.277200pt;}
.y141{bottom:570.003200pt;}
.y11b{bottom:570.233200pt;}
.y6d{bottom:572.455067pt;}
.y40{bottom:572.937333pt;}
.yf9{bottom:573.350000pt;}
.y10{bottom:574.486667pt;}
.y216{bottom:574.675600pt;}
.y168{bottom:575.088800pt;}
.y93{bottom:577.336533pt;}
.y1b2{bottom:578.205200pt;}
.y18d{bottom:578.257467pt;}
.ybe{bottom:582.234667pt;}
.y29b{bottom:584.263467pt;}
.y268{bottom:584.277200pt;}
.y1d9{bottom:584.481733pt;}
.ydf{bottom:586.233600pt;}
.y1b1{bottom:588.025200pt;}
.y11a{bottom:588.233200pt;}
.y140{bottom:589.452533pt;}
.y236{bottom:589.667600pt;}
.y6c{bottom:590.455067pt;}
.yf{bottom:590.486667pt;}
.y3f{bottom:590.937333pt;}
.yf8{bottom:591.350000pt;}
.y215{bottom:592.675600pt;}
.y167{bottom:597.088800pt;}
.y18c{bottom:599.888800pt;}
.ybd{bottom:600.234667pt;}
.y29a{bottom:600.263467pt;}
.y267{bottom:600.277200pt;}
.y1d8{bottom:602.481733pt;}
.y92{bottom:602.895600pt;}
.yde{bottom:604.233600pt;}
.y235{bottom:605.667600pt;}
.y119{bottom:606.233200pt;}
.ye{bottom:606.486667pt;}
.y6b{bottom:608.455067pt;}
.y13f{bottom:608.901733pt;}
.y3e{bottom:608.937333pt;}
.yf7{bottom:609.350000pt;}
.y214{bottom:610.675600pt;}
.y1b0{bottom:611.726267pt;}
.y299{bottom:616.263467pt;}
.y266{bottom:616.277200pt;}
.ybc{bottom:618.234667pt;}
.y166{bottom:619.088800pt;}
.y1d7{bottom:620.481733pt;}
.y91{bottom:620.895600pt;}
.y18b{bottom:621.622133pt;}
.y234{bottom:621.667600pt;}
.yd{bottom:622.486667pt;}
.y118{bottom:624.233200pt;}
.y6a{bottom:626.455067pt;}
.yf6{bottom:627.350000pt;}
.y13e{bottom:628.555067pt;}
.y213{bottom:628.675600pt;}
.y298{bottom:632.263467pt;}
.y265{bottom:632.277200pt;}
.y1af{bottom:634.426267pt;}
.y3d{bottom:634.496400pt;}
.ybb{bottom:636.234667pt;}
.y233{bottom:637.667600pt;}
.ydd{bottom:638.234133pt;}
.yc{bottom:638.486667pt;}
.y90{bottom:638.895600pt;}
.y165{bottom:641.088800pt;}
.y117{bottom:642.233200pt;}
.y18a{bottom:643.355467pt;}
.y1f4{bottom:643.793600pt;}
.y69{bottom:644.455067pt;}
.yf5{bottom:645.350000pt;}
.y1d6{bottom:646.040667pt;}
.y13d{bottom:647.800133pt;}
.y297{bottom:648.263467pt;}
.y264{bottom:648.277200pt;}
.y3c{bottom:652.496400pt;}
.y232{bottom:653.667600pt;}
.yba{bottom:654.234667pt;}
.yb{bottom:654.486667pt;}
.y1ae{bottom:656.426267pt;}
.y8f{bottom:656.895600pt;}
.y116{bottom:660.233200pt;}
.y1f3{bottom:661.793600pt;}
.y68{bottom:662.455067pt;}
.y164{bottom:663.088800pt;}
.yf4{bottom:663.350000pt;}
.y1d5{bottom:664.040667pt;}
.y296{bottom:664.263467pt;}
.y263{bottom:664.277200pt;}
.y189{bottom:665.190800pt;}
.y13c{bottom:667.249333pt;}
.y231{bottom:669.667600pt;}
.y3b{bottom:670.496400pt;}
.yb9{bottom:672.234667pt;}
.y1ad{bottom:678.426267pt;}
.ydc{bottom:679.793600pt;}
.y295{bottom:680.263467pt;}
.y262{bottom:680.277200pt;}
.y67{bottom:680.455067pt;}
.yf3{bottom:681.350000pt;}
.y1d4{bottom:682.040667pt;}
.y8e{bottom:682.454667pt;}
.y163{bottom:685.190800pt;}
.y230{bottom:685.667600pt;}
.y115{bottom:685.792267pt;}
.y13b{bottom:686.698533pt;}
.y188{bottom:686.822000pt;}
.y3a{bottom:688.496400pt;}
.yb8{bottom:690.234667pt;}
.y294{bottom:696.263467pt;}
.y261{bottom:696.277200pt;}
.ydb{bottom:697.793600pt;}
.y66{bottom:698.455067pt;}
.yf2{bottom:699.350000pt;}
.y1d3{bottom:700.040667pt;}
.y1ac{bottom:700.426267pt;}
.y8d{bottom:700.454533pt;}
.ya{bottom:702.486133pt;}
.y114{bottom:703.792267pt;}
.y13a{bottom:706.147733pt;}
.y39{bottom:706.496400pt;}
.y162{bottom:707.088667pt;}
.yb7{bottom:708.234667pt;}
.y187{bottom:708.555333pt;}
.y293{bottom:712.263467pt;}
.y260{bottom:712.277200pt;}
.y22f{bottom:714.896000pt;}
.yda{bottom:715.793600pt;}
.y65{bottom:716.455067pt;}
.y1d2{bottom:718.040667pt;}
.y8c{bottom:718.454533pt;}
.y9{bottom:721.536800pt;}
.y1ab{bottom:722.426267pt;}
.y38{bottom:724.496400pt;}
.y139{bottom:725.801067pt;}
.y212{bottom:726.234667pt;}
.y292{bottom:728.263467pt;}
.y25f{bottom:728.277200pt;}
.y161{bottom:729.088667pt;}
.y186{bottom:730.288800pt;}
.yf1{bottom:733.350533pt;}
.yb6{bottom:733.793600pt;}
.y64{bottom:734.455067pt;}
.y1d1{bottom:736.040667pt;}
.y8b{bottom:736.454533pt;}
.y113{bottom:737.792667pt;}
.y8{bottom:740.587467pt;}
.y37{bottom:742.496400pt;}
.y211{bottom:744.234667pt;}
.y291{bottom:744.263467pt;}
.y25e{bottom:744.277200pt;}
.y1aa{bottom:744.528267pt;}
.y138{bottom:745.250267pt;}
.y160{bottom:751.088667pt;}
.yb5{bottom:751.793600pt;}
.y185{bottom:752.022000pt;}
.y63{bottom:752.455067pt;}
.y1d0{bottom:754.040667pt;}
.y8a{bottom:754.454533pt;}
.y22e{bottom:759.352667pt;}
.y290{bottom:760.263467pt;}
.y25d{bottom:760.277200pt;}
.y36{bottom:760.496400pt;}
.y137{bottom:764.699600pt;}
.y1a9{bottom:766.426267pt;}
.yb4{bottom:769.793600pt;}
.y7{bottom:771.638133pt;}
.y1cf{bottom:772.040667pt;}
.y89{bottom:772.454533pt;}
.y15f{bottom:773.088667pt;}
.y184{bottom:773.857467pt;}
.y28f{bottom:776.263467pt;}
.y25c{bottom:776.277200pt;}
.y22d{bottom:777.352667pt;}
.y62{bottom:778.014133pt;}
.y35{bottom:778.496400pt;}
.y112{bottom:779.352267pt;}
.yf0{bottom:783.350933pt;}
.y135{bottom:783.944667pt;}
.yb3{bottom:787.793600pt;}
.y1a8{bottom:788.426267pt;}
.y1ce{bottom:790.040667pt;}
.y88{bottom:790.454533pt;}
.y28e{bottom:792.263467pt;}
.y25b{bottom:792.277200pt;}
.y15e{bottom:795.190800pt;}
.yd9{bottom:795.352667pt;}
.y183{bottom:795.590800pt;}
.y61{bottom:796.014133pt;}
.y34{bottom:796.496400pt;}
.y111{bottom:797.352267pt;}
.y136{bottom:797.740533pt;}
.y134{bottom:797.944667pt;}
.y6{bottom:805.355467pt;}
.yb2{bottom:805.793600pt;}
.y1cd{bottom:808.040667pt;}
.y28d{bottom:808.263467pt;}
.y25a{bottom:808.277200pt;}
.y1a7{bottom:810.528267pt;}
.yd8{bottom:813.352667pt;}
.y60{bottom:814.014133pt;}
.y110{bottom:815.352267pt;}
.y87{bottom:816.013733pt;}
.y133{bottom:817.189733pt;}
.y15d{bottom:817.857467pt;}
.y182{bottom:817.990667pt;}
.y210{bottom:823.793600pt;}
.y28c{bottom:824.263467pt;}
.y259{bottom:824.277200pt;}
.y5{bottom:824.406133pt;}
.y33{bottom:830.496400pt;}
.yb1{bottom:831.352667pt;}
.y5f{bottom:832.014133pt;}
.y1a6{bottom:832.426267pt;}
.y181{bottom:833.155467pt;}
.yef{bottom:833.352267pt;}
.y1cc{bottom:833.599733pt;}
.y86{bottom:834.013733pt;}
.y130{bottom:836.434933pt;}
.y28b{bottom:840.263467pt;}
.y258{bottom:840.277200pt;}
.y20f{bottom:841.793600pt;}
.y132{bottom:843.434933pt;}
.y4{bottom:843.456800pt;}
.y15c{bottom:844.790800pt;}
.yb0{bottom:849.352667pt;}
.y5e{bottom:850.014133pt;}
.y12e{bottom:850.434933pt;}
.yee{bottom:851.352267pt;}
.y1cb{bottom:851.599733pt;}
.y85{bottom:852.013733pt;}
.y1a5{bottom:854.426267pt;}
.y28a{bottom:856.263467pt;}
.y257{bottom:856.277200pt;}
.y131{bottom:857.434933pt;}
.y20e{bottom:859.793600pt;}
.y12f{bottom:864.434933pt;}
.yaf{bottom:867.352667pt;}
.y5d{bottom:868.014133pt;}
.yed{bottom:869.352267pt;}
.y1ca{bottom:869.599733pt;}
.y84{bottom:870.013733pt;}
.y289{bottom:872.263467pt;}
.y256{bottom:872.277200pt;}
.y32{bottom:872.938667pt;}
.y15b{bottom:873.626267pt;}
.y1a4{bottom:876.426267pt;}
.yae{bottom:885.352667pt;}
.y5c{bottom:886.014133pt;}
.y12d{bottom:887.626267pt;}
.y288{bottom:888.263467pt;}
.y255{bottom:888.277200pt;}
.y31{bottom:888.938667pt;}
.y1a3{bottom:898.528267pt;}
.yad{bottom:903.352667pt;}
.y1c9{bottom:903.599733pt;}
.y5b{bottom:904.014133pt;}
.y287{bottom:904.263467pt;}
.y254{bottom:904.277200pt;}
.y30{bottom:904.938667pt;}
.y12c{bottom:905.405733pt;}
.y3{bottom:916.833067pt;}
.y2{bottom:930.199733pt;}
.y1{bottom:943.566400pt;}
.y2f{bottom:951.401467pt;}
.h8{height:28.897070pt;}
.h2{height:31.476562pt;}
.hd{height:34.338542pt;}
.h19{height:38.882812pt;}
.h3{height:39.777344pt;}
.hb{height:41.567708pt;}
.he{height:43.640498pt;}
.hf{height:43.641031pt;}
.h13{height:44.048498pt;}
.h16{height:44.049031pt;}
.h9{height:44.457031pt;}
.h10{height:44.800537pt;}
.h18{height:45.208537pt;}
.h12{height:45.209070pt;}
.h11{height:45.616537pt;}
.h17{height:45.617070pt;}
.h4{height:48.796875pt;}
.h7{height:49.136719pt;}
.ha{height:51.476562pt;}
.h6{height:53.816406pt;}
.hc{height:55.220664pt;}
.h5{height:64.824258pt;}
.h14{height:72.048498pt;}
.h15{height:72.049031pt;}
.h1{height:1046.666667pt;}
.h0{height:1046.929333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:98.267733pt;}
.x11{left:99.415067pt;}
.x1a{left:103.601067pt;}
.x9{left:113.385733pt;}
.x33{left:114.557067pt;}
.x1f{left:118.885867pt;}
.x3{left:125.198400pt;}
.xc{left:128.503867pt;}
.x2f{left:134.004000pt;}
.x1e{left:143.476667pt;}
.x1c{left:145.705467pt;}
.x7{left:150.891600pt;}
.x12{left:157.146667pt;}
.x4{left:168.453867pt;}
.x2b{left:172.459200pt;}
.x30{left:174.116933pt;}
.x32{left:185.493067pt;}
.x6{left:212.237467pt;}
.x8{left:228.210667pt;}
.x14{left:247.322667pt;}
.x13{left:252.821200pt;}
.x20{left:259.019600pt;}
.x27{left:261.128667pt;}
.x2{left:277.518133pt;}
.x29{left:287.172533pt;}
.x21{left:305.031467pt;}
.x31{left:313.417600pt;}
.x15{left:315.649867pt;}
.x1d{left:318.518933pt;}
.x38{left:322.559333pt;}
.x34{left:327.025067pt;}
.x2c{left:328.535600pt;}
.x1b{left:343.166533pt;}
.xe{left:346.274933pt;}
.x2e{left:349.447200pt;}
.x35{left:353.871600pt;}
.x37{left:354.780133pt;}
.x39{left:358.242933pt;}
.xd{left:362.891333pt;}
.xb{left:364.073333pt;}
.xf{left:365.437867pt;}
.x10{left:369.322133pt;}
.xa{left:378.009467pt;}
.x5{left:381.624667pt;}
.x2a{left:384.440267pt;}
.x2d{left:385.477733pt;}
.x25{left:399.972400pt;}
.x22{left:405.444267pt;}
.x23{left:482.011733pt;}
.x28{left:484.120800pt;}
.x17{left:527.198000pt;}
.x16{left:550.823200pt;}
.x36{left:556.668000pt;}
.x26{left:622.964533pt;}
.x24{left:628.436400pt;}
.x19{left:645.354667pt;}
.x18{left:656.005333pt;}
}




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