
    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_07372bb14727a920448c3be4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.185000;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_aa7b977165fac01ce6678b07.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.057000;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_1cc20c9f956874db25335a8c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.736000;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_f5bd7a529143703caec1ebc8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.171387;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_46f04a3c810d8e6b6b1fe941.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006000;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_5481cbff42cd7a7c1f5e6a6c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.006000;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_82ee426ddd56d3d62acaf47c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_397f80c8c4f350ff25a1f1b9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.732000;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_e520c1def68444d954a82ca3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.174000;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_5745624e51d3242c81087552.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.184000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d299e1fb2efe211f4e6750c2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.706543;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6b0358aa826e780599728e83.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.881836;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:ffd;src:url('chunks/assets/font_2b08ce7754e225c8dce0110c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.171387;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:ffe;src:url('chunks/assets/font_5eba806f40a54a524c97f510.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.714000;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:fff;src:url('chunks/assets/font_afb12f018b224fa5357aff7b.woff2')format("woff");}.fff{font-family:fff;line-height:0.713867;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:ff10;src:url('chunks/assets/font_4f036f1a6536ca7a8b2b1f16.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.721680;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.245407,0.000000,-0.047702,0.245407,0,0);-ms-transform:matrix(0.245407,0.000000,-0.047702,0.245407,0,0);-webkit-transform:matrix(0.245407,0.000000,-0.047702,0.245407,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);}
.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;}
.v1{vertical-align:19.980000px;}
.v3{vertical-align:32.400000px;}
.v2{vertical-align:60.318000px;}
.v4{vertical-align:62.856000px;}
.ls10{letter-spacing:-3.780000px;}
.ls11{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.864000px;}
.ls3{letter-spacing:-0.765000px;}
.ls4{letter-spacing:-0.675000px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.096000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.300000px;}
.lsb{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.840000px;}
.ls8{letter-spacing:1.440000px;}
.ls9{letter-spacing:1.500000px;}
.lsf{letter-spacing:5.464800px;}
.ls0{letter-spacing:5.700000px;}
.ls1{letter-spacing:7.395000px;}
.lsd{letter-spacing:17.123400px;}
.lsc{letter-spacing:74.640000px;}
.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;}
}
.wsaf{word-spacing:-60.000000px;}
.ws56{word-spacing:-54.000000px;}
.ws17{word-spacing:-45.600000px;}
.ws58{word-spacing:-17.040000px;}
.ws57{word-spacing:-16.440000px;}
.ws61{word-spacing:-15.900000px;}
.ws1a{word-spacing:-15.600000px;}
.ws18{word-spacing:-15.240000px;}
.wsbc{word-spacing:-14.040000px;}
.ws1{word-spacing:-13.260000px;}
.wscb{word-spacing:-13.176000px;}
.ws0{word-spacing:-12.480000px;}
.wsef{word-spacing:-10.206000px;}
.ws40{word-spacing:-9.094800px;}
.wsbf{word-spacing:-8.532000px;}
.wsc0{word-spacing:-7.074000px;}
.wse8{word-spacing:-6.156000px;}
.ws3{word-spacing:-5.700000px;}
.wsc9{word-spacing:-5.670000px;}
.ws7b{word-spacing:-5.160000px;}
.wsf4{word-spacing:-4.374000px;}
.ws51{word-spacing:-4.260000px;}
.ws19{word-spacing:-4.050000px;}
.ws30{word-spacing:-4.020000px;}
.wsed{word-spacing:-3.942000px;}
.ws71{word-spacing:-3.840000px;}
.wsa8{word-spacing:-3.600000px;}
.wsf5{word-spacing:-3.456000px;}
.ws15{word-spacing:-3.417000px;}
.ws5b{word-spacing:-3.120000px;}
.ws91{word-spacing:-3.000000px;}
.wsae{word-spacing:-2.880000px;}
.ws79{word-spacing:-2.820000px;}
.wse6{word-spacing:-2.646000px;}
.wsba{word-spacing:-2.580000px;}
.ws89{word-spacing:-2.520000px;}
.ws7a{word-spacing:-2.460000px;}
.ws2d{word-spacing:-2.400000px;}
.wsb9{word-spacing:-2.340000px;}
.ws64{word-spacing:-2.280000px;}
.wsd6{word-spacing:-2.268000px;}
.ws70{word-spacing:-2.220000px;}
.ws27{word-spacing:-2.160000px;}
.ws7{word-spacing:-2.064000px;}
.ws3f{word-spacing:-2.040000px;}
.ws90{word-spacing:-1.980000px;}
.ws3d{word-spacing:-1.920000px;}
.ws6e{word-spacing:-1.800000px;}
.ws77{word-spacing:-1.740000px;}
.wsc{word-spacing:-1.680000px;}
.ws92{word-spacing:-1.500000px;}
.wsb4{word-spacing:-1.440000px;}
.wse4{word-spacing:-1.404000px;}
.ws20{word-spacing:-1.392000px;}
.ws9{word-spacing:-1.296000px;}
.wsb3{word-spacing:-1.260000px;}
.wsc3{word-spacing:-1.242000px;}
.ws2f{word-spacing:-1.200000px;}
.wse3{word-spacing:-1.134000px;}
.ws38{word-spacing:-1.080000px;}
.wse9{word-spacing:-1.026000px;}
.ws52{word-spacing:-1.020000px;}
.wsdc{word-spacing:-0.972000px;}
.wsb1{word-spacing:-0.900000px;}
.ws5c{word-spacing:-0.840000px;}
.wsd{word-spacing:-0.816000px;}
.wsec{word-spacing:-0.810000px;}
.ws35{word-spacing:-0.780000px;}
.ws87{word-spacing:-0.720000px;}
.ws54{word-spacing:-0.660000px;}
.wseb{word-spacing:-0.648000px;}
.ws11{word-spacing:-0.624000px;}
.ws6d{word-spacing:-0.600000px;}
.ws31{word-spacing:-0.540000px;}
.ws24{word-spacing:-0.480000px;}
.ws1f{word-spacing:-0.432000px;}
.ws75{word-spacing:-0.420000px;}
.ws2e{word-spacing:-0.360000px;}
.ws67{word-spacing:-0.300000px;}
.ws22{word-spacing:-0.288000px;}
.wsd2{word-spacing:-0.270000px;}
.ws21{word-spacing:-0.240000px;}
.wsb8{word-spacing:-0.180000px;}
.wsa{word-spacing:-0.096000px;}
.wsb2{word-spacing:-0.060000px;}
.ws2{word-spacing:0.000000px;}
.ws7d{word-spacing:0.060000px;}
.ws12{word-spacing:0.096000px;}
.wsb6{word-spacing:0.180000px;}
.ws8{word-spacing:0.192000px;}
.ws6{word-spacing:0.240000px;}
.ws25{word-spacing:0.288000px;}
.ws47{word-spacing:0.300000px;}
.ws28{word-spacing:0.360000px;}
.ws124{word-spacing:0.480000px;}
.ws41{word-spacing:0.540000px;}
.ws29{word-spacing:0.600000px;}
.wse{word-spacing:0.624000px;}
.wsdb{word-spacing:0.648000px;}
.ws2a{word-spacing:0.660000px;}
.ws6a{word-spacing:0.720000px;}
.ws1b{word-spacing:0.765000px;}
.ws50{word-spacing:0.780000px;}
.ws83{word-spacing:0.840000px;}
.wsd7{word-spacing:0.864000px;}
.ws62{word-spacing:0.900000px;}
.wsf{word-spacing:0.912000px;}
.ws44{word-spacing:0.960000px;}
.wse2{word-spacing:0.972000px;}
.wsa3{word-spacing:1.020000px;}
.ws68{word-spacing:1.080000px;}
.wsbd{word-spacing:1.188000px;}
.ws4f{word-spacing:1.200000px;}
.ws86{word-spacing:1.260000px;}
.ws5d{word-spacing:1.440000px;}
.ws6f{word-spacing:1.500000px;}
.wsf3{word-spacing:1.512000px;}
.ws2c{word-spacing:1.560000px;}
.ws63{word-spacing:1.620000px;}
.wsbb{word-spacing:1.680000px;}
.wsad{word-spacing:1.800000px;}
.ws7c{word-spacing:1.860000px;}
.wsd1{word-spacing:1.890000px;}
.ws65{word-spacing:1.920000px;}
.ws66{word-spacing:1.980000px;}
.ws32{word-spacing:2.040000px;}
.ws33{word-spacing:2.100000px;}
.ws13{word-spacing:2.160000px;}
.ws36{word-spacing:2.220000px;}
.wsc6{word-spacing:2.322000px;}
.ws8f{word-spacing:2.400000px;}
.wsd3{word-spacing:2.484000px;}
.wsac{word-spacing:2.520000px;}
.wsd0{word-spacing:2.538000px;}
.ws4b{word-spacing:2.580000px;}
.ws4{word-spacing:2.640000px;}
.ws34{word-spacing:2.700000px;}
.ws88{word-spacing:2.760000px;}
.ws9b{word-spacing:2.820000px;}
.ws4d{word-spacing:2.880000px;}
.ws55{word-spacing:3.000000px;}
.ws7f{word-spacing:3.060000px;}
.ws1c{word-spacing:3.072000px;}
.ws78{word-spacing:3.240000px;}
.wsd8{word-spacing:3.294000px;}
.ws8a{word-spacing:3.300000px;}
.wsbe{word-spacing:3.348000px;}
.ws59{word-spacing:3.360000px;}
.ws8b{word-spacing:3.420000px;}
.ws3b{word-spacing:3.480000px;}
.ws5{word-spacing:3.504000px;}
.ws72{word-spacing:3.540000px;}
.ws10{word-spacing:3.552000px;}
.wsb5{word-spacing:3.600000px;}
.wse7{word-spacing:3.618000px;}
.wsb0{word-spacing:3.660000px;}
.wsea{word-spacing:3.726000px;}
.ws4c{word-spacing:3.728503px;}
.ws93{word-spacing:3.780000px;}
.wsb{word-spacing:3.792000px;}
.wsf8{word-spacing:3.834000px;}
.ws8e{word-spacing:3.840000px;}
.wsce{word-spacing:3.888000px;}
.ws43{word-spacing:3.960000px;}
.ws3e{word-spacing:4.020000px;}
.ws9c{word-spacing:4.140000px;}
.ws82{word-spacing:4.200000px;}
.wsc7{word-spacing:4.212000px;}
.ws95{word-spacing:4.260000px;}
.ws26{word-spacing:4.320000px;}
.wscf{word-spacing:4.374000px;}
.ws46{word-spacing:4.440000px;}
.wsee{word-spacing:4.482000px;}
.ws97{word-spacing:4.560000px;}
.wsd9{word-spacing:4.590000px;}
.wsc5{word-spacing:4.644000px;}
.ws4e{word-spacing:4.680000px;}
.wsa1{word-spacing:4.740000px;}
.wsa2{word-spacing:4.800000px;}
.wse0{word-spacing:4.806000px;}
.wsb7{word-spacing:4.860000px;}
.wsa9{word-spacing:4.920000px;}
.ws73{word-spacing:4.980000px;}
.wsd5{word-spacing:5.184000px;}
.ws37{word-spacing:5.340000px;}
.wsf6{word-spacing:5.346000px;}
.ws69{word-spacing:5.460000px;}
.wsc2{word-spacing:5.508000px;}
.ws3c{word-spacing:5.640000px;}
.ws81{word-spacing:5.760000px;}
.wsaa{word-spacing:5.880000px;}
.wsda{word-spacing:5.886000px;}
.ws96{word-spacing:6.060000px;}
.wsf1{word-spacing:6.102000px;}
.ws5f{word-spacing:6.240000px;}
.ws53{word-spacing:6.300000px;}
.wsf2{word-spacing:6.318000px;}
.ws9a{word-spacing:6.420000px;}
.ws1e{word-spacing:6.432000px;}
.wsf0{word-spacing:6.480000px;}
.ws6b{word-spacing:6.540000px;}
.ws23{word-spacing:6.720000px;}
.ws6c{word-spacing:6.780000px;}
.ws1d{word-spacing:6.864000px;}
.ws85{word-spacing:6.960000px;}
.ws49{word-spacing:7.020000px;}
.ws45{word-spacing:7.080000px;}
.wse5{word-spacing:7.182000px;}
.ws80{word-spacing:7.200000px;}
.ws7e{word-spacing:7.260000px;}
.ws5a{word-spacing:7.380000px;}
.ws14{word-spacing:7.395000px;}
.ws9e{word-spacing:7.440000px;}
.ws94{word-spacing:7.560000px;}
.ws98{word-spacing:7.680000px;}
.ws76{word-spacing:7.740000px;}
.ws3a{word-spacing:7.860000px;}
.ws48{word-spacing:7.920000px;}
.ws4a{word-spacing:7.980000px;}
.wsab{word-spacing:8.100000px;}
.wsc1{word-spacing:8.154000px;}
.wsdf{word-spacing:8.208000px;}
.ws60{word-spacing:8.400000px;}
.wse1{word-spacing:8.532000px;}
.wsa0{word-spacing:8.580000px;}
.ws8d{word-spacing:8.700000px;}
.ws5e{word-spacing:8.760000px;}
.ws42{word-spacing:8.940000px;}
.ws74{word-spacing:9.060000px;}
.ws39{word-spacing:9.120000px;}
.ws8c{word-spacing:9.180000px;}
.wsd4{word-spacing:9.234000px;}
.ws99{word-spacing:9.300000px;}
.wsdd{word-spacing:9.612000px;}
.ws9f{word-spacing:10.740000px;}
.ws2b{word-spacing:11.160000px;}
.wsde{word-spacing:11.556000px;}
.wsf7{word-spacing:12.906000px;}
.ws9d{word-spacing:13.680000px;}
.ws84{word-spacing:13.980000px;}
.wscc{word-spacing:14.202000px;}
.wsc8{word-spacing:14.958000px;}
.wsc4{word-spacing:17.010000px;}
.wsca{word-spacing:17.496000px;}
.wscd{word-spacing:30.726000px;}
.ws122{word-spacing:61.992000px;}
.ws11d{word-spacing:62.154000px;}
.ws11f{word-spacing:62.316000px;}
.wsf9{word-spacing:73.170000px;}
.wsfd{word-spacing:78.624000px;}
.wsfc{word-spacing:80.352000px;}
.wsff{word-spacing:82.836000px;}
.wsfb{word-spacing:85.050000px;}
.wsfa{word-spacing:91.800000px;}
.ws11e{word-spacing:110.376000px;}
.ws123{word-spacing:144.072000px;}
.ws125{word-spacing:149.472000px;}
.ws118{word-spacing:160.866000px;}
.ws11c{word-spacing:170.478000px;}
.ws119{word-spacing:178.146000px;}
.wsa7{word-spacing:197.748000px;}
.wsa5{word-spacing:203.256000px;}
.ws100{word-spacing:260.442000px;}
.ws10b{word-spacing:267.084000px;}
.ws10c{word-spacing:268.272000px;}
.ws112{word-spacing:272.430000px;}
.ws103{word-spacing:272.754000px;}
.ws111{word-spacing:273.996000px;}
.ws102{word-spacing:274.266000px;}
.ws10d{word-spacing:275.238000px;}
.ws105{word-spacing:275.724000px;}
.wsfe{word-spacing:275.994000px;}
.ws106{word-spacing:276.912000px;}
.ws108{word-spacing:277.074000px;}
.ws109{word-spacing:278.316000px;}
.ws110{word-spacing:279.396000px;}
.ws10e{word-spacing:279.666000px;}
.ws101{word-spacing:279.990000px;}
.ws114{word-spacing:280.584000px;}
.ws10f{word-spacing:280.908000px;}
.ws113{word-spacing:282.150000px;}
.ws104{word-spacing:282.420000px;}
.ws107{word-spacing:283.878000px;}
.ws116{word-spacing:285.066000px;}
.ws10a{word-spacing:285.228000px;}
.ws115{word-spacing:287.550000px;}
.ws121{word-spacing:386.316000px;}
.wsa6{word-spacing:437.724000px;}
.ws120{word-spacing:494.316000px;}
.wsa4{word-spacing:679.536000px;}
.ws16{word-spacing:689.078700px;}
.ws11a{word-spacing:1769.580000px;}
.ws117{word-spacing:1968.840000px;}
.ws11b{word-spacing:1999.782000px;}
._30{margin-left:-48.960000px;}
._6{margin-left:-21.560100px;}
._3b{margin-left:-10.912800px;}
._3a{margin-left:-9.852600px;}
._e{margin-left:-8.805600px;}
._35{margin-left:-7.074000px;}
._37{margin-left:-5.873400px;}
._9{margin-left:-4.732800px;}
._2{margin-left:-3.421200px;}
._0{margin-left:-1.449600px;}
._4{width:1.516800px;}
._a{width:2.521200px;}
._c{width:3.525600px;}
._8{width:5.116800px;}
._7{width:6.206400px;}
._b{width:7.489200px;}
._5{width:9.158400px;}
._d{width:10.281600px;}
._36{width:15.327600px;}
._34{width:17.034000px;}
._32{width:18.981600px;}
._31{width:20.229600px;}
._33{width:21.818400px;}
._39{width:29.834400px;}
._38{width:30.896400px;}
._1{width:49.186800px;}
._78{width:76.626000px;}
._3c{width:92.880000px;}
._3d{width:95.148000px;}
._3f{width:96.385200px;}
._f{width:99.738000px;}
._42{width:103.140000px;}
._41{width:105.732000px;}
._3e{width:107.174400px;}
._43{width:108.864000px;}
._45{width:123.498000px;}
._44{width:125.388000px;}
._12{width:127.818000px;}
._63{width:128.864400px;}
._46{width:141.750000px;}
._13{width:144.765600px;}
._48{width:148.014000px;}
._47{width:153.738000px;}
._17{width:157.194000px;}
._96{width:160.596000px;}
._4d{width:164.637600px;}
._11{width:166.050000px;}
._2d{width:171.180000px;}
._19{width:173.340000px;}
._61{width:175.500000px;}
._4b{width:181.764000px;}
._92{width:183.330000px;}
._59{width:184.518000px;}
._29{width:186.624000px;}
._18{width:188.082000px;}
._4f{width:189.108000px;}
._5c{width:192.024000px;}
._1f{width:197.964000px;}
._1e{width:201.042000px;}
._16{width:202.122000px;}
._14{width:204.498000px;}
._22{width:206.334000px;}
._25{width:209.088000px;}
._2c{width:211.248000px;}
._1b{width:212.436000px;}
._2b{width:214.326000px;}
._2e{width:216.756000px;}
._2a{width:219.436800px;}
._23{width:221.164800px;}
._27{width:223.918800px;}
._40{width:227.448000px;}
._2f{width:228.508800px;}
._1d{width:232.470000px;}
._20{width:233.550000px;}
._75{width:245.862000px;}
._66{width:253.010400px;}
._95{width:257.904000px;}
._7c{width:259.740000px;}
._84{width:261.144000px;}
._85{width:262.386000px;}
._89{width:263.736000px;}
._79{width:265.410000px;}
._81{width:267.840000px;}
._87{width:270.250800px;}
._8b{width:271.654800px;}
._74{width:280.314000px;}
._8a{width:290.466000px;}
._72{width:292.356000px;}
._21{width:310.284000px;}
._62{width:317.216400px;}
._1c{width:324.594000px;}
._7e{width:340.416000px;}
._15{width:341.766000px;}
._28{width:344.511600px;}
._26{width:356.454000px;}
._67{width:363.764400px;}
._7f{width:365.904000px;}
._71{width:369.144000px;}
._91{width:372.816000px;}
._24{width:375.399600px;}
._6e{width:377.480400px;}
._10{width:387.774000px;}
._97{width:389.232000px;}
._60{width:395.192400px;}
._7d{width:399.762000px;}
._9b{width:401.308800px;}
._58{width:415.567200px;}
._1a{width:435.024000px;}
._65{width:441.362400px;}
._5a{width:462.115200px;}
._8d{width:469.260000px;}
._94{width:473.418000px;}
._6d{width:476.092800px;}
._9a{width:480.654000px;}
._86{width:485.818800px;}
._7b{width:496.476000px;}
._54{width:502.731600px;}
._8f{width:506.898000px;}
._76{width:507.924000px;}
._8e{width:509.092800px;}
._3{width:560.847600px;}
._8c{width:576.072000px;}
._98{width:589.572000px;}
._77{width:616.356000px;}
._6f{width:620.991600px;}
._4e{width:685.837200px;}
._5b{width:699.553200px;}
._99{width:705.490800px;}
._56{width:709.992000px;}
._83{width:724.356000px;}
._50{width:732.385200px;}
._5e{width:745.228800px;}
._57{width:756.540000px;}
._6c{width:770.517600px;}
._5d{width:809.983200px;}
._5f{width:827.263200px;}
._4a{width:830.736000px;}
._7a{width:832.356000px;}
._49{width:845.424000px;}
._69{width:871.236000px;}
._4c{width:877.284000px;}
._55{width:891.261600px;}
._88{width:939.870000px;}
._53{width:1018.198800px;}
._82{width:1047.924000px;}
._52{width:1113.318000px;}
._73{width:1156.356000px;}
._51{width:1202.526000px;}
._90{width:1252.908000px;}
._80{width:1264.194000px;}
._93{width:1371.600000px;}
._6b{width:1372.671600px;}
._70{width:1488.942000px;}
._68{width:1595.313600px;}
._6a{width:1641.861600px;}
._64{width:1691.982000px;}
.fc2{color:rgb(86,168,107);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:34.980000px;}
.fs8{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:61.122998px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:21.259800px;}
.y3c{bottom:31.728900px;}
.y3b{bottom:47.028900px;}
.y3a{bottom:62.328900px;}
.y78{bottom:72.695100px;}
.y156{bottom:73.058850px;}
.yd0{bottom:74.094600px;}
.ye7{bottom:74.234850px;}
.y39{bottom:77.628900px;}
.y138{bottom:77.874150px;}
.y10c{bottom:87.925800px;}
.yb5{bottom:88.426650px;}
.ya6{bottom:90.240750px;}
.y187{bottom:91.550400px;}
.y22e{bottom:92.134050px;}
.y38{bottom:92.928900px;}
.y22d{bottom:93.547950px;}
.y77{bottom:93.695100px;}
.y155{bottom:94.064850px;}
.ycf{bottom:95.094600px;}
.ye6{bottom:95.234850px;}
.y137{bottom:98.874150px;}
.y21c{bottom:106.406700px;}
.y1e9{bottom:108.558450px;}
.yb4{bottom:109.426650px;}
.ya5{bottom:111.240750px;}
.y186{bottom:112.556400px;}
.y1c7{bottom:113.604450px;}
.y76{bottom:114.695100px;}
.y154{bottom:115.070850px;}
.yce{bottom:116.094600px;}
.ye5{bottom:116.234850px;}
.y10b{bottom:118.084800px;}
.y1a5{bottom:118.125450px;}
.y136{bottom:119.874150px;}
.y1c6{bottom:129.331950px;}
.yb3{bottom:130.426650px;}
.ya4{bottom:132.240750px;}
.y185{bottom:133.562400px;}
.y1a4{bottom:133.852950px;}
.y75{bottom:135.695100px;}
.y153{bottom:136.076850px;}
.ycd{bottom:137.094600px;}
.ye4{bottom:137.234850px;}
.y21b{bottom:137.848200px;}
.y1e8{bottom:139.999950px;}
.y135{bottom:140.874150px;}
.y10a{bottom:148.243800px;}
.yb2{bottom:151.426650px;}
.ya3{bottom:153.240750px;}
.y184{bottom:154.568400px;}
.y74{bottom:156.695100px;}
.y152{bottom:157.082850px;}
.ycc{bottom:158.094600px;}
.ye3{bottom:158.234850px;}
.y134{bottom:161.874150px;}
.y21a{bottom:169.289700px;}
.y1e7{bottom:171.441450px;}
.yb1{bottom:172.426650px;}
.ya2{bottom:174.240750px;}
.y183{bottom:175.574400px;}
.y1c5{bottom:176.487450px;}
.y73{bottom:177.695100px;}
.y151{bottom:178.088850px;}
.y109{bottom:178.402800px;}
.ycb{bottom:179.094600px;}
.ye2{bottom:179.234850px;}
.y1a3{bottom:181.008450px;}
.y133{bottom:182.874150px;}
.y1e6{bottom:187.641450px;}
.y1c4{bottom:192.214950px;}
.yb0{bottom:193.426650px;}
.ya1{bottom:195.240750px;}
.y182{bottom:196.580400px;}
.y1a2{bottom:196.735950px;}
.y72{bottom:198.695100px;}
.y150{bottom:199.094850px;}
.yca{bottom:200.094600px;}
.ye1{bottom:200.234850px;}
.y219{bottom:200.731200px;}
.y132{bottom:203.874150px;}
.y108{bottom:208.561800px;}
.yaf{bottom:214.426650px;}
.ya0{bottom:216.240750px;}
.y181{bottom:217.586400px;}
.y1e5{bottom:219.082950px;}
.y71{bottom:219.695100px;}
.y14f{bottom:220.100850px;}
.yc9{bottom:221.094600px;}
.ye0{bottom:221.234850px;}
.y131{bottom:224.874150px;}
.y218{bottom:232.172700px;}
.yae{bottom:235.426650px;}
.y9f{bottom:237.240750px;}
.y180{bottom:238.592400px;}
.y107{bottom:238.720800px;}
.y1c3{bottom:239.370450px;}
.y70{bottom:240.695100px;}
.y14e{bottom:241.106850px;}
.ydf{bottom:242.234850px;}
.y1a1{bottom:243.891450px;}
.y130{bottom:245.874150px;}
.y1e4{bottom:250.524450px;}
.y1c2{bottom:255.097950px;}
.yad{bottom:256.426650px;}
.y9e{bottom:258.240750px;}
.y17f{bottom:259.598400px;}
.y1a0{bottom:259.618950px;}
.y6f{bottom:261.695100px;}
.y14d{bottom:262.112850px;}
.yc8{bottom:263.094600px;}
.yde{bottom:263.234850px;}
.y217{bottom:263.614200px;}
.y12f{bottom:266.874150px;}
.y106{bottom:268.879800px;}
.y1c8{bottom:272.917950px;}
.y37{bottom:273.221850px;}
.yac{bottom:277.426650px;}
.y9d{bottom:279.240750px;}
.y17e{bottom:280.604400px;}
.y1e3{bottom:281.965950px;}
.y6e{bottom:282.695100px;}
.y14c{bottom:283.118850px;}
.ydd{bottom:284.234850px;}
.y12e{bottom:287.874150px;}
.y36{bottom:288.965850px;}
.y216{bottom:295.055700px;}
.y1e2{bottom:298.165950px;}
.yab{bottom:298.426650px;}
.y105{bottom:299.038800px;}
.y9c{bottom:300.240750px;}
.y17d{bottom:301.610400px;}
.y1c1{bottom:302.253450px;}
.y6d{bottom:303.695100px;}
.y14b{bottom:304.124850px;}
.y35{bottom:304.709850px;}
.ydc{bottom:305.234850px;}
.y19f{bottom:306.774450px;}
.y12d{bottom:308.874150px;}
.y1c0{bottom:317.980950px;}
.yc7{bottom:318.114600px;}
.yaa{bottom:319.426650px;}
.y34{bottom:320.453850px;}
.y9b{bottom:321.240750px;}
.y19e{bottom:322.501950px;}
.y17c{bottom:322.616400px;}
.y6c{bottom:324.695100px;}
.y14a{bottom:325.130850px;}
.ydb{bottom:326.234850px;}
.y215{bottom:326.497200px;}
.y104{bottom:329.197800px;}
.y1e1{bottom:329.607450px;}
.y12c{bottom:329.874150px;}
.y33{bottom:336.197850px;}
.yc6{bottom:339.114600px;}
.y9a{bottom:342.240750px;}
.y17b{bottom:343.622400px;}
.y6b{bottom:345.695100px;}
.y149{bottom:346.136850px;}
.yda{bottom:347.234850px;}
.y12b{bottom:350.874150px;}
.y32{bottom:351.941850px;}
.y214{bottom:357.938700px;}
.y103{bottom:359.356800px;}
.yc5{bottom:360.114600px;}
.y1e0{bottom:361.048950px;}
.ya9{bottom:361.426650px;}
.y99{bottom:363.240750px;}
.y17a{bottom:364.628400px;}
.y1bf{bottom:365.136450px;}
.y6a{bottom:366.695100px;}
.y148{bottom:367.142850px;}
.y31{bottom:367.685850px;}
.yd9{bottom:368.234850px;}
.y19d{bottom:369.657450px;}
.y12a{bottom:371.874150px;}
.y1be{bottom:380.863950px;}
.yc4{bottom:381.114600px;}
.y30{bottom:383.429850px;}
.y98{bottom:384.240750px;}
.y19c{bottom:385.384950px;}
.y179{bottom:385.634400px;}
.y69{bottom:387.695100px;}
.y147{bottom:388.148850px;}
.yd8{bottom:389.234850px;}
.y213{bottom:389.380200px;}
.y102{bottom:389.515800px;}
.y1df{bottom:392.490450px;}
.y129{bottom:392.874150px;}
.y2f{bottom:399.173850px;}
.yc3{bottom:402.114600px;}
.y97{bottom:405.240750px;}
.y178{bottom:406.640400px;}
.y68{bottom:408.695100px;}
.y146{bottom:409.154850px;}
.yd7{bottom:410.234850px;}
.y22{bottom:411.736350px;}
.y128{bottom:413.874150px;}
.y2e{bottom:414.917850px;}
.y101{bottom:419.674800px;}
.y212{bottom:420.821700px;}
.yc2{bottom:423.114600px;}
.y1de{bottom:423.931950px;}
.ya8{bottom:424.426650px;}
.y96{bottom:426.240750px;}
.y177{bottom:427.646400px;}
.y1bd{bottom:428.019450px;}
.y21{bottom:428.989350px;}
.y67{bottom:429.695100px;}
.y145{bottom:430.160850px;}
.y2d{bottom:430.661850px;}
.yd6{bottom:431.234850px;}
.y19b{bottom:432.540450px;}
.y127{bottom:434.874150px;}
.ya7{bottom:440.626650px;}
.y1bc{bottom:443.746950px;}
.yc1{bottom:444.114600px;}
.y20{bottom:446.242350px;}
.y2c{bottom:446.405850px;}
.y95{bottom:447.240750px;}
.y19a{bottom:448.267950px;}
.y176{bottom:448.652400px;}
.y100{bottom:449.833800px;}
.y66{bottom:450.695100px;}
.y144{bottom:451.166850px;}
.yd5{bottom:452.234850px;}
.y211{bottom:452.263200px;}
.y1dd{bottom:455.373450px;}
.y126{bottom:455.874150px;}
.y2b{bottom:462.149850px;}
.y1f{bottom:463.495350px;}
.yc0{bottom:465.114600px;}
.y94{bottom:468.240750px;}
.y175{bottom:469.658400px;}
.y65{bottom:471.695100px;}
.y143{bottom:472.172850px;}
.yd4{bottom:473.234850px;}
.y125{bottom:476.874150px;}
.y2a{bottom:477.893850px;}
.yff{bottom:479.992800px;}
.y1e{bottom:480.748350px;}
.y210{bottom:483.704700px;}
.ybf{bottom:486.114600px;}
.y1dc{bottom:486.814950px;}
.y93{bottom:489.240750px;}
.y174{bottom:490.664400px;}
.y1bb{bottom:490.902450px;}
.y64{bottom:492.695100px;}
.y142{bottom:493.178850px;}
.y29{bottom:493.637850px;}
.yd3{bottom:494.234850px;}
.y199{bottom:495.423450px;}
.y124{bottom:497.874150px;}
.y1ba{bottom:506.629950px;}
.ybe{bottom:507.114600px;}
.y28{bottom:509.381850px;}
.yfe{bottom:510.151800px;}
.y92{bottom:510.240750px;}
.y198{bottom:511.150950px;}
.y173{bottom:511.670400px;}
.y63{bottom:513.695100px;}
.y141{bottom:514.184850px;}
.y1d{bottom:515.098350px;}
.y20f{bottom:515.146200px;}
.y1db{bottom:518.256450px;}
.y123{bottom:518.874150px;}
.y27{bottom:525.125850px;}
.ybd{bottom:528.114600px;}
.ye8{bottom:531.240750px;}
.y172{bottom:532.676400px;}
.y62{bottom:534.695100px;}
.y140{bottom:535.190850px;}
.y122{bottom:539.874150px;}
.yfd{bottom:540.310800px;}
.y26{bottom:540.869850px;}
.y20e{bottom:546.587700px;}
.ybc{bottom:549.114600px;}
.y1da{bottom:549.697950px;}
.y1c{bottom:551.992350px;}
.y91{bottom:552.240750px;}
.y171{bottom:553.682400px;}
.y1b9{bottom:553.785450px;}
.y61{bottom:555.695100px;}
.y13f{bottom:556.196850px;}
.y25{bottom:556.613850px;}
.yd2{bottom:557.234850px;}
.y197{bottom:558.306450px;}
.y121{bottom:560.874150px;}
.y1b{bottom:569.245350px;}
.y1b8{bottom:569.512950px;}
.yfc{bottom:570.469800px;}
.y24{bottom:572.357850px;}
.yb8{bottom:573.240750px;}
.yd1{bottom:573.434850px;}
.y196{bottom:574.033950px;}
.y170{bottom:574.688400px;}
.y60{bottom:576.695100px;}
.y3e{bottom:577.072500px;}
.y13e{bottom:577.202850px;}
.y20d{bottom:578.029200px;}
.y1d9{bottom:581.139450px;}
.y120{bottom:581.874150px;}
.y1a{bottom:586.498350px;}
.y23{bottom:588.101850px;}
.ybb{bottom:591.114600px;}
.y90{bottom:594.240750px;}
.y16f{bottom:595.694400px;}
.y6{bottom:597.364050px;}
.y5f{bottom:597.695100px;}
.y13d{bottom:598.208850px;}
.yfb{bottom:600.628800px;}
.y11f{bottom:602.874150px;}
.y1fd{bottom:608.131800px;}
.y20c{bottom:609.470700px;}
.y1d8{bottom:612.580950px;}
.yb7{bottom:615.240750px;}
.y1b7{bottom:616.668450px;}
.y16e{bottom:616.700400px;}
.y19{bottom:617.937450px;}
.y5e{bottom:618.695100px;}
.y13c{bottom:619.214850px;}
.y195{bottom:621.189450px;}
.y11e{bottom:623.874150px;}
.yfa{bottom:630.787800px;}
.y1b6{bottom:632.395950px;}
.yba{bottom:633.114600px;}
.yb6{bottom:636.240750px;}
.y194{bottom:636.916950px;}
.y1fc{bottom:637.467300px;}
.y16d{bottom:637.706400px;}
.y5d{bottom:639.695100px;}
.y13b{bottom:640.220850px;}
.y20b{bottom:640.912200px;}
.y1d7{bottom:644.022450px;}
.y11d{bottom:644.874150px;}
.y8f{bottom:657.240750px;}
.y16c{bottom:658.712400px;}
.y22c{bottom:659.379900px;}
.y5c{bottom:660.695100px;}
.yf9{bottom:660.946800px;}
.y13a{bottom:661.226850px;}
.y18{bottom:664.639950px;}
.y11c{bottom:665.874150px;}
.y1fb{bottom:668.908800px;}
.y20a{bottom:672.353700px;}
.y1d6{bottom:675.463950px;}
.y8e{bottom:678.240750px;}
.y1b5{bottom:679.551450px;}
.y16b{bottom:679.718400px;}
.y5b{bottom:681.695100px;}
.y139{bottom:682.232850px;}
.y17{bottom:682.635450px;}
.y193{bottom:684.072450px;}
.y22b{bottom:688.715400px;}
.yf8{bottom:691.105800px;}
.y1b4{bottom:695.278950px;}
.yb9{bottom:696.114600px;}
.y8d{bottom:699.240750px;}
.y192{bottom:699.799950px;}
.y1fa{bottom:700.350300px;}
.y16a{bottom:700.724400px;}
.y5a{bottom:702.695100px;}
.y209{bottom:703.795200px;}
.y1d5{bottom:706.905450px;}
.y11b{bottom:707.874150px;}
.y16{bottom:709.135950px;}
.y22a{bottom:720.156900px;}
.y8c{bottom:720.240750px;}
.yf7{bottom:721.264800px;}
.y169{bottom:721.730400px;}
.y59{bottom:723.695100px;}
.y15{bottom:727.135950px;}
.y1f9{bottom:731.791800px;}
.y208{bottom:735.236700px;}
.y1d4{bottom:738.346950px;}
.y8b{bottom:741.240750px;}
.y1b3{bottom:742.434450px;}
.y168{bottom:742.736400px;}
.y191{bottom:746.955450px;}
.y11a{bottom:749.923200px;}
.yf6{bottom:751.423800px;}
.y229{bottom:751.598400px;}
.y14{bottom:756.639900px;}
.y1b2{bottom:758.161950px;}
.y8a{bottom:762.240750px;}
.y190{bottom:762.682950px;}
.y1f8{bottom:763.233300px;}
.y167{bottom:763.742400px;}
.y58{bottom:765.695100px;}
.y207{bottom:766.678200px;}
.y1d3{bottom:769.788450px;}
.y13{bottom:774.639900px;}
.y1d2{bottom:777.888450px;}
.y119{bottom:778.610700px;}
.y1f7{bottom:779.433300px;}
.yf5{bottom:781.582800px;}
.y228{bottom:783.039900px;}
.y89{bottom:783.240750px;}
.y166{bottom:784.748400px;}
.y12{bottom:795.639900px;}
.y206{bottom:798.119700px;}
.y88{bottom:804.240750px;}
.y1b1{bottom:805.317450px;}
.y165{bottom:805.754400px;}
.y118{bottom:808.769700px;}
.y18f{bottom:809.838450px;}
.y1f6{bottom:810.874800px;}
.yf4{bottom:811.741800px;}
.y11{bottom:813.639900px;}
.y227{bottom:814.481400px;}
.y57{bottom:816.560850px;}
.y117{bottom:816.869700px;}
.y1d1{bottom:817.429950px;}
.y1b0{bottom:821.044950px;}
.y87{bottom:825.240750px;}
.y18e{bottom:825.565950px;}
.y164{bottom:826.760400px;}
.y205{bottom:829.561200px;}
.y56{bottom:832.304850px;}
.y10{bottom:834.639900px;}
.yf3{bottom:841.900800px;}
.y1f5{bottom:842.316300px;}
.y226{bottom:845.922900px;}
.y86{bottom:846.240750px;}
.y163{bottom:847.766400px;}
.y55{bottom:848.048850px;}
.y1d0{bottom:848.871450px;}
.yf2{bottom:850.000800px;}
.yf{bottom:852.639900px;}
.y116{bottom:855.128700px;}
.y204{bottom:861.002700px;}
.y115{bottom:863.228700px;}
.y54{bottom:863.792850px;}
.y85{bottom:867.240750px;}
.y1af{bottom:868.200450px;}
.y162{bottom:868.772400px;}
.y18d{bottom:872.721450px;}
.ye{bottom:873.639900px;}
.y1f4{bottom:873.757800px;}
.y225{bottom:877.364400px;}
.y53{bottom:879.536850px;}
.y1cf{bottom:880.312950px;}
.y1f3{bottom:881.857800px;}
.y1ae{bottom:883.927950px;}
.y84{bottom:888.240750px;}
.yf1{bottom:888.259800px;}
.y18c{bottom:888.448950px;}
.y161{bottom:889.778400px;}
.yd{bottom:891.639900px;}
.y203{bottom:892.444200px;}
.y52{bottom:895.280850px;}
.y114{bottom:901.487700px;}
.y224{bottom:908.805900px;}
.y83{bottom:909.240750px;}
.y160{bottom:910.784400px;}
.y51{bottom:911.024850px;}
.y1ce{bottom:911.754450px;}
.yc{bottom:912.639900px;}
.yf0{bottom:918.418800px;}
.y1f2{bottom:921.399300px;}
.y202{bottom:923.885700px;}
.y50{bottom:926.768850px;}
.y1f1{bottom:929.499300px;}
.y82{bottom:930.240750px;}
.yb{bottom:930.639900px;}
.y1ad{bottom:931.083450px;}
.y113{bottom:931.646700px;}
.y15f{bottom:931.790400px;}
.y223{bottom:940.247400px;}
.y4f{bottom:942.512850px;}
.y1cd{bottom:943.195950px;}
.y1ac{bottom:946.810950px;}
.y18b{bottom:947.443950px;}
.yef{bottom:948.577800px;}
.y81{bottom:951.240750px;}
.y15e{bottom:952.796400px;}
.y189{bottom:955.057950px;}
.y201{bottom:955.327200px;}
.y4e{bottom:958.256850px;}
.ya{bottom:960.143850px;}
.y112{bottom:961.805700px;}
.y1f0{bottom:969.040800px;}
.y188{bottom:971.257950px;}
.y222{bottom:971.688900px;}
.y80{bottom:972.240750px;}
.y15d{bottom:973.802400px;}
.y4d{bottom:974.000850px;}
.y1cc{bottom:974.637450px;}
.yee{bottom:978.736800px;}
.y9{bottom:983.543850px;}
.y200{bottom:986.766300px;}
.y4c{bottom:989.744850px;}
.y18a{bottom:990.724950px;}
.y111{bottom:991.964700px;}
.y7f{bottom:993.240750px;}
.y1ab{bottom:993.966450px;}
.y15c{bottom:994.808400px;}
.y1ef{bottom:1000.482300px;}
.y1ff{bottom:1001.643450px;}
.y221{bottom:1003.130400px;}
.y4b{bottom:1005.488850px;}
.y1cb{bottom:1006.078950px;}
.yed{bottom:1008.895800px;}
.y1aa{bottom:1009.693950px;}
.y45{bottom:1013.593350px;}
.y7e{bottom:1014.240750px;}
.y15b{bottom:1015.814400px;}
.y1ee{bottom:1016.682300px;}
.y1fe{bottom:1017.843450px;}
.y8{bottom:1020.443850px;}
.y4a{bottom:1021.232850px;}
.y110{bottom:1022.123700px;}
.y44{bottom:1030.846350px;}
.y220{bottom:1034.571900px;}
.y7d{bottom:1035.240750px;}
.y15a{bottom:1036.820400px;}
.y49{bottom:1036.976850px;}
.y1ca{bottom:1037.520450px;}
.yec{bottom:1039.054800px;}
.y1c9{bottom:1045.620450px;}
.y7{bottom:1047.443850px;}
.y43{bottom:1048.099350px;}
.y1ed{bottom:1048.123800px;}
.y10f{bottom:1052.282700px;}
.y48{bottom:1052.720850px;}
.yeb{bottom:1054.134300px;}
.y7c{bottom:1056.240750px;}
.y159{bottom:1057.826400px;}
.y1ec{bottom:1064.323800px;}
.y42{bottom:1065.352350px;}
.y21f{bottom:1066.011000px;}
.y47{bottom:1068.464850px;}
.y1a9{bottom:1068.688950px;}
.y1a7{bottom:1076.302950px;}
.y7b{bottom:1077.240750px;}
.y158{bottom:1078.832400px;}
.y21e{bottom:1080.888150px;}
.y10e{bottom:1082.441700px;}
.y41{bottom:1082.605350px;}
.y46{bottom:1084.208850px;}
.y1a6{bottom:1092.502950px;}
.y1eb{bottom:1095.765300px;}
.y21d{bottom:1097.088150px;}
.y10d{bottom:1097.521200px;}
.y7a{bottom:1098.240750px;}
.y157{bottom:1099.838400px;}
.y1ea{bottom:1103.865300px;}
.yea{bottom:1104.644400px;}
.y40{bottom:1111.540500px;}
.y1a8{bottom:1111.969950px;}
.y79{bottom:1119.240750px;}
.ye9{bottom:1120.844400px;}
.y5{bottom:1130.570850px;}
.y4{bottom:1148.570850px;}
.y3{bottom:1166.570850px;}
.y2{bottom:1184.570850px;}
.y1{bottom:1202.570850px;}
.y3d{bottom:1204.595550px;}
.h3{height:39.216000px;}
.h9{height:41.364000px;}
.hc{height:42.480000px;}
.h10{height:42.708501px;}
.h4{height:43.440000px;}
.h15{height:44.118000px;}
.h2{height:45.312000px;}
.hb{height:48.144000px;}
.he{height:49.020000px;}
.h12{height:50.282227px;}
.h11{height:50.436000px;}
.h7{height:50.556000px;}
.h8{height:50.976000px;}
.ha{height:53.075684px;}
.hd{height:56.040000px;}
.hf{height:56.640000px;}
.h6{height:72.629883px;}
.h14{height:83.376000px;}
.h5{height:84.960000px;}
.h13{height:111.294000px;}
.h16{height:113.832000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:29.763750px;}
.x1a{left:63.779550px;}
.x23{left:65.043450px;}
.x16{left:69.779700px;}
.x21{left:70.864800px;}
.x19{left:77.329500px;}
.x24{left:78.832950px;}
.x32{left:82.553550px;}
.x1b{left:85.034550px;}
.x2e{left:88.677600px;}
.x29{left:90.500100px;}
.x2d{left:92.565600px;}
.x7{left:93.763200px;}
.x2f{left:94.874100px;}
.x46{left:95.877900px;}
.x28{left:97.799550px;}
.x27{left:112.034550px;}
.x9{left:118.276350px;}
.x20{left:123.800250px;}
.x26{left:170.025450px;}
.x2b{left:184.419600px;}
.x2a{left:186.606600px;}
.x33{left:192.707700px;}
.x2{left:198.744000px;}
.x1{left:204.840000px;}
.x8{left:212.000700px;}
.x34{left:219.451200px;}
.x22{left:220.795800px;}
.x35{left:246.370200px;}
.x3{left:248.892000px;}
.xa{left:262.790850px;}
.x1f{left:265.637100px;}
.x36{left:273.329700px;}
.x10{left:278.883300px;}
.x12{left:280.510200px;}
.xc{left:287.496000px;}
.xe{left:289.919400px;}
.x14{left:293.206800px;}
.x4{left:297.684000px;}
.x37{left:300.329700px;}
.xb{left:321.849450px;}
.x25{left:327.907950px;}
.x11{left:336.980400px;}
.x17{left:338.716650px;}
.x15{left:354.684750px;}
.xd{left:356.804400px;}
.xf{left:375.465750px;}
.x38{left:381.329700px;}
.x13{left:395.892750px;}
.x5{left:399.347850px;}
.x39{left:408.329700px;}
.x3a{left:435.329700px;}
.x3b{left:462.329700px;}
.x3c{left:489.329700px;}
.x2c{left:515.655600px;}
.x1d{left:543.960600px;}
.x3d{left:570.329700px;}
.x1e{left:571.962450px;}
.x3e{left:597.329700px;}
.x3f{left:624.329700px;}
.x40{left:651.329700px;}
.x41{left:678.329700px;}
.x42{left:705.329700px;}
.x31{left:706.832550px;}
.x30{left:720.170550px;}
.x43{left:744.344700px;}
.x44{left:783.359700px;}
.x45{left:810.359700px;}
.x1c{left:853.242000px;}
.x6{left:860.321850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v3{vertical-align:28.800000pt;}
.v2{vertical-align:53.616000pt;}
.v4{vertical-align:55.872000pt;}
.ls10{letter-spacing:-3.360000pt;}
.ls11{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.768000pt;}
.ls3{letter-spacing:-0.680000pt;}
.ls4{letter-spacing:-0.600000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.085333pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.266667pt;}
.lsb{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.746667pt;}
.ls8{letter-spacing:1.280000pt;}
.ls9{letter-spacing:1.333333pt;}
.lsf{letter-spacing:4.857600pt;}
.ls0{letter-spacing:5.066667pt;}
.ls1{letter-spacing:6.573333pt;}
.lsd{letter-spacing:15.220800pt;}
.lsc{letter-spacing:66.346667pt;}
.wsaf{word-spacing:-53.333333pt;}
.ws56{word-spacing:-48.000000pt;}
.ws17{word-spacing:-40.533333pt;}
.ws58{word-spacing:-15.146667pt;}
.ws57{word-spacing:-14.613333pt;}
.ws61{word-spacing:-14.133333pt;}
.ws1a{word-spacing:-13.866667pt;}
.ws18{word-spacing:-13.546667pt;}
.wsbc{word-spacing:-12.480000pt;}
.ws1{word-spacing:-11.786667pt;}
.wscb{word-spacing:-11.712000pt;}
.ws0{word-spacing:-11.093333pt;}
.wsef{word-spacing:-9.072000pt;}
.ws40{word-spacing:-8.084267pt;}
.wsbf{word-spacing:-7.584000pt;}
.wsc0{word-spacing:-6.288000pt;}
.wse8{word-spacing:-5.472000pt;}
.ws3{word-spacing:-5.066667pt;}
.wsc9{word-spacing:-5.040000pt;}
.ws7b{word-spacing:-4.586667pt;}
.wsf4{word-spacing:-3.888000pt;}
.ws51{word-spacing:-3.786667pt;}
.ws19{word-spacing:-3.600000pt;}
.ws30{word-spacing:-3.573333pt;}
.wsed{word-spacing:-3.504000pt;}
.ws71{word-spacing:-3.413333pt;}
.wsa8{word-spacing:-3.200000pt;}
.wsf5{word-spacing:-3.072000pt;}
.ws15{word-spacing:-3.037333pt;}
.ws5b{word-spacing:-2.773333pt;}
.ws91{word-spacing:-2.666667pt;}
.wsae{word-spacing:-2.560000pt;}
.ws79{word-spacing:-2.506667pt;}
.wse6{word-spacing:-2.352000pt;}
.wsba{word-spacing:-2.293333pt;}
.ws89{word-spacing:-2.240000pt;}
.ws7a{word-spacing:-2.186667pt;}
.ws2d{word-spacing:-2.133333pt;}
.wsb9{word-spacing:-2.080000pt;}
.ws64{word-spacing:-2.026667pt;}
.wsd6{word-spacing:-2.016000pt;}
.ws70{word-spacing:-1.973333pt;}
.ws27{word-spacing:-1.920000pt;}
.ws7{word-spacing:-1.834667pt;}
.ws3f{word-spacing:-1.813333pt;}
.ws90{word-spacing:-1.760000pt;}
.ws3d{word-spacing:-1.706667pt;}
.ws6e{word-spacing:-1.600000pt;}
.ws77{word-spacing:-1.546667pt;}
.wsc{word-spacing:-1.493333pt;}
.ws92{word-spacing:-1.333333pt;}
.wsb4{word-spacing:-1.280000pt;}
.wse4{word-spacing:-1.248000pt;}
.ws20{word-spacing:-1.237333pt;}
.ws9{word-spacing:-1.152000pt;}
.wsb3{word-spacing:-1.120000pt;}
.wsc3{word-spacing:-1.104000pt;}
.ws2f{word-spacing:-1.066667pt;}
.wse3{word-spacing:-1.008000pt;}
.ws38{word-spacing:-0.960000pt;}
.wse9{word-spacing:-0.912000pt;}
.ws52{word-spacing:-0.906667pt;}
.wsdc{word-spacing:-0.864000pt;}
.wsb1{word-spacing:-0.800000pt;}
.ws5c{word-spacing:-0.746667pt;}
.wsd{word-spacing:-0.725333pt;}
.wsec{word-spacing:-0.720000pt;}
.ws35{word-spacing:-0.693333pt;}
.ws87{word-spacing:-0.640000pt;}
.ws54{word-spacing:-0.586667pt;}
.wseb{word-spacing:-0.576000pt;}
.ws11{word-spacing:-0.554667pt;}
.ws6d{word-spacing:-0.533333pt;}
.ws31{word-spacing:-0.480000pt;}
.ws24{word-spacing:-0.426667pt;}
.ws1f{word-spacing:-0.384000pt;}
.ws75{word-spacing:-0.373333pt;}
.ws2e{word-spacing:-0.320000pt;}
.ws67{word-spacing:-0.266667pt;}
.ws22{word-spacing:-0.256000pt;}
.wsd2{word-spacing:-0.240000pt;}
.ws21{word-spacing:-0.213333pt;}
.wsb8{word-spacing:-0.160000pt;}
.wsa{word-spacing:-0.085333pt;}
.wsb2{word-spacing:-0.053333pt;}
.ws2{word-spacing:0.000000pt;}
.ws7d{word-spacing:0.053333pt;}
.ws12{word-spacing:0.085333pt;}
.wsb6{word-spacing:0.160000pt;}
.ws8{word-spacing:0.170667pt;}
.ws6{word-spacing:0.213333pt;}
.ws25{word-spacing:0.256000pt;}
.ws47{word-spacing:0.266667pt;}
.ws28{word-spacing:0.320000pt;}
.ws124{word-spacing:0.426667pt;}
.ws41{word-spacing:0.480000pt;}
.ws29{word-spacing:0.533333pt;}
.wse{word-spacing:0.554667pt;}
.wsdb{word-spacing:0.576000pt;}
.ws2a{word-spacing:0.586667pt;}
.ws6a{word-spacing:0.640000pt;}
.ws1b{word-spacing:0.680000pt;}
.ws50{word-spacing:0.693333pt;}
.ws83{word-spacing:0.746667pt;}
.wsd7{word-spacing:0.768000pt;}
.ws62{word-spacing:0.800000pt;}
.wsf{word-spacing:0.810667pt;}
.ws44{word-spacing:0.853333pt;}
.wse2{word-spacing:0.864000pt;}
.wsa3{word-spacing:0.906667pt;}
.ws68{word-spacing:0.960000pt;}
.wsbd{word-spacing:1.056000pt;}
.ws4f{word-spacing:1.066667pt;}
.ws86{word-spacing:1.120000pt;}
.ws5d{word-spacing:1.280000pt;}
.ws6f{word-spacing:1.333333pt;}
.wsf3{word-spacing:1.344000pt;}
.ws2c{word-spacing:1.386667pt;}
.ws63{word-spacing:1.440000pt;}
.wsbb{word-spacing:1.493333pt;}
.wsad{word-spacing:1.600000pt;}
.ws7c{word-spacing:1.653333pt;}
.wsd1{word-spacing:1.680000pt;}
.ws65{word-spacing:1.706667pt;}
.ws66{word-spacing:1.760000pt;}
.ws32{word-spacing:1.813333pt;}
.ws33{word-spacing:1.866667pt;}
.ws13{word-spacing:1.920000pt;}
.ws36{word-spacing:1.973333pt;}
.wsc6{word-spacing:2.064000pt;}
.ws8f{word-spacing:2.133333pt;}
.wsd3{word-spacing:2.208000pt;}
.wsac{word-spacing:2.240000pt;}
.wsd0{word-spacing:2.256000pt;}
.ws4b{word-spacing:2.293333pt;}
.ws4{word-spacing:2.346667pt;}
.ws34{word-spacing:2.400000pt;}
.ws88{word-spacing:2.453333pt;}
.ws9b{word-spacing:2.506667pt;}
.ws4d{word-spacing:2.560000pt;}
.ws55{word-spacing:2.666667pt;}
.ws7f{word-spacing:2.720000pt;}
.ws1c{word-spacing:2.730667pt;}
.ws78{word-spacing:2.880000pt;}
.wsd8{word-spacing:2.928000pt;}
.ws8a{word-spacing:2.933333pt;}
.wsbe{word-spacing:2.976000pt;}
.ws59{word-spacing:2.986667pt;}
.ws8b{word-spacing:3.040000pt;}
.ws3b{word-spacing:3.093333pt;}
.ws5{word-spacing:3.114667pt;}
.ws72{word-spacing:3.146667pt;}
.ws10{word-spacing:3.157333pt;}
.wsb5{word-spacing:3.200000pt;}
.wse7{word-spacing:3.216000pt;}
.wsb0{word-spacing:3.253333pt;}
.wsea{word-spacing:3.312000pt;}
.ws4c{word-spacing:3.314225pt;}
.ws93{word-spacing:3.360000pt;}
.wsb{word-spacing:3.370667pt;}
.wsf8{word-spacing:3.408000pt;}
.ws8e{word-spacing:3.413333pt;}
.wsce{word-spacing:3.456000pt;}
.ws43{word-spacing:3.520000pt;}
.ws3e{word-spacing:3.573333pt;}
.ws9c{word-spacing:3.680000pt;}
.ws82{word-spacing:3.733333pt;}
.wsc7{word-spacing:3.744000pt;}
.ws95{word-spacing:3.786667pt;}
.ws26{word-spacing:3.840000pt;}
.wscf{word-spacing:3.888000pt;}
.ws46{word-spacing:3.946667pt;}
.wsee{word-spacing:3.984000pt;}
.ws97{word-spacing:4.053333pt;}
.wsd9{word-spacing:4.080000pt;}
.wsc5{word-spacing:4.128000pt;}
.ws4e{word-spacing:4.160000pt;}
.wsa1{word-spacing:4.213333pt;}
.wsa2{word-spacing:4.266667pt;}
.wse0{word-spacing:4.272000pt;}
.wsb7{word-spacing:4.320000pt;}
.wsa9{word-spacing:4.373333pt;}
.ws73{word-spacing:4.426667pt;}
.wsd5{word-spacing:4.608000pt;}
.ws37{word-spacing:4.746667pt;}
.wsf6{word-spacing:4.752000pt;}
.ws69{word-spacing:4.853333pt;}
.wsc2{word-spacing:4.896000pt;}
.ws3c{word-spacing:5.013333pt;}
.ws81{word-spacing:5.120000pt;}
.wsaa{word-spacing:5.226667pt;}
.wsda{word-spacing:5.232000pt;}
.ws96{word-spacing:5.386667pt;}
.wsf1{word-spacing:5.424000pt;}
.ws5f{word-spacing:5.546667pt;}
.ws53{word-spacing:5.600000pt;}
.wsf2{word-spacing:5.616000pt;}
.ws9a{word-spacing:5.706667pt;}
.ws1e{word-spacing:5.717333pt;}
.wsf0{word-spacing:5.760000pt;}
.ws6b{word-spacing:5.813333pt;}
.ws23{word-spacing:5.973333pt;}
.ws6c{word-spacing:6.026667pt;}
.ws1d{word-spacing:6.101333pt;}
.ws85{word-spacing:6.186667pt;}
.ws49{word-spacing:6.240000pt;}
.ws45{word-spacing:6.293333pt;}
.wse5{word-spacing:6.384000pt;}
.ws80{word-spacing:6.400000pt;}
.ws7e{word-spacing:6.453333pt;}
.ws5a{word-spacing:6.560000pt;}
.ws14{word-spacing:6.573333pt;}
.ws9e{word-spacing:6.613333pt;}
.ws94{word-spacing:6.720000pt;}
.ws98{word-spacing:6.826667pt;}
.ws76{word-spacing:6.880000pt;}
.ws3a{word-spacing:6.986667pt;}
.ws48{word-spacing:7.040000pt;}
.ws4a{word-spacing:7.093333pt;}
.wsab{word-spacing:7.200000pt;}
.wsc1{word-spacing:7.248000pt;}
.wsdf{word-spacing:7.296000pt;}
.ws60{word-spacing:7.466667pt;}
.wse1{word-spacing:7.584000pt;}
.wsa0{word-spacing:7.626667pt;}
.ws8d{word-spacing:7.733333pt;}
.ws5e{word-spacing:7.786667pt;}
.ws42{word-spacing:7.946667pt;}
.ws74{word-spacing:8.053333pt;}
.ws39{word-spacing:8.106667pt;}
.ws8c{word-spacing:8.160000pt;}
.wsd4{word-spacing:8.208000pt;}
.ws99{word-spacing:8.266667pt;}
.wsdd{word-spacing:8.544000pt;}
.ws9f{word-spacing:9.546667pt;}
.ws2b{word-spacing:9.920000pt;}
.wsde{word-spacing:10.272000pt;}
.wsf7{word-spacing:11.472000pt;}
.ws9d{word-spacing:12.160000pt;}
.ws84{word-spacing:12.426667pt;}
.wscc{word-spacing:12.624000pt;}
.wsc8{word-spacing:13.296000pt;}
.wsc4{word-spacing:15.120000pt;}
.wsca{word-spacing:15.552000pt;}
.wscd{word-spacing:27.312000pt;}
.ws122{word-spacing:55.104000pt;}
.ws11d{word-spacing:55.248000pt;}
.ws11f{word-spacing:55.392000pt;}
.wsf9{word-spacing:65.040000pt;}
.wsfd{word-spacing:69.888000pt;}
.wsfc{word-spacing:71.424000pt;}
.wsff{word-spacing:73.632000pt;}
.wsfb{word-spacing:75.600000pt;}
.wsfa{word-spacing:81.600000pt;}
.ws11e{word-spacing:98.112000pt;}
.ws123{word-spacing:128.064000pt;}
.ws125{word-spacing:132.864000pt;}
.ws118{word-spacing:142.992000pt;}
.ws11c{word-spacing:151.536000pt;}
.ws119{word-spacing:158.352000pt;}
.wsa7{word-spacing:175.776000pt;}
.wsa5{word-spacing:180.672000pt;}
.ws100{word-spacing:231.504000pt;}
.ws10b{word-spacing:237.408000pt;}
.ws10c{word-spacing:238.464000pt;}
.ws112{word-spacing:242.160000pt;}
.ws103{word-spacing:242.448000pt;}
.ws111{word-spacing:243.552000pt;}
.ws102{word-spacing:243.792000pt;}
.ws10d{word-spacing:244.656000pt;}
.ws105{word-spacing:245.088000pt;}
.wsfe{word-spacing:245.328000pt;}
.ws106{word-spacing:246.144000pt;}
.ws108{word-spacing:246.288000pt;}
.ws109{word-spacing:247.392000pt;}
.ws110{word-spacing:248.352000pt;}
.ws10e{word-spacing:248.592000pt;}
.ws101{word-spacing:248.880000pt;}
.ws114{word-spacing:249.408000pt;}
.ws10f{word-spacing:249.696000pt;}
.ws113{word-spacing:250.800000pt;}
.ws104{word-spacing:251.040000pt;}
.ws107{word-spacing:252.336000pt;}
.ws116{word-spacing:253.392000pt;}
.ws10a{word-spacing:253.536000pt;}
.ws115{word-spacing:255.600000pt;}
.ws121{word-spacing:343.392000pt;}
.wsa6{word-spacing:389.088000pt;}
.ws120{word-spacing:439.392000pt;}
.wsa4{word-spacing:604.032000pt;}
.ws16{word-spacing:612.514400pt;}
.ws11a{word-spacing:1572.960000pt;}
.ws117{word-spacing:1750.080000pt;}
.ws11b{word-spacing:1777.584000pt;}
._30{margin-left:-43.520000pt;}
._6{margin-left:-19.164533pt;}
._3b{margin-left:-9.700267pt;}
._3a{margin-left:-8.757867pt;}
._e{margin-left:-7.827200pt;}
._35{margin-left:-6.288000pt;}
._37{margin-left:-5.220800pt;}
._9{margin-left:-4.206933pt;}
._2{margin-left:-3.041067pt;}
._0{margin-left:-1.288533pt;}
._4{width:1.348267pt;}
._a{width:2.241067pt;}
._c{width:3.133867pt;}
._8{width:4.548267pt;}
._7{width:5.516800pt;}
._b{width:6.657067pt;}
._5{width:8.140800pt;}
._d{width:9.139200pt;}
._36{width:13.624533pt;}
._34{width:15.141333pt;}
._32{width:16.872533pt;}
._31{width:17.981867pt;}
._33{width:19.394133pt;}
._39{width:26.519467pt;}
._38{width:27.463467pt;}
._1{width:43.721600pt;}
._78{width:68.112000pt;}
._3c{width:82.560000pt;}
._3d{width:84.576000pt;}
._3f{width:85.675733pt;}
._f{width:88.656000pt;}
._42{width:91.680000pt;}
._41{width:93.984000pt;}
._3e{width:95.266133pt;}
._43{width:96.768000pt;}
._45{width:109.776000pt;}
._44{width:111.456000pt;}
._12{width:113.616000pt;}
._63{width:114.546133pt;}
._46{width:126.000000pt;}
._13{width:128.680533pt;}
._48{width:131.568000pt;}
._47{width:136.656000pt;}
._17{width:139.728000pt;}
._96{width:142.752000pt;}
._4d{width:146.344533pt;}
._11{width:147.600000pt;}
._2d{width:152.160000pt;}
._19{width:154.080000pt;}
._61{width:156.000000pt;}
._4b{width:161.568000pt;}
._92{width:162.960000pt;}
._59{width:164.016000pt;}
._29{width:165.888000pt;}
._18{width:167.184000pt;}
._4f{width:168.096000pt;}
._5c{width:170.688000pt;}
._1f{width:175.968000pt;}
._1e{width:178.704000pt;}
._16{width:179.664000pt;}
._14{width:181.776000pt;}
._22{width:183.408000pt;}
._25{width:185.856000pt;}
._2c{width:187.776000pt;}
._1b{width:188.832000pt;}
._2b{width:190.512000pt;}
._2e{width:192.672000pt;}
._2a{width:195.054933pt;}
._23{width:196.590933pt;}
._27{width:199.038933pt;}
._40{width:202.176000pt;}
._2f{width:203.118933pt;}
._1d{width:206.640000pt;}
._20{width:207.600000pt;}
._75{width:218.544000pt;}
._66{width:224.898133pt;}
._95{width:229.248000pt;}
._7c{width:230.880000pt;}
._84{width:232.128000pt;}
._85{width:233.232000pt;}
._89{width:234.432000pt;}
._79{width:235.920000pt;}
._81{width:238.080000pt;}
._87{width:240.222933pt;}
._8b{width:241.470933pt;}
._74{width:249.168000pt;}
._8a{width:258.192000pt;}
._72{width:259.872000pt;}
._21{width:275.808000pt;}
._62{width:281.970133pt;}
._1c{width:288.528000pt;}
._7e{width:302.592000pt;}
._15{width:303.792000pt;}
._28{width:306.232533pt;}
._26{width:316.848000pt;}
._67{width:323.346133pt;}
._7f{width:325.248000pt;}
._71{width:328.128000pt;}
._91{width:331.392000pt;}
._24{width:333.688533pt;}
._6e{width:335.538133pt;}
._10{width:344.688000pt;}
._97{width:345.984000pt;}
._60{width:351.282133pt;}
._7d{width:355.344000pt;}
._9b{width:356.718933pt;}
._58{width:369.393067pt;}
._1a{width:386.688000pt;}
._65{width:392.322133pt;}
._5a{width:410.769067pt;}
._8d{width:417.120000pt;}
._94{width:420.816000pt;}
._6d{width:423.193600pt;}
._9a{width:427.248000pt;}
._86{width:431.838933pt;}
._7b{width:441.312000pt;}
._54{width:446.872533pt;}
._8f{width:450.576000pt;}
._76{width:451.488000pt;}
._8e{width:452.526933pt;}
._3{width:498.531200pt;}
._8c{width:512.064000pt;}
._98{width:524.064000pt;}
._77{width:547.872000pt;}
._6f{width:551.992533pt;}
._4e{width:609.633067pt;}
._5b{width:621.825067pt;}
._99{width:627.102933pt;}
._56{width:631.104000pt;}
._83{width:643.872000pt;}
._50{width:651.009067pt;}
._5e{width:662.425600pt;}
._57{width:672.480000pt;}
._6c{width:684.904533pt;}
._5d{width:719.985067pt;}
._5f{width:735.345067pt;}
._4a{width:738.432000pt;}
._7a{width:739.872000pt;}
._49{width:751.488000pt;}
._69{width:774.432000pt;}
._4c{width:779.808000pt;}
._55{width:792.232533pt;}
._88{width:835.440000pt;}
._53{width:905.065600pt;}
._82{width:931.488000pt;}
._52{width:989.616000pt;}
._73{width:1027.872000pt;}
._51{width:1068.912000pt;}
._90{width:1113.696000pt;}
._80{width:1123.728000pt;}
._93{width:1219.200000pt;}
._6b{width:1220.152533pt;}
._70{width:1323.504000pt;}
._68{width:1418.056533pt;}
._6a{width:1459.432533pt;}
._64{width:1503.984000pt;}
.fsa{font-size:31.093333pt;}
.fs8{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:54.331554pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:18.897600pt;}
.y3c{bottom:28.203467pt;}
.y3b{bottom:41.803467pt;}
.y3a{bottom:55.403467pt;}
.y78{bottom:64.617867pt;}
.y156{bottom:64.941200pt;}
.yd0{bottom:65.861867pt;}
.ye7{bottom:65.986533pt;}
.y39{bottom:69.003467pt;}
.y138{bottom:69.221467pt;}
.y10c{bottom:78.156267pt;}
.yb5{bottom:78.601467pt;}
.ya6{bottom:80.214000pt;}
.y187{bottom:81.378133pt;}
.y22e{bottom:81.896933pt;}
.y38{bottom:82.603467pt;}
.y22d{bottom:83.153733pt;}
.y77{bottom:83.284533pt;}
.y155{bottom:83.613200pt;}
.ycf{bottom:84.528533pt;}
.ye6{bottom:84.653200pt;}
.y137{bottom:87.888133pt;}
.y21c{bottom:94.583733pt;}
.y1e9{bottom:96.496400pt;}
.yb4{bottom:97.268133pt;}
.ya5{bottom:98.880667pt;}
.y186{bottom:100.050133pt;}
.y1c7{bottom:100.981733pt;}
.y76{bottom:101.951200pt;}
.y154{bottom:102.285200pt;}
.yce{bottom:103.195200pt;}
.ye5{bottom:103.319867pt;}
.y10b{bottom:104.964267pt;}
.y1a5{bottom:105.000400pt;}
.y136{bottom:106.554800pt;}
.y1c6{bottom:114.961733pt;}
.yb3{bottom:115.934800pt;}
.ya4{bottom:117.547333pt;}
.y185{bottom:118.722133pt;}
.y1a4{bottom:118.980400pt;}
.y75{bottom:120.617867pt;}
.y153{bottom:120.957200pt;}
.ycd{bottom:121.861867pt;}
.ye4{bottom:121.986533pt;}
.y21b{bottom:122.531733pt;}
.y1e8{bottom:124.444400pt;}
.y135{bottom:125.221467pt;}
.y10a{bottom:131.772267pt;}
.yb2{bottom:134.601467pt;}
.ya3{bottom:136.214000pt;}
.y184{bottom:137.394133pt;}
.y74{bottom:139.284533pt;}
.y152{bottom:139.629200pt;}
.ycc{bottom:140.528533pt;}
.ye3{bottom:140.653200pt;}
.y134{bottom:143.888133pt;}
.y21a{bottom:150.479733pt;}
.y1e7{bottom:152.392400pt;}
.yb1{bottom:153.268133pt;}
.ya2{bottom:154.880667pt;}
.y183{bottom:156.066133pt;}
.y1c5{bottom:156.877733pt;}
.y73{bottom:157.951200pt;}
.y151{bottom:158.301200pt;}
.y109{bottom:158.580267pt;}
.ycb{bottom:159.195200pt;}
.ye2{bottom:159.319867pt;}
.y1a3{bottom:160.896400pt;}
.y133{bottom:162.554800pt;}
.y1e6{bottom:166.792400pt;}
.y1c4{bottom:170.857733pt;}
.yb0{bottom:171.934800pt;}
.ya1{bottom:173.547333pt;}
.y182{bottom:174.738133pt;}
.y1a2{bottom:174.876400pt;}
.y72{bottom:176.617867pt;}
.y150{bottom:176.973200pt;}
.yca{bottom:177.861867pt;}
.ye1{bottom:177.986533pt;}
.y219{bottom:178.427733pt;}
.y132{bottom:181.221467pt;}
.y108{bottom:185.388267pt;}
.yaf{bottom:190.601467pt;}
.ya0{bottom:192.214000pt;}
.y181{bottom:193.410133pt;}
.y1e5{bottom:194.740400pt;}
.y71{bottom:195.284533pt;}
.y14f{bottom:195.645200pt;}
.yc9{bottom:196.528533pt;}
.ye0{bottom:196.653200pt;}
.y131{bottom:199.888133pt;}
.y218{bottom:206.375733pt;}
.yae{bottom:209.268133pt;}
.y9f{bottom:210.880667pt;}
.y180{bottom:212.082133pt;}
.y107{bottom:212.196267pt;}
.y1c3{bottom:212.773733pt;}
.y70{bottom:213.951200pt;}
.y14e{bottom:214.317200pt;}
.ydf{bottom:215.319867pt;}
.y1a1{bottom:216.792400pt;}
.y130{bottom:218.554800pt;}
.y1e4{bottom:222.688400pt;}
.y1c2{bottom:226.753733pt;}
.yad{bottom:227.934800pt;}
.y9e{bottom:229.547333pt;}
.y17f{bottom:230.754133pt;}
.y1a0{bottom:230.772400pt;}
.y6f{bottom:232.617867pt;}
.y14d{bottom:232.989200pt;}
.yc8{bottom:233.861867pt;}
.yde{bottom:233.986533pt;}
.y217{bottom:234.323733pt;}
.y12f{bottom:237.221467pt;}
.y106{bottom:239.004267pt;}
.y1c8{bottom:242.593733pt;}
.y37{bottom:242.863867pt;}
.yac{bottom:246.601467pt;}
.y9d{bottom:248.214000pt;}
.y17e{bottom:249.426133pt;}
.y1e3{bottom:250.636400pt;}
.y6e{bottom:251.284533pt;}
.y14c{bottom:251.661200pt;}
.ydd{bottom:252.653200pt;}
.y12e{bottom:255.888133pt;}
.y36{bottom:256.858533pt;}
.y216{bottom:262.271733pt;}
.y1e2{bottom:265.036400pt;}
.yab{bottom:265.268133pt;}
.y105{bottom:265.812267pt;}
.y9c{bottom:266.880667pt;}
.y17d{bottom:268.098133pt;}
.y1c1{bottom:268.669733pt;}
.y6d{bottom:269.951200pt;}
.y14b{bottom:270.333200pt;}
.y35{bottom:270.853200pt;}
.ydc{bottom:271.319867pt;}
.y19f{bottom:272.688400pt;}
.y12d{bottom:274.554800pt;}
.y1c0{bottom:282.649733pt;}
.yc7{bottom:282.768533pt;}
.yaa{bottom:283.934800pt;}
.y34{bottom:284.847867pt;}
.y9b{bottom:285.547333pt;}
.y19e{bottom:286.668400pt;}
.y17c{bottom:286.770133pt;}
.y6c{bottom:288.617867pt;}
.y14a{bottom:289.005200pt;}
.ydb{bottom:289.986533pt;}
.y215{bottom:290.219733pt;}
.y104{bottom:292.620267pt;}
.y1e1{bottom:292.984400pt;}
.y12c{bottom:293.221467pt;}
.y33{bottom:298.842533pt;}
.yc6{bottom:301.435200pt;}
.y9a{bottom:304.214000pt;}
.y17b{bottom:305.442133pt;}
.y6b{bottom:307.284533pt;}
.y149{bottom:307.677200pt;}
.yda{bottom:308.653200pt;}
.y12b{bottom:311.888133pt;}
.y32{bottom:312.837200pt;}
.y214{bottom:318.167733pt;}
.y103{bottom:319.428267pt;}
.yc5{bottom:320.101867pt;}
.y1e0{bottom:320.932400pt;}
.ya9{bottom:321.268133pt;}
.y99{bottom:322.880667pt;}
.y17a{bottom:324.114133pt;}
.y1bf{bottom:324.565733pt;}
.y6a{bottom:325.951200pt;}
.y148{bottom:326.349200pt;}
.y31{bottom:326.831867pt;}
.yd9{bottom:327.319867pt;}
.y19d{bottom:328.584400pt;}
.y12a{bottom:330.554800pt;}
.y1be{bottom:338.545733pt;}
.yc4{bottom:338.768533pt;}
.y30{bottom:340.826533pt;}
.y98{bottom:341.547333pt;}
.y19c{bottom:342.564400pt;}
.y179{bottom:342.786133pt;}
.y69{bottom:344.617867pt;}
.y147{bottom:345.021200pt;}
.yd8{bottom:345.986533pt;}
.y213{bottom:346.115733pt;}
.y102{bottom:346.236267pt;}
.y1df{bottom:348.880400pt;}
.y129{bottom:349.221467pt;}
.y2f{bottom:354.821200pt;}
.yc3{bottom:357.435200pt;}
.y97{bottom:360.214000pt;}
.y178{bottom:361.458133pt;}
.y68{bottom:363.284533pt;}
.y146{bottom:363.693200pt;}
.yd7{bottom:364.653200pt;}
.y22{bottom:365.987867pt;}
.y128{bottom:367.888133pt;}
.y2e{bottom:368.815867pt;}
.y101{bottom:373.044267pt;}
.y212{bottom:374.063733pt;}
.yc2{bottom:376.101867pt;}
.y1de{bottom:376.828400pt;}
.ya8{bottom:377.268133pt;}
.y96{bottom:378.880667pt;}
.y177{bottom:380.130133pt;}
.y1bd{bottom:380.461733pt;}
.y21{bottom:381.323867pt;}
.y67{bottom:381.951200pt;}
.y145{bottom:382.365200pt;}
.y2d{bottom:382.810533pt;}
.yd6{bottom:383.319867pt;}
.y19b{bottom:384.480400pt;}
.y127{bottom:386.554800pt;}
.ya7{bottom:391.668133pt;}
.y1bc{bottom:394.441733pt;}
.yc1{bottom:394.768533pt;}
.y20{bottom:396.659867pt;}
.y2c{bottom:396.805200pt;}
.y95{bottom:397.547333pt;}
.y19a{bottom:398.460400pt;}
.y176{bottom:398.802133pt;}
.y100{bottom:399.852267pt;}
.y66{bottom:400.617867pt;}
.y144{bottom:401.037200pt;}
.yd5{bottom:401.986533pt;}
.y211{bottom:402.011733pt;}
.y1dd{bottom:404.776400pt;}
.y126{bottom:405.221467pt;}
.y2b{bottom:410.799867pt;}
.y1f{bottom:411.995867pt;}
.yc0{bottom:413.435200pt;}
.y94{bottom:416.214000pt;}
.y175{bottom:417.474133pt;}
.y65{bottom:419.284533pt;}
.y143{bottom:419.709200pt;}
.yd4{bottom:420.653200pt;}
.y125{bottom:423.888133pt;}
.y2a{bottom:424.794533pt;}
.yff{bottom:426.660267pt;}
.y1e{bottom:427.331867pt;}
.y210{bottom:429.959733pt;}
.ybf{bottom:432.101867pt;}
.y1dc{bottom:432.724400pt;}
.y93{bottom:434.880667pt;}
.y174{bottom:436.146133pt;}
.y1bb{bottom:436.357733pt;}
.y64{bottom:437.951200pt;}
.y142{bottom:438.381200pt;}
.y29{bottom:438.789200pt;}
.yd3{bottom:439.319867pt;}
.y199{bottom:440.376400pt;}
.y124{bottom:442.554800pt;}
.y1ba{bottom:450.337733pt;}
.ybe{bottom:450.768533pt;}
.y28{bottom:452.783867pt;}
.yfe{bottom:453.468267pt;}
.y92{bottom:453.547333pt;}
.y198{bottom:454.356400pt;}
.y173{bottom:454.818133pt;}
.y63{bottom:456.617867pt;}
.y141{bottom:457.053200pt;}
.y1d{bottom:457.865200pt;}
.y20f{bottom:457.907733pt;}
.y1db{bottom:460.672400pt;}
.y123{bottom:461.221467pt;}
.y27{bottom:466.778533pt;}
.ybd{bottom:469.435200pt;}
.ye8{bottom:472.214000pt;}
.y172{bottom:473.490133pt;}
.y62{bottom:475.284533pt;}
.y140{bottom:475.725200pt;}
.y122{bottom:479.888133pt;}
.yfd{bottom:480.276267pt;}
.y26{bottom:480.773200pt;}
.y20e{bottom:485.855733pt;}
.ybc{bottom:488.101867pt;}
.y1da{bottom:488.620400pt;}
.y1c{bottom:490.659867pt;}
.y91{bottom:490.880667pt;}
.y171{bottom:492.162133pt;}
.y1b9{bottom:492.253733pt;}
.y61{bottom:493.951200pt;}
.y13f{bottom:494.397200pt;}
.y25{bottom:494.767867pt;}
.yd2{bottom:495.319867pt;}
.y197{bottom:496.272400pt;}
.y121{bottom:498.554800pt;}
.y1b{bottom:505.995867pt;}
.y1b8{bottom:506.233733pt;}
.yfc{bottom:507.084267pt;}
.y24{bottom:508.762533pt;}
.yb8{bottom:509.547333pt;}
.yd1{bottom:509.719867pt;}
.y196{bottom:510.252400pt;}
.y170{bottom:510.834133pt;}
.y60{bottom:512.617867pt;}
.y3e{bottom:512.953333pt;}
.y13e{bottom:513.069200pt;}
.y20d{bottom:513.803733pt;}
.y1d9{bottom:516.568400pt;}
.y120{bottom:517.221467pt;}
.y1a{bottom:521.331867pt;}
.y23{bottom:522.757200pt;}
.ybb{bottom:525.435200pt;}
.y90{bottom:528.214000pt;}
.y16f{bottom:529.506133pt;}
.y6{bottom:530.990267pt;}
.y5f{bottom:531.284533pt;}
.y13d{bottom:531.741200pt;}
.yfb{bottom:533.892267pt;}
.y11f{bottom:535.888133pt;}
.y1fd{bottom:540.561600pt;}
.y20c{bottom:541.751733pt;}
.y1d8{bottom:544.516400pt;}
.yb7{bottom:546.880667pt;}
.y1b7{bottom:548.149733pt;}
.y16e{bottom:548.178133pt;}
.y19{bottom:549.277733pt;}
.y5e{bottom:549.951200pt;}
.y13c{bottom:550.413200pt;}
.y195{bottom:552.168400pt;}
.y11e{bottom:554.554800pt;}
.yfa{bottom:560.700267pt;}
.y1b6{bottom:562.129733pt;}
.yba{bottom:562.768533pt;}
.yb6{bottom:565.547333pt;}
.y194{bottom:566.148400pt;}
.y1fc{bottom:566.637600pt;}
.y16d{bottom:566.850133pt;}
.y5d{bottom:568.617867pt;}
.y13b{bottom:569.085200pt;}
.y20b{bottom:569.699733pt;}
.y1d7{bottom:572.464400pt;}
.y11d{bottom:573.221467pt;}
.y8f{bottom:584.214000pt;}
.y16c{bottom:585.522133pt;}
.y22c{bottom:586.115467pt;}
.y5c{bottom:587.284533pt;}
.yf9{bottom:587.508267pt;}
.y13a{bottom:587.757200pt;}
.y18{bottom:590.791067pt;}
.y11c{bottom:591.888133pt;}
.y1fb{bottom:594.585600pt;}
.y20a{bottom:597.647733pt;}
.y1d6{bottom:600.412400pt;}
.y8e{bottom:602.880667pt;}
.y1b5{bottom:604.045733pt;}
.y16b{bottom:604.194133pt;}
.y5b{bottom:605.951200pt;}
.y139{bottom:606.429200pt;}
.y17{bottom:606.787067pt;}
.y193{bottom:608.064400pt;}
.y22b{bottom:612.191467pt;}
.yf8{bottom:614.316267pt;}
.y1b4{bottom:618.025733pt;}
.yb9{bottom:618.768533pt;}
.y8d{bottom:621.547333pt;}
.y192{bottom:622.044400pt;}
.y1fa{bottom:622.533600pt;}
.y16a{bottom:622.866133pt;}
.y5a{bottom:624.617867pt;}
.y209{bottom:625.595733pt;}
.y1d5{bottom:628.360400pt;}
.y11b{bottom:629.221467pt;}
.y16{bottom:630.343067pt;}
.y22a{bottom:640.139467pt;}
.y8c{bottom:640.214000pt;}
.yf7{bottom:641.124267pt;}
.y169{bottom:641.538133pt;}
.y59{bottom:643.284533pt;}
.y15{bottom:646.343067pt;}
.y1f9{bottom:650.481600pt;}
.y208{bottom:653.543733pt;}
.y1d4{bottom:656.308400pt;}
.y8b{bottom:658.880667pt;}
.y1b3{bottom:659.941733pt;}
.y168{bottom:660.210133pt;}
.y191{bottom:663.960400pt;}
.y11a{bottom:666.598400pt;}
.yf6{bottom:667.932267pt;}
.y229{bottom:668.087467pt;}
.y14{bottom:672.568800pt;}
.y1b2{bottom:673.921733pt;}
.y8a{bottom:677.547333pt;}
.y190{bottom:677.940400pt;}
.y1f8{bottom:678.429600pt;}
.y167{bottom:678.882133pt;}
.y58{bottom:680.617867pt;}
.y207{bottom:681.491733pt;}
.y1d3{bottom:684.256400pt;}
.y13{bottom:688.568800pt;}
.y1d2{bottom:691.456400pt;}
.y119{bottom:692.098400pt;}
.y1f7{bottom:692.829600pt;}
.yf5{bottom:694.740267pt;}
.y228{bottom:696.035467pt;}
.y89{bottom:696.214000pt;}
.y166{bottom:697.554133pt;}
.y12{bottom:707.235467pt;}
.y206{bottom:709.439733pt;}
.y88{bottom:714.880667pt;}
.y1b1{bottom:715.837733pt;}
.y165{bottom:716.226133pt;}
.y118{bottom:718.906400pt;}
.y18f{bottom:719.856400pt;}
.y1f6{bottom:720.777600pt;}
.yf4{bottom:721.548267pt;}
.y11{bottom:723.235467pt;}
.y227{bottom:723.983467pt;}
.y57{bottom:725.831867pt;}
.y117{bottom:726.106400pt;}
.y1d1{bottom:726.604400pt;}
.y1b0{bottom:729.817733pt;}
.y87{bottom:733.547333pt;}
.y18e{bottom:733.836400pt;}
.y164{bottom:734.898133pt;}
.y205{bottom:737.387733pt;}
.y56{bottom:739.826533pt;}
.y10{bottom:741.902133pt;}
.yf3{bottom:748.356267pt;}
.y1f5{bottom:748.725600pt;}
.y226{bottom:751.931467pt;}
.y86{bottom:752.214000pt;}
.y163{bottom:753.570133pt;}
.y55{bottom:753.821200pt;}
.y1d0{bottom:754.552400pt;}
.yf2{bottom:755.556267pt;}
.yf{bottom:757.902133pt;}
.y116{bottom:760.114400pt;}
.y204{bottom:765.335733pt;}
.y115{bottom:767.314400pt;}
.y54{bottom:767.815867pt;}
.y85{bottom:770.880667pt;}
.y1af{bottom:771.733733pt;}
.y162{bottom:772.242133pt;}
.y18d{bottom:775.752400pt;}
.ye{bottom:776.568800pt;}
.y1f4{bottom:776.673600pt;}
.y225{bottom:779.879467pt;}
.y53{bottom:781.810533pt;}
.y1cf{bottom:782.500400pt;}
.y1f3{bottom:783.873600pt;}
.y1ae{bottom:785.713733pt;}
.y84{bottom:789.547333pt;}
.yf1{bottom:789.564267pt;}
.y18c{bottom:789.732400pt;}
.y161{bottom:790.914133pt;}
.yd{bottom:792.568800pt;}
.y203{bottom:793.283733pt;}
.y52{bottom:795.805200pt;}
.y114{bottom:801.322400pt;}
.y224{bottom:807.827467pt;}
.y83{bottom:808.214000pt;}
.y160{bottom:809.586133pt;}
.y51{bottom:809.799867pt;}
.y1ce{bottom:810.448400pt;}
.yc{bottom:811.235467pt;}
.yf0{bottom:816.372267pt;}
.y1f2{bottom:819.021600pt;}
.y202{bottom:821.231733pt;}
.y50{bottom:823.794533pt;}
.y1f1{bottom:826.221600pt;}
.y82{bottom:826.880667pt;}
.yb{bottom:827.235467pt;}
.y1ad{bottom:827.629733pt;}
.y113{bottom:828.130400pt;}
.y15f{bottom:828.258133pt;}
.y223{bottom:835.775467pt;}
.y4f{bottom:837.789200pt;}
.y1cd{bottom:838.396400pt;}
.y1ac{bottom:841.609733pt;}
.y18b{bottom:842.172400pt;}
.yef{bottom:843.180267pt;}
.y81{bottom:845.547333pt;}
.y15e{bottom:846.930133pt;}
.y189{bottom:848.940400pt;}
.y201{bottom:849.179733pt;}
.y4e{bottom:851.783867pt;}
.ya{bottom:853.461200pt;}
.y112{bottom:854.938400pt;}
.y1f0{bottom:861.369600pt;}
.y188{bottom:863.340400pt;}
.y222{bottom:863.723467pt;}
.y80{bottom:864.214000pt;}
.y15d{bottom:865.602133pt;}
.y4d{bottom:865.778533pt;}
.y1cc{bottom:866.344400pt;}
.yee{bottom:869.988267pt;}
.y9{bottom:874.261200pt;}
.y200{bottom:877.125600pt;}
.y4c{bottom:879.773200pt;}
.y18a{bottom:880.644400pt;}
.y111{bottom:881.746400pt;}
.y7f{bottom:882.880667pt;}
.y1ab{bottom:883.525733pt;}
.y15c{bottom:884.274133pt;}
.y1ef{bottom:889.317600pt;}
.y1ff{bottom:890.349733pt;}
.y221{bottom:891.671467pt;}
.y4b{bottom:893.767867pt;}
.y1cb{bottom:894.292400pt;}
.yed{bottom:896.796267pt;}
.y1aa{bottom:897.505733pt;}
.y45{bottom:900.971867pt;}
.y7e{bottom:901.547333pt;}
.y15b{bottom:902.946133pt;}
.y1ee{bottom:903.717600pt;}
.y1fe{bottom:904.749733pt;}
.y8{bottom:907.061200pt;}
.y4a{bottom:907.762533pt;}
.y110{bottom:908.554400pt;}
.y44{bottom:916.307867pt;}
.y220{bottom:919.619467pt;}
.y7d{bottom:920.214000pt;}
.y15a{bottom:921.618133pt;}
.y49{bottom:921.757200pt;}
.y1ca{bottom:922.240400pt;}
.yec{bottom:923.604267pt;}
.y1c9{bottom:929.440400pt;}
.y7{bottom:931.061200pt;}
.y43{bottom:931.643867pt;}
.y1ed{bottom:931.665600pt;}
.y10f{bottom:935.362400pt;}
.y48{bottom:935.751867pt;}
.yeb{bottom:937.008267pt;}
.y7c{bottom:938.880667pt;}
.y159{bottom:940.290133pt;}
.y1ec{bottom:946.065600pt;}
.y42{bottom:946.979867pt;}
.y21f{bottom:947.565333pt;}
.y47{bottom:949.746533pt;}
.y1a9{bottom:949.945733pt;}
.y1a7{bottom:956.713733pt;}
.y7b{bottom:957.547333pt;}
.y158{bottom:958.962133pt;}
.y21e{bottom:960.789467pt;}
.y10e{bottom:962.170400pt;}
.y41{bottom:962.315867pt;}
.y46{bottom:963.741200pt;}
.y1a6{bottom:971.113733pt;}
.y1eb{bottom:974.013600pt;}
.y21d{bottom:975.189467pt;}
.y10d{bottom:975.574400pt;}
.y7a{bottom:976.214000pt;}
.y157{bottom:977.634133pt;}
.y1ea{bottom:981.213600pt;}
.yea{bottom:981.906133pt;}
.y40{bottom:988.036000pt;}
.y1a8{bottom:988.417733pt;}
.y79{bottom:994.880667pt;}
.ye9{bottom:996.306133pt;}
.y5{bottom:1004.951867pt;}
.y4{bottom:1020.951867pt;}
.y3{bottom:1036.951867pt;}
.y2{bottom:1052.951867pt;}
.y1{bottom:1068.951867pt;}
.y3d{bottom:1070.751600pt;}
.h3{height:34.858667pt;}
.h9{height:36.768000pt;}
.hc{height:37.760000pt;}
.h10{height:37.963112pt;}
.h4{height:38.613333pt;}
.h15{height:39.216000pt;}
.h2{height:40.277333pt;}
.hb{height:42.794667pt;}
.he{height:43.573333pt;}
.h12{height:44.695312pt;}
.h11{height:44.832000pt;}
.h7{height:44.938667pt;}
.h8{height:45.312000pt;}
.ha{height:47.178385pt;}
.hd{height:49.813333pt;}
.hf{height:50.346667pt;}
.h6{height:64.559896pt;}
.h14{height:74.112000pt;}
.h5{height:75.520000pt;}
.h13{height:98.928000pt;}
.h16{height:101.184000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:26.456667pt;}
.x1a{left:56.692933pt;}
.x23{left:57.816400pt;}
.x16{left:62.026400pt;}
.x21{left:62.990933pt;}
.x19{left:68.737333pt;}
.x24{left:70.073733pt;}
.x32{left:73.380933pt;}
.x1b{left:75.586267pt;}
.x2e{left:78.824533pt;}
.x29{left:80.444533pt;}
.x2d{left:82.280533pt;}
.x7{left:83.345067pt;}
.x2f{left:84.332533pt;}
.x46{left:85.224800pt;}
.x28{left:86.932933pt;}
.x27{left:99.586267pt;}
.x9{left:105.134533pt;}
.x20{left:110.044667pt;}
.x26{left:151.133733pt;}
.x2b{left:163.928533pt;}
.x2a{left:165.872533pt;}
.x33{left:171.295733pt;}
.x2{left:176.661333pt;}
.x1{left:182.080000pt;}
.x8{left:188.445067pt;}
.x34{left:195.067733pt;}
.x22{left:196.262933pt;}
.x35{left:218.995733pt;}
.x3{left:221.237333pt;}
.xa{left:233.591867pt;}
.x1f{left:236.121867pt;}
.x36{left:242.959733pt;}
.x10{left:247.896267pt;}
.x12{left:249.342400pt;}
.xc{left:255.552000pt;}
.xe{left:257.706133pt;}
.x14{left:260.628267pt;}
.x4{left:264.608000pt;}
.x37{left:266.959733pt;}
.xb{left:286.088400pt;}
.x25{left:291.473733pt;}
.x11{left:299.538133pt;}
.x17{left:301.081467pt;}
.x15{left:315.275333pt;}
.xd{left:317.159467pt;}
.xf{left:333.747333pt;}
.x38{left:338.959733pt;}
.x13{left:351.904667pt;}
.x5{left:354.975867pt;}
.x39{left:362.959733pt;}
.x3a{left:386.959733pt;}
.x3b{left:410.959733pt;}
.x3c{left:434.959733pt;}
.x2c{left:458.360533pt;}
.x1d{left:483.520533pt;}
.x3d{left:506.959733pt;}
.x1e{left:508.411067pt;}
.x3e{left:530.959733pt;}
.x3f{left:554.959733pt;}
.x40{left:578.959733pt;}
.x41{left:602.959733pt;}
.x42{left:626.959733pt;}
.x31{left:628.295600pt;}
.x30{left:640.151600pt;}
.x43{left:661.639733pt;}
.x44{left:696.319733pt;}
.x45{left:720.319733pt;}
.x1c{left:758.437333pt;}
.x6{left:764.730533pt;}
}




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