
    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_87f5f13688abefd6923d00c7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_d7605c8782489b035c4bdea3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.856445;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_cbc91702073b384763a0fcef.woff')format("woff");}.ff3{font-family:ff3;line-height:0.986816;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_2ccf05ba507f2efb3c98ce7c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.986816;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_7af339f0e1e77ad416e427e4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.724121;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_86698b1ad7f40265c7482caf.woff')format("woff");}.ff6{font-family:ff6;line-height:1.092773;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_040446110d36751ff2e08f28.woff')format("woff");}.ff7{font-family:ff7;line-height:1.052246;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_2be0979882c316b78cdec967.woff')format("woff");}.ff8{font-family:ff8;line-height:1.091309;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_359ae7a01386ee54ebbb7ca2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c7549498d5a009f39bd09e53.woff')format("woff");}.ffa{font-family:ffa;line-height:0.986816;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_a49d2779147319a73a54d36d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-8.040000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:14.400000px;}
.ls0{letter-spacing:17.172000px;}
.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;}
}
.ws0{word-spacing:-18.216000px;}
.ws13{word-spacing:-18.084000px;}
.ws60{word-spacing:-16.560000px;}
.ws9a{word-spacing:-16.440000px;}
.ws1{word-spacing:-14.904000px;}
.ws2{word-spacing:-14.796000px;}
.ws99{word-spacing:-14.400000px;}
.ws8c{word-spacing:-7.788000px;}
.wscb{word-spacing:-6.402000px;}
.wsb6{word-spacing:-6.072000px;}
.ws19{word-spacing:-5.412000px;}
.ws3b{word-spacing:-5.016000px;}
.wsf9{word-spacing:-4.884000px;}
.wsef{word-spacing:-4.620000px;}
.ws73{word-spacing:-4.554000px;}
.wscc{word-spacing:-3.894000px;}
.ws76{word-spacing:-3.762000px;}
.wsae{word-spacing:-3.696000px;}
.wsc3{word-spacing:-3.564000px;}
.ws12{word-spacing:-3.456000px;}
.ws4{word-spacing:-3.432000px;}
.wsf8{word-spacing:-3.366000px;}
.wsff{word-spacing:-3.300000px;}
.ws97{word-spacing:-3.102000px;}
.ws1e{word-spacing:-3.036000px;}
.ws27{word-spacing:-2.772000px;}
.ws26{word-spacing:-2.706000px;}
.wsd1{word-spacing:-2.442000px;}
.wsa2{word-spacing:-2.376000px;}
.ws8a{word-spacing:-2.310000px;}
.ws10{word-spacing:-2.046000px;}
.wse6{word-spacing:-1.980000px;}
.wsa1{word-spacing:-1.584000px;}
.wsc2{word-spacing:-1.518000px;}
.ws11{word-spacing:-1.452000px;}
.ws7{word-spacing:-1.320000px;}
.wsa{word-spacing:-1.188000px;}
.ws103{word-spacing:-1.140000px;}
.wscd{word-spacing:-1.056000px;}
.ws10b{word-spacing:-1.020000px;}
.wsa6{word-spacing:-0.990000px;}
.ws72{word-spacing:-0.594000px;}
.ws21{word-spacing:-0.528000px;}
.ws8b{word-spacing:-0.462000px;}
.wsc5{word-spacing:-0.396000px;}
.wsed{word-spacing:-0.264000px;}
.ws24{word-spacing:-0.198000px;}
.ws3{word-spacing:0.000000px;}
.wsde{word-spacing:0.066000px;}
.ws49{word-spacing:0.396000px;}
.wsad{word-spacing:0.528000px;}
.wsf4{word-spacing:0.660000px;}
.ws4b{word-spacing:0.792000px;}
.wsbe{word-spacing:0.858000px;}
.ws37{word-spacing:0.924000px;}
.ws100{word-spacing:1.200000px;}
.ws35{word-spacing:1.452000px;}
.wsd9{word-spacing:1.716000px;}
.ws22{word-spacing:1.782000px;}
.ws86{word-spacing:1.848000px;}
.ws6c{word-spacing:1.980000px;}
.ws2c{word-spacing:2.046000px;}
.ws7d{word-spacing:2.112000px;}
.ws2a{word-spacing:2.244000px;}
.wsab{word-spacing:2.310000px;}
.ws23{word-spacing:2.376000px;}
.ws7b{word-spacing:2.442000px;}
.ws92{word-spacing:2.508000px;}
.ws18{word-spacing:2.772000px;}
.ws5f{word-spacing:2.835000px;}
.ws90{word-spacing:2.904000px;}
.wsf5{word-spacing:2.970000px;}
.wsfc{word-spacing:3.120000px;}
.wsbb{word-spacing:3.168000px;}
.ws6d{word-spacing:3.300000px;}
.wsd2{word-spacing:3.498000px;}
.ws95{word-spacing:3.696000px;}
.wsa4{word-spacing:3.894000px;}
.ws7f{word-spacing:4.158000px;}
.ws38{word-spacing:4.224000px;}
.ws33{word-spacing:4.554000px;}
.ws8{word-spacing:4.686000px;}
.wsd5{word-spacing:4.950000px;}
.ws31{word-spacing:5.082000px;}
.ws17{word-spacing:5.148000px;}
.ws84{word-spacing:5.214000px;}
.ws25{word-spacing:5.280000px;}
.wsb8{word-spacing:5.346000px;}
.ws10a{word-spacing:5.460000px;}
.ws7e{word-spacing:5.544000px;}
.ws9d{word-spacing:5.676000px;}
.wse5{word-spacing:5.874000px;}
.wse8{word-spacing:6.006000px;}
.ws15{word-spacing:6.072000px;}
.ws9f{word-spacing:6.138000px;}
.wsdf{word-spacing:6.204000px;}
.wsd8{word-spacing:6.534000px;}
.ws108{word-spacing:6.540000px;}
.ws63{word-spacing:6.666000px;}
.ws104{word-spacing:6.780000px;}
.wsbc{word-spacing:6.798000px;}
.ws1d{word-spacing:6.996000px;}
.ws34{word-spacing:7.128000px;}
.ws96{word-spacing:7.194000px;}
.ws82{word-spacing:7.260000px;}
.ws98{word-spacing:7.392000px;}
.wscf{word-spacing:7.458000px;}
.wsa0{word-spacing:7.590000px;}
.wse1{word-spacing:7.656000px;}
.ws6{word-spacing:7.986000px;}
.wsa7{word-spacing:8.184000px;}
.wsb7{word-spacing:8.250000px;}
.ws3e{word-spacing:8.448000px;}
.wsf{word-spacing:8.580000px;}
.ws45{word-spacing:8.712000px;}
.wsc6{word-spacing:9.042000px;}
.wsec{word-spacing:9.108000px;}
.ws9{word-spacing:9.174000px;}
.ws79{word-spacing:9.372000px;}
.wsdb{word-spacing:9.438000px;}
.ws83{word-spacing:9.504000px;}
.ws67{word-spacing:9.570000px;}
.ws39{word-spacing:9.702000px;}
.wse{word-spacing:9.966000px;}
.wsd7{word-spacing:10.164000px;}
.ws6b{word-spacing:10.296000px;}
.wse2{word-spacing:10.362000px;}
.ws71{word-spacing:10.428000px;}
.ws20{word-spacing:10.560000px;}
.ws65{word-spacing:10.758000px;}
.wsca{word-spacing:10.824000px;}
.ws32{word-spacing:10.956000px;}
.wsc7{word-spacing:11.022000px;}
.wsc1{word-spacing:11.088000px;}
.ws89{word-spacing:11.154000px;}
.ws91{word-spacing:11.352000px;}
.wsb9{word-spacing:11.418000px;}
.wsc{word-spacing:11.550000px;}
.ws74{word-spacing:11.616000px;}
.ws68{word-spacing:11.946000px;}
.ws3d{word-spacing:12.210000px;}
.wsb{word-spacing:12.408000px;}
.wsa3{word-spacing:12.804000px;}
.wse9{word-spacing:12.870000px;}
.wse0{word-spacing:13.002000px;}
.ws77{word-spacing:13.068000px;}
.wsd3{word-spacing:13.332000px;}
.ws1f{word-spacing:13.398000px;}
.ws66{word-spacing:13.464000px;}
.wsa8{word-spacing:13.530000px;}
.ws5{word-spacing:13.992000px;}
.ws29{word-spacing:14.124000px;}
.ws85{word-spacing:14.190000px;}
.ws2b{word-spacing:14.322000px;}
.wsfe{word-spacing:14.580000px;}
.ws2d{word-spacing:14.652000px;}
.ws8f{word-spacing:14.718000px;}
.wse7{word-spacing:14.982000px;}
.ws14{word-spacing:15.114000px;}
.wsb0{word-spacing:15.180000px;}
.ws36{word-spacing:15.378000px;}
.wsdc{word-spacing:15.510000px;}
.ws28{word-spacing:15.642000px;}
.wsd{word-spacing:15.708000px;}
.ws94{word-spacing:15.972000px;}
.wsf6{word-spacing:16.104000px;}
.ws8e{word-spacing:16.368000px;}
.wsaf{word-spacing:16.566000px;}
.ws1c{word-spacing:16.962000px;}
.ws30{word-spacing:17.160000px;}
.ws87{word-spacing:17.424000px;}
.ws1a{word-spacing:17.556000px;}
.ws101{word-spacing:17.640000px;}
.ws42{word-spacing:17.688000px;}
.ws7c{word-spacing:17.754000px;}
.wsf7{word-spacing:17.820000px;}
.wsee{word-spacing:17.886000px;}
.ws78{word-spacing:18.084000px;}
.wsc9{word-spacing:18.150000px;}
.ws6a{word-spacing:18.480000px;}
.ws64{word-spacing:18.546000px;}
.wsb3{word-spacing:18.744000px;}
.wsd6{word-spacing:18.810000px;}
.wsdd{word-spacing:18.876000px;}
.ws105{word-spacing:18.900000px;}
.ws2f{word-spacing:19.074000px;}
.ws6e{word-spacing:19.140000px;}
.ws41{word-spacing:19.536000px;}
.wsba{word-spacing:19.932000px;}
.ws102{word-spacing:20.100000px;}
.wsc8{word-spacing:20.460000px;}
.wsc4{word-spacing:20.526000px;}
.ws69{word-spacing:20.658000px;}
.ws75{word-spacing:20.790000px;}
.ws16{word-spacing:20.922000px;}
.ws1b{word-spacing:21.054000px;}
.wsbf{word-spacing:21.582000px;}
.ws9e{word-spacing:21.912000px;}
.wsa9{word-spacing:21.978000px;}
.wsac{word-spacing:22.374000px;}
.ws80{word-spacing:22.704000px;}
.wsd4{word-spacing:23.034000px;}
.ws88{word-spacing:23.232000px;}
.wsa5{word-spacing:23.496000px;}
.ws48{word-spacing:23.562000px;}
.ws2e{word-spacing:24.354000px;}
.ws3a{word-spacing:24.816000px;}
.ws8d{word-spacing:24.882000px;}
.ws4a{word-spacing:24.948000px;}
.ws107{word-spacing:25.140000px;}
.wsc0{word-spacing:25.146000px;}
.ws7a{word-spacing:25.872000px;}
.wsb5{word-spacing:26.070000px;}
.wsd0{word-spacing:26.466000px;}
.ws47{word-spacing:26.532000px;}
.wse3{word-spacing:26.664000px;}
.wsfb{word-spacing:26.760000px;}
.ws43{word-spacing:26.862000px;}
.wsce{word-spacing:26.994000px;}
.ws106{word-spacing:27.660000px;}
.ws44{word-spacing:28.050000px;}
.wsfa{word-spacing:28.620000px;}
.ws81{word-spacing:29.238000px;}
.ws109{word-spacing:29.520000px;}
.ws93{word-spacing:29.766000px;}
.wsf2{word-spacing:30.426000px;}
.wsf1{word-spacing:30.624000px;}
.wsbd{word-spacing:31.416000px;}
.ws46{word-spacing:31.614000px;}
.ws3f{word-spacing:31.944000px;}
.ws70{word-spacing:33.330000px;}
.wsda{word-spacing:34.452000px;}
.ws3c{word-spacing:34.650000px;}
.ws40{word-spacing:38.610000px;}
.ws9c{word-spacing:39.798000px;}
.ws6f{word-spacing:44.022000px;}
.wsaa{word-spacing:44.088000px;}
.wse4{word-spacing:44.880000px;}
.wsea{word-spacing:45.408000px;}
.wsfd{word-spacing:49.620000px;}
.wsf0{word-spacing:51.612000px;}
.wseb{word-spacing:51.744000px;}
.wsf3{word-spacing:52.008000px;}
.wsb4{word-spacing:55.440000px;}
.wsb1{word-spacing:63.096000px;}
.wsb2{word-spacing:66.858000px;}
.ws62{word-spacing:140.400000px;}
.ws61{word-spacing:173.574000px;}
.ws5a{word-spacing:242.820000px;}
.ws4e{word-spacing:243.240000px;}
.ws5e{word-spacing:248.040000px;}
.ws57{word-spacing:252.780000px;}
.ws58{word-spacing:253.440000px;}
.ws51{word-spacing:253.920000px;}
.ws5c{word-spacing:258.180000px;}
.ws4c{word-spacing:258.720000px;}
.ws55{word-spacing:263.460000px;}
.ws50{word-spacing:273.720000px;}
.ws52{word-spacing:274.140000px;}
.ws53{word-spacing:278.940000px;}
.ws56{word-spacing:284.820000px;}
.ws9b{word-spacing:803.700000px;}
.ws54{word-spacing:963.840000px;}
.ws59{word-spacing:1129.500000px;}
.ws4f{word-spacing:1134.300000px;}
.ws4d{word-spacing:1142.280000px;}
.ws5b{word-spacing:1212.846000px;}
.ws5d{word-spacing:1213.806000px;}
._e{margin-left:-65.664000px;}
._4d{margin-left:-14.994000px;}
._4b{margin-left:-10.619400px;}
._a{margin-left:-9.007441px;}
._10{margin-left:-7.768200px;}
._b{margin-left:-6.217200px;}
._8{margin-left:-4.708200px;}
._0{margin-left:-3.486000px;}
._7{margin-left:-2.400000px;}
._5{margin-left:-1.358400px;}
._1{width:1.587241px;}
._d{width:2.744634px;}
._9{width:4.098000px;}
._17{width:6.078600px;}
._42{width:8.034000px;}
._12{width:9.283800px;}
._11{width:10.342200px;}
._4a{width:11.422200px;}
._c{width:13.224000px;}
._45{width:14.331000px;}
._4c{width:15.399600px;}
._48{width:16.460400px;}
._7f{width:17.766000px;}
._7d{width:18.929400px;}
._13{width:20.031000px;}
._6{width:21.696000px;}
._f{width:23.369400px;}
._4{width:24.576000px;}
._49{width:26.294400px;}
._78{width:27.446400px;}
._63{width:28.740600px;}
._77{width:29.760000px;}
._7c{width:31.597800px;}
._47{width:32.725800px;}
._46{width:33.733800px;}
._7b{width:35.526000px;}
._16{width:40.194000px;}
._15{width:41.250000px;}
._64{width:45.751200px;}
._14{width:51.744000px;}
._7e{width:53.114400px;}
._7a{width:63.168000px;}
._79{width:64.578000px;}
._53{width:70.980000px;}
._31{width:105.666600px;}
._2{width:153.107843px;}
._59{width:163.200000px;}
._5b{width:165.360000px;}
._57{width:166.800000px;}
._56{width:172.980000px;}
._54{width:181.020000px;}
._3{width:183.490826px;}
._5f{width:185.901600px;}
._4f{width:188.400000px;}
._4e{width:189.480000px;}
._50{width:190.849800px;}
._52{width:192.360000px;}
._3c{width:194.170200px;}
._66{width:196.412759px;}
._55{width:198.480000px;}
._5a{width:203.400000px;}
._3d{width:208.838400px;}
._5d{width:220.740000px;}
._5e{width:228.840000px;}
._62{width:245.749174px;}
._5c{width:256.440000px;}
._58{width:257.460000px;}
._2e{width:259.260000px;}
._51{width:260.760000px;}
._30{width:264.960000px;}
._60{width:265.980000px;}
._21{width:270.360000px;}
._1e{width:274.620000px;}
._23{width:279.900000px;}
._19{width:310.140000px;}
._3e{width:316.336800px;}
._41{width:348.518400px;}
._3b{width:392.798400px;}
._28{width:403.020000px;}
._72{width:411.900000px;}
._70{width:414.300000px;}
._69{width:417.600000px;}
._6b{width:422.820000px;}
._6e{width:427.140000px;}
._65{width:445.288200px;}
._76{width:449.400000px;}
._6a{width:454.080000px;}
._3f{width:455.137200px;}
._6d{width:458.880000px;}
._68{width:463.680000px;}
._6c{width:518.280000px;}
._61{width:523.987441px;}
._1c{width:527.400000px;}
._26{width:548.385000px;}
._6f{width:571.740000px;}
._37{width:592.418400px;}
._74{width:595.320000px;}
._2d{width:605.568124px;}
._2f{width:611.138400px;}
._36{width:642.000000px;}
._75{width:657.153600px;}
._24{width:675.720000px;}
._38{width:691.646524px;}
._40{width:696.158400px;}
._39{width:723.758400px;}
._73{width:764.280000px;}
._71{width:795.660000px;}
._25{width:839.340000px;}
._22{width:858.360000px;}
._3a{width:878.198400px;}
._27{width:910.800000px;}
._67{width:916.560000px;}
._2c{width:925.860000px;}
._1a{width:960.360000px;}
._20{width:1010.460000px;}
._34{width:1029.578400px;}
._1f{width:1032.780000px;}
._1d{width:1052.700000px;}
._44{width:1077.038400px;}
._2b{width:1095.300000px;}
._1b{width:1112.820000px;}
._2a{width:1126.200000px;}
._35{width:1136.340000px;}
._33{width:1140.458400px;}
._32{width:1146.300000px;}
._29{width:1168.920000px;}
._43{width:1204.740000px;}
._18{width:1649.100000px;}
.fc4{color:transparent;}
.fc2{color:rgb(54,108,190);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:62.872800px;}
.fs9{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y3e{bottom:56.876700px;}
.y3d{bottom:73.076700px;}
.y3{bottom:81.772500px;}
.y1ae{bottom:113.528400px;}
.y1e1{bottom:115.854900px;}
.y164{bottom:130.263600px;}
.y146{bottom:132.854100px;}
.y1ad{bottom:133.031400px;}
.y1e0{bottom:135.357900px;}
.y71{bottom:142.089900px;}
.y12a{bottom:143.992800px;}
.yd2{bottom:148.467000px;}
.y163{bottom:149.766600px;}
.y145{bottom:152.357100px;}
.y1ac{bottom:152.534400px;}
.y20d{bottom:154.563750px;}
.y1df{bottom:154.860900px;}
.y70{bottom:161.592900px;}
.y129{bottom:163.417800px;}
.y99{bottom:164.364900px;}
.y236{bottom:166.729050px;}
.y162{bottom:169.269600px;}
.y144{bottom:171.860100px;}
.y1ab{bottom:172.037400px;}
.y20c{bottom:174.066750px;}
.y1de{bottom:174.363900px;}
.y6f{bottom:181.095900px;}
.yd1{bottom:182.596650px;}
.y128{bottom:182.842800px;}
.yd0{bottom:182.956650px;}
.y98{bottom:183.867900px;}
.y235{bottom:185.479050px;}
.y161{bottom:188.772600px;}
.y143{bottom:191.363100px;}
.y1aa{bottom:191.540400px;}
.y20b{bottom:193.569750px;}
.y1dd{bottom:193.866900px;}
.y6e{bottom:200.598900px;}
.ycf{bottom:200.956650px;}
.y127{bottom:202.267800px;}
.y97{bottom:203.370900px;}
.y234{bottom:204.229050px;}
.y160{bottom:208.275600px;}
.y142{bottom:210.866100px;}
.y1a9{bottom:211.043400px;}
.y1dc{bottom:213.369900px;}
.yce{bottom:219.316650px;}
.y6d{bottom:220.101900px;}
.y126{bottom:221.692800px;}
.y264{bottom:222.589350px;}
.y96{bottom:222.873900px;}
.y233{bottom:222.979050px;}
.y15f{bottom:227.778600px;}
.y20a{bottom:230.084250px;}
.y141{bottom:230.369100px;}
.y1a8{bottom:230.546400px;}
.y27{bottom:231.215700px;}
.y1db{bottom:232.872900px;}
.ycd{bottom:237.676650px;}
.y6c{bottom:239.604900px;}
.y125{bottom:241.117800px;}
.y95{bottom:242.376900px;}
.y263{bottom:242.389350px;}
.y26{bottom:247.415700px;}
.y232{bottom:248.104050px;}
.y140{bottom:249.872100px;}
.y1a7{bottom:250.049400px;}
.y1da{bottom:252.375900px;}
.ycc{bottom:256.036650px;}
.y124{bottom:259.117800px;}
.y94{bottom:261.879900px;}
.y262{bottom:262.189350px;}
.y15e{bottom:264.293100px;}
.y209{bottom:266.598750px;}
.y231{bottom:266.854050px;}
.y13f{bottom:269.375100px;}
.y1a6{bottom:269.552400px;}
.y1d9{bottom:271.878900px;}
.ycb{bottom:274.396650px;}
.y6b{bottom:276.119400px;}
.y15d{bottom:283.796100px;}
.y230{bottom:285.604050px;}
.y208{bottom:286.101750px;}
.y13e{bottom:288.878100px;}
.y1d8{bottom:291.381900px;}
.y25{bottom:292.030650px;}
.yca{bottom:292.756650px;}
.y6a{bottom:295.622400px;}
.y123{bottom:297.038250px;}
.y93{bottom:298.394400px;}
.y15c{bottom:303.299100px;}
.y22f{bottom:304.354050px;}
.y1a5{bottom:306.066900px;}
.y261{bottom:308.199900px;}
.yc9{bottom:311.116650px;}
.y24{bottom:311.830650px;}
.y69{bottom:315.125400px;}
.y122{bottom:316.541250px;}
.y92{bottom:317.897400px;}
.y207{bottom:322.616250px;}
.y15b{bottom:322.802100px;}
.y13d{bottom:325.392600px;}
.y1a4{bottom:325.569900px;}
.y1d7{bottom:327.896400px;}
.y260{bottom:327.999900px;}
.yc8{bottom:329.476650px;}
.y22e{bottom:329.479050px;}
.y23{bottom:331.630650px;}
.y68{bottom:334.628400px;}
.y206{bottom:342.119250px;}
.y15a{bottom:342.305100px;}
.y1a3{bottom:345.072900px;}
.yf7{bottom:347.594250px;}
.yc7{bottom:347.836650px;}
.y22d{bottom:348.229050px;}
.y22{bottom:351.430650px;}
.y121{bottom:352.016250px;}
.y25f{bottom:353.124900px;}
.y67{bottom:354.131400px;}
.y91{bottom:354.411900px;}
.y205{bottom:361.622250px;}
.y159{bottom:361.808100px;}
.y1d6{bottom:364.410900px;}
.y1a2{bottom:364.575900px;}
.yc6{bottom:366.196650px;}
.y22c{bottom:366.979050px;}
.yf6{bottom:367.097250px;}
.y21{bottom:371.230650px;}
.y120{bottom:371.519250px;}
.y25e{bottom:371.874900px;}
.y66{bottom:373.634400px;}
.y204{bottom:381.125250px;}
.y158{bottom:381.311100px;}
.y1d5{bottom:383.913900px;}
.y1a1{bottom:384.078900px;}
.yc5{bottom:384.196650px;}
.yf5{bottom:386.600250px;}
.y25d{bottom:390.624900px;}
.y90{bottom:390.926400px;}
.y11f{bottom:391.022250px;}
.y22b{bottom:392.104050px;}
.y65{bottom:393.137400px;}
.y13c{bottom:398.405100px;}
.y203{bottom:400.628250px;}
.y157{bottom:400.814100px;}
.yc4{bottom:402.556650px;}
.y1d4{bottom:403.416900px;}
.y1a0{bottom:403.581900px;}
.y20{bottom:403.785150px;}
.yf4{bottom:406.103250px;}
.y8f{bottom:410.429400px;}
.y11e{bottom:410.525250px;}
.y22a{bottom:410.854050px;}
.y64{bottom:412.640400px;}
.y25c{bottom:415.749900px;}
.y13b{bottom:417.908100px;}
.y202{bottom:420.131250px;}
.y156{bottom:420.317100px;}
.yc3{bottom:420.916650px;}
.y1d3{bottom:422.919900px;}
.y19f{bottom:423.084900px;}
.y1f{bottom:423.585150px;}
.y229{bottom:429.604050px;}
.y11d{bottom:430.028250px;}
.y63{bottom:432.143400px;}
.y25b{bottom:434.499900px;}
.y13a{bottom:437.411100px;}
.y3c{bottom:437.536200px;}
.yc2{bottom:439.276650px;}
.y201{bottom:439.634250px;}
.y155{bottom:439.820100px;}
.y1d2{bottom:442.422900px;}
.y19e{bottom:442.587900px;}
.yf3{bottom:442.617750px;}
.y1e{bottom:443.385150px;}
.y8e{bottom:446.943900px;}
.y11c{bottom:449.531250px;}
.y62{bottom:451.646400px;}
.y25a{bottom:453.249900px;}
.y228{bottom:454.729050px;}
.y139{bottom:456.914100px;}
.yc1{bottom:457.636650px;}
.y3b{bottom:457.988700px;}
.y154{bottom:459.323100px;}
.y1d1{bottom:461.925900px;}
.y19d{bottom:462.090900px;}
.y1d{bottom:463.185150px;}
.y11b{bottom:469.034250px;}
.y259{bottom:471.999900px;}
.y227{bottom:473.479050px;}
.yc0{bottom:475.636650px;}
.y200{bottom:476.148750px;}
.y138{bottom:476.417100px;}
.y3a{bottom:478.441200px;}
.y153{bottom:478.826100px;}
.yf2{bottom:479.132250px;}
.y1d0{bottom:481.428900px;}
.y19c{bottom:481.593900px;}
.y1c{bottom:482.985150px;}
.y8d{bottom:483.458400px;}
.y61{bottom:488.160900px;}
.y11a{bottom:488.537250px;}
.y226{bottom:492.229050px;}
.ybf{bottom:493.996650px;}
.y1ff{bottom:495.651750px;}
.y137{bottom:495.920100px;}
.y258{bottom:497.124900px;}
.y152{bottom:498.329100px;}
.yf1{bottom:498.635250px;}
.y1cf{bottom:500.931900px;}
.y19b{bottom:501.096900px;}
.y1b{bottom:502.785150px;}
.y8c{bottom:502.961400px;}
.y60{bottom:507.663900px;}
.y119{bottom:508.040250px;}
.ybe{bottom:511.996650px;}
.ybd{bottom:512.356650px;}
.y1fe{bottom:515.154750px;}
.y136{bottom:515.423100px;}
.y257{bottom:515.874900px;}
.y225{bottom:517.354050px;}
.y151{bottom:517.832100px;}
.yf0{bottom:518.138250px;}
.y39{bottom:519.346200px;}
.y1ce{bottom:520.434900px;}
.y19a{bottom:520.599900px;}
.y8b{bottom:522.464400px;}
.y1a{bottom:522.585150px;}
.y5f{bottom:527.166900px;}
.y118{bottom:527.543250px;}
.ybc{bottom:530.356650px;}
.y256{bottom:534.624900px;}
.y135{bottom:534.926100px;}
.y224{bottom:536.104050px;}
.y150{bottom:537.335100px;}
.yef{bottom:537.641250px;}
.y38{bottom:539.798700px;}
.y1cd{bottom:539.937900px;}
.y19{bottom:542.385150px;}
.y5e{bottom:546.669900px;}
.y117{bottom:547.046250px;}
.ybb{bottom:548.716650px;}
.y1fd{bottom:551.669250px;}
.y255{bottom:553.374900px;}
.y134{bottom:554.429100px;}
.y223{bottom:554.854050px;}
.y199{bottom:557.114400px;}
.yee{bottom:557.144250px;}
.y8a{bottom:558.978900px;}
.y1cc{bottom:559.440900px;}
.y37{bottom:560.251200px;}
.y5d{bottom:566.172900px;}
.y116{bottom:566.549250px;}
.yba{bottom:567.076650px;}
.y1fc{bottom:571.172250px;}
.y222{bottom:573.604050px;}
.y14f{bottom:573.849600px;}
.y133{bottom:573.932100px;}
.y18{bottom:574.939650px;}
.y198{bottom:576.617400px;}
.yed{bottom:576.647250px;}
.y89{bottom:578.481900px;}
.y254{bottom:578.499900px;}
.y1cb{bottom:578.943900px;}
.y36{bottom:580.703700px;}
.yb9{bottom:585.436650px;}
.y5c{bottom:585.675900px;}
.y115{bottom:586.052250px;}
.y1fb{bottom:590.675250px;}
.y14e{bottom:593.352600px;}
.y132{bottom:593.435100px;}
.y17{bottom:594.739650px;}
.y197{bottom:596.120400px;}
.yec{bottom:596.150250px;}
.y253{bottom:597.249900px;}
.y88{bottom:597.984900px;}
.y221{bottom:598.729050px;}
.y35{bottom:601.156200px;}
.yb8{bottom:603.796650px;}
.y5b{bottom:605.178900px;}
.y114{bottom:605.555250px;}
.y14d{bottom:612.855600px;}
.y131{bottom:612.938100px;}
.y16{bottom:614.539650px;}
.y1ca{bottom:615.458400px;}
.y196{bottom:615.623400px;}
.yeb{bottom:615.653250px;}
.y252{bottom:615.999900px;}
.y220{bottom:617.479050px;}
.y34{bottom:621.608700px;}
.yb7{bottom:622.156650px;}
.y5a{bottom:624.681900px;}
.y113{bottom:625.058250px;}
.y14c{bottom:632.358600px;}
.y130{bottom:632.441100px;}
.y15{bottom:634.339650px;}
.y87{bottom:634.499400px;}
.y251{bottom:634.749900px;}
.y195{bottom:635.126400px;}
.yea{bottom:635.156250px;}
.y21f{bottom:636.229050px;}
.yb6{bottom:640.516650px;}
.y33{bottom:642.061200px;}
.y59{bottom:644.184900px;}
.y112{bottom:644.561250px;}
.y14b{bottom:651.861600px;}
.y12f{bottom:651.944100px;}
.y1c9{bottom:651.972900px;}
.y14{bottom:654.139650px;}
.y194{bottom:654.629400px;}
.ye9{bottom:654.659250px;}
.yb5{bottom:658.876650px;}
.y250{bottom:659.874900px;}
.y21e{bottom:661.354050px;}
.y1fa{bottom:663.687750px;}
.y58{bottom:663.687900px;}
.y111{bottom:664.064250px;}
.y86{bottom:671.013900px;}
.y14a{bottom:671.364600px;}
.y12e{bottom:671.447100px;}
.y1c8{bottom:671.475900px;}
.y193{bottom:674.132400px;}
.ye8{bottom:674.162250px;}
.yb4{bottom:677.236650px;}
.y24f{bottom:678.624900px;}
.y21d{bottom:680.104050px;}
.y32{bottom:682.966200px;}
.y1f9{bottom:683.190750px;}
.y13{bottom:686.694150px;}
.y85{bottom:690.516900px;}
.y149{bottom:690.867600px;}
.y12d{bottom:690.950100px;}
.y1c7{bottom:690.978900px;}
.y192{bottom:693.635400px;}
.yb3{bottom:695.596650px;}
.y24e{bottom:697.374900px;}
.y21c{bottom:698.854050px;}
.y57{bottom:700.202400px;}
.y110{bottom:700.578750px;}
.y1f8{bottom:702.693750px;}
.y31{bottom:703.418700px;}
.y12{bottom:706.494150px;}
.y84{bottom:710.019900px;}
.y148{bottom:710.370600px;}
.y12c{bottom:710.453100px;}
.y1c6{bottom:710.481900px;}
.ye7{bottom:710.676750px;}
.y191{bottom:713.138400px;}
.yb2{bottom:713.956650px;}
.y24d{bottom:716.124900px;}
.y21b{bottom:717.604050px;}
.y56{bottom:719.705400px;}
.y10f{bottom:720.081750px;}
.y1f7{bottom:722.196750px;}
.y30{bottom:723.871200px;}
.y11{bottom:726.294150px;}
.y83{bottom:729.522900px;}
.y147{bottom:729.873600px;}
.y12b{bottom:729.956100px;}
.y1c5{bottom:729.984900px;}
.ye6{bottom:730.179750px;}
.yb1{bottom:732.316650px;}
.y190{bottom:732.641400px;}
.y55{bottom:739.208400px;}
.y10e{bottom:739.584750px;}
.y24c{bottom:741.249900px;}
.y1f6{bottom:741.699750px;}
.y2f{bottom:744.323700px;}
.y21a{bottom:744.653250px;}
.y10{bottom:746.094150px;}
.y82{bottom:749.025900px;}
.y1c4{bottom:749.487900px;}
.ye5{bottom:749.682750px;}
.yb0{bottom:750.676650px;}
.y18f{bottom:752.144400px;}
.y17a{bottom:758.377800px;}
.y54{bottom:758.711400px;}
.y10d{bottom:759.087750px;}
.y24b{bottom:759.999900px;}
.y1f5{bottom:761.202750px;}
.y1c3{bottom:768.990900px;}
.yaf{bottom:769.036650px;}
.yae{bottom:769.396650px;}
.y18e{bottom:771.647400px;}
.y53{bottom:778.214400px;}
.y10c{bottom:778.590750px;}
.y24a{bottom:778.749900px;}
.y1f4{bottom:780.705750px;}
.y2e{bottom:785.228700px;}
.y81{bottom:785.540400px;}
.ye4{bottom:786.197250px;}
.yad{bottom:787.396650px;}
.y1c2{bottom:788.493900px;}
.y18d{bottom:791.150400px;}
.y249{bottom:797.499900px;}
.y52{bottom:797.717400px;}
.y179{bottom:797.745600px;}
.y10b{bottom:798.093750px;}
.y1f3{bottom:800.208750px;}
.y80{bottom:805.043400px;}
.y2d{bottom:805.681200px;}
.ye3{bottom:805.700250px;}
.yac{bottom:805.756650px;}
.yf{bottom:805.972800px;}
.y1c1{bottom:807.996900px;}
.y219{bottom:809.762250px;}
.y18c{bottom:810.653400px;}
.y51{bottom:817.220400px;}
.y10a{bottom:817.596750px;}
.y1f2{bottom:819.711750px;}
.y248{bottom:822.624900px;}
.yab{bottom:824.116650px;}
.y7f{bottom:824.546400px;}
.ye2{bottom:825.203250px;}
.y178{bottom:825.675600px;}
.y1c0{bottom:827.499900px;}
.y18b{bottom:830.156400px;}
.y218{bottom:834.512250px;}
.y50{bottom:836.723400px;}
.y109{bottom:837.099750px;}
.y247{bottom:841.374900px;}
.yaa{bottom:842.476650px;}
.y7e{bottom:844.049400px;}
.ye1{bottom:844.706250px;}
.y176{bottom:845.535600px;}
.y2c{bottom:846.586200px;}
.y1bf{bottom:847.002900px;}
.y18a{bottom:849.659400px;}
.y177{bottom:853.605600px;}
.y1f1{bottom:856.226250px;}
.y4f{bottom:856.226400px;}
.y108{bottom:856.602750px;}
.y246{bottom:860.124900px;}
.ya9{bottom:860.836650px;}
.y2b{bottom:862.786200px;}
.y175{bottom:863.535600px;}
.y7d{bottom:863.552400px;}
.ye0{bottom:864.209250px;}
.y1be{bottom:866.505900px;}
.y189{bottom:869.162400px;}
.y217{bottom:871.026750px;}
.ye{bottom:871.676250px;}
.y1f0{bottom:875.729250px;}
.y4e{bottom:875.729400px;}
.y107{bottom:876.105750px;}
.y2a{bottom:878.986200px;}
.ya8{bottom:879.196650px;}
.y174{bottom:881.535600px;}
.y7c{bottom:883.055400px;}
.ydf{bottom:883.712250px;}
.y245{bottom:885.249900px;}
.y1bd{bottom:886.008900px;}
.yd{bottom:886.076250px;}
.y188{bottom:888.665400px;}
.y29{bottom:895.186200px;}
.y1ef{bottom:895.232250px;}
.y4d{bottom:895.232400px;}
.y106{bottom:895.608750px;}
.ya7{bottom:897.556650px;}
.yc{bottom:900.476250px;}
.y7b{bottom:902.558400px;}
.yde{bottom:903.215250px;}
.y244{bottom:903.999900px;}
.y1bc{bottom:905.511900px;}
.y216{bottom:907.541250px;}
.y187{bottom:908.168400px;}
.y173{bottom:909.465600px;}
.y1ee{bottom:914.735250px;}
.y4c{bottom:914.735400px;}
.y105{bottom:915.111750px;}
.y28{bottom:915.638700px;}
.ya6{bottom:915.916650px;}
.ydd{bottom:922.718250px;}
.y243{bottom:922.749900px;}
.yb{bottom:923.804100px;}
.y1bb{bottom:925.014900px;}
.y186{bottom:927.671400px;}
.y171{bottom:929.325600px;}
.y1ed{bottom:934.238250px;}
.y4b{bottom:934.238400px;}
.ya5{bottom:934.276650px;}
.y104{bottom:934.614750px;}
.y172{bottom:937.395600px;}
.y7a{bottom:939.072900px;}
.y215{bottom:944.055750px;}
.y1ba{bottom:944.517900px;}
.y170{bottom:947.325600px;}
.y242{bottom:947.874900px;}
.ya4{bottom:952.636650px;}
.y1ec{bottom:953.741250px;}
.y4a{bottom:953.741400px;}
.y103{bottom:954.117750px;}
.ydc{bottom:959.232750px;}
.y9{bottom:960.829800px;}
.y1b9{bottom:964.020900px;}
.y185{bottom:964.185900px;}
.y16f{bottom:965.325600px;}
.y241{bottom:966.624900px;}
.ya3{bottom:970.996650px;}
.y1eb{bottom:973.244250px;}
.y49{bottom:973.244400px;}
.y102{bottom:973.620750px;}
.y79{bottom:975.587400px;}
.y214{bottom:980.570250px;}
.y1b8{bottom:983.523900px;}
.y184{bottom:983.688900px;}
.y240{bottom:985.374900px;}
.ya2{bottom:989.356650px;}
.y48{bottom:992.747400px;}
.y101{bottom:993.123750px;}
.y8{bottom:993.229800px;}
.y16e{bottom:993.255600px;}
.y16c{bottom:995.115600px;}
.ydb{bottom:995.747250px;}
.y1b7{bottom:1003.026900px;}
.y183{bottom:1003.191900px;}
.y23f{bottom:1004.124900px;}
.ya1{bottom:1007.716650px;}
.y1ea{bottom:1009.758750px;}
.y47{bottom:1012.250400px;}
.y100{bottom:1012.626750px;}
.y16b{bottom:1013.115600px;}
.yda{bottom:1015.250250px;}
.y213{bottom:1017.084750px;}
.y16d{bottom:1021.185600px;}
.y1b6{bottom:1022.529900px;}
.y182{bottom:1022.694900px;}
.y7{bottom:1025.629800px;}
.ya0{bottom:1026.076650px;}
.y23e{bottom:1029.249900px;}
.y1e9{bottom:1029.261750px;}
.y16a{bottom:1031.115600px;}
.y46{bottom:1031.753400px;}
.yff{bottom:1032.129750px;}
.yd9{bottom:1034.753250px;}
.y1b5{bottom:1042.032900px;}
.y181{bottom:1042.197900px;}
.y9f{bottom:1044.436650px;}
.y23d{bottom:1047.999900px;}
.y78{bottom:1048.599900px;}
.y1e8{bottom:1048.764750px;}
.y169{bottom:1049.115600px;}
.y45{bottom:1051.256400px;}
.yfe{bottom:1051.632750px;}
.y6{bottom:1053.546450px;}
.y212{bottom:1053.599250px;}
.yd8{bottom:1054.256250px;}
.y1b4{bottom:1061.535900px;}
.y180{bottom:1061.700900px;}
.y9e{bottom:1062.796650px;}
.y23c{bottom:1066.749900px;}
.y77{bottom:1068.102900px;}
.y1e7{bottom:1068.267750px;}
.y5{bottom:1069.746450px;}
.y44{bottom:1070.759400px;}
.yfd{bottom:1071.135750px;}
.yd7{bottom:1073.759250px;}
.y168{bottom:1077.045600px;}
.y1b3{bottom:1081.038900px;}
.y9d{bottom:1081.156650px;}
.y17f{bottom:1081.203900px;}
.y23b{bottom:1085.499900px;}
.y76{bottom:1087.605900px;}
.y1e6{bottom:1087.770750px;}
.y211{bottom:1090.113750px;}
.y43{bottom:1090.262400px;}
.yfc{bottom:1090.638750px;}
.yd6{bottom:1093.262250px;}
.y1b2{bottom:1100.541900px;}
.y17e{bottom:1100.706900px;}
.y9c{bottom:1101.706650px;}
.y167{bottom:1104.975600px;}
.y75{bottom:1107.108900px;}
.y1e5{bottom:1107.273750px;}
.y42{bottom:1109.765400px;}
.yfb{bottom:1110.141750px;}
.y23a{bottom:1110.624900px;}
.yd5{bottom:1112.765250px;}
.y1b1{bottom:1120.044900px;}
.y17d{bottom:1120.209900px;}
.y166{bottom:1122.975600px;}
.ya{bottom:1123.179750px;}
.y74{bottom:1126.611900px;}
.y210{bottom:1126.628250px;}
.y1e4{bottom:1126.776750px;}
.y41{bottom:1129.268400px;}
.y239{bottom:1129.374900px;}
.yfa{bottom:1129.644750px;}
.yd4{bottom:1132.268250px;}
.y1b0{bottom:1139.547900px;}
.y17c{bottom:1139.712900px;}
.y9b{bottom:1140.263400px;}
.y73{bottom:1146.114900px;}
.y20f{bottom:1146.131250px;}
.y1e3{bottom:1146.279750px;}
.y238{bottom:1148.124900px;}
.yf9{bottom:1149.147750px;}
.y1af{bottom:1159.050900px;}
.y17b{bottom:1159.215900px;}
.y9a{bottom:1159.761900px;}
.y165{bottom:1165.605600px;}
.y72{bottom:1165.617900px;}
.y20e{bottom:1165.634250px;}
.y1e2{bottom:1165.782750px;}
.y40{bottom:1165.782900px;}
.y237{bottom:1166.874900px;}
.yf8{bottom:1168.650750px;}
.yd3{bottom:1168.782750px;}
.y4{bottom:1172.255700px;}
.y2{bottom:1191.347400px;}
.y3f{bottom:1197.407400px;}
.y1{bottom:1207.755900px;}
.ha{height:36.093750px;}
.h6{height:39.972656px;}
.hf{height:40.605469px;}
.h10{height:44.138672px;}
.h3{height:44.414062px;}
.h4{height:45.117188px;}
.he{height:46.248047px;}
.h5{height:47.277398px;}
.h15{height:49.042969px;}
.h12{height:49.628906px;}
.h8{height:51.257812px;}
.h16{height:51.386719px;}
.h9{height:51.445312px;}
.h14{height:51.495117px;}
.hc{height:53.947266px;}
.h13{height:53.956055px;}
.h11{height:54.140625px;}
.hd{height:56.525391px;}
.hb{height:72.023438px;}
.h7{height:81.210938px;}
.h2{height:90.234375px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:6.094800px;}
.xe{left:21.349800px;}
.x15{left:23.172300px;}
.xf{left:27.721800px;}
.xd{left:32.635800px;}
.x13{left:35.862300px;}
.x6{left:37.408200px;}
.x11{left:44.488800px;}
.x14{left:48.579300px;}
.xc{left:57.178800px;}
.x5{left:63.044700px;}
.x21{left:64.523550px;}
.x16{left:66.669300px;}
.x17{left:72.283350px;}
.x10{left:88.647300px;}
.x2f{left:90.779550px;}
.x1b{left:142.219500px;}
.x2b{left:166.449150px;}
.x2{left:208.546950px;}
.x7{left:211.181100px;}
.x9{left:212.774700px;}
.x2e{left:215.364150px;}
.x22{left:225.383700px;}
.xb{left:232.786800px;}
.xa{left:240.546600px;}
.x23{left:242.483700px;}
.x4{left:308.436300px;}
.x24{left:329.003700px;}
.x25{left:352.133700px;}
.x1c{left:358.894500px;}
.x1{left:408.040350px;}
.x26{left:448.943700px;}
.x2c{left:451.599150px;}
.x18{left:461.545050px;}
.x27{left:473.183700px;}
.x19{left:488.539050px;}
.x2d{left:526.794150px;}
.x28{left:550.298700px;}
.x29{left:573.443700px;}
.x8{left:659.865300px;}
.x2a{left:662.573700px;}
.x1f{left:678.949500px;}
.x1d{left:680.284500px;}
.x1e{left:681.754500px;}
.x3{left:791.578500px;}
.x1a{left:793.314300px;}
.x20{left:795.050100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-7.146667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:12.800000pt;}
.ls0{letter-spacing:15.264000pt;}
.ws0{word-spacing:-16.192000pt;}
.ws13{word-spacing:-16.074667pt;}
.ws60{word-spacing:-14.720000pt;}
.ws9a{word-spacing:-14.613333pt;}
.ws1{word-spacing:-13.248000pt;}
.ws2{word-spacing:-13.152000pt;}
.ws99{word-spacing:-12.800000pt;}
.ws8c{word-spacing:-6.922667pt;}
.wscb{word-spacing:-5.690667pt;}
.wsb6{word-spacing:-5.397333pt;}
.ws19{word-spacing:-4.810667pt;}
.ws3b{word-spacing:-4.458667pt;}
.wsf9{word-spacing:-4.341333pt;}
.wsef{word-spacing:-4.106667pt;}
.ws73{word-spacing:-4.048000pt;}
.wscc{word-spacing:-3.461333pt;}
.ws76{word-spacing:-3.344000pt;}
.wsae{word-spacing:-3.285333pt;}
.wsc3{word-spacing:-3.168000pt;}
.ws12{word-spacing:-3.072000pt;}
.ws4{word-spacing:-3.050667pt;}
.wsf8{word-spacing:-2.992000pt;}
.wsff{word-spacing:-2.933333pt;}
.ws97{word-spacing:-2.757333pt;}
.ws1e{word-spacing:-2.698667pt;}
.ws27{word-spacing:-2.464000pt;}
.ws26{word-spacing:-2.405333pt;}
.wsd1{word-spacing:-2.170667pt;}
.wsa2{word-spacing:-2.112000pt;}
.ws8a{word-spacing:-2.053333pt;}
.ws10{word-spacing:-1.818667pt;}
.wse6{word-spacing:-1.760000pt;}
.wsa1{word-spacing:-1.408000pt;}
.wsc2{word-spacing:-1.349333pt;}
.ws11{word-spacing:-1.290667pt;}
.ws7{word-spacing:-1.173333pt;}
.wsa{word-spacing:-1.056000pt;}
.ws103{word-spacing:-1.013333pt;}
.wscd{word-spacing:-0.938667pt;}
.ws10b{word-spacing:-0.906667pt;}
.wsa6{word-spacing:-0.880000pt;}
.ws72{word-spacing:-0.528000pt;}
.ws21{word-spacing:-0.469333pt;}
.ws8b{word-spacing:-0.410667pt;}
.wsc5{word-spacing:-0.352000pt;}
.wsed{word-spacing:-0.234667pt;}
.ws24{word-spacing:-0.176000pt;}
.ws3{word-spacing:0.000000pt;}
.wsde{word-spacing:0.058667pt;}
.ws49{word-spacing:0.352000pt;}
.wsad{word-spacing:0.469333pt;}
.wsf4{word-spacing:0.586667pt;}
.ws4b{word-spacing:0.704000pt;}
.wsbe{word-spacing:0.762667pt;}
.ws37{word-spacing:0.821333pt;}
.ws100{word-spacing:1.066667pt;}
.ws35{word-spacing:1.290667pt;}
.wsd9{word-spacing:1.525333pt;}
.ws22{word-spacing:1.584000pt;}
.ws86{word-spacing:1.642667pt;}
.ws6c{word-spacing:1.760000pt;}
.ws2c{word-spacing:1.818667pt;}
.ws7d{word-spacing:1.877333pt;}
.ws2a{word-spacing:1.994667pt;}
.wsab{word-spacing:2.053333pt;}
.ws23{word-spacing:2.112000pt;}
.ws7b{word-spacing:2.170667pt;}
.ws92{word-spacing:2.229333pt;}
.ws18{word-spacing:2.464000pt;}
.ws5f{word-spacing:2.520000pt;}
.ws90{word-spacing:2.581333pt;}
.wsf5{word-spacing:2.640000pt;}
.wsfc{word-spacing:2.773333pt;}
.wsbb{word-spacing:2.816000pt;}
.ws6d{word-spacing:2.933333pt;}
.wsd2{word-spacing:3.109333pt;}
.ws95{word-spacing:3.285333pt;}
.wsa4{word-spacing:3.461333pt;}
.ws7f{word-spacing:3.696000pt;}
.ws38{word-spacing:3.754667pt;}
.ws33{word-spacing:4.048000pt;}
.ws8{word-spacing:4.165333pt;}
.wsd5{word-spacing:4.400000pt;}
.ws31{word-spacing:4.517333pt;}
.ws17{word-spacing:4.576000pt;}
.ws84{word-spacing:4.634667pt;}
.ws25{word-spacing:4.693333pt;}
.wsb8{word-spacing:4.752000pt;}
.ws10a{word-spacing:4.853333pt;}
.ws7e{word-spacing:4.928000pt;}
.ws9d{word-spacing:5.045333pt;}
.wse5{word-spacing:5.221333pt;}
.wse8{word-spacing:5.338667pt;}
.ws15{word-spacing:5.397333pt;}
.ws9f{word-spacing:5.456000pt;}
.wsdf{word-spacing:5.514667pt;}
.wsd8{word-spacing:5.808000pt;}
.ws108{word-spacing:5.813333pt;}
.ws63{word-spacing:5.925333pt;}
.ws104{word-spacing:6.026667pt;}
.wsbc{word-spacing:6.042667pt;}
.ws1d{word-spacing:6.218667pt;}
.ws34{word-spacing:6.336000pt;}
.ws96{word-spacing:6.394667pt;}
.ws82{word-spacing:6.453333pt;}
.ws98{word-spacing:6.570667pt;}
.wscf{word-spacing:6.629333pt;}
.wsa0{word-spacing:6.746667pt;}
.wse1{word-spacing:6.805333pt;}
.ws6{word-spacing:7.098667pt;}
.wsa7{word-spacing:7.274667pt;}
.wsb7{word-spacing:7.333333pt;}
.ws3e{word-spacing:7.509333pt;}
.wsf{word-spacing:7.626667pt;}
.ws45{word-spacing:7.744000pt;}
.wsc6{word-spacing:8.037333pt;}
.wsec{word-spacing:8.096000pt;}
.ws9{word-spacing:8.154667pt;}
.ws79{word-spacing:8.330667pt;}
.wsdb{word-spacing:8.389333pt;}
.ws83{word-spacing:8.448000pt;}
.ws67{word-spacing:8.506667pt;}
.ws39{word-spacing:8.624000pt;}
.wse{word-spacing:8.858667pt;}
.wsd7{word-spacing:9.034667pt;}
.ws6b{word-spacing:9.152000pt;}
.wse2{word-spacing:9.210667pt;}
.ws71{word-spacing:9.269333pt;}
.ws20{word-spacing:9.386667pt;}
.ws65{word-spacing:9.562667pt;}
.wsca{word-spacing:9.621333pt;}
.ws32{word-spacing:9.738667pt;}
.wsc7{word-spacing:9.797333pt;}
.wsc1{word-spacing:9.856000pt;}
.ws89{word-spacing:9.914667pt;}
.ws91{word-spacing:10.090667pt;}
.wsb9{word-spacing:10.149333pt;}
.wsc{word-spacing:10.266667pt;}
.ws74{word-spacing:10.325333pt;}
.ws68{word-spacing:10.618667pt;}
.ws3d{word-spacing:10.853333pt;}
.wsb{word-spacing:11.029333pt;}
.wsa3{word-spacing:11.381333pt;}
.wse9{word-spacing:11.440000pt;}
.wse0{word-spacing:11.557333pt;}
.ws77{word-spacing:11.616000pt;}
.wsd3{word-spacing:11.850667pt;}
.ws1f{word-spacing:11.909333pt;}
.ws66{word-spacing:11.968000pt;}
.wsa8{word-spacing:12.026667pt;}
.ws5{word-spacing:12.437333pt;}
.ws29{word-spacing:12.554667pt;}
.ws85{word-spacing:12.613333pt;}
.ws2b{word-spacing:12.730667pt;}
.wsfe{word-spacing:12.960000pt;}
.ws2d{word-spacing:13.024000pt;}
.ws8f{word-spacing:13.082667pt;}
.wse7{word-spacing:13.317333pt;}
.ws14{word-spacing:13.434667pt;}
.wsb0{word-spacing:13.493333pt;}
.ws36{word-spacing:13.669333pt;}
.wsdc{word-spacing:13.786667pt;}
.ws28{word-spacing:13.904000pt;}
.wsd{word-spacing:13.962667pt;}
.ws94{word-spacing:14.197333pt;}
.wsf6{word-spacing:14.314667pt;}
.ws8e{word-spacing:14.549333pt;}
.wsaf{word-spacing:14.725333pt;}
.ws1c{word-spacing:15.077333pt;}
.ws30{word-spacing:15.253333pt;}
.ws87{word-spacing:15.488000pt;}
.ws1a{word-spacing:15.605333pt;}
.ws101{word-spacing:15.680000pt;}
.ws42{word-spacing:15.722667pt;}
.ws7c{word-spacing:15.781333pt;}
.wsf7{word-spacing:15.840000pt;}
.wsee{word-spacing:15.898667pt;}
.ws78{word-spacing:16.074667pt;}
.wsc9{word-spacing:16.133333pt;}
.ws6a{word-spacing:16.426667pt;}
.ws64{word-spacing:16.485333pt;}
.wsb3{word-spacing:16.661333pt;}
.wsd6{word-spacing:16.720000pt;}
.wsdd{word-spacing:16.778667pt;}
.ws105{word-spacing:16.800000pt;}
.ws2f{word-spacing:16.954667pt;}
.ws6e{word-spacing:17.013333pt;}
.ws41{word-spacing:17.365333pt;}
.wsba{word-spacing:17.717333pt;}
.ws102{word-spacing:17.866667pt;}
.wsc8{word-spacing:18.186667pt;}
.wsc4{word-spacing:18.245333pt;}
.ws69{word-spacing:18.362667pt;}
.ws75{word-spacing:18.480000pt;}
.ws16{word-spacing:18.597333pt;}
.ws1b{word-spacing:18.714667pt;}
.wsbf{word-spacing:19.184000pt;}
.ws9e{word-spacing:19.477333pt;}
.wsa9{word-spacing:19.536000pt;}
.wsac{word-spacing:19.888000pt;}
.ws80{word-spacing:20.181333pt;}
.wsd4{word-spacing:20.474667pt;}
.ws88{word-spacing:20.650667pt;}
.wsa5{word-spacing:20.885333pt;}
.ws48{word-spacing:20.944000pt;}
.ws2e{word-spacing:21.648000pt;}
.ws3a{word-spacing:22.058667pt;}
.ws8d{word-spacing:22.117333pt;}
.ws4a{word-spacing:22.176000pt;}
.ws107{word-spacing:22.346667pt;}
.wsc0{word-spacing:22.352000pt;}
.ws7a{word-spacing:22.997333pt;}
.wsb5{word-spacing:23.173333pt;}
.wsd0{word-spacing:23.525333pt;}
.ws47{word-spacing:23.584000pt;}
.wse3{word-spacing:23.701333pt;}
.wsfb{word-spacing:23.786667pt;}
.ws43{word-spacing:23.877333pt;}
.wsce{word-spacing:23.994667pt;}
.ws106{word-spacing:24.586667pt;}
.ws44{word-spacing:24.933333pt;}
.wsfa{word-spacing:25.440000pt;}
.ws81{word-spacing:25.989333pt;}
.ws109{word-spacing:26.240000pt;}
.ws93{word-spacing:26.458667pt;}
.wsf2{word-spacing:27.045333pt;}
.wsf1{word-spacing:27.221333pt;}
.wsbd{word-spacing:27.925333pt;}
.ws46{word-spacing:28.101333pt;}
.ws3f{word-spacing:28.394667pt;}
.ws70{word-spacing:29.626667pt;}
.wsda{word-spacing:30.624000pt;}
.ws3c{word-spacing:30.800000pt;}
.ws40{word-spacing:34.320000pt;}
.ws9c{word-spacing:35.376000pt;}
.ws6f{word-spacing:39.130667pt;}
.wsaa{word-spacing:39.189333pt;}
.wse4{word-spacing:39.893333pt;}
.wsea{word-spacing:40.362667pt;}
.wsfd{word-spacing:44.106667pt;}
.wsf0{word-spacing:45.877333pt;}
.wseb{word-spacing:45.994667pt;}
.wsf3{word-spacing:46.229333pt;}
.wsb4{word-spacing:49.280000pt;}
.wsb1{word-spacing:56.085333pt;}
.wsb2{word-spacing:59.429333pt;}
.ws62{word-spacing:124.800000pt;}
.ws61{word-spacing:154.288000pt;}
.ws5a{word-spacing:215.840000pt;}
.ws4e{word-spacing:216.213333pt;}
.ws5e{word-spacing:220.480000pt;}
.ws57{word-spacing:224.693333pt;}
.ws58{word-spacing:225.280000pt;}
.ws51{word-spacing:225.706667pt;}
.ws5c{word-spacing:229.493333pt;}
.ws4c{word-spacing:229.973333pt;}
.ws55{word-spacing:234.186667pt;}
.ws50{word-spacing:243.306667pt;}
.ws52{word-spacing:243.680000pt;}
.ws53{word-spacing:247.946667pt;}
.ws56{word-spacing:253.173333pt;}
.ws9b{word-spacing:714.400000pt;}
.ws54{word-spacing:856.746667pt;}
.ws59{word-spacing:1004.000000pt;}
.ws4f{word-spacing:1008.266667pt;}
.ws4d{word-spacing:1015.360000pt;}
.ws5b{word-spacing:1078.085333pt;}
.ws5d{word-spacing:1078.938667pt;}
._e{margin-left:-58.368000pt;}
._4d{margin-left:-13.328000pt;}
._4b{margin-left:-9.439467pt;}
._a{margin-left:-8.006615pt;}
._10{margin-left:-6.905067pt;}
._b{margin-left:-5.526400pt;}
._8{margin-left:-4.185067pt;}
._0{margin-left:-3.098667pt;}
._7{margin-left:-2.133333pt;}
._5{margin-left:-1.207467pt;}
._1{width:1.410881pt;}
._d{width:2.439675pt;}
._9{width:3.642667pt;}
._17{width:5.403200pt;}
._42{width:7.141333pt;}
._12{width:8.252267pt;}
._11{width:9.193067pt;}
._4a{width:10.153067pt;}
._c{width:11.754667pt;}
._45{width:12.738667pt;}
._4c{width:13.688533pt;}
._48{width:14.631467pt;}
._7f{width:15.792000pt;}
._7d{width:16.826133pt;}
._13{width:17.805333pt;}
._6{width:19.285333pt;}
._f{width:20.772800pt;}
._4{width:21.845333pt;}
._49{width:23.372800pt;}
._78{width:24.396800pt;}
._63{width:25.547200pt;}
._77{width:26.453333pt;}
._7c{width:28.086933pt;}
._47{width:29.089600pt;}
._46{width:29.985600pt;}
._7b{width:31.578667pt;}
._16{width:35.728000pt;}
._15{width:36.666667pt;}
._64{width:40.667733pt;}
._14{width:45.994667pt;}
._7e{width:47.212800pt;}
._7a{width:56.149333pt;}
._79{width:57.402667pt;}
._53{width:63.093333pt;}
._31{width:93.925867pt;}
._2{width:136.095860pt;}
._59{width:145.066667pt;}
._5b{width:146.986667pt;}
._57{width:148.266667pt;}
._56{width:153.760000pt;}
._54{width:160.906667pt;}
._3{width:163.102957pt;}
._5f{width:165.245867pt;}
._4f{width:167.466667pt;}
._4e{width:168.426667pt;}
._50{width:169.644267pt;}
._52{width:170.986667pt;}
._3c{width:172.595733pt;}
._66{width:174.589119pt;}
._55{width:176.426667pt;}
._5a{width:180.800000pt;}
._3d{width:185.634133pt;}
._5d{width:196.213333pt;}
._5e{width:203.413333pt;}
._62{width:218.443710pt;}
._5c{width:227.946667pt;}
._58{width:228.853333pt;}
._2e{width:230.453333pt;}
._51{width:231.786667pt;}
._30{width:235.520000pt;}
._60{width:236.426667pt;}
._21{width:240.320000pt;}
._1e{width:244.106667pt;}
._23{width:248.800000pt;}
._19{width:275.680000pt;}
._3e{width:281.188267pt;}
._41{width:309.794133pt;}
._3b{width:349.154133pt;}
._28{width:358.240000pt;}
._72{width:366.133333pt;}
._70{width:368.266667pt;}
._69{width:371.200000pt;}
._6b{width:375.840000pt;}
._6e{width:379.680000pt;}
._65{width:395.811733pt;}
._76{width:399.466667pt;}
._6a{width:403.626667pt;}
._3f{width:404.566400pt;}
._6d{width:407.893333pt;}
._68{width:412.160000pt;}
._6c{width:460.693333pt;}
._61{width:465.766615pt;}
._1c{width:468.800000pt;}
._26{width:487.453333pt;}
._6f{width:508.213333pt;}
._37{width:526.594133pt;}
._74{width:529.173333pt;}
._2d{width:538.282777pt;}
._2f{width:543.234133pt;}
._36{width:570.666667pt;}
._75{width:584.136533pt;}
._24{width:600.640000pt;}
._38{width:614.796911pt;}
._40{width:618.807467pt;}
._39{width:643.340800pt;}
._73{width:679.360000pt;}
._71{width:707.253333pt;}
._25{width:746.080000pt;}
._22{width:762.986667pt;}
._3a{width:780.620800pt;}
._27{width:809.600000pt;}
._67{width:814.720000pt;}
._2c{width:822.986667pt;}
._1a{width:853.653333pt;}
._20{width:898.186667pt;}
._34{width:915.180800pt;}
._1f{width:918.026667pt;}
._1d{width:935.733333pt;}
._44{width:957.367467pt;}
._2b{width:973.600000pt;}
._1b{width:989.173333pt;}
._2a{width:1001.066667pt;}
._35{width:1010.080000pt;}
._33{width:1013.740800pt;}
._32{width:1018.933333pt;}
._29{width:1039.040000pt;}
._43{width:1070.880000pt;}
._18{width:1465.866667pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:55.886933pt;}
.fs9{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:50.557067pt;}
.y3d{bottom:64.957067pt;}
.y3{bottom:72.686667pt;}
.y1ae{bottom:100.914133pt;}
.y1e1{bottom:102.982133pt;}
.y164{bottom:115.789867pt;}
.y146{bottom:118.092533pt;}
.y1ad{bottom:118.250133pt;}
.y1e0{bottom:120.318133pt;}
.y71{bottom:126.302133pt;}
.y12a{bottom:127.993600pt;}
.yd2{bottom:131.970667pt;}
.y163{bottom:133.125867pt;}
.y145{bottom:135.428533pt;}
.y1ac{bottom:135.586133pt;}
.y20d{bottom:137.390000pt;}
.y1df{bottom:137.654133pt;}
.y70{bottom:143.638133pt;}
.y129{bottom:145.260267pt;}
.y99{bottom:146.102133pt;}
.y236{bottom:148.203600pt;}
.y162{bottom:150.461867pt;}
.y144{bottom:152.764533pt;}
.y1ab{bottom:152.922133pt;}
.y20c{bottom:154.726000pt;}
.y1de{bottom:154.990133pt;}
.y6f{bottom:160.974133pt;}
.yd1{bottom:162.308133pt;}
.y128{bottom:162.526933pt;}
.yd0{bottom:162.628133pt;}
.y98{bottom:163.438133pt;}
.y235{bottom:164.870267pt;}
.y161{bottom:167.797867pt;}
.y143{bottom:170.100533pt;}
.y1aa{bottom:170.258133pt;}
.y20b{bottom:172.062000pt;}
.y1dd{bottom:172.326133pt;}
.y6e{bottom:178.310133pt;}
.ycf{bottom:178.628133pt;}
.y127{bottom:179.793600pt;}
.y97{bottom:180.774133pt;}
.y234{bottom:181.536933pt;}
.y160{bottom:185.133867pt;}
.y142{bottom:187.436533pt;}
.y1a9{bottom:187.594133pt;}
.y1dc{bottom:189.662133pt;}
.yce{bottom:194.948133pt;}
.y6d{bottom:195.646133pt;}
.y126{bottom:197.060267pt;}
.y264{bottom:197.857200pt;}
.y96{bottom:198.110133pt;}
.y233{bottom:198.203600pt;}
.y15f{bottom:202.469867pt;}
.y20a{bottom:204.519333pt;}
.y141{bottom:204.772533pt;}
.y1a8{bottom:204.930133pt;}
.y27{bottom:205.525067pt;}
.y1db{bottom:206.998133pt;}
.ycd{bottom:211.268133pt;}
.y6c{bottom:212.982133pt;}
.y125{bottom:214.326933pt;}
.y95{bottom:215.446133pt;}
.y263{bottom:215.457200pt;}
.y26{bottom:219.925067pt;}
.y232{bottom:220.536933pt;}
.y140{bottom:222.108533pt;}
.y1a7{bottom:222.266133pt;}
.y1da{bottom:224.334133pt;}
.ycc{bottom:227.588133pt;}
.y124{bottom:230.326933pt;}
.y94{bottom:232.782133pt;}
.y262{bottom:233.057200pt;}
.y15e{bottom:234.927200pt;}
.y209{bottom:236.976667pt;}
.y231{bottom:237.203600pt;}
.y13f{bottom:239.444533pt;}
.y1a6{bottom:239.602133pt;}
.y1d9{bottom:241.670133pt;}
.ycb{bottom:243.908133pt;}
.y6b{bottom:245.439467pt;}
.y15d{bottom:252.263200pt;}
.y230{bottom:253.870267pt;}
.y208{bottom:254.312667pt;}
.y13e{bottom:256.780533pt;}
.y1d8{bottom:259.006133pt;}
.y25{bottom:259.582800pt;}
.yca{bottom:260.228133pt;}
.y6a{bottom:262.775467pt;}
.y123{bottom:264.034000pt;}
.y93{bottom:265.239467pt;}
.y15c{bottom:269.599200pt;}
.y22f{bottom:270.536933pt;}
.y1a5{bottom:272.059467pt;}
.y261{bottom:273.955467pt;}
.yc9{bottom:276.548133pt;}
.y24{bottom:277.182800pt;}
.y69{bottom:280.111467pt;}
.y122{bottom:281.370000pt;}
.y92{bottom:282.575467pt;}
.y207{bottom:286.770000pt;}
.y15b{bottom:286.935200pt;}
.y13d{bottom:289.237867pt;}
.y1a4{bottom:289.395467pt;}
.y1d7{bottom:291.463467pt;}
.y260{bottom:291.555467pt;}
.yc8{bottom:292.868133pt;}
.y22e{bottom:292.870267pt;}
.y23{bottom:294.782800pt;}
.y68{bottom:297.447467pt;}
.y206{bottom:304.106000pt;}
.y15a{bottom:304.271200pt;}
.y1a3{bottom:306.731467pt;}
.yf7{bottom:308.972667pt;}
.yc7{bottom:309.188133pt;}
.y22d{bottom:309.536933pt;}
.y22{bottom:312.382800pt;}
.y121{bottom:312.903333pt;}
.y25f{bottom:313.888800pt;}
.y67{bottom:314.783467pt;}
.y91{bottom:315.032800pt;}
.y205{bottom:321.442000pt;}
.y159{bottom:321.607200pt;}
.y1d6{bottom:323.920800pt;}
.y1a2{bottom:324.067467pt;}
.yc6{bottom:325.508133pt;}
.y22c{bottom:326.203600pt;}
.yf6{bottom:326.308667pt;}
.y21{bottom:329.982800pt;}
.y120{bottom:330.239333pt;}
.y25e{bottom:330.555467pt;}
.y66{bottom:332.119467pt;}
.y204{bottom:338.778000pt;}
.y158{bottom:338.943200pt;}
.y1d5{bottom:341.256800pt;}
.y1a1{bottom:341.403467pt;}
.yc5{bottom:341.508133pt;}
.yf5{bottom:343.644667pt;}
.y25d{bottom:347.222133pt;}
.y90{bottom:347.490133pt;}
.y11f{bottom:347.575333pt;}
.y22b{bottom:348.536933pt;}
.y65{bottom:349.455467pt;}
.y13c{bottom:354.137867pt;}
.y203{bottom:356.114000pt;}
.y157{bottom:356.279200pt;}
.yc4{bottom:357.828133pt;}
.y1d4{bottom:358.592800pt;}
.y1a0{bottom:358.739467pt;}
.y20{bottom:358.920133pt;}
.yf4{bottom:360.980667pt;}
.y8f{bottom:364.826133pt;}
.y11e{bottom:364.911333pt;}
.y22a{bottom:365.203600pt;}
.y64{bottom:366.791467pt;}
.y25c{bottom:369.555467pt;}
.y13b{bottom:371.473867pt;}
.y202{bottom:373.450000pt;}
.y156{bottom:373.615200pt;}
.yc3{bottom:374.148133pt;}
.y1d3{bottom:375.928800pt;}
.y19f{bottom:376.075467pt;}
.y1f{bottom:376.520133pt;}
.y229{bottom:381.870267pt;}
.y11d{bottom:382.247333pt;}
.y63{bottom:384.127467pt;}
.y25b{bottom:386.222133pt;}
.y13a{bottom:388.809867pt;}
.y3c{bottom:388.921067pt;}
.yc2{bottom:390.468133pt;}
.y201{bottom:390.786000pt;}
.y155{bottom:390.951200pt;}
.y1d2{bottom:393.264800pt;}
.y19e{bottom:393.411467pt;}
.yf3{bottom:393.438000pt;}
.y1e{bottom:394.120133pt;}
.y8e{bottom:397.283467pt;}
.y11c{bottom:399.583333pt;}
.y62{bottom:401.463467pt;}
.y25a{bottom:402.888800pt;}
.y228{bottom:404.203600pt;}
.y139{bottom:406.145867pt;}
.yc1{bottom:406.788133pt;}
.y3b{bottom:407.101067pt;}
.y154{bottom:408.287200pt;}
.y1d1{bottom:410.600800pt;}
.y19d{bottom:410.747467pt;}
.y1d{bottom:411.720133pt;}
.y11b{bottom:416.919333pt;}
.y259{bottom:419.555467pt;}
.y227{bottom:420.870267pt;}
.yc0{bottom:422.788133pt;}
.y200{bottom:423.243333pt;}
.y138{bottom:423.481867pt;}
.y3a{bottom:425.281067pt;}
.y153{bottom:425.623200pt;}
.yf2{bottom:425.895333pt;}
.y1d0{bottom:427.936800pt;}
.y19c{bottom:428.083467pt;}
.y1c{bottom:429.320133pt;}
.y8d{bottom:429.740800pt;}
.y61{bottom:433.920800pt;}
.y11a{bottom:434.255333pt;}
.y226{bottom:437.536933pt;}
.ybf{bottom:439.108133pt;}
.y1ff{bottom:440.579333pt;}
.y137{bottom:440.817867pt;}
.y258{bottom:441.888800pt;}
.y152{bottom:442.959200pt;}
.yf1{bottom:443.231333pt;}
.y1cf{bottom:445.272800pt;}
.y19b{bottom:445.419467pt;}
.y1b{bottom:446.920133pt;}
.y8c{bottom:447.076800pt;}
.y60{bottom:451.256800pt;}
.y119{bottom:451.591333pt;}
.ybe{bottom:455.108133pt;}
.ybd{bottom:455.428133pt;}
.y1fe{bottom:457.915333pt;}
.y136{bottom:458.153867pt;}
.y257{bottom:458.555467pt;}
.y225{bottom:459.870267pt;}
.y151{bottom:460.295200pt;}
.yf0{bottom:460.567333pt;}
.y39{bottom:461.641067pt;}
.y1ce{bottom:462.608800pt;}
.y19a{bottom:462.755467pt;}
.y8b{bottom:464.412800pt;}
.y1a{bottom:464.520133pt;}
.y5f{bottom:468.592800pt;}
.y118{bottom:468.927333pt;}
.ybc{bottom:471.428133pt;}
.y256{bottom:475.222133pt;}
.y135{bottom:475.489867pt;}
.y224{bottom:476.536933pt;}
.y150{bottom:477.631200pt;}
.yef{bottom:477.903333pt;}
.y38{bottom:479.821067pt;}
.y1cd{bottom:479.944800pt;}
.y19{bottom:482.120133pt;}
.y5e{bottom:485.928800pt;}
.y117{bottom:486.263333pt;}
.ybb{bottom:487.748133pt;}
.y1fd{bottom:490.372667pt;}
.y255{bottom:491.888800pt;}
.y134{bottom:492.825867pt;}
.y223{bottom:493.203600pt;}
.y199{bottom:495.212800pt;}
.yee{bottom:495.239333pt;}
.y8a{bottom:496.870133pt;}
.y1cc{bottom:497.280800pt;}
.y37{bottom:498.001067pt;}
.y5d{bottom:503.264800pt;}
.y116{bottom:503.599333pt;}
.yba{bottom:504.068133pt;}
.y1fc{bottom:507.708667pt;}
.y222{bottom:509.870267pt;}
.y14f{bottom:510.088533pt;}
.y133{bottom:510.161867pt;}
.y18{bottom:511.057467pt;}
.y198{bottom:512.548800pt;}
.yed{bottom:512.575333pt;}
.y89{bottom:514.206133pt;}
.y254{bottom:514.222133pt;}
.y1cb{bottom:514.616800pt;}
.y36{bottom:516.181067pt;}
.yb9{bottom:520.388133pt;}
.y5c{bottom:520.600800pt;}
.y115{bottom:520.935333pt;}
.y1fb{bottom:525.044667pt;}
.y14e{bottom:527.424533pt;}
.y132{bottom:527.497867pt;}
.y17{bottom:528.657467pt;}
.y197{bottom:529.884800pt;}
.yec{bottom:529.911333pt;}
.y253{bottom:530.888800pt;}
.y88{bottom:531.542133pt;}
.y221{bottom:532.203600pt;}
.y35{bottom:534.361067pt;}
.yb8{bottom:536.708133pt;}
.y5b{bottom:537.936800pt;}
.y114{bottom:538.271333pt;}
.y14d{bottom:544.760533pt;}
.y131{bottom:544.833867pt;}
.y16{bottom:546.257467pt;}
.y1ca{bottom:547.074133pt;}
.y196{bottom:547.220800pt;}
.yeb{bottom:547.247333pt;}
.y252{bottom:547.555467pt;}
.y220{bottom:548.870267pt;}
.y34{bottom:552.541067pt;}
.yb7{bottom:553.028133pt;}
.y5a{bottom:555.272800pt;}
.y113{bottom:555.607333pt;}
.y14c{bottom:562.096533pt;}
.y130{bottom:562.169867pt;}
.y15{bottom:563.857467pt;}
.y87{bottom:563.999467pt;}
.y251{bottom:564.222133pt;}
.y195{bottom:564.556800pt;}
.yea{bottom:564.583333pt;}
.y21f{bottom:565.536933pt;}
.yb6{bottom:569.348133pt;}
.y33{bottom:570.721067pt;}
.y59{bottom:572.608800pt;}
.y112{bottom:572.943333pt;}
.y14b{bottom:579.432533pt;}
.y12f{bottom:579.505867pt;}
.y1c9{bottom:579.531467pt;}
.y14{bottom:581.457467pt;}
.y194{bottom:581.892800pt;}
.ye9{bottom:581.919333pt;}
.yb5{bottom:585.668133pt;}
.y250{bottom:586.555467pt;}
.y21e{bottom:587.870267pt;}
.y1fa{bottom:589.944667pt;}
.y58{bottom:589.944800pt;}
.y111{bottom:590.279333pt;}
.y86{bottom:596.456800pt;}
.y14a{bottom:596.768533pt;}
.y12e{bottom:596.841867pt;}
.y1c8{bottom:596.867467pt;}
.y193{bottom:599.228800pt;}
.ye8{bottom:599.255333pt;}
.yb4{bottom:601.988133pt;}
.y24f{bottom:603.222133pt;}
.y21d{bottom:604.536933pt;}
.y32{bottom:607.081067pt;}
.y1f9{bottom:607.280667pt;}
.y13{bottom:610.394800pt;}
.y85{bottom:613.792800pt;}
.y149{bottom:614.104533pt;}
.y12d{bottom:614.177867pt;}
.y1c7{bottom:614.203467pt;}
.y192{bottom:616.564800pt;}
.yb3{bottom:618.308133pt;}
.y24e{bottom:619.888800pt;}
.y21c{bottom:621.203600pt;}
.y57{bottom:622.402133pt;}
.y110{bottom:622.736667pt;}
.y1f8{bottom:624.616667pt;}
.y31{bottom:625.261067pt;}
.y12{bottom:627.994800pt;}
.y84{bottom:631.128800pt;}
.y148{bottom:631.440533pt;}
.y12c{bottom:631.513867pt;}
.y1c6{bottom:631.539467pt;}
.ye7{bottom:631.712667pt;}
.y191{bottom:633.900800pt;}
.yb2{bottom:634.628133pt;}
.y24d{bottom:636.555467pt;}
.y21b{bottom:637.870267pt;}
.y56{bottom:639.738133pt;}
.y10f{bottom:640.072667pt;}
.y1f7{bottom:641.952667pt;}
.y30{bottom:643.441067pt;}
.y11{bottom:645.594800pt;}
.y83{bottom:648.464800pt;}
.y147{bottom:648.776533pt;}
.y12b{bottom:648.849867pt;}
.y1c5{bottom:648.875467pt;}
.ye6{bottom:649.048667pt;}
.yb1{bottom:650.948133pt;}
.y190{bottom:651.236800pt;}
.y55{bottom:657.074133pt;}
.y10e{bottom:657.408667pt;}
.y24c{bottom:658.888800pt;}
.y1f6{bottom:659.288667pt;}
.y2f{bottom:661.621067pt;}
.y21a{bottom:661.914000pt;}
.y10{bottom:663.194800pt;}
.y82{bottom:665.800800pt;}
.y1c4{bottom:666.211467pt;}
.ye5{bottom:666.384667pt;}
.yb0{bottom:667.268133pt;}
.y18f{bottom:668.572800pt;}
.y17a{bottom:674.113600pt;}
.y54{bottom:674.410133pt;}
.y10d{bottom:674.744667pt;}
.y24b{bottom:675.555467pt;}
.y1f5{bottom:676.624667pt;}
.y1c3{bottom:683.547467pt;}
.yaf{bottom:683.588133pt;}
.yae{bottom:683.908133pt;}
.y18e{bottom:685.908800pt;}
.y53{bottom:691.746133pt;}
.y10c{bottom:692.080667pt;}
.y24a{bottom:692.222133pt;}
.y1f4{bottom:693.960667pt;}
.y2e{bottom:697.981067pt;}
.y81{bottom:698.258133pt;}
.ye4{bottom:698.842000pt;}
.yad{bottom:699.908133pt;}
.y1c2{bottom:700.883467pt;}
.y18d{bottom:703.244800pt;}
.y249{bottom:708.888800pt;}
.y52{bottom:709.082133pt;}
.y179{bottom:709.107200pt;}
.y10b{bottom:709.416667pt;}
.y1f3{bottom:711.296667pt;}
.y80{bottom:715.594133pt;}
.y2d{bottom:716.161067pt;}
.ye3{bottom:716.178000pt;}
.yac{bottom:716.228133pt;}
.yf{bottom:716.420267pt;}
.y1c1{bottom:718.219467pt;}
.y219{bottom:719.788667pt;}
.y18c{bottom:720.580800pt;}
.y51{bottom:726.418133pt;}
.y10a{bottom:726.752667pt;}
.y1f2{bottom:728.632667pt;}
.y248{bottom:731.222133pt;}
.yab{bottom:732.548133pt;}
.y7f{bottom:732.930133pt;}
.ye2{bottom:733.514000pt;}
.y178{bottom:733.933867pt;}
.y1c0{bottom:735.555467pt;}
.y18b{bottom:737.916800pt;}
.y218{bottom:741.788667pt;}
.y50{bottom:743.754133pt;}
.y109{bottom:744.088667pt;}
.y247{bottom:747.888800pt;}
.yaa{bottom:748.868133pt;}
.y7e{bottom:750.266133pt;}
.ye1{bottom:750.850000pt;}
.y176{bottom:751.587200pt;}
.y2c{bottom:752.521067pt;}
.y1bf{bottom:752.891467pt;}
.y18a{bottom:755.252800pt;}
.y177{bottom:758.760533pt;}
.y1f1{bottom:761.090000pt;}
.y4f{bottom:761.090133pt;}
.y108{bottom:761.424667pt;}
.y246{bottom:764.555467pt;}
.ya9{bottom:765.188133pt;}
.y2b{bottom:766.921067pt;}
.y175{bottom:767.587200pt;}
.y7d{bottom:767.602133pt;}
.ye0{bottom:768.186000pt;}
.y1be{bottom:770.227467pt;}
.y189{bottom:772.588800pt;}
.y217{bottom:774.246000pt;}
.ye{bottom:774.823333pt;}
.y1f0{bottom:778.426000pt;}
.y4e{bottom:778.426133pt;}
.y107{bottom:778.760667pt;}
.y2a{bottom:781.321067pt;}
.ya8{bottom:781.508133pt;}
.y174{bottom:783.587200pt;}
.y7c{bottom:784.938133pt;}
.ydf{bottom:785.522000pt;}
.y245{bottom:786.888800pt;}
.y1bd{bottom:787.563467pt;}
.yd{bottom:787.623333pt;}
.y188{bottom:789.924800pt;}
.y29{bottom:795.721067pt;}
.y1ef{bottom:795.762000pt;}
.y4d{bottom:795.762133pt;}
.y106{bottom:796.096667pt;}
.ya7{bottom:797.828133pt;}
.yc{bottom:800.423333pt;}
.y7b{bottom:802.274133pt;}
.yde{bottom:802.858000pt;}
.y244{bottom:803.555467pt;}
.y1bc{bottom:804.899467pt;}
.y216{bottom:806.703333pt;}
.y187{bottom:807.260800pt;}
.y173{bottom:808.413867pt;}
.y1ee{bottom:813.098000pt;}
.y4c{bottom:813.098133pt;}
.y105{bottom:813.432667pt;}
.y28{bottom:813.901067pt;}
.ya6{bottom:814.148133pt;}
.ydd{bottom:820.194000pt;}
.y243{bottom:820.222133pt;}
.yb{bottom:821.159200pt;}
.y1bb{bottom:822.235467pt;}
.y186{bottom:824.596800pt;}
.y171{bottom:826.067200pt;}
.y1ed{bottom:830.434000pt;}
.y4b{bottom:830.434133pt;}
.ya5{bottom:830.468133pt;}
.y104{bottom:830.768667pt;}
.y172{bottom:833.240533pt;}
.y7a{bottom:834.731467pt;}
.y215{bottom:839.160667pt;}
.y1ba{bottom:839.571467pt;}
.y170{bottom:842.067200pt;}
.y242{bottom:842.555467pt;}
.ya4{bottom:846.788133pt;}
.y1ec{bottom:847.770000pt;}
.y4a{bottom:847.770133pt;}
.y103{bottom:848.104667pt;}
.ydc{bottom:852.651333pt;}
.y9{bottom:854.070933pt;}
.y1b9{bottom:856.907467pt;}
.y185{bottom:857.054133pt;}
.y16f{bottom:858.067200pt;}
.y241{bottom:859.222133pt;}
.ya3{bottom:863.108133pt;}
.y1eb{bottom:865.106000pt;}
.y49{bottom:865.106133pt;}
.y102{bottom:865.440667pt;}
.y79{bottom:867.188800pt;}
.y214{bottom:871.618000pt;}
.y1b8{bottom:874.243467pt;}
.y184{bottom:874.390133pt;}
.y240{bottom:875.888800pt;}
.ya2{bottom:879.428133pt;}
.y48{bottom:882.442133pt;}
.y101{bottom:882.776667pt;}
.y8{bottom:882.870933pt;}
.y16e{bottom:882.893867pt;}
.y16c{bottom:884.547200pt;}
.ydb{bottom:885.108667pt;}
.y1b7{bottom:891.579467pt;}
.y183{bottom:891.726133pt;}
.y23f{bottom:892.555467pt;}
.ya1{bottom:895.748133pt;}
.y1ea{bottom:897.563333pt;}
.y47{bottom:899.778133pt;}
.y100{bottom:900.112667pt;}
.y16b{bottom:900.547200pt;}
.yda{bottom:902.444667pt;}
.y213{bottom:904.075333pt;}
.y16d{bottom:907.720533pt;}
.y1b6{bottom:908.915467pt;}
.y182{bottom:909.062133pt;}
.y7{bottom:911.670933pt;}
.ya0{bottom:912.068133pt;}
.y23e{bottom:914.888800pt;}
.y1e9{bottom:914.899333pt;}
.y16a{bottom:916.547200pt;}
.y46{bottom:917.114133pt;}
.yff{bottom:917.448667pt;}
.yd9{bottom:919.780667pt;}
.y1b5{bottom:926.251467pt;}
.y181{bottom:926.398133pt;}
.y9f{bottom:928.388133pt;}
.y23d{bottom:931.555467pt;}
.y78{bottom:932.088800pt;}
.y1e8{bottom:932.235333pt;}
.y169{bottom:932.547200pt;}
.y45{bottom:934.450133pt;}
.yfe{bottom:934.784667pt;}
.y6{bottom:936.485733pt;}
.y212{bottom:936.532667pt;}
.yd8{bottom:937.116667pt;}
.y1b4{bottom:943.587467pt;}
.y180{bottom:943.734133pt;}
.y9e{bottom:944.708133pt;}
.y23c{bottom:948.222133pt;}
.y77{bottom:949.424800pt;}
.y1e7{bottom:949.571333pt;}
.y5{bottom:950.885733pt;}
.y44{bottom:951.786133pt;}
.yfd{bottom:952.120667pt;}
.yd7{bottom:954.452667pt;}
.y168{bottom:957.373867pt;}
.y1b3{bottom:960.923467pt;}
.y9d{bottom:961.028133pt;}
.y17f{bottom:961.070133pt;}
.y23b{bottom:964.888800pt;}
.y76{bottom:966.760800pt;}
.y1e6{bottom:966.907333pt;}
.y211{bottom:968.990000pt;}
.y43{bottom:969.122133pt;}
.yfc{bottom:969.456667pt;}
.yd6{bottom:971.788667pt;}
.y1b2{bottom:978.259467pt;}
.y17e{bottom:978.406133pt;}
.y9c{bottom:979.294800pt;}
.y167{bottom:982.200533pt;}
.y75{bottom:984.096800pt;}
.y1e5{bottom:984.243333pt;}
.y42{bottom:986.458133pt;}
.yfb{bottom:986.792667pt;}
.y23a{bottom:987.222133pt;}
.yd5{bottom:989.124667pt;}
.y1b1{bottom:995.595467pt;}
.y17d{bottom:995.742133pt;}
.y166{bottom:998.200533pt;}
.ya{bottom:998.382000pt;}
.y74{bottom:1001.432800pt;}
.y210{bottom:1001.447333pt;}
.y1e4{bottom:1001.579333pt;}
.y41{bottom:1003.794133pt;}
.y239{bottom:1003.888800pt;}
.yfa{bottom:1004.128667pt;}
.yd4{bottom:1006.460667pt;}
.y1b0{bottom:1012.931467pt;}
.y17c{bottom:1013.078133pt;}
.y9b{bottom:1013.567467pt;}
.y73{bottom:1018.768800pt;}
.y20f{bottom:1018.783333pt;}
.y1e3{bottom:1018.915333pt;}
.y238{bottom:1020.555467pt;}
.yf9{bottom:1021.464667pt;}
.y1af{bottom:1030.267467pt;}
.y17b{bottom:1030.414133pt;}
.y9a{bottom:1030.899467pt;}
.y165{bottom:1036.093867pt;}
.y72{bottom:1036.104800pt;}
.y20e{bottom:1036.119333pt;}
.y1e2{bottom:1036.251333pt;}
.y40{bottom:1036.251467pt;}
.y237{bottom:1037.222133pt;}
.yf8{bottom:1038.800667pt;}
.yd3{bottom:1038.918000pt;}
.y4{bottom:1042.005067pt;}
.y2{bottom:1058.975467pt;}
.y3f{bottom:1064.362133pt;}
.y1{bottom:1073.560800pt;}
.ha{height:32.083333pt;}
.h6{height:35.531250pt;}
.hf{height:36.093750pt;}
.h10{height:39.234375pt;}
.h3{height:39.479167pt;}
.h4{height:40.104167pt;}
.he{height:41.109375pt;}
.h5{height:42.024354pt;}
.h15{height:43.593750pt;}
.h12{height:44.114583pt;}
.h8{height:45.562500pt;}
.h16{height:45.677083pt;}
.h9{height:45.729167pt;}
.h14{height:45.773438pt;}
.hc{height:47.953125pt;}
.h13{height:47.960938pt;}
.h11{height:48.125000pt;}
.hd{height:50.244792pt;}
.hb{height:64.020833pt;}
.h7{height:72.187500pt;}
.h2{height:80.208333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:5.417600pt;}
.xe{left:18.977600pt;}
.x15{left:20.597600pt;}
.xf{left:24.641600pt;}
.xd{left:29.009600pt;}
.x13{left:31.877600pt;}
.x6{left:33.251733pt;}
.x11{left:39.545600pt;}
.x14{left:43.181600pt;}
.xc{left:50.825600pt;}
.x5{left:56.039733pt;}
.x21{left:57.354267pt;}
.x16{left:59.261600pt;}
.x17{left:64.251867pt;}
.x10{left:78.797600pt;}
.x2f{left:80.692933pt;}
.x1b{left:126.417333pt;}
.x2b{left:147.954800pt;}
.x2{left:185.375067pt;}
.x7{left:187.716533pt;}
.x9{left:189.133067pt;}
.x2e{left:191.434800pt;}
.x22{left:200.341067pt;}
.xb{left:206.921600pt;}
.xa{left:213.819200pt;}
.x23{left:215.541067pt;}
.x4{left:274.165600pt;}
.x24{left:292.447733pt;}
.x25{left:313.007733pt;}
.x1c{left:319.017333pt;}
.x1{left:362.702533pt;}
.x26{left:399.061067pt;}
.x2c{left:401.421467pt;}
.x18{left:410.262267pt;}
.x27{left:420.607733pt;}
.x19{left:434.256933pt;}
.x2d{left:468.261467pt;}
.x28{left:489.154400pt;}
.x29{left:509.727733pt;}
.x8{left:586.546933pt;}
.x2a{left:588.954400pt;}
.x1f{left:603.510667pt;}
.x1d{left:604.697333pt;}
.x1e{left:606.004000pt;}
.x3{left:703.625333pt;}
.x1a{left:705.168267pt;}
.x20{left:706.711200pt;}
}




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